From 74dd9a88599684c4ad1f4333d88de745518d2ade Mon Sep 17 00:00:00 2001 From: Kaeno Date: Thu, 4 Apr 2024 00:00:19 +0100 Subject: [PATCH 001/104] Added some more bot limits to items. added Forcestock on followerzryachiy (cherry picked from commit 9caf464f99b3d96e8d304aac4552850e0f5c6323) --- project/assets/configs/bot.json | 35 +++++++++++++++++++++++++-------- 1 file changed, 27 insertions(+), 8 deletions(-) diff --git a/project/assets/configs/bot.json b/project/assets/configs/bot.json index 909d210d..e70d2471 100644 --- a/project/assets/configs/bot.json +++ b/project/assets/configs/bot.json @@ -331,7 +331,8 @@ "bosskolontay": {}, "bosstest": {}, "followerbully": { - "5448e8d64bdc2dce718b4568": 2 + "5448e8d64bdc2dce718b4568": 1, + "5448ba0b4bdc2d02308b456c": 1 }, "followergluharassault": { "5c0fa877d174af02a012e1cf": 1 @@ -354,14 +355,31 @@ "followerbigpipe": {}, "followerzryachiy": {}, "followertest": {}, - "followerboar": {}, - "followerboarclose1": {}, - "followerboarclose2": {}, + "followerboar": { + "5448e8d04bdc2ddf718b4569": 1, + "544fb37f4bdc2dee738b4567": 1, + "5448e8d64bdc2dce718b4568": 1, + "5c94bbff86f7747ee735c08f": 1 + }, + "followerboarclose1": { + "5448e8d04bdc2ddf718b4569": 1, + "5448e8d64bdc2dce718b4568": 1, + "5c94bbff86f7747ee735c08f": 1 + }, + "followerboarclose2": { + "5448e8d04bdc2ddf718b4569": 1, + "5448e8d64bdc2dce718b4568": 1, + "5c94bbff86f7747ee735c08f": 1 + }, "followerkolontayassault": { - "544fb62a4bdc2dfb738b4568": 2 + "5448e8d04bdc2ddf718b4569": 2, + "5c94bbff86f7747ee735c08f": 1, + "5448e8d64bdc2dce718b4568": 2 }, "followerkolontaysecurity": { - "544fb62a4bdc2dfb738b4568": 2 + "5448e8d04bdc2ddf718b4569": 2, + "5c94bbff86f7747ee735c08f": 1, + "5448e8d64bdc2dce718b4568": 2 }, "sectantpriest": {}, "sectantwarrior": {}, @@ -648,7 +666,8 @@ "nvgIsActiveChanceNightPercent": 90, "lightIsActiveDayChancePercent": 25, "lightIsActiveNightChancePercent": 85, - "laserIsActiveChancePercent": 85 + "laserIsActiveChancePercent": 85, + "forceStock": true }, "followerboar": { "nvgIsActiveChanceDayPercent": 20, @@ -2615,4 +2634,4 @@ } } } -} \ No newline at end of file +} From 387e924fb4e1fe93c15b9106712d23a4476bcf6f Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 5 Apr 2024 13:42:17 +0100 Subject: [PATCH 002/104] Remove unused config property --- project/assets/configs/location.json | 1 - 1 file changed, 1 deletion(-) diff --git a/project/assets/configs/location.json b/project/assets/configs/location.json index 2c64b10f..9308a5c8 100644 --- a/project/assets/configs/location.json +++ b/project/assets/configs/location.json @@ -1144,7 +1144,6 @@ }, "minFillLooseMagazinePercent": 50, "minFillStaticMagazinePercent": 50, - "makeWishingTreeAlwaysGiveGift": true, "allowDuplicateItemsInStaticContainers": true, "magazineLootHasAmmoChancePercent": 50, "looseLootBlacklist": {}, From 798dcfffaac631335d0ca8b1a1c71039247b9ab8 Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 5 Apr 2024 18:42:09 +0100 Subject: [PATCH 003/104] Prevent nullref when profile is missing the Place of Fame area on game start variable cleanup in build controller --- project/src/controllers/BuildController.ts | 12 +++++++----- project/src/services/ProfileFixerService.ts | 6 +++++- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/project/src/controllers/BuildController.ts b/project/src/controllers/BuildController.ts index a337b9f5..b43ec7cb 100644 --- a/project/src/controllers/BuildController.ts +++ b/project/src/controllers/BuildController.ts @@ -147,7 +147,7 @@ export class BuildController this.removePlayerBuild(request.id, sessionID); } - protected removePlayerBuild(id: string, sessionID: string): void + protected removePlayerBuild(idToRemove: string, sessionID: string): void { const profile = this.saveServer.getProfile(sessionID); const weaponBuilds = profile.userbuilds.weaponBuilds; @@ -155,7 +155,7 @@ export class BuildController const magazineBuilds = profile.userbuilds.magazineBuilds; // Check for id in weapon array first - const matchingWeaponBuild = weaponBuilds.find((x) => x.Id === id); + const matchingWeaponBuild = weaponBuilds.find((weaponBuild) => weaponBuild.Id === idToRemove); if (matchingWeaponBuild) { weaponBuilds.splice(weaponBuilds.indexOf(matchingWeaponBuild), 1); @@ -164,7 +164,7 @@ export class BuildController } // Id not found in weapons, try equipment - const matchingEquipmentBuild = equipmentBuilds.find((x) => x.Id === id); + const matchingEquipmentBuild = equipmentBuilds.find((equipmentBuild) => equipmentBuild.Id === idToRemove); if (matchingEquipmentBuild) { equipmentBuilds.splice(equipmentBuilds.indexOf(matchingEquipmentBuild), 1); @@ -173,7 +173,7 @@ export class BuildController } // Id not found in weapons/equipment, try mags - const matchingMagazineBuild = magazineBuilds.find((x) => x.Id === id); + const matchingMagazineBuild = magazineBuilds.find((magBuild) => magBuild.Id === idToRemove); if (matchingMagazineBuild) { magazineBuilds.splice(magazineBuilds.indexOf(matchingMagazineBuild), 1); @@ -182,7 +182,9 @@ export class BuildController } // Not found in weapons,equipment or magazines, not good - this.logger.error(`Unable to delete preset, cannot find ${id} in weapon, equipment or magazine presets`); + this.logger.error( + `Unable to delete preset, cannot find ${idToRemove} in weapon, equipment or magazine presets`, + ); } /** diff --git a/project/src/services/ProfileFixerService.ts b/project/src/services/ProfileFixerService.ts index 23a09b25..6824fd41 100644 --- a/project/src/services/ProfileFixerService.ts +++ b/project/src/services/ProfileFixerService.ts @@ -282,7 +282,11 @@ export class ProfileFixerService } const db = this.databaseServer.getTables(); - const placeOfFameAreaDb = db.hideout.areas.find((x) => x.type === HideoutAreas.PLACE_OF_FAME); + const placeOfFameAreaDb = db.hideout.areas.find((area) => area.type === HideoutAreas.PLACE_OF_FAME); + if (!placeOfFameAreaDb) + { + return; + } const stageCurrentlyAt = placeOfFameAreaDb.stages[placeOfFameArea.level]; const placeOfFameStashId = pmcProfile.Inventory.hideoutAreaStashes[HideoutAreas.PLACE_OF_FAME]; From 18b28a6d0b994a902e8b61703a78c5f0df30461e Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 5 Apr 2024 21:46:28 +0100 Subject: [PATCH 004/104] Remove unused `/singleplayer/settings/weapon/durability` endpoint --- project/assets/configs/inraid.json | 3 +-- project/src/callbacks/InraidCallbacks.ts | 9 --------- project/src/models/spt/config/IInRaidConfig.ts | 1 - project/src/routers/static/InraidStaticRouter.ts | 7 ------- 4 files changed, 1 insertion(+), 19 deletions(-) diff --git a/project/assets/configs/inraid.json b/project/assets/configs/inraid.json index 5bbe48cc..97085b3d 100644 --- a/project/assets/configs/inraid.json +++ b/project/assets/configs/inraid.json @@ -11,8 +11,7 @@ "randomTime": false }, "save": { - "loot": true, - "durability": true + "loot": true }, "carExtracts": [ "Dorms V-Ex", diff --git a/project/src/callbacks/InraidCallbacks.ts b/project/src/callbacks/InraidCallbacks.ts index 005284c5..87a5dec2 100644 --- a/project/src/callbacks/InraidCallbacks.ts +++ b/project/src/callbacks/InraidCallbacks.ts @@ -65,15 +65,6 @@ export class InraidCallbacks return this.httpResponse.noBody(this.inraidController.getInraidConfig().raidMenuSettings); } - /** - * Handle singleplayer/settings/weapon/durability - * @returns - */ - public getWeaponDurability(): string - { - return this.httpResponse.noBody(this.inraidController.getInraidConfig().save.durability); - } - /** * Handle singleplayer/airdrop/config * @returns JSON as string diff --git a/project/src/models/spt/config/IInRaidConfig.ts b/project/src/models/spt/config/IInRaidConfig.ts index 0f836fcb..f3dd433a 100644 --- a/project/src/models/spt/config/IInRaidConfig.ts +++ b/project/src/models/spt/config/IInRaidConfig.ts @@ -42,5 +42,4 @@ export interface Save { /** Should loot gained from raid be saved */ loot: boolean; - durability: boolean; } diff --git a/project/src/routers/static/InraidStaticRouter.ts b/project/src/routers/static/InraidStaticRouter.ts index f2835755..a0f77653 100644 --- a/project/src/routers/static/InraidStaticRouter.ts +++ b/project/src/routers/static/InraidStaticRouter.ts @@ -20,13 +20,6 @@ export class InraidStaticRouter extends StaticRouter return this.inraidCallbacks.getRaidEndState(); }, ), - new RouteAction( - "/singleplayer/settings/weapon/durability", - (url: string, info: any, sessionID: string, output: string): any => - { - return this.inraidCallbacks.getWeaponDurability(); - }, - ), new RouteAction( "/singleplayer/settings/raid/menu", (url: string, info: any, sessionID: string, output: string): any => From 13ab57298b496204061f274786660f84998d21be Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 6 Apr 2024 16:57:01 +0100 Subject: [PATCH 005/104] Add endpoint to allow getting all bot difficulty data in one call --- project/src/callbacks/BotCallbacks.ts | 10 +++++++ project/src/controllers/BotController.ts | 29 +++++++++++++++++-- .../src/routers/dynamic/BotDynamicRouter.ts | 7 +++++ 3 files changed, 44 insertions(+), 2 deletions(-) diff --git a/project/src/callbacks/BotCallbacks.ts b/project/src/callbacks/BotCallbacks.ts index 3867921a..966104ac 100644 --- a/project/src/callbacks/BotCallbacks.ts +++ b/project/src/callbacks/BotCallbacks.ts @@ -4,6 +4,7 @@ import { BotController } from "@spt-aki/controllers/BotController"; import { IGenerateBotsRequestData } from "@spt-aki/models/eft/bot/IGenerateBotsRequestData"; import { IEmptyRequestData } from "@spt-aki/models/eft/common/IEmptyRequestData"; import { IBotBase } from "@spt-aki/models/eft/common/tables/IBotBase"; +import { Difficulties } from "@spt-aki/models/eft/common/tables/IBotType"; import { IGetBodyResponseData } from "@spt-aki/models/eft/httpResponse/IGetBodyResponseData"; import { HttpResponseUtil } from "@spt-aki/utils/HttpResponseUtil"; @@ -44,6 +45,15 @@ export class BotCallbacks return this.httpResponse.noBody(this.botController.getBotDifficulty(type, difficulty)); } + /** + * Handle singleplayer/settings/bot/difficulties + * @returns dictionary of every bot and its diffiulty settings + */ + public getAllBotDifficulties(url: string, info: IEmptyRequestData, sessionID: string): Record + { + return this.httpResponse.noBody(this.botController.getAllBotDifficulties()); + } + /** * Handle client/game/bot/generate * @returns IGetBodyResponseData diff --git a/project/src/controllers/BotController.ts b/project/src/controllers/BotController.ts index 42f740d0..908333a5 100644 --- a/project/src/controllers/BotController.ts +++ b/project/src/controllers/BotController.ts @@ -83,7 +83,7 @@ export class BotController /** * Get bot difficulty settings - * adjust PMC settings to ensure they engage the correct bot types + * Adjust PMC settings to ensure they engage the correct bot types * @param type what bot the server is requesting settings for * @param diffLevel difficulty level server requested settings for * @returns Difficulty object @@ -104,7 +104,7 @@ export class BotController // Check value chosen in pre-raid difficulty dropdown // If value is not 'asonline', change requested difficulty to be what was chosen in dropdown - const botDifficultyDropDownValue = raidConfig.wavesSettings.botDifficulty.toLowerCase(); + const botDifficultyDropDownValue = raidConfig?.wavesSettings.botDifficulty.toLowerCase() ?? "asonline"; if (botDifficultyDropDownValue !== "asonline") { difficulty = this.botDifficultyHelper.convertBotDifficultyDropdownToBotDifficulty( @@ -140,6 +140,31 @@ export class BotController return difficultySettings; } + public getAllBotDifficulties(): Record + { + const result = {}; + + const botDb = this.databaseServer.getTables().bots.types; + const botTypes = Object.keys(botDb); + for (const botType of botTypes) + { + const botDetails = botDb[botType]; + if (!botDetails.difficulty) + { + continue; + } + const botDifficulties = Object.keys(botDetails.difficulty); + + result[botType] = {}; + for (const difficulty of botDifficulties) + { + result[botType][difficulty] = this.getBotDifficulty(botType, difficulty); + } + } + + return result; + } + /** * Generate bot profiles and store in cache * @param sessionId Session id diff --git a/project/src/routers/dynamic/BotDynamicRouter.ts b/project/src/routers/dynamic/BotDynamicRouter.ts index df65c79b..323912c4 100644 --- a/project/src/routers/dynamic/BotDynamicRouter.ts +++ b/project/src/routers/dynamic/BotDynamicRouter.ts @@ -23,6 +23,13 @@ export class BotDynamicRouter extends DynamicRouter return this.botCallbacks.getBotDifficulty(url, info, sessionID); }, ), + new RouteAction( + "/singleplayer/settings/bot/difficulties/", + (url: string, info: any, sessionID: string, output: string): any => + { + return this.botCallbacks.getAllBotDifficulties(url, info, sessionID); + }, + ), new RouteAction( "/singleplayer/settings/bot/maxCap", (url: string, info: any, sessionID: string, output: string): any => From 31641334aa33c44d44d2ccd598b153c6767db705 Mon Sep 17 00:00:00 2001 From: r2go Date: Sun, 7 Jan 2024 07:39:46 +0000 Subject: [PATCH 006/104] Issue #246 Reduce server log retention time (!186) https://dev.sp-tarkov.com/SPT-AKI/Issues/issues/246 Reduces log rotation frequency to 3h. Co-authored-by: r2go Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/186 Co-authored-by: r2go Co-committed-by: r2go --- project/src/utils/logging/AbstractWinstonLogger.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/project/src/utils/logging/AbstractWinstonLogger.ts b/project/src/utils/logging/AbstractWinstonLogger.ts index 19071d6e..86a6975b 100644 --- a/project/src/utils/logging/AbstractWinstonLogger.ts +++ b/project/src/utils/logging/AbstractWinstonLogger.ts @@ -70,6 +70,7 @@ export abstract class AbstractWinstonLogger implements ILogger filename: this.filePath, datePattern: "YYYY-MM-DD", zippedArchive: true, + frequency: this.getLogFrequency(), maxSize: this.getLogMaxSize(), maxFiles: this.getLogMaxFiles(), format: format.combine( @@ -108,6 +109,11 @@ export abstract class AbstractWinstonLogger implements ILogger protected abstract getFileName(): string; + protected getLogFrequency(): string + { + return "3h"; + } + protected getLogMaxSize(): string { return "5m"; From 35e48add204e8cabe3dfb117908e9d8426fe9167 Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 6 Apr 2024 20:25:57 +0100 Subject: [PATCH 007/104] Added ability to override hideout craft times via config --- project/assets/configs/hideout.json | 6 ++- project/src/controllers/GameController.ts | 43 +++++++++++++++++++ .../src/models/spt/config/IHideoutConfig.ts | 2 + 3 files changed, 49 insertions(+), 2 deletions(-) diff --git a/project/assets/configs/hideout.json b/project/assets/configs/hideout.json index b5e229f9..47bdfb7c 100644 --- a/project/assets/configs/hideout.json +++ b/project/assets/configs/hideout.json @@ -1,9 +1,11 @@ { "runIntervalSeconds": 10, "hoursForSkillCrafting": 28800, - "runIntervalValues": { + "runIntervalValues": { "inRaid": 60, "outOfRaid": 10 }, - "expCraftAmount": 10 + "expCraftAmount": 10, + "overrideCraftTimeSeconds": -1, + "overrideBuildTimeSeconds": -1 } \ No newline at end of file diff --git a/project/src/controllers/GameController.ts b/project/src/controllers/GameController.ts index 1cede6dc..cb8439e1 100644 --- a/project/src/controllers/GameController.ts +++ b/project/src/controllers/GameController.ts @@ -209,6 +209,9 @@ export class GameController this.adjustLabsRaiderSpawnRate(); + this.adjustHideoutCraftTimes(); + this.adjustHideoutBuildTimes(); + this.removePraporTestMessage(); this.saveActiveModsToProfile(fullProfile); @@ -240,6 +243,46 @@ export class GameController } } + protected adjustHideoutCraftTimes(): void + { + const craftTimeOverrideSeconds = this.hideoutConfig.overrideCraftTimeSeconds; + if (craftTimeOverrideSeconds === -1) + { + return; + } + + for (const craft of this.databaseServer.getTables().hideout.production) + { + // Only adjust crafts ABOVE the override + if (craft.productionTime > craftTimeOverrideSeconds) + { + craft.productionTime = craftTimeOverrideSeconds; + } + } + } + + protected adjustHideoutBuildTimes(): void + { + const craftTimeOverrideSeconds = this.hideoutConfig.overrideBuildTimeSeconds; + if (craftTimeOverrideSeconds === -1) + { + return; + } + + for (const area of this.databaseServer.getTables().hideout.areas) + { + for (const stageKey of Object.keys(area.stages)) + { + const stage = area.stages[stageKey]; + // Only adjust crafts ABOVE the override + if (stage.constructionTime > craftTimeOverrideSeconds) + { + stage.constructionTime = craftTimeOverrideSeconds; + } + } + } + } + protected adjustLocationBotValues(): void { const mapsDb = this.databaseServer.getTables().locations; diff --git a/project/src/models/spt/config/IHideoutConfig.ts b/project/src/models/spt/config/IHideoutConfig.ts index 5d17a15b..e2f419b2 100644 --- a/project/src/models/spt/config/IHideoutConfig.ts +++ b/project/src/models/spt/config/IHideoutConfig.ts @@ -9,4 +9,6 @@ export interface IHideoutConfig extends IBaseConfig runIntervalValues: IRunIntervalValues; hoursForSkillCrafting: number; expCraftAmount: number; + overrideCraftTimeSeconds: number; + overrideBuildTimeSeconds: number; } From 3be17686721bfcde0202a96c95f14d7858384ea8 Mon Sep 17 00:00:00 2001 From: Leaves Date: Sat, 6 Apr 2024 21:22:41 +0000 Subject: [PATCH 008/104] Make sure trader has enough stock before selling (!278) Make sure trader has enough stock before selling Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/278 Co-authored-by: Leaves Co-committed-by: Leaves --- project/src/helpers/TradeHelper.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/project/src/helpers/TradeHelper.ts b/project/src/helpers/TradeHelper.ts index 59d9bd1c..358860e0 100644 --- a/project/src/helpers/TradeHelper.ts +++ b/project/src/helpers/TradeHelper.ts @@ -158,6 +158,14 @@ export class TradeHelper ); } + // Check if trader has enough stock + if (itemPurchased.upd.StackObjectsCount < buyCount) + { + throw new Error( + `Unable to purchase ${buyCount} items, this would exceed the remaining stock left ${itemPurchased.upd.StackObjectsCount} from the traders assort: ${buyRequestData.tid} this refresh`, + ); + } + // Decrement trader item count itemPurchased.upd.StackObjectsCount -= buyCount; From 198c7a9720b24d90ba20de5ae935455f41f985e4 Mon Sep 17 00:00:00 2001 From: TheSparta Date: Sat, 6 Apr 2024 22:36:23 +0100 Subject: [PATCH 009/104] Workaround swc parsing string as inline sourcemap --- project/src/services/ModCompilerService.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/src/services/ModCompilerService.ts b/project/src/services/ModCompilerService.ts index 159588b9..7968dea0 100644 --- a/project/src/services/ModCompilerService.ts +++ b/project/src/services/ModCompilerService.ts @@ -114,8 +114,8 @@ export class ModCompilerService if (output.sourceMapText) { output.outputText = output.outputText.replace( - "//# sourceMappingURL=module.js.map", - `//# sourceMappingURL=${parsedDestPath.base}.map`, + "//# sourceMappingURL\=module.js.map", + `//# sourceMappingURL\=${parsedDestPath.base}.map`, ); const sourceMap = JSON.parse(output.sourceMapText); From 49f4eda90a3a2a62e0c88526478fab860033c51b Mon Sep 17 00:00:00 2001 From: DrakiaXYZ Date: Sun, 7 Apr 2024 08:02:32 +0000 Subject: [PATCH 010/104] Fix coop extract gifts (!279) Add missing properties to coopExtractGifts in fence trader.json Co-authored-by: DrakiaXYZ <565558+TheDgtl@users.noreply.github.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/279 Co-authored-by: DrakiaXYZ Co-committed-by: DrakiaXYZ --- project/assets/configs/trader.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/project/assets/configs/trader.json b/project/assets/configs/trader.json index 2144725a..a4309d14 100644 --- a/project/assets/configs/trader.json +++ b/project/assets/configs/trader.json @@ -351,7 +351,11 @@ "5da89b3a86f7742f9026cb83 0" ], "giftExpiryHours": 168, - "presetCount": { + "weaponPresetCount": { + "min": 0, + "max": 0 + }, + "armorPresetCount": { "min": 0, "max": 0 }, @@ -423,4 +427,4 @@ }, "btrDeliveryExpireHours": 240 } -} \ No newline at end of file +} From afa5700076bbdc610819d719801de4f8ff612388 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 8 Apr 2024 08:56:05 +0100 Subject: [PATCH 011/104] Improved `IArmorPlateWeights` type --- project/src/models/spt/config/IBotConfig.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/project/src/models/spt/config/IBotConfig.ts b/project/src/models/spt/config/IBotConfig.ts index fd71175c..1ea1acc2 100644 --- a/project/src/models/spt/config/IBotConfig.ts +++ b/project/src/models/spt/config/IBotConfig.ts @@ -186,12 +186,9 @@ export interface IAdjustmentDetails edit: Record>; } -export interface IArmorPlateWeights +export interface IArmorPlateWeights extends Record { levelRange: MinMax; - frontPlateWeights: Record; - backPlateWeights: Record; - sidePlateWeights: Record; } export interface IRandomisedResourceDetails From 6d2c17596bbc3f78469a00a39ae5c309e86a2f08 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 8 Apr 2024 10:52:37 +0100 Subject: [PATCH 012/104] Updated Bear EoD profile to match live --- .../assets/database/templates/profiles.json | 6173 ++++++++--------- 1 file changed, 2764 insertions(+), 3409 deletions(-) diff --git a/project/assets/database/templates/profiles.json b/project/assets/database/templates/profiles.json index 613c80f4..83d6a83c 100644 --- a/project/assets/database/templates/profiles.json +++ b/project/assets/database/templates/profiles.json @@ -19946,3418 +19946,2773 @@ }, "InsuredItems": [], "Inventory": { - "equipment": "5fe49444ae6628187a2e77b8", + "equipment": "6613bb72b5b0ba138a0fa9f4", "fastPanel": {}, + "favoriteItems": [], "hideoutAreaStashes": {}, - "items": [{ - "_id": "5fe49444ae6628187a2e77b8", - "_tpl": "55d7217a4bdc2d86028b456d" - }, { - "_id": "63db64cbf9963741dc0d741f", - "_tpl": "6401c7b213d9b818bf0e7dd7" - }, { - "_id": "a797e819df958aad39cdbd3c", - "_tpl": "5ac4cd105acfc40016339859", - "parentId": "5fe49444ae6628187a2e77b8", - "slotId": "FirstPrimaryWeapon", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "43e3a7bd752424eaa0c800e0", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "a797e819df958aad39cdbd3c", - "slotId": "mod_gas_block" - }, { - "_id": "1cdd4c79345d24be45ae4e5f", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "43e3a7bd752424eaa0c800e0", - "slotId": "mod_handguard" - }, { - "_id": "a20279119c4931eceb8a097e", - "_tpl": "5ac7655e5acfc40016339a19", - "parentId": "a797e819df958aad39cdbd3c", - "slotId": "mod_muzzle" - }, { - "_id": "b2430220da94fb22c0d65693", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "a797e819df958aad39cdbd3c", - "slotId": "mod_pistol_grip" - }, { - "_id": "94751193011013ee7734b4fe", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "a797e819df958aad39cdbd3c", - "slotId": "mod_reciever" - }, { - "_id": "276460f843affd97cad97da7", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "a797e819df958aad39cdbd3c", - "slotId": "mod_sight_rear" - }, { - "_id": "8cf886617f5211d237aa5a1f", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "a797e819df958aad39cdbd3c", - "slotId": "mod_stock" - }, { - "_id": "a9cb81802a05229cb65b11ef", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "a797e819df958aad39cdbd3c", - "slotId": "mod_magazine" - }, { - "_id": "909e88f6ba6571e5ab4a3476", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "a9cb81802a05229cb65b11ef", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "0250844ab4d1320f304fdfcb", - "_tpl": "5bffdc370db834001d23eca8", - "parentId": "5fe49444ae6628187a2e77b8", - "slotId": "Scabbard", - "upd": { - "Repairable": { - "Durability": 80, - "MaxDurability": 80 - } - } - }, { - "_id": "03470cbbef724cc5017f6538", - "_tpl": "5b40e5e25acfc4001a599bea", - "parentId": "5fe49444ae6628187a2e77b8", - "slotId": "Headwear", - "upd": { - "Repairable": { - "Durability": 10, - "MaxDurability": 10 - } - } - }, { - "_id": "490e6180d045eeaf5cef9073", - "_tpl": "5ca20abf86f77418567a43f2", - "parentId": "5fe49444ae6628187a2e77b8", - "slotId": "TacticalVest" - }, { - "_id": "9c22fdef66c45863afa4a8de", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "490e6180d045eeaf5cef9073", - "slotId": "1" - }, { - "_id": "11eadc612502a26aeb1611df", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "9c22fdef66c45863afa4a8de", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "01ea8735feb7d3b5ab772dde", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "490e6180d045eeaf5cef9073", - "slotId": "2" - }, { - "_id": "28605b3f275070610f47af1b", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "01ea8735feb7d3b5ab772dde", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "98f1e5b11f4f85e12db463cf", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "490e6180d045eeaf5cef9073", - "slotId": "3" - }, { - "_id": "62c13892d6d745050dad38b0", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "98f1e5b11f4f85e12db463cf", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "dbda40032725eb2924b01fbe", - "_tpl": "5755356824597772cb798962", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "490e6180d045eeaf5cef9073", - "slotId": "4", - "upd": { - "MedKit": { - "HpResource": 100 - } - } - }, { - "_id": "f5e6bdac05e699d687993249", - "_tpl": "5857a8bc2459772bad15db29", - "parentId": "5fe49444ae6628187a2e77b8", - "slotId": "SecuredContainer" - }, { - "_id": "13117a5a113a6246a2db5fff", - "_tpl": "5ca20d5986f774331e7c9602", - "parentId": "5fe49444ae6628187a2e77b8", - "slotId": "Backpack" - }, { - "_id": "8b6f0bac70f8f2d91c2a0c74", - "_tpl": "56dff3afd2720bba668b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 0 - }, - "parentId": "13117a5a113a6246a2db5fff", - "slotId": "main", - "upd": { - "StackObjectsCount": 60 - } - }, { - "_id": "c063ca857d900564f913197f", - "_tpl": "56dfef82d2720bbd668b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 1 - }, - "parentId": "13117a5a113a6246a2db5fff", - "slotId": "main", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "b4bef7715cfbfde49f9deb57", - "_tpl": "5448fee04bdc2dbc018b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "13117a5a113a6246a2db5fff", - "slotId": "main", - "upd": { - "FoodDrink": { - "HpPercent": 60 - } - } - }, { - "_id": "4ea0df06a22b64ea321dafec", - "_tpl": "590c5d4b86f774784e1b9c45", - "location": { - "isSearched": true, - "r": 0, - "x": 1, - "y": 0 - }, - "parentId": "13117a5a113a6246a2db5fff", - "slotId": "main", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "af4d8b34228a85208fb85895", - "_tpl": "5648a7494bdc2d9d488b4583", - "parentId": "5fe49444ae6628187a2e77b8", - "slotId": "ArmorVest", - "upd": { - "Repairable": { - "Durability": 50, - "MaxDurability": 50 - } - } - }, { - "_id": "658c3f38bb2016e5630bdbe5", - "_tpl": "65703d866584602f7d057a8a", - "parentId": "af4d8b34228a85208fb85895", - "slotId": "Soft_armor_front" - }, { - "_id": "658c3f38bb2016e5630bdbe6", - "_tpl": "65703fa06584602f7d057a8e", - "parentId": "af4d8b34228a85208fb85895", - "slotId": "Soft_armor_back" - }, { - "_id": "658c3f38bb2016e5630bdbe7", - "_tpl": "65703fe46a912c8b5c03468b", - "parentId": "af4d8b34228a85208fb85895", - "slotId": "Soft_armor_left" - }, { - "_id": "658c3f38bb2016e5630bdbe8", - "_tpl": "657040374e67e8ec7a0d261c", - "parentId": "af4d8b34228a85208fb85895", - "slotId": "soft_armor_right" - }, { - "_id": "01e9d751f10e4e9aebdd94d5", - "_tpl": "627a4e6b255f7527fb05a0f6", - "parentId": "5fe49444ae6628187a2e77b8", - "slotId": "Pockets" - }, { - "_id": "4ca0cf14b0ae5bd2753a0a87", - "_tpl": "544fb3364bdc2d34748b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "01e9d751f10e4e9aebdd94d5", - "slotId": "pocket1" - }, { - "_id": "749309e76ce2fdcf316f29fe", - "_tpl": "544fb37f4bdc2dee738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "01e9d751f10e4e9aebdd94d5", - "slotId": "pocket2", - "upd": { - "MedKit": { - "HpResource": 4 - } - } - }, { - "_id": "729ecfc38cce5672b1dc1ad1", - "_tpl": "5751a25924597722c463c472", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "01e9d751f10e4e9aebdd94d5", - "slotId": "pocket3", - "upd": { - "MedKit": { - "HpResource": 2 - } - } - }, { - "_id": "ad076f81dc918f5e4c7fbd18", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "5fe49444ae6628187a2e77b8", - "slotId": "Earpiece" - }, { - "_id": "5fe49444ae6628187a2e78b8", - "_tpl": "5811ce772459770e9e5f9532" - }, { - "_id": "702bdc5dfd91ed316b175b3c", - "_tpl": "5755356824597772cb798962", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 34 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 100 - } - } - }, { - "_id": "fb08ac9e01a36533563a4389", - "_tpl": "5648a7494bdc2d9d488b4583", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 50, - "MaxDurability": 50 - } - } - }, { - "_id": "658c3f38bb2016e5630bdbe5", - "_tpl": "65703d866584602f7d057a8a", - "parentId": "fb08ac9e01a36533563a4389", - "slotId": "Soft_armor_front" - }, { - "_id": "658c3f38bb2016e5630bdbe6", - "_tpl": "65703fa06584602f7d057a8e", - "parentId": "fb08ac9e01a36533563a4389", - "slotId": "Soft_armor_back" - }, { - "_id": "658c3f38bb2016e5630bdbe7", - "_tpl": "65703fe46a912c8b5c03468b", - "parentId": "fb08ac9e01a36533563a4389", - "slotId": "Soft_armor_left" - }, { - "_id": "658c3f38bb2016e5630bdbe8", - "_tpl": "657040374e67e8ec7a0d261c", - "parentId": "fb08ac9e01a36533563a4389", - "slotId": "soft_armor_right" - }, { - "_id": "686cfcc458f923cb2e76b8d7", - "_tpl": "5710c24ad2720bc3458b45a3", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 13 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "1936371534d82e70c76a7645", - "_tpl": "5b432b965acfc47a8774094e", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 9 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "12be6d1147d04252aacaa083", - "_tpl": "5ca20abf86f77418567a43f2", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 0 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "6342de84cd397d00cb31e87f", - "_tpl": "557ff21e4bdc2d89578b4586", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 22 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "81a756ebe7ce1ea490962f9e", - "_tpl": "5710c24ad2720bc3458b45a3", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 13 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "a9bccb7b590bf286c6e0a0c3", - "_tpl": "5ca20abf86f77418567a43f2", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 3 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "cfd59c8e3cd5cce89c53b10f", - "_tpl": "5755356824597772cb798962", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 34 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 100 - } - } - }, { - "_id": "b2fe6975cd7ba911fbf6bf42", - "_tpl": "5d40407c86f774318526545a", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 0 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "f587cf58fc9d1c6cf7899bf1", - "_tpl": "5449016a4bdc2d6f028b456f", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 1 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 250000 - } - }, { - "_id": "26578d87ce5797ff5e87fd3c", - "_tpl": "599860ac86f77436b225ed1a", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 8 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "feb9c6ec3ad0f62f2cac447c", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "26578d87ce5797ff5e87fd3c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "7a3a6fdbd690c6e3767a096d", - "_tpl": "5648a7494bdc2d9d488b4583", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 3 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 50, - "MaxDurability": 50 - } - } - }, { - "_id": "658c3f38bb2016e5630bdbe5", - "_tpl": "65703d866584602f7d057a8a", - "parentId": "7a3a6fdbd690c6e3767a096d", - "slotId": "Soft_armor_front" - }, { - "_id": "658c3f38bb2016e5630bdbe6", - "_tpl": "65703fa06584602f7d057a8e", - "parentId": "7a3a6fdbd690c6e3767a096d", - "slotId": "Soft_armor_back" - }, { - "_id": "658c3f38bb2016e5630bdbe7", - "_tpl": "65703fe46a912c8b5c03468b", - "parentId": "7a3a6fdbd690c6e3767a096d", - "slotId": "Soft_armor_left" - }, { - "_id": "658c3f38bb2016e5630bdbe8", - "_tpl": "657040374e67e8ec7a0d261c", - "parentId": "7a3a6fdbd690c6e3767a096d", - "slotId": "soft_armor_right" - }, { - "_id": "a498d5c84a16a8700486b51e", - "_tpl": "5b40e5e25acfc4001a599bea", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 0 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 10, - "MaxDurability": 10 - } - } - }, { - "_id": "90ceaf3a032fbddb4d8ba181", - "_tpl": "5b40e5e25acfc4001a599bea", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 0 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 10, - "MaxDurability": 10 - } - } - }, { - "_id": "106af131dbdc7fd37bd14dfb", - "_tpl": "5b432b965acfc47a8774094e", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 11 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "78a938654650e34abbc5b8ba", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 1, - "y": 10 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 50 - } - }, { - "_id": "d74a1797a4c614b767fc3bae", - "_tpl": "576a5ed62459771e9c2096cb", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 3 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "90770873e582d91803aab334", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "d74a1797a4c614b767fc3bae", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18 - } - }, { - "_id": "d9cbc2cd84237f98ff2755c3", - "_tpl": "576a5ed62459771e9c2096cb", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 4 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "8f79a44ad63d889117296f4c", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "d9cbc2cd84237f98ff2755c3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18 - } - }, { - "_id": "2812b9183017676294379dca", - "_tpl": "576a5ed62459771e9c2096cb", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 6 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "d8f30bca23ad344542332c2b", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "2812b9183017676294379dca", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18 - } - }, { - "_id": "793165a59cd9851376721225", - "_tpl": "576a5ed62459771e9c2096cb", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 5 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "a8063d54da55fb4f5f65e5db", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "793165a59cd9851376721225", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18 - } - }, { - "_id": "5c38985edc19d2dcabbae35c", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 10 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 25 - } - }, { - "_id": "e1ea22ee08f9df9510ba0d78", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 10 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 25 - } - }, { - "_id": "cfefb0ba82b5146fc31a6950", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 10 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 50 - } - }, { - "_id": "b6672157bc48c99a22bddfc0", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 10 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 50 - } - }, { - "_id": "eb9fdb0d060da5428fda443c", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 8 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 25 - } - }, { - "_id": "79d2d8c7e5beea7eacdd182b", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 10 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 25 - } - }, { - "_id": "627d2a20092c113b5becf64d", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 8 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 25 - } - }, { - "_id": "ca80652ee36de43007d8efcc", - "_tpl": "599860ac86f77436b225ed1a", - "location": { - "isSearched": true, - "r": 0, - "x": 1, - "y": 8 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "008684957ef010140bcaab5d", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "ca80652ee36de43007d8efcc", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "a3c7c8cc79286d6977471596", - "_tpl": "599860ac86f77436b225ed1a", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 8 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "0ec7e3bf2f3c7c3ba38239eb", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "a3c7c8cc79286d6977471596", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "feb6dfb5498cd78530ef127c", - "_tpl": "599860ac86f77436b225ed1a", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 8 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "e8bb934c6185c10053db2644", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "feb6dfb5498cd78530ef127c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "98f8acadeebdbfc5dc71e3d1", - "_tpl": "599860ac86f77436b225ed1a", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 8 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "5d1d600c9966b2a55a7b2753", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "98f8acadeebdbfc5dc71e3d1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "865d1f2ad642b3b4f1215069", - "_tpl": "599860ac86f77436b225ed1a", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 8 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "b66581c029631a7b55a32047", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "865d1f2ad642b3b4f1215069", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "84e1c2763a73328da1f12d47", - "_tpl": "5ca20d5986f774331e7c9602", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 11 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "a41d51a5df91ab76147f4f67", - "_tpl": "5ca20d5986f774331e7c9602", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 11 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "da12ff8da976f0b65169a4c6", - "_tpl": "56dfef82d2720bbd668b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 17 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "cff77612829a2bca05bb12fe", - "_tpl": "590c661e86f7741e566b646a", - "location": { - "isSearched": true, - "r": 1, - "x": 8, - "y": 32 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 220 - } - } - }, { - "_id": "bf4e22ad1b7491a3b64952f0", - "_tpl": "5449016a4bdc2d6f028b456f", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 1 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 250000 - } - }, { - "_id": "0d433004c6fbce3e87cab553", - "_tpl": "590c661e86f7741e566b646a", - "location": { - "isSearched": true, - "r": 1, - "x": 8, - "y": 30 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 220 - } - } - }, { - "_id": "45f4260eb5b8f95b76169117", - "_tpl": "5755383e24597772cb798966", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 36 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 6 - } - } - }, { - "_id": "5b5939c98d57a378a0028aab", - "_tpl": "56dff3afd2720bba668b4567", - "location": { - "isSearched": true, - "r": "Horizontal", - "x": 9, - "y": 21 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "6090c8f36c2c7ea96450338f", - "_tpl": "5a0c27731526d80618476ac4", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 15 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "ab849c066c608b391089b7ec", - "_tpl": "5a0c27731526d80618476ac4", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 15 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "778249f3797805c34e11eb12", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 16 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "62357ba0ab9508b9dd3122e6", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "778249f3797805c34e11eb12", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "e7758bee1260861bf7002b97", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 16 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "44919bf9dd35679ad2f2f05a", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "e7758bee1260861bf7002b97", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "fa48d505a5d4b745d87738db", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 16 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "6f052efd98ed56034614d0c8", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "fa48d505a5d4b745d87738db", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "791c40db74e01311fe25e1f6", - "_tpl": "56dfef82d2720bbd668b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 16 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "ae94aebd712a154aa5507d95", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 16 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "ff0ff90e0cf7c5e3e7010ea4", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "ae94aebd712a154aa5507d95", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "08dfb883d785b8f6c2cb3c55", - "_tpl": "590c5d4b86f774784e1b9c45", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 30 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "d669a3bb766f4b5372d397c8", - "_tpl": "590c5d4b86f774784e1b9c45", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 30 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "151c9e54ab15b0671f73dbc8", - "_tpl": "590c5d4b86f774784e1b9c45", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 30 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "ab975022dba4a048a89bab1f", - "_tpl": "5448fee04bdc2dbc018b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 32 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 60 - } - } - }, { - "_id": "6e7c46c087fbb3c5c75d8289", - "_tpl": "5448fee04bdc2dbc018b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 32 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 60 - } - } - }, { - "_id": "2c2328ec1d21a33e4672ff5d", - "_tpl": "5448fee04bdc2dbc018b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 32 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 60 - } - } - }, { - "_id": "7f0dce2c6b47b1eeac74f3fd", - "_tpl": "57347da92459774491567cf5", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 29 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "f34845e66c2fb4d3a724610e", - "_tpl": "57347da92459774491567cf5", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 29 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "14d7acac0cfb3b83a75f338e", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 35 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "e9a6f02b0bdcb5396e649244", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 35 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "370172a19dfd4e467aef1dbe", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 35 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "d4dce1062cb9cc8a826ea03b", - "_tpl": "544fb3364bdc2d34748b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 36 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "d3ce4df1bc5894e2f78882f3", - "_tpl": "544fb3364bdc2d34748b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 36 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "ae8149b8dc0ae253f174b6f4", - "_tpl": "544fb3364bdc2d34748b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 36 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "4daad698cf5b72487346e0d5", - "_tpl": "5755356824597772cb798962", - "location": { - "isSearched": true, - "r": 0, - "x": 1, - "y": 34 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 100 - } - } - }, { - "_id": "f880ae41ce81ab084a2f4eab", - "_tpl": "5755356824597772cb798962", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 34 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 100 - } - } - }, { - "_id": "64277b11e912b968a9c41b3b", - "_tpl": "544fb25a4bdc2dfb738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 37 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "239a4b43740b84e90db4fb17", - "_tpl": "544fb25a4bdc2dfb738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 37 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "c4332600c7ea3d4dc9a3eeeb", - "_tpl": "544fb25a4bdc2dfb738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 36 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "87961dd2d7e7ee05db9e45c9", - "_tpl": "576a5ed62459771e9c2096cb", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 7 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "9dd9d821cffb585482fd1389", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "87961dd2d7e7ee05db9e45c9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18 - } - }, { - "_id": "9417e493bc4c277a6adee960", - "_tpl": "576a5ed62459771e9c2096cb", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 6 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "9492c6ec9a2a58c03fb3ae07", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "9417e493bc4c277a6adee960", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18 - } - }, { - "_id": "50e24912547aecad4244f96c", - "_tpl": "560d5e524bdc2d25448b4571", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 18 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "bf299763ba7c6d6130aeb67c", - "_tpl": "5a0c27731526d80618476ac4", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 14 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "169fca7757fa58518380f4ed", - "_tpl": "5a0c27731526d80618476ac4", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 14 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "94614a61c5f560ec575b96f5", - "_tpl": "57347da92459774491567cf5", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 28 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "a9f69caa9c291288d3af3f70", - "_tpl": "5d02778e86f774203e7dedbe", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 36 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 5 - } - } - }, { - "_id": "86c426e5603f11f3973a7c2e", - "_tpl": "544fb45d4bdc2dee738b4568", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 36 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 400 - } - } - }, { - "_id": "423c59d7d0be625133067ff9", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "location": { - "isSearched": true, - "r": 0, - "x": 1, - "y": 35 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "d987a0a70512510f633e21d5", - "_tpl": "590c695186f7741e566b64a2", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 37 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "d51b419b7f442422bcf2fab6", - "_tpl": "590c695186f7741e566b64a2", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 37 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "03cd7851e89f43020e24bafb", - "_tpl": "5751a25924597722c463c472", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 34 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 2 - } - } - }, { - "_id": "57daa3f963e75470cebe4fef", - "_tpl": "5751a25924597722c463c472", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 34 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 2 - } - } - }, { - "_id": "e63b5a4e5a3c84dde743edd1", - "_tpl": "5696686a4bdc2da3298b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 2 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 500 - } - }, { - "_id": "4c138d4262cfdd01efc8145a", - "_tpl": "5696686a4bdc2da3298b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 2 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 500 - } - }, { - "_id": "f0f9c3ff0b3b1dbdeffee6ea", - "_tpl": "560d5e524bdc2d25448b4571", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 18 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "a8b2466d0350461c4b04fd2c", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 10 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 50 - } - }, { - "_id": "fe4dbfce77eb6008a8f4d09d", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 10 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 25 - } - }, { - "_id": "11ae2930e3accdc5f124876b", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 9 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 25 - } - }, { - "_id": "c8a0ba51f519cfde0fe997e8", - "_tpl": "5c0e53c886f7747fa54205c7", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 19 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 47, - "MaxDurability": 47 - } - } - }, { - "_id": "658c3f38bb2016e5630bdca8", - "_tpl": "656f603f94b480b8a500c0d6", - "parentId": "c8a0ba51f519cfde0fe997e8", - "slotId": "front_plate" - }, { - "_id": "658c3f38bb2016e5630bdca9", - "_tpl": "656efd66034e8e01c407f35c", - "parentId": "c8a0ba51f519cfde0fe997e8", - "slotId": "back_plate" - }, { - "_id": "658c3f38bb2016e5630bdcaa", - "_tpl": "654a8b0b0337d53f9102c2ae", - "parentId": "c8a0ba51f519cfde0fe997e8", - "slotId": "soft_armor_front" - }, { - "_id": "658c3f38bb2016e5630bdcab", - "_tpl": "654a8976f414fcea4004d78b", - "parentId": "c8a0ba51f519cfde0fe997e8", - "slotId": "soft_armor_back" - }, { - "_id": "658c3f38bb2016e5630bdcac", - "_tpl": "654a8b3df414fcea4004d78f", - "parentId": "c8a0ba51f519cfde0fe997e8", - "slotId": "soft_armor_left" - }, { - "_id": "658c3f38bb2016e5630bdcad", - "_tpl": "654a8b80f414fcea4004d797", - "parentId": "c8a0ba51f519cfde0fe997e8", - "slotId": "soft_armor_right" - }, { - "_id": "658c3f38bb2016e5630bdcae", - "_tpl": "654a8ae00337d53f9102c2aa", - "parentId": "c8a0ba51f519cfde0fe997e8", - "slotId": "Collar" - }, { - "_id": "658c3f38bb2016e5630bdcaf", - "_tpl": "654a8bc5f414fcea4004d79b", - "parentId": "c8a0ba51f519cfde0fe997e8", - "slotId": "Groin" - }, { - "_id": "cd688bf5123e7f7b524bf826", - "_tpl": "560d5e524bdc2d25448b4571", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 18 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "44ebc2c1ad7f620ebe405367", - "_tpl": "5d1b36a186f7742523398433", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 38 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Resource": { - "Value": 100 - } - } - }, { - "_id": "c71ab08b792188701a79e839", - "_tpl": "5d1b371186f774253763a656", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 38 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Resource": { - "Value": 60 - } - } - }, { - "_id": "719317c75d4325f6a48a14a6", - "_tpl": "5d0a3e8cd7ad1a6f6a3d35bd", - "parentId": "f5de5b058e07bcacee8c97d0", - "slotId": "mod_scope", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "f5de5b058e07bcacee8c97d0", - "_tpl": "5d0a29fed7ad1a002769ad08", - "parentId": "60c86df7ed1a4e3ce394a0f6", - "slotId": "mod_scope" - }, { - "_id": "612d78111fdcbf34bd2d7b28", - "_tpl": "5710c24ad2720bc3458b45a3", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 21 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "100de389aa4e70a171270a83", - "_tpl": "5710c24ad2720bc3458b45a3", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 21 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "e58c0f483fce36e55aec165e", - "_tpl": "559ba5b34bdc2d1f1a8b4582", - "location": { - "isSearched": true, - "r": "Horizontal", - "x": 8, - "y": 18 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "e20ddc9d3b8849fbdc251ea0", - "_tpl": "5887431f2459777e1612938f", - "parentId": "e58c0f483fce36e55aec165e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 - } - }, { - "_id": "dd6cb088cfc11365f794ec4b", - "_tpl": "559ba5b34bdc2d1f1a8b4582", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 20 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "da6373f4e09dd3d4eea68bf0", - "_tpl": "5887431f2459777e1612938f", - "parentId": "dd6cb088cfc11365f794ec4b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 - } - }, { - "_id": "9cad0271722c938b71f12f95", - "_tpl": "559ba5b34bdc2d1f1a8b4582", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 19 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "d9d62e8db1303bbf4a88c7e9", - "_tpl": "5887431f2459777e1612938f", - "parentId": "9cad0271722c938b71f12f95", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 - } - }, { - "_id": "25a617ea956575203cdf0a09", - "_tpl": "5d02778e86f774203e7dedbe", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 35 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 5 - } - } - }, { - "_id": "deed2ec92f8ebf37cf3e639a", - "_tpl": "5af0454c86f7746bf20992e8", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 34 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 5 - } - } - }, { - "_id": "e4c6958acc50164d2387b53a", - "_tpl": "5aa7cfc0e5b5b00015693143", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 23 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 25, - "MaxDurability": 25 - } - } - }, { - "_id": "658c3f38bb2016e5630bdc64", - "_tpl": "657baaf0b7e9ca9a02045c02", - "parentId": "e4c6958acc50164d2387b53a", - "slotId": "Helmet_top" - }, { - "_id": "658c3f38bb2016e5630bdc65", - "_tpl": "657bab6ec6f689d3a205b85f", - "parentId": "e4c6958acc50164d2387b53a", - "slotId": "Helmet_back" - }, { - "_id": "658c3f38bb2016e5630bdc66", - "_tpl": "657babc6f58ba5a6250107a2", - "parentId": "e4c6958acc50164d2387b53a", - "slotId": "Helmet_ears" - }, { - "_id": "599a234277a564d9dd5bdd1c", - "_tpl": "5ab8f39486f7745cd93a1cca", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 22 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "8683fa7212c9bdd366063dd0", - "_tpl": "544fb37f4bdc2dee738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 32 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 4 - } - } - }, { - "_id": "4abf4d970ec5b19afe8e126d", - "_tpl": "569668774bdc2da2298b4568", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 2 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 500 - } - }, { - "_id": "7ca437210f63ee92275b37fe", - "_tpl": "544fb45d4bdc2dee738b4568", - "location": { - "isSearched": true, - "r": 0, - "x": 1, - "y": 36 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 400 - } - } - }, { - "_id": "7ad655c1e45bc6a9f49b4b99", - "_tpl": "544fb45d4bdc2dee738b4568", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 36 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 400 - } - } - }, { - "_id": "f602250b1405f266cfe696f7", - "_tpl": "5af0454c86f7746bf20992e8", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 34 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 5 - } - } - }, { - "_id": "8b672ab1e2278d787bed7cf9", - "_tpl": "5d5d940f86f7742797262046", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 29 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "da478b8f22969edb7af064a8", - "_tpl": "57cd379a24597778e7682ecf", - "location": { - "isSearched": true, - "r": 1, - "x": 4, - "y": 23 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "49fbfbdeed8888564938c8cb", - "_tpl": "5710c24ad2720bc3458b45a3", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 21 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "8da531704ee0e9cabfc6dce2", - "_tpl": "5710c24ad2720bc3458b45a3", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 22 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "3cd0e5ffd24f9e4c1f206741", - "_tpl": "5ab8f39486f7745cd93a1cca", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 21 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "24f71b418e8670d740e6024b", - "_tpl": "5e2af4a786f7746d3f3c3400", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 40 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Resource": { - "Value": 0 - } - } - }, { - "_id": "17f350695fd709de9e868610", - "_tpl": "5d5d85c586f774279a21cbdb", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 25 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "380b954613fc6559dee3e19e", - "_tpl": "5c0e722886f7740458316a57", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 25 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 65, - "MaxDurability": 65 - } - } - }, { - "_id": "658c3f38bb2016e5630bdcb1", - "_tpl": "656fa0fb498d1b7e3e071d9c", - "parentId": "380b954613fc6559dee3e19e", - "slotId": "Front_plate" - }, { - "_id": "658c3f38bb2016e5630bdcb2", - "_tpl": "656fa0fb498d1b7e3e071d9c", - "parentId": "380b954613fc6559dee3e19e", - "slotId": "Back_plate" - }, { - "_id": "658c3f38bb2016e5630bdcb3", - "_tpl": "65730c0e292ecadbfa09ad49", - "parentId": "380b954613fc6559dee3e19e", - "slotId": "Soft_armor_front" - }, { - "_id": "658c3f38bb2016e5630bdcb4", - "_tpl": "65730c2213a2f660f60bea96", - "parentId": "380b954613fc6559dee3e19e", - "slotId": "Soft_armor_back" - }, { - "_id": "658c3f38bb2016e5630bdcb5", - "_tpl": "65730c2b292ecadbfa09ad50", - "parentId": "380b954613fc6559dee3e19e", - "slotId": "Soft_armor_left" - }, { - "_id": "658c3f38bb2016e5630bdcb6", - "_tpl": "65730c35292ecadbfa09ad54", - "parentId": "380b954613fc6559dee3e19e", - "slotId": "soft_armor_right" - }, { - "_id": "b410bdab51c195ffe3c83d1b", - "_tpl": "5b432d215acfc4771e1c6624", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 23 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 30, - "MaxDurability": 30 - } - } - }, { - "_id": "658c3f38bb2016e5630bdc75", - "_tpl": "657bb92fa1c61ee0c303631f", - "parentId": "b410bdab51c195ffe3c83d1b", - "slotId": "Helmet_top" - }, { - "_id": "658c3f38bb2016e5630bdc76", - "_tpl": "657bb99db30eca976305117f", - "parentId": "b410bdab51c195ffe3c83d1b", - "slotId": "Helmet_back" - }, { - "_id": "172f0b166eec3c78e6c3ea84", - "_tpl": "5e8488fa988a8701445df1e4", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 37 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 3 - } - } - }, { - "_id": "ccac1906f229352147a9934b", - "_tpl": "5e8488fa988a8701445df1e4", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 37 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 3 - } - } - }, { - "_id": "c728563377b6a440482d77b9", - "_tpl": "590c678286f77426c9660122", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 38 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 300 - } - } - }, { - "_id": "b43973e59452e707816a5857", - "_tpl": "590c678286f77426c9660122", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 39 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 300 - } - } - }, { - "_id": "dd039504d446bd7af0992a1b", - "_tpl": "590c678286f77426c9660122", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 38 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 300 - } - } - }, { - "_id": "dc189c626993ff517fc61236", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 28 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "7d644abc323d82b9ba729740", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "dc189c626993ff517fc61236", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "661a3936e62f490e219582dc", - "_tpl": "56dff3afd2720bba668b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 28 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 60 - } - }, { - "_id": "449d62388f2f639a64045d71", - "_tpl": "56dff3afd2720bba668b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 28 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 60 - } - }, { - "_id": "52399e2f1a3044a514b2030b", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 23 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "467a6cdeeb6cd75a7c538872", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "52399e2f1a3044a514b2030b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "e0419baa0c2d4f3619acb5cc", - "_tpl": "5c0e530286f7747fa1419862", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 35 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "1e4a2fd745c006867fb88f79", - "_tpl": "5c0e530286f7747fa1419862", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 35 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "5784837a07c8f380cb2950cd", - "_tpl": "559ba5b34bdc2d1f1a8b4582", - "parentId": "60c86df7ed1a4e3ce394a0f6", - "slotId": "mod_magazine" - }, { - "_id": "de67e78c4fb859322f766194", - "_tpl": "5887431f2459777e1612938f", - "parentId": "5784837a07c8f380cb2950cd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 - } - }, { - "_id": "1eb47c86694ab2fce9904af6", - "_tpl": "5c0505e00db834001b735073", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 24 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "1772d219adce434a029346c1", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 25 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "b04747fbdbeb0707a3f7340d", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "1772d219adce434a029346c1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "12572b486734c09b8839733d", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "location": { - "isSearched": true, - "r": 1, - "x": 5, - "y": 24 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "8f08e02573f940e71f37feb2", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "12572b486734c09b8839733d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "4da90923d1e3133f938bdeec", - "_tpl": "590c657e86f77412b013051d", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 38 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 1800 - } - } - }, { - "_id": "c6d58ede5aa9d24744187054", - "_tpl": "5af0454c86f7746bf20992e8", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 34 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 5 - } - } - }, { - "_id": "0bc3a80d48bac27550c6a15a", - "_tpl": "5b432b965acfc47a8774094e", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 21 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "5f13a6fbf32fbcd1c5796899", - "_tpl": "57347da92459774491567cf5", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 27 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "f0c60e3787fa3aca66dcc74a", - "_tpl": "5887431f2459777e1612938f", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 22 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 40 - } - }, { - "_id": "44e01b1a96be81711f7dc93e", - "_tpl": "544fb37f4bdc2dee738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 34 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 4 - } - } - }, { - "_id": "7dd0fe67076e301ba04210dc", - "_tpl": "544fb37f4bdc2dee738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 33 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 4 - } - } - }, { - "_id": "5253b6b2ca3428ab303af52b", - "_tpl": "5e2af47786f7746d404f3aaa", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 38 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Resource": { - "Value": 0 - } - } - }, { - "_id": "99eaa80a461346eda014048d", - "_tpl": "5e2af47786f7746d404f3aaa", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 39 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Resource": { - "Value": 0 - } - } - }, { - "_id": "9812a8a58953878fa4242cd3", - "_tpl": "5e2af4a786f7746d3f3c3400", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 40 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "Resource": { - "Value": 0 - } - } - }, { - "_id": "1f7bfa7312cdaa64f4133089", - "_tpl": "544fb3f34bdc2d03748b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 35 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "04e14fd3d1294042f7cb618d", - "_tpl": "544fb3f34bdc2d03748b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 35 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "93ca8f31b67632bc7f8caf74", - "_tpl": "576a5ed62459771e9c2096cb", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 6 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "d96c035dd972bb5b42a7951a", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "93ca8f31b67632bc7f8caf74", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18 - } - }, { - "_id": "217bde33f66867ae88e11af1", - "_tpl": "576a5ed62459771e9c2096cb", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 6 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "d7ab0baf36814edcd1c33e20", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "217bde33f66867ae88e11af1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18 - } - }, { - "_id": "32c8f2ea6a975dafe2f4daba", - "_tpl": "576a5ed62459771e9c2096cb", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 7 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "97861a122e2e3e84c07e34b3", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "32c8f2ea6a975dafe2f4daba", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18 - } - }, { - "_id": "6c232b354c34836ee2627544", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 8 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 25 - } - }, { - "_id": "e4d6da7d7327f32138181741", - "_tpl": "5645bcc04bdc2d363b8b4572", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 23 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "8698b23a78a8dc22f4c69609", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 9 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 25 - } - }, { - "_id": "3497bff150a35f338ca823f6", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 8 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 25 - } - }, { - "_id": "9942ed330f84122f06ba4db4", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 7 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 25 - } - }, { - "_id": "bc683f19adbaab56ff115d51", - "_tpl": "56d59d3ad2720bdb418b4577", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 7 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 25 - } - }, { - "_id": "1064afb08ab86ccac101d94f", - "_tpl": "57347da92459774491567cf5", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 30 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "c844cb2dba7d609cbcba4770", - "_tpl": "57347da92459774491567cf5", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 31 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "5ed1e6bac123c3b2c9eeaf35", - "_tpl": "544fb25a4bdc2dfb738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 37 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "033a831eee25432724e8b1e9", - "_tpl": "576a581d2459771e7b1bc4f1", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 4 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "4040d36d8534fae91fb683d9", - "_tpl": "576a5ed62459771e9c2096cb", - "parentId": "033a831eee25432724e8b1e9", - "slotId": "mod_magazine" - }, { - "_id": "b1c5d10c0b6bb788d1a1d032", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "4040d36d8534fae91fb683d9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18 - } - }, { - "_id": "cbd1aa819fe0cf71f0d23ccd", - "_tpl": "576a63cd2459771e796e0e11", - "parentId": "033a831eee25432724e8b1e9", - "slotId": "mod_pistol_grip" - }, { - "_id": "aee2db2a5b61e09942c5b7d7", - "_tpl": "59984ab886f7743e98271174", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 6 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "e73fe8ced9426d992f6bb3c0", - "_tpl": "5998517986f7746017232f7e", - "parentId": "aee2db2a5b61e09942c5b7d7", - "slotId": "mod_pistol_grip" - }, { - "_id": "88641f60682745d0bf04747e", - "_tpl": "599851db86f77467372f0a18", - "parentId": "aee2db2a5b61e09942c5b7d7", - "slotId": "mod_stock" - }, { - "_id": "6393b7d3728b809b054baa31", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "aee2db2a5b61e09942c5b7d7", - "slotId": "mod_magazine" - }, { - "_id": "77489a635cff7fb941b58382", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "6393b7d3728b809b054baa31", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "54d27d8d60eb93aa6598377a", - "_tpl": "5998597786f77414ea6da093", - "parentId": "aee2db2a5b61e09942c5b7d7", - "slotId": "mod_muzzle" - }, { - "_id": "249ccd46eb7413434545be77", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "aee2db2a5b61e09942c5b7d7", - "slotId": "mod_reciever" - }, { - "_id": "673088d03e5d01e4138ef4ab", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "aee2db2a5b61e09942c5b7d7", - "slotId": "mod_sight_rear", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "e629647af1a768658f2576a9", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "aee2db2a5b61e09942c5b7d7", - "slotId": "mod_gas_block" - }, { - "_id": "6ae2eff0b14c553cdaf9c4be", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "e629647af1a768658f2576a9", - "slotId": "mod_handguard" - }, { - "_id": "48116a27afe5a51c917c10dd", - "_tpl": "576a581d2459771e7b1bc4f1", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 3 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "492f1602f7df59c0ff58bb91", - "_tpl": "576a5ed62459771e9c2096cb", - "parentId": "48116a27afe5a51c917c10dd", - "slotId": "mod_magazine" - }, { - "_id": "2d1261c888e045fc764e4a11", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "492f1602f7df59c0ff58bb91", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18 - } - }, { - "_id": "c68ed794aa5be082ab90220e", - "_tpl": "576a63cd2459771e796e0e11", - "parentId": "48116a27afe5a51c917c10dd", - "slotId": "mod_pistol_grip" - }, { - "_id": "04f8a1021e1cef21b5347758", - "_tpl": "576a581d2459771e7b1bc4f1", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 5 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "1ae4bba45f10fc2012f3a5b1", - "_tpl": "576a5ed62459771e9c2096cb", - "parentId": "04f8a1021e1cef21b5347758", - "slotId": "mod_magazine" - }, { - "_id": "5dbe4c5e5b4795f82ed6144a", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "1ae4bba45f10fc2012f3a5b1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 18 - } - }, { - "_id": "ca2a633299f9f33af985b298", - "_tpl": "576a63cd2459771e796e0e11", - "parentId": "04f8a1021e1cef21b5347758", - "slotId": "mod_pistol_grip" - }, { - "_id": "b81104333cd5e913c1abd001", - "_tpl": "59984ab886f7743e98271174", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 6 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "caae6d1eec454357902beeba", - "_tpl": "5998517986f7746017232f7e", - "parentId": "b81104333cd5e913c1abd001", - "slotId": "mod_pistol_grip" - }, { - "_id": "d1904664ab60713b9fd815be", - "_tpl": "599851db86f77467372f0a18", - "parentId": "b81104333cd5e913c1abd001", - "slotId": "mod_stock" - }, { - "_id": "9dad59f2a5e9ff7e955c5a56", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "b81104333cd5e913c1abd001", - "slotId": "mod_magazine" - }, { - "_id": "0a21f9564f0c58050b5dd2d2", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "9dad59f2a5e9ff7e955c5a56", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "ae896c83b9422ef05d676b06", - "_tpl": "5998597786f77414ea6da093", - "parentId": "b81104333cd5e913c1abd001", - "slotId": "mod_muzzle" - }, { - "_id": "fc407b8aa1339bba319c2ef6", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "b81104333cd5e913c1abd001", - "slotId": "mod_reciever" - }, { - "_id": "6a7502a02962e7c027c15a63", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "b81104333cd5e913c1abd001", - "slotId": "mod_sight_rear", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "67fe260376be3f6cb6ded9cf", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "b81104333cd5e913c1abd001", - "slotId": "mod_gas_block" - }, { - "_id": "f19cdda8faee5021d4a08f81", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "67fe260376be3f6cb6ded9cf", - "slotId": "mod_handguard" - }, { - "_id": "88d67c13e89abba40c550ef1", - "_tpl": "5ac4cd105acfc40016339859", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 16 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "ec876c03e80b8c3c46e59399", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "88d67c13e89abba40c550ef1", - "slotId": "mod_gas_block" - }, { - "_id": "da186a0d6c299a65a317ed61", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "ec876c03e80b8c3c46e59399", - "slotId": "mod_handguard" - }, { - "_id": "cfacc8f134240e1223fcb615", - "_tpl": "5ac7655e5acfc40016339a19", - "parentId": "88d67c13e89abba40c550ef1", - "slotId": "mod_muzzle" - }, { - "_id": "cc181f04ada4abe087e17234", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "88d67c13e89abba40c550ef1", - "slotId": "mod_pistol_grip" - }, { - "_id": "d8c5662e3f953c5e4c9f4613", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "88d67c13e89abba40c550ef1", - "slotId": "mod_reciever" - }, { - "_id": "ad816afec6245fb529b58600", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "88d67c13e89abba40c550ef1", - "slotId": "mod_sight_rear", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "fec1cfe279af3d3258bd0c90", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "88d67c13e89abba40c550ef1", - "slotId": "mod_stock" - }, { - "_id": "a4e24ac95eb0f569a1866bf3", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "88d67c13e89abba40c550ef1", - "slotId": "mod_magazine" - }, { - "_id": "2d1395cba72107e1c9162cf3", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "a4e24ac95eb0f569a1866bf3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "1c25a131cbb81b7961ef203b", - "_tpl": "5e870397991fd70db46995c8", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 18 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "5df1457876ccab711e118c24", - "_tpl": "5e87071478f43e51ca2de5e1", - "parentId": "1c25a131cbb81b7961ef203b", - "slotId": "mod_barrel" - }, { - "_id": "c0ca8f4dea05e26d4e806a4c", - "_tpl": "5e8708d4ae379e67d22e0102", - "parentId": "5df1457876ccab711e118c24", - "slotId": "mod_sight_front", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "6919532db9870495a2a7a7c8", - "_tpl": "5e87076ce2db31558c75a11d", - "parentId": "1c25a131cbb81b7961ef203b", - "slotId": "mod_handguard" - }, { - "_id": "90e4e6856f705bedd86f56c2", - "_tpl": "5e87080c81c4ed43e83cefda", - "parentId": "1c25a131cbb81b7961ef203b", - "slotId": "mod_magazine" - }, { - "_id": "d8f540e6cfb57e776d01e3ce", - "_tpl": "560d5e524bdc2d25448b4571", - "parentId": "90e4e6856f705bedd86f56c2", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 - } - }, { - "_id": "ce990869892535be8644a87d", - "_tpl": "5e87116b81c4ed43e83cefdd", - "parentId": "1c25a131cbb81b7961ef203b", - "slotId": "mod_stock" - }, { - "_id": "65c7752f89afb6e9fc368d54", - "_tpl": "5e87114fe2db31558c75a120", - "parentId": "1c25a131cbb81b7961ef203b", - "slotId": "mod_mount", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "2fee9ee8b89eb2bc60279765", - "_tpl": "560d5e524bdc2d25448b4571", - "parentId": "1c25a131cbb81b7961ef203b", - "slotId": "patron_in_weapon" - }, { - "_id": "0263e3bc89cb651c5139987e", - "_tpl": "559ba5b34bdc2d1f1a8b4582", - "location": { - "isSearched": true, - "r": "Horizontal", - "x": 9, - "y": 18 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout" - }, { - "_id": "769a6f15a9b3c58ce40e75ac", - "_tpl": "5887431f2459777e1612938f", - "parentId": "0263e3bc89cb651c5139987e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 - } - }, { - "_id": "b2edecbf14e5350dfd6e6e5e", - "_tpl": "6499849fc93611967b034949", - "location": { - "isSearched": true, - "r": 1, - "x": 7, - "y": 25 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Foldable": { - "Folded": false - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - },{ - "_id": "1424076063149bbbc18be043", - "_tpl": "649ec107961514b22506b10c", - "parentId": "b2edecbf14e5350dfd6e6e5e", - "slotId": "mod_gas_block", - "upd": { - "StackObjectsCount": 1 - } - }, { - "_id": "4d80308cb8a6857a9d83bbc6", - "_tpl": "5beec8ea0db834001a6f9dbf", - "parentId": "b2edecbf14e5350dfd6e6e5e", - "slotId": "mod_pistol_grip", - "upd": { - "StackObjectsCount": 1 - } - }, { - "_id": "a025f2dbc9f08b942a4c6e9b", - "_tpl": "649ec127c93611967b034957", - "parentId": "b2edecbf14e5350dfd6e6e5e", - "slotId": "mod_handguard", - "upd": { - "StackObjectsCount": 1 - } - }, { - "_id": "4604eba2de0c758ccba0a192", - "_tpl": "649ec2af961514b22506b10f", - "parentId": "b2edecbf14e5350dfd6e6e5e", - "slotId": "mod_muzzle", - "upd": { - "StackObjectsCount": 1 - } - }, { - "_id": "d29933d494ea298f19db3aeb", - "_tpl": "649ec2f3961514b22506b111", - "parentId": "b2edecbf14e5350dfd6e6e5e", - "slotId": "mod_reciever", - "upd": { - "StackObjectsCount": 1 - } - }, { - "_id": "9808b23de6d06cbcf1dfb99e", - "_tpl": "649ec30cb013f04a700e60fb", - "parentId": "b2edecbf14e5350dfd6e6e5e", - "slotId": "mod_magazine", - "upd": { - "StackObjectsCount": 1 - } - }, { - "_id": "c63e9186930f29c20f9d0fe4", - "_tpl": "649ec87d8007560a9001ab36", - "parentId": "b2edecbf14e5350dfd6e6e5e", - "slotId": "mod_stock_001", - "upd": { - "StackObjectsCount": 1 - } - }, { - "_id": "81c613b056072a70d6c26e1f", - "_tpl": "5beecbb80db834001d2c465e", - "parentId": "a025f2dbc9f08b942a4c6e9b", - "slotId": "mod_mount_001", - "upd": { - "StackObjectsCount": 1 - } - }, { - "_id": "20c4a8f521c8aed8176d3870", - "_tpl": "649ec2da59cbb3c813042dca", - "parentId": "d29933d494ea298f19db3aeb", - "slotId": "mod_sight_rear", - "upd": { - "StackObjectsCount": 1 - } - }, { - "_id": "5c730026306a7c56490e5f3e", - "_tpl": "5beec8c20db834001d2c465c", - "parentId": "c63e9186930f29c20f9d0fe4", - "slotId": "mod_stock", - "upd": { - "StackObjectsCount": 1 - } - }, { - "_id": "bcb76cd884032f340f0f7a01", - "_tpl": "649ec2cec93611967b03495e", - "parentId": "20c4a8f521c8aed8176d3870", - "slotId": "mod_sight_rear", - "upd": { - "StackObjectsCount": 1 - } - }, { - "_id": "0bc701a7ea93ee76e18ebb0e", - "_tpl": "56dff3afd2720bba668b4567", - "parentId": "9808b23de6d06cbcf1dfb99e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49444ae6628187a2e78ba", - "_tpl": "5963866b86f7747bfa1c4462" - }, { - "_id": "5fe49444ae6628187a2e78b9", - "_tpl": "5963866286f7747bf429b572" - }, { - "_id": "60dca3da42ad9b706b369aca", - "_tpl": "602543c13fee350cd564d032" - }, { - "_id": "60c86df7ed1a4e3ce394a0f6", - "_tpl": "55801eed4bdc2d89578b4588", - "location": { - "isSearched": true, - "r": "Horizontal", - "x": 4, - "y": 19 - }, - "parentId": "5fe49444ae6628187a2e78b8", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - }, - "StackObjectsCount": 1 - } - }, { - "_id": "645a3bf083b382035fcd50c3", - "_tpl": "56083eab4bdc2d26448b456a", - "parentId": "60c86df7ed1a4e3ce394a0f6", - "slotId": "mod_tactical", - "upd": { - "StackObjectsCount": 1 - } - }, { - "_id": "f230be53d0fb90f23ac0005e", - "_tpl": "560e620e4bdc2d724b8b456b", - "parentId": "60c86df7ed1a4e3ce394a0f6", - "slotId": "mod_muzzle", - "upd": { - "StackObjectsCount": 1 - } - }, { - "_id": "3da4a360d74f2f9628bc5dd2", - "_tpl": "61faa91878830f069b6b7967", - "parentId": "60c86df7ed1a4e3ce394a0f6", - "slotId": "mod_stock", - "upd": { - "StackObjectsCount": 1 - } - }, { - "_id": "969ff4763565268bc52e4d2e", - "_tpl": "56ea8222d2720b69698b4567", - "parentId": "3da4a360d74f2f9628bc5dd2", - "slotId": "mod_bipod", - "upd": { - "StackObjectsCount": 1 - } + "items": [ + { + "_id": "6613bb72b5b0ba138a0fa9f4", + "_tpl": "55d7217a4bdc2d86028b456d" + }, { + "_id": "6613bb72b5b0ba138a0fa9d9", + "_tpl": "5ac4cd105acfc40016339859", + "parentId": "6613bb72b5b0ba138a0fa9f4", + "slotId": "FirstPrimaryWeapon" + }, { + "_id": "6613bb72b5b0ba138a0fa9d1", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "6613bb72b5b0ba138a0fa9d9", + "slotId": "mod_gas_block" + }, { + "_id": "6613bb72b5b0ba138a0fa9d0", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "6613bb72b5b0ba138a0fa9d1", + "slotId": "mod_handguard" + }, { + "_id": "6613bb72b5b0ba138a0fa9d2", + "_tpl": "5ac7655e5acfc40016339a19", + "parentId": "6613bb72b5b0ba138a0fa9d9", + "slotId": "mod_muzzle" + }, { + "_id": "6613bb72b5b0ba138a0fa9d3", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "6613bb72b5b0ba138a0fa9d9", + "slotId": "mod_pistol_grip" + }, { + "_id": "6613bb72b5b0ba138a0fa9d4", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "6613bb72b5b0ba138a0fa9d9", + "slotId": "mod_reciever" + }, { + "_id": "6613bb72b5b0ba138a0fa9d5", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "6613bb72b5b0ba138a0fa9d9", + "slotId": "mod_sight_rear" + }, { + "_id": "6613bb72b5b0ba138a0fa9d6", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "6613bb72b5b0ba138a0fa9d9", + "slotId": "mod_stock" + }, { + "_id": "6613bb72b5b0ba138a0fa9d8", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "6613bb72b5b0ba138a0fa9d9", + "slotId": "mod_magazine" + }, { + "_id": "6613bb72b5b0ba138a0fa9d7", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "6613bb72b5b0ba138a0fa9d8", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 } - ], - "questRaidItems": "5fe49444ae6628187a2e78b9", - "questStashItems": "5fe49444ae6628187a2e78ba", - "sortingTable": "60dca3da42ad9b706b369aca", - "stash": "5fe49444ae6628187a2e78b8" + }, { + "_id": "6613bb72b5b0ba138a0fa9da", + "_tpl": "5bffdc370db834001d23eca8", + "parentId": "6613bb72b5b0ba138a0fa9f4", + "slotId": "Scabbard" + }, { + "_id": "6613bb72b5b0ba138a0fa9db", + "_tpl": "5b40e5e25acfc4001a599bea", + "parentId": "6613bb72b5b0ba138a0fa9f4", + "slotId": "Headwear" + }, { + "_id": "6613bb72b5b0ba138a0fa9e3", + "_tpl": "5ca20abf86f77418567a43f2", + "parentId": "6613bb72b5b0ba138a0fa9f4", + "slotId": "TacticalVest" + }, { + "_id": "6613bb72b5b0ba138a0fa9dd", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "6613bb72b5b0ba138a0fa9e3", + "slotId": "1", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0fa9dc", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0fa9dd", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0fa9df", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "6613bb72b5b0ba138a0fa9e3", + "slotId": "2", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0fa9de", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0fa9df", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0fa9e1", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "6613bb72b5b0ba138a0fa9e3", + "slotId": "3", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0fa9e0", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0fa9e1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0fa9e2", + "_tpl": "5755356824597772cb798962", + "parentId": "6613bb72b5b0ba138a0fa9e3", + "slotId": "4", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0fa9e4", + "_tpl": "5857a8bc2459772bad15db29", + "parentId": "6613bb72b5b0ba138a0fa9f4", + "slotId": "SecuredContainer" + }, { + "_id": "6613bb72b5b0ba138a0fa9e9", + "_tpl": "5ca20d5986f774331e7c9602", + "parentId": "6613bb72b5b0ba138a0fa9f4", + "slotId": "Backpack" + }, { + "_id": "6613bb72b5b0ba138a0fa9e5", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0fa9e9", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0fa9e6", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "6613bb72b5b0ba138a0fa9e9", + "slotId": "main", + "location": { + "x": 2, + "y": 1, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0fa9e7", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "6613bb72b5b0ba138a0fa9e9", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0fa9e8", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "6613bb72b5b0ba138a0fa9e9", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0fa9ee", + "_tpl": "5648a7494bdc2d9d488b4583", + "parentId": "6613bb72b5b0ba138a0fa9f4", + "slotId": "ArmorVest" + }, { + "_id": "6613bb72b5b0ba138a0fa9ea", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "6613bb72b5b0ba138a0fa9ee", + "slotId": "Soft_armor_front" + }, { + "_id": "6613bb72b5b0ba138a0fa9eb", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "6613bb72b5b0ba138a0fa9ee", + "slotId": "Soft_armor_back" + }, { + "_id": "6613bb72b5b0ba138a0fa9ec", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "6613bb72b5b0ba138a0fa9ee", + "slotId": "Soft_armor_left" + }, { + "_id": "6613bb72b5b0ba138a0fa9ed", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "6613bb72b5b0ba138a0fa9ee", + "slotId": "soft_armor_right" + }, { + "_id": "6613bb72b5b0ba138a0fa9f2", + "_tpl": "627a4e6b255f7527fb05a0f6", + "parentId": "6613bb72b5b0ba138a0fa9f4", + "slotId": "Pockets" + }, { + "_id": "6613bb72b5b0ba138a0fa9ef", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "6613bb72b5b0ba138a0fa9f2", + "slotId": "pocket1", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0fa9f0", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "6613bb72b5b0ba138a0fa9f2", + "slotId": "pocket2", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0fa9f1", + "_tpl": "5751a25924597722c463c472", + "parentId": "6613bb72b5b0ba138a0fa9f2", + "slotId": "pocket3", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0fa9f3", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "6613bb72b5b0ba138a0fa9f4", + "slotId": "Earpiece" + }, { + "_id": "6613bb72b5b0ba138a0fab07", + "_tpl": "5811ce772459770e9e5f9532" + }, { + "_id": "6613bb72b5b0ba138a0fa9f5", + "_tpl": "5755356824597772cb798962", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0fa9fa", + "_tpl": "5648a7494bdc2d9d488b4583", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0fa9f6", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "6613bb72b5b0ba138a0fa9fa", + "slotId": "Soft_armor_front" + }, { + "_id": "6613bb72b5b0ba138a0fa9f7", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "6613bb72b5b0ba138a0fa9fa", + "slotId": "Soft_armor_back" + }, { + "_id": "6613bb72b5b0ba138a0fa9f8", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "6613bb72b5b0ba138a0fa9fa", + "slotId": "Soft_armor_left" + }, { + "_id": "6613bb72b5b0ba138a0fa9f9", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "6613bb72b5b0ba138a0fa9fa", + "slotId": "soft_armor_right" + }, { + "_id": "6613bb72b5b0ba138a0fa9fb", + "_tpl": "5710c24ad2720bc3458b45a3", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 10, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0fa9fc", + "_tpl": "5b432b965acfc47a8774094e", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 8, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0fa9fd", + "_tpl": "5ca20abf86f77418567a43f2", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0fa9fe", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 22, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0fa9ff", + "_tpl": "5710c24ad2720bc3458b45a3", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 10, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa00", + "_tpl": "5ca20abf86f77418567a43f2", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 3, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa01", + "_tpl": "5755356824597772cb798962", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 2, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa02", + "_tpl": "5d40407c86f774318526545a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa03", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 1, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 250000 + } + }, { + "_id": "6613bb72b5b0ba138a0faa05", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 8, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa04", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faa05", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faa0a", + "_tpl": "5648a7494bdc2d9d488b4583", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 3, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa06", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "6613bb72b5b0ba138a0faa0a", + "slotId": "Soft_armor_front" + }, { + "_id": "6613bb72b5b0ba138a0faa07", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "6613bb72b5b0ba138a0faa0a", + "slotId": "Soft_armor_back" + }, { + "_id": "6613bb72b5b0ba138a0faa08", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "6613bb72b5b0ba138a0faa0a", + "slotId": "Soft_armor_left" + }, { + "_id": "6613bb72b5b0ba138a0faa09", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "6613bb72b5b0ba138a0faa0a", + "slotId": "soft_armor_right" + }, { + "_id": "6613bb72b5b0ba138a0faa0b", + "_tpl": "5b40e5e25acfc4001a599bea", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa0c", + "_tpl": "5b40e5e25acfc4001a599bea", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa0d", + "_tpl": "5b432b965acfc47a8774094e", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 8, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa0e", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 1, + "y": 10, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613bb72b5b0ba138a0faa10", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 3, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa0f", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faa10", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18 + } + }, { + "_id": "6613bb72b5b0ba138a0faa12", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 4, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa11", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faa12", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18 + } + }, { + "_id": "6613bb72b5b0ba138a0faa14", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 6, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa13", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faa14", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18 + } + }, { + "_id": "6613bb72b5b0ba138a0faa16", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 5, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa15", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faa16", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18 + } + }, { + "_id": "6613bb72b5b0ba138a0faa17", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 2, + "y": 10, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613bb72b5b0ba138a0faa18", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 7, + "y": 10, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613bb72b5b0ba138a0faa19", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 10, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613bb72b5b0ba138a0faa1a", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 10, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613bb72b5b0ba138a0faa1c", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 1, + "y": 8, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa1b", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faa1c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faa1e", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 2, + "y": 8, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa1d", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faa1e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faa20", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 8, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa1f", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faa20", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faa22", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 8, + "y": 8, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa21", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faa22", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faa24", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 7, + "y": 8, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa23", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faa24", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faa25", + "_tpl": "5ca20d5986f774331e7c9602", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 11, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa26", + "_tpl": "5ca20d5986f774331e7c9602", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 11, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa27", + "_tpl": "5710c24ad2720bc3458b45a3", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 21, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa28", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 8, + "y": 32, + "r": 1, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa29", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 1, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 250000 + } + }, { + "_id": "6613bb72b5b0ba138a0faa2a", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 8, + "y": 30, + "r": 1, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa2b", + "_tpl": "5755383e24597772cb798966", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa2c", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 17, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 60 + } + }, { + "_id": "6613bb72b5b0ba138a0faa2d", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 12, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa2e", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 12, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa30", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 16, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa2f", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0faa30", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faa32", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 16, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa31", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0faa32", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faa34", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 7, + "y": 16, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa33", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0faa34", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faa35", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 16, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 60 + } + }, { + "_id": "6613bb72b5b0ba138a0faa37", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 8, + "y": 16, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa36", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0faa37", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faa38", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 30, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa39", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 30, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa3a", + "_tpl": "590c5d4b86f774784e1b9c45", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 7, + "y": 30, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa3b", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 7, + "y": 32, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa3c", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 32, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa3d", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 32, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa3e", + "_tpl": "57347da92459774491567cf5", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 29, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa3f", + "_tpl": "57347da92459774491567cf5", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 29, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa40", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa41", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa42", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 2, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa43", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 7, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa44", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 8, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa45", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa46", + "_tpl": "5755356824597772cb798962", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 1, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa47", + "_tpl": "5755356824597772cb798962", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa48", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 37, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa49", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 37, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa4a", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa4c", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 7, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa4b", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faa4c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18 + } + }, { + "_id": "6613bb72b5b0ba138a0faa4e", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 6, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa4d", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faa4e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18 + } + }, { + "_id": "6613bb72b5b0ba138a0faa4f", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 7, + "y": 18, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613bb72b5b0ba138a0faa50", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 11, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa51", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 11, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa52", + "_tpl": "57347da92459774491567cf5", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 28, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa53", + "_tpl": "5d02778e86f774203e7dedbe", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa54", + "_tpl": "60098ad7c2240c0fe85c570a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa55", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 1, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa56", + "_tpl": "590c695186f7741e566b64a2", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 37, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa57", + "_tpl": "590c695186f7741e566b64a2", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 7, + "y": 37, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa58", + "_tpl": "5751a25924597722c463c472", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 8, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa59", + "_tpl": "5751a25924597722c463c472", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 7, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa5a", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 2, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 500 + } + }, { + "_id": "6613bb72b5b0ba138a0faa5b", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 2, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 500 + } + }, { + "_id": "6613bb72b5b0ba138a0faa5c", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 18, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613bb72b5b0ba138a0faa5d", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 8, + "y": 10, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613bb72b5b0ba138a0faa5e", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 18, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613bb72b5b0ba138a0faa5f", + "_tpl": "5d1b36a186f7742523398433", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 13, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa60", + "_tpl": "5d1b371186f774253763a656", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 2, + "y": 38, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa62", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 20, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa61", + "_tpl": "5887431f2459777e1612938f", + "parentId": "6613bb72b5b0ba138a0faa62", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } + }, { + "_id": "6613bb72b5b0ba138a0faa64", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 19, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa63", + "_tpl": "5887431f2459777e1612938f", + "parentId": "6613bb72b5b0ba138a0faa64", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } + }, { + "_id": "6613bb72b5b0ba138a0faa65", + "_tpl": "5710c24ad2720bc3458b45a3", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 21, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa66", + "_tpl": "5710c24ad2720bc3458b45a3", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 21, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa67", + "_tpl": "5d02778e86f774203e7dedbe", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa68", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa6c", + "_tpl": "5aa7cfc0e5b5b00015693143", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 23, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa69", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6613bb72b5b0ba138a0faa6c", + "slotId": "Helmet_top" + }, { + "_id": "6613bb72b5b0ba138a0faa6a", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6613bb72b5b0ba138a0faa6c", + "slotId": "Helmet_back" + }, { + "_id": "6613bb72b5b0ba138a0faa6b", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6613bb72b5b0ba138a0faa6c", + "slotId": "Helmet_ears" + }, { + "_id": "6613bb72b5b0ba138a0faa6d", + "_tpl": "5ab8f39486f7745cd93a1cca", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 22, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa6e", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 32, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa6f", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 2, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 500 + } + }, { + "_id": "6613bb72b5b0ba138a0faa70", + "_tpl": "60098ad7c2240c0fe85c570a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 21, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa71", + "_tpl": "60098ad7c2240c0fe85c570a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 1, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa72", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa73", + "_tpl": "5d5d940f86f7742797262046", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 29, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa74", + "_tpl": "57cd379a24597778e7682ecf", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 23, + "r": 1, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa75", + "_tpl": "5887431f2459777e1612938f", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 22, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 40 + } + }, { + "_id": "6613bb72b5b0ba138a0faa76", + "_tpl": "5710c24ad2720bc3458b45a3", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 22, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa77", + "_tpl": "5ab8f39486f7745cd93a1cca", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 21, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa78", + "_tpl": "5e2af4a786f7746d3f3c3400", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 39, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa79", + "_tpl": "5d5d85c586f774279a21cbdb", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 25, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa7c", + "_tpl": "5b432d215acfc4771e1c6624", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 2, + "y": 23, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa7a", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "6613bb72b5b0ba138a0faa7c", + "slotId": "Helmet_top" + }, { + "_id": "6613bb72b5b0ba138a0faa7b", + "_tpl": "657bb99db30eca976305117f", + "parentId": "6613bb72b5b0ba138a0faa7c", + "slotId": "Helmet_back" + }, { + "_id": "6613bb72b5b0ba138a0faa7d", + "_tpl": "5e8488fa988a8701445df1e4", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 37, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa7e", + "_tpl": "5e8488fa988a8701445df1e4", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 8, + "y": 37, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa7f", + "_tpl": "590c678286f77426c9660122", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 2, + "y": 37, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa80", + "_tpl": "590c678286f77426c9660122", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 37, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa81", + "_tpl": "590c678286f77426c9660122", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 1, + "y": 37, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa83", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 28, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa82", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0faa83", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faa84", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 28, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 60 + } + }, { + "_id": "6613bb72b5b0ba138a0faa85", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 28, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 60 + } + }, { + "_id": "6613bb72b5b0ba138a0faa87", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 23, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa86", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0faa87", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faa88", + "_tpl": "5c0e530286f7747fa1419862", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 8, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa89", + "_tpl": "5c0e530286f7747fa1419862", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa8a", + "_tpl": "5c0505e00db834001b735073", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 24, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa8c", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 25, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa8b", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0faa8c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faa8e", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 24, + "r": 1, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa8d", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0faa8e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faa8f", + "_tpl": "590c657e86f77412b013051d", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 38, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa90", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa91", + "_tpl": "5b432b965acfc47a8774094e", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 7, + "y": 21, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa92", + "_tpl": "57347da92459774491567cf5", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 27, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa93", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa94", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 33, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa95", + "_tpl": "5e2af47786f7746d404f3aaa", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 38, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa96", + "_tpl": "5e2af47786f7746d404f3aaa", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 39, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa97", + "_tpl": "5e2af4a786f7746d3f3c3400", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 38, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa98", + "_tpl": "544fb3f34bdc2d03748b456a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa99", + "_tpl": "544fb3f34bdc2d03748b456a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 7, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa9b", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 6, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa9a", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faa9b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18 + } + }, { + "_id": "6613bb72b5b0ba138a0faa9d", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 6, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa9c", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faa9d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18 + } + }, { + "_id": "6613bb72b5b0ba138a0faa9f", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 7, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faa9e", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faa9f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18 + } + }, { + "_id": "6613bb72b5b0ba138a0faaa0", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 6, + "y": 10, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613bb72b5b0ba138a0faaa1", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 7, + "y": 23, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faaa2", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 10, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613bb72b5b0ba138a0faaa3", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 7, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613bb72b5b0ba138a0faaa4", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 7, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613bb72b5b0ba138a0faaa5", + "_tpl": "57347da92459774491567cf5", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 30, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faaa6", + "_tpl": "57347da92459774491567cf5", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 31, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faaa7", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 5, + "y": 37, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faaa9", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 8, + "y": 18, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faaa8", + "_tpl": "5887431f2459777e1612938f", + "parentId": "6613bb72b5b0ba138a0faaa9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } + }, { + "_id": "6613bb72b5b0ba138a0faaab", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 9, + "y": 18, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faaaa", + "_tpl": "5887431f2459777e1612938f", + "parentId": "6613bb72b5b0ba138a0faaab", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } + }, { + "_id": "6613bb72b5b0ba138a0faaac", + "_tpl": "60098ad7c2240c0fe85c570a", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 2, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faab5", + "_tpl": "5c0e53c886f7747fa54205c7", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 19, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faaad", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "6613bb72b5b0ba138a0faab5", + "slotId": "front_plate" + }, { + "_id": "6613bb72b5b0ba138a0faaae", + "_tpl": "656efd66034e8e01c407f35c", + "parentId": "6613bb72b5b0ba138a0faab5", + "slotId": "back_plate" + }, { + "_id": "6613bb72b5b0ba138a0faaaf", + "_tpl": "654a8b0b0337d53f9102c2ae", + "parentId": "6613bb72b5b0ba138a0faab5", + "slotId": "soft_armor_front" + }, { + "_id": "6613bb72b5b0ba138a0faab0", + "_tpl": "654a8976f414fcea4004d78b", + "parentId": "6613bb72b5b0ba138a0faab5", + "slotId": "soft_armor_back" + }, { + "_id": "6613bb72b5b0ba138a0faab1", + "_tpl": "654a8b3df414fcea4004d78f", + "parentId": "6613bb72b5b0ba138a0faab5", + "slotId": "soft_armor_left" + }, { + "_id": "6613bb72b5b0ba138a0faab2", + "_tpl": "654a8b80f414fcea4004d797", + "parentId": "6613bb72b5b0ba138a0faab5", + "slotId": "soft_armor_right" + }, { + "_id": "6613bb72b5b0ba138a0faab3", + "_tpl": "654a8ae00337d53f9102c2aa", + "parentId": "6613bb72b5b0ba138a0faab5", + "slotId": "Collar" + }, { + "_id": "6613bb72b5b0ba138a0faab4", + "_tpl": "654a8bc5f414fcea4004d79b", + "parentId": "6613bb72b5b0ba138a0faab5", + "slotId": "Groin" + }, { + "_id": "6613bb72b5b0ba138a0faabc", + "_tpl": "5c0e722886f7740458316a57", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 25, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faab6", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "6613bb72b5b0ba138a0faabc", + "slotId": "Front_plate" + }, { + "_id": "6613bb72b5b0ba138a0faab7", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "6613bb72b5b0ba138a0faabc", + "slotId": "Back_plate" + }, { + "_id": "6613bb72b5b0ba138a0faab8", + "_tpl": "65730c0e292ecadbfa09ad49", + "parentId": "6613bb72b5b0ba138a0faabc", + "slotId": "Soft_armor_front" + }, { + "_id": "6613bb72b5b0ba138a0faab9", + "_tpl": "65730c2213a2f660f60bea96", + "parentId": "6613bb72b5b0ba138a0faabc", + "slotId": "Soft_armor_back" + }, { + "_id": "6613bb72b5b0ba138a0faaba", + "_tpl": "65730c2b292ecadbfa09ad50", + "parentId": "6613bb72b5b0ba138a0faabc", + "slotId": "Soft_armor_left" + }, { + "_id": "6613bb72b5b0ba138a0faabb", + "_tpl": "65730c35292ecadbfa09ad54", + "parentId": "6613bb72b5b0ba138a0faabc", + "slotId": "soft_armor_right" + }, { + "_id": "6613bb72b5b0ba138a0faac0", + "_tpl": "576a581d2459771e7b1bc4f1", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 4, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faabe", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "6613bb72b5b0ba138a0faac0", + "slotId": "mod_magazine" + }, { + "_id": "6613bb72b5b0ba138a0faabd", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faabe", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18 + } + }, { + "_id": "6613bb72b5b0ba138a0faabf", + "_tpl": "576a63cd2459771e796e0e11", + "parentId": "6613bb72b5b0ba138a0faac0", + "slotId": "mod_pistol_grip" + }, { + "_id": "6613bb72b5b0ba138a0faaca", + "_tpl": "59984ab886f7743e98271174", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 6, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faac1", + "_tpl": "5998517986f7746017232f7e", + "parentId": "6613bb72b5b0ba138a0faaca", + "slotId": "mod_pistol_grip" + }, { + "_id": "6613bb72b5b0ba138a0faac2", + "_tpl": "599851db86f77467372f0a18", + "parentId": "6613bb72b5b0ba138a0faaca", + "slotId": "mod_stock" + }, { + "_id": "6613bb72b5b0ba138a0faac4", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "6613bb72b5b0ba138a0faaca", + "slotId": "mod_magazine" + }, { + "_id": "6613bb72b5b0ba138a0faac3", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faac4", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faac5", + "_tpl": "5998597786f77414ea6da093", + "parentId": "6613bb72b5b0ba138a0faaca", + "slotId": "mod_muzzle" + }, { + "_id": "6613bb72b5b0ba138a0faac6", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "6613bb72b5b0ba138a0faaca", + "slotId": "mod_reciever" + }, { + "_id": "6613bb72b5b0ba138a0faac7", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "6613bb72b5b0ba138a0faaca", + "slotId": "mod_sight_rear" + }, { + "_id": "6613bb72b5b0ba138a0faac9", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "6613bb72b5b0ba138a0faaca", + "slotId": "mod_gas_block" + }, { + "_id": "6613bb72b5b0ba138a0faac8", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "6613bb72b5b0ba138a0faac9", + "slotId": "mod_handguard" + }, { + "_id": "6613bb72b5b0ba138a0faace", + "_tpl": "576a581d2459771e7b1bc4f1", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 3, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faacc", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "6613bb72b5b0ba138a0faace", + "slotId": "mod_magazine" + }, { + "_id": "6613bb72b5b0ba138a0faacb", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faacc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18 + } + }, { + "_id": "6613bb72b5b0ba138a0faacd", + "_tpl": "576a63cd2459771e796e0e11", + "parentId": "6613bb72b5b0ba138a0faace", + "slotId": "mod_pistol_grip" + }, { + "_id": "6613bb72b5b0ba138a0faad2", + "_tpl": "576a581d2459771e7b1bc4f1", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 3, + "y": 5, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faad0", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "6613bb72b5b0ba138a0faad2", + "slotId": "mod_magazine" + }, { + "_id": "6613bb72b5b0ba138a0faacf", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faad0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 18 + } + }, { + "_id": "6613bb72b5b0ba138a0faad1", + "_tpl": "576a63cd2459771e796e0e11", + "parentId": "6613bb72b5b0ba138a0faad2", + "slotId": "mod_pistol_grip" + }, { + "_id": "6613bb72b5b0ba138a0faadc", + "_tpl": "59984ab886f7743e98271174", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 7, + "y": 6, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faad3", + "_tpl": "5998517986f7746017232f7e", + "parentId": "6613bb72b5b0ba138a0faadc", + "slotId": "mod_pistol_grip" + }, { + "_id": "6613bb72b5b0ba138a0faad4", + "_tpl": "599851db86f77467372f0a18", + "parentId": "6613bb72b5b0ba138a0faadc", + "slotId": "mod_stock" + }, { + "_id": "6613bb72b5b0ba138a0faad6", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "6613bb72b5b0ba138a0faadc", + "slotId": "mod_magazine" + }, { + "_id": "6613bb72b5b0ba138a0faad5", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "6613bb72b5b0ba138a0faad6", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faad7", + "_tpl": "5998597786f77414ea6da093", + "parentId": "6613bb72b5b0ba138a0faadc", + "slotId": "mod_muzzle" + }, { + "_id": "6613bb72b5b0ba138a0faad8", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "6613bb72b5b0ba138a0faadc", + "slotId": "mod_reciever" + }, { + "_id": "6613bb72b5b0ba138a0faad9", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "6613bb72b5b0ba138a0faadc", + "slotId": "mod_sight_rear" + }, { + "_id": "6613bb72b5b0ba138a0faadb", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "6613bb72b5b0ba138a0faadc", + "slotId": "mod_gas_block" + }, { + "_id": "6613bb72b5b0ba138a0faada", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "6613bb72b5b0ba138a0faadb", + "slotId": "mod_handguard" + }, { + "_id": "6613bb72b5b0ba138a0faae6", + "_tpl": "5ac4cd105acfc40016339859", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 16, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faade", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "6613bb72b5b0ba138a0faae6", + "slotId": "mod_gas_block" + }, { + "_id": "6613bb72b5b0ba138a0faadd", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "6613bb72b5b0ba138a0faade", + "slotId": "mod_handguard" + }, { + "_id": "6613bb72b5b0ba138a0faadf", + "_tpl": "5ac7655e5acfc40016339a19", + "parentId": "6613bb72b5b0ba138a0faae6", + "slotId": "mod_muzzle" + }, { + "_id": "6613bb72b5b0ba138a0faae0", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "6613bb72b5b0ba138a0faae6", + "slotId": "mod_pistol_grip" + }, { + "_id": "6613bb72b5b0ba138a0faae1", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "6613bb72b5b0ba138a0faae6", + "slotId": "mod_reciever" + }, { + "_id": "6613bb72b5b0ba138a0faae2", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "6613bb72b5b0ba138a0faae6", + "slotId": "mod_sight_rear" + }, { + "_id": "6613bb72b5b0ba138a0faae3", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "6613bb72b5b0ba138a0faae6", + "slotId": "mod_stock" + }, { + "_id": "6613bb72b5b0ba138a0faae5", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "6613bb72b5b0ba138a0faae6", + "slotId": "mod_magazine" + }, { + "_id": "6613bb72b5b0ba138a0faae4", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "6613bb72b5b0ba138a0faae5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faaef", + "_tpl": "5e870397991fd70db46995c8", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 0, + "y": 18, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faae8", + "_tpl": "5e87071478f43e51ca2de5e1", + "parentId": "6613bb72b5b0ba138a0faaef", + "slotId": "mod_barrel" + }, { + "_id": "6613bb72b5b0ba138a0faae7", + "_tpl": "5e8708d4ae379e67d22e0102", + "parentId": "6613bb72b5b0ba138a0faae8", + "slotId": "mod_sight_front" + }, { + "_id": "6613bb72b5b0ba138a0faae9", + "_tpl": "5e87076ce2db31558c75a11d", + "parentId": "6613bb72b5b0ba138a0faaef", + "slotId": "mod_handguard" + }, { + "_id": "6613bb72b5b0ba138a0faaeb", + "_tpl": "5e87080c81c4ed43e83cefda", + "parentId": "6613bb72b5b0ba138a0faaef", + "slotId": "mod_magazine" + }, { + "_id": "6613bb72b5b0ba138a0faaea", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "6613bb72b5b0ba138a0faaeb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } + }, { + "_id": "6613bb72b5b0ba138a0faaec", + "_tpl": "5e87116b81c4ed43e83cefdd", + "parentId": "6613bb72b5b0ba138a0faaef", + "slotId": "mod_stock" + }, { + "_id": "6613bb72b5b0ba138a0faaed", + "_tpl": "5e87114fe2db31558c75a120", + "parentId": "6613bb72b5b0ba138a0faaef", + "slotId": "mod_mount" + }, { + "_id": "6613bb72b5b0ba138a0faaee", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "6613bb72b5b0ba138a0faaef", + "slotId": "patron_in_weapon" + }, { + "_id": "6613bb72b5b0ba138a0faafd", + "_tpl": "6499849fc93611967b034949", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 7, + "y": 25, + "r": 1, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faaf0", + "_tpl": "649ec107961514b22506b10c", + "parentId": "6613bb72b5b0ba138a0faafd", + "slotId": "mod_gas_block" + }, { + "_id": "6613bb72b5b0ba138a0faaf1", + "_tpl": "649ec2af961514b22506b10f", + "parentId": "6613bb72b5b0ba138a0faafd", + "slotId": "mod_muzzle" + }, { + "_id": "6613bb72b5b0ba138a0faaf2", + "_tpl": "5beec8ea0db834001a6f9dbf", + "parentId": "6613bb72b5b0ba138a0faafd", + "slotId": "mod_pistol_grip" + }, { + "_id": "6613bb72b5b0ba138a0faaf5", + "_tpl": "649ec2f3961514b22506b111", + "parentId": "6613bb72b5b0ba138a0faafd", + "slotId": "mod_reciever" + }, { + "_id": "6613bb72b5b0ba138a0faaf4", + "_tpl": "649ec2da59cbb3c813042dca", + "parentId": "6613bb72b5b0ba138a0faaf5", + "slotId": "mod_sight_rear" + }, { + "_id": "6613bb72b5b0ba138a0faaf3", + "_tpl": "649ec2cec93611967b03495e", + "parentId": "6613bb72b5b0ba138a0faaf4", + "slotId": "mod_sight_rear" + }, { + "_id": "6613bb72b5b0ba138a0faaf7", + "_tpl": "649ec87d8007560a9001ab36", + "parentId": "6613bb72b5b0ba138a0faafd", + "slotId": "mod_stock_001" + }, { + "_id": "6613bb72b5b0ba138a0faaf6", + "_tpl": "5beec8c20db834001d2c465c", + "parentId": "6613bb72b5b0ba138a0faaf7", + "slotId": "mod_stock" + }, { + "_id": "6613bb72b5b0ba138a0faaf9", + "_tpl": "649ec30cb013f04a700e60fb", + "parentId": "6613bb72b5b0ba138a0faafd", + "slotId": "mod_magazine" + }, { + "_id": "6613bb72b5b0ba138a0faaf8", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0faaf9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613bb72b5b0ba138a0faafb", + "_tpl": "649ec127c93611967b034957", + "parentId": "6613bb72b5b0ba138a0faafd", + "slotId": "mod_handguard" + }, { + "_id": "6613bb72b5b0ba138a0faafa", + "_tpl": "5beecbb80db834001d2c465e", + "parentId": "6613bb72b5b0ba138a0faafb", + "slotId": "mod_mount_001" + }, { + "_id": "6613bb72b5b0ba138a0faafc", + "_tpl": "56dff3afd2720bba668b4567", + "parentId": "6613bb72b5b0ba138a0faafd", + "slotId": "patron_in_weapon" + }, { + "_id": "6613bb72b5b0ba138a0fab06", + "_tpl": "55801eed4bdc2d89578b4588", + "parentId": "6613bb72b5b0ba138a0fab07", + "slotId": "hideout", + "location": { + "x": 4, + "y": 19, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613bb72b5b0ba138a0faaff", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "parentId": "6613bb72b5b0ba138a0fab06", + "slotId": "mod_magazine" + }, { + "_id": "6613bb72b5b0ba138a0faafe", + "_tpl": "5887431f2459777e1612938f", + "parentId": "6613bb72b5b0ba138a0faaff", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } + }, { + "_id": "6613bb72b5b0ba138a0fab01", + "_tpl": "5d0a29fed7ad1a002769ad08", + "parentId": "6613bb72b5b0ba138a0fab06", + "slotId": "mod_scope" + }, { + "_id": "6613bb72b5b0ba138a0fab00", + "_tpl": "5d0a3e8cd7ad1a6f6a3d35bd", + "parentId": "6613bb72b5b0ba138a0fab01", + "slotId": "mod_scope" + }, { + "_id": "6613bb72b5b0ba138a0fab02", + "_tpl": "56083eab4bdc2d26448b456a", + "parentId": "6613bb72b5b0ba138a0fab06", + "slotId": "mod_tactical" + }, { + "_id": "6613bb72b5b0ba138a0fab03", + "_tpl": "560e620e4bdc2d724b8b456b", + "parentId": "6613bb72b5b0ba138a0fab06", + "slotId": "mod_muzzle" + }, { + "_id": "6613bb72b5b0ba138a0fab05", + "_tpl": "61faa91878830f069b6b7967", + "parentId": "6613bb72b5b0ba138a0fab06", + "slotId": "mod_stock" + }, { + "_id": "6613bb72b5b0ba138a0fab04", + "_tpl": "56ea8222d2720b69698b4567", + "parentId": "6613bb72b5b0ba138a0fab05", + "slotId": "mod_bipod" + }, { + "_id": "6613bb72b5b0ba138a0fab0a", + "_tpl": "602543c13fee350cd564d032" + }, { + "_id": "6613bb72b5b0ba138a0fab09", + "_tpl": "5963866b86f7747bfa1c4462" + }, { + "_id": "6613bb72b5b0ba138a0fab08", + "_tpl": "5963866286f7747bf429b572" + } + ], + "questRaidItems": "6613bb72b5b0ba138a0fab08", + "questStashItems": "6613bb72b5b0ba138a0fab09", + "sortingTable": "6613bb72b5b0ba138a0fab0a", + "stash": "6613bb72b5b0ba138a0fab07" }, "Notes": { "Notes": [] From ef2442178abe76a01eb18dd715b935a931751650 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 8 Apr 2024 12:31:51 +0100 Subject: [PATCH 013/104] Implement weights for food/drink on bots --- .../bots/types/arenafighterevent.json | 16 +++ .../assets/database/bots/types/assault.json | 16 +++ project/assets/database/bots/types/bear.json | 20 +++- .../assets/database/bots/types/bossboar.json | 16 +++ .../database/bots/types/bossboarsniper.json | 16 +++ .../assets/database/bots/types/bossbully.json | 16 +++ .../database/bots/types/bossgluhar.json | 16 +++ .../assets/database/bots/types/bosskilla.json | 16 +++ .../database/bots/types/bossknight.json | 16 +++ .../database/bots/types/bosskojaniy.json | 16 +++ .../database/bots/types/bosskolontay.json | 16 +++ .../database/bots/types/bosssanitar.json | 16 +++ .../database/bots/types/bosstagilla.json | 16 +++ .../assets/database/bots/types/bosstest.json | 16 +++ .../database/bots/types/bosszryachiy.json | 16 +++ .../bots/types/crazyassaultevent.json | 16 +++ .../database/bots/types/cursedassault.json | 16 +++ .../assets/database/bots/types/exusec.json | 16 +++ .../database/bots/types/followerbigpipe.json | 16 +++ .../database/bots/types/followerbirdeye.json | 16 +++ .../database/bots/types/followerboar.json | 16 +++ .../bots/types/followerboarclose1.json | 16 +++ .../bots/types/followerboarclose2.json | 16 +++ .../database/bots/types/followerbully.json | 16 +++ .../bots/types/followergluharassault.json | 16 +++ .../bots/types/followergluharscout.json | 16 +++ .../bots/types/followergluharsecurity.json | 16 +++ .../database/bots/types/followerkojaniy.json | 16 +++ .../bots/types/followerkolontayassault.json | 16 +++ .../bots/types/followerkolontaysecurity.json | 16 +++ .../database/bots/types/followersanitar.json | 16 +++ .../database/bots/types/followerzryachiy.json | 16 +++ .../assets/database/bots/types/gifter.json | 16 +++ .../assets/database/bots/types/marksman.json | 22 +++- .../bots/types/peacefullzryachiyevent.json | 105 +++++++++++++++--- .../assets/database/bots/types/pmcbot.json | 16 +++ .../bots/types/ravangezryachiyevent.json | 16 +++ .../database/bots/types/sectantpriest.json | 16 +++ .../database/bots/types/sectantwarrior.json | 16 +++ .../database/bots/types/shooterbtr.json | 16 +++ project/assets/database/bots/types/test.json | 16 +++ project/assets/database/bots/types/usec.json | 20 +++- project/src/generators/BotLootGenerator.ts | 28 +++++ project/src/generators/PMCLootGenerator.ts | 2 +- .../src/models/eft/common/tables/IBotType.ts | 2 + project/src/models/spt/bots/IBotLootCache.ts | 6 +- project/src/services/BotLootCacheService.ts | 72 +++++++++++- 47 files changed, 856 insertions(+), 29 deletions(-) diff --git a/project/assets/database/bots/types/arenafighterevent.json b/project/assets/database/bots/types/arenafighterevent.json index 93f77a42..2feae98d 100644 --- a/project/assets/database/bots/types/arenafighterevent.json +++ b/project/assets/database/bots/types/arenafighterevent.json @@ -2110,6 +2110,22 @@ "2": 0 }, "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] }, "grenades": { "weights": { diff --git a/project/assets/database/bots/types/assault.json b/project/assets/database/bots/types/assault.json index 4a036cd9..7d42a23f 100644 --- a/project/assets/database/bots/types/assault.json +++ b/project/assets/database/bots/types/assault.json @@ -2343,6 +2343,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 30, @@ -2351,6 +2359,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 8, diff --git a/project/assets/database/bots/types/bear.json b/project/assets/database/bots/types/bear.json index c3707080..719a337e 100644 --- a/project/assets/database/bots/types/bear.json +++ b/project/assets/database/bots/types/bear.json @@ -2508,11 +2508,27 @@ "2": 1 }, "whitelist": [] + }, + "food": { + "weights": { + "0": 6, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 6, + "1": 5, + "2": 1 + }, + "whitelist": [] }, "grenades": { "weights": { - "0": 1, - "1": 4, + "0": 2, + "1": 6, "2": 5, "3": 2, "4": 1 diff --git a/project/assets/database/bots/types/bossboar.json b/project/assets/database/bots/types/bossboar.json index 0c193649..9e9275a2 100644 --- a/project/assets/database/bots/types/bossboar.json +++ b/project/assets/database/bots/types/bossboar.json @@ -2302,6 +2302,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2310,6 +2318,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/bossboarsniper.json b/project/assets/database/bots/types/bossboarsniper.json index 2edd63cb..f68d230d 100644 --- a/project/assets/database/bots/types/bossboarsniper.json +++ b/project/assets/database/bots/types/bossboarsniper.json @@ -2038,6 +2038,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2046,6 +2054,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/bossbully.json b/project/assets/database/bots/types/bossbully.json index 83ebfb9d..ef295a8b 100644 --- a/project/assets/database/bots/types/bossbully.json +++ b/project/assets/database/bots/types/bossbully.json @@ -2029,6 +2029,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2036,6 +2044,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/bossgluhar.json b/project/assets/database/bots/types/bossgluhar.json index 9ea7ff2d..d272f56b 100644 --- a/project/assets/database/bots/types/bossgluhar.json +++ b/project/assets/database/bots/types/bossgluhar.json @@ -2317,6 +2317,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2324,6 +2332,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/bosskilla.json b/project/assets/database/bots/types/bosskilla.json index 75d0547e..bc2eed39 100644 --- a/project/assets/database/bots/types/bosskilla.json +++ b/project/assets/database/bots/types/bosskilla.json @@ -2019,6 +2019,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2026,6 +2034,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/bossknight.json b/project/assets/database/bots/types/bossknight.json index 764cc833..94da417b 100644 --- a/project/assets/database/bots/types/bossknight.json +++ b/project/assets/database/bots/types/bossknight.json @@ -2167,6 +2167,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2175,6 +2183,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/bosskojaniy.json b/project/assets/database/bots/types/bosskojaniy.json index 80888a6b..507f96e9 100644 --- a/project/assets/database/bots/types/bosskojaniy.json +++ b/project/assets/database/bots/types/bosskojaniy.json @@ -2070,6 +2070,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2078,6 +2086,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/bosskolontay.json b/project/assets/database/bots/types/bosskolontay.json index c2da4729..bc63f661 100644 --- a/project/assets/database/bots/types/bosskolontay.json +++ b/project/assets/database/bots/types/bosskolontay.json @@ -2322,6 +2322,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2330,6 +2338,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/bosssanitar.json b/project/assets/database/bots/types/bosssanitar.json index 46b5e082..aef86e92 100644 --- a/project/assets/database/bots/types/bosssanitar.json +++ b/project/assets/database/bots/types/bosssanitar.json @@ -2114,6 +2114,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2122,6 +2130,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/bosstagilla.json b/project/assets/database/bots/types/bosstagilla.json index 0ec8b5cf..29aff717 100644 --- a/project/assets/database/bots/types/bosstagilla.json +++ b/project/assets/database/bots/types/bosstagilla.json @@ -2113,6 +2113,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2121,6 +2129,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/bosstest.json b/project/assets/database/bots/types/bosstest.json index e065fa11..42e2e553 100644 --- a/project/assets/database/bots/types/bosstest.json +++ b/project/assets/database/bots/types/bosstest.json @@ -1946,6 +1946,22 @@ "healing": { "max": 2, "min": 1 + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] }, "looseLoot": { "max": 3, diff --git a/project/assets/database/bots/types/bosszryachiy.json b/project/assets/database/bots/types/bosszryachiy.json index 36df4eb2..9726cbd5 100644 --- a/project/assets/database/bots/types/bosszryachiy.json +++ b/project/assets/database/bots/types/bosszryachiy.json @@ -2024,6 +2024,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2032,6 +2040,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/crazyassaultevent.json b/project/assets/database/bots/types/crazyassaultevent.json index a83d5f67..760544df 100644 --- a/project/assets/database/bots/types/crazyassaultevent.json +++ b/project/assets/database/bots/types/crazyassaultevent.json @@ -2365,6 +2365,22 @@ "2": 0 }, "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] }, "grenades": { "weights": { diff --git a/project/assets/database/bots/types/cursedassault.json b/project/assets/database/bots/types/cursedassault.json index a8bbbba4..c747193a 100644 --- a/project/assets/database/bots/types/cursedassault.json +++ b/project/assets/database/bots/types/cursedassault.json @@ -2391,6 +2391,22 @@ "2": 0 }, "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] }, "grenades": { "weights": { diff --git a/project/assets/database/bots/types/exusec.json b/project/assets/database/bots/types/exusec.json index c2c3d2a1..74d5ac3a 100644 --- a/project/assets/database/bots/types/exusec.json +++ b/project/assets/database/bots/types/exusec.json @@ -2254,6 +2254,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2261,6 +2269,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/followerbigpipe.json b/project/assets/database/bots/types/followerbigpipe.json index e71353f4..8f3a4ad0 100644 --- a/project/assets/database/bots/types/followerbigpipe.json +++ b/project/assets/database/bots/types/followerbigpipe.json @@ -2053,6 +2053,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2061,6 +2069,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/followerbirdeye.json b/project/assets/database/bots/types/followerbirdeye.json index e8c3893a..193ed57b 100644 --- a/project/assets/database/bots/types/followerbirdeye.json +++ b/project/assets/database/bots/types/followerbirdeye.json @@ -2085,6 +2085,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2093,6 +2101,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/followerboar.json b/project/assets/database/bots/types/followerboar.json index f0901c0a..0052c387 100644 --- a/project/assets/database/bots/types/followerboar.json +++ b/project/assets/database/bots/types/followerboar.json @@ -2253,6 +2253,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 9, @@ -2263,6 +2271,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/followerboarclose1.json b/project/assets/database/bots/types/followerboarclose1.json index e63103ff..823228c1 100644 --- a/project/assets/database/bots/types/followerboarclose1.json +++ b/project/assets/database/bots/types/followerboarclose1.json @@ -2173,6 +2173,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2181,6 +2189,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/followerboarclose2.json b/project/assets/database/bots/types/followerboarclose2.json index 9584a752..197acfb2 100644 --- a/project/assets/database/bots/types/followerboarclose2.json +++ b/project/assets/database/bots/types/followerboarclose2.json @@ -2173,6 +2173,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2181,6 +2189,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/followerbully.json b/project/assets/database/bots/types/followerbully.json index ba12478a..1f0549c9 100644 --- a/project/assets/database/bots/types/followerbully.json +++ b/project/assets/database/bots/types/followerbully.json @@ -2044,6 +2044,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2052,6 +2060,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/followergluharassault.json b/project/assets/database/bots/types/followergluharassault.json index c8442a6c..7db40c2d 100644 --- a/project/assets/database/bots/types/followergluharassault.json +++ b/project/assets/database/bots/types/followergluharassault.json @@ -2212,6 +2212,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2220,6 +2228,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/followergluharscout.json b/project/assets/database/bots/types/followergluharscout.json index d83921e3..4b0eba82 100644 --- a/project/assets/database/bots/types/followergluharscout.json +++ b/project/assets/database/bots/types/followergluharscout.json @@ -2214,6 +2214,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2222,6 +2230,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/followergluharsecurity.json b/project/assets/database/bots/types/followergluharsecurity.json index a17e285f..9d5d212e 100644 --- a/project/assets/database/bots/types/followergluharsecurity.json +++ b/project/assets/database/bots/types/followergluharsecurity.json @@ -2217,6 +2217,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2225,6 +2233,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/followerkojaniy.json b/project/assets/database/bots/types/followerkojaniy.json index 4100dc55..cced9139 100644 --- a/project/assets/database/bots/types/followerkojaniy.json +++ b/project/assets/database/bots/types/followerkojaniy.json @@ -2099,6 +2099,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2107,6 +2115,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/followerkolontayassault.json b/project/assets/database/bots/types/followerkolontayassault.json index f9e57771..199ae92e 100644 --- a/project/assets/database/bots/types/followerkolontayassault.json +++ b/project/assets/database/bots/types/followerkolontayassault.json @@ -2232,6 +2232,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2240,6 +2248,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/followerkolontaysecurity.json b/project/assets/database/bots/types/followerkolontaysecurity.json index 5eeecb7e..7233ecaa 100644 --- a/project/assets/database/bots/types/followerkolontaysecurity.json +++ b/project/assets/database/bots/types/followerkolontaysecurity.json @@ -2245,6 +2245,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2253,6 +2261,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/followersanitar.json b/project/assets/database/bots/types/followersanitar.json index 25e684f6..ee087bb3 100644 --- a/project/assets/database/bots/types/followersanitar.json +++ b/project/assets/database/bots/types/followersanitar.json @@ -2144,6 +2144,22 @@ "2": 0 }, "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] }, "grenades": { "weights": { diff --git a/project/assets/database/bots/types/followerzryachiy.json b/project/assets/database/bots/types/followerzryachiy.json index 89c58121..3782be29 100644 --- a/project/assets/database/bots/types/followerzryachiy.json +++ b/project/assets/database/bots/types/followerzryachiy.json @@ -2003,6 +2003,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2011,6 +2019,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/gifter.json b/project/assets/database/bots/types/gifter.json index 44f245c1..471652f3 100644 --- a/project/assets/database/bots/types/gifter.json +++ b/project/assets/database/bots/types/gifter.json @@ -2064,6 +2064,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2072,6 +2080,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/marksman.json b/project/assets/database/bots/types/marksman.json index 95e95344..0fc1004f 100644 --- a/project/assets/database/bots/types/marksman.json +++ b/project/assets/database/bots/types/marksman.json @@ -2298,6 +2298,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2306,6 +2314,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, @@ -2337,10 +2353,10 @@ }, "pocketLoot": { "weights": { - "0": 3, - "1": 10, + "0": 10, + "1": 35, "2": 3, - "3": 1, + "3": 2, "4": 1 }, "whitelist": [] diff --git a/project/assets/database/bots/types/peacefullzryachiyevent.json b/project/assets/database/bots/types/peacefullzryachiyevent.json index ce87db85..e931986c 100644 --- a/project/assets/database/bots/types/peacefullzryachiyevent.json +++ b/project/assets/database/bots/types/peacefullzryachiyevent.json @@ -2004,33 +2004,108 @@ ], "generation": { "items": { + "backpackLoot": { + "weights": { + "0": 1, + "1": 1, + "2": 2, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 0 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { - "max": 1, - "min": 0 + "weights": { + "0": 1, + "1": 2, + "2": 0 + }, + "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] }, "grenades": { - "max": 5, - "min": 0 + "weights": { + "0": 1, + "1": 2, + "2": 1, + "3": 1, + "4": 0, + "5": 0 + }, + "whitelist": [] }, "healing": { - "max": 2, - "min": 1 + "weights": { + "0": 1, + "1": 2, + "2": 1 }, - "looseLoot": { - "max": 3, - "min": 0 + "whitelist": [] }, "magazines": { - "max": 4, - "min": 2 + "weights": { + "0": 0, + "1": 0, + "2": 1, + "3": 3, + "4": 1 + }, + "whitelist": [] + }, + "pocketLoot": { + "weights": { + "0": 1, + "1": 6, + "2": 3, + "3": 1, + "4": 1 + }, + "whitelist": [] }, "specialItems": { - "max": 0, - "min": 0 + "weights": { + "0": 1, + "1": 0 + }, + "whitelist": [] }, "stims": { - "max": 1, - "min": 0 + "weights": { + "0": 2, + "1": 1, + "2": 0 + }, + "whitelist": [] + }, + "vestLoot": { + "weights": { + "0": 1, + "1": 1, + "2": 2, + "3": 1, + "4": 0, + "5": 0, + "6": 0 + }, + "whitelist": [] } } }, diff --git a/project/assets/database/bots/types/pmcbot.json b/project/assets/database/bots/types/pmcbot.json index c3f83657..6306a51c 100644 --- a/project/assets/database/bots/types/pmcbot.json +++ b/project/assets/database/bots/types/pmcbot.json @@ -2119,6 +2119,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2127,6 +2135,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/ravangezryachiyevent.json b/project/assets/database/bots/types/ravangezryachiyevent.json index 30c8c85f..8e92b5b8 100644 --- a/project/assets/database/bots/types/ravangezryachiyevent.json +++ b/project/assets/database/bots/types/ravangezryachiyevent.json @@ -2085,6 +2085,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2093,6 +2101,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/sectantpriest.json b/project/assets/database/bots/types/sectantpriest.json index f89ec5cb..8bf5f722 100644 --- a/project/assets/database/bots/types/sectantpriest.json +++ b/project/assets/database/bots/types/sectantpriest.json @@ -2101,6 +2101,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2109,6 +2117,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/sectantwarrior.json b/project/assets/database/bots/types/sectantwarrior.json index ea59e008..9b520b83 100644 --- a/project/assets/database/bots/types/sectantwarrior.json +++ b/project/assets/database/bots/types/sectantwarrior.json @@ -2112,6 +2112,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2120,6 +2128,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/shooterbtr.json b/project/assets/database/bots/types/shooterbtr.json index dcf0f809..ee6adc72 100644 --- a/project/assets/database/bots/types/shooterbtr.json +++ b/project/assets/database/bots/types/shooterbtr.json @@ -2146,6 +2146,14 @@ }, "whitelist": [] }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { "weights": { "0": 1, @@ -2154,6 +2162,14 @@ }, "whitelist": [] }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "grenades": { "weights": { "0": 1, diff --git a/project/assets/database/bots/types/test.json b/project/assets/database/bots/types/test.json index e065fa11..a6756872 100644 --- a/project/assets/database/bots/types/test.json +++ b/project/assets/database/bots/types/test.json @@ -1938,6 +1938,22 @@ "drugs": { "max": 1, "min": 0 + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] }, "grenades": { "max": 5, diff --git a/project/assets/database/bots/types/usec.json b/project/assets/database/bots/types/usec.json index f896fc54..1c0ee442 100644 --- a/project/assets/database/bots/types/usec.json +++ b/project/assets/database/bots/types/usec.json @@ -2505,11 +2505,27 @@ "2": 1 }, "whitelist": [] + }, + "food": { + "weights": { + "0": 6, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 6, + "1": 5, + "2": 1 + }, + "whitelist": [] }, "grenades": { "weights": { - "0": 1, - "1": 4, + "0": 2, + "1": 6, "2": 5, "3": 2, "4": 1 diff --git a/project/src/generators/BotLootGenerator.ts b/project/src/generators/BotLootGenerator.ts index e1c88ad9..f27229bf 100644 --- a/project/src/generators/BotLootGenerator.ts +++ b/project/src/generators/BotLootGenerator.ts @@ -98,6 +98,10 @@ export class BotLootGenerator ); const healingItemCount = Number(this.weightedRandomHelper.getWeightedValue(itemCounts.healing.weights)); const drugItemCount = Number(this.weightedRandomHelper.getWeightedValue(itemCounts.drugs.weights)); + + const foodItemCount = Number(this.weightedRandomHelper.getWeightedValue(itemCounts.food.weights)); + const drinkItemCount = Number(this.weightedRandomHelper.getWeightedValue(itemCounts.drink.weights)); + const stimItemCount = Number(this.weightedRandomHelper.getWeightedValue(itemCounts.stims.weights)); const grenadeCount = Number(this.weightedRandomHelper.getWeightedValue(itemCounts.grenades.weights)); @@ -145,6 +149,30 @@ export class BotLootGenerator isPmc, ); + // Food + this.addLootFromPool( + this.botLootCacheService.getLootFromCache(botRole, isPmc, LootCacheType.FOOD_ITEMS, botJsonTemplate), + containersBotHasAvailable, + foodItemCount, + botInventory, + botRole, + null, + 0, + isPmc, + ); + + // Drink + this.addLootFromPool( + this.botLootCacheService.getLootFromCache(botRole, isPmc, LootCacheType.DRINK_ITEMS, botJsonTemplate), + containersBotHasAvailable, + drinkItemCount, + botInventory, + botRole, + null, + 0, + isPmc, + ); + // Stims this.addLootFromPool( this.botLootCacheService.getLootFromCache(botRole, isPmc, LootCacheType.STIM_ITEMS, botJsonTemplate), diff --git a/project/src/generators/PMCLootGenerator.ts b/project/src/generators/PMCLootGenerator.ts index ff7d4f93..f7abc809 100644 --- a/project/src/generators/PMCLootGenerator.ts +++ b/project/src/generators/PMCLootGenerator.ts @@ -192,7 +192,7 @@ export class PMCLootGenerator for (const itemToAdd of itemsToAdd) { - // If pmc has override, use that. Otherwise use flea price + // If pmc has price override, use that. Otherwise use flea price if (pmcPriceOverrides[itemToAdd._id]) { this.backpackLootPool[itemToAdd._id] = pmcPriceOverrides[itemToAdd._id]; diff --git a/project/src/models/eft/common/tables/IBotType.ts b/project/src/models/eft/common/tables/IBotType.ts index 0ca331da..1f168525 100644 --- a/project/src/models/eft/common/tables/IBotType.ts +++ b/project/src/models/eft/common/tables/IBotType.ts @@ -130,6 +130,8 @@ export interface GenerationWeightingItems grenades: GenerationData; healing: GenerationData; drugs: GenerationData; + food: GenerationData; + drink: GenerationData; stims: GenerationData; backpackLoot: GenerationData; pocketLoot: GenerationData; diff --git a/project/src/models/spt/bots/IBotLootCache.ts b/project/src/models/spt/bots/IBotLootCache.ts index c2683770..3dc5e192 100644 --- a/project/src/models/spt/bots/IBotLootCache.ts +++ b/project/src/models/spt/bots/IBotLootCache.ts @@ -1,5 +1,3 @@ -import { ITemplateItem } from "@spt-aki/models/eft/common/tables/ITemplateItem"; - export interface IBotLootCache { backpackLoot: Record; @@ -11,6 +9,8 @@ export interface IBotLootCache specialItems: Record; healingItems: Record; drugItems: Record; + foodItems: Record; + drinkItems: Record; stimItems: Record; grenadeItems: Record; } @@ -27,4 +27,6 @@ export enum LootCacheType DRUG_ITEMS = "DrugItems", STIM_ITEMS = "StimItems", GRENADE_ITEMS = "GrenadeItems", + FOOD_ITEMS = "FoodItems", + DRINK_ITEMS = "DrinkItems", } diff --git a/project/src/services/BotLootCacheService.ts b/project/src/services/BotLootCacheService.ts index e5904d4c..252846e8 100644 --- a/project/src/services/BotLootCacheService.ts +++ b/project/src/services/BotLootCacheService.ts @@ -89,6 +89,12 @@ export class BotLootCacheService case LootCacheType.DRUG_ITEMS: result = this.lootCache[botRole].drugItems; break; + case LootCacheType.FOOD_ITEMS: + result = this.lootCache[botRole].foodItems; + break; + case LootCacheType.DRINK_ITEMS: + result = this.lootCache[botRole].drinkItems; + break; case LootCacheType.STIM_ITEMS: result = this.lootCache[botRole].stimItems; break; @@ -219,7 +225,7 @@ export class BotLootCacheService ? botJsonTemplate.generation.items.drugs.whitelist : {}; - // no whitelist, find and assign from combined item pool + // no drugs whitelist, find and assign from combined item pool if (Object.keys(drugItems).length === 0) { for (const [tpl, weight] of Object.entries(combinedLootPool)) @@ -232,6 +238,44 @@ export class BotLootCacheService } } + // Assign whitelisted food to bot if any exist + const foodItems: Record = + (Object.keys(botJsonTemplate.generation.items.food.whitelist)?.length > 0) + ? botJsonTemplate.generation.items.food.whitelist + : {}; + + // No food whitelist, find and assign from combined item pool + if (Object.keys(foodItems).length === 0) + { + for (const [tpl, weight] of Object.entries(combinedLootPool)) + { + const itemTemplate = this.itemHelper.getItem(tpl)[1]; + if (this.itemHelper.isOfBaseclass(itemTemplate._id, BaseClasses.FOOD)) + { + foodItems[tpl] = weight; + } + } + } + + // Assign whitelisted drink to bot if any exist + const drinkItems: Record = + (Object.keys(botJsonTemplate.generation.items.food.whitelist)?.length > 0) + ? botJsonTemplate.generation.items.food.whitelist + : {}; + + // No drink whitelist, find and assign from combined item pool + if (Object.keys(drinkItems).length === 0) + { + for (const [tpl, weight] of Object.entries(combinedLootPool)) + { + const itemTemplate = this.itemHelper.getItem(tpl)[1]; + if (this.itemHelper.isOfBaseclass(itemTemplate._id, BaseClasses.DRINK)) + { + drinkItems[tpl] = weight; + } + } + } + // Assign whitelisted stims to bot if any exist const stimItems: Record = (Object.keys(botJsonTemplate.generation.items.stims.whitelist)?.length > 0) @@ -270,7 +314,7 @@ export class BotLootCacheService } } - // Get backpack loot (excluding magazines, bullets, grenades and healing items) + // Get backpack loot (excluding magazines, bullets, grenades, drink, food and healing/stim items) const filteredBackpackItems = {}; for (const itemKey of Object.keys(backpackLootPool)) { @@ -285,6 +329,8 @@ export class BotLootCacheService || this.isMagazine(itemTemplate._props) || this.isMedicalItem(itemTemplate._props) || this.isGrenade(itemTemplate._props) + || this.isFood(itemTemplate._id) + || this.isDrink(itemTemplate._id) ) { // Is type we dont want as backpack loot, skip @@ -294,7 +340,7 @@ export class BotLootCacheService filteredBackpackItems[itemKey] = backpackLootPool[itemKey]; } - // Get pocket loot (excluding magazines, bullets, grenades, medical and healing items) + // Get pocket loot (excluding magazines, bullets, grenades, drink, food medical and healing/stim items) const filteredPocketItems = {}; for (const itemKey of Object.keys(pocketLootPool)) { @@ -309,6 +355,8 @@ export class BotLootCacheService || this.isMagazine(itemTemplate._props) || this.isMedicalItem(itemTemplate._props) || this.isGrenade(itemTemplate._props) + || this.isFood(itemTemplate._id) + || this.isDrink(itemTemplate._id) || !("Height" in itemTemplate._props) // lacks height || !("Width" in itemTemplate._props) // lacks width ) @@ -319,7 +367,7 @@ export class BotLootCacheService filteredPocketItems[itemKey] = pocketLootPool[itemKey]; } - // Get vest loot (excluding magazines, bullets, grenades, medical and healing items) + // Get vest loot (excluding magazines, bullets, grenades, medical and healing/stim items) const filteredVestItems = {}; for (const itemKey of Object.keys(vestLootPool)) { @@ -334,6 +382,8 @@ export class BotLootCacheService || this.isMagazine(itemTemplate._props) || this.isMedicalItem(itemTemplate._props) || this.isGrenade(itemTemplate._props) + || this.isFood(itemTemplate._id) + || this.isDrink(itemTemplate._id) ) { continue; @@ -344,6 +394,8 @@ export class BotLootCacheService this.lootCache[botRole].healingItems = healingItems; this.lootCache[botRole].drugItems = drugItems; + this.lootCache[botRole].foodItems = foodItems; + this.lootCache[botRole].drinkItems = drinkItems; this.lootCache[botRole].stimItems = stimItems; this.lootCache[botRole].grenadeItems = grenadeItems; @@ -429,6 +481,16 @@ export class BotLootCacheService return ("ThrowType" in props); } + protected isFood(tpl: string): boolean + { + return this.itemHelper.isOfBaseclass(tpl, BaseClasses.FOOD); + } + + protected isDrink(tpl: string): boolean + { + return this.itemHelper.isOfBaseclass(tpl, BaseClasses.DRINK); + } + /** * Check if a bot type exists inside the loot cache * @param botRole role to check for @@ -455,6 +517,8 @@ export class BotLootCacheService specialItems: {}, grenadeItems: {}, drugItems: {}, + foodItems: {}, + drinkItems: {}, healingItems: {}, stimItems: {}, }; From f73802ec1792cf8537be961142073eca5e0a4494 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 8 Apr 2024 13:31:05 +0100 Subject: [PATCH 014/104] Updated USEC EoD profile to match live --- .../assets/database/templates/profiles.json | 6465 ++++++++--------- 1 file changed, 2926 insertions(+), 3539 deletions(-) diff --git a/project/assets/database/templates/profiles.json b/project/assets/database/templates/profiles.json index 83d6a83c..66e4fbf5 100644 --- a/project/assets/database/templates/profiles.json +++ b/project/assets/database/templates/profiles.json @@ -23609,3548 +23609,2935 @@ }, "InsuredItems": [], "Inventory": { - "equipment": "5fe49a0e2694b0755a50476c", + "equipment": "6613e1cf291a2e76b00269a8", "fastPanel": {}, "hideoutAreaStashes": {}, - "items": [{ - "_id": "5fe49a0e2694b0755a50476c", - "_tpl": "55d7217a4bdc2d86028b456d" - }, { - "_id": "63db64cbf9963741dc0d741f", - "_tpl": "6401c7b213d9b818bf0e7dd7" - }, { - "_id": "5fe49a0e2694b0755a504755", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "parentId": "5fe49a0e2694b0755a50476c", - "slotId": "FirstPrimaryWeapon", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a504749", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "5fe49a0e2694b0755a504755", - "slotId": "mod_pistol_grip" - }, { - "_id": "5fe49a0e2694b0755a50474b", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "5fe49a0e2694b0755a504755", - "slotId": "mod_magazine" - }, { - "_id": "5fe49a0e2694b0755a50474a", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "5fe49a0e2694b0755a50474b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a504751", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "5fe49a0e2694b0755a504755", - "slotId": "mod_reciever" - }, { - "_id": "5fe49a0e2694b0755a50474e", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "5fe49a0e2694b0755a504751", - "slotId": "mod_barrel" - }, { - "_id": "5fe49a0e2694b0755a50474c", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "5fe49a0e2694b0755a50474e", - "slotId": "mod_muzzle" - }, { - "_id": "5fe49a0e2694b0755a50474d", - "_tpl": "5ae30e795acfc408fb139a0b", - "parentId": "5fe49a0e2694b0755a50474e", - "slotId": "mod_gas_block" - }, { - "_id": "5fe49a0e2694b0755a50474f", - "_tpl": "5ae30db85acfc408fb139a05", - "parentId": "5fe49a0e2694b0755a504751", - "slotId": "mod_handguard" - }, { - "_id": "6396b722d604e334650f972e", - "_tpl": "637f57a68d137b27f70c4968", - "parentId": "5fe49a0e2694b0755a50474f", - "slotId": "mod_handguard" - }, { - "_id": "5fe49a0e2694b0755a504750", - "_tpl": "5ae30bad5acfc400185c2dc4", - "parentId": "5fe49a0e2694b0755a504751", - "slotId": "mod_sight_rear", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a504753", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "5fe49a0e2694b0755a504755", - "slotId": "mod_stock" - }, { - "_id": "5fe49a0e2694b0755a504752", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "5fe49a0e2694b0755a504753", - "slotId": "mod_stock_000" - }, { - "_id": "5fe49a0e2694b0755a504754", - "_tpl": "55d44fd14bdc2d962f8b456e", - "parentId": "5fe49a0e2694b0755a504755", - "slotId": "mod_charge" - }, { - "_id": "5fe49a0e2694b0755a504756", - "_tpl": "54491bb74bdc2d09088b4567", - "parentId": "5fe49a0e2694b0755a50476c", - "slotId": "Scabbard", - "upd": { - "Repairable": { - "Durability": 70, - "MaxDurability": 70 - } - } - }, { - "_id": "5fe49a0e2694b0755a504757", - "_tpl": "572b7fa524597762b747ce82", - "parentId": "5fe49a0e2694b0755a50476c", - "slotId": "FaceCover", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a504758", - "_tpl": "5aa2a7e8e5b5b00016327c16", - "parentId": "5fe49a0e2694b0755a50476c", - "slotId": "Headwear", - "upd": { - "Repairable": { - "Durability": 10, - "MaxDurability": 10 - } - } - }, { - "_id": "5fe49a0e2694b0755a504760", - "_tpl": "5c0e9f2c86f77432297fe0a3", - "parentId": "5fe49a0e2694b0755a50476c", - "slotId": "TacticalVest" - }, { - "_id": "5fe49a0e2694b0755a50475a", - "_tpl": "55d4887d4bdc2d962f8b4570", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "5fe49a0e2694b0755a504760", - "slotId": "1" - }, { - "_id": "5fe49a0e2694b0755a504759", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "5fe49a0e2694b0755a50475a", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a50475c", - "_tpl": "55d4887d4bdc2d962f8b4570", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "5fe49a0e2694b0755a504760", - "slotId": "2" - }, { - "_id": "5fe49a0e2694b0755a50475b", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "5fe49a0e2694b0755a50475c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a50475e", - "_tpl": "55d4887d4bdc2d962f8b4570", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "5fe49a0e2694b0755a504760", - "slotId": "3" - }, { - "_id": "5fe49a0e2694b0755a50475d", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "5fe49a0e2694b0755a50475e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a50475f", - "_tpl": "5755356824597772cb798962", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "5fe49a0e2694b0755a504760", - "slotId": "4", - "upd": { - "MedKit": { - "HpResource": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a504761", - "_tpl": "5857a8bc2459772bad15db29", - "parentId": "5fe49a0e2694b0755a50476c", - "slotId": "SecuredContainer" - }, { - "_id": "5fe49a0e2694b0755a504765", - "_tpl": "5e9dcf5986f7746c417435b3", - "parentId": "5fe49a0e2694b0755a50476c", - "slotId": "Backpack" - }, { - "_id": "5fe49a0e2694b0755a504762", - "_tpl": "5448fee04bdc2dbc018b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "5fe49a0e2694b0755a504765", - "slotId": "main", - "upd": { - "FoodDrink": { - "HpPercent": 60 - } - } - }, { - "_id": "5fe49a0e2694b0755a504763", - "_tpl": "590c5f0d86f77413997acfab", - "location": { - "isSearched": true, - "r": 0, - "x": 1, - "y": 0 - }, - "parentId": "5fe49a0e2694b0755a504765", - "slotId": "main", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "5fe49a0e2694b0755a504764", - "_tpl": "54527a984bdc2d4e668b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 0 - }, - "parentId": "5fe49a0e2694b0755a504765", - "slotId": "main", - "upd": { - "StackObjectsCount": 60 - } - }, { - "_id": "5fe49a0e2694b0755a504766", - "_tpl": "5648a7494bdc2d9d488b4583", - "parentId": "5fe49a0e2694b0755a50476c", - "slotId": "ArmorVest", - "upd": { - "Repairable": { - "Durability": 50, - "MaxDurability": 50 - } - } - }, { - "_id": "658c3f38bb2016e5630bdbe5", - "_tpl": "65703d866584602f7d057a8a", - "parentId": "5fe49a0e2694b0755a504766", - "slotId": "Soft_armor_front" - }, { - "_id": "658c3f38bb2016e5630bdbe6", - "_tpl": "65703fa06584602f7d057a8e", - "parentId": "5fe49a0e2694b0755a504766", - "slotId": "Soft_armor_back" - }, { - "_id": "658c3f38bb2016e5630bdbe7", - "_tpl": "65703fe46a912c8b5c03468b", - "parentId": "5fe49a0e2694b0755a504766", - "slotId": "Soft_armor_left" - }, { - "_id": "658c3f38bb2016e5630bdbe8", - "_tpl": "657040374e67e8ec7a0d261c", - "parentId": "5fe49a0e2694b0755a504766", - "slotId": "soft_armor_right" - }, { - "_id": "5fe49a0e2694b0755a50476a", - "_tpl": "627a4e6b255f7527fb05a0f6", - "parentId": "5fe49a0e2694b0755a50476c", - "slotId": "Pockets" - }, { - "_id": "5fe49a0e2694b0755a504767", - "_tpl": "544fb3364bdc2d34748b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "5fe49a0e2694b0755a50476a", - "slotId": "pocket1" - }, { - "_id": "5fe49a0e2694b0755a504768", - "_tpl": "544fb37f4bdc2dee738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "5fe49a0e2694b0755a50476a", - "slotId": "pocket2", - "upd": { - "MedKit": { - "HpResource": 4 - } - } - }, { - "_id": "5fe49a0e2694b0755a504769", - "_tpl": "5751a25924597722c463c472", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "5fe49a0e2694b0755a50476a", - "slotId": "pocket3", - "upd": { - "MedKit": { - "HpResource": 2 - } - } - }, { - "_id": "5fe49a0e2694b0755a50476b", - "_tpl": "5645bcc04bdc2d363b8b4572", - "parentId": "5fe49a0e2694b0755a50476c", - "slotId": "Earpiece" - }, { - "_id": "5fe49a0e2694b0755a504876", - "_tpl": "5811ce772459770e9e5f9532" - }, { - "_id": "5fe49a0e2694b0755a50476d", - "_tpl": "590c5f0d86f77413997acfab", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 32 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "5fe49a0e2694b0755a50476e", - "_tpl": "5e9dcf5986f7746c417435b3", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 9 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a50476f", - "_tpl": "5a0c27731526d80618476ac4", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 14 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504771", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 4 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504770", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a504771", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17 - } - }, { - "_id": "5fe49a0e2694b0755a504773", - "_tpl": "55d4887d4bdc2d962f8b4570", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 14 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504772", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "5fe49a0e2694b0755a504773", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a504774", - "_tpl": "54527a984bdc2d4e668b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 17 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 60 - } - }, { - "_id": "5fe49a0e2694b0755a504775", - "_tpl": "590c661e86f7741e566b646a", - "location": { - "isSearched": true, - "r": 1, - "x": 9, - "y": 31 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 220 - } - } - }, { - "_id": "5fe49a0e2694b0755a504776", - "_tpl": "5755356824597772cb798962", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 31 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a504777", - "_tpl": "544fb25a4bdc2dfb738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 35 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504779", - "_tpl": "55d4887d4bdc2d962f8b4570", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 15 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504778", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "5fe49a0e2694b0755a504779", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a50477a", - "_tpl": "64b7bbb74b75259c590fa897", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 8 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 50 - } - }, { - "_id": "5fe49a0e2694b0755a50477b", - "_tpl": "590c5f0d86f77413997acfab", - "location": { - "isSearched": true, - "r": 0, - "x": 1, - "y": 32 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "5fe49a0e2694b0755a50477d", - "_tpl": "55d4887d4bdc2d962f8b4570", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 14 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a50477c", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "5fe49a0e2694b0755a50477d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a50477e", - "_tpl": "58d3db5386f77426186285a0", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 13 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a50477f", - "_tpl": "54527a984bdc2d4e668b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 17 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 60 - } - }, { - "_id": "5fe49a0e2694b0755a504780", - "_tpl": "590c661e86f7741e566b646a", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 32 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 220 - } - } - }, { - "_id": "5fe49a0e2694b0755a504781", - "_tpl": "5ab8f39486f7745cd93a1cca", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 25 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a504782", - "_tpl": "5a0c27731526d80618476ac4", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 14 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504783", - "_tpl": "58d3db5386f77426186285a0", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 13 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504785", - "_tpl": "5bfeaa0f0db834001b734927", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 20 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504784", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "5fe49a0e2694b0755a504785", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 - } - }, { - "_id": "5fe49a0e2694b0755a504786", - "_tpl": "5e4d34ca86f774264f758330", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 11 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504787", - "_tpl": "5aa2a7e8e5b5b00016327c16", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 0 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 10, - "MaxDurability": 10 - } - } - }, { - "_id": "5fe49a0e2694b0755a504788", - "_tpl": "5c0e9f2c86f77432297fe0a3", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 3 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504789", - "_tpl": "590c5f0d86f77413997acfab", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 32 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "5fe49a0e2694b0755a50478a", - "_tpl": "5aa2a7e8e5b5b00016327c16", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 0 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 10, - "MaxDurability": 10 - } - } - }, { - "_id": "5fe49a0e2694b0755a50478b", - "_tpl": "5648a7494bdc2d9d488b4583", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 3 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 50, - "MaxDurability": 50 - } - } - }, { - "_id": "658c3f38bb2016e5630bdbe5", - "_tpl": "65703d866584602f7d057a8a", - "parentId": "5fe49a0e2694b0755a50478b", - "slotId": "Soft_armor_front" - }, { - "_id": "658c3f38bb2016e5630bdbe6", - "_tpl": "65703fa06584602f7d057a8e", - "parentId": "5fe49a0e2694b0755a50478b", - "slotId": "Soft_armor_back" - }, { - "_id": "658c3f38bb2016e5630bdbe7", - "_tpl": "65703fe46a912c8b5c03468b", - "parentId": "5fe49a0e2694b0755a50478b", - "slotId": "Soft_armor_left" - }, { - "_id": "658c3f38bb2016e5630bdbe8", - "_tpl": "657040374e67e8ec7a0d261c", - "parentId": "5fe49a0e2694b0755a50478b", - "slotId": "soft_armor_right" - }, { - "_id": "5fe49a0e2694b0755a50478c", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 33 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a50478d", - "_tpl": "5755356824597772cb798962", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 31 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a50478f", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 6 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a50478e", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a50478f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17 - } - }, { - "_id": "5fe49a0e2694b0755a504790", - "_tpl": "5e4d34ca86f774264f758330", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 9 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504791", - "_tpl": "5d403f9186f7743cac3f229b", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 0 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "5fe49a0e2694b0755a504792", - "_tpl": "5c0e9f2c86f77432297fe0a3", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 0 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504793", - "_tpl": "5648a7494bdc2d9d488b4583", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 0 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 50, - "MaxDurability": 50 - } - } - }, { - "_id": "658c3f38bb2016e5630bdbe5", - "_tpl": "65703d866584602f7d057a8a", - "parentId": "5fe49a0e2694b0755a504793", - "slotId": "Soft_armor_front" - }, { - "_id": "658c3f38bb2016e5630bdbe6", - "_tpl": "65703fa06584602f7d057a8e", - "parentId": "5fe49a0e2694b0755a504793", - "slotId": "Soft_armor_back" - }, { - "_id": "658c3f38bb2016e5630bdbe7", - "_tpl": "65703fe46a912c8b5c03468b", - "parentId": "5fe49a0e2694b0755a504793", - "slotId": "Soft_armor_left" - }, { - "_id": "658c3f38bb2016e5630bdbe8", - "_tpl": "657040374e67e8ec7a0d261c", - "parentId": "5fe49a0e2694b0755a504793", - "slotId": "soft_armor_right" - }, { - "_id": "5fe49a0e2694b0755a504794", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 33 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504795", - "_tpl": "544fb3364bdc2d34748b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 34 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504796", - "_tpl": "544fb25a4bdc2dfb738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 35 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504797", - "_tpl": "544fb25a4bdc2dfb738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 35 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504798", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 33 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504799", - "_tpl": "544fb37f4bdc2dee738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 34 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 4 - } - } - }, { - "_id": "5fe49a0e2694b0755a50479b", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 5 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a50479a", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a50479b", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17 - } - }, { - "_id": "5fe49a0e2694b0755a50479c", - "_tpl": "64b7bbb74b75259c590fa897", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 8 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 50 - } - }, { - "_id": "5fe49a0e2694b0755a50479d", - "_tpl": "5e9dcf5986f7746c417435b3", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 9 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a50479e", - "_tpl": "590c695186f7741e566b64a2", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 36 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a50479f", - "_tpl": "5751a25924597722c463c472", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 34 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 2 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047a0", - "_tpl": "590c695186f7741e566b64a2", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 36 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047a1", - "_tpl": "5751a25924597722c463c472", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 34 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 2 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047a3", - "_tpl": "5d2f213448f0355009199284", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 7 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047a2", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a5047a3", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "5fe49a0e2694b0755a5047a5", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 6 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047a4", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a5047a5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17 - } - }, { - "_id": "5fe49a0e2694b0755a5047a7", - "_tpl": "5d2f213448f0355009199284", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 7 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047a6", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a5047a7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "5fe49a0e2694b0755a5047a9", - "_tpl": "5d2f213448f0355009199284", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 7 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047a8", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a5047a9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "5fe49a0e2694b0755a5047ab", - "_tpl": "5d2f213448f0355009199284", - "location": { - "isSearched": true, - "r": 0, - "x": 1, - "y": 7 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047aa", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a5047ab", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "5fe49a0e2694b0755a5047ac", - "_tpl": "5755383e24597772cb798966", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 36 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 6 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047ae", - "_tpl": "55d4887d4bdc2d962f8b4570", - "location": { - "isSearched": true, - "r": 1, - "x": 3, - "y": 25 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047ad", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "5fe49a0e2694b0755a5047ae", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a5047af", - "_tpl": "64b7bbb74b75259c590fa897", - "location": { - "isSearched": true, - "r": 0, - "x": 1, - "y": 8 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 50 - } - }, { - "_id": "5fe49a0e2694b0755a5047b0", - "_tpl": "64b7bbb74b75259c590fa897", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 8 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 50 - } - }, { - "_id": "5fe49a0e2694b0755a5047b1", - "_tpl": "64b7bbb74b75259c590fa897", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 8 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 50 - } - }, { - "_id": "5fe49a0e2694b0755a5047b2", - "_tpl": "64b7bbb74b75259c590fa897", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 8 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 50 - } - }, { - "_id": "5fe49a0e2694b0755a5047b3", - "_tpl": "5696686a4bdc2da3298b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 2 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 500 - } - }, { - "_id": "5fe49a0e2694b0755a5047b4", - "_tpl": "64b7bbb74b75259c590fa897", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 8 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 50 - } - }, { - "_id": "5fe49a0e2694b0755a5047b6", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 3 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047b5", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a5047b6", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17 - } - }, { - "_id": "5fe49a0e2694b0755a5047b8", - "_tpl": "5d2f213448f0355009199284", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 7 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047b7", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a5047b8", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "5fe49a0e2694b0755a5047b9", - "_tpl": "64b7bbb74b75259c590fa897", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 8 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 50 - } - }, { - "_id": "5fe49a0e2694b0755a5047ba", - "_tpl": "64b7bbb74b75259c590fa897", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 8 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 50 - } - }, { - "_id": "5fe49a0e2694b0755a5047bb", - "_tpl": "64b7bbb74b75259c590fa897", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 8 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 50 - } - }, { - "_id": "5fe49a0e2694b0755a5047bc", - "_tpl": "5755356824597772cb798962", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 31 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047bd", - "_tpl": "5e831507ea0a7c419c2f9bd9", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 33 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047be", - "_tpl": "5449016a4bdc2d6f028b456f", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 1 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 250000 - } - }, { - "_id": "5fe49a0e2694b0755a5047bf", - "_tpl": "5449016a4bdc2d6f028b456f", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 1 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 250000 - } - }, { - "_id": "5fe49a0e2694b0755a5047c1", - "_tpl": "55d4887d4bdc2d962f8b4570", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 14 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047c0", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "5fe49a0e2694b0755a5047c1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a5047c2", - "_tpl": "5e8488fa988a8701445df1e4", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 36 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 3 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047c3", - "_tpl": "569668774bdc2da2298b4568", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 2 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 500 - } - }, { - "_id": "5fe49a0e2694b0755a5047c5", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 6 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047c4", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a5047c5", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17 - } - }, { - "_id": "5fe49a0e2694b0755a5047c7", - "_tpl": "5d2f213448f0355009199284", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 7 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047c6", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a5047c7", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "5fe49a0e2694b0755a5047c9", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 7 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047c8", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a5047c9", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17 - } - }, { - "_id": "5fe49a0e2694b0755a5047cb", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 7 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047ca", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a5047cb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17 - } - }, { - "_id": "5fe49a0e2694b0755a5047cc", - "_tpl": "5a0c27731526d80618476ac4", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 16 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047cd", - "_tpl": "5a0c27731526d80618476ac4", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 15 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047ce", - "_tpl": "57347da92459774491567cf5", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 26 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047cf", - "_tpl": "57347da92459774491567cf5", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 28 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047d0", - "_tpl": "57347da92459774491567cf5", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 26 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047d1", - "_tpl": "57347da92459774491567cf5", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 27 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047d2", - "_tpl": "560d5e524bdc2d25448b4571", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 17 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "5fe49a0e2694b0755a5047d3", - "_tpl": "560d5e524bdc2d25448b4571", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 17 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "5fe49a0e2694b0755a5047d4", - "_tpl": "560d5e524bdc2d25448b4571", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 17 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "5fe49a0e2694b0755a5047d5", - "_tpl": "544fb3364bdc2d34748b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 1, - "y": 34 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047d6", - "_tpl": "5755356824597772cb798962", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 31 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047d7", - "_tpl": "544fb45d4bdc2dee738b4568", - "location": { - "isSearched": true, - "r": 0, - "x": 1, - "y": 35 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 400 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047d8", - "_tpl": "5d02778e86f774203e7dedbe", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 32 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 5 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047d9", - "_tpl": "5c0e655586f774045612eeb2", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 17 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 85, - "MaxDurability": 85 - } - } - }, { - "_id": "658c3d4dab989d7f4805edbb", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "5fe49a0e2694b0755a5047d9", - "slotId": "Front_plate" - }, { - "_id": "658c3d4dab989d7f4805edbc", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "5fe49a0e2694b0755a5047d9", - "slotId": "Back_plate" - }, { - "_id": "658c3d4dab989d7f4805edbd", - "_tpl": "6570e025615f54368b04fcb0", - "parentId": "5fe49a0e2694b0755a5047d9", - "slotId": "Soft_armor_front" - }, { - "_id": "658c3d4dab989d7f4805edbe", - "_tpl": "6570e0610b57c03ec90b96ef", - "parentId": "5fe49a0e2694b0755a5047d9", - "slotId": "Soft_armor_back" - }, { - "_id": "5fe49a0e2694b0755a5047da", - "_tpl": "5c165d832e2216398b5a7e36", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 21 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047db", - "_tpl": "5af0454c86f7746bf20992e8", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 33 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 5 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047dc", - "_tpl": "5af0454c86f7746bf20992e8", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 33 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 5 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047dd", - "_tpl": "5af0454c86f7746bf20992e8", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 33 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 5 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047de", - "_tpl": "544fb45d4bdc2dee738b4568", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 35 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 400 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047df", - "_tpl": "5ab8f39486f7745cd93a1cca", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 25 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047e0", - "_tpl": "557ff21e4bdc2d89578b4586", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 22 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047e1", - "_tpl": "5bfebc5e0db834001a6694e5", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 19 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047e2", - "_tpl": "57c5ac0824597754771e88a9", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 16 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047e3", - "_tpl": "5aa7d03ae5b5b00016327db5", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 20 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 25, - "MaxDurability": 25 - } - } - }, { - "_id": "658c3d4dab989d7f4805edc9", - "_tpl": "654a90aff4f81a421b0a7c86", - "parentId": "5fe49a0e2694b0755a5047e3", - "slotId": "helmet_top" - }, { - "_id": "658c3d4dab989d7f4805edca", - "_tpl": "654a91068e1ce698150fd1e2", - "parentId": "5fe49a0e2694b0755a5047e3", - "slotId": "helmet_back" - }, { - "_id": "658c3d4dab989d7f4805edcb", - "_tpl": "654a9189bcc67a392b056c79", - "parentId": "5fe49a0e2694b0755a5047e3", - "slotId": "helmet_ears" - }, { - "_id": "5fe49a0e2694b0755a5047e4", - "_tpl": "5aa7d03ae5b5b00016327db5", - "location": { - "isSearched": true, - "r": 0, - "x": 2, - "y": 20 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 25, - "MaxDurability": 25 - } - } - }, { - "_id": "658c3d4dab989d7f4805edcd", - "_tpl": "654a90aff4f81a421b0a7c86", - "parentId": "5fe49a0e2694b0755a5047e4", - "slotId": "helmet_top" - }, { - "_id": "658c3d4dab989d7f4805edce", - "_tpl": "654a91068e1ce698150fd1e2", - "parentId": "5fe49a0e2694b0755a5047e4", - "slotId": "helmet_back" - }, { - "_id": "658c3d4dab989d7f4805edcf", - "_tpl": "654a9189bcc67a392b056c79", - "parentId": "5fe49a0e2694b0755a5047e4", - "slotId": "helmet_ears" - }, { - "_id": "5fe49a0e2694b0755a5047e5", - "_tpl": "544fb37f4bdc2dee738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 34 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 4 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047e6", - "_tpl": "544fb37f4bdc2dee738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 34 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 4 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047e7", - "_tpl": "58d3db5386f77426186285a0", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 19 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047e8", - "_tpl": "58d3db5386f77426186285a0", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 19 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047e9", - "_tpl": "58d3db5386f77426186285a0", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 20 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047eb", - "_tpl": "55d4887d4bdc2d962f8b4570", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 24 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047ea", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "5fe49a0e2694b0755a5047eb", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a5047ec", - "_tpl": "5d1b371186f774253763a656", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 37 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Resource": { - "Value": 60 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047ed", - "_tpl": "5d1b36a186f7742523398433", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 37 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Resource": { - "Value": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047ee", - "_tpl": "544fb45d4bdc2dee738b4568", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 35 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 400 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047ef", - "_tpl": "557ff21e4bdc2d89578b4586", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 23 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047f0", - "_tpl": "5448fee04bdc2dbc018b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 29 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 60 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047f1", - "_tpl": "5d02778e86f774203e7dedbe", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 32 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 5 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047f2", - "_tpl": "5d5d940f86f7742797262046", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 27 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047f3", - "_tpl": "57cd379a24597778e7682ecf", - "location": { - "isSearched": true, - "r": 1, - "x": 0, - "y": 26 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047f4", - "_tpl": "544a5caa4bdc2d1a388b4568", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 22 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 70, - "MaxDurability": 70 - } - } - }, { - "_id": "658c3d4dab989d7f4805ede0", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "5fe49a0e2694b0755a5047f4", - "slotId": "Front_plate" - }, { - "_id": "658c3d4dab989d7f4805ede1", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "5fe49a0e2694b0755a5047f4", - "slotId": "Back_plate" - }, { - "_id": "658c3d4dab989d7f4805ede2", - "_tpl": "6570e83223c1f638ef0b0ede", - "parentId": "5fe49a0e2694b0755a5047f4", - "slotId": "Soft_armor_front" - }, { - "_id": "658c3d4dab989d7f4805ede3", - "_tpl": "6570e87c23c1f638ef0b0ee2", - "parentId": "5fe49a0e2694b0755a5047f4", - "slotId": "Soft_armor_back" - }, { - "_id": "658c3d4dab989d7f4805ede4", - "_tpl": "6570e90b3a5689d85f08db97", - "parentId": "5fe49a0e2694b0755a5047f4", - "slotId": "Groin" - }, { - "_id": "5fe49a0e2694b0755a5047f5", - "_tpl": "5d5d85c586f774279a21cbdb", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 22 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047f6", - "_tpl": "5e2af4a786f7746d3f3c3400", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 36 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Resource": { - "Value": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047f7", - "_tpl": "570fd6c2d2720bc6458b457f", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 26 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047f8", - "_tpl": "5448be9a4bdc2dfd2f8b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 20 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047f9", - "_tpl": "5448be9a4bdc2dfd2f8b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 21 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047fa", - "_tpl": "590c657e86f77412b013051d", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 37 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 1800 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047fb", - "_tpl": "5d5e9c74a4b9364855191c40", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 17 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Repairable": { - "Durability": 27, - "MaxDurability": 27 - } - } - }, { - "_id": "658c3d4dab989d7f4805edec", - "_tpl": "657f8b94f92cd718b70154ff", - "parentId": "5fe49a0e2694b0755a5047fb", - "slotId": "Helmet_top" - }, { - "_id": "658c3d4dab989d7f4805eded", - "_tpl": "657f8b43f92cd718b70154fb", - "parentId": "5fe49a0e2694b0755a5047fb", - "slotId": "Helmet_back" - }, { - "_id": "5fe49a0e2694b0755a5047fd", - "_tpl": "55d4887d4bdc2d962f8b4570", - "location": { - "isSearched": true, - "r": 1, - "x": 3, - "y": 26 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a5047fc", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "5fe49a0e2694b0755a5047fd", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a5047fe", - "_tpl": "590c678286f77426c9660122", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 35 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 300 - } - } - }, { - "_id": "5fe49a0e2694b0755a5047ff", - "_tpl": "590c678286f77426c9660122", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 35 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 300 - } - } - }, { - "_id": "5fe49a0e2694b0755a504800", - "_tpl": "590c678286f77426c9660122", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 35 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 300 - } - } - }, { - "_id": "5fe49a0e2694b0755a504802", - "_tpl": "55d4887d4bdc2d962f8b4570", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 24 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504801", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "5fe49a0e2694b0755a504802", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a504803", - "_tpl": "5448fee04bdc2dbc018b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 29 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 60 - } - } - }, { - "_id": "5fe49a0e2694b0755a504804", - "_tpl": "5e8488fa988a8701445df1e4", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 36 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "MedKit": { - "HpResource": 3 - } - } - }, { - "_id": "5fe49a0e2694b0755a504805", - "_tpl": "54527a984bdc2d4e668b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 26 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 60 - } - }, { - "_id": "5fe49a0e2694b0755a504806", - "_tpl": "54527a984bdc2d4e668b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 26 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a504807", - "_tpl": "5c0e530286f7747fa1419862", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 34 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504808", - "_tpl": "5c0e530286f7747fa1419862", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 34 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504809", - "_tpl": "54527a984bdc2d4e668b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 25 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a50480a", - "_tpl": "5696686a4bdc2da3298b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 2 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 500 - } - }, { - "_id": "5fe49a0e2694b0755a50480c", - "_tpl": "5bfeaa0f0db834001b734927", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 19 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a50480b", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "5fe49a0e2694b0755a50480c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 - } - }, { - "_id": "5fe49a0e2694b0755a50480e", - "_tpl": "5bfeaa0f0db834001b734927", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 19 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a50480d", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "5fe49a0e2694b0755a50480e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 - } - }, { - "_id": "5fe49a0e2694b0755a504810", - "_tpl": "5bfeaa0f0db834001b734927", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 20 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a50480f", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "5fe49a0e2694b0755a504810", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 - } - }, { - "_id": "5fe49a0e2694b0755a504811", - "_tpl": "58dd3ad986f77403051cba8f", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 19 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "5fe49a0e2694b0755a504812", - "_tpl": "5448fee04bdc2dbc018b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 29 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 60 - } - } - }, { - "_id": "5fe49a0e2694b0755a504813", - "_tpl": "544fb3364bdc2d34748b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 34 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504815", - "_tpl": "5d2f213448f0355009199284", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 7 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504814", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a504815", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "5fe49a0e2694b0755a504817", - "_tpl": "5d2f213448f0355009199284", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 7 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504816", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a504817", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "5fe49a0e2694b0755a504819", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "location": { - "isSearched": true, - "r": 0, - "x": 6, - "y": 6 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504818", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a504819", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17 - } - }, { - "_id": "5fe49a0e2694b0755a50481a", - "_tpl": "544fb3f34bdc2d03748b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 30 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a50481b", - "_tpl": "544fb3f34bdc2d03748b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 30 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a50481c", - "_tpl": "5e2af47786f7746d404f3aaa", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 38 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Resource": { - "Value": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a50481d", - "_tpl": "5e2af4a786f7746d3f3c3400", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 37 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Resource": { - "Value": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a50481e", - "_tpl": "5e2af47786f7746d404f3aaa", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 39 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "Resource": { - "Value": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a50481f", - "_tpl": "58dd3ad986f77403051cba8f", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 16 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "5fe49a0e2694b0755a504820", - "_tpl": "5448be9a4bdc2dfd2f8b456a", - "location": { - "isSearched": true, - "r": 0, - "x": 4, - "y": 21 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504821", - "_tpl": "5645bcc04bdc2d363b8b4572", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 23 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a504822", - "_tpl": "57347da92459774491567cf5", - "location": { - "isSearched": true, - "r": 0, - "x": 8, - "y": 29 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "5fe49a0e2694b0755a504823", - "_tpl": "57347da92459774491567cf5", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 29 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FoodDrink": { - "HpPercent": 1 - } - } - }, { - "_id": "5fe49a0e2694b0755a504824", - "_tpl": "544fb25a4bdc2dfb738b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 9, - "y": 35 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout" - }, { - "_id": "5fe49a0e2694b0755a50482d", - "_tpl": "5cadc190ae921500103bb3b6", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 5 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a504826", - "_tpl": "5cadc1c6ae9215000f2775a4", - "parentId": "5fe49a0e2694b0755a50482d", - "slotId": "mod_barrel" - }, { - "_id": "5fe49a0e2694b0755a504825", - "_tpl": "5cadc390ae921500126a77f1", - "parentId": "5fe49a0e2694b0755a504826", - "slotId": "mod_muzzle" - }, { - "_id": "5fe49a0e2694b0755a504827", - "_tpl": "5cadc431ae921500113bb8d5", - "parentId": "5fe49a0e2694b0755a50482d", - "slotId": "mod_pistol_grip" - }, { - "_id": "5fe49a0e2694b0755a50482a", - "_tpl": "5cadc55cae921500103bb3be", - "parentId": "5fe49a0e2694b0755a50482d", - "slotId": "mod_reciever" - }, { - "_id": "5fe49a0e2694b0755a504828", - "_tpl": "5cadd940ae9215051e1c2316", - "parentId": "5fe49a0e2694b0755a50482a", - "slotId": "mod_sight_rear", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a504829", - "_tpl": "5cadd919ae921500126a77f3", - "parentId": "5fe49a0e2694b0755a50482a", - "slotId": "mod_sight_front", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a50482c", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "parentId": "5fe49a0e2694b0755a50482d", - "slotId": "mod_magazine" - }, { - "_id": "5fe49a0e2694b0755a50482b", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a50482c", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17 - } - }, { - "_id": "5fe49a0e2694b0755a504836", - "_tpl": "5cadc190ae921500103bb3b6", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 4 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a50482f", - "_tpl": "5cadc1c6ae9215000f2775a4", - "parentId": "5fe49a0e2694b0755a504836", - "slotId": "mod_barrel" - }, { - "_id": "5fe49a0e2694b0755a50482e", - "_tpl": "5cadc390ae921500126a77f1", - "parentId": "5fe49a0e2694b0755a50482f", - "slotId": "mod_muzzle" - }, { - "_id": "5fe49a0e2694b0755a504830", - "_tpl": "5cadc431ae921500113bb8d5", - "parentId": "5fe49a0e2694b0755a504836", - "slotId": "mod_pistol_grip" - }, { - "_id": "5fe49a0e2694b0755a504833", - "_tpl": "5cadc55cae921500103bb3be", - "parentId": "5fe49a0e2694b0755a504836", - "slotId": "mod_reciever" - }, { - "_id": "5fe49a0e2694b0755a504831", - "_tpl": "5cadd940ae9215051e1c2316", - "parentId": "5fe49a0e2694b0755a504833", - "slotId": "mod_sight_rear", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a504832", - "_tpl": "5cadd919ae921500126a77f3", - "parentId": "5fe49a0e2694b0755a504833", - "slotId": "mod_sight_front", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a504835", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "parentId": "5fe49a0e2694b0755a504836", - "slotId": "mod_magazine" - }, { - "_id": "5fe49a0e2694b0755a504834", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a504835", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17 - } - }, { - "_id": "5fe49a0e2694b0755a504843", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 14 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a504837", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "5fe49a0e2694b0755a504843", - "slotId": "mod_pistol_grip" - }, { - "_id": "5fe49a0e2694b0755a504839", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "5fe49a0e2694b0755a504843", - "slotId": "mod_magazine" - }, { - "_id": "5fe49a0e2694b0755a504838", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "5fe49a0e2694b0755a504839", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a50483f", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "5fe49a0e2694b0755a504843", - "slotId": "mod_reciever" - }, { - "_id": "5fe49a0e2694b0755a50483c", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "5fe49a0e2694b0755a50483f", - "slotId": "mod_barrel" - }, { - "_id": "5fe49a0e2694b0755a50483a", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "5fe49a0e2694b0755a50483c", - "slotId": "mod_muzzle" - }, { - "_id": "5fe49a0e2694b0755a50483b", - "_tpl": "5ae30e795acfc408fb139a0b", - "parentId": "5fe49a0e2694b0755a50483c", - "slotId": "mod_gas_block" - }, { - "_id": "5fe49a0e2694b0755a50483d", - "_tpl": "5ae30db85acfc408fb139a05", - "parentId": "5fe49a0e2694b0755a50483f", - "slotId": "mod_handguard" - }, { - "_id": "6396b722d604e334650f972e", - "_tpl": "637f57a68d137b27f70c4968", - "parentId": "5fe49a0e2694b0755a50483d", - "slotId": "mod_handguard" - }, { - "_id": "5fe49a0e2694b0755a50483e", - "_tpl": "5ae30bad5acfc400185c2dc4", - "parentId": "5fe49a0e2694b0755a50483f", - "slotId": "mod_sight_rear", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a504841", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "5fe49a0e2694b0755a504843", - "slotId": "mod_stock" - }, { - "_id": "5fe49a0e2694b0755a504840", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "5fe49a0e2694b0755a504841", - "slotId": "mod_stock_000" - }, { - "_id": "5fe49a0e2694b0755a504842", - "_tpl": "55d44fd14bdc2d962f8b456e", - "parentId": "5fe49a0e2694b0755a504843", - "slotId": "mod_charge" - }, { - "_id": "5fe49a0e2694b0755a50484c", - "_tpl": "5926bb2186f7744b1c6c6e60", - "location": { - "isSearched": true, - "r": 0, - "x": 7, - "y": 6 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a504845", - "_tpl": "5d2f213448f0355009199284", - "parentId": "5fe49a0e2694b0755a50484c", - "slotId": "mod_magazine" - }, { - "_id": "5fe49a0e2694b0755a504844", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a504845", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "5fe49a0e2694b0755a50484a", - "_tpl": "5926c0df86f77462f647f764", - "parentId": "5fe49a0e2694b0755a50484c", - "slotId": "mod_reciever" - }, { - "_id": "5fe49a0e2694b0755a504846", - "_tpl": "5926c36d86f77467a92a8629", - "parentId": "5fe49a0e2694b0755a50484a", - "slotId": "mod_handguard" - }, { - "_id": "5fe49a0e2694b0755a504847", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "5fe49a0e2694b0755a50484a", - "slotId": "mod_sight_rear", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a504848", - "_tpl": "5926d3c686f77410de68ebc8", - "parentId": "5fe49a0e2694b0755a50484a", - "slotId": "mod_stock" - }, { - "_id": "5fe49a0e2694b0755a504849", - "_tpl": "5926e16e86f7742f5a0f7ecb", - "parentId": "5fe49a0e2694b0755a50484a", - "slotId": "mod_muzzle" - }, { - "_id": "5fe49a0e2694b0755a50484b", - "_tpl": "5926c32286f774616e42de99", - "parentId": "5fe49a0e2694b0755a50484c", - "slotId": "mod_charge" - }, { - "_id": "5fe49a0e2694b0755a504855", - "_tpl": "5926bb2186f7744b1c6c6e60", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 6 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a50484e", - "_tpl": "5d2f213448f0355009199284", - "parentId": "5fe49a0e2694b0755a504855", - "slotId": "mod_magazine" - }, { - "_id": "5fe49a0e2694b0755a50484d", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a50484e", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 20 - } - }, { - "_id": "5fe49a0e2694b0755a504853", - "_tpl": "5926c0df86f77462f647f764", - "parentId": "5fe49a0e2694b0755a504855", - "slotId": "mod_reciever" - }, { - "_id": "5fe49a0e2694b0755a50484f", - "_tpl": "5926c36d86f77467a92a8629", - "parentId": "5fe49a0e2694b0755a504853", - "slotId": "mod_handguard" - }, { - "_id": "5fe49a0e2694b0755a504850", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "5fe49a0e2694b0755a504853", - "slotId": "mod_sight_rear", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a504851", - "_tpl": "5926d3c686f77410de68ebc8", - "parentId": "5fe49a0e2694b0755a504853", - "slotId": "mod_stock" - }, { - "_id": "5fe49a0e2694b0755a504852", - "_tpl": "5926e16e86f7742f5a0f7ecb", - "parentId": "5fe49a0e2694b0755a504853", - "slotId": "mod_muzzle" - }, { - "_id": "5fe49a0e2694b0755a504854", - "_tpl": "5926c32286f774616e42de99", - "parentId": "5fe49a0e2694b0755a504855", - "slotId": "mod_charge" - }, { - "_id": "5fe49a0e2694b0755a50485e", - "_tpl": "5cadc190ae921500103bb3b6", - "location": { - "isSearched": true, - "r": 0, - "x": 3, - "y": 3 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a504857", - "_tpl": "5cadc1c6ae9215000f2775a4", - "parentId": "5fe49a0e2694b0755a50485e", - "slotId": "mod_barrel" - }, { - "_id": "5fe49a0e2694b0755a504856", - "_tpl": "5cadc390ae921500126a77f1", - "parentId": "5fe49a0e2694b0755a504857", - "slotId": "mod_muzzle" - }, { - "_id": "5fe49a0e2694b0755a504858", - "_tpl": "5cadc431ae921500113bb8d5", - "parentId": "5fe49a0e2694b0755a50485e", - "slotId": "mod_pistol_grip" - }, { - "_id": "5fe49a0e2694b0755a50485b", - "_tpl": "5cadc55cae921500103bb3be", - "parentId": "5fe49a0e2694b0755a50485e", - "slotId": "mod_reciever" - }, { - "_id": "5fe49a0e2694b0755a504859", - "_tpl": "5cadd940ae9215051e1c2316", - "parentId": "5fe49a0e2694b0755a50485b", - "slotId": "mod_sight_rear", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a50485a", - "_tpl": "5cadd919ae921500126a77f3", - "parentId": "5fe49a0e2694b0755a50485b", - "slotId": "mod_sight_front", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a50485d", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "parentId": "5fe49a0e2694b0755a50485e", - "slotId": "mod_magazine" - }, { - "_id": "5fe49a0e2694b0755a50485c", - "_tpl": "64b7bbb74b75259c590fa897", - "parentId": "5fe49a0e2694b0755a50485d", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 17 - } - }, { - "_id": "5fe49a0e2694b0755a504867", - "_tpl": "5e870397991fd70db46995c8", - "location": { - "isSearched": true, - "r": 0, - "x": 0, - "y": 16 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a504860", - "_tpl": "5e87071478f43e51ca2de5e1", - "parentId": "5fe49a0e2694b0755a504867", - "slotId": "mod_barrel" - }, { - "_id": "5fe49a0e2694b0755a50485f", - "_tpl": "5e8708d4ae379e67d22e0102", - "parentId": "5fe49a0e2694b0755a504860", - "slotId": "mod_sight_front", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a504861", - "_tpl": "5e87076ce2db31558c75a11d", - "parentId": "5fe49a0e2694b0755a504867", - "slotId": "mod_handguard" - }, { - "_id": "5fe49a0e2694b0755a504863", - "_tpl": "5e87080c81c4ed43e83cefda", - "parentId": "5fe49a0e2694b0755a504867", - "slotId": "mod_magazine" - }, { - "_id": "5fe49a0e2694b0755a504862", - "_tpl": "560d5e524bdc2d25448b4571", - "parentId": "5fe49a0e2694b0755a504863", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 8 - } - }, { - "_id": "5fe49a0e2694b0755a504864", - "_tpl": "5e87116b81c4ed43e83cefdd", - "parentId": "5fe49a0e2694b0755a504867", - "slotId": "mod_stock" - }, { - "_id": "5fe49a0e2694b0755a504865", - "_tpl": "5e87114fe2db31558c75a120", - "parentId": "5fe49a0e2694b0755a504867", - "slotId": "mod_mount", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a504866", - "_tpl": "560d5e524bdc2d25448b4571", - "parentId": "5fe49a0e2694b0755a504867", - "slotId": "patron_in_weapon" - }, { - "_id": "5fe49a0e2694b0755a50486c", - "_tpl": "5bfea6e90db834001b7347f3", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 18 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a504869", - "_tpl": "5bfeaa0f0db834001b734927", - "parentId": "5fe49a0e2694b0755a50486c", - "slotId": "mod_magazine" - }, { - "_id": "5fe49a0e2694b0755a504868", - "_tpl": "58dd3ad986f77403051cba8f", - "parentId": "5fe49a0e2694b0755a504869", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 10 - } - }, { - "_id": "5fe49a0e2694b0755a50486a", - "_tpl": "5bfeb32b0db834001a6694d9", - "parentId": "5fe49a0e2694b0755a50486c", - "slotId": "mod_stock" - }, { - "_id": "5fe49a0e2694b0755a50486b", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "5fe49a0e2694b0755a50486c", - "slotId": "mod_barrel" - }, { - "_id": "5fe49a0e2694b0755a504875", - "_tpl": "5c488a752e221602b412af63", - "location": { - "isSearched": true, - "r": 0, - "x": 5, - "y": 27 - }, - "parentId": "5fe49a0e2694b0755a504876", - "slotId": "hideout", - "upd": { - "FireMode": { - "FireMode": "single" - }, - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, { - "_id": "5fe49a0e2694b0755a50486d", - "_tpl": "5c48a2c22e221602b313fb6c", - "parentId": "5fe49a0e2694b0755a504875", - "slotId": "mod_pistol_grip" - }, { - "_id": "5fe49a0e2694b0755a50486f", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "5fe49a0e2694b0755a504875", - "slotId": "mod_magazine" - }, { - "_id": "5fe49a0e2694b0755a50486e", - "_tpl": "54527a984bdc2d4e668b4567", - "parentId": "5fe49a0e2694b0755a50486f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, { - "_id": "5fe49a0e2694b0755a504871", - "_tpl": "5c48a14f2e2216152006edd7", - "parentId": "5fe49a0e2694b0755a504875", - "slotId": "mod_handguard" - }, { - "_id": "5fe49a0e2694b0755a504870", - "_tpl": "5c18b90d2e2216152142466b", - "parentId": "5fe49a0e2694b0755a504871", - "slotId": "mod_sight_front", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a504873", - "_tpl": "5c48a2852e221602b21d5923", - "parentId": "5fe49a0e2694b0755a504875", - "slotId": "mod_barrel" - }, { - "_id": "5fe49a0e2694b0755a504872", - "_tpl": "5c48a2a42e221602b66d1e07", - "parentId": "5fe49a0e2694b0755a504873", - "slotId": "mod_muzzle" - }, { - "_id": "5fe49a0e2694b0755a504874", - "_tpl": "5c18b9192e2216398b5a8104", - "parentId": "5fe49a0e2694b0755a504875", - "slotId": "mod_sight_rear", - "upd": { - "Sight": { - "ScopesCurrentCalibPointIndexes": [ - 0 - ], - "ScopesSelectedModes": [ - 0 - ], - "SelectedScope": 0 - } - } - }, { - "_id": "5fe49a0e2694b0755a504878", - "_tpl": "5963866b86f7747bfa1c4462" - }, { - "_id": "5fe49a0e2694b0755a504877", - "_tpl": "5963866286f7747bf429b572" - }, { - "_id": "60dca3da42ad9b706b369aca", - "_tpl": "602543c13fee350cd564d032" + "favoriteItems": [], + "items": [ + { + "_id": "6613e1cf291a2e76b00269a8", + "_tpl": "55d7217a4bdc2d86028b456d" + }, { + "_id": "6613e1cf291a2e76b002698d", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "parentId": "6613e1cf291a2e76b00269a8", + "slotId": "FirstPrimaryWeapon" + }, { + "_id": "6613e1cf291a2e76b0026980", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "6613e1cf291a2e76b002698d", + "slotId": "mod_pistol_grip" + }, { + "_id": "6613e1cf291a2e76b0026982", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6613e1cf291a2e76b002698d", + "slotId": "mod_magazine" + }, { + "_id": "6613e1cf291a2e76b0026981", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b0026982", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 } - ], - "questRaidItems": "5fe49a0e2694b0755a504877", - "questStashItems": "5fe49a0e2694b0755a504878", - "sortingTable": "60dca3da42ad9b706b369aca", - "stash": "5fe49a0e2694b0755a504876" + }, { + "_id": "6613e1cf291a2e76b0026989", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "6613e1cf291a2e76b002698d", + "slotId": "mod_reciever" + }, { + "_id": "6613e1cf291a2e76b0026985", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "6613e1cf291a2e76b0026989", + "slotId": "mod_barrel" + }, { + "_id": "6613e1cf291a2e76b0026983", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "6613e1cf291a2e76b0026985", + "slotId": "mod_muzzle" + }, { + "_id": "6613e1cf291a2e76b0026984", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "6613e1cf291a2e76b0026985", + "slotId": "mod_gas_block" + }, { + "_id": "6613e1cf291a2e76b0026987", + "_tpl": "5ae30db85acfc408fb139a05", + "parentId": "6613e1cf291a2e76b0026989", + "slotId": "mod_handguard" + }, { + "_id": "6613e1cf291a2e76b0026986", + "_tpl": "637f57a68d137b27f70c4968", + "parentId": "6613e1cf291a2e76b0026987", + "slotId": "mod_handguard" + }, { + "_id": "6613e1cf291a2e76b0026988", + "_tpl": "5ae30bad5acfc400185c2dc4", + "parentId": "6613e1cf291a2e76b0026989", + "slotId": "mod_sight_rear" + }, { + "_id": "6613e1cf291a2e76b002698b", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6613e1cf291a2e76b002698d", + "slotId": "mod_stock" + }, { + "_id": "6613e1cf291a2e76b002698a", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "6613e1cf291a2e76b002698b", + "slotId": "mod_stock_000" + }, { + "_id": "6613e1cf291a2e76b002698c", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "6613e1cf291a2e76b002698d", + "slotId": "mod_charge" + }, { + "_id": "6613e1cf291a2e76b002698e", + "_tpl": "54491bb74bdc2d09088b4567", + "parentId": "6613e1cf291a2e76b00269a8", + "slotId": "Scabbard" + }, { + "_id": "6613e1cf291a2e76b002698f", + "_tpl": "572b7fa524597762b747ce82", + "parentId": "6613e1cf291a2e76b00269a8", + "slotId": "FaceCover" + }, { + "_id": "6613e1cf291a2e76b0026990", + "_tpl": "5aa2a7e8e5b5b00016327c16", + "parentId": "6613e1cf291a2e76b00269a8", + "slotId": "Headwear" + }, { + "_id": "6613e1cf291a2e76b0026998", + "_tpl": "5c0e9f2c86f77432297fe0a3", + "parentId": "6613e1cf291a2e76b00269a8", + "slotId": "TacticalVest" + }, { + "_id": "6613e1cf291a2e76b0026992", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6613e1cf291a2e76b0026998", + "slotId": "1", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026991", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b0026992", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613e1cf291a2e76b0026994", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6613e1cf291a2e76b0026998", + "slotId": "2", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026993", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b0026994", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613e1cf291a2e76b0026996", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6613e1cf291a2e76b0026998", + "slotId": "3", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026995", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b0026996", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613e1cf291a2e76b0026997", + "_tpl": "5755356824597772cb798962", + "parentId": "6613e1cf291a2e76b0026998", + "slotId": "4", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026999", + "_tpl": "5857a8bc2459772bad15db29", + "parentId": "6613e1cf291a2e76b00269a8", + "slotId": "SecuredContainer" + }, { + "_id": "6613e1cf291a2e76b002699d", + "_tpl": "5e9dcf5986f7746c417435b3", + "parentId": "6613e1cf291a2e76b00269a8", + "slotId": "Backpack" + }, { + "_id": "6613e1cf291a2e76b002699a", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "6613e1cf291a2e76b002699d", + "slotId": "main", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b002699b", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "6613e1cf291a2e76b002699d", + "slotId": "main", + "location": { + "x": 1, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b002699c", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b002699d", + "slotId": "main", + "location": { + "x": 2, + "y": 0, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 60 + } + }, { + "_id": "6613e1cf291a2e76b00269a2", + "_tpl": "5648a7494bdc2d9d488b4583", + "parentId": "6613e1cf291a2e76b00269a8", + "slotId": "ArmorVest" + }, { + "_id": "6613e1cf291a2e76b002699e", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "6613e1cf291a2e76b00269a2", + "slotId": "Soft_armor_front" + }, { + "_id": "6613e1cf291a2e76b002699f", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "6613e1cf291a2e76b00269a2", + "slotId": "Soft_armor_back" + }, { + "_id": "6613e1cf291a2e76b00269a0", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "6613e1cf291a2e76b00269a2", + "slotId": "Soft_armor_left" + }, { + "_id": "6613e1cf291a2e76b00269a1", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "6613e1cf291a2e76b00269a2", + "slotId": "soft_armor_right" + }, { + "_id": "6613e1cf291a2e76b00269a6", + "_tpl": "627a4e6b255f7527fb05a0f6", + "parentId": "6613e1cf291a2e76b00269a8", + "slotId": "Pockets" + }, { + "_id": "6613e1cf291a2e76b00269a3", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "6613e1cf291a2e76b00269a6", + "slotId": "pocket1", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269a4", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "6613e1cf291a2e76b00269a6", + "slotId": "pocket2", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269a5", + "_tpl": "5751a25924597722c463c472", + "parentId": "6613e1cf291a2e76b00269a6", + "slotId": "pocket3", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269a7", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "6613e1cf291a2e76b00269a8", + "slotId": "Earpiece" + }, { + "_id": "6613e1cf291a2e76b0026acc", + "_tpl": "5811ce772459770e9e5f9532" + }, { + "_id": "6613e1cf291a2e76b00269a9", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 2, + "y": 32, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269aa", + "_tpl": "5e9dcf5986f7746c417435b3", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 9, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269ab", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 14, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269ad", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 4, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269ac", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b00269ad", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17 + } + }, { + "_id": "6613e1cf291a2e76b00269af", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 14, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269ae", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b00269af", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613e1cf291a2e76b00269b0", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 17, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 60 + } + }, { + "_id": "6613e1cf291a2e76b00269b1", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 31, + "r": 1, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269b2", + "_tpl": "5755356824597772cb798962", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 31, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269b3", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269b5", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 15, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269b4", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b00269b5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613e1cf291a2e76b00269b6", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 8, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613e1cf291a2e76b00269b7", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 1, + "y": 32, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269b9", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 14, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269b8", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b00269b9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613e1cf291a2e76b00269ba", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 4, + "y": 13, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269bb", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 17, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 60 + } + }, { + "_id": "6613e1cf291a2e76b00269bc", + "_tpl": "590c661e86f7741e566b646a", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 32, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269bd", + "_tpl": "5ab8f39486f7745cd93a1cca", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 25, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269be", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 14, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269bf", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 13, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269c1", + "_tpl": "5bfeaa0f0db834001b734927", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 20, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269c0", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "6613e1cf291a2e76b00269c1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } + }, { + "_id": "6613e1cf291a2e76b00269c2", + "_tpl": "5e4d34ca86f774264f758330", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 4, + "y": 11, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269c3", + "_tpl": "5aa2a7e8e5b5b00016327c16", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269c4", + "_tpl": "5c0e9f2c86f77432297fe0a3", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 3, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269c5", + "_tpl": "590c5f0d86f77413997acfab", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 32, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269c6", + "_tpl": "5aa2a7e8e5b5b00016327c16", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269cb", + "_tpl": "5648a7494bdc2d9d488b4583", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269c7", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "6613e1cf291a2e76b00269cb", + "slotId": "Soft_armor_front" + }, { + "_id": "6613e1cf291a2e76b00269c8", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "6613e1cf291a2e76b00269cb", + "slotId": "Soft_armor_back" + }, { + "_id": "6613e1cf291a2e76b00269c9", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "6613e1cf291a2e76b00269cb", + "slotId": "Soft_armor_left" + }, { + "_id": "6613e1cf291a2e76b00269ca", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "6613e1cf291a2e76b00269cb", + "slotId": "soft_armor_right" + }, { + "_id": "6613e1cf291a2e76b00269cc", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 4, + "y": 33, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269cd", + "_tpl": "5755356824597772cb798962", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 31, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269cf", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 4, + "y": 6, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269ce", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b00269cf", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17 + } + }, { + "_id": "6613e1cf291a2e76b00269d0", + "_tpl": "5e4d34ca86f774264f758330", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 4, + "y": 9, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269d1", + "_tpl": "5d403f9186f7743cac3f229b", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 4, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269d2", + "_tpl": "5c0e9f2c86f77432297fe0a3", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 0, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269d7", + "_tpl": "5648a7494bdc2d9d488b4583", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 3, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269d3", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "6613e1cf291a2e76b00269d7", + "slotId": "Soft_armor_front" + }, { + "_id": "6613e1cf291a2e76b00269d4", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "6613e1cf291a2e76b00269d7", + "slotId": "Soft_armor_back" + }, { + "_id": "6613e1cf291a2e76b00269d5", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "6613e1cf291a2e76b00269d7", + "slotId": "Soft_armor_left" + }, { + "_id": "6613e1cf291a2e76b00269d6", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "6613e1cf291a2e76b00269d7", + "slotId": "soft_armor_right" + }, { + "_id": "6613e1cf291a2e76b00269d8", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 33, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269d9", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 2, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269da", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269db", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269dc", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 33, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269dd", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269df", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 5, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269de", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b00269df", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17 + } + }, { + "_id": "6613e1cf291a2e76b00269e0", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 8, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613e1cf291a2e76b00269e1", + "_tpl": "5e9dcf5986f7746c417435b3", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 9, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269e2", + "_tpl": "590c695186f7741e566b64a2", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269e3", + "_tpl": "5751a25924597722c463c472", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269e4", + "_tpl": "590c695186f7741e566b64a2", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269e5", + "_tpl": "5751a25924597722c463c472", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 4, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269e7", + "_tpl": "5d2f213448f0355009199284", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 2, + "y": 7, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269e6", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b00269e7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613e1cf291a2e76b00269e9", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 6, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269e8", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b00269e9", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17 + } + }, { + "_id": "6613e1cf291a2e76b00269eb", + "_tpl": "5d2f213448f0355009199284", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 7, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269ea", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b00269eb", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613e1cf291a2e76b00269ed", + "_tpl": "5d2f213448f0355009199284", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 7, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269ec", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b00269ed", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613e1cf291a2e76b00269ef", + "_tpl": "5d2f213448f0355009199284", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 1, + "y": 7, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269ee", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b00269ef", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613e1cf291a2e76b00269f0", + "_tpl": "5755383e24597772cb798966", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269f2", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 25, + "r": 1, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269f1", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b00269f2", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613e1cf291a2e76b00269f3", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 8, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613e1cf291a2e76b00269f4", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 1, + "y": 8, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613e1cf291a2e76b00269f5", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 4, + "y": 8, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613e1cf291a2e76b00269f6", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 8, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613e1cf291a2e76b00269f7", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 2, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 500 + } + }, { + "_id": "6613e1cf291a2e76b00269f8", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 8, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613e1cf291a2e76b00269fa", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 3, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269f9", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b00269fa", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17 + } + }, { + "_id": "6613e1cf291a2e76b00269fc", + "_tpl": "5d2f213448f0355009199284", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 7, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b00269fb", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b00269fc", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613e1cf291a2e76b00269fd", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 8, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613e1cf291a2e76b00269fe", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 2, + "y": 8, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613e1cf291a2e76b00269ff", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 8, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 50 + } + }, { + "_id": "6613e1cf291a2e76b0026a00", + "_tpl": "5755356824597772cb798962", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 31, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a01", + "_tpl": "5e831507ea0a7c419c2f9bd9", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 33, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a02", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 1, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 250000 + } + }, { + "_id": "6613e1cf291a2e76b0026a03", + "_tpl": "5449016a4bdc2d6f028b456f", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 1, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 250000 + } + }, { + "_id": "6613e1cf291a2e76b0026a05", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 14, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a04", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b0026a05", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613e1cf291a2e76b0026a06", + "_tpl": "5e8488fa988a8701445df1e4", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a07", + "_tpl": "569668774bdc2da2298b4568", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 4, + "y": 2, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 500 + } + }, { + "_id": "6613e1cf291a2e76b0026a09", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 6, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a08", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026a09", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17 + } + }, { + "_id": "6613e1cf291a2e76b0026a0b", + "_tpl": "5d2f213448f0355009199284", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 7, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a0a", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026a0b", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613e1cf291a2e76b0026a0d", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 7, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a0c", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026a0d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17 + } + }, { + "_id": "6613e1cf291a2e76b0026a0f", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 4, + "y": 7, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a0e", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026a0f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17 + } + }, { + "_id": "6613e1cf291a2e76b0026a10", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 16, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a11", + "_tpl": "5a0c27731526d80618476ac4", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 15, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a12", + "_tpl": "57347da92459774491567cf5", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 26, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a13", + "_tpl": "57347da92459774491567cf5", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 28, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a14", + "_tpl": "57347da92459774491567cf5", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 26, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a15", + "_tpl": "57347da92459774491567cf5", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 27, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a16", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 17, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613e1cf291a2e76b0026a17", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 17, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613e1cf291a2e76b0026a18", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 17, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613e1cf291a2e76b0026a19", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 1, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a1a", + "_tpl": "5755356824597772cb798962", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 31, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a1b", + "_tpl": "60098ad7c2240c0fe85c570a", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 2, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a1c", + "_tpl": "5d02778e86f774203e7dedbe", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 32, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a21", + "_tpl": "5c0e655586f774045612eeb2", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 17, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a1d", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "6613e1cf291a2e76b0026a21", + "slotId": "Front_plate" + }, { + "_id": "6613e1cf291a2e76b0026a1e", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "6613e1cf291a2e76b0026a21", + "slotId": "Back_plate" + }, { + "_id": "6613e1cf291a2e76b0026a1f", + "_tpl": "6570e025615f54368b04fcb0", + "parentId": "6613e1cf291a2e76b0026a21", + "slotId": "Soft_armor_front" + }, { + "_id": "6613e1cf291a2e76b0026a20", + "_tpl": "6570e0610b57c03ec90b96ef", + "parentId": "6613e1cf291a2e76b0026a21", + "slotId": "Soft_armor_back" + }, { + "_id": "6613e1cf291a2e76b0026a22", + "_tpl": "5c165d832e2216398b5a7e36", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 21, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a23", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 33, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a24", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 33, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a25", + "_tpl": "5af0454c86f7746bf20992e8", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 33, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a26", + "_tpl": "60098ad7c2240c0fe85c570a", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 2, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a27", + "_tpl": "5ab8f39486f7745cd93a1cca", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 25, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a28", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 22, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a29", + "_tpl": "5bfebc5e0db834001a6694e5", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 19, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a2a", + "_tpl": "57c5ac0824597754771e88a9", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 16, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a2e", + "_tpl": "5aa7d03ae5b5b00016327db5", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 20, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a2b", + "_tpl": "654a90aff4f81a421b0a7c86", + "parentId": "6613e1cf291a2e76b0026a2e", + "slotId": "helmet_top" + }, { + "_id": "6613e1cf291a2e76b0026a2c", + "_tpl": "654a91068e1ce698150fd1e2", + "parentId": "6613e1cf291a2e76b0026a2e", + "slotId": "helmet_back" + }, { + "_id": "6613e1cf291a2e76b0026a2d", + "_tpl": "654a9189bcc67a392b056c79", + "parentId": "6613e1cf291a2e76b0026a2e", + "slotId": "helmet_ears" + }, { + "_id": "6613e1cf291a2e76b0026a32", + "_tpl": "5aa7d03ae5b5b00016327db5", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 2, + "y": 20, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a2f", + "_tpl": "654a90aff4f81a421b0a7c86", + "parentId": "6613e1cf291a2e76b0026a32", + "slotId": "helmet_top" + }, { + "_id": "6613e1cf291a2e76b0026a30", + "_tpl": "654a91068e1ce698150fd1e2", + "parentId": "6613e1cf291a2e76b0026a32", + "slotId": "helmet_back" + }, { + "_id": "6613e1cf291a2e76b0026a31", + "_tpl": "654a9189bcc67a392b056c79", + "parentId": "6613e1cf291a2e76b0026a32", + "slotId": "helmet_ears" + }, { + "_id": "6613e1cf291a2e76b0026a33", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a34", + "_tpl": "544fb37f4bdc2dee738b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a35", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 19, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a36", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 4, + "y": 19, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a37", + "_tpl": "58d3db5386f77426186285a0", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 20, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a39", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 24, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a38", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b0026a39", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613e1cf291a2e76b0026a3a", + "_tpl": "5d1b371186f774253763a656", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 37, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a3b", + "_tpl": "5d1b36a186f7742523398433", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 37, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a3c", + "_tpl": "60098ad7c2240c0fe85c570a", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 2, + "y": 37, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a3d", + "_tpl": "557ff21e4bdc2d89578b4586", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 23, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a3e", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 29, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a3f", + "_tpl": "5d02778e86f774203e7dedbe", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 32, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a40", + "_tpl": "5d5d940f86f7742797262046", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 27, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a41", + "_tpl": "57cd379a24597778e7682ecf", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 26, + "r": 1, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a47", + "_tpl": "544a5caa4bdc2d1a388b4568", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 22, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a42", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "6613e1cf291a2e76b0026a47", + "slotId": "Front_plate" + }, { + "_id": "6613e1cf291a2e76b0026a43", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "6613e1cf291a2e76b0026a47", + "slotId": "Back_plate" + }, { + "_id": "6613e1cf291a2e76b0026a44", + "_tpl": "6570e83223c1f638ef0b0ede", + "parentId": "6613e1cf291a2e76b0026a47", + "slotId": "Soft_armor_front" + }, { + "_id": "6613e1cf291a2e76b0026a45", + "_tpl": "6570e87c23c1f638ef0b0ee2", + "parentId": "6613e1cf291a2e76b0026a47", + "slotId": "Soft_armor_back" + }, { + "_id": "6613e1cf291a2e76b0026a46", + "_tpl": "6570e90b3a5689d85f08db97", + "parentId": "6613e1cf291a2e76b0026a47", + "slotId": "Groin" + }, { + "_id": "6613e1cf291a2e76b0026a48", + "_tpl": "5d5d85c586f774279a21cbdb", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 22, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a49", + "_tpl": "5e2af4a786f7746d3f3c3400", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a4a", + "_tpl": "570fd6c2d2720bc6458b457f", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 26, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a4b", + "_tpl": "5448be9a4bdc2dfd2f8b456a", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 4, + "y": 20, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a4c", + "_tpl": "5448be9a4bdc2dfd2f8b456a", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 21, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a4d", + "_tpl": "590c657e86f77412b013051d", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a50", + "_tpl": "5d5e9c74a4b9364855191c40", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 17, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a4e", + "_tpl": "657f8b94f92cd718b70154ff", + "parentId": "6613e1cf291a2e76b0026a50", + "slotId": "Helmet_top" + }, { + "_id": "6613e1cf291a2e76b0026a4f", + "_tpl": "657f8b43f92cd718b70154fb", + "parentId": "6613e1cf291a2e76b0026a50", + "slotId": "Helmet_back" + }, { + "_id": "6613e1cf291a2e76b0026a52", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 26, + "r": 1, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a51", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b0026a52", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613e1cf291a2e76b0026a53", + "_tpl": "590c678286f77426c9660122", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a54", + "_tpl": "590c678286f77426c9660122", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 4, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a55", + "_tpl": "590c678286f77426c9660122", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a57", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 24, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a56", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b0026a57", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613e1cf291a2e76b0026a58", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 29, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a59", + "_tpl": "5e8488fa988a8701445df1e4", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 36, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a5a", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 26, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 60 + } + }, { + "_id": "6613e1cf291a2e76b0026a5b", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 26, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613e1cf291a2e76b0026a5c", + "_tpl": "5c0e530286f7747fa1419862", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a5d", + "_tpl": "5c0e530286f7747fa1419862", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a5e", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 25, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613e1cf291a2e76b0026a5f", + "_tpl": "5696686a4bdc2da3298b456a", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 2, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 500 + } + }, { + "_id": "6613e1cf291a2e76b0026a61", + "_tpl": "5bfeaa0f0db834001b734927", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 19, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a60", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "6613e1cf291a2e76b0026a61", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } + }, { + "_id": "6613e1cf291a2e76b0026a63", + "_tpl": "5bfeaa0f0db834001b734927", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 19, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a62", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "6613e1cf291a2e76b0026a63", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } + }, { + "_id": "6613e1cf291a2e76b0026a65", + "_tpl": "5bfeaa0f0db834001b734927", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 20, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a64", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "6613e1cf291a2e76b0026a65", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } + }, { + "_id": "6613e1cf291a2e76b0026a66", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 19, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613e1cf291a2e76b0026a67", + "_tpl": "5448fee04bdc2dbc018b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 29, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a68", + "_tpl": "544fb3364bdc2d34748b456a", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 34, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a6a", + "_tpl": "5d2f213448f0355009199284", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 7, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a69", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026a6a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613e1cf291a2e76b0026a6c", + "_tpl": "5d2f213448f0355009199284", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 7, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a6b", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026a6c", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613e1cf291a2e76b0026a6e", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 6, + "y": 6, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a6d", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026a6e", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17 + } + }, { + "_id": "6613e1cf291a2e76b0026a6f", + "_tpl": "544fb3f34bdc2d03748b456a", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 30, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a70", + "_tpl": "544fb3f34bdc2d03748b456a", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 30, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a71", + "_tpl": "5e2af47786f7746d404f3aaa", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 38, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a72", + "_tpl": "5e2af4a786f7746d3f3c3400", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 37, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a73", + "_tpl": "5e2af47786f7746d404f3aaa", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 39, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a74", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 16, + "r": 0, + "isSearched": true + }, + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613e1cf291a2e76b0026a75", + "_tpl": "5448be9a4bdc2dfd2f8b456a", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 4, + "y": 21, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a76", + "_tpl": "5645bcc04bdc2d363b8b4572", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 23, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a77", + "_tpl": "57347da92459774491567cf5", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 8, + "y": 29, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a78", + "_tpl": "57347da92459774491567cf5", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 29, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a79", + "_tpl": "544fb25a4bdc2dfb738b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 9, + "y": 35, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a82", + "_tpl": "5cadc190ae921500103bb3b6", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 5, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a7b", + "_tpl": "5cadc1c6ae9215000f2775a4", + "parentId": "6613e1cf291a2e76b0026a82", + "slotId": "mod_barrel" + }, { + "_id": "6613e1cf291a2e76b0026a7a", + "_tpl": "5cadc390ae921500126a77f1", + "parentId": "6613e1cf291a2e76b0026a7b", + "slotId": "mod_muzzle" + }, { + "_id": "6613e1cf291a2e76b0026a7c", + "_tpl": "5cadc431ae921500113bb8d5", + "parentId": "6613e1cf291a2e76b0026a82", + "slotId": "mod_pistol_grip" + }, { + "_id": "6613e1cf291a2e76b0026a7f", + "_tpl": "5cadc55cae921500103bb3be", + "parentId": "6613e1cf291a2e76b0026a82", + "slotId": "mod_reciever" + }, { + "_id": "6613e1cf291a2e76b0026a7d", + "_tpl": "5cadd940ae9215051e1c2316", + "parentId": "6613e1cf291a2e76b0026a7f", + "slotId": "mod_sight_rear" + }, { + "_id": "6613e1cf291a2e76b0026a7e", + "_tpl": "5cadd919ae921500126a77f3", + "parentId": "6613e1cf291a2e76b0026a7f", + "slotId": "mod_sight_front" + }, { + "_id": "6613e1cf291a2e76b0026a81", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "6613e1cf291a2e76b0026a82", + "slotId": "mod_magazine" + }, { + "_id": "6613e1cf291a2e76b0026a80", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026a81", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17 + } + }, { + "_id": "6613e1cf291a2e76b0026a8b", + "_tpl": "5cadc190ae921500103bb3b6", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 4, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a84", + "_tpl": "5cadc1c6ae9215000f2775a4", + "parentId": "6613e1cf291a2e76b0026a8b", + "slotId": "mod_barrel" + }, { + "_id": "6613e1cf291a2e76b0026a83", + "_tpl": "5cadc390ae921500126a77f1", + "parentId": "6613e1cf291a2e76b0026a84", + "slotId": "mod_muzzle" + }, { + "_id": "6613e1cf291a2e76b0026a85", + "_tpl": "5cadc431ae921500113bb8d5", + "parentId": "6613e1cf291a2e76b0026a8b", + "slotId": "mod_pistol_grip" + }, { + "_id": "6613e1cf291a2e76b0026a88", + "_tpl": "5cadc55cae921500103bb3be", + "parentId": "6613e1cf291a2e76b0026a8b", + "slotId": "mod_reciever" + }, { + "_id": "6613e1cf291a2e76b0026a86", + "_tpl": "5cadd940ae9215051e1c2316", + "parentId": "6613e1cf291a2e76b0026a88", + "slotId": "mod_sight_rear" + }, { + "_id": "6613e1cf291a2e76b0026a87", + "_tpl": "5cadd919ae921500126a77f3", + "parentId": "6613e1cf291a2e76b0026a88", + "slotId": "mod_sight_front" + }, { + "_id": "6613e1cf291a2e76b0026a8a", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "6613e1cf291a2e76b0026a8b", + "slotId": "mod_magazine" + }, { + "_id": "6613e1cf291a2e76b0026a89", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026a8a", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17 + } + }, { + "_id": "6613e1cf291a2e76b0026a94", + "_tpl": "5926bb2186f7744b1c6c6e60", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 7, + "y": 6, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a8d", + "_tpl": "5d2f213448f0355009199284", + "parentId": "6613e1cf291a2e76b0026a94", + "slotId": "mod_magazine" + }, { + "_id": "6613e1cf291a2e76b0026a8c", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026a8d", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613e1cf291a2e76b0026a92", + "_tpl": "5926c0df86f77462f647f764", + "parentId": "6613e1cf291a2e76b0026a94", + "slotId": "mod_reciever" + }, { + "_id": "6613e1cf291a2e76b0026a8e", + "_tpl": "5926c36d86f77467a92a8629", + "parentId": "6613e1cf291a2e76b0026a92", + "slotId": "mod_handguard" + }, { + "_id": "6613e1cf291a2e76b0026a8f", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "6613e1cf291a2e76b0026a92", + "slotId": "mod_sight_rear" + }, { + "_id": "6613e1cf291a2e76b0026a90", + "_tpl": "5926d3c686f77410de68ebc8", + "parentId": "6613e1cf291a2e76b0026a92", + "slotId": "mod_stock" + }, { + "_id": "6613e1cf291a2e76b0026a91", + "_tpl": "5926e16e86f7742f5a0f7ecb", + "parentId": "6613e1cf291a2e76b0026a92", + "slotId": "mod_muzzle" + }, { + "_id": "6613e1cf291a2e76b0026a93", + "_tpl": "5926c32286f774616e42de99", + "parentId": "6613e1cf291a2e76b0026a94", + "slotId": "mod_charge" + }, { + "_id": "6613e1cf291a2e76b0026a9d", + "_tpl": "5926bb2186f7744b1c6c6e60", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 6, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a96", + "_tpl": "5d2f213448f0355009199284", + "parentId": "6613e1cf291a2e76b0026a9d", + "slotId": "mod_magazine" + }, { + "_id": "6613e1cf291a2e76b0026a95", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026a96", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 20 + } + }, { + "_id": "6613e1cf291a2e76b0026a9b", + "_tpl": "5926c0df86f77462f647f764", + "parentId": "6613e1cf291a2e76b0026a9d", + "slotId": "mod_reciever" + }, { + "_id": "6613e1cf291a2e76b0026a97", + "_tpl": "5926c36d86f77467a92a8629", + "parentId": "6613e1cf291a2e76b0026a9b", + "slotId": "mod_handguard" + }, { + "_id": "6613e1cf291a2e76b0026a98", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "6613e1cf291a2e76b0026a9b", + "slotId": "mod_sight_rear" + }, { + "_id": "6613e1cf291a2e76b0026a99", + "_tpl": "5926d3c686f77410de68ebc8", + "parentId": "6613e1cf291a2e76b0026a9b", + "slotId": "mod_stock" + }, { + "_id": "6613e1cf291a2e76b0026a9a", + "_tpl": "5926e16e86f7742f5a0f7ecb", + "parentId": "6613e1cf291a2e76b0026a9b", + "slotId": "mod_muzzle" + }, { + "_id": "6613e1cf291a2e76b0026a9c", + "_tpl": "5926c32286f774616e42de99", + "parentId": "6613e1cf291a2e76b0026a9d", + "slotId": "mod_charge" + }, { + "_id": "6613e1cf291a2e76b0026aa6", + "_tpl": "5cadc190ae921500103bb3b6", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 3, + "y": 3, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026a9f", + "_tpl": "5cadc1c6ae9215000f2775a4", + "parentId": "6613e1cf291a2e76b0026aa6", + "slotId": "mod_barrel" + }, { + "_id": "6613e1cf291a2e76b0026a9e", + "_tpl": "5cadc390ae921500126a77f1", + "parentId": "6613e1cf291a2e76b0026a9f", + "slotId": "mod_muzzle" + }, { + "_id": "6613e1cf291a2e76b0026aa0", + "_tpl": "5cadc431ae921500113bb8d5", + "parentId": "6613e1cf291a2e76b0026aa6", + "slotId": "mod_pistol_grip" + }, { + "_id": "6613e1cf291a2e76b0026aa3", + "_tpl": "5cadc55cae921500103bb3be", + "parentId": "6613e1cf291a2e76b0026aa6", + "slotId": "mod_reciever" + }, { + "_id": "6613e1cf291a2e76b0026aa1", + "_tpl": "5cadd940ae9215051e1c2316", + "parentId": "6613e1cf291a2e76b0026aa3", + "slotId": "mod_sight_rear" + }, { + "_id": "6613e1cf291a2e76b0026aa2", + "_tpl": "5cadd919ae921500126a77f3", + "parentId": "6613e1cf291a2e76b0026aa3", + "slotId": "mod_sight_front" + }, { + "_id": "6613e1cf291a2e76b0026aa5", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "6613e1cf291a2e76b0026aa6", + "slotId": "mod_magazine" + }, { + "_id": "6613e1cf291a2e76b0026aa4", + "_tpl": "64b7bbb74b75259c590fa897", + "parentId": "6613e1cf291a2e76b0026aa5", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 17 + } + }, { + "_id": "6613e1cf291a2e76b0026aaf", + "_tpl": "5e870397991fd70db46995c8", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 16, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026aa8", + "_tpl": "5e87071478f43e51ca2de5e1", + "parentId": "6613e1cf291a2e76b0026aaf", + "slotId": "mod_barrel" + }, { + "_id": "6613e1cf291a2e76b0026aa7", + "_tpl": "5e8708d4ae379e67d22e0102", + "parentId": "6613e1cf291a2e76b0026aa8", + "slotId": "mod_sight_front" + }, { + "_id": "6613e1cf291a2e76b0026aa9", + "_tpl": "5e87076ce2db31558c75a11d", + "parentId": "6613e1cf291a2e76b0026aaf", + "slotId": "mod_handguard" + }, { + "_id": "6613e1cf291a2e76b0026aab", + "_tpl": "5e87080c81c4ed43e83cefda", + "parentId": "6613e1cf291a2e76b0026aaf", + "slotId": "mod_magazine" + }, { + "_id": "6613e1cf291a2e76b0026aaa", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "6613e1cf291a2e76b0026aab", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 8 + } + }, { + "_id": "6613e1cf291a2e76b0026aac", + "_tpl": "5e87116b81c4ed43e83cefdd", + "parentId": "6613e1cf291a2e76b0026aaf", + "slotId": "mod_stock" + }, { + "_id": "6613e1cf291a2e76b0026aad", + "_tpl": "5e87114fe2db31558c75a120", + "parentId": "6613e1cf291a2e76b0026aaf", + "slotId": "mod_mount" + }, { + "_id": "6613e1cf291a2e76b0026aae", + "_tpl": "560d5e524bdc2d25448b4571", + "parentId": "6613e1cf291a2e76b0026aaf", + "slotId": "patron_in_weapon" + }, { + "_id": "6613e1cf291a2e76b0026ab4", + "_tpl": "5bfea6e90db834001b7347f3", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 18, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026ab1", + "_tpl": "5bfeaa0f0db834001b734927", + "parentId": "6613e1cf291a2e76b0026ab4", + "slotId": "mod_magazine" + }, { + "_id": "6613e1cf291a2e76b0026ab0", + "_tpl": "58dd3ad986f77403051cba8f", + "parentId": "6613e1cf291a2e76b0026ab1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 10 + } + }, { + "_id": "6613e1cf291a2e76b0026ab2", + "_tpl": "5bfeb32b0db834001a6694d9", + "parentId": "6613e1cf291a2e76b0026ab4", + "slotId": "mod_stock" + }, { + "_id": "6613e1cf291a2e76b0026ab3", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "6613e1cf291a2e76b0026ab4", + "slotId": "mod_barrel" + }, { + "_id": "6613e1cf291a2e76b0026abd", + "_tpl": "5c488a752e221602b412af63", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 5, + "y": 27, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026ab5", + "_tpl": "5c48a2c22e221602b313fb6c", + "parentId": "6613e1cf291a2e76b0026abd", + "slotId": "mod_pistol_grip" + }, { + "_id": "6613e1cf291a2e76b0026ab7", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6613e1cf291a2e76b0026abd", + "slotId": "mod_magazine" + }, { + "_id": "6613e1cf291a2e76b0026ab6", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b0026ab7", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613e1cf291a2e76b0026ab9", + "_tpl": "5c48a14f2e2216152006edd7", + "parentId": "6613e1cf291a2e76b0026abd", + "slotId": "mod_handguard" + }, { + "_id": "6613e1cf291a2e76b0026ab8", + "_tpl": "5c18b90d2e2216152142466b", + "parentId": "6613e1cf291a2e76b0026ab9", + "slotId": "mod_sight_front" + }, { + "_id": "6613e1cf291a2e76b0026abb", + "_tpl": "5c48a2852e221602b21d5923", + "parentId": "6613e1cf291a2e76b0026abd", + "slotId": "mod_barrel" + }, { + "_id": "6613e1cf291a2e76b0026aba", + "_tpl": "5c48a2a42e221602b66d1e07", + "parentId": "6613e1cf291a2e76b0026abb", + "slotId": "mod_muzzle" + }, { + "_id": "6613e1cf291a2e76b0026abc", + "_tpl": "5c18b9192e2216398b5a8104", + "parentId": "6613e1cf291a2e76b0026abd", + "slotId": "mod_sight_rear" + }, { + "_id": "6613e1cf291a2e76b0026acb", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "parentId": "6613e1cf291a2e76b0026acc", + "slotId": "hideout", + "location": { + "x": 0, + "y": 14, + "r": 0, + "isSearched": true + } + }, { + "_id": "6613e1cf291a2e76b0026abe", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "6613e1cf291a2e76b0026acb", + "slotId": "mod_pistol_grip" + }, { + "_id": "6613e1cf291a2e76b0026ac0", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6613e1cf291a2e76b0026acb", + "slotId": "mod_magazine" + }, { + "_id": "6613e1cf291a2e76b0026abf", + "_tpl": "54527a984bdc2d4e668b4567", + "parentId": "6613e1cf291a2e76b0026ac0", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, { + "_id": "6613e1cf291a2e76b0026ac7", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "6613e1cf291a2e76b0026acb", + "slotId": "mod_reciever" + }, { + "_id": "6613e1cf291a2e76b0026ac3", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "6613e1cf291a2e76b0026ac7", + "slotId": "mod_barrel" + }, { + "_id": "6613e1cf291a2e76b0026ac1", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "6613e1cf291a2e76b0026ac3", + "slotId": "mod_muzzle" + }, { + "_id": "6613e1cf291a2e76b0026ac2", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "6613e1cf291a2e76b0026ac3", + "slotId": "mod_gas_block" + }, { + "_id": "6613e1cf291a2e76b0026ac5", + "_tpl": "5ae30db85acfc408fb139a05", + "parentId": "6613e1cf291a2e76b0026ac7", + "slotId": "mod_handguard" + }, { + "_id": "6613e1cf291a2e76b0026ac4", + "_tpl": "637f57a68d137b27f70c4968", + "parentId": "6613e1cf291a2e76b0026ac5", + "slotId": "mod_handguard" + }, { + "_id": "6613e1cf291a2e76b0026ac6", + "_tpl": "5ae30bad5acfc400185c2dc4", + "parentId": "6613e1cf291a2e76b0026ac7", + "slotId": "mod_sight_rear" + }, { + "_id": "6613e1cf291a2e76b0026ac9", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6613e1cf291a2e76b0026acb", + "slotId": "mod_stock" + }, { + "_id": "6613e1cf291a2e76b0026ac8", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "6613e1cf291a2e76b0026ac9", + "slotId": "mod_stock_000" + }, { + "_id": "6613e1cf291a2e76b0026aca", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "6613e1cf291a2e76b0026acb", + "slotId": "mod_charge" + }, { + "_id": "6613e1cf291a2e76b0026acf", + "_tpl": "602543c13fee350cd564d032" + }, { + "_id": "6613e1cf291a2e76b0026ace", + "_tpl": "5963866b86f7747bfa1c4462" + }, { + "_id": "6613e1cf291a2e76b0026acd", + "_tpl": "5963866286f7747bf429b572" + } + ], + "questRaidItems": "6613e1cf291a2e76b0026acd", + "questStashItems": "6613e1cf291a2e76b0026ace", + "sortingTable": "6613e1cf291a2e76b0026acf", + "stash": "6613e1cf291a2e76b0026acc" }, "Notes": { "Notes": [] From 2404e7a5ab5725bbadd69dcae10ba3385e1c6ceb Mon Sep 17 00:00:00 2001 From: DrakiaXYZ Date: Mon, 8 Apr 2024 17:39:08 +0000 Subject: [PATCH 015/104] Fix issues with incorrectly configured airdrops (!280) - Don't try to add items to the airdrop if the filtered item list is empty - If we somehow get into `findAndAddRandomPresetToLoot` with an empty list, don't try to output the id of undefined Co-authored-by: DrakiaXYZ <565558+TheDgtl@users.noreply.github.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/280 Co-authored-by: DrakiaXYZ Co-committed-by: DrakiaXYZ --- project/src/generators/LootGenerator.ts | 55 ++++++++++++++++--------- 1 file changed, 35 insertions(+), 20 deletions(-) diff --git a/project/src/generators/LootGenerator.ts b/project/src/generators/LootGenerator.ts index a73a0094..5d5df833 100644 --- a/project/src/generators/LootGenerator.ts +++ b/project/src/generators/LootGenerator.ts @@ -99,12 +99,15 @@ export class LootGenerator && options.itemTypeWhitelist.includes(x[1]._parent) ); - const randomisedItemCount = this.randomUtil.getInt(options.itemCount.min, options.itemCount.max); - for (let index = 0; index < randomisedItemCount; index++) + if (items.length > 0) { - if (!this.findAndAddRandomItemToLoot(items, itemTypeCounts, options, result)) + const randomisedItemCount = this.randomUtil.getInt(options.itemCount.min, options.itemCount.max); + for (let index = 0; index < randomisedItemCount; index++) { - index--; + if (!this.findAndAddRandomItemToLoot(items, itemTypeCounts, options, result)) + { + index--; + } } } @@ -122,13 +125,21 @@ export class LootGenerator this.itemHelper.isOfBaseclass(preset._encyclopedia, BaseClasses.WEAPON) ); - for (let index = 0; index < randomisedWeaponPresetCount; index++) + if (weaponDefaultPresets.length > 0) { - if ( - !this.findAndAddRandomPresetToLoot(weaponDefaultPresets, itemTypeCounts, itemBlacklistArray, result) - ) + for (let index = 0; index < randomisedWeaponPresetCount; index++) { - index--; + if ( + !this.findAndAddRandomPresetToLoot( + weaponDefaultPresets, + itemTypeCounts, + itemBlacklistArray, + result, + ) + ) + { + index--; + } } } } @@ -146,18 +157,22 @@ export class LootGenerator const levelFilteredArmorPresets = armorDefaultPresets.filter((armor) => this.armorIsDesiredProtectionLevel(armor, options) ); - for (let index = 0; index < randomisedArmorPresetCount; index++) + + if (levelFilteredArmorPresets.length > 0) { - if ( - !this.findAndAddRandomPresetToLoot( - levelFilteredArmorPresets, - itemTypeCounts, - itemBlacklistArray, - result, - ) - ) + for (let index = 0; index < randomisedArmorPresetCount; index++) { - index--; + if ( + !this.findAndAddRandomPresetToLoot( + levelFilteredArmorPresets, + itemTypeCounts, + itemBlacklistArray, + result, + ) + ) + { + index--; + } } } } @@ -307,7 +322,7 @@ export class LootGenerator const randomPreset = this.randomUtil.getArrayValue(globalDefaultPresets); if (!randomPreset?._encyclopedia) { - this.logger.debug(`Airdrop - preset with id: ${randomPreset._id} lacks encyclopedia property, skipping`); + this.logger.debug(`Airdrop - preset with id: ${randomPreset?._id} lacks encyclopedia property, skipping`); return false; } From 8e91842d4c1bf37a40f7af8c29cdcf1de79d6d8f Mon Sep 17 00:00:00 2001 From: DrakiaXYZ Date: Mon, 8 Apr 2024 17:40:04 +0000 Subject: [PATCH 016/104] Resolve ItemBaseClassService cache error when iterating all items (!281) The ItemBaseClassCache is only generated for items with a _type of 'Items', so before trying to look up an item in itemHasBaseClass, make sure the item also has a _type of 'Item' Move `allDbItems` to a class variable since we need it for looking up the _type of the given template Id This shouldn't require any changes to mods Co-authored-by: DrakiaXYZ <565558+TheDgtl@users.noreply.github.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/281 Co-authored-by: DrakiaXYZ Co-committed-by: DrakiaXYZ --- project/src/services/ItemBaseClassService.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/project/src/services/ItemBaseClassService.ts b/project/src/services/ItemBaseClassService.ts index e9ed0493..fc72a69f 100644 --- a/project/src/services/ItemBaseClassService.ts +++ b/project/src/services/ItemBaseClassService.ts @@ -13,6 +13,7 @@ import { LocalisationService } from "@spt-aki/services/LocalisationService"; export class ItemBaseClassService { protected itemBaseClassesCache: Record = {}; + protected items: Record; protected cacheGenerated = false; constructor( @@ -31,15 +32,15 @@ export class ItemBaseClassService // Clear existing cache this.itemBaseClassesCache = {}; - const allDbItems = this.databaseServer.getTables().templates.items; - if (!allDbItems) + this.items = this.databaseServer.getTables().templates.items; + if (!this.items) { this.logger.warning(this.localisationService.getText("baseclass-missing_db_no_cache")); return; } - const filteredDbItems = Object.values(allDbItems).filter((x) => x._type === "Item"); + const filteredDbItems = Object.values(this.items).filter((x) => x._type === "Item"); for (const item of filteredDbItems) { const itemIdToUpdate = item._id; @@ -48,7 +49,7 @@ export class ItemBaseClassService this.itemBaseClassesCache[item._id] = []; } - this.addBaseItems(itemIdToUpdate, item, allDbItems); + this.addBaseItems(itemIdToUpdate, item); } this.cacheGenerated = true; @@ -58,16 +59,15 @@ export class ItemBaseClassService * Helper method, recursivly iterate through items parent items, finding and adding ids to dictionary * @param itemIdToUpdate item tpl to store base ids against in dictionary * @param item item being checked - * @param allDbItems all items in db */ - protected addBaseItems(itemIdToUpdate: string, item: ITemplateItem, allDbItems: Record): void + protected addBaseItems(itemIdToUpdate: string, item: ITemplateItem): void { this.itemBaseClassesCache[itemIdToUpdate].push(item._parent); - const parent = allDbItems[item._parent]; + const parent = this.items[item._parent]; if (parent._parent !== "") { - this.addBaseItems(itemIdToUpdate, parent, allDbItems); + this.addBaseItems(itemIdToUpdate, parent); } } @@ -91,8 +91,8 @@ export class ItemBaseClassService return false; } - // Edge case - this is the 'root' item that all other items inherit from - if (itemTpl === BaseClasses.ITEM) + // Edge case, the cache is only generated for items with `_type === "Item"`, so return false for any other type + if (this.items[itemTpl]?._type !== "Item") { return false; } From 84729cc5dd214ecf7fa003f67bf24efbea117c96 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 8 Apr 2024 19:20:41 +0100 Subject: [PATCH 017/104] Added ammo boxes to fence blacklist --- project/assets/configs/trader.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/project/assets/configs/trader.json b/project/assets/configs/trader.json index a4309d14..69e43269 100644 --- a/project/assets/configs/trader.json +++ b/project/assets/configs/trader.json @@ -342,7 +342,13 @@ "5a341c4086f77401f2541505", "5422acb9af1c889c16000029", "64d0b40fbe2eed70e254e2d4", - "5fc22d7c187fea44d52eda44" + "5fc22d7c187fea44d52eda44", + "65702577cfc010a0f5006a2c", + "65702591c5d7d4cb4d07857c", + "6570240ecfc010a0f50069f2", + "65702606cfc010a0f5006a3e", + "65702640cfc010a0f5006a4d", + "657024011419851aef03e6f4" ], "coopExtractGift": { "sendGift": true, From b0576a31154b6a3e8e001212992514a55a5b0a62 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 8 Apr 2024 19:51:13 +0100 Subject: [PATCH 018/104] Add 100 round PK box to blacklist --- project/assets/configs/trader.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/project/assets/configs/trader.json b/project/assets/configs/trader.json index 69e43269..91a7eb3f 100644 --- a/project/assets/configs/trader.json +++ b/project/assets/configs/trader.json @@ -348,7 +348,8 @@ "6570240ecfc010a0f50069f2", "65702606cfc010a0f5006a3e", "65702640cfc010a0f5006a4d", - "657024011419851aef03e6f4" + "657024011419851aef03e6f4", + "646372518610c40fc20204e8" ], "coopExtractGift": { "sendGift": true, From 64ddca4124fde76c9becf0c76d62acf5c7fa05d4 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 8 Apr 2024 20:01:51 +0100 Subject: [PATCH 019/104] Improved handling of fence assort item refresh. Duplicate stacks should be much less common Stacked items can now be partially reduced instead of all or nothing --- project/assets/configs/trader.json | 2 +- .../spt/fence/ICreateFenceAssortsResult.ts | 9 + project/src/services/FenceService.ts | 169 +++++++++++++----- 3 files changed, 135 insertions(+), 45 deletions(-) create mode 100644 project/src/models/spt/fence/ICreateFenceAssortsResult.ts diff --git a/project/assets/configs/trader.json b/project/assets/configs/trader.json index 91a7eb3f..116cfc0e 100644 --- a/project/assets/configs/trader.json +++ b/project/assets/configs/trader.json @@ -157,7 +157,7 @@ "543be6564bdc2df4348b4568": 0, "5448ecbe4bdc2d60728b4568": 0, "5671435f4bdc2d96058b4569": 0, - "543be5cb4bdc2deb348b4568": 3, + "543be5cb4bdc2deb348b4568": 5, "5448e53e4bdc2d60728b4567": 7 }, "preventDuplicateOffersOfCategory": [ diff --git a/project/src/models/spt/fence/ICreateFenceAssortsResult.ts b/project/src/models/spt/fence/ICreateFenceAssortsResult.ts new file mode 100644 index 00000000..b81fd1cb --- /dev/null +++ b/project/src/models/spt/fence/ICreateFenceAssortsResult.ts @@ -0,0 +1,9 @@ +import { Item } from "@spt-aki/models/eft/common/tables/IItem"; +import { IBarterScheme } from "@spt-aki/models/eft/common/tables/ITrader"; + +export interface ICreateFenceAssortsResult +{ + sptItems: Item[][]; + barter_scheme: Record; + loyal_level_items: Record; +} diff --git a/project/src/services/FenceService.ts b/project/src/services/FenceService.ts index db4f83b7..8ed5cd64 100644 --- a/project/src/services/FenceService.ts +++ b/project/src/services/FenceService.ts @@ -3,16 +3,16 @@ import { inject, injectable } from "tsyringe"; import { HandbookHelper } from "@spt-aki/helpers/HandbookHelper"; import { ItemHelper } from "@spt-aki/helpers/ItemHelper"; import { PresetHelper } from "@spt-aki/helpers/PresetHelper"; -import { MinMax } from "@spt-aki/models/common/MinMax"; import { IFenceLevel } from "@spt-aki/models/eft/common/IGlobals"; import { IPmcData } from "@spt-aki/models/eft/common/IPmcData"; -import { Item, Repairable, Upd } from "@spt-aki/models/eft/common/tables/IItem"; +import { Item, Repairable } from "@spt-aki/models/eft/common/tables/IItem"; import { ITemplateItem } from "@spt-aki/models/eft/common/tables/ITemplateItem"; import { IBarterScheme, ITraderAssort } from "@spt-aki/models/eft/common/tables/ITrader"; import { BaseClasses } from "@spt-aki/models/enums/BaseClasses"; import { ConfigTypes } from "@spt-aki/models/enums/ConfigTypes"; import { Traders } from "@spt-aki/models/enums/Traders"; import { IItemDurabilityCurrentMax, ITraderConfig } from "@spt-aki/models/spt/config/ITraderConfig"; +import { ICreateFenceAssortsResult } from "@spt-aki/models/spt/fence/ICreateFenceAssortsResult"; import { IFenceAssortGenerationValues, IGenerationAssortValues, @@ -234,13 +234,15 @@ export class FenceService // Get count of what item pools need new items (item/weapon/equipment) const itemCountsToReplace = this.getCountOfItemsToGenerate(); - const newItems = this.createFenceAssortSkeleton(); - this.createAssorts(itemCountsToReplace.normal, newItems, 1); - this.fenceAssort.items.push(...newItems.items); + const newItems = this.createAssorts(itemCountsToReplace.normal, 1); - const newDiscountItems = this.createFenceAssortSkeleton(); - this.createAssorts(itemCountsToReplace.discount, newDiscountItems, 2); - this.fenceDiscountAssort.items.push(...newDiscountItems.items); + // Push newly generated assorts into existing data + this.updateFenceAssorts(newItems, this.fenceAssort); + + const newDiscountItems = this.createAssorts(itemCountsToReplace.discount, 2); + + // Push newly generated discount assorts into existing data + this.updateFenceAssorts(newDiscountItems, this.fenceDiscountAssort); // Add new barter items to fence barter scheme for (const barterItemKey in newItems.barter_scheme) @@ -271,6 +273,46 @@ export class FenceService this.incrementPartialRefreshTime(); } + /** + * Handle the process of folding new assorts into existing assorts, when a new assort exists already, increment its StackObjectsCount instead + * @param newFenceAssorts Assorts to fold into existing fence assorts + * @param existingFenceAssorts Current fence assorts new assorts will be added to + */ + protected updateFenceAssorts(newFenceAssorts: ICreateFenceAssortsResult, existingFenceAssorts: ITraderAssort): void + { + for (const itemWithChildren of newFenceAssorts.sptItems) + { + // Find the root item + const newRootItem = itemWithChildren.find((item) => item.slotId === "hideout"); + + // Find a matching root item with same tpl in existing assort + const existingRootItem = existingFenceAssorts.items.find((item) => + item._tpl === newRootItem._tpl && item.slotId === "hideout" + ); + + // Check if same type of item exists + its on list of item types to always stack + if (existingRootItem && this.itemInPreventDupeCategoryList(newRootItem._tpl)) + { + // Guard against a missing stack count + if (!existingRootItem.upd.StackObjectsCount) + { + existingRootItem.upd.StackObjectsCount = 1; + } + + // Merge new items count into existing, dont add new loyalty/barter data as it already exists + existingRootItem.upd.StackObjectsCount += newRootItem.upd.StackObjectsCount; + + continue; + } + + // New assort to be added to existing assorts + existingFenceAssorts.items.push(...itemWithChildren); + existingFenceAssorts.barter_scheme[newRootItem._id] = newFenceAssorts.barter_scheme[newRootItem._id]; + existingFenceAssorts.loyal_level_items[newRootItem._id] = + newFenceAssorts.loyal_level_items[newRootItem._id]; + } + } + /** * Increment fence next refresh timestamp by current timestamp + partialRefreshTimeSeconds from config */ @@ -386,18 +428,26 @@ export class FenceService */ protected removeRandomItemFromAssorts(assort: ITraderAssort, rootItems: Item[]): void { - const rootItemToRemove = this.randomUtil.getArrayValue(rootItems); - - // Clean up any mods if item had them - const itemWithChildren = this.itemHelper.findAndReturnChildrenAsItems(assort.items, rootItemToRemove._id); - for (const itemToDelete of itemWithChildren) - { - // Delete item from assort items array - assort.items.splice(assort.items.indexOf(itemToDelete), 1); + const rootItemToAdjust = this.randomUtil.getArrayValue(rootItems); + const itemCountToRemove = this.randomUtil.getInt(1, rootItemToAdjust.upd.StackObjectsCount); + if (itemCountToRemove > 1 && itemCountToRemove < rootItemToAdjust.upd.StackObjectsCount) + { // More than 1 + less then full stack + // Reduce stack size but keep stack + rootItemToAdjust.upd.StackObjectsCount -= itemCountToRemove; } + else + { + // Remove up item + any mods + const itemWithChildren = this.itemHelper.findAndReturnChildrenAsItems(assort.items, rootItemToAdjust._id); + for (const itemToDelete of itemWithChildren) + { + // Delete item from assort items array + assort.items.splice(assort.items.indexOf(itemToDelete), 1); + } - delete assort.barter_scheme[rootItemToRemove._id]; - delete assort.loyal_level_items[rootItemToRemove._id]; + delete assort.barter_scheme[rootItemToAdjust._id]; + delete assort.loyal_level_items[rootItemToAdjust._id]; + } } /** @@ -437,16 +487,35 @@ export class FenceService this.createInitialFenceAssortGenerationValues(); // Create basic fence assort - const assorts = this.createFenceAssortSkeleton(); - this.createAssorts(this.desiredAssortCounts.normal, assorts, 1); + const assorts = this.createAssorts(this.desiredAssortCounts.normal, 1); + // Store in this.fenceAssort - this.setFenceAssort(assorts); + this.setFenceAssort(this.convertIntoFenceAssort(assorts)); // Create level 2 assorts accessible at rep level 6 - const discountAssorts = this.createFenceAssortSkeleton(); - this.createAssorts(this.desiredAssortCounts.discount, discountAssorts, 2); + const discountAssorts = this.createAssorts(this.desiredAssortCounts.discount, 2); + // Store in this.fenceDiscountAssort - this.setFenceDiscountAssort(discountAssorts); + this.setFenceDiscountAssort(this.convertIntoFenceAssort(discountAssorts)); + } + + /** + * Convert the intermediary assort data generated into format client can process + * @param intermediaryAssorts Generated assorts that will be converted + * @returns ITraderAssort + */ + protected convertIntoFenceAssort(intermediaryAssorts: ICreateFenceAssortsResult): ITraderAssort + { + const result = this.createFenceAssortSkeleton(); + for (const itemWithChilden of intermediaryAssorts.sptItems) + { + result.items.push(...itemWithChilden); + } + + result.barter_scheme = intermediaryAssorts.barter_scheme; + result.loyal_level_items = intermediaryAssorts.loyal_level_items; + + return result; } /** @@ -506,14 +575,22 @@ export class FenceService * @param assortCount Number of assorts to generate * @param assorts object to add created assorts to */ - protected createAssorts(itemCounts: IGenerationAssortValues, assorts: ITraderAssort, loyaltyLevel: number): void + protected createAssorts(itemCounts: IGenerationAssortValues, loyaltyLevel: number): ICreateFenceAssortsResult { + const result: ICreateFenceAssortsResult = { sptItems: [], barter_scheme: {}, loyal_level_items: {} }; + const baseFenceAssortClone = this.jsonUtil.clone(this.databaseServer.getTables().traders[Traders.FENCE].assort); const itemTypeLimitCounts = this.initItemLimitCounter(this.traderConfig.fence.itemTypeLimits); if (itemCounts.item > 0) { - this.addItemAssorts(itemCounts.item, assorts, baseFenceAssortClone, itemTypeLimitCounts, loyaltyLevel); + const itemResult = this.addItemAssorts( + itemCounts.item, + result, + baseFenceAssortClone, + itemTypeLimitCounts, + loyaltyLevel, + ); } if (itemCounts.weaponPreset > 0 || itemCounts.equipmentPreset > 0) @@ -522,11 +599,13 @@ export class FenceService this.addPresetsToAssort( itemCounts.weaponPreset, itemCounts.equipmentPreset, - assorts, + result, baseFenceAssortClone, loyaltyLevel, ); } + + return result; } /** @@ -539,15 +618,15 @@ export class FenceService */ protected addItemAssorts( assortCount: number, - assorts: ITraderAssort, + assorts: ICreateFenceAssortsResult, baseFenceAssortClone: ITraderAssort, itemTypeLimits: Record, loyaltyLevel: number, ): void { const priceLimits = this.traderConfig.fence.itemCategoryRoublePriceLimit; - const assortRootItems = baseFenceAssortClone.items.filter((x) => - x.parentId === "hideout" && !x.upd?.sptPresetId + const assortRootItems = baseFenceAssortClone.items.filter((item) => + item.parentId === "hideout" && !item.upd?.sptPresetId ); for (let i = 0; i < assortCount; i++) @@ -614,7 +693,7 @@ export class FenceService } // Skip items already in the assort if it exists in the prevent duplicate list - const existingItemThatMatches = this.getMatchingItem(rootItemBeingAdded, itemDbDetails, assorts.items); + const existingItemThatMatches = this.getMatchingItem(rootItemBeingAdded, itemDbDetails, assorts.sptItems); const shouldBeStacked = this.itemShouldBeForceStacked(existingItemThatMatches, itemDbDetails); if (shouldBeStacked && existingItemThatMatches) { // Decrement loop counter so another items gets added @@ -630,7 +709,7 @@ export class FenceService this.randomiseArmorModDurability(desiredAssortItemAndChildrenClone, itemDbDetails); } - assorts.items.push(...desiredAssortItemAndChildrenClone); + assorts.sptItems.push(desiredAssortItemAndChildrenClone); assorts.barter_scheme[rootItemBeingAdded._id] = this.jsonUtil.clone( baseFenceAssortClone.barter_scheme[chosenBaseAssortRoot._id], @@ -651,15 +730,15 @@ export class FenceService * e.g. salewa hp resource units left * @param rootItemBeingAdded item to look for a match against * @param itemDbDetails Db details of matching item - * @param fenceItemAssorts Items to search through + * @param itemsWithChildren Items to search through * @returns Matching assort item */ - protected getMatchingItem(rootItemBeingAdded: Item, itemDbDetails: ITemplateItem, fenceItemAssorts: Item[]): Item + protected getMatchingItem(rootItemBeingAdded: Item, itemDbDetails: ITemplateItem, itemsWithChildren: Item[][]): Item { // Get matching root items - const matchingItems = fenceItemAssorts.filter((item) => - item._tpl === rootItemBeingAdded._tpl && item.parentId === "hideout" - ); + const matchingItems = itemsWithChildren.filter((itemWithChildren) => + itemWithChildren.find((item) => item._tpl === rootItemBeingAdded._tpl && item.parentId === "hideout") + ).flatMap((x) => x); if (matchingItems.length === 0) { // Nothing matches by tpl and is root item, exit early @@ -726,11 +805,13 @@ export class FenceService return false; } + return this.itemInPreventDupeCategoryList(itemDbDetails._id); + } + + protected itemInPreventDupeCategoryList(tpl: string): boolean + { // Item type in config list - return this.itemHelper.isOfBaseclasses( - itemDbDetails._id, - this.traderConfig.fence.preventDuplicateOffersOfCategory, - ); + return this.itemHelper.isOfBaseclasses(tpl, this.traderConfig.fence.preventDuplicateOffersOfCategory); } /** @@ -799,7 +880,7 @@ export class FenceService protected addPresetsToAssort( desiredWeaponPresetsCount: number, desiredEquipmentPresetsCount: number, - assorts: ITraderAssort, + assorts: ICreateFenceAssortsResult, baseFenceAssort: ITraderAssort, loyaltyLevel: number, ): void @@ -848,7 +929,7 @@ export class FenceService // Remapping IDs causes parentid to be altered presetWithChildrenClone[0].parentId = "hideout"; - assorts.items.push(...presetWithChildrenClone); + assorts.sptItems.push(presetWithChildrenClone); // Set assort price // Must be careful to use correct id as the item has had its IDs regenerated @@ -908,7 +989,7 @@ export class FenceService // Remapping IDs causes parentid to be altered presetWithChildrenClone[0].parentId = "hideout"; - assorts.items.push(...presetWithChildrenClone); + assorts.sptItems.push(presetWithChildrenClone); // Set assort price // Must be careful to use correct id as the item has had its IDs regenerated From db6ef9bddbe41a0eb4e852ec5162ad935e62321c Mon Sep 17 00:00:00 2001 From: DrakiaXYZ Date: Tue, 9 Apr 2024 07:48:18 +0000 Subject: [PATCH 020/104] Fix bitcoin production time being incorrect (!284) - Don't apply crafting skill cooldown reduction to bitcoin farm - Adjust profile bitcoin production time on login to be the correct production time (takes into account dev profile) Co-authored-by: DrakiaXYZ <565558+TheDgtl@users.noreply.github.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/284 Co-authored-by: DrakiaXYZ Co-committed-by: DrakiaXYZ --- project/src/controllers/GameController.ts | 1 + project/src/helpers/HideoutHelper.ts | 22 +++++++++++++-------- project/src/services/ProfileFixerService.ts | 15 ++++++++++++++ 3 files changed, 30 insertions(+), 8 deletions(-) diff --git a/project/src/controllers/GameController.ts b/project/src/controllers/GameController.ts index cb8439e1..f32fed06 100644 --- a/project/src/controllers/GameController.ts +++ b/project/src/controllers/GameController.ts @@ -203,6 +203,7 @@ export class GameController this.hideoutHelper.setHideoutImprovementsToCompleted(pmcProfile); this.hideoutHelper.unlockHideoutWallInProfile(pmcProfile); this.profileFixerService.addMissingIdsToBonuses(pmcProfile); + this.profileFixerService.fixBitcoinProductionTime(pmcProfile); } this.logProfileDetails(fullProfile); diff --git a/project/src/helpers/HideoutHelper.ts b/project/src/helpers/HideoutHelper.ts index 7793db80..bbd98544 100644 --- a/project/src/helpers/HideoutHelper.ts +++ b/project/src/helpers/HideoutHelper.ts @@ -595,7 +595,7 @@ export class HideoutHelper * @param applyHideoutManagementBonus should the hideout mgmt bonus be appled to the calculation * @returns Items craft time with bonuses subtracted */ - protected getAdjustedCraftTimeWithSkills( + public getAdjustedCraftTimeWithSkills( pmcData: IPmcData, recipeId: string, applyHideoutManagementBonus = false, @@ -613,13 +613,19 @@ export class HideoutHelper return undefined; } - // Seconds to deduct from crafts total time - let timeReductionSeconds = this.getSkillProductionTimeReduction( - pmcData, - recipe.productionTime, - SkillTypes.CRAFTING, - globalSkillsDb.Crafting.ProductionTimeReductionPerLevel, - ); + let timeReductionSeconds = 0; + + // Bitcoin farm is excluded from crafting skill cooldown reduction + if (recipeId !== HideoutHelper.bitcoinFarm) + { + // Seconds to deduct from crafts total time + timeReductionSeconds += this.getSkillProductionTimeReduction( + pmcData, + recipe.productionTime, + SkillTypes.CRAFTING, + globalSkillsDb.Crafting.ProductionTimeReductionPerLevel, + ); + } // Some crafts take into account hideout management, e.g. fuel, water/air filters if (applyHideoutManagementBonus) diff --git a/project/src/services/ProfileFixerService.ts b/project/src/services/ProfileFixerService.ts index 6824fd41..852626d3 100644 --- a/project/src/services/ProfileFixerService.ts +++ b/project/src/services/ProfileFixerService.ts @@ -1311,6 +1311,21 @@ export class ProfileFixerService } } + /** + * 3.8.0 utilized the wrong ProductionTime for bitcoin, fix it if it's found + */ + public fixBitcoinProductionTime(pmcProfile: IPmcData): void + { + const btcProd = pmcProfile.Hideout?.Production[HideoutHelper.bitcoinFarm]; + if (btcProd) + { + btcProd.ProductionTime = this.hideoutHelper.getAdjustedCraftTimeWithSkills( + pmcProfile, + HideoutHelper.bitcoinProductionId, + ); + } + } + /** * At some point the property name was changed,migrate data across to new name * @param pmcProfile Profile to migrate improvements in From c5ca3464660d835e438a1a726f4cfcdfa3ee421d Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 9 Apr 2024 09:13:51 +0100 Subject: [PATCH 021/104] Limit `Sanitar` to 1 `Keycard with a blue marking` item --- project/assets/configs/bot.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/project/assets/configs/bot.json b/project/assets/configs/bot.json index e70d2471..bb7136c8 100644 --- a/project/assets/configs/bot.json +++ b/project/assets/configs/bot.json @@ -324,7 +324,9 @@ "5d08d21286f774736e7c94c3": 1, "5c94bbff86f7747ee735c08f": 1 }, - "bosssanitar": {}, + "bosssanitar": { + "5efde6b4f5448336730dbd61": 1 + }, "bosstagilla": {}, "bossknight": {}, "bosszryachiy": {}, From 46d48c7531bc7f2d9443ea587f37bf08a2c54f49 Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 9 Apr 2024 10:29:12 +0100 Subject: [PATCH 022/104] Added system to filter out ammos from fence by its penetration value Removed redundant hard-coded ammos from blacklist --- project/assets/configs/trader.json | 7 +-- .../generators/FenceBaseAssortGenerator.ts | 48 ++++++++++++++++++- .../src/models/spt/config/ITraderConfig.ts | 2 + 3 files changed, 50 insertions(+), 7 deletions(-) diff --git a/project/assets/configs/trader.json b/project/assets/configs/trader.json index 116cfc0e..7a2e57ec 100644 --- a/project/assets/configs/trader.json +++ b/project/assets/configs/trader.json @@ -319,6 +319,7 @@ "left_side_plate": 75, "right_side_plate": 75 }, + "ammoMaxPenLimit": 20, "blacklistSeasonalItems": true, "blacklist": [ "5c164d2286f774194c5e69fa", @@ -343,12 +344,6 @@ "5422acb9af1c889c16000029", "64d0b40fbe2eed70e254e2d4", "5fc22d7c187fea44d52eda44", - "65702577cfc010a0f5006a2c", - "65702591c5d7d4cb4d07857c", - "6570240ecfc010a0f50069f2", - "65702606cfc010a0f5006a3e", - "65702640cfc010a0f5006a4d", - "657024011419851aef03e6f4", "646372518610c40fc20204e8" ], "coopExtractGift": { diff --git a/project/src/generators/FenceBaseAssortGenerator.ts b/project/src/generators/FenceBaseAssortGenerator.ts index 1ad5fb76..fdf186ba 100644 --- a/project/src/generators/FenceBaseAssortGenerator.ts +++ b/project/src/generators/FenceBaseAssortGenerator.ts @@ -74,7 +74,7 @@ export class FenceBaseAssortGenerator } } - // Only allow rigs with no slots (carrier rigs) + // Only allow rigs with no slots (carrier rigs) if (this.itemHelper.isOfBaseclass(rootItemDb._id, BaseClasses.VEST) && rootItemDb._props.Slots.length > 0) { continue; @@ -95,6 +95,15 @@ export class FenceBaseAssortGenerator upd: { StackObjectsCount: 9999999 }, }]; + // Ensure ammo is not above penetration limit value + if (this.itemHelper.isOfBaseclasses(rootItemDb._id, [BaseClasses.AMMO_BOX, BaseClasses.AMMO])) + { + if (this.isAmmoAbovePenetrationLimit(rootItemDb)) + { + continue; + } + } + if (this.itemHelper.isOfBaseclass(rootItemDb._id, BaseClasses.AMMO_BOX)) { this.itemHelper.addCartridgesToAmmoBox(itemWithChildrenToAdd, rootItemDb); @@ -175,6 +184,43 @@ export class FenceBaseAssortGenerator } } + /** + * Check ammo in boxes + loose ammos has a penetration value above the configured value in trader.json / ammoMaxPenLimit + * @param rootItemDb Item to check penetration value of + * @returns True if penetration value is above limit set in config + */ + protected isAmmoAbovePenetrationLimit(rootItemDb: ITemplateItem): boolean + { + if (this.itemHelper.isOfBaseclass(rootItemDb._id, BaseClasses.AMMO_BOX)) + { + // Get ammo inside box + const ammoTplInBox = rootItemDb._props.StackSlots[0]._props.filters[0].Filter[0]; + const ammoItemDb = this.itemHelper.getItem(ammoTplInBox); + if (!ammoItemDb[0]) + { + this.logger.warning(`Ammo: ${ammoTplInBox} not an item, skipping`); + + return true; + } + + // Check if above limit + if (ammoItemDb[1]._props.PenetrationPower > this.traderConfig.fence.ammoMaxPenLimit) + { + return true; + } + } + else if (this.itemHelper.isOfBaseclass(rootItemDb._id, BaseClasses.AMMO)) + { + // Just a normal ammo, check if above limit + if (rootItemDb._props.PenetrationPower > this.traderConfig.fence.ammoMaxPenLimit) + { + return true; + } + } + + return false; + } + protected getItemPrice(itemTpl: string, items: Item[]): number { return this.itemHelper.isOfBaseclass(itemTpl, BaseClasses.AMMO_BOX) diff --git a/project/src/models/spt/config/ITraderConfig.ts b/project/src/models/spt/config/ITraderConfig.ts index 1e972fbe..a4e98cb2 100644 --- a/project/src/models/spt/config/ITraderConfig.ts +++ b/project/src/models/spt/config/ITraderConfig.ts @@ -46,6 +46,8 @@ export interface FenceConfig presetSlotsToRemoveChancePercent: Record; /** Block seasonal items from appearing when season is inactive */ blacklistSeasonalItems: boolean; + /** Max pen value allowed to be listed on flea - affects ammo + ammo boxes */ + ammoMaxPenLimit: number; blacklist: string[]; coopExtractGift: CoopExtractReward; btrDeliveryExpireHours: number; From 9cae27c37e8c1de0ca89f6dffb5a62a0fe586234 Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 9 Apr 2024 10:39:01 +0100 Subject: [PATCH 023/104] Refactor of `isAmmoAbovePenetrationLimit()` to separate concerns --- .../generators/FenceBaseAssortGenerator.ts | 42 ++++++++++++------- 1 file changed, 26 insertions(+), 16 deletions(-) diff --git a/project/src/generators/FenceBaseAssortGenerator.ts b/project/src/generators/FenceBaseAssortGenerator.ts index fdf186ba..be6ac7a2 100644 --- a/project/src/generators/FenceBaseAssortGenerator.ts +++ b/project/src/generators/FenceBaseAssortGenerator.ts @@ -186,39 +186,49 @@ export class FenceBaseAssortGenerator /** * Check ammo in boxes + loose ammos has a penetration value above the configured value in trader.json / ammoMaxPenLimit - * @param rootItemDb Item to check penetration value of + * @param rootItemDb Ammo box or ammo item from items.db * @returns True if penetration value is above limit set in config */ protected isAmmoAbovePenetrationLimit(rootItemDb: ITemplateItem): boolean + { + const ammoPenetrationPower = this.getAmmoPenetrationPower(rootItemDb); + if (ammoPenetrationPower === null) + { + this.logger.warning(`Ammo: ${rootItemDb._id} has no penetration value, skipping`); + return false; + } + + return ammoPenetrationPower > this.traderConfig.fence.ammoMaxPenLimit; + } + + /** + * Get the penetration power value of an ammo, works with ammo boxes and raw ammos + * @param rootItemDb Ammo box or ammo item from items.db + * @returns Penetration power of passed in item, null if it doesnt have a power + */ + protected getAmmoPenetrationPower(rootItemDb: ITemplateItem): number { if (this.itemHelper.isOfBaseclass(rootItemDb._id, BaseClasses.AMMO_BOX)) { - // Get ammo inside box const ammoTplInBox = rootItemDb._props.StackSlots[0]._props.filters[0].Filter[0]; const ammoItemDb = this.itemHelper.getItem(ammoTplInBox); if (!ammoItemDb[0]) { this.logger.warning(`Ammo: ${ammoTplInBox} not an item, skipping`); - - return true; + return null; } - // Check if above limit - if (ammoItemDb[1]._props.PenetrationPower > this.traderConfig.fence.ammoMaxPenLimit) - { - return true; - } + return ammoItemDb[1]._props.PenetrationPower; } - else if (this.itemHelper.isOfBaseclass(rootItemDb._id, BaseClasses.AMMO)) + + // Plain old ammo, get its pen property + if (this.itemHelper.isOfBaseclass(rootItemDb._id, BaseClasses.AMMO)) { - // Just a normal ammo, check if above limit - if (rootItemDb._props.PenetrationPower > this.traderConfig.fence.ammoMaxPenLimit) - { - return true; - } + return rootItemDb._props.PenetrationPower; } - return false; + // Not an ammobox or ammo + return null; } protected getItemPrice(itemTpl: string, items: Item[]): number From 30dbc85c143f0a6cbf9d99944ecebc3189ae2f97 Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 9 Apr 2024 12:58:26 +0100 Subject: [PATCH 024/104] Added dev balaclava to reward item blacklist --- project/assets/configs/item.json | 1 + 1 file changed, 1 insertion(+) diff --git a/project/assets/configs/item.json b/project/assets/configs/item.json index 40845135..584aa85a 100644 --- a/project/assets/configs/item.json +++ b/project/assets/configs/item.json @@ -50,6 +50,7 @@ "5580239d4bdc2de7118b4583" ], "rewardItemBlacklist": [ + "58ac60eb86f77401897560ff", "5e997f0b86f7741ac73993e2", "5b44abe986f774283e2e3512", "5e99711486f7744bfc4af328", From 8342edf55fcd30a4b9b1f94cee64d338f071f579 Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 9 Apr 2024 20:50:12 +0100 Subject: [PATCH 025/104] Added 1x golden chain item limit to bloodhounds --- project/assets/configs/bot.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/project/assets/configs/bot.json b/project/assets/configs/bot.json index bb7136c8..b7e78f0c 100644 --- a/project/assets/configs/bot.json +++ b/project/assets/configs/bot.json @@ -389,8 +389,12 @@ "pmcbot": { "60098ad7c2240c0fe85c570a": 2 }, - "arenafighterevent": {}, - "arenafighter": {}, + "arenafighterevent": { + "5734758f24597738025ee253": 1 + }, + "arenafighter": { + "5734758f24597738025ee253": 1 + }, "crazyassaultevent": {}, "assaultgroup": {}, "gifter": {}, From 834a2e3ef58e7e2878666be2e51c272f800425d0 Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 09:48:28 +0000 Subject: [PATCH 026/104] Expanded give command logic (!283) This change was originally made in master branch, between the time v3.7.6 and v3.8.0 were released. Due to the way that v3.8.0 was merged into master, and the fact that this change was never merged into v3.8.0, it had to be cherry-picked and have some conflicts resolved. I gave it my best and I would love some help testing it before it's merged for v3.8.1. Conflicts: - project/package.json - project/src/helpers/Dialogue/Commando/SptCommands/GiveSptCommand.ts Resolved by Refringe Original PR: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/182 Original Commit: 9846adc68b39924c59bb35273deb88426bac4618 Original Message: - Added give by name - Refactored Commando so its abstracted, that way modders can use it too! :) Co-authored-by: clodan Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/182 Co-authored-by: Alex Co-committed-by: Alex Co-authored-by: Alex Co-authored-by: chomp Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/283 Co-authored-by: Refringe Co-committed-by: Refringe --- project/package.json | 1 + project/src/di/Container.ts | 2 +- .../Dialogue/AbstractDialogueChatBot.ts | 75 +++++++ .../{ICommandoCommand.ts => IChatCommand.ts} | 7 +- .../Dialogue/Commando/SptCommandoCommands.ts | 6 +- .../Commando/SptCommands/GiveSptCommand.ts | 195 ++++++++++++++---- .../Commando/SptCommands/SavedCommand.ts | 6 + .../Dialogue/CommandoDialogueChatBot.ts | 58 +----- 8 files changed, 259 insertions(+), 91 deletions(-) create mode 100644 project/src/helpers/Dialogue/AbstractDialogueChatBot.ts rename project/src/helpers/Dialogue/Commando/{ICommandoCommand.ts => IChatCommand.ts} (66%) create mode 100644 project/src/helpers/Dialogue/Commando/SptCommands/SavedCommand.ts diff --git a/project/package.json b/project/package.json index eaeae684..30963880 100644 --- a/project/package.json +++ b/project/package.json @@ -33,6 +33,7 @@ "dependencies": { "atomically": "~1.7", "buffer-crc32": "^1.0.0", + "closest-match": "~1.3", "date-fns": "~2.30", "date-fns-tz": "~2.0", "i18n": "~0.15", diff --git a/project/src/di/Container.ts b/project/src/di/Container.ts index 30ab1fb1..f9012381 100644 --- a/project/src/di/Container.ts +++ b/project/src/di/Container.ts @@ -596,7 +596,7 @@ export class Container lifecycle: Lifecycle.Singleton, }); // SptCommands - depContainer.register("GiveSptCommand", GiveSptCommand); + depContainer.register("GiveSptCommand", GiveSptCommand, { lifecycle: Lifecycle.Singleton }); } private static registerLoaders(depContainer: DependencyContainer): void diff --git a/project/src/helpers/Dialogue/AbstractDialogueChatBot.ts b/project/src/helpers/Dialogue/AbstractDialogueChatBot.ts new file mode 100644 index 00000000..ed387b97 --- /dev/null +++ b/project/src/helpers/Dialogue/AbstractDialogueChatBot.ts @@ -0,0 +1,75 @@ +import { IChatCommand, ICommandoCommand } from "@spt-aki/helpers/Dialogue/Commando/IChatCommand"; +import { IDialogueChatBot } from "@spt-aki/helpers/Dialogue/IDialogueChatBot"; +import { ISendMessageRequest } from "@spt-aki/models/eft/dialog/ISendMessageRequest"; +import { IUserDialogInfo } from "@spt-aki/models/eft/profile/IAkiProfile"; +import { ILogger } from "@spt-aki/models/spt/utils/ILogger"; +import { MailSendService } from "@spt-aki/services/MailSendService"; + +export abstract class AbstractDialogueChatBot implements IDialogueChatBot +{ + public constructor( + protected logger: ILogger, + protected mailSendService: MailSendService, + protected chatCommands: IChatCommand[] | ICommandoCommand[], + ) + { + } + + /** + * @deprecated As of v3.7.6. Use registerChatCommand. + */ + // TODO: v3.9.0 - Remove registerCommandoCommand method. + public registerCommandoCommand(chatCommand: IChatCommand | ICommandoCommand): void + { + this.registerChatCommand(chatCommand); + } + + public registerChatCommand(chatCommand: IChatCommand | ICommandoCommand): void + { + if (this.chatCommands.some((cc) => cc.getCommandPrefix() === chatCommand.getCommandPrefix())) + { + throw new Error( + `The command "${chatCommand.getCommandPrefix()}" attempting to be registered already exists.`, + ); + } + this.chatCommands.push(chatCommand); + } + + public abstract getChatBot(): IUserDialogInfo; + + protected abstract getUnrecognizedCommandMessage(): string; + + public handleMessage(sessionId: string, request: ISendMessageRequest): string + { + if ((request.text ?? "").length === 0) + { + this.logger.error("Command came in as empty text! Invalid data!"); + return request.dialogId; + } + + const splitCommand = request.text.split(" "); + + const commandos = this.chatCommands.filter((c) => c.getCommandPrefix() === splitCommand[0]); + if (commandos[0]?.getCommands().has(splitCommand[1])) + { + return commandos[0].handle(splitCommand[1], this.getChatBot(), sessionId, request); + } + + if (splitCommand[0].toLowerCase() === "help") + { + const helpMessage = this.chatCommands.map((c) => + `Available commands:\n\n${c.getCommandPrefix()}:\n\n${ + Array.from(c.getCommands()).map((command) => c.getCommandHelp(command)).join("\n") + }` + ).join("\n"); + this.mailSendService.sendUserMessageToPlayer(sessionId, this.getChatBot(), helpMessage); + return request.dialogId; + } + + this.mailSendService.sendUserMessageToPlayer( + sessionId, + this.getChatBot(), + this.getUnrecognizedCommandMessage(), + ); + } +} diff --git a/project/src/helpers/Dialogue/Commando/ICommandoCommand.ts b/project/src/helpers/Dialogue/Commando/IChatCommand.ts similarity index 66% rename from project/src/helpers/Dialogue/Commando/ICommandoCommand.ts rename to project/src/helpers/Dialogue/Commando/IChatCommand.ts index 03083f3b..93a63487 100644 --- a/project/src/helpers/Dialogue/Commando/ICommandoCommand.ts +++ b/project/src/helpers/Dialogue/Commando/IChatCommand.ts @@ -1,7 +1,12 @@ import { ISendMessageRequest } from "@spt-aki/models/eft/dialog/ISendMessageRequest"; import { IUserDialogInfo } from "@spt-aki/models/eft/profile/IAkiProfile"; -export interface ICommandoCommand +/** + * @deprecated As of v3.7.6. Use IChatCommand. Will be removed in v3.9.0. + */ +// TODO: v3.9.0 - Remove ICommandoCommand. +export type ICommandoCommand = IChatCommand; +export interface IChatCommand { getCommandPrefix(): string; getCommandHelp(command: string): string; diff --git a/project/src/helpers/Dialogue/Commando/SptCommandoCommands.ts b/project/src/helpers/Dialogue/Commando/SptCommandoCommands.ts index 82017853..1c2a6f46 100644 --- a/project/src/helpers/Dialogue/Commando/SptCommandoCommands.ts +++ b/project/src/helpers/Dialogue/Commando/SptCommandoCommands.ts @@ -1,4 +1,4 @@ -import { ICommandoCommand } from "@spt-aki/helpers/Dialogue/Commando/ICommandoCommand"; +import { IChatCommand } from "@spt-aki/helpers/Dialogue/Commando/IChatCommand"; import { ISptCommand } from "@spt-aki/helpers/Dialogue/Commando/SptCommands/ISptCommand"; import { ISendMessageRequest } from "@spt-aki/models/eft/dialog/ISendMessageRequest"; import { IUserDialogInfo } from "@spt-aki/models/eft/profile/IAkiProfile"; @@ -8,7 +8,7 @@ import { ConfigServer } from "@spt-aki/servers/ConfigServer"; import { inject, injectAll, injectable } from "tsyringe"; @injectable() -export class SptCommandoCommands implements ICommandoCommand +export class SptCommandoCommands implements IChatCommand { constructor( @inject("ConfigServer") protected configServer: ConfigServer, @@ -31,7 +31,7 @@ export class SptCommandoCommands implements ICommandoCommand { if (this.sptCommands.some((c) => c.getCommand() === command.getCommand())) { - throw new Error(`The command ${command.getCommand()} being registered for SPT Commands already exists!`); + throw new Error(`The command "${command.getCommand()}" attempting to be registered already exists.`); } this.sptCommands.push(command); } diff --git a/project/src/helpers/Dialogue/Commando/SptCommands/GiveSptCommand.ts b/project/src/helpers/Dialogue/Commando/SptCommands/GiveSptCommand.ts index 644c1835..ccab75e2 100644 --- a/project/src/helpers/Dialogue/Commando/SptCommands/GiveSptCommand.ts +++ b/project/src/helpers/Dialogue/Commando/SptCommands/GiveSptCommand.ts @@ -1,4 +1,5 @@ import { ISptCommand } from "@spt-aki/helpers/Dialogue/Commando/SptCommands/ISptCommand"; +import { SavedCommand } from "@spt-aki/helpers/Dialogue/Commando/SptCommands/SavedCommand"; import { ItemHelper } from "@spt-aki/helpers/ItemHelper"; import { PresetHelper } from "@spt-aki/helpers/PresetHelper"; import { Item } from "@spt-aki/models/eft/common/tables/IItem"; @@ -6,14 +7,30 @@ import { ISendMessageRequest } from "@spt-aki/models/eft/dialog/ISendMessageRequ import { IUserDialogInfo } from "@spt-aki/models/eft/profile/IAkiProfile"; import { BaseClasses } from "@spt-aki/models/enums/BaseClasses"; import { ILogger } from "@spt-aki/models/spt/utils/ILogger"; +import { DatabaseServer } from "@spt-aki/servers/DatabaseServer"; +import { LocaleService } from "@spt-aki/services/LocaleService"; import { MailSendService } from "@spt-aki/services/MailSendService"; import { HashUtil } from "@spt-aki/utils/HashUtil"; import { JsonUtil } from "@spt-aki/utils/JsonUtil"; +import { closestMatch, distance } from "closest-match"; import { inject, injectable } from "tsyringe"; @injectable() export class GiveSptCommand implements ISptCommand { + /** + * Regex to account for all these cases: + * spt give "item name" 5 + * spt give templateId 5 + * spt give en "item name in english" 5 + * spt give es "nombre en español" 5 + * spt give 5 <== this is the reply when the algo isn't sure about an item + */ + private static commandRegex = /^spt give (((([a-z]{2,5}) )?"(.+)"|\w+) )?([0-9]+)$/; + private static maxAllowedDistance = 1.5; + + protected savedCommand: SavedCommand; + public constructor( @inject("WinstonLogger") protected logger: ILogger, @inject("ItemHelper") protected itemHelper: ItemHelper, @@ -21,6 +38,8 @@ export class GiveSptCommand implements ISptCommand @inject("JsonUtil") protected jsonUtil: JsonUtil, @inject("PresetHelper") protected presetHelper: PresetHelper, @inject("MailSendService") protected mailSendService: MailSendService, + @inject("LocaleService") protected localeService: LocaleService, + @inject("DatabaseServer") protected databaseServer: DatabaseServer, ) { } @@ -32,49 +51,135 @@ export class GiveSptCommand implements ISptCommand public getCommandHelp(): string { - return "Usage: spt give tplId quantity"; + return "spt give\n========\nSends items to the player through the message system.\n\n\tspt give [template ID] [quantity]\n\t\tEx: spt give 544fb25a4bdc2dfb738b4567 2\n\n\tspt give [\"item name\"] [quantity]\n\t\tEx: spt give \"pack of sugar\" 10\n\n\tspt give [locale] [\"item name\"] [quantity]\n\t\tEx: spt give fr \"figurine de chat\" 3"; } public performAction(commandHandler: IUserDialogInfo, sessionId: string, request: ISendMessageRequest): string { - const giveCommand = request.text.split(" "); - if (giveCommand[1] !== "give") - { - this.logger.error("Invalid action received for give command!"); - return request.dialogId; - } - - if (!giveCommand[2]) + if (!GiveSptCommand.commandRegex.test(request.text)) { this.mailSendService.sendUserMessageToPlayer( sessionId, commandHandler, - "Invalid use of give command! Template ID is missing. Use \"Help\" for more info", + "Invalid use of give command. Use \"help\" for more information.", ); return request.dialogId; } - const tplId = giveCommand[2]; - if (!giveCommand[3]) - { - this.mailSendService.sendUserMessageToPlayer( - sessionId, - commandHandler, - "Invalid use of give command! Quantity is missing. Use \"Help\" for more info", - ); - return request.dialogId; - } - const quantity = giveCommand[3]; + const result = GiveSptCommand.commandRegex.exec(request.text); - if (Number.isNaN(+quantity)) + let item: string; + let quantity: number; + let isItemName: boolean; + let locale: string; + + // This is a reply to a give request previously made pending a reply + if (result[1] === undefined) { - this.mailSendService.sendUserMessageToPlayer( - sessionId, - commandHandler, - "Invalid use of give command! Quantity is not a valid integer. Use \"Help\" for more info", - ); - return request.dialogId; + if (this.savedCommand === undefined) + { + this.mailSendService.sendUserMessageToPlayer( + sessionId, + commandHandler, + "Invalid use of give command. Use \"help\" for more information.", + ); + return request.dialogId; + } + if (+result[6] > this.savedCommand.potentialItemNames.length) + { + this.mailSendService.sendUserMessageToPlayer( + sessionId, + commandHandler, + "Invalid selection. Outside of bounds! Use \"help\" for more information.", + ); + return request.dialogId; + } + item = this.savedCommand.potentialItemNames[+result[6] - 1]; + quantity = this.savedCommand.quantity; + locale = this.savedCommand.locale; + isItemName = true; + this.savedCommand = undefined; } + else + { + // A new give request was entered, we need to ignore the old saved command + this.savedCommand = undefined; + isItemName = result[5] !== undefined; + item = result[5] ? result[5] : result[2]; + quantity = +result[6]; + + if (isItemName) + { + locale = result[4] ? result[4] : this.localeService.getDesiredGameLocale(); + if (!this.localeService.getServerSupportedLocales().includes(locale)) + { + this.mailSendService.sendUserMessageToPlayer( + sessionId, + commandHandler, + `Unknown locale "${locale}". Use \"help\" for more information.`, + ); + return request.dialogId; + } + + const localizedGlobal = this.databaseServer.getTables().locales.global[locale]; + + const closestItemsMatchedByName = closestMatch( + item.toLowerCase(), + this.itemHelper.getItems().filter((i) => i._type !== "Node").map((i) => + localizedGlobal[`${i?._id} Name`]?.toLowerCase() + ).filter((i) => i !== undefined), + true, + ) as string[]; + + if (closestItemsMatchedByName === undefined || closestItemsMatchedByName.length === 0) + { + this.mailSendService.sendUserMessageToPlayer( + sessionId, + commandHandler, + "That item could not be found. Please refine your request and try again.", + ); + return request.dialogId; + } + + if (closestItemsMatchedByName.length > 1) + { + let i = 1; + const slicedItems = closestItemsMatchedByName.slice(0, 10); + // max 10 item names and map them + const itemList = slicedItems.map((itemName) => `${i++}. ${itemName}`).join("\n"); + this.savedCommand = new SavedCommand(quantity, slicedItems, locale); + this.mailSendService.sendUserMessageToPlayer( + sessionId, + commandHandler, + `Could not find exact match. Closest matches are:\n\n${itemList}\n\nUse "spt give [number]" to select one.`, + ); + return request.dialogId; + } + + const dist = distance(item, closestItemsMatchedByName[0]); + if (dist > GiveSptCommand.maxAllowedDistance) + { + this.mailSendService.sendUserMessageToPlayer( + sessionId, + commandHandler, + `Found a possible match for "${item}" but uncertain. Match: "${ + closestItemsMatchedByName[0] + }". Please refine your request and try again.`, + ); + return request.dialogId; + } + // Only one available so we get that entry and use it + item = closestItemsMatchedByName[0]; + } + } + + // If item is an item name, we need to search using that item name and the locale which one we want otherwise + // item is just the tplId. + const tplId = isItemName + ? this.itemHelper.getItems().find((i) => + this.databaseServer.getTables().locales.global[locale][`${i?._id} Name`]?.toLowerCase() === item + )._id + : item; const checkedItem = this.itemHelper.getItem(tplId); if (!checkedItem[0]) @@ -82,21 +187,25 @@ export class GiveSptCommand implements ISptCommand this.mailSendService.sendUserMessageToPlayer( sessionId, commandHandler, - "Invalid template ID requested for give command. The item doesn't exist in the DB.", + "That item could not be found. Please refine your request and try again.", ); return request.dialogId; } const itemsToSend: Item[] = []; - const preset = this.presetHelper.getDefaultPreset(checkedItem[1]._id); - if (preset) + if (this.itemHelper.isOfBaseclass(checkedItem[1]._id, BaseClasses.WEAPON)) { - for (let i = 0; i < +quantity; i++) + const preset = this.presetHelper.getDefaultPreset(checkedItem[1]._id); + if (!preset) { - // Make sure IDs are unique before adding to array - prevent collisions - const presetToSend = this.itemHelper.replaceIDs(preset._items); - itemsToSend.push(...presetToSend); + this.mailSendService.sendUserMessageToPlayer( + sessionId, + commandHandler, + "That weapon template ID could not be found. Please refine your request and try again.", + ); + return request.dialogId; } + itemsToSend.push(...this.jsonUtil.clone(preset._items)); } else if (this.itemHelper.isOfBaseclass(checkedItem[1]._id, BaseClasses.AMMO_BOX)) { @@ -115,13 +224,25 @@ export class GiveSptCommand implements ISptCommand _tpl: checkedItem[1]._id, upd: { StackObjectsCount: +quantity, SpawnedInSession: true }, }; - itemsToSend.push(...this.itemHelper.splitStack(item)); + try + { + itemsToSend.push(...this.itemHelper.splitStack(item)); + } + catch + { + this.mailSendService.sendUserMessageToPlayer( + sessionId, + commandHandler, + "Too many items requested. Please lower the amount and try again.", + ); + return request.dialogId; + } } // Flag the items as FiR this.itemHelper.setFoundInRaid(itemsToSend); - this.mailSendService.sendSystemMessageToPlayer(sessionId, "Give command!", itemsToSend); + this.mailSendService.sendSystemMessageToPlayer(sessionId, "SPT GIVE", itemsToSend); return request.dialogId; } } diff --git a/project/src/helpers/Dialogue/Commando/SptCommands/SavedCommand.ts b/project/src/helpers/Dialogue/Commando/SptCommands/SavedCommand.ts new file mode 100644 index 00000000..c51412a4 --- /dev/null +++ b/project/src/helpers/Dialogue/Commando/SptCommands/SavedCommand.ts @@ -0,0 +1,6 @@ +export class SavedCommand +{ + public constructor(public quantity: number, public potentialItemNames: string[], public locale: string) + { + } +} diff --git a/project/src/helpers/Dialogue/CommandoDialogueChatBot.ts b/project/src/helpers/Dialogue/CommandoDialogueChatBot.ts index c000d186..db8018dc 100644 --- a/project/src/helpers/Dialogue/CommandoDialogueChatBot.ts +++ b/project/src/helpers/Dialogue/CommandoDialogueChatBot.ts @@ -1,33 +1,22 @@ import { inject, injectAll, injectable } from "tsyringe"; -import { ICommandoCommand } from "@spt-aki/helpers/Dialogue/Commando/ICommandoCommand"; -import { IDialogueChatBot } from "@spt-aki/helpers/Dialogue/IDialogueChatBot"; -import { ISendMessageRequest } from "@spt-aki/models/eft/dialog/ISendMessageRequest"; +import { AbstractDialogueChatBot } from "@spt-aki/helpers/Dialogue/AbstractDialogueChatBot"; +import { IChatCommand } from "@spt-aki/helpers/Dialogue/Commando/IChatCommand"; import { IUserDialogInfo } from "@spt-aki/models/eft/profile/IAkiProfile"; import { MemberCategory } from "@spt-aki/models/enums/MemberCategory"; import { ILogger } from "@spt-aki/models/spt/utils/ILogger"; import { MailSendService } from "@spt-aki/services/MailSendService"; @injectable() -export class CommandoDialogueChatBot implements IDialogueChatBot +export class CommandoDialogueChatBot extends AbstractDialogueChatBot { public constructor( - @inject("WinstonLogger") protected logger: ILogger, - @inject("MailSendService") protected mailSendService: MailSendService, - @injectAll("CommandoCommand") protected commandoCommands: ICommandoCommand[], + @inject("WinstonLogger") logger: ILogger, + @inject("MailSendService") mailSendService: MailSendService, + @injectAll("CommandoCommand") chatCommands: IChatCommand[], ) { - } - - public registerCommandoCommand(commandoCommand: ICommandoCommand): void - { - if (this.commandoCommands.some((cc) => cc.getCommandPrefix() === commandoCommand.getCommandPrefix())) - { - throw new Error( - `The commando command ${commandoCommand.getCommandPrefix()} being registered already exists!`, - ); - } - this.commandoCommands.push(commandoCommand); + super(logger, mailSendService, chatCommands); } public getChatBot(): IUserDialogInfo @@ -39,37 +28,8 @@ export class CommandoDialogueChatBot implements IDialogueChatBot }; } - public handleMessage(sessionId: string, request: ISendMessageRequest): string + protected getUnrecognizedCommandMessage(): string { - if ((request.text ?? "").length === 0) - { - this.logger.error("Commando command came in as empty text! Invalid data!"); - return request.dialogId; - } - - const splitCommand = request.text.split(" "); - - const commandos = this.commandoCommands.filter((c) => c.getCommandPrefix() === splitCommand[0]); - if (commandos[0]?.getCommands().has(splitCommand[1])) - { - return commandos[0].handle(splitCommand[1], this.getChatBot(), sessionId, request); - } - - if (splitCommand[0].toLowerCase() === "help") - { - const helpMessage = this.commandoCommands.map((c) => - `Help for ${c.getCommandPrefix()}:\n${ - Array.from(c.getCommands()).map((command) => c.getCommandHelp(command)).join("\n") - }` - ).join("\n"); - this.mailSendService.sendUserMessageToPlayer(sessionId, this.getChatBot(), helpMessage); - return request.dialogId; - } - - this.mailSendService.sendUserMessageToPlayer( - sessionId, - this.getChatBot(), - `Im sorry soldier, I dont recognize the command you are trying to use! Type "help" to see available commands.`, - ); + return `I'm sorry soldier, I don't recognize the command you are trying to use! Type "help" to see available commands.`; } } From 3d77ed8595fd67c8d3e4a7ffdb0cb9440bac05b3 Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 12:23:19 -0400 Subject: [PATCH 027/104] Seperates ragfair pricing into seperate method This changes the `RagfairPriceService.getDynamicOfferPriceForOffer()` method to handle the logic surrounding collecting prices for items in offers, while offloading the individual price generation to a new method. The new method, `RagfairPriceService.getDynamicItemPrice()`, is responsible for generating a price for either an item template, or optionally an offerItems collection. This change also allows `getDynamicItemPrice()` to be used elsewhere in the code-base to gather more "realistic" pricing for specific item templates. Fixes an edge-case where unreasonable prices would only be adjusted on the first item within an offer. Includes some tests. Related to #618. This will allow the insurance system to use this method to get better pricing for items. --- project/src/helpers/PresetHelper.ts | 11 + project/src/services/RagfairPriceService.ts | 172 +++--- .../services/RagfairPriceService.test.ts | 501 ++++++++++++++++++ 3 files changed, 608 insertions(+), 76 deletions(-) create mode 100644 project/tests/services/RagfairPriceService.test.ts diff --git a/project/src/helpers/PresetHelper.ts b/project/src/helpers/PresetHelper.ts index b7fc1eb4..d7149fc1 100644 --- a/project/src/helpers/PresetHelper.ts +++ b/project/src/helpers/PresetHelper.ts @@ -85,6 +85,17 @@ export class PresetHelper return id in this.databaseServer.getTables().globals.ItemPresets; } + /** + * Checks to see if the preset is of the given base class. + * @param id The id of the preset + * @param baseClass The BaseClasses enum to check against + * @returns True if the preset is of the given base class, false otherwise + */ + public isPresetBaseClass(id: string, baseClass: BaseClasses): boolean + { + return this.isPreset(id) && this.itemHelper.isOfBaseclass(this.getPreset(id)._encyclopedia, baseClass); + } + public hasPreset(templateId: string): boolean { return templateId in this.lookup; diff --git a/project/src/services/RagfairPriceService.ts b/project/src/services/RagfairPriceService.ts index 6762bcec..2c7288ea 100644 --- a/project/src/services/RagfairPriceService.ts +++ b/project/src/services/RagfairPriceService.ts @@ -223,109 +223,129 @@ export class RagfairPriceService implements OnLoad */ public getDynamicOfferPriceForOffer(offerItems: Item[], desiredCurrency: string, isPackOffer: boolean): number { - const rootItem = offerItems[0]; - - // Price to return + // Price to return. let price = 0; - let endLoop = false; - let isPreset = false; - let manuallyAdjusted = false; + // Iterate over each item in the offer. for (const item of offerItems) { - // Armor insert, skip - we dont factor these into an items price + // Skip over armour inserts as those are not factored into item prices. if (this.itemHelper.isOfBaseclass(item._tpl, BaseClasses.BUILT_IN_INSERTS)) { continue; } - // Get dynamic price, fallback to handbook price if value of 1 found - let itemPrice = this.getFleaPriceForItem(item._tpl); + price += this.getDynamicItemPrice(item._tpl, desiredCurrency, item, offerItems, isPackOffer); - if (this.ragfairConfig.dynamic.offerAdjustment.adjustPriceWhenBelowHandbookPrice) - { - itemPrice = this.adjustPriceIfBelowHandbook(itemPrice, item._tpl); - } - - if (this.ragfairConfig.dynamic.useTraderPriceForOffersIfHigher) - { - // Get highest trader price for item, if greater than value found so far, use it - const traderPrice = this.traderHelper.getHighestSellToTraderPrice(item._tpl); - if (traderPrice > itemPrice) - { - itemPrice = traderPrice; - } - } - - // Check if item type is weapon preset, handle differently - const itemDetails = this.itemHelper.getItem(item._tpl); - if (this.presetHelper.isPreset(item.upd?.sptPresetId) && itemDetails[1]._props.weapFireType) - { - itemPrice = this.getWeaponPresetPrice(item, offerItems, itemPrice); - endLoop = true; - isPreset = true; - } - - // Check for existance of manual price adjustment multiplier - const manualPriceMultipler = this.ragfairConfig.dynamic.itemPriceMultiplier[item._tpl]; - if (manualPriceMultipler) - { - manuallyAdjusted = true; - itemPrice *= manualPriceMultipler; - } - - // Multiply dynamic price by quality modifier - const itemQualityModifier = this.itemHelper.getItemQualityModifier(item); - price += itemPrice * itemQualityModifier; - - // Stop loop if weapon preset price function has been run - if (endLoop) + // Check if the item is a weapon preset. + if (item?.upd?.sptPresetId && this.presetHelper.isPresetBaseClass(item.upd.sptPresetId, BaseClasses.WEAPON)) { + // This is a weapon preset, which has it's own price calculation that takes into account the mods in the + // preset. Since we've already calculated the price for the preset entire preset in + // `getDynamicItemPrice`, we can skip the rest of the items in the offer. break; } } - // Check for unreasonable price on singular items - if (offerItems.length === 1 && !manuallyAdjusted) - { - const rootItemDb = this.itemHelper.getItem(rootItem._tpl)[1]; - let unreasonableItemPriceChange: IUnreasonableModPrices; - for (const key of Object.keys(this.ragfairConfig.dynamic.unreasonableModPrices)) - { - if (this.itemHelper.isOfBaseclass(rootItemDb._id, key)) - { - unreasonableItemPriceChange = this.ragfairConfig.dynamic.unreasonableModPrices[key]; + return Math.round(price); + } - break; - } - } - if (unreasonableItemPriceChange?.enabled) + /** + * @param itemTemplateId + * @param desiredCurrency + * @param item + * @param offerItems + * @param isPackOffer + * @returns + */ + public getDynamicItemPrice( + itemTemplateId: string, + desiredCurrency: string, + item?: Item, + offerItems?: Item[], + isPackOffer?: boolean, + ): number + { + let isPreset = false; + let price = this.getFleaPriceForItem(itemTemplateId); + + // Adjust price if below handbook price, based on config. + if (this.ragfairConfig.dynamic.offerAdjustment.adjustPriceWhenBelowHandbookPrice) + { + price = this.adjustPriceIfBelowHandbook(price, itemTemplateId); + } + + // Use trader price if higher, based on config. + if (this.ragfairConfig.dynamic.useTraderPriceForOffersIfHigher) + { + const traderPrice = this.traderHelper.getHighestSellToTraderPrice(itemTemplateId); + if (traderPrice > price) { - price = this.adjustUnreasonablePrice( - this.databaseServer.getTables().templates.handbook.Items, - unreasonableItemPriceChange, - rootItem._tpl, - price, - ); + price = traderPrice; } } - // Get price multiplier min/max to vary price - const rangeValues = this.getOfferTypeRangeValues(isPreset, isPackOffer); - price = this.randomiseOfferPrice(price, rangeValues); + // Prices for weapon presets are handled differently. + if ( + item?.upd?.sptPresetId + && offerItems + && this.presetHelper.isPresetBaseClass(item.upd.sptPresetId, BaseClasses.WEAPON) + ) + { + price = this.getWeaponPresetPrice(item, offerItems, price); + isPreset = true; + } - // Convert to different currency if desiredCurrency param is not roubles - if (desiredCurrency !== Money.ROUBLES) + // Check for existence of manual price adjustment multiplier + const multiplier = this.ragfairConfig.dynamic.itemPriceMultiplier[itemTemplateId]; + if (multiplier) + { + price *= multiplier; + } + + // The quality of the item affects the price. + if (item) + { + const qualityModifier = this.itemHelper.getItemQualityModifier(item); + price *= qualityModifier; + } + + // Make adjustments for unreasonably priced items. + for (const baseClassTemplateId of Object.keys(this.ragfairConfig.dynamic.unreasonableModPrices)) + { + if (this.itemHelper.isOfBaseclass(itemTemplateId, baseClassTemplateId)) + { + // Found an unreasonable price type. + const unreasonableModifier: IUnreasonableModPrices = + this.ragfairConfig.dynamic.unreasonableModPrices[baseClassTemplateId]; + + if (unreasonableModifier.enabled) + { + price = this.adjustUnreasonablePrice( + this.databaseServer.getTables().templates.handbook.Items, + unreasonableModifier, + itemTemplateId, + price, + ); + } + } + } + + // Vary the price based on the type of offer. + const range = this.getOfferTypeRangeValues(isPreset, isPackOffer); + price = this.randomiseOfferPrice(price, range); + + // Convert to different currency if required. + const roublesId = Money.ROUBLES; + if (desiredCurrency !== roublesId) { price = this.handbookHelper.fromRUB(price, desiredCurrency); } - // Guard against weird prices if (price < 1) { - price = 1; + return 1; } - return price; } @@ -400,7 +420,7 @@ export class RagfairPriceService implements OnLoad const itemHandbookPrice = this.getStaticPriceForItem(itemTpl); const priceDifferencePercent = this.getPriceDifference(itemHandbookPrice, itemPrice); - // Only adjust price if difference is > a percent AND item price passes threshhold set in config + // Only adjust price if difference is > a percent AND item price passes threshold set in config if ( priceDifferencePercent > this.ragfairConfig.dynamic.offerAdjustment.maxPriceDifferenceBelowHandbookPercent && itemPrice >= this.ragfairConfig.dynamic.offerAdjustment.priceThreshholdRub diff --git a/project/tests/services/RagfairPriceService.test.ts b/project/tests/services/RagfairPriceService.test.ts new file mode 100644 index 00000000..8ae6fee2 --- /dev/null +++ b/project/tests/services/RagfairPriceService.test.ts @@ -0,0 +1,501 @@ +/* eslint-disable @typescript-eslint/naming-convention */ +import "reflect-metadata"; +import { container } from "tsyringe"; +import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; + +import { RagfairPriceService } from "@spt-aki/services/RagfairPriceService"; + +import { MinMax } from "@spt-aki/models/common/MinMax"; +import { Money } from "@spt-aki/models/enums/Money"; + +describe("RagfairPriceService", () => +{ + let ragfairPriceService: any; // Using "any" to access private/protected methods without type errors. + + beforeEach(() => + { + ragfairPriceService = container.resolve("RagfairPriceService"); + }); + + afterEach(() => + { + vi.restoreAllMocks(); + }); + + describe("getDynamicOfferPriceForOffer", () => + { + it("should return zero when empty offerItems array is passed", () => + { + const offerItems = []; + const desiredCurrency = Money.ROUBLES; + const isPackOffer = false; + + const price = ragfairPriceService.getDynamicOfferPriceForOffer(offerItems, desiredCurrency, isPackOffer); + + expect(price).toEqual(0); + }); + + it("should return non-zero number when valid item is passed", () => + { + const offerItems = [{ + _id: "d445ea263cdfc5f278334264", + _tpl: "57e3dba62459770f0c32322b", + parentId: "631abbff398cc0170cbd3089", + slotId: "mod_pistol_grip", + }]; + const desiredCurrency = Money.ROUBLES; + const isPackOffer = false; + const expectedPrice = 42069; + + // Mock the getDynamicItemPrice method to return a static price. + vi.spyOn(ragfairPriceService, "getDynamicItemPrice").mockReturnValue(expectedPrice); + + const price = ragfairPriceService.getDynamicOfferPriceForOffer(offerItems, desiredCurrency, isPackOffer); + + expect(price).toBe(expectedPrice); + }); + + it("should always return a whole number", () => + { + const offerItems = [{ + _id: "d445ea263cdfc5f278334264", + _tpl: "57e3dba62459770f0c32322b", + parentId: "631abbff398cc0170cbd3089", + slotId: "mod_pistol_grip", + }]; + const desiredCurrency = Money.ROUBLES; + const isPackOffer = false; + const originalPrice = 42069.999999999; + + // Mock the getDynamicItemPrice method to return a static price. + vi.spyOn(ragfairPriceService, "getDynamicItemPrice").mockReturnValue(originalPrice); + + const price = ragfairPriceService.getDynamicOfferPriceForOffer(offerItems, desiredCurrency, isPackOffer); + + expect(price).toBeGreaterThan(originalPrice); + expect(price).toBe(Math.round(originalPrice)); + }); + + it("should skip prices for soft armour inserts", () => + { + const offerItems = [{ + _id: "d445ea263cdfc5f278334264", + _tpl: "657080a212755ae0d907ad04", + parentId: "631abbff398cc0170cbd3089", + slotId: "Soft_armor_front", + }]; + const desiredCurrency = Money.ROUBLES; + const isPackOffer = false; + + // Mock the getDynamicItemPrice method. + const getDynamicItemPriceSpy = vi.spyOn(ragfairPriceService, "getDynamicItemPrice"); + + const price = ragfairPriceService.getDynamicOfferPriceForOffer(offerItems, desiredCurrency, isPackOffer); + + expect(price).toBe(0); + expect(getDynamicItemPriceSpy).not.toHaveBeenCalled(); + }); + + it("should not add value of mods to weapon preset", () => + { + const offerItems = [{ + _id: "344d02bbf2102ce4e145bf35", + _tpl: "579204f224597773d619e051", + upd: { + StackObjectsCount: 1, + UnlimitedCount: true, + sptPresetId: "5841499024597759f825ff3e", + Repairable: { Durability: 90, MaxDurability: 90 }, + }, + }, { + _id: "59c6897a59ed48f1ca02f659", + _tpl: "5448c12b4bdc2d02308b456f", + parentId: "344d02bbf2102ce4e145bf35", + slotId: "mod_magazine", + }, { + _id: "7e8062d4bc57b56927c2d117", + _tpl: "6374a822e629013b9c0645c8", + parentId: "344d02bbf2102ce4e145bf35", + slotId: "mod_reciever", + }, { + _id: "3b09149e8b7833dc5fdd32a4", + _tpl: "63c6adcfb4ba094317063742", + parentId: "7e8062d4bc57b56927c2d117", + slotId: "mod_sight_rear", + }, { + _id: "e833a5c26af29870df9cdd2e", + _tpl: "6374a7e7417239a7bf00f042", + parentId: "344d02bbf2102ce4e145bf35", + slotId: "mod_pistolgrip", + }]; + const desiredCurrency = Money.ROUBLES; + const isPackOffer = false; + const expectedPrice = 10000; + + // Mock the getDynamicItemPrice method to return a static price. + const getDynamicItemPriceSpy = vi.spyOn(ragfairPriceService, "getDynamicItemPrice").mockReturnValue( + expectedPrice, + ); + + const price = ragfairPriceService.getDynamicOfferPriceForOffer(offerItems, desiredCurrency, isPackOffer); + + expect(price).toBe(expectedPrice); + expect(getDynamicItemPriceSpy).toHaveBeenCalledTimes(1); + }); + + it("should sum value of all offer items", () => + { + const offerItems = [{ + _id: "59c6897a59ed48f1ca02f659", + _tpl: "5448c12b4bdc2d02308b456f", + parentId: "344d02bbf2102ce4e145bf35", + slotId: "mod_magazine", + }, { + _id: "7e8062d4bc57b56927c2d117", + _tpl: "6374a822e629013b9c0645c8", + parentId: "344d02bbf2102ce4e145bf35", + slotId: "mod_reciever", + }, { + _id: "3b09149e8b7833dc5fdd32a4", + _tpl: "63c6adcfb4ba094317063742", + parentId: "7e8062d4bc57b56927c2d117", + slotId: "mod_sight_rear", + }, { + _id: "e833a5c26af29870df9cdd2e", + _tpl: "6374a7e7417239a7bf00f042", + parentId: "344d02bbf2102ce4e145bf35", + slotId: "mod_pistolgrip", + }]; + const desiredCurrency = Money.ROUBLES; + const isPackOffer = false; + const expectedPrice = 10000; + + // Mock the getDynamicItemPrice method to return a static price. + const getDynamicItemPriceSpy = vi.spyOn(ragfairPriceService, "getDynamicItemPrice").mockReturnValue( + expectedPrice, + ); + + const price = ragfairPriceService.getDynamicOfferPriceForOffer(offerItems, desiredCurrency, isPackOffer); + + expect(price).toBe(expectedPrice * offerItems.length); + expect(getDynamicItemPriceSpy).toHaveBeenCalledTimes(offerItems.length); + }); + }); + + describe("getDynamicItemPrice", () => + { + it("should not return zero for a valid template ID", () => + { + const itemTemplateId = "5e54f6af86f7742199090bf3"; + const desiredCurrency = Money.ROUBLES; + + const price = ragfairPriceService.getDynamicItemPrice(itemTemplateId, desiredCurrency); + + expect(price).not.toBe(0); + }); + + it("should use trader price if it is higher than flea price and configuration allows it", () => + { + const itemTemplateId = "5e54f6af86f7742199090bf3"; + const desiredCurrency = Money.ROUBLES; + const mockTraderPrice = 20000; + const mockFleaPrice = 15000; + const getOfferTypeRangeValues = { max: 1, min: 1 }; + + // Mock the configs to allow using trader price if higher. Disable other adjustments for isolation. + ragfairPriceService.ragfairConfig.dynamic.offerAdjustment.adjustPriceWhenBelowHandbookPrice = false; + ragfairPriceService.ragfairConfig.dynamic.useTraderPriceForOffersIfHigher = true; + ragfairPriceService.ragfairConfig.dynamic.itemPriceMultiplier[itemTemplateId] = null; + + // Mock the getFleaPriceForItem method to return a static price. + vi.spyOn(ragfairPriceService, "getFleaPriceForItem").mockReturnValue(mockFleaPrice); + + // Mock the getHighestSellToTraderPrice method to return a higher static price. + vi.spyOn((ragfairPriceService as any).traderHelper, "getHighestSellToTraderPrice").mockReturnValue( + mockTraderPrice, + ); + + // Mock the getOfferTypeRangeValues method to return a static minMax. + vi.spyOn(ragfairPriceService, "getOfferTypeRangeValues").mockReturnValue(getOfferTypeRangeValues); + + // Call the method. + const price = ragfairPriceService.getDynamicItemPrice(itemTemplateId, desiredCurrency); + + expect(price).toBe(mockTraderPrice); + }); + + it("should adjust flea price when below handbook price and configuration allows it", () => + { + const itemTemplateId = "5e54f6af86f7742199090bf3"; + const desiredCurrency = Money.ROUBLES; + const mockFleaPrice = 1; + const handbookPrice = 10000; + const adjustedPrice = 9000; + const getOfferTypeRangeValues = { max: 1, min: 1 }; + + // Enable adjustment for prices below handbook price. Disable other adjustments for isolation. + ragfairPriceService.ragfairConfig.dynamic.offerAdjustment.adjustPriceWhenBelowHandbookPrice = true; + ragfairPriceService.ragfairConfig.dynamic.useTraderPriceForOffersIfHigher = false; + ragfairPriceService.ragfairConfig.dynamic.itemPriceMultiplier[itemTemplateId] = null; + + // Mock the getFleaPriceForItem method to return a static price below the handbook price. + vi.spyOn(ragfairPriceService, "getFleaPriceForItem").mockReturnValue(mockFleaPrice); + + // Mock the adjustPriceIfBelowHandbook method to simulate price adjustment. + vi.spyOn(ragfairPriceService, "adjustPriceIfBelowHandbook").mockImplementation( + (price: number, templateId) => + { + return price < handbookPrice ? adjustedPrice : price; + }, + ); + + // Mock the getOfferTypeRangeValues method to return a static minMax. + vi.spyOn(ragfairPriceService, "getOfferTypeRangeValues").mockReturnValue(getOfferTypeRangeValues); + + // Call the method. + const price = ragfairPriceService.getDynamicItemPrice(itemTemplateId, desiredCurrency); + + // Verify the price is adjusted correctly according to the mocked handbook price adjustment logic. + expect(price).toBe(adjustedPrice); + }); + + it("should handle weapon preset prices correctly", () => + { + const itemTemplateId = "579204f224597773d619e051"; + const desiredCurrency = Money.ROUBLES; + const mockPresetPrice = 25000; + const getOfferTypeRangeValues = { max: 1, min: 1 }; + const offerItems = [{ + _id: "344d02bbf2102ce4e145bf35", + _tpl: "579204f224597773d619e051", + upd: { + StackObjectsCount: 1, + UnlimitedCount: true, + sptPresetId: "5841499024597759f825ff3e", + Repairable: { Durability: 90, MaxDurability: 90 }, + }, + }, { + _id: "7e8062d4bc57b56927c2d117", + _tpl: "6374a822e629013b9c0645c8", + parentId: "344d02bbf2102ce4e145bf35", + slotId: "mod_reciever", + }]; + const item = offerItems[0]; + + // Disable other adjustments for isolation. + ragfairPriceService.ragfairConfig.dynamic.offerAdjustment.adjustPriceWhenBelowHandbookPrice = false; + ragfairPriceService.ragfairConfig.dynamic.useTraderPriceForOffersIfHigher = false; + ragfairPriceService.ragfairConfig.dynamic.itemPriceMultiplier[itemTemplateId] = null; + + // Mock getFleaPriceForItem to bypass initial flea price fetch + vi.spyOn(ragfairPriceService, "getFleaPriceForItem").mockReturnValue(0); + + // Mock the isPresetBaseClass method to return true for the item + vi.spyOn((ragfairPriceService as any).presetHelper, "isPresetBaseClass").mockReturnValue(true); + + // Mock the getWeaponPresetPrice method to return a specific preset price + const getWeaponPresetPriceSpy = vi.spyOn(ragfairPriceService, "getWeaponPresetPrice").mockReturnValue( + mockPresetPrice, + ); + + // Mock the getOfferTypeRangeValues method to return a static minMax. + vi.spyOn(ragfairPriceService, "getOfferTypeRangeValues").mockReturnValue(getOfferTypeRangeValues); + + // Mock the getItemQualityModifier method to return 1 (no change) + vi.spyOn((ragfairPriceService as any).itemHelper, "getItemQualityModifier").mockReturnValue(1); + + // Call the method with the mock item and offer items + const price = ragfairPriceService.getDynamicItemPrice(itemTemplateId, desiredCurrency, item, offerItems); + + // Call the method. + expect(price).toBe(mockPresetPrice); + + // Additionally, you can verify that getWeaponPresetPrice was called with the correct parameters + expect(getWeaponPresetPriceSpy).toHaveBeenCalledWith(item, offerItems, expect.any(Number)); + }); + + it("should update price based on the ragfair config item price multiplier values", () => + { + const itemTemplateId = "5e54f6af86f7742199090bf3"; + const desiredCurrency = Money.ROUBLES; + const mockFleaPrice = 20000; + const itemPriceMultiplier = 2; + const getOfferTypeRangeValues = { max: 1, min: 1 }; + + // Mock the ragfair config to have a price multiplier of 2. Disable other adjustments for isolation. + ragfairPriceService.ragfairConfig.dynamic.itemPriceMultiplier[itemTemplateId] = itemPriceMultiplier; + ragfairPriceService.ragfairConfig.dynamic.offerAdjustment.adjustPriceWhenBelowHandbookPrice = false; + ragfairPriceService.ragfairConfig.dynamic.useTraderPriceForOffersIfHigher = false; + + // Mock the getFleaPriceForItem method to return a static price. + vi.spyOn(ragfairPriceService, "getFleaPriceForItem").mockReturnValue(mockFleaPrice); + + // Mock the getOfferTypeRangeValues method to return a static minMax. + vi.spyOn(ragfairPriceService, "getOfferTypeRangeValues").mockReturnValue(getOfferTypeRangeValues); + + // Call the method. + const price = ragfairPriceService.getDynamicItemPrice(itemTemplateId, desiredCurrency); + + expect(price).toBe(mockFleaPrice * itemPriceMultiplier); + }); + + it("should adjust price when durability is not perfect", () => + { + const itemTemplateId = "579204f224597773d619e051"; + const desiredCurrency = Money.ROUBLES; + const mockPrice = 25000; + const mockDurabilityMulti = 0.5; + const getOfferTypeRangeValues = { max: 1, min: 1 }; + const offerItems = [{ + _id: "344d02bbf2102ce4e145bf35", + _tpl: "579204f224597773d619e051", + upd: { + StackObjectsCount: 1, + UnlimitedCount: true, + sptPresetId: "5841499024597759f825ff3e", + Repairable: { Durability: 40, MaxDurability: 90 }, + }, + }, { + _id: "7e8062d4bc57b56927c2d117", + _tpl: "6374a822e629013b9c0645c8", + parentId: "344d02bbf2102ce4e145bf35", + slotId: "mod_reciever", + }]; + const item = offerItems[0]; + + // Disable other adjustments for isolation. + ragfairPriceService.ragfairConfig.dynamic.offerAdjustment.adjustPriceWhenBelowHandbookPrice = false; + ragfairPriceService.ragfairConfig.dynamic.useTraderPriceForOffersIfHigher = false; + ragfairPriceService.ragfairConfig.dynamic.itemPriceMultiplier[itemTemplateId] = null; + + // Mock getFleaPriceForItem to bypass initial flea price fetch + vi.spyOn(ragfairPriceService, "getFleaPriceForItem").mockReturnValue(0); + + // Mock the isPresetBaseClass method to return true for the item + vi.spyOn((ragfairPriceService as any).presetHelper, "isPresetBaseClass").mockReturnValue(true); + + // Mock the getWeaponPresetPrice method to return a specific preset price + vi.spyOn(ragfairPriceService, "getWeaponPresetPrice").mockReturnValue(mockPrice); + + // Mock the getOfferTypeRangeValues method to return a static minMax. + vi.spyOn(ragfairPriceService, "getOfferTypeRangeValues").mockReturnValue(getOfferTypeRangeValues); + + // Mock the getItemQualityModifier method to return 1 (no change) + const getItemQualityModifierSpy = vi.spyOn( + (ragfairPriceService as any).itemHelper, + "getItemQualityModifier", + ).mockReturnValue(mockDurabilityMulti); + + // Call the method. + const price = ragfairPriceService.getDynamicItemPrice(itemTemplateId, desiredCurrency, item, offerItems); + + expect(getItemQualityModifierSpy).toHaveBeenCalled(); + expect(price).toBe(mockPrice * mockDurabilityMulti); + }); + + it("should adjust unreasonable prices based on ragfair config unreasonable price values", () => + { + const itemTemplateId = "5c052f6886f7746b1e3db148"; + const desiredCurrency = Money.ROUBLES; + const mockFleaPrice = 9999999; + const getOfferTypeRangeValues = { max: 1, min: 1 }; + const mockBaseClassTemplateId = "57864a66245977548f04a81f"; + const mockUnreasonableModPrices = { + itemType: "Electronics", + enabled: true, + handbookPriceOverMultiplier: 11, + newPriceHandbookMultiplier: 11, + }; + + // Mock the Disable unreasonableModPrices config. Disable other adjustments for isolation. + ragfairPriceService.ragfairConfig.dynamic.unreasonableModPrices[mockBaseClassTemplateId] = + mockUnreasonableModPrices; + ragfairPriceService.ragfairConfig.dynamic.offerAdjustment.adjustPriceWhenBelowHandbookPrice = false; + ragfairPriceService.ragfairConfig.dynamic.useTraderPriceForOffersIfHigher = false; + ragfairPriceService.ragfairConfig.dynamic.itemPriceMultiplier[itemTemplateId] = null; + + // Mock getFleaPriceForItem to bypass initial flea price fetch + vi.spyOn(ragfairPriceService, "getFleaPriceForItem").mockReturnValue(mockFleaPrice); + + // Mock isOfBaseclass to ensure that the item is always of the base class + const isOfBaseclassSpy = vi.spyOn((ragfairPriceService as any).itemHelper, "isOfBaseclass").mockReturnValue( + true, + ); + + // Mock the adjustUnreasonablePrice method to ensure it was called + const adjustUnreasonablePriceSpy = vi.spyOn(ragfairPriceService, "adjustUnreasonablePrice"); + + // Mock the getOfferTypeRangeValues method to return a static minMax + vi.spyOn(ragfairPriceService, "getOfferTypeRangeValues").mockReturnValue(getOfferTypeRangeValues); + + // Call the method. + const price = ragfairPriceService.getDynamicItemPrice(itemTemplateId, desiredCurrency); + + expect(isOfBaseclassSpy).toHaveBeenCalled(); + expect(adjustUnreasonablePriceSpy).toHaveBeenCalled(); + expect(price).toBeLessThan(mockFleaPrice); + }); + + it("should vary the price within a random range", () => + { + const itemTemplateId = "5e54f6af86f7742199090bf3"; + const desiredCurrency = Money.ROUBLES; + const mockFleaPrice = 10000; + const mockRandomiseOfferPrice = 9500; + + // Mock the configs to allow using trader price if higher. Disable other adjustments for isolation. + ragfairPriceService.ragfairConfig.dynamic.offerAdjustment.adjustPriceWhenBelowHandbookPrice = false; + ragfairPriceService.ragfairConfig.dynamic.useTraderPriceForOffersIfHigher = false; + ragfairPriceService.ragfairConfig.dynamic.itemPriceMultiplier[itemTemplateId] = null; + + // Mock the getFleaPriceForItem method to return a static price + vi.spyOn(ragfairPriceService, "getFleaPriceForItem").mockReturnValue(mockFleaPrice); + + // Mock the isPresetBaseClass method to return false + vi.spyOn((ragfairPriceService as any).presetHelper, "isPresetBaseClass").mockReturnValue(false); + + // Mock the randomiseOfferPrice method to have a simplified implementation + const randomiseOfferPriceSpy = vi.spyOn(ragfairPriceService, "randomiseOfferPrice").mockReturnValue( + mockRandomiseOfferPrice, + ); + + // Call the method. + const price = ragfairPriceService.getDynamicItemPrice(itemTemplateId, desiredCurrency); + + expect(randomiseOfferPriceSpy).toHaveBeenCalled(); + expect(price).toBe(mockRandomiseOfferPrice); + }); + + it("should convert currency", () => + { + const itemTemplateId = "5e54f6af86f7742199090bf3"; + const desiredCurrency = Money.DOLLARS; + const mockRoublePrice = 10000; + const mockDollarPrice = 500; + const getOfferTypeRangeValues = { max: 1, min: 1 }; + + // Mock the configs to allow using trader price if higher. Disable other adjustments for isolation. + ragfairPriceService.ragfairConfig.dynamic.offerAdjustment.adjustPriceWhenBelowHandbookPrice = false; + ragfairPriceService.ragfairConfig.dynamic.useTraderPriceForOffersIfHigher = false; + ragfairPriceService.ragfairConfig.dynamic.itemPriceMultiplier[itemTemplateId] = null; + + // Mock the getFleaPriceForItem method to return a static price. + vi.spyOn(ragfairPriceService, "getFleaPriceForItem").mockReturnValue(mockRoublePrice); + + // Mock the getOfferTypeRangeValues method to return a static minMax + vi.spyOn(ragfairPriceService, "getOfferTypeRangeValues").mockReturnValue(getOfferTypeRangeValues); + + // Mock the fromRUB method to convert the price to a different currency + const fromRUBSpy = vi.spyOn((ragfairPriceService as any).handbookHelper, "fromRUB").mockReturnValue( + mockDollarPrice, + ); + + // Call the method. + const price = ragfairPriceService.getDynamicItemPrice(itemTemplateId, desiredCurrency); + + expect(fromRUBSpy).toHaveBeenCalledWith(mockRoublePrice, desiredCurrency); + expect(price).not.toBe(mockRoublePrice); + expect(price).toBe(mockDollarPrice); + }); + }); +}); From 885205c742b7d4a4cb4216cb0930bd4135ecf32d Mon Sep 17 00:00:00 2001 From: Dev Date: Wed, 10 Apr 2024 18:47:51 +0100 Subject: [PATCH 028/104] Fixed fence slowly losing assorts over time --- project/src/services/FenceService.ts | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/project/src/services/FenceService.ts b/project/src/services/FenceService.ts index 8ed5cd64..79266ef0 100644 --- a/project/src/services/FenceService.ts +++ b/project/src/services/FenceService.ts @@ -330,8 +330,6 @@ export class FenceService */ protected getCountOfItemsToGenerate(): IFenceAssortGenerationValues { - const currentItemAssortCount = Object.keys(this.fenceAssort.loyal_level_items).length; - const rootPresetItems = this.fenceAssort.items.filter((item) => item.slotId === "hideout" && item.upd.sptPresetId ); @@ -348,7 +346,12 @@ export class FenceService return this.itemHelper.armorItemCanHoldMods(item._tpl) ? count + 1 : count; }, 0); - const itemCountToGenerate = Math.max(this.desiredAssortCounts.normal.item - currentItemAssortCount, 0); + // Normal item count is total count minus weapon + armor count + const itemAssortCount = Object.keys(this.fenceAssort.loyal_level_items).length + - (currentWeaponPresetCount + currentEquipmentPresetCount); + + // Get counts of items to generate, never let values fall below 0 + const itemCountToGenerate = Math.max(this.desiredAssortCounts.normal.item - itemAssortCount, 0); const weaponCountToGenerate = Math.max( this.desiredAssortCounts.normal.weaponPreset - currentWeaponPresetCount, 0, @@ -365,7 +368,6 @@ export class FenceService }; // Discount tab handling - const currentDiscountItemAssortCount = Object.keys(this.fenceDiscountAssort.loyal_level_items).length; const rootDiscountPresetItems = this.fenceDiscountAssort.items.filter((item) => item.slotId === "hideout" && item.upd.sptPresetId ); @@ -382,8 +384,12 @@ export class FenceService return this.itemHelper.armorItemCanHoldMods(item._tpl) ? count + 1 : count; }, 0); + // Normal item count is total count minus weapon + armor count + const discountItemAssortCount = Object.keys(this.fenceAssort.loyal_level_items).length + - (currentDiscountWeaponPresetCount + currentDiscountEquipmentPresetCount); + const itemDiscountCountToGenerate = Math.max( - this.desiredAssortCounts.discount.item - currentDiscountItemAssortCount, + this.desiredAssortCounts.discount.item - discountItemAssortCount, 0, ); const weaponDiscountCountToGenerate = Math.max( From 341a99f8833839e6395b80804c29ed6585683ff6 Mon Sep 17 00:00:00 2001 From: Terkoiz Date: Wed, 10 Apr 2024 21:30:50 +0300 Subject: [PATCH 029/104] Adjusted PMC names list --- project/assets/database/bots/types/bear.json | 8 +++++--- project/assets/database/bots/types/usec.json | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/project/assets/database/bots/types/bear.json b/project/assets/database/bots/types/bear.json index 719a337e..286ac82c 100644 --- a/project/assets/database/bots/types/bear.json +++ b/project/assets/database/bots/types/bear.json @@ -2188,7 +2188,7 @@ "Basuro", "Bepis", "Baliston", - "Pessin", + "Crow", "Aki-chan", "Fin", "Gatsu66", @@ -2482,8 +2482,10 @@ "Belette", "Agnotology", "All_Heil_Lord_Ppepe", - "ixcetotis", - "btdc00" + "ixcetotis", + "btdc00", + "Bnuy", + "Choccy" ], "generation": { "items": { diff --git a/project/assets/database/bots/types/usec.json b/project/assets/database/bots/types/usec.json index 1c0ee442..3affe245 100644 --- a/project/assets/database/bots/types/usec.json +++ b/project/assets/database/bots/types/usec.json @@ -2185,7 +2185,7 @@ "Basuro", "Bepis", "Baliston", - "Pessin", + "Crow", "Aki-chan", "Fin", "Gatsu66", @@ -2479,8 +2479,10 @@ "Belette", "Agnotology", "All_Heil_Lord_Ppepe", - "ixcetotis", - "btdc00" + "ixcetotis", + "btdc00", + "Bnuy", + "Choccy" ], "generation": { "items": { From 6f98d0c6965999815eea94852d3373606c768e14 Mon Sep 17 00:00:00 2001 From: Terkoiz Date: Wed, 10 Apr 2024 21:38:25 +0300 Subject: [PATCH 030/104] Fixed bad name --- project/assets/database/bots/types/bear.json | 2 +- project/assets/database/bots/types/usec.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/project/assets/database/bots/types/bear.json b/project/assets/database/bots/types/bear.json index 286ac82c..de85d2d5 100644 --- a/project/assets/database/bots/types/bear.json +++ b/project/assets/database/bots/types/bear.json @@ -2481,7 +2481,7 @@ "Brin", "Belette", "Agnotology", - "All_Heil_Lord_Ppepe", + "All_Heil_Lord_Pepe", "ixcetotis", "btdc00", "Bnuy", diff --git a/project/assets/database/bots/types/usec.json b/project/assets/database/bots/types/usec.json index 3affe245..f7b24f8c 100644 --- a/project/assets/database/bots/types/usec.json +++ b/project/assets/database/bots/types/usec.json @@ -2478,7 +2478,7 @@ "Brin", "Belette", "Agnotology", - "All_Heil_Lord_Ppepe", + "All_Heil_Lord_Pepe", "ixcetotis", "btdc00", "Bnuy", From 9069de76af7dbd8b5dea233bbc0834e134e80067 Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 15:25:41 -0400 Subject: [PATCH 031/104] Run Tests Workflow This is a Gitea workflow that runs the test suite after a commit or PR. --- .gitea/workflows/run-tests.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .gitea/workflows/run-tests.yaml diff --git a/.gitea/workflows/run-tests.yaml b/.gitea/workflows/run-tests.yaml new file mode 100644 index 00000000..05e654e2 --- /dev/null +++ b/.gitea/workflows/run-tests.yaml @@ -0,0 +1,26 @@ +name: Run Tests + +on: + push: + branches: '*' + pull_request: + branches: '*' + +jobs: + trigger-main-build: + runs-on: ubuntu-latest + container: + image: node:20.11.1-alpine + steps: + - uses: actions/checkout@v3 + with: + path: 'server' + fetch-depth: 1 + + - name: Install Dependencies + working-directory: server + run: npm ci + + - name: Run Tests + working-directory: server + run: npm run test From 94b7d31bc8537e868c911406b520a7f98013f189 Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 15:32:39 -0400 Subject: [PATCH 032/104] Fixes Tests Workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Apparently we need node to run node. 🙄 --- .gitea/workflows/run-tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/run-tests.yaml b/.gitea/workflows/run-tests.yaml index 05e654e2..0b0a2aec 100644 --- a/.gitea/workflows/run-tests.yaml +++ b/.gitea/workflows/run-tests.yaml @@ -10,7 +10,7 @@ jobs: trigger-main-build: runs-on: ubuntu-latest container: - image: node:20.11.1-alpine + image: node:20.11.1-bookworm steps: - uses: actions/checkout@v3 with: From a76dfcc0296924d5a53b0fcc4076c4d968c0dea4 Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 15:37:09 -0400 Subject: [PATCH 033/104] Fixes Tests Workflow For Real Can't use `npm ci`. Forgot that we removed the package lock file. Also updated the working directory path. --- .gitea/workflows/run-tests.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/run-tests.yaml b/.gitea/workflows/run-tests.yaml index 0b0a2aec..502dc88c 100644 --- a/.gitea/workflows/run-tests.yaml +++ b/.gitea/workflows/run-tests.yaml @@ -14,13 +14,12 @@ jobs: steps: - uses: actions/checkout@v3 with: - path: 'server' fetch-depth: 1 - name: Install Dependencies - working-directory: server - run: npm ci + working-directory: /workspace/SPT-AKI/Server/project + run: npm install - name: Run Tests - working-directory: server + working-directory: /workspace/SPT-AKI/Server/project run: npm run test From a51ef26daefe5ab84aa55f59e56dd55cb9763d11 Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 16:02:10 -0400 Subject: [PATCH 034/104] Tests Workflow - Pull LFS Files This pulls down the server git lfs files for the test. --- .gitea/workflows/run-tests.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/run-tests.yaml b/.gitea/workflows/run-tests.yaml index 502dc88c..766f922a 100644 --- a/.gitea/workflows/run-tests.yaml +++ b/.gitea/workflows/run-tests.yaml @@ -14,6 +14,7 @@ jobs: steps: - uses: actions/checkout@v3 with: + lfs: true fetch-depth: 1 - name: Install Dependencies From 90cec27718ea8b358a2345c96fed5df663e5a19e Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 16:07:30 -0400 Subject: [PATCH 035/104] Uses Image With LFS For Test Workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Apparently you need LFS to run LFS. 🤦‍ --- .gitea/workflows/run-tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/run-tests.yaml b/.gitea/workflows/run-tests.yaml index 766f922a..f8e52b42 100644 --- a/.gitea/workflows/run-tests.yaml +++ b/.gitea/workflows/run-tests.yaml @@ -10,7 +10,7 @@ jobs: trigger-main-build: runs-on: ubuntu-latest container: - image: node:20.11.1-bookworm + image: refringe/spt-build-node:1.0.7 steps: - uses: actions/checkout@v3 with: From 3ecd4f39f7277978be55c8a1bbe928cfefbd3ad9 Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 16:30:11 -0400 Subject: [PATCH 036/104] Test Workflow - Drops Checkout Action This removes the actions/checkout action. It wasn't pulling down LFS files properly. We're doing it manually now. --- .gitea/workflows/run-tests.yaml | 35 ++++++++++++++++++++++++--------- 1 file changed, 26 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/run-tests.yaml b/.gitea/workflows/run-tests.yaml index f8e52b42..9cc014df 100644 --- a/.gitea/workflows/run-tests.yaml +++ b/.gitea/workflows/run-tests.yaml @@ -12,15 +12,32 @@ jobs: container: image: refringe/spt-build-node:1.0.7 steps: - - uses: actions/checkout@v3 - with: - lfs: true - fetch-depth: 1 + - name: Clone + run: | + COMMIT_SHA="" + REPO_URL="https://dev.sp-tarkov.com/SPT-AKI/Server.git" - - name: Install Dependencies - working-directory: /workspace/SPT-AKI/Server/project - run: npm install + rm -rf /workspace/SPT-AKI/Build/server + git clone ${REPO_URL} --branch master /workspace/SPT-AKI/Build/server + + cd /workspace/SPT-AKI/Build/server + git checkout ${COMMIT_SHA} + shell: bash + + - name: Pull LFS Files + run: | + cd /workspace/SPT-AKI/Build/server + git lfs pull + shell: bash + + - name: Install NPM Dependencies + run: | + cd /workspace/SPT-AKI/Build/server + npm install + shell: bash - name: Run Tests - working-directory: /workspace/SPT-AKI/Server/project - run: npm run test + run: | + cd /workspace/SPT-AKI/Build/server + npm run test + shell: bash From 74ff13068d5488ce8952fb0f844999c7d173a10e Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 16:46:05 -0400 Subject: [PATCH 037/104] Test Workflow - Hardcode Repo & Update SHA Name --- .gitea/workflows/run-tests.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/run-tests.yaml b/.gitea/workflows/run-tests.yaml index 9cc014df..7783f059 100644 --- a/.gitea/workflows/run-tests.yaml +++ b/.gitea/workflows/run-tests.yaml @@ -14,14 +14,11 @@ jobs: steps: - name: Clone run: | - COMMIT_SHA="" - REPO_URL="https://dev.sp-tarkov.com/SPT-AKI/Server.git" - rm -rf /workspace/SPT-AKI/Build/server - git clone ${REPO_URL} --branch master /workspace/SPT-AKI/Build/server + git clone https://dev.sp-tarkov.com/SPT-AKI/Server.git --branch master /workspace/SPT-AKI/Build/server cd /workspace/SPT-AKI/Build/server - git checkout ${COMMIT_SHA} + git checkout ${GITHUB_SHA} shell: bash - name: Pull LFS Files From 87877187b03876d5798ec55d3173926db1027677 Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 16:48:45 -0400 Subject: [PATCH 038/104] Test Workflow - List LFS Files & Update Project Path --- .gitea/workflows/run-tests.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/run-tests.yaml b/.gitea/workflows/run-tests.yaml index 7783f059..bec89aed 100644 --- a/.gitea/workflows/run-tests.yaml +++ b/.gitea/workflows/run-tests.yaml @@ -25,16 +25,17 @@ jobs: run: | cd /workspace/SPT-AKI/Build/server git lfs pull + git lfs ls-files shell: bash - name: Install NPM Dependencies run: | - cd /workspace/SPT-AKI/Build/server + cd /workspace/SPT-AKI/Build/server/project npm install shell: bash - name: Run Tests run: | - cd /workspace/SPT-AKI/Build/server + cd /workspace/SPT-AKI/Build/server/project npm run test shell: bash From adc71829f37dfb3f1dc4300f6271e4624412f487 Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 16:51:49 -0400 Subject: [PATCH 039/104] Test Workflow - Update Workflow Job Name --- .gitea/workflows/run-tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/run-tests.yaml b/.gitea/workflows/run-tests.yaml index bec89aed..f6c5590f 100644 --- a/.gitea/workflows/run-tests.yaml +++ b/.gitea/workflows/run-tests.yaml @@ -7,7 +7,7 @@ on: branches: '*' jobs: - trigger-main-build: + run-vitest-tests: runs-on: ubuntu-latest container: image: refringe/spt-build-node:1.0.7 From e48362ae6e2d4c2bb9f43559ca11282031d4ebf4 Mon Sep 17 00:00:00 2001 From: Dev Date: Wed, 10 Apr 2024 22:49:26 +0100 Subject: [PATCH 040/104] Added setting to allow/deny player wiping a profile via launcher - default `true` --- project/assets/configs/core.json | 1 + project/src/controllers/LauncherController.ts | 10 ++++++++++ project/src/models/spt/config/ICoreConfig.ts | 1 + 3 files changed, 12 insertions(+) diff --git a/project/assets/configs/core.json b/project/assets/configs/core.json index cac90ca3..8b0291ae 100644 --- a/project/assets/configs/core.json +++ b/project/assets/configs/core.json @@ -5,6 +5,7 @@ "serverName": "SPT Server", "profileSaveIntervalSeconds": 15, "sptFriendNickname": "SPT", + "allowProfileWipe": true, "bsgLogging": { "verbosity": 6, "sendToServer": false diff --git a/project/src/controllers/LauncherController.ts b/project/src/controllers/LauncherController.ts index e3a1b441..0e280622 100644 --- a/project/src/controllers/LauncherController.ts +++ b/project/src/controllers/LauncherController.ts @@ -172,8 +172,18 @@ export class LauncherController return sessionID; } + /** + * Handle launcher requesting profile be wiped + * @param info IRegisterData + * @returns Session id + */ public wipe(info: IRegisterData): string { + if (!this.coreConfig.allowProfileWipe) + { + return; + } + const sessionID = this.login(info); if (sessionID) diff --git a/project/src/models/spt/config/ICoreConfig.ts b/project/src/models/spt/config/ICoreConfig.ts index de65c646..21f61368 100644 --- a/project/src/models/spt/config/ICoreConfig.ts +++ b/project/src/models/spt/config/ICoreConfig.ts @@ -9,6 +9,7 @@ export interface ICoreConfig extends IBaseConfig serverName: string; profileSaveIntervalSeconds: number; sptFriendNickname: string; + allowProfileWipe: boolean; bsgLogging: IBsgLogging; release: IRelease; fixes: IGameFixes; From a331ab608dc67935ee46e90def681329ec859dfb Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 18:42:58 -0400 Subject: [PATCH 041/104] Test Workflow - Cache NPM Dependencies --- .gitea/workflows/run-tests.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/run-tests.yaml b/.gitea/workflows/run-tests.yaml index f6c5590f..8094e898 100644 --- a/.gitea/workflows/run-tests.yaml +++ b/.gitea/workflows/run-tests.yaml @@ -7,7 +7,7 @@ on: branches: '*' jobs: - run-vitest-tests: + vitest: runs-on: ubuntu-latest container: image: refringe/spt-build-node:1.0.7 @@ -28,9 +28,18 @@ jobs: git lfs ls-files shell: bash + - name: Cache NPM Dependencies + id: cache-npm-dependencies + uses: actions/cache@v4 + with: + path: /workspace/SPT-AKI/Build/server/project/node_modules + key: npm-dependencies-${{ hashFiles('/workspace/SPT-AKI/Build/server/project/package.json') }} + - name: Install NPM Dependencies + if: steps.cache-npm-dependencies.outputs.cache-hit != 'true' run: | cd /workspace/SPT-AKI/Build/server/project + rm -rf node_modules npm install shell: bash From 2b50b29db295e4189a2a4fc3f141b90b982bd94c Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 19:29:20 -0400 Subject: [PATCH 042/104] Adds Lint & Style Workflows --- .gitea/workflows/run-lint.yaml | 59 ++++++++++++++++++ .gitea/workflows/run-style.yaml | 60 +++++++++++++++++++ .../{run-tests.yaml => run-test.yaml} | 9 +++ 3 files changed, 128 insertions(+) create mode 100644 .gitea/workflows/run-lint.yaml create mode 100644 .gitea/workflows/run-style.yaml rename .gitea/workflows/{run-tests.yaml => run-test.yaml} (68%) diff --git a/.gitea/workflows/run-lint.yaml b/.gitea/workflows/run-lint.yaml new file mode 100644 index 00000000..cafb7064 --- /dev/null +++ b/.gitea/workflows/run-lint.yaml @@ -0,0 +1,59 @@ +name: Run Code Linter + +on: + push: + branches: '*' + pull_request: + branches: '*' + +jobs: + biome: + runs-on: ubuntu-latest + container: + image: refringe/spt-build-node:1.0.7 + steps: + - name: Clone + run: | + rm -rf /workspace/SPT-AKI/Build/server + git clone https://dev.sp-tarkov.com/SPT-AKI/Server.git --branch master /workspace/SPT-AKI/Build/server + + cd /workspace/SPT-AKI/Build/server + git checkout ${GITHUB_SHA} + shell: bash + + - name: Pull LFS Files + run: | + cd /workspace/SPT-AKI/Build/server + git lfs pull + git lfs ls-files + shell: bash + + - name: Cache NPM Dependencies + id: cache-npm-dependencies + uses: actions/cache@v4 + with: + path: /workspace/SPT-AKI/Build/server/project/node_modules + key: npm-dependencies-${{ hashFiles('/workspace/SPT-AKI/Build/server/project/package.json') }} + + - name: Install NPM Dependencies + if: steps.cache-npm-dependencies.outputs.cache-hit != 'true' + run: | + cd /workspace/SPT-AKI/Build/server/project + rm -rf node_modules + npm install + shell: bash + + - name: Run Linter + id: run-tests + run: | + cd /workspace/SPT-AKI/Build/server/project + npm run lint + shell: bash + + - name: Fix Instructions + if: failure() && steps.run-tests.outcome == 'failure' + run: | + echo "Code linting has failed. The linter has been configured to look for coding errors, defects, and questionable constructs. Please look into resolving these errors.\n\n" + echo "The linter may be able to resolve some of these issues automatically. You can launch the automatic fixer by running the following command from within the `project` directory. Anything not resolved by running this command must be resolved manually.\n`npm run lint:fix`\n\n" + echo "Consistency is professionalism.™" + shell: bash diff --git a/.gitea/workflows/run-style.yaml b/.gitea/workflows/run-style.yaml new file mode 100644 index 00000000..58021c36 --- /dev/null +++ b/.gitea/workflows/run-style.yaml @@ -0,0 +1,60 @@ +name: Check Code Style + +on: + push: + branches: '*' + pull_request: + branches: '*' + +jobs: + dprint: + runs-on: ubuntu-latest + container: + image: refringe/spt-build-node:1.0.7 + steps: + - name: Clone + run: | + rm -rf /workspace/SPT-AKI/Build/server + git clone https://dev.sp-tarkov.com/SPT-AKI/Server.git --branch master /workspace/SPT-AKI/Build/server + + cd /workspace/SPT-AKI/Build/server + git checkout ${GITHUB_SHA} + shell: bash + + - name: Pull LFS Files + run: | + cd /workspace/SPT-AKI/Build/server + git lfs pull + git lfs ls-files + shell: bash + + - name: Cache NPM Dependencies + id: cache-npm-dependencies + uses: actions/cache@v4 + with: + path: /workspace/SPT-AKI/Build/server/project/node_modules + key: npm-dependencies-${{ hashFiles('/workspace/SPT-AKI/Build/server/project/package.json') }} + + - name: Install NPM Dependencies + if: steps.cache-npm-dependencies.outputs.cache-hit != 'true' + run: | + cd /workspace/SPT-AKI/Build/server/project + rm -rf node_modules + npm install + shell: bash + + - name: Check Code Style + id: check-code-style + run: | + cd /workspace/SPT-AKI/Build/server/project + npm run style + shell: bash + + - name: Fix Instructions + if: failure() && steps.check-code-style.outcome == 'failure' + run: | + echo "The code style check has failed. To fix this, please ensure your code adheres to the project's style guidelines.\n\n" + echo "You can automatically format the project code by running the following command from within the `project` directory.\n`npm run style:fix`\n\n" + echo "To automatically format code on-save in your IDE, please install the recommended VSCode plugins listed within the `project/Server.code-workspace` file." + echo "Thank you for keeping our house clean. ♥" + shell: bash diff --git a/.gitea/workflows/run-tests.yaml b/.gitea/workflows/run-test.yaml similarity index 68% rename from .gitea/workflows/run-tests.yaml rename to .gitea/workflows/run-test.yaml index 8094e898..3b2ca152 100644 --- a/.gitea/workflows/run-tests.yaml +++ b/.gitea/workflows/run-test.yaml @@ -44,7 +44,16 @@ jobs: shell: bash - name: Run Tests + id: run-tests run: | cd /workspace/SPT-AKI/Build/server/project npm run test shell: bash + + - name: Fix Instructions + if: failure() && steps.run-tests.outcome == 'failure' + run: | + echo "Automated tests have failed. This could point to an issue with the commited code, or an updated test that has yet to be updated. Please look into resolving these test failures.\n\n" + echo "The testing suite has a GUI to aid in writing tests. You can launch this by running the following command from within the `project` directory.\n`npm run test:ui`\n\n" + echo "A test written today is a bug prevented tomorrow.™" + shell: bash From eb57a5e01fd8d2d5071f94931eea564e9d3a64a5 Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 19:47:11 -0400 Subject: [PATCH 043/104] Workflows - Fixes Fix Instructions --- .gitea/workflows/run-lint.yaml | 5 ++--- .gitea/workflows/run-style.yaml | 7 +++---- .gitea/workflows/run-test.yaml | 5 ++--- 3 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/run-lint.yaml b/.gitea/workflows/run-lint.yaml index cafb7064..4a2a5eaf 100644 --- a/.gitea/workflows/run-lint.yaml +++ b/.gitea/workflows/run-lint.yaml @@ -53,7 +53,6 @@ jobs: - name: Fix Instructions if: failure() && steps.run-tests.outcome == 'failure' run: | - echo "Code linting has failed. The linter has been configured to look for coding errors, defects, and questionable constructs. Please look into resolving these errors.\n\n" - echo "The linter may be able to resolve some of these issues automatically. You can launch the automatic fixer by running the following command from within the `project` directory. Anything not resolved by running this command must be resolved manually.\n`npm run lint:fix`\n\n" - echo "Consistency is professionalism.™" + echo -e "Code linting has failed. The linter has been configured to look for coding errors, defects, and questionable patterns. Please look into resolving these errors. The linter may be able to resolve some of these issues automatically. You can launch the automatic fixer by running the following command from within the 'project' directory. Anything not resolved by running this command must be resolved manually.\nnpm run lint:fix\n\n" + echo -e "Consistency is professionalism.™" shell: bash diff --git a/.gitea/workflows/run-style.yaml b/.gitea/workflows/run-style.yaml index 58021c36..3c4c507a 100644 --- a/.gitea/workflows/run-style.yaml +++ b/.gitea/workflows/run-style.yaml @@ -53,8 +53,7 @@ jobs: - name: Fix Instructions if: failure() && steps.check-code-style.outcome == 'failure' run: | - echo "The code style check has failed. To fix this, please ensure your code adheres to the project's style guidelines.\n\n" - echo "You can automatically format the project code by running the following command from within the `project` directory.\n`npm run style:fix`\n\n" - echo "To automatically format code on-save in your IDE, please install the recommended VSCode plugins listed within the `project/Server.code-workspace` file." - echo "Thank you for keeping our house clean. ♥" + echo -e "The code style check has failed. To fix this, please ensure your code adheres to the project's style guidelines. You can automatically format the project code by running the following command from within the 'project' directory.\nnpm run style:fix\n\n" + echo -e "To automatically format code on-save in your IDE, please install the recommended VSCode plugins listed within the 'project/Server.code-workspace' file." + echo -e "Thank you for keeping our house clean. ♥" shell: bash diff --git a/.gitea/workflows/run-test.yaml b/.gitea/workflows/run-test.yaml index 3b2ca152..59d19225 100644 --- a/.gitea/workflows/run-test.yaml +++ b/.gitea/workflows/run-test.yaml @@ -53,7 +53,6 @@ jobs: - name: Fix Instructions if: failure() && steps.run-tests.outcome == 'failure' run: | - echo "Automated tests have failed. This could point to an issue with the commited code, or an updated test that has yet to be updated. Please look into resolving these test failures.\n\n" - echo "The testing suite has a GUI to aid in writing tests. You can launch this by running the following command from within the `project` directory.\n`npm run test:ui`\n\n" - echo "A test written today is a bug prevented tomorrow.™" + echo -e "Automated tests have failed. This could point to an issue with the commited code, or an updated test that has yet to be updated. Please look into resolving these test failures. The testing suite has a GUI to aid in writing tests. You can launch this by running the following command from within the 'project' directory.\nnpm run test:ui\n\n" + echo -e "A test written today is a bug prevented tomorrow.™" shell: bash From dfaed660ed53b1971203edb325ab1943478cdc88 Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 19:56:01 -0400 Subject: [PATCH 044/104] Workflows - Minor Formatting --- .gitea/workflows/run-lint.yaml | 2 +- .gitea/workflows/run-style.yaml | 4 ++-- .gitea/workflows/run-test.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/run-lint.yaml b/.gitea/workflows/run-lint.yaml index 4a2a5eaf..2891f190 100644 --- a/.gitea/workflows/run-lint.yaml +++ b/.gitea/workflows/run-lint.yaml @@ -53,6 +53,6 @@ jobs: - name: Fix Instructions if: failure() && steps.run-tests.outcome == 'failure' run: | - echo -e "Code linting has failed. The linter has been configured to look for coding errors, defects, and questionable patterns. Please look into resolving these errors. The linter may be able to resolve some of these issues automatically. You can launch the automatic fixer by running the following command from within the 'project' directory. Anything not resolved by running this command must be resolved manually.\nnpm run lint:fix\n\n" + echo -e "Code linting has failed. The linter has been configured to look for coding errors, defects, and questionable patterns. Please look into resolving these errors. The linter may be able to resolve some of these issues automatically. You can launch the automatic fixer by running the following command from within the 'project' directory. Anything not resolved by running this command must be resolved manually.\n\nnpm run lint:fix\n" echo -e "Consistency is professionalism.™" shell: bash diff --git a/.gitea/workflows/run-style.yaml b/.gitea/workflows/run-style.yaml index 3c4c507a..4a5a24ab 100644 --- a/.gitea/workflows/run-style.yaml +++ b/.gitea/workflows/run-style.yaml @@ -53,7 +53,7 @@ jobs: - name: Fix Instructions if: failure() && steps.check-code-style.outcome == 'failure' run: | - echo -e "The code style check has failed. To fix this, please ensure your code adheres to the project's style guidelines. You can automatically format the project code by running the following command from within the 'project' directory.\nnpm run style:fix\n\n" - echo -e "To automatically format code on-save in your IDE, please install the recommended VSCode plugins listed within the 'project/Server.code-workspace' file." + echo -e "The code style check has failed. To fix this, please ensure your code adheres to the project's style guidelines. You can automatically format the project code by running the following command from within the 'project' directory.\n\nnpm run style:fix\n" + echo -e "To automatically format code on-save in your IDE, please install the recommended VSCode plugins listed within the 'project/Server.code-workspace' file.\n" echo -e "Thank you for keeping our house clean. ♥" shell: bash diff --git a/.gitea/workflows/run-test.yaml b/.gitea/workflows/run-test.yaml index 59d19225..73a51cf7 100644 --- a/.gitea/workflows/run-test.yaml +++ b/.gitea/workflows/run-test.yaml @@ -53,6 +53,6 @@ jobs: - name: Fix Instructions if: failure() && steps.run-tests.outcome == 'failure' run: | - echo -e "Automated tests have failed. This could point to an issue with the commited code, or an updated test that has yet to be updated. Please look into resolving these test failures. The testing suite has a GUI to aid in writing tests. You can launch this by running the following command from within the 'project' directory.\nnpm run test:ui\n\n" + echo -e "Automated tests have failed. This could point to an issue with the commited code, or an updated test that has yet to be updated. Please look into resolving these test failures. The testing suite has a GUI to aid in writing tests. You can launch this by running the following command from within the 'project' directory.\n\nnpm run test:ui\n" echo -e "A test written today is a bug prevented tomorrow.™" shell: bash From 85aec72a634f5c1f4888dc48c03b9a9c3357e85f Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 23:06:40 -0400 Subject: [PATCH 045/104] Test - Updates the experince needed to reach level 79 --- project/tests/services/PlayerService.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/tests/services/PlayerService.test.ts b/project/tests/services/PlayerService.test.ts index 6c731861..fd03934c 100644 --- a/project/tests/services/PlayerService.test.ts +++ b/project/tests/services/PlayerService.test.ts @@ -61,11 +61,11 @@ describe("PlayerService", () => expect(result).toBe(25); }); - it("should return 79 when player xp is 68,206,066", () => + it("should return 79 when player xp is 81,126,895", () => { const playerProfile = { Info: { - Experience: 68206066, // Via wiki: https://escapefromtarkov.fandom.com/wiki/Character_skills#Levels + Experience: 81126895, // Via wiki: https://escapefromtarkov.fandom.com/wiki/Character_skills#Levels }, }; From 68c2358b08551361fbf8bd9ba1d52310d8cd9702 Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 23:07:41 -0400 Subject: [PATCH 046/104] Test - Adds missing property to mock of BotGenerationDetails --- project/tests/generators/BotLevelGenerator.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/project/tests/generators/BotLevelGenerator.test.ts b/project/tests/generators/BotLevelGenerator.test.ts index 8d8815a6..1def6ee4 100644 --- a/project/tests/generators/BotLevelGenerator.test.ts +++ b/project/tests/generators/BotLevelGenerator.test.ts @@ -35,6 +35,7 @@ describe("BotLevelGenerator", () => side: "", playerLevel: 5, botRelativeLevelDeltaMax: 0, + botRelativeLevelDeltaMin: 0, botCountToGenerate: 0, botDifficulty: "", isPlayerScav: false, From 0ec0b7a40ca9c9cd8c2b6d94e86e2dc53de05ba5 Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 23:10:17 -0400 Subject: [PATCH 047/104] Test - Updates fromRUB tests to use mocks --- project/tests/helpers/HandbookHelper.test.ts | 22 +++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/project/tests/helpers/HandbookHelper.test.ts b/project/tests/helpers/HandbookHelper.test.ts index 0747f1a7..9509a02f 100644 --- a/project/tests/helpers/HandbookHelper.test.ts +++ b/project/tests/helpers/HandbookHelper.test.ts @@ -88,10 +88,26 @@ describe("HandbookHelper", () => expect(result).toBe(0); }); - it("should return roughly 1380 roubles when given 10 euros ", () => + it("should lookup currency value and multiply the input by the value", () => { - const result = handbookHelper.inRUB(10, Money.EUROS); - expect(result).closeTo(1379, 10); + // Mock the getTemplatePrice method to return a value of 100 roubles + const getTemplatePriceSpy = vi.spyOn(handbookHelper, "getTemplatePrice").mockReturnValue(100); + + const result = handbookHelper.inRUB(5, Money.EUROS); + + expect(getTemplatePriceSpy).toHaveBeenCalled(); + expect(result).toBe(500); + }); + + it("should always return a whole number", () => + { + // Mock the getTemplatePrice method to return a value of 100 roubles + const getTemplatePriceSpy = vi.spyOn(handbookHelper, "getTemplatePrice").mockReturnValue(123.321); + + const result = handbookHelper.inRUB(12.21, Money.EUROS); + + expect(getTemplatePriceSpy).toHaveBeenCalled(); + expect(result).toBe(1506); }); }); From c123c034cf4e470f08afc8f25cce70cc49aa047a Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 23:13:46 -0400 Subject: [PATCH 048/104] Test - Updates ItemHelper Tests - Removes tests for a method that no longer exists: `generateItemsFromStackSlot` - Updates a test to use a mock to ensure test data reliability --- project/tests/helpers/ItemHelper.test.ts | 68 +++++------------------- 1 file changed, 13 insertions(+), 55 deletions(-) diff --git a/project/tests/helpers/ItemHelper.test.ts b/project/tests/helpers/ItemHelper.test.ts index 8e875727..53bf3e71 100644 --- a/project/tests/helpers/ItemHelper.test.ts +++ b/project/tests/helpers/ItemHelper.test.ts @@ -275,44 +275,6 @@ describe("ItemHelper", () => }); }); - describe("generateItemsFromStackSlot", () => - { - it("should generate valid StackSlot item for an AmmoBox", () => - { - const ammoBox = itemHelper.getItem("57372c89245977685d4159b1"); // "5.45x39mm BT gs ammo pack (30 pcs)" - const parentId = container.resolve("HashUtil").generate(); - - const result = itemHelper.generateItemsFromStackSlot(ammoBox[1], parentId); - - expect(result.length).toBe(1); - expect(result[0]._id).toBeDefined(); - expect(result[0]._tpl).toBe(ammoBox[1]._props.StackSlots[0]._props.filters[0].Filter[0]); - expect(result[0].parentId).toBe(parentId); - expect(result[0].slotId).toBe("cartridges"); - expect(result[0].location).toBe(0); - expect(result[0].upd.StackObjectsCount).toBe(ammoBox[1]._props.StackSlots[0]._max_count); - }); - - it("should log a warning if no IDs are found in Filter", () => - { - const ammoBox = itemHelper.getItem("57372c89245977685d4159b1"); // "5.45x39mm BT gs ammo pack (30 pcs)" - ammoBox[1]._props.StackSlots[0]._props.filters[0].Filter = []; // Empty the Filter array. - - const parentId = container.resolve("HashUtil").generate(); - - // Spy on the logger's warning method and mock its implementation to prevent it from being actually called. - const loggerWarningSpy = vi.spyOn((itemHelper as any).logger, "warning").mockImplementation(() => - {}); - - itemHelper.generateItemsFromStackSlot(ammoBox[1], parentId); - - expect(loggerWarningSpy).toHaveBeenCalled(); - - // Restore the original behavior - loggerWarningSpy.mockRestore(); - }); - }); - describe("getItems", () => { it("should call databaseServer.getTables() and jsonUtil.clone() methods", () => @@ -451,12 +413,16 @@ describe("ItemHelper", () => const itemId = container.resolve("HashUtil").generate(); const item: Item = { _id: itemId, - _tpl: "5b40e1525acfc4771e1c6611", // "HighCom Striker ULACH IIIA helmet (Black)" + _tpl: "5b40e1525acfc4771e1c6611", upd: { Repairable: { Durability: 19, MaxDurability: 38 } }, }; + const getRepairableItemQualityValueSpt = vi.spyOn(itemHelper as any, "getRepairableItemQualityValue") + .mockReturnValue(0.5); + const result = itemHelper.getItemQualityModifier(item); + expect(getRepairableItemQualityValueSpt).toHaveBeenCalled(); expect(result).toBe(0.5); }); @@ -556,35 +522,27 @@ describe("ItemHelper", () => describe("getRepairableItemQualityValue", () => { - it("should return the correct quality value for armor items", () => + it("should return the correct quality value for armour items", () => { - const armor = itemHelper.getItem("5648a7494bdc2d9d488b4583")[1]; // "PACA Soft Armor" + const armour = itemHelper.getItem("5648a7494bdc2d9d488b4583")[1]; const repairable: Repairable = { Durability: 25, MaxDurability: 50 }; - const item: Item = { // Not used for armor, but required for the method. - _id: "", - _tpl: "", - }; + const mockItem: Item = { _id: "", _tpl: "" }; - // Cast the method to any to allow access to private/protected method. - const result = (itemHelper as any).getRepairableItemQualityValue(armor, repairable, item); + const result = (itemHelper as any).getRepairableItemQualityValue(armour, repairable, mockItem); expect(result).toBe(0.5); }); - it("should not use the Repairable MaxDurability property for armor", () => + it("should not use the Repairable MaxDurability property for armour", () => { - const armor = itemHelper.getItem("5648a7494bdc2d9d488b4583")[1]; // "PACA Soft Armor" + const armour = itemHelper.getItem("5648a7494bdc2d9d488b4583")[1]; const repairable: Repairable = { Durability: 25, MaxDurability: 1000, // This should be ignored. }; - const item: Item = { // Not used for armor, but required for the method. - _id: "", - _tpl: "", - }; + const mockItem: Item = { _id: "", _tpl: "" }; - // Cast the method to any to allow access to private/protected method. - const result = (itemHelper as any).getRepairableItemQualityValue(armor, repairable, item); + const result = (itemHelper as any).getRepairableItemQualityValue(armour, repairable, mockItem); expect(result).toBe(0.5); }); From 1cd4b055eb2c60267181f5a62e564035d86716ea Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 23:15:28 -0400 Subject: [PATCH 049/104] Test - Updates ItemBaseClassService tests to inline with recent code changes --- project/src/services/ItemBaseClassService.ts | 15 ++++++++-- .../services/ItemBaseClassService.test.ts | 29 ++++++++++++++----- 2 files changed, 34 insertions(+), 10 deletions(-) diff --git a/project/src/services/ItemBaseClassService.ts b/project/src/services/ItemBaseClassService.ts index fc72a69f..94259cea 100644 --- a/project/src/services/ItemBaseClassService.ts +++ b/project/src/services/ItemBaseClassService.ts @@ -91,8 +91,9 @@ export class ItemBaseClassService return false; } - // Edge case, the cache is only generated for items with `_type === "Item"`, so return false for any other type - if (this.items[itemTpl]?._type !== "Item") + // The cache is only generated for item templates with `_type === "Item"`, so return false for any other type, + // including item templates that simply don't exist. + if (!this.cachedItemIsOfItemType(itemTpl)) { return false; } @@ -114,6 +115,16 @@ export class ItemBaseClassService return this.itemBaseClassesCache[itemTpl].some((x) => baseClasses.includes(x)); } + /** + * Check if cached item template is of type Item + * @param itemTemplateId item to check + * @returns true if item is of type Item + */ + private cachedItemIsOfItemType(itemTemplateId: string): boolean + { + return this.items[itemTemplateId]?._type === "Item"; + } + /** * Get base classes item inherits from * @param itemTpl item to get base classes for diff --git a/project/tests/services/ItemBaseClassService.test.ts b/project/tests/services/ItemBaseClassService.test.ts index eee0d619..1fedba8d 100644 --- a/project/tests/services/ItemBaseClassService.test.ts +++ b/project/tests/services/ItemBaseClassService.test.ts @@ -42,23 +42,23 @@ describe("ItemBaseClassService", () => it("should return false when the base item type is passed in", () => { // Remove item from base cache - const result = itemBaseClassService.itemHasBaseClass("54009119af1c881c07000029", []); // "Base item" + const result = itemBaseClassService.itemHasBaseClass("54009119af1c881c07000029", []); expect(result).toBe(false); }); - it("should return true when an item is passed in", () => + it("should return true when a med item is passed in with the meds base class", () => { const salewaTpl = "544fb45d4bdc2dee738b4568"; // Remove item from base cache delete itemBaseClassService.itemBaseClassesCache[salewaTpl]; - const result = itemBaseClassService.itemHasBaseClass(salewaTpl, ["543be5664bdc2dd4348b4569"]); // "Meds" type + const result = itemBaseClassService.itemHasBaseClass(salewaTpl, ["543be5664bdc2dd4348b4569"]); expect(result).toBe(true); }); - it("should return true when an item and 2 matching base classes are passed in", () => + it("should return true when an item and two matching base classes are passed in", () => { const salewaTpl = "544fb45d4bdc2dee738b4568"; @@ -67,7 +67,7 @@ describe("ItemBaseClassService", () => const result = itemBaseClassService.itemHasBaseClass(salewaTpl, [ "543be5664bdc2dd4348b4569", "54009119af1c881c07000029", - ]); // "Meds" and "Item" type + ]); // "Meds" and "Item" base classes expect(result).toBe(true); }); @@ -84,15 +84,28 @@ describe("ItemBaseClassService", () => delete itemBaseClassService.itemBaseClassesCache[salewaTpl]; // Perform check - const result = itemBaseClassService.itemHasBaseClass(salewaTpl, ["543be5664bdc2dd4348b4569"]); // "Meds" type + const result = itemBaseClassService.itemHasBaseClass(salewaTpl, ["543be5664bdc2dd4348b4569"]); expect(result).toBe(true); expect(hydrateItemBaseClassCacheSpy).toHaveBeenCalled(); }); - it("should throw an exception when an invalid item is passed in", () => + it("should return false for any item template ID that does not exist", () => { - expect(() => itemBaseClassService.itemHasBaseClass("fakeTpl", ["543be5664bdc2dd4348b4569"])).toThrowError(); + const result = itemBaseClassService.itemHasBaseClass("not-a-valid-template-id", [ + "543be5664bdc2dd4348b4569", + ]); + + expect(result).toBe(false); + }); + + it("should return false for any item template ID without the Item type ", () => + { + const result = itemBaseClassService.itemHasBaseClass("54009119af1c881c07000029", [ + "543be5664bdc2dd4348b4569", + ]); + + expect(result).toBe(false); }); }); From fe7ef06c6c03b745230ed4ea4ec7fe037732aede Mon Sep 17 00:00:00 2001 From: Dev Date: Thu, 11 Apr 2024 16:29:52 +0100 Subject: [PATCH 050/104] Dont force regen stims into PMC secures, may cause problems --- project/src/generators/BotLootGenerator.ts | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/project/src/generators/BotLootGenerator.ts b/project/src/generators/BotLootGenerator.ts index f27229bf..08ae3c6d 100644 --- a/project/src/generators/BotLootGenerator.ts +++ b/project/src/generators/BotLootGenerator.ts @@ -310,19 +310,6 @@ export class BotLootGenerator true, ); - // eTG regen stim - this.addLootFromPool( - // eslint-disable-next-line @typescript-eslint/naming-convention - { "5c0e534186f7747fa1419867": 1 }, - [EquipmentSlots.SECURED_CONTAINER], - 2, - botInventory, - botRole, - null, - 0, - true, - ); - // AFAK this.addLootFromPool( // eslint-disable-next-line @typescript-eslint/naming-convention From 7d3eaf735a78920d3cd0bc5546101bba7d430bbf Mon Sep 17 00:00:00 2001 From: Refringe Date: Thu, 11 Apr 2024 20:56:55 -0400 Subject: [PATCH 051/104] Test - PaymentService - Refactored payMoney test Refactored the payMoney test to work with 3.8. The output is no longer returned, but updated by reference. --- project/tests/services/PaymentService.test.ts | 56 ++++++++++--------- 1 file changed, 29 insertions(+), 27 deletions(-) diff --git a/project/tests/services/PaymentService.test.ts b/project/tests/services/PaymentService.test.ts index cea1dae3..9f97f17c 100644 --- a/project/tests/services/PaymentService.test.ts +++ b/project/tests/services/PaymentService.test.ts @@ -71,48 +71,50 @@ describe("PaymentService", () => const itemEventRouterResponse = { warnings: [], - profileChanges: { sessionID: { _id: sessionID, items: { new: [], change: [], del: [] } } }, + profileChanges: { [sessionID]: { _id: sessionID, items: { new: [], change: [], del: [] } } }, } as unknown as IItemEventRouterResponse; // Mock the logger debug method to return void. - vi.spyOn((paymentService as any).logger, "debug").mockImplementation(() => - {}); + vi.spyOn((paymentService as any).logger, "debug").mockResolvedValue(undefined); // Mock the trader helper to return a trader with the currency of Roubles. - const traderHelperGetTraderSpy = vi.spyOn((paymentService as any).traderHelper, "getTrader") - .mockReturnValue({ tid: traderId, currency: "RUB" } as unknown as ITraderBase); + const getTraderSpy = vi.spyOn((paymentService as any).traderHelper, "getTrader").mockReturnValue( + { tid: traderId, currency: "RUB" } as unknown as ITraderBase, + ); // Mock the addPaymentToOutput method to subtract the item cost from the money stack. - const addPaymentToOutputSpy = vi.spyOn(paymentService as any, "addPaymentToOutput").mockImplementation(() => - { - moneyItem.upd.StackObjectsCount -= costAmount; - return { warnings: [], profileChanges: { [sessionID]: { items: { change: [moneyItem] } } } }; - }); + const addPaymentToOutputSpy = vi.spyOn(paymentService as any, "addPaymentToOutput").mockImplementation( + ( + pmcData: IPmcData, + currencyTpl: string, + amountToPay: number, + sessionIdentifier: string, + output: IItemEventRouterResponse, + ) => + { + moneyItem.upd.StackObjectsCount -= costAmount; + output.profileChanges[sessionIdentifier].items.change.push(moneyItem); + }, + ); // Mock the traderHelper lvlUp method to return void. - const traderHelperLvlUpSpy = vi.spyOn((paymentService as any).traderHelper, "lvlUp").mockImplementation( - () => - {}, - ); + const lvlUpSpy = vi.spyOn((paymentService as any).traderHelper, "lvlUp").mockResolvedValue(undefined); - const output = paymentService.payMoney( - pmcData, - processBuyTradeRequestData, - sessionID, - itemEventRouterResponse, - ); + paymentService.payMoney(pmcData, processBuyTradeRequestData, sessionID, itemEventRouterResponse); // Check for absence of output warnings. - expect(output.warnings).toHaveLength(0); + expect(itemEventRouterResponse.warnings).toHaveLength(0); // Check that the currency change was correctly handled. - expect(output.profileChanges[sessionID].items.change).toHaveLength(1); - expect(output.profileChanges[sessionID].items.change[0]._id).toBe(costItemId); - expect(output.profileChanges[sessionID].items.change[0]._tpl).toBe(costItemTpl); - expect(output.profileChanges[sessionID].items.change[0].upd.StackObjectsCount).toBe(costAmount * 3); + expect(itemEventRouterResponse.profileChanges[sessionID].items.change).toHaveLength(1); + expect(itemEventRouterResponse.profileChanges[sessionID].items.change[0]._id).toBe(costItemId); + expect(itemEventRouterResponse.profileChanges[sessionID].items.change[0]._tpl).toBe(costItemTpl); + expect(itemEventRouterResponse.profileChanges[sessionID].items.change[0].upd.StackObjectsCount).toBe( + costAmount * 3, + ); // Check if mocked methods were called as expected. - expect(traderHelperGetTraderSpy).toBeCalledTimes(1); + expect(getTraderSpy).toBeCalledTimes(1); expect(addPaymentToOutputSpy).toBeCalledWith( expect.anything(), costItemTpl, @@ -120,7 +122,7 @@ describe("PaymentService", () => sessionID, expect.anything(), ); - expect(traderHelperLvlUpSpy).toBeCalledTimes(1); + expect(lvlUpSpy).toBeCalledTimes(1); }); }); From 5aebbb9c86cce909dc1d0e764cb913300b3ada4c Mon Sep 17 00:00:00 2001 From: Refringe Date: Thu, 11 Apr 2024 21:04:06 -0400 Subject: [PATCH 052/104] Test - ItemHelper - 3.8 Refactor - Removes unused code from getRepairableItemQualityValue in itemHelper - Updated tests for getRepairableItemQualityValue to no longer assume a special calculation for armour - Added tests for adoptOrphanedItems (moved from insuranceController) --- project/src/helpers/ItemHelper.ts | 11 +-- project/tests/helpers/ItemHelper.test.ts | 97 +++++++++++++++++------- 2 files changed, 72 insertions(+), 36 deletions(-) diff --git a/project/src/helpers/ItemHelper.ts b/project/src/helpers/ItemHelper.ts index a5d16f6c..e39f69a6 100644 --- a/project/src/helpers/ItemHelper.ts +++ b/project/src/helpers/ItemHelper.ts @@ -429,19 +429,12 @@ export class ItemHelper if (repairable.Durability > repairable.MaxDurability) { this.logger.warning( - `Max durability: ${repairable.MaxDurability} for item id: ${item._id} was below Durability: ${repairable.Durability}, adjusting values to match`, + `Max durability: ${repairable.MaxDurability} for item id: ${item._id} was below durability: ${repairable.Durability}, adjusting values to match`, ); repairable.MaxDurability = repairable.Durability; } - // Armor - if (itemDetails._props.armorClass) - { - return repairable.MaxDurability / itemDetails._props.MaxDurability; - } - - // Weapon - // Get max dura from props, if it isnt there use repairable max dura value + // Attempt to get the max durability from _props. If not available, use Repairable max durability value instead. const maxDurability = (itemDetails._props.MaxDurability) ? itemDetails._props.MaxDurability : repairable.MaxDurability; diff --git a/project/tests/helpers/ItemHelper.test.ts b/project/tests/helpers/ItemHelper.test.ts index 53bf3e71..a732ffe1 100644 --- a/project/tests/helpers/ItemHelper.test.ts +++ b/project/tests/helpers/ItemHelper.test.ts @@ -522,32 +522,7 @@ describe("ItemHelper", () => describe("getRepairableItemQualityValue", () => { - it("should return the correct quality value for armour items", () => - { - const armour = itemHelper.getItem("5648a7494bdc2d9d488b4583")[1]; - const repairable: Repairable = { Durability: 25, MaxDurability: 50 }; - const mockItem: Item = { _id: "", _tpl: "" }; - - const result = (itemHelper as any).getRepairableItemQualityValue(armour, repairable, mockItem); - - expect(result).toBe(0.5); - }); - - it("should not use the Repairable MaxDurability property for armour", () => - { - const armour = itemHelper.getItem("5648a7494bdc2d9d488b4583")[1]; - const repairable: Repairable = { - Durability: 25, - MaxDurability: 1000, // This should be ignored. - }; - const mockItem: Item = { _id: "", _tpl: "" }; - - const result = (itemHelper as any).getRepairableItemQualityValue(armour, repairable, mockItem); - - expect(result).toBe(0.5); - }); - - it("should return the correct quality value for weapon items", () => + it("should return the correct quality value", () => { const weapon = itemHelper.getItem("5a38e6bac4a2826c6e06d79b")[1]; // "TOZ-106 20ga bolt-action shotgun" const repairable: Repairable = { Durability: 50, MaxDurability: 100 }; @@ -559,7 +534,7 @@ describe("ItemHelper", () => expect(result).toBe(Math.sqrt(0.5)); }); - it("should fall back to using Repairable MaxDurability for weapon items", () => + it("should fall back to using Repairable MaxDurability", () => { const weapon = itemHelper.getItem("5a38e6bac4a2826c6e06d79b")[1]; // "TOZ-106 20ga bolt-action shotgun" weapon._props.MaxDurability = undefined; // Remove the MaxDurability property. @@ -899,6 +874,74 @@ describe("ItemHelper", () => }); }); + describe("adoptOrphanedItems", () => + { + it("should adopt orphaned items by resetting them as base-level items", () => + { + const rootId = "root-id"; + const items = [ + { _id: "first-id", _tpl: "anything1", parentId: "does-not-exist", slotId: "main" }, + { _id: "second-id", _tpl: "anything2", parentId: "first-id", slotId: "slot-id" }, + { _id: "third-id", _tpl: "anything3", parentId: "second-id", slotId: "slot-id" }, + { _id: "forth-id", _tpl: "anything4", parentId: "third-id", slotId: "slot-id" }, + ]; + + // Iterate over the items and find the individual orphaned item. + const orphanedItem = items.find((item) => !items.some((parent) => parent._id === item.parentId)); + + // Setup tests to verify that the orphaned item is in fact orphaned. + expect(orphanedItem.parentId).toBe(items[0].parentId); + expect(orphanedItem.slotId).toBe(items[0].slotId); + + // Execute the method. + (itemHelper as any).adoptOrphanedItems(rootId, items); + + // Verify that the orphaned items have been adopted. + expect(orphanedItem.parentId).toBe(rootId); + expect(orphanedItem.slotId).toBe("hideout"); + }); + + it("should not adopt items that are not orphaned", () => + { + const rootId = "root-id"; + const items = [ + { _id: "first-id", _tpl: "anything1", parentId: rootId, slotId: "hideout" }, + { _id: "second-id", _tpl: "anything2", parentId: "first-id", slotId: "slot-id" }, + { _id: "third-id", _tpl: "anything3", parentId: "second-id", slotId: "slot-id" }, + { _id: "forth-id", _tpl: "anything4", parentId: "third-id", slotId: "slot-id" }, + ]; + + // Execute the method. + const adopted = (itemHelper as any).adoptOrphanedItems(rootId, items); + + // Verify that the orphaned items have been adopted. + expect(adopted).toStrictEqual(items); + }); + + it("should remove location data from adopted items", () => + { + const rootId = "root-id"; + const items = [ + { + _id: "first-id", + _tpl: "anything1", + parentId: "does-not-exist", + slotId: "main", + location: { x: 1, y: 2, r: 3, isSearched: true }, // Should be removed. + }, + { _id: "second-id", _tpl: "anything2", parentId: "first-id", slotId: "slot-id" }, + { _id: "third-id", _tpl: "anything3", parentId: "second-id", slotId: "slot-id" }, + { _id: "forth-id", _tpl: "anything4", parentId: "third-id", slotId: "slot-id" }, + ]; + + // Execute the method. + (itemHelper as any).adoptOrphanedItems(rootId, items); + + // Verify that the location property has been removed. + expect(items).not.toHaveProperty("location"); + }); + }); + describe("splitStack", () => { it("should return array of two items when provided item over its natural stack size limit", () => From b59ffd8ff2a65427145fd6eaf46c5b643bc51c78 Mon Sep 17 00:00:00 2001 From: Refringe Date: Thu, 11 Apr 2024 21:07:37 -0400 Subject: [PATCH 053/104] Test - InRaidHelper - Removes tests for missing calculateFenceStandingChangeFromKills method - Adds a test for the resetSkillPointsEarnedDuringRaid method --- project/tests/helpers/InRaidHelper.test.ts | 82 +++++++--------------- 1 file changed, 24 insertions(+), 58 deletions(-) diff --git a/project/tests/helpers/InRaidHelper.test.ts b/project/tests/helpers/InRaidHelper.test.ts index d13f2e91..b9bf02ad 100644 --- a/project/tests/helpers/InRaidHelper.test.ts +++ b/project/tests/helpers/InRaidHelper.test.ts @@ -3,7 +3,8 @@ import { container } from "tsyringe"; import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; import { InRaidHelper } from "@spt-aki/helpers/InRaidHelper"; -import { DatabaseServer } from "@spt-aki/servers/DatabaseServer"; + +import { IPmcData } from "@spt-aki/models/eft/common/IPmcData"; describe("InRaidHelper", () => { @@ -19,67 +20,32 @@ describe("InRaidHelper", () => vi.restoreAllMocks(); }); - describe("calculateFenceStandingChangeFromKills", () => + describe("resetSkillPointsEarnedDuringRaid", () => { - it("should return negative value when player kills 2 scavs as scav", () => + it("should reset PointsEarnedDuringSession for each skill in profile", () => { - const fenceStanding = 0; - const postRaidPlayerVictims = [{ Side: "Savage", Role: "assault" }, { Side: "Savage", Role: "assault" }]; // Kills + const mockProfile = { + Skills: { + Common: [ + { Id: "BotReload", Progress: 160.543, PointsEarnedDuringSession: 42, LastAccess: 1712633904 }, + { Id: "BotSound", Progress: 145.6547, PointsEarnedDuringSession: 42, LastAccess: 1712633904 }, + { + Id: "Endurance", + Progress: 223.951157, + PointsEarnedDuringSession: 42, + LastAccess: 1712633904, + }, + { Id: "Strength", Progress: 141.2618, PointsEarnedDuringSession: 42, LastAccess: 1712633904 }, + ], + }, + }; - const databaseServer = container.resolve("DatabaseServer"); - const scavStandingChangeOnKill = databaseServer.getTables().bots.types.assault.experience.standingForKill; + (inraidHelper as any).resetSkillPointsEarnedDuringRaid(mockProfile); - const result = inraidHelper.calculateFenceStandingChangeFromKills(fenceStanding, postRaidPlayerVictims); - expect(result).toBe(scavStandingChangeOnKill * postRaidPlayerVictims.length); // Scav rep loss times number of scav kills - expect(result).lessThan(0); - }); - - it("should return positive value when player kills 2 PMCs of different sides as scav", () => - { - const fenceStanding = 0; - const postRaidPlayerVictims = [{ Side: "Usec", Role: "sptUsec" }, { Side: "Bear", Role: "sptBear" }]; // Kills - - const databaseServer = container.resolve("DatabaseServer"); - const bearStandingChangeOnKill = databaseServer.getTables().bots.types.bear.experience.standingForKill; - const usecStandingChangeOnKill = databaseServer.getTables().bots.types.bear.experience.standingForKill; - - const result = inraidHelper.calculateFenceStandingChangeFromKills(fenceStanding, postRaidPlayerVictims); - expect(result).toBe(bearStandingChangeOnKill + usecStandingChangeOnKill); - expect(result).greaterThan(0); - }); - - it("should return negative value when player kills 1 PMC, 1 boss and 2 scavs as scav", () => - { - const fenceStanding = 0; - const postRaidPlayerVictims = [{ Side: "Usec", Role: "sptUsec" }, { Side: "savage", Role: "assault" }, { - Side: "savage", - Role: "bossBoar", - }, { Side: "savage", Role: "assault" }]; // Kills - - const databaseServer = container.resolve("DatabaseServer"); - const usecStandingChangeOnKill = databaseServer.getTables().bots.types.bear.experience.standingForKill; - const scavStandingChangeOnKill = databaseServer.getTables().bots.types.assault.experience.standingForKill; - const bossBoarStandingChangeOnKill = - databaseServer.getTables().bots.types.bossboar.experience.standingForKill; - - const result = inraidHelper.calculateFenceStandingChangeFromKills(fenceStanding, postRaidPlayerVictims); - expect(result).toBe( - usecStandingChangeOnKill + (scavStandingChangeOnKill * 2) + bossBoarStandingChangeOnKill, - ); - expect(result).lessThan(0); - }); - - it("should return 0 when player kills bot with undefined standing as scav", () => - { - const fenceStanding = 0; - const postRaidPlayerVictims = [{ Side: "savage", Role: "testRole" }]; // Kills - - // Fake getFenceStandingChangeForKillAsScav() returning null - vi.spyOn(inraidHelper, "getFenceStandingChangeForKillAsScav").mockReturnValueOnce(null).mockReturnValueOnce( - null, - ); - const result = inraidHelper.calculateFenceStandingChangeFromKills(fenceStanding, postRaidPlayerVictims); - expect(result).toBe(0); + for (const skill of mockProfile.Skills.Common) + { + expect(skill.PointsEarnedDuringSession).toBe(0); + } }); }); }); From 4a0d3c348736ec706b8e74c6c94d7e9dd0f62533 Mon Sep 17 00:00:00 2001 From: Refringe Date: Thu, 11 Apr 2024 21:12:43 -0400 Subject: [PATCH 054/104] Test - BotGenerator - Refactored - Made the sessionId parameter for generateBotNickname optional and marked it as deprecated, to be removed in v3.9. It wasn't being used. - Refactored the tests for the generateBotNickname method in the BotGenerator class. Mostly to bring it inline with v3.8 changes to the structure of botGenerationDetails. --- project/src/generators/BotGenerator.ts | 10 +- project/tests/generators/BotGenerator.test.ts | 169 ++++++++++++------ 2 files changed, 122 insertions(+), 57 deletions(-) diff --git a/project/src/generators/BotGenerator.ts b/project/src/generators/BotGenerator.ts index 0a9c5f93..dc572a86 100644 --- a/project/src/generators/BotGenerator.ts +++ b/project/src/generators/BotGenerator.ts @@ -258,13 +258,15 @@ export class BotGenerator * @param botJsonTemplate x.json from database * @param botGenerationDetails * @param botRole role of bot e.g. assault + * @param sessionId profile session id * @returns Nickname for bot */ + // TODO: Remove sessionId parameter from this function in v3.9.0 protected generateBotNickname( botJsonTemplate: IBotType, botGenerationDetails: BotGenerationDetails, botRole: string, - sessionId: string, + sessionId?: string, // @deprecated as of v3.8.1 ): string { const isPlayerScav = botGenerationDetails.isPlayerScav; @@ -273,9 +275,9 @@ export class BotGenerator this.randomUtil.getArrayValue(botJsonTemplate.lastName) || "" }`; name = name.trim(); - const playerProfile = this.profileHelper.getPmcProfile(sessionId); - // Simulate bot looking like a Player scav with the pmc name in brackets + // Simulate bot looking like a player scav with the PMC name in brackets. + // E.g. "ScavName (PMCName)" if (botRole === "assault" && this.randomUtil.getChance100(this.botConfig.chanceAssaultScavHasPlayerScavName)) { if (isPlayerScav) @@ -300,7 +302,7 @@ export class BotGenerator if (botGenerationDetails.isPmc && botGenerationDetails.allPmcsHaveSameNameAsPlayer) { const prefix = this.localisationService.getRandomTextThatMatchesPartialKey("pmc-name_prefix_"); - name = `${prefix} ${botGenerationDetails.playerName}`; + name = `${prefix} ${name}`; } return name; diff --git a/project/tests/generators/BotGenerator.test.ts b/project/tests/generators/BotGenerator.test.ts index 05d9f402..6562bcae 100644 --- a/project/tests/generators/BotGenerator.test.ts +++ b/project/tests/generators/BotGenerator.test.ts @@ -55,94 +55,157 @@ describe("BotGenerator", () => describe("generateBotNickname", () => { - it("should return single name `test` for non pscav assault bot name ", () => + it("should choose random firstname for non player scav assault bot", () => { + const botJsonTemplate = { firstName: ["one", "two"], lastName: [] }; + const botGenerationDetails = { isPlayerScav: false, isPmc: true, allPmcsHaveSameNameAsPlayer: false }; + const botRole = "assault"; + botGenerator.botConfig.chanceAssaultScavHasPlayerScavName = 0; const mockPlayerProfile = { Info: { Nickname: "Player Nickname", Level: 1 } }; - vi.spyOn(botGenerator.profileHelper, "getPmcProfile").mockReturnValue(mockPlayerProfile); - const botJsonTemplate = { firstName: ["test"], lastName: [] }; + const result = botGenerator.generateBotNickname(botJsonTemplate, botGenerationDetails, botRole); - const sessionId = "sessionId"; - const isPlayerScav = false; - const botRole = "assault"; - - const result = botGenerator.generateBotNickname(botJsonTemplate, isPlayerScav, botRole, sessionId); - expect(result).toBe("test"); + expect(result).toMatch(/(one|two)/); }); - it("should return `test assault` for non pscav assault bot with `showTypeInNickname` enabled ", () => + it("should choose random lastname for non player scav assault bot", () => { + const botJsonTemplate = { firstName: [], lastName: [["one", "two"]] }; + const botGenerationDetails = { isPlayerScav: false, isPmc: true, allPmcsHaveSameNameAsPlayer: false }; + const botRole = "assault"; + + botGenerator.botConfig.chanceAssaultScavHasPlayerScavName = 0; + + const mockPlayerProfile = { Info: { Nickname: "Player Nickname", Level: 1 } }; + vi.spyOn(botGenerator.profileHelper, "getPmcProfile").mockReturnValue(mockPlayerProfile); + + const result = botGenerator.generateBotNickname(botJsonTemplate, botGenerationDetails, botRole); + + expect(result).toMatch(/(one|two)/); + }); + + it("should choose random firstname and lastname for non player scav assault bot", () => + { + const botJsonTemplate = { firstName: ["first-one", "first-two"], lastName: [["last-one", "last-two"]] }; + const botGenerationDetails = { isPlayerScav: false, isPmc: true, allPmcsHaveSameNameAsPlayer: false }; + const botRole = "assault"; + + botGenerator.botConfig.chanceAssaultScavHasPlayerScavName = 0; + + const mockPlayerProfile = { Info: { Nickname: "Player Nickname", Level: 1 } }; + vi.spyOn(botGenerator.profileHelper, "getPmcProfile").mockReturnValue(mockPlayerProfile); + + const result = botGenerator.generateBotNickname(botJsonTemplate, botGenerationDetails, botRole); + + expect(result).toMatch(/first-(one|two) last-(one|two)/); + }); + + it("should choose random firstname for player scav assault bot", () => + { + const botJsonTemplate = { firstName: ["one", "two"], lastName: [] }; + const botGenerationDetails = { isPlayerScav: true, isPmc: false, allPmcsHaveSameNameAsPlayer: false }; + const botRole = "assault"; + + botGenerator.botConfig.chanceAssaultScavHasPlayerScavName = 0; + + const mockPlayerProfile = { Info: { Nickname: "Player Nickname", Level: 1 } }; + vi.spyOn(botGenerator.profileHelper, "getPmcProfile").mockReturnValue(mockPlayerProfile); + + const result = botGenerator.generateBotNickname(botJsonTemplate, botGenerationDetails, botRole); + + expect(result).toMatch(/(one|two)/); + }); + + it("should choose random lastname for player scav assault bot", () => + { + const botJsonTemplate = { firstName: [], lastName: [["one", "two"]] }; + const botGenerationDetails = { isPlayerScav: true, isPmc: false, allPmcsHaveSameNameAsPlayer: false }; + const botRole = "assault"; + + botGenerator.botConfig.chanceAssaultScavHasPlayerScavName = 0; + + const mockPlayerProfile = { Info: { Nickname: "Player Nickname", Level: 1 } }; + vi.spyOn(botGenerator.profileHelper, "getPmcProfile").mockReturnValue(mockPlayerProfile); + + const result = botGenerator.generateBotNickname(botJsonTemplate, botGenerationDetails, botRole); + + expect(result).toMatch(/(one|two)/); + }); + + it("should choose random firstname and lastname for player scav assault bot", () => + { + const botJsonTemplate = { firstName: ["first-one", "first-two"], lastName: [["last-one", "last-two"]] }; + const botGenerationDetails = { isPlayerScav: true, isPmc: false, allPmcsHaveSameNameAsPlayer: false }; + const botRole = "assault"; + + botGenerator.botConfig.chanceAssaultScavHasPlayerScavName = 0; + + const mockPlayerProfile = { Info: { Nickname: "Player Nickname", Level: 1 } }; + vi.spyOn(botGenerator.profileHelper, "getPmcProfile").mockReturnValue(mockPlayerProfile); + + const result = botGenerator.generateBotNickname(botJsonTemplate, botGenerationDetails, botRole); + + expect(result).toMatch(/first-(one|two) last-(one|two)/); + }); + + it("should append bot type to end of name when showTypeInNickname option is enabled ", () => + { + const botJsonTemplate = { firstName: ["firstname"], lastName: ["lastname"] }; + const botGenerationDetails = { isPlayerScav: false, isPmc: true, allPmcsHaveSameNameAsPlayer: false }; + const botRole = "assault"; + + botGenerator.botConfig.chanceAssaultScavHasPlayerScavName = 0; botGenerator.botConfig.showTypeInNickname = true; const mockPlayerProfile = { Info: { Nickname: "Player Nickname", Level: 1 } }; vi.spyOn(botGenerator.profileHelper, "getPmcProfile").mockReturnValue(mockPlayerProfile); - const botJsonTemplate = { firstName: ["test"], lastName: [] }; + const result = botGenerator.generateBotNickname(botJsonTemplate, botGenerationDetails, botRole); - const sessionId = "sessionId"; - const isPlayerScav = false; - const botRole = "assault"; - - const result = botGenerator.generateBotNickname(botJsonTemplate, isPlayerScav, botRole, sessionId); - expect(result).toBe("test assault"); + expect(result).toBe("firstname lastname assault"); }); - it("should return name `test Player` for bot with same name as player and `addPrefixToSameNamePMCAsPlayerChance` 100%", () => + it("should return name prefix for PMC bot with same name as player if allPmcsHaveSameNameAsPlayer is enabled", () => { + const botJsonTemplate = { firstName: ["player"], lastName: [] }; + const botGenerationDetails = { isPlayerScav: false, isPmc: true, allPmcsHaveSameNameAsPlayer: true }; + const botRole = "assault"; + botGenerator.botConfig.showTypeInNickname = false; botGenerator.pmcConfig.addPrefixToSameNamePMCAsPlayerChance = 100; - const mockPlayerProfile = { Info: { Nickname: "Player", Level: 1 } }; - vi.spyOn(botGenerator.profileHelper, "getPmcProfile").mockReturnValue(mockPlayerProfile); - vi.spyOn(botGenerator.localisationService, "getRandomTextThatMatchesPartialKey").mockReturnValue("test"); - - const botJsonTemplate = { firstName: ["Player"], lastName: [] }; - - const sessionId = "sessionId"; - const isPlayerScav = false; - const botRole = "assault"; - - const result = botGenerator.generateBotNickname(botJsonTemplate, isPlayerScav, botRole, sessionId); - expect(result).toBe("test Player"); - }); - - it("should return name `test` for player scav bot", () => - { - botGenerator.botConfig.chanceAssaultScavHasPlayerScavName = 100; - - const mockPlayerProfile = { Info: { Nickname: "Player", Level: 1 } }; + const mockPlayerProfile = { Info: { Nickname: "player", Level: 1 } }; vi.spyOn(botGenerator.profileHelper, "getPmcProfile").mockReturnValue(mockPlayerProfile); - const botJsonTemplate = { firstName: ["test"], lastName: [] }; + const getRandomTextThatMatchesPartialKeySpy = vi.spyOn( + (botGenerator as any).localisationService, + "getRandomTextThatMatchesPartialKey", + ).mockReturnValue("test"); - const sessionId = "sessionId"; - const isPlayerScav = true; - const botRole = "assault"; + const result = botGenerator.generateBotNickname(botJsonTemplate, botGenerationDetails, botRole); - const result = botGenerator.generateBotNickname(botJsonTemplate, isPlayerScav, botRole, sessionId); - expect(result).toBe("test"); + expect(getRandomTextThatMatchesPartialKeySpy).toHaveBeenCalled(); + expect(result).toBe("test player"); }); - it("should return name `test (usec)` for player scav bot", () => + it("should generate PMC name in brackets behind scav name when chanceAssaultScavHasPlayerScavName is enabled", () => { + const botJsonTemplate = { firstName: ["scav"], lastName: [] }; + const botGenerationDetails = { isPlayerScav: false, isPmc: true, allPmcsHaveSameNameAsPlayer: false }; + const botRole = "assault"; + botGenerator.botConfig.chanceAssaultScavHasPlayerScavName = 100; - botGenerator.databaseServer.getTables().bots.types.usec.firstName = ["usec"]; + botGenerator.databaseServer.getTables().bots.types.usec.firstName = ["player"]; botGenerator.databaseServer.getTables().bots.types.bear.firstName = []; const mockPlayerProfile = { Info: { Nickname: "Player", Level: 1 } }; vi.spyOn(botGenerator.profileHelper, "getPmcProfile").mockReturnValue(mockPlayerProfile); - const botJsonTemplate = { firstName: ["test"], lastName: [] }; - - const sessionId = "sessionId"; - const isPlayerScav = false; - const botRole = "assault"; - - const result = botGenerator.generateBotNickname(botJsonTemplate, isPlayerScav, botRole, sessionId); - expect(result).toBe("test (usec)"); + const result = botGenerator.generateBotNickname(botJsonTemplate, botGenerationDetails, botRole); + expect(result).toBe("scav (player)"); }); }); }); From 0e63ced3acb126a92cf5e88c562f1d2d9788857e Mon Sep 17 00:00:00 2001 From: Refringe Date: Thu, 11 Apr 2024 21:17:09 -0400 Subject: [PATCH 055/104] Test - Insurance - Updates for v3.8 - Updates the tests for insuranceController methods for v3.8 - Updates the profileInsurance fixture with updated insurance packages for v3.8 - Updated the profileInsurance factory to remove outdated references as of v3.8 --- .../src/controllers/InsuranceController.ts | 2 +- .../__factories__/ProfileInsurance.factory.ts | 6 +- .../__fixture__/profileInsurance.fixture.ts | 1887 +++++++++++------ .../controllers/InsuranceController.test.ts | 626 +++--- 4 files changed, 1591 insertions(+), 930 deletions(-) diff --git a/project/src/controllers/InsuranceController.ts b/project/src/controllers/InsuranceController.ts index 6e903a5c..b07b7292 100644 --- a/project/src/controllers/InsuranceController.ts +++ b/project/src/controllers/InsuranceController.ts @@ -196,7 +196,7 @@ export class InsuranceController !this.itemHelper.isAttachmentAttached(item) ); - // Process all items that are not attached, attachments. Those are handled separately, by value. + // Process all items that are not attached, attachments; those are handled separately, by value. if (hasRegularItems) { this.processRegularItems(insured, toDelete, parentAttachmentsMap); diff --git a/project/tests/__factories__/ProfileInsurance.factory.ts b/project/tests/__factories__/ProfileInsurance.factory.ts index 83ea5629..66679c11 100644 --- a/project/tests/__factories__/ProfileInsurance.factory.ts +++ b/project/tests/__factories__/ProfileInsurance.factory.ts @@ -24,7 +24,7 @@ export class ProfileInsuranceFactory } /** - * Adjusts the scheduledTime and messageContent.systemData.date and messageContent.systemData.time, otherwise the + * Adjusts the scheduledTime, messageContent.systemData.date, and messageContent.systemData.time, otherwise the * dates in the original fixture will likely be expired. */ public adjustPackageDates(dateInput?: DateInput): this @@ -45,8 +45,8 @@ export class ProfileInsuranceFactory } insurance.scheduledTime = date; - insurance.messageContent.systemData.date = format(date, "MM.dd.yyyy"); - insurance.messageContent.systemData.time = format(date, "HH:mm"); + insurance.systemData.date = format(date, "MM.dd.yyyy"); + insurance.systemData.time = format(date, "HH:mm"); return insurance; }); diff --git a/project/tests/__fixture__/profileInsurance.fixture.ts b/project/tests/__fixture__/profileInsurance.fixture.ts index dd26a560..348194e0 100644 --- a/project/tests/__fixture__/profileInsurance.fixture.ts +++ b/project/tests/__fixture__/profileInsurance.fixture.ts @@ -1,747 +1,1388 @@ import { Insurance } from "@spt-aki/models/eft/profile/IAkiProfile"; export const profileInsuranceFixture: Insurance[] = [{ - scheduledTime: 1698945140, - traderId: "54cb50c76803fa8b248b4571", // Prapor - messageContent: { - templateId: "58fe0e4586f774728248ca13 4", - type: 8, - maxStorageTime: 345600, - text: "", - profileChangeEvents: [], - systemData: { date: "01.11.2023", time: "10:51", location: "factory4_day" }, - }, + scheduledTime: 1712950044.4, + traderId: "54cb50c76803fa8b248b4571", + maxStorageTime: 345600, + systemData: { date: "11.04.2024", time: "18:59", location: "factory4_day" }, + messageType: 8, + messageTemplateId: "58fe0e4586f774728248ca13 0", items: [{ - _id: "3679078e05f5b14466d6a730", - _tpl: "5d6d3716a4b9361bc8618872", - parentId: "5fe49444ae6628187a2e77b8", + _id: "35111c9b72a87b6b7d95ad35", + _tpl: "58948c8e86f77409493f7266", + parentId: "d2b3b859f667d4fd8b35bc96", slotId: "hideout", - upd: { StackObjectsCount: 1, Repairable: { Durability: 55, MaxDurability: 55 } }, + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, }, { - _id: "911a0f04d5d9c7e239807ae0", - _tpl: "5644bd2b4bdc2d3b4c8b4572", - parentId: "5fe49444ae6628187a2e77b8", + _id: "d45436a159654f43ca3aa52f", + _tpl: "5580223e4bdc2d1c128b457f", + parentId: "d2b3b859f667d4fd8b35bc96", slotId: "hideout", - upd: { StackObjectsCount: 1, Repairable: { Durability: 97.7862549, MaxDurability: 100 } }, + upd: { + FireMode: { FireMode: "single" }, + StackObjectsCount: 1, + Repairable: { Durability: 100, MaxDurability: 100 }, + }, }, { - _id: "695b13896108f765e8985698", - _tpl: "5648a69d4bdc2ded0b8b457b", - parentId: "5fe49444ae6628187a2e77b8", + _id: "2c60ad9b6051f059ab796aa6", + _tpl: "5a7ae0c351dfba0017554310", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + }, { + _id: "a5c86cef7d25f57bf0fb593c", + _tpl: "5b432f3d5acfc4704b4a1dfb", + parentId: "d2b3b859f667d4fd8b35bc96", slotId: "hideout", upd: { StackObjectsCount: 1 }, }, { - _id: "bb49d6ceb3e87d8563a06455", - _tpl: "5df8a4d786f77412672a1e3b", - parentId: "5fe49444ae6628187a2e77b8", + _id: "8ac63abcbaf95d09a4d50c02", + _tpl: "5ea17ca01412a1425304d1c0", + parentId: "d2b3b859f667d4fd8b35bc96", slotId: "hideout", upd: { StackObjectsCount: 1 }, }, { - _id: "631f8492de748dec852f7ddf", - _tpl: "64abd93857958b4249003418", - parentId: "5fe49444ae6628187a2e77b8", + _id: "33c99e86f72af509da01dc9a", + _tpl: "657f9a55c6679fefb3051e19", + parentId: "8ac63abcbaf95d09a4d50c02", + slotId: "Helmet_top", + upd: { Repairable: { Durability: 24, MaxDurability: 24 } }, + }, { + _id: "426902ae3d7efa5f8c78acf7", + _tpl: "657f9a94ada5fadd1f07a589", + parentId: "8ac63abcbaf95d09a4d50c02", + slotId: "Helmet_back", + upd: { Repairable: { Durability: 24, MaxDurability: 24 } }, + }, { + _id: "5d2be23efb34d0d1da9d3701", + _tpl: "603648ff5a45383c122086ac", + parentId: "d2b3b859f667d4fd8b35bc96", slotId: "hideout", - upd: { StackObjectsCount: 1, Repairable: { Durability: 49.2865, MaxDurability: 60 } }, - }, { - _id: "a2b0c716162c5e31ec28c55a", - _tpl: "5a16b8a9fcdbcb00165aa6ca", - parentId: "3679078e05f5b14466d6a730", - slotId: "mod_nvg", upd: { StackObjectsCount: 1 }, }, { - _id: "dc565f750342cb2d19eeda06", - _tpl: "5d6d3be5a4b9361bc73bc763", - parentId: "3679078e05f5b14466d6a730", - slotId: "mod_equipment_001", - upd: { StackObjectsCount: 1, Repairable: { Durability: 29.33, MaxDurability: 29.33 } }, - }, { - _id: "e9ff62601669d9e2ea9c2fbb", - _tpl: "5d6d3943a4b9360dbc46d0cc", - parentId: "3679078e05f5b14466d6a730", - slotId: "mod_equipment_002", + _id: "9f601faab37dcc58190898ac", + _tpl: "618bb76513f5097c8d5aa2d5", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", upd: { StackObjectsCount: 1 }, }, { - _id: "ac134d7cf6c9d8e25edd0015", - _tpl: "5c11046cd174af02a012e42b", - parentId: "a2b0c716162c5e31ec28c55a", - slotId: "mod_nvg", + _id: "f74d377063e65d350e0099be", + _tpl: "5c0e5bab86f77461f55ed1f3", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", upd: { StackObjectsCount: 1 }, }, { - _id: "22274b895ecc80d51c3cba1c", - _tpl: "5c110624d174af029e69734c", - parentId: "ac134d7cf6c9d8e25edd0015", - slotId: "mod_nvg", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 }, Togglable: { On: true } }, + _id: "0ab2a81fc507ac846f43b15f", + _tpl: "6571b27a6d84a2b8b6007f92", + parentId: "f74d377063e65d350e0099be", + slotId: "Soft_armor_front", + upd: { Repairable: { Durability: 50.88512, MaxDurability: 52 } }, }, { - _id: "c9278dd8251e99578bf7a274", - _tpl: "59c6633186f7740cf0493bb9", - parentId: "911a0f04d5d9c7e239807ae0", - slotId: "mod_gas_block", + _id: "2ca1b6606d918483ed6b70a5", + _tpl: "6571baa74cb80d995d0a1490", + parentId: "f74d377063e65d350e0099be", + slotId: "Soft_armor_back", + upd: { Repairable: { Durability: 49, MaxDurability: 52 } }, + }, { + _id: "5658a9d10f9d44112a991561", + _tpl: "6571baac6d84a2b8b6007fa3", + parentId: "f74d377063e65d350e0099be", + slotId: "Soft_armor_left", + upd: { Repairable: { Durability: 8, MaxDurability: 8 } }, + }, { + _id: "8d0ba4d12fa601312b71d3d7", + _tpl: "6571bab0f41985531a038091", + parentId: "f74d377063e65d350e0099be", + slotId: "soft_armor_right", + upd: { Repairable: { Durability: 8, MaxDurability: 8 } }, + }, { + _id: "45d19bbff6d42c8f781abb38", + _tpl: "6571babb4076795e5e07383f", + parentId: "f74d377063e65d350e0099be", + slotId: "Collar", + upd: { Repairable: { Durability: 14, MaxDurability: 14 } }, + }, { + _id: "cf2ba30bab4d8e80393a8ffe", + _tpl: "6571bac34076795e5e073843", + parentId: "f74d377063e65d350e0099be", + slotId: "Groin", + upd: { Repairable: { Durability: 10, MaxDurability: 10 } }, + }, { + _id: "a3f866e60ccd9c29e77eb5ef", + _tpl: "6571babf4cb80d995d0a1494", + parentId: "f74d377063e65d350e0099be", + slotId: "Groin_back", + upd: { Repairable: { Durability: 12, MaxDurability: 12 } }, + }, { + _id: "a3287a706e1b77b44db82fa1", + _tpl: "5aa2ba71e5b5b000137b758f", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", upd: { StackObjectsCount: 1 }, }, { - _id: "677c209ebb45445ebb42c405", - _tpl: "5649ab884bdc2ded0b8b457f", - parentId: "911a0f04d5d9c7e239807ae0", - slotId: "mod_muzzle", + _id: "c6ad1be7e8401755de69d6a0", + _tpl: "5d6d2ef3a4b93618084f58bd", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", upd: { StackObjectsCount: 1 }, }, { - _id: "8ada5c9cc26585281577c6eb", - _tpl: "5649ae4a4bdc2d1b2b8b4588", - parentId: "911a0f04d5d9c7e239807ae0", + _id: "7c42d3dce0ddbc4806bce48b", + _tpl: "5894a51286f77426d13baf02", + parentId: "35111c9b72a87b6b7d95ad35", slotId: "mod_pistol_grip", - upd: { StackObjectsCount: 1 }, + upd: {}, }, { - _id: "4bd10f89836fd9f86aedcac1", - _tpl: "5649af094bdc2df8348b4586", - parentId: "911a0f04d5d9c7e239807ae0", + _id: "10b97872c5f4e0e1949a0369", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "35111c9b72a87b6b7d95ad35", + slotId: "mod_magazine", + }, { + _id: "a6cd9986dde4cabddcd2dce2", + _tpl: "5894a5b586f77426d2590767", + parentId: "35111c9b72a87b6b7d95ad35", slotId: "mod_reciever", - upd: { StackObjectsCount: 1 }, + upd: {}, }, { - _id: "8b1327270791b142ac341b03", - _tpl: "5649d9a14bdc2d79388b4580", - parentId: "911a0f04d5d9c7e239807ae0", + _id: "b65635b515712f990fdcc201", + _tpl: "58ac1bf086f77420ed183f9f", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "35111c9b72a87b6b7d95ad35", + slotId: "mod_stock", + }, { + _id: "0e11045873efe3625695c1ae", + _tpl: "5c5db6b32e221600102611a0", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "35111c9b72a87b6b7d95ad35", + slotId: "mod_charge", + }, { + _id: "94c4161abe8bf654fb986063", + _tpl: "57adff4f24597737f373b6e6", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "a6cd9986dde4cabddcd2dce2", + slotId: "mod_scope", + }, { + _id: "9b284ccfd0d535acec1ff58b", + _tpl: "5c5db5c62e22160012542255", + parentId: "a6cd9986dde4cabddcd2dce2", + slotId: "mod_barrel", + upd: {}, + }, { + _id: "d730caa83a11fd01250a7261", + _tpl: "5c5db63a2e2216000f1b284a", + parentId: "a6cd9986dde4cabddcd2dce2", + slotId: "mod_handguard", + upd: {}, + }, { + _id: "24291c7bcf91e362adb6d68b", + _tpl: "5fb6564947ce63734e3fa1da", + parentId: "a6cd9986dde4cabddcd2dce2", slotId: "mod_sight_rear", upd: { StackObjectsCount: 1 }, }, { - _id: "566335b3df586f34b47f5e35", - _tpl: "5649b2314bdc2d79388b4576", - parentId: "911a0f04d5d9c7e239807ae0", - slotId: "mod_stock", - upd: { StackObjectsCount: 1 }, - }, { - _id: "da8cde1b3024c336f6e06152", - _tpl: "55d482194bdc2d1d4e8b456b", - parentId: "911a0f04d5d9c7e239807ae0", - slotId: "mod_magazine", + _id: "0d98fd0769cce8e473bbe540", + _tpl: "58d2664f86f7747fec5834f6", upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "94c4161abe8bf654fb986063", + slotId: "mod_scope", }, { - _id: "1e0b177df108c0c117028812", - _tpl: "57cffddc24597763133760c6", - parentId: "c9278dd8251e99578bf7a274", - slotId: "mod_handguard", + _id: "11b174510f039e8217fbd202", + _tpl: "58d268fc86f774111273f8c2", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "0d98fd0769cce8e473bbe540", + slotId: "mod_scope", + }, { + _id: "c435230e530574b1d7c32300", + _tpl: "5c7e8fab2e22165df16b889b", + parentId: "9b284ccfd0d535acec1ff58b", + slotId: "mod_muzzle", + upd: {}, + }, { + _id: "15666fe6fd2d95206612e418", + _tpl: "6269220d70b6c02e665f2635", + parentId: "d730caa83a11fd01250a7261", + slotId: "mod_mount_000", upd: { StackObjectsCount: 1 }, }, { - _id: "bc041c0011d76f714b898400", - _tpl: "57cffcd624597763133760c5", - parentId: "1e0b177df108c0c117028812", + _id: "a54de8b9014eee71fdf1d01d", + _tpl: "6269220d70b6c02e665f2635", + parentId: "d730caa83a11fd01250a7261", + slotId: "mod_mount_001", + upd: { StackObjectsCount: 1 }, + }, { + _id: "c34555bc95a9a7a23150a36f", + _tpl: "6269220d70b6c02e665f2635", + parentId: "d730caa83a11fd01250a7261", + slotId: "mod_mount_002", + upd: { StackObjectsCount: 1 }, + }, { + _id: "91cae4ae30d1366b87158238", + _tpl: "6269220d70b6c02e665f2635", + parentId: "d730caa83a11fd01250a7261", slotId: "mod_mount_003", upd: { StackObjectsCount: 1 }, }, { - _id: "9f8d7880a6e0a47a211ec5d3", - _tpl: "58491f3324597764bc48fa02", - parentId: "8b1327270791b142ac341b03", - slotId: "mod_scope", + _id: "48f23df4509164cf397b9ab5", + _tpl: "6269220d70b6c02e665f2635", + parentId: "d730caa83a11fd01250a7261", + slotId: "mod_mount_004", upd: { StackObjectsCount: 1 }, }, { - _id: "402b4086535a50ef7d9cef88", - _tpl: "5649be884bdc2d79388b4577", - parentId: "566335b3df586f34b47f5e35", - slotId: "mod_stock", + _id: "a55f05f689978ac65c7da654", + _tpl: "5b7be4895acfc400170e2dd5", + parentId: "d730caa83a11fd01250a7261", + slotId: "mod_foregrip", + upd: {}, + }, { + _id: "8ae4ea81a2d6074162d87a9c", + _tpl: "5b7be47f5acfc400170e2dd2", + parentId: "d730caa83a11fd01250a7261", + slotId: "mod_mount_005", + upd: {}, + }, { + _id: "312cc0f6687963305457235e", + _tpl: "5b7be47f5acfc400170e2dd2", + parentId: "d730caa83a11fd01250a7261", + slotId: "mod_mount_006", + upd: {}, + }, { + _id: "e1e5aaf474b7282a52ac9a14", + _tpl: "5fb6567747ce63734e3fa1dc", + parentId: "d730caa83a11fd01250a7261", + slotId: "mod_sight_front", upd: { StackObjectsCount: 1 }, }, { - _id: "db2ef9442178910eba985b51", - _tpl: "58d2946386f774496974c37e", - parentId: "402b4086535a50ef7d9cef88", - slotId: "mod_stock_000", - upd: { StackObjectsCount: 1 }, - }, { - _id: "3c32b7d47ad80e83749fa906", - _tpl: "58d2912286f7744e27117493", - parentId: "db2ef9442178910eba985b51", - slotId: "mod_stock", - upd: { StackObjectsCount: 1 }, - }, { - _id: "574a9b5535585255cde19570", - _tpl: "55d482194bdc2d1d4e8b456b", - parentId: "695b13896108f765e8985698", - slotId: "1", - location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + _id: "bb9a34648e08f005db5d7484", + _tpl: "5cc9c20cd7f00c001336c65d", upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "15666fe6fd2d95206612e418", + slotId: "mod_tactical", }, { - _id: "696835b2badfb96623ea887c", - _tpl: "55d482194bdc2d1d4e8b456b", - parentId: "695b13896108f765e8985698", + _id: "dd9ac99d3ea4c9656221bcc9", + _tpl: "5cc9c20cd7f00c001336c65d", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "a54de8b9014eee71fdf1d01d", + slotId: "mod_tactical", + }, { + _id: "b22748de8da5f3c1362dd8e0", + _tpl: "5cc9c20cd7f00c001336c65d", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "c34555bc95a9a7a23150a36f", + slotId: "mod_tactical", + }, { + _id: "e3cc1be8954c4889f94b435a", + _tpl: "5cc9c20cd7f00c001336c65d", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "91cae4ae30d1366b87158238", + slotId: "mod_tactical", + }, { + _id: "e73f05be5a306168e847da82", + _tpl: "5cc9c20cd7f00c001336c65d", + parentId: "48f23df4509164cf397b9ab5", + slotId: "mod_tactical", + upd: { StackObjectsCount: 1 }, + }, { + _id: "847cf35ec92d8af8e4814ea8", + _tpl: "5c1cd46f2e22164bef5cfedb", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "a55f05f689978ac65c7da654", + slotId: "mod_foregrip", + }, { + _id: "bb4b7a4475fea0f0135305f6", + _tpl: "5cc9c20cd7f00c001336c65d", + parentId: "8ae4ea81a2d6074162d87a9c", + slotId: "mod_tactical", + upd: { StackObjectsCount: 1 }, + }, { + _id: "d0ac8e688a0bb17668589909", + _tpl: "5cc9c20cd7f00c001336c65d", + parentId: "312cc0f6687963305457235e", + slotId: "mod_tactical", + upd: { StackObjectsCount: 1 }, + }, { + _id: "5dbcf8cbbb3f8ef669836320", + _tpl: "5c793fc42e221600114ca25d", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "b65635b515712f990fdcc201", + slotId: "mod_stock", + }, { + _id: "f996645c809968f8033593a6", + _tpl: "5fc2369685fd526b824a5713", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5dbcf8cbbb3f8ef669836320", + slotId: "mod_stock_000", + }, { + _id: "7d959c20811fdc440387f0a4", + _tpl: "55d447bb4bdc2d892f8b456f", + parentId: "d45436a159654f43ca3aa52f", + slotId: "mod_barrel", + upd: {}, + }, { + _id: "16969c588bd20e223d93e65a", + _tpl: "611a31ce5b7ffe001b4649d1", + parentId: "d45436a159654f43ca3aa52f", + slotId: "mod_stock", + upd: {}, + }, { + _id: "d3a31aa632d852bfe57d7aca", + _tpl: "5a6b5f868dc32e000a311389", + parentId: "2c60ad9b6051f059ab796aa6", + slotId: "mod_barrel", + upd: {}, + }, { + _id: "fdba343644672594e7c73f47", + _tpl: "5a7b4960e899ef197b331a2d", + parentId: "2c60ad9b6051f059ab796aa6", + slotId: "mod_pistol_grip", + upd: {}, + }, { + _id: "5f47943e00d184b3c8f9c2b5", + _tpl: "5a6f5e048dc32e00094b97da", + parentId: "2c60ad9b6051f059ab796aa6", + slotId: "mod_reciever", + upd: {}, + }, { + _id: "f616853cb3b860d670252e66", + _tpl: "5a718b548dc32e000d46d262", + parentId: "2c60ad9b6051f059ab796aa6", + slotId: "mod_magazine", + upd: {}, + }, { + _id: "5153ee12f6d4abc4856dd4ae", + _tpl: "5a7ad74e51dfba0015068f45", + parentId: "2c60ad9b6051f059ab796aa6", + slotId: "mod_tactical", + upd: {}, + }, { + _id: "aa5dc438d849a311e335667b", + _tpl: "5a7d9122159bd4001438dbf4", + parentId: "5f47943e00d184b3c8f9c2b5", + slotId: "mod_sight_rear", + upd: {}, + }, { + _id: "79a1dfa8bff1b7ca118d6b0f", + _tpl: "5a7d90eb159bd400165484f1", + parentId: "5f47943e00d184b3c8f9c2b5", + slotId: "mod_sight_front", + upd: {}, + }, { + _id: "e784a6d774f9a885bf5ed847", + _tpl: "5a7b483fe899ef0016170d15", + parentId: "5153ee12f6d4abc4856dd4ae", + slotId: "mod_tactical", + upd: {}, + }, { + _id: "fd79789b0e394e2cc1299ab1", + _tpl: "5c5db6742e2216000f1b2852", + parentId: "5d2be23efb34d0d1da9d3701", + slotId: "1", + upd: { StackObjectsCount: 1 }, + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "a19f5e338bfd32f1c1f3fb73", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5d2be23efb34d0d1da9d3701", slotId: "2", location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, }, { - _id: "c2d5e23c7886e8ff02010731", - _tpl: "55d482194bdc2d1d4e8b456b", - parentId: "695b13896108f765e8985698", + _id: "9e709808929c226f7bdbf57a", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5d2be23efb34d0d1da9d3701", slotId: "3", location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, }, { - _id: "306de2f475a559610a4f6f1d", - _tpl: "55d482194bdc2d1d4e8b456b", - parentId: "695b13896108f765e8985698", + _id: "9fe70bf25a2db7f8c1b23502", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5d2be23efb34d0d1da9d3701", slotId: "4", location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, }, { - _id: "eb0445b49a97e84e27d47f3c", - _tpl: "5aa2ba71e5b5b000137b758f", - parentId: "695b13896108f765e8985698", + _id: "4519dc962deebb2dbfc9e70c", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5d2be23efb34d0d1da9d3701", + slotId: "5", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "a94275912f1cbcd483563916", + _tpl: "5c5db6742e2216000f1b2852", + parentId: "5d2be23efb34d0d1da9d3701", + slotId: "6", + upd: { StackObjectsCount: 1 }, + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "7f2ae8c0685bf3a2195185dd", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5d2be23efb34d0d1da9d3701", + slotId: "7", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "53a9f3dc5c08cbd02ff31b12", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5d2be23efb34d0d1da9d3701", + slotId: "8", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "e0ab45585b1a874dbaa68fb3", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5d2be23efb34d0d1da9d3701", + slotId: "9", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "3f66f7abde039a848f8b4cf0", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5d2be23efb34d0d1da9d3701", + slotId: "10", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "04a202a45f8a39b61a58a05a", + _tpl: "544a5caa4bdc2d1a388b4568", + parentId: "9f601faab37dcc58190898ac", + slotId: "main", + upd: { StackObjectsCount: 1 }, + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "d5f6e03c07ede944e89fb407", + _tpl: "6570e83223c1f638ef0b0ede", + parentId: "04a202a45f8a39b61a58a05a", + slotId: "Soft_armor_front", + upd: { Repairable: { Durability: 42, MaxDurability: 42 } }, + }, { + _id: "5433cbf0f07a68651e888c74", + _tpl: "6570e87c23c1f638ef0b0ee2", + parentId: "04a202a45f8a39b61a58a05a", + slotId: "Soft_armor_back", + upd: { Repairable: { Durability: 42, MaxDurability: 42 } }, + }, { + _id: "da91bed43f688a80b627ad4d", + _tpl: "6570e90b3a5689d85f08db97", + parentId: "04a202a45f8a39b61a58a05a", + slotId: "Groin", + upd: { Repairable: { Durability: 28, MaxDurability: 28 } }, + }, { + _id: "ad7f524f3de9ad544df8c0b8", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "9f601faab37dcc58190898ac", + slotId: "main", + location: { x: 3, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "0844cf6b7a89c13454b6e3db", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "9f601faab37dcc58190898ac", + slotId: "main", + location: { x: 4, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "c3f58f44366d0a06d29d66ba", + _tpl: "5a38e6bac4a2826c6e06d79b", + parentId: "9f601faab37dcc58190898ac", + slotId: "main", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + location: { x: 0, y: 4, r: "Horizontal", isSearched: true }, + }, { + _id: "d46e16faba780c68e0600532", + _tpl: "656fa0fb498d1b7e3e071d9c", + parentId: "9f601faab37dcc58190898ac", + slotId: "main", + upd: { StackObjectsCount: 1, Repairable: { Durability: 45, MaxDurability: 45 } }, + location: { x: 3, y: 2, r: "Horizontal", isSearched: true }, + }, { + _id: "26598f88d49198c4a0a9391c", + _tpl: "571a12c42459771f627b58a0", + parentId: "9f601faab37dcc58190898ac", + slotId: "main", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + location: { x: 3, y: 4, r: "Horizontal", isSearched: true }, + }, { + _id: "5ee8e16837809adc34caae00", + _tpl: "656f9fa0498d1b7e3e071d98", + parentId: "04a202a45f8a39b61a58a05a", + slotId: "Front_plate", + upd: { Repairable: { Durability: 50, MaxDurability: 50 } }, + }, { + _id: "de042f9ebf0fd9ad451033d4", + _tpl: "656f9fa0498d1b7e3e071d98", + parentId: "04a202a45f8a39b61a58a05a", + slotId: "Back_plate", + upd: { Repairable: { Durability: 50, MaxDurability: 50 } }, + }, { + _id: "03de471c2a3faa359aca7486", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "04a202a45f8a39b61a58a05a", + slotId: "1", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "091c85804613176da9478edd", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "04a202a45f8a39b61a58a05a", + slotId: "2", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "5482888e242a98ff154c0ee8", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "04a202a45f8a39b61a58a05a", + slotId: "3", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "3c8e206a2c2e9b0fee45b56b", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "04a202a45f8a39b61a58a05a", + slotId: "4", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "b2405216e5730f3511884a10", + _tpl: "5ea17ca01412a1425304d1c0", + parentId: "04a202a45f8a39b61a58a05a", slotId: "5", upd: { StackObjectsCount: 1 }, location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, }, { - _id: "fad89a5bdfd23e3248123346", - _tpl: "5fc5396e900b1d5091531e72", - parentId: "695b13896108f765e8985698", + _id: "7a0675280dbbad69ce592d74", + _tpl: "657f9a55c6679fefb3051e19", + parentId: "b2405216e5730f3511884a10", + slotId: "Helmet_top", + upd: { Repairable: { Durability: 24, MaxDurability: 24 } }, + }, { + _id: "c0c182942f54d3c183f0e179", + _tpl: "657f9a94ada5fadd1f07a589", + parentId: "b2405216e5730f3511884a10", + slotId: "Helmet_back", + upd: { Repairable: { Durability: 24, MaxDurability: 24 } }, + }, { + _id: "8ec4534a4fe96f89ea88c107", + _tpl: "5c165d832e2216398b5a7e36", + parentId: "04a202a45f8a39b61a58a05a", slotId: "6", - location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, upd: { StackObjectsCount: 1 }, - }, { - _id: "b16c2a938954cd69c687c51a", - _tpl: "5b4736b986f77405cb415c10", - parentId: "695b13896108f765e8985698", - slotId: "7", location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, }, { - _id: "a2b3019ac8d340eeb068d429", + _id: "0d91ed3d44881d33b1fd94ec", + _tpl: "5c5db6742e2216000f1b2852", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "04a202a45f8a39b61a58a05a", + slotId: "11", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "f7066fdfeefb29eca1d2dbeb", _tpl: "5ea18c84ecf1982c7712d9a2", - parentId: "695b13896108f765e8985698", - slotId: "10", - location: { x: 0, y: 0, r: "Vertical", isSearched: true }, - upd: { StackObjectsCount: 1, Repairable: { Durability: 29, MaxDurability: 33 } }, + upd: { StackObjectsCount: 1, Repairable: { Durability: 22, MaxDurability: 25 } }, + parentId: "b2405216e5730f3511884a10", + slotId: "mod_nvg", }, { - _id: "0b3c5d183e8b506d655f85c4", - _tpl: "644a3df63b0b6f03e101e065", - parentId: "fad89a5bdfd23e3248123346", - slotId: "mod_tactical", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, - }, { - _id: "757211a0b648fe27b0475ded", - _tpl: "59f8a37386f7747af3328f06", - parentId: "b16c2a938954cd69c687c51a", - slotId: "mod_foregrip", + _id: "ee0ec86e9608abe773175e3a", + _tpl: "5c0558060db834001b735271", + parentId: "f7066fdfeefb29eca1d2dbeb", + slotId: "mod_nvg", upd: { StackObjectsCount: 1 }, }, { - _id: "870a887c63ca30fb15736b3d", - _tpl: "62a1b7fbc30cfa1d366af586", - parentId: "bb49d6ceb3e87d8563a06455", - slotId: "main", - upd: { StackObjectsCount: 1 }, - location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, - }, { - _id: "f3de631a1bb2b74bd0160d9a", - _tpl: "5d6d3be5a4b9361bc73bc763", - parentId: "bb49d6ceb3e87d8563a06455", - slotId: "main", - location: { x: 5, y: 0, r: "Vertical", isSearched: true }, - upd: { StackObjectsCount: 1, Repairable: { Durability: 22.41, MaxDurability: 22.41 } }, - }, { - _id: "351180f3248d45c71cb2ebdc", - _tpl: "57c44b372459772d2b39b8ce", - parentId: "870a887c63ca30fb15736b3d", - slotId: "main", - location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, - }, { - _id: "7237f722106866f2df8dc8d1", - _tpl: "56e33680d2720be2748b4576", - parentId: "870a887c63ca30fb15736b3d", - slotId: "main", - location: { x: 0, y: 3, r: "Horizontal", isSearched: true }, - upd: { StackObjectsCount: 1 }, - }, { - _id: "d0cf00aff56ea520cdd94330", - _tpl: "57c44dd02459772d2e0ae249", - parentId: "351180f3248d45c71cb2ebdc", - slotId: "mod_muzzle", - upd: { StackObjectsCount: 1 }, - }, { - _id: "5119653b2c66d57ee219e26f", - _tpl: "57c44f4f2459772d2c627113", - parentId: "351180f3248d45c71cb2ebdc", - slotId: "mod_reciever", - upd: { StackObjectsCount: 1 }, - }, { - _id: "ed1ac0183a8af587110aa74e", - _tpl: "5a9e81fba2750c00164f6b11", - parentId: "351180f3248d45c71cb2ebdc", + _id: "0515d1e589fd626b504e59cd", + _tpl: "5a38ee51c4a282000c5a955c", + parentId: "c3f58f44366d0a06d29d66ba", slotId: "mod_magazine", - upd: { StackObjectsCount: 1 }, + upd: {}, }, { - _id: "310a7d1bb07ae0e522f3f8e3", - _tpl: "5a69a2ed8dc32e000d46d1f1", - parentId: "351180f3248d45c71cb2ebdc", - slotId: "mod_pistol_grip", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, - }, { - _id: "8a7e3489197b3b98126447fd", - _tpl: "6130ca3fd92c473c77020dbd", - parentId: "351180f3248d45c71cb2ebdc", - slotId: "mod_charge", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, - }, { - _id: "e818616e11ae07aa05388759", - _tpl: "5dff8db859400025ea5150d4", - parentId: "351180f3248d45c71cb2ebdc", - slotId: "mod_mount_000", - upd: { StackObjectsCount: 1 }, - }, { - _id: "768812984debf2756bece089", - _tpl: "57c44e7b2459772d28133248", - parentId: "d0cf00aff56ea520cdd94330", - slotId: "mod_sight_rear", - upd: { StackObjectsCount: 1 }, - }, { - _id: "67c610585ed668baf4604931", - _tpl: "59eb7ebe86f7740b373438ce", - parentId: "d0cf00aff56ea520cdd94330", - slotId: "mod_mount_000", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, - }, { - _id: "80e9dffa49bfe263ab0128c7", - _tpl: "6267c6396b642f77f56f5c1c", - parentId: "67c610585ed668baf4604931", - slotId: "mod_tactical_000", - upd: { StackObjectsCount: 1 }, - }, { - _id: "dee323443ce23ba8c54b9f1c", - _tpl: "5cc9c20cd7f00c001336c65d", - parentId: "67c610585ed668baf4604931", - slotId: "mod_tactical_001", - upd: { StackObjectsCount: 1 }, - }, { - _id: "3008088022dd55f1c99e5a32", - _tpl: "5c1cd46f2e22164bef5cfedb", - parentId: "67c610585ed668baf4604931", - slotId: "mod_foregrip", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, - }, { - _id: "71e9f8d005c72940d857fe64", - _tpl: "59d790f486f77403cb06aec6", - parentId: "80e9dffa49bfe263ab0128c7", - slotId: "mod_flashlight", - upd: { StackObjectsCount: 1 }, - }, { - _id: "8c610c6cc67115a5fc1662ff", - _tpl: "56eabf3bd2720b75698b4569", - parentId: "310a7d1bb07ae0e522f3f8e3", - slotId: "mod_stock_000", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, - }, { - _id: "9bf01177f0c1e346b2d65373", - _tpl: "58d2912286f7744e27117493", - parentId: "8c610c6cc67115a5fc1662ff", + _id: "cb30ae6f997a2e6d119f2186", + _tpl: "5a38ef1fc4a282000b1521f6", + parentId: "c3f58f44366d0a06d29d66ba", slotId: "mod_stock", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + upd: { Foldable: { Folded: true } }, }, { - _id: "7dd43ffa6e03c2da6cddc56e", - _tpl: "6171407e50224f204c1da3c5", - parentId: "e818616e11ae07aa05388759", - slotId: "mod_scope", - upd: { StackObjectsCount: 1 }, + _id: "be57a04835a8c1ae85811949", + _tpl: "5a38eecdc4a282329a73b512", + parentId: "cb30ae6f997a2e6d119f2186", + slotId: "mod_pistol_grip", + upd: {}, }, { - _id: "fa9da4ccf3630cb173c293f9", - _tpl: "5b3b99475acfc432ff4dcbee", - parentId: "7dd43ffa6e03c2da6cddc56e", - slotId: "mod_scope_000", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + _id: "fd6ef6e377e6280ca9386dbc", + _tpl: "571a26d524597720680fbe8a", + parentId: "26598f88d49198c4a0a9391c", + slotId: "mod_barrel", + upd: {}, }, { - _id: "6e2727806fb12e12123e9a57", - _tpl: "616554fe50224f204c1da2aa", - parentId: "7dd43ffa6e03c2da6cddc56e", - slotId: "mod_scope_001", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + _id: "5c40aff0d1c5d4f206123b83", + _tpl: "571a282c2459771fb2755a69", + parentId: "26598f88d49198c4a0a9391c", + slotId: "mod_pistol_grip", + upd: {}, }, { - _id: "2c868d4676adc934f897e9a7", - _tpl: "61605d88ffa6e502ac5e7eeb", - parentId: "7dd43ffa6e03c2da6cddc56e", - slotId: "mod_scope_002", - upd: { StackObjectsCount: 1 }, + _id: "34b2c7cf0f6b8f484411cebf", + _tpl: "571a29dc2459771fb2755a6a", + parentId: "26598f88d49198c4a0a9391c", + slotId: "mod_magazine", + upd: {}, }, { - _id: "1b159fdc14c350f8a4a7e19e", - _tpl: "58d39b0386f77443380bf13c", - parentId: "6e2727806fb12e12123e9a57", - slotId: "mod_scope", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + _id: "9932dd0e1339053e27d54a41", + _tpl: "654a4dea7c17dec2f50cc86a", + parentId: "f74d377063e65d350e0099be", + slotId: "Front_plate", + upd: { Repairable: { Durability: 50, MaxDurability: 50 } }, }, { - _id: "7691790ffc5290da292cab99", - _tpl: "61657230d92c473c770213d7", - parentId: "1b159fdc14c350f8a4a7e19e", - slotId: "mod_scope", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, - }, { - _id: "012a11e7dcb1280a1ab9d2f6", - _tpl: "618168b350224f204c1da4d8", - parentId: "7237f722106866f2df8dc8d1", - slotId: "main", - location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, - upd: { StackObjectsCount: 1 }, - }, { - _id: "38ca7415a458c4d22ba2f3c3", - _tpl: "6130c43c67085e45ef1405a1", - parentId: "012a11e7dcb1280a1ab9d2f6", - slotId: "mod_muzzle", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, - }, { - _id: "c5a0621ebf856ce1b0945efc", - _tpl: "61816fcad92c473c770215cc", - parentId: "012a11e7dcb1280a1ab9d2f6", - slotId: "mod_sight_front", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, - }, { - _id: "a74677b17c1c49edc002df9b", - _tpl: "5dfa3d2b0dee1b22f862eade", - parentId: "38ca7415a458c4d22ba2f3c3", - slotId: "mod_muzzle", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + _id: "0f69c261881206320d8f583d", + _tpl: "657b22485f444d6dff0c6c2f", + parentId: "f74d377063e65d350e0099be", + slotId: "Back_plate", + upd: { StackObjectsCount: 1, Repairable: { Durability: 4.681114, MaxDurability: 40 } }, }], }, { - scheduledTime: 1698945140, - traderId: "54cb57776803fa99248b456e", // Therapist - messageContent: { - templateId: "58fe0e3486f77471f772c3f2 2", - type: 8, - maxStorageTime: 518400, - text: "", - profileChangeEvents: [], - systemData: { date: "01.11.2023", time: "11:18", location: "factory4_day" }, - }, + scheduledTime: 1712896726, + traderId: "54cb57776803fa99248b456e", + maxStorageTime: 518400, + systemData: { date: "11.04.2024", time: "19:19", location: "factory4_day" }, + messageType: 8, + messageTemplateId: "58fe0e3486f77471f772c3f2 3", items: [{ - _id: "5ae1c2b99a0a339adc620148", - _tpl: "5cebec38d7f00c00110a652a", - parentId: "ad018df9da0cbf2726394ef1", - slotId: "mod_mount_000", - upd: { StackObjectsCount: 1 }, - }, { - _id: "30f4bcb87bcc4604e27c02c1", - _tpl: "5cc70146e4a949000d73bf6b", - parentId: "ad018df9da0cbf2726394ef1", - slotId: "mod_mount_001", - upd: { StackObjectsCount: 1 }, - }, { - _id: "ad018df9da0cbf2726394ef1", - _tpl: "5cc70102e4a949035e43ba74", - parentId: "3bc4ff5bd99f165dc75cbd25", - slotId: "main", - upd: { StackObjectsCount: 1 }, - location: { x: 3, y: 0, r: "Horizontal", isSearched: true }, - }, { - _id: "12c243bd6b3e486e61325f81", - _tpl: "5cc82d76e24e8d00134b4b83", - parentId: "5fe49444ae6628187a2e77b8", + _id: "5cfe91bfe022641c19bc8c60", + _tpl: "5aafa857e5b5b00018480968", + upd: { + StackObjectsCount: 1, + sptPresetId: "5ac4ad3686f774181345c3da", + Repairable: { Durability: 98.33, MaxDurability: 98.33 }, + }, + parentId: "d2b3b859f667d4fd8b35bc96", slotId: "hideout", - upd: { StackObjectsCount: 1, Repairable: { Durability: 99.93771, MaxDurability: 100 } }, }, { - _id: "760652d86ee78eed513e0ad7", - _tpl: "5ab8f39486f7745cd93a1cca", - parentId: "5fe49444ae6628187a2e77b8", + _id: "a5063619e7f4db123ca07fcc", + _tpl: "60db29ce99594040e04c4a27", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: { + FireMode: { FireMode: "single" }, + StackObjectsCount: 1, + Repairable: { Durability: 100, MaxDurability: 100 }, + }, + }, { + _id: "3702c30b6333e28d6a15d62c", + _tpl: "56e0598dd2720bb5668b45a6", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + }, { + _id: "387c9f2b44d2da266f856b31", + _tpl: "6571bde39837cc51b800c212", + parentId: "d2b3b859f667d4fd8b35bc96", slotId: "hideout", upd: { StackObjectsCount: 1 }, }, { - _id: "61ab4afefac354dfc64c7874", - _tpl: "5b432d215acfc4771e1c6624", - parentId: "5fe49444ae6628187a2e77b8", - slotId: "hideout", - upd: { StackObjectsCount: 1, Repairable: { Durability: 30, MaxDurability: 30 } }, - }, { - _id: "285e9d9ae196ae4e336cd04f", - _tpl: "5d5d87f786f77427997cfaef", - parentId: "5fe49444ae6628187a2e77b8", - slotId: "hideout", - upd: { StackObjectsCount: 1, Repairable: { Durability: 75, MaxDurability: 80 } }, - }, { - _id: "3bc4ff5bd99f165dc75cbd25", - _tpl: "5f5e467b0bc58666c37e7821", - parentId: "5fe49444ae6628187a2e77b8", + _id: "275f046ea1a7b40046cd54fa", + _tpl: "5b40e4035acfc47a87740943", + parentId: "d2b3b859f667d4fd8b35bc96", slotId: "hideout", upd: { StackObjectsCount: 1 }, }, { - _id: "6bf5d8ee81a3c9aec21bbbad", - _tpl: "5d5fca1ea4b93635fd598c07", - parentId: "5fe49444ae6628187a2e77b8", + _id: "f30858ff9924b1fe211dd1f7", + _tpl: "657f95bff92cd718b701550c", + parentId: "275f046ea1a7b40046cd54fa", + slotId: "Helmet_top", + upd: { Repairable: { Durability: 10.3212032, MaxDurability: 18 } }, + }, { + _id: "eec1072ac0cc44984e1ed43b", + _tpl: "657f9605f4c82973640b2358", + parentId: "275f046ea1a7b40046cd54fa", + slotId: "Helmet_back", + upd: { Repairable: { Durability: 13.3160009, MaxDurability: 18 } }, + }, { + _id: "b82495b01ad0bfe5dd7e864d", + _tpl: "5c0e746986f7741453628fe5", + parentId: "d2b3b859f667d4fd8b35bc96", slotId: "hideout", upd: { StackObjectsCount: 1 }, }, { - _id: "2371438cf809b5e483bf5d85", - _tpl: "5cc70093e4a949033c734312", - parentId: "12c243bd6b3e486e61325f81", + _id: "31531773990cd1aefa751db7", + _tpl: "6570df294cc0d2ab1e05ed74", + parentId: "b82495b01ad0bfe5dd7e864d", + slotId: "Soft_armor_front", + upd: { Repairable: { Durability: 31.0571022, MaxDurability: 35 } }, + }, { + _id: "eb8c6c7c671d2a2490454e7c", + _tpl: "6570df9c615f54368b04fca9", + parentId: "b82495b01ad0bfe5dd7e864d", + slotId: "Soft_armor_back", + upd: { Repairable: { Durability: 30.8, MaxDurability: 35 } }, + }, { + _id: "f9cc99048aa37c5a4a837ef9", + _tpl: "5ca20d5986f774331e7c9602", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: { StackObjectsCount: 1 }, + }, { + _id: "bd8a4a3783d80b81cc8655ee", + _tpl: "5aa2ba71e5b5b000137b758f", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: { StackObjectsCount: 1 }, + }, { + _id: "025748ec34dcd1bfb2529537", + _tpl: "5c0d32fcd174af02a1659c75", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: { StackObjectsCount: 1 }, + }, { + _id: "9c552e79f1ae38350afb3723", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5cfe91bfe022641c19bc8c60", slotId: "mod_magazine", - upd: { StackObjectsCount: 1 }, }, { - _id: "7f890346ea5b2cbc68c3170f", - _tpl: "5cc700b9e4a949000f0f0f25", - parentId: "12c243bd6b3e486e61325f81", + _id: "14cb5b7c9789876325670163", + _tpl: "5aaf8e43e5b5b00015693246", + parentId: "5cfe91bfe022641c19bc8c60", slotId: "mod_stock", - upd: { StackObjectsCount: 1 }, + upd: {}, }, { - _id: "12fb79a9c4929009ff8d89e1", - _tpl: "5cc700ede4a949033c734315", - parentId: "12c243bd6b3e486e61325f81", - slotId: "mod_reciever", - upd: { StackObjectsCount: 1 }, - }, { - _id: "d4c5274082ed716e19447f46", - _tpl: "5cc701d7e4a94900100ac4e7", - parentId: "12c243bd6b3e486e61325f81", + _id: "0e4c9e11000589751523a62c", + _tpl: "5addbac75acfc400194dbc56", + parentId: "5cfe91bfe022641c19bc8c60", slotId: "mod_barrel", upd: { StackObjectsCount: 1 }, }, { - _id: "d819dd4d2b13de10e9d6d805", - _tpl: "5cc6ea85e4a949000e1ea3c3", - parentId: "12c243bd6b3e486e61325f81", - slotId: "mod_charge", - upd: { StackObjectsCount: 1 }, - }, { - _id: "fc9a664cacc477c4e725a81a", - _tpl: "5cc700d4e4a949000f0f0f28", - parentId: "7f890346ea5b2cbc68c3170f", - slotId: "mod_stock_000", - upd: { StackObjectsCount: 1 }, - }, { - _id: "372891c593cf14e176b93ce2", - _tpl: "5cc7012ae4a949001252b43e", - parentId: "12fb79a9c4929009ff8d89e1", - slotId: "mod_mount_000", - upd: { StackObjectsCount: 1 }, - }, { - _id: "bd196435a57bdc433df1e49d", - _tpl: "5cc7012ae4a949001252b43e", - parentId: "12fb79a9c4929009ff8d89e1", - slotId: "mod_mount_001", - upd: { StackObjectsCount: 1 }, - }, { - _id: "ea3349d29797354d835c2192", - _tpl: "58491f3324597764bc48fa02", - parentId: "12fb79a9c4929009ff8d89e1", - slotId: "mod_scope", + _id: "a63cf65e9646a04944d18106", + _tpl: "5abcbb20d8ce87001773e258", upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5cfe91bfe022641c19bc8c60", + slotId: "mod_sight_rear", }, { - _id: "4ccf7c74ca7d2167deb0ae5c", - _tpl: "626becf9582c3e319310b837", - parentId: "372891c593cf14e176b93ce2", - slotId: "mod_tactical", - upd: { StackObjectsCount: 1 }, - }, { - _id: "adfd3640fc93daf21c721ca6", - _tpl: "5cc9c20cd7f00c001336c65d", - parentId: "bd196435a57bdc433df1e49d", - slotId: "mod_tactical", - upd: { StackObjectsCount: 1 }, - }, { - _id: "deeb36b1812790b0145d2532", - _tpl: "5a16badafcdbcb001865f72d", - parentId: "61ab4afefac354dfc64c7874", - slotId: "mod_equipment_000", - upd: { StackObjectsCount: 1, Repairable: { Durability: 12, MaxDurability: 25 } }, - }, { - _id: "4c0e0548df904c384569190c", - _tpl: "5ea058e01dbce517f324b3e2", - parentId: "61ab4afefac354dfc64c7874", - slotId: "mod_nvg", - upd: { StackObjectsCount: 1, Repairable: { Durability: 3, MaxDurability: 39 } }, - }, { - _id: "da82c293cabc705b30fef93a", - _tpl: "5a398ab9c4a282000c5a9842", - parentId: "61ab4afefac354dfc64c7874", + _id: "f67388e02546cd97c976d479", + _tpl: "5addbfe15acfc4001a5fc58b", + parentId: "5cfe91bfe022641c19bc8c60", slotId: "mod_mount", + upd: { StackObjectsCount: 1 }, + }, { + _id: "bed3b1a2f866e18743db2a63", + _tpl: "5addbfbb5acfc400194dbcf7", upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "14cb5b7c9789876325670163", + slotId: "mod_mount", }, { - _id: "b8fc94611def6e9ba534a8b3", - _tpl: "5a16b8a9fcdbcb00165aa6ca", - parentId: "4c0e0548df904c384569190c", - slotId: "mod_nvg", + _id: "821a4953b87f562b3f435fd7", + _tpl: "5649a2464bdc2d91118b45a8", upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "bed3b1a2f866e18743db2a63", + slotId: "mod_scope", }, { - _id: "20d6193c1f399e6326ebbc10", - _tpl: "5a16b93dfcdbcbcae6687261", - parentId: "b8fc94611def6e9ba534a8b3", - slotId: "mod_nvg", + _id: "24813deb9b9a6ec3ca8376ef", + _tpl: "5d10b49bd7ad1a1a560708b0", upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, - }, { - _id: "065c4f13b2bd8be266e1e809", - _tpl: "57235b6f24597759bf5a30f1", - parentId: "20d6193c1f399e6326ebbc10", - slotId: "mod_nvg", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 }, Togglable: { On: true } }, - }, { - _id: "1883b955ab202fa099809278", - _tpl: "57d17c5e2459775a5c57d17d", - parentId: "da82c293cabc705b30fef93a", - slotId: "mod_flashlight", - upd: { StackObjectsCount: 1 }, - }, { - _id: "e3c9e50ce31900c950b4ff6f", - _tpl: "5cc70093e4a949033c734312", - parentId: "285e9d9ae196ae4e336cd04f", - slotId: "1", - location: { x: 0, y: 0, r: "Vertical", isSearched: true }, - upd: { StackObjectsCount: 1 }, - }, { - _id: "193259b5eb848af4d036bee5", - _tpl: "5cc70093e4a949033c734312", - parentId: "285e9d9ae196ae4e336cd04f", - slotId: "2", - location: { x: 0, y: 0, r: "Vertical", isSearched: true }, - upd: { StackObjectsCount: 1 }, - }, { - _id: "f97ce69443f63bbe8f8097a7", - _tpl: "5cc70093e4a949033c734312", - parentId: "285e9d9ae196ae4e336cd04f", - slotId: "3", - location: { x: 0, y: 0, r: "Vertical", isSearched: true }, - upd: { StackObjectsCount: 1 }, - }, { - _id: "5d1c154a8abcfa934e477ac4", - _tpl: "5cc70093e4a949033c734312", - parentId: "285e9d9ae196ae4e336cd04f", - slotId: "4", - location: { x: 0, y: 0, r: "Vertical", isSearched: true }, - upd: { StackObjectsCount: 1 }, - }, { - _id: "289f7af841690c5388095477", - _tpl: "5cc70093e4a949033c734312", - parentId: "285e9d9ae196ae4e336cd04f", - slotId: "5", - location: { x: 0, y: 0, r: "Vertical", isSearched: true }, - upd: { StackObjectsCount: 1 }, - }, { - _id: "3e6d578165b61aef9865f677", - _tpl: "5cc70093e4a949033c734312", - parentId: "285e9d9ae196ae4e336cd04f", - slotId: "6", - location: { x: 0, y: 0, r: "Vertical", isSearched: true }, - upd: { StackObjectsCount: 1 }, - }, { - _id: "338682523f8504f97f84f3ab", - _tpl: "5cc70093e4a949033c734312", - parentId: "285e9d9ae196ae4e336cd04f", - slotId: "7", - location: { x: 0, y: 0, r: "Vertical", isSearched: true }, - upd: { StackObjectsCount: 1 }, - }, { - _id: "6d18ac01aa04b16e4f0d5d2f", - _tpl: "5cc70093e4a949033c734312", - parentId: "285e9d9ae196ae4e336cd04f", - slotId: "8", - location: { x: 0, y: 0, r: "Vertical", isSearched: true }, - upd: { StackObjectsCount: 1 }, - }, { - _id: "ac4ed54d61daa0c5219f8522", - _tpl: "5cc70093e4a949033c734312", - parentId: "285e9d9ae196ae4e336cd04f", - slotId: "9", - location: { x: 0, y: 0, r: "Vertical", isSearched: true }, - upd: { StackObjectsCount: 1 }, - }, { - _id: "2460460ef3d3df5c1ce07edb", - _tpl: "5cc70093e4a949033c734312", - parentId: "285e9d9ae196ae4e336cd04f", - slotId: "10", - location: { x: 0, y: 0, r: "Vertical", isSearched: true }, - upd: { StackObjectsCount: 1 }, - }, { - _id: "3aeb18aac0b532f34255f162", - _tpl: "5cc70146e4a949000d73bf6b", - parentId: "285e9d9ae196ae4e336cd04f", - slotId: "11", - upd: { StackObjectsCount: 1 }, - location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, - }, { - _id: "bdb46107abbf1d92edaaf14e", - _tpl: "6272379924e29f06af4d5ecb", - parentId: "3aeb18aac0b532f34255f162", + parentId: "bed3b1a2f866e18743db2a63", slotId: "mod_tactical", - upd: { StackObjectsCount: 1 }, }, { - _id: "0caadd8507a36d9ea871e88e", - _tpl: "5ab8f04f86f774585f4237d8", - parentId: "3bc4ff5bd99f165dc75cbd25", - slotId: "main", - location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, - upd: { StackObjectsCount: 1 }, + _id: "4194116ceb7e9e623cba4e89", + _tpl: "609bab8b455afd752b2e6138", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "821a4953b87f562b3f435fd7", + slotId: "mod_scope", }, { - _id: "240046eebc9040c1d7e58611", - _tpl: "5ac66d015acfc400180ae6e4", - parentId: "0caadd8507a36d9ea871e88e", - slotId: "main", - location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, - upd: { - StackObjectsCount: 1, - sptPresetId: "5acf7dfc86f774401e19c390", - Repairable: { Durability: 32, MaxDurability: 59 }, - Foldable: { Folded: true }, - }, - }, { - _id: "70b23c628fa17699d9a71e94", - _tpl: "59c6633186f7740cf0493bb9", - parentId: "240046eebc9040c1d7e58611", - slotId: "mod_gas_block", - upd: { - StackObjectsCount: 1, - sptPresetId: "5acf7dfc86f774401e19c390", - Repairable: { Durability: 32, MaxDurability: 59 }, - }, - }, { - _id: "7cc2e24dc6bc0716bdddc472", - _tpl: "5943ee5a86f77413872d25ec", - parentId: "240046eebc9040c1d7e58611", + _id: "3bd8b76ba1ff8f1cf954af91", + _tpl: "59bffc1f86f77435b128b872", + parentId: "0e4c9e11000589751523a62c", slotId: "mod_muzzle", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, - }, { - _id: "7a51ebbad703082660d59d27", - _tpl: "5649ade84bdc2d1b2b8b4587", - parentId: "240046eebc9040c1d7e58611", - slotId: "mod_pistol_grip", - upd: { - StackObjectsCount: 1, - sptPresetId: "5acf7dfc86f774401e19c390", - Repairable: { Durability: 32, MaxDurability: 59 }, - }, - }, { - _id: "b481bc57436ed9a0c3abe7f3", - _tpl: "5d2c76ed48f03532f2136169", - parentId: "240046eebc9040c1d7e58611", - slotId: "mod_reciever", upd: { StackObjectsCount: 1 }, }, { - _id: "5774ef80597c7f91bff40dbb", - _tpl: "5ac50c185acfc400163398d4", - parentId: "240046eebc9040c1d7e58611", - slotId: "mod_stock", - upd: { - StackObjectsCount: 1, - sptPresetId: "5acf7dfc86f774401e19c390", - Repairable: { Durability: 32, MaxDurability: 59 }, - }, + _id: "3d953b4a4283363d0494d614", + _tpl: "59bffbb386f77435b379b9c2", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "3bd8b76ba1ff8f1cf954af91", + slotId: "mod_muzzle", }, { - _id: "8b7c8e6ba172ac390c99a2ae", - _tpl: "5ac66c5d5acfc4001718d314", - parentId: "240046eebc9040c1d7e58611", + _id: "4b2c9fb752a7c3458e07a35d", + _tpl: "626bb8532c923541184624b4", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "f67388e02546cd97c976d479", + slotId: "mod_scope", + }, { + _id: "ce39864f056a3ad649d77243", + _tpl: "60dc519adf4c47305f6d410d", + parentId: "a5063619e7f4db123ca07fcc", slotId: "mod_magazine", - upd: { StackObjectsCount: 1 }, + upd: {}, }, { - _id: "1ed3a416b1fc7adbed1160df", - _tpl: "6130ca3fd92c473c77020dbd", - parentId: "240046eebc9040c1d7e58611", - slotId: "mod_charge", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + _id: "4ffc8f4e80708f6b9336c224", + _tpl: "612368f58b401f4f51239b33", + parentId: "a5063619e7f4db123ca07fcc", + slotId: "mod_barrel", + upd: {}, }, { - _id: "bbe087661947c0d9c1cde146", - _tpl: "5648b1504bdc2d9d488b4584", - parentId: "70b23c628fa17699d9a71e94", + _id: "b401a4ce551dfcb0602e4073", + _tpl: "612781056f3d944a17348d60", + parentId: "a5063619e7f4db123ca07fcc", + slotId: "mod_stock", + upd: {}, + }, { + _id: "b206761507a97037d05f0268", + _tpl: "6123649463849f3d843da7c4", + parentId: "a5063619e7f4db123ca07fcc", slotId: "mod_handguard", + upd: {}, + }, { + _id: "25af8615f5c902fd5920965f", + _tpl: "619d36da53b4d42ee724fae4", + parentId: "4ffc8f4e80708f6b9336c224", + slotId: "mod_muzzle", + upd: {}, + }, { + _id: "38c5e9751e1d69d4d0804a49", + _tpl: "5448c12b4bdc2d02308b456f", + parentId: "3702c30b6333e28d6a15d62c", + slotId: "mod_magazine", + upd: {}, + }, { + _id: "54da5dc9656bb9477eb16c88", + _tpl: "56e05b06d2720bb2668b4586", + parentId: "3702c30b6333e28d6a15d62c", + slotId: "mod_muzzle", + upd: {}, + }, { + _id: "ad690f7145984b942288457f", + _tpl: "56e05a6ed2720bd0748b4567", + parentId: "3702c30b6333e28d6a15d62c", + slotId: "mod_pistolgrip", + upd: {}, + }, { + _id: "c4ffff33f0a5f48c9500699a", + _tpl: "656fa0fb498d1b7e3e071d9c", + parentId: "b82495b01ad0bfe5dd7e864d", + slotId: "Front_plate", + upd: { Repairable: { Durability: 31.1713047, MaxDurability: 45 } }, + }, { + _id: "8453961a28b572039197e140", + _tpl: "656fa0fb498d1b7e3e071d9c", + parentId: "b82495b01ad0bfe5dd7e864d", + slotId: "Back_plate", + upd: { Repairable: { Durability: 32.4, MaxDurability: 45 } }, + }, { + _id: "43e7482d78b276a5db4f4fef", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "b82495b01ad0bfe5dd7e864d", + slotId: "1", + location: { x: 0, y: 1, r: "Horizontal", isSearched: true }, + }, { + _id: "7372a194a2de632f5941b701", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "b82495b01ad0bfe5dd7e864d", + slotId: "2", + location: { x: 0, y: 1, r: "Horizontal", isSearched: true }, + }, { + _id: "624555830937dfa5190a11bf", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "b82495b01ad0bfe5dd7e864d", + slotId: "3", + location: { x: 0, y: 1, r: "Horizontal", isSearched: true }, + }, { + _id: "05aedd00b683ce0d00ac5c74", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "b82495b01ad0bfe5dd7e864d", + slotId: "4", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "8c3eccca9f25989d68d90e59", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "b82495b01ad0bfe5dd7e864d", + slotId: "5", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "b8b2e1651d7dbb891053b514", + _tpl: "5aa7e454e5b5b0214e506fa2", + parentId: "b82495b01ad0bfe5dd7e864d", + slotId: "8", + upd: { StackObjectsCount: 1 }, + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "f9b891b8a5cf948b858a7b1b", + _tpl: "657f925dada5fadd1f07a57a", + parentId: "b8b2e1651d7dbb891053b514", + slotId: "Helmet_top", + upd: { Repairable: { Durability: 21, MaxDurability: 21 } }, + }, { + _id: "8b66bc46287219eb0e7c190d", + _tpl: "657f92acada5fadd1f07a57e", + parentId: "b8b2e1651d7dbb891053b514", + slotId: "Helmet_back", + upd: { Repairable: { Durability: 21, MaxDurability: 21 } }, + }, { + _id: "24cd31ecc0fdac526c8bd21d", + _tpl: "657f92e7f4c82973640b2354", + parentId: "b8b2e1651d7dbb891053b514", + slotId: "Helmet_ears", + upd: { Repairable: { Durability: 21, MaxDurability: 21 } }, + }, { + _id: "c6125558f051cd10cfaf77e0", + _tpl: "5d6d3716a4b9361bc8618872", + parentId: "b82495b01ad0bfe5dd7e864d", + slotId: "9", + upd: { StackObjectsCount: 1 }, + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "ee92a87a762b35b45f9d7fa7", + _tpl: "657fa009d4caf976440afe3a", + parentId: "c6125558f051cd10cfaf77e0", + slotId: "Helmet_top", + upd: { Repairable: { Durability: 33, MaxDurability: 33 } }, + }, { + _id: "be9a15c5ab850ae0437315bb", + _tpl: "657fa04ac6679fefb3051e24", + parentId: "c6125558f051cd10cfaf77e0", + slotId: "Helmet_back", + upd: { Repairable: { Durability: 33, MaxDurability: 33 } }, + }, { + _id: "65c9ceccbebe5f2813a8c70e", + _tpl: "657fa07387e11c61f70bface", + parentId: "c6125558f051cd10cfaf77e0", + slotId: "Helmet_ears", + upd: { Repairable: { Durability: 33, MaxDurability: 33 } }, + }, { + _id: "769eab07773ecfaa6e12e4c4", + _tpl: "5aa7e3abe5b5b000171d064d", + upd: { StackObjectsCount: 1, Repairable: { Durability: 50, MaxDurability: 50 }, Togglable: { On: true } }, + parentId: "b8b2e1651d7dbb891053b514", + slotId: "mod_equipment", + }, { + _id: "82aa530739c59be8dd5a0911", + _tpl: "5d6d3829a4b9361bc8618943", + upd: { StackObjectsCount: 1, Repairable: { Durability: 50, MaxDurability: 50 }, Togglable: { On: true } }, + parentId: "c6125558f051cd10cfaf77e0", + slotId: "mod_equipment_000", + }, { + _id: "996a6f0f8e90cb31f758c801", + _tpl: "5d6d3be5a4b9361bc73bc763", + upd: { StackObjectsCount: 1, Repairable: { Durability: 10, MaxDurability: 24 } }, + parentId: "c6125558f051cd10cfaf77e0", + slotId: "mod_equipment_001", + }, { + _id: "8c43cca672e16a931590945f", + _tpl: "5d6d3943a4b9360dbc46d0cc", + upd: { StackObjectsCount: 1, Repairable: { Durability: 1, MaxDurability: 1 } }, + parentId: "c6125558f051cd10cfaf77e0", + slotId: "mod_equipment_002", + }, { + _id: "5858b72da0ca732b2fb5ed95", + _tpl: "544a5caa4bdc2d1a388b4568", + parentId: "f9cc99048aa37c5a4a837ef9", + slotId: "main", + upd: { StackObjectsCount: 1 }, + location: { x: 0, y: 0, r: "Vertical", isSearched: true }, + }, { + _id: "43ef5a5e1c93ba3ab032811f", + _tpl: "6570e83223c1f638ef0b0ede", + parentId: "5858b72da0ca732b2fb5ed95", + slotId: "Soft_armor_front", + upd: { Repairable: { Durability: 42, MaxDurability: 42 } }, + }, { + _id: "e1f16c6d9e853f2735948665", + _tpl: "6570e87c23c1f638ef0b0ee2", + parentId: "5858b72da0ca732b2fb5ed95", + slotId: "Soft_armor_back", + upd: { Repairable: { Durability: 42, MaxDurability: 42 } }, + }, { + _id: "d9bdf684a8264ac1fb3208bf", + _tpl: "6570e90b3a5689d85f08db97", + parentId: "5858b72da0ca732b2fb5ed95", + slotId: "Groin", + upd: { Repairable: { Durability: 28, MaxDurability: 28 } }, + }, { + _id: "e4b484ba7209d770482732c8", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "f9cc99048aa37c5a4a837ef9", + slotId: "main", + location: { x: 0, y: 3, r: "Horizontal", isSearched: true }, + }, { + _id: "ddc3945694d52dcdae9cba4d", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "f9cc99048aa37c5a4a837ef9", + slotId: "main", + location: { x: 1, y: 3, r: "Horizontal", isSearched: true }, + }, { + _id: "59923cfba8be35031e5d95e6", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "f9cc99048aa37c5a4a837ef9", + slotId: "main", + location: { x: 2, y: 3, r: "Horizontal", isSearched: true }, + }, { + _id: "95cf47373df5c4f07f458a93", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "f9cc99048aa37c5a4a837ef9", + slotId: "main", + location: { x: 3, y: 3, r: "Horizontal", isSearched: true }, + }, { + _id: "98661f27ea826095d0cdd609", + _tpl: "656f9fa0498d1b7e3e071d98", + parentId: "5858b72da0ca732b2fb5ed95", + slotId: "Front_plate", + upd: { Repairable: { Durability: 50, MaxDurability: 50 } }, + }, { + _id: "525179b06d14baaddb2b04fb", + _tpl: "656f9fa0498d1b7e3e071d98", + parentId: "5858b72da0ca732b2fb5ed95", + slotId: "Back_plate", + upd: { Repairable: { Durability: 50, MaxDurability: 50 } }, + }, { + _id: "353638d16450339e40f5b5eb", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5858b72da0ca732b2fb5ed95", + slotId: "1", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "fa4a5c3e4e3c2f017e35eb1a", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5858b72da0ca732b2fb5ed95", + slotId: "2", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "7554a8ddb30e0306de7b7d80", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5858b72da0ca732b2fb5ed95", + slotId: "3", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "4c73b93f4d9f17a05a5782fa", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5858b72da0ca732b2fb5ed95", + slotId: "4", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "8ce190fcd2ffe5f1f9ad345a", + _tpl: "5aa7e4a4e5b5b000137b76f2", + parentId: "5858b72da0ca732b2fb5ed95", + slotId: "5", + upd: { StackObjectsCount: 1 }, + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "6607b1b9d73f83e559304208", + _tpl: "657f925dada5fadd1f07a57a", + parentId: "8ce190fcd2ffe5f1f9ad345a", + slotId: "Helmet_top", + upd: { Repairable: { Durability: 21, MaxDurability: 21 } }, + }, { + _id: "41912d06dac91585499c05a2", + _tpl: "657f92acada5fadd1f07a57e", + parentId: "8ce190fcd2ffe5f1f9ad345a", + slotId: "Helmet_back", + upd: { Repairable: { Durability: 21, MaxDurability: 21 } }, + }, { + _id: "db24f69de28bddd7f09b9c3e", + _tpl: "657f92e7f4c82973640b2354", + parentId: "8ce190fcd2ffe5f1f9ad345a", + slotId: "Helmet_ears", + upd: { Repairable: { Durability: 21, MaxDurability: 21 } }, + }, { + _id: "6c578731bc0c3f91c8089116", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5858b72da0ca732b2fb5ed95", + slotId: "6", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "aa7b1ce4897aa7e64309ce86", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5858b72da0ca732b2fb5ed95", + slotId: "6", + location: { x: 1, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "7e5e5dbe18de6aea779d904d", + _tpl: "5addccf45acfc400185c2989", + upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + parentId: "5858b72da0ca732b2fb5ed95", + slotId: "11", + location: { x: 0, y: 0, r: "Horizontal", isSearched: true }, + }, { + _id: "b50b5052892729841e26934f", + _tpl: "5aa7e3abe5b5b000171d064d", + upd: { StackObjectsCount: 1, Repairable: { Durability: 47, MaxDurability: 47 }, Togglable: { On: true } }, + parentId: "8ce190fcd2ffe5f1f9ad345a", + slotId: "mod_equipment", + }], +}, { + scheduledTime: 1712960777.6, + traderId: "54cb50c76803fa8b248b4571", + maxStorageTime: 345600, + systemData: { date: "11.04.2024", time: "19:30", location: "factory4_day" }, + messageType: 8, + messageTemplateId: "58fe0e4586f774728248ca13 4", + items: [{ + _id: "b29c463afe52421ba72b1816", + _tpl: "5aa7e3abe5b5b000171d064d", + upd: { StackObjectsCount: 1, Repairable: { Durability: 50, MaxDurability: 50 } }, + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + }, { + _id: "1813e676a1bceefd5424b4bb", + _tpl: "5ac7655e5acfc40016339a19", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: {}, + }, { + _id: "a58746a7e98ac16ba9105fc9", + _tpl: "5cf50850d7f00c056e24104c", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: {}, + }, { + _id: "70acf65d9944b19d17d92b19", + _tpl: "55d480c04bdc2d1d4e8b456a", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: {}, + }, { + _id: "e3a54ae66a2970372eee1888", + _tpl: "602e63fb6335467b0c5ac94d", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: {}, + }, { + _id: "a4b1cb12dc5ece274d348e2b", + _tpl: "6033749e88382f4fab3fd2c5", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: {}, + }, { + _id: "e3c2162f4001a0d6ed2a199d", + _tpl: "602f85fd9b513876d4338d9c", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: {}, + }, { + _id: "548a111c4e48fb058e7a5c09", + _tpl: "603372b4da11d6478d5a07ff", + parentId: "e3a54ae66a2970372eee1888", + slotId: "mod_barrel", + upd: {}, + }, { + _id: "d58db125fdd3f3b15a9798ca", + _tpl: "602e620f9b513876d4338d9a", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: {}, + }, { + _id: "f85ba56791757174e3447c55", + _tpl: "630764fea987397c0816d219", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: {}, + }, { + _id: "e3c409642a067f980ca168b7", + _tpl: "63075cc5962d0247b029dc2a", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: {}, + }, { + _id: "5ff60d8b2b61c9f20ee8e91b", + _tpl: "63076701a987397c0816d21b", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: {}, + }, { + _id: "b212acf3c8f09f48b4beaa0d", + _tpl: "5648a69d4bdc2ded0b8b457b", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: { StackObjectsCount: 1 }, + }], +}, { + scheduledTime: 1712920104.8, + traderId: "54cb57776803fa99248b456e", + maxStorageTime: 518400, + systemData: { date: "11.04.2024", time: "19:30", location: "factory4_day" }, + messageType: 8, + messageTemplateId: "58fe0e3486f77471f772c3f2 0", + items: [{ + _id: "203161dde59c5a2fdd362da9", + _tpl: "5aa7e4a4e5b5b000137b76f2", + upd: { StackObjectsCount: 1, sptPresetId: "657fa87fc6679fefb3051e32" }, + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + }, { + _id: "37c9968cfc4372c968f57c42", + _tpl: "657f925dada5fadd1f07a57a", + parentId: "203161dde59c5a2fdd362da9", + slotId: "Helmet_top", + upd: { Repairable: { Durability: 21, MaxDurability: 21 } }, + }, { + _id: "5517446f3cd41cf75d3a9cd2", + _tpl: "657f92acada5fadd1f07a57e", + parentId: "203161dde59c5a2fdd362da9", + slotId: "Helmet_back", + upd: { Repairable: { Durability: 21, MaxDurability: 21 } }, + }, { + _id: "0fdc8f25f7dfc61678cdef01", + _tpl: "657f92e7f4c82973640b2354", + parentId: "203161dde59c5a2fdd362da9", + slotId: "Helmet_ears", + upd: { Repairable: { Durability: 21, MaxDurability: 21 } }, + }, { + _id: "e2cba41b10edfc595e2bb574", + _tpl: "628b916469015a4e1711ed8d", + parentId: "6c5ef8a5fb3b88641420e9a0", + slotId: "mod_handguard", + upd: {}, + }, { + _id: "dd3aa187f853187198860933", + _tpl: "628b9be6cff66b70c002b14c", + parentId: "e2cba41b10edfc595e2bb574", + slotId: "mod_reciever", + upd: {}, + }, { + _id: "13d29ea647b01f0ecb774a54", + _tpl: "628b9471078f94059a4b9bfb", + parentId: "dd3aa187f853187198860933", + slotId: "mod_sight_rear", + upd: {}, + }, { + _id: "6c5ef8a5fb3b88641420e9a0", + _tpl: "628b8d83717774443b15e248", + parentId: "afcef56bf4fa36d0ec1f4166", + slotId: "mod_gas_block", + upd: {}, + }, { + _id: "7980e04a92db0858cb7f4bfa", + _tpl: "55d4ae6c4bdc2d8b2f8b456e", + parentId: "929c1577ba7390558c59d8a5", + slotId: "mod_stock", + upd: {}, + }, { + _id: "929c1577ba7390558c59d8a5", + _tpl: "628b9a40717774443b15e9f2", + parentId: "afcef56bf4fa36d0ec1f4166", + slotId: "mod_stock_000", + upd: {}, + }, { + _id: "afcef56bf4fa36d0ec1f4166", + _tpl: "628b5638ad252a16da6dd245", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", upd: { + FireMode: { FireMode: "single" }, StackObjectsCount: 1, - sptPresetId: "5acf7dfc86f774401e19c390", - Repairable: { Durability: 32, MaxDurability: 59 }, + Repairable: { Durability: 100, MaxDurability: 100 }, }, }, { - _id: "724388f8110434efccd79b3a", - _tpl: "544a3a774bdc2d3a388b4567", - parentId: "b481bc57436ed9a0c3abe7f3", - slotId: "mod_scope", + _id: "a94905f708670fca5de11e7e", + _tpl: "60339954d62c9b14ed777c06", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: { + FireMode: { FireMode: "single" }, + StackObjectsCount: 1, + Repairable: { Durability: 100, MaxDurability: 100 }, + }, + }, { + _id: "8f5ce6d3c7730240c3ae78ad", + _tpl: "602e71bd53a60014f9705bfa", + parentId: "a94905f708670fca5de11e7e", + slotId: "mod_pistol_grip", + upd: {}, + }, { + _id: "c320122de049da2880d0a235", + _tpl: "5a7ad2e851dfba0016153692", + parentId: "a94905f708670fca5de11e7e", + slotId: "mod_magazine", + upd: {}, + }, { + _id: "d2923c8984f26f68f01d20d7", + _tpl: "602e3f1254072b51b239f713", + parentId: "a94905f708670fca5de11e7e", + slotId: "mod_stock_001", + upd: {}, + }, { + _id: "ecd363cddbb5361670d531b0", + _tpl: "60337f5dce399e10262255d1", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: {}, + }, { + _id: "704c139d092f1bd3e3d18df2", + _tpl: "6034e3cb0ddce744014cb870", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: {}, + }, { + _id: "72bd97cb21996a2282ff7bcd", + _tpl: "630765cb962d0247b029dc45", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: {}, + }, { + _id: "44e3df51e01d5b23445fb95f", + _tpl: "630765777d50ff5e8a1ea718", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: {}, + }, { + _id: "1cb0900a4bd068b04ca05db1", + _tpl: "63088377b5cd696784087147", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, }, { - _id: "8581038b0f795618a3d26c94", - _tpl: "58d268fc86f774111273f8c2", - parentId: "724388f8110434efccd79b3a", - slotId: "mod_scope", - upd: { StackObjectsCount: 1, Repairable: { Durability: 100, MaxDurability: 100 } }, + _id: "379ca7cd56ebb1434bd89d62", + _tpl: "656f9d5900d62bcd2e02407c", + parentId: "eb3bbc6cb084a53ff48b672d", + slotId: "Front_plate", + upd: { Repairable: { Durability: 32.4841042, MaxDurability: 45 } }, + }, { + _id: "d700aaa1d7a15644f6b91dc7", + _tpl: "656f9d5900d62bcd2e02407c", + parentId: "eb3bbc6cb084a53ff48b672d", + slotId: "Back_plate", + upd: { Repairable: { Durability: 45, MaxDurability: 45 } }, + }, { + _id: "eb3bbc6cb084a53ff48b672d", + _tpl: "5b44d22286f774172b0c9de8", + parentId: "d2b3b859f667d4fd8b35bc96", + slotId: "hideout", + upd: { StackObjectsCount: 1 }, + }, { + _id: "6a3d83c5230d1779060e17a9", + _tpl: "65704de13e7bba58ea0285c8", + parentId: "eb3bbc6cb084a53ff48b672d", + slotId: "Soft_armor_front", + upd: { Repairable: { Durability: 37.4214172, MaxDurability: 56 } }, + }, { + _id: "9fba54de64b37902dd14b6e5", + _tpl: "65705c3c14f2ed6d7d0b7738", + parentId: "eb3bbc6cb084a53ff48b672d", + slotId: "Soft_armor_back", + upd: { Repairable: { Durability: 49.93156, MaxDurability: 56 } }, + }, { + _id: "2b534b3af5f240c625a77424", + _tpl: "65705c777260e1139e091408", + parentId: "eb3bbc6cb084a53ff48b672d", + slotId: "Soft_armor_left", + upd: { Repairable: { Durability: 12, MaxDurability: 12 } }, + }, { + _id: "e046688c9167ceaced5af3a7", + _tpl: "65705cb314f2ed6d7d0b773c", + parentId: "eb3bbc6cb084a53ff48b672d", + slotId: "soft_armor_right", + upd: { Repairable: { Durability: 12, MaxDurability: 12 } }, + }, { + _id: "6c612d370959e61b6c10b7bf", + _tpl: "65705cea4916448ae1050897", + parentId: "eb3bbc6cb084a53ff48b672d", + slotId: "Collar", + upd: { Repairable: { Durability: 14, MaxDurability: 14 } }, }], }]; diff --git a/project/tests/controllers/InsuranceController.test.ts b/project/tests/controllers/InsuranceController.test.ts index ba0cbed5..205d9160 100644 --- a/project/tests/controllers/InsuranceController.test.ts +++ b/project/tests/controllers/InsuranceController.test.ts @@ -122,9 +122,7 @@ describe("InsuranceController", () => // Verify that the correct methods were called. expect(mockGetProfile).toBeCalledTimes(1); - expect(mockLoggerDebug).toBeCalledWith( - `Found ${insuranceFixture.length} insurance packages in profile ${sessionID}`, - ); + expect(mockLoggerDebug).toBeCalledTimes(1); expect(insuredFiltered.length).toBe(insuranceFixture.length); }); @@ -147,9 +145,7 @@ describe("InsuranceController", () => // Verify that the correct methods were called. expect(mockGetProfile).toBeCalledTimes(1); - expect(mockLoggerDebug).toBeCalledWith( - `Found ${insuranceFixture.length} insurance packages in profile ${sessionID}`, - ); + expect(mockLoggerDebug).toBeCalledTimes(1); expect(insuredFiltered.length).toBe(insuranceFixture.length - 1); // Should be 1 less than the original fixture. }); @@ -173,9 +169,7 @@ describe("InsuranceController", () => // Verify that the correct methods were called. expect(mockGetProfile).toBeCalledTimes(1); - expect(mockLoggerDebug).toBeCalledWith( - `Found ${insuranceFixture.length} insurance packages in profile ${sessionID}`, - ); + expect(mockLoggerDebug).toBeCalledTimes(1); // Verify that the returned array is empty. expect(insuredFiltered.length).toBe(0); @@ -187,12 +181,14 @@ describe("InsuranceController", () => it("should log information about the insurance package", () => { const sessionId = "session-id"; + const numberOfItems = 666; // Spy on the logger.debug method. const mockLoggerDebug = vi.spyOn(insuranceController.logger, "debug"); + vi.spyOn(insuranceController, "countAllInsuranceItems").mockReturnValue(numberOfItems); vi.spyOn(insuranceController, "findItemsToDelete").mockImplementation(vi.fn()); vi.spyOn(insuranceController, "removeItemsFromInsurance").mockImplementation(vi.fn()); - vi.spyOn(insuranceController, "adoptOrphanedItems").mockImplementation(vi.fn()); + vi.spyOn(insuranceController.itemHelper, "adoptOrphanedItems").mockImplementation(vi.fn()); vi.spyOn(insuranceController, "sendMail").mockImplementation(vi.fn()); vi.spyOn(insuranceController, "removeInsurancePackageFromProfile").mockImplementation(vi.fn()); @@ -201,9 +197,7 @@ describe("InsuranceController", () => // Verify that the log was written. expect(mockLoggerDebug).toBeCalledWith( - `Processing ${insuranceFixture.length} insurance packages, which includes a total of ${ - insuranceController.countAllInsuranceItems(insuranceFixture) - } items, in profile ${sessionId}`, + `Processing ${insuranceFixture.length} insurance packages, which includes a total of ${numberOfItems} items, in profile ${sessionId}`, ); }); @@ -218,9 +212,8 @@ describe("InsuranceController", () => ); const mockRemoveItemsFromInsurance = vi.spyOn(insuranceController, "removeItemsFromInsurance") .mockImplementation(vi.fn()); - const mockAdoptOrphanedItems = vi.spyOn(insuranceController, "adoptOrphanedItems").mockImplementation( - vi.fn(), - ); + const mockAdoptOrphanedItems = vi.spyOn(insuranceController.itemHelper, "adoptOrphanedItems") + .mockImplementation(vi.fn()); const mockSendMail = vi.spyOn(insuranceController, "sendMail").mockImplementation(vi.fn()); const mockRemoveInsurancePackageFromProfile = vi.spyOn( insuranceController, @@ -295,12 +288,17 @@ describe("InsuranceController", () => it("should remove the specified insurance package from the profile", () => { const sessionID = "session-id"; - const packageToRemove = { date: "01.11.2023", time: "10:51", location: "factory4_day" }; + const packageToRemove = { + traderId: "54cb50c76803fa8b248b4571", + systemData: { date: "01.11.2023", time: "11:18", location: "factory4_day" }, + }; const profile = { insurance: [{ - messageContent: { systemData: { date: "01.11.2023", time: "11:18", location: "factory4_day" } }, - }, { // This one should be removed - messageContent: { systemData: { date: "01.11.2023", time: "10:51", location: "factory4_day" } }, + traderId: "54cb50c76803fa8b248b4571", + systemData: { date: "01.11.2023", time: "11:18", location: "factory4_day" }, + }, { + traderId: "54cb57776803fa99248b456e", + systemData: { date: "01.11.2023", time: "10:51", location: "factory4_day" }, }], }; @@ -312,20 +310,23 @@ describe("InsuranceController", () => // Verify that the specified insurance package was removed. expect(profile.insurance.length).toBe(1); - expect(profile.insurance[0].messageContent.systemData).toStrictEqual({ - date: "01.11.2023", - time: "11:18", - location: "factory4_day", - }); + expect(profile.insurance).toStrictEqual([{ + traderId: "54cb57776803fa99248b456e", + systemData: { date: "01.11.2023", time: "10:51", location: "factory4_day" }, + }]); }); it("should log a message indicating that the package was removed", () => { const sessionID = "session-id"; - const packageToRemove = { date: "01.11.2023", time: "10:51", location: "factory4_day" }; + const packageToRemove = { + traderId: "54cb50c76803fa8b248b4571", + systemData: { date: "01.11.2023", time: "11:18", location: "factory4_day" }, + }; const profile = { insurance: [{ - messageContent: { systemData: { date: "01.11.2023", time: "10:51", location: "factory4_day" } }, + traderId: "54cb50c76803fa8b248b4571", + systemData: { date: "01.11.2023", time: "11:18", location: "factory4_day" }, }], }; @@ -340,17 +341,24 @@ describe("InsuranceController", () => // Verify that the log was written. expect(mockLoggerDebug).toBeCalledWith( - `Removed insurance package with date: ${packageToRemove.date}, time: ${packageToRemove.time}, and location: ${packageToRemove.location} from profile ${sessionID}. Remaining packages: ${profile.insurance.length}`, + `Removed processed insurance package. Remaining packages: ${profile.insurance.length}`, ); }); it("should not remove any packages if the specified package is not found", () => { const sessionID = "session-id"; - const packageToRemove = { date: "01.11.2023", time: "10:51", location: "factory4_day" }; + const packageToRemove = { + traderId: "54cb50c76803fa8b248b4571", + systemData: { date: "01.11.2023", time: "11:25", location: "factory4_day" }, + }; const profile = { insurance: [{ - messageContent: { systemData: { date: "02.11.2023", time: "10:50", location: "factory4_night" } }, + traderId: "54cb50c76803fa8b248b4571", + systemData: { date: "01.11.2023", time: "11:18", location: "factory4_day" }, + }, { + traderId: "54cb57776803fa99248b456e", + systemData: { date: "01.11.2023", time: "10:51", location: "factory4_day" }, }], }; @@ -360,8 +368,8 @@ describe("InsuranceController", () => // Execute the method. insuranceController.removeInsurancePackageFromProfile(sessionID, packageToRemove); - // Verify that no packages were removed. - expect(profile.insurance.length).toBe(1); + // Verify that the specified insurance package was removed. + expect(profile.insurance.length).toBe(2); }); }); @@ -373,7 +381,10 @@ describe("InsuranceController", () => insurancePackage.items = []; // Execute the method. - const result = insuranceController.findItemsToDelete(insurancePackage); + const result = insuranceController.findItemsToDelete( + insuranceController.hashUtil.generate(), + insurancePackage, + ); // Verify that the result is correct. expect(result.size).toBe(0); @@ -387,7 +398,6 @@ describe("InsuranceController", () => const numberOfItems = insured.items.length; // Mock helper methods. - const mockPopulateItemsMap = vi.spyOn(insuranceController, "populateItemsMap"); const mockPopulateParentAttachmentsMap = vi.spyOn(insuranceController, "populateParentAttachmentsMap"); const mockIsAttachmentAttached = vi.spyOn(insuranceController.itemHelper, "isAttachmentAttached"); const mockProcessAttachments = vi.spyOn(insuranceController, "processAttachments").mockImplementation( @@ -405,12 +415,11 @@ describe("InsuranceController", () => vi.spyOn(insuranceController, "processRegularItems").mockImplementation(mockProcessRegularItems); // Execute the method. - const result = insuranceController.findItemsToDelete(insured); + const result = insuranceController.findItemsToDelete(insuranceController.hashUtil.generate(), insured); // Verify that the correct methods were called. - expect(mockPopulateItemsMap).toHaveBeenCalledTimes(1); expect(mockPopulateParentAttachmentsMap).toHaveBeenCalledTimes(1); - expect(mockIsAttachmentAttached).toHaveBeenCalledTimes(numberOfItems + 1); // Once for each item, plus once more + expect(mockIsAttachmentAttached).toHaveBeenCalled(); expect(mockProcessRegularItems).toHaveBeenCalledTimes(1); expect(mockProcessAttachments).not.toHaveBeenCalled(); @@ -426,7 +435,6 @@ describe("InsuranceController", () => const insured = insuranceFixture[0]; // Mock helper methods. - const mockPopulateItemsMap = vi.spyOn(insuranceController, "populateItemsMap"); const mockProcessRegularItems = vi.spyOn(insuranceController, "processRegularItems"); const mockProcessAttachments = vi.spyOn(insuranceController, "processAttachments"); @@ -440,10 +448,9 @@ describe("InsuranceController", () => ); // Execute the method. - const result = insuranceController.findItemsToDelete(insured); + const result = insuranceController.findItemsToDelete(insuranceController.hashUtil.generate(), insured); // Verify that the correct methods were called. - expect(mockPopulateItemsMap).toHaveBeenCalled(); expect(mockPopulateParentAttachmentsMap).toHaveBeenCalled(); expect(mockProcessRegularItems).not.toHaveBeenCalled(); expect(mockProcessAttachments).not.toHaveBeenCalled(); @@ -459,7 +466,6 @@ describe("InsuranceController", () => const numberOfItems = insured.items.length; // Mock helper methods. - const mockPopulateItemsMap = vi.spyOn(insuranceController, "populateItemsMap"); const mockPopulateParentAttachmentsMap = vi.spyOn(insuranceController, "populateParentAttachmentsMap"); // Add all items to the toDelete set. Not realistic, but it's fine for this test. @@ -481,10 +487,9 @@ describe("InsuranceController", () => vi.spyOn(insuranceController, "processAttachments").mockImplementation(mockProcessAttachments); // Execute the method. - const result = insuranceController.findItemsToDelete(insured); + const result = insuranceController.findItemsToDelete(insuranceController.hashUtil.generate(), insured); // Verify that the correct methods were called. - expect(mockPopulateItemsMap).toHaveBeenCalled(); expect(mockPopulateParentAttachmentsMap).toHaveBeenCalled(); expect(mockProcessRegularItems).toHaveBeenCalled(); expect(mockProcessAttachments).toHaveBeenCalled(); @@ -499,7 +504,6 @@ describe("InsuranceController", () => const insured = insuranceFixture[0]; // Mock helper methods. - const mockPopulateItemsMap = vi.spyOn(insuranceController, "populateItemsMap"); const mockPopulateParentAttachmentsMap = vi.spyOn(insuranceController, "populateParentAttachmentsMap"); // Don't add any items to the toDelete set. @@ -511,10 +515,9 @@ describe("InsuranceController", () => ); // Execute the method. - const result = insuranceController.findItemsToDelete(insured); + const result = insuranceController.findItemsToDelete(insuranceController.hashUtil.generate(), insured); // Verify that the correct methods were called. - expect(mockPopulateItemsMap).toHaveBeenCalled(); expect(mockPopulateParentAttachmentsMap).toHaveBeenCalled(); expect(mockProcessRegularItems).toHaveBeenCalled(); expect(mockProcessAttachments).toHaveBeenCalled(); @@ -551,7 +554,7 @@ describe("InsuranceController", () => vi.spyOn(insuranceController, "processAttachments").mockImplementation(mockProcessAttachments); // Execute the method. - const result = insuranceController.findItemsToDelete(insured); + const result = insuranceController.findItemsToDelete(insuranceController.hashUtil.generate(), insured); // Verify that the result is the correct size, and the size is logged. expect(result.size).toBe(numberOfItems); @@ -566,26 +569,54 @@ describe("InsuranceController", () => const insured = insuranceFixture[0]; // Generate the items map. - const itemsMap = insuranceController.populateItemsMap(insured); + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); // Execute the method. - const result = insuranceController.populateParentAttachmentsMap(insured, itemsMap); + const result = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); // Verify that the map is populated correctly. - expect(result.size).toBe(6); // There are 6 base-level items in this insurance package. + expect(result.size).toBe(9); // There are 9 base-level items in this insurance package. - const gun = result.get("911a0f04d5d9c7e239807ae0"); - expect(gun.length).toBe(7); // This AK has 7 attachments. + const gun = result.get("35111c9b72a87b6b7d95ad35"); + expect(gun.length).toBe(31); // This gun has 31 attachments. - // The attachments should be mapped to the AK properly... + // The attachments should be mapped to the gun properly... const validAttachmentTemplates = [ - "677c209ebb45445ebb42c405", - "4bd10f89836fd9f86aedcac1", - "8b1327270791b142ac341b03", - "da8cde1b3024c336f6e06152", - "bc041c0011d76f714b898400", - "9f8d7880a6e0a47a211ec5d3", - "db2ef9442178910eba985b51", + "7c42d3dce0ddbc4806bce48b", + "10b97872c5f4e0e1949a0369", + "a6cd9986dde4cabddcd2dce2", + "b65635b515712f990fdcc201", + "0e11045873efe3625695c1ae", + "94c4161abe8bf654fb986063", + "9b284ccfd0d535acec1ff58b", + "d730caa83a11fd01250a7261", + "24291c7bcf91e362adb6d68b", + "0d98fd0769cce8e473bbe540", + "11b174510f039e8217fbd202", + "c435230e530574b1d7c32300", + "15666fe6fd2d95206612e418", + "a54de8b9014eee71fdf1d01d", + "c34555bc95a9a7a23150a36f", + "91cae4ae30d1366b87158238", + "48f23df4509164cf397b9ab5", + "a55f05f689978ac65c7da654", + "8ae4ea81a2d6074162d87a9c", + "312cc0f6687963305457235e", + "e1e5aaf474b7282a52ac9a14", + "bb9a34648e08f005db5d7484", + "dd9ac99d3ea4c9656221bcc9", + "b22748de8da5f3c1362dd8e0", + "e3cc1be8954c4889f94b435a", + "e73f05be5a306168e847da82", + "847cf35ec92d8af8e4814ea8", + "bb4b7a4475fea0f0135305f6", + "d0ac8e688a0bb17668589909", + "5dbcf8cbbb3f8ef669836320", + "f996645c809968f8033593a6", ]; for (const value of validAttachmentTemplates) { @@ -594,64 +625,37 @@ describe("InsuranceController", () => } }); - it("should ignore gun accessories that cannot be modified in-raid", () => - { - const insured = insuranceFixture[0]; - - // Generate the items map. - const itemsMap = insuranceController.populateItemsMap(insured); - - // Execute the method. - const result = insuranceController.populateParentAttachmentsMap(insured, itemsMap); - - // Verify that the map is populated correctly. - expect(result.size).toBe(6); // There are 6 base-level items in this insurance package. - - const gun = result.get("911a0f04d5d9c7e239807ae0"); - expect(gun.length).toBe(7); // This AK has 7 valid attachments. - - // These are attachments for the AK, but they are not raid moddable, so they should not be mapped. - const invalidAttachmentTemplates = [ - "1e0b177df108c0c117028812", - "c9278dd8251e99578bf7a274", - "402b4086535a50ef7d9cef88", - "566335b3df586f34b47f5e35", - ]; - for (const value of invalidAttachmentTemplates) - { - // Verify that each template is not present in the array of attachments. - expect(gun.every((item) => item._id !== value)).toBe(true); - } - }); - it("should correctly map helmet to all of its attachments", () => { const insured = insuranceFixture[0]; // Generate the items map. - const itemsMap = insuranceController.populateItemsMap(insured); + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); // Execute the method. - const result = insuranceController.populateParentAttachmentsMap(insured, itemsMap); + const result = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); // Verify that the map is populated correctly. - expect(result.size).toBe(6); // There are 6 base-level items in this insurance package. + expect(result.size).toBe(9); // There are 9 base-level items in this insurance package. - const gun = result.get("3679078e05f5b14466d6a730"); - expect(gun.length).toBe(5); // This LShZ-2DTM has 5 valid attachments. + const helmet = result.get("b2405216e5730f3511884a10"); + expect(helmet.length).toBe(4); // This helmet has 2 valid attachments. - // The attachments should be mapped to the AK properly... + // The attachments should be mapped to the helmet properly... const validAttachmentTemplates = [ - "a2b0c716162c5e31ec28c55a", - "dc565f750342cb2d19eeda06", - "e9ff62601669d9e2ea9c2fbb", - "ac134d7cf6c9d8e25edd0015", - "22274b895ecc80d51c3cba1c", + "7a0675280dbbad69ce592d74", + "c0c182942f54d3c183f0e179", + "f7066fdfeefb29eca1d2dbeb", + "ee0ec86e9608abe773175e3a", ]; for (const value of validAttachmentTemplates) { // Verify that each template is present in the array of attachments. - expect(gun.some((item) => item._id === value)).toBe(true); + expect(helmet.some((item) => item._id === value)).toBe(true); } }); @@ -660,29 +664,41 @@ describe("InsuranceController", () => const insured = insuranceFixture[0]; // Generate the items map. - const itemsMap = insuranceController.populateItemsMap(insured); + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); // Execute the method. - const result = insuranceController.populateParentAttachmentsMap(insured, itemsMap); + const result = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); // Verify that the map is populated correctly. - expect(result.size).toBe(6); // There are 6 base-level items in this insurance package. + expect(result.size).toBe(9); // There are 9 base-level items in this insurance package. - const gun = result.get("351180f3248d45c71cb2ebdc"); - expect(insured.items.find((item) => item._id === "351180f3248d45c71cb2ebdc").slotId).toBe("main"); - expect(gun.length).toBe(14); // This AS VAL has 14 valid attachments. + const gun = result.get("26598f88d49198c4a0a9391c"); + expect(insured.items.find((item) => item._id === "26598f88d49198c4a0a9391c").slotId).toBe("main"); + expect(gun.length).toBe(3); }); it("should not map items that do not have a main-parent", () => { + // Remove regular items from the fixture. insuranceFixture = new ProfileInsuranceFactory().adjustPackageDates().removeRegularItems().get(); const insured = insuranceFixture[0]; // Generate the items map. - const itemsMap = insuranceController.populateItemsMap(insured); + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + + // Suppress warnings. + const mockLoggerWarning = vi.spyOn(insuranceController.logger, "warning").mockImplementation(vi.fn()); // Execute the method. - const result = insuranceController.populateParentAttachmentsMap(insured, itemsMap); + const result = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); // Verify that the map is populated correctly. expect(result.size).toBe(0); @@ -690,31 +706,92 @@ describe("InsuranceController", () => it("should log a warning when an item does not have a main-parent", () => { + // Remove regular items from the fixture. insuranceFixture = new ProfileInsuranceFactory().adjustPackageDates().removeRegularItems().get(); const insured = insuranceFixture[0]; // Generate the items map. - const itemsMap = insuranceController.populateItemsMap(insured); + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); // Suppress warnings. const mockLoggerWarning = vi.spyOn(insuranceController.logger, "warning").mockImplementation(vi.fn()); // Execute the method. - insuranceController.populateParentAttachmentsMap(insured, itemsMap); + insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); // Verify that the warning was logged. expect(mockLoggerWarning).toHaveBeenCalled(); }); }); + describe("removeNonModdableAttachments", () => + { + it("should return a Map where each parent item ID is mapped to only moddable attachments", () => + { + const insured = insuranceFixture[0]; + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); + + // Execute the method. + const result = insuranceController.removeNonModdableAttachments(parentAttachmentsMap, itemsMap); + + // Verify that the map is populated correctly. + for (const [parentId, attachments] of result) + { + for (const attachment of attachments) + { + // Verify that each attachment is moddable. + const attachmentParentItem = itemsMap.get(parentId); + expect(insuranceController.itemHelper.isRaidModdable(attachment, attachmentParentItem)).toBe(true); + } + } + }); + + it("should remove parents that do not have any moddable attachments", () => + { + const insured = insuranceFixture[0]; + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); + + // Mock isRaidModdable to return false for all attachments. + vi.spyOn(insuranceController.itemHelper, "isRaidModdable").mockReturnValue(false); + + // Execute the method. + const result = insuranceController.removeNonModdableAttachments(parentAttachmentsMap, itemsMap); + + // Verify that the map is now empty. + expect(result.size).toBe(0); + }); + }); + describe("processRegularItems", () => { it("should process regular items and their non-attachment children", () => { + // Remove attachment items from the fixture. insuranceFixture = new ProfileInsuranceFactory().adjustPackageDates().removeAttachmentItems().get(); + const insured = insuranceFixture[0]; const numberOfItems = insured.items.length; const toDelete = new Set(); + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); // Mock helper methods. const mockIsAttachmentAttached = vi.spyOn(insuranceController.itemHelper, "isAttachmentAttached"); @@ -727,11 +804,11 @@ describe("InsuranceController", () => const mockRollForDelete = vi.spyOn(insuranceController, "rollForDelete").mockReturnValue(true); // Execute the method. - insuranceController.processRegularItems(insured, toDelete); + insuranceController.processRegularItems(insured, toDelete, parentAttachmentsMap); // Verify that the correct methods were called. - expect(mockIsAttachmentAttached).toHaveBeenCalled(); - expect(mockFindAndReturnChildrenAsItems).toHaveBeenCalled(); + expect(mockIsAttachmentAttached).toHaveBeenCalledTimes(numberOfItems); + expect(mockFindAndReturnChildrenAsItems).not.toHaveBeenCalled(); expect(mockRollForDelete).toHaveBeenCalledTimes(numberOfItems); // Verify that all items were added to the toDelete set. @@ -742,6 +819,12 @@ describe("InsuranceController", () => { const insured = insuranceFixture[0]; const toDelete = new Set(); + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); // Mock isAttachmentAttached to return true for all items. vi.spyOn(insuranceController.itemHelper, "isAttachmentAttached").mockReturnValue(true); @@ -750,7 +833,7 @@ describe("InsuranceController", () => const mockRollForDelete = vi.spyOn(insuranceController, "rollForDelete").mockReturnValue(true); // Execute the method. - insuranceController.processRegularItems(insured, toDelete); + insuranceController.processRegularItems(insured, toDelete, parentAttachmentsMap); // Verify that a roll was not made for any items. expect(mockRollForDelete).not.toHaveBeenCalled(); @@ -761,20 +844,24 @@ describe("InsuranceController", () => it("should mark attachments for deletion when parent is marked for deletion", () => { - const itemHelper = container.resolve("ItemHelper"); - const insured = insuranceFixture[0]; const toDelete = new Set(); + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); // Mock rollForDelete to return true for all base-parent items. const mockRollForDelete = vi.fn((traderId, insuredItem) => { - return !itemHelper.isAttachmentAttached(insuredItem); + return !insuranceController.itemHelper.isAttachmentAttached(insuredItem); }); vi.spyOn(insuranceController, "rollForDelete").mockImplementation(mockRollForDelete); // Execute the method. - insuranceController.processRegularItems(insured, toDelete); + insuranceController.processRegularItems(insured, toDelete, parentAttachmentsMap); // Verify that all items were added to the toDelete set. expect(toDelete).toEqual(new Set(insured.items.map((item) => item._id))); @@ -786,44 +873,53 @@ describe("InsuranceController", () => it("should iterate over each parent item", () => { const insured = insuranceFixture[0]; - const itemsMap = insuranceController.populateItemsMap(insured); - const parentToAttachmentMap = insuranceController.populateParentAttachmentsMap(insured, itemsMap); const toDelete = new Set(); + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); // Mock helper methods. const mockProcessAttachmentByParent = vi.spyOn(insuranceController, "processAttachmentByParent"); // Execute the method. - insuranceController.processAttachments(parentToAttachmentMap, itemsMap, insured.traderId, toDelete); + insuranceController.processAttachments(parentAttachmentsMap, itemsMap, insured.traderId, toDelete); // Verify - expect(mockProcessAttachmentByParent).toHaveBeenCalledTimes(parentToAttachmentMap.size); + expect(mockProcessAttachmentByParent).toHaveBeenCalledTimes(parentAttachmentsMap.size); }); it("should log the name of each parent item", () => { - const itemHelper = container.resolve("ItemHelper"); - const insured = insuranceFixture[0]; - const itemsMap = insuranceController.populateItemsMap(insured); - const parentToAttachmentMap = insuranceController.populateParentAttachmentsMap(insured, itemsMap); const toDelete = new Set(); + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); // Mock helper methods. - const mockLoggerDebug = vi.spyOn(insuranceController.logger, "debug"); + const mockLoggerDebug = vi.spyOn(insuranceController.logger, "debug").mockImplementation(vi.fn()); + + // Mock processAttachmentByParent to prevent it from being called. + vi.spyOn(insuranceController, "processAttachmentByParent").mockImplementation(vi.fn()); // Execute the method. - insuranceController.processAttachments(parentToAttachmentMap, itemsMap, insured.traderId, toDelete); + insuranceController.processAttachments(parentAttachmentsMap, itemsMap, insured.traderId, toDelete); // Verify that the name of each parent item is logged. - for (const [parentId] of parentToAttachmentMap) + for (const [parentId] of parentAttachmentsMap) { const parentItem = itemsMap.get(parentId); if (parentItem) { - const expectedMessage = `Processing attachments for parent item: ${ - itemHelper.getItemName(parentItem._tpl) - }`; + const expectedMessage = `Processing attachments of parent "${ + insuranceController.itemHelper.getItemName(parentItem._tpl) + }":`; expect(mockLoggerDebug).toHaveBeenCalledWith(expectedMessage); } } @@ -835,9 +931,13 @@ describe("InsuranceController", () => it("should handle sorting, rolling, and deleting attachments by calling helper methods", () => { const insured = insuranceFixture[0]; - const itemsMap = insuranceController.populateItemsMap(insured); - const parentToAttachmentMap = insuranceController.populateParentAttachmentsMap(insured, itemsMap); - const attachments = parentToAttachmentMap.entries().next().value; + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); + const attachments = parentAttachmentsMap.entries().next().value; const toDelete = new Set(); // Mock helper methods. @@ -854,12 +954,16 @@ describe("InsuranceController", () => expect(mockAttachmentDeletionByValue).toHaveBeenCalled(); }); - it("should log attachment details and number of successful rolls", () => + it("should log attachment details and number of attachments to be deleted", () => { const insured = insuranceFixture[0]; - const itemsMap = insuranceController.populateItemsMap(insured); - const parentToAttachmentMap = insuranceController.populateParentAttachmentsMap(insured, itemsMap); - const attachments = parentToAttachmentMap.values().next().value; + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); + const attachments = parentAttachmentsMap.entries().next().value; const toDelete = new Set(); const successfulRolls = 4; @@ -873,7 +977,7 @@ describe("InsuranceController", () => // Verify that the logs were called/written. expect(mockLogAttachmentsDetails).toBeCalled(); - expect(mockLoggerDebug).toHaveBeenCalledWith(`Number of successful rolls: ${successfulRolls}`); + expect(mockLoggerDebug).toHaveBeenCalledWith(`Number of attachments to be deleted: ${successfulRolls}`); }); }); @@ -882,15 +986,20 @@ describe("InsuranceController", () => it("should sort the attachments array by maxPrice in descending order", () => { const insured = insuranceFixture[0]; - const itemsMap = insuranceController.populateItemsMap(insured); - const parentToAttachmentMap = insuranceController.populateParentAttachmentsMap(insured, itemsMap); - const attachments = parentToAttachmentMap.values().next().value; + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); + const attachments = parentAttachmentsMap.entries().next().value; + const attachmentCount = attachments.length; // Execute the method. const sortedAttachments = insuranceController.sortAttachmentsByPrice(attachments); - // Verify the length of the sorted attachments array - expect(sortedAttachments.length).toBe(5); + // Verify the length of the sorted attachments array is unchanged + expect(sortedAttachments.length).toBe(attachmentCount); // Verify that the attachments are sorted by maxPrice in descending order for (let i = 1; i < sortedAttachments.length; i++) @@ -902,20 +1011,22 @@ describe("InsuranceController", () => it("should place attachments with null maxPrice at the bottom of the sorted list", () => { const insured = insuranceFixture[0]; - const itemsMap = insuranceController.populateItemsMap(insured); - const parentToAttachmentMap = insuranceController.populateParentAttachmentsMap(insured, itemsMap); - const attachments = parentToAttachmentMap.values().next().value; - - // Set the maxPrice of the first two attachments to null. - vi.spyOn(insuranceController.itemHelper, "getItemMaxPrice").mockReturnValueOnce(null).mockReturnValueOnce( - null, + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, ); + const attachments = parentAttachmentsMap.entries().next().value; + + // Set the maxPrice of the first attachment to null. + vi.spyOn(insuranceController.itemHelper, "getItemMaxPrice").mockReturnValue(666).mockReturnValueOnce(null); // Execute the method. const sortedAttachments = insuranceController.sortAttachmentsByPrice(attachments); // Verify that the attachments with null maxPrice are at the bottom of the list - const nullPriceAttachments = sortedAttachments.slice(-2); + const nullPriceAttachments = sortedAttachments.slice(-1); for (const attachment of nullPriceAttachments) { expect(attachment.maxPrice).toBeNull(); @@ -947,8 +1058,8 @@ describe("InsuranceController", () => // Verify that logger.debug was called correctly. expect(loggerDebugSpy).toHaveBeenCalledTimes(2); - expect(loggerDebugSpy).toHaveBeenNthCalledWith(1, "Child Item - Name: Item 1, Max Price: 100"); - expect(loggerDebugSpy).toHaveBeenNthCalledWith(2, "Child Item - Name: Item 2, Max Price: 200"); + expect(loggerDebugSpy).toHaveBeenNthCalledWith(1, "Attachment 1: \"Item 1\" - Price: 100"); + expect(loggerDebugSpy).toHaveBeenNthCalledWith(2, "Attachment 2: \"Item 2\" - Price: 200"); }); it("should not log anything when there are no attachments", () => @@ -968,12 +1079,16 @@ describe("InsuranceController", () => describe("countSuccessfulRolls", () => { - it("should count the number of successful rolls based on the rollForDelete method", () => + it("should count the number of successful rolls made in the rollForDelete method", () => { const insured = insuranceFixture[0]; - const itemsMap = insuranceController.populateItemsMap(insured); - const parentToAttachmentMap = insuranceController.populateParentAttachmentsMap(insured, itemsMap); - const attachments = parentToAttachmentMap.values().next().value; + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); + const attachments = parentAttachmentsMap.values().next().value; // Mock rollForDelete to return true for the first two attachments. const mockRollForDelete = vi.spyOn(insuranceController, "rollForDelete").mockReturnValue(false) @@ -987,12 +1102,16 @@ describe("InsuranceController", () => expect(result).toBe(2); }); - it("should count the number of successful rolls based on the rollForDelete method", () => + it("should return zero if no successful rolls were made in the rollForDelete method", () => { const insured = insuranceFixture[0]; - const itemsMap = insuranceController.populateItemsMap(insured); - const parentToAttachmentMap = insuranceController.populateParentAttachmentsMap(insured, itemsMap); - const attachments = parentToAttachmentMap.values().next().value; + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); + const attachments = parentAttachmentsMap.values().next().value; // Mock rollForDelete to return false. const mockRollForDelete = vi.spyOn(insuranceController, "rollForDelete").mockReturnValue(false); @@ -1027,9 +1146,13 @@ describe("InsuranceController", () => it("should add the correct number of attachments to the toDelete set", () => { const insured = insuranceFixture[0]; - const itemsMap = insuranceController.populateItemsMap(insured); - const parentToAttachmentMap = insuranceController.populateParentAttachmentsMap(insured, itemsMap); - const attachments = parentToAttachmentMap.values().next().value; + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); + const attachments = parentAttachmentsMap.values().next().value; const successfulRolls = 2; const toDelete = new Set(); @@ -1044,9 +1167,13 @@ describe("InsuranceController", () => it("should not add any attachments to toDelete if successfulRolls is zero", () => { const insured = insuranceFixture[0]; - const itemsMap = insuranceController.populateItemsMap(insured); - const parentToAttachmentMap = insuranceController.populateParentAttachmentsMap(insured, itemsMap); - const attachments = parentToAttachmentMap.values().next().value; + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); + const attachments = parentAttachmentsMap.values().next().value; const successfulRolls = 0; const toDelete = new Set(); @@ -1061,9 +1188,13 @@ describe("InsuranceController", () => it("should add all attachments to toDelete if successfulRolls is greater than the number of attachments", () => { const insured = insuranceFixture[0]; - const itemsMap = insuranceController.populateItemsMap(insured); - const parentToAttachmentMap = insuranceController.populateParentAttachmentsMap(insured, itemsMap); - const attachments = parentToAttachmentMap.values().next().value; + const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); + const parentAttachmentsMap = insuranceController.populateParentAttachmentsMap( + insuranceController.hashUtil.generate(), + insured, + itemsMap, + ); + const attachments = parentAttachmentsMap.values().next().value; const successfulRolls = 999; const toDelete = new Set(); @@ -1134,125 +1265,10 @@ describe("InsuranceController", () => }); }); - describe("adoptOrphanedItems", () => - { - it("should adopt orphaned items by resetting them as base-level items", () => - { - // Get all of the items, so that we can dynamically find the hideout item. - const insured = insuranceFixture[0]; - const hideoutParentId = insuranceController.fetchHideoutItemParent(insured.items); - - // Manually set one of the items to be orphaned. - insured.items[0].parentId = "9999"; // Should not exist in the items array. - insured.items[0].slotId = "main"; // Should not be "hideout". - - // Iterate over the items and find an individual orphaned item. - const orphanedItem = insured.items.find((item) => - !insured.items.some((parent) => parent._id === item.parentId) - ); - - // Setup tests to verify that the orphaned item we added is in fact orphaned. - expect(orphanedItem.parentId).toBe(insured.items[0].parentId); - expect(orphanedItem.slotId).toBe(insured.items[0].slotId); - - // Execute the method. - insuranceController.adoptOrphanedItems(insured); - - // Verify that the orphaned items have been adopted. - expect(orphanedItem.parentId).toBe(hideoutParentId); - expect(orphanedItem.slotId).toBe("hideout"); - }); - - it("should not adopt items that are not orphaned", () => - { - const unmodified = insuranceFixture[0]; - - // Create a deep copy of the insured items array. - const insured = JSON.parse(JSON.stringify(insuranceFixture[0])); - - // Execute the method. - insuranceController.adoptOrphanedItems(insured); - - // Verify that the orphaned items have been adopted. - expect(insured).toStrictEqual(unmodified); - }); - - it("should remove location data from adopted items", () => - { - const insured = insuranceFixture[0]; - - // Manually set one of the items to be orphaned. - insured.items[0].parentId = "9999"; // Should not exist in the items array. - insured.items[0].slotId = "main"; // Should not be "hideout". - insured.items[0].location = { x: 1, y: 2, r: 3, isSearched: true }; // Should be removed. - - // Iterate over the items and find an individual orphaned item. - const orphanedItem = insured.items.find((item) => - !insured.items.some((parent) => parent._id === item.parentId) - ); - - // Setup tests to verify that the orphaned item we added is in fact orphaned. - expect(orphanedItem.parentId).toBe(insured.items[0].parentId); - expect(orphanedItem.slotId).toBe(insured.items[0].slotId); - - // Execute the method. - insuranceController.adoptOrphanedItems(insured); - - // Verify that the orphaned items have been adopted. - expect(orphanedItem).not.toHaveProperty("location"); - }); - }); - - describe("fetchHideoutItemParent", () => - { - it("should return the parentId value of an item that has a slotId of 'hideout'", () => - { - const insured = insuranceFixture[0]; - const hideoutParentId = insuranceController.fetchHideoutItemParent(insured.items); - - // Execute the method. - const result = insuranceController.fetchHideoutItemParent(insured.items); - - // Verify that the hideout item parentId is returned. - expect(result).toBe(hideoutParentId); - }); - - it("should return an empty string if no item with a slotId of 'hideout' could be found", () => - { - // Fetch a bunch of orphaned items that don't have a hideout parent. - const insuranceFixture = new ProfileInsuranceFactory().adjustPackageDates().removeRegularItems().get(); - const insured = insuranceFixture[0]; - - // Execute the method. - const result = insuranceController.fetchHideoutItemParent(insured.items); - - // Verify that the hideout item parentId is returned. - expect(result).toBe(""); - }); - - it("should log a warning if the base-level item does not exist", () => - { - // Fetch a bunch of orphaned items that don't have a hideout parent. - const insuranceFixture = new ProfileInsuranceFactory().adjustPackageDates().removeRegularItems().get(); - const insured = insuranceFixture[0]; - - // Spy on the logger. - const loggerWarningSpy = vi.spyOn(insuranceController.logger, "warning"); - - // Execute the method. - insuranceController.fetchHideoutItemParent(insured.items); - - // Verify that the hideout item parentId is returned. - expect(loggerWarningSpy).toHaveBeenCalled(); - }); - }); - describe("sendMail", () => { it("should send insurance failed message when no items are present", () => { - const traderHelper = container.resolve("TraderHelper"); - const insurance = insuranceFixture[0]; insurance.items = []; // Empty the items array const sessionID = "session-id"; @@ -1276,19 +1292,17 @@ describe("InsuranceController", () => // Verify that the insurance failed message was sent. expect(sendMessageSpy).toHaveBeenCalledWith( sessionID, - traderHelper.getTraderById(insurance.traderId), + insuranceController.traderHelper.getTraderById(insurance.traderId), MessageType.INSURANCE_RETURN, insuranceFailedTpl, insurance.items, - insurance.messageContent.maxStorageTime, - insurance.messageContent.systemData, + insurance.maxStorageTime, + insurance.systemData, ); }); it("should not send insurance failed message when items are present", () => { - const traderHelper = container.resolve("TraderHelper"); - const insurance = insuranceFixture[0]; const sessionID = "session-id"; const insuranceFailedTpl = "failed-message-template"; @@ -1311,12 +1325,12 @@ describe("InsuranceController", () => // Verify that the insurance failed message was not sent. expect(sendMessageSpy).toHaveBeenCalledWith( sessionID, - traderHelper.getTraderById(insurance.traderId), + insuranceController.traderHelper.getTraderById(insurance.traderId), MessageType.INSURANCE_RETURN, - insurance.messageContent.templateId, + insurance.messageTemplateId, insurance.items, - insurance.messageContent.maxStorageTime, - insurance.messageContent.systemData, + insurance.maxStorageTime, + insurance.systemData, ); }); }); @@ -1519,14 +1533,17 @@ describe("InsuranceController", () => expect(pmcData.InsuredItems.length).toBe(body.items.length); }); - it("should return the output with warnings if payment fails", () => + it("should update output with warnings if payment fails", () => { // Override the payMoney mock to simulate a payment failure with a warning. const expectedPayMoneyReturn = { - warnings: [{ index: 0, errmsg: "Not enough money to complete transaction", code: 500 }], + warnings: [{ index: 0, errmsg: "You broke.", code: 500 }], otherProperty: "property-value", }; - mockPayMoney.mockReturnValue(expectedPayMoneyReturn); + mockPayMoney.mockImplementation((pmcData, request, sessionID, output) => + { + output.warnings = expectedPayMoneyReturn.warnings; + }); // Execute the method. const response = insuranceController.insure(pmcData, body, sessionId); @@ -1542,10 +1559,13 @@ describe("InsuranceController", () => { // Override the payMoney mock to simulate a payment failure with a warning. const expectedPayMoneyReturn = { - warnings: [{ index: 0, errmsg: "Not enough money to complete transaction", code: 500 }], + warnings: [{ index: 0, errmsg: "You broke.", code: 500 }], otherProperty: "property-value", }; - mockPayMoney.mockReturnValue(expectedPayMoneyReturn); + mockPayMoney.mockImplementation((pmcData, request, sessionID, output) => + { + output.warnings = expectedPayMoneyReturn.warnings; + }); // Execute the method. insuranceController.insure(pmcData, body, sessionId); From 8cf8688ebaad2a608f38152f521b80f4bd9867a1 Mon Sep 17 00:00:00 2001 From: Refringe Date: Thu, 11 Apr 2024 21:17:58 -0400 Subject: [PATCH 056/104] Spelling Mistake --- project/src/services/PaymentService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/services/PaymentService.ts b/project/src/services/PaymentService.ts index 4ef6bfac..c4658a74 100644 --- a/project/src/services/PaymentService.ts +++ b/project/src/services/PaymentService.ts @@ -315,7 +315,7 @@ export class PaymentService } /** - * Get all money stacks in inventory and prioritse items in stash + * Get all money stacks in inventory and prioritise items in stash * @param pmcData * @param currencyTpl * @param playerStashId Players stash id From d60cdb6be266b09e537216c343378f678338528f Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 12 Apr 2024 09:27:15 +0100 Subject: [PATCH 057/104] Separate out address used by backend to assist with users who have locked down local machines and cannot connect to a local http server Remove unsed ip/port property assignment on server start that wasn't used anywhere --- project/assets/configs/http.json | 2 ++ project/src/helpers/HttpServerHelper.ts | 4 ++-- project/src/models/spt/config/IHttpConfig.ts | 6 +++++- project/src/servers/HttpServer.ts | 3 --- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/project/assets/configs/http.json b/project/assets/configs/http.json index 97892786..a6defa80 100644 --- a/project/assets/configs/http.json +++ b/project/assets/configs/http.json @@ -1,6 +1,8 @@ { "ip": "127.0.0.1", "port": 6969, + "backendIp": "127.0.0.1", + "backendPort": 6969, "webSocketPingDelayMs": 90000, "logRequests": true, "serverImagePathOverride": {} diff --git a/project/src/helpers/HttpServerHelper.ts b/project/src/helpers/HttpServerHelper.ts index d647c047..e0f6cadc 100644 --- a/project/src/helpers/HttpServerHelper.ts +++ b/project/src/helpers/HttpServerHelper.ts @@ -32,12 +32,12 @@ export class HttpServerHelper } /** - * Combine ip and port into url + * Combine ip and port into address * @returns url */ public buildUrl(): string { - return `${this.httpConfig.ip}:${this.httpConfig.port}`; + return `${this.httpConfig.backendIp}:${this.httpConfig.backendPort}`; } /** diff --git a/project/src/models/spt/config/IHttpConfig.ts b/project/src/models/spt/config/IHttpConfig.ts index e1ddb9d5..f1130624 100644 --- a/project/src/models/spt/config/IHttpConfig.ts +++ b/project/src/models/spt/config/IHttpConfig.ts @@ -2,10 +2,14 @@ import { IBaseConfig } from "@spt-aki/models/spt/config/IBaseConfig"; export interface IHttpConfig extends IBaseConfig { - webSocketPingDelayMs: number; kind: "aki-http"; + /** Address used by webserver */ ip: string; port: number; + /** Address used by game client to connect to */ + backendIp: string; + backendPort: string; + webSocketPingDelayMs: number; logRequests: boolean; /** e.g. "Aki_Data/Server/images/traders/579dc571d53a0658a154fbec.png": "Aki_Data/Server/images/traders/NewTraderImage.png" */ serverImagePathOverride: Record; diff --git a/project/src/servers/HttpServer.ts b/project/src/servers/HttpServer.ts index 421c7ae4..1adf92c6 100644 --- a/project/src/servers/HttpServer.ts +++ b/project/src/servers/HttpServer.ts @@ -45,9 +45,6 @@ export class HttpServer this.handleRequest(req, res); }); - this.databaseServer.getTables().server.ip = this.httpConfig.ip; - this.databaseServer.getTables().server.port = this.httpConfig.port; - /* Config server to listen on a port */ httpServer.listen(this.httpConfig.port, this.httpConfig.ip, () => { From 61d63d9ca659d619784faacf484bbb95baf8a86c Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 12 Apr 2024 09:33:17 +0100 Subject: [PATCH 058/104] Slightly reduce mp7a1/2 weighting on PMCs --- project/assets/database/bots/types/bear.json | 4 ++-- project/assets/database/bots/types/usec.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/project/assets/database/bots/types/bear.json b/project/assets/database/bots/types/bear.json index de85d2d5..e30473de 100644 --- a/project/assets/database/bots/types/bear.json +++ b/project/assets/database/bots/types/bear.json @@ -3006,9 +3006,9 @@ "5ac66d9b5acfc4001633997a": 5, "5ae08f0a5acfc408fb1398a1": 4, "5b0bbe4e5acfc40dc528a72d": 4, - "5ba26383d4351e00334c93d9": 5, + "5ba26383d4351e00334c93d9": 4, "5bb2475ed4351e00853264e3": 4, - "5bd70322209c4d00d7167b8f": 5, + "5bd70322209c4d00d7167b8f": 4, "5beed0f50db834001c062b12": 3, "5bf3e03b0db834001d2c4a9c": 5, "5bf3e0490db83400196199af": 5, diff --git a/project/assets/database/bots/types/usec.json b/project/assets/database/bots/types/usec.json index f7b24f8c..e7e353fc 100644 --- a/project/assets/database/bots/types/usec.json +++ b/project/assets/database/bots/types/usec.json @@ -3003,9 +3003,9 @@ "5ac66d9b5acfc4001633997a": 5, "5ae08f0a5acfc408fb1398a1": 4, "5b0bbe4e5acfc40dc528a72d": 4, - "5ba26383d4351e00334c93d9": 5, + "5ba26383d4351e00334c93d9": 4, "5bb2475ed4351e00853264e3": 4, - "5bd70322209c4d00d7167b8f": 5, + "5bd70322209c4d00d7167b8f": 4, "5beed0f50db834001c062b12": 3, "5bf3e03b0db834001d2c4a9c": 5, "5bf3e0490db83400196199af": 5, From 1c660fcf4e050e92e1890792c820b8bcb4524c79 Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 12 Apr 2024 09:50:37 +0100 Subject: [PATCH 059/104] Reduced magazine fill size to 0 for static loot to match live --- project/assets/configs/location.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/assets/configs/location.json b/project/assets/configs/location.json index 9308a5c8..c282c154 100644 --- a/project/assets/configs/location.json +++ b/project/assets/configs/location.json @@ -1143,7 +1143,7 @@ "containerGroupMaxSizeMultiplier": 1 }, "minFillLooseMagazinePercent": 50, - "minFillStaticMagazinePercent": 50, + "minFillStaticMagazinePercent": 0, "allowDuplicateItemsInStaticContainers": true, "magazineLootHasAmmoChancePercent": 50, "looseLootBlacklist": {}, From a5924dbe0df0da22a7b988594008980ba4e479fb Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 12 Apr 2024 10:36:24 +0100 Subject: [PATCH 060/104] Fix incorrect calculation for normal fence assort count --- project/src/services/FenceService.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/project/src/services/FenceService.ts b/project/src/services/FenceService.ts index 79266ef0..72f422cb 100644 --- a/project/src/services/FenceService.ts +++ b/project/src/services/FenceService.ts @@ -330,9 +330,8 @@ export class FenceService */ protected getCountOfItemsToGenerate(): IFenceAssortGenerationValues { - const rootPresetItems = this.fenceAssort.items.filter((item) => - item.slotId === "hideout" && item.upd.sptPresetId - ); + const allRootItems = this.fenceAssort.items.filter((item) => item.slotId === "hideout"); + const rootPresetItems = allRootItems.filter((item) => item.upd.sptPresetId); // Get count of weapons const currentWeaponPresetCount = rootPresetItems.reduce((count, item) => @@ -347,8 +346,7 @@ export class FenceService }, 0); // Normal item count is total count minus weapon + armor count - const itemAssortCount = Object.keys(this.fenceAssort.loyal_level_items).length - - (currentWeaponPresetCount + currentEquipmentPresetCount); + const itemAssortCount = allRootItems.length - (currentWeaponPresetCount + currentEquipmentPresetCount); // Get counts of items to generate, never let values fall below 0 const itemCountToGenerate = Math.max(this.desiredAssortCounts.normal.item - itemAssortCount, 0); From 9dc821126831751ce21390e51da5744dc59616fc Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 12 Apr 2024 11:08:32 +0100 Subject: [PATCH 061/104] Refactored fence partial refresh code to be more generic and shared between normal/discounted assorts --- project/src/services/FenceService.ts | 90 ++++++++-------------------- 1 file changed, 25 insertions(+), 65 deletions(-) diff --git a/project/src/services/FenceService.ts b/project/src/services/FenceService.ts index 72f422cb..6d538d0d 100644 --- a/project/src/services/FenceService.ts +++ b/project/src/services/FenceService.ts @@ -43,7 +43,7 @@ export class FenceService /** Assorts shown on a separate tab when you max out fence rep */ protected fenceDiscountAssort: ITraderAssort = undefined; - /** Hydrated on initial assort generation as part of generateFenceAssorts() */ + /** Desired baseline counts - Hydrated on initial assort generation as part of generateFenceAssorts() */ protected desiredAssortCounts: IFenceAssortGenerationValues; constructor( @@ -231,15 +231,20 @@ export class FenceService this.deleteRandomAssorts(itemCountToReplace, this.fenceAssort); this.deleteRandomAssorts(discountItemCountToReplace, this.fenceDiscountAssort); - // Get count of what item pools need new items (item/weapon/equipment) - const itemCountsToReplace = this.getCountOfItemsToGenerate(); - - const newItems = this.createAssorts(itemCountsToReplace.normal, 1); + const normalItemCountsToGenerate = this.getItemCountsToGenerate( + this.fenceAssort.items, + this.desiredAssortCounts.normal, + ); + const newItems = this.createAssorts(normalItemCountsToGenerate, 1); // Push newly generated assorts into existing data this.updateFenceAssorts(newItems, this.fenceAssort); - const newDiscountItems = this.createAssorts(itemCountsToReplace.discount, 2); + const discountItemCountsToGenerate = this.getItemCountsToGenerate( + this.fenceDiscountAssort.items, + this.desiredAssortCounts.discount, + ); + const newDiscountItems = this.createAssorts(discountItemCountsToGenerate, 2); // Push newly generated discount assorts into existing data this.updateFenceAssorts(newDiscountItems, this.fenceDiscountAssort); @@ -323,14 +328,17 @@ export class FenceService } /** - * Compare the current fence offer count to what the config wants it to be, - * If value is lower add extra count to value to generate more items to fill gap - * @param existingItemCountToReplace count of items to generate - * @returns number of items to generate + * Get values that will hydrate the passed in assorts back to the desired counts + * @param assortItems Current assorts after items have been removed + * @param generationValues Base counts assorts should be adjusted to + * @returns IGenerationAssortValues object with adjustments needed to reach desired state */ - protected getCountOfItemsToGenerate(): IFenceAssortGenerationValues + protected getItemCountsToGenerate( + assortItems: Item[], + generationValues: IGenerationAssortValues, + ): IGenerationAssortValues { - const allRootItems = this.fenceAssort.items.filter((item) => item.slotId === "hideout"); + const allRootItems = assortItems.filter((item) => item.slotId === "hideout"); const rootPresetItems = allRootItems.filter((item) => item.upd.sptPresetId); // Get count of weapons @@ -346,66 +354,18 @@ export class FenceService }, 0); // Normal item count is total count minus weapon + armor count - const itemAssortCount = allRootItems.length - (currentWeaponPresetCount + currentEquipmentPresetCount); + const nonPresetItemAssortCount = allRootItems.length - (currentWeaponPresetCount + currentEquipmentPresetCount); // Get counts of items to generate, never let values fall below 0 - const itemCountToGenerate = Math.max(this.desiredAssortCounts.normal.item - itemAssortCount, 0); - const weaponCountToGenerate = Math.max( - this.desiredAssortCounts.normal.weaponPreset - currentWeaponPresetCount, - 0, - ); - const equipmentCountToGenerate = Math.max( - this.desiredAssortCounts.normal.equipmentPreset - currentEquipmentPresetCount, - 0, - ); + const itemCountToGenerate = Math.max(generationValues.item - nonPresetItemAssortCount, 0); + const weaponCountToGenerate = Math.max(generationValues.weaponPreset - currentWeaponPresetCount, 0); + const equipmentCountToGenerate = Math.max(generationValues.equipmentPreset - currentEquipmentPresetCount, 0); - const normalValues: IGenerationAssortValues = { + return { item: itemCountToGenerate, weaponPreset: weaponCountToGenerate, equipmentPreset: equipmentCountToGenerate, }; - - // Discount tab handling - const rootDiscountPresetItems = this.fenceDiscountAssort.items.filter((item) => - item.slotId === "hideout" && item.upd.sptPresetId - ); - - // Get count of weapons - const currentDiscountWeaponPresetCount = rootDiscountPresetItems.reduce((count, item) => - { - return this.itemHelper.isOfBaseclass(item._tpl, BaseClasses.WEAPON) ? count + 1 : count; - }, 0); - - // Get count of equipment - const currentDiscountEquipmentPresetCount = rootDiscountPresetItems.reduce((count, item) => - { - return this.itemHelper.armorItemCanHoldMods(item._tpl) ? count + 1 : count; - }, 0); - - // Normal item count is total count minus weapon + armor count - const discountItemAssortCount = Object.keys(this.fenceAssort.loyal_level_items).length - - (currentDiscountWeaponPresetCount + currentDiscountEquipmentPresetCount); - - const itemDiscountCountToGenerate = Math.max( - this.desiredAssortCounts.discount.item - discountItemAssortCount, - 0, - ); - const weaponDiscountCountToGenerate = Math.max( - this.desiredAssortCounts.discount.weaponPreset - currentDiscountWeaponPresetCount, - 0, - ); - const equipmentDiscountCountToGenerate = Math.max( - this.desiredAssortCounts.discount.equipmentPreset - currentDiscountEquipmentPresetCount, - 0, - ); - - const discountValues: IGenerationAssortValues = { - item: itemDiscountCountToGenerate, - weaponPreset: weaponDiscountCountToGenerate, - equipmentPreset: equipmentDiscountCountToGenerate, - }; - - return { normal: normalValues, discount: discountValues }; } /** From 364e59096084d1be01808351ed0134e08c2a0355 Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 12 Apr 2024 11:20:30 +0100 Subject: [PATCH 062/104] Improved logic for failing a quest - will never send a failed message for daily --- project/src/helpers/QuestHelper.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/project/src/helpers/QuestHelper.ts b/project/src/helpers/QuestHelper.ts index aaeb5efe..c8b86078 100644 --- a/project/src/helpers/QuestHelper.ts +++ b/project/src/helpers/QuestHelper.ts @@ -731,7 +731,8 @@ export class QuestHelper repeatableType.activeQuests ).find((activeQuest) => activeQuest._id === failRequest.qid); - if (matchingRepeatableQuest || quest) + // Quest found and no repeatable found + if (quest && !matchingRepeatableQuest) { this.mailSendService.sendLocalisedNpcMessageToPlayer( sessionID, From 765c2ae270178c50e231f67acb09304262d86cdc Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 12 Apr 2024 11:29:50 +0100 Subject: [PATCH 063/104] Only send failed message to player if failure message text length is great than 0 (after having whitespace trimmed) --- project/src/helpers/QuestHelper.ts | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/project/src/helpers/QuestHelper.ts b/project/src/helpers/QuestHelper.ts index c8b86078..0a09a68f 100644 --- a/project/src/helpers/QuestHelper.ts +++ b/project/src/helpers/QuestHelper.ts @@ -734,14 +734,17 @@ export class QuestHelper // Quest found and no repeatable found if (quest && !matchingRepeatableQuest) { - this.mailSendService.sendLocalisedNpcMessageToPlayer( - sessionID, - this.traderHelper.getTraderById(quest?.traderId ?? matchingRepeatableQuest?.traderId), // Can be null when repeatable quest has been moved to inactiveQuests - MessageType.QUEST_FAIL, - quest.failMessageText, - questRewards, - this.timeUtil.getHoursAsSeconds(this.questConfig.redeemTime), - ); + if (quest.failMessageText.trim().length > 0) + { + this.mailSendService.sendLocalisedNpcMessageToPlayer( + sessionID, + this.traderHelper.getTraderById(quest?.traderId ?? matchingRepeatableQuest?.traderId), // Can be null when repeatable quest has been moved to inactiveQuests + MessageType.QUEST_FAIL, + quest.failMessageText, + questRewards, + this.timeUtil.getHoursAsSeconds(this.questConfig.redeemTime), + ); + } } output.profileChanges[sessionID].quests.push(...this.failedUnlocked(failRequest.qid, sessionID)); From a33325cbf562b84cfdbcf0ad5143d70dc8317212 Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 12 Apr 2024 22:12:26 +0100 Subject: [PATCH 064/104] Revert change to `minFillStaticMagazinePercent` --- project/assets/configs/location.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/assets/configs/location.json b/project/assets/configs/location.json index c282c154..9308a5c8 100644 --- a/project/assets/configs/location.json +++ b/project/assets/configs/location.json @@ -1143,7 +1143,7 @@ "containerGroupMaxSizeMultiplier": 1 }, "minFillLooseMagazinePercent": 50, - "minFillStaticMagazinePercent": 0, + "minFillStaticMagazinePercent": 50, "allowDuplicateItemsInStaticContainers": true, "magazineLootHasAmmoChancePercent": 50, "looseLootBlacklist": {}, From 73a1dd95117bfab04555b4f536e83fbd6da85284 Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 12 Apr 2024 23:05:27 +0100 Subject: [PATCH 065/104] Split out static/dynamic magazine fill options in config set static mag fill to 0% --- project/assets/configs/location.json | 1 + project/src/generators/LocationGenerator.ts | 2 +- project/src/models/eft/common/tables/IQuest.ts | 1 + project/src/models/spt/config/ILocationConfig.ts | 4 +++- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/project/assets/configs/location.json b/project/assets/configs/location.json index 9308a5c8..e518d8c7 100644 --- a/project/assets/configs/location.json +++ b/project/assets/configs/location.json @@ -1146,6 +1146,7 @@ "minFillStaticMagazinePercent": 50, "allowDuplicateItemsInStaticContainers": true, "magazineLootHasAmmoChancePercent": 50, + "staticMagazineLootHasAmmoChancePercent": 0, "looseLootBlacklist": {}, "scavRaidTimeSettings": { "settings": { diff --git a/project/src/generators/LocationGenerator.ts b/project/src/generators/LocationGenerator.ts index cf523064..b185c74b 100644 --- a/project/src/generators/LocationGenerator.ts +++ b/project/src/generators/LocationGenerator.ts @@ -871,7 +871,7 @@ export class LocationGenerator // Create array with just magazine const magazineItem: Item[] = [{ _id: this.objectId.generate(), _tpl: chosenTpl }]; - if (this.randomUtil.getChance100(this.locationConfig.magazineLootHasAmmoChancePercent)) + if (this.randomUtil.getChance100(this.locationConfig.staticMagazineLootHasAmmoChancePercent)) { // Add randomised amount of cartridges this.itemHelper.fillMagazineWithRandomCartridge( diff --git a/project/src/models/eft/common/tables/IQuest.ts b/project/src/models/eft/common/tables/IQuest.ts index 65fabb1b..f544cb9f 100644 --- a/project/src/models/eft/common/tables/IQuest.ts +++ b/project/src/models/eft/common/tables/IQuest.ts @@ -169,6 +169,7 @@ export interface IQuestReward target?: string; items?: Item[]; loyaltyLevel?: number; + /** Hideout area id */ traderId?: string; unknown?: boolean; findInRaid?: boolean; diff --git a/project/src/models/spt/config/ILocationConfig.ts b/project/src/models/spt/config/ILocationConfig.ts index fee9de50..e282ba0f 100644 --- a/project/src/models/spt/config/ILocationConfig.ts +++ b/project/src/models/spt/config/ILocationConfig.ts @@ -36,8 +36,10 @@ export interface ILocationConfig extends IBaseConfig /** How full must a random static magazine be %*/ minFillStaticMagazinePercent: number; allowDuplicateItemsInStaticContainers: boolean; - /** Chance loose/static magazines have ammo in them */ + /** Chance loose magazines have ammo in them TODO - rename to dynamicMagazineLootHasAmmoChancePercent */ magazineLootHasAmmoChancePercent: number; + /** Chance static magazines have ammo in them */ + staticMagazineLootHasAmmoChancePercent: number; /** Key: map, value: loose loot ids to ignore */ looseLootBlacklist: Record; /** Key: map, value: settings to control how long scav raids are*/ From 272050c7cf74b8ff89a2158273e82c596a735843 Mon Sep 17 00:00:00 2001 From: DrakiaXYZ <565558+TheDgtl@users.noreply.github.com> Date: Fri, 12 Apr 2024 21:58:37 -0700 Subject: [PATCH 066/104] Fix some issues in the ProfileFixerService - Allow fixing the profile even if it has no items in the inventory - Refactor weapon build fixing so we can re-use it for equipment builds, switch both to be a .filter() call - Add magazine build fixing, also as a .filter() call - For any fix that iterates over an array and splices, use Object.entries to create an in-place shallow copy of the array, so we don't skip entries - Reverse the order of the removeOrphanedQuests loop so we don't skip entries --- project/src/services/ProfileFixerService.ts | 143 ++++++++++++++------ 1 file changed, 104 insertions(+), 39 deletions(-) diff --git a/project/src/services/ProfileFixerService.ts b/project/src/services/ProfileFixerService.ts index 852626d3..015a0514 100644 --- a/project/src/services/ProfileFixerService.ts +++ b/project/src/services/ProfileFixerService.ts @@ -9,9 +9,9 @@ import { IPmcData } from "@spt-aki/models/eft/common/IPmcData"; import { Bonus, HideoutSlot, IQuestStatus } from "@spt-aki/models/eft/common/tables/IBotBase"; import { IHideoutImprovement } from "@spt-aki/models/eft/common/tables/IBotBase"; import { IPmcDataRepeatableQuest, IRepeatableQuest } from "@spt-aki/models/eft/common/tables/IRepeatableQuests"; +import { ITemplateItem } from "@spt-aki/models/eft/common/tables/ITemplateItem"; import { StageBonus } from "@spt-aki/models/eft/hideout/IHideoutArea"; -import { IAkiProfile } from "@spt-aki/models/eft/profile/IAkiProfile"; -import { AccountTypes } from "@spt-aki/models/enums/AccountTypes"; +import { IAkiProfile, IEquipmentBuild, IMagazineBuild, IWeaponBuild } from "@spt-aki/models/eft/profile/IAkiProfile"; import { BonusType } from "@spt-aki/models/enums/BonusType"; import { ConfigTypes } from "@spt-aki/models/enums/ConfigTypes"; import { HideoutAreas } from "@spt-aki/models/enums/HideoutAreas"; @@ -874,53 +874,47 @@ export class ProfileFixerService const inventoryItemsToCheck = pmcProfile.Inventory.items.filter((item) => ["hideout", "main"].includes(item.slotId) ); - if (!inventoryItemsToCheck) + if (inventoryItemsToCheck) { - return; - } - - // Check each item in inventory to ensure item exists in itemdb - for (const item of inventoryItemsToCheck) - { - if (!itemsDb[item._tpl]) + // Check each item in inventory to ensure item exists in itemdb + for (const item of inventoryItemsToCheck) { - this.logger.error(this.localisationService.getText("fixer-mod_item_found", item._tpl)); - - if (this.coreConfig.fixes.removeModItemsFromProfile) - { - this.logger.success( - `Deleting item from inventory and insurance with id: ${item._id} tpl: ${item._tpl}`, - ); - - // Also deletes from insured array - this.inventoryHelper.removeItem(pmcProfile, item._id, sessionId); - } - } - } - - // Iterate over player-made weapon builds, look for missing items and remove weapon preset if found - for (const buildId in fullProfile.userbuilds?.weaponBuilds) - { - for (const item of fullProfile.userbuilds.weaponBuilds[buildId].Items) - { - // Check item exists in itemsDb if (!itemsDb[item._tpl]) { this.logger.error(this.localisationService.getText("fixer-mod_item_found", item._tpl)); if (this.coreConfig.fixes.removeModItemsFromProfile) { - delete fullProfile.userbuilds.weaponBuilds[buildId]; - this.logger.warning( - `Item: ${item._tpl} has resulted in the deletion of weapon build: ${buildId}`, + this.logger.success( + `Deleting item from inventory and insurance with id: ${item._id} tpl: ${item._tpl}`, ); - } - break; + // Also deletes from insured array + this.inventoryHelper.removeItem(pmcProfile, item._id, sessionId); + } } } } + // Remove invalid builds from weapon, equipment and magazine build lists + const weaponBuilds = fullProfile.userbuilds?.weaponBuilds || []; + fullProfile.userbuilds.weaponBuilds = weaponBuilds.filter((weaponBuild) => + { + return !this.shouldRemoveWeaponEquipmentBuild("weapon", weaponBuild, itemsDb); + }); + + const equipmentBuilds = fullProfile.userbuilds?.equipmentBuilds || []; + fullProfile.userbuilds.equipmentBuilds = equipmentBuilds.filter((equipmentBuild) => + { + return !this.shouldRemoveWeaponEquipmentBuild("equipment", equipmentBuild, itemsDb); + }); + + const magazineBuilds = fullProfile.userbuilds?.magazineBuilds || []; + fullProfile.userbuilds.magazineBuilds = magazineBuilds.filter((magazineBuild) => + { + return !this.shouldRemoveMagazineBuild(magazineBuild, itemsDb); + }); + // Iterate over dialogs, looking for messages with items not found in item db, remove message if item found for (const dialogId in fullProfile.dialogues) { @@ -931,7 +925,7 @@ export class ProfileFixerService } // Iterate over all messages in dialog - for (const message of dialog.messages) + for (const [_, message] of Object.entries(dialog.messages)) { if (!message.items?.data) { @@ -969,7 +963,7 @@ export class ProfileFixerService } const clothing = this.databaseServer.getTables().templates.customization; - for (const suitId of fullProfile.suits) + for (const [_, suitId] of Object.entries(fullProfile.suits)) { if (!clothing[suitId]) { @@ -984,7 +978,7 @@ export class ProfileFixerService for (const repeatable of fullProfile.characters.pmc.RepeatableQuests ?? []) { - for (const activeQuest of repeatable.activeQuests ?? []) + for (const [_, activeQuest] of Object.entries(repeatable.activeQuests ?? [])) { if (!this.traderHelper.traderEnumHasValue(activeQuest.traderId)) { @@ -1045,6 +1039,77 @@ export class ProfileFixerService } } + /** + * @param buildType The type of build, used for logging only + * @param build The build to check for invalid items + * @param itemsDb The items database to use for item lookup + * @returns True if the build should be removed from the build list, false otherwise + */ + protected shouldRemoveWeaponEquipmentBuild( + buildType: string, + build: IWeaponBuild | IEquipmentBuild, + itemsDb: Record, + ): boolean + { + for (const item of build.Items) + { + // Check item exists in itemsDb + if (!itemsDb[item._tpl]) + { + this.logger.error(this.localisationService.getText("fixer-mod_item_found", item._tpl)); + + if (this.coreConfig.fixes.removeModItemsFromProfile) + { + this.logger.warning( + `Item: ${item._tpl} has resulted in the deletion of ${buildType} build: ${build.Name}`, + ); + + return true; + } + + break; + } + } + + return false; + } + + /** + * @param magazineBuild The magazine build to check for validity + * @param itemsDb The items database to use for item lookup + * @returns True if the build should be removed from the build list, false otherwise + */ + protected shouldRemoveMagazineBuild(magazineBuild: IMagazineBuild, itemsDb: Record): boolean + { + for (const item of magazineBuild.Items) + { + // Magazine builds can have null items in them, skip those + if (!item) + { + continue; + } + + // Check item exists in itemsDb + if (!itemsDb[item.TemplateId]) + { + this.logger.error(this.localisationService.getText("fixer-mod_item_found", item.TemplateId)); + + if (this.coreConfig.fixes.removeModItemsFromProfile) + { + this.logger.warning( + `Item: ${item.TemplateId} has resulted in the deletion of magazine build: ${magazineBuild.Name}`, + ); + + return true; + } + + break; + } + } + + return false; + } + /** * Attempt to fix common item issues that corrupt profiles * @param pmcProfile Profile to check items of @@ -1356,7 +1421,7 @@ export class ProfileFixerService repeatableQuests.push(...repeatableQuestType.activeQuests); } - for (let i = 0; i < profileQuests.length; i++) + for (let i = profileQuests.length - 1; i >= 0; i--) { if (!(quests[profileQuests[i].qid] || repeatableQuests.find((x) => x._id === profileQuests[i].qid))) { From a9d89695f09c2eaa2a27c0d4f58deaac29f509f2 Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 13 Apr 2024 12:46:43 +0100 Subject: [PATCH 067/104] Added new service `ProfileActivityService` Maintains a timestamp of when each profile was last active on the server. Timestamp is refreshed on two events: `game/start and `game/keepalive` Timestamp is used to determine if a profiles hideout should be processed. If a profile has a timestamp older than 90 minutes, it is not processed. (could be set lower but its a conservative value) This has the side effects of not adjusting the `sptUpdateLastRunTimestamp` property, resulting in `saveProfile()` not running for every profile. My testing shows a 20x perf increase for every profile in SPT not in use. Service could likely be used in other scenarios to avoid doing unnecessary work --- project/assets/configs/hideout.json | 3 +- project/src/controllers/GameController.ts | 5 +++ project/src/controllers/HideoutController.ts | 10 +++++- project/src/di/Container.ts | 5 +++ .../src/models/spt/config/IHideoutConfig.ts | 2 ++ .../src/services/ProfileActivityService.ts | 36 +++++++++++++++++++ 6 files changed, 59 insertions(+), 2 deletions(-) create mode 100644 project/src/services/ProfileActivityService.ts diff --git a/project/assets/configs/hideout.json b/project/assets/configs/hideout.json index 47bdfb7c..b28f446e 100644 --- a/project/assets/configs/hideout.json +++ b/project/assets/configs/hideout.json @@ -7,5 +7,6 @@ }, "expCraftAmount": 10, "overrideCraftTimeSeconds": -1, - "overrideBuildTimeSeconds": -1 + "overrideBuildTimeSeconds": -1, + "updateProfileHideoutWhenActiveWithinMinutes": 90 } \ No newline at end of file diff --git a/project/src/controllers/GameController.ts b/project/src/controllers/GameController.ts index f32fed06..f8be4796 100644 --- a/project/src/controllers/GameController.ts +++ b/project/src/controllers/GameController.ts @@ -39,6 +39,7 @@ import { GiftService } from "@spt-aki/services/GiftService"; import { ItemBaseClassService } from "@spt-aki/services/ItemBaseClassService"; import { LocalisationService } from "@spt-aki/services/LocalisationService"; import { OpenZoneService } from "@spt-aki/services/OpenZoneService"; +import { ProfileActivityService } from "@spt-aki/services/ProfileActivityService"; import { ProfileFixerService } from "@spt-aki/services/ProfileFixerService"; import { RaidTimeAdjustmentService } from "@spt-aki/services/RaidTimeAdjustmentService"; import { SeasonalEventService } from "@spt-aki/services/SeasonalEventService"; @@ -78,6 +79,7 @@ export class GameController @inject("ItemBaseClassService") protected itemBaseClassService: ItemBaseClassService, @inject("GiftService") protected giftService: GiftService, @inject("RaidTimeAdjustmentService") protected raidTimeAdjustmentService: RaidTimeAdjustmentService, + @inject("ProfileActivityService") protected profileActivityService: ProfileActivityService, @inject("ApplicationContext") protected applicationContext: ApplicationContext, @inject("ConfigServer") protected configServer: ConfigServer, ) @@ -109,6 +111,8 @@ export class GameController // Store client start time in app context this.applicationContext.addValue(ContextVariableType.CLIENT_START_TIMESTAMP, startTimeStampMS); + this.profileActivityService.setActivityTimestamp(sessionID); + if (this.coreConfig.fixes.fixShotgunDispersion) { this.fixShotgunDispersions(); @@ -504,6 +508,7 @@ export class GameController */ public getKeepAlive(sessionId: string): IGameKeepAliveResponse { + this.profileActivityService.setActivityTimestamp(sessionId); return { msg: "OK", utc_time: new Date().getTime() / 1000 }; } diff --git a/project/src/controllers/HideoutController.ts b/project/src/controllers/HideoutController.ts index 64a42525..d6d27841 100644 --- a/project/src/controllers/HideoutController.ts +++ b/project/src/controllers/HideoutController.ts @@ -48,6 +48,7 @@ import { SaveServer } from "@spt-aki/servers/SaveServer"; import { FenceService } from "@spt-aki/services/FenceService"; import { LocalisationService } from "@spt-aki/services/LocalisationService"; import { PlayerService } from "@spt-aki/services/PlayerService"; +import { ProfileActivityService } from "@spt-aki/services/ProfileActivityService"; import { HashUtil } from "@spt-aki/utils/HashUtil"; import { HttpResponseUtil } from "@spt-aki/utils/HttpResponseUtil"; import { JsonUtil } from "@spt-aki/utils/JsonUtil"; @@ -79,6 +80,7 @@ export class HideoutController @inject("HideoutHelper") protected hideoutHelper: HideoutHelper, @inject("ScavCaseRewardGenerator") protected scavCaseRewardGenerator: ScavCaseRewardGenerator, @inject("LocalisationService") protected localisationService: LocalisationService, + @inject("ProfileActivityService") protected profileActivityService: ProfileActivityService, @inject("ConfigServer") protected configServer: ConfigServer, @inject("JsonUtil") protected jsonUtil: JsonUtil, @inject("FenceService") protected fenceService: FenceService, @@ -1323,7 +1325,13 @@ export class HideoutController { for (const sessionID in this.saveServer.getProfiles()) { - if ("Hideout" in this.saveServer.getProfile(sessionID).characters.pmc) + if ( + "Hideout" in this.saveServer.getProfile(sessionID).characters.pmc + && this.profileActivityService.activeWithinLastMinutes( + sessionID, + this.hideoutConfig.updateProfileHideoutWhenActiveWithinMinutes, + ) + ) { this.hideoutHelper.updatePlayerHideout(sessionID); } diff --git a/project/src/di/Container.ts b/project/src/di/Container.ts index f9012381..2fdfde9d 100644 --- a/project/src/di/Container.ts +++ b/project/src/di/Container.ts @@ -213,6 +213,7 @@ import { OpenZoneService } from "@spt-aki/services/OpenZoneService"; import { PaymentService } from "@spt-aki/services/PaymentService"; import { PlayerService } from "@spt-aki/services/PlayerService"; import { PmcChatResponseService } from "@spt-aki/services/PmcChatResponseService"; +import { ProfileActivityService } from "@spt-aki/services/ProfileActivityService"; import { ProfileFixerService } from "@spt-aki/services/ProfileFixerService"; import { ProfileSnapshotService } from "@spt-aki/services/ProfileSnapshotService"; import { RagfairCategoriesService } from "@spt-aki/services/RagfairCategoriesService"; @@ -747,6 +748,10 @@ export class Container depContainer.register("GiftService", GiftService); depContainer.register("MailSendService", MailSendService); depContainer.register("RaidTimeAdjustmentService", RaidTimeAdjustmentService); + + depContainer.register("ProfileActivityService", ProfileActivityService, { + lifecycle: Lifecycle.Singleton, + }); } private static registerServers(depContainer: DependencyContainer): void diff --git a/project/src/models/spt/config/IHideoutConfig.ts b/project/src/models/spt/config/IHideoutConfig.ts index e2f419b2..0fc1caca 100644 --- a/project/src/models/spt/config/IHideoutConfig.ts +++ b/project/src/models/spt/config/IHideoutConfig.ts @@ -11,4 +11,6 @@ export interface IHideoutConfig extends IBaseConfig expCraftAmount: number; overrideCraftTimeSeconds: number; overrideBuildTimeSeconds: number; + /** Only process a profiles hideout crafts when it has been active in the last x minutes */ + updateProfileHideoutWhenActiveWithinMinutes: number; } diff --git a/project/src/services/ProfileActivityService.ts b/project/src/services/ProfileActivityService.ts new file mode 100644 index 00000000..025a3885 --- /dev/null +++ b/project/src/services/ProfileActivityService.ts @@ -0,0 +1,36 @@ +import { injectable } from "tsyringe"; + +@injectable() +export class ProfileActivityService +{ + protected profileActivityTimestamps: Record = {}; + + /** + * Was the requested profile active in the last requested minutes + * @param sessionId Profile to check + * @param minutes Minutes to check for activity in + * @returns True when profile was active within past x minutes + */ + public activeWithinLastMinutes(sessionId: string, minutes: number): boolean + { + const currentTimestamp = new Date().getTime() / 1000; + const storedActivityTimestamp = this.profileActivityTimestamps[sessionId]; + if (!storedActivityTimestamp) + { + // No value, no assumed activity (server offline?) + return false; + } + + // True if difference since last timestamp to now is below desired amount + return (currentTimestamp - storedActivityTimestamp) < (minutes * 60); // convert minutes to seconds to compare + } + + /** + * Update the timestamp a profile was last observed active + * @param sessionId Profile to update + */ + public setActivityTimestamp(sessionId: string): void + { + this.profileActivityTimestamps[sessionId] = new Date().getTime() / 1000; + } +} From 0d6239ea42ad130b18c48c8791bbc1529b3d6f60 Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 13 Apr 2024 23:04:17 +0100 Subject: [PATCH 068/104] Added `getActiveProfileIdsWithinMinutes()` to `ProfileActivityService` --- .../src/services/ProfileActivityService.ts | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/project/src/services/ProfileActivityService.ts b/project/src/services/ProfileActivityService.ts index 025a3885..b9f7619e 100644 --- a/project/src/services/ProfileActivityService.ts +++ b/project/src/services/ProfileActivityService.ts @@ -25,6 +25,34 @@ export class ProfileActivityService return (currentTimestamp - storedActivityTimestamp) < (minutes * 60); // convert minutes to seconds to compare } + /** + * Get an array of profile ids that were active in the last x minutes + * @param minutes How many minutes from now to search for profiles + * @returns String array of profile ids + */ + public getActiveProfileIdsWithinMinutes(minutes: number): string[] + { + const currentTimestamp = new Date().getTime() / 1000; + const result: string[] = []; + + for (const id of Object.keys(this.profileActivityTimestamps ?? {})) + { + const lastActiveTimestamp = this.profileActivityTimestamps[id]; + if (!lastActiveTimestamp) + { + continue; + } + + // Profile was active in last x minutes, add to return list + if ((currentTimestamp - lastActiveTimestamp) < (minutes * 60)) + { + result.push(id); + } + } + + return result; + } + /** * Update the timestamp a profile was last observed active * @param sessionId Profile to update From d31eedf92bd8e4c815781d920b6bd2e113f61453 Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 14 Apr 2024 19:32:11 +0100 Subject: [PATCH 069/104] Fixed `itemAllowedInContainer()` failing when the filter or excluded filter objects are null --- project/src/helpers/BotGeneratorHelper.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/src/helpers/BotGeneratorHelper.ts b/project/src/helpers/BotGeneratorHelper.ts index a8620512..8cee1cee 100644 --- a/project/src/helpers/BotGeneratorHelper.ts +++ b/project/src/helpers/BotGeneratorHelper.ts @@ -688,13 +688,13 @@ export class BotGeneratorHelper const itemDetails = this.itemHelper.getItem(itemTpl)[1]; // if item to add is found in exclude filter, not allowed - if (excludedFilter.includes(itemDetails._parent)) + if (excludedFilter?.includes(itemDetails._parent)) { return false; } // If Filter array only contains 1 filter and its for basetype 'item', allow it - if (filter.length === 1 && filter.includes(BaseClasses.ITEM)) + if (filter?.length === 1 && filter.includes(BaseClasses.ITEM)) { return true; } From ad54e7ae98d357758b166dc27734c297cfa3d9c3 Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 14 Apr 2024 19:33:44 +0100 Subject: [PATCH 070/104] Fixed `itemAllowedInContainer()` failing when filter object is null --- project/src/helpers/BotGeneratorHelper.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/helpers/BotGeneratorHelper.ts b/project/src/helpers/BotGeneratorHelper.ts index 8cee1cee..99d729e4 100644 --- a/project/src/helpers/BotGeneratorHelper.ts +++ b/project/src/helpers/BotGeneratorHelper.ts @@ -700,7 +700,7 @@ export class BotGeneratorHelper } // If allowed filter has something in it + filter doesnt have basetype 'item', not allowed - if (filter.length > 0 && !filter.includes(itemDetails._parent)) + if (filter?.length > 0 && !filter.includes(itemDetails._parent)) { return false; } From 10b1b2b3aa3ee549738c5ad9a27c70ec9c7639d7 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 15 Apr 2024 00:06:53 +0100 Subject: [PATCH 071/104] Added nullguard when `req.socket.remoteAddress` is null inside `handleRequest()` --- project/src/servers/HttpServer.ts | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/project/src/servers/HttpServer.ts b/project/src/servers/HttpServer.ts index 1adf92c6..952ed451 100644 --- a/project/src/servers/HttpServer.ts +++ b/project/src/servers/HttpServer.ts @@ -79,17 +79,20 @@ export class HttpServer if (this.httpConfig.logRequests) { // TODO: Extend to include 192.168 / 10.10 ranges or check subnet - const isLocalRequest = req.socket.remoteAddress.startsWith("127.0.0"); - if (isLocalRequest) + const isLocalRequest = req.socket.remoteAddress?.startsWith("127.0.0"); + if (typeof isLocalRequest !== "undefined") { - this.logger.info(this.localisationService.getText("client_request", req.url)); - } - else - { - this.logger.info(this.localisationService.getText("client_request_ip", { - ip: req.socket.remoteAddress, - url: req.url.replaceAll("/", "\\"), // Localisation service escapes `/` into hex code `/` - })); + if (isLocalRequest) + { + this.logger.info(this.localisationService.getText("client_request", req.url)); + } + else + { + this.logger.info(this.localisationService.getText("client_request_ip", { + ip: req.socket.remoteAddress, + url: req.url.replaceAll("/", "\\"), // Localisation service escapes `/` into hex code `/` + })); + } } } From 8cbc51d20e611d607422da1a3a8cac85d6fe60ec Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 15 Apr 2024 09:00:52 +0100 Subject: [PATCH 072/104] Revert "Merge branch '3.9.0-DEV' into 3.8.1-DEV" This reverts commit 6121e65b4e0fde2d9e797cab9b271db6096ff0ce, reversing changes made to 10b1b2b3aa3ee549738c5ad9a27c70ec9c7639d7. --- project/assets/configs/core.json | 4 +- project/assets/configs/weather.json | 54 +- .../assets/database/bots/types/assault.json | 4 - .../assets/database/bots/types/marksman.json | 4 - .../database/bots/types/spiritspring.json | 4890 - .../database/bots/types/spiritwinter.json | 4890 - project/assets/database/globals.json | 55667 +- project/assets/database/hideout/areas.json | 922 +- .../assets/database/locales/global/ch.json | 559 +- .../assets/database/locales/global/cz.json | 593 +- .../assets/database/locales/global/en.json | 571 +- .../assets/database/locales/global/es-mx.json | 581 +- .../assets/database/locales/global/es.json | 587 +- .../assets/database/locales/global/fr.json | 439 +- .../assets/database/locales/global/ge.json | 621 +- .../assets/database/locales/global/hu.json | 301 +- .../assets/database/locales/global/it.json | 569 +- .../assets/database/locales/global/jp.json | 591 +- .../assets/database/locales/global/kr.json | 2031 +- .../assets/database/locales/global/pl.json | 609 +- .../assets/database/locales/global/po.json | 403 +- .../assets/database/locales/global/ro.json | 9169 +- .../assets/database/locales/global/ru.json | 547 +- .../assets/database/locales/global/sk.json | 301 +- .../assets/database/locales/global/tu.json | 481 +- .../database/locations/laboratory/base.json | 9641 +- .../database/locations/rezervbase/base.json | 2 +- .../database/templates/achievements.json | 4951 +- .../assets/database/templates/handbook.json | 20754 +- project/assets/database/templates/items.json | 470170 +++++++-------- project/src/controllers/WeatherController.ts | 8 +- project/src/generators/WeatherGenerator.ts | 8 +- .../helpers/Dialogue/SptDialogueChatBot.ts | 3 +- project/src/models/eft/common/IGlobals.ts | 21 +- .../src/models/eft/weather/IWeatherData.ts | 5 +- project/src/models/enums/Season.ts | 8 - .../src/models/enums/WildSpawnTypeNumber.ts | 6 +- .../src/models/spt/config/IWeatherConfig.ts | 14 +- .../src/models/spt/server/ISettingsBase.ts | 1 - project/src/services/SeasonalEventService.ts | 28 +- 40 files changed, 288707 insertions(+), 302301 deletions(-) delete mode 100644 project/assets/database/bots/types/spiritspring.json delete mode 100644 project/assets/database/bots/types/spiritwinter.json delete mode 100644 project/src/models/enums/Season.ts diff --git a/project/assets/configs/core.json b/project/assets/configs/core.json index 8becd0be..8b0291ae 100644 --- a/project/assets/configs/core.json +++ b/project/assets/configs/core.json @@ -1,7 +1,7 @@ { - "akiVersion": "3.9.0", + "akiVersion": "3.8.0", "projectName": "SPT-AKI", - "compatibleTarkovVersion": "0.14.5.29618", + "compatibleTarkovVersion": "0.14.1.29197", "serverName": "SPT Server", "profileSaveIntervalSeconds": 15, "sptFriendNickname": "SPT", diff --git a/project/assets/configs/weather.json b/project/assets/configs/weather.json index 59724f0a..85799bb7 100644 --- a/project/assets/configs/weather.json +++ b/project/assets/configs/weather.json @@ -1,5 +1,6 @@ { "acceleration": 7, + "forceWinterEvent": false, "weather": { "clouds": { "values": [ @@ -99,56 +100,5 @@ "min": 760, "max": 764 } - }, - "seasonDates": [ - { - "seasonType": 0, - "name": "SUMMER", - "startDay": "2", - "startMonth": "5", - "endDay": "1", - "endMonth": "8" - }, - { - "seasonType": 1, - "name": "AUTUMN", - "startDay": "2", - "startMonth": "8", - "endDay": "1", - "endMonth": "11" - }, - { - "seasonType": 2, - "name": "WINTER_END", - "startDay": "2", - "startMonth": "11", - "endDay": "31", - "endMonth": "12" - }, - { - "seasonType": 2, - "name": "WINTER_START", - "startDay": "1", - "startMonth": "1", - "endDay": "1", - "endMonth": "3" - }, - { - "seasonType": 3, - "name": "SPRING", - "startDay": "2", - "startMonth": "3", - "endDay": "1", - "endMonth": "5" - }, - { - "seasonType": 4, - "name": "STORM", - "startDay": "24", - "startMonth": "10", - "endDay": "4", - "endMonth": "11" - } - ], - "overrideSeason": null + } } \ No newline at end of file diff --git a/project/assets/database/bots/types/assault.json b/project/assets/database/bots/types/assault.json index 010bc214..7d42a23f 100644 --- a/project/assets/database/bots/types/assault.json +++ b/project/assets/database/bots/types/assault.json @@ -424,7 +424,6 @@ "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "CHECK_MARK_OF_UNKNOWS": true, "COVER_DIST_COEF": 1.5, "COVER_SECONDS_AFTER_LOSE_VISION": 10, "COVER_SELF_ALWAYS_IF_DAMAGED": false, @@ -918,7 +917,6 @@ "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "CHECK_MARK_OF_UNKNOWS": true, "COVER_DIST_COEF": 1.5, "COVER_SECONDS_AFTER_LOSE_VISION": 10, "COVER_SELF_ALWAYS_IF_DAMAGED": false, @@ -1411,7 +1409,6 @@ "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "CHECK_MARK_OF_UNKNOWS": true, "COVER_DIST_COEF": 1.5, "COVER_SECONDS_AFTER_LOSE_VISION": 10, "COVER_SELF_ALWAYS_IF_DAMAGED": false, @@ -1900,7 +1897,6 @@ "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "CHECK_MARK_OF_UNKNOWS": true, "COVER_DIST_COEF": 1.5, "COVER_SECONDS_AFTER_LOSE_VISION": 10, "COVER_SELF_ALWAYS_IF_DAMAGED": false, diff --git a/project/assets/database/bots/types/marksman.json b/project/assets/database/bots/types/marksman.json index a5df557a..0fc1004f 100644 --- a/project/assets/database/bots/types/marksman.json +++ b/project/assets/database/bots/types/marksman.json @@ -412,7 +412,6 @@ "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "CHECK_MARK_OF_UNKNOWS": true, "COVER_DIST_COEF": 1.5, "COVER_SECONDS_AFTER_LOSE_VISION": 10, "COVER_SELF_ALWAYS_IF_DAMAGED": false, @@ -885,7 +884,6 @@ "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "CHECK_MARK_OF_UNKNOWS": true, "COVER_DIST_COEF": 1.5, "COVER_SECONDS_AFTER_LOSE_VISION": 10, "COVER_SELF_ALWAYS_IF_DAMAGED": false, @@ -1356,7 +1354,6 @@ "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "CHECK_MARK_OF_UNKNOWS": true, "COVER_DIST_COEF": 1.5, "COVER_SECONDS_AFTER_LOSE_VISION": 10, "COVER_SELF_ALWAYS_IF_DAMAGED": false, @@ -1829,7 +1826,6 @@ "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "CHECK_MARK_OF_UNKNOWS": true, "COVER_DIST_COEF": 1.5, "COVER_SECONDS_AFTER_LOSE_VISION": 10, "COVER_SELF_ALWAYS_IF_DAMAGED": false, diff --git a/project/assets/database/bots/types/spiritspring.json b/project/assets/database/bots/types/spiritspring.json deleted file mode 100644 index a0420b13..00000000 --- a/project/assets/database/bots/types/spiritspring.json +++ /dev/null @@ -1,4890 +0,0 @@ -{ - "appearance": { - "body": { - "5d28ae4986f7742926686187": 1 - }, - "feet": { - "5cc2e5d014c02e15d53d9c03": 5, - "5d28af3486f774292364a6e7": 3, - "5d28af7886f77429275dba25": 5, - "6033a430ed2e0509b15f9033": 7 - }, - "hands": { - "5cc0876314c02e000c6bea6b": 1 - }, - "head": { - "5cc084dd14c02e000b0550a3": 1, - "5cc2e4d014c02e000d0115f8": 1, - "5cde9ff17d6c8b0474535daa": 1 - }, - "voice": { - "Bear_1": 193, - "Bear_2": 183, - "Bear_3": 189, - "Scav_1": 121, - "Scav_2": 118, - "Scav_3": 141, - "Scav_4": 140, - "Scav_5": 123, - "Scav_6": 124, - "Usec_1": 173, - "Usec_2": 181, - "Usec_3": 171 - } - }, - "chances": { - "equipment": { - "ArmBand": 0, - "ArmorVest": 20, - "Backpack": 49, - "Earpiece": 53, - "Eyewear": 78, - "FaceCover": 62, - "FirstPrimaryWeapon": 100, - "Headwear": 89, - "Holster": 100, - "Pockets": 100, - "Scabbard": 0, - "SecondPrimaryWeapon": 0, - "SecuredContainer": 100, - "TacticalVest": 100 - }, - "equipmentMods": { - "back_plate": 100, - "front_plate": 100, - "left_side_plate": 10, - "mod_equipment": 6, - "mod_equipment_000": 2, - "mod_equipment_001": 0, - "mod_equipment_002": 0, - "mod_mount": 0, - "mod_nvg": 15, - "right_side_plate": 10 - }, - "weaponMods": { - "mod_charge": 6, - "mod_flashlight": 100, - "mod_foregrip": 30, - "mod_handguard": 100, - "mod_launcher": 0, - "mod_magazine": 100, - "mod_mount": 47, - "mod_mount_000": 17, - "mod_mount_001": 40, - "mod_mount_002": 18, - "mod_mount_003": 0, - "mod_mount_004": 41, - "mod_muzzle": 33, - "mod_muzzle_000": 28, - "mod_muzzle_001": 0, - "mod_pistol_grip": 0, - "mod_reciever": 100, - "mod_scope": 73, - "mod_sight_front": 86, - "mod_sight_rear": 73, - "mod_stock": 100, - "mod_stock_000": 100, - "mod_stock_001": 100, - "mod_tactical": 47, - "mod_tactical_000": 32, - "mod_tactical_001": 42, - "mod_tactical_002": 0, - "mod_tactical_003": 0, - "mod_tactical_2": 100 - } - }, - "difficulty": { - "easy": { - "Aiming": { - "AIMING_TYPE": 2, - "ANYTIME_LIGHT_WHEN_AIM_100": 40, - "ANY_PART_SHOOT_TIME": 5, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.07, - "BASE_HIT_AFFECTION_MAX_ANG": 4, - "BASE_HIT_AFFECTION_MIN_ANG": 2, - "BASE_SHIEF": 0.03, - "BASE_SHIEF_STATIONARY_GRENADE": 0.15, - "BETTER_PRECICING_COEF": 0.9, - "BOTTOM_COEF": 0.01, - "BOT_MOVE_IF_DELTA": 3.01, - "COEF_FROM_COVER": 0.35, - "COEF_IF_MOVE": 1, - "DAMAGE_PANIC_TIME": 5, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "DANGER_UP_POINT": 1.3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "DIST_TO_SHOOT_TO_CENTER": 3, - "FIRST_CONTACT_ADD_CHANCE_100": 40, - "FIRST_CONTACT_ADD_SEC": 0.01, - "HARD_AIM": 0.75, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "MAX_AIM_PRECICING": 1, - "MAX_AIM_TIME": 1.1, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "NEXT_SHOT_MISS_CHANCE_100": 10, - "NEXT_SHOT_MISS_Y_OFFSET": 0.1, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "PANIC_ACCURATY_COEF": 1.2, - "PANIC_COEF": 1.2, - "PANIC_TIME": 1, - "RECALC_DIST": 0.7, - "RECALC_MUST_TIME": 2, - "RECALC_SQR_DIST": 0.48999998, - "SCATTERING_DIST_MODIF": 0.47, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "SCATTERING_HAVE_DAMAGE_COEF": 1.2, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "TIME_COEF_IF_MOVE": 1.05, - "WEAPON_ROOT_OFFSET": 0.35, - "XZ_COEF": 0.01, - "XZ_COEF_STATIONARY_GRENADE": 0.2 - }, - "Boss": { - "BOSS_DIST_TO_SHOOT": 10, - "BOSS_DIST_TO_SHOOT_SQRT": 100, - "BOSS_DIST_TO_WARNING": 20, - "BOSS_DIST_TO_WARNING_OUT": 35, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 625, - "BOSS_DIST_TO_WARNING_SQRT": 400, - "CHANCE_TO_SEND_GRENADE_100": 100, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "COVER_TO_SEND": true, - "DELTA_SEARCH_TIME": 18, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_BULLET_TO_RELOAD": 15, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_CONTUTION_TIME": 5, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_HOLD_DELAY": 5, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_SEARCH_METERS": 30, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "MAX_DIST_COVER_BOSS": 65, - "MAX_DIST_COVER_BOSS_SQRT": 4225, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "NOT_ADD_TO_ENEMY_ON_KILLS": true, - "PERSONS_SEND": 2, - "SHALL_WARN": true, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "WAIT_NO_ATTACK_SAVAGE": 10 - }, - "Change": { - "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_HEARING": 1, - "FLASH_LAY_CHANCE": 1, - "FLASH_PRECICING": 1.6, - "FLASH_SCATTERING": 1.6, - "FLASH_VISION_DIST": 0.05, - "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_LAY_CHANCE": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_VISION_DIST": 0.6, - "STUN_HEARING": 0.01 - }, - "Core": { - "AccuratySpeed": 0.15, - "AimingType": "normal", - "CanGrenade": true, - "CanRun": true, - "DamageCoeff": 1, - "GainSightCoef": 0.05, - "HearingSense": 10.9, - "PistolFireDistancePref": 35, - "RifleFireDistancePref": 100, - "ScatteringClosePerMeter": 0.12, - "ScatteringPerMeter": 0.045, - "ShotgunFireDistancePref": 50, - "VisibleAngle": 180, - "VisibleDistance": 262, - "WaitInCoverBetweenShotsSec": 0.35 - }, - "Cover": { - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "CHECK_COVER_ENEMY_LOOK": false, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "DEPENDS_Y_DIST_TO_BOT": false, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "DIST_CHECK_SFETY": 9, - "DOG_FIGHT_AFTER_LEAVE": 4, - "ENEMY_DIST_TO_GO_OUT": 1, - "GOOD_DIST_TO_POINT_COEF": 9999, - "HIDE_TO_COVER_TIME": 1.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "MAX_DIST_OF_COVER": 4, - "MAX_DIST_OF_COVER_SQR": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "MIN_DEFENCE_LEVEL": 5, - "MIN_DIST_TO_ENEMY": 9, - "MOVE_TO_COVER_WHEN_TARGET": false, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "RUN_IF_FAR": 10, - "RUN_IF_FAR_SQRT": 225, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "SHOOT_NEAR_TO_LEAVE": 2, - "SOUND_TO_GET_SPOTTED": 2, - "SPOTTED_COVERS_RADIUS": 2.5, - "SPOTTED_GRENADE_RADIUS": 16, - "SPOTTED_GRENADE_TIME": 7, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "TIME_CHECK_SAFE": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "WAIT_INT_COVER_FINDING_ENEMY": 2 - }, - "Grenade": { - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "ANG_TYPE": 4, - "BEWARE_TYPE": 2, - "BE_ATTENTION_COEF": 4, - "CAN_THROW_STRAIGHT_CONTACT": true, - "CHANCE_RUN_FLASHED_100": 100, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "CHEAT_START_GRENADE_PLACE": false, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "DELTA_GRENADE_START_TIME": 0.01, - "DELTA_NEXT_ATTEMPT": 10, - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "FLASH_GRENADE_TIME_COEF": 0.25, - "GrenadePerMeter": 0.15, - "GrenadePrecision": 0.1, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "MAX_THROW_POWER": 18.7, - "MIN_DIST_NOT_TO_THROW": 8, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "NO_RUN_FROM_AI_GRENADES": true, - "REQUEST_DIST_MUST_THROW": 3, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "SIZE_SPOTTED_COEF": 2, - "SMOKE_CHECK_DELTA": 1, - "SMOKE_SUPPRESS_DELTA": 20, - "STOP_WHEN_THROW_GRENADE": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "STUN_SUPPRESS_DELTA": 9, - "TIME_SHOOT_TO_FLASH": 4, - "WAIT_TIME_TURN_AWAY": 0.2 - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.99, - "CLOSE_DIST": 96, - "DEAD_BODY_SOUND_RAD": 30, - "DISPERSION_COEF": 20, - "DIST_PLACE_TO_FIND_POINT": 70, - "FAR_DIST": 176, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "HEAR_DELAY_WHEN_PEACE": 0, - "LOOK_ONLY_DANGER": false, - "LOOK_ONLY_DANGER_DELTA": 9, - "RESET_TIMER_DIST": 17, - "SOUND_DIR_DEEFREE": 30 - }, - "Lay": { - "ATTACK_LAY_CHANCE": 25, - "CHECK_SHOOT_WHEN_LAYING": false, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "DAMAGE_TIME_TO_GETUP": 3, - "DELTA_AFTER_GETUP": 10, - "DELTA_GETUP": 2.7, - "DELTA_LAY_CHECK": 2, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "LAY_AIM": 0.6, - "LAY_CHANCE_DANGER": 40, - "MAX_CAN_LAY_DIST": 200, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_LAY_TIME": 35, - "MIN_CAN_LAY_DIST": 11, - "MIN_CAN_LAY_DIST_SQRT": 121 - }, - "Look": { - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "CAN_LOOK_TO_WALL": true, - "COME_TO_BODY_DIST": 1.2, - "CloseDeltaTimeSec": 0.1, - "DIST_CHECK_WALL": 20, - "DIST_NOT_TO_IGNORE_WALL": 15, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "FAR_DISTANCE": 260, - "FarDeltaTimeSec": 3, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "LOOK_AROUND_DELTA": 1.1, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LightOnVisionDistance": 95, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MIDDLE_DIST": 90, - "MIN_LOOK_AROUD_TIME": 20, - "MiddleDeltaTimeSec": 1, - "OLD_TIME_POINT": 11, - "OPTIMIZE_TO_ONLY_BODY": true, - "POSIBLE_VISION_SPACE": 1.2, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8 - }, - "Mind": { - "AGGRESSOR_LOYALTY_BONUS": 0, - "AI_POWER_COEF": 120, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "BULLET_FEEL_CLOSE_SDIST": 1, - "BULLET_FEEL_DIST": 360, - "CAN_PANIC_IS_PROTECT": false, - "CAN_RECIVE_PLAYER_REQUESTS": true, - "CAN_STAND_BY": false, - "CAN_TAKE_ANY_ITEM": true, - "CAN_TAKE_ITEMS": true, - "CAN_THROW_REQUESTS": true, - "CAN_USE_MEDS": true, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "COVER_DIST_COEF": 1.5, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "DANGER_POINT_CHOOSE_COEF": 1, - "DEFAULT_BEAR_BEHAVIOUR": "Ignore", - "DEFAULT_ENEMY_BEAR": false, - "DEFAULT_ENEMY_SAVAGE": false, - "DEFAULT_ENEMY_USEC": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "Ignore", - "DEFAULT_USEC_BEHAVIOUR": "Ignore", - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "DIST_TO_FOUND_SQRT": 400, - "DIST_TO_STOP_RUN_ENEMY": 15, - "DOG_FIGHT_IN": 3, - "DOG_FIGHT_OUT": 6, - "ENEMY_BOT_TYPES": [], - "ENEMY_BY_GROUPS_PMC_PLAYERS": false, - "ENEMY_BY_GROUPS_SAVAGE_PLAYERS": false, - "ENEMY_LOOK_AT_ME_ANG": 15, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "FRIENDLY_BOT_TYPES": [], - "FRIEND_AGR_KILL": 0.2, - "FRIEND_DEAD_AGR_LOW": -0.2, - "GIFTER_ADDITIONAL_GIFTS": 1, - "GROUP_ANY_PHRASE_DELAY": 20, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "HIT_POINT_DETECTION": 4, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "MAX_AGGRO_BOT_DIST": 100, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "MAX_SHOOTS_TIME": 4, - "MAX_START_AGGRESION_COEF": 3, - "MIN_DAMAGE_SCARE": 20, - "MIN_SHOOTS_TIME": 2, - "MIN_START_AGGRESION_COEF": 1, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30, - "PROTECT_DELTA_HEAL_SEC": 10, - "PROTECT_TIME_REAL": true, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "STANDART_AMBUSH_DIST": 100, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "TALK_WITH_QUERY": true, - "TIME_TO_FIND_ENEMY": 22, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "WARN_BOT_TYPES": [] - }, - "Move": { - "BASESTART_SLOW_DIST": 1.1, - "BASE_ROTATE_SPEED": 270, - "BASE_SQRT_START_SERACH": 1225, - "BASE_START_SERACH": 35, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "DELTA_LAST_SEEN_ENEMY": 20, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST": 15, - "DIST_TO_START_RAYCAST_SQR": 225, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "REACH_DIST": 0.5, - "REACH_DIST_COVER": 2, - "REACH_DIST_RUN": 0.8, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "RUN_TO_COVER_MIN": 2, - "SEC_TO_CHANGE_TO_RUN": 3, - "SLOW_COEF": 7, - "START_SLOW_DIST": 1.5, - "UPDATE_TIME_RECAL_WAY": 7, - "Y_APPROXIMATION": 0.7 - }, - "Patrol": { - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "CHANGE_WAY_TIME": 325.1, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "CUT_WAY_MAX_0_1": 0.65, - "CUT_WAY_MIN_0_1": 0.4, - "FRIEND_SEARCH_SEC": 12, - "LOOK_TIME_BASE": 12, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "MIN_DIST_TO_CLOSE_TALK": 5, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "MIN_TALK_DELAY": 35, - "PICKUP_ITEMS_TO_BACKPACK_OR_CONTAINER": true, - "RESERVE_OUT_TIME": 60, - "RESERVE_TIME_STAY": 72, - "SUSPETION_PLACE_LIFETIME": 7, - "TALK_DELAY": 1.1, - "TALK_DELAY_BIG": 45.1, - "VISION_DIST_COEF_PEACE": 0.75 - }, - "Scattering": { - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "BloodFall": 1.45, - "Caution": 0.3, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "FromShot": 0.001, - "HandDamageAccuracySpeed": 1.3, - "HandDamageScatteringMinMax": 0.7, - "LayFactor": 0.1, - "MaxScatter": 0.2, - "MinScatter": 0.01, - "MovingSlowCoef": 1.5, - "PoseChnageCoef": 0.1, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1, - "SpeedDown": -0.3, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "ToCaution": 0.6, - "ToLowBotAngularSpeed": 80, - "ToLowBotSpeed": 2.4, - "ToSlowBotSpeed": 1.5, - "ToStopBotAngularSpeed": 40, - "ToUpBotSpeed": 3.6, - "TracerCoef": 1.3, - "WorkingScatter": 0.02 - }, - "Shoot": { - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.1, - "BASE_AUTOMATIC_TIME": 0.25, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 99, - "CHANCE_TO_CHANGE_WEAPON": 80, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "FAR_DIST_ENEMY": 20, - "FAR_DIST_ENEMY_SQR": 400, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "HORIZONT_RECOIL_COEF": 0.04, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "MARKSMAN_DIST_SEK_COEF": 44, - "MAX_DIST_COEF": 1.35, - "MAX_RECOIL_PER_METER": 0.04, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RECOIL_DELTA_PRESS": 0.15, - "RECOIL_PER_METER": 0.01, - "RECOIL_TIME_NORMALIZE": 0.3, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "SHOOT_FROM_COVER": 4, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "WAIT_NEXT_STATIONARY_GRENADE": 1 - } - }, - "hard": { - "Aiming": { - "AIMING_TYPE": 2, - "ANYTIME_LIGHT_WHEN_AIM_100": 40, - "ANY_PART_SHOOT_TIME": 5, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.07, - "BASE_HIT_AFFECTION_MAX_ANG": 4, - "BASE_HIT_AFFECTION_MIN_ANG": 2, - "BASE_SHIEF": 0.03, - "BASE_SHIEF_STATIONARY_GRENADE": 0.15, - "BETTER_PRECICING_COEF": 0.9, - "BOTTOM_COEF": 0.01, - "BOT_MOVE_IF_DELTA": 3.01, - "COEF_FROM_COVER": 0.35, - "COEF_IF_MOVE": 1, - "DAMAGE_PANIC_TIME": 5, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "DANGER_UP_POINT": 1.3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "DIST_TO_SHOOT_TO_CENTER": 3, - "FIRST_CONTACT_ADD_CHANCE_100": 40, - "FIRST_CONTACT_ADD_SEC": 0.01, - "HARD_AIM": 0.75, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "MAX_AIM_PRECICING": 1, - "MAX_AIM_TIME": 1.1, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "NEXT_SHOT_MISS_CHANCE_100": 10, - "NEXT_SHOT_MISS_Y_OFFSET": 0.1, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "PANIC_ACCURATY_COEF": 1.2, - "PANIC_COEF": 1.2, - "PANIC_TIME": 1, - "RECALC_DIST": 0.7, - "RECALC_MUST_TIME": 2, - "RECALC_SQR_DIST": 0.48999998, - "SCATTERING_DIST_MODIF": 0.47, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "SCATTERING_HAVE_DAMAGE_COEF": 1.2, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "TIME_COEF_IF_MOVE": 1.05, - "WEAPON_ROOT_OFFSET": 0.35, - "XZ_COEF": 0.01, - "XZ_COEF_STATIONARY_GRENADE": 0.2 - }, - "Boss": { - "BOSS_DIST_TO_SHOOT": 10, - "BOSS_DIST_TO_SHOOT_SQRT": 100, - "BOSS_DIST_TO_WARNING": 20, - "BOSS_DIST_TO_WARNING_OUT": 35, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 625, - "BOSS_DIST_TO_WARNING_SQRT": 400, - "CHANCE_TO_SEND_GRENADE_100": 100, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "COVER_TO_SEND": true, - "DELTA_SEARCH_TIME": 18, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_BULLET_TO_RELOAD": 15, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_CONTUTION_TIME": 5, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_HOLD_DELAY": 5, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_SEARCH_METERS": 30, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "MAX_DIST_COVER_BOSS": 65, - "MAX_DIST_COVER_BOSS_SQRT": 4225, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "NOT_ADD_TO_ENEMY_ON_KILLS": true, - "PERSONS_SEND": 2, - "SHALL_WARN": true, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "WAIT_NO_ATTACK_SAVAGE": 10 - }, - "Change": { - "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_HEARING": 1, - "FLASH_LAY_CHANCE": 1, - "FLASH_PRECICING": 1.6, - "FLASH_SCATTERING": 1.6, - "FLASH_VISION_DIST": 0.05, - "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_LAY_CHANCE": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_VISION_DIST": 0.6, - "STUN_HEARING": 0.01 - }, - "Core": { - "AccuratySpeed": 0.15, - "AimingType": "normal", - "CanGrenade": true, - "CanRun": true, - "DamageCoeff": 1, - "GainSightCoef": 0.05, - "HearingSense": 10.9, - "PistolFireDistancePref": 35, - "RifleFireDistancePref": 100, - "ScatteringClosePerMeter": 0.12, - "ScatteringPerMeter": 0.045, - "ShotgunFireDistancePref": 50, - "VisibleAngle": 180, - "VisibleDistance": 262, - "WaitInCoverBetweenShotsSec": 0.35 - }, - "Cover": { - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "CHECK_COVER_ENEMY_LOOK": false, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "DEPENDS_Y_DIST_TO_BOT": false, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "DIST_CHECK_SFETY": 9, - "DOG_FIGHT_AFTER_LEAVE": 4, - "ENEMY_DIST_TO_GO_OUT": 1, - "GOOD_DIST_TO_POINT_COEF": 9999, - "HIDE_TO_COVER_TIME": 1.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "MAX_DIST_OF_COVER": 4, - "MAX_DIST_OF_COVER_SQR": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "MIN_DEFENCE_LEVEL": 5, - "MIN_DIST_TO_ENEMY": 9, - "MOVE_TO_COVER_WHEN_TARGET": false, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "RUN_IF_FAR": 10, - "RUN_IF_FAR_SQRT": 225, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "SHOOT_NEAR_TO_LEAVE": 2, - "SOUND_TO_GET_SPOTTED": 2, - "SPOTTED_COVERS_RADIUS": 2.5, - "SPOTTED_GRENADE_RADIUS": 16, - "SPOTTED_GRENADE_TIME": 7, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "TIME_CHECK_SAFE": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "WAIT_INT_COVER_FINDING_ENEMY": 2 - }, - "Grenade": { - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "ANG_TYPE": 4, - "BEWARE_TYPE": 2, - "BE_ATTENTION_COEF": 4, - "CAN_THROW_STRAIGHT_CONTACT": true, - "CHANCE_RUN_FLASHED_100": 100, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "CHEAT_START_GRENADE_PLACE": false, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "DELTA_GRENADE_START_TIME": 0.01, - "DELTA_NEXT_ATTEMPT": 10, - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "FLASH_GRENADE_TIME_COEF": 0.25, - "GrenadePerMeter": 0.15, - "GrenadePrecision": 0.1, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "MAX_THROW_POWER": 18.7, - "MIN_DIST_NOT_TO_THROW": 8, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "NO_RUN_FROM_AI_GRENADES": true, - "REQUEST_DIST_MUST_THROW": 3, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "SIZE_SPOTTED_COEF": 2, - "SMOKE_CHECK_DELTA": 1, - "SMOKE_SUPPRESS_DELTA": 20, - "STOP_WHEN_THROW_GRENADE": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "STUN_SUPPRESS_DELTA": 9, - "TIME_SHOOT_TO_FLASH": 4, - "WAIT_TIME_TURN_AWAY": 0.2 - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.99, - "CLOSE_DIST": 96, - "DEAD_BODY_SOUND_RAD": 30, - "DISPERSION_COEF": 20, - "DIST_PLACE_TO_FIND_POINT": 70, - "FAR_DIST": 176, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "HEAR_DELAY_WHEN_PEACE": 0, - "LOOK_ONLY_DANGER": false, - "LOOK_ONLY_DANGER_DELTA": 9, - "RESET_TIMER_DIST": 17, - "SOUND_DIR_DEEFREE": 30 - }, - "Lay": { - "ATTACK_LAY_CHANCE": 25, - "CHECK_SHOOT_WHEN_LAYING": false, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "DAMAGE_TIME_TO_GETUP": 3, - "DELTA_AFTER_GETUP": 10, - "DELTA_GETUP": 2.7, - "DELTA_LAY_CHECK": 2, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "LAY_AIM": 0.6, - "LAY_CHANCE_DANGER": 40, - "MAX_CAN_LAY_DIST": 200, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_LAY_TIME": 35, - "MIN_CAN_LAY_DIST": 11, - "MIN_CAN_LAY_DIST_SQRT": 121 - }, - "Look": { - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "CAN_LOOK_TO_WALL": true, - "COME_TO_BODY_DIST": 1.2, - "CloseDeltaTimeSec": 0.1, - "DIST_CHECK_WALL": 20, - "DIST_NOT_TO_IGNORE_WALL": 15, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "FAR_DISTANCE": 260, - "FarDeltaTimeSec": 3, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "LOOK_AROUND_DELTA": 1.1, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LightOnVisionDistance": 95, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MIDDLE_DIST": 90, - "MIN_LOOK_AROUD_TIME": 20, - "MiddleDeltaTimeSec": 1, - "OLD_TIME_POINT": 11, - "OPTIMIZE_TO_ONLY_BODY": true, - "POSIBLE_VISION_SPACE": 1.2, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8 - }, - "Mind": { - "AGGRESSOR_LOYALTY_BONUS": 0, - "AI_POWER_COEF": 120, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "BULLET_FEEL_CLOSE_SDIST": 1, - "BULLET_FEEL_DIST": 360, - "CAN_PANIC_IS_PROTECT": false, - "CAN_RECIVE_PLAYER_REQUESTS": true, - "CAN_STAND_BY": false, - "CAN_TAKE_ANY_ITEM": true, - "CAN_TAKE_ITEMS": true, - "CAN_THROW_REQUESTS": true, - "CAN_USE_MEDS": true, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "COVER_DIST_COEF": 1.5, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "DANGER_POINT_CHOOSE_COEF": 1, - "DEFAULT_BEAR_BEHAVIOUR": "Ignore", - "DEFAULT_ENEMY_BEAR": false, - "DEFAULT_ENEMY_SAVAGE": false, - "DEFAULT_ENEMY_USEC": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "Ignore", - "DEFAULT_USEC_BEHAVIOUR": "Ignore", - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "DIST_TO_FOUND_SQRT": 400, - "DIST_TO_STOP_RUN_ENEMY": 15, - "DOG_FIGHT_IN": 3, - "DOG_FIGHT_OUT": 6, - "ENEMY_BOT_TYPES": [], - "ENEMY_BY_GROUPS_PMC_PLAYERS": false, - "ENEMY_BY_GROUPS_SAVAGE_PLAYERS": false, - "ENEMY_LOOK_AT_ME_ANG": 15, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "FRIENDLY_BOT_TYPES": [], - "FRIEND_AGR_KILL": 0.2, - "FRIEND_DEAD_AGR_LOW": -0.2, - "GIFTER_ADDITIONAL_GIFTS": 1, - "GROUP_ANY_PHRASE_DELAY": 20, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "HIT_POINT_DETECTION": 4, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "MAX_AGGRO_BOT_DIST": 100, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "MAX_SHOOTS_TIME": 4, - "MAX_START_AGGRESION_COEF": 3, - "MIN_DAMAGE_SCARE": 20, - "MIN_SHOOTS_TIME": 2, - "MIN_START_AGGRESION_COEF": 1, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30, - "PROTECT_DELTA_HEAL_SEC": 10, - "PROTECT_TIME_REAL": true, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "STANDART_AMBUSH_DIST": 100, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "TALK_WITH_QUERY": true, - "TIME_TO_FIND_ENEMY": 22, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "WARN_BOT_TYPES": [] - }, - "Move": { - "BASESTART_SLOW_DIST": 1.1, - "BASE_ROTATE_SPEED": 270, - "BASE_SQRT_START_SERACH": 1225, - "BASE_START_SERACH": 35, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "DELTA_LAST_SEEN_ENEMY": 20, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST": 15, - "DIST_TO_START_RAYCAST_SQR": 225, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "REACH_DIST": 0.5, - "REACH_DIST_COVER": 2, - "REACH_DIST_RUN": 0.8, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "RUN_TO_COVER_MIN": 2, - "SEC_TO_CHANGE_TO_RUN": 3, - "SLOW_COEF": 7, - "START_SLOW_DIST": 1.5, - "UPDATE_TIME_RECAL_WAY": 7, - "Y_APPROXIMATION": 0.7 - }, - "Patrol": { - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "CHANGE_WAY_TIME": 325.1, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "CUT_WAY_MAX_0_1": 0.65, - "CUT_WAY_MIN_0_1": 0.4, - "FRIEND_SEARCH_SEC": 12, - "LOOK_TIME_BASE": 12, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "MIN_DIST_TO_CLOSE_TALK": 5, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "MIN_TALK_DELAY": 35, - "PICKUP_ITEMS_TO_BACKPACK_OR_CONTAINER": true, - "RESERVE_OUT_TIME": 60, - "RESERVE_TIME_STAY": 72, - "SUSPETION_PLACE_LIFETIME": 7, - "TALK_DELAY": 1.1, - "TALK_DELAY_BIG": 45.1, - "VISION_DIST_COEF_PEACE": 0.75 - }, - "Scattering": { - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "BloodFall": 1.45, - "Caution": 0.3, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "FromShot": 0.001, - "HandDamageAccuracySpeed": 1.3, - "HandDamageScatteringMinMax": 0.7, - "LayFactor": 0.1, - "MaxScatter": 0.2, - "MinScatter": 0.01, - "MovingSlowCoef": 1.5, - "PoseChnageCoef": 0.1, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1, - "SpeedDown": -0.3, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "ToCaution": 0.6, - "ToLowBotAngularSpeed": 80, - "ToLowBotSpeed": 2.4, - "ToSlowBotSpeed": 1.5, - "ToStopBotAngularSpeed": 40, - "ToUpBotSpeed": 3.6, - "TracerCoef": 1.3, - "WorkingScatter": 0.02 - }, - "Shoot": { - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.1, - "BASE_AUTOMATIC_TIME": 0.25, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 99, - "CHANCE_TO_CHANGE_WEAPON": 80, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "FAR_DIST_ENEMY": 20, - "FAR_DIST_ENEMY_SQR": 400, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "HORIZONT_RECOIL_COEF": 0.04, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "MARKSMAN_DIST_SEK_COEF": 44, - "MAX_DIST_COEF": 1.35, - "MAX_RECOIL_PER_METER": 0.04, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RECOIL_DELTA_PRESS": 0.15, - "RECOIL_PER_METER": 0.01, - "RECOIL_TIME_NORMALIZE": 0.3, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "SHOOT_FROM_COVER": 4, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "WAIT_NEXT_STATIONARY_GRENADE": 1 - } - }, - "impossible": { - "Aiming": { - "AIMING_TYPE": 2, - "ANYTIME_LIGHT_WHEN_AIM_100": 40, - "ANY_PART_SHOOT_TIME": 5, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.07, - "BASE_HIT_AFFECTION_MAX_ANG": 4, - "BASE_HIT_AFFECTION_MIN_ANG": 2, - "BASE_SHIEF": 0.03, - "BASE_SHIEF_STATIONARY_GRENADE": 0.15, - "BETTER_PRECICING_COEF": 0.9, - "BOTTOM_COEF": 0.01, - "BOT_MOVE_IF_DELTA": 3.01, - "COEF_FROM_COVER": 0.35, - "COEF_IF_MOVE": 1, - "DAMAGE_PANIC_TIME": 5, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "DANGER_UP_POINT": 1.3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "DIST_TO_SHOOT_TO_CENTER": 3, - "FIRST_CONTACT_ADD_CHANCE_100": 40, - "FIRST_CONTACT_ADD_SEC": 0.01, - "HARD_AIM": 0.75, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "MAX_AIM_PRECICING": 1, - "MAX_AIM_TIME": 1.1, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "NEXT_SHOT_MISS_CHANCE_100": 10, - "NEXT_SHOT_MISS_Y_OFFSET": 0.1, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "PANIC_ACCURATY_COEF": 1.2, - "PANIC_COEF": 1.2, - "PANIC_TIME": 1, - "RECALC_DIST": 0.7, - "RECALC_MUST_TIME": 2, - "RECALC_SQR_DIST": 0.48999998, - "SCATTERING_DIST_MODIF": 0.47, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "SCATTERING_HAVE_DAMAGE_COEF": 1.2, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "TIME_COEF_IF_MOVE": 1.05, - "WEAPON_ROOT_OFFSET": 0.35, - "XZ_COEF": 0.01, - "XZ_COEF_STATIONARY_GRENADE": 0.2 - }, - "Boss": { - "BOSS_DIST_TO_SHOOT": 10, - "BOSS_DIST_TO_SHOOT_SQRT": 100, - "BOSS_DIST_TO_WARNING": 20, - "BOSS_DIST_TO_WARNING_OUT": 35, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 625, - "BOSS_DIST_TO_WARNING_SQRT": 400, - "CHANCE_TO_SEND_GRENADE_100": 100, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "COVER_TO_SEND": true, - "DELTA_SEARCH_TIME": 18, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_BULLET_TO_RELOAD": 15, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_CONTUTION_TIME": 5, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_HOLD_DELAY": 5, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_SEARCH_METERS": 30, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "MAX_DIST_COVER_BOSS": 65, - "MAX_DIST_COVER_BOSS_SQRT": 4225, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "NOT_ADD_TO_ENEMY_ON_KILLS": true, - "PERSONS_SEND": 2, - "SHALL_WARN": true, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "WAIT_NO_ATTACK_SAVAGE": 10 - }, - "Change": { - "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_HEARING": 1, - "FLASH_LAY_CHANCE": 1, - "FLASH_PRECICING": 1.6, - "FLASH_SCATTERING": 1.6, - "FLASH_VISION_DIST": 0.05, - "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_LAY_CHANCE": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_VISION_DIST": 0.6, - "STUN_HEARING": 0.01 - }, - "Core": { - "AccuratySpeed": 0.15, - "AimingType": "normal", - "CanGrenade": true, - "CanRun": true, - "DamageCoeff": 1, - "GainSightCoef": 0.05, - "HearingSense": 10.9, - "PistolFireDistancePref": 35, - "RifleFireDistancePref": 100, - "ScatteringClosePerMeter": 0.12, - "ScatteringPerMeter": 0.045, - "ShotgunFireDistancePref": 50, - "VisibleAngle": 180, - "VisibleDistance": 262, - "WaitInCoverBetweenShotsSec": 0.35 - }, - "Cover": { - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "CHECK_COVER_ENEMY_LOOK": false, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "DEPENDS_Y_DIST_TO_BOT": false, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "DIST_CHECK_SFETY": 9, - "DOG_FIGHT_AFTER_LEAVE": 4, - "ENEMY_DIST_TO_GO_OUT": 1, - "GOOD_DIST_TO_POINT_COEF": 9999, - "HIDE_TO_COVER_TIME": 1.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "MAX_DIST_OF_COVER": 4, - "MAX_DIST_OF_COVER_SQR": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "MIN_DEFENCE_LEVEL": 5, - "MIN_DIST_TO_ENEMY": 9, - "MOVE_TO_COVER_WHEN_TARGET": false, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "RUN_IF_FAR": 10, - "RUN_IF_FAR_SQRT": 225, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "SHOOT_NEAR_TO_LEAVE": 2, - "SOUND_TO_GET_SPOTTED": 2, - "SPOTTED_COVERS_RADIUS": 2.5, - "SPOTTED_GRENADE_RADIUS": 16, - "SPOTTED_GRENADE_TIME": 7, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "TIME_CHECK_SAFE": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "WAIT_INT_COVER_FINDING_ENEMY": 2 - }, - "Grenade": { - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "ANG_TYPE": 4, - "BEWARE_TYPE": 2, - "BE_ATTENTION_COEF": 4, - "CAN_THROW_STRAIGHT_CONTACT": true, - "CHANCE_RUN_FLASHED_100": 100, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "CHEAT_START_GRENADE_PLACE": false, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "DELTA_GRENADE_START_TIME": 0.01, - "DELTA_NEXT_ATTEMPT": 10, - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "FLASH_GRENADE_TIME_COEF": 0.25, - "GrenadePerMeter": 0.15, - "GrenadePrecision": 0.1, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "MAX_THROW_POWER": 18.7, - "MIN_DIST_NOT_TO_THROW": 8, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "NO_RUN_FROM_AI_GRENADES": true, - "REQUEST_DIST_MUST_THROW": 3, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "SIZE_SPOTTED_COEF": 2, - "SMOKE_CHECK_DELTA": 1, - "SMOKE_SUPPRESS_DELTA": 20, - "STOP_WHEN_THROW_GRENADE": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "STUN_SUPPRESS_DELTA": 9, - "TIME_SHOOT_TO_FLASH": 4, - "WAIT_TIME_TURN_AWAY": 0.2 - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.99, - "CLOSE_DIST": 96, - "DEAD_BODY_SOUND_RAD": 30, - "DISPERSION_COEF": 20, - "DIST_PLACE_TO_FIND_POINT": 70, - "FAR_DIST": 176, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "HEAR_DELAY_WHEN_PEACE": 0, - "LOOK_ONLY_DANGER": false, - "LOOK_ONLY_DANGER_DELTA": 9, - "RESET_TIMER_DIST": 17, - "SOUND_DIR_DEEFREE": 30 - }, - "Lay": { - "ATTACK_LAY_CHANCE": 25, - "CHECK_SHOOT_WHEN_LAYING": false, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "DAMAGE_TIME_TO_GETUP": 3, - "DELTA_AFTER_GETUP": 10, - "DELTA_GETUP": 2.7, - "DELTA_LAY_CHECK": 2, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "LAY_AIM": 0.6, - "LAY_CHANCE_DANGER": 40, - "MAX_CAN_LAY_DIST": 200, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_LAY_TIME": 35, - "MIN_CAN_LAY_DIST": 11, - "MIN_CAN_LAY_DIST_SQRT": 121 - }, - "Look": { - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "CAN_LOOK_TO_WALL": true, - "COME_TO_BODY_DIST": 1.2, - "CloseDeltaTimeSec": 0.1, - "DIST_CHECK_WALL": 20, - "DIST_NOT_TO_IGNORE_WALL": 15, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "FAR_DISTANCE": 260, - "FarDeltaTimeSec": 3, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "LOOK_AROUND_DELTA": 1.1, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LightOnVisionDistance": 95, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MIDDLE_DIST": 90, - "MIN_LOOK_AROUD_TIME": 20, - "MiddleDeltaTimeSec": 1, - "OLD_TIME_POINT": 11, - "OPTIMIZE_TO_ONLY_BODY": true, - "POSIBLE_VISION_SPACE": 1.2, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8 - }, - "Mind": { - "AGGRESSOR_LOYALTY_BONUS": 0, - "AI_POWER_COEF": 120, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "BULLET_FEEL_CLOSE_SDIST": 1, - "BULLET_FEEL_DIST": 360, - "CAN_PANIC_IS_PROTECT": false, - "CAN_RECIVE_PLAYER_REQUESTS": true, - "CAN_STAND_BY": false, - "CAN_TAKE_ANY_ITEM": true, - "CAN_TAKE_ITEMS": true, - "CAN_THROW_REQUESTS": true, - "CAN_USE_MEDS": true, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "COVER_DIST_COEF": 1.5, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "DANGER_POINT_CHOOSE_COEF": 1, - "DEFAULT_BEAR_BEHAVIOUR": "Ignore", - "DEFAULT_ENEMY_BEAR": false, - "DEFAULT_ENEMY_SAVAGE": false, - "DEFAULT_ENEMY_USEC": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "Ignore", - "DEFAULT_USEC_BEHAVIOUR": "Ignore", - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "DIST_TO_FOUND_SQRT": 400, - "DIST_TO_STOP_RUN_ENEMY": 15, - "DOG_FIGHT_IN": 3, - "DOG_FIGHT_OUT": 6, - "ENEMY_BOT_TYPES": [], - "ENEMY_BY_GROUPS_PMC_PLAYERS": false, - "ENEMY_BY_GROUPS_SAVAGE_PLAYERS": false, - "ENEMY_LOOK_AT_ME_ANG": 15, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "FRIENDLY_BOT_TYPES": [], - "FRIEND_AGR_KILL": 0.2, - "FRIEND_DEAD_AGR_LOW": -0.2, - "GIFTER_ADDITIONAL_GIFTS": 1, - "GROUP_ANY_PHRASE_DELAY": 20, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "HIT_POINT_DETECTION": 4, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "MAX_AGGRO_BOT_DIST": 100, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "MAX_SHOOTS_TIME": 4, - "MAX_START_AGGRESION_COEF": 3, - "MIN_DAMAGE_SCARE": 20, - "MIN_SHOOTS_TIME": 2, - "MIN_START_AGGRESION_COEF": 1, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30, - "PROTECT_DELTA_HEAL_SEC": 10, - "PROTECT_TIME_REAL": true, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "STANDART_AMBUSH_DIST": 100, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "TALK_WITH_QUERY": true, - "TIME_TO_FIND_ENEMY": 22, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "WARN_BOT_TYPES": [] - }, - "Move": { - "BASESTART_SLOW_DIST": 1.1, - "BASE_ROTATE_SPEED": 270, - "BASE_SQRT_START_SERACH": 1225, - "BASE_START_SERACH": 35, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "DELTA_LAST_SEEN_ENEMY": 20, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST": 15, - "DIST_TO_START_RAYCAST_SQR": 225, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "REACH_DIST": 0.5, - "REACH_DIST_COVER": 2, - "REACH_DIST_RUN": 0.8, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "RUN_TO_COVER_MIN": 2, - "SEC_TO_CHANGE_TO_RUN": 3, - "SLOW_COEF": 7, - "START_SLOW_DIST": 1.5, - "UPDATE_TIME_RECAL_WAY": 7, - "Y_APPROXIMATION": 0.7 - }, - "Patrol": { - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "CHANGE_WAY_TIME": 325.1, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "CUT_WAY_MAX_0_1": 0.65, - "CUT_WAY_MIN_0_1": 0.4, - "FRIEND_SEARCH_SEC": 12, - "LOOK_TIME_BASE": 12, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "MIN_DIST_TO_CLOSE_TALK": 5, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "MIN_TALK_DELAY": 35, - "PICKUP_ITEMS_TO_BACKPACK_OR_CONTAINER": true, - "RESERVE_OUT_TIME": 60, - "RESERVE_TIME_STAY": 72, - "SUSPETION_PLACE_LIFETIME": 7, - "TALK_DELAY": 1.1, - "TALK_DELAY_BIG": 45.1, - "VISION_DIST_COEF_PEACE": 0.75 - }, - "Scattering": { - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "BloodFall": 1.45, - "Caution": 0.3, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "FromShot": 0.001, - "HandDamageAccuracySpeed": 1.3, - "HandDamageScatteringMinMax": 0.7, - "LayFactor": 0.1, - "MaxScatter": 0.2, - "MinScatter": 0.01, - "MovingSlowCoef": 1.5, - "PoseChnageCoef": 0.1, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1, - "SpeedDown": -0.3, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "ToCaution": 0.6, - "ToLowBotAngularSpeed": 80, - "ToLowBotSpeed": 2.4, - "ToSlowBotSpeed": 1.5, - "ToStopBotAngularSpeed": 40, - "ToUpBotSpeed": 3.6, - "TracerCoef": 1.3, - "WorkingScatter": 0.02 - }, - "Shoot": { - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.1, - "BASE_AUTOMATIC_TIME": 0.25, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 99, - "CHANCE_TO_CHANGE_WEAPON": 80, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "FAR_DIST_ENEMY": 20, - "FAR_DIST_ENEMY_SQR": 400, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "HORIZONT_RECOIL_COEF": 0.04, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "MARKSMAN_DIST_SEK_COEF": 44, - "MAX_DIST_COEF": 1.35, - "MAX_RECOIL_PER_METER": 0.04, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RECOIL_DELTA_PRESS": 0.15, - "RECOIL_PER_METER": 0.01, - "RECOIL_TIME_NORMALIZE": 0.3, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "SHOOT_FROM_COVER": 4, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "WAIT_NEXT_STATIONARY_GRENADE": 1 - } - }, - "normal": { - "Aiming": { - "AIMING_TYPE": 2, - "ANYTIME_LIGHT_WHEN_AIM_100": 40, - "ANY_PART_SHOOT_TIME": 5, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.07, - "BASE_HIT_AFFECTION_MAX_ANG": 4, - "BASE_HIT_AFFECTION_MIN_ANG": 2, - "BASE_SHIEF": 0.03, - "BASE_SHIEF_STATIONARY_GRENADE": 0.15, - "BETTER_PRECICING_COEF": 0.9, - "BOTTOM_COEF": 0.01, - "BOT_MOVE_IF_DELTA": 3.01, - "COEF_FROM_COVER": 0.35, - "COEF_IF_MOVE": 1, - "DAMAGE_PANIC_TIME": 5, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "DANGER_UP_POINT": 1.3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "DIST_TO_SHOOT_TO_CENTER": 3, - "FIRST_CONTACT_ADD_CHANCE_100": 40, - "FIRST_CONTACT_ADD_SEC": 0.01, - "HARD_AIM": 0.75, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "MAX_AIM_PRECICING": 1, - "MAX_AIM_TIME": 1.1, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "NEXT_SHOT_MISS_CHANCE_100": 10, - "NEXT_SHOT_MISS_Y_OFFSET": 0.1, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "PANIC_ACCURATY_COEF": 1.2, - "PANIC_COEF": 1.2, - "PANIC_TIME": 1, - "RECALC_DIST": 0.7, - "RECALC_MUST_TIME": 2, - "RECALC_SQR_DIST": 0.48999998, - "SCATTERING_DIST_MODIF": 0.47, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "SCATTERING_HAVE_DAMAGE_COEF": 1.2, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "TIME_COEF_IF_MOVE": 1.05, - "WEAPON_ROOT_OFFSET": 0.35, - "XZ_COEF": 0.01, - "XZ_COEF_STATIONARY_GRENADE": 0.2 - }, - "Boss": { - "BOSS_DIST_TO_SHOOT": 10, - "BOSS_DIST_TO_SHOOT_SQRT": 100, - "BOSS_DIST_TO_WARNING": 20, - "BOSS_DIST_TO_WARNING_OUT": 35, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 625, - "BOSS_DIST_TO_WARNING_SQRT": 400, - "CHANCE_TO_SEND_GRENADE_100": 100, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "COVER_TO_SEND": true, - "DELTA_SEARCH_TIME": 18, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_BULLET_TO_RELOAD": 15, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_CONTUTION_TIME": 5, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_HOLD_DELAY": 5, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_SEARCH_METERS": 30, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "MAX_DIST_COVER_BOSS": 65, - "MAX_DIST_COVER_BOSS_SQRT": 4225, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "NOT_ADD_TO_ENEMY_ON_KILLS": true, - "PERSONS_SEND": 2, - "SHALL_WARN": true, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "WAIT_NO_ATTACK_SAVAGE": 10 - }, - "Change": { - "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_HEARING": 1, - "FLASH_LAY_CHANCE": 1, - "FLASH_PRECICING": 1.6, - "FLASH_SCATTERING": 1.6, - "FLASH_VISION_DIST": 0.05, - "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_LAY_CHANCE": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_VISION_DIST": 0.6, - "STUN_HEARING": 0.01 - }, - "Core": { - "AccuratySpeed": 0.15, - "AimingType": "normal", - "CanGrenade": true, - "CanRun": true, - "DamageCoeff": 1, - "GainSightCoef": 0.05, - "HearingSense": 10.9, - "PistolFireDistancePref": 35, - "RifleFireDistancePref": 100, - "ScatteringClosePerMeter": 0.12, - "ScatteringPerMeter": 0.045, - "ShotgunFireDistancePref": 50, - "VisibleAngle": 180, - "VisibleDistance": 262, - "WaitInCoverBetweenShotsSec": 0.35 - }, - "Cover": { - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "CHECK_COVER_ENEMY_LOOK": false, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "DEPENDS_Y_DIST_TO_BOT": false, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "DIST_CHECK_SFETY": 9, - "DOG_FIGHT_AFTER_LEAVE": 4, - "ENEMY_DIST_TO_GO_OUT": 1, - "GOOD_DIST_TO_POINT_COEF": 9999, - "HIDE_TO_COVER_TIME": 1.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "MAX_DIST_OF_COVER": 4, - "MAX_DIST_OF_COVER_SQR": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "MIN_DEFENCE_LEVEL": 5, - "MIN_DIST_TO_ENEMY": 9, - "MOVE_TO_COVER_WHEN_TARGET": false, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "RUN_IF_FAR": 10, - "RUN_IF_FAR_SQRT": 225, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "SHOOT_NEAR_TO_LEAVE": 2, - "SOUND_TO_GET_SPOTTED": 2, - "SPOTTED_COVERS_RADIUS": 2.5, - "SPOTTED_GRENADE_RADIUS": 16, - "SPOTTED_GRENADE_TIME": 7, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "TIME_CHECK_SAFE": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "WAIT_INT_COVER_FINDING_ENEMY": 2 - }, - "Grenade": { - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "ANG_TYPE": 4, - "BEWARE_TYPE": 2, - "BE_ATTENTION_COEF": 4, - "CAN_THROW_STRAIGHT_CONTACT": true, - "CHANCE_RUN_FLASHED_100": 100, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "CHEAT_START_GRENADE_PLACE": false, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "DELTA_GRENADE_START_TIME": 0.01, - "DELTA_NEXT_ATTEMPT": 10, - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "FLASH_GRENADE_TIME_COEF": 0.25, - "GrenadePerMeter": 0.15, - "GrenadePrecision": 0.1, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "MAX_THROW_POWER": 18.7, - "MIN_DIST_NOT_TO_THROW": 8, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "NO_RUN_FROM_AI_GRENADES": true, - "REQUEST_DIST_MUST_THROW": 3, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "SIZE_SPOTTED_COEF": 2, - "SMOKE_CHECK_DELTA": 1, - "SMOKE_SUPPRESS_DELTA": 20, - "STOP_WHEN_THROW_GRENADE": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "STUN_SUPPRESS_DELTA": 9, - "TIME_SHOOT_TO_FLASH": 4, - "WAIT_TIME_TURN_AWAY": 0.2 - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.99, - "CLOSE_DIST": 96, - "DEAD_BODY_SOUND_RAD": 30, - "DISPERSION_COEF": 20, - "DIST_PLACE_TO_FIND_POINT": 70, - "FAR_DIST": 176, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "HEAR_DELAY_WHEN_PEACE": 0, - "LOOK_ONLY_DANGER": false, - "LOOK_ONLY_DANGER_DELTA": 9, - "RESET_TIMER_DIST": 17, - "SOUND_DIR_DEEFREE": 30 - }, - "Lay": { - "ATTACK_LAY_CHANCE": 25, - "CHECK_SHOOT_WHEN_LAYING": false, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "DAMAGE_TIME_TO_GETUP": 3, - "DELTA_AFTER_GETUP": 10, - "DELTA_GETUP": 2.7, - "DELTA_LAY_CHECK": 2, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "LAY_AIM": 0.6, - "LAY_CHANCE_DANGER": 40, - "MAX_CAN_LAY_DIST": 200, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_LAY_TIME": 35, - "MIN_CAN_LAY_DIST": 11, - "MIN_CAN_LAY_DIST_SQRT": 121 - }, - "Look": { - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "CAN_LOOK_TO_WALL": true, - "COME_TO_BODY_DIST": 1.2, - "CloseDeltaTimeSec": 0.1, - "DIST_CHECK_WALL": 20, - "DIST_NOT_TO_IGNORE_WALL": 15, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "FAR_DISTANCE": 260, - "FarDeltaTimeSec": 3, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "LOOK_AROUND_DELTA": 1.1, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LightOnVisionDistance": 95, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MIDDLE_DIST": 90, - "MIN_LOOK_AROUD_TIME": 20, - "MiddleDeltaTimeSec": 1, - "OLD_TIME_POINT": 11, - "OPTIMIZE_TO_ONLY_BODY": true, - "POSIBLE_VISION_SPACE": 1.2, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8 - }, - "Mind": { - "AGGRESSOR_LOYALTY_BONUS": 0, - "AI_POWER_COEF": 120, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "BULLET_FEEL_CLOSE_SDIST": 1, - "BULLET_FEEL_DIST": 360, - "CAN_PANIC_IS_PROTECT": false, - "CAN_RECIVE_PLAYER_REQUESTS": true, - "CAN_STAND_BY": false, - "CAN_TAKE_ANY_ITEM": true, - "CAN_TAKE_ITEMS": true, - "CAN_THROW_REQUESTS": true, - "CAN_USE_MEDS": true, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "COVER_DIST_COEF": 1.5, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "DANGER_POINT_CHOOSE_COEF": 1, - "DEFAULT_BEAR_BEHAVIOUR": "Ignore", - "DEFAULT_ENEMY_BEAR": false, - "DEFAULT_ENEMY_SAVAGE": false, - "DEFAULT_ENEMY_USEC": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "Ignore", - "DEFAULT_USEC_BEHAVIOUR": "Ignore", - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "DIST_TO_FOUND_SQRT": 400, - "DIST_TO_STOP_RUN_ENEMY": 15, - "DOG_FIGHT_IN": 3, - "DOG_FIGHT_OUT": 6, - "ENEMY_BOT_TYPES": [], - "ENEMY_BY_GROUPS_PMC_PLAYERS": false, - "ENEMY_BY_GROUPS_SAVAGE_PLAYERS": false, - "ENEMY_LOOK_AT_ME_ANG": 15, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "FRIENDLY_BOT_TYPES": [], - "FRIEND_AGR_KILL": 0.2, - "FRIEND_DEAD_AGR_LOW": -0.2, - "GIFTER_ADDITIONAL_GIFTS": 1, - "GROUP_ANY_PHRASE_DELAY": 20, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "HIT_POINT_DETECTION": 4, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "MAX_AGGRO_BOT_DIST": 100, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "MAX_SHOOTS_TIME": 4, - "MAX_START_AGGRESION_COEF": 3, - "MIN_DAMAGE_SCARE": 20, - "MIN_SHOOTS_TIME": 2, - "MIN_START_AGGRESION_COEF": 1, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30, - "PROTECT_DELTA_HEAL_SEC": 10, - "PROTECT_TIME_REAL": true, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "STANDART_AMBUSH_DIST": 100, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "TALK_WITH_QUERY": true, - "TIME_TO_FIND_ENEMY": 22, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "WARN_BOT_TYPES": [] - }, - "Move": { - "BASESTART_SLOW_DIST": 1.1, - "BASE_ROTATE_SPEED": 270, - "BASE_SQRT_START_SERACH": 1225, - "BASE_START_SERACH": 35, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "DELTA_LAST_SEEN_ENEMY": 20, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST": 15, - "DIST_TO_START_RAYCAST_SQR": 225, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "REACH_DIST": 0.5, - "REACH_DIST_COVER": 2, - "REACH_DIST_RUN": 0.8, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "RUN_TO_COVER_MIN": 2, - "SEC_TO_CHANGE_TO_RUN": 3, - "SLOW_COEF": 7, - "START_SLOW_DIST": 1.5, - "UPDATE_TIME_RECAL_WAY": 7, - "Y_APPROXIMATION": 0.7 - }, - "Patrol": { - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "CHANGE_WAY_TIME": 325.1, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "CUT_WAY_MAX_0_1": 0.65, - "CUT_WAY_MIN_0_1": 0.4, - "FRIEND_SEARCH_SEC": 12, - "LOOK_TIME_BASE": 12, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "MIN_DIST_TO_CLOSE_TALK": 5, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "MIN_TALK_DELAY": 35, - "PICKUP_ITEMS_TO_BACKPACK_OR_CONTAINER": true, - "RESERVE_OUT_TIME": 60, - "RESERVE_TIME_STAY": 72, - "SUSPETION_PLACE_LIFETIME": 7, - "TALK_DELAY": 1.1, - "TALK_DELAY_BIG": 45.1, - "VISION_DIST_COEF_PEACE": 0.75 - }, - "Scattering": { - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "BloodFall": 1.45, - "Caution": 0.3, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "FromShot": 0.001, - "HandDamageAccuracySpeed": 1.3, - "HandDamageScatteringMinMax": 0.7, - "LayFactor": 0.1, - "MaxScatter": 0.2, - "MinScatter": 0.01, - "MovingSlowCoef": 1.5, - "PoseChnageCoef": 0.1, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1, - "SpeedDown": -0.3, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "ToCaution": 0.6, - "ToLowBotAngularSpeed": 80, - "ToLowBotSpeed": 2.4, - "ToSlowBotSpeed": 1.5, - "ToStopBotAngularSpeed": 40, - "ToUpBotSpeed": 3.6, - "TracerCoef": 1.3, - "WorkingScatter": 0.02 - }, - "Shoot": { - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.1, - "BASE_AUTOMATIC_TIME": 0.25, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 99, - "CHANCE_TO_CHANGE_WEAPON": 80, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "FAR_DIST_ENEMY": 20, - "FAR_DIST_ENEMY_SQR": 400, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "HORIZONT_RECOIL_COEF": 0.04, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "MARKSMAN_DIST_SEK_COEF": 44, - "MAX_DIST_COEF": 1.35, - "MAX_RECOIL_PER_METER": 0.04, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RECOIL_DELTA_PRESS": 0.15, - "RECOIL_PER_METER": 0.01, - "RECOIL_TIME_NORMALIZE": 0.3, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "SHOOT_FROM_COVER": 4, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "WAIT_NEXT_STATIONARY_GRENADE": 1 - } - } - }, - "experience": { - "aggressorBonus": 0, - "level": { - "max": 1, - "min": 0 - }, - "reward": { - "max": 275, - "min": 275 - }, - "standingForKill": 0 - }, - "firstName": [ - "Ирбис", - "Ягуар", - "Сапсан", - "Секач", - "Красный", - "Гюрза", - "Пума", - "Манул", - "Каракурт", - "Питон", - "Тарантул", - "Логгерхед", - "Пантера", - "Тигр", - "Росомаха", - "Пчел", - "Медведь", - "Кайман", - "Барракуда", - "Варан", - "Барс", - "Орел", - "Балу", - "Тайпан", - "Акула", - "Шакал", - "Кобра", - "Кондор", - "Орлан", - "Стервятник", - "Гадюка", - "Беркут", - "Могильник", - "Мантис", - "Зубр", - "Волк", - "Дикобраз", - "Лев", - "Гепард", - "Носорог", - "Падальщик", - "Скорпион", - "Ястреб", - "Вепрь", - "Мангуст", - "Крачун", - "Гриззли", - "Пиранья", - "Ворон", - "Гриф", - "Рысь", - "Кречет", - "Калан", - "Леопард", - "Лис" - ], - "generation": { - "items": { - "backpackLoot": { - "weights": { - "0": 1, - "1": 1, - "2": 2, - "3": 1, - "4": 1, - "5": 1, - "6": 1, - "7": 0 - }, - "whitelist": [] - }, - "drugs": { - "weights": { - "0": 1, - "1": 2, - "2": 0 - }, - "whitelist": [] - }, - "grenades": { - "weights": { - "0": 1, - "1": 1, - "2": 5, - "3": 2, - "4": 1, - "5": 1 - }, - "whitelist": [] - }, - "healing": { - "weights": { - "0": 1, - "1": 2, - "2": 1 - }, - "whitelist": [] - }, - "magazines": { - "weights": { - "0": 0, - "1": 0, - "2": 1, - "3": 3, - "4": 2 - }, - "whitelist": [] - }, - "pocketLoot": { - "weights": { - "0": 1, - "1": 6, - "2": 3, - "3": 1, - "4": 1 - }, - "whitelist": [] - }, - "specialItems": { - "weights": { - "0": 1, - "1": 0 - }, - "whitelist": [] - }, - "stims": { - "weights": { - "0": 2, - "1": 1, - "2": 0 - }, - "whitelist": [] - }, - "vestLoot": { - "weights": { - "0": 1, - "1": 3, - "2": 5, - "3": 1, - "4": 1, - "5": 1, - "6": 1 - }, - "whitelist": [] - } - } - }, - "health": { - "BodyParts": [ - { - "Chest": { - "max": 160, - "min": 160 - }, - "Head": { - "max": 42, - "min": 42 - }, - "LeftArm": { - "max": 100, - "min": 100 - }, - "LeftLeg": { - "max": 110, - "min": 110 - }, - "RightArm": { - "max": 100, - "min": 100 - }, - "RightLeg": { - "max": 110, - "min": 110 - }, - "Stomach": { - "max": 130, - "min": 130 - } - } - ], - "Energy": { - "max": 100, - "min": 100 - }, - "Hydration": { - "max": 100, - "min": 100 - }, - "Temperature": { - "max": 40, - "min": 36 - } - }, - "inventory": { - "Ammo": { - "Caliber1143x23ACP": { - "5e81f423763d9f754677bf2e": 1 - }, - "Caliber12g": { - "560d5e524bdc2d25448b4571": 107, - "5c0d591486f7744c505b416f": 386, - "5d6e6869a4b9361c140bcfde": 1, - "5d6e68a8a4b9360b6c0d54e2": 10, - "5d6e68c4a4b9361b93413f79": 9, - "5d6e6911a4b9361bd5780d52": 41 - }, - "Caliber46x30": { - "5ba2678ad4351e44f824b344": 1 - }, - "Caliber545x39": { - "56dfef82d2720bbd668b4567": 133, - "56dff026d2720bb8668b4567": 61, - "56dff061d2720bb5668b4567": 253, - "56dff2ced2720bb4668b4567": 53, - "56dff3afd2720bba668b4567": 1105, - "56dff4a2d2720bbd668b456a": 46, - "5c0d5e4486f77478390952fe": 44 - }, - "Caliber556x45NATO": { - "54527a984bdc2d4e668b4567": 141, - "54527ac44bdc2d36668b4567": 19, - "59e68f6f86f7746c9f75e846": 38, - "59e6906286f7746c9f75e847": 239, - "59e690b686f7746c9f75e848": 7, - "59e6920f86f77411d82aa167": 65, - "5c0d5ae286f7741e46554302": 218 - }, - "Caliber57x28": { - "5cc80f67e4a949035e43bbba": 4, - "5cc80f8fe4a949033b0224a2": 79, - "5cc86840d7f00c002412c56c": 18 - }, - "Caliber762x35": { - "5fbe3ffdf8b6a877a729ea82": 1 - }, - "Caliber762x39": { - "5656d7c34bdc2d9d198b4587": 367, - "59e0d99486f7744a32234762": 7, - "59e4cf5286f7741778269d8a": 164, - "64b7af434b75259c590fa893": 75, - "64b7af5a8532cf95ee0a0dbd": 285 - }, - "Caliber762x51": { - "58dd3ad986f77403051cba8f": 26, - "5a608bf24f39f98ffc77720e": 16, - "5e023e53d4353e3302577c4c": 325, - "5e023e88277cce2b522ff2b1": 22 - }, - "Caliber9x18PM": { - "573719df2459775a626ccbc2": 256, - "5737218f245977612125ba51": 287 - }, - "Caliber9x19PARA": { - "56d59d3ad2720bdb418b4577": 136, - "5a3c16fe86f77452b62de32a": 523, - "5c0d56a986f774449d5de529": 234, - "5c3df7d588a4501f290594e5": 163, - "5c925fa22e221601da359b7b": 7, - "5efb0e16aeb21837e749c7ff": 174, - "64b7bbb74b75259c590fa897": 655 - }, - "Caliber9x39": { - "57a0dfb82459774d3078b56c": 104, - "57a0e5022459774d1673f889": 73, - "5c0d668f86f7747ccb7f13b2": 21, - "61962d879bb3d20b0946d385": 50, - "6576f96220d53a5b8f3e395e": 25 - } - }, - "equipment": { - "ArmBand": {}, - "ArmorVest": { - "5648a7494bdc2d9d488b4583": 61, - "5b44cf1486f77431723e3d05": 10, - "5b44d0de86f774503d30cba8": 20, - "5b44d22286f774172b0c9de8": 104, - "5c0e655586f774045612eeb2": 30, - "5fd4c474dd870108a754b241": 16, - "609e8540d5c319764c2bc2e9": 63, - "63737f448b28897f2802b874": 24, - "64abd93857958b4249003418": 38, - "64be79c487d1510151095552": 58 - }, - "Backpack": { - "5ca20d5986f774331e7c9602": 268, - "5e9dcf5986f7746c417435b3": 241, - "5f5e467b0bc58666c37e7821": 65, - "6034d103ca006d2dca39b3f0": 77, - "6034d2d697633951dc245ea6": 46, - "6038d614d10cbf667352dd44": 59, - "60a272cc93ef783291411d8e": 62, - "60a2828e8689911a226117f9": 105, - "639346cc1c8f182ad90c8972": 26, - "656f198fb27298d6fd005466": 82 - }, - "Earpiece": { - "5645bcc04bdc2d363b8b4572": 262, - "5aa2ba71e5b5b000137b758f": 266, - "5b432b965acfc47a8774094e": 246, - "5f60cd6cf2bcbb675b00dac6": 138, - "6033fa48ffd42c541047f728": 169, - "628e4e576d783146b124c64d": 30 - }, - "Eyewear": { - "557ff21e4bdc2d89578b4586": 507, - "59e770b986f7742cbd762754": 570, - "5b432be65acfc433000ed01f": 266, - "603409c80ca681766b6a0fb2": 214, - "62a61c988ec41a51b34758d5": 66 - }, - "FaceCover": { - "572b7fa524597762b747ce82": 171, - "59e7715586f7742ee5789605": 255, - "5ab8f4ff86f77431c60d91ba": 199, - "5ab8f85d86f7745cd93a1cf5": 135, - "5b4325355acfc40019478126": 126, - "5b432c305acfc40019478128": 25, - "5b432f3d5acfc4704b4a1dfb": 332, - "5bd073a586f7747e6f135799": 25, - "60363c0c92ec1c31037959f5": 25 - }, - "FirstPrimaryWeapon": { - "5447a9cd4bdc2dbd208b4567": 69, - "54491c4f4bdc2db1078b4568": 133, - "574d967124597745970e7c94": 94, - "576165642459773c7a400233": 56, - "57c44b372459772d2b39b8ce": 5, - "57d14d2524597714373db789": 156, - "57dc2fa62459775949412633": 113, - "583990e32459771419544dd2": 190, - "58948c8e86f77409493f7266": 110, - "5926bb2186f7744b1c6c6e60": 225, - "5a7828548dc32e5a9c28b516": 170, - "5ac4cd105acfc40016339859": 41, - "5ac66d725acfc43b321d4b60": 127, - "5ac66d9b5acfc4001633997a": 117, - "5b0bbe4e5acfc40dc528a72d": 18, - "5bb2475ed4351e00853264e3": 32, - "5bd70322209c4d00d7167b8f": 13, - "5c488a752e221602b412af63": 17, - "5cc82d76e24e8d00134b4b83": 11, - "5d43021ca4b9362eab4b5e25": 10, - "5df8ce05b11454561e39243b": 21, - "5f2a9575926fd9352339381f": 52, - "5fbcc1d9016cce60e8341ab3": 21, - "5fc3f2d5900b1d5091531e57": 23, - "60339954d62c9b14ed777c06": 44, - "606587252535c57a13424cfd": 20, - "623063e994fc3f7b302a9696": 44, - "6259b864ebedf17603599e88": 1, - "63171672192e68c5460cebc5": 27, - "644674a13d52156624001fbc": 32, - "645e0c6b3b381ede770e1cc9": 42, - "6499849fc93611967b034949": 34 - }, - "Headwear": { - "5645bc214bdc2d363b8b4571": 30, - "5aa2a7e8e5b5b00016327c16": 133, - "5aa2b87de5b5b00016327c25": 126, - "5aa2b8d7e5b5b00014028f4a": 133, - "5aa2ba19e5b5b00014028f4e": 165, - "5b40e1525acfc4771e1c6611": 56, - "5b40e2bc5acfc40016388216": 74, - "5b40e3f35acfc40016388218": 76, - "5b40e5e25acfc4001a599bea": 154, - "5b40e61f5acfc4001a599bec": 136, - "5b432d215acfc4771e1c6624": 174, - "5e4bfc1586f774264f7582d3": 62, - "5ea17ca01412a1425304d1c0": 17, - "5f60b34a41e30a4ab12a6947": 16, - "603618feffd42c541047f771": 121, - "60361b5a9a15b10d96792291": 93, - "6040de02647ad86262233012": 115, - "61bca7cda0eae612383adf57": 85, - "65709d2d21b9f815e208ff95": 42, - "65719f0775149d62ce0a670b": 44 - }, - "Holster": { - "56d59856d2720bd8418b456a": 64, - "5d3eb3b0a4b93615055e84d2": 14, - "5f36a0e5fbf956000b716b65": 1846, - "602a9740da11d6478d5a06dc": 37, - "6193a720f8ee7e52e42109ed": 73, - "63088377b5cd696784087147": 34 - }, - "Pockets": { - "557ffd194bdc2d28148b457f": 1 - }, - "Scabbard": {}, - "SecondPrimaryWeapon": {}, - "SecuredContainer": { - "5c0a794586f77461c458f892": 1 - }, - "TacticalVest": { - "544a5caa4bdc2d1a388b4568": 99, - "5929a2a086f7744f4b234d43": 224, - "5e9db13186f7742f845ee9d3": 136, - "5f5f41f56760b4138443b352": 87, - "5fd4c60f875c30179f5d04c2": 121, - "60a3c68c37ea821725773ef5": 16, - "60a621c49c197e4e8c4455e6": 241, - "61bc85697113f767765c7fe7": 74, - "61bcc89aef0f505f0c6cd0fc": 50, - "628d0618d1ba6e4fa07ce5a4": 10, - "639343fce101f4caa40a4ef3": 9, - "64a536392d2c4e6e970f4121": 708, - "64a5366719bab53bd203bf33": 293 - } - }, - "items": { - "Backpack": { - "544fb37f4bdc2dee738b4567": 99, - "557ff21e4bdc2d89578b4586": 2, - "558022b54bdc2dac148b458d": 1, - "558032614bdc2de7118b4585": 1, - "55d35ee94bdc2d61338b4568": 1, - "55d480c04bdc2d1d4e8b456a": 1, - "55d614004bdc2d86028b4568": 1, - "5645bc214bdc2d363b8b4571": 1, - "5648a7494bdc2d9d488b4583": 7, - "5649ae4a4bdc2d1b2b8b4588": 1, - "5649d9a14bdc2d79388b4580": 1, - "56ea8222d2720b69698b4567": 1, - "572b7d8524597762b472f9d1": 3, - "572b7f1624597762ae139822": 1, - "572b7fa124597762b472f9d2": 1, - "572b7fa524597762b747ce82": 3, - "573474f924597738002c6174": 14, - "5734758f24597738025ee253": 3, - "573478bc24597738002c6175": 8, - "57a3459f245977764a01f703": 1, - "57aca93d2459771f2c7e26db": 1, - "57c9a89124597704ee6faec1": 1, - "57cff947245977638e6f2a19": 1, - "584984812459776a704a82a6": 1, - "587e0531245977466077a0f7": 1, - "588226ef24597767af46e39c": 1, - "590de71386f774347051a052": 4, - "590de7e986f7741b096e5f32": 4, - "593d490386f7745ee97a1555": 1, - "59db3acc86f7742a2c4ab912": 1, - "59e0bdb186f774156f04ce82": 1, - "59e0bed186f774156f04ce84": 1, - "59e3639286f7741777737013": 3, - "59e3647686f774176a362507": 1, - "59e3658a86f7741776641ac4": 2, - "59e7635f86f7742cbf2c1095": 3, - "59e7708286f7742cbd762753": 1, - "59e770f986f7742cbe3164ef": 1, - "59e7715586f7742ee5789605": 2, - "59ecc3dd86f7746dc827481c": 1, - "59faf7ca86f7740dbe19f6c2": 3, - "5a16ba61fcdbcb098008728a": 4, - "5a16badafcdbcb001865f72d": 2, - "5a34f7f1c4a2826c6e06d75d": 1, - "5a34fae7c4a2826c6e06d760": 1, - "5a7033908dc32e000a311392": 1, - "5a787f25c5856700186c4ab9": 1, - "5a7c4850e899ef00150be885": 3, - "5a7c74b3e899ef0014332c29": 1, - "5a800961159bd4315e3a1657": 1, - "5aa2a7e8e5b5b00016327c16": 1, - "5aa2b87de5b5b00016327c25": 6, - "5aa2b8d7e5b5b00014028f4a": 2, - "5aa2b9aee5b5b00015693121": 1, - "5aa2ba46e5b5b000137b758d": 1, - "5aa7cfc0e5b5b00015693143": 1, - "5aaf8a0be5b5b00015693243": 1, - "5ab372a310e891001717f0d8": 1, - "5ab8e4ed86f7742d8e50c7fa": 7, - "5ab8f85d86f7745cd93a1cf5": 1, - "5ac4c50d5acfc40019262e87": 1, - "5addbba15acfc400185c2854": 1, - "5addbfbb5acfc400194dbcf7": 1, - "5b3b6dc75acfc47a8773fb1e": 1, - "5b40e2bc5acfc40016388216": 3, - "5b4325355acfc40019478126": 1, - "5b43271c5acfc432ff4dce65": 3, - "5b4327aa5acfc400175496e0": 3, - "5b4329075acfc400153b78ff": 2, - "5b432be65acfc433000ed01f": 2, - "5b44d22286f774172b0c9de8": 1, - "5b7be1ca5acfc400170e2d2f": 1, - "5b7bef9c5acfc43d102852ec": 1, - "5b7d693d5acfc43bca706a3d": 1, - "5bc9bc53d4351e00367fbcee": 3, - "5bd06f5d86f77427101ad47c": 1, - "5bd073a586f7747e6f135799": 1, - "5c066ef40db834001966a595": 3, - "5c0e51be86f774598e797894": 1, - "5c0e530286f7747fa1419862": 1, - "5c0e531286f7747fa54205c2": 3, - "5c0e531d86f7747fa23f4d42": 2, - "5c0e533786f7747fa23f4d47": 1, - "5c0e534186f7747fa1419867": 1, - "5c0e53c886f7747fa54205c7": 2, - "5c0e57ba86f7747fa141986d": 3, - "5c1267ee86f77416ec610f72": 1, - "5c17664f2e2216398b5a7e3c": 1, - "5c1793902e221602b21d3de2": 3, - "5c1a1cc52e221602b3136e3d": 3, - "5c503ad32e2216398b5aada2": 1, - "5c5db6652e221600113fba51": 1, - "5c6d710d2e22165df16b81e7": 1, - "5c9a1c422e221600106f69f0": 1, - "5caf17c9ae92150b30006be1": 1, - "5ce69cbad7f00c00b61c5098": 1, - "5cf12a15d7f00c05464b293f": 1, - "5cff9e84d7ad1a049e54ed55": 1, - "5d0a3e8cd7ad1a6f6a3d35bd": 1, - "5d1340cad7ad1a0b0b249869": 1, - "5d235a5986f77443f6329bc6": 5, - "5d235b4d86f7742e017bc88a": 6, - "5d25a4a98abbc30b917421a4": 1, - "5d5e7d28a4b936645d161203": 1, - "5d5fca1ea4b93635fd598c07": 1, - "5d6d2e22a4b9361bd5780d05": 1, - "5d6d3943a4b9360dbc46d0cc": 1, - "5df8a2ca86f7740bfe6df777": 1, - "5df8a6a186f77412640e2e80": 26, - "5df8a72c86f77412640e2e83": 7, - "5df8a77486f77412672a1e3f": 9, - "5df916dfbb49d91fb446d6b9": 1, - "5dfa397fb11454561e39246c": 1, - "5dfe14f30b92095fd441edaf": 1, - "5e01ef6886f77445f643baa4": 1, - "5e01f31d86f77465cf261343": 1, - "5e54f62086f774219b0f1937": 4, - "5ea05cf85ad9772e6624305d": 1, - "5ed515c8d380ab312177c0fa": 3, - "5ed515e03a40a50460332579": 2, - "5ed515ece452db0eb56fc028": 2, - "5ed5160a87bb8443d10680b5": 5, - "5ef366938cef260c0642acad": 3, - "5ef61964ec7f42238c31e0c1": 1, - "5f60b85bbdb8e27dee3dc985": 1, - "5f60e7788adaa7100c3adb49": 1, - "5f60e784f2bcbb675b00dac7": 1, - "5f745ee30acaeb0d490d8c5b": 2, - "5fb6564947ce63734e3fa1da": 1, - "5fca138c2a7b221b2852a5c6": 1, - "5fca13ca637ee0341a484f46": 4, - "603618feffd42c541047f771": 1, - "60361a7497633951dc245eb4": 2, - "60361b0b5a45383c122086a1": 1, - "60361b5a9a15b10d96792291": 1, - "60363c0c92ec1c31037959f5": 1, - "606587d11246154cad35d635": 1, - "606f263a8900dc2d9a55b68d": 1, - "607ffb988900dc2d9a55b6e4": 1, - "609e8540d5c319764c2bc2e9": 2, - "60b52e5bc7d8103275739d67": 3, - "60bf74184a63fc79b60c57f6": 1, - "61840d85568c120fdd2962a5": 1, - "6193dcd0f8ee7e52e4210a28": 1, - "619b5db699fb192e7430664f": 1, - "61bca7cda0eae612383adf57": 1, - "61c18d83b00456371a66814b": 1, - "61c18db6dfd64163ea78fbb4": 1, - "62307b7b10d2321fa8741921": 1, - "626667e87379c44d557b7550": 1, - "6269220d70b6c02e665f2635": 1, - "6269545d0e57f218e4548ca2": 1, - "627254cc9c563e6e442c398f": 1, - "628a66b41d5e41750e314f34": 1, - "62a091170b9d3c46de5b6cf2": 1, - "62a09cfe4f842e1bd12da3e4": 5, - "62a09d79de7ac81993580530": 1, - "62a61c988ec41a51b34758d5": 2, - "62e7c98b550c8218d602cbb4": 1, - "637b612fb7afa97bfc3d7005": 1, - "637b6179104668754b72f8f5": 5, - "637b620db7afa97bfc3d7009": 2, - "637b6251104668754b72f8f9": 1, - "640b20359ab20e15ee445fa9": 1, - "6450ec2e7da7133e5a09ca96": 1, - "647de824196bf69818044c93": 1, - "6494094948796d891603e59f": 1, - "64abd93857958b4249003418": 2, - "64afd81707e2cf40e903a316": 1, - "64b9e2037fdfb81df81e3c25": 1, - "65169d5b30425317755f8e25": 1, - "65293c38fc460e50a509cb25": 1, - "654a4dea7c17dec2f50cc86a": 1, - "655dccfdbdcc6b5df71382b6": 1, - "656f57dc27aed95beb08f628": 1, - "656f603f94b480b8a500c0d6": 1, - "656f9fa0498d1b7e3e071d98": 1, - "656fae5f7c2d57afe200c0d7": 1 - }, - "Pockets": { - "5448c1d04bdc2dff2f8b4569": 26, - "560d5e524bdc2d25448b4571": 221, - "56d59948d2720bb7418b4582": 158, - "5710c24ad2720bc3458b45a3": 2240, - "5c0d591486f7744c505b416f": 305, - "5d3eb5eca4b9363b1f22f8e4": 32, - "5d6e6869a4b9361c140bcfde": 1, - "5d6e68c4a4b9361b93413f79": 9, - "5d6e6911a4b9361bd5780d52": 83, - "5df8f535bb49d91fb446d6b0": 50, - "5e32f56fcb6d5863cc5e5ee4": 464, - "5f3e77b26cda304dcc634057": 4540, - "602286df23506e50807090c6": 94, - "6193d3149fb0c665d5490e32": 181, - "63076701a987397c0816d21b": 77 - }, - "SecuredContainer": { - "54527a984bdc2d4e668b4567": 401, - "54527ac44bdc2d36668b4567": 51, - "560d5e524bdc2d25448b4571": 1101, - "5656d7c34bdc2d9d198b4587": 991, - "56d59d3ad2720bdb418b4577": 391, - "56dfef82d2720bbd668b4567": 411, - "56dff026d2720bb8668b4567": 171, - "56dff061d2720bb5668b4567": 681, - "56dff2ced2720bb4668b4567": 141, - "56dff3afd2720bba668b4567": 3341, - "56dff4a2d2720bbd668b456a": 131, - "5710c24ad2720bc3458b45a3": 62, - "573719df2459775a626ccbc2": 751, - "5737218f245977612125ba51": 851, - "57a0dfb82459774d3078b56c": 281, - "57a0e5022459774d1673f889": 221, - "58dd3ad986f77403051cba8f": 31, - "59e0d99486f7744a32234762": 11, - "59e4cf5286f7741778269d8a": 411, - "59e68f6f86f7746c9f75e846": 91, - "59e6906286f7746c9f75e847": 711, - "59e690b686f7746c9f75e848": 11, - "59e6920f86f77411d82aa167": 191, - "5a3c16fe86f77452b62de32a": 1541, - "5a608bf24f39f98ffc77720e": 41, - "5ba2678ad4351e44f824b344": 121, - "5c0d56a986f774449d5de529": 681, - "5c0d591486f7744c505b416f": 2081, - "5c0d5ae286f7741e46554302": 561, - "5c0d5e4486f77478390952fe": 131, - "5c0d668f86f7747ccb7f13b2": 51, - "5c3df7d588a4501f290594e5": 471, - "5c925fa22e221601da359b7b": 11, - "5cc80f67e4a949035e43bbba": 1, - "5cc80f8fe4a949033b0224a2": 181, - "5cc86840d7f00c002412c56c": 41, - "5d6e6869a4b9361c140bcfde": 1, - "5d6e68a8a4b9360b6c0d54e2": 11, - "5d6e68c4a4b9361b93413f79": 51, - "5d6e6911a4b9361bd5780d52": 411, - "5e023e53d4353e3302577c4c": 771, - "5e023e88277cce2b522ff2b1": 41, - "5e81f423763d9f754677bf2e": 19311, - "5efb0e16aeb21837e749c7ff": 481, - "5fbe3ffdf8b6a877a729ea82": 211, - "61962d879bb3d20b0946d385": 141, - "64b7af434b75259c590fa893": 201, - "64b7af5a8532cf95ee0a0dbd": 811, - "64b7bbb74b75259c590fa897": 1881, - "6576f96220d53a5b8f3e395e": 71 - }, - "SpecialLoot": {}, - "TacticalVest": { - "544a37c44bdc2d25388b4567": 65, - "55d480c04bdc2d1d4e8b456a": 364, - "55d482194bdc2d1d4e8b456b": 229, - "56d59948d2720bb7418b4582": 4, - "57616a9e2459773c7a400234": 137, - "57d1519e24597714373db79d": 385, - "5894a05586f774094708ef75": 268, - "5926c3b286f774640d189b6b": 283, - "59c1383d86f774290a37e0ca": 18, - "59d6272486f77466146386ff": 177, - "59fafc5086f7740dbe19f6c3": 51, - "5a351711c4a282000b1521a4": 300, - "5a718f958dc32e00094b97e7": 161, - "5a9e81fba2750c00164f6b11": 11, - "5aaa4194e5b5b055d06310a5": 256, - "5aaa5dfee5b5b000140293d3": 78, - "5ac66bea5acfc43b321d4aec": 38, - "5b7bef5d5acfc43bca7067a3": 127, - "5b7bef9c5acfc43d102852ec": 38, - "5ba2657ed4351e0035628ff2": 30, - "5bed61680db834001d2c45ab": 58, - "5c05413a0db834001c390617": 77, - "5c5970672e221602b21d7855": 187, - "5c6d46132e221601da357d56": 42, - "5cc70093e4a949033c734312": 27, - "5d1340b3d7ad1a0b52682ed7": 58, - "5f3e77b26cda304dcc634057": 161, - "60098ad7c2240c0fe85c570a": 2033, - "602286df23506e50807090c6": 4, - "6193d3149fb0c665d5490e32": 7, - "62307b7b10d2321fa8741921": 107, - "62e7c98b550c8218d602cbb4": 66, - "63076701a987397c0816d21b": 3, - "6450ec2e7da7133e5a09ca96": 180, - "64b9cf0ac12b9c38db26923a": 103, - "64b9e265c94d0d15c5027e35": 257 - } - }, - "mods": { - "5447a9cd4bdc2dbd208b4567": { - "mod_charge": [ - "5ea16d4d5aad6446a939753d", - "55d44fd14bdc2d962f8b456e" - ], - "mod_magazine": [ - "5448c1d04bdc2dff2f8b4569", - "544a37c44bdc2d25388b4567", - "5d1340b3d7ad1a0b52682ed7", - "59c1383d86f774290a37e0ca" - ], - "mod_pistol_grip": [ - "571659bb2459771fb2755a12", - "55d4b9964bdc2d1d4e8b456e", - "5d15cf3bd7ad1a67e71518b2" - ], - "mod_reciever": [ - "55d355e64bdc2d962f8b4569" - ], - "mod_stock": [ - "5649be884bdc2d79388b4577" - ] - }, - "54491c4f4bdc2db1078b4568": { - "mod_barrel": [ - "55d4491a4bdc2d882f8b456e" - ], - "mod_handguard": [ - "55d45f484bdc2d972f8b456d" - ], - "mod_magazine": [ - "55d485804bdc2d8c2f8b456b", - "56deee15d2720bee328b4567" - ], - "mod_stock": [ - "5bfe7fb30db8340018089fed" - ] - }, - "544a5caa4bdc2d1a388b4568": { - "Back_plate": [ - "656f9fa0498d1b7e3e071d98" - ], - "Front_plate": [ - "656f9fa0498d1b7e3e071d98" - ], - "Groin": [ - "6570e90b3a5689d85f08db97" - ], - "Soft_armor_back": [ - "6570e87c23c1f638ef0b0ee2" - ], - "Soft_armor_front": [ - "6570e83223c1f638ef0b0ede" - ] - }, - "55d355e64bdc2d962f8b4569": { - "mod_barrel": [ - "55d3632e4bdc2d972f8b4569", - "55d35ee94bdc2d61338b4568" - ], - "mod_handguard": [ - "5ea16ada09aa976f2e7a51be", - "55d459824bdc2d892f8b4573", - "5ea16acdfadf1d18c87b0784" - ], - "mod_scope": [ - "5c0a2cec0db834001b7ce47d", - "5c064c400db834001d23f468", - "5c7d55f52e221644f31bff6a" - ], - "mod_sight_rear": [ - "5c1780312e221602b66cc189", - "5c18b9192e2216398b5a8104" - ] - }, - "55d35ee94bdc2d61338b4568": { - "mod_gas_block": [ - "5ae30e795acfc408fb139a0b", - "5d00ec68d7ad1a04a067e5be" - ], - "mod_muzzle": [ - "544a38634bdc2d58388b4568", - "5ea172e498dacb342978818e" - ] - }, - "55d3632e4bdc2d972f8b4569": { - "mod_gas_block": [ - "56eabcd4d2720b66698b4574" - ], - "mod_muzzle": [ - "5ea172e498dacb342978818e" - ] - }, - "55d459824bdc2d892f8b4573": { - "mod_handguard": [ - "637f57b78d137b27f70c496a" - ], - "mod_tactical_2": [ - "57d17e212459775a1179a0f5" - ] - }, - "5645bc214bdc2d363b8b4571": { - "Helmet_back": [ - "657baeaacfcf63c951052db3" - ], - "Helmet_ears": [ - "657baecbc6f689d3a205b863" - ], - "Helmet_top": [ - "657bae18b7e9ca9a02045c0a" - ], - "mod_equipment": [ - "5b46238386f7741a693bcf9c" - ] - }, - "5648a7494bdc2d9d488b4583": { - "Soft_armor_back": [ - "65703fa06584602f7d057a8e" - ], - "Soft_armor_front": [ - "65703d866584602f7d057a8a" - ], - "Soft_armor_left": [ - "65703fe46a912c8b5c03468b" - ], - "soft_armor_right": [ - "657040374e67e8ec7a0d261c" - ] - }, - "5648ae314bdc2d3d1c8b457f": { - "mod_foregrip": [ - "558032614bdc2de7118b4585" - ], - "mod_scope": [ - "57ae0171245977343c27bfcf" - ], - "mod_tactical_001": [ - "57d17e212459775a1179a0f5" - ] - }, - "5649be884bdc2d79388b4577": { - "mod_stock_000": [ - "5ae30c9a5acfc408fb139a03", - "56eabf3bd2720b75698b4569", - "5d135ecbd7ad1a21c176542e", - "5947c73886f7747701588af5", - "5d4406a8a4b9361e4f6eb8b7" - ] - }, - "56d59856d2720bd8418b456a": { - "mod_barrel": [ - "56d5a1f7d2720bb3418b456a" - ], - "mod_magazine": [ - "56d59948d2720bb7418b4582" - ], - "mod_pistol_grip": [ - "56d5a2bbd2720bb8418b456a" - ], - "mod_reciever": [ - "56d5a407d2720bb3418b456b" - ] - }, - "56d5a407d2720bb3418b456b": { - "mod_sight_front": [ - "56d5a661d2720bd8418b456b" - ], - "mod_sight_rear": [ - "56d5a77ed2720b90418b4568" - ] - }, - "56eabf3bd2720b75698b4569": { - "mod_stock": [ - "58d2912286f7744e27117493" - ] - }, - "574d967124597745970e7c94": { - "mod_barrel": [ - "634f02331f9f536910079b51" - ], - "mod_magazine": [ - "5c5970672e221602b21d7855" - ], - "mod_reciever": [ - "634f05ca517ccc8a960fc748" - ], - "mod_stock": [ - "5d0236dad7ad1a0940739d29" - ], - "patron_in_weapon": [ - "59e4cf5286f7741778269d8a", - "64b7af5a8532cf95ee0a0dbd", - "5656d7c34bdc2d9d198b4587", - "59e0d99486f7744a32234762" - ] - }, - "576165642459773c7a400233": { - "mod_handguard": [ - "5827272a24597748c74bdeea" - ], - "mod_magazine": [ - "5a966f51a2750c00156aacf6" - ], - "mod_muzzle": [ - "58272d7f2459774f6311ddfd" - ], - "mod_pistol_grip": [ - "5947f92f86f77427344a76b1" - ], - "mod_reciever": [ - "57616c112459773cce774d66" - ], - "mod_stock": [ - "5beec8b20db834001961942a" - ], - "patron_in_weapon": [ - "5c0d591486f7744c505b416f", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68c4a4b9361b93413f79" - ] - }, - "57838c962459774a1651ec63": { - "mod_mount_000": [ - "59eb7ebe86f7740b373438ce" - ], - "mod_sight_rear": [ - "57c44e7b2459772d28133248" - ] - }, - "57a3459f245977764a01f703": { - "mod_tactical": [ - "646f6322f43d0c5d62063715" - ] - }, - "57c44b372459772d2b39b8ce": { - "mod_charge": [ - "5648ac824bdc2ded0b8b457d" - ], - "mod_magazine": [ - "5a9e81fba2750c00164f6b11" - ], - "mod_mount_004": [ - "5c61a40d2e2216001403158d" - ], - "mod_muzzle": [ - "57c44dd02459772d2e0ae249", - "57838c962459774a1651ec63" - ], - "mod_pistol_grip": [ - "57c44fa82459772d2d75e415" - ], - "mod_reciever": [ - "57c44f4f2459772d2c627113" - ], - "mod_stock": [ - "57c450252459772d28133253" - ] - }, - "57c44dd02459772d2e0ae249": { - "mod_mount_000": [ - "59eb7ebe86f7740b373438ce" - ], - "mod_sight_rear": [ - "57c44e7b2459772d28133248" - ] - }, - "57cff947245977638e6f2a19": { - "mod_mount_000": [ - "5b7be47f5acfc400170e2dd2" - ] - }, - "57d14d2524597714373db789": { - "mod_magazine": [ - "57d1519e24597714373db79d" - ], - "mod_mount": [ - "57ee59b42459771c7b045da5" - ], - "mod_pistol_grip": [ - "57d152ec245977144076ccdf" - ] - }, - "57d17e212459775a1179a0f5": { - "mod_flashlight": [ - "57d17c5e2459775a5c57d17d", - "59d790f486f77403cb06aec6" - ] - }, - "57dc2fa62459775949412633": { - "mod_gas_block": [ - "59d36a0086f7747e673f3946" - ], - "mod_magazine": [ - "564ca9df4bdc2d35148b4569", - "55d481904bdc2d8c2f8b456a" - ], - "mod_muzzle": [ - "593d493f86f7745e6b2ceb22" - ], - "mod_pistol_grip": [ - "59e6318286f77444dd62c4cc" - ], - "mod_reciever": [ - "57dc334d245977597164366f" - ], - "mod_stock": [ - "57dc347d245977596754e7a1" - ] - }, - "57dc334d245977597164366f": { - "mod_mount_000": [ - "57ffb0062459777a045af529" - ] - }, - "57dc347d245977596754e7a1": { - "mod_stock": [ - "5a0c59791526d8dba737bba7" - ] - }, - "57ee59b42459771c7b045da5": { - "mod_scope": [ - "57ae0171245977343c27bfcf" - ], - "mod_tactical": [ - "5a5f1ce64f39f90b401987bc" - ] - }, - "57ffa9f4245977728561e844": { - "mod_tactical_001": [ - "57d17e212459775a1179a0f5" - ] - }, - "57ffb0062459777a045af529": { - "mod_scope": [ - "584984812459776a704a82a6" - ] - }, - "5827272a24597748c74bdeea": { - "mod_scope": [ - "584984812459776a704a82a6" - ], - "mod_tactical_001": [ - "5b3a337e5acfc4704b4a19a0", - "644a3df63b0b6f03e101e065" - ] - }, - "583990e32459771419544dd2": { - "mod_gas_block": [ - "59d36a0086f7747e673f3946" - ], - "mod_magazine": [ - "55d482194bdc2d1d4e8b456b", - "64b9e265c94d0d15c5027e35", - "5aaa4194e5b5b055d06310a5" - ], - "mod_muzzle": [ - "57dc324a24597759501edc20" - ], - "mod_pistol_grip": [ - "5947f92f86f77427344a76b1" - ], - "mod_reciever": [ - "57dc334d245977597164366f" - ], - "mod_stock": [ - "57dc347d245977596754e7a1" - ] - }, - "58948c8e86f77409493f7266": { - "mod_charge": [ - "58949edd86f77409483e16a9" - ], - "mod_magazine": [ - "5894a05586f774094708ef75" - ], - "mod_pistol_grip": [ - "5894a51286f77426d13baf02" - ], - "mod_reciever": [ - "5894a5b586f77426d2590767" - ], - "mod_stock": [ - "5894a13e86f7742405482982" - ] - }, - "5894a42086f77426d2590762": { - "mod_mount_001": [ - "58a5c12e86f7745d585a2b9e" - ] - }, - "5894a5b586f77426d2590767": { - "mod_barrel": [ - "58aeaaa886f7744fc1560f81" - ], - "mod_handguard": [ - "5894a42086f77426d2590762" - ], - "mod_scope": [ - "5b31163c5acfc400153b71cb" - ] - }, - "58a5c12e86f7745d585a2b9e": { - "mod_foregrip": [ - "588226d124597767ad33f787" - ] - }, - "58aeaaa886f7744fc1560f81": { - "mod_muzzle": [ - "58aeac1b86f77457c419f475" - ] - }, - "58d39d3d86f77445bb794ae7": { - "mod_scope": [ - "58d399e486f77442e0016fe7" - ] - }, - "591ee00d86f774592f7b841e": { - "mod_scope": [ - "5c0517910db83400232ffee5" - ] - }, - "5926bb2186f7744b1c6c6e60": { - "mod_charge": [ - "5926c32286f774616e42de99" - ], - "mod_magazine": [ - "5a351711c4a282000b1521a4", - "5926c3b286f774640d189b6b" - ], - "mod_reciever": [ - "5926c0df86f77462f647f764" - ] - }, - "5926c0df86f77462f647f764": { - "mod_handguard": [ - "5926c36d86f77467a92a8629", - "5a9548c9159bd400133e97b3" - ], - "mod_mount": [ - "5926dad986f7741f82604363" - ], - "mod_muzzle": [ - "5c0000c00db834001a6697fc", - "5926e16e86f7742f5a0f7ecb" - ], - "mod_sight_rear": [ - "5926d2be86f774134d668e4e" - ], - "mod_stock": [ - "5926d3c686f77410de68ebc8", - "5c07c9660db834001a66b588" - ] - }, - "5926dad986f7741f82604363": { - "mod_scope": [ - "58d39d3d86f77445bb794ae7" - ] - }, - "59c6633186f7740cf0493bb9": { - "mod_handguard": [ - "5648ae314bdc2d3d1c8b457f", - "57cff947245977638e6f2a19", - "5648b4534bdc2d3d1c8b4580" - ] - }, - "59d36a0086f7747e673f3946": { - "mod_handguard": [ - "57ffa9f4245977728561e844", - "57dc32dc245977596d4ef3d3" - ] - }, - "59e7635f86f7742cbf2c1095": { - "Soft_armor_back": [ - "65702fe593b7ea9c330f4ce8" - ], - "Soft_armor_front": [ - "65702f87722744627e05cdb8" - ], - "Soft_armor_left": [ - "6570305d93b7ea9c330f4ced" - ], - "soft_armor_right": [ - "65703472c9030b928a0a8a78" - ] - }, - "59eb7ebe86f7740b373438ce": { - "mod_foregrip": [ - "5cf4fb76d7f00c065703d3ac" - ] - }, - "5a16b8a9fcdbcb00165aa6ca": { - "mod_nvg": [ - "5c0695860db834001b735461" - ] - }, - "5a33b652c4a28232996e407c": { - "mod_scope": [ - "5a32aa8bc4a2826c6e06d737" - ] - }, - "5a7828548dc32e5a9c28b516": { - "mod_barrel": [ - "5a787f7ac5856700177af660" - ], - "mod_handguard": [ - "5a788068c5856700137e4c8f" - ], - "mod_magazine": [ - "5a78830bc5856700137e4c90", - "5a7882dcc5856700177af662" - ], - "mod_mount": [ - "5a78948ec5856700177b1124" - ], - "mod_stock": [ - "5bfe86a20db834001d23e8f7" - ] - }, - "5a788068c5856700137e4c8f": { - "mod_mount_001": [ - "5b7be47f5acfc400170e2dd2" - ] - }, - "5a7c4850e899ef00150be885": { - "Helmet_back": [ - "657bab6ec6f689d3a205b85f" - ], - "Helmet_ears": [ - "657babc6f58ba5a6250107a2" - ], - "Helmet_top": [ - "657baaf0b7e9ca9a02045c02" - ] - }, - "5a9548c9159bd400133e97b3": { - "mod_tactical_000": [ - "5a7b483fe899ef0016170d15" - ] - }, - "5aa7cfc0e5b5b00015693143": { - "Helmet_back": [ - "657bab6ec6f689d3a205b85f" - ], - "Helmet_ears": [ - "657babc6f58ba5a6250107a2" - ], - "Helmet_top": [ - "657baaf0b7e9ca9a02045c02" - ] - }, - "5ab8e4ed86f7742d8e50c7fa": { - "Soft_armor_back": [ - "657045741bd9beedc40b7299" - ], - "Soft_armor_front": [ - "657044e971369562b300ce9b" - ], - "Soft_armor_left": [ - "657045b97e80617cee095bda" - ], - "soft_armor_right": [ - "6570460471369562b300ce9f" - ] - }, - "5ac4cd105acfc40016339859": { - "mod_charge": [ - "5648ac824bdc2ded0b8b457d" - ], - "mod_gas_block": [ - "59c6633186f7740cf0493bb9" - ], - "mod_magazine": [ - "55d480c04bdc2d1d4e8b456a", - "5bed625c0db834001c062946" - ], - "mod_muzzle": [ - "5649ab884bdc2ded0b8b457f" - ], - "mod_pistol_grip": [ - "5649ae4a4bdc2d1b2b8b4588" - ], - "mod_reciever": [ - "5649af884bdc2d1b2b8b4589" - ], - "mod_sight_rear": [ - "5ac72e475acfc400180ae6fe" - ], - "mod_stock": [ - "5ac78eaf5acfc4001926317a" - ] - }, - "5ac50c185acfc400163398d4": { - "mod_stock": [ - "5a0c59791526d8dba737bba7" - ] - }, - "5ac66d725acfc43b321d4b60": { - "mod_gas_block": [ - "59c6633186f7740cf0493bb9" - ], - "mod_magazine": [ - "59d6272486f77466146386ff", - "5ac66bea5acfc43b321d4aec", - "64b9cf0ac12b9c38db26923a" - ], - "mod_mount_000": [ - "591ee00d86f774592f7b841e", - "63d114019e35b334d82302f7" - ], - "mod_muzzle": [ - "5a9fbacda2750c00141e080f" - ], - "mod_pistol_grip": [ - "5649ade84bdc2d1b2b8b4587" - ], - "mod_reciever": [ - "5649af094bdc2df8348b4586", - "5ac50da15acfc4001718d287" - ], - "mod_sight_rear": [ - "5ac733a45acfc400192630e2" - ], - "mod_stock": [ - "5ac50c185acfc400163398d4" - ] - }, - "5ac66d9b5acfc4001633997a": { - "mod_gas_block": [ - "59c6633186f7740cf0493bb9" - ], - "mod_magazine": [ - "55d482194bdc2d1d4e8b456b", - "64b9e265c94d0d15c5027e35", - "55d480c04bdc2d1d4e8b456a" - ], - "mod_muzzle": [ - "5ac72e945acfc43f3b691116" - ], - "mod_pistol_grip": [ - "5649ade84bdc2d1b2b8b4587" - ], - "mod_reciever": [ - "5ac50da15acfc4001718d287" - ], - "mod_sight_rear": [ - "5ac733a45acfc400192630e2" - ], - "mod_stock": [ - "5ac50c185acfc400163398d4" - ] - }, - "5ac78eaf5acfc4001926317a": { - "mod_stock": [ - "59ecc3dd86f7746dc827481c" - ] - }, - "5b099a765acfc47a8607efe3": { - "mod_muzzle": [ - "5b7d693d5acfc43bca706a3d" - ] - }, - "5b0bbe4e5acfc40dc528a72d": { - "mod_barrel": [ - "5b099a765acfc47a8607efe3" - ], - "mod_handguard": [ - "5b7bee755acfc400196d5383" - ], - "mod_magazine": [ - "5b7bef9c5acfc43d102852ec" - ], - "mod_pistol_grip": [ - "5b7d679f5acfc4001a5c4024" - ], - "mod_reciever": [ - "5b099bb25acfc400186331e8" - ], - "mod_sight_rear": [ - "5b0bc22d5acfc47a8607f085" - ], - "mod_stock": [ - "5b7d64555acfc4001876c8e2" - ] - }, - "5b31163c5acfc400153b71cb": { - "mod_scope": [ - "5b3116595acfc40019476364" - ] - }, - "5b40e1525acfc4771e1c6611": { - "Helmet_back": [ - "657112a4818110db4600aa66" - ], - "Helmet_ears": [ - "657112ce22996eaf110881fb" - ], - "Helmet_top": [ - "657112234269e9a568089eac" - ] - }, - "5b40e2bc5acfc40016388216": { - "Helmet_back": [ - "657112a4818110db4600aa66" - ], - "Helmet_ears": [ - "657112ce22996eaf110881fb" - ], - "Helmet_top": [ - "657112234269e9a568089eac" - ] - }, - "5b40e3f35acfc40016388218": { - "Helmet_back": [ - "657f9605f4c82973640b2358" - ], - "Helmet_top": [ - "657f95bff92cd718b701550c" - ] - }, - "5b432d215acfc4771e1c6624": { - "Helmet_back": [ - "657bb99db30eca976305117f" - ], - "Helmet_top": [ - "657bb92fa1c61ee0c303631f" - ], - "mod_nvg": [ - "5a16b8a9fcdbcb00165aa6ca" - ] - }, - "5b44cf1486f77431723e3d05": { - "Back_plate": [ - "656fa8d700d62bcd2e024084" - ], - "Collar": [ - "6575c3ec52b7f8c76a05ee39" - ], - "Front_plate": [ - "656fa8d700d62bcd2e024084" - ], - "Left_side_plate": [ - "6557458f83942d705f0c4962" - ], - "Right_side_plate": [ - "6557458f83942d705f0c4962" - ], - "Shoulder_l": [ - "6575c3fd52b7f8c76a05ee3d" - ], - "Shoulder_r": [ - "6575c40c52b7f8c76a05ee41" - ], - "Soft_armor_back": [ - "6575c3beefc786cd9101a5ed" - ], - "Soft_armor_front": [ - "6575c3b3dc9932aed601c5f4" - ], - "Soft_armor_left": [ - "6575c3cdc6700bd6b40e8a90" - ], - "soft_armor_right": [ - "6575c3dfdc9932aed601c5f8" - ] - }, - "5b44d0de86f774503d30cba8": { - "Back_plate": [ - "656fa8d700d62bcd2e024084" - ], - "Collar": [ - "6575c373dc9932aed601c5ec" - ], - "Front_plate": [ - "656fa8d700d62bcd2e024084" - ], - "Groin": [ - "6575c385dc9932aed601c5f0" - ], - "Groin_back": [ - "6575c390efc786cd9101a5e9" - ], - "Soft_armor_back": [ - "6575c34bc6700bd6b40e8a84" - ], - "Soft_armor_front": [ - "6575c342efc786cd9101a5e5" - ], - "Soft_armor_left": [ - "6575c35bc6700bd6b40e8a88" - ], - "soft_armor_right": [ - "6575c366c6700bd6b40e8a8c" - ] - }, - "5b44d22286f774172b0c9de8": { - "Back_plate": [ - "656f9d5900d62bcd2e02407c" - ], - "Collar": [ - "65705cea4916448ae1050897" - ], - "Front_plate": [ - "656f9d5900d62bcd2e02407c" - ], - "Soft_armor_back": [ - "65705c3c14f2ed6d7d0b7738" - ], - "Soft_armor_front": [ - "65704de13e7bba58ea0285c8" - ], - "Soft_armor_left": [ - "65705c777260e1139e091408" - ], - "soft_armor_right": [ - "65705cb314f2ed6d7d0b773c" - ] - }, - "5b7be46e5acfc400170e2dcf": { - "mod_foregrip": [ - "59fc48e086f77463b1118392" - ] - }, - "5b7be47f5acfc400170e2dd2": { - "mod_tactical": [ - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a" - ] - }, - "5b7bee755acfc400196d5383": { - "mod_mount_000": [ - "5b7be46e5acfc400170e2dcf" - ], - "mod_mount_001": [ - "5b7be4645acfc400170e2dcc" - ], - "mod_mount_002": [ - "5b7be4645acfc400170e2dcc" - ] - }, - "5bb20d53d4351e4502010a69": { - "mod_barrel": [ - "5bb20d92d4351e00853263eb" - ], - "mod_handguard": [ - "5bb20de5d4351e0035629e59" - ], - "mod_scope": [ - "5b30b0dc5acfc400153b7124", - "591c4efa86f7741030027726", - "5c0a2cec0db834001b7ce47d" - ] - }, - "5bb20d92d4351e00853263eb": { - "mod_gas_block": [ - "5bb20dcad4351e3bac1212da" - ], - "mod_muzzle": [ - "56ea6fafd2720b844b8b4593" - ] - }, - "5bb20de5d4351e0035629e59": { - "mod_foregrip": [ - "588226dd24597767ad33f789" - ] - }, - "5bb20e58d4351e00320205d7": { - "mod_stock_000": [ - "5bb20e70d4351e0035629f8f" - ] - }, - "5bb2475ed4351e00853264e3": { - "mod_charge": [ - "5bb20dbcd4351e44f824c04e" - ], - "mod_magazine": [ - "5c05413a0db834001c390617" - ], - "mod_pistol_grip": [ - "57af48872459771f0b2ebf11" - ], - "mod_reciever": [ - "5bb20d53d4351e4502010a69" - ], - "mod_stock": [ - "5bb20e58d4351e00320205d7" - ], - "patron_in_weapon": [ - "5c0d5ae286f7741e46554302", - "59e68f6f86f7746c9f75e846" - ] - }, - "5bd70322209c4d00d7167b8f": { - "mod_magazine": [ - "5ba2657ed4351e0035628ff2" - ], - "mod_muzzle": [ - "5ba26acdd4351e003562908e" - ], - "mod_scope": [ - "5d2da1e948f035477b1ce2ba" - ], - "mod_sight_front": [ - "5ba26b01d4351e0085325a51" - ], - "mod_sight_rear": [ - "5ba26b17d4351e00367f9bdd" - ], - "mod_stock": [ - "5bd704e7209c4d00d7167c31" - ] - }, - "5beec8b20db834001961942a": { - "mod_stock": [ - "5a9eb32da2750c00171b3f9c" - ] - }, - "5bfe7fb30db8340018089fed": { - "mod_stock": [ - "5bfe86a20db834001d23e8f7" - ] - }, - "5bfe86a20db834001d23e8f7": { - "mod_stock": [ - "5bfe89510db834001808a127" - ] - }, - "5bfe89510db834001808a127": { - "mod_stock_000": [ - "56eabf3bd2720b75698b4569" - ] - }, - "5c0000c00db834001a6697fc": { - "mod_muzzle": [ - "5a9fb739a2750c003215717f" - ] - }, - "5c0111ab0db834001966914d": { - "mod_muzzle": [ - "58272d7f2459774f6311ddfd" - ] - }, - "5c064c400db834001d23f468": { - "mod_scope": [ - "570fd721d2720bc5458b4596" - ] - }, - "5c0695860db834001b735461": { - "mod_nvg": [ - "5c0696830db834001d23f5da" - ] - }, - "5c0e51be86f774598e797894": { - "Back_plate": [ - "656efd66034e8e01c407f35c" - ], - "Collar": [ - "654a8ae00337d53f9102c2aa" - ], - "Front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "Groin": [ - "654a8bc5f414fcea4004d79b" - ], - "Soft_armor_back": [ - "654a8976f414fcea4004d78b" - ], - "Soft_armor_front": [ - "654a8b0b0337d53f9102c2ae" - ], - "Soft_armor_left": [ - "654a8b3df414fcea4004d78f" - ], - "soft_armor_right": [ - "654a8b80f414fcea4004d797" - ] - }, - "5c0e53c886f7747fa54205c7": { - "Collar": [ - "654a8ae00337d53f9102c2aa" - ], - "Groin": [ - "654a8bc5f414fcea4004d79b" - ], - "back_plate": [ - "656efd66034e8e01c407f35c" - ], - "front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "soft_armor_back": [ - "654a8976f414fcea4004d78b" - ], - "soft_armor_front": [ - "654a8b0b0337d53f9102c2ae" - ], - "soft_armor_left": [ - "654a8b3df414fcea4004d78f" - ], - "soft_armor_right": [ - "654a8b80f414fcea4004d797" - ] - }, - "5c0e57ba86f7747fa141986d": { - "Back_plate": [ - "657b22485f444d6dff0c6c2f" - ], - "Collar": [ - "657080ca12755ae0d907ad5e" - ], - "Front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "Groin": [ - "65708122f65e2491bf009755" - ], - "Groin_back": [ - "65708165696fe382cf073255" - ], - "Soft_armor_back": [ - "6570800612755ae0d907acf8" - ], - "Soft_armor_front": [ - "65707fc348c7a887f2010432" - ], - "Soft_armor_left": [ - "65708070f65e2491bf00972c" - ], - "soft_armor_right": [ - "657080a212755ae0d907ad04" - ] - }, - "5c0e655586f774045612eeb2": { - "Back_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Front_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Soft_armor_back": [ - "6570e0610b57c03ec90b96ef" - ], - "Soft_armor_front": [ - "6570e025615f54368b04fcb0" - ] - }, - "5c488a752e221602b412af63": { - "mod_barrel": [ - "5c48a2852e221602b21d5923" - ], - "mod_handguard": [ - "5c48a14f2e2216152006edd7" - ], - "mod_magazine": [ - "5c6d46132e221601da357d56" - ], - "mod_pistol_grip": [ - "5c48a2c22e221602b313fb6c" - ], - "mod_scope": [ - "584924ec24597768f12ae244" - ] - }, - "5c48a2852e221602b21d5923": { - "mod_muzzle": [ - "5c48a2a42e221602b66d1e07" - ] - }, - "5c61a40d2e2216001403158d": { - "mod_scope": [ - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c" - ] - }, - "5c7d55f52e221644f31bff6a": { - "mod_scope": [ - "5c7d55de2e221644f31bff68", - "5c7d560b2e22160bc12c6139" - ] - }, - "5c7d560b2e22160bc12c6139": { - "mod_scope": [ - "5c7d55de2e221644f31bff68" - ] - }, - "5cc700b9e4a949000f0f0f25": { - "mod_stock_000": [ - "5cc700cae4a949035e43ba72" - ] - }, - "5cc700ede4a949033c734315": { - "mod_scope": [ - "570fd721d2720bc5458b4596", - "5d2da1e948f035477b1ce2ba" - ] - }, - "5cc70102e4a949035e43ba74": { - "mod_mount_000": [ - "5cebec38d7f00c00110a652a" - ], - "mod_mount_001": [ - "5cc70146e4a949000d73bf6b" - ], - "mod_mount_002": [ - "5cc70146e4a949000d73bf6b" - ] - }, - "5cc701aae4a949000e1ea45c": { - "mod_muzzle": [ - "5cc82796e24e8d000f5859a8" - ] - }, - "5cc82d76e24e8d00134b4b83": { - "mod_barrel": [ - "5cc701aae4a949000e1ea45c", - "5cc701d7e4a94900100ac4e7" - ], - "mod_charge": [ - "5cc6ea78e4a949000e1ea3c1" - ], - "mod_magazine": [ - "5cc70093e4a949033c734312" - ], - "mod_reciever": [ - "5cc700ede4a949033c734315", - "5cc70102e4a949035e43ba74" - ], - "mod_stock": [ - "5cc700b9e4a949000f0f0f25", - "5cebec10d7f00c065703d185" - ] - }, - "5cebec10d7f00c065703d185": { - "mod_stock_000": [ - "5cc700cae4a949035e43ba72", - "5cc700d4e4a949000f0f0f28" - ] - }, - "5d0236dad7ad1a0940739d29": { - "mod_pistol_grip": [ - "5b30ac585acfc433000eb79c" - ], - "mod_tactical_000": [ - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - }, - "5d3eb3b0a4b93615055e84d2": { - "mod_barrel": [ - "5d3eb5b6a4b9361eab311902", - "5d3eb59ea4b9361c284bb4b2" - ], - "mod_magazine": [ - "5d3eb5eca4b9363b1f22f8e4" - ], - "mod_reciever": [ - "5d3eb44aa4b93650d64e4979" - ], - "patron_in_weapon": [ - "5cc80f8fe4a949033b0224a2" - ] - }, - "5d43021ca4b9362eab4b5e25": { - "mod_charge": [ - "5d44334ba4b9362b346d1948" - ], - "mod_magazine": [ - "5aaa5dfee5b5b000140293d3", - "544a378f4bdc2d30388b4567" - ], - "mod_pistol_grip": [ - "55802f5d4bdc2dac148b458f" - ], - "mod_reciever": [ - "5d4405aaa4b9361e6a4e6bd3" - ], - "mod_stock": [ - "5649be884bdc2d79388b4577" - ] - }, - "5d4405aaa4b9361e6a4e6bd3": { - "mod_barrel": [ - "5d440b9fa4b93601354d480c" - ], - "mod_handguard": [ - "5d4405f0a4b9361e6a4e6bd9", - "640b20359ab20e15ee445fa9", - "63888bbd28e5cc32cc09d2b6" - ], - "mod_scope": [ - "584924ec24597768f12ae244" - ] - }, - "5d4405f0a4b9361e6a4e6bd9": { - "mod_foregrip": [ - "57cffce524597763b31685d8" - ] - }, - "5d440b9fa4b93601354d480c": { - "mod_gas_block": [ - "56eabcd4d2720b66698b4574" - ], - "mod_muzzle": [ - "5cc9b815d7f00c000e2579d6" - ] - }, - "5d5e7d28a4b936645d161203": { - "Helmet_back": [ - "657f8b05f4c82973640b2348" - ], - "Helmet_top": [ - "657f8a8d7db258e5600fe33d" - ] - }, - "5df8a2ca86f7740bfe6df777": { - "Soft_armor_back": [ - "656fd89bf5a9631d4e042575" - ], - "Soft_armor_front": [ - "656fd7c32668ef0402028fb9" - ] - }, - "5df8ce05b11454561e39243b": { - "mod_charge": [ - "5df8e085bb49d91fb446d6a8" - ], - "mod_magazine": [ - "5df8f535bb49d91fb446d6b0" - ], - "mod_pistol_grip": [ - "57af48872459771f0b2ebf11" - ], - "mod_reciever": [ - "5df8e4080b92095fd441e594" - ], - "mod_stock": [ - "5649be884bdc2d79388b4577" - ], - "patron_in_weapon": [ - "5e023e88277cce2b522ff2b1", - "5e023e53d4353e3302577c4c" - ] - }, - "5df8e4080b92095fd441e594": { - "mod_barrel": [ - "5df917564a9f347bc92edca3" - ], - "mod_handguard": [ - "5df916dfbb49d91fb446d6b9" - ], - "mod_scope": [ - "57aca93d2459771f2c7e26db" - ] - }, - "5df916dfbb49d91fb446d6b9": { - "mod_foregrip": [ - "57cffcd624597763133760c5" - ] - }, - "5df917564a9f347bc92edca3": { - "mod_gas_block": [ - "5dfa3d45dfc58d14537c20b0" - ], - "mod_muzzle": [ - "5b7d693d5acfc43bca706a3d", - "5dfa3cd1b33c0951220c079b" - ] - }, - "5dfa3cd1b33c0951220c079b": { - "mod_muzzle": [ - "5dfa3d2b0dee1b22f862eade" - ] - }, - "5e01ef6886f77445f643baa4": { - "helmet_back": [ - "655200ba0ef76cf7be09d528" - ], - "helmet_top": [ - "6551fec55d0cf82e51014288" - ] - }, - "5e4bfc1586f774264f7582d3": { - "Helmet_back": [ - "657f9cb587e11c61f70bfaca" - ], - "Helmet_top": [ - "657f9c78ada5fadd1f07a58d" - ], - "mod_equipment_000": [ - "5a16b672fcdbcb001912fa83" - ], - "mod_nvg": [ - "5a16b8a9fcdbcb00165aa6ca" - ] - }, - "5ea05cf85ad9772e6624305d": { - "Helmet_back": [ - "657ba34b9ba22f103e08139b" - ], - "Helmet_top": [ - "657ba2eef58ba5a625010798" - ] - }, - "5ea16acdfadf1d18c87b0784": { - "mod_sight_front": [ - "5c18b90d2e2216152142466b" - ], - "mod_tactical_000": [ - "5c06595c0db834001a66af6c" - ] - }, - "5ea16ada09aa976f2e7a51be": { - "mod_sight_front": [ - "5c17804b2e2216152006c02f" - ], - "mod_tactical_000": [ - "5c06595c0db834001a66af6c" - ] - }, - "5ea172e498dacb342978818e": { - "mod_muzzle": [ - "5ea17bbc09aa976f2e7a51cd" - ] - }, - "5ea17ca01412a1425304d1c0": { - "Helmet_back": [ - "657f9a94ada5fadd1f07a589" - ], - "Helmet_top": [ - "657f9a55c6679fefb3051e19" - ], - "mod_nvg": [ - "5ea18c84ecf1982c7712d9a2" - ] - }, - "5f2a9575926fd9352339381f": { - "mod_barrel": [ - "5f2aa46b878ef416f538b567" - ], - "mod_handguard": [ - "5f2aa47a200e2c0ee46efa71" - ], - "mod_magazine": [ - "5b099ac65acfc400186331e1" - ], - "mod_mount": [ - "5f2aa49f9b44de6b1b4e68d4" - ] - }, - "5f2aa46b878ef416f538b567": { - "mod_muzzle": [ - "5f2aa4464b50c14bcf07acdb" - ] - }, - "5f2aa47a200e2c0ee46efa71": { - "mod_mount_000": [ - "5f2aa493cd375f14e15eea72" - ] - }, - "5f2aa49f9b44de6b1b4e68d4": { - "mod_scope": [ - "5c7d55f52e221644f31bff6a", - "59f9d81586f7744c7506ee62" - ] - }, - "5f36a0e5fbf956000b716b65": { - "mod_barrel": [ - "5f3e7801153b8571434a924c" - ], - "mod_catch": [ - "5f3e777688ca2d00ad199d25" - ], - "mod_hammer": [ - "5f3e76d86cda304dcc634054" - ], - "mod_magazine": [ - "5f3e77b26cda304dcc634057" - ], - "mod_pistol_grip": [ - "5f3e778efcd9b651187d7201" - ], - "mod_reciever": [ - "5f3e7823ddc4f03b010e2045" - ], - "mod_trigger": [ - "5f3e772a670e2a7b01739a52" - ] - }, - "5f3e7823ddc4f03b010e2045": { - "mod_sight_front": [ - "5f3e78a7fbf956000b716b8e" - ], - "mod_sight_rear": [ - "5f3e7897ddc4f03b010e204a" - ] - }, - "5f60b34a41e30a4ab12a6947": { - "Helmet_back": [ - "657bbb31b30eca9763051183" - ], - "Helmet_top": [ - "657bbad7a1c61ee0c3036323" - ], - "mod_equipment_000": [ - "5f60c076f2bcbb675b00dac2" - ] - }, - "5fbbc366ca32ed67276c1557": { - "mod_muzzle": [ - "5fbbc34106bde7524f03cbe9" - ] - }, - "5fbbfabed5cb881a7363194e": { - "mod_gas_block": [ - "5fbc210bf24b94483f726481" - ], - "mod_muzzle": [ - "5fbc22ccf24b94483f726483" - ] - }, - "5fbc22ccf24b94483f726483": { - "mod_muzzle_000": [ - "5fbcbcf593164a5b6278efb2" - ] - }, - "5fbcc1d9016cce60e8341ab3": { - "mod_charge": [ - "5fbcc640016cce60e8341acc" - ], - "mod_magazine": [ - "5c6d46132e221601da357d56" - ], - "mod_pistol_grip": [ - "5fbcbd6c187fea44d52eda14" - ], - "mod_reciever": [ - "5fbcc3e4d6fa9c00c571bb58" - ], - "mod_stock": [ - "5fbcc437d724d907e2077d5c" - ] - }, - "5fbcc3e4d6fa9c00c571bb58": { - "mod_barrel": [ - "5fbbfabed5cb881a7363194e" - ], - "mod_handguard": [ - "5fbc226eca32ed67276c155d" - ], - "mod_scope": [ - "584924ec24597768f12ae244" - ] - }, - "5fc3f2d5900b1d5091531e57": { - "mod_barrel": [ - "5fbbc366ca32ed67276c1557" - ], - "mod_magazine": [ - "5a718b548dc32e000d46d262", - "5a7ad2e851dfba0016153692" - ], - "mod_mount": [ - "5fbb976df9986c4cff3fe5f2" - ], - "mod_mount_001": [ - "5fce0f9b55375d18a253eff2" - ], - "mod_mount_002": [ - "5fce0f9b55375d18a253eff2" - ], - "mod_scope": [ - "5a33b652c4a28232996e407c" - ], - "mod_sight_front": [ - "5fb6567747ce63734e3fa1dc" - ], - "mod_sight_rear": [ - "5fb6564947ce63734e3fa1da" - ], - "mod_stock": [ - "5fb6558ad6f0b2136f2d7eb7" - ] - }, - "5fd4c474dd870108a754b241": { - "back_plate": [ - "656faf0ca0dce000a2020f77" - ], - "front_plate": [ - "656faf0ca0dce000a2020f77" - ] - }, - "60228924961b8d75ee233c32": { - "mod_sight_front": [ - "60228a76d62c9b14ed777a66" - ], - "mod_sight_rear": [ - "60229948cacb6b0506369e27" - ] - }, - "602a9740da11d6478d5a06dc": { - "mod_barrel": [ - "602a95edda11d6478d5a06da" - ], - "mod_magazine": [ - "602286df23506e50807090c6" - ], - "mod_reciever": [ - "60228924961b8d75ee233c32" - ] - }, - "602e3f1254072b51b239f713": { - "mod_stock_000": [ - "602e620f9b513876d4338d9a" - ] - }, - "602e63fb6335467b0c5ac94d": { - "mod_barrel": [ - "603372b4da11d6478d5a07ff" - ], - "mod_handguard": [ - "6034e3cb0ddce744014cb870" - ] - }, - "603372b4da11d6478d5a07ff": { - "mod_muzzle": [ - "60337f5dce399e10262255d1" - ] - }, - "60339954d62c9b14ed777c06": { - "mod_charge": [ - "6033749e88382f4fab3fd2c5" - ], - "mod_magazine": [ - "5a718f958dc32e00094b97e7" - ], - "mod_pistol_grip": [ - "602e71bd53a60014f9705bfa" - ], - "mod_reciever": [ - "602e63fb6335467b0c5ac94d" - ], - "mod_stock_001": [ - "602e3f1254072b51b239f713" - ], - "mod_tactical_000": [ - "602f85fd9b513876d4338d9c" - ] - }, - "606587252535c57a13424cfd": { - "mod_charge": [ - "606587bd6d0bd7580617bacc" - ], - "mod_magazine": [ - "59fafc5086f7740dbe19f6c3" - ], - "mod_pistol_grip": [ - "55802f5d4bdc2dac148b458f" - ], - "mod_reciever": [ - "606587a88900dc2d9a55b659" - ], - "mod_stock_001": [ - "606587e18900dc2d9a55b65f" - ] - }, - "60658776f2cb2e02a42ace2b": { - "mod_gas_block": [ - "6065dc8a132d4d12c81fd8e3" - ], - "mod_muzzle": [ - "6065c6e7132d4d12c81fd8e1" - ] - }, - "606587a88900dc2d9a55b659": { - "mod_barrel": [ - "60658776f2cb2e02a42ace2b" - ], - "mod_handguard": [ - "6065880c132d4d12c81fd8da" - ], - "mod_sight_rear": [ - "5bc09a18d4351e003562b68e" - ] - }, - "606587e18900dc2d9a55b65f": { - "mod_stock_000": [ - "606587d11246154cad35d635" - ] - }, - "6065880c132d4d12c81fd8da": { - "mod_sight_front": [ - "5bc09a30d4351e00367fb7c8" - ] - }, - "609e8540d5c319764c2bc2e9": { - "Back_plate": [ - "656f9fa0498d1b7e3e071d98" - ], - "Front_plate": [ - "656f9fa0498d1b7e3e071d98" - ], - "Soft_armor_back": [ - "6572e52f73c0eabb700109a0" - ], - "Soft_armor_front": [ - "6572e5221b5bc1185508c24f" - ], - "Soft_armor_left": [ - "6572e53c73c0eabb700109a4" - ], - "soft_armor_right": [ - "6572e54873c0eabb700109a8" - ] - }, - "60a3c68c37ea821725773ef5": { - "Back_plate": [ - "656fa53d94b480b8a500c0e4" - ], - "Collar": [ - "6573334aca0ca984940a2d5b" - ], - "Front_plate": [ - "656fa53d94b480b8a500c0e4" - ], - "Left_side_plate": [ - "6557458f83942d705f0c4962" - ], - "Right_side_plate": [ - "6557458f83942d705f0c4962" - ], - "Shoulder_l": [ - "65733375b7a8d286530e3dd7" - ], - "Shoulder_r": [ - "6573337f2cc8dfad2c0a3da7" - ], - "Soft_armor_back": [ - "657333232cc8dfad2c0a3d97" - ], - "Soft_armor_front": [ - "65733312ca0ca984940a2d53" - ], - "Soft_armor_left": [ - "657333302cc8dfad2c0a3d9b" - ], - "soft_armor_right": [ - "6573333eca0ca984940a2d57" - ] - }, - "6193a720f8ee7e52e42109ed": { - "mod_barrel": [ - "6194f02d9bb3d20b0946d2f0" - ], - "mod_catch": [ - "6193d5d4f8ee7e52e4210a1b" - ], - "mod_hammer": [ - "6193d3be7c6c7b169525f0da" - ], - "mod_magazine": [ - "6193d3149fb0c665d5490e32" - ], - "mod_mount_000": [ - "619624b26db0f2477964e6b0" - ], - "mod_reciever": [ - "6194f5a318a3974e5e7421eb" - ], - "mod_trigger": [ - "6193d3cded0429009f543e6a" - ] - }, - "6194f5a318a3974e5e7421eb": { - "mod_sight_front": [ - "6194f3286db0f2477964e67d" - ], - "mod_sight_rear": [ - "6194f2df645b5d229654ad77" - ] - }, - "61bc85697113f767765c7fe7": { - "Back_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Front_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Soft_armor_back": [ - "6572fc8c9a866b80ab07eb5d" - ], - "Soft_armor_front": [ - "6572fc809a866b80ab07eb59" - ], - "Soft_armor_left": [ - "6572fc989a866b80ab07eb61" - ], - "soft_armor_right": [ - "6572fca39a866b80ab07eb65" - ] - }, - "61bca7cda0eae612383adf57": { - "Helmet_back": [ - "657bbcffbbd440df880b2dd5" - ], - "Helmet_top": [ - "657bbcc9a1c61ee0c3036327" - ] - }, - "61bcc89aef0f505f0c6cd0fc": { - "Back_plate": [ - "656fb21fa0dce000a2020f7c" - ], - "Front_plate": [ - "656fb21fa0dce000a2020f7c" - ], - "Groin": [ - "6572eb865b5eac12f10a03ee" - ], - "Soft_armor_back": [ - "6572eb1b04ee6483ef039882" - ], - "Soft_armor_front": [ - "6572eb0e55beba16bc04079f" - ], - "Soft_armor_left": [ - "6572eb3004ee6483ef039886" - ], - "soft_armor_right": [ - "6572eb3b04ee6483ef03988a" - ] - }, - "622b379bf9cfc87d675d2de5": { - "mod_gas_block": [ - "622b327b267a1b13a44abea3" - ], - "mod_muzzle": [ - "622f0ee47762f55aaa68ac87" - ] - }, - "622b3c081b89c677a33bcda6": { - "mod_sight_front": [ - "623166e08c43374ca1567195" - ], - "mod_sight_rear": [ - "6231670f0b8aa5472d060095" - ] - }, - "623063e994fc3f7b302a9696": { - "mod_barrel": [ - "622b379bf9cfc87d675d2de5" - ], - "mod_handguard": [ - "62386b2adf47d66e835094b2" - ], - "mod_magazine": [ - "62307b7b10d2321fa8741921" - ], - "mod_mount": [ - "622f02437762f55aaa68ac85" - ], - "mod_scope": [ - "622b3c081b89c677a33bcda6" - ], - "mod_stock": [ - "622f140da5958f63c67f1735" - ] - }, - "62386b2adf47d66e835094b2": { - "mod_mount_000": [ - "62444cb99f47004c781903eb" - ], - "mod_tactical": [ - "622f16a1a5958f63c67f1737" - ] - }, - "6259b864ebedf17603599e88": { - "mod_barrel": [ - "6259c2c1d714855d182bad85" - ], - "mod_charge": [ - "625ec45bb14d7326ac20f572" - ], - "mod_handguard": [ - "6259c4347d6aab70bc23a190" - ], - "mod_magazine": [ - "625ff2ccb8c587128c1a01dd" - ], - "mod_mount": [ - "625ed7c64d9b6612df732146" - ], - "mod_sight_rear": [ - "625ebcef6f53af4aa66b44dc" - ], - "mod_stock": [ - "625eb0faa6e3a82193267ad9" - ] - }, - "6259c2c1d714855d182bad85": { - "mod_muzzle": [ - "5c0111ab0db834001966914d" - ] - }, - "625ed7c64d9b6612df732146": { - "mod_scope": [ - "570fd721d2720bc5458b4596" - ] - }, - "628d0618d1ba6e4fa07ce5a4": { - "Back_plate": [ - "657b2797c3dbcb01d60c35ea" - ], - "Front_plate": [ - "656f664200d62bcd2e024077" - ], - "Soft_armor_back": [ - "657322a4cea9255e21023651" - ], - "Soft_armor_front": [ - "657322988c1cc6dcd9098b2d" - ], - "Soft_armor_left": [ - "657322acd9d89ff7ac0d961b" - ], - "soft_armor_right": [ - "657322b7d9d89ff7ac0d961f" - ] - }, - "62a09d79de7ac81993580530": { - "Soft_armor_back": [ - "6572e059371fccfbf909d5dc" - ], - "Soft_armor_front": [ - "6572e048371fccfbf909d5d8" - ], - "Soft_armor_left": [ - "6572e06219b4b511af012f89" - ], - "soft_armor_right": [ - "6572e06819b4b511af012f8d" - ] - }, - "62e7c72df68e7a0676050c77": { - "mod_barrel": [ - "630e39c3bd357927e4007c15" - ], - "mod_mount": [ - "62e7c8f91cd3fde4d503d690" - ], - "mod_tactical": [ - "626becf9582c3e319310b837" - ] - }, - "62e7c8f91cd3fde4d503d690": { - "mod_scope": [ - "558022b54bdc2dac148b458d" - ] - }, - "63075cc5962d0247b029dc2a": { - "mod_sight_front": [ - "630765777d50ff5e8a1ea718" - ], - "mod_sight_rear": [ - "630765cb962d0247b029dc45" - ] - }, - "63088377b5cd696784087147": { - "mod_barrel": [ - "630764fea987397c0816d219" - ], - "mod_magazine": [ - "63076701a987397c0816d21b" - ], - "mod_reciever": [ - "63075cc5962d0247b029dc2a" - ] - }, - "630e39c3bd357927e4007c15": { - "mod_foregrip": [ - "634e61b0767cb15c4601a877" - ], - "mod_muzzle": [ - "630f291b9f66a28b37094bb8" - ] - }, - "63171672192e68c5460cebc5": { - "mod_charge": [ - "62ebbc53e3c1e1ec7c02c44f" - ], - "mod_magazine": [ - "62e7c98b550c8218d602cbb4" - ], - "mod_reciever": [ - "62e7c72df68e7a0676050c77" - ] - }, - "634f02331f9f536910079b51": { - "mod_mount_000": [ - "634f04d82e5def262d0b30c6" - ] - }, - "634f04d82e5def262d0b30c6": { - "mod_gas_block": [ - "634f02d7517ccc8a960fc744" - ] - }, - "63737f448b28897f2802b874": { - "Back_plate": [ - "656fae5f7c2d57afe200c0d7" - ], - "Front_plate": [ - "656fae5f7c2d57afe200c0d7" - ] - }, - "637f57b78d137b27f70c496a": { - "mod_foregrip": [ - "558032614bdc2de7118b4585" - ] - }, - "639343fce101f4caa40a4ef3": { - "Back_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Front_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Soft_armor_back": [ - "6573102b292ecadbfa09b38d" - ], - "Soft_armor_front": [ - "6573101e292ecadbfa09b389" - ], - "Soft_armor_left": [ - "65731038292ecadbfa09b391" - ], - "soft_armor_right": [ - "65731045f31d5be00e08a75a" - ] - }, - "63d114019e35b334d82302f7": { - "mod_scope": [ - "558022b54bdc2dac148b458d", - "570fd6c2d2720bc6458b457f", - "64785e7c19d732620e045e15" - ] - }, - "640b20359ab20e15ee445fa9": { - "mod_foregrip": [ - "57cffb66245977632f391a99" - ] - }, - "644674a13d52156624001fbc": { - "mod_barrel": [ - "645122f6d4928d46d30be3ff" - ], - "mod_magazine": [ - "6450ec2e7da7133e5a09ca96" - ], - "mod_pistol_grip": [ - "6450f21a3d52156624001fcf" - ], - "mod_scope": [ - "6544d4187c5457729210d277" - ], - "mod_stock_000": [ - "6451167ad4928d46d30be3fd" - ] - }, - "645122f6d4928d46d30be3ff": { - "mod_handguard": [ - "644675573d52156624001fc9" - ], - "mod_muzzle": [ - "64527a3a7da7133e5a09ca99" - ] - }, - "645123013d52156624001fd1": { - "mod_handguard": [ - "6448f2f6d4928d46d30be3f6" - ], - "mod_muzzle": [ - "64527a263d52156624001fd7" - ] - }, - "64527a3a7da7133e5a09ca99": { - "mod_mount": [ - "57a3459f245977764a01f703" - ] - }, - "645e0c6b3b381ede770e1cc9": { - "mod_barrel": [ - "645123013d52156624001fd1" - ], - "mod_magazine": [ - "6450ec2e7da7133e5a09ca96" - ], - "mod_scope": [ - "618a5d5852ecee1505530b2a" - ], - "mod_stock": [ - "6452519e3d52156624001fd5" - ] - }, - "646f6322f43d0c5d62063715": { - "mod_tactical": [ - "646f62fee779812413011ab7" - ] - }, - "6499849fc93611967b034949": { - "mod_gas_block": [ - "649ec107961514b22506b10c" - ], - "mod_handguard": [ - "649ec127c93611967b034957" - ], - "mod_magazine": [ - "5bed61680db834001d2c45ab", - "64b9e265c94d0d15c5027e35" - ], - "mod_muzzle": [ - "649ec2af961514b22506b10f" - ], - "mod_pistol_grip": [ - "5beec8ea0db834001a6f9dbf" - ], - "mod_reciever": [ - "649ec2f3961514b22506b111" - ], - "mod_stock_001": [ - "649ec87d8007560a9001ab36" - ] - }, - "649ec127c93611967b034957": { - "mod_foregrip": [ - "59fc48e086f77463b1118392", - "5cf4fb76d7f00c065703d3ac", - "558032614bdc2de7118b4585", - "588226d124597767ad33f787", - "5c1bc4812e22164bef5cfde7" - ] - }, - "649ec2f3961514b22506b111": { - "mod_scope": [ - "609a63b6e2ff132951242d09", - "5c0505e00db834001b735073" - ] - }, - "649ec87d8007560a9001ab36": { - "mod_stock": [ - "5beec8c20db834001d2c465c" - ] - }, - "64a536392d2c4e6e970f4121": { - "Back_plate": [ - "656fac30c6baea13cd07e10c" - ], - "Front_plate": [ - "656fac30c6baea13cd07e10c" - ], - "Soft_armor_back": [ - "6570658a89fd4926380b7346" - ], - "Soft_armor_front": [ - "6570653e89fd4926380b733e" - ] - }, - "64a5366719bab53bd203bf33": { - "Back_plate": [ - "656fac30c6baea13cd07e10c" - ], - "Front_plate": [ - "656fac30c6baea13cd07e10c" - ] - }, - "64abd93857958b4249003418": { - "Back_plate": [ - "656fb0bd7c2d57afe200c0dc" - ], - "Front_plate": [ - "656fb0bd7c2d57afe200c0dc" - ], - "Soft_armor_back": [ - "6570f35cd67d0309980a7acb" - ], - "Soft_armor_front": [ - "6570f30b0921c914bf07964c" - ], - "Soft_armor_left": [ - "6570f3890b4ae5847f060dad" - ], - "soft_armor_right": [ - "6570f3bb0b4ae5847f060db2" - ] - }, - "64be79c487d1510151095552": { - "Soft_armor_back": [ - "657049d23425b19bbc0502f0" - ], - "Soft_armor_front": [ - "6570495b45d573133d0d6adb" - ] - }, - "65709d2d21b9f815e208ff95": { - "Helmet_back": [ - "657f9ef6c6679fefb3051e1f" - ], - "Helmet_top": [ - "657f9eb7e9433140ad0baf86" - ] - }, - "65719f0775149d62ce0a670b": { - "Helmet_back": [ - "657fa168e9433140ad0baf8e" - ], - "Helmet_ears": [ - "657fa186d4caf976440afe42" - ], - "Helmet_top": [ - "657fa0fcd4caf976440afe3e" - ], - "mod_equipment_000": [ - "65719f9ef392ad76c50a2ec8" - ] - } - } - }, - "lastName": [], - "skills": { - "Common": { - "Attention": { - "max": 5100, - "min": 5100 - }, - "CovertMovement": { - "max": 5100, - "min": 5100 - }, - "Endurance": { - "max": 5100, - "min": 5100 - }, - "Strength": { - "max": 5100, - "min": 5100 - } - } - } -} diff --git a/project/assets/database/bots/types/spiritwinter.json b/project/assets/database/bots/types/spiritwinter.json deleted file mode 100644 index a0420b13..00000000 --- a/project/assets/database/bots/types/spiritwinter.json +++ /dev/null @@ -1,4890 +0,0 @@ -{ - "appearance": { - "body": { - "5d28ae4986f7742926686187": 1 - }, - "feet": { - "5cc2e5d014c02e15d53d9c03": 5, - "5d28af3486f774292364a6e7": 3, - "5d28af7886f77429275dba25": 5, - "6033a430ed2e0509b15f9033": 7 - }, - "hands": { - "5cc0876314c02e000c6bea6b": 1 - }, - "head": { - "5cc084dd14c02e000b0550a3": 1, - "5cc2e4d014c02e000d0115f8": 1, - "5cde9ff17d6c8b0474535daa": 1 - }, - "voice": { - "Bear_1": 193, - "Bear_2": 183, - "Bear_3": 189, - "Scav_1": 121, - "Scav_2": 118, - "Scav_3": 141, - "Scav_4": 140, - "Scav_5": 123, - "Scav_6": 124, - "Usec_1": 173, - "Usec_2": 181, - "Usec_3": 171 - } - }, - "chances": { - "equipment": { - "ArmBand": 0, - "ArmorVest": 20, - "Backpack": 49, - "Earpiece": 53, - "Eyewear": 78, - "FaceCover": 62, - "FirstPrimaryWeapon": 100, - "Headwear": 89, - "Holster": 100, - "Pockets": 100, - "Scabbard": 0, - "SecondPrimaryWeapon": 0, - "SecuredContainer": 100, - "TacticalVest": 100 - }, - "equipmentMods": { - "back_plate": 100, - "front_plate": 100, - "left_side_plate": 10, - "mod_equipment": 6, - "mod_equipment_000": 2, - "mod_equipment_001": 0, - "mod_equipment_002": 0, - "mod_mount": 0, - "mod_nvg": 15, - "right_side_plate": 10 - }, - "weaponMods": { - "mod_charge": 6, - "mod_flashlight": 100, - "mod_foregrip": 30, - "mod_handguard": 100, - "mod_launcher": 0, - "mod_magazine": 100, - "mod_mount": 47, - "mod_mount_000": 17, - "mod_mount_001": 40, - "mod_mount_002": 18, - "mod_mount_003": 0, - "mod_mount_004": 41, - "mod_muzzle": 33, - "mod_muzzle_000": 28, - "mod_muzzle_001": 0, - "mod_pistol_grip": 0, - "mod_reciever": 100, - "mod_scope": 73, - "mod_sight_front": 86, - "mod_sight_rear": 73, - "mod_stock": 100, - "mod_stock_000": 100, - "mod_stock_001": 100, - "mod_tactical": 47, - "mod_tactical_000": 32, - "mod_tactical_001": 42, - "mod_tactical_002": 0, - "mod_tactical_003": 0, - "mod_tactical_2": 100 - } - }, - "difficulty": { - "easy": { - "Aiming": { - "AIMING_TYPE": 2, - "ANYTIME_LIGHT_WHEN_AIM_100": 40, - "ANY_PART_SHOOT_TIME": 5, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.07, - "BASE_HIT_AFFECTION_MAX_ANG": 4, - "BASE_HIT_AFFECTION_MIN_ANG": 2, - "BASE_SHIEF": 0.03, - "BASE_SHIEF_STATIONARY_GRENADE": 0.15, - "BETTER_PRECICING_COEF": 0.9, - "BOTTOM_COEF": 0.01, - "BOT_MOVE_IF_DELTA": 3.01, - "COEF_FROM_COVER": 0.35, - "COEF_IF_MOVE": 1, - "DAMAGE_PANIC_TIME": 5, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "DANGER_UP_POINT": 1.3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "DIST_TO_SHOOT_TO_CENTER": 3, - "FIRST_CONTACT_ADD_CHANCE_100": 40, - "FIRST_CONTACT_ADD_SEC": 0.01, - "HARD_AIM": 0.75, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "MAX_AIM_PRECICING": 1, - "MAX_AIM_TIME": 1.1, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "NEXT_SHOT_MISS_CHANCE_100": 10, - "NEXT_SHOT_MISS_Y_OFFSET": 0.1, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "PANIC_ACCURATY_COEF": 1.2, - "PANIC_COEF": 1.2, - "PANIC_TIME": 1, - "RECALC_DIST": 0.7, - "RECALC_MUST_TIME": 2, - "RECALC_SQR_DIST": 0.48999998, - "SCATTERING_DIST_MODIF": 0.47, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "SCATTERING_HAVE_DAMAGE_COEF": 1.2, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "TIME_COEF_IF_MOVE": 1.05, - "WEAPON_ROOT_OFFSET": 0.35, - "XZ_COEF": 0.01, - "XZ_COEF_STATIONARY_GRENADE": 0.2 - }, - "Boss": { - "BOSS_DIST_TO_SHOOT": 10, - "BOSS_DIST_TO_SHOOT_SQRT": 100, - "BOSS_DIST_TO_WARNING": 20, - "BOSS_DIST_TO_WARNING_OUT": 35, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 625, - "BOSS_DIST_TO_WARNING_SQRT": 400, - "CHANCE_TO_SEND_GRENADE_100": 100, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "COVER_TO_SEND": true, - "DELTA_SEARCH_TIME": 18, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_BULLET_TO_RELOAD": 15, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_CONTUTION_TIME": 5, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_HOLD_DELAY": 5, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_SEARCH_METERS": 30, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "MAX_DIST_COVER_BOSS": 65, - "MAX_DIST_COVER_BOSS_SQRT": 4225, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "NOT_ADD_TO_ENEMY_ON_KILLS": true, - "PERSONS_SEND": 2, - "SHALL_WARN": true, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "WAIT_NO_ATTACK_SAVAGE": 10 - }, - "Change": { - "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_HEARING": 1, - "FLASH_LAY_CHANCE": 1, - "FLASH_PRECICING": 1.6, - "FLASH_SCATTERING": 1.6, - "FLASH_VISION_DIST": 0.05, - "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_LAY_CHANCE": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_VISION_DIST": 0.6, - "STUN_HEARING": 0.01 - }, - "Core": { - "AccuratySpeed": 0.15, - "AimingType": "normal", - "CanGrenade": true, - "CanRun": true, - "DamageCoeff": 1, - "GainSightCoef": 0.05, - "HearingSense": 10.9, - "PistolFireDistancePref": 35, - "RifleFireDistancePref": 100, - "ScatteringClosePerMeter": 0.12, - "ScatteringPerMeter": 0.045, - "ShotgunFireDistancePref": 50, - "VisibleAngle": 180, - "VisibleDistance": 262, - "WaitInCoverBetweenShotsSec": 0.35 - }, - "Cover": { - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "CHECK_COVER_ENEMY_LOOK": false, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "DEPENDS_Y_DIST_TO_BOT": false, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "DIST_CHECK_SFETY": 9, - "DOG_FIGHT_AFTER_LEAVE": 4, - "ENEMY_DIST_TO_GO_OUT": 1, - "GOOD_DIST_TO_POINT_COEF": 9999, - "HIDE_TO_COVER_TIME": 1.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "MAX_DIST_OF_COVER": 4, - "MAX_DIST_OF_COVER_SQR": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "MIN_DEFENCE_LEVEL": 5, - "MIN_DIST_TO_ENEMY": 9, - "MOVE_TO_COVER_WHEN_TARGET": false, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "RUN_IF_FAR": 10, - "RUN_IF_FAR_SQRT": 225, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "SHOOT_NEAR_TO_LEAVE": 2, - "SOUND_TO_GET_SPOTTED": 2, - "SPOTTED_COVERS_RADIUS": 2.5, - "SPOTTED_GRENADE_RADIUS": 16, - "SPOTTED_GRENADE_TIME": 7, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "TIME_CHECK_SAFE": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "WAIT_INT_COVER_FINDING_ENEMY": 2 - }, - "Grenade": { - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "ANG_TYPE": 4, - "BEWARE_TYPE": 2, - "BE_ATTENTION_COEF": 4, - "CAN_THROW_STRAIGHT_CONTACT": true, - "CHANCE_RUN_FLASHED_100": 100, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "CHEAT_START_GRENADE_PLACE": false, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "DELTA_GRENADE_START_TIME": 0.01, - "DELTA_NEXT_ATTEMPT": 10, - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "FLASH_GRENADE_TIME_COEF": 0.25, - "GrenadePerMeter": 0.15, - "GrenadePrecision": 0.1, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "MAX_THROW_POWER": 18.7, - "MIN_DIST_NOT_TO_THROW": 8, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "NO_RUN_FROM_AI_GRENADES": true, - "REQUEST_DIST_MUST_THROW": 3, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "SIZE_SPOTTED_COEF": 2, - "SMOKE_CHECK_DELTA": 1, - "SMOKE_SUPPRESS_DELTA": 20, - "STOP_WHEN_THROW_GRENADE": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "STUN_SUPPRESS_DELTA": 9, - "TIME_SHOOT_TO_FLASH": 4, - "WAIT_TIME_TURN_AWAY": 0.2 - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.99, - "CLOSE_DIST": 96, - "DEAD_BODY_SOUND_RAD": 30, - "DISPERSION_COEF": 20, - "DIST_PLACE_TO_FIND_POINT": 70, - "FAR_DIST": 176, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "HEAR_DELAY_WHEN_PEACE": 0, - "LOOK_ONLY_DANGER": false, - "LOOK_ONLY_DANGER_DELTA": 9, - "RESET_TIMER_DIST": 17, - "SOUND_DIR_DEEFREE": 30 - }, - "Lay": { - "ATTACK_LAY_CHANCE": 25, - "CHECK_SHOOT_WHEN_LAYING": false, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "DAMAGE_TIME_TO_GETUP": 3, - "DELTA_AFTER_GETUP": 10, - "DELTA_GETUP": 2.7, - "DELTA_LAY_CHECK": 2, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "LAY_AIM": 0.6, - "LAY_CHANCE_DANGER": 40, - "MAX_CAN_LAY_DIST": 200, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_LAY_TIME": 35, - "MIN_CAN_LAY_DIST": 11, - "MIN_CAN_LAY_DIST_SQRT": 121 - }, - "Look": { - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "CAN_LOOK_TO_WALL": true, - "COME_TO_BODY_DIST": 1.2, - "CloseDeltaTimeSec": 0.1, - "DIST_CHECK_WALL": 20, - "DIST_NOT_TO_IGNORE_WALL": 15, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "FAR_DISTANCE": 260, - "FarDeltaTimeSec": 3, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "LOOK_AROUND_DELTA": 1.1, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LightOnVisionDistance": 95, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MIDDLE_DIST": 90, - "MIN_LOOK_AROUD_TIME": 20, - "MiddleDeltaTimeSec": 1, - "OLD_TIME_POINT": 11, - "OPTIMIZE_TO_ONLY_BODY": true, - "POSIBLE_VISION_SPACE": 1.2, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8 - }, - "Mind": { - "AGGRESSOR_LOYALTY_BONUS": 0, - "AI_POWER_COEF": 120, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "BULLET_FEEL_CLOSE_SDIST": 1, - "BULLET_FEEL_DIST": 360, - "CAN_PANIC_IS_PROTECT": false, - "CAN_RECIVE_PLAYER_REQUESTS": true, - "CAN_STAND_BY": false, - "CAN_TAKE_ANY_ITEM": true, - "CAN_TAKE_ITEMS": true, - "CAN_THROW_REQUESTS": true, - "CAN_USE_MEDS": true, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "COVER_DIST_COEF": 1.5, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "DANGER_POINT_CHOOSE_COEF": 1, - "DEFAULT_BEAR_BEHAVIOUR": "Ignore", - "DEFAULT_ENEMY_BEAR": false, - "DEFAULT_ENEMY_SAVAGE": false, - "DEFAULT_ENEMY_USEC": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "Ignore", - "DEFAULT_USEC_BEHAVIOUR": "Ignore", - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "DIST_TO_FOUND_SQRT": 400, - "DIST_TO_STOP_RUN_ENEMY": 15, - "DOG_FIGHT_IN": 3, - "DOG_FIGHT_OUT": 6, - "ENEMY_BOT_TYPES": [], - "ENEMY_BY_GROUPS_PMC_PLAYERS": false, - "ENEMY_BY_GROUPS_SAVAGE_PLAYERS": false, - "ENEMY_LOOK_AT_ME_ANG": 15, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "FRIENDLY_BOT_TYPES": [], - "FRIEND_AGR_KILL": 0.2, - "FRIEND_DEAD_AGR_LOW": -0.2, - "GIFTER_ADDITIONAL_GIFTS": 1, - "GROUP_ANY_PHRASE_DELAY": 20, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "HIT_POINT_DETECTION": 4, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "MAX_AGGRO_BOT_DIST": 100, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "MAX_SHOOTS_TIME": 4, - "MAX_START_AGGRESION_COEF": 3, - "MIN_DAMAGE_SCARE": 20, - "MIN_SHOOTS_TIME": 2, - "MIN_START_AGGRESION_COEF": 1, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30, - "PROTECT_DELTA_HEAL_SEC": 10, - "PROTECT_TIME_REAL": true, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "STANDART_AMBUSH_DIST": 100, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "TALK_WITH_QUERY": true, - "TIME_TO_FIND_ENEMY": 22, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "WARN_BOT_TYPES": [] - }, - "Move": { - "BASESTART_SLOW_DIST": 1.1, - "BASE_ROTATE_SPEED": 270, - "BASE_SQRT_START_SERACH": 1225, - "BASE_START_SERACH": 35, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "DELTA_LAST_SEEN_ENEMY": 20, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST": 15, - "DIST_TO_START_RAYCAST_SQR": 225, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "REACH_DIST": 0.5, - "REACH_DIST_COVER": 2, - "REACH_DIST_RUN": 0.8, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "RUN_TO_COVER_MIN": 2, - "SEC_TO_CHANGE_TO_RUN": 3, - "SLOW_COEF": 7, - "START_SLOW_DIST": 1.5, - "UPDATE_TIME_RECAL_WAY": 7, - "Y_APPROXIMATION": 0.7 - }, - "Patrol": { - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "CHANGE_WAY_TIME": 325.1, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "CUT_WAY_MAX_0_1": 0.65, - "CUT_WAY_MIN_0_1": 0.4, - "FRIEND_SEARCH_SEC": 12, - "LOOK_TIME_BASE": 12, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "MIN_DIST_TO_CLOSE_TALK": 5, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "MIN_TALK_DELAY": 35, - "PICKUP_ITEMS_TO_BACKPACK_OR_CONTAINER": true, - "RESERVE_OUT_TIME": 60, - "RESERVE_TIME_STAY": 72, - "SUSPETION_PLACE_LIFETIME": 7, - "TALK_DELAY": 1.1, - "TALK_DELAY_BIG": 45.1, - "VISION_DIST_COEF_PEACE": 0.75 - }, - "Scattering": { - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "BloodFall": 1.45, - "Caution": 0.3, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "FromShot": 0.001, - "HandDamageAccuracySpeed": 1.3, - "HandDamageScatteringMinMax": 0.7, - "LayFactor": 0.1, - "MaxScatter": 0.2, - "MinScatter": 0.01, - "MovingSlowCoef": 1.5, - "PoseChnageCoef": 0.1, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1, - "SpeedDown": -0.3, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "ToCaution": 0.6, - "ToLowBotAngularSpeed": 80, - "ToLowBotSpeed": 2.4, - "ToSlowBotSpeed": 1.5, - "ToStopBotAngularSpeed": 40, - "ToUpBotSpeed": 3.6, - "TracerCoef": 1.3, - "WorkingScatter": 0.02 - }, - "Shoot": { - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.1, - "BASE_AUTOMATIC_TIME": 0.25, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 99, - "CHANCE_TO_CHANGE_WEAPON": 80, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "FAR_DIST_ENEMY": 20, - "FAR_DIST_ENEMY_SQR": 400, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "HORIZONT_RECOIL_COEF": 0.04, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "MARKSMAN_DIST_SEK_COEF": 44, - "MAX_DIST_COEF": 1.35, - "MAX_RECOIL_PER_METER": 0.04, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RECOIL_DELTA_PRESS": 0.15, - "RECOIL_PER_METER": 0.01, - "RECOIL_TIME_NORMALIZE": 0.3, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "SHOOT_FROM_COVER": 4, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "WAIT_NEXT_STATIONARY_GRENADE": 1 - } - }, - "hard": { - "Aiming": { - "AIMING_TYPE": 2, - "ANYTIME_LIGHT_WHEN_AIM_100": 40, - "ANY_PART_SHOOT_TIME": 5, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.07, - "BASE_HIT_AFFECTION_MAX_ANG": 4, - "BASE_HIT_AFFECTION_MIN_ANG": 2, - "BASE_SHIEF": 0.03, - "BASE_SHIEF_STATIONARY_GRENADE": 0.15, - "BETTER_PRECICING_COEF": 0.9, - "BOTTOM_COEF": 0.01, - "BOT_MOVE_IF_DELTA": 3.01, - "COEF_FROM_COVER": 0.35, - "COEF_IF_MOVE": 1, - "DAMAGE_PANIC_TIME": 5, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "DANGER_UP_POINT": 1.3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "DIST_TO_SHOOT_TO_CENTER": 3, - "FIRST_CONTACT_ADD_CHANCE_100": 40, - "FIRST_CONTACT_ADD_SEC": 0.01, - "HARD_AIM": 0.75, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "MAX_AIM_PRECICING": 1, - "MAX_AIM_TIME": 1.1, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "NEXT_SHOT_MISS_CHANCE_100": 10, - "NEXT_SHOT_MISS_Y_OFFSET": 0.1, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "PANIC_ACCURATY_COEF": 1.2, - "PANIC_COEF": 1.2, - "PANIC_TIME": 1, - "RECALC_DIST": 0.7, - "RECALC_MUST_TIME": 2, - "RECALC_SQR_DIST": 0.48999998, - "SCATTERING_DIST_MODIF": 0.47, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "SCATTERING_HAVE_DAMAGE_COEF": 1.2, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "TIME_COEF_IF_MOVE": 1.05, - "WEAPON_ROOT_OFFSET": 0.35, - "XZ_COEF": 0.01, - "XZ_COEF_STATIONARY_GRENADE": 0.2 - }, - "Boss": { - "BOSS_DIST_TO_SHOOT": 10, - "BOSS_DIST_TO_SHOOT_SQRT": 100, - "BOSS_DIST_TO_WARNING": 20, - "BOSS_DIST_TO_WARNING_OUT": 35, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 625, - "BOSS_DIST_TO_WARNING_SQRT": 400, - "CHANCE_TO_SEND_GRENADE_100": 100, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "COVER_TO_SEND": true, - "DELTA_SEARCH_TIME": 18, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_BULLET_TO_RELOAD": 15, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_CONTUTION_TIME": 5, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_HOLD_DELAY": 5, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_SEARCH_METERS": 30, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "MAX_DIST_COVER_BOSS": 65, - "MAX_DIST_COVER_BOSS_SQRT": 4225, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "NOT_ADD_TO_ENEMY_ON_KILLS": true, - "PERSONS_SEND": 2, - "SHALL_WARN": true, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "WAIT_NO_ATTACK_SAVAGE": 10 - }, - "Change": { - "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_HEARING": 1, - "FLASH_LAY_CHANCE": 1, - "FLASH_PRECICING": 1.6, - "FLASH_SCATTERING": 1.6, - "FLASH_VISION_DIST": 0.05, - "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_LAY_CHANCE": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_VISION_DIST": 0.6, - "STUN_HEARING": 0.01 - }, - "Core": { - "AccuratySpeed": 0.15, - "AimingType": "normal", - "CanGrenade": true, - "CanRun": true, - "DamageCoeff": 1, - "GainSightCoef": 0.05, - "HearingSense": 10.9, - "PistolFireDistancePref": 35, - "RifleFireDistancePref": 100, - "ScatteringClosePerMeter": 0.12, - "ScatteringPerMeter": 0.045, - "ShotgunFireDistancePref": 50, - "VisibleAngle": 180, - "VisibleDistance": 262, - "WaitInCoverBetweenShotsSec": 0.35 - }, - "Cover": { - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "CHECK_COVER_ENEMY_LOOK": false, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "DEPENDS_Y_DIST_TO_BOT": false, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "DIST_CHECK_SFETY": 9, - "DOG_FIGHT_AFTER_LEAVE": 4, - "ENEMY_DIST_TO_GO_OUT": 1, - "GOOD_DIST_TO_POINT_COEF": 9999, - "HIDE_TO_COVER_TIME": 1.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "MAX_DIST_OF_COVER": 4, - "MAX_DIST_OF_COVER_SQR": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "MIN_DEFENCE_LEVEL": 5, - "MIN_DIST_TO_ENEMY": 9, - "MOVE_TO_COVER_WHEN_TARGET": false, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "RUN_IF_FAR": 10, - "RUN_IF_FAR_SQRT": 225, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "SHOOT_NEAR_TO_LEAVE": 2, - "SOUND_TO_GET_SPOTTED": 2, - "SPOTTED_COVERS_RADIUS": 2.5, - "SPOTTED_GRENADE_RADIUS": 16, - "SPOTTED_GRENADE_TIME": 7, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "TIME_CHECK_SAFE": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "WAIT_INT_COVER_FINDING_ENEMY": 2 - }, - "Grenade": { - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "ANG_TYPE": 4, - "BEWARE_TYPE": 2, - "BE_ATTENTION_COEF": 4, - "CAN_THROW_STRAIGHT_CONTACT": true, - "CHANCE_RUN_FLASHED_100": 100, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "CHEAT_START_GRENADE_PLACE": false, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "DELTA_GRENADE_START_TIME": 0.01, - "DELTA_NEXT_ATTEMPT": 10, - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "FLASH_GRENADE_TIME_COEF": 0.25, - "GrenadePerMeter": 0.15, - "GrenadePrecision": 0.1, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "MAX_THROW_POWER": 18.7, - "MIN_DIST_NOT_TO_THROW": 8, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "NO_RUN_FROM_AI_GRENADES": true, - "REQUEST_DIST_MUST_THROW": 3, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "SIZE_SPOTTED_COEF": 2, - "SMOKE_CHECK_DELTA": 1, - "SMOKE_SUPPRESS_DELTA": 20, - "STOP_WHEN_THROW_GRENADE": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "STUN_SUPPRESS_DELTA": 9, - "TIME_SHOOT_TO_FLASH": 4, - "WAIT_TIME_TURN_AWAY": 0.2 - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.99, - "CLOSE_DIST": 96, - "DEAD_BODY_SOUND_RAD": 30, - "DISPERSION_COEF": 20, - "DIST_PLACE_TO_FIND_POINT": 70, - "FAR_DIST": 176, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "HEAR_DELAY_WHEN_PEACE": 0, - "LOOK_ONLY_DANGER": false, - "LOOK_ONLY_DANGER_DELTA": 9, - "RESET_TIMER_DIST": 17, - "SOUND_DIR_DEEFREE": 30 - }, - "Lay": { - "ATTACK_LAY_CHANCE": 25, - "CHECK_SHOOT_WHEN_LAYING": false, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "DAMAGE_TIME_TO_GETUP": 3, - "DELTA_AFTER_GETUP": 10, - "DELTA_GETUP": 2.7, - "DELTA_LAY_CHECK": 2, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "LAY_AIM": 0.6, - "LAY_CHANCE_DANGER": 40, - "MAX_CAN_LAY_DIST": 200, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_LAY_TIME": 35, - "MIN_CAN_LAY_DIST": 11, - "MIN_CAN_LAY_DIST_SQRT": 121 - }, - "Look": { - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "CAN_LOOK_TO_WALL": true, - "COME_TO_BODY_DIST": 1.2, - "CloseDeltaTimeSec": 0.1, - "DIST_CHECK_WALL": 20, - "DIST_NOT_TO_IGNORE_WALL": 15, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "FAR_DISTANCE": 260, - "FarDeltaTimeSec": 3, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "LOOK_AROUND_DELTA": 1.1, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LightOnVisionDistance": 95, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MIDDLE_DIST": 90, - "MIN_LOOK_AROUD_TIME": 20, - "MiddleDeltaTimeSec": 1, - "OLD_TIME_POINT": 11, - "OPTIMIZE_TO_ONLY_BODY": true, - "POSIBLE_VISION_SPACE": 1.2, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8 - }, - "Mind": { - "AGGRESSOR_LOYALTY_BONUS": 0, - "AI_POWER_COEF": 120, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "BULLET_FEEL_CLOSE_SDIST": 1, - "BULLET_FEEL_DIST": 360, - "CAN_PANIC_IS_PROTECT": false, - "CAN_RECIVE_PLAYER_REQUESTS": true, - "CAN_STAND_BY": false, - "CAN_TAKE_ANY_ITEM": true, - "CAN_TAKE_ITEMS": true, - "CAN_THROW_REQUESTS": true, - "CAN_USE_MEDS": true, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "COVER_DIST_COEF": 1.5, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "DANGER_POINT_CHOOSE_COEF": 1, - "DEFAULT_BEAR_BEHAVIOUR": "Ignore", - "DEFAULT_ENEMY_BEAR": false, - "DEFAULT_ENEMY_SAVAGE": false, - "DEFAULT_ENEMY_USEC": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "Ignore", - "DEFAULT_USEC_BEHAVIOUR": "Ignore", - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "DIST_TO_FOUND_SQRT": 400, - "DIST_TO_STOP_RUN_ENEMY": 15, - "DOG_FIGHT_IN": 3, - "DOG_FIGHT_OUT": 6, - "ENEMY_BOT_TYPES": [], - "ENEMY_BY_GROUPS_PMC_PLAYERS": false, - "ENEMY_BY_GROUPS_SAVAGE_PLAYERS": false, - "ENEMY_LOOK_AT_ME_ANG": 15, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "FRIENDLY_BOT_TYPES": [], - "FRIEND_AGR_KILL": 0.2, - "FRIEND_DEAD_AGR_LOW": -0.2, - "GIFTER_ADDITIONAL_GIFTS": 1, - "GROUP_ANY_PHRASE_DELAY": 20, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "HIT_POINT_DETECTION": 4, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "MAX_AGGRO_BOT_DIST": 100, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "MAX_SHOOTS_TIME": 4, - "MAX_START_AGGRESION_COEF": 3, - "MIN_DAMAGE_SCARE": 20, - "MIN_SHOOTS_TIME": 2, - "MIN_START_AGGRESION_COEF": 1, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30, - "PROTECT_DELTA_HEAL_SEC": 10, - "PROTECT_TIME_REAL": true, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "STANDART_AMBUSH_DIST": 100, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "TALK_WITH_QUERY": true, - "TIME_TO_FIND_ENEMY": 22, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "WARN_BOT_TYPES": [] - }, - "Move": { - "BASESTART_SLOW_DIST": 1.1, - "BASE_ROTATE_SPEED": 270, - "BASE_SQRT_START_SERACH": 1225, - "BASE_START_SERACH": 35, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "DELTA_LAST_SEEN_ENEMY": 20, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST": 15, - "DIST_TO_START_RAYCAST_SQR": 225, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "REACH_DIST": 0.5, - "REACH_DIST_COVER": 2, - "REACH_DIST_RUN": 0.8, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "RUN_TO_COVER_MIN": 2, - "SEC_TO_CHANGE_TO_RUN": 3, - "SLOW_COEF": 7, - "START_SLOW_DIST": 1.5, - "UPDATE_TIME_RECAL_WAY": 7, - "Y_APPROXIMATION": 0.7 - }, - "Patrol": { - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "CHANGE_WAY_TIME": 325.1, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "CUT_WAY_MAX_0_1": 0.65, - "CUT_WAY_MIN_0_1": 0.4, - "FRIEND_SEARCH_SEC": 12, - "LOOK_TIME_BASE": 12, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "MIN_DIST_TO_CLOSE_TALK": 5, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "MIN_TALK_DELAY": 35, - "PICKUP_ITEMS_TO_BACKPACK_OR_CONTAINER": true, - "RESERVE_OUT_TIME": 60, - "RESERVE_TIME_STAY": 72, - "SUSPETION_PLACE_LIFETIME": 7, - "TALK_DELAY": 1.1, - "TALK_DELAY_BIG": 45.1, - "VISION_DIST_COEF_PEACE": 0.75 - }, - "Scattering": { - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "BloodFall": 1.45, - "Caution": 0.3, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "FromShot": 0.001, - "HandDamageAccuracySpeed": 1.3, - "HandDamageScatteringMinMax": 0.7, - "LayFactor": 0.1, - "MaxScatter": 0.2, - "MinScatter": 0.01, - "MovingSlowCoef": 1.5, - "PoseChnageCoef": 0.1, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1, - "SpeedDown": -0.3, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "ToCaution": 0.6, - "ToLowBotAngularSpeed": 80, - "ToLowBotSpeed": 2.4, - "ToSlowBotSpeed": 1.5, - "ToStopBotAngularSpeed": 40, - "ToUpBotSpeed": 3.6, - "TracerCoef": 1.3, - "WorkingScatter": 0.02 - }, - "Shoot": { - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.1, - "BASE_AUTOMATIC_TIME": 0.25, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 99, - "CHANCE_TO_CHANGE_WEAPON": 80, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "FAR_DIST_ENEMY": 20, - "FAR_DIST_ENEMY_SQR": 400, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "HORIZONT_RECOIL_COEF": 0.04, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "MARKSMAN_DIST_SEK_COEF": 44, - "MAX_DIST_COEF": 1.35, - "MAX_RECOIL_PER_METER": 0.04, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RECOIL_DELTA_PRESS": 0.15, - "RECOIL_PER_METER": 0.01, - "RECOIL_TIME_NORMALIZE": 0.3, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "SHOOT_FROM_COVER": 4, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "WAIT_NEXT_STATIONARY_GRENADE": 1 - } - }, - "impossible": { - "Aiming": { - "AIMING_TYPE": 2, - "ANYTIME_LIGHT_WHEN_AIM_100": 40, - "ANY_PART_SHOOT_TIME": 5, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.07, - "BASE_HIT_AFFECTION_MAX_ANG": 4, - "BASE_HIT_AFFECTION_MIN_ANG": 2, - "BASE_SHIEF": 0.03, - "BASE_SHIEF_STATIONARY_GRENADE": 0.15, - "BETTER_PRECICING_COEF": 0.9, - "BOTTOM_COEF": 0.01, - "BOT_MOVE_IF_DELTA": 3.01, - "COEF_FROM_COVER": 0.35, - "COEF_IF_MOVE": 1, - "DAMAGE_PANIC_TIME": 5, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "DANGER_UP_POINT": 1.3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "DIST_TO_SHOOT_TO_CENTER": 3, - "FIRST_CONTACT_ADD_CHANCE_100": 40, - "FIRST_CONTACT_ADD_SEC": 0.01, - "HARD_AIM": 0.75, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "MAX_AIM_PRECICING": 1, - "MAX_AIM_TIME": 1.1, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "NEXT_SHOT_MISS_CHANCE_100": 10, - "NEXT_SHOT_MISS_Y_OFFSET": 0.1, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "PANIC_ACCURATY_COEF": 1.2, - "PANIC_COEF": 1.2, - "PANIC_TIME": 1, - "RECALC_DIST": 0.7, - "RECALC_MUST_TIME": 2, - "RECALC_SQR_DIST": 0.48999998, - "SCATTERING_DIST_MODIF": 0.47, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "SCATTERING_HAVE_DAMAGE_COEF": 1.2, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "TIME_COEF_IF_MOVE": 1.05, - "WEAPON_ROOT_OFFSET": 0.35, - "XZ_COEF": 0.01, - "XZ_COEF_STATIONARY_GRENADE": 0.2 - }, - "Boss": { - "BOSS_DIST_TO_SHOOT": 10, - "BOSS_DIST_TO_SHOOT_SQRT": 100, - "BOSS_DIST_TO_WARNING": 20, - "BOSS_DIST_TO_WARNING_OUT": 35, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 625, - "BOSS_DIST_TO_WARNING_SQRT": 400, - "CHANCE_TO_SEND_GRENADE_100": 100, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "COVER_TO_SEND": true, - "DELTA_SEARCH_TIME": 18, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_BULLET_TO_RELOAD": 15, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_CONTUTION_TIME": 5, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_HOLD_DELAY": 5, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_SEARCH_METERS": 30, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "MAX_DIST_COVER_BOSS": 65, - "MAX_DIST_COVER_BOSS_SQRT": 4225, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "NOT_ADD_TO_ENEMY_ON_KILLS": true, - "PERSONS_SEND": 2, - "SHALL_WARN": true, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "WAIT_NO_ATTACK_SAVAGE": 10 - }, - "Change": { - "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_HEARING": 1, - "FLASH_LAY_CHANCE": 1, - "FLASH_PRECICING": 1.6, - "FLASH_SCATTERING": 1.6, - "FLASH_VISION_DIST": 0.05, - "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_LAY_CHANCE": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_VISION_DIST": 0.6, - "STUN_HEARING": 0.01 - }, - "Core": { - "AccuratySpeed": 0.15, - "AimingType": "normal", - "CanGrenade": true, - "CanRun": true, - "DamageCoeff": 1, - "GainSightCoef": 0.05, - "HearingSense": 10.9, - "PistolFireDistancePref": 35, - "RifleFireDistancePref": 100, - "ScatteringClosePerMeter": 0.12, - "ScatteringPerMeter": 0.045, - "ShotgunFireDistancePref": 50, - "VisibleAngle": 180, - "VisibleDistance": 262, - "WaitInCoverBetweenShotsSec": 0.35 - }, - "Cover": { - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "CHECK_COVER_ENEMY_LOOK": false, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "DEPENDS_Y_DIST_TO_BOT": false, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "DIST_CHECK_SFETY": 9, - "DOG_FIGHT_AFTER_LEAVE": 4, - "ENEMY_DIST_TO_GO_OUT": 1, - "GOOD_DIST_TO_POINT_COEF": 9999, - "HIDE_TO_COVER_TIME": 1.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "MAX_DIST_OF_COVER": 4, - "MAX_DIST_OF_COVER_SQR": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "MIN_DEFENCE_LEVEL": 5, - "MIN_DIST_TO_ENEMY": 9, - "MOVE_TO_COVER_WHEN_TARGET": false, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "RUN_IF_FAR": 10, - "RUN_IF_FAR_SQRT": 225, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "SHOOT_NEAR_TO_LEAVE": 2, - "SOUND_TO_GET_SPOTTED": 2, - "SPOTTED_COVERS_RADIUS": 2.5, - "SPOTTED_GRENADE_RADIUS": 16, - "SPOTTED_GRENADE_TIME": 7, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "TIME_CHECK_SAFE": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "WAIT_INT_COVER_FINDING_ENEMY": 2 - }, - "Grenade": { - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "ANG_TYPE": 4, - "BEWARE_TYPE": 2, - "BE_ATTENTION_COEF": 4, - "CAN_THROW_STRAIGHT_CONTACT": true, - "CHANCE_RUN_FLASHED_100": 100, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "CHEAT_START_GRENADE_PLACE": false, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "DELTA_GRENADE_START_TIME": 0.01, - "DELTA_NEXT_ATTEMPT": 10, - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "FLASH_GRENADE_TIME_COEF": 0.25, - "GrenadePerMeter": 0.15, - "GrenadePrecision": 0.1, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "MAX_THROW_POWER": 18.7, - "MIN_DIST_NOT_TO_THROW": 8, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "NO_RUN_FROM_AI_GRENADES": true, - "REQUEST_DIST_MUST_THROW": 3, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "SIZE_SPOTTED_COEF": 2, - "SMOKE_CHECK_DELTA": 1, - "SMOKE_SUPPRESS_DELTA": 20, - "STOP_WHEN_THROW_GRENADE": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "STUN_SUPPRESS_DELTA": 9, - "TIME_SHOOT_TO_FLASH": 4, - "WAIT_TIME_TURN_AWAY": 0.2 - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.99, - "CLOSE_DIST": 96, - "DEAD_BODY_SOUND_RAD": 30, - "DISPERSION_COEF": 20, - "DIST_PLACE_TO_FIND_POINT": 70, - "FAR_DIST": 176, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "HEAR_DELAY_WHEN_PEACE": 0, - "LOOK_ONLY_DANGER": false, - "LOOK_ONLY_DANGER_DELTA": 9, - "RESET_TIMER_DIST": 17, - "SOUND_DIR_DEEFREE": 30 - }, - "Lay": { - "ATTACK_LAY_CHANCE": 25, - "CHECK_SHOOT_WHEN_LAYING": false, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "DAMAGE_TIME_TO_GETUP": 3, - "DELTA_AFTER_GETUP": 10, - "DELTA_GETUP": 2.7, - "DELTA_LAY_CHECK": 2, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "LAY_AIM": 0.6, - "LAY_CHANCE_DANGER": 40, - "MAX_CAN_LAY_DIST": 200, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_LAY_TIME": 35, - "MIN_CAN_LAY_DIST": 11, - "MIN_CAN_LAY_DIST_SQRT": 121 - }, - "Look": { - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "CAN_LOOK_TO_WALL": true, - "COME_TO_BODY_DIST": 1.2, - "CloseDeltaTimeSec": 0.1, - "DIST_CHECK_WALL": 20, - "DIST_NOT_TO_IGNORE_WALL": 15, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "FAR_DISTANCE": 260, - "FarDeltaTimeSec": 3, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "LOOK_AROUND_DELTA": 1.1, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LightOnVisionDistance": 95, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MIDDLE_DIST": 90, - "MIN_LOOK_AROUD_TIME": 20, - "MiddleDeltaTimeSec": 1, - "OLD_TIME_POINT": 11, - "OPTIMIZE_TO_ONLY_BODY": true, - "POSIBLE_VISION_SPACE": 1.2, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8 - }, - "Mind": { - "AGGRESSOR_LOYALTY_BONUS": 0, - "AI_POWER_COEF": 120, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "BULLET_FEEL_CLOSE_SDIST": 1, - "BULLET_FEEL_DIST": 360, - "CAN_PANIC_IS_PROTECT": false, - "CAN_RECIVE_PLAYER_REQUESTS": true, - "CAN_STAND_BY": false, - "CAN_TAKE_ANY_ITEM": true, - "CAN_TAKE_ITEMS": true, - "CAN_THROW_REQUESTS": true, - "CAN_USE_MEDS": true, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "COVER_DIST_COEF": 1.5, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "DANGER_POINT_CHOOSE_COEF": 1, - "DEFAULT_BEAR_BEHAVIOUR": "Ignore", - "DEFAULT_ENEMY_BEAR": false, - "DEFAULT_ENEMY_SAVAGE": false, - "DEFAULT_ENEMY_USEC": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "Ignore", - "DEFAULT_USEC_BEHAVIOUR": "Ignore", - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "DIST_TO_FOUND_SQRT": 400, - "DIST_TO_STOP_RUN_ENEMY": 15, - "DOG_FIGHT_IN": 3, - "DOG_FIGHT_OUT": 6, - "ENEMY_BOT_TYPES": [], - "ENEMY_BY_GROUPS_PMC_PLAYERS": false, - "ENEMY_BY_GROUPS_SAVAGE_PLAYERS": false, - "ENEMY_LOOK_AT_ME_ANG": 15, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "FRIENDLY_BOT_TYPES": [], - "FRIEND_AGR_KILL": 0.2, - "FRIEND_DEAD_AGR_LOW": -0.2, - "GIFTER_ADDITIONAL_GIFTS": 1, - "GROUP_ANY_PHRASE_DELAY": 20, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "HIT_POINT_DETECTION": 4, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "MAX_AGGRO_BOT_DIST": 100, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "MAX_SHOOTS_TIME": 4, - "MAX_START_AGGRESION_COEF": 3, - "MIN_DAMAGE_SCARE": 20, - "MIN_SHOOTS_TIME": 2, - "MIN_START_AGGRESION_COEF": 1, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30, - "PROTECT_DELTA_HEAL_SEC": 10, - "PROTECT_TIME_REAL": true, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "STANDART_AMBUSH_DIST": 100, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "TALK_WITH_QUERY": true, - "TIME_TO_FIND_ENEMY": 22, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "WARN_BOT_TYPES": [] - }, - "Move": { - "BASESTART_SLOW_DIST": 1.1, - "BASE_ROTATE_SPEED": 270, - "BASE_SQRT_START_SERACH": 1225, - "BASE_START_SERACH": 35, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "DELTA_LAST_SEEN_ENEMY": 20, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST": 15, - "DIST_TO_START_RAYCAST_SQR": 225, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "REACH_DIST": 0.5, - "REACH_DIST_COVER": 2, - "REACH_DIST_RUN": 0.8, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "RUN_TO_COVER_MIN": 2, - "SEC_TO_CHANGE_TO_RUN": 3, - "SLOW_COEF": 7, - "START_SLOW_DIST": 1.5, - "UPDATE_TIME_RECAL_WAY": 7, - "Y_APPROXIMATION": 0.7 - }, - "Patrol": { - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "CHANGE_WAY_TIME": 325.1, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "CUT_WAY_MAX_0_1": 0.65, - "CUT_WAY_MIN_0_1": 0.4, - "FRIEND_SEARCH_SEC": 12, - "LOOK_TIME_BASE": 12, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "MIN_DIST_TO_CLOSE_TALK": 5, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "MIN_TALK_DELAY": 35, - "PICKUP_ITEMS_TO_BACKPACK_OR_CONTAINER": true, - "RESERVE_OUT_TIME": 60, - "RESERVE_TIME_STAY": 72, - "SUSPETION_PLACE_LIFETIME": 7, - "TALK_DELAY": 1.1, - "TALK_DELAY_BIG": 45.1, - "VISION_DIST_COEF_PEACE": 0.75 - }, - "Scattering": { - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "BloodFall": 1.45, - "Caution": 0.3, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "FromShot": 0.001, - "HandDamageAccuracySpeed": 1.3, - "HandDamageScatteringMinMax": 0.7, - "LayFactor": 0.1, - "MaxScatter": 0.2, - "MinScatter": 0.01, - "MovingSlowCoef": 1.5, - "PoseChnageCoef": 0.1, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1, - "SpeedDown": -0.3, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "ToCaution": 0.6, - "ToLowBotAngularSpeed": 80, - "ToLowBotSpeed": 2.4, - "ToSlowBotSpeed": 1.5, - "ToStopBotAngularSpeed": 40, - "ToUpBotSpeed": 3.6, - "TracerCoef": 1.3, - "WorkingScatter": 0.02 - }, - "Shoot": { - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.1, - "BASE_AUTOMATIC_TIME": 0.25, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 99, - "CHANCE_TO_CHANGE_WEAPON": 80, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "FAR_DIST_ENEMY": 20, - "FAR_DIST_ENEMY_SQR": 400, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "HORIZONT_RECOIL_COEF": 0.04, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "MARKSMAN_DIST_SEK_COEF": 44, - "MAX_DIST_COEF": 1.35, - "MAX_RECOIL_PER_METER": 0.04, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RECOIL_DELTA_PRESS": 0.15, - "RECOIL_PER_METER": 0.01, - "RECOIL_TIME_NORMALIZE": 0.3, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "SHOOT_FROM_COVER": 4, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "WAIT_NEXT_STATIONARY_GRENADE": 1 - } - }, - "normal": { - "Aiming": { - "AIMING_TYPE": 2, - "ANYTIME_LIGHT_WHEN_AIM_100": 40, - "ANY_PART_SHOOT_TIME": 5, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.07, - "BASE_HIT_AFFECTION_MAX_ANG": 4, - "BASE_HIT_AFFECTION_MIN_ANG": 2, - "BASE_SHIEF": 0.03, - "BASE_SHIEF_STATIONARY_GRENADE": 0.15, - "BETTER_PRECICING_COEF": 0.9, - "BOTTOM_COEF": 0.01, - "BOT_MOVE_IF_DELTA": 3.01, - "COEF_FROM_COVER": 0.35, - "COEF_IF_MOVE": 1, - "DAMAGE_PANIC_TIME": 5, - "DAMAGE_TO_DISCARD_AIM_0_100": 86, - "DANGER_UP_POINT": 1.3, - "DIST_TO_SHOOT_NO_OFFSET": 3, - "DIST_TO_SHOOT_TO_CENTER": 3, - "FIRST_CONTACT_ADD_CHANCE_100": 40, - "FIRST_CONTACT_ADD_SEC": 0.01, - "HARD_AIM": 0.75, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "MAX_AIM_PRECICING": 1, - "MAX_AIM_TIME": 1.1, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "NEXT_SHOT_MISS_CHANCE_100": 10, - "NEXT_SHOT_MISS_Y_OFFSET": 0.1, - "OFFSET_RECAL_ANYWAY_TIME": 1, - "PANIC_ACCURATY_COEF": 1.2, - "PANIC_COEF": 1.2, - "PANIC_TIME": 1, - "RECALC_DIST": 0.7, - "RECALC_MUST_TIME": 2, - "RECALC_SQR_DIST": 0.48999998, - "SCATTERING_DIST_MODIF": 0.47, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "SCATTERING_HAVE_DAMAGE_COEF": 1.2, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "TIME_COEF_IF_MOVE": 1.05, - "WEAPON_ROOT_OFFSET": 0.35, - "XZ_COEF": 0.01, - "XZ_COEF_STATIONARY_GRENADE": 0.2 - }, - "Boss": { - "BOSS_DIST_TO_SHOOT": 10, - "BOSS_DIST_TO_SHOOT_SQRT": 100, - "BOSS_DIST_TO_WARNING": 20, - "BOSS_DIST_TO_WARNING_OUT": 35, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 625, - "BOSS_DIST_TO_WARNING_SQRT": 400, - "CHANCE_TO_SEND_GRENADE_100": 100, - "CHANCE_USE_RESERVE_PATROL_100": 30, - "COVER_TO_SEND": true, - "DELTA_SEARCH_TIME": 18, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, - "KILLA_BULLET_TO_RELOAD": 15, - "KILLA_CLOSEATTACK_DELAY": 10, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSE_ATTACK_DIST": 8, - "KILLA_CONTUTION_TIME": 5, - "KILLA_DEF_DIST_SQRT": 225, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 45, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_HOLD_DELAY": 5, - "KILLA_LARGE_ATTACK_DIST": 41, - "KILLA_MIDDLE_ATTACK_DIST": 22, - "KILLA_ONE_IS_CLOSE": 30, - "KILLA_SEARCH_METERS": 30, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, - "KILLA_START_SEARCH_SEC": 40, - "KILLA_TRIGGER_DOWN_DELAY": 1, - "KILLA_WAIT_IN_COVER_COEF": 1, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, - "MAX_DIST_COVER_BOSS": 65, - "MAX_DIST_COVER_BOSS_SQRT": 4225, - "MAX_DIST_DECIDER_TO_SEND": 35, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, - "NOT_ADD_TO_ENEMY_ON_KILLS": true, - "PERSONS_SEND": 2, - "SHALL_WARN": true, - "TIME_AFTER_LOSE": 15, - "TIME_AFTER_LOSE_DELTA": 60, - "WAIT_NO_ATTACK_SAVAGE": 10 - }, - "Change": { - "FLASH_ACCURATY": 1.6, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_HEARING": 1, - "FLASH_LAY_CHANCE": 1, - "FLASH_PRECICING": 1.6, - "FLASH_SCATTERING": 1.6, - "FLASH_VISION_DIST": 0.05, - "SMOKE_ACCURATY": 1.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_HEARING": 1, - "SMOKE_LAY_CHANCE": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_VISION_DIST": 0.6, - "STUN_HEARING": 0.01 - }, - "Core": { - "AccuratySpeed": 0.15, - "AimingType": "normal", - "CanGrenade": true, - "CanRun": true, - "DamageCoeff": 1, - "GainSightCoef": 0.05, - "HearingSense": 10.9, - "PistolFireDistancePref": 35, - "RifleFireDistancePref": 100, - "ScatteringClosePerMeter": 0.12, - "ScatteringPerMeter": 0.045, - "ShotgunFireDistancePref": 50, - "VisibleAngle": 180, - "VisibleDistance": 262, - "WaitInCoverBetweenShotsSec": 0.35 - }, - "Cover": { - "CHANGE_RUN_TO_COVER_SEC": 5, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "CHECK_COVER_ENEMY_LOOK": false, - "CLOSE_DIST_POINT_SQRT": 4, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15, - "DEPENDS_Y_DIST_TO_BOT": false, - "DIST_CANT_CHANGE_WAY": 5, - "DIST_CANT_CHANGE_WAY_SQR": 25, - "DIST_CHECK_SFETY": 9, - "DOG_FIGHT_AFTER_LEAVE": 4, - "ENEMY_DIST_TO_GO_OUT": 1, - "GOOD_DIST_TO_POINT_COEF": 9999, - "HIDE_TO_COVER_TIME": 1.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, - "MAX_DIST_OF_COVER": 4, - "MAX_DIST_OF_COVER_SQR": 16, - "MAX_SPOTTED_TIME_SEC": 55, - "MIN_DEFENCE_LEVEL": 5, - "MIN_DIST_TO_ENEMY": 9, - "MOVE_TO_COVER_WHEN_TARGET": false, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "RUN_IF_FAR": 10, - "RUN_IF_FAR_SQRT": 225, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "SHOOT_NEAR_TO_LEAVE": 2, - "SOUND_TO_GET_SPOTTED": 2, - "SPOTTED_COVERS_RADIUS": 2.5, - "SPOTTED_GRENADE_RADIUS": 16, - "SPOTTED_GRENADE_TIME": 7, - "STATIONARY_WEAPON_MAX_DIST_TO_USE": 25, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, - "STAY_IF_FAR": 25, - "STAY_IF_FAR_SQRT": 625, - "TIME_CHECK_SAFE": 2, - "TIME_TO_MOVE_TO_COVER": 15, - "WAIT_INT_COVER_FINDING_ENEMY": 2 - }, - "Grenade": { - "ADD_GRENADE_AS_DANGER": 65, - "ADD_GRENADE_AS_DANGER_SQR": 4225, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, - "ANG_TYPE": 4, - "BEWARE_TYPE": 2, - "BE_ATTENTION_COEF": 4, - "CAN_THROW_STRAIGHT_CONTACT": true, - "CHANCE_RUN_FLASHED_100": 100, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, - "CHEAT_START_GRENADE_PLACE": false, - "CLOSE_TO_SMOKE_TIME_DELTA": 5, - "CLOSE_TO_SMOKE_TO_SHOOT": 10, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, - "DELTA_GRENADE_START_TIME": 0.01, - "DELTA_NEXT_ATTEMPT": 10, - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, - "FLASH_GRENADE_TIME_COEF": 0.25, - "GrenadePerMeter": 0.15, - "GrenadePrecision": 0.1, - "MAX_FLASHED_DIST_TO_SHOOT": 10, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, - "MAX_THROW_POWER": 18.7, - "MIN_DIST_NOT_TO_THROW": 8, - "MIN_DIST_NOT_TO_THROW_SQR": 64, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "MIN_THROW_GRENADE_DIST": 12, - "MIN_THROW_GRENADE_DIST_SQRT": 144, - "NEAR_DELTA_THROW_TIME_SEC": 2, - "NO_RUN_FROM_AI_GRENADES": true, - "REQUEST_DIST_MUST_THROW": 3, - "REQUEST_DIST_MUST_THROW_SQRT": 9, - "RUN_AWAY": 22, - "RUN_AWAY_SQR": 484, - "SHOOT_TO_SMOKE_CHANCE_100": 50, - "SIZE_SPOTTED_COEF": 2, - "SMOKE_CHECK_DELTA": 1, - "SMOKE_SUPPRESS_DELTA": 20, - "STOP_WHEN_THROW_GRENADE": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1, - "STUN_SUPPRESS_DELTA": 9, - "TIME_SHOOT_TO_FLASH": 4, - "WAIT_TIME_TURN_AWAY": 0.2 - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.99, - "CLOSE_DIST": 96, - "DEAD_BODY_SOUND_RAD": 30, - "DISPERSION_COEF": 20, - "DIST_PLACE_TO_FIND_POINT": 70, - "FAR_DIST": 176, - "HEAR_DELAY_WHEN_HAVE_SMT": 0, - "HEAR_DELAY_WHEN_PEACE": 0, - "LOOK_ONLY_DANGER": false, - "LOOK_ONLY_DANGER_DELTA": 9, - "RESET_TIMER_DIST": 17, - "SOUND_DIR_DEEFREE": 30 - }, - "Lay": { - "ATTACK_LAY_CHANCE": 25, - "CHECK_SHOOT_WHEN_LAYING": false, - "CLEAR_POINTS_OF_SCARE_SEC": 20, - "DAMAGE_TIME_TO_GETUP": 3, - "DELTA_AFTER_GETUP": 10, - "DELTA_GETUP": 2.7, - "DELTA_LAY_CHECK": 2, - "DELTA_WANT_LAY_CHECL_SEC": 5, - "DIST_ENEMY_CAN_LAY": 15, - "DIST_ENEMY_CAN_LAY_SQRT": 225, - "DIST_ENEMY_GETUP_LAY": 10, - "DIST_ENEMY_GETUP_LAY_SQRT": 100, - "DIST_ENEMY_NULL_DANGER_LAY": 15, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "LAY_AIM": 0.6, - "LAY_CHANCE_DANGER": 40, - "MAX_CAN_LAY_DIST": 200, - "MAX_CAN_LAY_DIST_SQRT": 40000, - "MAX_LAY_TIME": 35, - "MIN_CAN_LAY_DIST": 11, - "MIN_CAN_LAY_DIST_SQRT": 121 - }, - "Look": { - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "CAN_LOOK_TO_WALL": true, - "COME_TO_BODY_DIST": 1.2, - "CloseDeltaTimeSec": 0.1, - "DIST_CHECK_WALL": 20, - "DIST_NOT_TO_IGNORE_WALL": 15, - "ENEMY_LIGHT_ADD": 48, - "ENEMY_LIGHT_START_DIST": 90, - "FAR_DISTANCE": 260, - "FarDeltaTimeSec": 3, - "GOAL_TO_FULL_DISSAPEAR": 0.2, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "LOOK_AROUND_DELTA": 1.1, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, - "LightOnVisionDistance": 95, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MIDDLE_DIST": 90, - "MIN_LOOK_AROUD_TIME": 20, - "MiddleDeltaTimeSec": 1, - "OLD_TIME_POINT": 11, - "OPTIMIZE_TO_ONLY_BODY": true, - "POSIBLE_VISION_SPACE": 1.2, - "VISIBLE_DISNACE_WITH_LIGHT": 100, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8 - }, - "Mind": { - "AGGRESSOR_LOYALTY_BONUS": 0, - "AI_POWER_COEF": 120, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, - "BULLET_FEEL_CLOSE_SDIST": 1, - "BULLET_FEEL_DIST": 360, - "CAN_PANIC_IS_PROTECT": false, - "CAN_RECIVE_PLAYER_REQUESTS": true, - "CAN_STAND_BY": false, - "CAN_TAKE_ANY_ITEM": true, - "CAN_TAKE_ITEMS": true, - "CAN_THROW_REQUESTS": true, - "CAN_USE_MEDS": true, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, - "COVER_DIST_COEF": 1.5, - "COVER_SECONDS_AFTER_LOSE_VISION": 10, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "DAMAGE_REDUCTION_TIME_SEC": 20, - "DANGER_POINT_CHOOSE_COEF": 1, - "DEFAULT_BEAR_BEHAVIOUR": "Ignore", - "DEFAULT_ENEMY_BEAR": false, - "DEFAULT_ENEMY_SAVAGE": false, - "DEFAULT_ENEMY_USEC": false, - "DEFAULT_SAVAGE_BEHAVIOUR": "Ignore", - "DEFAULT_USEC_BEHAVIOUR": "Ignore", - "DIST_TO_ENEMY_YO_CAN_HEAL": 30, - "DIST_TO_FOUND_SQRT": 400, - "DIST_TO_STOP_RUN_ENEMY": 15, - "DOG_FIGHT_IN": 3, - "DOG_FIGHT_OUT": 6, - "ENEMY_BOT_TYPES": [], - "ENEMY_BY_GROUPS_PMC_PLAYERS": false, - "ENEMY_BY_GROUPS_SAVAGE_PLAYERS": false, - "ENEMY_LOOK_AT_ME_ANG": 15, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, - "FRIENDLY_BOT_TYPES": [], - "FRIEND_AGR_KILL": 0.2, - "FRIEND_DEAD_AGR_LOW": -0.2, - "GIFTER_ADDITIONAL_GIFTS": 1, - "GROUP_ANY_PHRASE_DELAY": 20, - "GROUP_EXACTLY_PHRASE_DELAY": 20, - "HEAL_DELAY_SEC": 5, - "HIT_DELAY_WHEN_HAVE_SMT": -1, - "HIT_DELAY_WHEN_PEACE": -1, - "HIT_POINT_DETECTION": 4, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "LAST_ENEMY_LOOK_TO": 40, - "MAX_AGGRO_BOT_DIST": 100, - "MAX_AGGRO_BOT_DIST_SQR": 10000, - "MAX_SHOOTS_TIME": 4, - "MAX_START_AGGRESION_COEF": 3, - "MIN_DAMAGE_SCARE": 20, - "MIN_SHOOTS_TIME": 2, - "MIN_START_AGGRESION_COEF": 1, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30, - "PROTECT_DELTA_HEAL_SEC": 10, - "PROTECT_TIME_REAL": true, - "SEC_TO_MORE_DIST_TO_RUN": 10, - "SHOOT_INSTEAD_DOG_FIGHT": 9, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "STANDART_AMBUSH_DIST": 100, - "SUSPETION_POINT_CHANCE_ADD100": 0, - "TALK_WITH_QUERY": true, - "TIME_TO_FIND_ENEMY": 22, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15, - "WARN_BOT_TYPES": [] - }, - "Move": { - "BASESTART_SLOW_DIST": 1.1, - "BASE_ROTATE_SPEED": 270, - "BASE_SQRT_START_SERACH": 1225, - "BASE_START_SERACH": 35, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, - "DELTA_LAST_SEEN_ENEMY": 20, - "DIST_TO_CAN_CHANGE_WAY": 8, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64, - "DIST_TO_START_RAYCAST": 15, - "DIST_TO_START_RAYCAST_SQR": 225, - "FAR_DIST": 4, - "FAR_DIST_SQR": 16, - "REACH_DIST": 0.5, - "REACH_DIST_COVER": 2, - "REACH_DIST_RUN": 0.8, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10, - "RUN_TO_COVER_MIN": 2, - "SEC_TO_CHANGE_TO_RUN": 3, - "SLOW_COEF": 7, - "START_SLOW_DIST": 1.5, - "UPDATE_TIME_RECAL_WAY": 7, - "Y_APPROXIMATION": 0.7 - }, - "Patrol": { - "CHANCE_TO_CHANGE_WAY_0_100": 30, - "CHANCE_TO_CUT_WAY_0_100": 75, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "CHANGE_WAY_TIME": 325.1, - "CLOSE_TO_SELECT_RESERV_WAY": 25, - "CUT_WAY_MAX_0_1": 0.65, - "CUT_WAY_MIN_0_1": 0.4, - "FRIEND_SEARCH_SEC": 12, - "LOOK_TIME_BASE": 12, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, - "MIN_DIST_TO_CLOSE_TALK": 5, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25, - "MIN_TALK_DELAY": 35, - "PICKUP_ITEMS_TO_BACKPACK_OR_CONTAINER": true, - "RESERVE_OUT_TIME": 60, - "RESERVE_TIME_STAY": 72, - "SUSPETION_PLACE_LIFETIME": 7, - "TALK_DELAY": 1.1, - "TALK_DELAY_BIG": 45.1, - "VISION_DIST_COEF_PEACE": 0.75 - }, - "Scattering": { - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "BloodFall": 1.45, - "Caution": 0.3, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, - "DIST_NOT_TO_SHOOT": 0.3, - "FromShot": 0.001, - "HandDamageAccuracySpeed": 1.3, - "HandDamageScatteringMinMax": 0.7, - "LayFactor": 0.1, - "MaxScatter": 0.2, - "MinScatter": 0.01, - "MovingSlowCoef": 1.5, - "PoseChnageCoef": 0.1, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1, - "SpeedDown": -0.3, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "ToCaution": 0.6, - "ToLowBotAngularSpeed": 80, - "ToLowBotSpeed": 2.4, - "ToSlowBotSpeed": 1.5, - "ToStopBotAngularSpeed": 40, - "ToUpBotSpeed": 3.6, - "TracerCoef": 1.3, - "WorkingScatter": 0.02 - }, - "Shoot": { - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.1, - "BASE_AUTOMATIC_TIME": 0.25, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 99, - "CHANCE_TO_CHANGE_WEAPON": 80, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 40, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, - "FAR_DIST_ENEMY": 20, - "FAR_DIST_ENEMY_SQR": 400, - "FAR_DIST_TO_CHANGE_WEAPON": 30, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "HORIZONT_RECOIL_COEF": 0.04, - "LOW_DIST_TO_CHANGE_WEAPON": 5, - "MARKSMAN_DIST_SEK_COEF": 44, - "MAX_DIST_COEF": 1.35, - "MAX_RECOIL_PER_METER": 0.04, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, - "RECOIL_DELTA_PRESS": 0.15, - "RECOIL_PER_METER": 0.01, - "RECOIL_TIME_NORMALIZE": 0.3, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "RUN_DIST_NO_AMMO": 25, - "RUN_DIST_NO_AMMO_SQRT": 625, - "SHOOT_FROM_COVER": 4, - "SUPPRESS_BY_SHOOT_TIME": 6, - "SUPPRESS_TRIGGERS_DOWN": 3, - "VALIDATE_MALFUNCTION_CHANCE": 100, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "WAIT_NEXT_STATIONARY_GRENADE": 1 - } - } - }, - "experience": { - "aggressorBonus": 0, - "level": { - "max": 1, - "min": 0 - }, - "reward": { - "max": 275, - "min": 275 - }, - "standingForKill": 0 - }, - "firstName": [ - "Ирбис", - "Ягуар", - "Сапсан", - "Секач", - "Красный", - "Гюрза", - "Пума", - "Манул", - "Каракурт", - "Питон", - "Тарантул", - "Логгерхед", - "Пантера", - "Тигр", - "Росомаха", - "Пчел", - "Медведь", - "Кайман", - "Барракуда", - "Варан", - "Барс", - "Орел", - "Балу", - "Тайпан", - "Акула", - "Шакал", - "Кобра", - "Кондор", - "Орлан", - "Стервятник", - "Гадюка", - "Беркут", - "Могильник", - "Мантис", - "Зубр", - "Волк", - "Дикобраз", - "Лев", - "Гепард", - "Носорог", - "Падальщик", - "Скорпион", - "Ястреб", - "Вепрь", - "Мангуст", - "Крачун", - "Гриззли", - "Пиранья", - "Ворон", - "Гриф", - "Рысь", - "Кречет", - "Калан", - "Леопард", - "Лис" - ], - "generation": { - "items": { - "backpackLoot": { - "weights": { - "0": 1, - "1": 1, - "2": 2, - "3": 1, - "4": 1, - "5": 1, - "6": 1, - "7": 0 - }, - "whitelist": [] - }, - "drugs": { - "weights": { - "0": 1, - "1": 2, - "2": 0 - }, - "whitelist": [] - }, - "grenades": { - "weights": { - "0": 1, - "1": 1, - "2": 5, - "3": 2, - "4": 1, - "5": 1 - }, - "whitelist": [] - }, - "healing": { - "weights": { - "0": 1, - "1": 2, - "2": 1 - }, - "whitelist": [] - }, - "magazines": { - "weights": { - "0": 0, - "1": 0, - "2": 1, - "3": 3, - "4": 2 - }, - "whitelist": [] - }, - "pocketLoot": { - "weights": { - "0": 1, - "1": 6, - "2": 3, - "3": 1, - "4": 1 - }, - "whitelist": [] - }, - "specialItems": { - "weights": { - "0": 1, - "1": 0 - }, - "whitelist": [] - }, - "stims": { - "weights": { - "0": 2, - "1": 1, - "2": 0 - }, - "whitelist": [] - }, - "vestLoot": { - "weights": { - "0": 1, - "1": 3, - "2": 5, - "3": 1, - "4": 1, - "5": 1, - "6": 1 - }, - "whitelist": [] - } - } - }, - "health": { - "BodyParts": [ - { - "Chest": { - "max": 160, - "min": 160 - }, - "Head": { - "max": 42, - "min": 42 - }, - "LeftArm": { - "max": 100, - "min": 100 - }, - "LeftLeg": { - "max": 110, - "min": 110 - }, - "RightArm": { - "max": 100, - "min": 100 - }, - "RightLeg": { - "max": 110, - "min": 110 - }, - "Stomach": { - "max": 130, - "min": 130 - } - } - ], - "Energy": { - "max": 100, - "min": 100 - }, - "Hydration": { - "max": 100, - "min": 100 - }, - "Temperature": { - "max": 40, - "min": 36 - } - }, - "inventory": { - "Ammo": { - "Caliber1143x23ACP": { - "5e81f423763d9f754677bf2e": 1 - }, - "Caliber12g": { - "560d5e524bdc2d25448b4571": 107, - "5c0d591486f7744c505b416f": 386, - "5d6e6869a4b9361c140bcfde": 1, - "5d6e68a8a4b9360b6c0d54e2": 10, - "5d6e68c4a4b9361b93413f79": 9, - "5d6e6911a4b9361bd5780d52": 41 - }, - "Caliber46x30": { - "5ba2678ad4351e44f824b344": 1 - }, - "Caliber545x39": { - "56dfef82d2720bbd668b4567": 133, - "56dff026d2720bb8668b4567": 61, - "56dff061d2720bb5668b4567": 253, - "56dff2ced2720bb4668b4567": 53, - "56dff3afd2720bba668b4567": 1105, - "56dff4a2d2720bbd668b456a": 46, - "5c0d5e4486f77478390952fe": 44 - }, - "Caliber556x45NATO": { - "54527a984bdc2d4e668b4567": 141, - "54527ac44bdc2d36668b4567": 19, - "59e68f6f86f7746c9f75e846": 38, - "59e6906286f7746c9f75e847": 239, - "59e690b686f7746c9f75e848": 7, - "59e6920f86f77411d82aa167": 65, - "5c0d5ae286f7741e46554302": 218 - }, - "Caliber57x28": { - "5cc80f67e4a949035e43bbba": 4, - "5cc80f8fe4a949033b0224a2": 79, - "5cc86840d7f00c002412c56c": 18 - }, - "Caliber762x35": { - "5fbe3ffdf8b6a877a729ea82": 1 - }, - "Caliber762x39": { - "5656d7c34bdc2d9d198b4587": 367, - "59e0d99486f7744a32234762": 7, - "59e4cf5286f7741778269d8a": 164, - "64b7af434b75259c590fa893": 75, - "64b7af5a8532cf95ee0a0dbd": 285 - }, - "Caliber762x51": { - "58dd3ad986f77403051cba8f": 26, - "5a608bf24f39f98ffc77720e": 16, - "5e023e53d4353e3302577c4c": 325, - "5e023e88277cce2b522ff2b1": 22 - }, - "Caliber9x18PM": { - "573719df2459775a626ccbc2": 256, - "5737218f245977612125ba51": 287 - }, - "Caliber9x19PARA": { - "56d59d3ad2720bdb418b4577": 136, - "5a3c16fe86f77452b62de32a": 523, - "5c0d56a986f774449d5de529": 234, - "5c3df7d588a4501f290594e5": 163, - "5c925fa22e221601da359b7b": 7, - "5efb0e16aeb21837e749c7ff": 174, - "64b7bbb74b75259c590fa897": 655 - }, - "Caliber9x39": { - "57a0dfb82459774d3078b56c": 104, - "57a0e5022459774d1673f889": 73, - "5c0d668f86f7747ccb7f13b2": 21, - "61962d879bb3d20b0946d385": 50, - "6576f96220d53a5b8f3e395e": 25 - } - }, - "equipment": { - "ArmBand": {}, - "ArmorVest": { - "5648a7494bdc2d9d488b4583": 61, - "5b44cf1486f77431723e3d05": 10, - "5b44d0de86f774503d30cba8": 20, - "5b44d22286f774172b0c9de8": 104, - "5c0e655586f774045612eeb2": 30, - "5fd4c474dd870108a754b241": 16, - "609e8540d5c319764c2bc2e9": 63, - "63737f448b28897f2802b874": 24, - "64abd93857958b4249003418": 38, - "64be79c487d1510151095552": 58 - }, - "Backpack": { - "5ca20d5986f774331e7c9602": 268, - "5e9dcf5986f7746c417435b3": 241, - "5f5e467b0bc58666c37e7821": 65, - "6034d103ca006d2dca39b3f0": 77, - "6034d2d697633951dc245ea6": 46, - "6038d614d10cbf667352dd44": 59, - "60a272cc93ef783291411d8e": 62, - "60a2828e8689911a226117f9": 105, - "639346cc1c8f182ad90c8972": 26, - "656f198fb27298d6fd005466": 82 - }, - "Earpiece": { - "5645bcc04bdc2d363b8b4572": 262, - "5aa2ba71e5b5b000137b758f": 266, - "5b432b965acfc47a8774094e": 246, - "5f60cd6cf2bcbb675b00dac6": 138, - "6033fa48ffd42c541047f728": 169, - "628e4e576d783146b124c64d": 30 - }, - "Eyewear": { - "557ff21e4bdc2d89578b4586": 507, - "59e770b986f7742cbd762754": 570, - "5b432be65acfc433000ed01f": 266, - "603409c80ca681766b6a0fb2": 214, - "62a61c988ec41a51b34758d5": 66 - }, - "FaceCover": { - "572b7fa524597762b747ce82": 171, - "59e7715586f7742ee5789605": 255, - "5ab8f4ff86f77431c60d91ba": 199, - "5ab8f85d86f7745cd93a1cf5": 135, - "5b4325355acfc40019478126": 126, - "5b432c305acfc40019478128": 25, - "5b432f3d5acfc4704b4a1dfb": 332, - "5bd073a586f7747e6f135799": 25, - "60363c0c92ec1c31037959f5": 25 - }, - "FirstPrimaryWeapon": { - "5447a9cd4bdc2dbd208b4567": 69, - "54491c4f4bdc2db1078b4568": 133, - "574d967124597745970e7c94": 94, - "576165642459773c7a400233": 56, - "57c44b372459772d2b39b8ce": 5, - "57d14d2524597714373db789": 156, - "57dc2fa62459775949412633": 113, - "583990e32459771419544dd2": 190, - "58948c8e86f77409493f7266": 110, - "5926bb2186f7744b1c6c6e60": 225, - "5a7828548dc32e5a9c28b516": 170, - "5ac4cd105acfc40016339859": 41, - "5ac66d725acfc43b321d4b60": 127, - "5ac66d9b5acfc4001633997a": 117, - "5b0bbe4e5acfc40dc528a72d": 18, - "5bb2475ed4351e00853264e3": 32, - "5bd70322209c4d00d7167b8f": 13, - "5c488a752e221602b412af63": 17, - "5cc82d76e24e8d00134b4b83": 11, - "5d43021ca4b9362eab4b5e25": 10, - "5df8ce05b11454561e39243b": 21, - "5f2a9575926fd9352339381f": 52, - "5fbcc1d9016cce60e8341ab3": 21, - "5fc3f2d5900b1d5091531e57": 23, - "60339954d62c9b14ed777c06": 44, - "606587252535c57a13424cfd": 20, - "623063e994fc3f7b302a9696": 44, - "6259b864ebedf17603599e88": 1, - "63171672192e68c5460cebc5": 27, - "644674a13d52156624001fbc": 32, - "645e0c6b3b381ede770e1cc9": 42, - "6499849fc93611967b034949": 34 - }, - "Headwear": { - "5645bc214bdc2d363b8b4571": 30, - "5aa2a7e8e5b5b00016327c16": 133, - "5aa2b87de5b5b00016327c25": 126, - "5aa2b8d7e5b5b00014028f4a": 133, - "5aa2ba19e5b5b00014028f4e": 165, - "5b40e1525acfc4771e1c6611": 56, - "5b40e2bc5acfc40016388216": 74, - "5b40e3f35acfc40016388218": 76, - "5b40e5e25acfc4001a599bea": 154, - "5b40e61f5acfc4001a599bec": 136, - "5b432d215acfc4771e1c6624": 174, - "5e4bfc1586f774264f7582d3": 62, - "5ea17ca01412a1425304d1c0": 17, - "5f60b34a41e30a4ab12a6947": 16, - "603618feffd42c541047f771": 121, - "60361b5a9a15b10d96792291": 93, - "6040de02647ad86262233012": 115, - "61bca7cda0eae612383adf57": 85, - "65709d2d21b9f815e208ff95": 42, - "65719f0775149d62ce0a670b": 44 - }, - "Holster": { - "56d59856d2720bd8418b456a": 64, - "5d3eb3b0a4b93615055e84d2": 14, - "5f36a0e5fbf956000b716b65": 1846, - "602a9740da11d6478d5a06dc": 37, - "6193a720f8ee7e52e42109ed": 73, - "63088377b5cd696784087147": 34 - }, - "Pockets": { - "557ffd194bdc2d28148b457f": 1 - }, - "Scabbard": {}, - "SecondPrimaryWeapon": {}, - "SecuredContainer": { - "5c0a794586f77461c458f892": 1 - }, - "TacticalVest": { - "544a5caa4bdc2d1a388b4568": 99, - "5929a2a086f7744f4b234d43": 224, - "5e9db13186f7742f845ee9d3": 136, - "5f5f41f56760b4138443b352": 87, - "5fd4c60f875c30179f5d04c2": 121, - "60a3c68c37ea821725773ef5": 16, - "60a621c49c197e4e8c4455e6": 241, - "61bc85697113f767765c7fe7": 74, - "61bcc89aef0f505f0c6cd0fc": 50, - "628d0618d1ba6e4fa07ce5a4": 10, - "639343fce101f4caa40a4ef3": 9, - "64a536392d2c4e6e970f4121": 708, - "64a5366719bab53bd203bf33": 293 - } - }, - "items": { - "Backpack": { - "544fb37f4bdc2dee738b4567": 99, - "557ff21e4bdc2d89578b4586": 2, - "558022b54bdc2dac148b458d": 1, - "558032614bdc2de7118b4585": 1, - "55d35ee94bdc2d61338b4568": 1, - "55d480c04bdc2d1d4e8b456a": 1, - "55d614004bdc2d86028b4568": 1, - "5645bc214bdc2d363b8b4571": 1, - "5648a7494bdc2d9d488b4583": 7, - "5649ae4a4bdc2d1b2b8b4588": 1, - "5649d9a14bdc2d79388b4580": 1, - "56ea8222d2720b69698b4567": 1, - "572b7d8524597762b472f9d1": 3, - "572b7f1624597762ae139822": 1, - "572b7fa124597762b472f9d2": 1, - "572b7fa524597762b747ce82": 3, - "573474f924597738002c6174": 14, - "5734758f24597738025ee253": 3, - "573478bc24597738002c6175": 8, - "57a3459f245977764a01f703": 1, - "57aca93d2459771f2c7e26db": 1, - "57c9a89124597704ee6faec1": 1, - "57cff947245977638e6f2a19": 1, - "584984812459776a704a82a6": 1, - "587e0531245977466077a0f7": 1, - "588226ef24597767af46e39c": 1, - "590de71386f774347051a052": 4, - "590de7e986f7741b096e5f32": 4, - "593d490386f7745ee97a1555": 1, - "59db3acc86f7742a2c4ab912": 1, - "59e0bdb186f774156f04ce82": 1, - "59e0bed186f774156f04ce84": 1, - "59e3639286f7741777737013": 3, - "59e3647686f774176a362507": 1, - "59e3658a86f7741776641ac4": 2, - "59e7635f86f7742cbf2c1095": 3, - "59e7708286f7742cbd762753": 1, - "59e770f986f7742cbe3164ef": 1, - "59e7715586f7742ee5789605": 2, - "59ecc3dd86f7746dc827481c": 1, - "59faf7ca86f7740dbe19f6c2": 3, - "5a16ba61fcdbcb098008728a": 4, - "5a16badafcdbcb001865f72d": 2, - "5a34f7f1c4a2826c6e06d75d": 1, - "5a34fae7c4a2826c6e06d760": 1, - "5a7033908dc32e000a311392": 1, - "5a787f25c5856700186c4ab9": 1, - "5a7c4850e899ef00150be885": 3, - "5a7c74b3e899ef0014332c29": 1, - "5a800961159bd4315e3a1657": 1, - "5aa2a7e8e5b5b00016327c16": 1, - "5aa2b87de5b5b00016327c25": 6, - "5aa2b8d7e5b5b00014028f4a": 2, - "5aa2b9aee5b5b00015693121": 1, - "5aa2ba46e5b5b000137b758d": 1, - "5aa7cfc0e5b5b00015693143": 1, - "5aaf8a0be5b5b00015693243": 1, - "5ab372a310e891001717f0d8": 1, - "5ab8e4ed86f7742d8e50c7fa": 7, - "5ab8f85d86f7745cd93a1cf5": 1, - "5ac4c50d5acfc40019262e87": 1, - "5addbba15acfc400185c2854": 1, - "5addbfbb5acfc400194dbcf7": 1, - "5b3b6dc75acfc47a8773fb1e": 1, - "5b40e2bc5acfc40016388216": 3, - "5b4325355acfc40019478126": 1, - "5b43271c5acfc432ff4dce65": 3, - "5b4327aa5acfc400175496e0": 3, - "5b4329075acfc400153b78ff": 2, - "5b432be65acfc433000ed01f": 2, - "5b44d22286f774172b0c9de8": 1, - "5b7be1ca5acfc400170e2d2f": 1, - "5b7bef9c5acfc43d102852ec": 1, - "5b7d693d5acfc43bca706a3d": 1, - "5bc9bc53d4351e00367fbcee": 3, - "5bd06f5d86f77427101ad47c": 1, - "5bd073a586f7747e6f135799": 1, - "5c066ef40db834001966a595": 3, - "5c0e51be86f774598e797894": 1, - "5c0e530286f7747fa1419862": 1, - "5c0e531286f7747fa54205c2": 3, - "5c0e531d86f7747fa23f4d42": 2, - "5c0e533786f7747fa23f4d47": 1, - "5c0e534186f7747fa1419867": 1, - "5c0e53c886f7747fa54205c7": 2, - "5c0e57ba86f7747fa141986d": 3, - "5c1267ee86f77416ec610f72": 1, - "5c17664f2e2216398b5a7e3c": 1, - "5c1793902e221602b21d3de2": 3, - "5c1a1cc52e221602b3136e3d": 3, - "5c503ad32e2216398b5aada2": 1, - "5c5db6652e221600113fba51": 1, - "5c6d710d2e22165df16b81e7": 1, - "5c9a1c422e221600106f69f0": 1, - "5caf17c9ae92150b30006be1": 1, - "5ce69cbad7f00c00b61c5098": 1, - "5cf12a15d7f00c05464b293f": 1, - "5cff9e84d7ad1a049e54ed55": 1, - "5d0a3e8cd7ad1a6f6a3d35bd": 1, - "5d1340cad7ad1a0b0b249869": 1, - "5d235a5986f77443f6329bc6": 5, - "5d235b4d86f7742e017bc88a": 6, - "5d25a4a98abbc30b917421a4": 1, - "5d5e7d28a4b936645d161203": 1, - "5d5fca1ea4b93635fd598c07": 1, - "5d6d2e22a4b9361bd5780d05": 1, - "5d6d3943a4b9360dbc46d0cc": 1, - "5df8a2ca86f7740bfe6df777": 1, - "5df8a6a186f77412640e2e80": 26, - "5df8a72c86f77412640e2e83": 7, - "5df8a77486f77412672a1e3f": 9, - "5df916dfbb49d91fb446d6b9": 1, - "5dfa397fb11454561e39246c": 1, - "5dfe14f30b92095fd441edaf": 1, - "5e01ef6886f77445f643baa4": 1, - "5e01f31d86f77465cf261343": 1, - "5e54f62086f774219b0f1937": 4, - "5ea05cf85ad9772e6624305d": 1, - "5ed515c8d380ab312177c0fa": 3, - "5ed515e03a40a50460332579": 2, - "5ed515ece452db0eb56fc028": 2, - "5ed5160a87bb8443d10680b5": 5, - "5ef366938cef260c0642acad": 3, - "5ef61964ec7f42238c31e0c1": 1, - "5f60b85bbdb8e27dee3dc985": 1, - "5f60e7788adaa7100c3adb49": 1, - "5f60e784f2bcbb675b00dac7": 1, - "5f745ee30acaeb0d490d8c5b": 2, - "5fb6564947ce63734e3fa1da": 1, - "5fca138c2a7b221b2852a5c6": 1, - "5fca13ca637ee0341a484f46": 4, - "603618feffd42c541047f771": 1, - "60361a7497633951dc245eb4": 2, - "60361b0b5a45383c122086a1": 1, - "60361b5a9a15b10d96792291": 1, - "60363c0c92ec1c31037959f5": 1, - "606587d11246154cad35d635": 1, - "606f263a8900dc2d9a55b68d": 1, - "607ffb988900dc2d9a55b6e4": 1, - "609e8540d5c319764c2bc2e9": 2, - "60b52e5bc7d8103275739d67": 3, - "60bf74184a63fc79b60c57f6": 1, - "61840d85568c120fdd2962a5": 1, - "6193dcd0f8ee7e52e4210a28": 1, - "619b5db699fb192e7430664f": 1, - "61bca7cda0eae612383adf57": 1, - "61c18d83b00456371a66814b": 1, - "61c18db6dfd64163ea78fbb4": 1, - "62307b7b10d2321fa8741921": 1, - "626667e87379c44d557b7550": 1, - "6269220d70b6c02e665f2635": 1, - "6269545d0e57f218e4548ca2": 1, - "627254cc9c563e6e442c398f": 1, - "628a66b41d5e41750e314f34": 1, - "62a091170b9d3c46de5b6cf2": 1, - "62a09cfe4f842e1bd12da3e4": 5, - "62a09d79de7ac81993580530": 1, - "62a61c988ec41a51b34758d5": 2, - "62e7c98b550c8218d602cbb4": 1, - "637b612fb7afa97bfc3d7005": 1, - "637b6179104668754b72f8f5": 5, - "637b620db7afa97bfc3d7009": 2, - "637b6251104668754b72f8f9": 1, - "640b20359ab20e15ee445fa9": 1, - "6450ec2e7da7133e5a09ca96": 1, - "647de824196bf69818044c93": 1, - "6494094948796d891603e59f": 1, - "64abd93857958b4249003418": 2, - "64afd81707e2cf40e903a316": 1, - "64b9e2037fdfb81df81e3c25": 1, - "65169d5b30425317755f8e25": 1, - "65293c38fc460e50a509cb25": 1, - "654a4dea7c17dec2f50cc86a": 1, - "655dccfdbdcc6b5df71382b6": 1, - "656f57dc27aed95beb08f628": 1, - "656f603f94b480b8a500c0d6": 1, - "656f9fa0498d1b7e3e071d98": 1, - "656fae5f7c2d57afe200c0d7": 1 - }, - "Pockets": { - "5448c1d04bdc2dff2f8b4569": 26, - "560d5e524bdc2d25448b4571": 221, - "56d59948d2720bb7418b4582": 158, - "5710c24ad2720bc3458b45a3": 2240, - "5c0d591486f7744c505b416f": 305, - "5d3eb5eca4b9363b1f22f8e4": 32, - "5d6e6869a4b9361c140bcfde": 1, - "5d6e68c4a4b9361b93413f79": 9, - "5d6e6911a4b9361bd5780d52": 83, - "5df8f535bb49d91fb446d6b0": 50, - "5e32f56fcb6d5863cc5e5ee4": 464, - "5f3e77b26cda304dcc634057": 4540, - "602286df23506e50807090c6": 94, - "6193d3149fb0c665d5490e32": 181, - "63076701a987397c0816d21b": 77 - }, - "SecuredContainer": { - "54527a984bdc2d4e668b4567": 401, - "54527ac44bdc2d36668b4567": 51, - "560d5e524bdc2d25448b4571": 1101, - "5656d7c34bdc2d9d198b4587": 991, - "56d59d3ad2720bdb418b4577": 391, - "56dfef82d2720bbd668b4567": 411, - "56dff026d2720bb8668b4567": 171, - "56dff061d2720bb5668b4567": 681, - "56dff2ced2720bb4668b4567": 141, - "56dff3afd2720bba668b4567": 3341, - "56dff4a2d2720bbd668b456a": 131, - "5710c24ad2720bc3458b45a3": 62, - "573719df2459775a626ccbc2": 751, - "5737218f245977612125ba51": 851, - "57a0dfb82459774d3078b56c": 281, - "57a0e5022459774d1673f889": 221, - "58dd3ad986f77403051cba8f": 31, - "59e0d99486f7744a32234762": 11, - "59e4cf5286f7741778269d8a": 411, - "59e68f6f86f7746c9f75e846": 91, - "59e6906286f7746c9f75e847": 711, - "59e690b686f7746c9f75e848": 11, - "59e6920f86f77411d82aa167": 191, - "5a3c16fe86f77452b62de32a": 1541, - "5a608bf24f39f98ffc77720e": 41, - "5ba2678ad4351e44f824b344": 121, - "5c0d56a986f774449d5de529": 681, - "5c0d591486f7744c505b416f": 2081, - "5c0d5ae286f7741e46554302": 561, - "5c0d5e4486f77478390952fe": 131, - "5c0d668f86f7747ccb7f13b2": 51, - "5c3df7d588a4501f290594e5": 471, - "5c925fa22e221601da359b7b": 11, - "5cc80f67e4a949035e43bbba": 1, - "5cc80f8fe4a949033b0224a2": 181, - "5cc86840d7f00c002412c56c": 41, - "5d6e6869a4b9361c140bcfde": 1, - "5d6e68a8a4b9360b6c0d54e2": 11, - "5d6e68c4a4b9361b93413f79": 51, - "5d6e6911a4b9361bd5780d52": 411, - "5e023e53d4353e3302577c4c": 771, - "5e023e88277cce2b522ff2b1": 41, - "5e81f423763d9f754677bf2e": 19311, - "5efb0e16aeb21837e749c7ff": 481, - "5fbe3ffdf8b6a877a729ea82": 211, - "61962d879bb3d20b0946d385": 141, - "64b7af434b75259c590fa893": 201, - "64b7af5a8532cf95ee0a0dbd": 811, - "64b7bbb74b75259c590fa897": 1881, - "6576f96220d53a5b8f3e395e": 71 - }, - "SpecialLoot": {}, - "TacticalVest": { - "544a37c44bdc2d25388b4567": 65, - "55d480c04bdc2d1d4e8b456a": 364, - "55d482194bdc2d1d4e8b456b": 229, - "56d59948d2720bb7418b4582": 4, - "57616a9e2459773c7a400234": 137, - "57d1519e24597714373db79d": 385, - "5894a05586f774094708ef75": 268, - "5926c3b286f774640d189b6b": 283, - "59c1383d86f774290a37e0ca": 18, - "59d6272486f77466146386ff": 177, - "59fafc5086f7740dbe19f6c3": 51, - "5a351711c4a282000b1521a4": 300, - "5a718f958dc32e00094b97e7": 161, - "5a9e81fba2750c00164f6b11": 11, - "5aaa4194e5b5b055d06310a5": 256, - "5aaa5dfee5b5b000140293d3": 78, - "5ac66bea5acfc43b321d4aec": 38, - "5b7bef5d5acfc43bca7067a3": 127, - "5b7bef9c5acfc43d102852ec": 38, - "5ba2657ed4351e0035628ff2": 30, - "5bed61680db834001d2c45ab": 58, - "5c05413a0db834001c390617": 77, - "5c5970672e221602b21d7855": 187, - "5c6d46132e221601da357d56": 42, - "5cc70093e4a949033c734312": 27, - "5d1340b3d7ad1a0b52682ed7": 58, - "5f3e77b26cda304dcc634057": 161, - "60098ad7c2240c0fe85c570a": 2033, - "602286df23506e50807090c6": 4, - "6193d3149fb0c665d5490e32": 7, - "62307b7b10d2321fa8741921": 107, - "62e7c98b550c8218d602cbb4": 66, - "63076701a987397c0816d21b": 3, - "6450ec2e7da7133e5a09ca96": 180, - "64b9cf0ac12b9c38db26923a": 103, - "64b9e265c94d0d15c5027e35": 257 - } - }, - "mods": { - "5447a9cd4bdc2dbd208b4567": { - "mod_charge": [ - "5ea16d4d5aad6446a939753d", - "55d44fd14bdc2d962f8b456e" - ], - "mod_magazine": [ - "5448c1d04bdc2dff2f8b4569", - "544a37c44bdc2d25388b4567", - "5d1340b3d7ad1a0b52682ed7", - "59c1383d86f774290a37e0ca" - ], - "mod_pistol_grip": [ - "571659bb2459771fb2755a12", - "55d4b9964bdc2d1d4e8b456e", - "5d15cf3bd7ad1a67e71518b2" - ], - "mod_reciever": [ - "55d355e64bdc2d962f8b4569" - ], - "mod_stock": [ - "5649be884bdc2d79388b4577" - ] - }, - "54491c4f4bdc2db1078b4568": { - "mod_barrel": [ - "55d4491a4bdc2d882f8b456e" - ], - "mod_handguard": [ - "55d45f484bdc2d972f8b456d" - ], - "mod_magazine": [ - "55d485804bdc2d8c2f8b456b", - "56deee15d2720bee328b4567" - ], - "mod_stock": [ - "5bfe7fb30db8340018089fed" - ] - }, - "544a5caa4bdc2d1a388b4568": { - "Back_plate": [ - "656f9fa0498d1b7e3e071d98" - ], - "Front_plate": [ - "656f9fa0498d1b7e3e071d98" - ], - "Groin": [ - "6570e90b3a5689d85f08db97" - ], - "Soft_armor_back": [ - "6570e87c23c1f638ef0b0ee2" - ], - "Soft_armor_front": [ - "6570e83223c1f638ef0b0ede" - ] - }, - "55d355e64bdc2d962f8b4569": { - "mod_barrel": [ - "55d3632e4bdc2d972f8b4569", - "55d35ee94bdc2d61338b4568" - ], - "mod_handguard": [ - "5ea16ada09aa976f2e7a51be", - "55d459824bdc2d892f8b4573", - "5ea16acdfadf1d18c87b0784" - ], - "mod_scope": [ - "5c0a2cec0db834001b7ce47d", - "5c064c400db834001d23f468", - "5c7d55f52e221644f31bff6a" - ], - "mod_sight_rear": [ - "5c1780312e221602b66cc189", - "5c18b9192e2216398b5a8104" - ] - }, - "55d35ee94bdc2d61338b4568": { - "mod_gas_block": [ - "5ae30e795acfc408fb139a0b", - "5d00ec68d7ad1a04a067e5be" - ], - "mod_muzzle": [ - "544a38634bdc2d58388b4568", - "5ea172e498dacb342978818e" - ] - }, - "55d3632e4bdc2d972f8b4569": { - "mod_gas_block": [ - "56eabcd4d2720b66698b4574" - ], - "mod_muzzle": [ - "5ea172e498dacb342978818e" - ] - }, - "55d459824bdc2d892f8b4573": { - "mod_handguard": [ - "637f57b78d137b27f70c496a" - ], - "mod_tactical_2": [ - "57d17e212459775a1179a0f5" - ] - }, - "5645bc214bdc2d363b8b4571": { - "Helmet_back": [ - "657baeaacfcf63c951052db3" - ], - "Helmet_ears": [ - "657baecbc6f689d3a205b863" - ], - "Helmet_top": [ - "657bae18b7e9ca9a02045c0a" - ], - "mod_equipment": [ - "5b46238386f7741a693bcf9c" - ] - }, - "5648a7494bdc2d9d488b4583": { - "Soft_armor_back": [ - "65703fa06584602f7d057a8e" - ], - "Soft_armor_front": [ - "65703d866584602f7d057a8a" - ], - "Soft_armor_left": [ - "65703fe46a912c8b5c03468b" - ], - "soft_armor_right": [ - "657040374e67e8ec7a0d261c" - ] - }, - "5648ae314bdc2d3d1c8b457f": { - "mod_foregrip": [ - "558032614bdc2de7118b4585" - ], - "mod_scope": [ - "57ae0171245977343c27bfcf" - ], - "mod_tactical_001": [ - "57d17e212459775a1179a0f5" - ] - }, - "5649be884bdc2d79388b4577": { - "mod_stock_000": [ - "5ae30c9a5acfc408fb139a03", - "56eabf3bd2720b75698b4569", - "5d135ecbd7ad1a21c176542e", - "5947c73886f7747701588af5", - "5d4406a8a4b9361e4f6eb8b7" - ] - }, - "56d59856d2720bd8418b456a": { - "mod_barrel": [ - "56d5a1f7d2720bb3418b456a" - ], - "mod_magazine": [ - "56d59948d2720bb7418b4582" - ], - "mod_pistol_grip": [ - "56d5a2bbd2720bb8418b456a" - ], - "mod_reciever": [ - "56d5a407d2720bb3418b456b" - ] - }, - "56d5a407d2720bb3418b456b": { - "mod_sight_front": [ - "56d5a661d2720bd8418b456b" - ], - "mod_sight_rear": [ - "56d5a77ed2720b90418b4568" - ] - }, - "56eabf3bd2720b75698b4569": { - "mod_stock": [ - "58d2912286f7744e27117493" - ] - }, - "574d967124597745970e7c94": { - "mod_barrel": [ - "634f02331f9f536910079b51" - ], - "mod_magazine": [ - "5c5970672e221602b21d7855" - ], - "mod_reciever": [ - "634f05ca517ccc8a960fc748" - ], - "mod_stock": [ - "5d0236dad7ad1a0940739d29" - ], - "patron_in_weapon": [ - "59e4cf5286f7741778269d8a", - "64b7af5a8532cf95ee0a0dbd", - "5656d7c34bdc2d9d198b4587", - "59e0d99486f7744a32234762" - ] - }, - "576165642459773c7a400233": { - "mod_handguard": [ - "5827272a24597748c74bdeea" - ], - "mod_magazine": [ - "5a966f51a2750c00156aacf6" - ], - "mod_muzzle": [ - "58272d7f2459774f6311ddfd" - ], - "mod_pistol_grip": [ - "5947f92f86f77427344a76b1" - ], - "mod_reciever": [ - "57616c112459773cce774d66" - ], - "mod_stock": [ - "5beec8b20db834001961942a" - ], - "patron_in_weapon": [ - "5c0d591486f7744c505b416f", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68c4a4b9361b93413f79" - ] - }, - "57838c962459774a1651ec63": { - "mod_mount_000": [ - "59eb7ebe86f7740b373438ce" - ], - "mod_sight_rear": [ - "57c44e7b2459772d28133248" - ] - }, - "57a3459f245977764a01f703": { - "mod_tactical": [ - "646f6322f43d0c5d62063715" - ] - }, - "57c44b372459772d2b39b8ce": { - "mod_charge": [ - "5648ac824bdc2ded0b8b457d" - ], - "mod_magazine": [ - "5a9e81fba2750c00164f6b11" - ], - "mod_mount_004": [ - "5c61a40d2e2216001403158d" - ], - "mod_muzzle": [ - "57c44dd02459772d2e0ae249", - "57838c962459774a1651ec63" - ], - "mod_pistol_grip": [ - "57c44fa82459772d2d75e415" - ], - "mod_reciever": [ - "57c44f4f2459772d2c627113" - ], - "mod_stock": [ - "57c450252459772d28133253" - ] - }, - "57c44dd02459772d2e0ae249": { - "mod_mount_000": [ - "59eb7ebe86f7740b373438ce" - ], - "mod_sight_rear": [ - "57c44e7b2459772d28133248" - ] - }, - "57cff947245977638e6f2a19": { - "mod_mount_000": [ - "5b7be47f5acfc400170e2dd2" - ] - }, - "57d14d2524597714373db789": { - "mod_magazine": [ - "57d1519e24597714373db79d" - ], - "mod_mount": [ - "57ee59b42459771c7b045da5" - ], - "mod_pistol_grip": [ - "57d152ec245977144076ccdf" - ] - }, - "57d17e212459775a1179a0f5": { - "mod_flashlight": [ - "57d17c5e2459775a5c57d17d", - "59d790f486f77403cb06aec6" - ] - }, - "57dc2fa62459775949412633": { - "mod_gas_block": [ - "59d36a0086f7747e673f3946" - ], - "mod_magazine": [ - "564ca9df4bdc2d35148b4569", - "55d481904bdc2d8c2f8b456a" - ], - "mod_muzzle": [ - "593d493f86f7745e6b2ceb22" - ], - "mod_pistol_grip": [ - "59e6318286f77444dd62c4cc" - ], - "mod_reciever": [ - "57dc334d245977597164366f" - ], - "mod_stock": [ - "57dc347d245977596754e7a1" - ] - }, - "57dc334d245977597164366f": { - "mod_mount_000": [ - "57ffb0062459777a045af529" - ] - }, - "57dc347d245977596754e7a1": { - "mod_stock": [ - "5a0c59791526d8dba737bba7" - ] - }, - "57ee59b42459771c7b045da5": { - "mod_scope": [ - "57ae0171245977343c27bfcf" - ], - "mod_tactical": [ - "5a5f1ce64f39f90b401987bc" - ] - }, - "57ffa9f4245977728561e844": { - "mod_tactical_001": [ - "57d17e212459775a1179a0f5" - ] - }, - "57ffb0062459777a045af529": { - "mod_scope": [ - "584984812459776a704a82a6" - ] - }, - "5827272a24597748c74bdeea": { - "mod_scope": [ - "584984812459776a704a82a6" - ], - "mod_tactical_001": [ - "5b3a337e5acfc4704b4a19a0", - "644a3df63b0b6f03e101e065" - ] - }, - "583990e32459771419544dd2": { - "mod_gas_block": [ - "59d36a0086f7747e673f3946" - ], - "mod_magazine": [ - "55d482194bdc2d1d4e8b456b", - "64b9e265c94d0d15c5027e35", - "5aaa4194e5b5b055d06310a5" - ], - "mod_muzzle": [ - "57dc324a24597759501edc20" - ], - "mod_pistol_grip": [ - "5947f92f86f77427344a76b1" - ], - "mod_reciever": [ - "57dc334d245977597164366f" - ], - "mod_stock": [ - "57dc347d245977596754e7a1" - ] - }, - "58948c8e86f77409493f7266": { - "mod_charge": [ - "58949edd86f77409483e16a9" - ], - "mod_magazine": [ - "5894a05586f774094708ef75" - ], - "mod_pistol_grip": [ - "5894a51286f77426d13baf02" - ], - "mod_reciever": [ - "5894a5b586f77426d2590767" - ], - "mod_stock": [ - "5894a13e86f7742405482982" - ] - }, - "5894a42086f77426d2590762": { - "mod_mount_001": [ - "58a5c12e86f7745d585a2b9e" - ] - }, - "5894a5b586f77426d2590767": { - "mod_barrel": [ - "58aeaaa886f7744fc1560f81" - ], - "mod_handguard": [ - "5894a42086f77426d2590762" - ], - "mod_scope": [ - "5b31163c5acfc400153b71cb" - ] - }, - "58a5c12e86f7745d585a2b9e": { - "mod_foregrip": [ - "588226d124597767ad33f787" - ] - }, - "58aeaaa886f7744fc1560f81": { - "mod_muzzle": [ - "58aeac1b86f77457c419f475" - ] - }, - "58d39d3d86f77445bb794ae7": { - "mod_scope": [ - "58d399e486f77442e0016fe7" - ] - }, - "591ee00d86f774592f7b841e": { - "mod_scope": [ - "5c0517910db83400232ffee5" - ] - }, - "5926bb2186f7744b1c6c6e60": { - "mod_charge": [ - "5926c32286f774616e42de99" - ], - "mod_magazine": [ - "5a351711c4a282000b1521a4", - "5926c3b286f774640d189b6b" - ], - "mod_reciever": [ - "5926c0df86f77462f647f764" - ] - }, - "5926c0df86f77462f647f764": { - "mod_handguard": [ - "5926c36d86f77467a92a8629", - "5a9548c9159bd400133e97b3" - ], - "mod_mount": [ - "5926dad986f7741f82604363" - ], - "mod_muzzle": [ - "5c0000c00db834001a6697fc", - "5926e16e86f7742f5a0f7ecb" - ], - "mod_sight_rear": [ - "5926d2be86f774134d668e4e" - ], - "mod_stock": [ - "5926d3c686f77410de68ebc8", - "5c07c9660db834001a66b588" - ] - }, - "5926dad986f7741f82604363": { - "mod_scope": [ - "58d39d3d86f77445bb794ae7" - ] - }, - "59c6633186f7740cf0493bb9": { - "mod_handguard": [ - "5648ae314bdc2d3d1c8b457f", - "57cff947245977638e6f2a19", - "5648b4534bdc2d3d1c8b4580" - ] - }, - "59d36a0086f7747e673f3946": { - "mod_handguard": [ - "57ffa9f4245977728561e844", - "57dc32dc245977596d4ef3d3" - ] - }, - "59e7635f86f7742cbf2c1095": { - "Soft_armor_back": [ - "65702fe593b7ea9c330f4ce8" - ], - "Soft_armor_front": [ - "65702f87722744627e05cdb8" - ], - "Soft_armor_left": [ - "6570305d93b7ea9c330f4ced" - ], - "soft_armor_right": [ - "65703472c9030b928a0a8a78" - ] - }, - "59eb7ebe86f7740b373438ce": { - "mod_foregrip": [ - "5cf4fb76d7f00c065703d3ac" - ] - }, - "5a16b8a9fcdbcb00165aa6ca": { - "mod_nvg": [ - "5c0695860db834001b735461" - ] - }, - "5a33b652c4a28232996e407c": { - "mod_scope": [ - "5a32aa8bc4a2826c6e06d737" - ] - }, - "5a7828548dc32e5a9c28b516": { - "mod_barrel": [ - "5a787f7ac5856700177af660" - ], - "mod_handguard": [ - "5a788068c5856700137e4c8f" - ], - "mod_magazine": [ - "5a78830bc5856700137e4c90", - "5a7882dcc5856700177af662" - ], - "mod_mount": [ - "5a78948ec5856700177b1124" - ], - "mod_stock": [ - "5bfe86a20db834001d23e8f7" - ] - }, - "5a788068c5856700137e4c8f": { - "mod_mount_001": [ - "5b7be47f5acfc400170e2dd2" - ] - }, - "5a7c4850e899ef00150be885": { - "Helmet_back": [ - "657bab6ec6f689d3a205b85f" - ], - "Helmet_ears": [ - "657babc6f58ba5a6250107a2" - ], - "Helmet_top": [ - "657baaf0b7e9ca9a02045c02" - ] - }, - "5a9548c9159bd400133e97b3": { - "mod_tactical_000": [ - "5a7b483fe899ef0016170d15" - ] - }, - "5aa7cfc0e5b5b00015693143": { - "Helmet_back": [ - "657bab6ec6f689d3a205b85f" - ], - "Helmet_ears": [ - "657babc6f58ba5a6250107a2" - ], - "Helmet_top": [ - "657baaf0b7e9ca9a02045c02" - ] - }, - "5ab8e4ed86f7742d8e50c7fa": { - "Soft_armor_back": [ - "657045741bd9beedc40b7299" - ], - "Soft_armor_front": [ - "657044e971369562b300ce9b" - ], - "Soft_armor_left": [ - "657045b97e80617cee095bda" - ], - "soft_armor_right": [ - "6570460471369562b300ce9f" - ] - }, - "5ac4cd105acfc40016339859": { - "mod_charge": [ - "5648ac824bdc2ded0b8b457d" - ], - "mod_gas_block": [ - "59c6633186f7740cf0493bb9" - ], - "mod_magazine": [ - "55d480c04bdc2d1d4e8b456a", - "5bed625c0db834001c062946" - ], - "mod_muzzle": [ - "5649ab884bdc2ded0b8b457f" - ], - "mod_pistol_grip": [ - "5649ae4a4bdc2d1b2b8b4588" - ], - "mod_reciever": [ - "5649af884bdc2d1b2b8b4589" - ], - "mod_sight_rear": [ - "5ac72e475acfc400180ae6fe" - ], - "mod_stock": [ - "5ac78eaf5acfc4001926317a" - ] - }, - "5ac50c185acfc400163398d4": { - "mod_stock": [ - "5a0c59791526d8dba737bba7" - ] - }, - "5ac66d725acfc43b321d4b60": { - "mod_gas_block": [ - "59c6633186f7740cf0493bb9" - ], - "mod_magazine": [ - "59d6272486f77466146386ff", - "5ac66bea5acfc43b321d4aec", - "64b9cf0ac12b9c38db26923a" - ], - "mod_mount_000": [ - "591ee00d86f774592f7b841e", - "63d114019e35b334d82302f7" - ], - "mod_muzzle": [ - "5a9fbacda2750c00141e080f" - ], - "mod_pistol_grip": [ - "5649ade84bdc2d1b2b8b4587" - ], - "mod_reciever": [ - "5649af094bdc2df8348b4586", - "5ac50da15acfc4001718d287" - ], - "mod_sight_rear": [ - "5ac733a45acfc400192630e2" - ], - "mod_stock": [ - "5ac50c185acfc400163398d4" - ] - }, - "5ac66d9b5acfc4001633997a": { - "mod_gas_block": [ - "59c6633186f7740cf0493bb9" - ], - "mod_magazine": [ - "55d482194bdc2d1d4e8b456b", - "64b9e265c94d0d15c5027e35", - "55d480c04bdc2d1d4e8b456a" - ], - "mod_muzzle": [ - "5ac72e945acfc43f3b691116" - ], - "mod_pistol_grip": [ - "5649ade84bdc2d1b2b8b4587" - ], - "mod_reciever": [ - "5ac50da15acfc4001718d287" - ], - "mod_sight_rear": [ - "5ac733a45acfc400192630e2" - ], - "mod_stock": [ - "5ac50c185acfc400163398d4" - ] - }, - "5ac78eaf5acfc4001926317a": { - "mod_stock": [ - "59ecc3dd86f7746dc827481c" - ] - }, - "5b099a765acfc47a8607efe3": { - "mod_muzzle": [ - "5b7d693d5acfc43bca706a3d" - ] - }, - "5b0bbe4e5acfc40dc528a72d": { - "mod_barrel": [ - "5b099a765acfc47a8607efe3" - ], - "mod_handguard": [ - "5b7bee755acfc400196d5383" - ], - "mod_magazine": [ - "5b7bef9c5acfc43d102852ec" - ], - "mod_pistol_grip": [ - "5b7d679f5acfc4001a5c4024" - ], - "mod_reciever": [ - "5b099bb25acfc400186331e8" - ], - "mod_sight_rear": [ - "5b0bc22d5acfc47a8607f085" - ], - "mod_stock": [ - "5b7d64555acfc4001876c8e2" - ] - }, - "5b31163c5acfc400153b71cb": { - "mod_scope": [ - "5b3116595acfc40019476364" - ] - }, - "5b40e1525acfc4771e1c6611": { - "Helmet_back": [ - "657112a4818110db4600aa66" - ], - "Helmet_ears": [ - "657112ce22996eaf110881fb" - ], - "Helmet_top": [ - "657112234269e9a568089eac" - ] - }, - "5b40e2bc5acfc40016388216": { - "Helmet_back": [ - "657112a4818110db4600aa66" - ], - "Helmet_ears": [ - "657112ce22996eaf110881fb" - ], - "Helmet_top": [ - "657112234269e9a568089eac" - ] - }, - "5b40e3f35acfc40016388218": { - "Helmet_back": [ - "657f9605f4c82973640b2358" - ], - "Helmet_top": [ - "657f95bff92cd718b701550c" - ] - }, - "5b432d215acfc4771e1c6624": { - "Helmet_back": [ - "657bb99db30eca976305117f" - ], - "Helmet_top": [ - "657bb92fa1c61ee0c303631f" - ], - "mod_nvg": [ - "5a16b8a9fcdbcb00165aa6ca" - ] - }, - "5b44cf1486f77431723e3d05": { - "Back_plate": [ - "656fa8d700d62bcd2e024084" - ], - "Collar": [ - "6575c3ec52b7f8c76a05ee39" - ], - "Front_plate": [ - "656fa8d700d62bcd2e024084" - ], - "Left_side_plate": [ - "6557458f83942d705f0c4962" - ], - "Right_side_plate": [ - "6557458f83942d705f0c4962" - ], - "Shoulder_l": [ - "6575c3fd52b7f8c76a05ee3d" - ], - "Shoulder_r": [ - "6575c40c52b7f8c76a05ee41" - ], - "Soft_armor_back": [ - "6575c3beefc786cd9101a5ed" - ], - "Soft_armor_front": [ - "6575c3b3dc9932aed601c5f4" - ], - "Soft_armor_left": [ - "6575c3cdc6700bd6b40e8a90" - ], - "soft_armor_right": [ - "6575c3dfdc9932aed601c5f8" - ] - }, - "5b44d0de86f774503d30cba8": { - "Back_plate": [ - "656fa8d700d62bcd2e024084" - ], - "Collar": [ - "6575c373dc9932aed601c5ec" - ], - "Front_plate": [ - "656fa8d700d62bcd2e024084" - ], - "Groin": [ - "6575c385dc9932aed601c5f0" - ], - "Groin_back": [ - "6575c390efc786cd9101a5e9" - ], - "Soft_armor_back": [ - "6575c34bc6700bd6b40e8a84" - ], - "Soft_armor_front": [ - "6575c342efc786cd9101a5e5" - ], - "Soft_armor_left": [ - "6575c35bc6700bd6b40e8a88" - ], - "soft_armor_right": [ - "6575c366c6700bd6b40e8a8c" - ] - }, - "5b44d22286f774172b0c9de8": { - "Back_plate": [ - "656f9d5900d62bcd2e02407c" - ], - "Collar": [ - "65705cea4916448ae1050897" - ], - "Front_plate": [ - "656f9d5900d62bcd2e02407c" - ], - "Soft_armor_back": [ - "65705c3c14f2ed6d7d0b7738" - ], - "Soft_armor_front": [ - "65704de13e7bba58ea0285c8" - ], - "Soft_armor_left": [ - "65705c777260e1139e091408" - ], - "soft_armor_right": [ - "65705cb314f2ed6d7d0b773c" - ] - }, - "5b7be46e5acfc400170e2dcf": { - "mod_foregrip": [ - "59fc48e086f77463b1118392" - ] - }, - "5b7be47f5acfc400170e2dd2": { - "mod_tactical": [ - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a" - ] - }, - "5b7bee755acfc400196d5383": { - "mod_mount_000": [ - "5b7be46e5acfc400170e2dcf" - ], - "mod_mount_001": [ - "5b7be4645acfc400170e2dcc" - ], - "mod_mount_002": [ - "5b7be4645acfc400170e2dcc" - ] - }, - "5bb20d53d4351e4502010a69": { - "mod_barrel": [ - "5bb20d92d4351e00853263eb" - ], - "mod_handguard": [ - "5bb20de5d4351e0035629e59" - ], - "mod_scope": [ - "5b30b0dc5acfc400153b7124", - "591c4efa86f7741030027726", - "5c0a2cec0db834001b7ce47d" - ] - }, - "5bb20d92d4351e00853263eb": { - "mod_gas_block": [ - "5bb20dcad4351e3bac1212da" - ], - "mod_muzzle": [ - "56ea6fafd2720b844b8b4593" - ] - }, - "5bb20de5d4351e0035629e59": { - "mod_foregrip": [ - "588226dd24597767ad33f789" - ] - }, - "5bb20e58d4351e00320205d7": { - "mod_stock_000": [ - "5bb20e70d4351e0035629f8f" - ] - }, - "5bb2475ed4351e00853264e3": { - "mod_charge": [ - "5bb20dbcd4351e44f824c04e" - ], - "mod_magazine": [ - "5c05413a0db834001c390617" - ], - "mod_pistol_grip": [ - "57af48872459771f0b2ebf11" - ], - "mod_reciever": [ - "5bb20d53d4351e4502010a69" - ], - "mod_stock": [ - "5bb20e58d4351e00320205d7" - ], - "patron_in_weapon": [ - "5c0d5ae286f7741e46554302", - "59e68f6f86f7746c9f75e846" - ] - }, - "5bd70322209c4d00d7167b8f": { - "mod_magazine": [ - "5ba2657ed4351e0035628ff2" - ], - "mod_muzzle": [ - "5ba26acdd4351e003562908e" - ], - "mod_scope": [ - "5d2da1e948f035477b1ce2ba" - ], - "mod_sight_front": [ - "5ba26b01d4351e0085325a51" - ], - "mod_sight_rear": [ - "5ba26b17d4351e00367f9bdd" - ], - "mod_stock": [ - "5bd704e7209c4d00d7167c31" - ] - }, - "5beec8b20db834001961942a": { - "mod_stock": [ - "5a9eb32da2750c00171b3f9c" - ] - }, - "5bfe7fb30db8340018089fed": { - "mod_stock": [ - "5bfe86a20db834001d23e8f7" - ] - }, - "5bfe86a20db834001d23e8f7": { - "mod_stock": [ - "5bfe89510db834001808a127" - ] - }, - "5bfe89510db834001808a127": { - "mod_stock_000": [ - "56eabf3bd2720b75698b4569" - ] - }, - "5c0000c00db834001a6697fc": { - "mod_muzzle": [ - "5a9fb739a2750c003215717f" - ] - }, - "5c0111ab0db834001966914d": { - "mod_muzzle": [ - "58272d7f2459774f6311ddfd" - ] - }, - "5c064c400db834001d23f468": { - "mod_scope": [ - "570fd721d2720bc5458b4596" - ] - }, - "5c0695860db834001b735461": { - "mod_nvg": [ - "5c0696830db834001d23f5da" - ] - }, - "5c0e51be86f774598e797894": { - "Back_plate": [ - "656efd66034e8e01c407f35c" - ], - "Collar": [ - "654a8ae00337d53f9102c2aa" - ], - "Front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "Groin": [ - "654a8bc5f414fcea4004d79b" - ], - "Soft_armor_back": [ - "654a8976f414fcea4004d78b" - ], - "Soft_armor_front": [ - "654a8b0b0337d53f9102c2ae" - ], - "Soft_armor_left": [ - "654a8b3df414fcea4004d78f" - ], - "soft_armor_right": [ - "654a8b80f414fcea4004d797" - ] - }, - "5c0e53c886f7747fa54205c7": { - "Collar": [ - "654a8ae00337d53f9102c2aa" - ], - "Groin": [ - "654a8bc5f414fcea4004d79b" - ], - "back_plate": [ - "656efd66034e8e01c407f35c" - ], - "front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "soft_armor_back": [ - "654a8976f414fcea4004d78b" - ], - "soft_armor_front": [ - "654a8b0b0337d53f9102c2ae" - ], - "soft_armor_left": [ - "654a8b3df414fcea4004d78f" - ], - "soft_armor_right": [ - "654a8b80f414fcea4004d797" - ] - }, - "5c0e57ba86f7747fa141986d": { - "Back_plate": [ - "657b22485f444d6dff0c6c2f" - ], - "Collar": [ - "657080ca12755ae0d907ad5e" - ], - "Front_plate": [ - "656f603f94b480b8a500c0d6" - ], - "Groin": [ - "65708122f65e2491bf009755" - ], - "Groin_back": [ - "65708165696fe382cf073255" - ], - "Soft_armor_back": [ - "6570800612755ae0d907acf8" - ], - "Soft_armor_front": [ - "65707fc348c7a887f2010432" - ], - "Soft_armor_left": [ - "65708070f65e2491bf00972c" - ], - "soft_armor_right": [ - "657080a212755ae0d907ad04" - ] - }, - "5c0e655586f774045612eeb2": { - "Back_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Front_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Soft_armor_back": [ - "6570e0610b57c03ec90b96ef" - ], - "Soft_armor_front": [ - "6570e025615f54368b04fcb0" - ] - }, - "5c488a752e221602b412af63": { - "mod_barrel": [ - "5c48a2852e221602b21d5923" - ], - "mod_handguard": [ - "5c48a14f2e2216152006edd7" - ], - "mod_magazine": [ - "5c6d46132e221601da357d56" - ], - "mod_pistol_grip": [ - "5c48a2c22e221602b313fb6c" - ], - "mod_scope": [ - "584924ec24597768f12ae244" - ] - }, - "5c48a2852e221602b21d5923": { - "mod_muzzle": [ - "5c48a2a42e221602b66d1e07" - ] - }, - "5c61a40d2e2216001403158d": { - "mod_scope": [ - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c" - ] - }, - "5c7d55f52e221644f31bff6a": { - "mod_scope": [ - "5c7d55de2e221644f31bff68", - "5c7d560b2e22160bc12c6139" - ] - }, - "5c7d560b2e22160bc12c6139": { - "mod_scope": [ - "5c7d55de2e221644f31bff68" - ] - }, - "5cc700b9e4a949000f0f0f25": { - "mod_stock_000": [ - "5cc700cae4a949035e43ba72" - ] - }, - "5cc700ede4a949033c734315": { - "mod_scope": [ - "570fd721d2720bc5458b4596", - "5d2da1e948f035477b1ce2ba" - ] - }, - "5cc70102e4a949035e43ba74": { - "mod_mount_000": [ - "5cebec38d7f00c00110a652a" - ], - "mod_mount_001": [ - "5cc70146e4a949000d73bf6b" - ], - "mod_mount_002": [ - "5cc70146e4a949000d73bf6b" - ] - }, - "5cc701aae4a949000e1ea45c": { - "mod_muzzle": [ - "5cc82796e24e8d000f5859a8" - ] - }, - "5cc82d76e24e8d00134b4b83": { - "mod_barrel": [ - "5cc701aae4a949000e1ea45c", - "5cc701d7e4a94900100ac4e7" - ], - "mod_charge": [ - "5cc6ea78e4a949000e1ea3c1" - ], - "mod_magazine": [ - "5cc70093e4a949033c734312" - ], - "mod_reciever": [ - "5cc700ede4a949033c734315", - "5cc70102e4a949035e43ba74" - ], - "mod_stock": [ - "5cc700b9e4a949000f0f0f25", - "5cebec10d7f00c065703d185" - ] - }, - "5cebec10d7f00c065703d185": { - "mod_stock_000": [ - "5cc700cae4a949035e43ba72", - "5cc700d4e4a949000f0f0f28" - ] - }, - "5d0236dad7ad1a0940739d29": { - "mod_pistol_grip": [ - "5b30ac585acfc433000eb79c" - ], - "mod_tactical_000": [ - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - }, - "5d3eb3b0a4b93615055e84d2": { - "mod_barrel": [ - "5d3eb5b6a4b9361eab311902", - "5d3eb59ea4b9361c284bb4b2" - ], - "mod_magazine": [ - "5d3eb5eca4b9363b1f22f8e4" - ], - "mod_reciever": [ - "5d3eb44aa4b93650d64e4979" - ], - "patron_in_weapon": [ - "5cc80f8fe4a949033b0224a2" - ] - }, - "5d43021ca4b9362eab4b5e25": { - "mod_charge": [ - "5d44334ba4b9362b346d1948" - ], - "mod_magazine": [ - "5aaa5dfee5b5b000140293d3", - "544a378f4bdc2d30388b4567" - ], - "mod_pistol_grip": [ - "55802f5d4bdc2dac148b458f" - ], - "mod_reciever": [ - "5d4405aaa4b9361e6a4e6bd3" - ], - "mod_stock": [ - "5649be884bdc2d79388b4577" - ] - }, - "5d4405aaa4b9361e6a4e6bd3": { - "mod_barrel": [ - "5d440b9fa4b93601354d480c" - ], - "mod_handguard": [ - "5d4405f0a4b9361e6a4e6bd9", - "640b20359ab20e15ee445fa9", - "63888bbd28e5cc32cc09d2b6" - ], - "mod_scope": [ - "584924ec24597768f12ae244" - ] - }, - "5d4405f0a4b9361e6a4e6bd9": { - "mod_foregrip": [ - "57cffce524597763b31685d8" - ] - }, - "5d440b9fa4b93601354d480c": { - "mod_gas_block": [ - "56eabcd4d2720b66698b4574" - ], - "mod_muzzle": [ - "5cc9b815d7f00c000e2579d6" - ] - }, - "5d5e7d28a4b936645d161203": { - "Helmet_back": [ - "657f8b05f4c82973640b2348" - ], - "Helmet_top": [ - "657f8a8d7db258e5600fe33d" - ] - }, - "5df8a2ca86f7740bfe6df777": { - "Soft_armor_back": [ - "656fd89bf5a9631d4e042575" - ], - "Soft_armor_front": [ - "656fd7c32668ef0402028fb9" - ] - }, - "5df8ce05b11454561e39243b": { - "mod_charge": [ - "5df8e085bb49d91fb446d6a8" - ], - "mod_magazine": [ - "5df8f535bb49d91fb446d6b0" - ], - "mod_pistol_grip": [ - "57af48872459771f0b2ebf11" - ], - "mod_reciever": [ - "5df8e4080b92095fd441e594" - ], - "mod_stock": [ - "5649be884bdc2d79388b4577" - ], - "patron_in_weapon": [ - "5e023e88277cce2b522ff2b1", - "5e023e53d4353e3302577c4c" - ] - }, - "5df8e4080b92095fd441e594": { - "mod_barrel": [ - "5df917564a9f347bc92edca3" - ], - "mod_handguard": [ - "5df916dfbb49d91fb446d6b9" - ], - "mod_scope": [ - "57aca93d2459771f2c7e26db" - ] - }, - "5df916dfbb49d91fb446d6b9": { - "mod_foregrip": [ - "57cffcd624597763133760c5" - ] - }, - "5df917564a9f347bc92edca3": { - "mod_gas_block": [ - "5dfa3d45dfc58d14537c20b0" - ], - "mod_muzzle": [ - "5b7d693d5acfc43bca706a3d", - "5dfa3cd1b33c0951220c079b" - ] - }, - "5dfa3cd1b33c0951220c079b": { - "mod_muzzle": [ - "5dfa3d2b0dee1b22f862eade" - ] - }, - "5e01ef6886f77445f643baa4": { - "helmet_back": [ - "655200ba0ef76cf7be09d528" - ], - "helmet_top": [ - "6551fec55d0cf82e51014288" - ] - }, - "5e4bfc1586f774264f7582d3": { - "Helmet_back": [ - "657f9cb587e11c61f70bfaca" - ], - "Helmet_top": [ - "657f9c78ada5fadd1f07a58d" - ], - "mod_equipment_000": [ - "5a16b672fcdbcb001912fa83" - ], - "mod_nvg": [ - "5a16b8a9fcdbcb00165aa6ca" - ] - }, - "5ea05cf85ad9772e6624305d": { - "Helmet_back": [ - "657ba34b9ba22f103e08139b" - ], - "Helmet_top": [ - "657ba2eef58ba5a625010798" - ] - }, - "5ea16acdfadf1d18c87b0784": { - "mod_sight_front": [ - "5c18b90d2e2216152142466b" - ], - "mod_tactical_000": [ - "5c06595c0db834001a66af6c" - ] - }, - "5ea16ada09aa976f2e7a51be": { - "mod_sight_front": [ - "5c17804b2e2216152006c02f" - ], - "mod_tactical_000": [ - "5c06595c0db834001a66af6c" - ] - }, - "5ea172e498dacb342978818e": { - "mod_muzzle": [ - "5ea17bbc09aa976f2e7a51cd" - ] - }, - "5ea17ca01412a1425304d1c0": { - "Helmet_back": [ - "657f9a94ada5fadd1f07a589" - ], - "Helmet_top": [ - "657f9a55c6679fefb3051e19" - ], - "mod_nvg": [ - "5ea18c84ecf1982c7712d9a2" - ] - }, - "5f2a9575926fd9352339381f": { - "mod_barrel": [ - "5f2aa46b878ef416f538b567" - ], - "mod_handguard": [ - "5f2aa47a200e2c0ee46efa71" - ], - "mod_magazine": [ - "5b099ac65acfc400186331e1" - ], - "mod_mount": [ - "5f2aa49f9b44de6b1b4e68d4" - ] - }, - "5f2aa46b878ef416f538b567": { - "mod_muzzle": [ - "5f2aa4464b50c14bcf07acdb" - ] - }, - "5f2aa47a200e2c0ee46efa71": { - "mod_mount_000": [ - "5f2aa493cd375f14e15eea72" - ] - }, - "5f2aa49f9b44de6b1b4e68d4": { - "mod_scope": [ - "5c7d55f52e221644f31bff6a", - "59f9d81586f7744c7506ee62" - ] - }, - "5f36a0e5fbf956000b716b65": { - "mod_barrel": [ - "5f3e7801153b8571434a924c" - ], - "mod_catch": [ - "5f3e777688ca2d00ad199d25" - ], - "mod_hammer": [ - "5f3e76d86cda304dcc634054" - ], - "mod_magazine": [ - "5f3e77b26cda304dcc634057" - ], - "mod_pistol_grip": [ - "5f3e778efcd9b651187d7201" - ], - "mod_reciever": [ - "5f3e7823ddc4f03b010e2045" - ], - "mod_trigger": [ - "5f3e772a670e2a7b01739a52" - ] - }, - "5f3e7823ddc4f03b010e2045": { - "mod_sight_front": [ - "5f3e78a7fbf956000b716b8e" - ], - "mod_sight_rear": [ - "5f3e7897ddc4f03b010e204a" - ] - }, - "5f60b34a41e30a4ab12a6947": { - "Helmet_back": [ - "657bbb31b30eca9763051183" - ], - "Helmet_top": [ - "657bbad7a1c61ee0c3036323" - ], - "mod_equipment_000": [ - "5f60c076f2bcbb675b00dac2" - ] - }, - "5fbbc366ca32ed67276c1557": { - "mod_muzzle": [ - "5fbbc34106bde7524f03cbe9" - ] - }, - "5fbbfabed5cb881a7363194e": { - "mod_gas_block": [ - "5fbc210bf24b94483f726481" - ], - "mod_muzzle": [ - "5fbc22ccf24b94483f726483" - ] - }, - "5fbc22ccf24b94483f726483": { - "mod_muzzle_000": [ - "5fbcbcf593164a5b6278efb2" - ] - }, - "5fbcc1d9016cce60e8341ab3": { - "mod_charge": [ - "5fbcc640016cce60e8341acc" - ], - "mod_magazine": [ - "5c6d46132e221601da357d56" - ], - "mod_pistol_grip": [ - "5fbcbd6c187fea44d52eda14" - ], - "mod_reciever": [ - "5fbcc3e4d6fa9c00c571bb58" - ], - "mod_stock": [ - "5fbcc437d724d907e2077d5c" - ] - }, - "5fbcc3e4d6fa9c00c571bb58": { - "mod_barrel": [ - "5fbbfabed5cb881a7363194e" - ], - "mod_handguard": [ - "5fbc226eca32ed67276c155d" - ], - "mod_scope": [ - "584924ec24597768f12ae244" - ] - }, - "5fc3f2d5900b1d5091531e57": { - "mod_barrel": [ - "5fbbc366ca32ed67276c1557" - ], - "mod_magazine": [ - "5a718b548dc32e000d46d262", - "5a7ad2e851dfba0016153692" - ], - "mod_mount": [ - "5fbb976df9986c4cff3fe5f2" - ], - "mod_mount_001": [ - "5fce0f9b55375d18a253eff2" - ], - "mod_mount_002": [ - "5fce0f9b55375d18a253eff2" - ], - "mod_scope": [ - "5a33b652c4a28232996e407c" - ], - "mod_sight_front": [ - "5fb6567747ce63734e3fa1dc" - ], - "mod_sight_rear": [ - "5fb6564947ce63734e3fa1da" - ], - "mod_stock": [ - "5fb6558ad6f0b2136f2d7eb7" - ] - }, - "5fd4c474dd870108a754b241": { - "back_plate": [ - "656faf0ca0dce000a2020f77" - ], - "front_plate": [ - "656faf0ca0dce000a2020f77" - ] - }, - "60228924961b8d75ee233c32": { - "mod_sight_front": [ - "60228a76d62c9b14ed777a66" - ], - "mod_sight_rear": [ - "60229948cacb6b0506369e27" - ] - }, - "602a9740da11d6478d5a06dc": { - "mod_barrel": [ - "602a95edda11d6478d5a06da" - ], - "mod_magazine": [ - "602286df23506e50807090c6" - ], - "mod_reciever": [ - "60228924961b8d75ee233c32" - ] - }, - "602e3f1254072b51b239f713": { - "mod_stock_000": [ - "602e620f9b513876d4338d9a" - ] - }, - "602e63fb6335467b0c5ac94d": { - "mod_barrel": [ - "603372b4da11d6478d5a07ff" - ], - "mod_handguard": [ - "6034e3cb0ddce744014cb870" - ] - }, - "603372b4da11d6478d5a07ff": { - "mod_muzzle": [ - "60337f5dce399e10262255d1" - ] - }, - "60339954d62c9b14ed777c06": { - "mod_charge": [ - "6033749e88382f4fab3fd2c5" - ], - "mod_magazine": [ - "5a718f958dc32e00094b97e7" - ], - "mod_pistol_grip": [ - "602e71bd53a60014f9705bfa" - ], - "mod_reciever": [ - "602e63fb6335467b0c5ac94d" - ], - "mod_stock_001": [ - "602e3f1254072b51b239f713" - ], - "mod_tactical_000": [ - "602f85fd9b513876d4338d9c" - ] - }, - "606587252535c57a13424cfd": { - "mod_charge": [ - "606587bd6d0bd7580617bacc" - ], - "mod_magazine": [ - "59fafc5086f7740dbe19f6c3" - ], - "mod_pistol_grip": [ - "55802f5d4bdc2dac148b458f" - ], - "mod_reciever": [ - "606587a88900dc2d9a55b659" - ], - "mod_stock_001": [ - "606587e18900dc2d9a55b65f" - ] - }, - "60658776f2cb2e02a42ace2b": { - "mod_gas_block": [ - "6065dc8a132d4d12c81fd8e3" - ], - "mod_muzzle": [ - "6065c6e7132d4d12c81fd8e1" - ] - }, - "606587a88900dc2d9a55b659": { - "mod_barrel": [ - "60658776f2cb2e02a42ace2b" - ], - "mod_handguard": [ - "6065880c132d4d12c81fd8da" - ], - "mod_sight_rear": [ - "5bc09a18d4351e003562b68e" - ] - }, - "606587e18900dc2d9a55b65f": { - "mod_stock_000": [ - "606587d11246154cad35d635" - ] - }, - "6065880c132d4d12c81fd8da": { - "mod_sight_front": [ - "5bc09a30d4351e00367fb7c8" - ] - }, - "609e8540d5c319764c2bc2e9": { - "Back_plate": [ - "656f9fa0498d1b7e3e071d98" - ], - "Front_plate": [ - "656f9fa0498d1b7e3e071d98" - ], - "Soft_armor_back": [ - "6572e52f73c0eabb700109a0" - ], - "Soft_armor_front": [ - "6572e5221b5bc1185508c24f" - ], - "Soft_armor_left": [ - "6572e53c73c0eabb700109a4" - ], - "soft_armor_right": [ - "6572e54873c0eabb700109a8" - ] - }, - "60a3c68c37ea821725773ef5": { - "Back_plate": [ - "656fa53d94b480b8a500c0e4" - ], - "Collar": [ - "6573334aca0ca984940a2d5b" - ], - "Front_plate": [ - "656fa53d94b480b8a500c0e4" - ], - "Left_side_plate": [ - "6557458f83942d705f0c4962" - ], - "Right_side_plate": [ - "6557458f83942d705f0c4962" - ], - "Shoulder_l": [ - "65733375b7a8d286530e3dd7" - ], - "Shoulder_r": [ - "6573337f2cc8dfad2c0a3da7" - ], - "Soft_armor_back": [ - "657333232cc8dfad2c0a3d97" - ], - "Soft_armor_front": [ - "65733312ca0ca984940a2d53" - ], - "Soft_armor_left": [ - "657333302cc8dfad2c0a3d9b" - ], - "soft_armor_right": [ - "6573333eca0ca984940a2d57" - ] - }, - "6193a720f8ee7e52e42109ed": { - "mod_barrel": [ - "6194f02d9bb3d20b0946d2f0" - ], - "mod_catch": [ - "6193d5d4f8ee7e52e4210a1b" - ], - "mod_hammer": [ - "6193d3be7c6c7b169525f0da" - ], - "mod_magazine": [ - "6193d3149fb0c665d5490e32" - ], - "mod_mount_000": [ - "619624b26db0f2477964e6b0" - ], - "mod_reciever": [ - "6194f5a318a3974e5e7421eb" - ], - "mod_trigger": [ - "6193d3cded0429009f543e6a" - ] - }, - "6194f5a318a3974e5e7421eb": { - "mod_sight_front": [ - "6194f3286db0f2477964e67d" - ], - "mod_sight_rear": [ - "6194f2df645b5d229654ad77" - ] - }, - "61bc85697113f767765c7fe7": { - "Back_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Front_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Soft_armor_back": [ - "6572fc8c9a866b80ab07eb5d" - ], - "Soft_armor_front": [ - "6572fc809a866b80ab07eb59" - ], - "Soft_armor_left": [ - "6572fc989a866b80ab07eb61" - ], - "soft_armor_right": [ - "6572fca39a866b80ab07eb65" - ] - }, - "61bca7cda0eae612383adf57": { - "Helmet_back": [ - "657bbcffbbd440df880b2dd5" - ], - "Helmet_top": [ - "657bbcc9a1c61ee0c3036327" - ] - }, - "61bcc89aef0f505f0c6cd0fc": { - "Back_plate": [ - "656fb21fa0dce000a2020f7c" - ], - "Front_plate": [ - "656fb21fa0dce000a2020f7c" - ], - "Groin": [ - "6572eb865b5eac12f10a03ee" - ], - "Soft_armor_back": [ - "6572eb1b04ee6483ef039882" - ], - "Soft_armor_front": [ - "6572eb0e55beba16bc04079f" - ], - "Soft_armor_left": [ - "6572eb3004ee6483ef039886" - ], - "soft_armor_right": [ - "6572eb3b04ee6483ef03988a" - ] - }, - "622b379bf9cfc87d675d2de5": { - "mod_gas_block": [ - "622b327b267a1b13a44abea3" - ], - "mod_muzzle": [ - "622f0ee47762f55aaa68ac87" - ] - }, - "622b3c081b89c677a33bcda6": { - "mod_sight_front": [ - "623166e08c43374ca1567195" - ], - "mod_sight_rear": [ - "6231670f0b8aa5472d060095" - ] - }, - "623063e994fc3f7b302a9696": { - "mod_barrel": [ - "622b379bf9cfc87d675d2de5" - ], - "mod_handguard": [ - "62386b2adf47d66e835094b2" - ], - "mod_magazine": [ - "62307b7b10d2321fa8741921" - ], - "mod_mount": [ - "622f02437762f55aaa68ac85" - ], - "mod_scope": [ - "622b3c081b89c677a33bcda6" - ], - "mod_stock": [ - "622f140da5958f63c67f1735" - ] - }, - "62386b2adf47d66e835094b2": { - "mod_mount_000": [ - "62444cb99f47004c781903eb" - ], - "mod_tactical": [ - "622f16a1a5958f63c67f1737" - ] - }, - "6259b864ebedf17603599e88": { - "mod_barrel": [ - "6259c2c1d714855d182bad85" - ], - "mod_charge": [ - "625ec45bb14d7326ac20f572" - ], - "mod_handguard": [ - "6259c4347d6aab70bc23a190" - ], - "mod_magazine": [ - "625ff2ccb8c587128c1a01dd" - ], - "mod_mount": [ - "625ed7c64d9b6612df732146" - ], - "mod_sight_rear": [ - "625ebcef6f53af4aa66b44dc" - ], - "mod_stock": [ - "625eb0faa6e3a82193267ad9" - ] - }, - "6259c2c1d714855d182bad85": { - "mod_muzzle": [ - "5c0111ab0db834001966914d" - ] - }, - "625ed7c64d9b6612df732146": { - "mod_scope": [ - "570fd721d2720bc5458b4596" - ] - }, - "628d0618d1ba6e4fa07ce5a4": { - "Back_plate": [ - "657b2797c3dbcb01d60c35ea" - ], - "Front_plate": [ - "656f664200d62bcd2e024077" - ], - "Soft_armor_back": [ - "657322a4cea9255e21023651" - ], - "Soft_armor_front": [ - "657322988c1cc6dcd9098b2d" - ], - "Soft_armor_left": [ - "657322acd9d89ff7ac0d961b" - ], - "soft_armor_right": [ - "657322b7d9d89ff7ac0d961f" - ] - }, - "62a09d79de7ac81993580530": { - "Soft_armor_back": [ - "6572e059371fccfbf909d5dc" - ], - "Soft_armor_front": [ - "6572e048371fccfbf909d5d8" - ], - "Soft_armor_left": [ - "6572e06219b4b511af012f89" - ], - "soft_armor_right": [ - "6572e06819b4b511af012f8d" - ] - }, - "62e7c72df68e7a0676050c77": { - "mod_barrel": [ - "630e39c3bd357927e4007c15" - ], - "mod_mount": [ - "62e7c8f91cd3fde4d503d690" - ], - "mod_tactical": [ - "626becf9582c3e319310b837" - ] - }, - "62e7c8f91cd3fde4d503d690": { - "mod_scope": [ - "558022b54bdc2dac148b458d" - ] - }, - "63075cc5962d0247b029dc2a": { - "mod_sight_front": [ - "630765777d50ff5e8a1ea718" - ], - "mod_sight_rear": [ - "630765cb962d0247b029dc45" - ] - }, - "63088377b5cd696784087147": { - "mod_barrel": [ - "630764fea987397c0816d219" - ], - "mod_magazine": [ - "63076701a987397c0816d21b" - ], - "mod_reciever": [ - "63075cc5962d0247b029dc2a" - ] - }, - "630e39c3bd357927e4007c15": { - "mod_foregrip": [ - "634e61b0767cb15c4601a877" - ], - "mod_muzzle": [ - "630f291b9f66a28b37094bb8" - ] - }, - "63171672192e68c5460cebc5": { - "mod_charge": [ - "62ebbc53e3c1e1ec7c02c44f" - ], - "mod_magazine": [ - "62e7c98b550c8218d602cbb4" - ], - "mod_reciever": [ - "62e7c72df68e7a0676050c77" - ] - }, - "634f02331f9f536910079b51": { - "mod_mount_000": [ - "634f04d82e5def262d0b30c6" - ] - }, - "634f04d82e5def262d0b30c6": { - "mod_gas_block": [ - "634f02d7517ccc8a960fc744" - ] - }, - "63737f448b28897f2802b874": { - "Back_plate": [ - "656fae5f7c2d57afe200c0d7" - ], - "Front_plate": [ - "656fae5f7c2d57afe200c0d7" - ] - }, - "637f57b78d137b27f70c496a": { - "mod_foregrip": [ - "558032614bdc2de7118b4585" - ] - }, - "639343fce101f4caa40a4ef3": { - "Back_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Front_plate": [ - "656fad8c498d1b7e3e071da0" - ], - "Soft_armor_back": [ - "6573102b292ecadbfa09b38d" - ], - "Soft_armor_front": [ - "6573101e292ecadbfa09b389" - ], - "Soft_armor_left": [ - "65731038292ecadbfa09b391" - ], - "soft_armor_right": [ - "65731045f31d5be00e08a75a" - ] - }, - "63d114019e35b334d82302f7": { - "mod_scope": [ - "558022b54bdc2dac148b458d", - "570fd6c2d2720bc6458b457f", - "64785e7c19d732620e045e15" - ] - }, - "640b20359ab20e15ee445fa9": { - "mod_foregrip": [ - "57cffb66245977632f391a99" - ] - }, - "644674a13d52156624001fbc": { - "mod_barrel": [ - "645122f6d4928d46d30be3ff" - ], - "mod_magazine": [ - "6450ec2e7da7133e5a09ca96" - ], - "mod_pistol_grip": [ - "6450f21a3d52156624001fcf" - ], - "mod_scope": [ - "6544d4187c5457729210d277" - ], - "mod_stock_000": [ - "6451167ad4928d46d30be3fd" - ] - }, - "645122f6d4928d46d30be3ff": { - "mod_handguard": [ - "644675573d52156624001fc9" - ], - "mod_muzzle": [ - "64527a3a7da7133e5a09ca99" - ] - }, - "645123013d52156624001fd1": { - "mod_handguard": [ - "6448f2f6d4928d46d30be3f6" - ], - "mod_muzzle": [ - "64527a263d52156624001fd7" - ] - }, - "64527a3a7da7133e5a09ca99": { - "mod_mount": [ - "57a3459f245977764a01f703" - ] - }, - "645e0c6b3b381ede770e1cc9": { - "mod_barrel": [ - "645123013d52156624001fd1" - ], - "mod_magazine": [ - "6450ec2e7da7133e5a09ca96" - ], - "mod_scope": [ - "618a5d5852ecee1505530b2a" - ], - "mod_stock": [ - "6452519e3d52156624001fd5" - ] - }, - "646f6322f43d0c5d62063715": { - "mod_tactical": [ - "646f62fee779812413011ab7" - ] - }, - "6499849fc93611967b034949": { - "mod_gas_block": [ - "649ec107961514b22506b10c" - ], - "mod_handguard": [ - "649ec127c93611967b034957" - ], - "mod_magazine": [ - "5bed61680db834001d2c45ab", - "64b9e265c94d0d15c5027e35" - ], - "mod_muzzle": [ - "649ec2af961514b22506b10f" - ], - "mod_pistol_grip": [ - "5beec8ea0db834001a6f9dbf" - ], - "mod_reciever": [ - "649ec2f3961514b22506b111" - ], - "mod_stock_001": [ - "649ec87d8007560a9001ab36" - ] - }, - "649ec127c93611967b034957": { - "mod_foregrip": [ - "59fc48e086f77463b1118392", - "5cf4fb76d7f00c065703d3ac", - "558032614bdc2de7118b4585", - "588226d124597767ad33f787", - "5c1bc4812e22164bef5cfde7" - ] - }, - "649ec2f3961514b22506b111": { - "mod_scope": [ - "609a63b6e2ff132951242d09", - "5c0505e00db834001b735073" - ] - }, - "649ec87d8007560a9001ab36": { - "mod_stock": [ - "5beec8c20db834001d2c465c" - ] - }, - "64a536392d2c4e6e970f4121": { - "Back_plate": [ - "656fac30c6baea13cd07e10c" - ], - "Front_plate": [ - "656fac30c6baea13cd07e10c" - ], - "Soft_armor_back": [ - "6570658a89fd4926380b7346" - ], - "Soft_armor_front": [ - "6570653e89fd4926380b733e" - ] - }, - "64a5366719bab53bd203bf33": { - "Back_plate": [ - "656fac30c6baea13cd07e10c" - ], - "Front_plate": [ - "656fac30c6baea13cd07e10c" - ] - }, - "64abd93857958b4249003418": { - "Back_plate": [ - "656fb0bd7c2d57afe200c0dc" - ], - "Front_plate": [ - "656fb0bd7c2d57afe200c0dc" - ], - "Soft_armor_back": [ - "6570f35cd67d0309980a7acb" - ], - "Soft_armor_front": [ - "6570f30b0921c914bf07964c" - ], - "Soft_armor_left": [ - "6570f3890b4ae5847f060dad" - ], - "soft_armor_right": [ - "6570f3bb0b4ae5847f060db2" - ] - }, - "64be79c487d1510151095552": { - "Soft_armor_back": [ - "657049d23425b19bbc0502f0" - ], - "Soft_armor_front": [ - "6570495b45d573133d0d6adb" - ] - }, - "65709d2d21b9f815e208ff95": { - "Helmet_back": [ - "657f9ef6c6679fefb3051e1f" - ], - "Helmet_top": [ - "657f9eb7e9433140ad0baf86" - ] - }, - "65719f0775149d62ce0a670b": { - "Helmet_back": [ - "657fa168e9433140ad0baf8e" - ], - "Helmet_ears": [ - "657fa186d4caf976440afe42" - ], - "Helmet_top": [ - "657fa0fcd4caf976440afe3e" - ], - "mod_equipment_000": [ - "65719f9ef392ad76c50a2ec8" - ] - } - } - }, - "lastName": [], - "skills": { - "Common": { - "Attention": { - "max": 5100, - "min": 5100 - }, - "CovertMovement": { - "max": 5100, - "min": 5100 - }, - "Endurance": { - "max": 5100, - "min": 5100 - }, - "Strength": { - "max": 5100, - "min": 5100 - } - } - } -} diff --git a/project/assets/database/globals.json b/project/assets/database/globals.json index fe59eb51..06fd2d97 100644 --- a/project/assets/database/globals.json +++ b/project/assets/database/globals.json @@ -1,33 +1,27708 @@ { + "BotWeaponScatterings": [ + { + "Name": "AssaultCarbine", + "PriorityScatter100meter": 0.03, + "PriorityScatter10meter": 0.1, + "PriorityScatter1meter": 0.2 + }, + { + "Name": "AssaultRifle", + "PriorityScatter100meter": 0.03, + "PriorityScatter10meter": 0.1, + "PriorityScatter1meter": 0.2 + }, + { + "Name": "GrenadeLauncher ", + "PriorityScatter100meter": 0.03, + "PriorityScatter10meter": 0.1, + "PriorityScatter1meter": 0.2 + } + ], + "ItemPresets": { + "5841474424597759ba49be91": { + "_changeWeaponName": false, + "_encyclopedia": "5644bd2b4bdc2d3b4c8b4572", + "_id": "5841474424597759ba49be91", + "_items": [ + { + "_id": "61a9f8f132a4743c3453d2c6", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "61a9f8f132a4743c3453d2c7", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "61a9f8f132a4743c3453d2c6", + "slotId": "mod_gas_block" + }, + { + "_id": "61a9f8f132a4743c3453d2c8", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "61a9f8f132a4743c3453d2c7", + "slotId": "mod_handguard" + }, + { + "_id": "61a9f8f132a4743c3453d2c9", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "61a9f8f132a4743c3453d2c6", + "slotId": "mod_muzzle" + }, + { + "_id": "61a9f8f132a4743c3453d2ca", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "61a9f8f132a4743c3453d2c6", + "slotId": "mod_pistol_grip" + }, + { + "_id": "61a9f8f132a4743c3453d2cb", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "61a9f8f132a4743c3453d2c6", + "slotId": "mod_reciever" + }, + { + "_id": "61a9f8f132a4743c3453d2cc", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "61a9f8f132a4743c3453d2c6", + "slotId": "mod_sight_rear" + }, + { + "_id": "61a9f8f132a4743c3453d2cd", + "_tpl": "5649b1c04bdc2d16268b457c", + "parentId": "61a9f8f132a4743c3453d2c6", + "slotId": "mod_stock" + }, + { + "_id": "61a9f8f132a4743c3453d2ce", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "61a9f8f132a4743c3453d2c6", + "slotId": "mod_magazine" + } + ], + "_name": "AK-74N", + "_parent": "61a9f8f132a4743c3453d2c6", + "_type": "Preset" + }, + "584147732459775a2b6d9f12": { + "_changeWeaponName": false, + "_encyclopedia": "57dc2fa62459775949412633", + "_id": "584147732459775a2b6d9f12", + "_items": [ + { + "_id": "61a9f9234e42d705e3133837", + "_tpl": "57dc2fa62459775949412633", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "61a9f9234e42d705e3133838", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "61a9f9234e42d705e3133837", + "slotId": "mod_pistol_grip" + }, + { + "_id": "61a9f9234e42d705e3133839", + "_tpl": "57dc347d245977596754e7a1", + "parentId": "61a9f9234e42d705e3133837", + "slotId": "mod_stock" + }, + { + "_id": "61a9f9234e42d705e313383a", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "61a9f9234e42d705e3133837", + "slotId": "mod_magazine" + }, + { + "_id": "61a9f9234e42d705e313383b", + "_tpl": "57dc324a24597759501edc20", + "parentId": "61a9f9234e42d705e3133837", + "slotId": "mod_muzzle" + }, + { + "_id": "61a9f9234e42d705e313383c", + "_tpl": "57dc334d245977597164366f", + "parentId": "61a9f9234e42d705e3133837", + "slotId": "mod_reciever" + }, + { + "_id": "61a9f9234e42d705e313383d", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "61a9f9234e42d705e3133837", + "slotId": "mod_gas_block" + }, + { + "_id": "61a9f9234e42d705e313383e", + "_tpl": "57dc32dc245977596d4ef3d3", + "parentId": "61a9f9234e42d705e313383d", + "slotId": "mod_handguard" + } + ], + "_name": "AKS-74U Default", + "_parent": "61a9f9234e42d705e3133837", + "_type": "Preset" + }, + "584147982459775a6c55e931": { + "_changeWeaponName": false, + "_encyclopedia": "5839a40f24597726f856b511", + "_id": "584147982459775a6c55e931", + "_items": [ + { + "_id": "61a9f93a7549bb6aab33c04b", + "_tpl": "5839a40f24597726f856b511", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "61a9f93a7549bb6aab33c04c", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "61a9f93a7549bb6aab33c04b", + "slotId": "mod_pistol_grip" + }, + { + "_id": "61a9f93a7549bb6aab33c04d", + "_tpl": "57dc347d245977596754e7a1", + "parentId": "61a9f93a7549bb6aab33c04b", + "slotId": "mod_stock" + }, + { + "_id": "61a9f93a7549bb6aab33c04e", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "61a9f93a7549bb6aab33c04b", + "slotId": "mod_magazine" + }, + { + "_id": "61a9f93a7549bb6aab33c04f", + "_tpl": "57ffb0e42459777d047111c5", + "parentId": "61a9f93a7549bb6aab33c04b", + "slotId": "mod_muzzle" + }, + { + "_id": "61a9f93a7549bb6aab33c050", + "_tpl": "5839a7742459773cf9693481", + "parentId": "61a9f93a7549bb6aab33c04b", + "slotId": "mod_reciever" + }, + { + "_id": "61a9f93a7549bb6aab33c051", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "61a9f93a7549bb6aab33c04b", + "slotId": "mod_gas_block" + }, + { + "_id": "61a9f93a7549bb6aab33c052", + "_tpl": "57dc32dc245977596d4ef3d3", + "parentId": "61a9f93a7549bb6aab33c051", + "slotId": "mod_handguard" + } + ], + "_name": "AKS-74UB Default", + "_parent": "61a9f93a7549bb6aab33c04b", + "_type": "Preset" + }, + "584147ed2459775a77263501": { + "_changeWeaponName": false, + "_encyclopedia": "583990e32459771419544dd2", + "_id": "584147ed2459775a77263501", + "_items": [ + { + "_id": "61a9f94d4e42d705e313383f", + "_tpl": "583990e32459771419544dd2", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "61a9f94d4e42d705e3133840", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "61a9f94d4e42d705e313383f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "61a9f94d4e42d705e3133841", + "_tpl": "57dc347d245977596754e7a1", + "parentId": "61a9f94d4e42d705e313383f", + "slotId": "mod_stock" + }, + { + "_id": "61a9f94d4e42d705e3133842", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "61a9f94d4e42d705e313383f", + "slotId": "mod_magazine" + }, + { + "_id": "61a9f94d4e42d705e3133843", + "_tpl": "57dc324a24597759501edc20", + "parentId": "61a9f94d4e42d705e313383f", + "slotId": "mod_muzzle" + }, + { + "_id": "61a9f94d4e42d705e3133844", + "_tpl": "57dc334d245977597164366f", + "parentId": "61a9f94d4e42d705e313383f", + "slotId": "mod_reciever" + }, + { + "_id": "61a9f94d4e42d705e3133845", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "61a9f94d4e42d705e313383f", + "slotId": "mod_gas_block" + }, + { + "_id": "61a9f94d4e42d705e3133846", + "_tpl": "57dc32dc245977596d4ef3d3", + "parentId": "61a9f94d4e42d705e3133845", + "slotId": "mod_handguard" + } + ], + "_name": "AKS-74UN Default", + "_parent": "61a9f94d4e42d705e313383f", + "_type": "Preset" + }, + "5841482e2459775a050cdda9": { + "_changeWeaponName": false, + "_encyclopedia": "57c44b372459772d2b39b8ce", + "_id": "5841482e2459775a050cdda9", + "_items": [ + { + "_id": "5841482e2459775a050cdda1", + "_tpl": "57c44b372459772d2b39b8ce" + }, + { + "_id": "5841482e2459775a050cdda2", + "_tpl": "57c44dd02459772d2e0ae249", + "parentId": "5841482e2459775a050cdda1", + "slotId": "mod_muzzle" + }, + { + "_id": "5841482e2459775a050cdda7", + "_tpl": "57c44e7b2459772d28133248", + "parentId": "5841482e2459775a050cdda2", + "slotId": "mod_sight_rear" + }, + { + "_id": "5841482e2459775a050cdda3", + "_tpl": "57c44f4f2459772d2c627113", + "parentId": "5841482e2459775a050cdda1", + "slotId": "mod_reciever" + }, + { + "_id": "5841482e2459775a050cdda4", + "_tpl": "57838f9f2459774a150289a0", + "parentId": "5841482e2459775a050cdda1", + "slotId": "mod_magazine" + }, + { + "_id": "5841482e2459775a050cdda5", + "_tpl": "57c44fa82459772d2d75e415", + "parentId": "5841482e2459775a050cdda1", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5841482e2459775a050cdda6", + "_tpl": "57c450252459772d28133253", + "parentId": "5841482e2459775a050cdda1", + "slotId": "mod_stock" + } + ], + "_name": "AS VAL Default", + "_parent": "5841482e2459775a050cdda1", + "_type": "Preset" + }, + "584148a524597759eb357a44": { + "_changeWeaponName": false, + "_encyclopedia": "576a581d2459771e7b1bc4f1", + "_id": "584148a524597759eb357a44", + "_items": [ + { + "_id": "584148a524597759eb357a40", + "_tpl": "576a581d2459771e7b1bc4f1" + }, + { + "_id": "584148a524597759eb357a41", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "584148a524597759eb357a40", + "slotId": "mod_magazine" + }, + { + "_id": "584148a524597759eb357a42", + "_tpl": "576a63cd2459771e796e0e11", + "parentId": "584148a524597759eb357a40", + "slotId": "mod_pistol_grip" + } + ], + "_name": "MP-443 Default", + "_parent": "584148a524597759eb357a40", + "_type": "Preset" + }, + "584148f2245977598f1ad387": { + "_changeWeaponName": false, + "_encyclopedia": "54491c4f4bdc2db1078b4568", + "_id": "584148f2245977598f1ad387", + "_items": [ + { + "_id": "584148f2245977598f1ad381", + "_tpl": "54491c4f4bdc2db1078b4568" + }, + { + "_id": "584148f2245977598f1ad382", + "_tpl": "55d4491a4bdc2d882f8b456e", + "parentId": "584148f2245977598f1ad381", + "slotId": "mod_barrel" + }, + { + "_id": "584148f2245977598f1ad383", + "_tpl": "55d45d3f4bdc2d972f8b456c", + "parentId": "584148f2245977598f1ad381", + "slotId": "mod_handguard" + }, + { + "_id": "584148f2245977598f1ad384", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "parentId": "584148f2245977598f1ad381", + "slotId": "mod_magazine" + }, + { + "_id": "584148f2245977598f1ad385", + "_tpl": "56083cba4bdc2de22e8b456f", + "parentId": "584148f2245977598f1ad381", + "slotId": "mod_stock" + } + ], + "_name": "MP-133 Default", + "_parent": "584148f2245977598f1ad381", + "_type": "Preset" + }, + "58414907245977598f1ad38d": { + "_changeWeaponName": false, + "_encyclopedia": "56dee2bdd2720bc8328b4567", + "_id": "58414907245977598f1ad38d", + "_items": [ + { + "_id": "58414907245977598f1ad388", + "_tpl": "56dee2bdd2720bc8328b4567" + }, + { + "_id": "58414907245977598f1ad389", + "_tpl": "56deec93d2720bec348b4568", + "parentId": "58414907245977598f1ad388", + "slotId": "mod_barrel" + }, + { + "_id": "58414907245977598f1ad38a", + "_tpl": "56deed6ed2720b4c698b4583", + "parentId": "58414907245977598f1ad388", + "slotId": "mod_handguard" + }, + { + "_id": "58414907245977598f1ad38b", + "_tpl": "56deee15d2720bee328b4567", + "parentId": "58414907245977598f1ad388", + "slotId": "mod_magazine" + }, + { + "_id": "57a25c2d2459770b297b0dbf", + "_tpl": "56083be64bdc2d20478b456f", + "parentId": "58414907245977598f1ad388", + "slotId": "mod_stock" + } + ], + "_name": "MP-153 Default", + "_parent": "58414907245977598f1ad388", + "_type": "Preset" + }, + "584149242459775a7726350a": { + "_changeWeaponName": false, + "_encyclopedia": "56d59856d2720bd8418b456a", + "_id": "584149242459775a7726350a", + "_items": [ + { + "_id": "584149242459775a77263502", + "_tpl": "56d59856d2720bd8418b456a" + }, + { + "_id": "584149242459775a77263503", + "_tpl": "56d5a1f7d2720bb3418b456a", + "parentId": "584149242459775a77263502", + "slotId": "mod_barrel" + }, + { + "_id": "584149242459775a77263504", + "_tpl": "56d5a2bbd2720bb8418b456a", + "parentId": "584149242459775a77263502", + "slotId": "mod_pistol_grip" + }, + { + "_id": "584149242459775a77263505", + "_tpl": "56d5a407d2720bb3418b456b", + "parentId": "584149242459775a77263502", + "slotId": "mod_reciever" + }, + { + "_id": "584149242459775a77263507", + "_tpl": "56d5a77ed2720b90418b4568", + "parentId": "584149242459775a77263505", + "slotId": "mod_sight_rear" + }, + { + "_id": "584149242459775a77263508", + "_tpl": "56d5a661d2720bd8418b456b", + "parentId": "584149242459775a77263505", + "slotId": "mod_sight_front" + }, + { + "_id": "584149242459775a77263506", + "_tpl": "56d59948d2720bb7418b4582", + "parentId": "584149242459775a77263502", + "slotId": "mod_magazine" + } + ], + "_name": "P226R Default", + "_parent": "584149242459775a77263502", + "_type": "Preset" + }, + "584149452459775992479702": { + "_changeWeaponName": false, + "_encyclopedia": "56e0598dd2720bb5668b45a6", + "_id": "584149452459775992479702", + "_items": [ + { + "_id": "64c23da53d572f1a621fdd29", + "_tpl": "56e0598dd2720bb5668b45a6", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "64c23da53d572f1a621fdd2a", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "64c23da53d572f1a621fdd29", + "slotId": "mod_magazine" + }, + { + "_id": "64c23da53d572f1a621fdd2b", + "_tpl": "56e05b06d2720bb2668b4586", + "parentId": "64c23da53d572f1a621fdd29", + "slotId": "mod_muzzle" + }, + { + "_id": "64c23da53d572f1a621fdd2c", + "_tpl": "56e05a6ed2720bd0748b4567", + "parentId": "64c23da53d572f1a621fdd29", + "slotId": "mod_pistolgrip" + } + ], + "_name": "PB Default", + "_parent": "64c23da53d572f1a621fdd29", + "_type": "Preset" + }, + "58414967245977598f1ad391": { + "_changeWeaponName": false, + "_encyclopedia": "5448bd6b4bdc2dfc2f8b4569", + "_id": "58414967245977598f1ad391", + "_items": [ + { + "_id": "64c23df38c55c412dc222f04", + "_tpl": "5448bd6b4bdc2dfc2f8b4569", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "64c23df38c55c412dc222f05", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "64c23df38c55c412dc222f04", + "slotId": "mod_magazine" + }, + { + "_id": "64c23df38c55c412dc222f06", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "64c23df38c55c412dc222f04", + "slotId": "mod_reciever" + }, + { + "_id": "64c23df38c55c412dc222f07", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "64c23df38c55c412dc222f06", + "slotId": "mod_sight_rear" + }, + { + "_id": "64c23df38c55c412dc222f08", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "64c23df38c55c412dc222f04", + "slotId": "mod_pistolgrip" + } + ], + "_name": "PM Default", + "_parent": "64c23df38c55c412dc222f04", + "_type": "Preset" + }, + "5841499024597759f825ff3e": { + "_changeWeaponName": false, + "_encyclopedia": "579204f224597773d619e051", + "_id": "5841499024597759f825ff3e", + "_items": [ + { + "_id": "64c23de75a41fc5756069944", + "_tpl": "579204f224597773d619e051", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "64c23de75a41fc5756069945", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "64c23de75a41fc5756069944", + "slotId": "mod_magazine" + }, + { + "_id": "64c23de75a41fc5756069946", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "64c23de75a41fc5756069944", + "slotId": "mod_reciever" + }, + { + "_id": "64c23de75a41fc5756069947", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "64c23de75a41fc5756069946", + "slotId": "mod_sight_rear" + }, + { + "_id": "64c23de75a41fc5756069948", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "64c23de75a41fc5756069944", + "slotId": "mod_pistolgrip" + } + ], + "_name": "PM (t) Default", + "_parent": "64c23de75a41fc5756069944", + "_type": "Preset" + }, + "584149ad2459775a7726350e": { + "_changeWeaponName": false, + "_encyclopedia": "57f4c844245977379d5c14d1", + "_id": "584149ad2459775a7726350e", + "_items": [ + { + "_id": "5841427d24597752602fdcc7", + "_tpl": "57f4c844245977379d5c14d1" + }, + { + "_id": "584149ad2459775a7726350d", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "5841427d24597752602fdcc7", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5841427d24597752602fdcf1", + "_tpl": "57d1519e24597714373db79d", + "parentId": "5841427d24597752602fdcc7", + "slotId": "mod_magazine" + } + ], + "_name": "PP-9 Klin Default", + "_parent": "5841427d24597752602fdcc7", + "_type": "Preset" + }, + "584149c42459775a77263510": { + "_changeWeaponName": false, + "_encyclopedia": "57d14d2524597714373db789", + "_id": "584149c42459775a77263510", + "_items": [ + { + "_id": "57ee35422459776d4e721588", + "_tpl": "57d14d2524597714373db789" + }, + { + "_id": "57ee35422459776d4e721589", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "57ee35422459776d4e721588", + "slotId": "mod_pistol_grip" + }, + { + "_id": "57ee35422459776d4e72158a", + "_tpl": "57d1519e24597714373db79d", + "parentId": "57ee35422459776d4e721588", + "slotId": "mod_magazine" + } + ], + "_name": "PP-91 Kedr Default", + "_parent": "57ee35422459776d4e721588", + "_type": "Preset" + }, + "584149ea2459775a6c55e940": { + "_changeWeaponName": false, + "_encyclopedia": "57f3c6bd24597738e730fa2f", + "_id": "584149ea2459775a6c55e940", + "_items": [ + { + "_id": "5841427d24597752602fdcc6", + "_tpl": "57f3c6bd24597738e730fa2f" + }, + { + "_id": "5841427d24597752602fdcee", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "5841427d24597752602fdcc6", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5841427d24597752602fdcef", + "_tpl": "57f3c7e024597738ea4ba286", + "parentId": "5841427d24597752602fdcc6", + "slotId": "mod_muzzle" + }, + { + "_id": "5841427d24597752602fdd05", + "_tpl": "57f3c8cc2459773ec4480328", + "parentId": "5841427d24597752602fdcef", + "slotId": "mod_muzzle" + }, + { + "_id": "5841427d24597752602fdcf0", + "_tpl": "57d1519e24597714373db79d", + "parentId": "5841427d24597752602fdcc6", + "slotId": "mod_magazine" + } + ], + "_name": "PP-91-01 Kedr-B Default", + "_parent": "5841427d24597752602fdcc6", + "_type": "Preset" + }, + "58414a052459775a2b6d9f1e": { + "_changeWeaponName": false, + "_encyclopedia": "576165642459773c7a400233", + "_id": "58414a052459775a2b6d9f1e", + "_items": [ + { + "_id": "58414a052459775a2b6d9f15", + "_tpl": "576165642459773c7a400233" + }, + { + "_id": "58414a052459775a2b6d9f16", + "_tpl": "576169e62459773c69055191", + "parentId": "58414a052459775a2b6d9f15", + "slotId": "mod_handguard" + }, + { + "_id": "58414a052459775a2b6d9f17", + "_tpl": "576167ab2459773cad038c43", + "parentId": "58414a052459775a2b6d9f15", + "slotId": "mod_muzzle" + }, + { + "_id": "58414a052459775a2b6d9f18", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "58414a052459775a2b6d9f15", + "slotId": "mod_pistol_grip" + }, + { + "_id": "58414a052459775a2b6d9f19", + "_tpl": "57616c112459773cce774d66", + "parentId": "58414a052459775a2b6d9f15", + "slotId": "mod_reciever" + }, + { + "_id": "58414a052459775a2b6d9f1a", + "_tpl": "57a9b9ce2459770ee926038d", + "parentId": "58414a052459775a2b6d9f15", + "slotId": "mod_sight_rear" + }, + { + "_id": "58414a052459775a2b6d9f1b", + "_tpl": "57616ca52459773c69055192", + "parentId": "58414a052459775a2b6d9f15", + "slotId": "mod_stock" + }, + { + "_id": "58414a052459775a2b6d9f1c", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "58414a052459775a2b6d9f15", + "slotId": "mod_magazine" + } + ], + "_name": "Saiga 12 v10 Default", + "_parent": "58414a052459775a2b6d9f15", + "_type": "Preset" + }, + "58414a16245977599247970a": { + "_changeWeaponName": false, + "_encyclopedia": "55801eed4bdc2d89578b4588", + "_id": "58414a16245977599247970a", + "_items": [ + { + "_id": "629762133e4c46444179c8fd", + "_tpl": "55801eed4bdc2d89578b4588", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "629762133e4c46444179c8fe", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "parentId": "629762133e4c46444179c8fd", + "slotId": "mod_magazine" + }, + { + "_id": "629762133e4c46444179c8ff", + "_tpl": "56083e1b4bdc2dc8488b4572", + "parentId": "629762133e4c46444179c8fd", + "slotId": "mod_sight_rear" + }, + { + "_id": "629762133e4c46444179c900", + "_tpl": "56083eab4bdc2d26448b456a", + "parentId": "629762133e4c46444179c8fd", + "slotId": "mod_tactical" + }, + { + "_id": "629762133e4c46444179c901", + "_tpl": "560e620e4bdc2d724b8b456b", + "parentId": "629762133e4c46444179c8fd", + "slotId": "mod_muzzle" + }, + { + "_id": "629762133e4c46444179c902", + "_tpl": "61faa91878830f069b6b7967", + "parentId": "629762133e4c46444179c8fd", + "slotId": "mod_stock" + }, + { + "_id": "629762133e4c46444179c903", + "_tpl": "56ea8222d2720b69698b4567", + "parentId": "629762133e4c46444179c902", + "slotId": "mod_bipod" + } + ], + "_name": "SV-98 Default", + "_parent": "629762133e4c46444179c8fd", + "_type": "Preset" + }, + "58414a2724597759b344da4d": { + "_changeWeaponName": false, + "_encyclopedia": "571a12c42459771f627b58a0", + "_id": "58414a2724597759b344da4d", + "_items": [ + { + "_id": "57ab5a6c2459777e356c68aa", + "_tpl": "571a12c42459771f627b58a0" + }, + { + "_id": "57ab5a6c2459777e356c68ab", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "57ab5a6c2459777e356c68aa", + "slotId": "mod_barrel" + }, + { + "_id": "57ab5a6c2459777e356c68ac", + "_tpl": "571a282c2459771fb2755a69", + "parentId": "57ab5a6c2459777e356c68aa", + "slotId": "mod_pistol_grip" + }, + { + "_id": "57ab5a6c2459777e356c68ad", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "57ab5a6c2459777e356c68aa", + "slotId": "mod_magazine" + } + ], + "_name": "TT Default", + "_parent": "57ab5a6c2459777e356c68aa", + "_type": "Preset" + }, + "58414a3f2459775a77263531": { + "_changeWeaponName": false, + "_encyclopedia": "57838ad32459774a17445cd2", + "_id": "58414a3f2459775a77263531", + "_items": [ + { + "_id": "58414a3f2459775a7726352a", + "_tpl": "57838ad32459774a17445cd2" + }, + { + "_id": "58414a3f2459775a7726352b", + "_tpl": "57838f0b2459774a256959b2", + "parentId": "58414a3f2459775a7726352a", + "slotId": "mod_magazine" + }, + { + "_id": "58414a3f2459775a7726352c", + "_tpl": "57838c962459774a1651ec63", + "parentId": "58414a3f2459775a7726352a", + "slotId": "mod_muzzle" + }, + { + "_id": "58414a3f2459775a77263530", + "_tpl": "57838e1b2459774a256959b1", + "parentId": "58414a3f2459775a7726352c", + "slotId": "mod_sight_rear" + }, + { + "_id": "58414a3f2459775a7726352d", + "_tpl": "578395402459774a256959b5", + "parentId": "58414a3f2459775a7726352a", + "slotId": "mod_reciever" + }, + { + "_id": "58414a3f2459775a7726352e", + "_tpl": "578395e82459774a0e553c7b", + "parentId": "58414a3f2459775a7726352a", + "slotId": "mod_stock" + } + ], + "_name": "VSS Vintorez Default", + "_parent": "58414a3f2459775a7726352a", + "_type": "Preset" + }, + "58dffc5d86f77407c744a847": { + "_changeWeaponName": true, + "_encyclopedia": "588892092459774ac91d4b11", + "_id": "58dffc5d86f77407c744a847", + "_items": [ + { + "_id": "5a3a85ca86f7746b26670454", + "_tpl": "588892092459774ac91d4b11" + }, + { + "_id": "5a3a85ca86f7746b26670455", + "_tpl": "5888988e24597752fe43a6fa", + "parentId": "5a3a85ca86f7746b26670454", + "slotId": "mod_magazine" + }, + { + "_id": "5a3a85ca86f7746b26670456", + "_tpl": "5888956924597752983e182d", + "parentId": "5a3a85ca86f7746b26670454", + "slotId": "mod_barrel" + }, + { + "_id": "5a3a85ca86f7746b26670459", + "_tpl": "5888996c24597754281f9419", + "parentId": "5a3a85ca86f7746b26670456", + "slotId": "mod_muzzle" + }, + { + "_id": "5a3a85ca86f7746b2667045a", + "_tpl": "5888976c24597754281f93f5", + "parentId": "5a3a85ca86f7746b26670456", + "slotId": "mod_handguard" + }, + { + "_id": "5a3a85ca86f7746b26670457", + "_tpl": "57c55f172459772d27602381", + "parentId": "5a3a85ca86f7746b26670454", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a3a85ca86f7746b26670458", + "_tpl": "58889d0c2459775bc215d981", + "parentId": "5a3a85ca86f7746b26670454", + "slotId": "mod_stock" + } + ], + "_name": "DVL Default", + "_parent": "5a3a85ca86f7746b26670454", + "_type": "Preset" + }, + "58dffca786f774083a256ab1": { + "_changeWeaponName": false, + "_encyclopedia": "58948c8e86f77409493f7266", + "_id": "58dffca786f774083a256ab1", + "_items": [ + { + "_id": "58dffb3286f77405bb0f797a", + "_tpl": "58948c8e86f77409493f7266" + }, + { + "_id": "58dffb3286f77405bb0f7983", + "_tpl": "5894a51286f77426d13baf02", + "parentId": "58dffb3286f77405bb0f797a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "58dffb3286f77405bb0f7984", + "_tpl": "5894a05586f774094708ef75", + "parentId": "58dffb3286f77405bb0f797a", + "slotId": "mod_magazine" + }, + { + "_id": "58dffb3286f77405bb0f7985", + "_tpl": "5894a5b586f77426d2590767", + "parentId": "58dffb3286f77405bb0f797a", + "slotId": "mod_reciever" + }, + { + "_id": "58dffb3286f77405bb0f798a", + "_tpl": "5894a2c386f77427140b8342", + "parentId": "58dffb3286f77405bb0f7985", + "slotId": "mod_barrel" + }, + { + "_id": "58dffb3286f77405bb0f798d", + "_tpl": "58949dea86f77409483e16a8", + "parentId": "58dffb3286f77405bb0f798a", + "slotId": "mod_muzzle" + }, + { + "_id": "58dffb3286f77405bb0f798b", + "_tpl": "5894a42086f77426d2590762", + "parentId": "58dffb3286f77405bb0f7985", + "slotId": "mod_handguard" + }, + { + "_id": "58dffb3286f77405bb0f798e", + "_tpl": "5894a73486f77426d259076c", + "parentId": "58dffb3286f77405bb0f798b", + "slotId": "mod_sight_front" + }, + { + "_id": "58dffb3286f77405bb0f7980", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "58dffb3286f77405bb0f798b", + "slotId": "mod_mount_000" + }, + { + "_id": "58dffca786f774083a256ab0", + "_tpl": "58a5c12e86f7745d585a2b9e", + "parentId": "58dffb3286f77405bb0f798b", + "slotId": "mod_mount_001" + }, + { + "_id": "58dffb3286f77405bb0f797f", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "58dffb3286f77405bb0f798b", + "slotId": "mod_mount_002" + }, + { + "_id": "58dffb3286f77405bb0f798c", + "_tpl": "5894a81786f77427140b8347", + "parentId": "58dffb3286f77405bb0f7985", + "slotId": "mod_sight_rear" + }, + { + "_id": "58dffb3286f77405bb0f7986", + "_tpl": "5894a13e86f7742405482982", + "parentId": "58dffb3286f77405bb0f797a", + "slotId": "mod_stock" + }, + { + "_id": "58dffb3286f77405bb0f7987", + "_tpl": "58949edd86f77409483e16a9", + "parentId": "58dffb3286f77405bb0f797a", + "slotId": "mod_charge" + } + ], + "_name": "MPX Default", + "_parent": "58dffb3286f77405bb0f797a", + "_type": "Preset" + }, + "58dffce486f77409f40f8162": { + "_changeWeaponName": false, + "_encyclopedia": "574d967124597745970e7c94", + "_id": "58dffce486f77409f40f8162", + "_items": [ + { + "_id": "657eb3b326f0eb071805620f", + "_tpl": "574d967124597745970e7c94", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "657eb3b326f0eb0718056210", + "_tpl": "574dad8024597745964bf05c", + "parentId": "657eb3b326f0eb071805620f", + "slotId": "mod_stock" + }, + { + "_id": "657eb3b326f0eb0718056211", + "_tpl": "634f02331f9f536910079b51", + "parentId": "657eb3b326f0eb071805620f", + "slotId": "mod_barrel" + }, + { + "_id": "657eb3b326f0eb0718056212", + "_tpl": "634f04d82e5def262d0b30c6", + "parentId": "657eb3b326f0eb0718056211", + "slotId": "mod_mount_000" + }, + { + "_id": "657eb3b326f0eb0718056213", + "_tpl": "634f02d7517ccc8a960fc744", + "parentId": "657eb3b326f0eb0718056212", + "slotId": "mod_gas_block" + }, + { + "_id": "657eb3b326f0eb0718056214", + "_tpl": "634f08a21f9f536910079b5a", + "parentId": "657eb3b326f0eb0718056213", + "slotId": "mod_mount_000" + }, + { + "_id": "657eb3b326f0eb0718056215", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "657eb3b326f0eb0718056212", + "slotId": "mod_sight_rear" + }, + { + "_id": "657eb3b326f0eb0718056216", + "_tpl": "587df3a12459772c28142567", + "parentId": "657eb3b326f0eb071805620f", + "slotId": "mod_magazine" + }, + { + "_id": "657eb3b326f0eb0718056217", + "_tpl": "634f05ca517ccc8a960fc748", + "parentId": "657eb3b326f0eb071805620f", + "slotId": "mod_reciever" + } + ], + "_name": "SKS Defualt", + "_parent": "657eb3b326f0eb071805620f", + "_type": "Preset" + }, + "58dffd4586f77408a27629b2": { + "_changeWeaponName": true, + "_id": "58dffd4586f77408a27629b2", + "_items": [ + { + "_id": "58dffb3286f77405bb0f797b", + "_tpl": "58948c8e86f77409493f7266" + }, + { + "_id": "58dffb9c86f774062d730f90", + "_tpl": "5894a51286f77426d13baf02", + "parentId": "58dffb3286f77405bb0f797b", + "slotId": "mod_pistol_grip" + }, + { + "_id": "58dffb9c86f774062d730f91", + "_tpl": "5894a05586f774094708ef75", + "parentId": "58dffb3286f77405bb0f797b", + "slotId": "mod_magazine" + }, + { + "_id": "58dffb9c86f774062d730f92", + "_tpl": "5894a5b586f77426d2590767", + "parentId": "58dffb3286f77405bb0f797b", + "slotId": "mod_reciever" + }, + { + "_id": "58dffb9c86f774062d730f93", + "_tpl": "58aeaaa886f7744fc1560f81", + "parentId": "58dffb9c86f774062d730f92", + "slotId": "mod_barrel" + }, + { + "_id": "58dffb9c86f774062d730f96", + "_tpl": "58aeac1b86f77457c419f475", + "parentId": "58dffb9c86f774062d730f93", + "slotId": "mod_muzzle" + }, + { + "_id": "58dffb9c86f774062d730f94", + "_tpl": "5894a42086f77426d2590762", + "parentId": "58dffb9c86f774062d730f92", + "slotId": "mod_handguard" + }, + { + "_id": "58dffb9c86f774062d730f97", + "_tpl": "5894a73486f77426d259076c", + "parentId": "58dffb9c86f774062d730f94", + "slotId": "mod_sight_front" + }, + { + "_id": "58dffb3286f77405bb0f797d", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "58dffb9c86f774062d730f94", + "slotId": "mod_mount_000" + }, + { + "_id": "58dffb9c86f774062d730f98", + "_tpl": "58a5c12e86f7745d585a2b9e", + "parentId": "58dffb9c86f774062d730f94", + "slotId": "mod_mount_001" + }, + { + "_id": "58dffb3286f77405bb0f797c", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "58dffb9c86f774062d730f94", + "slotId": "mod_mount_002" + }, + { + "_id": "58dffb9c86f774062d730f95", + "_tpl": "5894a81786f77427140b8347", + "parentId": "58dffb9c86f774062d730f92", + "slotId": "mod_sight_rear" + }, + { + "_id": "58dffb3286f77405bb0f7988", + "_tpl": "58ac1bf086f77420ed183f9f", + "parentId": "58dffb3286f77405bb0f797b", + "slotId": "mod_stock" + }, + { + "_id": "58dffb3286f77405bb0f798f", + "_tpl": "57ade1442459771557167e15", + "parentId": "58dffb3286f77405bb0f7988", + "slotId": "mod_stock" + }, + { + "_id": "58dffb3286f77405bb0f7989", + "_tpl": "58949fac86f77409483e16aa", + "parentId": "58dffb3286f77405bb0f797b", + "slotId": "mod_charge" + } + ], + "_name": "MPX Silenced", + "_parent": "58dffb3286f77405bb0f797b", + "_type": "Preset" + }, + "59411aa786f7747aeb37f9a5": { + "_changeWeaponName": false, + "_encyclopedia": "5926bb2186f7744b1c6c6e60", + "_id": "59411aa786f7747aeb37f9a5", + "_items": [ + { + "_id": "61a9f96a84ea0800645777f1", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "61a9f96a84ea0800645777f2", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "61a9f96a84ea0800645777f1", + "slotId": "mod_magazine" + }, + { + "_id": "61a9f96a84ea0800645777f3", + "_tpl": "5926c0df86f77462f647f764", + "parentId": "61a9f96a84ea0800645777f1", + "slotId": "mod_reciever" + }, + { + "_id": "61a9f96a84ea0800645777f4", + "_tpl": "5926c36d86f77467a92a8629", + "parentId": "61a9f96a84ea0800645777f3", + "slotId": "mod_handguard" + }, + { + "_id": "61a9f96a84ea0800645777f5", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "61a9f96a84ea0800645777f3", + "slotId": "mod_sight_rear" + }, + { + "_id": "61a9f96a84ea0800645777f6", + "_tpl": "5926d3c686f77410de68ebc8", + "parentId": "61a9f96a84ea0800645777f3", + "slotId": "mod_stock" + }, + { + "_id": "61a9f96a84ea0800645777f7", + "_tpl": "5926e16e86f7742f5a0f7ecb", + "parentId": "61a9f96a84ea0800645777f3", + "slotId": "mod_muzzle" + }, + { + "_id": "61a9f96a84ea0800645777f8", + "_tpl": "5926c32286f774616e42de99", + "parentId": "61a9f96a84ea0800645777f1", + "slotId": "mod_charge" + } + ], + "_name": "MP5 Default", + "_parent": "61a9f96a84ea0800645777f1", + "_type": "Preset" + }, + "59411abb86f77478f702b5d2": { + "_changeWeaponName": true, + "_id": "59411abb86f77478f702b5d2", + "_items": [ + { + "_id": "639bb5185b759c65a34764ee", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "639bb5185b759c65a34764ef", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "639bb5185b759c65a34764ee", + "slotId": "mod_magazine" + }, + { + "_id": "639bb5185b759c65a34764f0", + "_tpl": "5926f2e086f7745aae644231", + "parentId": "639bb5185b759c65a34764ee", + "slotId": "mod_reciever" + }, + { + "_id": "639bb5185b759c65a34764f1", + "_tpl": "5926f34786f77469195bfe92", + "parentId": "639bb5185b759c65a34764f0", + "slotId": "mod_handguard" + }, + { + "_id": "639bb5185b759c65a34764f2", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "639bb5185b759c65a34764f0", + "slotId": "mod_sight_rear" + }, + { + "_id": "639bb5185b759c65a34764f3", + "_tpl": "5926d40686f7740f152b6b7e", + "parentId": "639bb5185b759c65a34764f0", + "slotId": "mod_stock" + }, + { + "_id": "639bb5185b759c65a34764f4", + "_tpl": "5926d33d86f77410de68ebc0", + "parentId": "639bb5185b759c65a34764f0", + "slotId": "mod_muzzle" + }, + { + "_id": "639bb5185b759c65a34764f5", + "_tpl": "5926c32286f774616e42de99", + "parentId": "639bb5185b759c65a34764ee", + "slotId": "mod_charge" + } + ], + "_name": "MP5SD", + "_parent": "639bb5185b759c65a34764ee", + "_type": "Preset" + }, + "59430b9b86f77403c27945fd": { + "_changeWeaponName": true, + "_id": "59430b9b86f77403c27945fd", + "_items": [ + { + "_id": "59e5ea8186f7740613442164", + "_tpl": "5644bd2b4bdc2d3b4c8b4572" + }, + { + "_id": "59e5ea8186f7740613442165", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "59e5ea8186f7740613442164", + "slotId": "mod_gas_block" + }, + { + "_id": "59e5ea8186f774061344216c", + "_tpl": "57cffddc24597763133760c6", + "parentId": "59e5ea8186f7740613442165", + "slotId": "mod_handguard" + }, + { + "_id": "59e5ea8186f774061344216f", + "_tpl": "57cffcd624597763133760c5", + "parentId": "59e5ea8186f774061344216c", + "slotId": "mod_mount_003" + }, + { + "_id": "59e5ea8186f7740613442166", + "_tpl": "5649ab884bdc2ded0b8b457f", + "parentId": "59e5ea8186f7740613442164", + "slotId": "mod_muzzle" + }, + { + "_id": "59e5ea8186f7740613442167", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "parentId": "59e5ea8186f7740613442164", + "slotId": "mod_pistol_grip" + }, + { + "_id": "59e5ea8186f7740613442168", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "59e5ea8186f7740613442164", + "slotId": "mod_reciever" + }, + { + "_id": "59e5ea8186f7740613442169", + "_tpl": "5649d9a14bdc2d79388b4580", + "parentId": "59e5ea8186f7740613442164", + "slotId": "mod_sight_rear" + }, + { + "_id": "59e5ea8186f774061344216d", + "_tpl": "58491f3324597764bc48fa02", + "parentId": "59e5ea8186f7740613442169", + "slotId": "mod_scope" + }, + { + "_id": "59e5ea8186f774061344216a", + "_tpl": "5649b2314bdc2d79388b4576", + "parentId": "59e5ea8186f7740613442164", + "slotId": "mod_stock" + }, + { + "_id": "59e5ea8186f774061344216e", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "59e5ea8186f774061344216a", + "slotId": "mod_stock" + }, + { + "_id": "59e5ea8186f7740613442170", + "_tpl": "58d2946386f774496974c37e", + "parentId": "59e5ea8186f774061344216e", + "slotId": "mod_stock_000" + }, + { + "_id": "59e5ea8186f7740613442171", + "_tpl": "58d2912286f7744e27117493", + "parentId": "59e5ea8186f7740613442170", + "slotId": "mod_stock" + }, + { + "_id": "59e5ea8186f774061344216b", + "_tpl": "55d482194bdc2d1d4e8b456b", + "parentId": "59e5ea8186f7740613442164", + "slotId": "mod_magazine" + } + ], + "_name": "AK74MOE", + "_parent": "59e5ea8186f7740613442164", + "_type": "Preset" + }, + "59b81f7386f77421ac688a0a": { + "_changeWeaponName": false, + "_encyclopedia": "59984ab886f7743e98271174", + "_id": "59b81f7386f77421ac688a0a", + "_items": [ + { + "_id": "5a3fdab186f774601a498470", + "_tpl": "59984ab886f7743e98271174" + }, + { + "_id": "5a3fdab186f774601a498471", + "_tpl": "5998517986f7746017232f7e", + "parentId": "5a3fdab186f774601a498470", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a3fdab186f774601a498472", + "_tpl": "599851db86f77467372f0a18", + "parentId": "5a3fdab186f774601a498470", + "slotId": "mod_stock" + }, + { + "_id": "5a3fdab186f774601a498473", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "5a3fdab186f774601a498470", + "slotId": "mod_magazine" + }, + { + "_id": "5a3fdab186f774601a498474", + "_tpl": "5998597786f77414ea6da093", + "parentId": "5a3fdab186f774601a498470", + "slotId": "mod_muzzle" + }, + { + "_id": "5a3fdab186f774601a498475", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "5a3fdab186f774601a498470", + "slotId": "mod_reciever" + }, + { + "_id": "5a3fdab186f774601a498476", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "5a3fdab186f774601a498470", + "slotId": "mod_sight_rear" + }, + { + "_id": "5a3fdab186f774601a498477", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "5a3fdab186f774601a498470", + "slotId": "mod_gas_block" + }, + { + "_id": "5a3fdab186f774601a498478", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "5a3fdab186f774601a498477", + "slotId": "mod_handguard" + } + ], + "_name": "VITYAZ-SN Default", + "_parent": "5a3fdab186f774601a498470", + "_type": "Preset" + }, + "59dcdbb386f77417b03f350d": { + "_changeWeaponName": false, + "_encyclopedia": "587e02ff24597743df3deaeb", + "_id": "59dcdbb386f77417b03f350d", + "_items": [ + { + "_id": "657eb404b0bc0f28b1783129", + "_tpl": "587e02ff24597743df3deaeb", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "657eb404b0bc0f28b178312a", + "_tpl": "587e0531245977466077a0f7", + "parentId": "657eb404b0bc0f28b1783129", + "slotId": "mod_stock" + }, + { + "_id": "657eb404b0bc0f28b178312b", + "_tpl": "634eff66517ccc8a960fc735", + "parentId": "657eb404b0bc0f28b1783129", + "slotId": "mod_barrel" + }, + { + "_id": "657eb404b0bc0f28b178312c", + "_tpl": "634f05a21f9f536910079b56", + "parentId": "657eb404b0bc0f28b178312b", + "slotId": "mod_mount_000" + }, + { + "_id": "657eb404b0bc0f28b178312d", + "_tpl": "634f036a517ccc8a960fc746", + "parentId": "657eb404b0bc0f28b178312c", + "slotId": "mod_gas_block" + }, + { + "_id": "657eb404b0bc0f28b178312e", + "_tpl": "634f03d40384a3ba4f06f874", + "parentId": "657eb404b0bc0f28b178312d", + "slotId": "mod_mount_000" + }, + { + "_id": "657eb404b0bc0f28b178312f", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "657eb404b0bc0f28b178312c", + "slotId": "mod_sight_rear" + }, + { + "_id": "657eb404b0bc0f28b1783130", + "_tpl": "587df3a12459772c28142567", + "parentId": "657eb404b0bc0f28b1783129", + "slotId": "mod_magazine" + }, + { + "_id": "657eb404b0bc0f28b1783131", + "_tpl": "634f06262e5def262d0b30ca", + "parentId": "657eb404b0bc0f28b1783129", + "slotId": "mod_reciever" + } + ], + "_name": "SKS-OP Default", + "_parent": "657eb404b0bc0f28b1783129", + "_type": "Preset" + }, + "59e8d2ab86f77407f03fc9c2": { + "_changeWeaponName": false, + "_encyclopedia": "59d6088586f774275f37482f", + "_id": "59e8d2ab86f77407f03fc9c2", + "_items": [ + { + "_id": "5a3d2b1686f774126c4d15f4", + "_tpl": "59d6088586f774275f37482f" + }, + { + "_id": "5a3d2b1686f774126c4d15f5", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "5a3d2b1686f774126c4d15f4", + "slotId": "mod_gas_block" + }, + { + "_id": "5a3d2b1686f774126c4d15fc", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "5a3d2b1686f774126c4d15f5", + "slotId": "mod_handguard" + }, + { + "_id": "5a3d2b1686f774126c4d15f6", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "5a3d2b1686f774126c4d15f4", + "slotId": "mod_muzzle" + }, + { + "_id": "5a3d2b1686f774126c4d15f7", + "_tpl": "59e62cc886f77440d40b52a1", + "parentId": "5a3d2b1686f774126c4d15f4", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a3d2b1686f774126c4d15f8", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "5a3d2b1686f774126c4d15f4", + "slotId": "mod_reciever" + }, + { + "_id": "5a3d2b1686f774126c4d15f9", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "5a3d2b1686f774126c4d15f4", + "slotId": "mod_sight_rear" + }, + { + "_id": "5a3d2b1686f774126c4d15fa", + "_tpl": "59d6514b86f774171a068a08", + "parentId": "5a3d2b1686f774126c4d15f4", + "slotId": "mod_stock" + }, + { + "_id": "5a3d2b1686f774126c4d15fb", + "_tpl": "59d625f086f774661516605d", + "parentId": "5a3d2b1686f774126c4d15f4", + "slotId": "mod_magazine" + } + ], + "_name": "AKM Default", + "_parent": "5a3d2b1686f774126c4d15f4", + "_type": "Preset" + }, + "59e8d2b386f77445830dd299": { + "_changeWeaponName": true, + "_id": "59e8d2b386f77445830dd299", + "_items": [ + { + "_id": "5a3a85e886f774745637d909", + "_tpl": "588892092459774ac91d4b11" + }, + { + "_id": "5a3a85e886f774745637d90a", + "_tpl": "5888988e24597752fe43a6fa", + "parentId": "5a3a85e886f774745637d909", + "slotId": "mod_magazine" + }, + { + "_id": "5a3a85e886f774745637d90b", + "_tpl": "5888945a2459774bf43ba385", + "parentId": "5a3a85e886f774745637d909", + "slotId": "mod_barrel" + }, + { + "_id": "5a3a85e886f774745637d90e", + "_tpl": "58889c7324597754281f9439", + "parentId": "5a3a85e886f774745637d90b", + "slotId": "mod_muzzle" + }, + { + "_id": "5a3a85e886f774745637d90f", + "_tpl": "5888961624597754281f93f3", + "parentId": "5a3a85e886f774745637d90b", + "slotId": "mod_bipod" + }, + { + "_id": "5a3a85e886f774745637d90c", + "_tpl": "57c55f172459772d27602381", + "parentId": "5a3a85e886f774745637d909", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a3a85e886f774745637d90d", + "_tpl": "58889d0c2459775bc215d981", + "parentId": "5a3a85e886f774745637d909", + "slotId": "mod_stock" + } + ], + "_name": "DVL Silenced", + "_parent": "5a3a85e886f774745637d909", + "_type": "Preset" + }, + "59ef247086f77439967a900a": { + "_changeWeaponName": false, + "_encyclopedia": "59e6687d86f77411d949b251", + "_id": "59ef247086f77439967a900a", + "_items": [ + { + "_id": "639bb5575b759c65a34764f6", + "_tpl": "59e6687d86f77411d949b251", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "639bb5575b759c65a34764f7", + "_tpl": "59e649f986f77411d949b246", + "parentId": "639bb5575b759c65a34764f6", + "slotId": "mod_gas_block" + }, + { + "_id": "639bb5575b759c65a34764f8", + "_tpl": "59e898ee86f77427614bd225", + "parentId": "639bb5575b759c65a34764f7", + "slotId": "mod_handguard" + }, + { + "_id": "639bb5575b759c65a34764f9", + "_tpl": "59e8a00d86f7742ad93b569c", + "parentId": "639bb5575b759c65a34764f6", + "slotId": "mod_muzzle" + }, + { + "_id": "639bb5575b759c65a34764fa", + "_tpl": "59e6318286f77444dd62c4cc", + "parentId": "639bb5575b759c65a34764f6", + "slotId": "mod_pistol_grip" + }, + { + "_id": "639bb5575b759c65a34764fb", + "_tpl": "59e6449086f7746c9f75e822", + "parentId": "639bb5575b759c65a34764f6", + "slotId": "mod_reciever" + }, + { + "_id": "639bb5575b759c65a34764fc", + "_tpl": "59e8977386f77415a553c453", + "parentId": "639bb5575b759c65a34764f6", + "slotId": "mod_sight_rear" + }, + { + "_id": "639bb5575b759c65a34764fd", + "_tpl": "59e89d0986f77427600d226e", + "parentId": "639bb5575b759c65a34764f6", + "slotId": "mod_stock" + }, + { + "_id": "639bb5575b759c65a34764fe", + "_tpl": "5b1fd4e35acfc40018633c39", + "parentId": "639bb5575b759c65a34764f6", + "slotId": "mod_magazine" + } + ], + "_name": "AKM VPO-209", + "_parent": "639bb5575b759c65a34764f6", + "_type": "Preset" + }, + "59ef24b986f77439987b8762": { + "_changeWeaponName": false, + "_encyclopedia": "59e6152586f77473dc057aa1", + "_id": "59ef24b986f77439987b8762", + "_items": [ + { + "_id": "639bb56e92e27b60a107409f", + "_tpl": "59e6152586f77473dc057aa1", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "639bb56e92e27b60a10740a0", + "_tpl": "59e649f986f77411d949b246", + "parentId": "639bb56e92e27b60a107409f", + "slotId": "mod_gas_block" + }, + { + "_id": "639bb56e92e27b60a10740a1", + "_tpl": "59e6284f86f77440d569536f", + "parentId": "639bb56e92e27b60a10740a0", + "slotId": "mod_handguard" + }, + { + "_id": "639bb56e92e27b60a10740a2", + "_tpl": "59e61eb386f77440d64f5daf", + "parentId": "639bb56e92e27b60a107409f", + "slotId": "mod_muzzle" + }, + { + "_id": "639bb56e92e27b60a10740a3", + "_tpl": "59e6318286f77444dd62c4cc", + "parentId": "639bb56e92e27b60a107409f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "639bb56e92e27b60a10740a4", + "_tpl": "59e6449086f7746c9f75e822", + "parentId": "639bb56e92e27b60a107409f", + "slotId": "mod_reciever" + }, + { + "_id": "639bb56e92e27b60a10740a5", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "639bb56e92e27b60a107409f", + "slotId": "mod_sight_rear" + }, + { + "_id": "639bb56e92e27b60a10740a6", + "_tpl": "59e6227d86f77440d64f5dc2", + "parentId": "639bb56e92e27b60a107409f", + "slotId": "mod_stock" + }, + { + "_id": "639bb56e92e27b60a10740a7", + "_tpl": "5b1fd4e35acfc40018633c39", + "parentId": "639bb56e92e27b60a107409f", + "slotId": "mod_magazine" + } + ], + "_name": "AKM VPO-136", + "_parent": "639bb56e92e27b60a107409f", + "_type": "Preset" + }, + "5a13df5286f774032f5454a0": { + "_changeWeaponName": false, + "_encyclopedia": "59f9cabd86f7743a10721f46", + "_id": "5a13df5286f774032f5454a0", + "_items": [ + { + "_id": "5a13df5286f774032f545497", + "_tpl": "59f9cabd86f7743a10721f46" + }, + { + "_id": "5a13df5286f774032f545498", + "_tpl": "5998517986f7746017232f7e", + "parentId": "5a13df5286f774032f545497", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a13df5286f774032f545499", + "_tpl": "599851db86f77467372f0a18", + "parentId": "5a13df5286f774032f545497", + "slotId": "mod_stock" + }, + { + "_id": "5a13df5286f774032f54549a", + "_tpl": "5998529a86f774647f44f421", + "parentId": "5a13df5286f774032f545497", + "slotId": "mod_magazine" + }, + { + "_id": "5a13df5286f774032f54549b", + "_tpl": "5998598e86f7740b3f498a86", + "parentId": "5a13df5286f774032f545497", + "slotId": "mod_muzzle" + }, + { + "_id": "5a13df5286f774032f54549c", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "5a13df5286f774032f545497", + "slotId": "mod_reciever" + }, + { + "_id": "5a13df5286f774032f54549d", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "5a13df5286f774032f545497", + "slotId": "mod_sight_rear" + }, + { + "_id": "5a13df5286f774032f54549e", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "5a13df5286f774032f545497", + "slotId": "mod_gas_block" + }, + { + "_id": "5a13df5286f774032f54549f", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "5a13df5286f774032f54549e", + "slotId": "mod_handguard" + } + ], + "_name": "Saiga-9 Default", + "_parent": "5a13df5286f774032f545497", + "_type": "Preset" + }, + "5a325c3686f7744273716c5b": { + "_changeWeaponName": false, + "_encyclopedia": "5a0ec13bfcdbcb00165aa685", + "_id": "5a325c3686f7744273716c5b", + "_items": [ + { + "_id": "5a325c3686f7744273716c52", + "_tpl": "5a0ec13bfcdbcb00165aa685" + }, + { + "_id": "5a325c3686f7744273716c53", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "5a325c3686f7744273716c52", + "slotId": "mod_gas_block" + }, + { + "_id": "5a325c3686f7744273716c5a", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "5a325c3686f7744273716c53", + "slotId": "mod_handguard" + }, + { + "_id": "5a325c3686f7744273716c54", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "5a325c3686f7744273716c52", + "slotId": "mod_muzzle" + }, + { + "_id": "5a325c3686f7744273716c55", + "_tpl": "59e62cc886f77440d40b52a1", + "parentId": "5a325c3686f7744273716c52", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a325c3686f7744273716c56", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "5a325c3686f7744273716c52", + "slotId": "mod_reciever" + }, + { + "_id": "5a325c3686f7744273716c57", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "5a325c3686f7744273716c52", + "slotId": "mod_sight_rear" + }, + { + "_id": "5a325c3686f7744273716c58", + "_tpl": "59d6514b86f774171a068a08", + "parentId": "5a325c3686f7744273716c52", + "slotId": "mod_stock" + }, + { + "_id": "5a325c3686f7744273716c59", + "_tpl": "5a01c29586f77474660c694c", + "parentId": "5a325c3686f7744273716c52", + "slotId": "mod_magazine" + } + ], + "_name": "AKMN Default", + "_parent": "5a325c3686f7744273716c52", + "_type": "Preset" + }, + "5a327f4a86f774766866140b": { + "_changeWeaponName": false, + "_encyclopedia": "59ff346386f77477562ff5e2", + "_id": "5a327f4a86f774766866140b", + "_items": [ + { + "_id": "5a327f4a86f7747668661402", + "_tpl": "59ff346386f77477562ff5e2" + }, + { + "_id": "5a327f4a86f7747668661403", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "5a327f4a86f7747668661402", + "slotId": "mod_gas_block" + }, + { + "_id": "5a327f4a86f774766866140a", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "5a327f4a86f7747668661403", + "slotId": "mod_handguard" + }, + { + "_id": "5a327f4a86f7747668661404", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "5a327f4a86f7747668661402", + "slotId": "mod_muzzle" + }, + { + "_id": "5a327f4a86f7747668661405", + "_tpl": "5a0071d486f77404e23a12b2", + "parentId": "5a327f4a86f7747668661402", + "slotId": "mod_pistol_grip_akms" + }, + { + "_id": "5a327f4a86f7747668661406", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "5a327f4a86f7747668661402", + "slotId": "mod_reciever" + }, + { + "_id": "5a327f4a86f7747668661407", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "5a327f4a86f7747668661402", + "slotId": "mod_sight_rear" + }, + { + "_id": "5a327f4a86f7747668661408", + "_tpl": "59ff3b6a86f77477562ff5ed", + "parentId": "5a327f4a86f7747668661402", + "slotId": "mod_stock_akms" + }, + { + "_id": "5a327f4a86f7747668661409", + "_tpl": "5a0060fc86f7745793204432", + "parentId": "5a327f4a86f7747668661402", + "slotId": "mod_magazine" + } + ], + "_name": "AKMS Default", + "_parent": "5a327f4a86f7747668661402", + "_type": "Preset" + }, + "5a327f6386f77479010da870": { + "_changeWeaponName": false, + "_encyclopedia": "59f98b4986f7746f546d2cef", + "_id": "5a327f6386f77479010da870", + "_items": [ + { + "_id": "5a327f6386f77479010da86e", + "_tpl": "59f98b4986f7746f546d2cef" + }, + { + "_id": "5a327f6386f77479010da86f", + "_tpl": "59f99a7d86f7745b134aa97b", + "parentId": "5a327f6386f77479010da86e", + "slotId": "mod_magazine" + } + ], + "_name": "SR1M Default", + "_parent": "5a327f6386f77479010da86e", + "_type": "Preset" + }, + "5a327f7286f7747668661419": { + "_changeWeaponName": true, + "_id": "5a327f7286f7747668661419", + "_items": [ + { + "_id": "5a327f7286f7747668661414", + "_tpl": "59f98b4986f7746f546d2cef" + }, + { + "_id": "5a327f7286f7747668661415", + "_tpl": "5a27b281c4a28200741e1e52", + "parentId": "5a327f7286f7747668661414", + "slotId": "mod_mount" + }, + { + "_id": "5a327f7286f7747668661417", + "_tpl": "5a27b3d0c4a282000d721ec1", + "parentId": "5a327f7286f7747668661415", + "slotId": "mod_mount" + }, + { + "_id": "5a327f7286f7747668661418", + "_tpl": "5a27b6bec4a282000e496f78", + "parentId": "5a327f7286f7747668661417", + "slotId": "mod_muzzle" + }, + { + "_id": "5a327f7286f7747668661416", + "_tpl": "59f99a7d86f7745b134aa97b", + "parentId": "5a327f7286f7747668661414", + "slotId": "mod_magazine" + } + ], + "_name": "SR1M x1 attachment silenced", + "_parent": "5a327f7286f7747668661414", + "_type": "Preset" + }, + "5a327f7c86f77475187e509a": { + "_changeWeaponName": true, + "_id": "5a327f7c86f77475187e509a", + "_items": [ + { + "_id": "5a327f7c86f77475187e5095", + "_tpl": "59f98b4986f7746f546d2cef" + }, + { + "_id": "5a327f7c86f77475187e5096", + "_tpl": "5a27bad7c4a282000b15184b", + "parentId": "5a327f7c86f77475187e5095", + "slotId": "mod_mount" + }, + { + "_id": "5a327f7c86f77475187e5098", + "_tpl": "5a27b3d0c4a282000d721ec1", + "parentId": "5a327f7c86f77475187e5096", + "slotId": "mod_mount" + }, + { + "_id": "5a327f7c86f77475187e5099", + "_tpl": "5a27b6bec4a282000e496f78", + "parentId": "5a327f7c86f77475187e5098", + "slotId": "mod_muzzle" + }, + { + "_id": "5a327f7c86f77475187e5097", + "_tpl": "59f99a7d86f7745b134aa97b", + "parentId": "5a327f7c86f77475187e5095", + "slotId": "mod_magazine" + } + ], + "_name": "SR1M x4 attack silenced", + "_parent": "5a327f7c86f77475187e5095", + "_type": "Preset" + }, + "5a327f9086f77475187e50a9": { + "_changeWeaponName": true, + "_id": "5a327f9086f77475187e50a9", + "_items": [ + { + "_id": "5a2fab6dc4a282000e497100", + "_tpl": "59d6088586f774275f37482f" + }, + { + "_id": "5a2fab6dc4a282000e49710b", + "_tpl": "5a01ad4786f77450561fda02", + "parentId": "5a2fab6dc4a282000e497100", + "slotId": "mod_gas_block" + }, + { + "_id": "5a2fab6dc4a282000e497112", + "_tpl": "59fb375986f7741b681b81a6", + "parentId": "5a2fab6dc4a282000e49710b", + "slotId": "mod_handguard" + }, + { + "_id": "5a2fab6dc4a282000e497114", + "_tpl": "59e0bed186f774156f04ce84", + "parentId": "5a2fab6dc4a282000e497112", + "slotId": "mod_mount_000" + }, + { + "_id": "5a327f9086f77475187e50a5", + "_tpl": "588226d124597767ad33f787", + "parentId": "5a2fab6dc4a282000e497114", + "slotId": "mod_foregrip" + }, + { + "_id": "5a2fab8dc4a282000c5a9268", + "_tpl": "59e0be5d86f7742d48765bd2", + "parentId": "5a2fab6dc4a282000e497112", + "slotId": "mod_mount_001" + }, + { + "_id": "5a327f9086f77475187e50a6", + "_tpl": "57fd23e32459772d0805bcf1", + "parentId": "5a2fab8dc4a282000c5a9268", + "slotId": "mod_tactical" + }, + { + "_id": "5a327f9086f77475187e50a4", + "_tpl": "59e0be5d86f7742d48765bd2", + "parentId": "5a2fab6dc4a282000e497112", + "slotId": "mod_mount_002" + }, + { + "_id": "5a2fab6dc4a282000e497115", + "_tpl": "59e0bdb186f774156f04ce82", + "parentId": "5a2fab6dc4a282000e497112", + "slotId": "mod_mount_003" + }, + { + "_id": "5a327f9086f77475187e50a7", + "_tpl": "560d657b4bdc2da74d8b4572", + "parentId": "5a2fab6dc4a282000e497115", + "slotId": "mod_tactical" + }, + { + "_id": "5a2fab6dc4a282000e49710c", + "_tpl": "5a0d63621526d8dba31fe3bf", + "parentId": "5a2fab6dc4a282000e497100", + "slotId": "mod_muzzle" + }, + { + "_id": "5a2fab6dc4a282000e49710d", + "_tpl": "5947f92f86f77427344a76b1", + "parentId": "5a2fab6dc4a282000e497100", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a2fab6dc4a282000e49710e", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "5a2fab6dc4a282000e497100", + "slotId": "mod_reciever" + }, + { + "_id": "5a2fab6dc4a282000e49710f", + "_tpl": "5649d9a14bdc2d79388b4580", + "parentId": "5a2fab6dc4a282000e497100", + "slotId": "mod_sight_rear" + }, + { + "_id": "5a327f9086f77475187e50a1", + "_tpl": "584924ec24597768f12ae244", + "parentId": "5a2fab6dc4a282000e49710f", + "slotId": "mod_scope" + }, + { + "_id": "5a2fab6dc4a282000e497110", + "_tpl": "5649b2314bdc2d79388b4576", + "parentId": "5a2fab6dc4a282000e497100", + "slotId": "mod_stock" + }, + { + "_id": "5a327f9086f77475187e50a2", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "5a2fab6dc4a282000e497110", + "slotId": "mod_stock" + }, + { + "_id": "5a327f9086f77475187e50a8", + "_tpl": "5947c73886f7747701588af5", + "parentId": "5a327f9086f77475187e50a2", + "slotId": "mod_stock_000" + }, + { + "_id": "5a2fab6dc4a282000e497111", + "_tpl": "59d6272486f77466146386ff", + "parentId": "5a2fab6dc4a282000e497100", + "slotId": "mod_magazine" + }, + { + "_id": "5a327f9086f77475187e50a3", + "_tpl": "5656d7c34bdc2d9d198b4587", + "parentId": "5a2fab6dc4a282000e497111", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + } + ], + "_name": "AKM 2017 new year", + "_parent": "5a2fab6dc4a282000e497100", + "_type": "Preset" + }, + "5a32808386f774764a3226d9": { + "_changeWeaponName": true, + "_id": "5a32808386f774764a3226d9", + "_items": [ + { + "_id": "5a2fa9c4c4a282000d72204f", + "_tpl": "5447a9cd4bdc2dbd208b4567" + }, + { + "_id": "5a2fa9c4c4a282000d722051", + "_tpl": "59db3a1d86f77429e05b4e92", + "parentId": "5a2fa9c4c4a282000d72204f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a32808386f774764a3226ce", + "_tpl": "59c1383d86f774290a37e0ca", + "parentId": "5a2fa9c4c4a282000d72204f", + "slotId": "mod_magazine" + }, + { + "_id": "5a32808386f774764a3226d1", + "_tpl": "59e6920f86f77411d82aa167", + "parentId": "5a32808386f774764a3226ce", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 60 + } + }, + { + "_id": "5a2fa9c4c4a282000d722053", + "_tpl": "59bfe68886f7746004266202", + "parentId": "5a2fa9c4c4a282000d72204f", + "slotId": "mod_reciever" + }, + { + "_id": "5a2fa9c4c4a282000d722058", + "_tpl": "57adff4f24597737f373b6e6", + "parentId": "5a2fa9c4c4a282000d722053", + "slotId": "mod_scope" + }, + { + "_id": "5a2fa9c4c4a282000d722059", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "5a2fa9c4c4a282000d722053", + "slotId": "mod_barrel" + }, + { + "_id": "5a2fa9c4c4a282000d72205b", + "_tpl": "59bffc1f86f77435b128b872", + "parentId": "5a2fa9c4c4a282000d722059", + "slotId": "mod_muzzle" + }, + { + "_id": "5a2fa9c4c4a282000d722060", + "_tpl": "59bffbb386f77435b379b9c2", + "parentId": "5a2fa9c4c4a282000d72205b", + "slotId": "mod_muzzle" + }, + { + "_id": "5a2fa9c4c4a282000d72205c", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "5a2fa9c4c4a282000d722059", + "slotId": "mod_gas_block" + }, + { + "_id": "5a2fa9c4c4a282000d72205a", + "_tpl": "595cf16b86f77427440c32e2", + "parentId": "5a2fa9c4c4a282000d722053", + "slotId": "mod_handguard" + }, + { + "_id": "5a32808386f774764a3226d2", + "_tpl": "5649a2464bdc2d91118b45a8", + "parentId": "5a2fa9c4c4a282000d72205a", + "slotId": "mod_scope" + }, + { + "_id": "5a32808386f774764a3226d4", + "_tpl": "58d39d3d86f77445bb794ae7", + "parentId": "5a32808386f774764a3226d2", + "slotId": "mod_scope" + }, + { + "_id": "5a32808386f774764a3226d8", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "5a32808386f774764a3226d4", + "slotId": "mod_scope" + }, + { + "_id": "5a2fa9c4c4a282000d72205d", + "_tpl": "59e0bed186f774156f04ce84", + "parentId": "5a2fa9c4c4a282000d72205a", + "slotId": "mod_mount_000" + }, + { + "_id": "5a32808386f774764a3226d5", + "_tpl": "59f8a37386f7747af3328f06", + "parentId": "5a2fa9c4c4a282000d72205d", + "slotId": "mod_foregrip" + }, + { + "_id": "5a2fa9c4c4a282000d72205e", + "_tpl": "59e0bdb186f774156f04ce82", + "parentId": "5a2fa9c4c4a282000d72205a", + "slotId": "mod_mount_002" + }, + { + "_id": "5a32808386f774764a3226d6", + "_tpl": "56def37dd2720bec348b456a", + "parentId": "5a2fa9c4c4a282000d72205e", + "slotId": "mod_tactical" + }, + { + "_id": "5a2fa9c4c4a282000d72205f", + "_tpl": "59e0be5d86f7742d48765bd2", + "parentId": "5a2fa9c4c4a282000d72205a", + "slotId": "mod_mount_003" + }, + { + "_id": "5a32808386f774764a3226d7", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "5a2fa9c4c4a282000d72205f", + "slotId": "mod_tactical" + }, + { + "_id": "5a32808386f774764a3226d3", + "_tpl": "59e0be5d86f7742d48765bd2", + "parentId": "5a2fa9c4c4a282000d72205a", + "slotId": "mod_mount_004" + }, + { + "_id": "5a32808386f774764a3226cf", + "_tpl": "5947e98b86f774778f1448bc", + "parentId": "5a2fa9c4c4a282000d72204f", + "slotId": "mod_stock" + }, + { + "_id": "5a32808386f774764a3226d0", + "_tpl": "56ea7165d2720b6e518b4583", + "parentId": "5a2fa9c4c4a282000d72204f", + "slotId": "mod_charge" + } + ], + "_name": "M4A1 2017 New year", + "_parent": "5a2fa9c4c4a282000d72204f", + "_type": "Preset" + }, + "5a3a859786f7747e2305e8bf": { + "_changeWeaponName": false, + "_encyclopedia": "5a38e6bac4a2826c6e06d79b", + "_id": "5a3a859786f7747e2305e8bf", + "_items": [ + { + "_id": "5a3a859786f7747e2305e8bb", + "_tpl": "5a38e6bac4a2826c6e06d79b" + }, + { + "_id": "5a3a859786f7747e2305e8bc", + "_tpl": "5a38ee51c4a282000c5a955c", + "parentId": "5a3a859786f7747e2305e8bb", + "slotId": "mod_magazine" + }, + { + "_id": "5a3a859786f7747e2305e8bd", + "_tpl": "5a38ef1fc4a282000b1521f6", + "parentId": "5a3a859786f7747e2305e8bb", + "slotId": "mod_stock" + }, + { + "_id": "5a3a859786f7747e2305e8be", + "_tpl": "5a38eecdc4a282329a73b512", + "parentId": "5a3a859786f7747e2305e8bd", + "slotId": "mod_pistol_grip" + } + ], + "_name": "Toz-106 Default", + "_parent": "5a3a859786f7747e2305e8bb", + "_type": "Preset" + }, + "5a3a85af86f774745637d46c": { + "_changeWeaponName": false, + "_encyclopedia": "5a367e5dc4a282000e49738f", + "_id": "5a3a85af86f774745637d46c", + "_items": [ + { + "_id": "639bb52dad9d7e3216668f6d", + "_tpl": "5a367e5dc4a282000e49738f", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "639bb52dad9d7e3216668f6e", + "_tpl": "5a339805c4a2826c6e06d73d", + "parentId": "639bb52dad9d7e3216668f6d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "639bb52dad9d7e3216668f6f", + "_tpl": "5a3501acc4a282000d72293a", + "parentId": "639bb52dad9d7e3216668f6d", + "slotId": "mod_magazine" + }, + { + "_id": "639bb52dad9d7e3216668f70", + "_tpl": "5a33ca0fc4a282000d72292f", + "parentId": "639bb52dad9d7e3216668f6d", + "slotId": "mod_stock" + }, + { + "_id": "639bb52dad9d7e3216668f71", + "_tpl": "5a33cae9c4a28232980eb086", + "parentId": "639bb52dad9d7e3216668f70", + "slotId": "mod_stock" + }, + { + "_id": "639bb52dad9d7e3216668f72", + "_tpl": "5a329052c4a28200741e22d3", + "parentId": "639bb52dad9d7e3216668f6d", + "slotId": "mod_handguard" + }, + { + "_id": "639bb52dad9d7e3216668f73", + "_tpl": "5a34fae7c4a2826c6e06d760", + "parentId": "639bb52dad9d7e3216668f6d", + "slotId": "mod_barrel" + }, + { + "_id": "639bb52dad9d7e3216668f74", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "parentId": "639bb52dad9d7e3216668f73", + "slotId": "mod_muzzle" + }, + { + "_id": "639bb52dad9d7e3216668f75", + "_tpl": "5a34fbadc4a28200741e230a", + "parentId": "639bb52dad9d7e3216668f73", + "slotId": "mod_gas_block" + } + ], + "_name": "RSASS", + "_parent": "639bb52dad9d7e3216668f6d", + "_type": "Preset" + }, + "5a3b898486f77467720a2f29": { + "_changeWeaponName": true, + "_id": "5a3b898486f77467720a2f29", + "_items": [ + { + "_id": "5a3b898486f77467720a2f25", + "_tpl": "5a16bb52fcdbcb001a3b00dc" + }, + { + "_id": "5a3b898486f77467720a2f26", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "parentId": "5a3b898486f77467720a2f25", + "slotId": "mod_nvg" + }, + { + "_id": "5a3b898486f77467720a2f27", + "_tpl": "5a16b93dfcdbcbcae6687261", + "parentId": "5a3b898486f77467720a2f26", + "slotId": "mod_nvg" + }, + { + "_id": "5a3b898486f77467720a2f28", + "_tpl": "57235b6f24597759bf5a30f1", + "parentId": "5a3b898486f77467720a2f27", + "slotId": "mod_nvg" + } + ], + "_name": "pvs 14 skull lock nightvision", + "_parent": "5a3b898486f77467720a2f25", + "_type": "Preset" + }, + "5a43a85186f7746c914b947a": { + "_changeWeaponName": true, + "_id": "5a43a85186f7746c914b947a", + "_items": [ + { + "_id": "5a3cf1304f39f9000d28ab39", + "_tpl": "583990e32459771419544dd2" + }, + { + "_id": "5a3cf1304f39f9000d28ab40", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "parentId": "5a3cf1304f39f9000d28ab39", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a3cf1304f39f9000d28ab41", + "_tpl": "59ecc28286f7746d7a68aa8c", + "parentId": "5a3cf1304f39f9000d28ab39", + "slotId": "mod_stock" + }, + { + "_id": "5a3cf1304f39f9000d28ab47", + "_tpl": "59ecc3dd86f7746dc827481c", + "parentId": "5a3cf1304f39f9000d28ab41", + "slotId": "mod_stock" + }, + { + "_id": "5a43a85186f7746c914b9476", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "5a3cf1304f39f9000d28ab39", + "slotId": "mod_charge" + }, + { + "_id": "5a3cf1304f39f9000d28ab42", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "5a3cf1304f39f9000d28ab39", + "slotId": "mod_magazine" + }, + { + "_id": "5a43a85186f7746c914b9477", + "_tpl": "56dfef82d2720bbd668b4567", + "parentId": "5a3cf1304f39f9000d28ab42", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, + { + "_id": "5a3cf1304f39f9000d28ab43", + "_tpl": "5649ab884bdc2ded0b8b457f", + "parentId": "5a3cf1304f39f9000d28ab39", + "slotId": "mod_muzzle" + }, + { + "_id": "5a3cf1304f39f9000d28ab44", + "_tpl": "57dc334d245977597164366f", + "parentId": "5a3cf1304f39f9000d28ab39", + "slotId": "mod_reciever" + }, + { + "_id": "5a3cf1304f39f9000d28ab48", + "_tpl": "57ffb0062459777a045af529", + "parentId": "5a3cf1304f39f9000d28ab44", + "slotId": "mod_mount_000" + }, + { + "_id": "5a43a85186f7746c914b9478", + "_tpl": "584924ec24597768f12ae244", + "parentId": "5a3cf1304f39f9000d28ab48", + "slotId": "mod_scope" + }, + { + "_id": "5a3cf1304f39f9000d28ab45", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "5a3cf1304f39f9000d28ab39", + "slotId": "mod_gas_block" + }, + { + "_id": "5a3cf1304f39f9000d28ab49", + "_tpl": "57ffa9f4245977728561e844", + "parentId": "5a3cf1304f39f9000d28ab45", + "slotId": "mod_handguard" + }, + { + "_id": "5a43a85186f7746c914b9479", + "_tpl": "59fc48e086f77463b1118392", + "parentId": "5a3cf1304f39f9000d28ab49", + "slotId": "mod_foregrip" + }, + { + "_id": "5a3cf1304f39f9000d28ab4a", + "_tpl": "57ffaea724597779f52b3a4d", + "parentId": "5a3cf1304f39f9000d28ab49", + "slotId": "mod_tactical_000" + }, + { + "_id": "5a3cf1304f39f9000d28ab4b", + "_tpl": "57fd23e32459772d0805bcf1", + "parentId": "5a3cf1304f39f9000d28ab4a", + "slotId": "mod_scope" + } + ], + "_name": "AKSU eft book", + "_parent": "5a3cf1304f39f9000d28ab39", + "_type": "Preset" + }, + "5a43a86d86f7746c9d7395e8": { + "_changeWeaponName": true, + "_id": "5a43a86d86f7746c9d7395e8", + "_items": [ + { + "_id": "5a43a86d86f7746c9d7395dd", + "_tpl": "56d59856d2720bd8418b456a" + }, + { + "_id": "5a43a86d86f7746c9d7395de", + "_tpl": "587de4282459771bca0ec90b", + "parentId": "5a43a86d86f7746c9d7395dd", + "slotId": "mod_barrel" + }, + { + "_id": "5a43a86d86f7746c9d7395e2", + "_tpl": "5a33a8ebc4a282000c5a950d", + "parentId": "5a43a86d86f7746c9d7395de", + "slotId": "mod_muzzle" + }, + { + "_id": "5a43a86d86f7746c9d7395e6", + "_tpl": "5a33b2c9c4a282000c5a9511", + "parentId": "5a43a86d86f7746c9d7395e2", + "slotId": "mod_scope" + }, + { + "_id": "5a43a86d86f7746c9d7395e7", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "5a43a86d86f7746c9d7395e6", + "slotId": "mod_scope" + }, + { + "_id": "5a43a86d86f7746c9d7395df", + "_tpl": "56d5a2bbd2720bb8418b456a", + "parentId": "5a43a86d86f7746c9d7395dd", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a43a86d86f7746c9d7395e0", + "_tpl": "56d5a407d2720bb3418b456b", + "parentId": "5a43a86d86f7746c9d7395dd", + "slotId": "mod_reciever" + }, + { + "_id": "5a43a86d86f7746c9d7395e3", + "_tpl": "56d5a77ed2720b90418b4568", + "parentId": "5a43a86d86f7746c9d7395e0", + "slotId": "mod_sight_rear" + }, + { + "_id": "5a43a86d86f7746c9d7395e4", + "_tpl": "56d5a661d2720bd8418b456b", + "parentId": "5a43a86d86f7746c9d7395e0", + "slotId": "mod_sight_front" + }, + { + "_id": "5a43a86d86f7746c9d7395e1", + "_tpl": "56d59948d2720bb7418b4582", + "parentId": "5a43a86d86f7746c9d7395dd", + "slotId": "mod_magazine" + }, + { + "_id": "5a43a86d86f7746c9d7395e5", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "5a43a86d86f7746c9d7395e1", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 15 + } + } + ], + "_name": "P226 eft book", + "_parent": "5a43a86d86f7746c9d7395dd", + "_type": "Preset" + }, + "5a88acfb86f77457fd2c0d8f": { + "_changeWeaponName": false, + "_encyclopedia": "5a7ae0c351dfba0017554310", + "_id": "5a88acfb86f77457fd2c0d8f", + "_items": [ + { + "_id": "5a88595b86f774182259772e", + "_tpl": "5a7ae0c351dfba0017554310" + }, + { + "_id": "5a88595b86f7741822597735", + "_tpl": "5a6b5f868dc32e000a311389", + "parentId": "5a88595b86f774182259772e", + "slotId": "mod_barrel" + }, + { + "_id": "5a88595b86f7741822597736", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "5a88595b86f774182259772e", + "slotId": "mod_reciever" + }, + { + "_id": "5a88595b86f774182259774a", + "_tpl": "5a6f5d528dc32e00094b97d9", + "parentId": "5a88595b86f7741822597736", + "slotId": "mod_sight_rear" + }, + { + "_id": "5a88595b86f774182259774b", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "5a88595b86f7741822597736", + "slotId": "mod_sight_front" + }, + { + "_id": "5a88595b86f7741822597737", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "5a88595b86f774182259772e", + "slotId": "mod_magazine" + } + ], + "_name": "Glock base", + "_parent": "5a88595b86f774182259772e", + "_type": "Preset" + }, + "5a88ad7b86f77479aa7226af": { + "_changeWeaponName": true, + "_id": "5a88ad7b86f77479aa7226af", + "_items": [ + { + "_id": "5a88680c86f77439ae3233c7", + "_tpl": "5a7ae0c351dfba0017554310" + }, + { + "_id": "5a88680c86f77439ae3233ca", + "_tpl": "5a6b5f868dc32e000a311389", + "parentId": "5a88680c86f77439ae3233c7", + "slotId": "mod_barrel" + }, + { + "_id": "5a88680c86f77439ae3233cb", + "_tpl": "5a7b4960e899ef197b331a2d", + "parentId": "5a88680c86f77439ae3233c7", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a88680c86f77439ae3233cc", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "5a88680c86f77439ae3233c7", + "slotId": "mod_reciever" + }, + { + "_id": "5a886a6186f77439ae323426", + "_tpl": "5a71e0fb8dc32e00094b97f2", + "parentId": "5a88680c86f77439ae3233cc", + "slotId": "mod_sight_rear" + }, + { + "_id": "5a88680c86f77439ae3233d7", + "_tpl": "5a71e0048dc32e000c52ecc8", + "parentId": "5a88680c86f77439ae3233cc", + "slotId": "mod_sight_front" + }, + { + "_id": "5a88680c86f77439ae3233d8", + "_tpl": "5a7b32a2e899ef00135e345a", + "parentId": "5a88680c86f77439ae3233cc", + "slotId": "mod_muzzle" + }, + { + "_id": "5a88680c86f77439ae3233cd", + "_tpl": "5a718f958dc32e00094b97e7", + "parentId": "5a88680c86f77439ae3233c7", + "slotId": "mod_magazine" + }, + { + "_id": "5a88680c86f77439ae3233ce", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "5a88680c86f77439ae3233c7", + "slotId": "mod_tactical" + } + ], + "_name": "glock extended compensated", + "_parent": "5a88680c86f77439ae3233c7", + "_type": "Preset" + }, + "5a88ae4a86f77457fd2c0dae": { + "_changeWeaponName": true, + "_id": "5a88ae4a86f77457fd2c0dae", + "_items": [ + { + "_id": "5a886a6186f77439ae323412", + "_tpl": "5a7ae0c351dfba0017554310" + }, + { + "_id": "5a886a6186f77439ae323416", + "_tpl": "5a6b5b8a8dc32e001207faf3", + "parentId": "5a886a6186f77439ae323412", + "slotId": "mod_barrel" + }, + { + "_id": "5a886a6186f77439ae323427", + "_tpl": "5a7ad0c451dfba0013379712", + "parentId": "5a886a6186f77439ae323416", + "slotId": "mod_muzzle" + }, + { + "_id": "5a886a6186f77439ae323417", + "_tpl": "5a6f5f078dc32e00094b97dd", + "parentId": "5a886a6186f77439ae323412", + "slotId": "mod_reciever" + }, + { + "_id": "5a886a6186f77439ae323418", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "5a886a6186f77439ae323412", + "slotId": "mod_magazine" + }, + { + "_id": "5a886a6186f77439ae323419", + "_tpl": "5a7b4900e899ef197b331a2a", + "parentId": "5a886a6186f77439ae323412", + "slotId": "mod_tactical" + }, + { + "_id": "5a886a6186f77439ae323428", + "_tpl": "58d2664f86f7747fec5834f6", + "parentId": "5a886a6186f77439ae323419", + "slotId": "mod_scope" + }, + { + "_id": "5a886a6186f77439ae323429", + "_tpl": "58d268fc86f774111273f8c2", + "parentId": "5a886a6186f77439ae323428", + "slotId": "mod_scope" + } + ], + "_name": "glock viper ported mid 33 capacity", + "_parent": "5a886a6186f77439ae323412", + "_type": "Preset" + }, + "5a88aed086f77476cd391963": { + "_changeWeaponName": true, + "_id": "5a88aed086f77476cd391963", + "_items": [ + { + "_id": "5a886a6186f77439ae323413", + "_tpl": "5a7ae0c351dfba0017554310" + }, + { + "_id": "5a886a6186f77439ae32341a", + "_tpl": "5a6b5f868dc32e000a311389", + "parentId": "5a886a6186f77439ae323413", + "slotId": "mod_barrel" + }, + { + "_id": "5a886a6186f77439ae32341b", + "_tpl": "5a7b4960e899ef197b331a2d", + "parentId": "5a886a6186f77439ae323413", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a886a6186f77439ae32341c", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "5a886a6186f77439ae323413", + "slotId": "mod_reciever" + }, + { + "_id": "5a886a6186f77439ae32342a", + "_tpl": "5a7d9122159bd4001438dbf4", + "parentId": "5a886a6186f77439ae32341c", + "slotId": "mod_sight_rear" + }, + { + "_id": "5a886a6186f77439ae32342b", + "_tpl": "5a7d90eb159bd400165484f1", + "parentId": "5a886a6186f77439ae32341c", + "slotId": "mod_sight_front" + }, + { + "_id": "5a886a6186f77439ae32341d", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "5a886a6186f77439ae323413", + "slotId": "mod_magazine" + }, + { + "_id": "5a886a6186f77439ae32341e", + "_tpl": "5a7ad74e51dfba0015068f45", + "parentId": "5a886a6186f77439ae323413", + "slotId": "mod_tactical" + }, + { + "_id": "5a886a6186f77439ae32342c", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "5a886a6186f77439ae32341e", + "slotId": "mod_tactical" + } + ], + "_name": "glock fischer development", + "_parent": "5a886a6186f77439ae323413", + "_type": "Preset" + }, + "5a88af5086f77411a871682c": { + "_changeWeaponName": true, + "_id": "5a88af5086f77411a871682c", + "_items": [ + { + "_id": "5a88680c86f77439ae3233c8", + "_tpl": "5a7ae0c351dfba0017554310" + }, + { + "_id": "5a88680c86f77439ae3233cf", + "_tpl": "5a6b5e468dc32e001207faf5", + "parentId": "5a88680c86f77439ae3233c8", + "slotId": "mod_barrel" + }, + { + "_id": "5a88680c86f77439ae3233d9", + "_tpl": "5a32a064c4a28200741e22de", + "parentId": "5a88680c86f77439ae3233cf", + "slotId": "mod_muzzle" + }, + { + "_id": "5a88680c86f77439ae3233d0", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "5a88680c86f77439ae3233c8", + "slotId": "mod_reciever" + }, + { + "_id": "5a88680c86f77439ae3233d1", + "_tpl": "5a718da68dc32e000d46d264", + "parentId": "5a88680c86f77439ae3233c8", + "slotId": "mod_magazine" + }, + { + "_id": "5a88680c86f77439ae3233d2", + "_tpl": "5a7ad4af51dfba0013379717", + "parentId": "5a88680c86f77439ae3233c8", + "slotId": "mod_tactical" + }, + { + "_id": "5a88680c86f77439ae3233da", + "_tpl": "577d128124597739d65d0e56", + "parentId": "5a88680c86f77439ae3233d2", + "slotId": "mod_scope" + }, + { + "_id": "5a88680c86f77439ae3233db", + "_tpl": "577d141e24597739c5255e01", + "parentId": "5a88680c86f77439ae3233da", + "slotId": "mod_scope" + } + ], + "_name": "glock aimtech mount_osprey", + "_parent": "5a88680c86f77439ae3233c8", + "_type": "Preset" + }, + "5a88afdc86f7746de12fcc20": { + "_changeWeaponName": true, + "_id": "5a88afdc86f7746de12fcc20", + "_items": [ + { + "_id": "5a88595b86f7741822597733", + "_tpl": "5a7ae0c351dfba0017554310" + }, + { + "_id": "5a8864f986f774796c36ca5f", + "_tpl": "5a6b5b8a8dc32e001207faf3", + "parentId": "5a88595b86f7741822597733", + "slotId": "mod_barrel" + }, + { + "_id": "5a8864f986f774796c36ca60", + "_tpl": "5a7ad1fb51dfba0013379715", + "parentId": "5a8864f986f774796c36ca5f", + "slotId": "mod_muzzle" + }, + { + "_id": "5a88595b86f7741822597745", + "_tpl": "5a702d198dc32e000b452fc3", + "parentId": "5a88595b86f7741822597733", + "slotId": "mod_reciever" + }, + { + "_id": "5a88595b86f7741822597746", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "5a88595b86f7741822597733", + "slotId": "mod_magazine" + } + ], + "_name": "glock_alpha_wolf", + "_parent": "5a88595b86f7741822597733", + "_type": "Preset" + }, + "5a88b0f686f77416370eca3e": { + "_changeWeaponName": true, + "_id": "5a88b0f686f77416370eca3e", + "_items": [ + { + "_id": "5a88595b86f7741822597732", + "_tpl": "5a7ae0c351dfba0017554310" + }, + { + "_id": "5a88680c86f77439ae3233c9", + "_tpl": "5a6b5b8a8dc32e001207faf3", + "parentId": "5a88595b86f7741822597732", + "slotId": "mod_barrel" + }, + { + "_id": "5a88680c86f77439ae3233d4", + "_tpl": "5a7ad0c451dfba0013379712", + "parentId": "5a88680c86f77439ae3233c9", + "slotId": "mod_muzzle" + }, + { + "_id": "5a88595b86f7741822597742", + "_tpl": "5a71e22f8dc32e00094b97f4", + "parentId": "5a88595b86f7741822597732", + "slotId": "mod_reciever" + }, + { + "_id": "5a886a6186f77439ae323422", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "5a88595b86f7741822597742", + "slotId": "mod_scope" + }, + { + "_id": "5a88595b86f7741822597743", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "5a88595b86f7741822597732", + "slotId": "mod_magazine" + }, + { + "_id": "5a886a6186f77439ae323415", + "_tpl": "56def37dd2720bec348b456a", + "parentId": "5a88595b86f7741822597732", + "slotId": "mod_tactical" + } + ], + "_name": "glock_zev_hex_surefire", + "_parent": "5a88595b86f7741822597732", + "_type": "Preset" + }, + "5a88b1f686f774159949926e": { + "_changeWeaponName": true, + "_id": "5a88b1f686f774159949926e", + "_items": [ + { + "_id": "5a88595b86f7741822597734", + "_tpl": "5a7ae0c351dfba0017554310" + }, + { + "_id": "5a88665a86f774213552aa58", + "_tpl": "5a6b5ed88dc32e000c52ec86", + "parentId": "5a88595b86f7741822597734", + "slotId": "mod_barrel" + }, + { + "_id": "5a88680c86f77439ae3233d5", + "_tpl": "5a6b59a08dc32e000b452fb7", + "parentId": "5a88665a86f774213552aa58", + "slotId": "mod_muzzle" + }, + { + "_id": "5a88595b86f7741822597748", + "_tpl": "5a71e4f48dc32e001207fb26", + "parentId": "5a88595b86f7741822597734", + "slotId": "mod_reciever" + }, + { + "_id": "5a886a6186f77439ae323423", + "_tpl": "5a7d912f159bd400165484f3", + "parentId": "5a88595b86f7741822597748", + "slotId": "mod_sight_rear" + }, + { + "_id": "5a886a6186f77439ae323424", + "_tpl": "5a7d9104159bd400134c8c21", + "parentId": "5a88595b86f7741822597748", + "slotId": "mod_sight_front" + }, + { + "_id": "5a886a6186f77439ae323425", + "_tpl": "5a71e1868dc32e00094b97f3", + "parentId": "5a88595b86f7741822597748", + "slotId": "mod_scope" + }, + { + "_id": "5a88595b86f7741822597749", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "5a88595b86f7741822597734", + "slotId": "mod_magazine" + } + ], + "_name": "glock_zev_spartan_salient", + "_parent": "5a88595b86f7741822597734", + "_type": "Preset" + }, + "5a8ae21486f774377b73cf5d": { + "_changeWeaponName": true, + "_id": "5a8ae21486f774377b73cf5d", + "_items": [ + { + "_id": "60c0e3c5c13d3d37756c061c", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "60c0e3c5c13d3d37756c061d", + "_tpl": "5a01ad4786f77450561fda02", + "parentId": "60c0e3c5c13d3d37756c061c", + "slotId": "mod_gas_block" + }, + { + "_id": "60c0e3c5c13d3d37756c061e", + "_tpl": "59fb375986f7741b681b81a6", + "parentId": "60c0e3c5c13d3d37756c061d", + "slotId": "mod_handguard" + }, + { + "_id": "60c0e3c5c13d3d37756c061f", + "_tpl": "5649a2464bdc2d91118b45a8", + "parentId": "60c0e3c5c13d3d37756c061e", + "slotId": "mod_scope" + }, + { + "_id": "60c0e3c5c13d3d37756c0620", + "_tpl": "5a33b2c9c4a282000c5a9511", + "parentId": "60c0e3c5c13d3d37756c061f", + "slotId": "mod_scope" + }, + { + "_id": "60c0e3c5c13d3d37756c0621", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "60c0e3c5c13d3d37756c0620", + "slotId": "mod_scope" + }, + { + "_id": "60c0e3c5c13d3d37756c0622", + "_tpl": "59e0bed186f774156f04ce84", + "parentId": "60c0e3c5c13d3d37756c061e", + "slotId": "mod_mount_000" + }, + { + "_id": "60c0e3c5c13d3d37756c0623", + "_tpl": "588226d124597767ad33f787", + "parentId": "60c0e3c5c13d3d37756c0622", + "slotId": "mod_foregrip" + }, + { + "_id": "60c0e3c5c13d3d37756c0624", + "_tpl": "59e0be5d86f7742d48765bd2", + "parentId": "60c0e3c5c13d3d37756c061e", + "slotId": "mod_mount_003" + }, + { + "_id": "60c0e3c5c13d3d37756c0625", + "_tpl": "56def37dd2720bec348b456a", + "parentId": "60c0e3c5c13d3d37756c0624", + "slotId": "mod_tactical" + }, + { + "_id": "60c0e3c5c13d3d37756c0626", + "_tpl": "593d489686f7745c6255d58a", + "parentId": "60c0e3c5c13d3d37756c061c", + "slotId": "mod_muzzle" + }, + { + "_id": "60c0e3c5c13d3d37756c0627", + "_tpl": "5947f92f86f77427344a76b1", + "parentId": "60c0e3c5c13d3d37756c061c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "60c0e3c5c13d3d37756c0628", + "_tpl": "5d2c772c48f0355d95672c25", + "parentId": "60c0e3c5c13d3d37756c061c", + "slotId": "mod_reciever" + }, + { + "_id": "60c0e3c5c13d3d37756c0629", + "_tpl": "5a1ead28fcdbcb001912fa9f", + "parentId": "60c0e3c5c13d3d37756c0628", + "slotId": "mod_scope" + }, + { + "_id": "60c0e3c5c13d3d37756c062a", + "_tpl": "5a1eaa87fcdbcb001865f75e", + "parentId": "60c0e3c5c13d3d37756c0629", + "slotId": "mod_scope" + }, + { + "_id": "60c0e3c5c13d3d37756c062b", + "_tpl": "5649b2314bdc2d79388b4576", + "parentId": "60c0e3c5c13d3d37756c061c", + "slotId": "mod_stock" + }, + { + "_id": "60c0e3c5c13d3d37756c062c", + "_tpl": "5947e98b86f774778f1448bc", + "parentId": "60c0e3c5c13d3d37756c062b", + "slotId": "mod_stock" + }, + { + "_id": "60c0e3c5c13d3d37756c062d", + "_tpl": "59fafc5086f7740dbe19f6c3", + "parentId": "60c0e3c5c13d3d37756c061c", + "slotId": "mod_magazine" + }, + { + "_id": "60c0e3c5c13d3d37756c062e", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "60c0e3c5c13d3d37756c061c", + "slotId": "mod_charge" + } + ], + "_name": "akm_kreb_thermal_silenced", + "_parent": "60c0e3c5c13d3d37756c061c", + "_type": "Preset" + }, + "5a8ae36686f774377d6ce226": { + "_changeWeaponName": true, + "_id": "5a8ae36686f774377d6ce226", + "_items": [ + { + "_id": "5a885e7f86f77418225977d0", + "_tpl": "5447a9cd4bdc2dbd208b4567" + }, + { + "_id": "5a885e7f86f77418225977d1", + "_tpl": "5a33e75ac4a2826c6e06d759", + "parentId": "5a885e7f86f77418225977d0", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a41586e86f7746ac955fefc", + "_tpl": "59c1383d86f774290a37e0ca", + "parentId": "5a885e7f86f77418225977d0", + "slotId": "mod_magazine" + }, + { + "_id": "5a885e7f86f77418225977d3", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "5a885e7f86f77418225977d0", + "slotId": "mod_reciever" + }, + { + "_id": "5a885e7f86f77418225977d6", + "_tpl": "5a1ead28fcdbcb001912fa9f", + "parentId": "5a885e7f86f77418225977d3", + "slotId": "mod_scope" + }, + { + "_id": "5a4158a886f7746acc3eee94", + "_tpl": "5a1eaa87fcdbcb001865f75e", + "parentId": "5a885e7f86f77418225977d6", + "slotId": "mod_scope" + }, + { + "_id": "5a885e7f86f77418225977d7", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "5a885e7f86f77418225977d3", + "slotId": "mod_barrel" + }, + { + "_id": "5a885e7f86f77418225977d9", + "_tpl": "5943ee5a86f77413872d25ec", + "parentId": "5a885e7f86f77418225977d7", + "slotId": "mod_muzzle" + }, + { + "_id": "5a885e7f86f77418225977da", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "5a885e7f86f77418225977d7", + "slotId": "mod_gas_block" + }, + { + "_id": "5a885e7f86f77418225977d8", + "_tpl": "595cf16b86f77427440c32e2", + "parentId": "5a885e7f86f77418225977d3", + "slotId": "mod_handguard" + }, + { + "_id": "5a885e7f86f77418225977db", + "_tpl": "5649a2464bdc2d91118b45a8", + "parentId": "5a885e7f86f77418225977d8", + "slotId": "mod_scope" + }, + { + "_id": "5a885e7f86f77418225977de", + "_tpl": "5a33b2c9c4a282000c5a9511", + "parentId": "5a885e7f86f77418225977db", + "slotId": "mod_scope" + }, + { + "_id": "5a885e7f86f77418225977e1", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "5a885e7f86f77418225977de", + "slotId": "mod_scope" + }, + { + "_id": "5a885e7f86f77418225977dc", + "_tpl": "59e0bed186f774156f04ce84", + "parentId": "5a885e7f86f77418225977d8", + "slotId": "mod_mount_000" + }, + { + "_id": "5a885e7f86f77418225977df", + "_tpl": "5a7dbfc1159bd40016548fde", + "parentId": "5a885e7f86f77418225977dc", + "slotId": "mod_foregrip" + }, + { + "_id": "5a885e7f86f77418225977dd", + "_tpl": "59e0be5d86f7742d48765bd2", + "parentId": "5a885e7f86f77418225977d8", + "slotId": "mod_mount_003" + }, + { + "_id": "5a885e7f86f77418225977e0", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "5a885e7f86f77418225977dd", + "slotId": "mod_tactical" + }, + { + "_id": "5a885e7f86f77418225977d4", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "5a885e7f86f77418225977d0", + "slotId": "mod_stock" + }, + { + "_id": "5a885e7f86f77418225977d5", + "_tpl": "56ea7165d2720b6e518b4583", + "parentId": "5a885e7f86f77418225977d0", + "slotId": "mod_charge" + } + ], + "_name": "m4_hera_arms", + "_parent": "5a885e7f86f77418225977d0", + "_type": "Preset" + }, + "5a8ae43686f774377b73cfb3": { + "_changeWeaponName": true, + "_id": "5a8ae43686f774377b73cfb3", + "_items": [ + { + "_id": "5a8ae43686f774377b73cfa2", + "_tpl": "58948c8e86f77409493f7266" + }, + { + "_id": "5a8ae43686f774377b73cfa3", + "_tpl": "57c55efc2459772d2c6271e7", + "parentId": "5a8ae43686f774377b73cfa2", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a8ae43686f774377b73cfa4", + "_tpl": "5894a05586f774094708ef75", + "parentId": "5a8ae43686f774377b73cfa2", + "slotId": "mod_magazine" + }, + { + "_id": "5a8ae43686f774377b73cfa5", + "_tpl": "5894a5b586f77426d2590767", + "parentId": "5a8ae43686f774377b73cfa2", + "slotId": "mod_reciever" + }, + { + "_id": "5a8ae43686f774377b73cfa8", + "_tpl": "57adff4f24597737f373b6e6", + "parentId": "5a8ae43686f774377b73cfa5", + "slotId": "mod_scope" + }, + { + "_id": "5a8ae43686f774377b73cfac", + "_tpl": "58d2664f86f7747fec5834f6", + "parentId": "5a8ae43686f774377b73cfa8", + "slotId": "mod_scope" + }, + { + "_id": "5a8ae43686f774377b73cfb0", + "_tpl": "58d268fc86f774111273f8c2", + "parentId": "5a8ae43686f774377b73cfac", + "slotId": "mod_scope" + }, + { + "_id": "5a8ae43686f774377b73cfa9", + "_tpl": "58aeaaa886f7744fc1560f81", + "parentId": "5a8ae43686f774377b73cfa5", + "slotId": "mod_barrel" + }, + { + "_id": "5a8ae43686f774377b73cfad", + "_tpl": "58aeac1b86f77457c419f475", + "parentId": "5a8ae43686f774377b73cfa9", + "slotId": "mod_muzzle" + }, + { + "_id": "5a8ae43686f774377b73cfaa", + "_tpl": "5894a42086f77426d2590762", + "parentId": "5a8ae43686f774377b73cfa5", + "slotId": "mod_handguard" + }, + { + "_id": "5a8ae43686f774377b73cfae", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "5a8ae43686f774377b73cfaa", + "slotId": "mod_mount_000" + }, + { + "_id": "5a8ae43686f774377b73cfb1", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "5a8ae43686f774377b73cfae", + "slotId": "mod_tactical" + }, + { + "_id": "5a8ae43686f774377b73cfaf", + "_tpl": "58a5c12e86f7745d585a2b9e", + "parentId": "5a8ae43686f774377b73cfaa", + "slotId": "mod_mount_001" + }, + { + "_id": "5a8ae43686f774377b73cfb2", + "_tpl": "59f8a37386f7747af3328f06", + "parentId": "5a8ae43686f774377b73cfaf", + "slotId": "mod_foregrip" + }, + { + "_id": "5a8ae43686f774377b73cfa6", + "_tpl": "58ac1bf086f77420ed183f9f", + "parentId": "5a8ae43686f774377b73cfa2", + "slotId": "mod_stock" + }, + { + "_id": "5a8ae43686f774377b73cfab", + "_tpl": "591aef7986f774139d495f03", + "parentId": "5a8ae43686f774377b73cfa6", + "slotId": "mod_stock" + }, + { + "_id": "5a8ae43686f774377b73cfa7", + "_tpl": "58949edd86f77409483e16a9", + "parentId": "5a8ae43686f774377b73cfa2", + "slotId": "mod_charge" + } + ], + "_name": "mpx_sd_mid_range", + "_parent": "5a8ae43686f774377b73cfa2", + "_type": "Preset" + }, + "5a8ae54786f7743b5e013ba0": { + "_changeWeaponName": true, + "_id": "5a8ae54786f7743b5e013ba0", + "_items": [ + { + "_id": "5a8ae54786f7743b5e013b94", + "_tpl": "54491c4f4bdc2db1078b4568" + }, + { + "_id": "5a8ae54786f7743b5e013b95", + "_tpl": "55d4491a4bdc2d882f8b456e", + "parentId": "5a8ae54786f7743b5e013b94", + "slotId": "mod_barrel" + }, + { + "_id": "5a8ae54786f7743b5e013b9a", + "_tpl": "560838c94bdc2d77798b4569", + "parentId": "5a8ae54786f7743b5e013b95", + "slotId": "mod_muzzle" + }, + { + "_id": "5a8ae54786f7743b5e013b96", + "_tpl": "55d45f484bdc2d972f8b456d", + "parentId": "5a8ae54786f7743b5e013b94", + "slotId": "mod_handguard" + }, + { + "_id": "5a8ae54786f7743b5e013b9b", + "_tpl": "588226d124597767ad33f787", + "parentId": "5a8ae54786f7743b5e013b96", + "slotId": "mod_foregrip" + }, + { + "_id": "5a8ae54786f7743b5e013b9c", + "_tpl": "57d17e212459775a1179a0f5", + "parentId": "5a8ae54786f7743b5e013b96", + "slotId": "mod_tactical_000" + }, + { + "_id": "5a8ae54786f7743b5e013b9e", + "_tpl": "59d790f486f77403cb06aec6", + "parentId": "5a8ae54786f7743b5e013b9c", + "slotId": "mod_flashlight" + }, + { + "_id": "5a8ae54786f7743b5e013b97", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "parentId": "5a8ae54786f7743b5e013b94", + "slotId": "mod_magazine" + }, + { + "_id": "5a8ae54786f7743b5e013b98", + "_tpl": "56083be64bdc2d20478b456f", + "parentId": "5a8ae54786f7743b5e013b94", + "slotId": "mod_stock" + }, + { + "_id": "5a8ae54786f7743b5e013b99", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "parentId": "5a8ae54786f7743b5e013b94", + "slotId": "mod_mount_001" + }, + { + "_id": "5a8ae54786f7743b5e013b9d", + "_tpl": "5a33b2c9c4a282000c5a9511", + "parentId": "5a8ae54786f7743b5e013b99", + "slotId": "mod_scope" + }, + { + "_id": "5a8ae54786f7743b5e013b9f", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "5a8ae54786f7743b5e013b9d", + "slotId": "mod_scope" + } + ], + "_name": "mr133_tactical", + "_parent": "5a8ae54786f7743b5e013b94", + "_type": "Preset" + }, + "5a8ae65f86f774377a23ed55": { + "_changeWeaponName": true, + "_id": "5a8ae65f86f774377a23ed55", + "_items": [ + { + "_id": "639c46925287bf79c373762a", + "_tpl": "59984ab886f7743e98271174", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "639c46925287bf79c373762b", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "parentId": "639c46925287bf79c373762a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "639c46925287bf79c373762c", + "_tpl": "5ac78eaf5acfc4001926317a", + "parentId": "639c46925287bf79c373762a", + "slotId": "mod_stock" + }, + { + "_id": "639c46925287bf79c373762d", + "_tpl": "59ecc3dd86f7746dc827481c", + "parentId": "639c46925287bf79c373762c", + "slotId": "mod_stock" + }, + { + "_id": "639c46925287bf79c373762e", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "639c46925287bf79c373762a", + "slotId": "mod_charge" + }, + { + "_id": "639c46925287bf79c373762f", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "639c46925287bf79c373762a", + "slotId": "mod_magazine" + }, + { + "_id": "639c46925287bf79c3737630", + "_tpl": "59bfc5c886f7743bf6794e62", + "parentId": "639c46925287bf79c373762a", + "slotId": "mod_muzzle" + }, + { + "_id": "639c46925287bf79c3737631", + "_tpl": "59985a6c86f77414ec448d17", + "parentId": "639c46925287bf79c373762a", + "slotId": "mod_reciever" + }, + { + "_id": "639c46925287bf79c3737632", + "_tpl": "570fd6c2d2720bc6458b457f", + "parentId": "639c46925287bf79c3737631", + "slotId": "mod_scope" + }, + { + "_id": "639c46925287bf79c3737633", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "639c46925287bf79c373762a", + "slotId": "mod_sight_rear" + }, + { + "_id": "639c46925287bf79c3737634", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "639c46925287bf79c373762a", + "slotId": "mod_gas_block" + }, + { + "_id": "639c46925287bf79c3737635", + "_tpl": "5648b4534bdc2d3d1c8b4580", + "parentId": "639c46925287bf79c3737634", + "slotId": "mod_handguard" + }, + { + "_id": "639c46925287bf79c3737636", + "_tpl": "591af28e86f77414a27a9e1d", + "parentId": "639c46925287bf79c3737635", + "slotId": "mod_foregrip" + }, + { + "_id": "639c46925287bf79c3737637", + "_tpl": "560d657b4bdc2da74d8b4572", + "parentId": "639c46925287bf79c3737635", + "slotId": "mod_tactical_002" + } + ], + "_name": "vityaz_zenit", + "_parent": "639c46925287bf79c373762a", + "_type": "Preset" + }, + "5a8ae73886f7747b2e6e1416": { + "_changeWeaponName": true, + "_id": "5a8ae73886f7747b2e6e1416", + "_items": [ + { + "_id": "6396b4846a00541d900be57f", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6396b4846a00541d900be580", + "_tpl": "5a339805c4a2826c6e06d73d", + "parentId": "6396b4846a00541d900be57f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6396b4846a00541d900be581", + "_tpl": "55802d5f4bdc2dac148b458e", + "parentId": "6396b4846a00541d900be57f", + "slotId": "mod_magazine" + }, + { + "_id": "6396b4846a00541d900be582", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "6396b4846a00541d900be57f", + "slotId": "mod_reciever" + }, + { + "_id": "6396b4846a00541d900be583", + "_tpl": "57aca93d2459771f2c7e26db", + "parentId": "6396b4846a00541d900be582", + "slotId": "mod_scope" + }, + { + "_id": "6396b4846a00541d900be584", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "6396b4846a00541d900be582", + "slotId": "mod_barrel" + }, + { + "_id": "6396b4846a00541d900be585", + "_tpl": "56ea8180d2720bf2698b456a", + "parentId": "6396b4846a00541d900be584", + "slotId": "mod_muzzle" + }, + { + "_id": "6396b4846a00541d900be586", + "_tpl": "57da93632459771cb65bf83f", + "parentId": "6396b4846a00541d900be585", + "slotId": "mod_muzzle" + }, + { + "_id": "6396b4846a00541d900be587", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "6396b4846a00541d900be584", + "slotId": "mod_gas_block" + }, + { + "_id": "6396b4846a00541d900be588", + "_tpl": "55f84c3c4bdc2d5f408b4576", + "parentId": "6396b4846a00541d900be582", + "slotId": "mod_handguard" + }, + { + "_id": "6396b4846a00541d900be589", + "_tpl": "5649a2464bdc2d91118b45a8", + "parentId": "6396b4846a00541d900be588", + "slotId": "mod_scope" + }, + { + "_id": "6396b4846a00541d900be58a", + "_tpl": "58d39d3d86f77445bb794ae7", + "parentId": "6396b4846a00541d900be589", + "slotId": "mod_scope" + }, + { + "_id": "6396b4846a00541d900be58b", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "6396b4846a00541d900be58a", + "slotId": "mod_scope" + }, + { + "_id": "6396b4846a00541d900be58c", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "6396b4846a00541d900be588", + "slotId": "mod_tactical" + }, + { + "_id": "6396b4846a00541d900be58d", + "_tpl": "638f1ff84822287cad04be9d", + "parentId": "6396b4846a00541d900be588", + "slotId": "mod_handguard" + }, + { + "_id": "6396b4846a00541d900be58e", + "_tpl": "58c157be86f77403c74b2bb6", + "parentId": "6396b4846a00541d900be58d", + "slotId": "mod_foregrip" + }, + { + "_id": "6396b4846a00541d900be58f", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6396b4846a00541d900be57f", + "slotId": "mod_stock" + }, + { + "_id": "6396b4846a00541d900be590", + "_tpl": "58d2946386f774496974c37e", + "parentId": "6396b4846a00541d900be58f", + "slotId": "mod_stock_000" + }, + { + "_id": "6396b4846a00541d900be591", + "_tpl": "58d2912286f7744e27117493", + "parentId": "6396b4846a00541d900be590", + "slotId": "mod_stock" + }, + { + "_id": "6396b4846a00541d900be592", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "6396b4846a00541d900be57f", + "slotId": "mod_charge" + } + ], + "_name": "m4_block_2_customized", + "_parent": "6396b4846a00541d900be57f", + "_type": "Preset" + }, + "5a8c436686f7740f394d10b5": { + "_changeWeaponName": true, + "_id": "5a8c436686f7740f394d10b5", + "_items": [ + { + "_id": "5a88680c86f77439ae3233c7", + "_tpl": "5a7ae0c351dfba0017554310" + }, + { + "_id": "5a88680c86f77439ae3233ca", + "_tpl": "5a6b5f868dc32e000a311389", + "parentId": "5a88680c86f77439ae3233c7", + "slotId": "mod_barrel" + }, + { + "_id": "5a88680c86f77439ae3233cb", + "_tpl": "5a7b4960e899ef197b331a2d", + "parentId": "5a88680c86f77439ae3233c7", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a88680c86f77439ae3233cc", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "5a88680c86f77439ae3233c7", + "slotId": "mod_reciever" + }, + { + "_id": "5a886a6186f77439ae323426", + "_tpl": "5a71e0fb8dc32e00094b97f2", + "parentId": "5a88680c86f77439ae3233cc", + "slotId": "mod_sight_rear" + }, + { + "_id": "5a88680c86f77439ae3233d7", + "_tpl": "5a71e0048dc32e000c52ecc8", + "parentId": "5a88680c86f77439ae3233cc", + "slotId": "mod_sight_front" + }, + { + "_id": "5a88680c86f77439ae3233d8", + "_tpl": "5a7b32a2e899ef00135e345a", + "parentId": "5a88680c86f77439ae3233cc", + "slotId": "mod_muzzle" + }, + { + "_id": "5a88680c86f77439ae3233cd", + "_tpl": "5a718f958dc32e00094b97e7", + "parentId": "5a88680c86f77439ae3233c7", + "slotId": "mod_magazine" + }, + { + "_id": "5a88680c86f77439ae3233ce", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "5a88680c86f77439ae3233c7", + "slotId": "mod_tactical" + } + ], + "_name": "glock_high_capacity_compensated", + "_parent": "5a88680c86f77439ae3233c7", + "_type": "Preset" + }, + "5ac4ab8886f7747d0f66429a": { + "_changeWeaponName": false, + "_encyclopedia": "5abcbc27d8ce8700182eceeb", + "_id": "5ac4ab8886f7747d0f66429a", + "_items": [ + { + "_id": "5ac4a2c15acfc40019262e62", + "_tpl": "5abcbc27d8ce8700182eceeb" + }, + { + "_id": "5ac4ab8886f7747d0f664292", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "5ac4a2c15acfc40019262e62", + "slotId": "mod_gas_block" + }, + { + "_id": "5ac4ab8886f7747d0f664299", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "5ac4ab8886f7747d0f664292", + "slotId": "mod_handguard" + }, + { + "_id": "5ac4ab8886f7747d0f664293", + "_tpl": "59e61eb386f77440d64f5daf", + "parentId": "5ac4a2c15acfc40019262e62", + "slotId": "mod_muzzle" + }, + { + "_id": "5ac4ab8886f7747d0f664294", + "_tpl": "5a0071d486f77404e23a12b2", + "parentId": "5ac4a2c15acfc40019262e62", + "slotId": "mod_pistol_grip_akms" + }, + { + "_id": "5ac4ab8886f7747d0f664295", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "5ac4a2c15acfc40019262e62", + "slotId": "mod_reciever" + }, + { + "_id": "5ac4ab8886f7747d0f664296", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "5ac4a2c15acfc40019262e62", + "slotId": "mod_sight_rear" + }, + { + "_id": "5ac4ab8886f7747d0f664297", + "_tpl": "5abcd472d8ce8700166032ae", + "parentId": "5ac4a2c15acfc40019262e62", + "slotId": "mod_stock_akms" + }, + { + "_id": "5ac4ab8886f7747d0f664298", + "_tpl": "5a0060fc86f7745793204432", + "parentId": "5ac4a2c15acfc40019262e62", + "slotId": "mod_magazine" + } + ], + "_name": "AKMSN Default", + "_parent": "5ac4a2c15acfc40019262e62", + "_type": "Preset" + }, + "5ac4abf986f7747d117c67aa": { + "_changeWeaponName": false, + "_encyclopedia": "5ab8e9fcd8ce870019439434", + "_id": "5ac4abf986f7747d117c67aa", + "_items": [ + { + "_id": "5ac4a2c15acfc40019262e61", + "_tpl": "5ab8e9fcd8ce870019439434" + }, + { + "_id": "5ac4abf986f7747d117c67a2", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "5ac4a2c15acfc40019262e61", + "slotId": "mod_gas_block" + }, + { + "_id": "5ac4abf986f7747d117c67a9", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "5ac4abf986f7747d117c67a2", + "slotId": "mod_handguard" + }, + { + "_id": "5ac4abf986f7747d117c67a3", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "5ac4a2c15acfc40019262e61", + "slotId": "mod_muzzle" + }, + { + "_id": "5ac4abf986f7747d117c67a4", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "5ac4a2c15acfc40019262e61", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5ac4abf986f7747d117c67a5", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "5ac4a2c15acfc40019262e61", + "slotId": "mod_reciever" + }, + { + "_id": "5ac4abf986f7747d117c67a6", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "5ac4a2c15acfc40019262e61", + "slotId": "mod_sight_rear" + }, + { + "_id": "5ac4abf986f7747d117c67a7", + "_tpl": "5ab626e4d8ce87272e4c6e43", + "parentId": "5ac4a2c15acfc40019262e61", + "slotId": "mod_stock" + }, + { + "_id": "5ac4abf986f7747d117c67a8", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "5ac4a2c15acfc40019262e61", + "slotId": "mod_magazine" + } + ], + "_name": "AKS-74 Default", + "_parent": "5ac4a2c15acfc40019262e61", + "_type": "Preset" + }, + "5ac4ac9486f774181345c3d2": { + "_changeWeaponName": false, + "_encyclopedia": "5abccb7dd8ce87001773e277", + "_id": "5ac4ac9486f774181345c3d2", + "_items": [ + { + "_id": "5abcdb1cd8ce87041e75bc85", + "_tpl": "5abccb7dd8ce87001773e277" + }, + { + "_id": "5abcdb1cd8ce87041e75bc86", + "_tpl": "5a17fb03fcdbcbcae668728f", + "parentId": "5abcdb1cd8ce87041e75bc85", + "slotId": "mod_magazine" + }, + { + "_id": "5abcdb1cd8ce87041e75bc87", + "_tpl": "5a17fb9dfcdbcbcae6687291", + "parentId": "5abcdb1cd8ce87041e75bc85", + "slotId": "mod_stock" + }, + { + "_id": "5abcdb1cd8ce87041e75bc88", + "_tpl": "5a17fc70fcdbcb0176308b3d", + "parentId": "5abcdb1cd8ce87041e75bc85", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5abcdb1cd8ce87041e75bc89", + "_tpl": "5aba62f8d8ce87001943946b", + "parentId": "5abcdb1cd8ce87041e75bc85", + "slotId": "mod_sight_front" + }, + { + "_id": "5abcdb1cd8ce87041e75bc8a", + "_tpl": "5aba639ed8ce8700182ece67", + "parentId": "5abcdb1cd8ce87041e75bc85", + "slotId": "mod_sight_rear" + }, + { + "_id": "5abcdb1cd8ce87041e75bc8b", + "_tpl": "5abcc328d8ce8700194394f3", + "parentId": "5abcdb1cd8ce87041e75bc85", + "slotId": "mod_muzzle" + } + ], + "_name": "APB Default", + "_parent": "5abcdb1cd8ce87041e75bc85", + "_type": "Preset" + }, + "5ac4accf86f774181345c3d7": { + "_changeWeaponName": false, + "_encyclopedia": "5a17f98cfcdbcb0980087290", + "_id": "5ac4accf86f774181345c3d7", + "_items": [ + { + "_id": "5ac4a2c15acfc40019262e5f", + "_tpl": "5a17f98cfcdbcb0980087290" + }, + { + "_id": "5ac4accf86f774181345c3d3", + "_tpl": "5a17fb03fcdbcbcae668728f", + "parentId": "5ac4a2c15acfc40019262e5f", + "slotId": "mod_magazine" + }, + { + "_id": "5ac4accf86f774181345c3d4", + "_tpl": "5a17fc70fcdbcb0176308b3d", + "parentId": "5ac4a2c15acfc40019262e5f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5ac4accf86f774181345c3d5", + "_tpl": "5aba62f8d8ce87001943946b", + "parentId": "5ac4a2c15acfc40019262e5f", + "slotId": "mod_sight_front" + }, + { + "_id": "5ac4accf86f774181345c3d6", + "_tpl": "5aba637ad8ce87001773e17f", + "parentId": "5ac4a2c15acfc40019262e5f", + "slotId": "mod_sight_rear" + } + ], + "_name": "APS Default", + "_parent": "5ac4a2c15acfc40019262e5f", + "_type": "Preset" + }, + "5ac4ad3686f774181345c3da": { + "_changeWeaponName": false, + "_encyclopedia": "5aafa857e5b5b00018480968", + "_id": "5ac4ad3686f774181345c3da", + "_items": [ + { + "_id": "64c171afc69480f5b1030b96", + "_tpl": "5aafa857e5b5b00018480968", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "64c171afc69480f5b1030b97", + "_tpl": "64b9e2037fdfb81df81e3c25", + "parentId": "64c171afc69480f5b1030b96", + "slotId": "mod_magazine" + }, + { + "_id": "64c171afc69480f5b1030b98", + "_tpl": "5aaf8e43e5b5b00015693246", + "parentId": "64c171afc69480f5b1030b96", + "slotId": "mod_stock" + }, + { + "_id": "64c171afc69480f5b1030b99", + "_tpl": "5ab24ef9e5b5b00fe93c9209", + "parentId": "64c171afc69480f5b1030b98", + "slotId": "mod_mount" + }, + { + "_id": "64c171afc69480f5b1030b9a", + "_tpl": "5aaf9d53e5b5b00015042a52", + "parentId": "64c171afc69480f5b1030b96", + "slotId": "mod_barrel" + }, + { + "_id": "64c171afc69480f5b1030b9b", + "_tpl": "5aafa1c2e5b5b00015042a56", + "parentId": "64c171afc69480f5b1030b9a", + "slotId": "mod_muzzle" + }, + { + "_id": "64c171afc69480f5b1030b9c", + "_tpl": "5aafa49ae5b5b00015042a58", + "parentId": "64c171afc69480f5b1030b9b", + "slotId": "mod_sight_front" + }, + { + "_id": "64c171afc69480f5b1030b9d", + "_tpl": "5abcbb20d8ce87001773e258", + "parentId": "64c171afc69480f5b1030b96", + "slotId": "mod_sight_rear" + } + ], + "_name": "M1A Default", + "_parent": "64c171afc69480f5b1030b96", + "_type": "Preset" + }, + "5ac4ad7586f7747d14551da3": { + "_changeWeaponName": false, + "_encyclopedia": "5a7828548dc32e5a9c28b516", + "_id": "5ac4ad7586f7747d14551da3", + "_items": [ + { + "_id": "5ac4a2c15acfc40019262e63", + "_tpl": "5a7828548dc32e5a9c28b516" + }, + { + "_id": "5ac4a14c5acfc40019262e46", + "_tpl": "5a787f7ac5856700177af660", + "parentId": "5ac4a2c15acfc40019262e63", + "slotId": "mod_barrel" + }, + { + "_id": "5ac4a14c5acfc40019262e49", + "_tpl": "5a788089c5856700142fdd9c", + "parentId": "5ac4a2c15acfc40019262e63", + "slotId": "mod_handguard" + }, + { + "_id": "5ac4a14c5acfc40019262e3f", + "_tpl": "5a7882dcc5856700177af662", + "parentId": "5ac4a2c15acfc40019262e63", + "slotId": "mod_magazine" + }, + { + "_id": "5ac4ad7586f7747d14551da2", + "_tpl": "5a7880d0c5856700142fdd9d", + "parentId": "5ac4a2c15acfc40019262e63", + "slotId": "mod_stock" + } + ], + "_name": "M870 Default", + "_parent": "5ac4a2c15acfc40019262e63", + "_type": "Preset" + }, + "5acf7db286f7743a9c7092e3": { + "_changeWeaponName": false, + "_encyclopedia": "5ac4cd105acfc40016339859", + "_id": "5acf7db286f7743a9c7092e3", + "_items": [ + { + "_id": "5ac5f8745acfc43f67248a76", + "_tpl": "5ac4cd105acfc40016339859" + }, + { + "_id": "5ac5f8745acfc43f67248a77", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "5ac5f8745acfc43f67248a76", + "slotId": "mod_gas_block" + }, + { + "_id": "5acf7db286f7743a9c7092e2", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "5ac5f8745acfc43f67248a77", + "slotId": "mod_handguard" + }, + { + "_id": "5acf7db286f7743a9c7092e0", + "_tpl": "5ac7655e5acfc40016339a19", + "parentId": "5ac5f8745acfc43f67248a76", + "slotId": "mod_muzzle" + }, + { + "_id": "5ac5f8745acfc43f67248a79", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "5ac5f8745acfc43f67248a76", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5ac5f8745acfc43f67248a7a", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "5ac5f8745acfc43f67248a76", + "slotId": "mod_reciever" + }, + { + "_id": "5acf7db286f7743a9c7092e1", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "5ac5f8745acfc43f67248a76", + "slotId": "mod_sight_rear" + }, + { + "_id": "5ac5f8745acfc43f67248a7c", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "5ac5f8745acfc43f67248a76", + "slotId": "mod_stock" + }, + { + "_id": "5ac5f8745acfc43f67248a7d", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "5ac5f8745acfc43f67248a76", + "slotId": "mod_magazine" + } + ], + "_name": "AK-74M Default", + "_parent": "5ac5f8745acfc43f67248a76", + "_type": "Preset" + }, + "5acf7dd986f774486e1281bf": { + "_changeWeaponName": false, + "_encyclopedia": "5ac66cb05acfc40198510a10", + "_id": "5acf7dd986f774486e1281bf", + "_items": [ + { + "_id": "5acf7dd986f774486e1281b6", + "_tpl": "5ac66cb05acfc40198510a10" + }, + { + "_id": "5acf7dd986f774486e1281b7", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "5acf7dd986f774486e1281b6", + "slotId": "mod_gas_block" + }, + { + "_id": "5acf7dd986f774486e1281be", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "5acf7dd986f774486e1281b7", + "slotId": "mod_handguard" + }, + { + "_id": "5acf7dd986f774486e1281b8", + "_tpl": "5ac72e615acfc43f67248aa0", + "parentId": "5acf7dd986f774486e1281b6", + "slotId": "mod_muzzle" + }, + { + "_id": "5acf7dd986f774486e1281b9", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "5acf7dd986f774486e1281b6", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5acf7dd986f774486e1281ba", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "5acf7dd986f774486e1281b6", + "slotId": "mod_reciever" + }, + { + "_id": "5acf7dd986f774486e1281bb", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "5acf7dd986f774486e1281b6", + "slotId": "mod_sight_rear" + }, + { + "_id": "5acf7dd986f774486e1281bc", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "5acf7dd986f774486e1281b6", + "slotId": "mod_stock" + }, + { + "_id": "5acf7dd986f774486e1281bd", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "5acf7dd986f774486e1281b6", + "slotId": "mod_magazine" + } + ], + "_name": "AK-101 Default", + "_parent": "5acf7dd986f774486e1281b6", + "_type": "Preset" + }, + "5acf7dfc86f774401e19c390": { + "_changeWeaponName": false, + "_encyclopedia": "5ac66d015acfc400180ae6e4", + "_id": "5acf7dfc86f774401e19c390", + "_items": [ + { + "_id": "5ac739405acfc400154e275d", + "_tpl": "5ac66d015acfc400180ae6e4" + }, + { + "_id": "5ac739405acfc400154e275e", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "5ac739405acfc400154e275d", + "slotId": "mod_gas_block" + }, + { + "_id": "5acf7dfc86f774401e19c38f", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "5ac739405acfc400154e275e", + "slotId": "mod_handguard" + }, + { + "_id": "5acf7dfc86f774401e19c38c", + "_tpl": "5ac72e725acfc400180ae701", + "parentId": "5ac739405acfc400154e275d", + "slotId": "mod_muzzle" + }, + { + "_id": "5acf7dfc86f774401e19c38d", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "5ac739405acfc400154e275d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5ac739405acfc400154e2761", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "5ac739405acfc400154e275d", + "slotId": "mod_reciever" + }, + { + "_id": "5ac739405acfc400154e2762", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "5ac739405acfc400154e275d", + "slotId": "mod_sight_rear" + }, + { + "_id": "5acf7dfc86f774401e19c38e", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "5ac739405acfc400154e275d", + "slotId": "mod_stock" + }, + { + "_id": "5ac739405acfc400154e2764", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "5ac739405acfc400154e275d", + "slotId": "mod_magazine" + } + ], + "_name": "AK-102 Default", + "_parent": "5ac739405acfc400154e275d", + "_type": "Preset" + }, + "5acf7e2b86f7740874790e20": { + "_changeWeaponName": false, + "_encyclopedia": "5ac66d2e5acfc43b321d4b53", + "_id": "5acf7e2b86f7740874790e20", + "_items": [ + { + "_id": "5ac670435acfc43f67248a8d", + "_tpl": "5ac66d2e5acfc43b321d4b53" + }, + { + "_id": "5acf7e2b86f7740874790e18", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "5ac670435acfc43f67248a8d", + "slotId": "mod_gas_block" + }, + { + "_id": "5acf7e2b86f7740874790e1f", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "5acf7e2b86f7740874790e18", + "slotId": "mod_handguard" + }, + { + "_id": "5acf7e2b86f7740874790e19", + "_tpl": "5ac72e7d5acfc40016339a02", + "parentId": "5ac670435acfc43f67248a8d", + "slotId": "mod_muzzle" + }, + { + "_id": "5acf7e2b86f7740874790e1a", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "5ac670435acfc43f67248a8d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5acf7e2b86f7740874790e1b", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "5ac670435acfc43f67248a8d", + "slotId": "mod_reciever" + }, + { + "_id": "5acf7e2b86f7740874790e1c", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "5ac670435acfc43f67248a8d", + "slotId": "mod_sight_rear" + }, + { + "_id": "5acf7e2b86f7740874790e1d", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "5ac670435acfc43f67248a8d", + "slotId": "mod_stock" + }, + { + "_id": "5acf7e2b86f7740874790e1e", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "5ac670435acfc43f67248a8d", + "slotId": "mod_magazine" + } + ], + "_name": "AK-103 Default", + "_parent": "5ac670435acfc43f67248a8d", + "_type": "Preset" + }, + "5acf7e4c86f774499a3f3bdd": { + "_changeWeaponName": false, + "_encyclopedia": "5ac66d725acfc43b321d4b60", + "_id": "5acf7e4c86f774499a3f3bdd", + "_items": [ + { + "_id": "5acf7e4c86f774499a3f3bd5", + "_tpl": "5ac66d725acfc43b321d4b60" + }, + { + "_id": "5acf7e4c86f774499a3f3bd6", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "5acf7e4c86f774499a3f3bd5", + "slotId": "mod_gas_block" + }, + { + "_id": "5acf7e4c86f774499a3f3bdc", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "5acf7e4c86f774499a3f3bd6", + "slotId": "mod_handguard" + }, + { + "_id": "5acf7e4c86f774499a3f3bd7", + "_tpl": "5ac72e895acfc43b321d4bd5", + "parentId": "5acf7e4c86f774499a3f3bd5", + "slotId": "mod_muzzle" + }, + { + "_id": "5acf7e4c86f774499a3f3bd8", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "5acf7e4c86f774499a3f3bd5", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5acf7e4c86f774499a3f3bd9", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "5acf7e4c86f774499a3f3bd5", + "slotId": "mod_reciever" + }, + { + "_id": "5ac739405acfc400154e2762", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "5acf7e4c86f774499a3f3bd5", + "slotId": "mod_sight_rear" + }, + { + "_id": "5acf7e4c86f774499a3f3bda", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "5acf7e4c86f774499a3f3bd5", + "slotId": "mod_stock" + }, + { + "_id": "5acf7e4c86f774499a3f3bdb", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "5acf7e4c86f774499a3f3bd5", + "slotId": "mod_magazine" + } + ], + "_name": "AK-104 Default", + "_parent": "5acf7e4c86f774499a3f3bd5", + "_type": "Preset" + }, + "5acf7e7986f774401e19c3a0": { + "_changeWeaponName": false, + "_encyclopedia": "5ac66d9b5acfc4001633997a", + "_id": "5acf7e7986f774401e19c3a0", + "_items": [ + { + "_id": "5acf7e7986f774401e19c399", + "_tpl": "5ac66d9b5acfc4001633997a" + }, + { + "_id": "5ac739405acfc400154e275e", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "5acf7e7986f774401e19c399", + "slotId": "mod_gas_block" + }, + { + "_id": "5acf7e7986f774401e19c39f", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "5ac739405acfc400154e275e", + "slotId": "mod_handguard" + }, + { + "_id": "5acf7e7986f774401e19c39a", + "_tpl": "5ac72e945acfc43f3b691116", + "parentId": "5acf7e7986f774401e19c399", + "slotId": "mod_muzzle" + }, + { + "_id": "5acf7e7986f774401e19c39b", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "5acf7e7986f774401e19c399", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5ac739405acfc400154e2761", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "5acf7e7986f774401e19c399", + "slotId": "mod_reciever" + }, + { + "_id": "5acf7e7986f774401e19c39c", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "5acf7e7986f774401e19c399", + "slotId": "mod_sight_rear" + }, + { + "_id": "5acf7e7986f774401e19c39d", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "5acf7e7986f774401e19c399", + "slotId": "mod_stock" + }, + { + "_id": "5acf7e7986f774401e19c39e", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "5acf7e7986f774401e19c399", + "slotId": "mod_magazine" + } + ], + "_name": "AK-105 Default", + "_parent": "5acf7e7986f774401e19c399", + "_type": "Preset" + }, + "5af08bfd86f774223d4528e2": { + "_changeWeaponName": true, + "_id": "5af08bfd86f774223d4528e2", + "_items": [ + { + "_id": "5af08bfd86f774223d4528ed", + "_tpl": "5aafa857e5b5b00018480968" + }, + { + "_id": "5af08bfd86f774223d4528ee", + "_tpl": "5aaf8a0be5b5b00015693243", + "parentId": "5af08bfd86f774223d4528ed", + "slotId": "mod_magazine" + }, + { + "_id": "5af08bfd86f774223d4528ef", + "_tpl": "5addc7005acfc4001669f275", + "parentId": "5af08bfd86f774223d4528ed", + "slotId": "mod_stock" + }, + { + "_id": "5af08bfd86f774223d4528f0", + "_tpl": "5addc7ac5acfc400194dbd90", + "parentId": "5af08bfd86f774223d4528ef", + "slotId": "mod_stock" + }, + { + "_id": "5af08bfd86f774223d4528f1", + "_tpl": "5addc7db5acfc4001669f279", + "parentId": "5af08bfd86f774223d4528f0", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5af08bfd86f774223d4528f2", + "_tpl": "5aaf9d53e5b5b00015042a52", + "parentId": "5af08bfd86f774223d4528ed", + "slotId": "mod_barrel" + }, + { + "_id": "5af08bfd86f774223d4528f3", + "_tpl": "5aafa1c2e5b5b00015042a56", + "parentId": "5af08bfd86f774223d4528f2", + "slotId": "mod_muzzle" + }, + { + "_id": "5af08bfd86f774223d4528f4", + "_tpl": "5aafa49ae5b5b00015042a58", + "parentId": "5af08bfd86f774223d4528f3", + "slotId": "mod_sight_front" + }, + { + "_id": "5af08bfd86f774223d4528f5", + "_tpl": "5abcbb20d8ce87001773e258", + "parentId": "5af08bfd86f774223d4528ed", + "slotId": "mod_sight_rear" + } + ], + "_name": "M1A_EBR_Stock", + "_parent": "5af08bfd86f774223d4528ed", + "_type": "Preset" + }, + "5af08c4486f774223b094223": { + "_changeWeaponName": true, + "_id": "5af08c4486f774223b094223", + "_items": [ + { + "_id": "5af08c4486f774223b09422d", + "_tpl": "5aafa857e5b5b00018480968" + }, + { + "_id": "5af08c4486f774223b09422e", + "_tpl": "5aaf8a0be5b5b00015693243", + "parentId": "5af08c4486f774223b09422d", + "slotId": "mod_magazine" + }, + { + "_id": "5af08c4486f774223b09422f", + "_tpl": "5ab372a310e891001717f0d8", + "parentId": "5af08c4486f774223b09422d", + "slotId": "mod_stock" + }, + { + "_id": "5af08c4486f774223b094230", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "5af08c4486f774223b09422f", + "slotId": "mod_pistolgrip" + }, + { + "_id": "5af08c4486f774223b094231", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "5af08c4486f774223b09422f", + "slotId": "mod_stock" + }, + { + "_id": "5af08c4486f774223b094232", + "_tpl": "58d2946386f774496974c37e", + "parentId": "5af08c4486f774223b094231", + "slotId": "mod_stock_000" + }, + { + "_id": "5af08c4486f774223b094233", + "_tpl": "5addbac75acfc400194dbc56", + "parentId": "5af08c4486f774223b09422d", + "slotId": "mod_barrel" + }, + { + "_id": "5af08c4486f774223b094234", + "_tpl": "5addbbb25acfc40015621bd9", + "parentId": "5af08c4486f774223b094233", + "slotId": "mod_muzzle" + } + ], + "_name": "M1A_SASS_Chasis", + "_parent": "5af08c4486f774223b09422d", + "_type": "Preset" + }, + "5af08cc686f77424a61595f2": { + "_changeWeaponName": true, + "_id": "5af08cc686f77424a61595f2", + "_items": [ + { + "_id": "6398705eb0cbbf65cc6346ed", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6398705eb0cbbf65cc6346ee", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "6398705eb0cbbf65cc6346ed", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6398705eb0cbbf65cc6346ef", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6398705eb0cbbf65cc6346ed", + "slotId": "mod_magazine" + }, + { + "_id": "6398705eb0cbbf65cc6346f0", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "6398705eb0cbbf65cc6346ed", + "slotId": "mod_reciever" + }, + { + "_id": "6398705eb0cbbf65cc6346f1", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "6398705eb0cbbf65cc6346f0", + "slotId": "mod_barrel" + }, + { + "_id": "6398705eb0cbbf65cc6346f2", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "6398705eb0cbbf65cc6346f1", + "slotId": "mod_muzzle" + }, + { + "_id": "6398705eb0cbbf65cc6346f3", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "6398705eb0cbbf65cc6346f1", + "slotId": "mod_gas_block" + }, + { + "_id": "6398705eb0cbbf65cc6346f4", + "_tpl": "55d459824bdc2d892f8b4573", + "parentId": "6398705eb0cbbf65cc6346f0", + "slotId": "mod_handguard" + }, + { + "_id": "6398705eb0cbbf65cc6346f5", + "_tpl": "637f57b78d137b27f70c496a", + "parentId": "6398705eb0cbbf65cc6346f4", + "slotId": "mod_handguard" + }, + { + "_id": "6398705eb0cbbf65cc6346f6", + "_tpl": "55d5f46a4bdc2d1b198b4567", + "parentId": "6398705eb0cbbf65cc6346f0", + "slotId": "mod_sight_rear" + }, + { + "_id": "6398705eb0cbbf65cc6346f7", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6398705eb0cbbf65cc6346ed", + "slotId": "mod_stock" + }, + { + "_id": "6398705eb0cbbf65cc6346f8", + "_tpl": "5ae30c9a5acfc408fb139a03", + "parentId": "6398705eb0cbbf65cc6346f7", + "slotId": "mod_stock_000" + }, + { + "_id": "6398705eb0cbbf65cc6346f9", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "6398705eb0cbbf65cc6346ed", + "slotId": "mod_charge" + } + ], + "_name": "M4A1_Sopmod_Block_1", + "_parent": "6398705eb0cbbf65cc6346ed", + "_type": "Preset" + }, + "5af08cf886f774223c269184": { + "_changeWeaponName": true, + "_encyclopedia": "5447a9cd4bdc2dbd208b4567", + "_id": "5af08cf886f774223c269184", + "_items": [ + { + "_id": "6396b722d604e334650f9726", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6396b722d604e334650f9727", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "6396b722d604e334650f9726", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6396b722d604e334650f9728", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "6396b722d604e334650f9726", + "slotId": "mod_magazine" + }, + { + "_id": "6396b722d604e334650f9729", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "6396b722d604e334650f9726", + "slotId": "mod_reciever" + }, + { + "_id": "6396b722d604e334650f972a", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "6396b722d604e334650f9729", + "slotId": "mod_barrel" + }, + { + "_id": "6396b722d604e334650f972b", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "6396b722d604e334650f972a", + "slotId": "mod_muzzle" + }, + { + "_id": "6396b722d604e334650f972c", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "6396b722d604e334650f972a", + "slotId": "mod_gas_block" + }, + { + "_id": "6396b722d604e334650f972d", + "_tpl": "5ae30db85acfc408fb139a05", + "parentId": "6396b722d604e334650f9729", + "slotId": "mod_handguard" + }, + { + "_id": "6396b722d604e334650f972e", + "_tpl": "637f57a68d137b27f70c4968", + "parentId": "6396b722d604e334650f972d", + "slotId": "mod_handguard" + }, + { + "_id": "6396b722d604e334650f972f", + "_tpl": "5ae30bad5acfc400185c2dc4", + "parentId": "6396b722d604e334650f9729", + "slotId": "mod_sight_rear" + }, + { + "_id": "6396b722d604e334650f9730", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "6396b722d604e334650f9726", + "slotId": "mod_stock" + }, + { + "_id": "6396b722d604e334650f9731", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "6396b722d604e334650f9730", + "slotId": "mod_stock_000" + }, + { + "_id": "6396b722d604e334650f9732", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "6396b722d604e334650f9726", + "slotId": "mod_charge" + } + ], + "_name": "M4A1_Std", + "_parent": "6396b722d604e334650f9726", + "_type": "Preset" + }, + "5af08d1c86f774223a7aa1b4": { + "_changeWeaponName": true, + "_id": "5af08d1c86f774223a7aa1b4", + "_items": [ + { + "_id": "5af08d1c86f774223a7aa1c1", + "_tpl": "5a7828548dc32e5a9c28b516" + }, + { + "_id": "5af08d1c86f774223a7aa1c2", + "_tpl": "5a787fdfc5856700142fdd9a", + "parentId": "5af08d1c86f774223a7aa1c1", + "slotId": "mod_barrel" + }, + { + "_id": "5af08d1c86f774223a7aa1c3", + "_tpl": "5a788031c585673f2b5c1c79", + "parentId": "5af08d1c86f774223a7aa1c1", + "slotId": "mod_handguard" + }, + { + "_id": "5af08d1c86f774223a7aa1c4", + "_tpl": "59fc48e086f77463b1118392", + "parentId": "5af08d1c86f774223a7aa1c3", + "slotId": "mod_foregrip" + }, + { + "_id": "5af08d1c86f774223a7aa1c5", + "_tpl": "5a7882dcc5856700177af662", + "parentId": "5af08d1c86f774223a7aa1c1", + "slotId": "mod_magazine" + }, + { + "_id": "5af08d1c86f774223a7aa1c6", + "_tpl": "5ae35b315acfc4001714e8b0", + "parentId": "5af08d1c86f774223a7aa1c1", + "slotId": "mod_stock" + }, + { + "_id": "5af08d1c86f774223a7aa1c7", + "_tpl": "56eabf3bd2720b75698b4569", + "parentId": "5af08d1c86f774223a7aa1c6", + "slotId": "mod_stock" + }, + { + "_id": "5af08d1c86f774223a7aa1c8", + "_tpl": "58d2912286f7744e27117493", + "parentId": "5af08d1c86f774223a7aa1c7", + "slotId": "mod_stock" + }, + { + "_id": "5af08d1c86f774223a7aa1c9", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "5af08d1c86f774223a7aa1c6", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5af08d1c86f774223a7aa1ca", + "_tpl": "5a78948ec5856700177b1124", + "parentId": "5af08d1c86f774223a7aa1c1", + "slotId": "mod_mount" + }, + { + "_id": "5af08d1c86f774223a7aa1cb", + "_tpl": "584924ec24597768f12ae244", + "parentId": "5af08d1c86f774223a7aa1ca", + "slotId": "mod_scope" + } + ], + "_name": "M870_MESA_Tactical_Breacher", + "_parent": "5af08d1c86f774223a7aa1c1", + "_type": "Preset" + }, + "5b439b1f86f7744fd8059cbe": { + "_changeWeaponName": false, + "_encyclopedia": "5b1fa9b25acfc40018633c01", + "_id": "5b439b1f86f7744fd8059cbe", + "_items": [ + { + "_id": "5b439b1f86f7744fd8059cc6", + "_tpl": "5b1fa9b25acfc40018633c01" + }, + { + "_id": "5b439b1f86f7744fd8059cc7", + "_tpl": "5b1fa9ea5acfc40018633c0a", + "parentId": "5b439b1f86f7744fd8059cc6", + "slotId": "mod_barrel" + }, + { + "_id": "5b439b1f86f7744fd8059cc8", + "_tpl": "5b1faa0f5acfc40dc528aeb5", + "parentId": "5b439b1f86f7744fd8059cc6", + "slotId": "mod_reciever" + }, + { + "_id": "5b439b1f86f7744fd8059cc9", + "_tpl": "5a6f5d528dc32e00094b97d9", + "parentId": "5b439b1f86f7744fd8059cc8", + "slotId": "mod_sight_rear" + }, + { + "_id": "5b439b1f86f7744fd8059cca", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "5b439b1f86f7744fd8059cc8", + "slotId": "mod_sight_front" + }, + { + "_id": "5b439b1f86f7744fd8059ccb", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "5b439b1f86f7744fd8059cc6", + "slotId": "mod_magazine" + } + ], + "_name": "Glock_18C", + "_parent": "5b439b1f86f7744fd8059cc6", + "_type": "Preset" + }, + "5b439b5686f77428bd137424": { + "_changeWeaponName": false, + "_encyclopedia": "5b0bbe4e5acfc40dc528a72d", + "_id": "5b439b5686f77428bd137424", + "_items": [ + { + "_id": "5b439b5686f77428bd137432", + "_tpl": "5b0bbe4e5acfc40dc528a72d" + }, + { + "_id": "5b439b5686f77428bd137433", + "_tpl": "5b099b965acfc400186331e6", + "parentId": "5b439b5686f77428bd137432", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5b439b5686f77428bd137434", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "5b439b5686f77428bd137432", + "slotId": "mod_magazine" + }, + { + "_id": "5b439b5686f77428bd137435", + "_tpl": "5b099a9d5acfc47a8607efe7", + "parentId": "5b439b5686f77428bd137432", + "slotId": "mod_handguard" + }, + { + "_id": "5b439b5686f77428bd137436", + "_tpl": "5b099a765acfc47a8607efe3", + "parentId": "5b439b5686f77428bd137432", + "slotId": "mod_barrel" + }, + { + "_id": "5b439b5686f77428bd137437", + "_tpl": "5b099b7d5acfc400186331e4", + "parentId": "5b439b5686f77428bd137436", + "slotId": "mod_muzzle" + }, + { + "_id": "5b439b5686f77428bd137438", + "_tpl": "5b0bc22d5acfc47a8607f085", + "parentId": "5b439b5686f77428bd137432", + "slotId": "mod_sight_rear" + }, + { + "_id": "5b439b5686f77428bd137439", + "_tpl": "5b099bb25acfc400186331e8", + "parentId": "5b439b5686f77428bd137432", + "slotId": "mod_reciever" + }, + { + "_id": "5b439b5686f77428bd13743a", + "_tpl": "5b099bf25acfc4001637e683", + "parentId": "5b439b5686f77428bd137432", + "slotId": "mod_stock" + }, + { + "_id": "5b439b5686f77428bd13743b", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "5b439b5686f77428bd13743a", + "slotId": "mod_stock_000" + }, + { + "_id": "5b439b5686f77428bd13743c", + "_tpl": "56eabf3bd2720b75698b4569", + "parentId": "5b439b5686f77428bd13743b", + "slotId": "mod_stock_000" + }, + { + "_id": "5b439b5686f77428bd13743d", + "_tpl": "58d2912286f7744e27117493", + "parentId": "5b439b5686f77428bd13743c", + "slotId": "mod_stock" + } + ], + "_name": "SA-58_OSW", + "_parent": "5b439b5686f77428bd137432", + "_type": "Preset" + }, + "5b44abe986f774283e2e3512": { + "_changeWeaponName": false, + "_encyclopedia": "5b3b713c5acfc4330140bd8d", + "_id": "5b44abe986f774283e2e3512", + "_items": [ + { + "_id": "5b44abe986f774283e2e3514", + "_tpl": "5b3b713c5acfc4330140bd8d" + }, + { + "_id": "5b44abe986f774283e2e3515", + "_tpl": "5b3baf8f5acfc40dc5296692", + "parentId": "5b44abe986f774283e2e3514", + "slotId": "mod_barrel" + }, + { + "_id": "5b44abe986f774283e2e3516", + "_tpl": "5b3cadf35acfc400194776a0", + "parentId": "5b44abe986f774283e2e3514", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5b44abe986f774283e2e3517", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "5b44abe986f774283e2e3514", + "slotId": "mod_magazine" + } + ], + "_name": "gold_TT", + "_parent": "5b44abe986f774283e2e3514", + "_type": "Preset" + }, + "5b83f22086f77464e15a1d5f": { + "_changeWeaponName": true, + "_id": "5b83f22086f77464e15a1d5f", + "_items": [ + { + "_id": "5b83f22086f77464e15a1d61", + "_tpl": "5b0bbe4e5acfc40dc528a72d" + }, + { + "_id": "5b83f22086f77464e15a1d62", + "_tpl": "5b7d678a5acfc4001a5c4022", + "parentId": "5b83f22086f77464e15a1d61", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5b83f22086f77464e15a1d63", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "5b83f22086f77464e15a1d61", + "slotId": "mod_magazine" + }, + { + "_id": "5b83f22086f77464e15a1d64", + "_tpl": "5b7bed205acfc400161d08cc", + "parentId": "5b83f22086f77464e15a1d61", + "slotId": "mod_handguard" + }, + { + "_id": "5b83f22086f77464e15a1d65", + "_tpl": "5b7be1265acfc400161d0798", + "parentId": "5b83f22086f77464e15a1d61", + "slotId": "mod_barrel" + }, + { + "_id": "5b83f22086f77464e15a1d66", + "_tpl": "5b7d68af5acfc400170e30c3", + "parentId": "5b83f22086f77464e15a1d65", + "slotId": "mod_muzzle" + }, + { + "_id": "5b83f22086f77464e15a1d67", + "_tpl": "5b0bc22d5acfc47a8607f085", + "parentId": "5b83f22086f77464e15a1d61", + "slotId": "mod_sight_rear" + }, + { + "_id": "5b83f22086f77464e15a1d68", + "_tpl": "5b7d6c105acfc40015109a5f", + "parentId": "5b83f22086f77464e15a1d61", + "slotId": "mod_reciever" + }, + { + "_id": "5b83f22086f77464e15a1d69", + "_tpl": "5b7d645e5acfc400170e2f90", + "parentId": "5b83f22086f77464e15a1d61", + "slotId": "mod_stock" + } + ], + "_name": "Austrian_20_full_stock", + "_parent": "5b83f22086f77464e15a1d61", + "_type": "Preset" + }, + "5b83f23a86f7746d3d190a73": { + "_changeWeaponName": true, + "_id": "5b83f23a86f7746d3d190a73", + "_items": [ + { + "_id": "5b83f23a86f7746d3d190a7d", + "_tpl": "5b0bbe4e5acfc40dc528a72d" + }, + { + "_id": "5b83f23a86f7746d3d190a7e", + "_tpl": "5b7d678a5acfc4001a5c4022", + "parentId": "5b83f23a86f7746d3d190a7d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5b83f23a86f7746d3d190a7f", + "_tpl": "5b7bef5d5acfc43bca7067a3", + "parentId": "5b83f23a86f7746d3d190a7d", + "slotId": "mod_magazine" + }, + { + "_id": "5b83f23a86f7746d3d190a80", + "_tpl": "5b7d671b5acfc43d82528ddd", + "parentId": "5b83f23a86f7746d3d190a7d", + "slotId": "mod_handguard" + }, + { + "_id": "5b83f23a86f7746d3d190a81", + "_tpl": "5b7be1265acfc400161d0798", + "parentId": "5b83f23a86f7746d3d190a7d", + "slotId": "mod_barrel" + }, + { + "_id": "5b83f23a86f7746d3d190a82", + "_tpl": "5b7d68af5acfc400170e30c3", + "parentId": "5b83f23a86f7746d3d190a81", + "slotId": "mod_muzzle" + }, + { + "_id": "5b83f23a86f7746d3d190a83", + "_tpl": "5b0bc22d5acfc47a8607f085", + "parentId": "5b83f23a86f7746d3d190a7d", + "slotId": "mod_sight_rear" + }, + { + "_id": "5b83f23a86f7746d3d190a84", + "_tpl": "5b7d6c105acfc40015109a5f", + "parentId": "5b83f23a86f7746d3d190a7d", + "slotId": "mod_reciever" + }, + { + "_id": "5b83f23a86f7746d3d190a85", + "_tpl": "5b7d63cf5acfc4001876c8df", + "parentId": "5b83f23a86f7746d3d190a7d", + "slotId": "mod_stock" + } + ], + "_name": "Belgian_30_para_stock", + "_parent": "5b83f23a86f7746d3d190a7d", + "_type": "Preset" + }, + "5b83f29886f7746d956305a1": { + "_changeWeaponName": true, + "_id": "5b83f29886f7746d956305a1", + "_items": [ + { + "_id": "5b83f29886f7746d956305b0", + "_tpl": "5b0bbe4e5acfc40dc528a72d" + }, + { + "_id": "5b83f29886f7746d956305b1", + "_tpl": "5b7d679f5acfc4001a5c4024", + "parentId": "5b83f29886f7746d956305b0", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5b83f29886f7746d956305b2", + "_tpl": "5b7bef1e5acfc43d82528402", + "parentId": "5b83f29886f7746d956305b0", + "slotId": "mod_magazine" + }, + { + "_id": "5b83f29886f7746d956305b3", + "_tpl": "5b7bebc85acfc43bca706666", + "parentId": "5b83f29886f7746d956305b0", + "slotId": "mod_handguard" + }, + { + "_id": "5b83f29886f7746d956305b4", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "5b83f29886f7746d956305b3", + "slotId": "mod_mount_000" + }, + { + "_id": "5b83f29886f7746d956305b5", + "_tpl": "588226d124597767ad33f787", + "parentId": "5b83f29886f7746d956305b4", + "slotId": "mod_foregrip" + }, + { + "_id": "5b83f29886f7746d956305b6", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "5b83f29886f7746d956305b3", + "slotId": "mod_mount_001" + }, + { + "_id": "5b83f29886f7746d956305b7", + "_tpl": "5b7be1265acfc400161d0798", + "parentId": "5b83f29886f7746d956305b0", + "slotId": "mod_barrel" + }, + { + "_id": "5b83f29886f7746d956305b8", + "_tpl": "59bffc1f86f77435b128b872", + "parentId": "5b83f29886f7746d956305b7", + "slotId": "mod_muzzle" + }, + { + "_id": "5b83f29886f7746d956305b9", + "_tpl": "59bffbb386f77435b379b9c2", + "parentId": "5b83f29886f7746d956305b8", + "slotId": "mod_muzzle" + }, + { + "_id": "5b83f29886f7746d956305ba", + "_tpl": "5b0bc22d5acfc47a8607f085", + "parentId": "5b83f29886f7746d956305b0", + "slotId": "mod_sight_rear" + }, + { + "_id": "5b83f29886f7746d956305bb", + "_tpl": "5b099bb25acfc400186331e8", + "parentId": "5b83f29886f7746d956305b0", + "slotId": "mod_reciever" + }, + { + "_id": "5b83f29886f7746d956305bc", + "_tpl": "5b7d63b75acfc400170e2f8a", + "parentId": "5b83f29886f7746d956305b0", + "slotId": "mod_stock" + } + ], + "_name": "keymod_10_prs_stock", + "_parent": "5b83f29886f7746d956305b0", + "_type": "Preset" + }, + "5b8683a486f77467f2423114": { + "_changeWeaponName": false, + "_encyclopedia": "5ae08f0a5acfc408fb1398a1", + "_id": "5b8683a486f77467f2423114", + "_items": [ + { + "_id": "5bbf1d5988a45017b431dafb", + "_tpl": "5ae08f0a5acfc408fb1398a1" + }, + { + "_id": "5bbf1d5988a45017b431dafc", + "_tpl": "5ae0973a5acfc4001562206c", + "parentId": "5bbf1d5988a45017b431dafb", + "slotId": "mod_magazine" + }, + { + "_id": "5bbf1d5988a45017b431dafd", + "_tpl": "5ae096d95acfc400185c2c81", + "parentId": "5bbf1d5988a45017b431dafb", + "slotId": "mod_stock" + }, + { + "_id": "5bbf1d5988a45017b431dafe", + "_tpl": "5ae09bff5acfc4001562219d", + "parentId": "5bbf1d5988a45017b431dafb", + "slotId": "mod_barrel" + }, + { + "_id": "5bbf1d5988a45017b431daff", + "_tpl": "5ae099875acfc4001714e593", + "parentId": "5bbf1d5988a45017b431dafe", + "slotId": "mod_sight_front" + }, + { + "_id": "5bbf1d5988a45017b431db00", + "_tpl": "5ae099925acfc4001a5fc7b3", + "parentId": "5bbf1d5988a45017b431dafe", + "slotId": "mod_sight_rear" + } + ], + "_name": "mosin", + "_parent": "5bbf1d5988a45017b431dafb", + "_type": "Preset" + }, + "5ba3a078d4351e00334c96ca": { + "_changeWeaponName": true, + "_id": "5ba3a078d4351e00334c96ca", + "_items": [ + { + "_id": "5ba3a078d4351e00334c96cd", + "_tpl": "59d6088586f774275f37482f" + }, + { + "_id": "5ba3a078d4351e00334c96ce", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "5ba3a078d4351e00334c96cd", + "slotId": "mod_gas_block" + }, + { + "_id": "5ba3a078d4351e00334c96cf", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "5ba3a078d4351e00334c96ce", + "slotId": "mod_handguard" + }, + { + "_id": "5ba3a078d4351e00334c96d0", + "_tpl": "5a0d63621526d8dba31fe3bf", + "parentId": "5ba3a078d4351e00334c96cd", + "slotId": "mod_muzzle" + }, + { + "_id": "5ba3a078d4351e00334c96d1", + "_tpl": "59e62cc886f77440d40b52a1", + "parentId": "5ba3a078d4351e00334c96cd", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5ba3a078d4351e00334c96d2", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "5ba3a078d4351e00334c96cd", + "slotId": "mod_reciever" + }, + { + "_id": "5ba3a078d4351e00334c96d3", + "_tpl": "5a0eb980fcdbcb001a3b00a6", + "parentId": "5ba3a078d4351e00334c96cd", + "slotId": "mod_sight_rear" + }, + { + "_id": "5ba3a078d4351e00334c96d4", + "_tpl": "59d6514b86f774171a068a08", + "parentId": "5ba3a078d4351e00334c96cd", + "slotId": "mod_stock" + }, + { + "_id": "5ba3a078d4351e00334c96d5", + "_tpl": "59d625f086f774661516605d", + "parentId": "5ba3a078d4351e00334c96cd", + "slotId": "mod_magazine" + } + ], + "_name": "AKMB", + "_parent": "5ba3a078d4351e00334c96cd", + "_type": "Preset" + }, + "5ba3a14cd4351e003202017f": { + "_changeWeaponName": true, + "_id": "5ba3a14cd4351e003202017f", + "_items": [ + { + "_id": "5ba3a14cd4351e0032020181", + "_tpl": "59ff346386f77477562ff5e2" + }, + { + "_id": "5ba3a14cd4351e0032020182", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "5ba3a14cd4351e0032020181", + "slotId": "mod_gas_block" + }, + { + "_id": "5ba3a14cd4351e0032020183", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "5ba3a14cd4351e0032020182", + "slotId": "mod_handguard" + }, + { + "_id": "5ba3a14cd4351e0032020184", + "_tpl": "5a0d63621526d8dba31fe3bf", + "parentId": "5ba3a14cd4351e0032020181", + "slotId": "mod_muzzle" + }, + { + "_id": "5ba3a14cd4351e0032020185", + "_tpl": "5a0071d486f77404e23a12b2", + "parentId": "5ba3a14cd4351e0032020181", + "slotId": "mod_pistol_grip_akms" + }, + { + "_id": "5ba3a14cd4351e0032020186", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "5ba3a14cd4351e0032020181", + "slotId": "mod_reciever" + }, + { + "_id": "5ba3a14cd4351e0032020187", + "_tpl": "5a0eb980fcdbcb001a3b00a6", + "parentId": "5ba3a14cd4351e0032020181", + "slotId": "mod_sight_rear" + }, + { + "_id": "5ba3a14cd4351e0032020188", + "_tpl": "59ff3b6a86f77477562ff5ed", + "parentId": "5ba3a14cd4351e0032020181", + "slotId": "mod_stock_akms" + }, + { + "_id": "5ba3a14cd4351e0032020189", + "_tpl": "5a0060fc86f7745793204432", + "parentId": "5ba3a14cd4351e0032020181", + "slotId": "mod_magazine" + } + ], + "_name": "AKMSB", + "_parent": "5ba3a14cd4351e0032020181", + "_type": "Preset" + }, + "5ba3a3dfd4351e0032020190": { + "_changeWeaponName": true, + "_id": "5ba3a3dfd4351e0032020190", + "_items": [ + { + "_id": "5ba3a3dfd4351e0032020192", + "_tpl": "59d6088586f774275f37482f" + }, + { + "_id": "5ba3a3dfd4351e0032020193", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "5ba3a3dfd4351e0032020192", + "slotId": "mod_gas_block" + }, + { + "_id": "5ba3a3dfd4351e0032020194", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "5ba3a3dfd4351e0032020193", + "slotId": "mod_handguard" + }, + { + "_id": "5ba3a3dfd4351e0032020195", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "5ba3a3dfd4351e0032020192", + "slotId": "mod_muzzle" + }, + { + "_id": "5ba3a3dfd4351e0032020196", + "_tpl": "59e62cc886f77440d40b52a1", + "parentId": "5ba3a3dfd4351e0032020192", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5ba3a3dfd4351e0032020197", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "5ba3a3dfd4351e0032020192", + "slotId": "mod_reciever" + }, + { + "_id": "5ba3a3dfd4351e0032020198", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "5ba3a3dfd4351e0032020192", + "slotId": "mod_sight_rear" + }, + { + "_id": "5ba3a3dfd4351e0032020199", + "_tpl": "5a0ed824fcdbcb0176308b0d", + "parentId": "5ba3a3dfd4351e0032020198", + "slotId": "mod_sight_rear" + }, + { + "_id": "5ba3a3dfd4351e003202019a", + "_tpl": "59d6514b86f774171a068a08", + "parentId": "5ba3a3dfd4351e0032020192", + "slotId": "mod_stock" + }, + { + "_id": "5ba3a3dfd4351e003202019b", + "_tpl": "59d625f086f774661516605d", + "parentId": "5ba3a3dfd4351e0032020192", + "slotId": "mod_magazine" + }, + { + "_id": "5ba3a3dfd4351e003202019c", + "_tpl": "5a0f096dfcdbcb0176308b15", + "parentId": "5ba3a3dfd4351e0032020192", + "slotId": "mod_sight_front" + } + ], + "_name": "AKMP", + "_parent": "5ba3a3dfd4351e0032020192", + "_type": "Preset" + }, + "5ba3a449d4351e0034778243": { + "_changeWeaponName": true, + "_id": "5ba3a449d4351e0034778243", + "_items": [ + { + "_id": "5ba3a449d4351e0034778247", + "_tpl": "59ff346386f77477562ff5e2" + }, + { + "_id": "5ba3a449d4351e0034778248", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "5ba3a449d4351e0034778247", + "slotId": "mod_gas_block" + }, + { + "_id": "5ba3a449d4351e0034778249", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "5ba3a449d4351e0034778248", + "slotId": "mod_handguard" + }, + { + "_id": "5ba3a449d4351e003477824a", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "5ba3a449d4351e0034778247", + "slotId": "mod_muzzle" + }, + { + "_id": "5ba3a449d4351e003477824b", + "_tpl": "5a0071d486f77404e23a12b2", + "parentId": "5ba3a449d4351e0034778247", + "slotId": "mod_pistol_grip_akms" + }, + { + "_id": "5ba3a449d4351e003477824c", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "5ba3a449d4351e0034778247", + "slotId": "mod_reciever" + }, + { + "_id": "5ba3a449d4351e003477824d", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "5ba3a449d4351e0034778247", + "slotId": "mod_sight_rear" + }, + { + "_id": "5ba3a449d4351e003477824e", + "_tpl": "5a0ed824fcdbcb0176308b0d", + "parentId": "5ba3a449d4351e003477824d", + "slotId": "mod_sight_rear" + }, + { + "_id": "5ba3a449d4351e003477824f", + "_tpl": "59ff3b6a86f77477562ff5ed", + "parentId": "5ba3a449d4351e0034778247", + "slotId": "mod_stock_akms" + }, + { + "_id": "5ba3a449d4351e0034778250", + "_tpl": "5a0060fc86f7745793204432", + "parentId": "5ba3a449d4351e0034778247", + "slotId": "mod_magazine" + }, + { + "_id": "5ba3a449d4351e0034778251", + "_tpl": "5a0f096dfcdbcb0176308b15", + "parentId": "5ba3a449d4351e0034778247", + "slotId": "mod_sight_front" + } + ], + "_name": "AKMSP", + "_parent": "5ba3a449d4351e0034778247", + "_type": "Preset" + }, + "5ba3a4d1d4351e4502010622": { + "_changeWeaponName": true, + "_id": "5ba3a4d1d4351e4502010622", + "_items": [ + { + "_id": "5ba3a4d1d4351e4502010625", + "_tpl": "5a0ec13bfcdbcb00165aa685" + }, + { + "_id": "5ba3a4d1d4351e4502010626", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "5ba3a4d1d4351e4502010625", + "slotId": "mod_gas_block" + }, + { + "_id": "5ba3a4d1d4351e4502010627", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "5ba3a4d1d4351e4502010626", + "slotId": "mod_handguard" + }, + { + "_id": "5ba3a4d1d4351e4502010628", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "5ba3a4d1d4351e4502010625", + "slotId": "mod_muzzle" + }, + { + "_id": "5ba3a4d1d4351e4502010629", + "_tpl": "59e62cc886f77440d40b52a1", + "parentId": "5ba3a4d1d4351e4502010625", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5ba3a4d1d4351e450201062a", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "5ba3a4d1d4351e4502010625", + "slotId": "mod_reciever" + }, + { + "_id": "5ba3a4d1d4351e450201062b", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "5ba3a4d1d4351e4502010625", + "slotId": "mod_sight_rear" + }, + { + "_id": "5ba3a4d1d4351e450201062c", + "_tpl": "59d6514b86f774171a068a08", + "parentId": "5ba3a4d1d4351e4502010625", + "slotId": "mod_stock" + }, + { + "_id": "5ba3a4d1d4351e450201062d", + "_tpl": "59d625f086f774661516605d", + "parentId": "5ba3a4d1d4351e4502010625", + "slotId": "mod_magazine" + }, + { + "_id": "5ba3a4d1d4351e450201062e", + "_tpl": "5a7c74b3e899ef0014332c29", + "parentId": "5ba3a4d1d4351e4502010625", + "slotId": "mod_mount_000" + }, + { + "_id": "5ba3a4d1d4351e450201062f", + "_tpl": "5ba36f85d4351e0085325c81", + "parentId": "5ba3a4d1d4351e450201062e", + "slotId": "mod_tactical" + } + ], + "_name": "AKMN2", + "_parent": "5ba3a4d1d4351e4502010625", + "_type": "Preset" + }, + "5ba3a53dd4351e3bac12056e": { + "_changeWeaponName": true, + "_id": "5ba3a53dd4351e3bac12056e", + "_items": [ + { + "_id": "5ba3a53dd4351e3bac12057b", + "_tpl": "5abcbc27d8ce8700182eceeb" + }, + { + "_id": "5ba3a53dd4351e3bac12057c", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "5ba3a53dd4351e3bac12057b", + "slotId": "mod_gas_block" + }, + { + "_id": "5ba3a53dd4351e3bac12057d", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "5ba3a53dd4351e3bac12057c", + "slotId": "mod_handguard" + }, + { + "_id": "5ba3a53dd4351e3bac12057e", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "5ba3a53dd4351e3bac12057b", + "slotId": "mod_muzzle" + }, + { + "_id": "5ba3a53dd4351e3bac12057f", + "_tpl": "5a0071d486f77404e23a12b2", + "parentId": "5ba3a53dd4351e3bac12057b", + "slotId": "mod_pistol_grip_akms" + }, + { + "_id": "5ba3a53dd4351e3bac120580", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "5ba3a53dd4351e3bac12057b", + "slotId": "mod_reciever" + }, + { + "_id": "5ba3a53dd4351e3bac120581", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "5ba3a53dd4351e3bac12057b", + "slotId": "mod_sight_rear" + }, + { + "_id": "5ba3a53dd4351e3bac120582", + "_tpl": "5abcd472d8ce8700166032ae", + "parentId": "5ba3a53dd4351e3bac12057b", + "slotId": "mod_stock_akms" + }, + { + "_id": "5ba3a53dd4351e3bac120583", + "_tpl": "5a0060fc86f7745793204432", + "parentId": "5ba3a53dd4351e3bac12057b", + "slotId": "mod_magazine" + }, + { + "_id": "5ba3a53dd4351e3bac120584", + "_tpl": "5a7c74b3e899ef0014332c29", + "parentId": "5ba3a53dd4351e3bac12057b", + "slotId": "mod_mount_001" + }, + { + "_id": "5ba3a53dd4351e3bac120585", + "_tpl": "5ba36f85d4351e0085325c81", + "parentId": "5ba3a53dd4351e3bac120584", + "slotId": "mod_tactical" + } + ], + "_name": "AKMSN2", + "_parent": "5ba3a53dd4351e3bac12057b", + "_type": "Preset" + }, + "5bbf1c1c88a45017144d28c5": { + "_changeWeaponName": true, + "_id": "5bbf1c1c88a45017144d28c5", + "_items": [ + { + "_id": "5bbf1c1c88a45017144d28d1", + "_tpl": "5ac4cd105acfc40016339859" + }, + { + "_id": "5bbf1c1c88a45017144d28d2", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "5bbf1c1c88a45017144d28d1", + "slotId": "mod_gas_block" + }, + { + "_id": "5bbf1c1c88a45017144d28d3", + "_tpl": "5648b4534bdc2d3d1c8b4580", + "parentId": "5bbf1c1c88a45017144d28d2", + "slotId": "mod_handguard" + }, + { + "_id": "5bbf1c1c88a45017144d28d4", + "_tpl": "5649ab884bdc2ded0b8b457f", + "parentId": "5bbf1c1c88a45017144d28d1", + "slotId": "mod_muzzle" + }, + { + "_id": "5bbf1c1c88a45017144d28d5", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "parentId": "5bbf1c1c88a45017144d28d1", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5bbf1c1c88a45017144d28d6", + "_tpl": "5649af884bdc2d1b2b8b4589", + "parentId": "5bbf1c1c88a45017144d28d1", + "slotId": "mod_reciever" + }, + { + "_id": "5bbf1c1c88a45017144d28d7", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "5bbf1c1c88a45017144d28d1", + "slotId": "mod_sight_rear" + }, + { + "_id": "5bbf1c1c88a45017144d28d8", + "_tpl": "5ac78eaf5acfc4001926317a", + "parentId": "5bbf1c1c88a45017144d28d1", + "slotId": "mod_stock" + }, + { + "_id": "5bbf1c1c88a45017144d28d9", + "_tpl": "59ecc3dd86f7746dc827481c", + "parentId": "5bbf1c1c88a45017144d28d8", + "slotId": "mod_stock" + }, + { + "_id": "5bbf1c1c88a45017144d28da", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "5bbf1c1c88a45017144d28d1", + "slotId": "mod_charge" + } + ], + "_name": "AK74M_zenitco", + "_parent": "5bbf1c1c88a45017144d28d1", + "_type": "Preset" + }, + "5bbf1c5a88a45017bb03d7aa": { + "_changeWeaponName": true, + "_id": "5bbf1c5a88a45017bb03d7aa", + "_items": [ + { + "_id": "5bbf1cf988a45017d47b827a", + "_tpl": "5447a9cd4bdc2dbd208b4567" + }, + { + "_id": "5bbf1cf988a45017d47b827b", + "_tpl": "57c55efc2459772d2c6271e7", + "parentId": "5bbf1cf988a45017d47b827a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5bbf1cf988a45017d47b827c", + "_tpl": "59bfe68886f7746004266202", + "parentId": "5bbf1cf988a45017d47b827a", + "slotId": "mod_reciever" + }, + { + "_id": "5bbf1cf988a45017d47b827d", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "5bbf1cf988a45017d47b827c", + "slotId": "mod_barrel" + }, + { + "_id": "5bbf1cf988a45017d47b827e", + "_tpl": "56ea8180d2720bf2698b456a", + "parentId": "5bbf1cf988a45017d47b827d", + "slotId": "mod_muzzle" + }, + { + "_id": "5bbf1cf988a45017d47b827f", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "5bbf1cf988a45017d47b827d", + "slotId": "mod_gas_block" + }, + { + "_id": "5bbf1cf988a45017d47b8280", + "_tpl": "595cfa8b86f77427437e845b", + "parentId": "5bbf1cf988a45017d47b827c", + "slotId": "mod_handguard" + }, + { + "_id": "5bbf1cf988a45017d47b8281", + "_tpl": "59e0bed186f774156f04ce84", + "parentId": "5bbf1cf988a45017d47b8280", + "slotId": "mod_mount_000" + }, + { + "_id": "5bbf1cf988a45017d47b8282", + "_tpl": "59e0be5d86f7742d48765bd2", + "parentId": "5bbf1cf988a45017d47b8280", + "slotId": "mod_mount_002" + }, + { + "_id": "5bbf1cf988a45017d47b8283", + "_tpl": "59e0bdb186f774156f04ce82", + "parentId": "5bbf1cf988a45017d47b8280", + "slotId": "mod_mount_003" + }, + { + "_id": "5bbf1cf988a45017d47b8284", + "_tpl": "59e0bdb186f774156f04ce82", + "parentId": "5bbf1cf988a45017d47b8280", + "slotId": "mod_mount_004" + }, + { + "_id": "5bbf1cf988a45017d47b8285", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "5bbf1cf988a45017d47b827a", + "slotId": "mod_stock" + }, + { + "_id": "5bbf1cf988a45017d47b8286", + "_tpl": "5b39f8db5acfc40016387a1b", + "parentId": "5bbf1cf988a45017d47b8285", + "slotId": "mod_stock_000" + }, + { + "_id": "5bbf1cf988a45017d47b8287", + "_tpl": "5b2240bf5acfc40dc528af69", + "parentId": "5bbf1cf988a45017d47b827a", + "slotId": "mod_charge" + } + ], + "_name": "M4A1_LVOA", + "_parent": "5bbf1cf988a45017d47b827a", + "_type": "Preset" + }, + "5bd056fa86f7743aba7658cd": { + "_changeWeaponName": false, + "_encyclopedia": "5ba26383d4351e00334c93d9", + "_id": "5bd056fa86f7743aba7658cd", + "_items": [ + { + "_id": "5bd056fa86f7743aba7658d2", + "_tpl": "5ba26383d4351e00334c93d9" + }, + { + "_id": "5bd056fa86f7743aba7658d3", + "_tpl": "5ba264f6d4351e0034777d52", + "parentId": "5bd056fa86f7743aba7658d2", + "slotId": "mod_magazine" + }, + { + "_id": "5bd056fa86f7743aba7658d4", + "_tpl": "5ba26acdd4351e003562908e", + "parentId": "5bd056fa86f7743aba7658d2", + "slotId": "mod_muzzle" + }, + { + "_id": "5bd056fa86f7743aba7658d5", + "_tpl": "5ba26b01d4351e0085325a51", + "parentId": "5bd056fa86f7743aba7658d2", + "slotId": "mod_sight_front" + }, + { + "_id": "5bd056fa86f7743aba7658d6", + "_tpl": "5ba26b17d4351e00367f9bdd", + "parentId": "5bd056fa86f7743aba7658d2", + "slotId": "mod_sight_rear" + }, + { + "_id": "5bd056fa86f7743aba7658d7", + "_tpl": "5bcf0213d4351e0085327c17", + "parentId": "5bd056fa86f7743aba7658d2", + "slotId": "mod_stock" + } + ], + "_name": "MP7_default", + "_parent": "5bd056fa86f7743aba7658d2", + "_type": "Preset" + }, + "5bd05f1186f774572f181678": { + "_changeWeaponName": true, + "_id": "5bd05f1186f774572f181678", + "_items": [ + { + "_id": "5bd05f1186f774572f181683", + "_tpl": "5ba26383d4351e00334c93d9" + }, + { + "_id": "5bd05f1186f774572f181684", + "_tpl": "5ba26586d4351e44f824b340", + "parentId": "5bd05f1186f774572f181683", + "slotId": "mod_magazine" + }, + { + "_id": "5bd05f1186f774572f181685", + "_tpl": "5ba26acdd4351e003562908e", + "parentId": "5bd05f1186f774572f181683", + "slotId": "mod_muzzle" + }, + { + "_id": "5bd05f1186f774572f181686", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "parentId": "5bd05f1186f774572f181685", + "slotId": "mod_muzzle" + }, + { + "_id": "5bd05f1186f774572f181687", + "_tpl": "58d39d3d86f77445bb794ae7", + "parentId": "5bd05f1186f774572f181683", + "slotId": "mod_scope" + }, + { + "_id": "5bd05f1186f774572f181688", + "_tpl": "58d39b0386f77443380bf13c", + "parentId": "5bd05f1186f774572f181687", + "slotId": "mod_scope" + }, + { + "_id": "5bd05f1186f774572f181689", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "5bd05f1186f774572f181688", + "slotId": "mod_scope" + }, + { + "_id": "5bd05f1186f774572f18168a", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "5bd05f1186f774572f181683", + "slotId": "mod_tactical_000" + }, + { + "_id": "5bd05f1186f774572f18168b", + "_tpl": "57d17e212459775a1179a0f5", + "parentId": "5bd05f1186f774572f181683", + "slotId": "mod_tactical_002" + }, + { + "_id": "5bd05f1186f774572f18168c", + "_tpl": "57d17c5e2459775a5c57d17d", + "parentId": "5bd05f1186f774572f18168b", + "slotId": "mod_flashlight" + }, + { + "_id": "5bd05f1186f774572f18168d", + "_tpl": "5bcf0213d4351e0085327c17", + "parentId": "5bd05f1186f774572f181683", + "slotId": "mod_stock" + } + ], + "_name": "MP7_DEVGRU", + "_parent": "5bd05f1186f774572f181683", + "_type": "Preset" + }, + "5bdb3ac186f77405f232ad22": { + "_changeWeaponName": false, + "_encyclopedia": "5bd70322209c4d00d7167b8f", + "_id": "5bdb3ac186f77405f232ad22", + "_items": [ + { + "_id": "5bdb3ac186f77405f232ad29", + "_tpl": "5bd70322209c4d00d7167b8f" + }, + { + "_id": "5bdb3ac186f77405f232ad2a", + "_tpl": "5ba264f6d4351e0034777d52", + "parentId": "5bdb3ac186f77405f232ad29", + "slotId": "mod_magazine" + }, + { + "_id": "5bdb3ac186f77405f232ad2b", + "_tpl": "5ba26acdd4351e003562908e", + "parentId": "5bdb3ac186f77405f232ad29", + "slotId": "mod_muzzle" + }, + { + "_id": "5bdb3ac186f77405f232ad2c", + "_tpl": "5ba26b01d4351e0085325a51", + "parentId": "5bdb3ac186f77405f232ad29", + "slotId": "mod_sight_front" + }, + { + "_id": "5bdb3ac186f77405f232ad2d", + "_tpl": "5ba26b17d4351e00367f9bdd", + "parentId": "5bdb3ac186f77405f232ad29", + "slotId": "mod_sight_rear" + }, + { + "_id": "5bdb3ac186f77405f232ad2e", + "_tpl": "5bd704e7209c4d00d7167c31", + "parentId": "5bdb3ac186f77405f232ad29", + "slotId": "mod_stock" + } + ], + "_name": "MP7A2_def", + "_parent": "5bdb3ac186f77405f232ad29", + "_type": "Preset" + }, + "5c0c1ce886f77401c119d014": { + "_changeWeaponName": false, + "_encyclopedia": "5bf3e03b0db834001d2c4a9c", + "_id": "5c0c1ce886f77401c119d014", + "_items": [ + { + "_id": "5c0c1ce886f77401c119d015", + "_tpl": "5bf3e03b0db834001d2c4a9c", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c0c1ce886f77401c119d016", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "5c0c1ce886f77401c119d015", + "slotId": "mod_gas_block" + }, + { + "_id": "5c0c1ce886f77401c119d017", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "5c0c1ce886f77401c119d016", + "slotId": "mod_handguard" + }, + { + "_id": "5c0c1ce886f77401c119d018", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "5c0c1ce886f77401c119d015", + "slotId": "mod_muzzle" + }, + { + "_id": "5c0c1ce886f77401c119d019", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "5c0c1ce886f77401c119d015", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5c0c1ce886f77401c119d01a", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "5c0c1ce886f77401c119d015", + "slotId": "mod_reciever" + }, + { + "_id": "5c0c1ce886f77401c119d01b", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "5c0c1ce886f77401c119d015", + "slotId": "mod_sight_rear" + }, + { + "_id": "5c0c1ce886f77401c119d01c", + "_tpl": "5649b1c04bdc2d16268b457c", + "parentId": "5c0c1ce886f77401c119d015", + "slotId": "mod_stock" + }, + { + "_id": "5c0c1ce886f77401c119d01d", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "5c0c1ce886f77401c119d015", + "slotId": "mod_magazine" + } + ], + "_name": "AK74_default", + "_parent": "5c0c1ce886f77401c119d015", + "_type": "Preset" + }, + "5c0c1d2b86f77401c119d01f": { + "_changeWeaponName": false, + "_encyclopedia": "5bf3e0490db83400196199af", + "_id": "5c0c1d2b86f77401c119d01f", + "_items": [ + { + "_id": "5c0c1d2b86f77401c119d020", + "_tpl": "5bf3e0490db83400196199af", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "5c0c1d2b86f77401c119d021", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "5c0c1d2b86f77401c119d020", + "slotId": "mod_gas_block" + }, + { + "_id": "5c0c1d2b86f77401c119d022", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "5c0c1d2b86f77401c119d021", + "slotId": "mod_handguard" + }, + { + "_id": "5c0c1d2b86f77401c119d023", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "5c0c1d2b86f77401c119d020", + "slotId": "mod_muzzle" + }, + { + "_id": "5c0c1d2b86f77401c119d024", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "5c0c1d2b86f77401c119d020", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5c0c1d2b86f77401c119d025", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "5c0c1d2b86f77401c119d020", + "slotId": "mod_reciever" + }, + { + "_id": "5c0c1d2b86f77401c119d026", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "5c0c1d2b86f77401c119d020", + "slotId": "mod_sight_rear" + }, + { + "_id": "5c0c1d2b86f77401c119d027", + "_tpl": "5ab626e4d8ce87272e4c6e43", + "parentId": "5c0c1d2b86f77401c119d020", + "slotId": "mod_stock" + }, + { + "_id": "5c0c1d2b86f77401c119d028", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "5c0c1d2b86f77401c119d020", + "slotId": "mod_magazine" + } + ], + "_name": "AKS74 default", + "_parent": "5c0c1d2b86f77401c119d020", + "_type": "Preset" + }, + "5c0c1d6586f7743e5335d264": { + "_changeWeaponName": false, + "_encyclopedia": "5bfea6e90db834001b7347f3", + "_id": "5c0c1d6586f7743e5335d264", + "_items": [ + { + "_id": "5c0c1d6586f7743e5335d269", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c0c1d6586f7743e5335d26a", + "_tpl": "5bfea7ad0db834001c38f1ee", + "parentId": "5c0c1d6586f7743e5335d269", + "slotId": "mod_magazine" + }, + { + "_id": "5c0c1d6586f7743e5335d26b", + "_tpl": "5bfeb32b0db834001a6694d9", + "parentId": "5c0c1d6586f7743e5335d269", + "slotId": "mod_stock" + }, + { + "_id": "5c0c1d6586f7743e5335d26c", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "5c0c1d6586f7743e5335d269", + "slotId": "mod_barrel" + } + ], + "_name": "rem700 default", + "_parent": "5c0c1d6586f7743e5335d269", + "_type": "Preset" + }, + "5c0c1dba86f7743e667da897": { + "_changeWeaponName": true, + "_id": "5c0c1dba86f7743e667da897", + "_items": [ + { + "_id": "5c0c1dba86f7743e667da89d", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c0c1dba86f7743e667da89e", + "_tpl": "5bfea7ad0db834001c38f1ee", + "parentId": "5c0c1dba86f7743e667da89d", + "slotId": "mod_magazine" + }, + { + "_id": "5c0c1dba86f7743e667da89f", + "_tpl": "5bfeb32b0db834001a6694d9", + "parentId": "5c0c1dba86f7743e667da89d", + "slotId": "mod_stock" + }, + { + "_id": "5c0c1dba86f7743e667da8a0", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "5c0c1dba86f7743e667da89d", + "slotId": "mod_barrel" + }, + { + "_id": "5c0c1dba86f7743e667da8a1", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "parentId": "5c0c1dba86f7743e667da8a0", + "slotId": "mod_muzzle" + }, + { + "_id": "5c0c1dba86f7743e667da8a2", + "_tpl": "5a34fe59c4a282000b1521a2", + "parentId": "5c0c1dba86f7743e667da8a1", + "slotId": "mod_muzzle" + }, + { + "_id": "5c0c1dba86f7743e667da8a3", + "_tpl": "5bfebc5e0db834001a6694e5", + "parentId": "5c0c1dba86f7743e667da89d", + "slotId": "mod_mount" + }, + { + "_id": "5c0c1dba86f7743e667da8a4", + "_tpl": "5a37cb10c4a282329a73b4e7", + "parentId": "5c0c1dba86f7743e667da8a3", + "slotId": "mod_scope" + } + ], + "_name": "rem700 AAC SD", + "_parent": "5c0c1dba86f7743e667da89d", + "_type": "Preset" + }, + "5c0c1dff86f7744dba7a2892": { + "_changeWeaponName": true, + "_id": "5c0c1dff86f7744dba7a2892", + "_items": [ + { + "_id": "5c0c1dff86f7744dba7a2894", + "_tpl": "5bfd297f0db834001a669119", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c0c1dff86f7744dba7a2895", + "_tpl": "5ae0973a5acfc4001562206c", + "parentId": "5c0c1dff86f7744dba7a2894", + "slotId": "mod_magazine" + }, + { + "_id": "5c0c1dff86f7744dba7a2896", + "_tpl": "5bfd384c0db834001a6691d3", + "parentId": "5c0c1dff86f7744dba7a2894", + "slotId": "mod_stock" + }, + { + "_id": "5c0c1dff86f7744dba7a2897", + "_tpl": "5bfd4cbe0db834001b73449f", + "parentId": "5c0c1dff86f7744dba7a2894", + "slotId": "mod_barrel" + }, + { + "_id": "5c0c1dff86f7744dba7a2898", + "_tpl": "5ae099875acfc4001714e593", + "parentId": "5c0c1dff86f7744dba7a2897", + "slotId": "mod_sight_front" + }, + { + "_id": "5c0c1dff86f7744dba7a2899", + "_tpl": "5bfd4c980db834001b73449d", + "parentId": "5c0c1dff86f7744dba7a2897", + "slotId": "mod_sight_rear" + } + ], + "_name": "mosin infantry carbine", + "_parent": "5c0c1dff86f7744dba7a2894", + "_type": "Preset" + }, + "5c0c1e7486f7744dba7a289b": { + "_changeWeaponName": false, + "_encyclopedia": "5bfd297f0db834001a669119", + "_id": "5c0c1e7486f7744dba7a289b", + "_items": [ + { + "_id": "5c0c1e7486f7744dba7a289c", + "_tpl": "5bfd297f0db834001a669119", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c0c1e7486f7744dba7a289d", + "_tpl": "5ae0973a5acfc4001562206c", + "parentId": "5c0c1e7486f7744dba7a289c", + "slotId": "mod_magazine" + }, + { + "_id": "5c0c1e7486f7744dba7a289e", + "_tpl": "5bfd35380db83400232fe5cc", + "parentId": "5c0c1e7486f7744dba7a289c", + "slotId": "mod_stock" + }, + { + "_id": "5c0c1e7486f7744dba7a289f", + "_tpl": "5ae09bff5acfc4001562219d", + "parentId": "5c0c1e7486f7744dba7a289c", + "slotId": "mod_barrel" + }, + { + "_id": "5c0c1e7486f7744dba7a28a0", + "_tpl": "5ae099875acfc4001714e593", + "parentId": "5c0c1e7486f7744dba7a289f", + "slotId": "mod_sight_front" + }, + { + "_id": "5c0c1e7486f7744dba7a28a1", + "_tpl": "5ae099925acfc4001a5fc7b3", + "parentId": "5c0c1e7486f7744dba7a289f", + "slotId": "mod_sight_rear" + } + ], + "_name": "mosin infantry rifle", + "_parent": "5c0c1e7486f7744dba7a289c", + "_type": "Preset" + }, + "5c0c1f2b86f77455912eaefc": { + "_changeWeaponName": true, + "_id": "5c0c1f2b86f77455912eaefc", + "_items": [ + { + "_id": "5c0c1f2b86f77455912eaefe", + "_tpl": "5ae08f0a5acfc408fb1398a1", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c0c1f2b86f77455912eaeff", + "_tpl": "5ae0973a5acfc4001562206c", + "parentId": "5c0c1f2b86f77455912eaefe", + "slotId": "mod_magazine" + }, + { + "_id": "5c0c1f2b86f77455912eaf00", + "_tpl": "5bfd37c80db834001d23e842", + "parentId": "5c0c1f2b86f77455912eaefe", + "slotId": "mod_stock" + }, + { + "_id": "5c0c1f2b86f77455912eaf01", + "_tpl": "5bfd4cbe0db834001b73449f", + "parentId": "5c0c1f2b86f77455912eaefe", + "slotId": "mod_barrel" + }, + { + "_id": "5c0c1f2b86f77455912eaf02", + "_tpl": "5ae099875acfc4001714e593", + "parentId": "5c0c1f2b86f77455912eaf01", + "slotId": "mod_sight_front" + }, + { + "_id": "5c0c1f2b86f77455912eaf03", + "_tpl": "5bfd4c980db834001b73449d", + "parentId": "5c0c1f2b86f77455912eaf01", + "slotId": "mod_sight_rear" + }, + { + "_id": "5c0c1f2b86f77455912eaf04", + "_tpl": "5b3f7bf05acfc433000ecf6b", + "parentId": "5c0c1f2b86f77455912eaefe", + "slotId": "mod_mount" + }, + { + "_id": "5c0c1f2b86f77455912eaf05", + "_tpl": "5b3f7c005acfc4704b4a1de8", + "parentId": "5c0c1f2b86f77455912eaf04", + "slotId": "mod_mount" + }, + { + "_id": "5c0c1f2b86f77455912eaf06", + "_tpl": "5b3f7c1c5acfc40dc5296b1d", + "parentId": "5c0c1f2b86f77455912eaf05", + "slotId": "mod_scope" + } + ], + "_name": "mosin sniper carbine", + "_parent": "5c0c1f2b86f77455912eaefe", + "_type": "Preset" + }, + "5c0c1fc586f77455912eaf08": { + "_changeWeaponName": true, + "_id": "5c0c1fc586f77455912eaf08", + "_items": [ + { + "_id": "5c0c1fc586f77455912eaf0a", + "_tpl": "5bfd297f0db834001a669119", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c0c1fc586f77455912eaf0b", + "_tpl": "5ae0973a5acfc4001562206c", + "parentId": "5c0c1fc586f77455912eaf0a", + "slotId": "mod_magazine" + }, + { + "_id": "5c0c1fc586f77455912eaf0c", + "_tpl": "5bfd36ad0db834001c38ef66", + "parentId": "5c0c1fc586f77455912eaf0a", + "slotId": "mod_stock" + }, + { + "_id": "5c0c1fc586f77455912eaf0d", + "_tpl": "5bfd4cc90db834001d23e846", + "parentId": "5c0c1fc586f77455912eaf0a", + "slotId": "mod_barrel" + } + ], + "_name": "mosin infantry obrez", + "_parent": "5c0c1fc586f77455912eaf0a", + "_type": "Preset" + }, + "5c0c202e86f77448687e0368": { + "_changeWeaponName": true, + "_id": "5c0c202e86f77448687e0368", + "_items": [ + { + "_id": "5c0c202e86f77448687e036a", + "_tpl": "5ae08f0a5acfc408fb1398a1", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c0c202e86f77448687e036b", + "_tpl": "5ae0973a5acfc4001562206c", + "parentId": "5c0c202e86f77448687e036a", + "slotId": "mod_magazine" + }, + { + "_id": "5c0c202e86f77448687e036c", + "_tpl": "5bfd36290db834001966869a", + "parentId": "5c0c202e86f77448687e036a", + "slotId": "mod_stock" + }, + { + "_id": "5c0c202e86f77448687e036d", + "_tpl": "5bfd4cd60db834001c38f095", + "parentId": "5c0c202e86f77448687e036a", + "slotId": "mod_barrel" + }, + { + "_id": "5c0c202e86f77448687e036e", + "_tpl": "5bfd4c980db834001b73449d", + "parentId": "5c0c202e86f77448687e036d", + "slotId": "mod_sight_rear" + } + ], + "_name": "mosin sniper obrez", + "_parent": "5c0c202e86f77448687e036a", + "_type": "Preset" + }, + "5c0c208886f7743e5335d279": { + "_changeWeaponName": true, + "_id": "5c0c208886f7743e5335d279", + "_items": [ + { + "_id": "5c0c208886f7743e5335d280", + "_tpl": "5ae08f0a5acfc408fb1398a1", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c0c208886f7743e5335d281", + "_tpl": "5ae0973a5acfc4001562206c", + "parentId": "5c0c208886f7743e5335d280", + "slotId": "mod_magazine" + }, + { + "_id": "5c0c208886f7743e5335d282", + "_tpl": "5bfd36290db834001966869a", + "parentId": "5c0c208886f7743e5335d280", + "slotId": "mod_stock" + }, + { + "_id": "5c0c208886f7743e5335d283", + "_tpl": "5bfd4cd60db834001c38f095", + "parentId": "5c0c208886f7743e5335d280", + "slotId": "mod_barrel" + }, + { + "_id": "5c0c208886f7743e5335d284", + "_tpl": "5bbdb811d4351e45020113c7", + "parentId": "5c0c208886f7743e5335d283", + "slotId": "mod_sight_rear" + } + ], + "_name": "mosin sniper obrez m", + "_parent": "5c0c208886f7743e5335d280", + "_type": "Preset" + }, + "5c0d1e9386f77440120288b7": { + "_changeWeaponName": false, + "_encyclopedia": "5bb2475ed4351e00853264e3", + "_id": "5c0d1e9386f77440120288b7", + "_items": [ + { + "_id": "5c0d1e9386f77440120288c4", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c0d1e9386f77440120288c5", + "_tpl": "5bb20e0ed4351e3bac1212dc", + "parentId": "5c0d1e9386f77440120288c4", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5c0d1e9386f77440120288c6", + "_tpl": "5c05413a0db834001c390617", + "parentId": "5c0d1e9386f77440120288c4", + "slotId": "mod_magazine" + }, + { + "_id": "5c0d1e9386f77440120288c7", + "_tpl": "5bb20d53d4351e4502010a69", + "parentId": "5c0d1e9386f77440120288c4", + "slotId": "mod_reciever" + }, + { + "_id": "5c0d1e9386f77440120288c8", + "_tpl": "5bb20d9cd4351e00334c9d8a", + "parentId": "5c0d1e9386f77440120288c7", + "slotId": "mod_barrel" + }, + { + "_id": "5c0d1e9386f77440120288c9", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "5c0d1e9386f77440120288c8", + "slotId": "mod_muzzle" + }, + { + "_id": "5c0d1e9386f77440120288ca", + "_tpl": "5bb20dcad4351e3bac1212da", + "parentId": "5c0d1e9386f77440120288c8", + "slotId": "mod_gas_block" + }, + { + "_id": "5c0d1e9386f77440120288cb", + "_tpl": "5bb20de5d4351e0035629e59", + "parentId": "5c0d1e9386f77440120288c7", + "slotId": "mod_handguard" + }, + { + "_id": "5c0d1e9386f77440120288cc", + "_tpl": "5bb20e49d4351e3bac1212de", + "parentId": "5c0d1e9386f77440120288c7", + "slotId": "mod_sight_rear" + }, + { + "_id": "5c0d1e9386f77440120288cd", + "_tpl": "5bb20e58d4351e00320205d7", + "parentId": "5c0d1e9386f77440120288c4", + "slotId": "mod_stock" + }, + { + "_id": "5c0d1e9386f77440120288ce", + "_tpl": "5bb20e70d4351e0035629f8f", + "parentId": "5c0d1e9386f77440120288cd", + "slotId": "mod_stock_000" + }, + { + "_id": "5c0d1e9386f77440120288cf", + "_tpl": "5bb20dbcd4351e44f824c04e", + "parentId": "5c0d1e9386f77440120288c4", + "slotId": "mod_charge" + } + ], + "_name": "HK416 default", + "_parent": "5c0d1e9386f77440120288c4", + "_type": "Preset" + }, + "5c0d1ec986f77439512a1a72": { + "_changeWeaponName": false, + "_encyclopedia": "5beed0f50db834001c062b12", + "_id": "5c0d1ec986f77439512a1a72", + "_items": [ + { + "_id": "5c0d1ec986f77439512a1a80", + "_tpl": "5beed0f50db834001c062b12", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "5c0d1ec986f77439512a1a81", + "_tpl": "5beec8ea0db834001a6f9dbf", + "parentId": "5c0d1ec986f77439512a1a80", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5c0d1ec986f77439512a1a82", + "_tpl": "5beec91a0db834001961942d", + "parentId": "5c0d1ec986f77439512a1a80", + "slotId": "mod_reciever" + }, + { + "_id": "5c0d1ec986f77439512a1a83", + "_tpl": "5beec9450db83400970084fd", + "parentId": "5c0d1ec986f77439512a1a82", + "slotId": "mod_sight_rear" + }, + { + "_id": "5c0d1ec986f77439512a1a84", + "_tpl": "5bf3f59f0db834001a6fa060", + "parentId": "5c0d1ec986f77439512a1a83", + "slotId": "mod_sight_rear" + }, + { + "_id": "5c0d1ec986f77439512a1a85", + "_tpl": "5beec8b20db834001961942a", + "parentId": "5c0d1ec986f77439512a1a80", + "slotId": "mod_stock_001" + }, + { + "_id": "5c0d1ec986f77439512a1a86", + "_tpl": "5beec8c20db834001d2c465c", + "parentId": "5c0d1ec986f77439512a1a85", + "slotId": "mod_stock" + }, + { + "_id": "5c0d1ec986f77439512a1a87", + "_tpl": "5beec3e30db8340019619424", + "parentId": "5c0d1ec986f77439512a1a80", + "slotId": "mod_handguard" + }, + { + "_id": "5c0d1ec986f77439512a1a88", + "_tpl": "5beecbb80db834001d2c465e", + "parentId": "5c0d1ec986f77439512a1a87", + "slotId": "mod_mount_000" + }, + { + "_id": "5c0d1ec986f77439512a1a89", + "_tpl": "5beecbb80db834001d2c465e", + "parentId": "5c0d1ec986f77439512a1a87", + "slotId": "mod_mount_001" + }, + { + "_id": "5c0d1ec986f77439512a1a8a", + "_tpl": "5beec1bd0db834001e6006f3", + "parentId": "5c0d1ec986f77439512a1a80", + "slotId": "mod_barrel" + }, + { + "_id": "5c0d1ec986f77439512a1a8b", + "_tpl": "5beec3420db834001b095429", + "parentId": "5c0d1ec986f77439512a1a8a", + "slotId": "mod_muzzle" + } + ], + "_name": "RPK16 nomag", + "_parent": "5c0d1ec986f77439512a1a80", + "_type": "Preset" + }, + "5c0e93cb86f77432297fdfc8": { + "_changeWeaponName": true, + "_id": "5c0e93cb86f77432297fdfc8", + "_items": [ + { + "_id": "5c0e93cb86f77432297fdfd0", + "_tpl": "571a12c42459771f627b58a0", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c0e93cb86f77432297fdfd1", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "5c0e93cb86f77432297fdfd0", + "slotId": "mod_barrel" + }, + { + "_id": "5c0e93cb86f77432297fdfd2", + "_tpl": "5c079ec50db834001966a706", + "parentId": "5c0e93cb86f77432297fdfd0", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5c0e93cb86f77432297fdfd3", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "5c0e93cb86f77432297fdfd0", + "slotId": "mod_magazine" + }, + { + "_id": "5c0e93cb86f77432297fdfd4", + "_tpl": "5bffd7ed0db834001d23ebf9", + "parentId": "5c0e93cb86f77432297fdfd0", + "slotId": "mod_muzzle" + }, + { + "_id": "5c0e93cb86f77432297fdfd5", + "_tpl": "5c079ed60db834001a66b372", + "parentId": "5c0e93cb86f77432297fdfd0", + "slotId": "mod_tactical" + } + ], + "_name": "TT brunner", + "_parent": "5c0e93cb86f77432297fdfd0", + "_type": "Preset" + }, + "5c10fcb186f774533e5529ab": { + "_changeWeaponName": false, + "_encyclopedia": "5c07c60e0db834002330051f", + "_id": "5c10fcb186f774533e5529ab", + "_items": [ + { + "_id": "61a9f8bd6bf73d5c697b3c44", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "61a9f8bd6bf73d5c697b3c45", + "_tpl": "5c0e2ff6d174af02a1659d4a", + "parentId": "61a9f8bd6bf73d5c697b3c44", + "slotId": "mod_pistol_grip" + }, + { + "_id": "61a9f8bd6bf73d5c697b3c46", + "_tpl": "5aaa5e60e5b5b000140293d6", + "parentId": "61a9f8bd6bf73d5c697b3c44", + "slotId": "mod_magazine" + }, + { + "_id": "61a9f8bd6bf73d5c697b3c47", + "_tpl": "5c0e2f26d174af02a9625114", + "parentId": "61a9f8bd6bf73d5c697b3c44", + "slotId": "mod_reciever" + }, + { + "_id": "61a9f8bd6bf73d5c697b3c48", + "_tpl": "5c0e2f94d174af029f650d56", + "parentId": "61a9f8bd6bf73d5c697b3c47", + "slotId": "mod_barrel" + }, + { + "_id": "61a9f8bd6bf73d5c697b3c49", + "_tpl": "5c0fafb6d174af02a96260ba", + "parentId": "61a9f8bd6bf73d5c697b3c48", + "slotId": "mod_muzzle" + }, + { + "_id": "61a9f8bd6bf73d5c697b3c4a", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "61a9f8bd6bf73d5c697b3c48", + "slotId": "mod_gas_block" + }, + { + "_id": "61a9f8bd6bf73d5c697b3c4b", + "_tpl": "5c0e2f5cd174af02a012cfc9", + "parentId": "61a9f8bd6bf73d5c697b3c47", + "slotId": "mod_handguard" + }, + { + "_id": "61a9f8bd6bf73d5c697b3c4c", + "_tpl": "5c0faeddd174af02a962601f", + "parentId": "61a9f8bd6bf73d5c697b3c44", + "slotId": "mod_stock" + }, + { + "_id": "61a9f8bd6bf73d5c697b3c4d", + "_tpl": "5c0faf68d174af02a96260b8", + "parentId": "61a9f8bd6bf73d5c697b3c44", + "slotId": "mod_charge" + } + ], + "_name": "ADAR default", + "_parent": "61a9f8bd6bf73d5c697b3c44", + "_type": "Preset" + }, + "5c123fe086f7742a60324263": { + "_changeWeaponName": true, + "_id": "5c123fe086f7742a60324263", + "_items": [ + { + "_id": "5c2209ca86f774193869965a", + "_tpl": "5aafa857e5b5b00018480968", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c2209ca86f774193869965b", + "_tpl": "5addccf45acfc400185c2989", + "parentId": "5c2209ca86f774193869965a", + "slotId": "mod_magazine" + }, + { + "_id": "5c2209ca86f774193869965c", + "_tpl": "5ab372a310e891001717f0d8", + "parentId": "5c2209ca86f774193869965a", + "slotId": "mod_stock" + }, + { + "_id": "5c2209ca86f774193869965d", + "_tpl": "588226dd24597767ad33f789", + "parentId": "5c2209ca86f774193869965c", + "slotId": "mod_foregrip" + }, + { + "_id": "5c2209ca86f774193869965e", + "_tpl": "5b3b6dc75acfc47a8773fb1e", + "parentId": "5c2209ca86f774193869965c", + "slotId": "mod_scope" + }, + { + "_id": "5c2209ca86f774193869965f", + "_tpl": "5b3b6e495acfc4330140bd88", + "parentId": "5c2209ca86f774193869965e", + "slotId": "mod_scope" + }, + { + "_id": "5c2209ca86f7741938699660", + "_tpl": "5649a2464bdc2d91118b45a8", + "parentId": "5c2209ca86f774193869965c", + "slotId": "mod_mount" + }, + { + "_id": "5c2209ca86f7741938699661", + "_tpl": "577d128124597739d65d0e56", + "parentId": "5c2209ca86f7741938699660", + "slotId": "mod_scope" + }, + { + "_id": "5c2209ca86f7741938699662", + "_tpl": "577d141e24597739c5255e01", + "parentId": "5c2209ca86f7741938699661", + "slotId": "mod_scope" + }, + { + "_id": "5c2209ca86f7741938699663", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "5c2209ca86f774193869965c", + "slotId": "mod_tactical_003" + }, + { + "_id": "5c2209ca86f7741938699664", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "5c2209ca86f774193869965c", + "slotId": "mod_pistolgrip" + }, + { + "_id": "5c2209ca86f7741938699665", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "5c2209ca86f774193869965c", + "slotId": "mod_stock" + }, + { + "_id": "5c2209ca86f7741938699666", + "_tpl": "58d2946386f774496974c37e", + "parentId": "5c2209ca86f7741938699665", + "slotId": "mod_stock_000" + }, + { + "_id": "5c2209ca86f7741938699667", + "_tpl": "58d2912286f7744e27117493", + "parentId": "5c2209ca86f7741938699666", + "slotId": "mod_stock" + }, + { + "_id": "5c2209ca86f7741938699668", + "_tpl": "5addbac75acfc400194dbc56", + "parentId": "5c2209ca86f774193869965a", + "slotId": "mod_barrel" + }, + { + "_id": "5c2209ca86f7741938699669", + "_tpl": "5addbb825acfc408fb139400", + "parentId": "5c2209ca86f7741938699668", + "slotId": "mod_muzzle" + } + ], + "_name": "M1A 2018 new year", + "_parent": "5c2209ca86f774193869965a", + "_type": "Preset" + }, + "5c98bd7386f7740cfb15654e": { + "_changeWeaponName": false, + "_encyclopedia": "5c488a752e221602b412af63", + "_id": "5c98bd7386f7740cfb15654e", + "_items": [ + { + "_id": "5c98bd7386f7740cfb156551", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c98bd7386f7740cfb156552", + "_tpl": "5c48a2c22e221602b313fb6c", + "parentId": "5c98bd7386f7740cfb156551", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5c98bd7386f7740cfb156553", + "_tpl": "55802d5f4bdc2dac148b458e", + "parentId": "5c98bd7386f7740cfb156551", + "slotId": "mod_magazine" + }, + { + "_id": "5c98bd7386f7740cfb156554", + "_tpl": "5c48a14f2e2216152006edd7", + "parentId": "5c98bd7386f7740cfb156551", + "slotId": "mod_handguard" + }, + { + "_id": "5c98bd7386f7740cfb156555", + "_tpl": "5c48a2852e221602b21d5923", + "parentId": "5c98bd7386f7740cfb156551", + "slotId": "mod_barrel" + }, + { + "_id": "5c98bd7386f7740cfb156556", + "_tpl": "5c48a2a42e221602b66d1e07", + "parentId": "5c98bd7386f7740cfb156555", + "slotId": "mod_muzzle" + } + ], + "_name": "dt mdr default", + "_parent": "5c98bd7386f7740cfb156551", + "_type": "Preset" + }, + "5c98be1e86f7741cc96ffd79": { + "_changeWeaponName": false, + "_encyclopedia": "5c46fbd72e2216398b5a8c9c", + "_id": "5c98be1e86f7741cc96ffd79", + "_items": [ + { + "_id": "5c98be1e86f7741cc96ffd86", + "_tpl": "5c46fbd72e2216398b5a8c9c", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "5c98be1e86f7741cc96ffd87", + "_tpl": "5c471be12e221602b66cd9ac", + "parentId": "5c98be1e86f7741cc96ffd86", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5c98be1e86f7741cc96ffd88", + "_tpl": "5c471c442e221602b542a6f8", + "parentId": "5c98be1e86f7741cc96ffd86", + "slotId": "mod_magazine" + }, + { + "_id": "5c98be1e86f7741cc96ffd89", + "_tpl": "5c471b5d2e221602b21d4e14", + "parentId": "5c98be1e86f7741cc96ffd86", + "slotId": "mod_stock" + }, + { + "_id": "5c98be1e86f7741cc96ffd8a", + "_tpl": "5c471cb32e221602b177afaa", + "parentId": "5c98be1e86f7741cc96ffd86", + "slotId": "mod_barrel" + }, + { + "_id": "5c98be1e86f7741cc96ffd8b", + "_tpl": "5c471bfc2e221602b21d4e17", + "parentId": "5c98be1e86f7741cc96ffd8a", + "slotId": "mod_muzzle" + }, + { + "_id": "5c98be1e86f7741cc96ffd8c", + "_tpl": "5c471ba12e221602b3137d76", + "parentId": "5c98be1e86f7741cc96ffd8b", + "slotId": "mod_sight_front" + }, + { + "_id": "5c98be1e86f7741cc96ffd8d", + "_tpl": "5c471c842e221615214259b5", + "parentId": "5c98be1e86f7741cc96ffd8a", + "slotId": "mod_gas_block" + }, + { + "_id": "5c98be1e86f7741cc96ffd8e", + "_tpl": "5c471c2d2e22164bef5d077f", + "parentId": "5c98be1e86f7741cc96ffd86", + "slotId": "mod_mount_001" + }, + { + "_id": "5c98be1e86f7741cc96ffd8f", + "_tpl": "5c471c6c2e221602b66cd9ae", + "parentId": "5c98be1e86f7741cc96ffd8e", + "slotId": "mod_handguard" + }, + { + "_id": "5c98be1e86f7741cc96ffd90", + "_tpl": "5c471b7e2e2216152006e46c", + "parentId": "5c98be1e86f7741cc96ffd8e", + "slotId": "mod_sight_rear" + }, + { + "_id": "5c98be1e86f7741cc96ffd91", + "_tpl": "5c471bd12e221602b4129c3a", + "parentId": "5c98be1e86f7741cc96ffd86", + "slotId": "mod_reciever" + } + ], + "_name": "SVDS no scope default", + "_parent": "5c98be1e86f7741cc96ffd86", + "_type": "Preset" + }, + "5c98bf9186f7740cf708c509": { + "_changeWeaponName": false, + "_encyclopedia": "5c501a4d2e221602b412b540", + "_id": "5c98bf9186f7740cf708c509", + "_items": [ + { + "_id": "5c98bf9186f7740cf708c50a", + "_tpl": "5c501a4d2e221602b412b540", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c98bf9186f7740cf708c50b", + "_tpl": "5c5039be2e221602b177c9ff", + "parentId": "5c98bf9186f7740cf708c50a", + "slotId": "mod_gas_block" + }, + { + "_id": "5c98bf9186f7740cf708c50c", + "_tpl": "5c503d0a2e221602b542b7ef", + "parentId": "5c98bf9186f7740cf708c50a", + "slotId": "mod_reciever" + }, + { + "_id": "5c98bf9186f7740cf708c50d", + "_tpl": "5c503b1c2e221602b21d6e9d", + "parentId": "5c98bf9186f7740cf708c50a", + "slotId": "mod_sight_rear" + }, + { + "_id": "5c98bf9186f7740cf708c50e", + "_tpl": "5c503af12e221602b177ca02", + "parentId": "5c98bf9186f7740cf708c50a", + "slotId": "mod_stock" + }, + { + "_id": "5c98bf9186f7740cf708c50f", + "_tpl": "5c503ac82e221602b21d6e9a", + "parentId": "5c98bf9186f7740cf708c50a", + "slotId": "mod_magazine" + } + ], + "_name": "VPO-101 default", + "_parent": "5c98bf9186f7740cf708c50a", + "_type": "Preset" + }, + "5d23376786f77459bb77d838": { + "_changeWeaponName": false, + "_encyclopedia": "5cc82d76e24e8d00134b4b83", + "_id": "5d23376786f77459bb77d838", + "_items": [ + { + "_id": "5d23376786f77459bb77d83a", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5d23376786f77459bb77d83b", + "_tpl": "5cc70093e4a949033c734312", + "parentId": "5d23376786f77459bb77d83a", + "slotId": "mod_magazine" + }, + { + "_id": "5d23376786f77459bb77d83c", + "_tpl": "5cc700b9e4a949000f0f0f25", + "parentId": "5d23376786f77459bb77d83a", + "slotId": "mod_stock" + }, + { + "_id": "5d23376786f77459bb77d83d", + "_tpl": "5cc700cae4a949035e43ba72", + "parentId": "5d23376786f77459bb77d83c", + "slotId": "mod_stock_000" + }, + { + "_id": "5d23376786f77459bb77d83e", + "_tpl": "5cc70102e4a949035e43ba74", + "parentId": "5d23376786f77459bb77d83a", + "slotId": "mod_reciever" + }, + { + "_id": "5d23376786f77459bb77d83f", + "_tpl": "5cebec38d7f00c00110a652a", + "parentId": "5d23376786f77459bb77d83e", + "slotId": "mod_mount_000" + }, + { + "_id": "5d23376786f77459bb77d840", + "_tpl": "5cc70146e4a949000d73bf6b", + "parentId": "5d23376786f77459bb77d83e", + "slotId": "mod_mount_001" + }, + { + "_id": "5d23376786f77459bb77d841", + "_tpl": "5cc70146e4a949000d73bf6b", + "parentId": "5d23376786f77459bb77d83e", + "slotId": "mod_mount_002" + }, + { + "_id": "5d23376786f77459bb77d842", + "_tpl": "5cc701aae4a949000e1ea45c", + "parentId": "5d23376786f77459bb77d83a", + "slotId": "mod_barrel" + }, + { + "_id": "5d23376786f77459bb77d843", + "_tpl": "5cc82796e24e8d000f5859a8", + "parentId": "5d23376786f77459bb77d842", + "slotId": "mod_muzzle" + }, + { + "_id": "5d23376786f77459bb77d844", + "_tpl": "5cc6ea78e4a949000e1ea3c1", + "parentId": "5d23376786f77459bb77d83a", + "slotId": "mod_charge" + } + ], + "_name": "p90 default", + "_parent": "5d23376786f77459bb77d83a", + "_type": "Preset" + }, + "5d23404b86f7740d62079098": { + "_changeWeaponName": true, + "_id": "5d23404b86f7740d62079098", + "_items": [ + { + "_id": "5d23404b86f7740d620790a4", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5d23404b86f7740d620790a5", + "_tpl": "5cc70093e4a949033c734312", + "parentId": "5d23404b86f7740d620790a4", + "slotId": "mod_magazine" + }, + { + "_id": "5d23404b86f7740d620790a6", + "_tpl": "5cc700b9e4a949000f0f0f25", + "parentId": "5d23404b86f7740d620790a4", + "slotId": "mod_stock" + }, + { + "_id": "5d23404b86f7740d620790a7", + "_tpl": "5cc700cae4a949035e43ba72", + "parentId": "5d23404b86f7740d620790a6", + "slotId": "mod_stock_000" + }, + { + "_id": "5d23404b86f7740d620790a8", + "_tpl": "5cc70102e4a949035e43ba74", + "parentId": "5d23404b86f7740d620790a4", + "slotId": "mod_reciever" + }, + { + "_id": "5d23404b86f7740d620790a9", + "_tpl": "5cc7015ae4a949001152b4c6", + "parentId": "5d23404b86f7740d620790a8", + "slotId": "mod_mount_000" + }, + { + "_id": "5d23404b86f7740d620790aa", + "_tpl": "5cc70146e4a949000d73bf6b", + "parentId": "5d23404b86f7740d620790a8", + "slotId": "mod_mount_001" + }, + { + "_id": "5d23404b86f7740d620790ab", + "_tpl": "5cc70146e4a949000d73bf6b", + "parentId": "5d23404b86f7740d620790a8", + "slotId": "mod_mount_002" + }, + { + "_id": "5d23404b86f7740d620790ac", + "_tpl": "5cc701d7e4a94900100ac4e7", + "parentId": "5d23404b86f7740d620790a4", + "slotId": "mod_barrel" + }, + { + "_id": "5d23404b86f7740d620790ad", + "_tpl": "5cc6ea78e4a949000e1ea3c1", + "parentId": "5d23404b86f7740d620790a4", + "slotId": "mod_charge" + } + ], + "_name": "p90 SBR", + "_parent": "5d23404b86f7740d620790a4", + "_type": "Preset" + }, + "5d2340e986f77461496241bc": { + "_changeWeaponName": true, + "_id": "5d2340e986f77461496241bc", + "_items": [ + { + "_id": "5d2340e986f77461496241cb", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5d2340e986f77461496241cc", + "_tpl": "5cc70093e4a949033c734312", + "parentId": "5d2340e986f77461496241cb", + "slotId": "mod_magazine" + }, + { + "_id": "5d2340e986f77461496241cd", + "_tpl": "5cebec10d7f00c065703d185", + "parentId": "5d2340e986f77461496241cb", + "slotId": "mod_stock" + }, + { + "_id": "5d2340e986f77461496241ce", + "_tpl": "5cc700cae4a949035e43ba72", + "parentId": "5d2340e986f77461496241cd", + "slotId": "mod_stock_000" + }, + { + "_id": "5d2340e986f77461496241cf", + "_tpl": "5cc70102e4a949035e43ba74", + "parentId": "5d2340e986f77461496241cb", + "slotId": "mod_reciever" + }, + { + "_id": "5d2340e986f77461496241d0", + "_tpl": "5cc7015ae4a949001152b4c6", + "parentId": "5d2340e986f77461496241cf", + "slotId": "mod_mount_000" + }, + { + "_id": "5d2340e986f77461496241d1", + "_tpl": "584924ec24597768f12ae244", + "parentId": "5d2340e986f77461496241d0", + "slotId": "mod_scope" + }, + { + "_id": "5d2340e986f77461496241d2", + "_tpl": "5cc70146e4a949000d73bf6b", + "parentId": "5d2340e986f77461496241cf", + "slotId": "mod_mount_001" + }, + { + "_id": "5d2340e986f77461496241d3", + "_tpl": "5cc70146e4a949000d73bf6b", + "parentId": "5d2340e986f77461496241cf", + "slotId": "mod_mount_002" + }, + { + "_id": "5d2340e986f77461496241d4", + "_tpl": "5cc701aae4a949000e1ea45c", + "parentId": "5d2340e986f77461496241cb", + "slotId": "mod_barrel" + }, + { + "_id": "5d2340e986f77461496241d5", + "_tpl": "5cc82796e24e8d000f5859a8", + "parentId": "5d2340e986f77461496241d4", + "slotId": "mod_muzzle" + }, + { + "_id": "5d2340e986f77461496241d6", + "_tpl": "5cebec00d7f00c065c53522a", + "parentId": "5d2340e986f77461496241d5", + "slotId": "mod_muzzle" + }, + { + "_id": "5d2340e986f77461496241d7", + "_tpl": "5cc6ea78e4a949000e1ea3c1", + "parentId": "5d2340e986f77461496241cb", + "slotId": "mod_charge" + } + ], + "_name": "p90 CWDG", + "_parent": "5d2340e986f77461496241cb", + "_type": "Preset" + }, + "5d23424c86f7740d5e50ce65": { + "_changeWeaponName": true, + "_id": "5d23424c86f7740d5e50ce65", + "_items": [ + { + "_id": "5d23424c86f7740d5e50ce6c", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5d23424c86f7740d5e50ce6d", + "_tpl": "5cc70093e4a949033c734312", + "parentId": "5d23424c86f7740d5e50ce6c", + "slotId": "mod_magazine" + }, + { + "_id": "5d23424c86f7740d5e50ce6e", + "_tpl": "5cebec10d7f00c065703d185", + "parentId": "5d23424c86f7740d5e50ce6c", + "slotId": "mod_stock" + }, + { + "_id": "5d23424c86f7740d5e50ce6f", + "_tpl": "5cc700d4e4a949000f0f0f28", + "parentId": "5d23424c86f7740d5e50ce6e", + "slotId": "mod_stock_000" + }, + { + "_id": "5d23424c86f7740d5e50ce70", + "_tpl": "5cc700ede4a949033c734315", + "parentId": "5d23424c86f7740d5e50ce6c", + "slotId": "mod_reciever" + }, + { + "_id": "5d23424c86f7740d5e50ce71", + "_tpl": "5cc701d7e4a94900100ac4e7", + "parentId": "5d23424c86f7740d5e50ce6c", + "slotId": "mod_barrel" + }, + { + "_id": "5d23424c86f7740d5e50ce72", + "_tpl": "5cc6ea85e4a949000e1ea3c3", + "parentId": "5d23424c86f7740d5e50ce6c", + "slotId": "mod_charge" + } + ], + "_name": "p90 SBRT", + "_parent": "5d23424c86f7740d5e50ce6c", + "_type": "Preset" + }, + "5d23467086f77443f37fc602": { + "_changeWeaponName": false, + "_encyclopedia": "5cadfbf7ae92152ac412eeef", + "_id": "5d23467086f77443f37fc602", + "_items": [ + { + "_id": "5d32cdef86f774403c15985a", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5d32cdef86f774403c15985b", + "_tpl": "5caf17c9ae92150b30006be1", + "parentId": "5d32cdef86f774403c15985a", + "slotId": "mod_muzzle" + }, + { + "_id": "5d32cdef86f774403c15985c", + "_tpl": "5caf1041ae92157c28402e3f", + "parentId": "5d32cdef86f774403c15985a", + "slotId": "mod_magazine" + }, + { + "_id": "5d32cdef86f774403c15985d", + "_tpl": "5caf16a2ae92152ac412efbc", + "parentId": "5d32cdef86f774403c15985a", + "slotId": "mod_sight_front" + }, + { + "_id": "5d32cdef86f774403c15985e", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "parentId": "5d32cdef86f774403c15985a", + "slotId": "mod_handguard" + }, + { + "_id": "5d32cdef86f774403c15985f", + "_tpl": "5cda9bcfd7f00c0c0b53e900", + "parentId": "5d32cdef86f774403c15985e", + "slotId": "mod_foregrip" + }, + { + "_id": "5d32cdef86f774403c159860", + "_tpl": "5caf1691ae92152ac412efb9", + "parentId": "5d32cdef86f774403c15985a", + "slotId": "mod_scope" + } + ], + "_name": "ASH-12 default", + "_parent": "5d32cdef86f774403c15985a", + "_type": "Preset" + }, + "5d383e1a86f7742a1468ce63": { + "_changeWeaponName": true, + "_id": "5d383e1a86f7742a1468ce63", + "_items": [ + { + "_id": "5d38514286f7742a135d4441", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5d38514286f7742a135d4442", + "_tpl": "5d25a4a98abbc30b917421a4", + "parentId": "5d38514286f7742a135d4441", + "slotId": "mod_magazine" + }, + { + "_id": "5d38514286f7742a135d4443", + "_tpl": "5d25d0ac8abbc3054f3e61f7", + "parentId": "5d38514286f7742a135d4441", + "slotId": "mod_stock" + }, + { + "_id": "5d38514286f7742a135d4444", + "_tpl": "5a9d6d00a2750c5c985b5305", + "parentId": "5d38514286f7742a135d4443", + "slotId": "mod_mount_000" + }, + { + "_id": "5d38514286f7742a135d4445", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "5d38514286f7742a135d4441", + "slotId": "mod_barrel" + }, + { + "_id": "5d38514286f7742a135d4446", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "5d38514286f7742a135d4445", + "slotId": "mod_muzzle" + } + ], + "_name": "rem700 AICS", + "_parent": "5d38514286f7742a135d4441", + "_type": "Preset" + }, + "5d383ee786f7742a15793860": { + "_changeWeaponName": true, + "_id": "5d383ee786f7742a15793860", + "_items": [ + { + "_id": "5d38512f86f77479f81e48e7", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5d38512f86f77479f81e48e8", + "_tpl": "5d25af8f8abbc3055079fec5", + "parentId": "5d38512f86f77479f81e48e7", + "slotId": "mod_magazine" + }, + { + "_id": "5d38512f86f77479f81e48e9", + "_tpl": "5cf13123d7f00c1085616a50", + "parentId": "5d38512f86f77479f81e48e7", + "slotId": "mod_stock" + }, + { + "_id": "5d38512f86f77479f81e48ea", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "5d38512f86f77479f81e48e7", + "slotId": "mod_barrel" + }, + { + "_id": "5d38512f86f77479f81e48eb", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "5d38512f86f77479f81e48ea", + "slotId": "mod_muzzle" + } + ], + "_name": "rem700 arch", + "_parent": "5d38512f86f77479f81e48e7", + "_type": "Preset" + }, + "5d383f5d86f7742a15793872": { + "_changeWeaponName": true, + "_id": "5d383f5d86f7742a15793872", + "_items": [ + { + "_id": "5d38511b86f7742a157945d9", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5d38511b86f7742a157945da", + "_tpl": "5ce69cbad7f00c00b61c5098", + "parentId": "5d38511b86f7742a157945d9", + "slotId": "mod_magazine" + }, + { + "_id": "5d38511b86f7742a157945db", + "_tpl": "5cdeac22d7f00c000f26168f", + "parentId": "5d38511b86f7742a157945d9", + "slotId": "mod_stock" + }, + { + "_id": "5d38511b86f7742a157945dc", + "_tpl": "5cdeac42d7f00c000d36ba73", + "parentId": "5d38511b86f7742a157945db", + "slotId": "mod_stock" + }, + { + "_id": "5d38511b86f7742a157945dd", + "_tpl": "5cdeac5cd7f00c000f261694", + "parentId": "5d38511b86f7742a157945db", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5d38511b86f7742a157945de", + "_tpl": "5cdeaca5d7f00c00b61c4b70", + "parentId": "5d38511b86f7742a157945db", + "slotId": "mod_mount_000" + }, + { + "_id": "5d38511b86f7742a157945df", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "5d38511b86f7742a157945db", + "slotId": "mod_mount_001" + }, + { + "_id": "5d38511b86f7742a157945e0", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "5d38511b86f7742a157945db", + "slotId": "mod_mount_002" + }, + { + "_id": "5d38511b86f7742a157945e1", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "5d38511b86f7742a157945db", + "slotId": "mod_mount_003" + }, + { + "_id": "5d38511b86f7742a157945e2", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "5d38511b86f7742a157945d9", + "slotId": "mod_barrel" + }, + { + "_id": "5d38511b86f7742a157945e3", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "5d38511b86f7742a157945e2", + "slotId": "mod_muzzle" + } + ], + "_name": "rem700 PRO", + "_parent": "5d38511b86f7742a157945d9", + "_type": "Preset" + }, + "5d38517786f7742a1468cf6a": { + "_changeWeaponName": true, + "_id": "5d38517786f7742a1468cf6a", + "_items": [ + { + "_id": "5d38517786f7742a1468cf6e", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5d38517786f7742a1468cf6f", + "_tpl": "5d25a6538abbc306c62e630d", + "parentId": "5d38517786f7742a1468cf6e", + "slotId": "mod_magazine" + }, + { + "_id": "5d38517786f7742a1468cf70", + "_tpl": "5cde739cd7f00c0010373bd3", + "parentId": "5d38517786f7742a1468cf6e", + "slotId": "mod_stock" + }, + { + "_id": "5d38517786f7742a1468cf71", + "_tpl": "5a33ca0fc4a282000d72292f", + "parentId": "5d38517786f7742a1468cf70", + "slotId": "mod_stock" + }, + { + "_id": "5d38517786f7742a1468cf72", + "_tpl": "5a33cae9c4a28232980eb086", + "parentId": "5d38517786f7742a1468cf71", + "slotId": "mod_stock" + }, + { + "_id": "5d38517786f7742a1468cf73", + "_tpl": "5a339805c4a2826c6e06d73d", + "parentId": "5d38517786f7742a1468cf70", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5d38517786f7742a1468cf74", + "_tpl": "5cde7afdd7f00c000d36b89d", + "parentId": "5d38517786f7742a1468cf70", + "slotId": "mod_handguard" + }, + { + "_id": "5d38517786f7742a1468cf75", + "_tpl": "5a9d6d00a2750c5c985b5305", + "parentId": "5d38517786f7742a1468cf74", + "slotId": "mod_mount_000" + }, + { + "_id": "5d38517786f7742a1468cf76", + "_tpl": "5a9d6d00a2750c5c985b5305", + "parentId": "5d38517786f7742a1468cf74", + "slotId": "mod_mount_001" + }, + { + "_id": "5d38517786f7742a1468cf77", + "_tpl": "5a9d6d00a2750c5c985b5305", + "parentId": "5d38517786f7742a1468cf74", + "slotId": "mod_mount_002" + }, + { + "_id": "5d38517786f7742a1468cf78", + "_tpl": "5a9d6d13a2750c00164f6b03", + "parentId": "5d38517786f7742a1468cf74", + "slotId": "mod_foregrip" + }, + { + "_id": "5d38517786f7742a1468cf79", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "5d38517786f7742a1468cf6e", + "slotId": "mod_barrel" + }, + { + "_id": "5d38517786f7742a1468cf7a", + "_tpl": "5d270b3c8abbc3105335cfb8", + "parentId": "5d38517786f7742a1468cf79", + "slotId": "mod_muzzle" + }, + { + "_id": "5d38517786f7742a1468cf7b", + "_tpl": "5cde7b43d7f00c000d36b93e", + "parentId": "5d38517786f7742a1468cf6e", + "slotId": "mod_mount" + } + ], + "_name": "rem700 MRS", + "_parent": "5d38517786f7742a1468cf6e", + "_type": "Preset" + }, + "5d3f06c886f7743bb5318c6a": { + "_changeWeaponName": false, + "_encyclopedia": "5d2f0d8048f0356c925bc3b0", + "_id": "5d3f06c886f7743bb5318c6a", + "_items": [ + { + "_id": "5d3f06c886f7743bb5318c72", + "_tpl": "5d2f0d8048f0356c925bc3b0", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5d3f06c886f7743bb5318c73", + "_tpl": "5d2f213448f0355009199284", + "parentId": "5d3f06c886f7743bb5318c72", + "slotId": "mod_magazine" + }, + { + "_id": "5d3f06c886f7743bb5318c74", + "_tpl": "5d2f261548f03576f500e7b7", + "parentId": "5d3f06c886f7743bb5318c72", + "slotId": "mod_reciever" + }, + { + "_id": "5d3f06c886f7743bb5318c75", + "_tpl": "5d2f259b48f0355a844acd74", + "parentId": "5d3f06c886f7743bb5318c74", + "slotId": "mod_handguard" + }, + { + "_id": "5d3f06c886f7743bb5318c76", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "5d3f06c886f7743bb5318c74", + "slotId": "mod_sight_rear" + }, + { + "_id": "5d3f06c886f7743bb5318c77", + "_tpl": "5d2f25bc48f03502573e5d85", + "parentId": "5d3f06c886f7743bb5318c74", + "slotId": "mod_stock" + }, + { + "_id": "5d3f06c886f7743bb5318c78", + "_tpl": "5d2f2d5748f03572ec0c0139", + "parentId": "5d3f06c886f7743bb5318c72", + "slotId": "mod_charge" + } + ], + "_name": "MP5k default", + "_parent": "5d3f06c886f7743bb5318c72", + "_type": "Preset" + }, + "5d3f0bc986f7743cb332abdc": { + "_changeWeaponName": false, + "_encyclopedia": "5cadc190ae921500103bb3b6", + "_id": "5d3f0bc986f7743cb332abdc", + "_items": [ + { + "_id": "5d3f0bc986f7743cb332abdf", + "_tpl": "5cadc190ae921500103bb3b6", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5d3f0bc986f7743cb332abe0", + "_tpl": "5cadc1c6ae9215000f2775a4", + "parentId": "5d3f0bc986f7743cb332abdf", + "slotId": "mod_barrel" + }, + { + "_id": "5d3f0bc986f7743cb332abe1", + "_tpl": "5cadc390ae921500126a77f1", + "parentId": "5d3f0bc986f7743cb332abe0", + "slotId": "mod_muzzle" + }, + { + "_id": "5d3f0bc986f7743cb332abe2", + "_tpl": "5cadc431ae921500113bb8d5", + "parentId": "5d3f0bc986f7743cb332abdf", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5d3f0bc986f7743cb332abe3", + "_tpl": "5cadc55cae921500103bb3be", + "parentId": "5d3f0bc986f7743cb332abdf", + "slotId": "mod_reciever" + }, + { + "_id": "5d3f0bc986f7743cb332abe4", + "_tpl": "5cadd940ae9215051e1c2316", + "parentId": "5d3f0bc986f7743cb332abe3", + "slotId": "mod_sight_rear" + }, + { + "_id": "5d3f0bc986f7743cb332abe5", + "_tpl": "5cadd919ae921500126a77f3", + "parentId": "5d3f0bc986f7743cb332abe3", + "slotId": "mod_sight_front" + }, + { + "_id": "5d3f0bc986f7743cb332abe6", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "5d3f0bc986f7743cb332abdf", + "slotId": "mod_magazine" + } + ], + "_name": "M9A3 default", + "_parent": "5d3f0bc986f7743cb332abdf", + "_type": "Preset" + }, + "5d4d617f86f77449c463d107": { + "_changeWeaponName": false, + "_encyclopedia": "5d43021ca4b9362eab4b5e25", + "_id": "5d4d617f86f77449c463d107", + "_items": [ + { + "_id": "5d4d617f86f77449c463d116", + "_tpl": "5d43021ca4b9362eab4b5e25", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5d4d617f86f77449c463d117", + "_tpl": "55802f5d4bdc2dac148b458f", + "parentId": "5d4d617f86f77449c463d116", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5d4d617f86f77449c463d118", + "_tpl": "5aaa5dfee5b5b000140293d3", + "parentId": "5d4d617f86f77449c463d116", + "slotId": "mod_magazine" + }, + { + "_id": "5d4d617f86f77449c463d119", + "_tpl": "5d4405aaa4b9361e6a4e6bd3", + "parentId": "5d4d617f86f77449c463d116", + "slotId": "mod_reciever" + }, + { + "_id": "5d4d617f86f77449c463d11a", + "_tpl": "5d440b93a4b9364276578d4b", + "parentId": "5d4d617f86f77449c463d119", + "slotId": "mod_barrel" + }, + { + "_id": "5d4d617f86f77449c463d11b", + "_tpl": "5d440625a4b9361eec4ae6c5", + "parentId": "5d4d617f86f77449c463d11a", + "slotId": "mod_muzzle" + }, + { + "_id": "5d4d617f86f77449c463d11c", + "_tpl": "5d44064fa4b9361e4f6eb8b5", + "parentId": "5d4d617f86f77449c463d11b", + "slotId": "mod_muzzle" + }, + { + "_id": "5d4d617f86f77449c463d11d", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "5d4d617f86f77449c463d11a", + "slotId": "mod_gas_block" + }, + { + "_id": "5d4d617f86f77449c463d11e", + "_tpl": "5d4405f0a4b9361e6a4e6bd9", + "parentId": "5d4d617f86f77449c463d119", + "slotId": "mod_handguard" + }, + { + "_id": "5d4d617f86f77449c463d11f", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "5d4d617f86f77449c463d11e", + "slotId": "mod_mount_004" + }, + { + "_id": "5d4d617f86f77449c463d120", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "5d4d617f86f77449c463d11e", + "slotId": "mod_foregrip" + }, + { + "_id": "5d4d617f86f77449c463d121", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "5d4d617f86f77449c463d116", + "slotId": "mod_stock" + }, + { + "_id": "5d4d617f86f77449c463d122", + "_tpl": "5d4406a8a4b9361e4f6eb8b7", + "parentId": "5d4d617f86f77449c463d121", + "slotId": "mod_stock_000" + }, + { + "_id": "5d4d617f86f77449c463d123", + "_tpl": "5d44334ba4b9362b346d1948", + "parentId": "5d4d617f86f77449c463d116", + "slotId": "mod_charge" + } + ], + "_name": "tx-15 default", + "_parent": "5d4d617f86f77449c463d116", + "_type": "Preset" + }, + "5d51290186f77419093e7c24": { + "_changeWeaponName": false, + "_encyclopedia": "5d3eb3b0a4b93615055e84d2", + "_id": "5d51290186f77419093e7c24", + "_items": [ + { + "_id": "5d51290186f77419093e7c25", + "_tpl": "5d3eb3b0a4b93615055e84d2", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5d51290186f77419093e7c26", + "_tpl": "5d3eb5b6a4b9361eab311902", + "parentId": "5d51290186f77419093e7c25", + "slotId": "mod_barrel" + }, + { + "_id": "5d51290186f77419093e7c27", + "_tpl": "5d3eb44aa4b93650d64e4979", + "parentId": "5d51290186f77419093e7c25", + "slotId": "mod_reciever" + }, + { + "_id": "5d51290186f77419093e7c28", + "_tpl": "5d3eb4aba4b93650d64e497d", + "parentId": "5d51290186f77419093e7c27", + "slotId": "mod_sight_rear" + }, + { + "_id": "5d51290186f77419093e7c29", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "parentId": "5d51290186f77419093e7c27", + "slotId": "mod_sight_front" + }, + { + "_id": "5d51290186f77419093e7c2a", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "5d51290186f77419093e7c25", + "slotId": "mod_magazine" + } + ], + "_name": "fseven default", + "_parent": "5d51290186f77419093e7c25", + "_type": "Preset" + }, + "5d7b845786f7743c1e531da7": { + "_changeWeaponName": false, + "_encyclopedia": "5d67abc1a4b93614ec50137f", + "_id": "5d7b845786f7743c1e531da7", + "_items": [ + { + "_id": "655b79dfb71eeb7c4168c62a", + "_tpl": "5d67abc1a4b93614ec50137f", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "655b79dfb71eeb7c4168c62b", + "_tpl": "5d3eb59ea4b9361c284bb4b2", + "parentId": "655b79dfb71eeb7c4168c62a", + "slotId": "mod_barrel" + }, + { + "_id": "655b79dfb71eeb7c4168c62c", + "_tpl": "5d3ef698a4b9361182109872", + "parentId": "655b79dfb71eeb7c4168c62b", + "slotId": "mod_muzzle" + }, + { + "_id": "655b79dfb71eeb7c4168c62d", + "_tpl": "5d3eb44aa4b93650d64e4979", + "parentId": "655b79dfb71eeb7c4168c62a", + "slotId": "mod_reciever" + }, + { + "_id": "655b79dfb71eeb7c4168c62e", + "_tpl": "5d3eb4aba4b93650d64e497d", + "parentId": "655b79dfb71eeb7c4168c62d", + "slotId": "mod_sight_rear" + }, + { + "_id": "655b79dfb71eeb7c4168c62f", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "parentId": "655b79dfb71eeb7c4168c62d", + "slotId": "mod_sight_front" + }, + { + "_id": "655b79dfb71eeb7c4168c630", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "655b79dfb71eeb7c4168c62a", + "slotId": "mod_magazine" + } + ], + "_name": "fseven fde silenced", + "_parent": "655b79dfb71eeb7c4168c62a", + "_type": "Preset" + }, + "5dd7f8c524e5d7504a4e3077": { + "_changeWeaponName": true, + "_id": "5dd7f8c524e5d7504a4e3077", + "_items": [ + { + "_id": "5dd7f8c524e5d7504a4e3081", + "_tpl": "5bf3e03b0db834001d2c4a9c", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5dd7f8c524e5d7504a4e3082", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "5dd7f8c524e5d7504a4e3081", + "slotId": "mod_gas_block" + }, + { + "_id": "5dd7f8c524e5d7504a4e3083", + "_tpl": "5cbda9f4ae9215000e5b9bfc", + "parentId": "5dd7f8c524e5d7504a4e3082", + "slotId": "mod_handguard" + }, + { + "_id": "5dd7f8c524e5d7504a4e3084", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "5dd7f8c524e5d7504a4e3081", + "slotId": "mod_muzzle" + }, + { + "_id": "5dd7f8c524e5d7504a4e3085", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "5dd7f8c524e5d7504a4e3081", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5dd7f8c524e5d7504a4e3086", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "5dd7f8c524e5d7504a4e3081", + "slotId": "mod_reciever" + }, + { + "_id": "5dd7f8c524e5d7504a4e3087", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "5dd7f8c524e5d7504a4e3081", + "slotId": "mod_sight_rear" + }, + { + "_id": "5dd7f8c524e5d7504a4e3088", + "_tpl": "5cbdb1b0ae9215000d50e105", + "parentId": "5dd7f8c524e5d7504a4e3081", + "slotId": "mod_stock" + }, + { + "_id": "5dd7f8c524e5d7504a4e3089", + "_tpl": "5cbdaf89ae9215000e5b9c94", + "parentId": "5dd7f8c524e5d7504a4e3081", + "slotId": "mod_magazine" + } + ], + "_name": "ak-74_plum", + "_parent": "5dd7f8c524e5d7504a4e3081", + "_type": "Preset" + }, + "5dd800bde492226366631317": { + "_changeWeaponName": true, + "_id": "5dd800bde492226366631317", + "_items": [ + { + "_id": "5dd800bde492226366631328", + "_tpl": "5ac66d725acfc43b321d4b60", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "5dd800bde492226366631329", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "5dd800bde492226366631328", + "slotId": "mod_gas_block" + }, + { + "_id": "5dd800bde49222636663132a", + "_tpl": "5cf4e3f3d7f00c06595bc7f0", + "parentId": "5dd800bde492226366631329", + "slotId": "mod_handguard" + }, + { + "_id": "5dd800bde49222636663132b", + "_tpl": "5c7fc87d2e221644f31c0298", + "parentId": "5dd800bde49222636663132a", + "slotId": "mod_foregrip" + }, + { + "_id": "5dd800bde49222636663132c", + "_tpl": "5649a2464bdc2d91118b45a8", + "parentId": "5dd800bde49222636663132a", + "slotId": "mod_scope" + }, + { + "_id": "5dd800bde49222636663132d", + "_tpl": "5a33b2c9c4a282000c5a9511", + "parentId": "5dd800bde49222636663132c", + "slotId": "mod_scope" + }, + { + "_id": "5dd800bde49222636663132e", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "5dd800bde49222636663132d", + "slotId": "mod_scope" + }, + { + "_id": "5dd800bde49222636663132f", + "_tpl": "5cc9ad73d7f00c000e2579d4", + "parentId": "5dd800bde492226366631328", + "slotId": "mod_muzzle" + }, + { + "_id": "5dd800bde492226366631330", + "_tpl": "5cf50850d7f00c056e24104c", + "parentId": "5dd800bde492226366631328", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5dd800bde492226366631331", + "_tpl": "5d2c770c48f0354b4a07c100", + "parentId": "5dd800bde492226366631328", + "slotId": "mod_reciever" + }, + { + "_id": "5dd800bde492226366631332", + "_tpl": "5d1b5e94d7ad1a2b865a96b0", + "parentId": "5dd800bde492226366631331", + "slotId": "mod_scope" + }, + { + "_id": "5dd800bde492226366631333", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "5dd800bde492226366631328", + "slotId": "mod_sight_rear" + }, + { + "_id": "5dd800bde492226366631334", + "_tpl": "5cf50fc5d7f00c056c53f83c", + "parentId": "5dd800bde492226366631328", + "slotId": "mod_stock" + }, + { + "_id": "5dd800bde492226366631335", + "_tpl": "5c793fde2e221601da358614", + "parentId": "5dd800bde492226366631334", + "slotId": "mod_stock" + }, + { + "_id": "5dd800bde492226366631336", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "parentId": "5dd800bde492226366631328", + "slotId": "mod_magazine" + }, + { + "_id": "5dd800bde492226366631337", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "5dd800bde492226366631328", + "slotId": "mod_charge" + } + ], + "_name": "AK104_T-SAW", + "_parent": "5dd800bde492226366631328", + "_type": "Preset" + }, + "5dd800eae49222636663133b": { + "_changeWeaponName": true, + "_id": "5dd800eae49222636663133b", + "_items": [ + { + "_id": "5dd800eae49222636663134d", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5dd800eae49222636663134e", + "_tpl": "5cc9bcaed7f00c011c04e179", + "parentId": "5dd800eae49222636663134d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5dd800eae49222636663134f", + "_tpl": "59c1383d86f774290a37e0ca", + "parentId": "5dd800eae49222636663134d", + "slotId": "mod_magazine" + }, + { + "_id": "5dd800eae492226366631350", + "_tpl": "5d4405aaa4b9361e6a4e6bd3", + "parentId": "5dd800eae49222636663134d", + "slotId": "mod_reciever" + }, + { + "_id": "5dd800eae492226366631351", + "_tpl": "59f9d81586f7744c7506ee62", + "parentId": "5dd800eae492226366631350", + "slotId": "mod_scope" + }, + { + "_id": "5dd800eae492226366631352", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "5dd800eae492226366631350", + "slotId": "mod_barrel" + }, + { + "_id": "5dd800eae492226366631353", + "_tpl": "5cff9e5ed7ad1a09407397d4", + "parentId": "5dd800eae492226366631352", + "slotId": "mod_muzzle" + }, + { + "_id": "5dd800eae492226366631354", + "_tpl": "5d00ec68d7ad1a04a067e5be", + "parentId": "5dd800eae492226366631352", + "slotId": "mod_gas_block" + }, + { + "_id": "5dd800eae492226366631355", + "_tpl": "5c78f2612e221600114c9f0d", + "parentId": "5dd800eae492226366631350", + "slotId": "mod_handguard" + }, + { + "_id": "5dd800eae492226366631356", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "5dd800eae492226366631355", + "slotId": "mod_foregrip" + }, + { + "_id": "5dd800eae492226366631357", + "_tpl": "588226d124597767ad33f787", + "parentId": "5dd800eae492226366631356", + "slotId": "mod_foregrip" + }, + { + "_id": "5dd800eae492226366631358", + "_tpl": "5ba26b01d4351e0085325a51", + "parentId": "5dd800eae492226366631355", + "slotId": "mod_sight_front" + }, + { + "_id": "5dd800eae492226366631359", + "_tpl": "5c78f2882e22165df16b832e", + "parentId": "5dd800eae492226366631355", + "slotId": "mod_muzzle" + }, + { + "_id": "5dd800eae49222636663135a", + "_tpl": "5b07dd285acfc4001754240d", + "parentId": "5dd800eae492226366631355", + "slotId": "mod_tactical_002" + }, + { + "_id": "5dd800eae49222636663135b", + "_tpl": "5ba26b17d4351e00367f9bdd", + "parentId": "5dd800eae492226366631350", + "slotId": "mod_sight_rear" + }, + { + "_id": "5dd800eae49222636663135c", + "_tpl": "5d120a10d7ad1a4e1026ba85", + "parentId": "5dd800eae49222636663134d", + "slotId": "mod_stock" + }, + { + "_id": "5dd800eae49222636663135d", + "_tpl": "5d120a28d7ad1a1c8962e295", + "parentId": "5dd800eae49222636663135c", + "slotId": "mod_stock" + }, + { + "_id": "5dd800eae49222636663135e", + "_tpl": "5d44334ba4b9362b346d1948", + "parentId": "5dd800eae49222636663134d", + "slotId": "mod_charge" + } + ], + "_name": "M4_sai", + "_parent": "5dd800eae49222636663134d", + "_type": "Preset" + }, + "5dd8013ff4c3af18c507b10a": { + "_changeWeaponName": true, + "_id": "5dd8013ff4c3af18c507b10a", + "_items": [ + { + "_id": "63986e59bde1df2cb34c6712", + "_tpl": "5d43021ca4b9362eab4b5e25", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "63986e59bde1df2cb34c6713", + "_tpl": "5b07db875acfc40dc528a5f6", + "parentId": "63986e59bde1df2cb34c6712", + "slotId": "mod_pistol_grip" + }, + { + "_id": "63986e59bde1df2cb34c6714", + "_tpl": "5d1340cad7ad1a0b0b249869", + "parentId": "63986e59bde1df2cb34c6712", + "slotId": "mod_magazine" + }, + { + "_id": "63986e59bde1df2cb34c6715", + "_tpl": "59bfe68886f7746004266202", + "parentId": "63986e59bde1df2cb34c6712", + "slotId": "mod_reciever" + }, + { + "_id": "63986e59bde1df2cb34c6716", + "_tpl": "5c0a2cec0db834001b7ce47d", + "parentId": "63986e59bde1df2cb34c6715", + "slotId": "mod_scope" + }, + { + "_id": "63986e59bde1df2cb34c6717", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "63986e59bde1df2cb34c6715", + "slotId": "mod_barrel" + }, + { + "_id": "63986e59bde1df2cb34c6718", + "_tpl": "5cff9e5ed7ad1a09407397d4", + "parentId": "63986e59bde1df2cb34c6717", + "slotId": "mod_muzzle" + }, + { + "_id": "63986e59bde1df2cb34c6719", + "_tpl": "5cff9e84d7ad1a049e54ed55", + "parentId": "63986e59bde1df2cb34c6718", + "slotId": "mod_muzzle" + }, + { + "_id": "63986e59bde1df2cb34c671a", + "_tpl": "5d00ec68d7ad1a04a067e5be", + "parentId": "63986e59bde1df2cb34c6717", + "slotId": "mod_gas_block" + }, + { + "_id": "63986e59bde1df2cb34c671b", + "_tpl": "5d123102d7ad1a004e475fe5", + "parentId": "63986e59bde1df2cb34c6715", + "slotId": "mod_handguard" + }, + { + "_id": "63986e59bde1df2cb34c671c", + "_tpl": "5d124c01d7ad1a115c7d59fb", + "parentId": "63986e59bde1df2cb34c671b", + "slotId": "mod_mount_000" + }, + { + "_id": "63986e59bde1df2cb34c671d", + "_tpl": "5d124c01d7ad1a115c7d59fb", + "parentId": "63986e59bde1df2cb34c671b", + "slotId": "mod_mount_001" + }, + { + "_id": "63986e59bde1df2cb34c671e", + "_tpl": "57fd23e32459772d0805bcf1", + "parentId": "63986e59bde1df2cb34c671b", + "slotId": "mod_tactical_002" + }, + { + "_id": "63986e59bde1df2cb34c671f", + "_tpl": "637f57d2f5ef8c33840d36c4", + "parentId": "63986e59bde1df2cb34c671b", + "slotId": "mod_handguard" + }, + { + "_id": "63986e59bde1df2cb34c6720", + "_tpl": "5d124c1ad7ad1a12227c53a7", + "parentId": "63986e59bde1df2cb34c671f", + "slotId": "mod_foregrip" + }, + { + "_id": "63986e59bde1df2cb34c6721", + "_tpl": "591af10186f774139d495f0e", + "parentId": "63986e59bde1df2cb34c6712", + "slotId": "mod_stock" + }, + { + "_id": "63986e59bde1df2cb34c6722", + "_tpl": "5bb20dbcd4351e44f824c04e", + "parentId": "63986e59bde1df2cb34c6712", + "slotId": "mod_charge" + } + ], + "_name": "tx15_dwarrior", + "_parent": "63986e59bde1df2cb34c6712", + "_type": "Preset" + }, + "5ddbbeac582ed30a6134e577": { + "_changeWeaponName": true, + "_id": "5ddbbeac582ed30a6134e577", + "_items": [ + { + "_id": "5ddbbeac582ed30a6134e59c", + "_tpl": "576165642459773c7a400233", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "5ddbbeac582ed30a6134e59d", + "_tpl": "5c90c3622e221601da359851", + "parentId": "5ddbbeac582ed30a6134e59c", + "slotId": "mod_mount_000" + }, + { + "_id": "5ddbbeac582ed30a6134e59e", + "_tpl": "5d1b5e94d7ad1a2b865a96b0", + "parentId": "5ddbbeac582ed30a6134e59d", + "slotId": "mod_scope" + }, + { + "_id": "5ddbbeac582ed30a6134e59f", + "_tpl": "58272b392459774b4c7b3ccd", + "parentId": "5ddbbeac582ed30a6134e59c", + "slotId": "mod_handguard" + }, + { + "_id": "5ddbbeac582ed30a6134e5a0", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "5ddbbeac582ed30a6134e59f", + "slotId": "mod_foregrip" + }, + { + "_id": "5ddbbeac582ed30a6134e5a1", + "_tpl": "5c5952732e2216398b5abda2", + "parentId": "5ddbbeac582ed30a6134e59f", + "slotId": "mod_tactical_000" + }, + { + "_id": "5ddbbeac582ed30a6134e5a2", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "5ddbbeac582ed30a6134e59f", + "slotId": "mod_tactical_001" + }, + { + "_id": "5ddbbeac582ed30a6134e5a3", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "5ddbbeac582ed30a6134e59f", + "slotId": "mod_tactical_002" + }, + { + "_id": "5ddbbeac582ed30a6134e5a4", + "_tpl": "59c0ec5b86f77435b128bfca", + "parentId": "5ddbbeac582ed30a6134e59c", + "slotId": "mod_muzzle" + }, + { + "_id": "5ddbbeac582ed30a6134e5a5", + "_tpl": "5947f92f86f77427344a76b1", + "parentId": "5ddbbeac582ed30a6134e59c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5ddbbeac582ed30a6134e5a6", + "_tpl": "57616c112459773cce774d66", + "parentId": "5ddbbeac582ed30a6134e59c", + "slotId": "mod_reciever" + }, + { + "_id": "5ddbbeac582ed30a6134e5a7", + "_tpl": "57a9b9ce2459770ee926038d", + "parentId": "5ddbbeac582ed30a6134e59c", + "slotId": "mod_sight_rear" + }, + { + "_id": "5ddbbeac582ed30a6134e5a8", + "_tpl": "5cf50fc5d7f00c056c53f83c", + "parentId": "5ddbbeac582ed30a6134e59c", + "slotId": "mod_stock" + }, + { + "_id": "5ddbbeac582ed30a6134e5a9", + "_tpl": "58d2946c86f7744e271174b5", + "parentId": "5ddbbeac582ed30a6134e5a8", + "slotId": "mod_stock" + }, + { + "_id": "5ddbbeac582ed30a6134e5aa", + "_tpl": "58d2912286f7744e27117493", + "parentId": "5ddbbeac582ed30a6134e5a9", + "slotId": "mod_stock" + }, + { + "_id": "5ddbbeac582ed30a6134e5ab", + "_tpl": "5cf8f3b0d7f00c00217872ef", + "parentId": "5ddbbeac582ed30a6134e59c", + "slotId": "mod_magazine" + }, + { + "_id": "5ddbbeac582ed30a6134e5ac", + "_tpl": "5d6e6891a4b9361bd473feea", + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5ad", + "_tpl": "5d6e68c4a4b9361b93413f79", + "location": 1, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5ae", + "_tpl": "5d6e6891a4b9361bd473feea", + "location": 2, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5af", + "_tpl": "5d6e68c4a4b9361b93413f79", + "location": 3, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5b0", + "_tpl": "5d6e6891a4b9361bd473feea", + "location": 4, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5b1", + "_tpl": "5d6e68c4a4b9361b93413f79", + "location": 5, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5b2", + "_tpl": "5d6e6891a4b9361bd473feea", + "location": 6, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5b3", + "_tpl": "5d6e68c4a4b9361b93413f79", + "location": 7, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5b4", + "_tpl": "5d6e6891a4b9361bd473feea", + "location": 8, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5b5", + "_tpl": "5d6e68c4a4b9361b93413f79", + "location": 9, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5b6", + "_tpl": "5d6e6891a4b9361bd473feea", + "location": 10, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5b7", + "_tpl": "5d6e68c4a4b9361b93413f79", + "location": 11, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5b8", + "_tpl": "5d6e6891a4b9361bd473feea", + "location": 12, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5b9", + "_tpl": "5d6e68c4a4b9361b93413f79", + "location": 13, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5ba", + "_tpl": "5d6e6891a4b9361bd473feea", + "location": 14, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5bb", + "_tpl": "5d6e68c4a4b9361b93413f79", + "location": 15, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5bc", + "_tpl": "5d6e6891a4b9361bd473feea", + "location": 16, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5bd", + "_tpl": "5d6e68c4a4b9361b93413f79", + "location": 17, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5be", + "_tpl": "5d6e6891a4b9361bd473feea", + "location": 18, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + }, + { + "_id": "5ddbbeac582ed30a6134e5bf", + "_tpl": "5d6e68c4a4b9361b93413f79", + "location": 19, + "parentId": "5ddbbeac582ed30a6134e5ab", + "slotId": "cartridges" + } + ], + "_name": "saiga12_nerf", + "_parent": "5ddbbeac582ed30a6134e59c", + "_type": "Preset" + }, + "5e0340ab86f7745bb7339235": { + "_changeWeaponName": false, + "_encyclopedia": "5e00903ae9dc277128008b87", + "_id": "5e0340ab86f7745bb7339235", + "_items": [ + { + "_id": "5e0340ab86f7745bb7339236", + "_tpl": "5e00903ae9dc277128008b87", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "5e0340ab86f7745bb7339237", + "_tpl": "5de8eac42a78646d96665d91", + "parentId": "5e0340ab86f7745bb7339236", + "slotId": "mod_magazine" + }, + { + "_id": "5e0340ab86f7745bb7339238", + "_tpl": "5de910da8b6c4240ba2651b5", + "parentId": "5e0340ab86f7745bb7339236", + "slotId": "mod_stock" + }, + { + "_id": "5e0340ab86f7745bb7339239", + "_tpl": "5e0090f7e9dc277128008b93", + "parentId": "5e0340ab86f7745bb7339236", + "slotId": "mod_reciever" + }, + { + "_id": "5e0340ab86f7745bb733923a", + "_tpl": "5de8fb539f98ac2bc659513a", + "parentId": "5e0340ab86f7745bb7339239", + "slotId": "mod_sight_rear" + }, + { + "_id": "5e0340ab86f7745bb733923b", + "_tpl": "5de922d4b11454561e39239f", + "parentId": "5e0340ab86f7745bb7339236", + "slotId": "mod_charge" + }, + { + "_id": "5e0340ab86f7745bb733923c", + "_tpl": "5de8fbf2b74cd90030650c79", + "parentId": "5e0340ab86f7745bb7339236", + "slotId": "mod_mount_000" + } + ], + "_name": "MP9_default", + "_parent": "5e0340ab86f7745bb7339236", + "_type": "Preset" + }, + "5e03410186f77469041348ea": { + "_changeWeaponName": false, + "_encyclopedia": "5de7bd7bfd6b4e6e2276dc25", + "_id": "5e03410186f77469041348ea", + "_items": [ + { + "_id": "5e03410186f77469041348eb", + "_tpl": "5de7bd7bfd6b4e6e2276dc25", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "5e03410186f77469041348ec", + "_tpl": "5de8eac42a78646d96665d91", + "parentId": "5e03410186f77469041348eb", + "slotId": "mod_magazine" + }, + { + "_id": "5e03410186f77469041348ed", + "_tpl": "5de910da8b6c4240ba2651b5", + "parentId": "5e03410186f77469041348eb", + "slotId": "mod_stock" + }, + { + "_id": "5e03410186f77469041348ee", + "_tpl": "5de8fbad2fbe23140d3ee9c4", + "parentId": "5e03410186f77469041348eb", + "slotId": "mod_foregrip" + }, + { + "_id": "5e03410186f77469041348ef", + "_tpl": "5de8e67c4a9f347bc92edbd7", + "parentId": "5e03410186f77469041348eb", + "slotId": "mod_reciever" + }, + { + "_id": "5e03410186f77469041348f0", + "_tpl": "5de8fb539f98ac2bc659513a", + "parentId": "5e03410186f77469041348ef", + "slotId": "mod_sight_rear" + }, + { + "_id": "5e03410186f77469041348f1", + "_tpl": "5de8fc0b205ddc616a6bc51b", + "parentId": "5e03410186f77469041348ef", + "slotId": "mod_mount" + }, + { + "_id": "5e03410186f77469041348f2", + "_tpl": "5de922d4b11454561e39239f", + "parentId": "5e03410186f77469041348eb", + "slotId": "mod_charge" + } + ], + "_name": "MP9N_default", + "_parent": "5e03410186f77469041348eb", + "_type": "Preset" + }, + "5e03511086f7744ccb1fb6cf": { + "_changeWeaponName": false, + "_encyclopedia": "5df8ce05b11454561e39243b", + "_id": "5e03511086f7744ccb1fb6cf", + "_items": [ + { + "_id": "5e03511086f7744ccb1fb6dd", + "_tpl": "5df8ce05b11454561e39243b", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5e03511086f7744ccb1fb6de", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "5e03511086f7744ccb1fb6dd", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5e03511086f7744ccb1fb6df", + "_tpl": "5df8f541c41b2312ea3335e3", + "parentId": "5e03511086f7744ccb1fb6dd", + "slotId": "mod_magazine" + }, + { + "_id": "5e03511086f7744ccb1fb6e0", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "5e03511086f7744ccb1fb6dd", + "slotId": "mod_stock" + }, + { + "_id": "5e03511086f7744ccb1fb6e1", + "_tpl": "5ae30c9a5acfc408fb139a03", + "parentId": "5e03511086f7744ccb1fb6e0", + "slotId": "mod_stock_000" + }, + { + "_id": "5e03511086f7744ccb1fb6e2", + "_tpl": "5df8e4080b92095fd441e594", + "parentId": "5e03511086f7744ccb1fb6dd", + "slotId": "mod_reciever" + }, + { + "_id": "5e03511086f7744ccb1fb6e3", + "_tpl": "5df917564a9f347bc92edca3", + "parentId": "5e03511086f7744ccb1fb6e2", + "slotId": "mod_barrel" + }, + { + "_id": "5e03511086f7744ccb1fb6e4", + "_tpl": "5dfa3cd1b33c0951220c079b", + "parentId": "5e03511086f7744ccb1fb6e3", + "slotId": "mod_muzzle" + }, + { + "_id": "5e03511086f7744ccb1fb6e5", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "parentId": "5e03511086f7744ccb1fb6e3", + "slotId": "mod_gas_block" + }, + { + "_id": "5e03511086f7744ccb1fb6e6", + "_tpl": "5df916dfbb49d91fb446d6b9", + "parentId": "5e03511086f7744ccb1fb6e2", + "slotId": "mod_handguard" + }, + { + "_id": "5e03511086f7744ccb1fb6e7", + "_tpl": "5dfa3d950dee1b22f862eae0", + "parentId": "5e03511086f7744ccb1fb6e6", + "slotId": "mod_sight_front" + }, + { + "_id": "5e03511086f7744ccb1fb6e8", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "parentId": "5e03511086f7744ccb1fb6e2", + "slotId": "mod_sight_rear" + }, + { + "_id": "5e03511086f7744ccb1fb6e9", + "_tpl": "5df8e053bb49d91fb446d6a6", + "parentId": "5e03511086f7744ccb1fb6dd", + "slotId": "mod_charge" + } + ], + "_name": "SR25_default", + "_parent": "5e03511086f7744ccb1fb6dd", + "_type": "Preset" + }, + "5e0354f786f77425b53eb6c5": { + "_changeWeaponName": false, + "_encyclopedia": "5df24cf80dee1b22f862e9bc", + "_id": "5e0354f786f77425b53eb6c5", + "_items": [ + { + "_id": "5e0354f786f77425b53eb6c7", + "_tpl": "5df24cf80dee1b22f862e9bc", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5e0354f786f77425b53eb6c8", + "_tpl": "5df25b6c0b92095fd441e4cf", + "parentId": "5e0354f786f77425b53eb6c7", + "slotId": "mod_magazine" + }, + { + "_id": "5e0354f786f77425b53eb6c9", + "_tpl": "5df256570dee1b22f862e9c4", + "parentId": "5e0354f786f77425b53eb6c7", + "slotId": "mod_barrel" + }, + { + "_id": "5e0354f786f77425b53eb6ca", + "_tpl": "5df35e7f2a78646d96665dd4", + "parentId": "5e0354f786f77425b53eb6c9", + "slotId": "mod_muzzle" + }, + { + "_id": "5e0354f786f77425b53eb6cb", + "_tpl": "5df35e59c41b2312ea3334d5", + "parentId": "5e0354f786f77425b53eb6c7", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "5e0354f786f77425b53eb6cc", + "_tpl": "5df25d3bfd6b4e6e2276dc9a", + "parentId": "5e0354f786f77425b53eb6cb", + "slotId": "mod_handguard" + }, + { + "_id": "5e0354f786f77425b53eb6cd", + "_tpl": "5df35eb2b11454561e3923e2", + "parentId": "5e0354f786f77425b53eb6cc", + "slotId": "mod_mount_000" + }, + { + "_id": "5e0354f786f77425b53eb6ce", + "_tpl": "5df35eb2b11454561e3923e2", + "parentId": "5e0354f786f77425b53eb6cc", + "slotId": "mod_mount_001" + }, + { + "_id": "5e0354f786f77425b53eb6cf", + "_tpl": "5df35ea9c41b2312ea3334d8", + "parentId": "5e0354f786f77425b53eb6cc", + "slotId": "mod_mount_002" + }, + { + "_id": "5e0354f786f77425b53eb6d0", + "_tpl": "5df35eb2b11454561e3923e2", + "parentId": "5e0354f786f77425b53eb6cc", + "slotId": "mod_mount_003" + }, + { + "_id": "5e0354f786f77425b53eb6d1", + "_tpl": "5df36948bb49d91fb446d5ad", + "parentId": "5e0354f786f77425b53eb6cc", + "slotId": "mod_foregrip" + }, + { + "_id": "5e0354f786f77425b53eb6d2", + "_tpl": "5df38a5fb74cd90030650cb6", + "parentId": "5e0354f786f77425b53eb6cb", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5e0354f786f77425b53eb6d3", + "_tpl": "5df35ddddfc58d14537c2036", + "parentId": "5e0354f786f77425b53eb6cb", + "slotId": "mod_stock_axis" + }, + { + "_id": "5e0354f786f77425b53eb6d4", + "_tpl": "5df35e970b92095fd441e4d2", + "parentId": "5e0354f786f77425b53eb6c7", + "slotId": "mod_mount" + } + ], + "_name": "T5000_default", + "_parent": "5e0354f786f77425b53eb6c7", + "_type": "Preset" + }, + "5e0359bd86f7746b243db876": { + "_changeWeaponName": false, + "_encyclopedia": "5de652c31b7e3716273428be", + "_id": "5e0359bd86f7746b243db876", + "_items": [ + { + "_id": "5e0359bd86f7746b243db877", + "_tpl": "5de652c31b7e3716273428be", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5e0359bd86f7746b243db878", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "parentId": "5e0359bd86f7746b243db877", + "slotId": "mod_magazine" + }, + { + "_id": "5e0359bd86f7746b243db879", + "_tpl": "5de655be4a9f347bc92edb88", + "parentId": "5e0359bd86f7746b243db877", + "slotId": "mod_stock" + }, + { + "_id": "5e0359bd86f7746b243db87a", + "_tpl": "5de65547883dde217541644b", + "parentId": "5e0359bd86f7746b243db877", + "slotId": "mod_barrel" + }, + { + "_id": "5e0359bd86f7746b243db87b", + "_tpl": "5de6556a205ddc616a6bc4f7", + "parentId": "5e0359bd86f7746b243db87a", + "slotId": "mod_muzzle" + }, + { + "_id": "5e0359bd86f7746b243db87c", + "_tpl": "5de6558e9f98ac2bc65950fc", + "parentId": "5e0359bd86f7746b243db877", + "slotId": "mod_mount" + } + ], + "_name": "VPO215_default", + "_parent": "5e0359bd86f7746b243db877", + "_type": "Preset" + }, + "5e035eb586f774756048ec12": { + "_changeWeaponName": false, + "_encyclopedia": "5dcbd56fdbd3d91b3e5468d5", + "_id": "5e035eb586f774756048ec12", + "_items": [ + { + "_id": "5e035eb586f774756048ec19", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5e035eb586f774756048ec1a", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "parentId": "5e035eb586f774756048ec19", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5e035eb586f774756048ec1b", + "_tpl": "5a3501acc4a282000d72293a", + "parentId": "5e035eb586f774756048ec19", + "slotId": "mod_magazine" + }, + { + "_id": "5e035eb586f774756048ec1c", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "parentId": "5e035eb586f774756048ec19", + "slotId": "mod_handguard" + }, + { + "_id": "5e035eb586f774756048ec1d", + "_tpl": "5dcbe9431e1f4616d354987e", + "parentId": "5e035eb586f774756048ec19", + "slotId": "mod_barrel" + }, + { + "_id": "5e035eb586f774756048ec1e", + "_tpl": "5dcbe965e4ed22586443a79d", + "parentId": "5e035eb586f774756048ec1d", + "slotId": "mod_muzzle" + } + ], + "_name": "DTMDR308_default", + "_parent": "5e035eb586f774756048ec19", + "_type": "Preset" + }, + "5eb2963686f7742d3f5ab0f8": { + "_changeWeaponName": false, + "_encyclopedia": "5ea03f7400685063ec28bfa8", + "_id": "5eb2963686f7742d3f5ab0f8", + "_items": [ + { + "_id": "5eb2963686f7742d3f5ab0fd", + "_tpl": "5ea03f7400685063ec28bfa8", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5eb2963686f7742d3f5ab0fe", + "_tpl": "5ea03e9400685063ec28bfa4", + "parentId": "5eb2963686f7742d3f5ab0fd", + "slotId": "mod_stock" + }, + { + "_id": "5eb2963686f7742d3f5ab0ff", + "_tpl": "5ea034eb5aad6446a939737b", + "parentId": "5eb2963686f7742d3f5ab0fd", + "slotId": "mod_magazine" + }, + { + "_id": "5eb2963686f7742d3f5ab100", + "_tpl": "5ea03e5009aa976f2e7a514b", + "parentId": "5eb2963686f7742d3f5ab0fd", + "slotId": "mod_reciever" + }, + { + "_id": "5eb2963686f7742d3f5ab101", + "_tpl": "5ea02bb600685063ec28bfa1", + "parentId": "5eb2963686f7742d3f5ab0fd", + "slotId": "mod_barrel" + } + ], + "_name": "PPSH_default", + "_parent": "5eb2963686f7742d3f5ab0fd", + "_type": "Preset" + }, + "5eb2968186f7746d1f1a4fd5": { + "_changeWeaponName": false, + "_encyclopedia": "5e81c3cbac2bb513793cdc75", + "_id": "5eb2968186f7746d1f1a4fd5", + "_items": [ + { + "_id": "5eb2968186f7746d1f1a4fdf", + "_tpl": "5e81c3cbac2bb513793cdc75", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5eb2968186f7746d1f1a4fe0", + "_tpl": "5e81c519cb2b95385c177551", + "parentId": "5eb2968186f7746d1f1a4fdf", + "slotId": "mod_barrel" + }, + { + "_id": "5eb2968186f7746d1f1a4fe1", + "_tpl": "5e81c6bf763d9f754677beff", + "parentId": "5eb2968186f7746d1f1a4fdf", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5eb2968186f7746d1f1a4fe2", + "_tpl": "5e81edc13397a21db957f6a1", + "parentId": "5eb2968186f7746d1f1a4fdf", + "slotId": "mod_reciever" + }, + { + "_id": "5eb2968186f7746d1f1a4fe3", + "_tpl": "5e81ee4dcb2b95385c177582", + "parentId": "5eb2968186f7746d1f1a4fe2", + "slotId": "mod_sight_rear" + }, + { + "_id": "5eb2968186f7746d1f1a4fe4", + "_tpl": "5e81ee213397a21db957f6a6", + "parentId": "5eb2968186f7746d1f1a4fe2", + "slotId": "mod_sight_front" + }, + { + "_id": "5eb2968186f7746d1f1a4fe5", + "_tpl": "5e81c4ca763d9f754677befa", + "parentId": "5eb2968186f7746d1f1a4fdf", + "slotId": "mod_magazine" + }, + { + "_id": "5eb2968186f7746d1f1a4fe6", + "_tpl": "5e81c6a2ac2bb513793cdc7f", + "parentId": "5eb2968186f7746d1f1a4fdf", + "slotId": "mod_trigger" + }, + { + "_id": "5eb2968186f7746d1f1a4fe7", + "_tpl": "5e81c550763d9f754677befd", + "parentId": "5eb2968186f7746d1f1a4fdf", + "slotId": "mod_hammer" + }, + { + "_id": "5eb2968186f7746d1f1a4fe8", + "_tpl": "5e81c539cb2b95385c177553", + "parentId": "5eb2968186f7746d1f1a4fdf", + "slotId": "mod_catch" + } + ], + "_name": "1911_default", + "_parent": "5eb2968186f7746d1f1a4fdf", + "_type": "Preset" + }, + "5ebbfe23ba87a5065a00a563": { + "_changeWeaponName": true, + "_id": "5ebbfe23ba87a5065a00a563", + "_items": [ + { + "_id": "5ebbfe23ba87a5065a00a564", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5ebbfe23ba87a5065a00a565", + "_tpl": "5d15cf3bd7ad1a67e71518b2", + "parentId": "5ebbfe23ba87a5065a00a564", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5ebbfe23ba87a5065a00a566", + "_tpl": "5d1340cad7ad1a0b0b249869", + "parentId": "5ebbfe23ba87a5065a00a564", + "slotId": "mod_magazine" + }, + { + "_id": "5ebbfe23ba87a5065a00a567", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "5ebbfe23ba87a5065a00a564", + "slotId": "mod_reciever" + }, + { + "_id": "5ebbfe23ba87a5065a00a568", + "_tpl": "5c7d55f52e221644f31bff6a", + "parentId": "5ebbfe23ba87a5065a00a567", + "slotId": "mod_scope" + }, + { + "_id": "5ebbfe23ba87a5065a00a569", + "_tpl": "5c7d560b2e22160bc12c6139", + "parentId": "5ebbfe23ba87a5065a00a568", + "slotId": "mod_scope" + }, + { + "_id": "5ebbfe23ba87a5065a00a56a", + "_tpl": "5c7d55de2e221644f31bff68", + "parentId": "5ebbfe23ba87a5065a00a569", + "slotId": "mod_scope" + }, + { + "_id": "5ebbfe23ba87a5065a00a56b", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "5ebbfe23ba87a5065a00a567", + "slotId": "mod_barrel" + }, + { + "_id": "5ebbfe23ba87a5065a00a56c", + "_tpl": "5ea172e498dacb342978818e", + "parentId": "5ebbfe23ba87a5065a00a56b", + "slotId": "mod_muzzle" + }, + { + "_id": "5ebbfe23ba87a5065a00a56d", + "_tpl": "5ea17bbc09aa976f2e7a51cd", + "parentId": "5ebbfe23ba87a5065a00a56c", + "slotId": "mod_muzzle" + }, + { + "_id": "5ebbfe23ba87a5065a00a56e", + "_tpl": "5d00ec68d7ad1a04a067e5be", + "parentId": "5ebbfe23ba87a5065a00a56b", + "slotId": "mod_gas_block" + }, + { + "_id": "5ebbfe23ba87a5065a00a56f", + "_tpl": "5ea16acdfadf1d18c87b0784", + "parentId": "5ebbfe23ba87a5065a00a567", + "slotId": "mod_handguard" + }, + { + "_id": "5ebbfe23ba87a5065a00a570", + "_tpl": "5c06595c0db834001a66af6c", + "parentId": "5ebbfe23ba87a5065a00a56f", + "slotId": "mod_tactical_000" + }, + { + "_id": "5ebbfe23ba87a5065a00a571", + "_tpl": "5c18b90d2e2216152142466b", + "parentId": "5ebbfe23ba87a5065a00a56f", + "slotId": "mod_sight_front" + }, + { + "_id": "5ebbfe23ba87a5065a00a572", + "_tpl": "5c18b9192e2216398b5a8104", + "parentId": "5ebbfe23ba87a5065a00a567", + "slotId": "mod_sight_rear" + }, + { + "_id": "5ebbfe23ba87a5065a00a573", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "5ebbfe23ba87a5065a00a564", + "slotId": "mod_stock" + }, + { + "_id": "5ebbfe23ba87a5065a00a574", + "_tpl": "5d135ecbd7ad1a21c176542e", + "parentId": "5ebbfe23ba87a5065a00a573", + "slotId": "mod_stock_000" + }, + { + "_id": "5ebbfe23ba87a5065a00a575", + "_tpl": "5ea16d4d5aad6446a939753d", + "parentId": "5ebbfe23ba87a5065a00a564", + "slotId": "mod_charge" + } + ], + "_name": "M4A1_USASOC1", + "_parent": "5ebbfe23ba87a5065a00a564", + "_type": "Preset" + }, + "5ebbff0841a637322117a5fb": { + "_changeWeaponName": true, + "_id": "5ebbff0841a637322117a5fb", + "_items": [ + { + "_id": "5ebbff0841a637322117a5fc", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5ebbff0841a637322117a5fd", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "5ebbff0841a637322117a5fc", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5ebbff0841a637322117a5fe", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "parentId": "5ebbff0841a637322117a5fc", + "slotId": "mod_magazine" + }, + { + "_id": "5ebbff0841a637322117a5ff", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "5ebbff0841a637322117a5fc", + "slotId": "mod_reciever" + }, + { + "_id": "5ebbff0841a637322117a600", + "_tpl": "5c0a2cec0db834001b7ce47d", + "parentId": "5ebbff0841a637322117a5ff", + "slotId": "mod_scope" + }, + { + "_id": "5ebbff0841a637322117a601", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "5ebbff0841a637322117a5ff", + "slotId": "mod_barrel" + }, + { + "_id": "5ebbff0841a637322117a602", + "_tpl": "5ea172e498dacb342978818e", + "parentId": "5ebbff0841a637322117a601", + "slotId": "mod_muzzle" + }, + { + "_id": "5ebbff0841a637322117a603", + "_tpl": "5ea17bbc09aa976f2e7a51cd", + "parentId": "5ebbff0841a637322117a602", + "slotId": "mod_muzzle" + }, + { + "_id": "5ebbff0841a637322117a604", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "5ebbff0841a637322117a601", + "slotId": "mod_gas_block" + }, + { + "_id": "5ebbff0841a637322117a605", + "_tpl": "5ea16ada09aa976f2e7a51be", + "parentId": "5ebbff0841a637322117a5ff", + "slotId": "mod_handguard" + }, + { + "_id": "5ebbff0841a637322117a606", + "_tpl": "5c06595c0db834001a66af6c", + "parentId": "5ebbff0841a637322117a605", + "slotId": "mod_tactical_000" + }, + { + "_id": "5ebbff0841a637322117a607", + "_tpl": "5c17804b2e2216152006c02f", + "parentId": "5ebbff0841a637322117a605", + "slotId": "mod_sight_front" + }, + { + "_id": "5ebbff0841a637322117a608", + "_tpl": "5c1780312e221602b66cc189", + "parentId": "5ebbff0841a637322117a5ff", + "slotId": "mod_sight_rear" + }, + { + "_id": "5ebbff0841a637322117a609", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "5ebbff0841a637322117a5fc", + "slotId": "mod_stock" + }, + { + "_id": "5ebbff0841a637322117a60a", + "_tpl": "5ae30c9a5acfc408fb139a03", + "parentId": "5ebbff0841a637322117a609", + "slotId": "mod_stock_000" + }, + { + "_id": "5ebbff0841a637322117a60b", + "_tpl": "5ea16d4d5aad6446a939753d", + "parentId": "5ebbff0841a637322117a5fc", + "slotId": "mod_charge" + } + ], + "_name": "M4A1_USASOC2", + "_parent": "5ebbff0841a637322117a5fc", + "_type": "Preset" + }, + "5f06d6bb4010601e3232cd22": { + "_changeWeaponName": false, + "_encyclopedia": "5e870397991fd70db46995c8", + "_id": "5f06d6bb4010601e3232cd22", + "_items": [ + { + "_id": "5f06d6bb4010601e3232cd2a", + "_tpl": "5e870397991fd70db46995c8", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5f06d6bb4010601e3232cd2b", + "_tpl": "5e87071478f43e51ca2de5e1", + "parentId": "5f06d6bb4010601e3232cd2a", + "slotId": "mod_barrel" + }, + { + "_id": "5f06d6bb4010601e3232cd2c", + "_tpl": "5e8708d4ae379e67d22e0102", + "parentId": "5f06d6bb4010601e3232cd2b", + "slotId": "mod_sight_front" + }, + { + "_id": "5f06d6bb4010601e3232cd2d", + "_tpl": "5e87076ce2db31558c75a11d", + "parentId": "5f06d6bb4010601e3232cd2a", + "slotId": "mod_handguard" + }, + { + "_id": "5f06d6bb4010601e3232cd2e", + "_tpl": "5e87080c81c4ed43e83cefda", + "parentId": "5f06d6bb4010601e3232cd2a", + "slotId": "mod_magazine" + }, + { + "_id": "5f06d6bb4010601e3232cd2f", + "_tpl": "5e87116b81c4ed43e83cefdd", + "parentId": "5f06d6bb4010601e3232cd2a", + "slotId": "mod_stock" + }, + { + "_id": "5f06d6bb4010601e3232cd30", + "_tpl": "5e87114fe2db31558c75a120", + "parentId": "5f06d6bb4010601e3232cd2a", + "slotId": "mod_mount" + } + ], + "_name": "moss590_default", + "_parent": "5f06d6bb4010601e3232cd2a", + "_type": "Preset" + }, + "5f06d6e1475d472556679d16": { + "_changeWeaponName": false, + "_encyclopedia": "5e81ebcd8e146c7080625e15", + "_id": "5f06d6e1475d472556679d16", + "_items": [ + { + "_id": "5f06d6e1475d472556679d19", + "_tpl": "5e81ebcd8e146c7080625e15", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "5f06d6e1475d472556679d1a", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "5f06d6e1475d472556679d19", + "slotId": "mod_pistol_grip" + } + ], + "_name": "FN_GL40_default", + "_parent": "5f06d6e1475d472556679d19", + "_type": "Preset" + }, + "5f6762e964af6a2aa319deeb": { + "_changeWeaponName": false, + "_encyclopedia": "5f36a0e5fbf956000b716b65", + "_id": "5f6762e964af6a2aa319deeb", + "_items": [ + { + "_id": "5f6762e964af6a2aa319def6", + "_tpl": "5f36a0e5fbf956000b716b65", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5f6762e964af6a2aa319def7", + "_tpl": "5f3e7801153b8571434a924c", + "parentId": "5f6762e964af6a2aa319def6", + "slotId": "mod_barrel" + }, + { + "_id": "5f6762e964af6a2aa319def8", + "_tpl": "5f3e778efcd9b651187d7201", + "parentId": "5f6762e964af6a2aa319def6", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5f6762e964af6a2aa319def9", + "_tpl": "5f3e7823ddc4f03b010e2045", + "parentId": "5f6762e964af6a2aa319def6", + "slotId": "mod_reciever" + }, + { + "_id": "5f6762e964af6a2aa319defa", + "_tpl": "5f3e7897ddc4f03b010e204a", + "parentId": "5f6762e964af6a2aa319def9", + "slotId": "mod_sight_rear" + }, + { + "_id": "5f6762e964af6a2aa319defb", + "_tpl": "5f3e78a7fbf956000b716b8e", + "parentId": "5f6762e964af6a2aa319def9", + "slotId": "mod_sight_front" + }, + { + "_id": "5f6762e964af6a2aa319defc", + "_tpl": "5f3e77b26cda304dcc634057", + "parentId": "5f6762e964af6a2aa319def6", + "slotId": "mod_magazine" + }, + { + "_id": "5f6762e964af6a2aa319defd", + "_tpl": "5f3e772a670e2a7b01739a52", + "parentId": "5f6762e964af6a2aa319def6", + "slotId": "mod_trigger" + }, + { + "_id": "5f6762e964af6a2aa319defe", + "_tpl": "5f3e76d86cda304dcc634054", + "parentId": "5f6762e964af6a2aa319def6", + "slotId": "mod_hammer" + }, + { + "_id": "5f6762e964af6a2aa319deff", + "_tpl": "5f3e777688ca2d00ad199d25", + "parentId": "5f6762e964af6a2aa319def6", + "slotId": "mod_catch" + } + ], + "_name": "m45a1_default", + "_parent": "5f6762e964af6a2aa319def6", + "_type": "Preset" + }, + "5f676b779ab5ec19f028eaf3": { + "_changeWeaponName": false, + "_encyclopedia": "5f2a9575926fd9352339381f", + "_id": "5f676b779ab5ec19f028eaf3", + "_items": [ + { + "_id": "5f676b779ab5ec19f028eaf5", + "_tpl": "5f2a9575926fd9352339381f", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5f676b779ab5ec19f028eaf6", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "5f676b779ab5ec19f028eaf5", + "slotId": "mod_magazine" + }, + { + "_id": "5f676b779ab5ec19f028eaf7", + "_tpl": "5f2aa46b878ef416f538b567", + "parentId": "5f676b779ab5ec19f028eaf5", + "slotId": "mod_barrel" + }, + { + "_id": "5f676b779ab5ec19f028eaf8", + "_tpl": "5f2aa4464b50c14bcf07acdb", + "parentId": "5f676b779ab5ec19f028eaf7", + "slotId": "mod_muzzle" + }, + { + "_id": "5f676b779ab5ec19f028eaf9", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "parentId": "5f676b779ab5ec19f028eaf5", + "slotId": "mod_handguard" + }, + { + "_id": "5f676b779ab5ec19f028eafa", + "_tpl": "5f2aa493cd375f14e15eea72", + "parentId": "5f676b779ab5ec19f028eaf9", + "slotId": "mod_mount_000" + }, + { + "_id": "5f676b779ab5ec19f028eafb", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "parentId": "5f676b779ab5ec19f028eaf5", + "slotId": "mod_mount" + } + ], + "_name": "RFB_default", + "_parent": "5f676b779ab5ec19f028eaf5", + "_type": "Preset" + }, + "5f6770f839a13e712a1dff54": { + "_changeWeaponName": true, + "_id": "5f6770f839a13e712a1dff54", + "_items": [ + { + "_id": "5f6770f839a13e712a1dff55", + "_tpl": "5e848cc2988a8701445df1e8", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5f6770f839a13e712a1dff56", + "_tpl": "5e848d1c264f7c180b5e35a9", + "parentId": "5f6770f839a13e712a1dff55", + "slotId": "mod_barrel" + }, + { + "_id": "5f6770f839a13e712a1dff57", + "_tpl": "5e848d51e4dbc5266a4ec63b", + "parentId": "5f6770f839a13e712a1dff55", + "slotId": "mod_handguard" + }, + { + "_id": "5f6770f839a13e712a1dff58", + "_tpl": "5f647d9f8499b57dc40ddb93", + "parentId": "5f6770f839a13e712a1dff55", + "slotId": "mod_magazine" + }, + { + "_id": "5f6770f839a13e712a1dff59", + "_tpl": "5e848d99865c0f329958c83b", + "parentId": "5f6770f839a13e712a1dff55", + "slotId": "mod_stock" + }, + { + "_id": "5f6770f839a13e712a1dff5a", + "_tpl": "5e848dc4e4dbc5266a4ec63d", + "parentId": "5f6770f839a13e712a1dff59", + "slotId": "mod_stock" + } + ], + "_name": "KS23_short", + "_parent": "5f6770f839a13e712a1dff55", + "_type": "Preset" + }, + "5f6771214ef1ca4f4e1b8a06": { + "_changeWeaponName": false, + "_encyclopedia": "5e848cc2988a8701445df1e8", + "_id": "5f6771214ef1ca4f4e1b8a06", + "_items": [ + { + "_id": "5f6771214ef1ca4f4e1b8a07", + "_tpl": "5e848cc2988a8701445df1e8", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5f6771214ef1ca4f4e1b8a08", + "_tpl": "5e848d2eea0a7c419c2f9bfd", + "parentId": "5f6771214ef1ca4f4e1b8a07", + "slotId": "mod_barrel" + }, + { + "_id": "5f6771214ef1ca4f4e1b8a09", + "_tpl": "5e848d51e4dbc5266a4ec63b", + "parentId": "5f6771214ef1ca4f4e1b8a07", + "slotId": "mod_handguard" + }, + { + "_id": "5f6771214ef1ca4f4e1b8a0a", + "_tpl": "5f647d9f8499b57dc40ddb93", + "parentId": "5f6771214ef1ca4f4e1b8a07", + "slotId": "mod_magazine" + }, + { + "_id": "5f6771214ef1ca4f4e1b8a0b", + "_tpl": "5e848db4681bea2ada00daa9", + "parentId": "5f6771214ef1ca4f4e1b8a07", + "slotId": "mod_stock" + } + ], + "_name": "KS23M_long_default", + "_parent": "5f6771214ef1ca4f4e1b8a07", + "_type": "Preset" + }, + "5fd25119dd870108a754a163": { + "_changeWeaponName": false, + "_encyclopedia": "5fc22d7c187fea44d52eda44", + "_id": "5fd25119dd870108a754a163", + "_items": [ + { + "_id": "5fd25119dd870108a754a165", + "_tpl": "5fc22d7c187fea44d52eda44", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5fd25119dd870108a754a166", + "_tpl": "57c55efc2459772d2c6271e7", + "parentId": "5fd25119dd870108a754a165", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5fd25119dd870108a754a167", + "_tpl": "5fc23426900b1d5091531e15", + "parentId": "5fd25119dd870108a754a165", + "slotId": "mod_magazine" + }, + { + "_id": "5fd25119dd870108a754a168", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "5fd25119dd870108a754a165", + "slotId": "mod_stock_001" + }, + { + "_id": "5fd25119dd870108a754a169", + "_tpl": "5fc2369685fd526b824a5713", + "parentId": "5fd25119dd870108a754a168", + "slotId": "mod_stock_000" + }, + { + "_id": "5fd25119dd870108a754a16a", + "_tpl": "5fc278107283c4046c581489", + "parentId": "5fd25119dd870108a754a165", + "slotId": "mod_reciever" + }, + { + "_id": "5fd25119dd870108a754a16b", + "_tpl": "5fc23678ab884124df0cd590", + "parentId": "5fd25119dd870108a754a16a", + "slotId": "mod_barrel" + }, + { + "_id": "5fd25119dd870108a754a16c", + "_tpl": "5fc23636016cce60e8341b05", + "parentId": "5fd25119dd870108a754a16b", + "slotId": "mod_muzzle" + }, + { + "_id": "5fd25119dd870108a754a16d", + "_tpl": "5fc2360f900b1d5091531e19", + "parentId": "5fd25119dd870108a754a16b", + "slotId": "mod_gas_block" + }, + { + "_id": "5fd25119dd870108a754a16e", + "_tpl": "5fc235db2770a0045c59c683", + "parentId": "5fd25119dd870108a754a16a", + "slotId": "mod_handguard" + } + ], + "_name": "mjolnir_default", + "_parent": "5fd25119dd870108a754a165", + "_type": "Preset" + }, + "5fd2517dbdd50d684f73a474": { + "_changeWeaponName": false, + "_encyclopedia": "5fc3e272f8b6a877a729eac5", + "_id": "5fd2517dbdd50d684f73a474", + "_items": [ + { + "_id": "5fd2517dbdd50d684f73a47c", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "5fd2517dbdd50d684f73a47d", + "_tpl": "5fc3e466187fea44d52eda90", + "parentId": "5fd2517dbdd50d684f73a47c", + "slotId": "mod_magazine" + }, + { + "_id": "5fd2517dbdd50d684f73a47e", + "_tpl": "5fc3e4ee7283c4046c5814af", + "parentId": "5fd2517dbdd50d684f73a47c", + "slotId": "mod_stock" + }, + { + "_id": "5fd2517dbdd50d684f73a47f", + "_tpl": "5fc3e4a27283c4046c5814ab", + "parentId": "5fd2517dbdd50d684f73a47c", + "slotId": "mod_barrel" + }, + { + "_id": "5fd2517dbdd50d684f73a480", + "_tpl": "5fc53954f8b6a877a729eaeb", + "parentId": "5fd2517dbdd50d684f73a47c", + "slotId": "mod_mount_000" + }, + { + "_id": "5fd2517dbdd50d684f73a481", + "_tpl": "5fc5396e900b1d5091531e72", + "parentId": "5fd2517dbdd50d684f73a47c", + "slotId": "mod_mount_001" + }, + { + "_id": "5fd2517dbdd50d684f73a482", + "_tpl": "5fc5396e900b1d5091531e72", + "parentId": "5fd2517dbdd50d684f73a47c", + "slotId": "mod_mount_002" + } + ], + "_name": "ump45_default", + "_parent": "5fd2517dbdd50d684f73a47c", + "_type": "Preset" + }, + "5fd251a31189a17bcc172662": { + "_changeWeaponName": false, + "_encyclopedia": "5fbcc1d9016cce60e8341ab3", + "_id": "5fd251a31189a17bcc172662", + "_items": [ + { + "_id": "5fd35eb1a8c881276c55e714", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5fd35eb1a8c881276c55e715", + "_tpl": "5fbcbd6c187fea44d52eda14", + "parentId": "5fd35eb1a8c881276c55e714", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5fd35eb1a8c881276c55e716", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "5fd35eb1a8c881276c55e714", + "slotId": "mod_magazine" + }, + { + "_id": "5fd35eb1a8c881276c55e717", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "parentId": "5fd35eb1a8c881276c55e714", + "slotId": "mod_reciever" + }, + { + "_id": "5fd35eb1a8c881276c55e718", + "_tpl": "5fbbfacda56d053a3543f799", + "parentId": "5fd35eb1a8c881276c55e717", + "slotId": "mod_barrel" + }, + { + "_id": "5fd35eb1a8c881276c55e719", + "_tpl": "5fbc22ccf24b94483f726483", + "parentId": "5fd35eb1a8c881276c55e718", + "slotId": "mod_muzzle" + }, + { + "_id": "5fd35eb1a8c881276c55e71a", + "_tpl": "5fbcbd10ab884124df0cd563", + "parentId": "5fd35eb1a8c881276c55e719", + "slotId": "mod_muzzle_000" + }, + { + "_id": "5fd35eb1a8c881276c55e71b", + "_tpl": "5fbc210bf24b94483f726481", + "parentId": "5fd35eb1a8c881276c55e718", + "slotId": "mod_gas_block" + }, + { + "_id": "5fd35eb1a8c881276c55e71c", + "_tpl": "5fbc226eca32ed67276c155d", + "parentId": "5fd35eb1a8c881276c55e717", + "slotId": "mod_handguard" + }, + { + "_id": "5fd35eb1a8c881276c55e71d", + "_tpl": "5fc0fa362770a0045c59c677", + "parentId": "5fd35eb1a8c881276c55e71c", + "slotId": "mod_sight_front" + }, + { + "_id": "5fd35eb1a8c881276c55e71e", + "_tpl": "5fc0fa957283c4046c58147e", + "parentId": "5fd35eb1a8c881276c55e717", + "slotId": "mod_sight_rear" + }, + { + "_id": "5fd35eb1a8c881276c55e71f", + "_tpl": "5fbcc437d724d907e2077d5c", + "parentId": "5fd35eb1a8c881276c55e714", + "slotId": "mod_stock" + }, + { + "_id": "5fd35eb1a8c881276c55e720", + "_tpl": "5fbcc640016cce60e8341acc", + "parentId": "5fd35eb1a8c881276c55e714", + "slotId": "mod_charge" + } + ], + "_name": "mcx_short_default", + "_parent": "5fd35eb1a8c881276c55e714", + "_type": "Preset" + }, + "5fd251c90d9c95034825edb5": { + "_changeWeaponName": false, + "_encyclopedia": "5fc3f2d5900b1d5091531e57", + "_id": "5fd251c90d9c95034825edb5", + "_items": [ + { + "_id": "5fd251c90d9c95034825edb6", + "_tpl": "5fc3f2d5900b1d5091531e57", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "5fd251c90d9c95034825edb7", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "5fd251c90d9c95034825edb6", + "slotId": "mod_magazine" + }, + { + "_id": "5fd251c90d9c95034825edb8", + "_tpl": "5fb6567747ce63734e3fa1dc", + "parentId": "5fd251c90d9c95034825edb6", + "slotId": "mod_sight_front" + }, + { + "_id": "5fd251c90d9c95034825edb9", + "_tpl": "5fb6564947ce63734e3fa1da", + "parentId": "5fd251c90d9c95034825edb6", + "slotId": "mod_sight_rear" + }, + { + "_id": "5fd251c90d9c95034825edba", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "parentId": "5fd251c90d9c95034825edb6", + "slotId": "mod_stock" + }, + { + "_id": "5fd251c90d9c95034825edbb", + "_tpl": "5fbbc366ca32ed67276c1557", + "parentId": "5fd251c90d9c95034825edb6", + "slotId": "mod_barrel" + }, + { + "_id": "5fd251c90d9c95034825edbc", + "_tpl": "5fbbc34106bde7524f03cbe9", + "parentId": "5fd251c90d9c95034825edbb", + "slotId": "mod_muzzle" + }, + { + "_id": "5fd251c90d9c95034825edbd", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "parentId": "5fd251c90d9c95034825edb6", + "slotId": "mod_mount" + }, + { + "_id": "5fd251c90d9c95034825edbe", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "5fd251c90d9c95034825edb6", + "slotId": "mod_mount_001" + }, + { + "_id": "5fd251c90d9c95034825edbf", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "5fd251c90d9c95034825edb6", + "slotId": "mod_mount_002" + } + ], + "_name": "vector_9_default", + "_parent": "5fd251c90d9c95034825edb6", + "_type": "Preset" + }, + "5fd251ee16cac650092f5d02": { + "_changeWeaponName": false, + "_encyclopedia": "5fb64bc92b1b027b1f50bcf2", + "_id": "5fd251ee16cac650092f5d02", + "_items": [ + { + "_id": "5fd251ee16cac650092f5d04", + "_tpl": "5fb64bc92b1b027b1f50bcf2", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "5fd251ee16cac650092f5d05", + "_tpl": "5fb651b52b1b027b1f50bcff", + "parentId": "5fd251ee16cac650092f5d04", + "slotId": "mod_magazine" + }, + { + "_id": "5fd251ee16cac650092f5d06", + "_tpl": "5fb6567747ce63734e3fa1dc", + "parentId": "5fd251ee16cac650092f5d04", + "slotId": "mod_sight_front" + }, + { + "_id": "5fd251ee16cac650092f5d07", + "_tpl": "5fb6564947ce63734e3fa1da", + "parentId": "5fd251ee16cac650092f5d04", + "slotId": "mod_sight_rear" + }, + { + "_id": "5fd251ee16cac650092f5d08", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "parentId": "5fd251ee16cac650092f5d04", + "slotId": "mod_stock" + }, + { + "_id": "5fd251ee16cac650092f5d09", + "_tpl": "5fb65363d1409e5ca04b54f5", + "parentId": "5fd251ee16cac650092f5d04", + "slotId": "mod_barrel" + }, + { + "_id": "5fd251ee16cac650092f5d0a", + "_tpl": "5fb6548dd1409e5ca04b54f9", + "parentId": "5fd251ee16cac650092f5d09", + "slotId": "mod_muzzle" + }, + { + "_id": "5fd251ee16cac650092f5d0b", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "parentId": "5fd251ee16cac650092f5d04", + "slotId": "mod_mount" + }, + { + "_id": "5fd251ee16cac650092f5d0c", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "5fd251ee16cac650092f5d04", + "slotId": "mod_mount_001" + }, + { + "_id": "5fd251ee16cac650092f5d0d", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "5fd251ee16cac650092f5d04", + "slotId": "mod_mount_002" + } + ], + "_name": "vector_45_default", + "_parent": "5fd251ee16cac650092f5d04", + "_type": "Preset" + }, + "60479c3f420fac5ebc199f86": { + "_changeWeaponName": false, + "_encyclopedia": "60339954d62c9b14ed777c06", + "_id": "60479c3f420fac5ebc199f86", + "_items": [ + { + "_id": "60479c3f420fac5ebc199f92", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "60479c3f420fac5ebc199f93", + "_tpl": "602e71bd53a60014f9705bfa", + "parentId": "60479c3f420fac5ebc199f92", + "slotId": "mod_pistol_grip" + }, + { + "_id": "60479c3f420fac5ebc199f94", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "60479c3f420fac5ebc199f92", + "slotId": "mod_magazine" + }, + { + "_id": "60479c3f420fac5ebc199f95", + "_tpl": "602e63fb6335467b0c5ac94d", + "parentId": "60479c3f420fac5ebc199f92", + "slotId": "mod_reciever" + }, + { + "_id": "60479c3f420fac5ebc199f96", + "_tpl": "603372b4da11d6478d5a07ff", + "parentId": "60479c3f420fac5ebc199f95", + "slotId": "mod_barrel" + }, + { + "_id": "60479c3f420fac5ebc199f97", + "_tpl": "60337f5dce399e10262255d1", + "parentId": "60479c3f420fac5ebc199f96", + "slotId": "mod_muzzle" + }, + { + "_id": "60479c3f420fac5ebc199f98", + "_tpl": "6034e3cb0ddce744014cb870", + "parentId": "60479c3f420fac5ebc199f95", + "slotId": "mod_handguard" + }, + { + "_id": "60479c3f420fac5ebc199f99", + "_tpl": "602e3f1254072b51b239f713", + "parentId": "60479c3f420fac5ebc199f92", + "slotId": "mod_stock_001" + }, + { + "_id": "60479c3f420fac5ebc199f9a", + "_tpl": "602e620f9b513876d4338d9a", + "parentId": "60479c3f420fac5ebc199f99", + "slotId": "mod_stock_000" + }, + { + "_id": "60479c3f420fac5ebc199f9b", + "_tpl": "6033749e88382f4fab3fd2c5", + "parentId": "60479c3f420fac5ebc199f92", + "slotId": "mod_charge" + }, + { + "_id": "60479c3f420fac5ebc199f9c", + "_tpl": "602f85fd9b513876d4338d9c", + "parentId": "60479c3f420fac5ebc199f92", + "slotId": "mod_tactical_000" + } + ], + "_name": "STM-9 Default", + "_parent": "60479c3f420fac5ebc199f92", + "_type": "Preset" + }, + "60479fb29c15b12b9a480fb0": { + "_changeWeaponName": false, + "_encyclopedia": "602a9740da11d6478d5a06dc", + "_id": "60479fb29c15b12b9a480fb0", + "_items": [ + { + "_id": "60479fb29c15b12b9a480fb1", + "_tpl": "602a9740da11d6478d5a06dc", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "60479fb29c15b12b9a480fb2", + "_tpl": "602a95edda11d6478d5a06da", + "parentId": "60479fb29c15b12b9a480fb1", + "slotId": "mod_barrel" + }, + { + "_id": "60479fb29c15b12b9a480fb3", + "_tpl": "60228924961b8d75ee233c32", + "parentId": "60479fb29c15b12b9a480fb1", + "slotId": "mod_reciever" + }, + { + "_id": "60479fb29c15b12b9a480fb4", + "_tpl": "60229948cacb6b0506369e27", + "parentId": "60479fb29c15b12b9a480fb3", + "slotId": "mod_sight_rear" + }, + { + "_id": "60479fb29c15b12b9a480fb5", + "_tpl": "60228a76d62c9b14ed777a66", + "parentId": "60479fb29c15b12b9a480fb3", + "slotId": "mod_sight_front" + }, + { + "_id": "60479fb29c15b12b9a480fb6", + "_tpl": "602286df23506e50807090c6", + "parentId": "60479fb29c15b12b9a480fb1", + "slotId": "mod_magazine" + } + ], + "_name": "PL-15", + "_parent": "60479fb29c15b12b9a480fb1", + "_type": "Preset" + }, + "60b7c28ee53e4c5c8945dd73": { + "_changeWeaponName": false, + "_encyclopedia": "606dae0ab0e443224b421bb7", + "_id": "60b7c28ee53e4c5c8945dd73", + "_items": [ + { + "_id": "60b7c28ee53e4c5c8945dd79", + "_tpl": "606dae0ab0e443224b421bb7", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "60b7c28ee53e4c5c8945dd7a", + "_tpl": "6076c1b9f2cb2e02a42acedc", + "parentId": "60b7c28ee53e4c5c8945dd79", + "slotId": "mod_barrel" + }, + { + "_id": "60b7c28ee53e4c5c8945dd7b", + "_tpl": "607d5aa50494a626335e12ed", + "parentId": "60b7c28ee53e4c5c8945dd79", + "slotId": "mod_handguard" + }, + { + "_id": "60b7c28ee53e4c5c8945dd7c", + "_tpl": "6076c87f232e5a31c233d50e", + "parentId": "60b7c28ee53e4c5c8945dd79", + "slotId": "mod_magazine" + }, + { + "_id": "60b7c28ee53e4c5c8945dd7d", + "_tpl": "607d5a891246154cad35d6aa", + "parentId": "60b7c28ee53e4c5c8945dd79", + "slotId": "mod_stock" + } + ], + "_name": "MP-155 default", + "_parent": "60b7c28ee53e4c5c8945dd79", + "_type": "Preset" + }, + "60b7c2bd95047637182d90a4": { + "_changeWeaponName": true, + "_id": "60b7c2bd95047637182d90a4", + "_items": [ + { + "_id": "60b7c2bd95047637182d90ae", + "_tpl": "606dae0ab0e443224b421bb7", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "60b7c2bd95047637182d90af", + "_tpl": "6076c1b9f2cb2e02a42acedc", + "parentId": "60b7c2bd95047637182d90ae", + "slotId": "mod_barrel" + }, + { + "_id": "60b7c2bd95047637182d90b0", + "_tpl": "606ee5c81246154cad35d65e", + "parentId": "60b7c2bd95047637182d90ae", + "slotId": "mod_handguard" + }, + { + "_id": "60b7c2bd95047637182d90b1", + "_tpl": "6076c87f232e5a31c233d50e", + "parentId": "60b7c2bd95047637182d90ae", + "slotId": "mod_magazine" + }, + { + "_id": "60b7c2bd95047637182d90b2", + "_tpl": "606eef46232e5a31c233d500", + "parentId": "60b7c2bd95047637182d90ae", + "slotId": "mod_stock" + }, + { + "_id": "60b7c2bd95047637182d90b3", + "_tpl": "606eef756d0bd7580617baf8", + "parentId": "60b7c2bd95047637182d90b2", + "slotId": "mod_stock" + }, + { + "_id": "60b7c2bd95047637182d90b4", + "_tpl": "606ef0812535c57a13424d20", + "parentId": "60b7c2bd95047637182d90b3", + "slotId": "mod_stock" + }, + { + "_id": "60b7c2bd95047637182d90b5", + "_tpl": "606f2696f2cb2e02a42aceb1", + "parentId": "60b7c2bd95047637182d90b3", + "slotId": "mod_tactical" + }, + { + "_id": "60b7c2bd95047637182d90b6", + "_tpl": "60785ce5132d4d12c81fd918", + "parentId": "60b7c2bd95047637182d90ae", + "slotId": "mod_mount" + } + ], + "_name": "MP-155 Ultima", + "_parent": "60b7c2bd95047637182d90ae", + "_type": "Preset" + }, + "60b7d76e2a3c79100f1979de": { + "_changeWeaponName": false, + "_encyclopedia": "606587252535c57a13424cfd", + "_id": "60b7d76e2a3c79100f1979de", + "_items": [ + { + "_id": "60b7d76e2a3c79100f1979ec", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "60b7d76e2a3c79100f1979ed", + "_tpl": "55802f5d4bdc2dac148b458f", + "parentId": "60b7d76e2a3c79100f1979ec", + "slotId": "mod_pistol_grip" + }, + { + "_id": "60b7d76e2a3c79100f1979ee", + "_tpl": "59d6272486f77466146386ff", + "parentId": "60b7d76e2a3c79100f1979ec", + "slotId": "mod_magazine" + }, + { + "_id": "60b7d76e2a3c79100f1979ef", + "_tpl": "606587a88900dc2d9a55b659", + "parentId": "60b7d76e2a3c79100f1979ec", + "slotId": "mod_reciever" + }, + { + "_id": "60b7d76e2a3c79100f1979f0", + "_tpl": "60658776f2cb2e02a42ace2b", + "parentId": "60b7d76e2a3c79100f1979ef", + "slotId": "mod_barrel" + }, + { + "_id": "60b7d76e2a3c79100f1979f1", + "_tpl": "6065c6e7132d4d12c81fd8e1", + "parentId": "60b7d76e2a3c79100f1979f0", + "slotId": "mod_muzzle" + }, + { + "_id": "60b7d76e2a3c79100f1979f2", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "parentId": "60b7d76e2a3c79100f1979f0", + "slotId": "mod_gas_block" + }, + { + "_id": "60b7d76e2a3c79100f1979f3", + "_tpl": "6065880c132d4d12c81fd8da", + "parentId": "60b7d76e2a3c79100f1979ef", + "slotId": "mod_handguard" + }, + { + "_id": "60b7d76e2a3c79100f1979f4", + "_tpl": "5bc09a30d4351e00367fb7c8", + "parentId": "60b7d76e2a3c79100f1979f3", + "slotId": "mod_sight_front" + }, + { + "_id": "60b7d76e2a3c79100f1979f5", + "_tpl": "5bc09a18d4351e003562b68e", + "parentId": "60b7d76e2a3c79100f1979ef", + "slotId": "mod_sight_rear" + }, + { + "_id": "60b7d76e2a3c79100f1979f6", + "_tpl": "606587e18900dc2d9a55b65f", + "parentId": "60b7d76e2a3c79100f1979ec", + "slotId": "mod_stock_001" + }, + { + "_id": "60b7d76e2a3c79100f1979f7", + "_tpl": "606587d11246154cad35d635", + "parentId": "60b7d76e2a3c79100f1979f6", + "slotId": "mod_stock_000" + }, + { + "_id": "60b7d76e2a3c79100f1979f8", + "_tpl": "606587bd6d0bd7580617bacc", + "parentId": "60b7d76e2a3c79100f1979ec", + "slotId": "mod_charge" + } + ], + "_name": "CMMG MK47 short default", + "_parent": "60b7d76e2a3c79100f1979ec", + "_type": "Preset" + }, + "618aae5a4dc2d41d5c30264b": { + "_changeWeaponName": true, + "_id": "618aae5a4dc2d41d5c30264b", + "_items": [ + { + "_id": "618aae5a4dc2d41d5c302655", + "_tpl": "583990e32459771419544dd2", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "618aae5a4dc2d41d5c302656", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "618aae5a4dc2d41d5c302655", + "slotId": "mod_pistol_grip" + }, + { + "_id": "618aae5a4dc2d41d5c302657", + "_tpl": "57dc347d245977596754e7a1", + "parentId": "618aae5a4dc2d41d5c302655", + "slotId": "mod_stock" + }, + { + "_id": "618aae5a4dc2d41d5c302658", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "618aae5a4dc2d41d5c302655", + "slotId": "mod_magazine" + }, + { + "_id": "618aae5a4dc2d41d5c302659", + "_tpl": "57ffb0e42459777d047111c5", + "parentId": "618aae5a4dc2d41d5c302655", + "slotId": "mod_muzzle" + }, + { + "_id": "618aae5a4dc2d41d5c30265a", + "_tpl": "57dc334d245977597164366f", + "parentId": "618aae5a4dc2d41d5c302655", + "slotId": "mod_reciever" + }, + { + "_id": "618aae5a4dc2d41d5c30265b", + "_tpl": "5947db3f86f77447880cf76f", + "parentId": "618aae5a4dc2d41d5c302655", + "slotId": "mod_mount_000" + }, + { + "_id": "618aae5a4dc2d41d5c30265c", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "618aae5a4dc2d41d5c302655", + "slotId": "mod_gas_block" + }, + { + "_id": "618aae5a4dc2d41d5c30265d", + "_tpl": "57dc32dc245977596d4ef3d3", + "parentId": "618aae5a4dc2d41d5c30265c", + "slotId": "mod_handguard" + } + ], + "_name": "AKS74U_Vympel", + "_parent": "618aae5a4dc2d41d5c302655", + "_type": "Preset" + }, + "618aaeb931ddad66c15eb7e9": { + "_changeWeaponName": true, + "_id": "618aaeb931ddad66c15eb7e9", + "_items": [ + { + "_id": "618ab12c34aa2e47480fba3c", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "618ab12c34aa2e47480fba3d", + "_tpl": "57c44dd02459772d2e0ae249", + "parentId": "618ab12c34aa2e47480fba3c", + "slotId": "mod_muzzle" + }, + { + "_id": "618ab12c34aa2e47480fba3e", + "_tpl": "57c44e7b2459772d28133248", + "parentId": "618ab12c34aa2e47480fba3d", + "slotId": "mod_sight_rear" + }, + { + "_id": "618ab12c34aa2e47480fba3f", + "_tpl": "57c44f4f2459772d2c627113", + "parentId": "618ab12c34aa2e47480fba3c", + "slotId": "mod_reciever" + }, + { + "_id": "618ab12c34aa2e47480fba40", + "_tpl": "57838f9f2459774a150289a0", + "parentId": "618ab12c34aa2e47480fba3c", + "slotId": "mod_magazine" + }, + { + "_id": "618ab12c34aa2e47480fba41", + "_tpl": "57c44fa82459772d2d75e415", + "parentId": "618ab12c34aa2e47480fba3c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "618ab12c34aa2e47480fba42", + "_tpl": "57c450252459772d28133253", + "parentId": "618ab12c34aa2e47480fba3c", + "slotId": "mod_stock" + }, + { + "_id": "618ab12c34aa2e47480fba43", + "_tpl": "5e569a2e56edd02abe09f280", + "parentId": "618ab12c34aa2e47480fba3c", + "slotId": "mod_mount_004" + }, + { + "_id": "618ab12c34aa2e47480fba44", + "_tpl": "591c4efa86f7741030027726", + "parentId": "618ab12c34aa2e47480fba43", + "slotId": "mod_scope" + } + ], + "_name": "AS_Val_Cobra", + "_parent": "618ab12c34aa2e47480fba3c", + "_type": "Preset" + }, + "618aaf656bbeff39ad4acf0c": { + "_changeWeaponName": true, + "_id": "618aaf656bbeff39ad4acf0c", + "_items": [ + { + "_id": "6396b7886a00541d900be595", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6396b7886a00541d900be596", + "_tpl": "5a339805c4a2826c6e06d73d", + "parentId": "6396b7886a00541d900be595", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6396b7886a00541d900be597", + "_tpl": "5d1340cad7ad1a0b0b249869", + "parentId": "6396b7886a00541d900be595", + "slotId": "mod_magazine" + }, + { + "_id": "6396b7886a00541d900be598", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "6396b7886a00541d900be595", + "slotId": "mod_reciever" + }, + { + "_id": "6396b7886a00541d900be599", + "_tpl": "58d39d3d86f77445bb794ae7", + "parentId": "6396b7886a00541d900be598", + "slotId": "mod_scope" + }, + { + "_id": "6396b7886a00541d900be59a", + "_tpl": "58d39b0386f77443380bf13c", + "parentId": "6396b7886a00541d900be599", + "slotId": "mod_scope" + }, + { + "_id": "6396b7886a00541d900be59b", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "6396b7886a00541d900be59a", + "slotId": "mod_scope" + }, + { + "_id": "6396b7886a00541d900be59c", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "6396b7886a00541d900be598", + "slotId": "mod_barrel" + }, + { + "_id": "6396b7886a00541d900be59d", + "_tpl": "59bffc1f86f77435b128b872", + "parentId": "6396b7886a00541d900be59c", + "slotId": "mod_muzzle" + }, + { + "_id": "6396b7886a00541d900be59e", + "_tpl": "59bffbb386f77435b379b9c2", + "parentId": "6396b7886a00541d900be59d", + "slotId": "mod_muzzle" + }, + { + "_id": "6396b7886a00541d900be59f", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "6396b7886a00541d900be59c", + "slotId": "mod_gas_block" + }, + { + "_id": "6396b7886a00541d900be5a0", + "_tpl": "55d459824bdc2d892f8b4573", + "parentId": "6396b7886a00541d900be598", + "slotId": "mod_handguard" + }, + { + "_id": "6396b7886a00541d900be5a1", + "_tpl": "637f57b78d137b27f70c496a", + "parentId": "6396b7886a00541d900be5a0", + "slotId": "mod_handguard" + }, + { + "_id": "6396b7886a00541d900be5a2", + "_tpl": "5c1bc5612e221602b5429350", + "parentId": "6396b7886a00541d900be5a1", + "slotId": "mod_foregrip" + }, + { + "_id": "6396b7886a00541d900be5a3", + "_tpl": "55d5f46a4bdc2d1b198b4567", + "parentId": "6396b7886a00541d900be598", + "slotId": "mod_sight_rear" + }, + { + "_id": "6396b7886a00541d900be5a4", + "_tpl": "5947eab886f77475961d96c5", + "parentId": "6396b7886a00541d900be595", + "slotId": "mod_stock" + }, + { + "_id": "6396b7886a00541d900be5a5", + "_tpl": "5bb20dbcd4351e44f824c04e", + "parentId": "6396b7886a00541d900be595", + "slotId": "mod_charge" + } + ], + "_name": "M4A1_SpecOps", + "_parent": "6396b7886a00541d900be595", + "_type": "Preset" + }, + "618aafe23c1dcf601e0327db": { + "_changeWeaponName": true, + "_id": "618aafe23c1dcf601e0327db", + "_items": [ + { + "_id": "618aafe23c1dcf601e0327e8", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "618aafe23c1dcf601e0327e9", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "618aafe23c1dcf601e0327e8", + "slotId": "mod_magazine" + }, + { + "_id": "618aafe23c1dcf601e0327ea", + "_tpl": "5926c0df86f77462f647f764", + "parentId": "618aafe23c1dcf601e0327e8", + "slotId": "mod_reciever" + }, + { + "_id": "618aafe23c1dcf601e0327eb", + "_tpl": "5d19cd96d7ad1a4a992c9f52", + "parentId": "618aafe23c1dcf601e0327ea", + "slotId": "mod_handguard" + }, + { + "_id": "618aafe23c1dcf601e0327ec", + "_tpl": "558032614bdc2de7118b4585", + "parentId": "618aafe23c1dcf601e0327eb", + "slotId": "mod_foregrip" + }, + { + "_id": "618aafe23c1dcf601e0327ed", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "618aafe23c1dcf601e0327ea", + "slotId": "mod_sight_rear" + }, + { + "_id": "618aafe23c1dcf601e0327ee", + "_tpl": "5926d40686f7740f152b6b7e", + "parentId": "618aafe23c1dcf601e0327ea", + "slotId": "mod_stock" + }, + { + "_id": "618aafe23c1dcf601e0327ef", + "_tpl": "5c0000c00db834001a6697fc", + "parentId": "618aafe23c1dcf601e0327ea", + "slotId": "mod_muzzle" + }, + { + "_id": "618aafe23c1dcf601e0327f0", + "_tpl": "5c6165902e22160010261b28", + "parentId": "618aafe23c1dcf601e0327ef", + "slotId": "mod_muzzle" + }, + { + "_id": "618aafe23c1dcf601e0327f1", + "_tpl": "5926dad986f7741f82604363", + "parentId": "618aafe23c1dcf601e0327ea", + "slotId": "mod_mount" + }, + { + "_id": "618aafe23c1dcf601e0327f2", + "_tpl": "591c4efa86f7741030027726", + "parentId": "618aafe23c1dcf601e0327f1", + "slotId": "mod_scope" + }, + { + "_id": "618aafe23c1dcf601e0327f3", + "_tpl": "5926c32286f774616e42de99", + "parentId": "618aafe23c1dcf601e0327e8", + "slotId": "mod_charge" + } + ], + "_name": "MP5_SilentOps", + "_parent": "618aafe23c1dcf601e0327e8", + "_type": "Preset" + }, + "618ab00ef236914bab050ca0": { + "_changeWeaponName": true, + "_id": "618ab00ef236914bab050ca0", + "_items": [ + { + "_id": "618ab00ef236914bab050ca1", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "618ab00ef236914bab050ca2", + "_tpl": "5cc70093e4a949033c734312", + "parentId": "618ab00ef236914bab050ca1", + "slotId": "mod_magazine" + }, + { + "_id": "618ab00ef236914bab050ca3", + "_tpl": "5cebec10d7f00c065703d185", + "parentId": "618ab00ef236914bab050ca1", + "slotId": "mod_stock" + }, + { + "_id": "618ab00ef236914bab050ca4", + "_tpl": "5cc700d4e4a949000f0f0f28", + "parentId": "618ab00ef236914bab050ca3", + "slotId": "mod_stock_000" + }, + { + "_id": "618ab00ef236914bab050ca5", + "_tpl": "5cc70102e4a949035e43ba74", + "parentId": "618ab00ef236914bab050ca1", + "slotId": "mod_reciever" + }, + { + "_id": "618ab00ef236914bab050ca6", + "_tpl": "5cc7015ae4a949001152b4c6", + "parentId": "618ab00ef236914bab050ca5", + "slotId": "mod_mount_000" + }, + { + "_id": "618ab00ef236914bab050ca7", + "_tpl": "58491f3324597764bc48fa02", + "parentId": "618ab00ef236914bab050ca6", + "slotId": "mod_scope" + }, + { + "_id": "618ab00ef236914bab050ca8", + "_tpl": "5cc70146e4a949000d73bf6b", + "parentId": "618ab00ef236914bab050ca5", + "slotId": "mod_mount_001" + }, + { + "_id": "618ab00ef236914bab050ca9", + "_tpl": "5cc70146e4a949000d73bf6b", + "parentId": "618ab00ef236914bab050ca5", + "slotId": "mod_mount_002" + }, + { + "_id": "618ab00ef236914bab050caa", + "_tpl": "5cc701aae4a949000e1ea45c", + "parentId": "618ab00ef236914bab050ca1", + "slotId": "mod_barrel" + }, + { + "_id": "618ab00ef236914bab050cab", + "_tpl": "5cc82796e24e8d000f5859a8", + "parentId": "618ab00ef236914bab050caa", + "slotId": "mod_muzzle" + }, + { + "_id": "618ab00ef236914bab050cac", + "_tpl": "5cebec00d7f00c065c53522a", + "parentId": "618ab00ef236914bab050cab", + "slotId": "mod_muzzle" + }, + { + "_id": "618ab00ef236914bab050cad", + "_tpl": "5cc6ea78e4a949000e1ea3c1", + "parentId": "618ab00ef236914bab050ca1", + "slotId": "mod_charge" + } + ], + "_name": "P90_Devgru", + "_parent": "618ab00ef236914bab050ca1", + "_type": "Preset" + }, + "618ab04934aa2e47480fba2b": { + "_changeWeaponName": true, + "_id": "618ab04934aa2e47480fba2b", + "_items": [ + { + "_id": "618ab04934aa2e47480fba2e", + "_tpl": "5ac66d725acfc43b321d4b60", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "618ab04934aa2e47480fba2f", + "_tpl": "59e649f986f77411d949b246", + "parentId": "618ab04934aa2e47480fba2e", + "slotId": "mod_gas_block" + }, + { + "_id": "618ab04934aa2e47480fba30", + "_tpl": "5efaf417aeb21837e749c7f2", + "parentId": "618ab04934aa2e47480fba2f", + "slotId": "mod_handguard" + }, + { + "_id": "618ab04934aa2e47480fba31", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "618ab04934aa2e47480fba30", + "slotId": "mod_foregrip" + }, + { + "_id": "618ab04934aa2e47480fba32", + "_tpl": "58491f3324597764bc48fa02", + "parentId": "618ab04934aa2e47480fba30", + "slotId": "mod_scope" + }, + { + "_id": "618ab04934aa2e47480fba33", + "_tpl": "5f633f791b231926f2329f13", + "parentId": "618ab04934aa2e47480fba2e", + "slotId": "mod_muzzle" + }, + { + "_id": "618ab04934aa2e47480fba34", + "_tpl": "5947fa2486f77425b47c1a9b", + "parentId": "618ab04934aa2e47480fba2e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "618ab04934aa2e47480fba35", + "_tpl": "5d2c772c48f0355d95672c25", + "parentId": "618ab04934aa2e47480fba2e", + "slotId": "mod_reciever" + }, + { + "_id": "618ab04934aa2e47480fba36", + "_tpl": "5cf50fc5d7f00c056c53f83c", + "parentId": "618ab04934aa2e47480fba2e", + "slotId": "mod_stock" + }, + { + "_id": "618ab04934aa2e47480fba37", + "_tpl": "5b39f8db5acfc40016387a1b", + "parentId": "618ab04934aa2e47480fba36", + "slotId": "mod_stock" + }, + { + "_id": "618ab04934aa2e47480fba38", + "_tpl": "5cbdc23eae9215001136a407", + "parentId": "618ab04934aa2e47480fba2e", + "slotId": "mod_magazine" + } + ], + "_name": "RPKT", + "_parent": "618ab04934aa2e47480fba2e", + "_type": "Preset" + }, + "618ab08919394179c84fa57c": { + "_changeWeaponName": true, + "_id": "618ab08919394179c84fa57c", + "_items": [ + { + "_id": "618ab08919394179c84fa581", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "618ab08919394179c84fa582", + "_tpl": "5b099b965acfc400186331e6", + "parentId": "618ab08919394179c84fa581", + "slotId": "mod_pistol_grip" + }, + { + "_id": "618ab08919394179c84fa583", + "_tpl": "5b7d37845acfc400170e2f87", + "parentId": "618ab08919394179c84fa581", + "slotId": "mod_magazine" + }, + { + "_id": "618ab08919394179c84fa584", + "_tpl": "5b099a9d5acfc47a8607efe7", + "parentId": "618ab08919394179c84fa581", + "slotId": "mod_handguard" + }, + { + "_id": "618ab08919394179c84fa585", + "_tpl": "558032614bdc2de7118b4585", + "parentId": "618ab08919394179c84fa584", + "slotId": "mod_foregrip" + }, + { + "_id": "618ab08919394179c84fa586", + "_tpl": "5b099a765acfc47a8607efe3", + "parentId": "618ab08919394179c84fa581", + "slotId": "mod_barrel" + }, + { + "_id": "618ab08919394179c84fa587", + "_tpl": "5dfa3cd1b33c0951220c079b", + "parentId": "618ab08919394179c84fa586", + "slotId": "mod_muzzle" + }, + { + "_id": "618ab08919394179c84fa588", + "_tpl": "5b099bb25acfc400186331e8", + "parentId": "618ab08919394179c84fa581", + "slotId": "mod_reciever" + }, + { + "_id": "618ab08919394179c84fa589", + "_tpl": "5b30b0dc5acfc400153b7124", + "parentId": "618ab08919394179c84fa588", + "slotId": "mod_scope" + }, + { + "_id": "618ab08919394179c84fa58a", + "_tpl": "5b099bf25acfc4001637e683", + "parentId": "618ab08919394179c84fa581", + "slotId": "mod_stock" + }, + { + "_id": "618ab08919394179c84fa58b", + "_tpl": "5d120a10d7ad1a4e1026ba85", + "parentId": "618ab08919394179c84fa58a", + "slotId": "mod_stock_000" + }, + { + "_id": "618ab08919394179c84fa58c", + "_tpl": "5d120a28d7ad1a1c8962e295", + "parentId": "618ab08919394179c84fa58b", + "slotId": "mod_stock" + } + ], + "_name": "SA58_AP", + "_parent": "618ab08919394179c84fa581", + "_type": "Preset" + }, + "618ab0c66bbeff39ad4acf2e": { + "_changeWeaponName": true, + "_id": "618ab0c66bbeff39ad4acf2e", + "_items": [ + { + "_id": "618ab0c66bbeff39ad4acf3b", + "_tpl": "59984ab886f7743e98271174", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "618ab0c66bbeff39ad4acf3c", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "618ab0c66bbeff39ad4acf3b", + "slotId": "mod_pistol_grip" + }, + { + "_id": "618ab0c66bbeff39ad4acf3d", + "_tpl": "5ac78eaf5acfc4001926317a", + "parentId": "618ab0c66bbeff39ad4acf3b", + "slotId": "mod_stock" + }, + { + "_id": "618ab0c66bbeff39ad4acf3e", + "_tpl": "5b222d405acfc400153af4fe", + "parentId": "618ab0c66bbeff39ad4acf3d", + "slotId": "mod_stock" + }, + { + "_id": "618ab0c66bbeff39ad4acf3f", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "618ab0c66bbeff39ad4acf3b", + "slotId": "mod_magazine" + }, + { + "_id": "618ab0c66bbeff39ad4acf40", + "_tpl": "56d59d3ad2720bdb418b4577", + "parentId": "618ab0c66bbeff39ad4acf3f", + "slotId": "cartridges", + "upd": { + "StackObjectsCount": 30 + } + }, + { + "_id": "618ab0c66bbeff39ad4acf41", + "_tpl": "59bfc5c886f7743bf6794e62", + "parentId": "618ab0c66bbeff39ad4acf3b", + "slotId": "mod_muzzle" + }, + { + "_id": "618ab0c66bbeff39ad4acf42", + "_tpl": "59985a6c86f77414ec448d17", + "parentId": "618ab0c66bbeff39ad4acf3b", + "slotId": "mod_reciever" + }, + { + "_id": "618ab0c66bbeff39ad4acf43", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "618ab0c66bbeff39ad4acf3b", + "slotId": "mod_gas_block" + }, + { + "_id": "618ab0c66bbeff39ad4acf44", + "_tpl": "5c617a5f2e2216000f1e81b3", + "parentId": "618ab0c66bbeff39ad4acf43", + "slotId": "mod_handguard" + }, + { + "_id": "618ab0c66bbeff39ad4acf45", + "_tpl": "5c1bc4812e22164bef5cfde7", + "parentId": "618ab0c66bbeff39ad4acf44", + "slotId": "mod_foregrip" + }, + { + "_id": "618ab0c66bbeff39ad4acf46", + "_tpl": "57ffaea724597779f52b3a4d", + "parentId": "618ab0c66bbeff39ad4acf44", + "slotId": "mod_tactical" + }, + { + "_id": "618ab0c66bbeff39ad4acf47", + "_tpl": "58d39d3d86f77445bb794ae7", + "parentId": "618ab0c66bbeff39ad4acf46", + "slotId": "mod_scope" + }, + { + "_id": "618ab0c66bbeff39ad4acf48", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "618ab0c66bbeff39ad4acf47", + "slotId": "mod_scope" + } + ], + "_name": "Vityaz_FSB", + "_parent": "618ab0c66bbeff39ad4acf3b", + "_type": "Preset" + }, + "6193e108c1982475fa2a7f16": { + "_changeWeaponName": true, + "_id": "6193e108c1982475fa2a7f16", + "_items": [ + { + "_id": "6193e108c1982475fa2a7f17", + "_tpl": "618428466ef05c2ce828f218", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6193e108c1982475fa2a7f18", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "6193e108c1982475fa2a7f17", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6193e108c1982475fa2a7f19", + "_tpl": "61840d85568c120fdd2962a5", + "parentId": "6193e108c1982475fa2a7f17", + "slotId": "mod_magazine" + }, + { + "_id": "6193e108c1982475fa2a7f1a", + "_tpl": "618426d96c780c1e710c9b9f", + "parentId": "6193e108c1982475fa2a7f17", + "slotId": "mod_reciever" + }, + { + "_id": "6193e108c1982475fa2a7f1b", + "_tpl": "6183fc15d3a39d50044c13e9", + "parentId": "6193e108c1982475fa2a7f1a", + "slotId": "mod_barrel" + }, + { + "_id": "6193e108c1982475fa2a7f1c", + "_tpl": "618407a850224f204c1da549", + "parentId": "6193e108c1982475fa2a7f1b", + "slotId": "mod_muzzle" + }, + { + "_id": "6193e108c1982475fa2a7f1d", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "6193e108c1982475fa2a7f1b", + "slotId": "mod_sight_front" + }, + { + "_id": "6193e108c1982475fa2a7f1e", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "6193e108c1982475fa2a7f1a", + "slotId": "mod_sight_rear" + }, + { + "_id": "6193e108c1982475fa2a7f1f", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "6193e108c1982475fa2a7f1a", + "slotId": "mod_mount_000" + }, + { + "_id": "6193e108c1982475fa2a7f20", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "6193e108c1982475fa2a7f1a", + "slotId": "mod_mount_001" + }, + { + "_id": "6193e108c1982475fa2a7f21", + "_tpl": "61825d06d92c473c770215de", + "parentId": "6193e108c1982475fa2a7f17", + "slotId": "mod_stock" + }, + { + "_id": "6193e108c1982475fa2a7f22", + "_tpl": "61825d136ef05c2ce828f1cc", + "parentId": "6193e108c1982475fa2a7f21", + "slotId": "mod_stock_001" + }, + { + "_id": "6193e108c1982475fa2a7f23", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "6193e108c1982475fa2a7f22", + "slotId": "mod_stock" + }, + { + "_id": "6193e108c1982475fa2a7f24", + "_tpl": "61825d24d3a39d50044c13af", + "parentId": "6193e108c1982475fa2a7f21", + "slotId": "mod_stock_002" + }, + { + "_id": "6193e108c1982475fa2a7f25", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "6193e108c1982475fa2a7f17", + "slotId": "mod_charge" + } + ], + "_name": "SCARL MK16 CQC", + "_parent": "6193e108c1982475fa2a7f17", + "_type": "Preset" + }, + "6193e18de693542ea37d11b3": { + "_changeWeaponName": true, + "_encyclopedia": "6184055050224f204c1da540", + "_id": "6193e18de693542ea37d11b3", + "_items": [ + { + "_id": "6193e18de693542ea37d11b4", + "_tpl": "6184055050224f204c1da540", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6193e18de693542ea37d11b5", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "6193e18de693542ea37d11b4", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6193e18de693542ea37d11b6", + "_tpl": "61840bedd92c473c77021635", + "parentId": "6193e18de693542ea37d11b4", + "slotId": "mod_magazine" + }, + { + "_id": "6193e18de693542ea37d11b7", + "_tpl": "618405198004cc50514c3594", + "parentId": "6193e18de693542ea37d11b4", + "slotId": "mod_reciever" + }, + { + "_id": "6193e18de693542ea37d11b8", + "_tpl": "6183fd9e8004cc50514c358f", + "parentId": "6193e18de693542ea37d11b7", + "slotId": "mod_barrel" + }, + { + "_id": "6193e18de693542ea37d11b9", + "_tpl": "618407a850224f204c1da549", + "parentId": "6193e18de693542ea37d11b8", + "slotId": "mod_muzzle" + }, + { + "_id": "6193e18de693542ea37d11ba", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "6193e18de693542ea37d11b8", + "slotId": "mod_sight_front" + }, + { + "_id": "6193e18de693542ea37d11bb", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "6193e18de693542ea37d11b7", + "slotId": "mod_sight_rear" + }, + { + "_id": "6193e18de693542ea37d11bc", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "6193e18de693542ea37d11b7", + "slotId": "mod_mount_000" + }, + { + "_id": "6193e18de693542ea37d11bd", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "6193e18de693542ea37d11b7", + "slotId": "mod_mount_001" + }, + { + "_id": "6193e18de693542ea37d11be", + "_tpl": "61816734d8e3106d9806c1f3", + "parentId": "6193e18de693542ea37d11b4", + "slotId": "mod_stock" + }, + { + "_id": "6193e18de693542ea37d11bf", + "_tpl": "618167528004cc50514c34f9", + "parentId": "6193e18de693542ea37d11be", + "slotId": "mod_stock_001" + }, + { + "_id": "6193e18de693542ea37d11c0", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "6193e18de693542ea37d11bf", + "slotId": "mod_stock" + }, + { + "_id": "6193e18de693542ea37d11c1", + "_tpl": "618167441cb55961fa0fdc71", + "parentId": "6193e18de693542ea37d11be", + "slotId": "mod_stock_002" + }, + { + "_id": "6193e18de693542ea37d11c2", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "6193e18de693542ea37d11b4", + "slotId": "mod_charge" + } + ], + "_name": "SCARL MK16 LB", + "_parent": "6193e18de693542ea37d11b4", + "_type": "Preset" + }, + "6193e226449ec003d9127fa6": { + "_changeWeaponName": false, + "_encyclopedia": "618428466ef05c2ce828f218", + "_id": "6193e226449ec003d9127fa6", + "_items": [ + { + "_id": "6193e226449ec003d9127fa7", + "_tpl": "618428466ef05c2ce828f218", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6193e226449ec003d9127fa8", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "6193e226449ec003d9127fa7", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6193e226449ec003d9127fa9", + "_tpl": "61840d85568c120fdd2962a5", + "parentId": "6193e226449ec003d9127fa7", + "slotId": "mod_magazine" + }, + { + "_id": "6193e226449ec003d9127faa", + "_tpl": "618426d96c780c1e710c9b9f", + "parentId": "6193e226449ec003d9127fa7", + "slotId": "mod_reciever" + }, + { + "_id": "6193e226449ec003d9127fab", + "_tpl": "6183fd911cb55961fa0fdce9", + "parentId": "6193e226449ec003d9127faa", + "slotId": "mod_barrel" + }, + { + "_id": "6193e226449ec003d9127fac", + "_tpl": "618407a850224f204c1da549", + "parentId": "6193e226449ec003d9127fab", + "slotId": "mod_muzzle" + }, + { + "_id": "6193e226449ec003d9127fad", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "6193e226449ec003d9127fab", + "slotId": "mod_sight_front" + }, + { + "_id": "6193e226449ec003d9127fae", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "6193e226449ec003d9127faa", + "slotId": "mod_sight_rear" + }, + { + "_id": "6193e226449ec003d9127faf", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "6193e226449ec003d9127faa", + "slotId": "mod_mount_000" + }, + { + "_id": "6193e226449ec003d9127fb0", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "6193e226449ec003d9127faa", + "slotId": "mod_mount_001" + }, + { + "_id": "6193e226449ec003d9127fb1", + "_tpl": "61825d06d92c473c770215de", + "parentId": "6193e226449ec003d9127fa7", + "slotId": "mod_stock" + }, + { + "_id": "6193e226449ec003d9127fb2", + "_tpl": "61825d136ef05c2ce828f1cc", + "parentId": "6193e226449ec003d9127fb1", + "slotId": "mod_stock_001" + }, + { + "_id": "6193e226449ec003d9127fb3", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "6193e226449ec003d9127fb2", + "slotId": "mod_stock" + }, + { + "_id": "6193e226449ec003d9127fb4", + "_tpl": "61825d24d3a39d50044c13af", + "parentId": "6193e226449ec003d9127fb1", + "slotId": "mod_stock_002" + }, + { + "_id": "6193e226449ec003d9127fb5", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "6193e226449ec003d9127fa7", + "slotId": "mod_charge" + } + ], + "_name": "SCARL MK16 DEFAULT", + "_parent": "6193e226449ec003d9127fa7", + "_type": "Preset" + }, + "6193e380069d61205d490dc7": { + "_changeWeaponName": true, + "_id": "6193e380069d61205d490dc7", + "_items": [ + { + "_id": "6193e380069d61205d490dc8", + "_tpl": "6165ac306ef05c2ce828ef74", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6193e380069d61205d490dc9", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "6193e380069d61205d490dc8", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6193e380069d61205d490dca", + "_tpl": "6183d53f1cb55961fa0fdcda", + "parentId": "6193e380069d61205d490dc8", + "slotId": "mod_magazine" + }, + { + "_id": "6193e380069d61205d490dcb", + "_tpl": "6165aeedfaa1272e431521e3", + "parentId": "6193e380069d61205d490dc8", + "slotId": "mod_reciever" + }, + { + "_id": "6193e380069d61205d490dcc", + "_tpl": "618168b350224f204c1da4d8", + "parentId": "6193e380069d61205d490dcb", + "slotId": "mod_barrel" + }, + { + "_id": "6193e380069d61205d490dcd", + "_tpl": "618178aa1cb55961fa0fdc80", + "parentId": "6193e380069d61205d490dcc", + "slotId": "mod_muzzle" + }, + { + "_id": "6193e380069d61205d490dce", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "6193e380069d61205d490dcc", + "slotId": "mod_sight_front" + }, + { + "_id": "6193e380069d61205d490dcf", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "6193e380069d61205d490dcb", + "slotId": "mod_sight_rear" + }, + { + "_id": "6193e380069d61205d490dd0", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "6193e380069d61205d490dcb", + "slotId": "mod_mount_000" + }, + { + "_id": "6193e380069d61205d490dd1", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "6193e380069d61205d490dcb", + "slotId": "mod_mount_001" + }, + { + "_id": "6193e380069d61205d490dd2", + "_tpl": "61825d06d92c473c770215de", + "parentId": "6193e380069d61205d490dc8", + "slotId": "mod_stock" + }, + { + "_id": "6193e380069d61205d490dd3", + "_tpl": "61825d136ef05c2ce828f1cc", + "parentId": "6193e380069d61205d490dd2", + "slotId": "mod_stock_001" + }, + { + "_id": "6193e380069d61205d490dd4", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "6193e380069d61205d490dd3", + "slotId": "mod_stock" + }, + { + "_id": "6193e380069d61205d490dd5", + "_tpl": "61825d24d3a39d50044c13af", + "parentId": "6193e380069d61205d490dd2", + "slotId": "mod_stock_002" + }, + { + "_id": "6193e380069d61205d490dd6", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "6193e380069d61205d490dc8", + "slotId": "mod_charge" + } + ], + "_name": "SCARH MK17 CQC", + "_parent": "6193e380069d61205d490dc8", + "_type": "Preset" + }, + "6193e4a46bb904059c382295": { + "_changeWeaponName": true, + "_encyclopedia": "6183afd850224f204c1da514", + "_id": "6193e4a46bb904059c382295", + "_items": [ + { + "_id": "6193e4a46bb904059c382296", + "_tpl": "6183afd850224f204c1da514", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6193e4a46bb904059c382297", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "6193e4a46bb904059c382296", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6193e4a46bb904059c382298", + "_tpl": "618168dc8004cc50514c34fc", + "parentId": "6193e4a46bb904059c382296", + "slotId": "mod_magazine" + }, + { + "_id": "6193e4a46bb904059c382299", + "_tpl": "6165adcdd3a39d50044c120f", + "parentId": "6193e4a46bb904059c382296", + "slotId": "mod_reciever" + }, + { + "_id": "6193e4a46bb904059c38229a", + "_tpl": "6183b084a112697a4b3a6e6c", + "parentId": "6193e4a46bb904059c382299", + "slotId": "mod_barrel" + }, + { + "_id": "6193e4a46bb904059c38229b", + "_tpl": "618178aa1cb55961fa0fdc80", + "parentId": "6193e4a46bb904059c38229a", + "slotId": "mod_muzzle" + }, + { + "_id": "6193e4a46bb904059c38229c", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "6193e4a46bb904059c38229a", + "slotId": "mod_sight_front" + }, + { + "_id": "6193e4a46bb904059c38229d", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "6193e4a46bb904059c382299", + "slotId": "mod_sight_rear" + }, + { + "_id": "6193e4a46bb904059c38229e", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "6193e4a46bb904059c382299", + "slotId": "mod_mount_000" + }, + { + "_id": "6193e4a46bb904059c38229f", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "6193e4a46bb904059c382299", + "slotId": "mod_mount_001" + }, + { + "_id": "6193e4a46bb904059c3822a0", + "_tpl": "61816734d8e3106d9806c1f3", + "parentId": "6193e4a46bb904059c382296", + "slotId": "mod_stock" + }, + { + "_id": "6193e4a46bb904059c3822a1", + "_tpl": "618167528004cc50514c34f9", + "parentId": "6193e4a46bb904059c3822a0", + "slotId": "mod_stock_001" + }, + { + "_id": "6193e4a46bb904059c3822a2", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "6193e4a46bb904059c3822a1", + "slotId": "mod_stock" + }, + { + "_id": "6193e4a46bb904059c3822a3", + "_tpl": "618167441cb55961fa0fdc71", + "parentId": "6193e4a46bb904059c3822a0", + "slotId": "mod_stock_002" + }, + { + "_id": "6193e4a46bb904059c3822a4", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "6193e4a46bb904059c382296", + "slotId": "mod_charge" + } + ], + "_name": "SCARH MK17 LB", + "_parent": "6193e4a46bb904059c382296", + "_type": "Preset" + }, + "6193e4fae693542ea37d11c6": { + "_changeWeaponName": false, + "_encyclopedia": "6165ac306ef05c2ce828ef74", + "_id": "6193e4fae693542ea37d11c6", + "_items": [ + { + "_id": "6193e4fae693542ea37d11c7", + "_tpl": "6165ac306ef05c2ce828ef74", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6193e4fae693542ea37d11c8", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "6193e4fae693542ea37d11c7", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6193e4fae693542ea37d11c9", + "_tpl": "6183d53f1cb55961fa0fdcda", + "parentId": "6193e4fae693542ea37d11c7", + "slotId": "mod_magazine" + }, + { + "_id": "6193e4fae693542ea37d11ca", + "_tpl": "6165aeedfaa1272e431521e3", + "parentId": "6193e4fae693542ea37d11c7", + "slotId": "mod_reciever" + }, + { + "_id": "6193e4fae693542ea37d11cb", + "_tpl": "6183b0711cb55961fa0fdcad", + "parentId": "6193e4fae693542ea37d11ca", + "slotId": "mod_barrel" + }, + { + "_id": "6193e4fae693542ea37d11cc", + "_tpl": "618178aa1cb55961fa0fdc80", + "parentId": "6193e4fae693542ea37d11cb", + "slotId": "mod_muzzle" + }, + { + "_id": "6193e4fae693542ea37d11cd", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "6193e4fae693542ea37d11cb", + "slotId": "mod_sight_front" + }, + { + "_id": "6193e4fae693542ea37d11ce", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "6193e4fae693542ea37d11ca", + "slotId": "mod_sight_rear" + }, + { + "_id": "6193e4fae693542ea37d11cf", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "6193e4fae693542ea37d11ca", + "slotId": "mod_mount_000" + }, + { + "_id": "6193e4fae693542ea37d11d0", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "6193e4fae693542ea37d11ca", + "slotId": "mod_mount_001" + }, + { + "_id": "6193e4fae693542ea37d11d1", + "_tpl": "61825d06d92c473c770215de", + "parentId": "6193e4fae693542ea37d11c7", + "slotId": "mod_stock" + }, + { + "_id": "6193e4fae693542ea37d11d2", + "_tpl": "61825d136ef05c2ce828f1cc", + "parentId": "6193e4fae693542ea37d11d1", + "slotId": "mod_stock_001" + }, + { + "_id": "6193e4fae693542ea37d11d3", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "6193e4fae693542ea37d11d2", + "slotId": "mod_stock" + }, + { + "_id": "6193e4fae693542ea37d11d4", + "_tpl": "61825d24d3a39d50044c13af", + "parentId": "6193e4fae693542ea37d11d1", + "slotId": "mod_stock_002" + }, + { + "_id": "6193e4fae693542ea37d11d5", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "6193e4fae693542ea37d11c7", + "slotId": "mod_charge" + } + ], + "_name": "SCARH MK17 DEFAULT", + "_parent": "6193e4fae693542ea37d11c7", + "_type": "Preset" + }, + "6193e590069d61205d490dd8": { + "_changeWeaponName": false, + "_encyclopedia": "6176aca650224f204c1da3fb", + "_id": "6193e590069d61205d490dd8", + "_items": [ + { + "_id": "6193e590069d61205d490dda", + "_tpl": "6176aca650224f204c1da3fb", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6193e590069d61205d490ddb", + "_tpl": "6193dcd0f8ee7e52e4210a28", + "parentId": "6193e590069d61205d490dda", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6193e590069d61205d490ddc", + "_tpl": "617131a4568c120fdd29482d", + "parentId": "6193e590069d61205d490dda", + "slotId": "mod_magazine" + }, + { + "_id": "6193e590069d61205d490ddd", + "_tpl": "617153016c780c1e710c9a2f", + "parentId": "6193e590069d61205d490dda", + "slotId": "mod_stock" + }, + { + "_id": "6193e590069d61205d490dde", + "_tpl": "617155ee50224f204c1da3cd", + "parentId": "6193e590069d61205d490ddd", + "slotId": "mod_stock_000" + }, + { + "_id": "6193e590069d61205d490ddf", + "_tpl": "61715e7e67085e45ef140b33", + "parentId": "6193e590069d61205d490dde", + "slotId": "mod_stock_000" + }, + { + "_id": "6193e590069d61205d490de0", + "_tpl": "61713a8fd92c473c770214a4", + "parentId": "6193e590069d61205d490dda", + "slotId": "mod_reciever" + }, + { + "_id": "6193e590069d61205d490de1", + "_tpl": "61713cc4d8e3106d9806c109", + "parentId": "6193e590069d61205d490de0", + "slotId": "mod_scope" + }, + { + "_id": "6193e590069d61205d490de2", + "_tpl": "61714eec290d254f5e6b2ffc", + "parentId": "6193e590069d61205d490de1", + "slotId": "mod_scope_000" + }, + { + "_id": "6193e590069d61205d490de3", + "_tpl": "61714b2467085e45ef140b2c", + "parentId": "6193e590069d61205d490de1", + "slotId": "mod_scope_001" + }, + { + "_id": "6193e590069d61205d490de4", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "6193e590069d61205d490de3", + "slotId": "mod_scope" + }, + { + "_id": "6193e590069d61205d490de5", + "_tpl": "61702be9faa1272e431522c3", + "parentId": "6193e590069d61205d490de0", + "slotId": "mod_barrel" + }, + { + "_id": "6193e590069d61205d490de6", + "_tpl": "61713308d92c473c770214a0", + "parentId": "6193e590069d61205d490de5", + "slotId": "mod_muzzle" + }, + { + "_id": "6193e590069d61205d490de7", + "_tpl": "6171367e1cb55961fa0fdb36", + "parentId": "6193e590069d61205d490de6", + "slotId": "mod_muzzle" + }, + { + "_id": "6193e590069d61205d490de8", + "_tpl": "61702f1b67085e45ef140b26", + "parentId": "6193e590069d61205d490de5", + "slotId": "mod_gas_block" + }, + { + "_id": "6193e590069d61205d490de9", + "_tpl": "61703001d92c473c77021497", + "parentId": "6193e590069d61205d490de0", + "slotId": "mod_handguard" + }, + { + "_id": "6193e590069d61205d490dea", + "_tpl": "619386379fb0c665d5490dbe", + "parentId": "6193e590069d61205d490de9", + "slotId": "mod_foregrip" + }, + { + "_id": "6193e590069d61205d490deb", + "_tpl": "5bb20e49d4351e3bac1212de", + "parentId": "6193e590069d61205d490de0", + "slotId": "mod_sight_rear" + }, + { + "_id": "6193e590069d61205d490dec", + "_tpl": "61702d8a67085e45ef140b24", + "parentId": "6193e590069d61205d490dda", + "slotId": "mod_charge" + } + ], + "_name": "G28 DEFAULT", + "_parent": "6193e590069d61205d490dda", + "_type": "Preset" + }, + "6193e5f3aa34a3034236bdb3": { + "_changeWeaponName": true, + "_id": "6193e5f3aa34a3034236bdb3", + "_items": [ + { + "_id": "6193e5f3aa34a3034236bdb5", + "_tpl": "6176aca650224f204c1da3fb", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6193e5f3aa34a3034236bdb6", + "_tpl": "6193dcd0f8ee7e52e4210a28", + "parentId": "6193e5f3aa34a3034236bdb5", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6193e5f3aa34a3034236bdb7", + "_tpl": "617131a4568c120fdd29482d", + "parentId": "6193e5f3aa34a3034236bdb5", + "slotId": "mod_magazine" + }, + { + "_id": "6193e5f3aa34a3034236bdb8", + "_tpl": "617153016c780c1e710c9a2f", + "parentId": "6193e5f3aa34a3034236bdb5", + "slotId": "mod_stock" + }, + { + "_id": "6193e5f3aa34a3034236bdb9", + "_tpl": "617154aa1cb55961fa0fdb3b", + "parentId": "6193e5f3aa34a3034236bdb8", + "slotId": "mod_stock_000" + }, + { + "_id": "6193e5f3aa34a3034236bdba", + "_tpl": "61713a8fd92c473c770214a4", + "parentId": "6193e5f3aa34a3034236bdb5", + "slotId": "mod_reciever" + }, + { + "_id": "6193e5f3aa34a3034236bdbb", + "_tpl": "6171407e50224f204c1da3c5", + "parentId": "6193e5f3aa34a3034236bdba", + "slotId": "mod_scope" + }, + { + "_id": "6193e5f3aa34a3034236bdbc", + "_tpl": "617151c1d92c473c770214ab", + "parentId": "6193e5f3aa34a3034236bdbb", + "slotId": "mod_scope_000" + }, + { + "_id": "6193e5f3aa34a3034236bdbd", + "_tpl": "61702be9faa1272e431522c3", + "parentId": "6193e5f3aa34a3034236bdba", + "slotId": "mod_barrel" + }, + { + "_id": "6193e5f3aa34a3034236bdbe", + "_tpl": "61713308d92c473c770214a0", + "parentId": "6193e5f3aa34a3034236bdbd", + "slotId": "mod_muzzle" + }, + { + "_id": "6193e5f3aa34a3034236bdbf", + "_tpl": "61702f1b67085e45ef140b26", + "parentId": "6193e5f3aa34a3034236bdbd", + "slotId": "mod_gas_block" + }, + { + "_id": "6193e5f3aa34a3034236bdc0", + "_tpl": "61712eae6c780c1e710c9a1d", + "parentId": "6193e5f3aa34a3034236bdba", + "slotId": "mod_handguard" + }, + { + "_id": "6193e5f3aa34a3034236bdc1", + "_tpl": "5bb20e49d4351e3bac1212de", + "parentId": "6193e5f3aa34a3034236bdba", + "slotId": "mod_sight_rear" + }, + { + "_id": "6193e5f3aa34a3034236bdc2", + "_tpl": "61702d8a67085e45ef140b24", + "parentId": "6193e5f3aa34a3034236bdb5", + "slotId": "mod_charge" + } + ], + "_name": "G28 Patrol", + "_parent": "6193e5f3aa34a3034236bdb5", + "_type": "Preset" + }, + "6197d1f3585c515a052ad88f": { + "_changeWeaponName": false, + "_encyclopedia": "5580223e4bdc2d1c128b457f", + "_id": "6197d1f3585c515a052ad88f", + "_items": [ + { + "_id": "6197d1f3585c515a052ad893", + "_tpl": "5580223e4bdc2d1c128b457f", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6197d1f3585c515a052ad894", + "_tpl": "55d447bb4bdc2d892f8b456f", + "parentId": "6197d1f3585c515a052ad893", + "slotId": "mod_barrel" + }, + { + "_id": "6197d1f3585c515a052ad895", + "_tpl": "611a31ce5b7ffe001b4649d1", + "parentId": "6197d1f3585c515a052ad893", + "slotId": "mod_stock" + } + ], + "_name": "MP-43 DEFAULT", + "_parent": "6197d1f3585c515a052ad893", + "_type": "Preset" + }, + "6198e2ddef80673cae5d1c87": { + "_changeWeaponName": false, + "_encyclopedia": "60db29ce99594040e04c4a27", + "_id": "6198e2ddef80673cae5d1c87", + "_items": [ + { + "_id": "61a64b25063f5a50e60c37f4", + "_tpl": "60db29ce99594040e04c4a27", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "61a64b25063f5a50e60c37f5", + "_tpl": "60dc519adf4c47305f6d410d", + "parentId": "61a64b25063f5a50e60c37f4", + "slotId": "mod_magazine" + }, + { + "_id": "61a64b25063f5a50e60c37f6", + "_tpl": "612368f58b401f4f51239b33", + "parentId": "61a64b25063f5a50e60c37f4", + "slotId": "mod_barrel" + }, + { + "_id": "61a64b25063f5a50e60c37f7", + "_tpl": "619d36da53b4d42ee724fae4", + "parentId": "61a64b25063f5a50e60c37f6", + "slotId": "mod_muzzle" + }, + { + "_id": "61a64b25063f5a50e60c37f8", + "_tpl": "612781056f3d944a17348d60", + "parentId": "61a64b25063f5a50e60c37f4", + "slotId": "mod_stock" + }, + { + "_id": "61a64b25063f5a50e60c37f9", + "_tpl": "6123649463849f3d843da7c4", + "parentId": "61a64b25063f5a50e60c37f4", + "slotId": "mod_handguard" + } + ], + "_name": "MTs-255 DEFAULT", + "_parent": "61a64b25063f5a50e60c37f4", + "_type": "Preset" + }, + "619d267f36b5be1f3236f9ba": { + "_changeWeaponName": false, + "_encyclopedia": "6193a720f8ee7e52e42109ed", + "_id": "619d267f36b5be1f3236f9ba", + "_items": [ + { + "_id": "619d267f36b5be1f3236f9bb", + "_tpl": "6193a720f8ee7e52e42109ed", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "619d267f36b5be1f3236f9bc", + "_tpl": "6194ef39de3cdf1d2614a768", + "parentId": "619d267f36b5be1f3236f9bb", + "slotId": "mod_barrel" + }, + { + "_id": "619d267f36b5be1f3236f9bd", + "_tpl": "6193d382ed0429009f543e65", + "parentId": "619d267f36b5be1f3236f9bb", + "slotId": "mod_reciever" + }, + { + "_id": "619d267f36b5be1f3236f9be", + "_tpl": "6194f2912d2c397d6600348d", + "parentId": "619d267f36b5be1f3236f9bd", + "slotId": "mod_sight_rear" + }, + { + "_id": "619d267f36b5be1f3236f9bf", + "_tpl": "6194f35c18a3974e5e7421e6", + "parentId": "619d267f36b5be1f3236f9bd", + "slotId": "mod_sight_front" + }, + { + "_id": "619d267f36b5be1f3236f9c0", + "_tpl": "6193d338de3cdf1d2614a6fc", + "parentId": "619d267f36b5be1f3236f9bb", + "slotId": "mod_magazine" + }, + { + "_id": "619d267f36b5be1f3236f9c1", + "_tpl": "6193d3cded0429009f543e6a", + "parentId": "619d267f36b5be1f3236f9bb", + "slotId": "mod_trigger" + }, + { + "_id": "619d267f36b5be1f3236f9c2", + "_tpl": "6193d3be7c6c7b169525f0da", + "parentId": "619d267f36b5be1f3236f9bb", + "slotId": "mod_hammer" + }, + { + "_id": "619d267f36b5be1f3236f9c3", + "_tpl": "6193d5d4f8ee7e52e4210a1b", + "parentId": "619d267f36b5be1f3236f9bb", + "slotId": "mod_catch" + } + ], + "_name": "USP DEFAULT", + "_parent": "619d267f36b5be1f3236f9bb", + "_type": "Preset" + }, + "619d26ccc7791e3af27ae3cd": { + "_changeWeaponName": true, + "_id": "619d26ccc7791e3af27ae3cd", + "_items": [ + { + "_id": "619d26ccc7791e3af27ae3d7", + "_tpl": "6193a720f8ee7e52e42109ed", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "619d26ccc7791e3af27ae3d8", + "_tpl": "6194f02d9bb3d20b0946d2f0", + "parentId": "619d26ccc7791e3af27ae3d7", + "slotId": "mod_barrel" + }, + { + "_id": "619d26ccc7791e3af27ae3d9", + "_tpl": "6194f5a318a3974e5e7421eb", + "parentId": "619d26ccc7791e3af27ae3d7", + "slotId": "mod_reciever" + }, + { + "_id": "619d26ccc7791e3af27ae3da", + "_tpl": "6194f2df645b5d229654ad77", + "parentId": "619d26ccc7791e3af27ae3d9", + "slotId": "mod_sight_rear" + }, + { + "_id": "619d26ccc7791e3af27ae3db", + "_tpl": "6194f3286db0f2477964e67d", + "parentId": "619d26ccc7791e3af27ae3d9", + "slotId": "mod_sight_front" + }, + { + "_id": "619d26ccc7791e3af27ae3dc", + "_tpl": "6193d3149fb0c665d5490e32", + "parentId": "619d26ccc7791e3af27ae3d7", + "slotId": "mod_magazine" + }, + { + "_id": "619d26ccc7791e3af27ae3dd", + "_tpl": "6193d3cded0429009f543e6a", + "parentId": "619d26ccc7791e3af27ae3d7", + "slotId": "mod_trigger" + }, + { + "_id": "619d26ccc7791e3af27ae3de", + "_tpl": "6193d3be7c6c7b169525f0da", + "parentId": "619d26ccc7791e3af27ae3d7", + "slotId": "mod_hammer" + }, + { + "_id": "619d26ccc7791e3af27ae3df", + "_tpl": "6193d5d4f8ee7e52e4210a1b", + "parentId": "619d26ccc7791e3af27ae3d7", + "slotId": "mod_catch" + }, + { + "_id": "619d26ccc7791e3af27ae3e0", + "_tpl": "619624b26db0f2477964e6b0", + "parentId": "619d26ccc7791e3af27ae3d7", + "slotId": "mod_mount_000" + } + ], + "_name": "USP Match", + "_parent": "619d26ccc7791e3af27ae3d7", + "_type": "Preset" + }, + "619d270836b5be1f3236f9c5": { + "_changeWeaponName": true, + "_id": "619d270836b5be1f3236f9c5", + "_items": [ + { + "_id": "619d270836b5be1f3236f9c6", + "_tpl": "6193a720f8ee7e52e42109ed", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "619d270836b5be1f3236f9c7", + "_tpl": "6194efe07c6c7b169525f11b", + "parentId": "619d270836b5be1f3236f9c6", + "slotId": "mod_barrel" + }, + { + "_id": "619d270836b5be1f3236f9c8", + "_tpl": "6194f1f918a3974e5e7421e4", + "parentId": "619d270836b5be1f3236f9c7", + "slotId": "mod_muzzle" + }, + { + "_id": "619d270836b5be1f3236f9c9", + "_tpl": "6194f41f9fb0c665d5490e75", + "parentId": "619d270836b5be1f3236f9c6", + "slotId": "mod_reciever" + }, + { + "_id": "619d270836b5be1f3236f9ca", + "_tpl": "6194f2df645b5d229654ad77", + "parentId": "619d270836b5be1f3236f9c9", + "slotId": "mod_sight_rear" + }, + { + "_id": "619d270836b5be1f3236f9cb", + "_tpl": "6194f3286db0f2477964e67d", + "parentId": "619d270836b5be1f3236f9c9", + "slotId": "mod_sight_front" + }, + { + "_id": "619d270836b5be1f3236f9cc", + "_tpl": "6193d3149fb0c665d5490e32", + "parentId": "619d270836b5be1f3236f9c6", + "slotId": "mod_magazine" + }, + { + "_id": "619d270836b5be1f3236f9cd", + "_tpl": "6193d3cded0429009f543e6a", + "parentId": "619d270836b5be1f3236f9c6", + "slotId": "mod_trigger" + }, + { + "_id": "619d270836b5be1f3236f9ce", + "_tpl": "6193d3be7c6c7b169525f0da", + "parentId": "619d270836b5be1f3236f9c6", + "slotId": "mod_hammer" + }, + { + "_id": "619d270836b5be1f3236f9cf", + "_tpl": "6193d5d4f8ee7e52e4210a1b", + "parentId": "619d270836b5be1f3236f9c6", + "slotId": "mod_catch" + }, + { + "_id": "619d270836b5be1f3236f9d0", + "_tpl": "6196255558ef8c428c287d1c", + "parentId": "619d270836b5be1f3236f9c6", + "slotId": "mod_mount_000" + } + ], + "_name": "USP Tactical", + "_parent": "619d270836b5be1f3236f9c6", + "_type": "Preset" + }, + "619d272b0f9e4513744e7699": { + "_changeWeaponName": true, + "_id": "619d272b0f9e4513744e7699", + "_items": [ + { + "_id": "619d272b0f9e4513744e769a", + "_tpl": "6193a720f8ee7e52e42109ed", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "619d272b0f9e4513744e769b", + "_tpl": "6194f017ed0429009f543eaa", + "parentId": "619d272b0f9e4513744e769a", + "slotId": "mod_barrel" + }, + { + "_id": "619d272b0f9e4513744e769c", + "_tpl": "6194f5d418a3974e5e7421ef", + "parentId": "619d272b0f9e4513744e769a", + "slotId": "mod_reciever" + }, + { + "_id": "619d272b0f9e4513744e769d", + "_tpl": "6194f2df645b5d229654ad77", + "parentId": "619d272b0f9e4513744e769c", + "slotId": "mod_sight_rear" + }, + { + "_id": "619d272b0f9e4513744e769e", + "_tpl": "6194f3286db0f2477964e67d", + "parentId": "619d272b0f9e4513744e769c", + "slotId": "mod_sight_front" + }, + { + "_id": "619d272b0f9e4513744e769f", + "_tpl": "6193d3149fb0c665d5490e32", + "parentId": "619d272b0f9e4513744e769a", + "slotId": "mod_magazine" + }, + { + "_id": "619d272b0f9e4513744e76a0", + "_tpl": "6193d3cded0429009f543e6a", + "parentId": "619d272b0f9e4513744e769a", + "slotId": "mod_trigger" + }, + { + "_id": "619d272b0f9e4513744e76a1", + "_tpl": "6193d3be7c6c7b169525f0da", + "parentId": "619d272b0f9e4513744e769a", + "slotId": "mod_hammer" + }, + { + "_id": "619d272b0f9e4513744e76a2", + "_tpl": "6193d5d4f8ee7e52e4210a1b", + "parentId": "619d272b0f9e4513744e769a", + "slotId": "mod_catch" + }, + { + "_id": "619d272b0f9e4513744e76a3", + "_tpl": "619621a4de3cdf1d2614a7a7", + "parentId": "619d272b0f9e4513744e769a", + "slotId": "mod_mount_000" + } + ], + "_name": "USP Elite", + "_parent": "619d272b0f9e4513744e769a", + "_type": "Preset" + }, + "619d276ca4712949ff3159b9": { + "_changeWeaponName": true, + "_id": "619d276ca4712949ff3159b9", + "_items": [ + { + "_id": "619d276ca4712949ff3159bc", + "_tpl": "6193a720f8ee7e52e42109ed", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "619d276ca4712949ff3159bd", + "_tpl": "6194eff92d2c397d6600348b", + "parentId": "619d276ca4712949ff3159bc", + "slotId": "mod_barrel" + }, + { + "_id": "619d276ca4712949ff3159be", + "_tpl": "6194f5722d2c397d6600348f", + "parentId": "619d276ca4712949ff3159bc", + "slotId": "mod_reciever" + }, + { + "_id": "619d276ca4712949ff3159bf", + "_tpl": "6194f2df645b5d229654ad77", + "parentId": "619d276ca4712949ff3159be", + "slotId": "mod_sight_rear" + }, + { + "_id": "619d276ca4712949ff3159c0", + "_tpl": "6194f3286db0f2477964e67d", + "parentId": "619d276ca4712949ff3159be", + "slotId": "mod_sight_front" + }, + { + "_id": "619d276ca4712949ff3159c1", + "_tpl": "6193d3149fb0c665d5490e32", + "parentId": "619d276ca4712949ff3159bc", + "slotId": "mod_magazine" + }, + { + "_id": "619d276ca4712949ff3159c2", + "_tpl": "6193d3cded0429009f543e6a", + "parentId": "619d276ca4712949ff3159bc", + "slotId": "mod_trigger" + }, + { + "_id": "619d276ca4712949ff3159c3", + "_tpl": "6193d3be7c6c7b169525f0da", + "parentId": "619d276ca4712949ff3159bc", + "slotId": "mod_hammer" + }, + { + "_id": "619d276ca4712949ff3159c4", + "_tpl": "6193d5d4f8ee7e52e4210a1b", + "parentId": "619d276ca4712949ff3159bc", + "slotId": "mod_catch" + } + ], + "_name": "USP Expert", + "_parent": "619d276ca4712949ff3159bc", + "_type": "Preset" + }, + "619e61e70459e93c12392ba7": { + "_changeWeaponName": true, + "_id": "619e61e70459e93c12392ba7", + "_items": [ + { + "_id": "619e61e70459e93c12392ba8", + "_tpl": "618428466ef05c2ce828f218", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "619e61e70459e93c12392ba9", + "_tpl": "55802f5d4bdc2dac148b458f", + "parentId": "619e61e70459e93c12392ba8", + "slotId": "mod_pistol_grip" + }, + { + "_id": "619e61e70459e93c12392baa", + "_tpl": "5aaa5dfee5b5b000140293d3", + "parentId": "619e61e70459e93c12392ba8", + "slotId": "mod_magazine" + }, + { + "_id": "619e61e70459e93c12392bab", + "_tpl": "618405198004cc50514c3594", + "parentId": "619e61e70459e93c12392ba8", + "slotId": "mod_reciever" + }, + { + "_id": "619e61e70459e93c12392bac", + "_tpl": "544a3a774bdc2d3a388b4567", + "parentId": "619e61e70459e93c12392bab", + "slotId": "mod_scope" + }, + { + "_id": "619e61e70459e93c12392bad", + "_tpl": "58d268fc86f774111273f8c2", + "parentId": "619e61e70459e93c12392bac", + "slotId": "mod_scope" + }, + { + "_id": "619e61e70459e93c12392bae", + "_tpl": "6183fd911cb55961fa0fdce9", + "parentId": "619e61e70459e93c12392bab", + "slotId": "mod_barrel" + }, + { + "_id": "619e61e70459e93c12392baf", + "_tpl": "56ea6fafd2720b844b8b4593", + "parentId": "619e61e70459e93c12392bae", + "slotId": "mod_muzzle" + }, + { + "_id": "619e61e70459e93c12392bb0", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "619e61e70459e93c12392bae", + "slotId": "mod_sight_front" + }, + { + "_id": "619e61e70459e93c12392bb1", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "619e61e70459e93c12392bab", + "slotId": "mod_sight_rear" + }, + { + "_id": "619e61e70459e93c12392bb2", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "619e61e70459e93c12392bab", + "slotId": "mod_mount_000" + }, + { + "_id": "619e61e70459e93c12392bb3", + "_tpl": "5c1bc5612e221602b5429350", + "parentId": "619e61e70459e93c12392bb2", + "slotId": "mod_foregrip" + }, + { + "_id": "619e61e70459e93c12392bb4", + "_tpl": "61965d9058ef8c428c287e0d", + "parentId": "619e61e70459e93c12392bb2", + "slotId": "mod_mount" + }, + { + "_id": "619e61e70459e93c12392bb5", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "619e61e70459e93c12392bab", + "slotId": "mod_mount_001" + }, + { + "_id": "619e61e70459e93c12392bb6", + "_tpl": "61825d06d92c473c770215de", + "parentId": "619e61e70459e93c12392ba8", + "slotId": "mod_stock" + }, + { + "_id": "619e61e70459e93c12392bb7", + "_tpl": "61825d136ef05c2ce828f1cc", + "parentId": "619e61e70459e93c12392bb6", + "slotId": "mod_stock_001" + }, + { + "_id": "619e61e70459e93c12392bb8", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "619e61e70459e93c12392bb7", + "slotId": "mod_stock" + }, + { + "_id": "619e61e70459e93c12392bb9", + "_tpl": "618167441cb55961fa0fdc71", + "parentId": "619e61e70459e93c12392bb6", + "slotId": "mod_stock_002" + }, + { + "_id": "619e61e70459e93c12392bba", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "619e61e70459e93c12392ba8", + "slotId": "mod_charge" + } + ], + "_name": "SCARL MK16 CW", + "_parent": "619e61e70459e93c12392ba8", + "_type": "Preset" + }, + "624d7a3691f0160c7324c3f4": { + "_changeWeaponName": false, + "_encyclopedia": "61a4c8884f95bc3b2c5dc96f", + "_id": "624d7a3691f0160c7324c3f4", + "_items": [ + { + "_id": "624d7a3691f0160c7324c3f5", + "_tpl": "61a4c8884f95bc3b2c5dc96f", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "624d7a3691f0160c7324c3f6", + "_tpl": "619f54a1d25cbd424731fb99", + "parentId": "624d7a3691f0160c7324c3f5", + "slotId": "mod_magazine" + }, + { + "_id": "624d7a3691f0160c7324c3f7", + "_tpl": "619f4cee4c58466fe1228435", + "parentId": "624d7a3691f0160c7324c3f5", + "slotId": "mod_sight_rear" + }, + { + "_id": "624d7a3691f0160c7324c3f8", + "_tpl": "619f4d304c58466fe1228437", + "parentId": "624d7a3691f0160c7324c3f5", + "slotId": "mod_sight_front" + }, + { + "_id": "624d7a3691f0160c7324c3f9", + "_tpl": "619f4bffd25cbd424731fb97", + "parentId": "624d7a3691f0160c7324c3f5", + "slotId": "mod_pistol_grip" + } + ], + "_name": "Rhino 50DS default", + "_parent": "624d7a3691f0160c7324c3f5", + "_type": "Preset" + }, + "624d7ae691f0160c7324c402": { + "_changeWeaponName": true, + "_id": "624d7ae691f0160c7324c402", + "_items": [ + { + "_id": "624d7ae691f0160c7324c403", + "_tpl": "61a4c8884f95bc3b2c5dc96f", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "624d7ae691f0160c7324c404", + "_tpl": "619f54a1d25cbd424731fb99", + "parentId": "624d7ae691f0160c7324c403", + "slotId": "mod_magazine" + }, + { + "_id": "624d7ae691f0160c7324c405", + "_tpl": "619f4f8c4c58466fe1228439", + "parentId": "624d7ae691f0160c7324c403", + "slotId": "mod_sight_rear" + }, + { + "_id": "624d7ae691f0160c7324c406", + "_tpl": "619f52454c58466fe122843b", + "parentId": "624d7ae691f0160c7324c403", + "slotId": "mod_sight_front" + }, + { + "_id": "624d7ae691f0160c7324c407", + "_tpl": "619f4ab2d25cbd424731fb95", + "parentId": "624d7ae691f0160c7324c403", + "slotId": "mod_pistol_grip" + }, + { + "_id": "624d7ae691f0160c7324c408", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "624d7ae691f0160c7324c403", + "slotId": "mod_tactical" + } + ], + "_name": "Rhino 50DS Tactical", + "_parent": "624d7ae691f0160c7324c403", + "_type": "Preset" + }, + "624d7b2881a57812413b7954": { + "_changeWeaponName": false, + "_encyclopedia": "624c2e8614da335f1e034d8c", + "_id": "624d7b2881a57812413b7954", + "_items": [ + { + "_id": "624d7b2881a57812413b7955", + "_tpl": "624c2e8614da335f1e034d8c", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "624d7b2881a57812413b7956", + "_tpl": "624c3074dbbd335e8e6becf3", + "parentId": "624d7b2881a57812413b7955", + "slotId": "mod_magazine" + }, + { + "_id": "624d7b2881a57812413b7957", + "_tpl": "619f4d304c58466fe1228437", + "parentId": "624d7b2881a57812413b7955", + "slotId": "mod_sight_front" + }, + { + "_id": "624d7b2881a57812413b7958", + "_tpl": "619f4bffd25cbd424731fb97", + "parentId": "624d7b2881a57812413b7955", + "slotId": "mod_pistol_grip" + } + ], + "_name": "Rhino 200DS default", + "_parent": "624d7b2881a57812413b7955", + "_type": "Preset" + }, + "62874ff7a4a8431af4739d25": { + "_changeWeaponName": true, + "_id": "62874ff7a4a8431af4739d25", + "_items": [ + { + "_id": "62874ff7a4a8431af4739d30", + "_tpl": "5f36a0e5fbf956000b716b65", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "62874ff7a4a8431af4739d31", + "_tpl": "5f3e7801153b8571434a924c", + "parentId": "62874ff7a4a8431af4739d30", + "slotId": "mod_barrel" + }, + { + "_id": "62874ff7a4a8431af4739d32", + "_tpl": "5f3e778efcd9b651187d7201", + "parentId": "62874ff7a4a8431af4739d30", + "slotId": "mod_pistol_grip" + }, + { + "_id": "62874ff7a4a8431af4739d33", + "_tpl": "5f3e7823ddc4f03b010e2045", + "parentId": "62874ff7a4a8431af4739d30", + "slotId": "mod_reciever" + }, + { + "_id": "62874ff7a4a8431af4739d34", + "_tpl": "5f3e7897ddc4f03b010e204a", + "parentId": "62874ff7a4a8431af4739d33", + "slotId": "mod_sight_rear" + }, + { + "_id": "62874ff7a4a8431af4739d35", + "_tpl": "5f3e78a7fbf956000b716b8e", + "parentId": "62874ff7a4a8431af4739d33", + "slotId": "mod_sight_front" + }, + { + "_id": "62874ff7a4a8431af4739d36", + "_tpl": "5f3e77b26cda304dcc634057", + "parentId": "62874ff7a4a8431af4739d30", + "slotId": "mod_magazine" + }, + { + "_id": "62874ff7a4a8431af4739d37", + "_tpl": "5f3e772a670e2a7b01739a52", + "parentId": "62874ff7a4a8431af4739d30", + "slotId": "mod_trigger" + }, + { + "_id": "62874ff7a4a8431af4739d38", + "_tpl": "5f3e76d86cda304dcc634054", + "parentId": "62874ff7a4a8431af4739d30", + "slotId": "mod_hammer" + }, + { + "_id": "62874ff7a4a8431af4739d39", + "_tpl": "5f3e777688ca2d00ad199d25", + "parentId": "62874ff7a4a8431af4739d30", + "slotId": "mod_catch" + } + ], + "_name": "bigpipe_m45a1", + "_parent": "62874ff7a4a8431af4739d30", + "_type": "Preset" + }, + "628750420828252c7a28b944": { + "_changeWeaponName": true, + "_id": "628750420828252c7a28b944", + "_items": [ + { + "_id": "628750420828252c7a28b94e", + "_tpl": "5a7828548dc32e5a9c28b516", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "628750420828252c7a28b94f", + "_tpl": "5a787fdfc5856700142fdd9a", + "parentId": "628750420828252c7a28b94e", + "slotId": "mod_barrel" + }, + { + "_id": "628750420828252c7a28b950", + "_tpl": "5a788089c5856700142fdd9c", + "parentId": "628750420828252c7a28b94e", + "slotId": "mod_handguard" + }, + { + "_id": "628750420828252c7a28b951", + "_tpl": "5a7882dcc5856700177af662", + "parentId": "628750420828252c7a28b94e", + "slotId": "mod_magazine" + }, + { + "_id": "628750420828252c7a28b952", + "_tpl": "5bfe86a20db834001d23e8f7", + "parentId": "628750420828252c7a28b94e", + "slotId": "mod_stock" + }, + { + "_id": "628750420828252c7a28b953", + "_tpl": "5bfe86bd0db83400232fe959", + "parentId": "628750420828252c7a28b952", + "slotId": "mod_stock" + }, + { + "_id": "628750420828252c7a28b954", + "_tpl": "5a7893c1c585673f2b5c374d", + "parentId": "628750420828252c7a28b94e", + "slotId": "mod_mount" + }, + { + "_id": "628750420828252c7a28b955", + "_tpl": "5a33b2c9c4a282000c5a9511", + "parentId": "628750420828252c7a28b954", + "slotId": "mod_scope" + }, + { + "_id": "628750420828252c7a28b956", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "628750420828252c7a28b955", + "slotId": "mod_scope" + } + ], + "_name": "bigpipe_m870", + "_parent": "628750420828252c7a28b94e", + "_type": "Preset" + }, + "62875070bbbd995f3c41b225": { + "_changeWeaponName": true, + "_id": "62875070bbbd995f3c41b225", + "_items": [ + { + "_id": "62875070bbbd995f3c41b23c", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "62875070bbbd995f3c41b23d", + "_tpl": "55802f5d4bdc2dac148b458f", + "parentId": "62875070bbbd995f3c41b23c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "62875070bbbd995f3c41b23e", + "_tpl": "55802d5f4bdc2dac148b458e", + "parentId": "62875070bbbd995f3c41b23c", + "slotId": "mod_magazine" + }, + { + "_id": "62875070bbbd995f3c41b23f", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "parentId": "62875070bbbd995f3c41b23c", + "slotId": "mod_reciever" + }, + { + "_id": "62875070bbbd995f3c41b240", + "_tpl": "58d39d3d86f77445bb794ae7", + "parentId": "62875070bbbd995f3c41b23f", + "slotId": "mod_scope" + }, + { + "_id": "62875070bbbd995f3c41b241", + "_tpl": "58d39b0386f77443380bf13c", + "parentId": "62875070bbbd995f3c41b240", + "slotId": "mod_scope" + }, + { + "_id": "62875070bbbd995f3c41b242", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "62875070bbbd995f3c41b241", + "slotId": "mod_scope" + }, + { + "_id": "62875070bbbd995f3c41b243", + "_tpl": "5fbbfabed5cb881a7363194e", + "parentId": "62875070bbbd995f3c41b23f", + "slotId": "mod_barrel" + }, + { + "_id": "62875070bbbd995f3c41b244", + "_tpl": "5fbc22ccf24b94483f726483", + "parentId": "62875070bbbd995f3c41b243", + "slotId": "mod_muzzle" + }, + { + "_id": "62875070bbbd995f3c41b245", + "_tpl": "5fbcbcf593164a5b6278efb2", + "parentId": "62875070bbbd995f3c41b244", + "slotId": "mod_muzzle_000" + }, + { + "_id": "62875070bbbd995f3c41b246", + "_tpl": "5fbe760793164a5b6278efc8", + "parentId": "62875070bbbd995f3c41b244", + "slotId": "mod_muzzle_001" + }, + { + "_id": "62875070bbbd995f3c41b247", + "_tpl": "5fbc210bf24b94483f726481", + "parentId": "62875070bbbd995f3c41b243", + "slotId": "mod_gas_block" + }, + { + "_id": "62875070bbbd995f3c41b248", + "_tpl": "5fbc227aa56d053a3543f79e", + "parentId": "62875070bbbd995f3c41b23f", + "slotId": "mod_handguard" + }, + { + "_id": "62875070bbbd995f3c41b249", + "_tpl": "59e0bdb186f774156f04ce82", + "parentId": "62875070bbbd995f3c41b248", + "slotId": "mod_mount_001" + }, + { + "_id": "62875070bbbd995f3c41b24a", + "_tpl": "57d17e212459775a1179a0f5", + "parentId": "62875070bbbd995f3c41b249", + "slotId": "mod_tactical" + }, + { + "_id": "62875070bbbd995f3c41b24b", + "_tpl": "57d17c5e2459775a5c57d17d", + "parentId": "62875070bbbd995f3c41b24a", + "slotId": "mod_flashlight" + }, + { + "_id": "62875070bbbd995f3c41b24c", + "_tpl": "5c17804b2e2216152006c02f", + "parentId": "62875070bbbd995f3c41b248", + "slotId": "mod_sight_front" + }, + { + "_id": "62875070bbbd995f3c41b24d", + "_tpl": "5fc0f9cbd6fa9c00c571bb90", + "parentId": "62875070bbbd995f3c41b248", + "slotId": "mod_foregrip" + }, + { + "_id": "62875070bbbd995f3c41b24e", + "_tpl": "5c1780312e221602b66cc189", + "parentId": "62875070bbbd995f3c41b23f", + "slotId": "mod_sight_rear" + }, + { + "_id": "62875070bbbd995f3c41b24f", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "62875070bbbd995f3c41b23f", + "slotId": "mod_tactical" + }, + { + "_id": "62875070bbbd995f3c41b250", + "_tpl": "5fbcc429900b1d5091531dd7", + "parentId": "62875070bbbd995f3c41b23c", + "slotId": "mod_stock" + }, + { + "_id": "62875070bbbd995f3c41b251", + "_tpl": "5fbcc640016cce60e8341acc", + "parentId": "62875070bbbd995f3c41b23c", + "slotId": "mod_charge" + } + ], + "_name": "bigpipe_mcx", + "_parent": "62875070bbbd995f3c41b23c", + "_type": "Preset" + }, + "62875103af0a053a6672c234": { + "_changeWeaponName": true, + "_id": "62875103af0a053a6672c234", + "_items": [ + { + "_id": "62875103af0a053a6672c24a", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "62875103af0a053a6672c24b", + "_tpl": "5a339805c4a2826c6e06d73d", + "parentId": "62875103af0a053a6672c24a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "62875103af0a053a6672c24c", + "_tpl": "5aaa5dfee5b5b000140293d3", + "parentId": "62875103af0a053a6672c24a", + "slotId": "mod_magazine" + }, + { + "_id": "62875103af0a053a6672c24d", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "62875103af0a053a6672c24a", + "slotId": "mod_reciever" + }, + { + "_id": "62875103af0a053a6672c24e", + "_tpl": "5c7d55f52e221644f31bff6a", + "parentId": "62875103af0a053a6672c24d", + "slotId": "mod_scope" + }, + { + "_id": "62875103af0a053a6672c24f", + "_tpl": "5c7d560b2e22160bc12c6139", + "parentId": "62875103af0a053a6672c24e", + "slotId": "mod_scope" + }, + { + "_id": "62875103af0a053a6672c250", + "_tpl": "5c7d55de2e221644f31bff68", + "parentId": "62875103af0a053a6672c24f", + "slotId": "mod_scope" + }, + { + "_id": "62875103af0a053a6672c251", + "_tpl": "55d35ee94bdc2d61338b4568", + "parentId": "62875103af0a053a6672c24d", + "slotId": "mod_barrel" + }, + { + "_id": "62875103af0a053a6672c252", + "_tpl": "5c6d710d2e22165df16b81e7", + "parentId": "62875103af0a053a6672c251", + "slotId": "mod_muzzle" + }, + { + "_id": "62875103af0a053a6672c253", + "_tpl": "55d6190f4bdc2d87028b4567", + "parentId": "62875103af0a053a6672c252", + "slotId": "mod_muzzle" + }, + { + "_id": "62875103af0a053a6672c254", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "62875103af0a053a6672c251", + "slotId": "mod_gas_block" + }, + { + "_id": "62875103af0a053a6672c255", + "_tpl": "5ea16acdfadf1d18c87b0784", + "parentId": "62875103af0a053a6672c24d", + "slotId": "mod_handguard" + }, + { + "_id": "62875103af0a053a6672c256", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "62875103af0a053a6672c255", + "slotId": "mod_mount_000" + }, + { + "_id": "62875103af0a053a6672c257", + "_tpl": "5cc9c20cd7f00c001336c65d", + "parentId": "62875103af0a053a6672c256", + "slotId": "mod_tactical" + }, + { + "_id": "62875103af0a053a6672c258", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "62875103af0a053a6672c255", + "slotId": "mod_foregrip" + }, + { + "_id": "62875103af0a053a6672c259", + "_tpl": "5c7fc87d2e221644f31c0298", + "parentId": "62875103af0a053a6672c258", + "slotId": "mod_foregrip" + }, + { + "_id": "62875103af0a053a6672c25a", + "_tpl": "5c17804b2e2216152006c02f", + "parentId": "62875103af0a053a6672c255", + "slotId": "mod_sight_front" + }, + { + "_id": "62875103af0a053a6672c25b", + "_tpl": "5c1780312e221602b66cc189", + "parentId": "62875103af0a053a6672c24d", + "slotId": "mod_sight_rear" + }, + { + "_id": "62875103af0a053a6672c25c", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "62875103af0a053a6672c24a", + "slotId": "mod_stock" + }, + { + "_id": "62875103af0a053a6672c25d", + "_tpl": "5d135ecbd7ad1a21c176542e", + "parentId": "62875103af0a053a6672c25c", + "slotId": "mod_stock_000" + }, + { + "_id": "62875103af0a053a6672c25e", + "_tpl": "5b2240bf5acfc40dc528af69", + "parentId": "62875103af0a053a6672c24a", + "slotId": "mod_charge" + } + ], + "_name": "birdeye_m4", + "_parent": "62875103af0a053a6672c24a", + "_type": "Preset" + }, + "628751e6af0a053a6672c261": { + "_changeWeaponName": true, + "_id": "628751e6af0a053a6672c261", + "_items": [ + { + "_id": "628751e6af0a053a6672c26f", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "628751e6af0a053a6672c270", + "_tpl": "5d25a6a48abbc306c62e6310", + "parentId": "628751e6af0a053a6672c26f", + "slotId": "mod_magazine" + }, + { + "_id": "628751e6af0a053a6672c271", + "_tpl": "5cde739cd7f00c0010373bd3", + "parentId": "628751e6af0a053a6672c26f", + "slotId": "mod_stock" + }, + { + "_id": "628751e6af0a053a6672c272", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "628751e6af0a053a6672c271", + "slotId": "mod_stock" + }, + { + "_id": "628751e6af0a053a6672c273", + "_tpl": "5d4406a8a4b9361e4f6eb8b7", + "parentId": "628751e6af0a053a6672c272", + "slotId": "mod_stock_000" + }, + { + "_id": "628751e6af0a053a6672c274", + "_tpl": "5a339805c4a2826c6e06d73d", + "parentId": "628751e6af0a053a6672c271", + "slotId": "mod_pistol_grip" + }, + { + "_id": "628751e6af0a053a6672c275", + "_tpl": "5cde7afdd7f00c000d36b89d", + "parentId": "628751e6af0a053a6672c271", + "slotId": "mod_handguard" + }, + { + "_id": "628751e6af0a053a6672c276", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "628751e6af0a053a6672c26f", + "slotId": "mod_barrel" + }, + { + "_id": "628751e6af0a053a6672c277", + "_tpl": "5d1f819086f7744b355c219b", + "parentId": "628751e6af0a053a6672c276", + "slotId": "mod_muzzle" + }, + { + "_id": "628751e6af0a053a6672c278", + "_tpl": "5cff9e84d7ad1a049e54ed55", + "parentId": "628751e6af0a053a6672c277", + "slotId": "mod_muzzle" + }, + { + "_id": "628751e6af0a053a6672c279", + "_tpl": "5cde7b43d7f00c000d36b93e", + "parentId": "628751e6af0a053a6672c26f", + "slotId": "mod_mount" + }, + { + "_id": "628751e6af0a053a6672c27a", + "_tpl": "5aa66a9be5b5b0214e506e89", + "parentId": "628751e6af0a053a6672c279", + "slotId": "mod_scope" + }, + { + "_id": "628751e6af0a053a6672c27b", + "_tpl": "61714eec290d254f5e6b2ffc", + "parentId": "628751e6af0a053a6672c27a", + "slotId": "mod_scope" + } + ], + "_name": "birdeye_m700", + "_parent": "628751e6af0a053a6672c26f", + "_type": "Preset" + }, + "62875256bbbd995f3c41b253": { + "_changeWeaponName": true, + "_id": "62875256bbbd995f3c41b253", + "_items": [ + { + "_id": "62875256bbbd995f3c41b257", + "_tpl": "5a367e5dc4a282000e49738f", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "62875256bbbd995f3c41b258", + "_tpl": "5a339805c4a2826c6e06d73d", + "parentId": "62875256bbbd995f3c41b257", + "slotId": "mod_pistol_grip" + }, + { + "_id": "62875256bbbd995f3c41b259", + "_tpl": "5a3501acc4a282000d72293a", + "parentId": "62875256bbbd995f3c41b257", + "slotId": "mod_magazine" + }, + { + "_id": "62875256bbbd995f3c41b25a", + "_tpl": "5a33ca0fc4a282000d72292f", + "parentId": "62875256bbbd995f3c41b257", + "slotId": "mod_stock" + }, + { + "_id": "62875256bbbd995f3c41b25b", + "_tpl": "5a33cae9c4a28232980eb086", + "parentId": "62875256bbbd995f3c41b25a", + "slotId": "mod_stock" + }, + { + "_id": "62875256bbbd995f3c41b25c", + "_tpl": "5a329052c4a28200741e22d3", + "parentId": "62875256bbbd995f3c41b257", + "slotId": "mod_handguard" + }, + { + "_id": "62875256bbbd995f3c41b25d", + "_tpl": "5c0102b20db834001d23eebc", + "parentId": "62875256bbbd995f3c41b25c", + "slotId": "mod_foregrip" + }, + { + "_id": "62875256bbbd995f3c41b25e", + "_tpl": "5fce0cf655375d18a253eff0", + "parentId": "62875256bbbd995f3c41b25d", + "slotId": "mod_foregrip" + }, + { + "_id": "62875256bbbd995f3c41b25f", + "_tpl": "5a34fae7c4a2826c6e06d760", + "parentId": "62875256bbbd995f3c41b257", + "slotId": "mod_barrel" + }, + { + "_id": "62875256bbbd995f3c41b260", + "_tpl": "607ffb988900dc2d9a55b6e4", + "parentId": "62875256bbbd995f3c41b25f", + "slotId": "mod_muzzle" + }, + { + "_id": "62875256bbbd995f3c41b261", + "_tpl": "5a34fbadc4a28200741e230a", + "parentId": "62875256bbbd995f3c41b25f", + "slotId": "mod_gas_block" + }, + { + "_id": "62875256bbbd995f3c41b262", + "_tpl": "5a37ca54c4a282000d72296a", + "parentId": "62875256bbbd995f3c41b257", + "slotId": "mod_scope" + }, + { + "_id": "62875256bbbd995f3c41b263", + "_tpl": "5a37cb10c4a282329a73b4e7", + "parentId": "62875256bbbd995f3c41b262", + "slotId": "mod_scope_000" + } + ], + "_name": "birdeye_rsass", + "_parent": "62875256bbbd995f3c41b257", + "_type": "Preset" + }, + "628753bba4a8431af4739d3b": { + "_changeWeaponName": true, + "_id": "628753bba4a8431af4739d3b", + "_items": [ + { + "_id": "628753bba4a8431af4739d4f", + "_tpl": "5df8ce05b11454561e39243b", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "628753bba4a8431af4739d50", + "_tpl": "57af48872459771f0b2ebf11", + "parentId": "628753bba4a8431af4739d4f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "628753bba4a8431af4739d51", + "_tpl": "5df8f541c41b2312ea3335e3", + "parentId": "628753bba4a8431af4739d4f", + "slotId": "mod_magazine" + }, + { + "_id": "628753bba4a8431af4739d52", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "628753bba4a8431af4739d4f", + "slotId": "mod_stock" + }, + { + "_id": "628753bba4a8431af4739d53", + "_tpl": "5fc2369685fd526b824a5713", + "parentId": "628753bba4a8431af4739d52", + "slotId": "mod_stock_000" + }, + { + "_id": "628753bba4a8431af4739d54", + "_tpl": "5df8e4080b92095fd441e594", + "parentId": "628753bba4a8431af4739d4f", + "slotId": "mod_reciever" + }, + { + "_id": "628753bba4a8431af4739d55", + "_tpl": "618bab21526131765025ab3f", + "parentId": "628753bba4a8431af4739d54", + "slotId": "mod_scope" + }, + { + "_id": "628753bba4a8431af4739d56", + "_tpl": "618ba27d9008e4636a67f61d", + "parentId": "628753bba4a8431af4739d55", + "slotId": "mod_scope" + }, + { + "_id": "628753bba4a8431af4739d57", + "_tpl": "618ba92152ecee1505530bd3", + "parentId": "628753bba4a8431af4739d55", + "slotId": "mod_mount" + }, + { + "_id": "628753bba4a8431af4739d58", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "628753bba4a8431af4739d57", + "slotId": "mod_scope" + }, + { + "_id": "628753bba4a8431af4739d59", + "_tpl": "5df917564a9f347bc92edca3", + "parentId": "628753bba4a8431af4739d54", + "slotId": "mod_barrel" + }, + { + "_id": "628753bba4a8431af4739d5a", + "_tpl": "6130c43c67085e45ef1405a1", + "parentId": "628753bba4a8431af4739d59", + "slotId": "mod_muzzle" + }, + { + "_id": "628753bba4a8431af4739d5b", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "parentId": "628753bba4a8431af4739d5a", + "slotId": "mod_muzzle" + }, + { + "_id": "628753bba4a8431af4739d5c", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "parentId": "628753bba4a8431af4739d59", + "slotId": "mod_gas_block" + }, + { + "_id": "628753bba4a8431af4739d5d", + "_tpl": "5df916dfbb49d91fb446d6b9", + "parentId": "628753bba4a8431af4739d54", + "slotId": "mod_handguard" + }, + { + "_id": "628753bba4a8431af4739d5e", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "628753bba4a8431af4739d5d", + "slotId": "mod_tactical" + }, + { + "_id": "628753bba4a8431af4739d5f", + "_tpl": "5dfa3d950dee1b22f862eae0", + "parentId": "628753bba4a8431af4739d5d", + "slotId": "mod_sight_front" + }, + { + "_id": "628753bba4a8431af4739d60", + "_tpl": "57cffcd624597763133760c5", + "parentId": "628753bba4a8431af4739d5d", + "slotId": "mod_foregrip" + }, + { + "_id": "628753bba4a8431af4739d61", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "parentId": "628753bba4a8431af4739d54", + "slotId": "mod_sight_rear" + }, + { + "_id": "628753bba4a8431af4739d62", + "_tpl": "5df8e085bb49d91fb446d6a8", + "parentId": "628753bba4a8431af4739d4f", + "slotId": "mod_charge" + } + ], + "_name": "birdeye_sr25", + "_parent": "628753bba4a8431af4739d4f", + "_type": "Preset" + }, + "628753ee0c9eb3366b5218d4": { + "_changeWeaponName": true, + "_id": "628753ee0c9eb3366b5218d4", + "_items": [ + { + "_id": "628753ee0c9eb3366b5218dd", + "_tpl": "5b1fa9b25acfc40018633c01", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "628753ee0c9eb3366b5218de", + "_tpl": "5b1fa9ea5acfc40018633c0a", + "parentId": "628753ee0c9eb3366b5218dd", + "slotId": "mod_barrel" + }, + { + "_id": "628753ee0c9eb3366b5218df", + "_tpl": "5a7b4960e899ef197b331a2d", + "parentId": "628753ee0c9eb3366b5218dd", + "slotId": "mod_pistol_grip" + }, + { + "_id": "628753ee0c9eb3366b5218e0", + "_tpl": "5b1faa0f5acfc40dc528aeb5", + "parentId": "628753ee0c9eb3366b5218dd", + "slotId": "mod_reciever" + }, + { + "_id": "628753ee0c9eb3366b5218e1", + "_tpl": "5a7d912f159bd400165484f3", + "parentId": "628753ee0c9eb3366b5218e0", + "slotId": "mod_sight_rear" + }, + { + "_id": "628753ee0c9eb3366b5218e2", + "_tpl": "5a7d9104159bd400134c8c21", + "parentId": "628753ee0c9eb3366b5218e0", + "slotId": "mod_sight_front" + }, + { + "_id": "628753ee0c9eb3366b5218e3", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "628753ee0c9eb3366b5218dd", + "slotId": "mod_magazine" + }, + { + "_id": "628753ee0c9eb3366b5218e4", + "_tpl": "56def37dd2720bec348b456a", + "parentId": "628753ee0c9eb3366b5218dd", + "slotId": "mod_tactical" + } + ], + "_name": "knight_g18", + "_parent": "628753ee0c9eb3366b5218dd", + "_type": "Preset" + }, + "628754510c9eb3366b5218f8": { + "_changeWeaponName": true, + "_id": "628754510c9eb3366b5218f8", + "_items": [ + { + "_id": "628754510c9eb3366b521900", + "_tpl": "5a7ae0c351dfba0017554310", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "628754510c9eb3366b521901", + "_tpl": "5a6b5b8a8dc32e001207faf3", + "parentId": "628754510c9eb3366b521900", + "slotId": "mod_barrel" + }, + { + "_id": "628754510c9eb3366b521902", + "_tpl": "5a71e4f48dc32e001207fb26", + "parentId": "628754510c9eb3366b521900", + "slotId": "mod_reciever" + }, + { + "_id": "628754510c9eb3366b521903", + "_tpl": "5a71e0fb8dc32e00094b97f2", + "parentId": "628754510c9eb3366b521902", + "slotId": "mod_sight_rear" + }, + { + "_id": "628754510c9eb3366b521904", + "_tpl": "5a71e0048dc32e000c52ecc8", + "parentId": "628754510c9eb3366b521902", + "slotId": "mod_sight_front" + }, + { + "_id": "628754510c9eb3366b521905", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "628754510c9eb3366b521902", + "slotId": "mod_scope" + }, + { + "_id": "628754510c9eb3366b521906", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "628754510c9eb3366b521900", + "slotId": "mod_magazine" + } + ], + "_name": "knight_g17", + "_parent": "628754510c9eb3366b521900", + "_type": "Preset" + }, + "6287549856af630b0f672cc4": { + "_changeWeaponName": true, + "_id": "6287549856af630b0f672cc4", + "_items": [ + { + "_id": "6287549856af630b0f672cd2", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6287549856af630b0f672cd3", + "_tpl": "5c48a2c22e221602b313fb6c", + "parentId": "6287549856af630b0f672cd2", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6287549856af630b0f672cd4", + "_tpl": "5a3501acc4a282000d72293a", + "parentId": "6287549856af630b0f672cd2", + "slotId": "mod_magazine" + }, + { + "_id": "6287549856af630b0f672cd5", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "parentId": "6287549856af630b0f672cd2", + "slotId": "mod_handguard" + }, + { + "_id": "6287549856af630b0f672cd6", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "6287549856af630b0f672cd5", + "slotId": "mod_mount_000" + }, + { + "_id": "6287549856af630b0f672cd7", + "_tpl": "58c157be86f77403c74b2bb6", + "parentId": "6287549856af630b0f672cd6", + "slotId": "mod_foregrip" + }, + { + "_id": "6287549856af630b0f672cd8", + "_tpl": "5c06595c0db834001a66af6c", + "parentId": "6287549856af630b0f672cd5", + "slotId": "mod_tactical" + }, + { + "_id": "6287549856af630b0f672cd9", + "_tpl": "5dcbe9431e1f4616d354987e", + "parentId": "6287549856af630b0f672cd2", + "slotId": "mod_barrel" + }, + { + "_id": "6287549856af630b0f672cda", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "parentId": "6287549856af630b0f672cd9", + "slotId": "mod_muzzle" + }, + { + "_id": "6287549856af630b0f672cdb", + "_tpl": "59db7eed86f77461f8380365", + "parentId": "6287549856af630b0f672cd2", + "slotId": "mod_scope" + }, + { + "_id": "6287549856af630b0f672cdc", + "_tpl": "5c052a900db834001a66acbd", + "parentId": "6287549856af630b0f672cdb", + "slotId": "mod_scope" + }, + { + "_id": "6287549856af630b0f672cdd", + "_tpl": "5a33bab6c4a28200741e22f8", + "parentId": "6287549856af630b0f672cdc", + "slotId": "mod_mount" + }, + { + "_id": "6287549856af630b0f672cde", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "6287549856af630b0f672cdd", + "slotId": "mod_scope" + }, + { + "_id": "6287549856af630b0f672cdf", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "parentId": "6287549856af630b0f672cd2", + "slotId": "mod_sight_rear" + } + ], + "_name": "knight_mdr308", + "_parent": "6287549856af630b0f672cd2", + "_type": "Preset" + }, + "628755c60c9eb3366b521908": { + "_changeWeaponName": true, + "_id": "628755c60c9eb3366b521908", + "_items": [ + { + "_id": "628755c60c9eb3366b521918", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "628755c60c9eb3366b521919", + "_tpl": "57af48872459771f0b2ebf11", + "parentId": "628755c60c9eb3366b521918", + "slotId": "mod_pistol_grip" + }, + { + "_id": "628755c60c9eb3366b52191a", + "_tpl": "59d625f086f774661516605d", + "parentId": "628755c60c9eb3366b521918", + "slotId": "mod_magazine" + }, + { + "_id": "628755c60c9eb3366b52191b", + "_tpl": "606587a88900dc2d9a55b659", + "parentId": "628755c60c9eb3366b521918", + "slotId": "mod_reciever" + }, + { + "_id": "628755c60c9eb3366b52191c", + "_tpl": "5c0a2cec0db834001b7ce47d", + "parentId": "628755c60c9eb3366b52191b", + "slotId": "mod_scope" + }, + { + "_id": "628755c60c9eb3366b52191d", + "_tpl": "60658776f2cb2e02a42ace2b", + "parentId": "628755c60c9eb3366b52191b", + "slotId": "mod_barrel" + }, + { + "_id": "628755c60c9eb3366b52191e", + "_tpl": "5dfa3cd1b33c0951220c079b", + "parentId": "628755c60c9eb3366b52191d", + "slotId": "mod_muzzle" + }, + { + "_id": "628755c60c9eb3366b52191f", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "parentId": "628755c60c9eb3366b52191d", + "slotId": "mod_gas_block" + }, + { + "_id": "628755c60c9eb3366b521920", + "_tpl": "6065880c132d4d12c81fd8da", + "parentId": "628755c60c9eb3366b52191b", + "slotId": "mod_handguard" + }, + { + "_id": "628755c60c9eb3366b521921", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "628755c60c9eb3366b521920", + "slotId": "mod_mount_001" + }, + { + "_id": "628755c60c9eb3366b521922", + "_tpl": "57d17e212459775a1179a0f5", + "parentId": "628755c60c9eb3366b521921", + "slotId": "mod_tactical" + }, + { + "_id": "628755c60c9eb3366b521923", + "_tpl": "57d17c5e2459775a5c57d17d", + "parentId": "628755c60c9eb3366b521922", + "slotId": "mod_flashlight" + }, + { + "_id": "628755c60c9eb3366b521924", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "628755c60c9eb3366b521920", + "slotId": "mod_tactical_000" + }, + { + "_id": "628755c60c9eb3366b521925", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "628755c60c9eb3366b521920", + "slotId": "mod_foregrip" + }, + { + "_id": "628755c60c9eb3366b521926", + "_tpl": "5fce0cf655375d18a253eff0", + "parentId": "628755c60c9eb3366b521925", + "slotId": "mod_foregrip" + }, + { + "_id": "628755c60c9eb3366b521927", + "_tpl": "5c17804b2e2216152006c02f", + "parentId": "628755c60c9eb3366b521920", + "slotId": "mod_sight_front" + }, + { + "_id": "628755c60c9eb3366b521928", + "_tpl": "5c1780312e221602b66cc189", + "parentId": "628755c60c9eb3366b52191b", + "slotId": "mod_sight_rear" + }, + { + "_id": "628755c60c9eb3366b521929", + "_tpl": "5d120a10d7ad1a4e1026ba85", + "parentId": "628755c60c9eb3366b521918", + "slotId": "mod_stock_001" + }, + { + "_id": "628755c60c9eb3366b52192a", + "_tpl": "5d120a28d7ad1a1c8962e295", + "parentId": "628755c60c9eb3366b521929", + "slotId": "mod_stock" + }, + { + "_id": "628755c60c9eb3366b52192b", + "_tpl": "606587bd6d0bd7580617bacc", + "parentId": "628755c60c9eb3366b521918", + "slotId": "mod_charge" + } + ], + "_name": "knight_mk47", + "_parent": "628755c60c9eb3366b521918", + "_type": "Preset" + }, + "628755f166bb7d4a3c32bc45": { + "_changeWeaponName": true, + "_id": "628755f166bb7d4a3c32bc45", + "_items": [ + { + "_id": "628755f166bb7d4a3c32bc57", + "_tpl": "6165ac306ef05c2ce828ef74", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "628755f166bb7d4a3c32bc58", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "628755f166bb7d4a3c32bc57", + "slotId": "mod_pistol_grip" + }, + { + "_id": "628755f166bb7d4a3c32bc59", + "_tpl": "6183d53f1cb55961fa0fdcda", + "parentId": "628755f166bb7d4a3c32bc57", + "slotId": "mod_magazine" + }, + { + "_id": "628755f166bb7d4a3c32bc5a", + "_tpl": "6165aeedfaa1272e431521e3", + "parentId": "628755f166bb7d4a3c32bc57", + "slotId": "mod_reciever" + }, + { + "_id": "628755f166bb7d4a3c32bc5b", + "_tpl": "57aca93d2459771f2c7e26db", + "parentId": "628755f166bb7d4a3c32bc5a", + "slotId": "mod_scope" + }, + { + "_id": "628755f166bb7d4a3c32bc5c", + "_tpl": "618168b350224f204c1da4d8", + "parentId": "628755f166bb7d4a3c32bc5a", + "slotId": "mod_barrel" + }, + { + "_id": "628755f166bb7d4a3c32bc5d", + "_tpl": "618178aa1cb55961fa0fdc80", + "parentId": "628755f166bb7d4a3c32bc5c", + "slotId": "mod_muzzle" + }, + { + "_id": "628755f166bb7d4a3c32bc5e", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "628755f166bb7d4a3c32bc5c", + "slotId": "mod_sight_front" + }, + { + "_id": "628755f166bb7d4a3c32bc5f", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "628755f166bb7d4a3c32bc5a", + "slotId": "mod_sight_rear" + }, + { + "_id": "628755f166bb7d4a3c32bc60", + "_tpl": "544909bb4bdc2d6f028b4577", + "parentId": "628755f166bb7d4a3c32bc5a", + "slotId": "mod_tactical_000" + }, + { + "_id": "628755f166bb7d4a3c32bc61", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "628755f166bb7d4a3c32bc5a", + "slotId": "mod_mount_000" + }, + { + "_id": "628755f166bb7d4a3c32bc62", + "_tpl": "5fce0cf655375d18a253eff0", + "parentId": "628755f166bb7d4a3c32bc61", + "slotId": "mod_foregrip" + }, + { + "_id": "628755f166bb7d4a3c32bc63", + "_tpl": "61825d06d92c473c770215de", + "parentId": "628755f166bb7d4a3c32bc57", + "slotId": "mod_stock" + }, + { + "_id": "628755f166bb7d4a3c32bc64", + "_tpl": "61825d136ef05c2ce828f1cc", + "parentId": "628755f166bb7d4a3c32bc63", + "slotId": "mod_stock_001" + }, + { + "_id": "628755f166bb7d4a3c32bc65", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "628755f166bb7d4a3c32bc64", + "slotId": "mod_stock" + }, + { + "_id": "628755f166bb7d4a3c32bc66", + "_tpl": "61825d24d3a39d50044c13af", + "parentId": "628755f166bb7d4a3c32bc63", + "slotId": "mod_stock_002" + }, + { + "_id": "628755f166bb7d4a3c32bc67", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "628755f166bb7d4a3c32bc57", + "slotId": "mod_charge" + } + ], + "_name": "knight_scarh", + "_parent": "628755f166bb7d4a3c32bc57", + "_type": "Preset" + }, + "629711787af74c3ff577951d": { + "_changeWeaponName": false, + "_encyclopedia": "628b9c37a733087d0d7fe84b", + "_id": "629711787af74c3ff577951d", + "_items": [ + { + "_id": "629711787af74c3ff577951f", + "_tpl": "628b9c37a733087d0d7fe84b", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "629711787af74c3ff5779520", + "_tpl": "628b8d83717774443b15e248", + "parentId": "629711787af74c3ff577951f", + "slotId": "mod_gas_block" + }, + { + "_id": "629711787af74c3ff5779521", + "_tpl": "628b916469015a4e1711ed8d", + "parentId": "629711787af74c3ff5779520", + "slotId": "mod_handguard" + }, + { + "_id": "629711787af74c3ff5779522", + "_tpl": "628b9be6cff66b70c002b14c", + "parentId": "629711787af74c3ff5779521", + "slotId": "mod_reciever" + }, + { + "_id": "629711787af74c3ff5779523", + "_tpl": "628b9471078f94059a4b9bfb", + "parentId": "629711787af74c3ff5779522", + "slotId": "mod_sight_rear" + }, + { + "_id": "629711787af74c3ff5779524", + "_tpl": "5943eeeb86f77412d6384f6b", + "parentId": "629711787af74c3ff577951f", + "slotId": "mod_muzzle" + }, + { + "_id": "629711787af74c3ff5779525", + "_tpl": "5cf50850d7f00c056e24104c", + "parentId": "629711787af74c3ff577951f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "629711787af74c3ff5779526", + "_tpl": "628b9a40717774443b15e9f2", + "parentId": "629711787af74c3ff577951f", + "slotId": "mod_stock_000" + }, + { + "_id": "629711787af74c3ff5779527", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "629711787af74c3ff5779526", + "slotId": "mod_stock" + }, + { + "_id": "629711787af74c3ff5779528", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "629711787af74c3ff577951f", + "slotId": "mod_magazine" + } + ], + "_name": "SAG545_short", + "_parent": "629711787af74c3ff577951f", + "_type": "Preset" + }, + "62971cf67af74c3ff577954b": { + "_changeWeaponName": false, + "_encyclopedia": "628b5638ad252a16da6dd245", + "_id": "62971cf67af74c3ff577954b", + "_items": [ + { + "_id": "62971cf67af74c3ff577954f", + "_tpl": "628b5638ad252a16da6dd245", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "62971cf67af74c3ff5779550", + "_tpl": "628b8d83717774443b15e248", + "parentId": "62971cf67af74c3ff577954f", + "slotId": "mod_gas_block" + }, + { + "_id": "62971cf67af74c3ff5779551", + "_tpl": "628b916469015a4e1711ed8d", + "parentId": "62971cf67af74c3ff5779550", + "slotId": "mod_handguard" + }, + { + "_id": "62971cf67af74c3ff5779552", + "_tpl": "628b9be6cff66b70c002b14c", + "parentId": "62971cf67af74c3ff5779551", + "slotId": "mod_reciever" + }, + { + "_id": "62971cf67af74c3ff5779553", + "_tpl": "628b9471078f94059a4b9bfb", + "parentId": "62971cf67af74c3ff5779552", + "slotId": "mod_sight_rear" + }, + { + "_id": "62971cf67af74c3ff5779554", + "_tpl": "5ac7655e5acfc40016339a19", + "parentId": "62971cf67af74c3ff577954f", + "slotId": "mod_muzzle" + }, + { + "_id": "62971cf67af74c3ff5779555", + "_tpl": "5cf50850d7f00c056e24104c", + "parentId": "62971cf67af74c3ff577954f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "62971cf67af74c3ff5779556", + "_tpl": "628b9a40717774443b15e9f2", + "parentId": "62971cf67af74c3ff577954f", + "slotId": "mod_stock_000" + }, + { + "_id": "62971cf67af74c3ff5779557", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "62971cf67af74c3ff5779556", + "slotId": "mod_stock" + }, + { + "_id": "62971cf67af74c3ff5779558", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "62971cf67af74c3ff577954f", + "slotId": "mod_magazine" + } + ], + "_name": "SAG545_long", + "_parent": "62971cf67af74c3ff577954f", + "_type": "Preset" + }, + "62972a7d91492d1a34152fbe": { + "_changeWeaponName": false, + "_encyclopedia": "628a60ae6b1d481ff772e9c8", + "_id": "62972a7d91492d1a34152fbe", + "_items": [ + { + "_id": "62972a7d91492d1a34152fc9", + "_tpl": "628a60ae6b1d481ff772e9c8", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "62972a7d91492d1a34152fca", + "_tpl": "628a83c29179c324ed269508", + "parentId": "62972a7d91492d1a34152fc9", + "slotId": "mod_gas_block" + }, + { + "_id": "62972a7d91492d1a34152fcb", + "_tpl": "628a66b41d5e41750e314f34", + "parentId": "62972a7d91492d1a34152fc9", + "slotId": "mod_muzzle" + }, + { + "_id": "62972a7d91492d1a34152fcc", + "_tpl": "628a664bccaab13006640e47", + "parentId": "62972a7d91492d1a34152fc9", + "slotId": "mod_pistol_grip" + }, + { + "_id": "62972a7d91492d1a34152fcd", + "_tpl": "628a665a86cbd9750d2ff5e5", + "parentId": "62972a7d91492d1a34152fc9", + "slotId": "mod_reciever" + }, + { + "_id": "62972a7d91492d1a34152fce", + "_tpl": "628a7b23b0f75035732dd565", + "parentId": "62972a7d91492d1a34152fc9", + "slotId": "mod_sight_rear" + }, + { + "_id": "62972a7d91492d1a34152fcf", + "_tpl": "628a6678ccaab13006640e49", + "parentId": "62972a7d91492d1a34152fc9", + "slotId": "mod_stock_000" + }, + { + "_id": "62972a7d91492d1a34152fd0", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "62972a7d91492d1a34152fcf", + "slotId": "mod_stock" + }, + { + "_id": "62972a7d91492d1a34152fd1", + "_tpl": "628a85ee6b1d481ff772e9d5", + "parentId": "62972a7d91492d1a34152fd0", + "slotId": "mod_stock_000" + }, + { + "_id": "62972a7d91492d1a34152fd2", + "_tpl": "59d625f086f774661516605d", + "parentId": "62972a7d91492d1a34152fc9", + "slotId": "mod_magazine" + } + ], + "_name": "rd704_default", + "_parent": "62972a7d91492d1a34152fc9", + "_type": "Preset" + }, + "62973e474bb5ab23071c2a70": { + "_changeWeaponName": false, + "_encyclopedia": "627e14b21713922ded6f2c15", + "_id": "62973e474bb5ab23071c2a70", + "_items": [ + { + "_id": "6298905aa77ec735f90a2fae", + "_tpl": "627e14b21713922ded6f2c15", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6298905aa77ec735f90a2faf", + "_tpl": "628120fd5631d45211793c9f", + "parentId": "6298905aa77ec735f90a2fae", + "slotId": "mod_magazine" + }, + { + "_id": "6298905aa77ec735f90a2fb0", + "_tpl": "62811e2510e26c1f344e6554", + "parentId": "6298905aa77ec735f90a2fae", + "slotId": "mod_pistol_grip", + "upd": { + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6298905aa77ec735f90a2fb1", + "_tpl": "62811f828193841aca4a45c3", + "parentId": "6298905aa77ec735f90a2fb0", + "slotId": "mod_stock" + }, + { + "_id": "6298905aa77ec735f90a2fb2", + "_tpl": "6281204f308cb521f87a8f9b", + "parentId": "6298905aa77ec735f90a2fb0", + "slotId": "mod_reciever" + }, + { + "_id": "6298905aa77ec735f90a2fb3", + "_tpl": "6281209662cba23f6c4d7a19", + "parentId": "6298905aa77ec735f90a2fb2", + "slotId": "mod_handguard" + }, + { + "_id": "6298905aa77ec735f90a2fb4", + "_tpl": "628120c21d5df4475f46a337", + "parentId": "6298905aa77ec735f90a2fb3", + "slotId": "mod_mount_000" + }, + { + "_id": "6298905aa77ec735f90a2fb5", + "_tpl": "628120d309427b40ab14e76d", + "parentId": "6298905aa77ec735f90a2fb3", + "slotId": "mod_mount_001" + }, + { + "_id": "6298905aa77ec735f90a2fb6", + "_tpl": "628120d309427b40ab14e76d", + "parentId": "6298905aa77ec735f90a2fb3", + "slotId": "mod_mount_002" + }, + { + "_id": "6298905aa77ec735f90a2fb7", + "_tpl": "628120dd308cb521f87a8fa1", + "parentId": "6298905aa77ec735f90a2fb3", + "slotId": "mod_mount_003" + }, + { + "_id": "6298905aa77ec735f90a2fb8", + "_tpl": "6281212a09427b40ab14e770", + "parentId": "6298905aa77ec735f90a2fb2", + "slotId": "mod_foregrip" + }, + { + "_id": "6298905aa77ec735f90a2fb9", + "_tpl": "62811fbf09427b40ab14e767", + "parentId": "6298905aa77ec735f90a2fb2", + "slotId": "mod_reciever" + }, + { + "_id": "6298905aa77ec735f90a2fba", + "_tpl": "628121434fa03b6b6c35dc6a", + "parentId": "6298905aa77ec735f90a2fb9", + "slotId": "mod_barrel" + }, + { + "_id": "6298905aa77ec735f90a2fbb", + "_tpl": "62812081d23f207deb0ab216", + "parentId": "6298905aa77ec735f90a2fba", + "slotId": "mod_muzzle" + }, + { + "_id": "6298905aa77ec735f90a2fbc", + "_tpl": "628120621d5df4475f46a335", + "parentId": "6298905aa77ec735f90a2fbb", + "slotId": "mod_muzzle" + }, + { + "_id": "6298905aa77ec735f90a2fbd", + "_tpl": "62811cd7308cb521f87a8f99", + "parentId": "6298905aa77ec735f90a2fae", + "slotId": "mod_charge" + } + ], + "_name": "AXMC_default", + "_parent": "6298905aa77ec735f90a2fae", + "_type": "Preset" + }, + "629744d002667c48a467e9f9": { + "_changeWeaponName": false, + "_encyclopedia": "6275303a9f372d6ea97f9ec7", + "_id": "629744d002667c48a467e9f9", + "_items": [ + { + "_id": "629744d002667c48a467e9ff", + "_tpl": "6275303a9f372d6ea97f9ec7", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "629744d002667c48a467ea00", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "629744d002667c48a467e9ff", + "slotId": "mod_pistol_grip" + }, + { + "_id": "629744d002667c48a467ea01", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "629744d002667c48a467e9ff", + "slotId": "mod_stock" + }, + { + "_id": "629744d002667c48a467ea02", + "_tpl": "627bce33f21bc425b06ab967", + "parentId": "629744d002667c48a467e9ff", + "slotId": "mod_magazine" + }, + { + "_id": "629744d002667c48a467ea03", + "_tpl": "6284bd5f95250a29bc628a30", + "parentId": "629744d002667c48a467e9ff", + "slotId": "mod_scope" + } + ], + "_name": "MGL_default", + "_parent": "629744d002667c48a467e9ff", + "_type": "Preset" + }, + "62975de85c32d414f8797433": { + "_changeWeaponName": false, + "_encyclopedia": "6259b864ebedf17603599e88", + "_id": "62975de85c32d414f8797433", + "_items": [ + { + "_id": "62975de85c32d414f879743d", + "_tpl": "6259b864ebedf17603599e88", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "62975de85c32d414f879743e", + "_tpl": "6259c2c1d714855d182bad85", + "parentId": "62975de85c32d414f879743d", + "slotId": "mod_barrel" + }, + { + "_id": "62975de85c32d414f879743f", + "_tpl": "6259c4347d6aab70bc23a190", + "parentId": "62975de85c32d414f879743d", + "slotId": "mod_handguard" + }, + { + "_id": "62975de85c32d414f8797440", + "_tpl": "625ff2ccb8c587128c1a01dd", + "parentId": "62975de85c32d414f879743d", + "slotId": "mod_magazine" + }, + { + "_id": "62975de85c32d414f8797441", + "_tpl": "6259c3387d6aab70bc23a18d", + "parentId": "62975de85c32d414f879743d", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "62975de85c32d414f8797442", + "_tpl": "6259c3d8012d6678ec38eeb8", + "parentId": "62975de85c32d414f8797441", + "slotId": "mod_pistol_grip" + }, + { + "_id": "62975de85c32d414f8797443", + "_tpl": "625ed7c64d9b6612df732146", + "parentId": "62975de85c32d414f879743d", + "slotId": "mod_mount" + }, + { + "_id": "62975de85c32d414f8797444", + "_tpl": "625ebcef6f53af4aa66b44dc", + "parentId": "62975de85c32d414f879743d", + "slotId": "mod_sight_rear" + }, + { + "_id": "62975de85c32d414f8797445", + "_tpl": "625ec45bb14d7326ac20f572", + "parentId": "62975de85c32d414f879743d", + "slotId": "mod_charge" + } + ], + "_name": "M3_default", + "_parent": "62975de85c32d414f879743d", + "_type": "Preset" + }, + "629766c15c9e3c392f7c2db0": { + "_changeWeaponName": true, + "_id": "629766c15c9e3c392f7c2db0", + "_items": [ + { + "_id": "6297693e5c9e3c392f7c2dc0", + "_tpl": "55801eed4bdc2d89578b4588", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6297693e5c9e3c392f7c2dc1", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "parentId": "6297693e5c9e3c392f7c2dc0", + "slotId": "mod_magazine" + }, + { + "_id": "6297693e5c9e3c392f7c2dc2", + "_tpl": "56083e1b4bdc2dc8488b4572", + "parentId": "6297693e5c9e3c392f7c2dc0", + "slotId": "mod_sight_rear" + }, + { + "_id": "6297693e5c9e3c392f7c2dc3", + "_tpl": "560e620e4bdc2d724b8b456b", + "parentId": "6297693e5c9e3c392f7c2dc0", + "slotId": "mod_muzzle" + }, + { + "_id": "6297693e5c9e3c392f7c2dc4", + "_tpl": "623b2e9d11c3296b440d1638", + "parentId": "6297693e5c9e3c392f7c2dc0", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6297693e5c9e3c392f7c2dc5", + "_tpl": "623c3c1f37b4b31470357737", + "parentId": "6297693e5c9e3c392f7c2dc4", + "slotId": "mod_handguard" + }, + { + "_id": "6297693e5c9e3c392f7c2dc6", + "_tpl": "623c2f4242aee3103f1c44b7", + "parentId": "6297693e5c9e3c392f7c2dc5", + "slotId": "mod_mount_000" + }, + { + "_id": "6297693e5c9e3c392f7c2dc7", + "_tpl": "623c2f652febb22c2777d8d7", + "parentId": "6297693e5c9e3c392f7c2dc5", + "slotId": "mod_mount_001" + }, + { + "_id": "6297693e5c9e3c392f7c2dc8", + "_tpl": "623c2f652febb22c2777d8d7", + "parentId": "6297693e5c9e3c392f7c2dc5", + "slotId": "mod_mount_002" + }, + { + "_id": "6297693e5c9e3c392f7c2dc9", + "_tpl": "623c3be0484b5003161840dc", + "parentId": "6297693e5c9e3c392f7c2dc4", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6297693e5c9e3c392f7c2dca", + "_tpl": "624c29ce09cd027dff2f8cd7", + "parentId": "6297693e5c9e3c392f7c2dc4", + "slotId": "mod_stock_000" + } + ], + "_name": "SV98_OV", + "_parent": "6297693e5c9e3c392f7c2dc0", + "_type": "Preset" + }, + "6297738b9f1b474e440c45b5": { + "_changeWeaponName": false, + "_encyclopedia": "623063e994fc3f7b302a9696", + "_id": "6297738b9f1b474e440c45b5", + "_items": [ + { + "_id": "6297738b9f1b474e440c45b6", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6297738b9f1b474e440c45b7", + "_tpl": "62307b7b10d2321fa8741921", + "parentId": "6297738b9f1b474e440c45b6", + "slotId": "mod_magazine" + }, + { + "_id": "6297738b9f1b474e440c45b8", + "_tpl": "622f140da5958f63c67f1735", + "parentId": "6297738b9f1b474e440c45b6", + "slotId": "mod_stock" + }, + { + "_id": "6297738b9f1b474e440c45b9", + "_tpl": "622b38c56762c718e457e246", + "parentId": "6297738b9f1b474e440c45b6", + "slotId": "mod_barrel" + }, + { + "_id": "6297738b9f1b474e440c45ba", + "_tpl": "622f128cec80d870d349b4e8", + "parentId": "6297738b9f1b474e440c45b9", + "slotId": "mod_muzzle" + }, + { + "_id": "6297738b9f1b474e440c45bb", + "_tpl": "622b327b267a1b13a44abea3", + "parentId": "6297738b9f1b474e440c45b9", + "slotId": "mod_gas_block" + }, + { + "_id": "6297738b9f1b474e440c45bc", + "_tpl": "6231654c71b5bc3baa1078e5", + "parentId": "6297738b9f1b474e440c45b6", + "slotId": "mod_handguard" + }, + { + "_id": "6297738b9f1b474e440c45bd", + "_tpl": "622f02437762f55aaa68ac85", + "parentId": "6297738b9f1b474e440c45b6", + "slotId": "mod_mount" + }, + { + "_id": "6297738b9f1b474e440c45be", + "_tpl": "622b4d7df9cfc87d675d2ded", + "parentId": "6297738b9f1b474e440c45b6", + "slotId": "mod_scope" + }, + { + "_id": "6297738b9f1b474e440c45bf", + "_tpl": "622efbcb99f4ea1a4d6c9a15", + "parentId": "6297738b9f1b474e440c45be", + "slotId": "mod_scope" + } + ], + "_name": "G36_default", + "_parent": "6297738b9f1b474e440c45b6", + "_type": "Preset" + }, + "629774055c32d414f8797477": { + "_changeWeaponName": true, + "_id": "629774055c32d414f8797477", + "_items": [ + { + "_id": "629774055c32d414f8797478", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "629774055c32d414f8797479", + "_tpl": "62307b7b10d2321fa8741921", + "parentId": "629774055c32d414f8797478", + "slotId": "mod_magazine" + }, + { + "_id": "629774055c32d414f879747a", + "_tpl": "622f140da5958f63c67f1735", + "parentId": "629774055c32d414f8797478", + "slotId": "mod_stock" + }, + { + "_id": "629774055c32d414f879747b", + "_tpl": "622b379bf9cfc87d675d2de5", + "parentId": "629774055c32d414f8797478", + "slotId": "mod_barrel" + }, + { + "_id": "629774055c32d414f879747c", + "_tpl": "622f0ee47762f55aaa68ac87", + "parentId": "629774055c32d414f879747b", + "slotId": "mod_muzzle" + }, + { + "_id": "629774055c32d414f879747d", + "_tpl": "622b327b267a1b13a44abea3", + "parentId": "629774055c32d414f879747b", + "slotId": "mod_gas_block" + }, + { + "_id": "629774055c32d414f879747e", + "_tpl": "62386b2adf47d66e835094b2", + "parentId": "629774055c32d414f8797478", + "slotId": "mod_handguard" + }, + { + "_id": "629774055c32d414f879747f", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "629774055c32d414f879747e", + "slotId": "mod_mount_000" + }, + { + "_id": "629774055c32d414f8797480", + "_tpl": "622f16a1a5958f63c67f1737", + "parentId": "629774055c32d414f879747e", + "slotId": "mod_tactical" + }, + { + "_id": "629774055c32d414f8797481", + "_tpl": "622f02437762f55aaa68ac85", + "parentId": "629774055c32d414f8797478", + "slotId": "mod_mount" + }, + { + "_id": "629774055c32d414f8797482", + "_tpl": "622b3c081b89c677a33bcda6", + "parentId": "629774055c32d414f8797478", + "slotId": "mod_scope" + }, + { + "_id": "629774055c32d414f8797483", + "_tpl": "623166e08c43374ca1567195", + "parentId": "629774055c32d414f8797482", + "slotId": "mod_sight_front" + }, + { + "_id": "629774055c32d414f8797484", + "_tpl": "6231670f0b8aa5472d060095", + "parentId": "629774055c32d414f8797482", + "slotId": "mod_sight_rear" + } + ], + "_name": "G36_C", + "_parent": "629774055c32d414f8797478", + "_type": "Preset" + }, + "6297743d005016781231ab76": { + "_changeWeaponName": true, + "_id": "6297743d005016781231ab76", + "_items": [ + { + "_id": "6297743d005016781231ab77", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6297743d005016781231ab78", + "_tpl": "62307b7b10d2321fa8741921", + "parentId": "6297743d005016781231ab77", + "slotId": "mod_magazine" + }, + { + "_id": "6297743d005016781231ab79", + "_tpl": "622f140da5958f63c67f1735", + "parentId": "6297743d005016781231ab77", + "slotId": "mod_stock" + }, + { + "_id": "6297743d005016781231ab7a", + "_tpl": "622b38c56762c718e457e246", + "parentId": "6297743d005016781231ab77", + "slotId": "mod_barrel" + }, + { + "_id": "6297743d005016781231ab7b", + "_tpl": "622f128cec80d870d349b4e8", + "parentId": "6297743d005016781231ab7a", + "slotId": "mod_muzzle" + }, + { + "_id": "6297743d005016781231ab7c", + "_tpl": "622b327b267a1b13a44abea3", + "parentId": "6297743d005016781231ab7a", + "slotId": "mod_gas_block" + }, + { + "_id": "6297743d005016781231ab7d", + "_tpl": "6231654c71b5bc3baa1078e5", + "parentId": "6297743d005016781231ab77", + "slotId": "mod_handguard" + }, + { + "_id": "6297743d005016781231ab7e", + "_tpl": "622f02437762f55aaa68ac85", + "parentId": "6297743d005016781231ab77", + "slotId": "mod_mount" + }, + { + "_id": "6297743d005016781231ab7f", + "_tpl": "622b4f54dc8dcc0ba8742f85", + "parentId": "6297743d005016781231ab77", + "slotId": "mod_scope" + } + ], + "_name": "G36_E", + "_parent": "6297743d005016781231ab77", + "_type": "Preset" + }, + "629774817d59e26b711f88be": { + "_changeWeaponName": true, + "_id": "629774817d59e26b711f88be", + "_items": [ + { + "_id": "629774817d59e26b711f88c2", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "629774817d59e26b711f88c3", + "_tpl": "62307b7b10d2321fa8741921", + "parentId": "629774817d59e26b711f88c2", + "slotId": "mod_magazine" + }, + { + "_id": "629774817d59e26b711f88c4", + "_tpl": "622f140da5958f63c67f1735", + "parentId": "629774817d59e26b711f88c2", + "slotId": "mod_stock" + }, + { + "_id": "629774817d59e26b711f88c5", + "_tpl": "622b38c56762c718e457e246", + "parentId": "629774817d59e26b711f88c2", + "slotId": "mod_barrel" + }, + { + "_id": "629774817d59e26b711f88c6", + "_tpl": "622f128cec80d870d349b4e8", + "parentId": "629774817d59e26b711f88c5", + "slotId": "mod_muzzle" + }, + { + "_id": "629774817d59e26b711f88c7", + "_tpl": "622b327b267a1b13a44abea3", + "parentId": "629774817d59e26b711f88c5", + "slotId": "mod_gas_block" + }, + { + "_id": "629774817d59e26b711f88c8", + "_tpl": "6231654c71b5bc3baa1078e5", + "parentId": "629774817d59e26b711f88c2", + "slotId": "mod_handguard" + }, + { + "_id": "629774817d59e26b711f88c9", + "_tpl": "622f02437762f55aaa68ac85", + "parentId": "629774817d59e26b711f88c2", + "slotId": "mod_mount" + }, + { + "_id": "629774817d59e26b711f88ca", + "_tpl": "622b3c081b89c677a33bcda6", + "parentId": "629774817d59e26b711f88c2", + "slotId": "mod_scope" + }, + { + "_id": "629774817d59e26b711f88cb", + "_tpl": "623166e08c43374ca1567195", + "parentId": "629774817d59e26b711f88ca", + "slotId": "mod_sight_front" + }, + { + "_id": "629774817d59e26b711f88cc", + "_tpl": "6231670f0b8aa5472d060095", + "parentId": "629774817d59e26b711f88ca", + "slotId": "mod_sight_rear" + } + ], + "_name": "G36_E2", + "_parent": "629774817d59e26b711f88c2", + "_type": "Preset" + }, + "629774d35c32d414f8797486": { + "_changeWeaponName": true, + "_id": "629774d35c32d414f8797486", + "_items": [ + { + "_id": "629774d35c32d414f8797487", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "629774d35c32d414f8797488", + "_tpl": "62307b7b10d2321fa8741921", + "parentId": "629774d35c32d414f8797487", + "slotId": "mod_magazine" + }, + { + "_id": "629774d35c32d414f8797489", + "_tpl": "622f140da5958f63c67f1735", + "parentId": "629774d35c32d414f8797487", + "slotId": "mod_stock" + }, + { + "_id": "629774d35c32d414f879748a", + "_tpl": "622b3858034a3e17ad0b81f5", + "parentId": "629774d35c32d414f8797487", + "slotId": "mod_barrel" + }, + { + "_id": "629774d35c32d414f879748b", + "_tpl": "622f128cec80d870d349b4e8", + "parentId": "629774d35c32d414f879748a", + "slotId": "mod_muzzle" + }, + { + "_id": "629774d35c32d414f879748c", + "_tpl": "622b327b267a1b13a44abea3", + "parentId": "629774d35c32d414f879748a", + "slotId": "mod_gas_block" + }, + { + "_id": "629774d35c32d414f879748d", + "_tpl": "62386b7153757417e93a4e9f", + "parentId": "629774d35c32d414f8797487", + "slotId": "mod_handguard" + }, + { + "_id": "629774d35c32d414f879748e", + "_tpl": "622f02437762f55aaa68ac85", + "parentId": "629774d35c32d414f8797487", + "slotId": "mod_mount" + }, + { + "_id": "629774d35c32d414f879748f", + "_tpl": "622b4d7df9cfc87d675d2ded", + "parentId": "629774d35c32d414f8797487", + "slotId": "mod_scope" + }, + { + "_id": "629774d35c32d414f8797490", + "_tpl": "622efbcb99f4ea1a4d6c9a15", + "parentId": "629774d35c32d414f879748f", + "slotId": "mod_scope" + } + ], + "_name": "G36_K", + "_parent": "629774d35c32d414f8797487", + "_type": "Preset" + }, + "629775539f1b474e440c45c1": { + "_changeWeaponName": true, + "_id": "629775539f1b474e440c45c1", + "_items": [ + { + "_id": "629775539f1b474e440c45c7", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "629775539f1b474e440c45c8", + "_tpl": "62307b7b10d2321fa8741921", + "parentId": "629775539f1b474e440c45c7", + "slotId": "mod_magazine" + }, + { + "_id": "629775539f1b474e440c45c9", + "_tpl": "622f14e899892a7f9e08f6c5", + "parentId": "629775539f1b474e440c45c7", + "slotId": "mod_stock" + }, + { + "_id": "629775539f1b474e440c45ca", + "_tpl": "622b3858034a3e17ad0b81f5", + "parentId": "629775539f1b474e440c45c7", + "slotId": "mod_barrel" + }, + { + "_id": "629775539f1b474e440c45cb", + "_tpl": "622f128cec80d870d349b4e8", + "parentId": "629775539f1b474e440c45ca", + "slotId": "mod_muzzle" + }, + { + "_id": "629775539f1b474e440c45cc", + "_tpl": "622b327b267a1b13a44abea3", + "parentId": "629775539f1b474e440c45ca", + "slotId": "mod_gas_block" + }, + { + "_id": "629775539f1b474e440c45cd", + "_tpl": "62386b7153757417e93a4e9f", + "parentId": "629775539f1b474e440c45c7", + "slotId": "mod_handguard" + }, + { + "_id": "629775539f1b474e440c45ce", + "_tpl": "622f16a1a5958f63c67f1737", + "parentId": "629775539f1b474e440c45cd", + "slotId": "mod_tactical" + }, + { + "_id": "629775539f1b474e440c45cf", + "_tpl": "622f02437762f55aaa68ac85", + "parentId": "629775539f1b474e440c45c7", + "slotId": "mod_mount" + }, + { + "_id": "629775539f1b474e440c45d0", + "_tpl": "622b4d7df9cfc87d675d2ded", + "parentId": "629775539f1b474e440c45c7", + "slotId": "mod_scope" + }, + { + "_id": "629775539f1b474e440c45d1", + "_tpl": "622efdf8ec80d870d349b4e5", + "parentId": "629775539f1b474e440c45d0", + "slotId": "mod_scope" + } + ], + "_name": "G36_KV1", + "_parent": "629775539f1b474e440c45c7", + "_type": "Preset" + }, + "6297757b2aecda1b350da2a3": { + "_changeWeaponName": true, + "_id": "6297757b2aecda1b350da2a3", + "_items": [ + { + "_id": "6297757b2aecda1b350da2a6", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "6297757b2aecda1b350da2a7", + "_tpl": "62307b7b10d2321fa8741921", + "parentId": "6297757b2aecda1b350da2a6", + "slotId": "mod_magazine" + }, + { + "_id": "6297757b2aecda1b350da2a8", + "_tpl": "622f14e899892a7f9e08f6c5", + "parentId": "6297757b2aecda1b350da2a6", + "slotId": "mod_stock" + }, + { + "_id": "6297757b2aecda1b350da2a9", + "_tpl": "622b3858034a3e17ad0b81f5", + "parentId": "6297757b2aecda1b350da2a6", + "slotId": "mod_barrel" + }, + { + "_id": "6297757b2aecda1b350da2aa", + "_tpl": "622f128cec80d870d349b4e8", + "parentId": "6297757b2aecda1b350da2a9", + "slotId": "mod_muzzle" + }, + { + "_id": "6297757b2aecda1b350da2ab", + "_tpl": "622b327b267a1b13a44abea3", + "parentId": "6297757b2aecda1b350da2a9", + "slotId": "mod_gas_block" + }, + { + "_id": "6297757b2aecda1b350da2ac", + "_tpl": "62386b7153757417e93a4e9f", + "parentId": "6297757b2aecda1b350da2a6", + "slotId": "mod_handguard" + }, + { + "_id": "6297757b2aecda1b350da2ad", + "_tpl": "622f16a1a5958f63c67f1737", + "parentId": "6297757b2aecda1b350da2ac", + "slotId": "mod_tactical" + }, + { + "_id": "6297757b2aecda1b350da2ae", + "_tpl": "622f02437762f55aaa68ac85", + "parentId": "6297757b2aecda1b350da2a6", + "slotId": "mod_mount" + }, + { + "_id": "6297757b2aecda1b350da2af", + "_tpl": "622b3d5cf9cfc87d675d2de9", + "parentId": "6297757b2aecda1b350da2a6", + "slotId": "mod_scope" + } + ], + "_name": "G36_KV2", + "_parent": "6297757b2aecda1b350da2a6", + "_type": "Preset" + }, + "629792f0fd6eda47d6466fe8": { + "_changeWeaponName": false, + "_encyclopedia": "61f7c9e189e6fb1a5e3ea78d", + "_id": "629792f0fd6eda47d6466fe8", + "_items": [ + { + "_id": "629792f0fd6eda47d6466fe9", + "_tpl": "61f7c9e189e6fb1a5e3ea78d", + "upd": { + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "629792f0fd6eda47d6466fea", + "_tpl": "61f4012adfc9f01a816adda1", + "parentId": "629792f0fd6eda47d6466fe9", + "slotId": "mod_barrel" + }, + { + "_id": "629792f0fd6eda47d6466feb", + "_tpl": "61f7b85367ddd414173fdb36", + "parentId": "629792f0fd6eda47d6466fea", + "slotId": "mod_handguard" + }, + { + "_id": "629792f0fd6eda47d6466fec", + "_tpl": "61f7b234ea4ab34f2f59c3ec", + "parentId": "629792f0fd6eda47d6466fe9", + "slotId": "mod_stock" + } + ], + "_name": "MP18_default", + "_parent": "629792f0fd6eda47d6466fe9", + "_type": "Preset" + }, + "6398636bb483a550805be5e5": { + "_changeWeaponName": false, + "_encyclopedia": "62e7c4fba689e8c9c50dfc38", + "_id": "6398636bb483a550805be5e5", + "_items": [ + { + "_id": "6398636bb483a550805be5e6", + "_tpl": "62e7c4fba689e8c9c50dfc38", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6398636bb483a550805be5e7", + "_tpl": "62e7c98b550c8218d602cbb4", + "parentId": "6398636bb483a550805be5e6", + "slotId": "mod_magazine" + }, + { + "_id": "6398636bb483a550805be5e8", + "_tpl": "62e7c880f68e7a0676050c7c", + "parentId": "6398636bb483a550805be5e6", + "slotId": "mod_charge" + }, + { + "_id": "6398636bb483a550805be5e9", + "_tpl": "62ea7c793043d74a0306e19f", + "parentId": "6398636bb483a550805be5e6", + "slotId": "mod_reciever" + }, + { + "_id": "6398636bb483a550805be5ea", + "_tpl": "62e7c7f3c34ea971710c32fc", + "parentId": "6398636bb483a550805be5e9", + "slotId": "mod_barrel" + }, + { + "_id": "6398636bb483a550805be5eb", + "_tpl": "630f2872911356c17d06abc5", + "parentId": "6398636bb483a550805be5ea", + "slotId": "mod_muzzle_000" + }, + { + "_id": "6398636bb483a550805be5ec", + "_tpl": "634e61b0767cb15c4601a877", + "parentId": "6398636bb483a550805be5ea", + "slotId": "mod_foregrip" + } + ], + "_name": "AUG_A1_default", + "_parent": "6398636bb483a550805be5e6", + "_type": "Preset" + }, + "63986752a28b76105a33c095": { + "_changeWeaponName": false, + "_encyclopedia": "63171672192e68c5460cebc5", + "_id": "63986752a28b76105a33c095", + "_items": [ + { + "_id": "63986752a28b76105a33c096", + "_tpl": "63171672192e68c5460cebc5", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "63986752a28b76105a33c097", + "_tpl": "62e7c98b550c8218d602cbb4", + "parentId": "63986752a28b76105a33c096", + "slotId": "mod_magazine" + }, + { + "_id": "63986752a28b76105a33c098", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "parentId": "63986752a28b76105a33c096", + "slotId": "mod_charge" + }, + { + "_id": "63986752a28b76105a33c099", + "_tpl": "62e7c72df68e7a0676050c77", + "parentId": "63986752a28b76105a33c096", + "slotId": "mod_reciever" + }, + { + "_id": "63986752a28b76105a33c09a", + "_tpl": "62e7c7f3c34ea971710c32fc", + "parentId": "63986752a28b76105a33c099", + "slotId": "mod_barrel" + }, + { + "_id": "63986752a28b76105a33c09b", + "_tpl": "630f28f0cadb1fe05e06f004", + "parentId": "63986752a28b76105a33c09a", + "slotId": "mod_muzzle_000" + }, + { + "_id": "63986752a28b76105a33c09c", + "_tpl": "634e61b0767cb15c4601a877", + "parentId": "63986752a28b76105a33c09a", + "slotId": "mod_foregrip" + }, + { + "_id": "63986752a28b76105a33c09d", + "_tpl": "62ebd290c427473eff0baafb", + "parentId": "63986752a28b76105a33c099", + "slotId": "mod_mount" + } + ], + "_name": "AUG_A3_default", + "_parent": "63986752a28b76105a33c096", + "_type": "Preset" + }, + "639867ca90c8ca7156504f75": { + "_changeWeaponName": true, + "_id": "639867ca90c8ca7156504f75", + "_items": [ + { + "_id": "639867ca90c8ca7156504f76", + "_tpl": "63171672192e68c5460cebc5", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "639867ca90c8ca7156504f77", + "_tpl": "630e1adbbd357927e4007c09", + "parentId": "639867ca90c8ca7156504f76", + "slotId": "mod_magazine" + }, + { + "_id": "639867ca90c8ca7156504f78", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "parentId": "639867ca90c8ca7156504f76", + "slotId": "mod_charge" + }, + { + "_id": "639867ca90c8ca7156504f79", + "_tpl": "62e7c72df68e7a0676050c77", + "parentId": "639867ca90c8ca7156504f76", + "slotId": "mod_reciever" + }, + { + "_id": "639867ca90c8ca7156504f7a", + "_tpl": "630e39c3bd357927e4007c15", + "parentId": "639867ca90c8ca7156504f79", + "slotId": "mod_barrel" + }, + { + "_id": "639867ca90c8ca7156504f7b", + "_tpl": "630f291b9f66a28b37094bb8", + "parentId": "639867ca90c8ca7156504f7a", + "slotId": "mod_muzzle" + }, + { + "_id": "639867ca90c8ca7156504f7c", + "_tpl": "634e61b0767cb15c4601a877", + "parentId": "639867ca90c8ca7156504f7a", + "slotId": "mod_foregrip" + }, + { + "_id": "639867ca90c8ca7156504f7d", + "_tpl": "62ebd290c427473eff0baafb", + "parentId": "639867ca90c8ca7156504f79", + "slotId": "mod_mount" + } + ], + "_name": "AUG_A3_CIV", + "_parent": "639867ca90c8ca7156504f76", + "_type": "Preset" + }, + "6398681b9f81ff62557b8225": { + "_changeWeaponName": true, + "_id": "6398681b9f81ff62557b8225", + "_items": [ + { + "_id": "6398681b9f81ff62557b8226", + "_tpl": "63171672192e68c5460cebc5", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "6398681b9f81ff62557b8227", + "_tpl": "630e295c984633f1fb0e7c30", + "parentId": "6398681b9f81ff62557b8226", + "slotId": "mod_magazine" + }, + { + "_id": "6398681b9f81ff62557b8228", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "parentId": "6398681b9f81ff62557b8226", + "slotId": "mod_charge" + }, + { + "_id": "6398681b9f81ff62557b8229", + "_tpl": "62e7c72df68e7a0676050c77", + "parentId": "6398681b9f81ff62557b8226", + "slotId": "mod_reciever" + }, + { + "_id": "6398681b9f81ff62557b822a", + "_tpl": "630e39c3bd357927e4007c15", + "parentId": "6398681b9f81ff62557b8229", + "slotId": "mod_barrel" + }, + { + "_id": "6398681b9f81ff62557b822b", + "_tpl": "630f291b9f66a28b37094bb8", + "parentId": "6398681b9f81ff62557b822a", + "slotId": "mod_muzzle" + }, + { + "_id": "6398681b9f81ff62557b822c", + "_tpl": "634e61b0767cb15c4601a877", + "parentId": "6398681b9f81ff62557b822a", + "slotId": "mod_foregrip" + }, + { + "_id": "6398681b9f81ff62557b822d", + "_tpl": "62e7c8f91cd3fde4d503d690", + "parentId": "6398681b9f81ff62557b8229", + "slotId": "mod_mount" + }, + { + "_id": "6398681b9f81ff62557b822e", + "_tpl": "558022b54bdc2dac148b458d", + "parentId": "6398681b9f81ff62557b822d", + "slotId": "mod_scope" + }, + { + "_id": "6398681b9f81ff62557b822f", + "_tpl": "626becf9582c3e319310b837", + "parentId": "6398681b9f81ff62557b8229", + "slotId": "mod_tactical" + } + ], + "_name": "AUG_A3_CQB", + "_parent": "6398681b9f81ff62557b8226", + "_type": "Preset" + }, + "6398685ee678457197138035": { + "_changeWeaponName": false, + "_encyclopedia": "63088377b5cd696784087147", + "_id": "6398685ee678457197138035", + "_items": [ + { + "_id": "639c2f29ccb515300b15f22a", + "_tpl": "63088377b5cd696784087147", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "639c2f29ccb515300b15f22b", + "_tpl": "630764fea987397c0816d219", + "parentId": "639c2f29ccb515300b15f22a", + "slotId": "mod_barrel" + }, + { + "_id": "639c2f29ccb515300b15f22c", + "_tpl": "63075cc5962d0247b029dc2a", + "parentId": "639c2f29ccb515300b15f22a", + "slotId": "mod_reciever" + }, + { + "_id": "639c2f29ccb515300b15f22d", + "_tpl": "630765cb962d0247b029dc45", + "parentId": "639c2f29ccb515300b15f22c", + "slotId": "mod_sight_rear" + }, + { + "_id": "639c2f29ccb515300b15f22e", + "_tpl": "630765777d50ff5e8a1ea718", + "parentId": "639c2f29ccb515300b15f22c", + "slotId": "mod_sight_front" + }, + { + "_id": "639c2f29ccb515300b15f22f", + "_tpl": "63076701a987397c0816d21b", + "parentId": "639c2f29ccb515300b15f22a", + "slotId": "mod_magazine" + } + ], + "_name": "Glock19x_default", + "_parent": "639c2f29ccb515300b15f22a", + "_type": "Preset" + }, + "639868a207a3eb0207197bb5": { + "_changeWeaponName": false, + "_encyclopedia": "633ec7c2a6918cb895019c6c", + "_id": "639868a207a3eb0207197bb5", + "_items": [ + { + "_id": "639868a207a3eb0207197bb6", + "_tpl": "633ec7c2a6918cb895019c6c", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "639868a207a3eb0207197bb7", + "_tpl": "633ec6ee025b096d320a3b15", + "parentId": "639868a207a3eb0207197bb6", + "slotId": "mod_magazine" + }, + { + "_id": "639868a207a3eb0207197bb8", + "_tpl": "633ec8e4025b096d320a3b1e", + "parentId": "639868a207a3eb0207197bb6", + "slotId": "mod_pistol_grip" + } + ], + "_name": "RSH12_default", + "_parent": "639868a207a3eb0207197bb6", + "_type": "Preset" + }, + "63986a38608a960125446db5": { + "_changeWeaponName": false, + "_encyclopedia": "62e14904c2699c0ec93adc47", + "_id": "63986a38608a960125446db5", + "_items": [ + { + "_id": "63986a38608a960125446db6", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "63986a38608a960125446db7", + "_tpl": "633a98eab8b0506e48497c1a", + "parentId": "63986a38608a960125446db6", + "slotId": "mod_magazine" + }, + { + "_id": "63986a38608a960125446db8", + "_tpl": "62e2a754b6c0ee2f230cee0f", + "parentId": "63986a38608a960125446db6", + "slotId": "mod_muzzle" + }, + { + "_id": "63986a38608a960125446db9", + "_tpl": "62e292e7b6c0ee2f230cee00", + "parentId": "63986a38608a960125446db6", + "slotId": "mod_stock" + }, + { + "_id": "63986a38608a960125446dba", + "_tpl": "62e27a7865f0b1592a49e17b", + "parentId": "63986a38608a960125446db6", + "slotId": "mod_reciever" + }, + { + "_id": "63986a38608a960125446dbb", + "_tpl": "62e15547db1a5c41971c1b5e", + "parentId": "63986a38608a960125446db6", + "slotId": "mod_handguard" + }, + { + "_id": "63986a38608a960125446dbc", + "_tpl": "62ed189fb3608410ef5a2bfc", + "parentId": "63986a38608a960125446dbb", + "slotId": "mod_mount_001" + }, + { + "_id": "63986a38608a960125446dbd", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "parentId": "63986a38608a960125446db6", + "slotId": "mod_pistolgrip" + } + ], + "_name": "SR2M_default", + "_parent": "63986a38608a960125446db6", + "_type": "Preset" + }, + "63986a9ab483a550805be5ee": { + "_changeWeaponName": true, + "_id": "63986a9ab483a550805be5ee", + "_items": [ + { + "_id": "63986a9ab483a550805be5ef", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "63986a9ab483a550805be5f0", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "parentId": "63986a9ab483a550805be5ef", + "slotId": "mod_magazine" + }, + { + "_id": "63986a9ab483a550805be5f1", + "_tpl": "62e2a7138e1ac9380579c122", + "parentId": "63986a9ab483a550805be5ef", + "slotId": "mod_muzzle" + }, + { + "_id": "63986a9ab483a550805be5f2", + "_tpl": "62e2969582ebf260c20539c2", + "parentId": "63986a9ab483a550805be5ef", + "slotId": "mod_stock" + }, + { + "_id": "63986a9ab483a550805be5f3", + "_tpl": "62e27a7865f0b1592a49e17b", + "parentId": "63986a9ab483a550805be5ef", + "slotId": "mod_reciever" + }, + { + "_id": "63986a9ab483a550805be5f4", + "_tpl": "62ff9920fe938a24c90c10d2", + "parentId": "63986a9ab483a550805be5f3", + "slotId": "mod_mount" + }, + { + "_id": "63986a9ab483a550805be5f5", + "_tpl": "637ba19df7ca6372bf2613d7", + "parentId": "63986a9ab483a550805be5ef", + "slotId": "mod_handguard" + }, + { + "_id": "63986a9ab483a550805be5f6", + "_tpl": "62ed1921b3608410ef5a2c04", + "parentId": "63986a9ab483a550805be5f5", + "slotId": "mod_mount_001" + }, + { + "_id": "63986a9ab483a550805be5f7", + "_tpl": "637ba29bf7ca6372bf2613db", + "parentId": "63986a9ab483a550805be5ef", + "slotId": "mod_pistolgrip" + } + ], + "_name": "SR2M_FSB", + "_parent": "63986a9ab483a550805be5ef", + "_type": "Preset" + }, + "63986acda28b76105a33c09f": { + "_changeWeaponName": true, + "_id": "63986acda28b76105a33c09f", + "_items": [ + { + "_id": "63986acda28b76105a33c0a0", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "63986acda28b76105a33c0a1", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "parentId": "63986acda28b76105a33c0a0", + "slotId": "mod_magazine" + }, + { + "_id": "63986acda28b76105a33c0a2", + "_tpl": "62e2a7138e1ac9380579c122", + "parentId": "63986acda28b76105a33c0a0", + "slotId": "mod_muzzle" + }, + { + "_id": "63986acda28b76105a33c0a3", + "_tpl": "62e2969582ebf260c20539c2", + "parentId": "63986acda28b76105a33c0a0", + "slotId": "mod_stock" + }, + { + "_id": "63986acda28b76105a33c0a4", + "_tpl": "62e27a7865f0b1592a49e17b", + "parentId": "63986acda28b76105a33c0a0", + "slotId": "mod_reciever" + }, + { + "_id": "63986acda28b76105a33c0a5", + "_tpl": "62e281349ecd3f493f6df954", + "parentId": "63986acda28b76105a33c0a4", + "slotId": "mod_mount" + }, + { + "_id": "63986acda28b76105a33c0a6", + "_tpl": "616554fe50224f204c1da2aa", + "parentId": "63986acda28b76105a33c0a5", + "slotId": "mod_scope" + }, + { + "_id": "63986acda28b76105a33c0a7", + "_tpl": "61657230d92c473c770213d7", + "parentId": "63986acda28b76105a33c0a6", + "slotId": "mod_scope" + }, + { + "_id": "63986acda28b76105a33c0a8", + "_tpl": "637ba19df7ca6372bf2613d7", + "parentId": "63986acda28b76105a33c0a0", + "slotId": "mod_handguard" + }, + { + "_id": "63986acda28b76105a33c0a9", + "_tpl": "62ed1921b3608410ef5a2c04", + "parentId": "63986acda28b76105a33c0a8", + "slotId": "mod_mount_001" + }, + { + "_id": "63986acda28b76105a33c0aa", + "_tpl": "560d657b4bdc2da74d8b4572", + "parentId": "63986acda28b76105a33c0a9", + "slotId": "mod_tactical" + }, + { + "_id": "63986acda28b76105a33c0ab", + "_tpl": "637ba29bf7ca6372bf2613db", + "parentId": "63986acda28b76105a33c0a0", + "slotId": "mod_pistolgrip" + } + ], + "_name": "SR2M_TAC", + "_parent": "63986acda28b76105a33c0a0", + "_type": "Preset" + }, + "64c1510bda0f6d156000cc17": { + "_changeWeaponName": false, + "_encyclopedia": "6499849fc93611967b034949", + "_id": "64c1510bda0f6d156000cc17", + "_items": [ + { + "_id": "64f58e9a8a8ce309480cda24", + "_tpl": "6499849fc93611967b034949", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "64f58e9a8a8ce309480cda25", + "_tpl": "649ec107961514b22506b10c", + "parentId": "64f58e9a8a8ce309480cda24", + "slotId": "mod_gas_block" + }, + { + "_id": "64f58e9a8a8ce309480cda26", + "_tpl": "5beec8ea0db834001a6f9dbf", + "parentId": "64f58e9a8a8ce309480cda24", + "slotId": "mod_pistol_grip" + }, + { + "_id": "64f58e9a8a8ce309480cda27", + "_tpl": "649ec127c93611967b034957", + "parentId": "64f58e9a8a8ce309480cda24", + "slotId": "mod_handguard" + }, + { + "_id": "64f58e9a8a8ce309480cda28", + "_tpl": "5beecbb80db834001d2c465e", + "parentId": "64f58e9a8a8ce309480cda27", + "slotId": "mod_mount_001" + }, + { + "_id": "64f58e9a8a8ce309480cda29", + "_tpl": "649ec2af961514b22506b10f", + "parentId": "64f58e9a8a8ce309480cda24", + "slotId": "mod_muzzle" + }, + { + "_id": "64f58e9a8a8ce309480cda2a", + "_tpl": "649ec2f3961514b22506b111", + "parentId": "64f58e9a8a8ce309480cda24", + "slotId": "mod_reciever" + }, + { + "_id": "64f58e9a8a8ce309480cda2b", + "_tpl": "649ec2da59cbb3c813042dca", + "parentId": "64f58e9a8a8ce309480cda2a", + "slotId": "mod_sight_rear" + }, + { + "_id": "64f58e9a8a8ce309480cda2c", + "_tpl": "649ec2cec93611967b03495e", + "parentId": "64f58e9a8a8ce309480cda2b", + "slotId": "mod_sight_rear" + }, + { + "_id": "64f58e9a8a8ce309480cda2d", + "_tpl": "649ec30cb013f04a700e60fb", + "parentId": "64f58e9a8a8ce309480cda24", + "slotId": "mod_magazine" + }, + { + "_id": "64f58e9a8a8ce309480cda2e", + "_tpl": "649ec87d8007560a9001ab36", + "parentId": "64f58e9a8a8ce309480cda24", + "slotId": "mod_stock_001" + }, + { + "_id": "64f58e9a8a8ce309480cda2f", + "_tpl": "5beec8c20db834001d2c465c", + "parentId": "64f58e9a8a8ce309480cda2e", + "slotId": "mod_stock" + } + ], + "_name": "AK-12_Default", + "_parent": "64f58e9a8a8ce309480cda24", + "_type": "Preset" + }, + "64c151f83319a1cf380c4df7": { + "_changeWeaponName": false, + "_encyclopedia": "643ea5b23db6f9f57107d9fd", + "_id": "64c151f83319a1cf380c4df7", + "_items": [ + { + "_id": "64c39021e4368919ca5ad9e8", + "_tpl": "643ea5b23db6f9f57107d9fd", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "64c39021e4368919ca5ad9e9", + "_tpl": "6410745d5dd49d77bd078485", + "parentId": "64c39021e4368919ca5ad9e8", + "slotId": "mod_stock" + }, + { + "_id": "64c39021e4368919ca5ad9ea", + "_tpl": "6410758c857473525b08bb77", + "parentId": "64c39021e4368919ca5ad9e8", + "slotId": "mod_barrel" + }, + { + "_id": "64c39021e4368919ca5ad9eb", + "_tpl": "64119d1f2c6d6f921a0929f8", + "parentId": "64c39021e4368919ca5ad9ea", + "slotId": "mod_muzzle" + }, + { + "_id": "64c39021e4368919ca5ad9ec", + "_tpl": "64119d672c6d6f921a0929fb", + "parentId": "64c39021e4368919ca5ad9eb", + "slotId": "mod_sight_front" + }, + { + "_id": "64c39021e4368919ca5ad9ed", + "_tpl": "64119d90dcf48d656f0aa275", + "parentId": "64c39021e4368919ca5ad9ea", + "slotId": "mod_sight_rear" + }, + { + "_id": "64c39021e4368919ca5ad9ee", + "_tpl": "64119cdbdcf48d656f0aa272", + "parentId": "64c39021e4368919ca5ad9e8", + "slotId": "mod_reciever" + }, + { + "_id": "64c39021e4368919ca5ad9ef", + "_tpl": "6422e1ea3c0f06190302161a", + "parentId": "64c39021e4368919ca5ad9e8", + "slotId": "mod_magazine" + } + ], + "_name": "SVT-40_Default", + "_parent": "64c39021e4368919ca5ad9e8", + "_type": "Preset" + }, + "64c1525e3319a1cf380c4e09": { + "_changeWeaponName": false, + "_encyclopedia": "6410733d5dd49d77bd07847e", + "_id": "64c1525e3319a1cf380c4e09", + "_items": [ + { + "_id": "64c397208427c75665190df1", + "_tpl": "6410733d5dd49d77bd07847e", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "64c397208427c75665190df2", + "_tpl": "6410745d5dd49d77bd078485", + "parentId": "64c397208427c75665190df1", + "slotId": "mod_stock" + }, + { + "_id": "64c397208427c75665190df3", + "_tpl": "6410758c857473525b08bb77", + "parentId": "64c397208427c75665190df1", + "slotId": "mod_barrel" + }, + { + "_id": "64c397208427c75665190df4", + "_tpl": "64119d1f2c6d6f921a0929f8", + "parentId": "64c397208427c75665190df3", + "slotId": "mod_muzzle" + }, + { + "_id": "64c397208427c75665190df5", + "_tpl": "64119d672c6d6f921a0929fb", + "parentId": "64c397208427c75665190df4", + "slotId": "mod_sight_front" + }, + { + "_id": "64c397208427c75665190df6", + "_tpl": "64119d90dcf48d656f0aa275", + "parentId": "64c397208427c75665190df3", + "slotId": "mod_sight_rear" + }, + { + "_id": "64c397208427c75665190df7", + "_tpl": "64119cdbdcf48d656f0aa272", + "parentId": "64c397208427c75665190df1", + "slotId": "mod_reciever" + }, + { + "_id": "64c397208427c75665190df8", + "_tpl": "641074a07fd350b98c0b3f96", + "parentId": "64c397208427c75665190df1", + "slotId": "mod_magazine" + } + ], + "_name": "AVT-40_Default", + "_parent": "64c397208427c75665190df1", + "_type": "Preset" + }, + "64c152953319a1cf380c4e1b": { + "_changeWeaponName": false, + "_encyclopedia": "64748cb8de82c85eaf0a273a", + "_id": "64c152953319a1cf380c4e1b", + "_items": [ + { + "_id": "64c3905a8427c75665190d1b", + "_tpl": "64748cb8de82c85eaf0a273a", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "64c3905a8427c75665190d1c", + "_tpl": "64748d02d1c009260702b526", + "parentId": "64c3905a8427c75665190d1b", + "slotId": "mod_barrel" + } + ], + "_name": "MP-43_Obrez_Default", + "_parent": "64c3905a8427c75665190d1b", + "_type": "Preset" + }, + "64c390af8427c75665190d1d": { + "_changeWeaponName": true, + "_id": "64c390af8427c75665190d1d", + "_items": [ + { + "_id": "64c3942c8427c75665190d47", + "_tpl": "643ea5b23db6f9f57107d9fd", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "64c3942c8427c75665190d48", + "_tpl": "6410745d5dd49d77bd078485", + "parentId": "64c3942c8427c75665190d47", + "slotId": "mod_stock" + }, + { + "_id": "64c3942c8427c75665190d49", + "_tpl": "6410758c857473525b08bb77", + "parentId": "64c3942c8427c75665190d47", + "slotId": "mod_barrel" + }, + { + "_id": "64c3942c8427c75665190d4a", + "_tpl": "64119d1f2c6d6f921a0929f8", + "parentId": "64c3942c8427c75665190d49", + "slotId": "mod_muzzle" + }, + { + "_id": "64c3942c8427c75665190d4b", + "_tpl": "64119d672c6d6f921a0929fb", + "parentId": "64c3942c8427c75665190d4a", + "slotId": "mod_sight_front" + }, + { + "_id": "64c3942c8427c75665190d4c", + "_tpl": "64119d90dcf48d656f0aa275", + "parentId": "64c3942c8427c75665190d49", + "slotId": "mod_sight_rear" + }, + { + "_id": "64c3942c8427c75665190d4d", + "_tpl": "64119cdbdcf48d656f0aa272", + "parentId": "64c3942c8427c75665190d47", + "slotId": "mod_reciever" + }, + { + "_id": "64c3942c8427c75665190d4e", + "_tpl": "6422e1ea3c0f06190302161a", + "parentId": "64c3942c8427c75665190d47", + "slotId": "mod_magazine" + }, + { + "_id": "64c3942c8427c75665190d4f", + "_tpl": "641dc35e19604f20c800be18", + "parentId": "64c3942c8427c75665190d47", + "slotId": "mod_scope" + }, + { + "_id": "64c3942c8427c75665190d50", + "_tpl": "5b3f7c1c5acfc40dc5296b1d", + "parentId": "64c3942c8427c75665190d4f", + "slotId": "mod_scope" + } + ], + "_name": "SVT-40_sniper", + "_parent": "64c3942c8427c75665190d47", + "_type": "Preset" + }, + "64cbdff43ccb85468628d5fc": { + "_changeWeaponName": false, + "_encyclopedia": "64637076203536ad5600c990", + "_id": "64cbdff43ccb85468628d5fc", + "_items": [ + { + "_id": "64cbdff43ccb85468628d605", + "_tpl": "64637076203536ad5600c990", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "64cbdff43ccb85468628d606", + "_tpl": "646371779f5f0ea59a04c204", + "parentId": "64cbdff43ccb85468628d605", + "slotId": "mod_pistolgrip" + }, + { + "_id": "64cbdff43ccb85468628d607", + "_tpl": "646371faf2404ab67905c8e9", + "parentId": "64cbdff43ccb85468628d605", + "slotId": "mod_barrel" + }, + { + "_id": "64cbdff43ccb85468628d608", + "_tpl": "6492efb8cfcf7c89e701abf3", + "parentId": "64cbdff43ccb85468628d607", + "slotId": "mod_muzzle" + }, + { + "_id": "64cbdff43ccb85468628d609", + "_tpl": "646372518610c40fc20204e8", + "parentId": "64cbdff43ccb85468628d605", + "slotId": "mod_magazine" + }, + { + "_id": "64cbdff43ccb85468628d60a", + "_tpl": "646371a9f2404ab67905c8e6", + "parentId": "64cbdff43ccb85468628d605", + "slotId": "mod_stock" + }, + { + "_id": "64cbdff43ccb85468628d60b", + "_tpl": "6464d870bb2c580352070cc4", + "parentId": "64cbdff43ccb85468628d605", + "slotId": "mod_bipod" + }, + { + "_id": "64cbdff43ccb85468628d60c", + "_tpl": "6492fb8253acae0af00a29b6", + "parentId": "64cbdff43ccb85468628d605", + "slotId": "mod_sight_rear" + } + ], + "_name": "PKM_default", + "_parent": "64cbdff43ccb85468628d605", + "_type": "Preset" + }, + "64cbe20d5aa0a53ad12f96c9": { + "_changeWeaponName": true, + "_id": "64cbe20d5aa0a53ad12f96c9", + "_items": [ + { + "_id": "658aa98d8dd41d79e97de81c", + "_tpl": "64637076203536ad5600c990", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "658aa98d8dd41d79e97de81d", + "_tpl": "646371779f5f0ea59a04c204", + "parentId": "658aa98d8dd41d79e97de81c", + "slotId": "mod_pistolgrip" + }, + { + "_id": "658aa98d8dd41d79e97de81e", + "_tpl": "646371faf2404ab67905c8e9", + "parentId": "658aa98d8dd41d79e97de81c", + "slotId": "mod_barrel" + }, + { + "_id": "658aa98d8dd41d79e97de81f", + "_tpl": "6492ef63cfcf7c89e701abf1", + "parentId": "658aa98d8dd41d79e97de81e", + "slotId": "mod_muzzle" + }, + { + "_id": "658aa98d8dd41d79e97de820", + "_tpl": "646372518610c40fc20204e8", + "parentId": "658aa98d8dd41d79e97de81c", + "slotId": "mod_magazine" + }, + { + "_id": "658aa98d8dd41d79e97de821", + "_tpl": "6492d7847363b8a52206bc52", + "parentId": "658aa98d8dd41d79e97de81c", + "slotId": "mod_stock" + }, + { + "_id": "658aa98d8dd41d79e97de822", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "658aa98d8dd41d79e97de821", + "slotId": "mod_pistolgrip_000" + }, + { + "_id": "658aa98d8dd41d79e97de823", + "_tpl": "6492fb8253acae0af00a29b6", + "parentId": "658aa98d8dd41d79e97de81c", + "slotId": "mod_sight_rear" + }, + { + "_id": "658aa98d8dd41d79e97de824", + "_tpl": "6491c6f6ef312a876705191b", + "parentId": "658aa98d8dd41d79e97de81c", + "slotId": "mod_handguard" + }, + { + "_id": "658aa98d8dd41d79e97de825", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "658aa98d8dd41d79e97de824", + "slotId": "mod_foregrip" + }, + { + "_id": "658aa98d8dd41d79e97de826", + "_tpl": "6492c6dd60fdb10a020621a2", + "parentId": "658aa98d8dd41d79e97de824", + "slotId": "mod_mount" + } + ], + "_name": "PKM_Zenit", + "_parent": "658aa98d8dd41d79e97de81c", + "_type": "Preset" + }, + "64ccaa66ad8a0956023901b6": { + "_changeWeaponName": true, + "_id": "64ccaa66ad8a0956023901b6", + "_items": [ + { + "_id": "658aa9c0fd239b582c21464c", + "_tpl": "64637076203536ad5600c990", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "658aa9c0fd239b582c21464d", + "_tpl": "646371779f5f0ea59a04c204", + "parentId": "658aa9c0fd239b582c21464c", + "slotId": "mod_pistolgrip" + }, + { + "_id": "658aa9c0fd239b582c21464e", + "_tpl": "646371faf2404ab67905c8e9", + "parentId": "658aa9c0fd239b582c21464c", + "slotId": "mod_barrel" + }, + { + "_id": "658aa9c0fd239b582c21464f", + "_tpl": "6492ef63cfcf7c89e701abf1", + "parentId": "658aa9c0fd239b582c21464e", + "slotId": "mod_muzzle" + }, + { + "_id": "658aa9c0fd239b582c214650", + "_tpl": "646372518610c40fc20204e8", + "parentId": "658aa9c0fd239b582c21464c", + "slotId": "mod_magazine" + }, + { + "_id": "658aa9c0fd239b582c214651", + "_tpl": "6492d7847363b8a52206bc52", + "parentId": "658aa9c0fd239b582c21464c", + "slotId": "mod_stock" + }, + { + "_id": "658aa9c0fd239b582c214652", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "658aa9c0fd239b582c214651", + "slotId": "mod_pistolgrip_000" + }, + { + "_id": "658aa9c0fd239b582c214653", + "_tpl": "6492fb8253acae0af00a29b6", + "parentId": "658aa9c0fd239b582c21464c", + "slotId": "mod_sight_rear" + }, + { + "_id": "658aa9c0fd239b582c214654", + "_tpl": "6491c6f6ef312a876705191b", + "parentId": "658aa9c0fd239b582c21464c", + "slotId": "mod_handguard" + }, + { + "_id": "658aa9c0fd239b582c214655", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "658aa9c0fd239b582c214654", + "slotId": "mod_foregrip" + } + ], + "_name": "PKM_Zenit_2", + "_parent": "658aa9c0fd239b582c21464c", + "_type": "Preset" + }, + "64cf7b2d033b747d625b7666": { + "_changeWeaponName": true, + "_encyclopedia": "64ca3d3954fc657e230529cc", + "_id": "64cf7b2d033b747d625b7666", + "_items": [ + { + "_id": "64cf80f5528e2c17a14d22f3", + "_tpl": "64ca3d3954fc657e230529cc", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "64cf80f5528e2c17a14d22f4", + "_tpl": "64cbad529f7cf7f75c077fd5", + "parentId": "64cf80f5528e2c17a14d22f3", + "slotId": "mod_pistolgrip" + }, + { + "_id": "64cf80f5528e2c17a14d22f5", + "_tpl": "64639a9aab86f8fd4300146c", + "parentId": "64cf80f5528e2c17a14d22f3", + "slotId": "mod_barrel" + }, + { + "_id": "64cf80f5528e2c17a14d22f6", + "_tpl": "646372518610c40fc20204e8", + "parentId": "64cf80f5528e2c17a14d22f3", + "slotId": "mod_magazine" + }, + { + "_id": "64cf80f5528e2c17a14d22f7", + "_tpl": "6492e3a97df7d749100e29ee", + "parentId": "64cf80f5528e2c17a14d22f3", + "slotId": "mod_stock" + }, + { + "_id": "64cf80f5528e2c17a14d22f8", + "_tpl": "6464d870bb2c580352070cc4", + "parentId": "64cf80f5528e2c17a14d22f3", + "slotId": "mod_bipod" + }, + { + "_id": "64cf80f5528e2c17a14d22f9", + "_tpl": "6492fb8253acae0af00a29b6", + "parentId": "64cf80f5528e2c17a14d22f3", + "slotId": "mod_sight_rear" + } + ], + "_name": "PKP_Default", + "_parent": "64cf80f5528e2c17a14d22f3", + "_type": "Preset" + }, + "64cf7b7d8b48ea38c5030f65": { + "_changeWeaponName": true, + "_id": "64cf7b7d8b48ea38c5030f65", + "_items": [ + { + "_id": "658aa9ce349ef92c315e7e5d", + "_tpl": "64ca3d3954fc657e230529cc", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "658aa9ce349ef92c315e7e5e", + "_tpl": "64cbad529f7cf7f75c077fd5", + "parentId": "658aa9ce349ef92c315e7e5d", + "slotId": "mod_pistolgrip" + }, + { + "_id": "658aa9ce349ef92c315e7e5f", + "_tpl": "64639a9aab86f8fd4300146c", + "parentId": "658aa9ce349ef92c315e7e5d", + "slotId": "mod_barrel" + }, + { + "_id": "658aa9ce349ef92c315e7e60", + "_tpl": "646372518610c40fc20204e8", + "parentId": "658aa9ce349ef92c315e7e5d", + "slotId": "mod_magazine" + }, + { + "_id": "658aa9ce349ef92c315e7e61", + "_tpl": "6492d7847363b8a52206bc52", + "parentId": "658aa9ce349ef92c315e7e5d", + "slotId": "mod_stock" + }, + { + "_id": "658aa9ce349ef92c315e7e62", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "658aa9ce349ef92c315e7e61", + "slotId": "mod_pistolgrip_000" + }, + { + "_id": "658aa9ce349ef92c315e7e63", + "_tpl": "6492fb8253acae0af00a29b6", + "parentId": "658aa9ce349ef92c315e7e5d", + "slotId": "mod_sight_rear" + }, + { + "_id": "658aa9ce349ef92c315e7e64", + "_tpl": "6491c6f6ef312a876705191b", + "parentId": "658aa9ce349ef92c315e7e5d", + "slotId": "mod_handguard" + }, + { + "_id": "658aa9ce349ef92c315e7e65", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "658aa9ce349ef92c315e7e64", + "slotId": "mod_foregrip" + }, + { + "_id": "658aa9ce349ef92c315e7e66", + "_tpl": "6492c8bba6e68e06fb0bae87", + "parentId": "658aa9ce349ef92c315e7e64", + "slotId": "mod_mount" + } + ], + "_name": "PKP_Zenit", + "_parent": "658aa9ce349ef92c315e7e5d", + "_type": "Preset" + }, + "65711f2bc50461e8750d1f4f": { + "_changeWeaponName": false, + "_encyclopedia": "5aa7d03ae5b5b00016327db5", + "_id": "65711f2bc50461e8750d1f4f", + "_items": [ + { + "_id": "6576e388ab23f2038109a9c7", + "_tpl": "5aa7d03ae5b5b00016327db5" + }, + { + "_id": "6576e388ab23f2038109a9c8", + "_tpl": "654a90aff4f81a421b0a7c86", + "parentId": "6576e388ab23f2038109a9c7", + "slotId": "helmet_top" + }, + { + "_id": "6576e388ab23f2038109a9c9", + "_tpl": "654a91068e1ce698150fd1e2", + "parentId": "6576e388ab23f2038109a9c7", + "slotId": "helmet_back" + }, + { + "_id": "6576e388ab23f2038109a9ca", + "_tpl": "654a9189bcc67a392b056c79", + "parentId": "6576e388ab23f2038109a9c7", + "slotId": "helmet_ears" + } + ], + "_name": "Helmet Untar Standard", + "_parent": "6576e388ab23f2038109a9c7", + "_type": "Preset" + }, + "65711f886d197c216005b32f": { + "_changeWeaponName": false, + "_encyclopedia": "5b4329f05acfc47a86086aa1", + "_id": "65711f886d197c216005b32f", + "_items": [ + { + "_id": "6576e590fad2d1a4c00ca468", + "_tpl": "5b4329f05acfc47a86086aa1" + }, + { + "_id": "6576e590fad2d1a4c00ca469", + "_tpl": "65711b07a330b8c9060f7b01", + "parentId": "6576e590fad2d1a4c00ca468", + "slotId": "Helmet_top" + }, + { + "_id": "6576e590fad2d1a4c00ca46a", + "_tpl": "65711b489eb8c145180dbb9d", + "parentId": "6576e590fad2d1a4c00ca468", + "slotId": "Helmet_back" + }, + { + "_id": "6576e590fad2d1a4c00ca46b", + "_tpl": "65711b9b65daf6aa960c9b1b", + "parentId": "6576e590fad2d1a4c00ca468", + "slotId": "helmet_eyes" + }, + { + "_id": "6576e590fad2d1a4c00ca46c", + "_tpl": "65711bc79eb8c145180dbba1", + "parentId": "6576e590fad2d1a4c00ca468", + "slotId": "helmet_jaw" + }, + { + "_id": "6576e590fad2d1a4c00ca46d", + "_tpl": "65711b706d197c216005b31c", + "parentId": "6576e590fad2d1a4c00ca468", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet DevTac Ronin Standart", + "_parent": "6576e590fad2d1a4c00ca468", + "_type": "Preset" + }, + "65711fc9c50461e8750d1f5b": { + "_changeWeaponName": false, + "_encyclopedia": "5c06c6a80db834001b735491", + "_id": "65711fc9c50461e8750d1f5b", + "_items": [ + { + "_id": "6576e378fad2d1a4c00ca449", + "_tpl": "5c06c6a80db834001b735491" + }, + { + "_id": "6576e378fad2d1a4c00ca44a", + "_tpl": "6571199565daf6aa960c9b10", + "parentId": "6576e378fad2d1a4c00ca449", + "slotId": "Helmet_top" + }, + { + "_id": "6576e378fad2d1a4c00ca44b", + "_tpl": "657119d49eb8c145180dbb95", + "parentId": "6576e378fad2d1a4c00ca449", + "slotId": "Helmet_back" + }, + { + "_id": "6576e378fad2d1a4c00ca44c", + "_tpl": "657119fea330b8c9060f7afc", + "parentId": "6576e378fad2d1a4c00ca449", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet Ssh-68 Standard", + "_parent": "6576e378fad2d1a4c00ca449", + "_type": "Preset" + }, + "6571200b6fe59548840cb53a": { + "_changeWeaponName": false, + "_encyclopedia": "5e00c1ad86f774747333222c", + "_id": "6571200b6fe59548840cb53a", + "_items": [ + { + "_id": "6576e39946600d80c70ba7a5", + "_tpl": "5e00c1ad86f774747333222c" + }, + { + "_id": "6576e39946600d80c70ba7a6", + "_tpl": "6551fec55d0cf82e51014288", + "parentId": "6576e39946600d80c70ba7a5", + "slotId": "helmet_top" + }, + { + "_id": "6576e39946600d80c70ba7a7", + "_tpl": "655200ba0ef76cf7be09d528", + "parentId": "6576e39946600d80c70ba7a5", + "slotId": "helmet_back" + } + ], + "_name": "Helmet EXFIL Black Standard", + "_parent": "6576e39946600d80c70ba7a5", + "_type": "Preset" + }, + "657120376d197c216005b33e": { + "_changeWeaponName": false, + "_encyclopedia": "5e01ef6886f77445f643baa4", + "_id": "657120376d197c216005b33e", + "_items": [ + { + "_id": "6576e3af424f2c87d30c75b2", + "_tpl": "5e01ef6886f77445f643baa4" + }, + { + "_id": "6576e3af424f2c87d30c75b3", + "_tpl": "6551fec55d0cf82e51014288", + "parentId": "6576e3af424f2c87d30c75b2", + "slotId": "helmet_top" + }, + { + "_id": "6576e3af424f2c87d30c75b4", + "_tpl": "655200ba0ef76cf7be09d528", + "parentId": "6576e3af424f2c87d30c75b2", + "slotId": "helmet_back" + } + ], + "_name": "Helmet EXFIL Coyote Standard", + "_parent": "6576e3af424f2c87d30c75b2", + "_type": "Preset" + }, + "65712075f1074598bf0c02a7": { + "_changeWeaponName": false, + "_encyclopedia": "5c091a4e0db834001d5addc8", + "_id": "65712075f1074598bf0c02a7", + "_items": [ + { + "_id": "6576e80dfad2d1a4c00ca47a", + "_tpl": "5c091a4e0db834001d5addc8" + }, + { + "_id": "6576e80dfad2d1a4c00ca47b", + "_tpl": "6571133d22996eaf11088200", + "parentId": "6576e80dfad2d1a4c00ca47a", + "slotId": "Helmet_top" + }, + { + "_id": "6576e80dfad2d1a4c00ca47c", + "_tpl": "6571138e818110db4600aa71", + "parentId": "6576e80dfad2d1a4c00ca47a", + "slotId": "Helmet_back" + }, + { + "_id": "6576e80dfad2d1a4c00ca47d", + "_tpl": "657112fa818110db4600aa6b", + "parentId": "6576e80dfad2d1a4c00ca47a", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet Maska 1Sh Standard", + "_parent": "6576e80dfad2d1a4c00ca47a", + "_type": "Preset" + }, + "657120b36fe59548840cb542": { + "_changeWeaponName": false, + "_encyclopedia": "5b40e1525acfc4771e1c6611", + "_id": "657120b36fe59548840cb542", + "_items": [ + { + "_id": "6576e40dfad2d1a4c00ca44e", + "_tpl": "5b40e1525acfc4771e1c6611" + }, + { + "_id": "6576e40dfad2d1a4c00ca44f", + "_tpl": "657112234269e9a568089eac", + "parentId": "6576e40dfad2d1a4c00ca44e", + "slotId": "Helmet_top" + }, + { + "_id": "6576e40dfad2d1a4c00ca450", + "_tpl": "657112a4818110db4600aa66", + "parentId": "6576e40dfad2d1a4c00ca44e", + "slotId": "Helmet_back" + }, + { + "_id": "6576e40dfad2d1a4c00ca451", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "6576e40dfad2d1a4c00ca44e", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet ULACH Black Standard", + "_parent": "6576e40dfad2d1a4c00ca44e", + "_type": "Preset" + }, + "657120dd6fe59548840cb54c": { + "_changeWeaponName": false, + "_encyclopedia": "5b40e2bc5acfc40016388216", + "_id": "657120dd6fe59548840cb54c", + "_items": [ + { + "_id": "6576e428ab23f2038109a9cb", + "_tpl": "5b40e2bc5acfc40016388216" + }, + { + "_id": "6576e428ab23f2038109a9cc", + "_tpl": "657112234269e9a568089eac", + "parentId": "6576e428ab23f2038109a9cb", + "slotId": "Helmet_top" + }, + { + "_id": "6576e428ab23f2038109a9cd", + "_tpl": "657112a4818110db4600aa66", + "parentId": "6576e428ab23f2038109a9cb", + "slotId": "Helmet_back" + }, + { + "_id": "6576e428ab23f2038109a9ce", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "6576e428ab23f2038109a9cb", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet ULACH Desert Tan Standard", + "_parent": "6576e428ab23f2038109a9cb", + "_type": "Preset" + }, + "6571211af1074598bf0c02b4": { + "_changeWeaponName": false, + "_encyclopedia": "5df8a2ca86f7740bfe6df777", + "_id": "6571211af1074598bf0c02b4", + "_items": [ + { + "_id": "6576ec0406a990316201e7fb", + "_tpl": "5df8a2ca86f7740bfe6df777" + }, + { + "_id": "6576ec0406a990316201e7fc", + "_tpl": "656fd7c32668ef0402028fb9", + "parentId": "6576ec0406a990316201e7fb", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576ec0406a990316201e7fd", + "_tpl": "656fd89bf5a9631d4e042575", + "parentId": "6576ec0406a990316201e7fb", + "slotId": "Soft_armor_back" + } + ], + "_name": "Body armor 6B2 Flora Standard", + "_parent": "6576ec0406a990316201e7fb", + "_type": "Preset" + }, + "6571214fc50461e8750d1f6b": { + "_changeWeaponName": false, + "_encyclopedia": "59e7635f86f7742cbf2c1095", + "_id": "6571214fc50461e8750d1f6b", + "_items": [ + { + "_id": "6576e9e246600d80c70ba7d5", + "_tpl": "59e7635f86f7742cbf2c1095" + }, + { + "_id": "6576e9e246600d80c70ba7d6", + "_tpl": "65702f87722744627e05cdb8", + "parentId": "6576e9e246600d80c70ba7d5", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e9e246600d80c70ba7d7", + "_tpl": "65702fe593b7ea9c330f4ce8", + "parentId": "6576e9e246600d80c70ba7d5", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e9e246600d80c70ba7d8", + "_tpl": "6570305d93b7ea9c330f4ced", + "parentId": "6576e9e246600d80c70ba7d5", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e9e246600d80c70ba7d9", + "_tpl": "65703472c9030b928a0a8a78", + "parentId": "6576e9e246600d80c70ba7d5", + "slotId": "soft_armor_right" + } + ], + "_name": "Body armor Modul 3M Standard", + "_parent": "6576e9e246600d80c70ba7d5", + "_type": "Preset" + }, + "65712184f1074598bf0c02bc": { + "_changeWeaponName": false, + "_encyclopedia": "5648a7494bdc2d9d488b4583", + "_id": "65712184f1074598bf0c02bc", + "_items": [ + { + "_id": "6576ea63ab23f2038109aa11", + "_tpl": "5648a7494bdc2d9d488b4583" + }, + { + "_id": "6576ea63ab23f2038109aa12", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "6576ea63ab23f2038109aa11", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576ea63ab23f2038109aa13", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "6576ea63ab23f2038109aa11", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576ea63ab23f2038109aa14", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "6576ea63ab23f2038109aa11", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576ea63ab23f2038109aa15", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "6576ea63ab23f2038109aa11", + "slotId": "soft_armor_right" + } + ], + "_name": "Body armor PACA Standard", + "_parent": "6576ea63ab23f2038109aa11", + "_type": "Preset" + }, + "657121c5f1074598bf0c02c8": { + "_changeWeaponName": false, + "_encyclopedia": "5ab8e4ed86f7742d8e50c7fa", + "_id": "657121c5f1074598bf0c02c8", + "_items": [ + { + "_id": "6576eabcab23f2038109aa16", + "_tpl": "5ab8e4ed86f7742d8e50c7fa" + }, + { + "_id": "6576eabcab23f2038109aa17", + "_tpl": "657044e971369562b300ce9b", + "parentId": "6576eabcab23f2038109aa16", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576eabcab23f2038109aa18", + "_tpl": "657045741bd9beedc40b7299", + "parentId": "6576eabcab23f2038109aa16", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576eabcab23f2038109aa19", + "_tpl": "657045b97e80617cee095bda", + "parentId": "6576eabcab23f2038109aa16", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576eabcab23f2038109aa1a", + "_tpl": "6570460471369562b300ce9f", + "parentId": "6576eabcab23f2038109aa16", + "slotId": "soft_armor_right" + } + ], + "_name": "Body armor MF UNTAR Standard", + "_parent": "6576eabcab23f2038109aa16", + "_type": "Preset" + }, + "657122026d197c216005b34a": { + "_changeWeaponName": false, + "_encyclopedia": "64be79c487d1510151095552", + "_id": "657122026d197c216005b34a", + "_items": [ + { + "_id": "6576e9ccfad2d1a4c00ca488", + "_tpl": "64be79c487d1510151095552" + }, + { + "_id": "6576e9ccfad2d1a4c00ca489", + "_tpl": "6570495b45d573133d0d6adb", + "parentId": "6576e9ccfad2d1a4c00ca488", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e9ccfad2d1a4c00ca48a", + "_tpl": "657049d23425b19bbc0502f0", + "parentId": "6576e9ccfad2d1a4c00ca488", + "slotId": "Soft_armor_back" + } + ], + "_name": "Body armor Kora Kulon Black Standard", + "_parent": "6576e9ccfad2d1a4c00ca488", + "_type": "Preset" + }, + "657122506fe59548840cb559": { + "_changeWeaponName": false, + "_encyclopedia": "5b44d22286f774172b0c9de8", + "_id": "657122506fe59548840cb559", + "_items": [ + { + "_id": "6576e9f4424f2c87d30c75ef", + "_tpl": "5b44d22286f774172b0c9de8" + }, + { + "_id": "6576e9f4424f2c87d30c75f0", + "_tpl": "65704de13e7bba58ea0285c8", + "parentId": "6576e9f4424f2c87d30c75ef", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e9f4424f2c87d30c75f1", + "_tpl": "65705c3c14f2ed6d7d0b7738", + "parentId": "6576e9f4424f2c87d30c75ef", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e9f4424f2c87d30c75f2", + "_tpl": "65705c777260e1139e091408", + "parentId": "6576e9f4424f2c87d30c75ef", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e9f4424f2c87d30c75f3", + "_tpl": "65705cb314f2ed6d7d0b773c", + "parentId": "6576e9f4424f2c87d30c75ef", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e9f4424f2c87d30c75f4", + "_tpl": "65705cea4916448ae1050897", + "parentId": "6576e9f4424f2c87d30c75ef", + "slotId": "Collar" + }, + { + "_id": "6576e9f4424f2c87d30c75f5", + "_tpl": "656f9d5900d62bcd2e02407c", + "parentId": "6576e9f4424f2c87d30c75ef", + "slotId": "Front_plate" + }, + { + "_id": "6576e9f4424f2c87d30c75f6", + "_tpl": "656f9d5900d62bcd2e02407c", + "parentId": "6576e9f4424f2c87d30c75ef", + "slotId": "Back_plate" + } + ], + "_name": "Body armor Kirasa N Standard", + "_parent": "6576e9f4424f2c87d30c75ef", + "_type": "Preset" + }, + "657123216d197c216005b354": { + "_changeWeaponName": false, + "_encyclopedia": "5c0e53c886f7747fa54205c7", + "_id": "657123216d197c216005b354", + "_items": [ + { + "_id": "6576ec3eab23f2038109aa78", + "_tpl": "5c0e53c886f7747fa54205c7" + }, + { + "_id": "6576ec3eab23f2038109aa79", + "_tpl": "654a8b0b0337d53f9102c2ae", + "parentId": "6576ec3eab23f2038109aa78", + "slotId": "soft_armor_front" + }, + { + "_id": "6576ec3eab23f2038109aa7a", + "_tpl": "654a8976f414fcea4004d78b", + "parentId": "6576ec3eab23f2038109aa78", + "slotId": "soft_armor_back" + }, + { + "_id": "6576ec3eab23f2038109aa7b", + "_tpl": "654a8b3df414fcea4004d78f", + "parentId": "6576ec3eab23f2038109aa78", + "slotId": "soft_armor_left" + }, + { + "_id": "6576ec3eab23f2038109aa7c", + "_tpl": "654a8b80f414fcea4004d797", + "parentId": "6576ec3eab23f2038109aa78", + "slotId": "soft_armor_right" + }, + { + "_id": "6576ec3eab23f2038109aa7d", + "_tpl": "654a8ae00337d53f9102c2aa", + "parentId": "6576ec3eab23f2038109aa78", + "slotId": "Collar" + }, + { + "_id": "6576ec3eab23f2038109aa7e", + "_tpl": "654a8bc5f414fcea4004d79b", + "parentId": "6576ec3eab23f2038109aa78", + "slotId": "Groin" + }, + { + "_id": "6576ec3eab23f2038109aa7f", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "6576ec3eab23f2038109aa78", + "slotId": "front_plate" + }, + { + "_id": "6576ec3eab23f2038109aa80", + "_tpl": "656efd66034e8e01c407f35c", + "parentId": "6576ec3eab23f2038109aa78", + "slotId": "back_plate" + } + ], + "_name": "Body armor 6B13 Assault Flora digital Standard", + "_parent": "6576ec3eab23f2038109aa78", + "_type": "Preset" + }, + "657127126d197c216005b402": { + "_changeWeaponName": false, + "_encyclopedia": "64abd93857958b4249003418", + "_id": "657127126d197c216005b402", + "_items": [ + { + "_id": "6576eae7424f2c87d30c7606", + "_tpl": "64abd93857958b4249003418" + }, + { + "_id": "6576eae7424f2c87d30c7607", + "_tpl": "6570f30b0921c914bf07964c", + "parentId": "6576eae7424f2c87d30c7606", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576eae7424f2c87d30c7608", + "_tpl": "6570f35cd67d0309980a7acb", + "parentId": "6576eae7424f2c87d30c7606", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576eae7424f2c87d30c7609", + "_tpl": "6570f3890b4ae5847f060dad", + "parentId": "6576eae7424f2c87d30c7606", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576eae7424f2c87d30c760a", + "_tpl": "6570f3bb0b4ae5847f060db2", + "parentId": "6576eae7424f2c87d30c7606", + "slotId": "soft_armor_right" + }, + { + "_id": "6576eae7424f2c87d30c760b", + "_tpl": "656fb0bd7c2d57afe200c0dc", + "parentId": "6576eae7424f2c87d30c7606", + "slotId": "Front_plate" + }, + { + "_id": "6576eae7424f2c87d30c760c", + "_tpl": "656fb0bd7c2d57afe200c0dc", + "parentId": "6576eae7424f2c87d30c7606", + "slotId": "Back_plate" + } + ], + "_name": "Body armor Interceptor OTV Standard", + "_parent": "6576eae7424f2c87d30c7606", + "_type": "Preset" + }, + "65712763c50461e8750d1fae": { + "_changeWeaponName": false, + "_encyclopedia": "5c0e57ba86f7747fa141986d", + "_id": "65712763c50461e8750d1fae", + "_items": [ + { + "_id": "657b346db1b05ca017061dad", + "_tpl": "5c0e57ba86f7747fa141986d" + }, + { + "_id": "657b346db1b05ca017061dae", + "_tpl": "65707fc348c7a887f2010432", + "parentId": "657b346db1b05ca017061dad", + "slotId": "Soft_armor_front" + }, + { + "_id": "657b346db1b05ca017061daf", + "_tpl": "6570800612755ae0d907acf8", + "parentId": "657b346db1b05ca017061dad", + "slotId": "Soft_armor_back" + }, + { + "_id": "657b346db1b05ca017061db0", + "_tpl": "65708070f65e2491bf00972c", + "parentId": "657b346db1b05ca017061dad", + "slotId": "Soft_armor_left" + }, + { + "_id": "657b346db1b05ca017061db1", + "_tpl": "657080a212755ae0d907ad04", + "parentId": "657b346db1b05ca017061dad", + "slotId": "soft_armor_right" + }, + { + "_id": "657b346db1b05ca017061db2", + "_tpl": "657080ca12755ae0d907ad5e", + "parentId": "657b346db1b05ca017061dad", + "slotId": "Collar" + }, + { + "_id": "657b346db1b05ca017061db3", + "_tpl": "65708122f65e2491bf009755", + "parentId": "657b346db1b05ca017061dad", + "slotId": "Groin" + }, + { + "_id": "657b346db1b05ca017061db4", + "_tpl": "65708165696fe382cf073255", + "parentId": "657b346db1b05ca017061dad", + "slotId": "Groin_back" + }, + { + "_id": "657b346db1b05ca017061db5", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "657b346db1b05ca017061dad", + "slotId": "Front_plate" + }, + { + "_id": "657b346db1b05ca017061db6", + "_tpl": "657b22485f444d6dff0c6c2f", + "parentId": "657b346db1b05ca017061dad", + "slotId": "Back_plate" + } + ], + "_name": "Body armor 6B23 2 Mountain Flora Standard", + "_parent": "657b346db1b05ca017061dad", + "_type": "Preset" + }, + "657127b7f1074598bf0c02f2": { + "_changeWeaponName": false, + "_encyclopedia": "5c0e655586f774045612eeb2", + "_id": "657127b7f1074598bf0c02f2", + "_items": [ + { + "_id": "6576eb55424f2c87d30c7619", + "_tpl": "5c0e655586f774045612eeb2" + }, + { + "_id": "6576eb55424f2c87d30c761a", + "_tpl": "6570e025615f54368b04fcb0", + "parentId": "6576eb55424f2c87d30c7619", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576eb55424f2c87d30c761b", + "_tpl": "6570e0610b57c03ec90b96ef", + "parentId": "6576eb55424f2c87d30c7619", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576eb55424f2c87d30c761c", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "6576eb55424f2c87d30c7619", + "slotId": "Front_plate" + }, + { + "_id": "6576eb55424f2c87d30c761d", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "6576eb55424f2c87d30c7619", + "slotId": "Back_plate" + } + ], + "_name": "Body armor HighCom Trooper Standard", + "_parent": "6576eb55424f2c87d30c7619", + "_type": "Preset" + }, + "65719339acb85662e7024be2": { + "_changeWeaponName": false, + "_encyclopedia": "64a5366719bab53bd203bf33", + "_id": "65719339acb85662e7024be2", + "_items": [ + { + "_id": "6576e4f846600d80c70ba7b5", + "_tpl": "64a5366719bab53bd203bf33" + }, + { + "_id": "6576e4f846600d80c70ba7b6", + "_tpl": "656fac30c6baea13cd07e10c", + "parentId": "6576e4f846600d80c70ba7b5", + "slotId": "Front_plate" + }, + { + "_id": "6576e4f846600d80c70ba7b7", + "_tpl": "656fac30c6baea13cd07e10c", + "parentId": "6576e4f846600d80c70ba7b5", + "slotId": "Back_plate" + } + ], + "_name": "Vest Eagle Allied Industries MBSS Standard", + "_parent": "6576e4f846600d80c70ba7b5", + "_type": "Preset" + }, + "65719408289dc422160e08c4": { + "_changeWeaponName": false, + "_encyclopedia": "64a536392d2c4e6e970f4121", + "_id": "65719408289dc422160e08c4", + "_items": [ + { + "_id": "6576e488424f2c87d30c75b5", + "_tpl": "64a536392d2c4e6e970f4121" + }, + { + "_id": "6576e488424f2c87d30c75b6", + "_tpl": "6570653e89fd4926380b733e", + "parentId": "6576e488424f2c87d30c75b5", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e488424f2c87d30c75b7", + "_tpl": "6570658a89fd4926380b7346", + "parentId": "6576e488424f2c87d30c75b5", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e488424f2c87d30c75b8", + "_tpl": "656fac30c6baea13cd07e10c", + "parentId": "6576e488424f2c87d30c75b5", + "slotId": "Front_plate" + }, + { + "_id": "6576e488424f2c87d30c75b9", + "_tpl": "656fac30c6baea13cd07e10c", + "parentId": "6576e488424f2c87d30c75b5", + "slotId": "Back_plate" + } + ], + "_name": "Vest WARTECH TV115 Standard", + "_parent": "6576e488424f2c87d30c75b5", + "_type": "Preset" + }, + "6571944dacb85662e7024bea": { + "_changeWeaponName": false, + "_encyclopedia": "5c0e446786f7742013381639", + "_id": "6571944dacb85662e7024bea", + "_items": [ + { + "_id": "6576e7b4ab23f2038109a9e8", + "_tpl": "5c0e446786f7742013381639" + }, + { + "_id": "6576e7b4ab23f2038109a9e9", + "_tpl": "657087577f6d4590ac0d2109", + "parentId": "6576e7b4ab23f2038109a9e8", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e7b4ab23f2038109a9ea", + "_tpl": "6570880f4a747dbb63005ee5", + "parentId": "6576e7b4ab23f2038109a9e8", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e7b4ab23f2038109a9eb", + "_tpl": "65708afe4a747dbb63005eee", + "parentId": "6576e7b4ab23f2038109a9e8", + "slotId": "Collar" + }, + { + "_id": "6576e7b4ab23f2038109a9ec", + "_tpl": "65708b4c4a747dbb63005ef3", + "parentId": "6576e7b4ab23f2038109a9e8", + "slotId": "Groin" + } + ], + "_name": "Vest 6B5 15 Zh 86 Uley Standard", + "_parent": "6576e7b4ab23f2038109a9e8", + "_type": "Preset" + }, + "657194c0289dc422160e08d1": { + "_changeWeaponName": false, + "_encyclopedia": "60a3c70cde5f453f634816a3", + "_id": "657194c0289dc422160e08d1", + "_items": [ + { + "_id": "6576e5a2ab23f2038109a9de", + "_tpl": "60a3c70cde5f453f634816a3" + }, + { + "_id": "6576e5a2ab23f2038109a9df", + "_tpl": "6570fae34c65ab77a6015146", + "parentId": "6576e5a2ab23f2038109a9de", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e5a2ab23f2038109a9e0", + "_tpl": "6570fa1f4c65ab77a601512f", + "parentId": "6576e5a2ab23f2038109a9de", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e5a2ab23f2038109a9e1", + "_tpl": "6570fb22584a51c23e03251f", + "parentId": "6576e5a2ab23f2038109a9de", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e5a2ab23f2038109a9e2", + "_tpl": "6570fb6ad3eefd23430f8c7c", + "parentId": "6576e5a2ab23f2038109a9de", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e5a2ab23f2038109a9e3", + "_tpl": "6570fb8f4c65ab77a601514d", + "parentId": "6576e5a2ab23f2038109a9de", + "slotId": "Collar" + }, + { + "_id": "6576e5a2ab23f2038109a9e4", + "_tpl": "6570fbdd74d84423df065f60", + "parentId": "6576e5a2ab23f2038109a9de", + "slotId": "Shoulder_l" + }, + { + "_id": "6576e5a2ab23f2038109a9e5", + "_tpl": "6570fc41d3eefd23430f8c83", + "parentId": "6576e5a2ab23f2038109a9de", + "slotId": "Shoulder_r" + }, + { + "_id": "6576e5a2ab23f2038109a9e6", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "6576e5a2ab23f2038109a9de", + "slotId": "Front_plate" + }, + { + "_id": "6576e5a2ab23f2038109a9e7", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "6576e5a2ab23f2038109a9de", + "slotId": "Back_plate" + } + ], + "_name": "Vest CQC Osprey MK4A Assault Standard", + "_parent": "6576e5a2ab23f2038109a9de", + "_type": "Preset" + }, + "6571952aacb85662e7024c01": { + "_changeWeaponName": false, + "_encyclopedia": "5ab8dced86f774646209ec87", + "_id": "6571952aacb85662e7024c01", + "_items": [ + { + "_id": "6576e641fad2d1a4c00ca46e", + "_tpl": "5ab8dced86f774646209ec87" + }, + { + "_id": "6576e641fad2d1a4c00ca46f", + "_tpl": "6570f6e774d84423df065f21", + "parentId": "6576e641fad2d1a4c00ca46e", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e641fad2d1a4c00ca470", + "_tpl": "6570f71dd67d0309980a7af8", + "parentId": "6576e641fad2d1a4c00ca46e", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e641fad2d1a4c00ca471", + "_tpl": "6570f74774d84423df065f25", + "parentId": "6576e641fad2d1a4c00ca46e", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e641fad2d1a4c00ca472", + "_tpl": "6570f79c4c65ab77a6015121", + "parentId": "6576e641fad2d1a4c00ca46e", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e641fad2d1a4c00ca473", + "_tpl": "656fa25e94b480b8a500c0e0", + "parentId": "6576e641fad2d1a4c00ca46e", + "slotId": "Front_plate" + }, + { + "_id": "6576e641fad2d1a4c00ca474", + "_tpl": "656fa25e94b480b8a500c0e0", + "parentId": "6576e641fad2d1a4c00ca46e", + "slotId": "Back_plate" + } + ], + "_name": "Vest ANA Tactical M2 Standard", + "_parent": "6576e641fad2d1a4c00ca46e", + "_type": "Preset" + }, + "6571960bacb85662e7024c23": { + "_changeWeaponName": false, + "_encyclopedia": "5d5d87f786f77427997cfaef", + "_id": "6571960bacb85662e7024c23", + "_items": [ + { + "_id": "6576e5ce424f2c87d30c75d1", + "_tpl": "5d5d87f786f77427997cfaef" + }, + { + "_id": "6576e5ce424f2c87d30c75d2", + "_tpl": "6570e5100b57c03ec90b970a", + "parentId": "6576e5ce424f2c87d30c75d1", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e5ce424f2c87d30c75d3", + "_tpl": "6570e479a6560e4ee50c2b02", + "parentId": "6576e5ce424f2c87d30c75d1", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e5ce424f2c87d30c75d4", + "_tpl": "6570e5674cc0d2ab1e05edbb", + "parentId": "6576e5ce424f2c87d30c75d1", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e5ce424f2c87d30c75d5", + "_tpl": "6570e59b0b57c03ec90b970e", + "parentId": "6576e5ce424f2c87d30c75d1", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e5ce424f2c87d30c75d6", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "6576e5ce424f2c87d30c75d1", + "slotId": "Front_plate" + }, + { + "_id": "6576e5ce424f2c87d30c75d7", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "6576e5ce424f2c87d30c75d1", + "slotId": "Back_plate" + } + ], + "_name": "Vest Ars Arma A18 Skanda Standard", + "_parent": "6576e5ce424f2c87d30c75d1", + "_type": "Preset" + }, + "65719d367a553968340d88b8": { + "_changeWeaponName": false, + "_encyclopedia": "544a5caa4bdc2d1a388b4568", + "_id": "65719d367a553968340d88b8", + "_items": [ + { + "_id": "6576e56446600d80c70ba7b8", + "_tpl": "544a5caa4bdc2d1a388b4568" + }, + { + "_id": "6576e56446600d80c70ba7b9", + "_tpl": "6570e83223c1f638ef0b0ede", + "parentId": "6576e56446600d80c70ba7b8", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e56446600d80c70ba7ba", + "_tpl": "6570e87c23c1f638ef0b0ee2", + "parentId": "6576e56446600d80c70ba7b8", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e56446600d80c70ba7bb", + "_tpl": "6570e90b3a5689d85f08db97", + "parentId": "6576e56446600d80c70ba7b8", + "slotId": "Groin" + }, + { + "_id": "6576e56446600d80c70ba7bc", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "6576e56446600d80c70ba7b8", + "slotId": "Front_plate" + }, + { + "_id": "6576e56446600d80c70ba7bd", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "6576e56446600d80c70ba7b8", + "slotId": "Back_plate" + } + ], + "_name": "Vest Crye Precision AVS Standard", + "_parent": "6576e56446600d80c70ba7b8", + "_type": "Preset" + }, + "65765896526e320fbe035788": { + "_changeWeaponName": false, + "_encyclopedia": "607f20859ee58b18e41ecd90", + "_id": "65765896526e320fbe035788", + "_items": [ + { + "_id": "6576ea74fad2d1a4c00ca493", + "_tpl": "607f20859ee58b18e41ecd90" + }, + { + "_id": "6576ea74fad2d1a4c00ca494", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "6576ea74fad2d1a4c00ca493", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576ea74fad2d1a4c00ca495", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "6576ea74fad2d1a4c00ca493", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576ea74fad2d1a4c00ca496", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "6576ea74fad2d1a4c00ca493", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576ea74fad2d1a4c00ca497", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "6576ea74fad2d1a4c00ca493", + "slotId": "soft_armor_right" + } + ], + "_name": "Body armor PACA Rivals Edition Standard", + "_parent": "6576ea74fad2d1a4c00ca493", + "_type": "Preset" + }, + "65765a38526e320fbe035795": { + "_changeWeaponName": false, + "_encyclopedia": "5c0e5edb86f77461f55ed1f7", + "_id": "65765a38526e320fbe035795", + "_items": [ + { + "_id": "6576ea29fad2d1a4c00ca48b", + "_tpl": "5c0e5edb86f77461f55ed1f7" + }, + { + "_id": "6576ea29fad2d1a4c00ca48c", + "_tpl": "6571dbd388ead79fcf091d71", + "parentId": "6576ea29fad2d1a4c00ca48b", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576ea29fad2d1a4c00ca48d", + "_tpl": "6571dbda88ead79fcf091d75", + "parentId": "6576ea29fad2d1a4c00ca48b", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576ea29fad2d1a4c00ca48e", + "_tpl": "6571dbe07c02ae206002502e", + "parentId": "6576ea29fad2d1a4c00ca48b", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576ea29fad2d1a4c00ca48f", + "_tpl": "6571dbeaee8ec43d520cf89e", + "parentId": "6576ea29fad2d1a4c00ca48b", + "slotId": "soft_armor_right" + }, + { + "_id": "6576ea29fad2d1a4c00ca490", + "_tpl": "6571dbef88ead79fcf091d79", + "parentId": "6576ea29fad2d1a4c00ca48b", + "slotId": "Collar" + }, + { + "_id": "6576ea29fad2d1a4c00ca491", + "_tpl": "656f57dc27aed95beb08f628", + "parentId": "6576ea29fad2d1a4c00ca48b", + "slotId": "Front_plate" + }, + { + "_id": "6576ea29fad2d1a4c00ca492", + "_tpl": "656fac30c6baea13cd07e10c", + "parentId": "6576ea29fad2d1a4c00ca48b", + "slotId": "Back_plate" + } + ], + "_name": "Body armor Zhuk 3 Standard", + "_parent": "6576ea29fad2d1a4c00ca48b", + "_type": "Preset" + }, + "65765cb6b7ea14f3b70da689": { + "_changeWeaponName": false, + "_encyclopedia": "5c0e5bab86f77461f55ed1f3", + "_id": "65765cb6b7ea14f3b70da689", + "_items": [ + { + "_id": "6576ebf5ab23f2038109aa6f", + "_tpl": "5c0e5bab86f77461f55ed1f3" + }, + { + "_id": "6576ebf5ab23f2038109aa70", + "_tpl": "6571b27a6d84a2b8b6007f92", + "parentId": "6576ebf5ab23f2038109aa6f", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576ebf5ab23f2038109aa71", + "_tpl": "6571baa74cb80d995d0a1490", + "parentId": "6576ebf5ab23f2038109aa6f", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576ebf5ab23f2038109aa72", + "_tpl": "6571baac6d84a2b8b6007fa3", + "parentId": "6576ebf5ab23f2038109aa6f", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576ebf5ab23f2038109aa73", + "_tpl": "6571bab0f41985531a038091", + "parentId": "6576ebf5ab23f2038109aa6f", + "slotId": "soft_armor_right" + }, + { + "_id": "6576ebf5ab23f2038109aa74", + "_tpl": "6571babb4076795e5e07383f", + "parentId": "6576ebf5ab23f2038109aa6f", + "slotId": "Collar" + }, + { + "_id": "6576ebf5ab23f2038109aa75", + "_tpl": "6571bac34076795e5e073843", + "parentId": "6576ebf5ab23f2038109aa6f", + "slotId": "Groin" + }, + { + "_id": "6576ebf5ab23f2038109aa76", + "_tpl": "6571babf4cb80d995d0a1494", + "parentId": "6576ebf5ab23f2038109aa6f", + "slotId": "Groin_back" + }, + { + "_id": "6576ebf5ab23f2038109aa77", + "_tpl": "654a4dea7c17dec2f50cc86a", + "parentId": "6576ebf5ab23f2038109aa6f", + "slotId": "Front_plate" + } + ], + "_name": "Body armor 6B23 1 Flora digital Standard", + "_parent": "6576ebf5ab23f2038109aa6f", + "_type": "Preset" + }, + "65765d08b7ea14f3b70da69b": { + "_changeWeaponName": false, + "_encyclopedia": "64be79e2bf8412471d0d9bcc", + "_id": "65765d08b7ea14f3b70da69b", + "_items": [ + { + "_id": "6576e9b6ab23f2038109aa04", + "_tpl": "64be79e2bf8412471d0d9bcc" + }, + { + "_id": "6576e9b6ab23f2038109aa05", + "_tpl": "6570495b45d573133d0d6adb", + "parentId": "6576e9b6ab23f2038109aa04", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e9b6ab23f2038109aa06", + "_tpl": "657049d23425b19bbc0502f0", + "parentId": "6576e9b6ab23f2038109aa04", + "slotId": "Soft_armor_back" + } + ], + "_name": "Body armor Kora Kulon Flora digital Standard", + "_parent": "6576e9b6ab23f2038109aa04", + "_type": "Preset" + }, + "65765d5086f11bca4106d316": { + "_changeWeaponName": false, + "_encyclopedia": "5c0e3eb886f7742015526062", + "_id": "65765d5086f11bca4106d316", + "_items": [ + { + "_id": "6576e797fad2d1a4c00ca475", + "_tpl": "5c0e3eb886f7742015526062" + }, + { + "_id": "6576e797fad2d1a4c00ca476", + "_tpl": "65764a4cd8537eb26a0355ee", + "parentId": "6576e797fad2d1a4c00ca475", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e797fad2d1a4c00ca477", + "_tpl": "65764bc22bc38ef78e076485", + "parentId": "6576e797fad2d1a4c00ca475", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e797fad2d1a4c00ca478", + "_tpl": "65764c39526e320fbe035777", + "parentId": "6576e797fad2d1a4c00ca475", + "slotId": "Collar" + }, + { + "_id": "6576e797fad2d1a4c00ca479", + "_tpl": "65764c6b526e320fbe03577b", + "parentId": "6576e797fad2d1a4c00ca475", + "slotId": "Groin" + } + ], + "_name": "Vest 6B5 16 Zh 86 Uley Standard", + "_parent": "6576e797fad2d1a4c00ca475", + "_type": "Preset" + }, + "65765d8586f11bca4106d323": { + "_changeWeaponName": false, + "_encyclopedia": "62a09d79de7ac81993580530", + "_id": "65765d8586f11bca4106d323", + "_items": [ + { + "_id": "6576eb7646600d80c70ba7f1", + "_tpl": "62a09d79de7ac81993580530" + }, + { + "_id": "6576eb7646600d80c70ba7f2", + "_tpl": "6572e048371fccfbf909d5d8", + "parentId": "6576eb7646600d80c70ba7f1", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576eb7646600d80c70ba7f3", + "_tpl": "6572e059371fccfbf909d5dc", + "parentId": "6576eb7646600d80c70ba7f1", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576eb7646600d80c70ba7f4", + "_tpl": "6572e06219b4b511af012f89", + "parentId": "6576eb7646600d80c70ba7f1", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576eb7646600d80c70ba7f5", + "_tpl": "6572e06819b4b511af012f8d", + "parentId": "6576eb7646600d80c70ba7f1", + "slotId": "soft_armor_right" + } + ], + "_name": "Body armor DRD Standard", + "_parent": "6576eb7646600d80c70ba7f1", + "_type": "Preset" + }, + "65765f39526e320fbe0357b1": { + "_changeWeaponName": false, + "_encyclopedia": "5c0e51be86f774598e797894", + "_id": "65765f39526e320fbe0357b1", + "_items": [ + { + "_id": "6576ec1bfad2d1a4c00ca4b2", + "_tpl": "5c0e51be86f774598e797894" + }, + { + "_id": "6576ec1bfad2d1a4c00ca4b3", + "_tpl": "654a8b0b0337d53f9102c2ae", + "parentId": "6576ec1bfad2d1a4c00ca4b2", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576ec1bfad2d1a4c00ca4b4", + "_tpl": "654a8976f414fcea4004d78b", + "parentId": "6576ec1bfad2d1a4c00ca4b2", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576ec1bfad2d1a4c00ca4b5", + "_tpl": "654a8b3df414fcea4004d78f", + "parentId": "6576ec1bfad2d1a4c00ca4b2", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576ec1bfad2d1a4c00ca4b6", + "_tpl": "654a8b80f414fcea4004d797", + "parentId": "6576ec1bfad2d1a4c00ca4b2", + "slotId": "soft_armor_right" + }, + { + "_id": "6576ec1bfad2d1a4c00ca4b7", + "_tpl": "654a8ae00337d53f9102c2aa", + "parentId": "6576ec1bfad2d1a4c00ca4b2", + "slotId": "Collar" + }, + { + "_id": "6576ec1bfad2d1a4c00ca4b8", + "_tpl": "654a8bc5f414fcea4004d79b", + "parentId": "6576ec1bfad2d1a4c00ca4b2", + "slotId": "Groin" + }, + { + "_id": "6576ec1bfad2d1a4c00ca4b9", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "6576ec1bfad2d1a4c00ca4b2", + "slotId": "Front_plate" + }, + { + "_id": "6576ec1bfad2d1a4c00ca4ba", + "_tpl": "656efd66034e8e01c407f35c", + "parentId": "6576ec1bfad2d1a4c00ca4b2", + "slotId": "Back_plate" + } + ], + "_name": "Body armor 6B13 Assault Flora Standard", + "_parent": "6576ec1bfad2d1a4c00ca4b2", + "_type": "Preset" + }, + "65765fbe234b9f6e050a4292": { + "_changeWeaponName": false, + "_encyclopedia": "609e8540d5c319764c2bc2e9", + "_id": "65765fbe234b9f6e050a4292", + "_items": [ + { + "_id": "6576eaa3424f2c87d30c75ff", + "_tpl": "609e8540d5c319764c2bc2e9" + }, + { + "_id": "6576eaa3424f2c87d30c7600", + "_tpl": "6572e5221b5bc1185508c24f", + "parentId": "6576eaa3424f2c87d30c75ff", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576eaa3424f2c87d30c7601", + "_tpl": "6572e52f73c0eabb700109a0", + "parentId": "6576eaa3424f2c87d30c75ff", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576eaa3424f2c87d30c7602", + "_tpl": "6572e53c73c0eabb700109a4", + "parentId": "6576eaa3424f2c87d30c75ff", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576eaa3424f2c87d30c7603", + "_tpl": "6572e54873c0eabb700109a8", + "parentId": "6576eaa3424f2c87d30c75ff", + "slotId": "soft_armor_right" + }, + { + "_id": "6576eaa3424f2c87d30c7604", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "6576eaa3424f2c87d30c75ff", + "slotId": "Front_plate" + }, + { + "_id": "6576eaa3424f2c87d30c7605", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "6576eaa3424f2c87d30c75ff", + "slotId": "Back_plate" + } + ], + "_name": "Body armor NFM THOR Concealable Reinforced Standard", + "_parent": "6576eaa3424f2c87d30c75ff", + "_type": "Preset" + }, + "6576600186f11bca4106d331": { + "_changeWeaponName": false, + "_encyclopedia": "5d5d646386f7742797261fd9", + "_id": "6576600186f11bca4106d331", + "_items": [ + { + "_id": "6576e7cc46600d80c70ba7c7", + "_tpl": "5d5d646386f7742797261fd9" + }, + { + "_id": "6576e7cc46600d80c70ba7c8", + "_tpl": "65764e1e2bc38ef78e076489", + "parentId": "6576e7cc46600d80c70ba7c7", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e7cc46600d80c70ba7c9", + "_tpl": "65764fae2bc38ef78e07648d", + "parentId": "6576e7cc46600d80c70ba7c7", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e7cc46600d80c70ba7ca", + "_tpl": "6576504b526e320fbe035783", + "parentId": "6576e7cc46600d80c70ba7c7", + "slotId": "Groin" + }, + { + "_id": "6576e7cc46600d80c70ba7cb", + "_tpl": "6576500f526e320fbe03577f", + "parentId": "6576e7cc46600d80c70ba7c7", + "slotId": "Groin_back" + } + ], + "_name": "Vest 6B3TM 01 Standard", + "_parent": "6576e7cc46600d80c70ba7c7", + "_type": "Preset" + }, + "6576604f86f11bca4106d33d": { + "_changeWeaponName": false, + "_encyclopedia": "61bcc89aef0f505f0c6cd0fc", + "_id": "6576604f86f11bca4106d33d", + "_items": [ + { + "_id": "6576e4d8fad2d1a4c00ca457", + "_tpl": "61bcc89aef0f505f0c6cd0fc" + }, + { + "_id": "6576e4d8fad2d1a4c00ca458", + "_tpl": "6572eb0e55beba16bc04079f", + "parentId": "6576e4d8fad2d1a4c00ca457", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e4d8fad2d1a4c00ca459", + "_tpl": "6572eb1b04ee6483ef039882", + "parentId": "6576e4d8fad2d1a4c00ca457", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e4d8fad2d1a4c00ca45a", + "_tpl": "6572eb3004ee6483ef039886", + "parentId": "6576e4d8fad2d1a4c00ca457", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e4d8fad2d1a4c00ca45b", + "_tpl": "6572eb3b04ee6483ef03988a", + "parentId": "6576e4d8fad2d1a4c00ca457", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e4d8fad2d1a4c00ca45c", + "_tpl": "6572eb865b5eac12f10a03ee", + "parentId": "6576e4d8fad2d1a4c00ca457", + "slotId": "Groin" + }, + { + "_id": "6576e4d8fad2d1a4c00ca45d", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "6576e4d8fad2d1a4c00ca457", + "slotId": "Front_plate" + }, + { + "_id": "6576e4d8fad2d1a4c00ca45e", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "6576e4d8fad2d1a4c00ca457", + "slotId": "Back_plate" + } + ], + "_name": "Vest FirstSpear Strandhogg Standard", + "_parent": "6576e4d8fad2d1a4c00ca457", + "_type": "Preset" + }, + "657660a1526e320fbe0357c1": { + "_changeWeaponName": false, + "_encyclopedia": "628dc750b910320f4c27a732", + "_id": "657660a1526e320fbe0357c1", + "_items": [ + { + "_id": "6576e519424f2c87d30c75bd", + "_tpl": "628dc750b910320f4c27a732" + }, + { + "_id": "6576e519424f2c87d30c75be", + "_tpl": "6572f1ca4c8d903cc60c874e", + "parentId": "6576e519424f2c87d30c75bd", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e519424f2c87d30c75bf", + "_tpl": "6572f1d60103b4a3270332db", + "parentId": "6576e519424f2c87d30c75bd", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e519424f2c87d30c75c0", + "_tpl": "6572f1e10103b4a3270332df", + "parentId": "6576e519424f2c87d30c75bd", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e519424f2c87d30c75c1", + "_tpl": "6572f1edea457732140ce875", + "parentId": "6576e519424f2c87d30c75bd", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e519424f2c87d30c75c2", + "_tpl": "6572f1f7ea457732140ce879", + "parentId": "6576e519424f2c87d30c75bd", + "slotId": "Groin" + }, + { + "_id": "6576e519424f2c87d30c75c3", + "_tpl": "656fa25e94b480b8a500c0e0", + "parentId": "6576e519424f2c87d30c75bd", + "slotId": "Front_plate" + }, + { + "_id": "6576e519424f2c87d30c75c4", + "_tpl": "656fa25e94b480b8a500c0e0", + "parentId": "6576e519424f2c87d30c75bd", + "slotId": "Back_plate" + } + ], + "_name": "Vest ECLiPSE RBAV-AF Standard", + "_parent": "6576e519424f2c87d30c75bd", + "_type": "Preset" + }, + "657660eb86f11bca4106d34f": { + "_changeWeaponName": false, + "_encyclopedia": "61bc85697113f767765c7fe7", + "_id": "657660eb86f11bca4106d34f", + "_items": [ + { + "_id": "6576e4e8ab23f2038109a9d2", + "_tpl": "61bc85697113f767765c7fe7" + }, + { + "_id": "6576e4e8ab23f2038109a9d3", + "_tpl": "6572fc809a866b80ab07eb59", + "parentId": "6576e4e8ab23f2038109a9d2", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e4e8ab23f2038109a9d4", + "_tpl": "6572fc8c9a866b80ab07eb5d", + "parentId": "6576e4e8ab23f2038109a9d2", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e4e8ab23f2038109a9d5", + "_tpl": "6572fc989a866b80ab07eb61", + "parentId": "6576e4e8ab23f2038109a9d2", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e4e8ab23f2038109a9d6", + "_tpl": "6572fca39a866b80ab07eb65", + "parentId": "6576e4e8ab23f2038109a9d2", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e4e8ab23f2038109a9d7", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "6576e4e8ab23f2038109a9d2", + "slotId": "Front_plate" + }, + { + "_id": "6576e4e8ab23f2038109a9d8", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "6576e4e8ab23f2038109a9d2", + "slotId": "Back_plate" + } + ], + "_name": "Vest Eagle Industries MMAC Standard", + "_parent": "6576e4e8ab23f2038109a9d2", + "_type": "Preset" + }, + "6576616086f11bca4106d35f": { + "_changeWeaponName": false, + "_encyclopedia": "5c0e722886f7740458316a57", + "_id": "6576616086f11bca4106d35f", + "_items": [ + { + "_id": "6576e776424f2c87d30c75d8", + "_tpl": "5c0e722886f7740458316a57" + }, + { + "_id": "6576e776424f2c87d30c75d9", + "_tpl": "65730c0e292ecadbfa09ad49", + "parentId": "6576e776424f2c87d30c75d8", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e776424f2c87d30c75da", + "_tpl": "65730c2213a2f660f60bea96", + "parentId": "6576e776424f2c87d30c75d8", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e776424f2c87d30c75db", + "_tpl": "65730c2b292ecadbfa09ad50", + "parentId": "6576e776424f2c87d30c75d8", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e776424f2c87d30c75dc", + "_tpl": "65730c35292ecadbfa09ad54", + "parentId": "6576e776424f2c87d30c75d8", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e776424f2c87d30c75dd", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "6576e776424f2c87d30c75d8", + "slotId": "Front_plate" + }, + { + "_id": "6576e776424f2c87d30c75de", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "6576e776424f2c87d30c75d8", + "slotId": "Back_plate" + } + ], + "_name": "Vest ANA Tactical M1 Standard", + "_parent": "6576e776424f2c87d30c75d8", + "_type": "Preset" + }, + "657661ad234b9f6e050a42a2": { + "_changeWeaponName": false, + "_encyclopedia": "639343fce101f4caa40a4ef3", + "_id": "657661ad234b9f6e050a42a2", + "_items": [ + { + "_id": "6576e4b546600d80c70ba7ae", + "_tpl": "639343fce101f4caa40a4ef3" + }, + { + "_id": "6576e4b546600d80c70ba7af", + "_tpl": "6573101e292ecadbfa09b389", + "parentId": "6576e4b546600d80c70ba7ae", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e4b546600d80c70ba7b0", + "_tpl": "6573102b292ecadbfa09b38d", + "parentId": "6576e4b546600d80c70ba7ae", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e4b546600d80c70ba7b1", + "_tpl": "65731038292ecadbfa09b391", + "parentId": "6576e4b546600d80c70ba7ae", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e4b546600d80c70ba7b2", + "_tpl": "65731045f31d5be00e08a75a", + "parentId": "6576e4b546600d80c70ba7ae", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e4b546600d80c70ba7b3", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "6576e4b546600d80c70ba7ae", + "slotId": "Front_plate" + }, + { + "_id": "6576e4b546600d80c70ba7b4", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "6576e4b546600d80c70ba7ae", + "slotId": "Back_plate" + } + ], + "_name": "Vest Shellback Tactical Banshee Standard", + "_parent": "6576e4b546600d80c70ba7ae", + "_type": "Preset" + }, + "65766278526e320fbe0357d4": { + "_changeWeaponName": false, + "_encyclopedia": "5f5f41476bdad616ad46d631", + "_id": "65766278526e320fbe0357d4", + "_items": [ + { + "_id": "657b348439de0339ee0d3fcf", + "_tpl": "5f5f41476bdad616ad46d631" + }, + { + "_id": "657b348439de0339ee0d3fd0", + "_tpl": "65731b46cea9255e2102360a", + "parentId": "657b348439de0339ee0d3fcf", + "slotId": "Soft_armor_front" + }, + { + "_id": "657b348439de0339ee0d3fd1", + "_tpl": "65731b4fcea9255e2102360e", + "parentId": "657b348439de0339ee0d3fcf", + "slotId": "Soft_armor_back" + }, + { + "_id": "657b348439de0339ee0d3fd2", + "_tpl": "65731b576e709cddd001ec3f", + "parentId": "657b348439de0339ee0d3fcf", + "slotId": "Soft_armor_left" + }, + { + "_id": "657b348439de0339ee0d3fd3", + "_tpl": "65731b60ff6dc44a7d068c4a", + "parentId": "657b348439de0339ee0d3fcf", + "slotId": "soft_armor_right" + }, + { + "_id": "657b348439de0339ee0d3fd4", + "_tpl": "65731b666e709cddd001ec43", + "parentId": "657b348439de0339ee0d3fcf", + "slotId": "Collar" + }, + { + "_id": "657b348439de0339ee0d3fd5", + "_tpl": "65731b716e709cddd001ec47", + "parentId": "657b348439de0339ee0d3fcf", + "slotId": "Groin" + }, + { + "_id": "657b348439de0339ee0d3fd6", + "_tpl": "65731b6b6042b0f210020ef6", + "parentId": "657b348439de0339ee0d3fcf", + "slotId": "Groin_back" + }, + { + "_id": "657b348439de0339ee0d3fd7", + "_tpl": "656f664200d62bcd2e024077", + "parentId": "657b348439de0339ee0d3fcf", + "slotId": "Front_plate" + }, + { + "_id": "657b348439de0339ee0d3fd8", + "_tpl": "654a4f8bc721968a4404ef18", + "parentId": "657b348439de0339ee0d3fcf", + "slotId": "Left_side_plate" + }, + { + "_id": "657b348439de0339ee0d3fd9", + "_tpl": "654a4f8bc721968a4404ef18", + "parentId": "657b348439de0339ee0d3fcf", + "slotId": "Right_side_plate" + }, + { + "_id": "657b348439de0339ee0d3fda", + "_tpl": "657b2797c3dbcb01d60c35ea", + "parentId": "657b348439de0339ee0d3fcf", + "slotId": "Back_plate" + } + ], + "_name": "Body armor Korund VM Standard", + "_parent": "657b348439de0339ee0d3fcf", + "_type": "Preset" + }, + "657662c8234b9f6e050a42b2": { + "_changeWeaponName": false, + "_encyclopedia": "628d0618d1ba6e4fa07ce5a4", + "_id": "657662c8234b9f6e050a42b2", + "_items": [ + { + "_id": "657b34a2f01824c5880be6f8", + "_tpl": "628d0618d1ba6e4fa07ce5a4" + }, + { + "_id": "657b34a2f01824c5880be6f9", + "_tpl": "657322988c1cc6dcd9098b2d", + "parentId": "657b34a2f01824c5880be6f8", + "slotId": "Soft_armor_front" + }, + { + "_id": "657b34a2f01824c5880be6fa", + "_tpl": "657322a4cea9255e21023651", + "parentId": "657b34a2f01824c5880be6f8", + "slotId": "Soft_armor_back" + }, + { + "_id": "657b34a2f01824c5880be6fb", + "_tpl": "657322acd9d89ff7ac0d961b", + "parentId": "657b34a2f01824c5880be6f8", + "slotId": "Soft_armor_left" + }, + { + "_id": "657b34a2f01824c5880be6fc", + "_tpl": "657322b7d9d89ff7ac0d961f", + "parentId": "657b34a2f01824c5880be6f8", + "slotId": "soft_armor_right" + }, + { + "_id": "657b34a2f01824c5880be6fd", + "_tpl": "656f664200d62bcd2e024077", + "parentId": "657b34a2f01824c5880be6f8", + "slotId": "Front_plate" + }, + { + "_id": "657b34a2f01824c5880be6fe", + "_tpl": "657b2797c3dbcb01d60c35ea", + "parentId": "657b34a2f01824c5880be6f8", + "slotId": "Back_plate" + } + ], + "_name": "Vest Bagarii Standard", + "_parent": "657b34a2f01824c5880be6f8", + "_type": "Preset" + }, + "657663b6526e320fbe0357ec": { + "_changeWeaponName": false, + "_encyclopedia": "5ab8e79e86f7742d8b372e78", + "_id": "657663b6526e320fbe0357ec", + "_items": [ + { + "_id": "6576ea54424f2c87d30c75f7", + "_tpl": "5ab8e79e86f7742d8b372e78" + }, + { + "_id": "6576ea54424f2c87d30c75f8", + "_tpl": "65732688d9d89ff7ac0d9c4c", + "parentId": "6576ea54424f2c87d30c75f7", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576ea54424f2c87d30c75f9", + "_tpl": "657326978c1cc6dcd9098b56", + "parentId": "6576ea54424f2c87d30c75f7", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576ea54424f2c87d30c75fa", + "_tpl": "657326a28c1cc6dcd9098b5a", + "parentId": "6576ea54424f2c87d30c75f7", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576ea54424f2c87d30c75fb", + "_tpl": "657326b08c1cc6dcd9098b5e", + "parentId": "6576ea54424f2c87d30c75f7", + "slotId": "soft_armor_right" + }, + { + "_id": "6576ea54424f2c87d30c75fc", + "_tpl": "657326bc5d3a3129fb05f36b", + "parentId": "6576ea54424f2c87d30c75f7", + "slotId": "Collar" + }, + { + "_id": "6576ea54424f2c87d30c75fd", + "_tpl": "656f611f94b480b8a500c0db", + "parentId": "6576ea54424f2c87d30c75f7", + "slotId": "Front_plate" + }, + { + "_id": "6576ea54424f2c87d30c75fe", + "_tpl": "65573fa5655447403702a816", + "parentId": "6576ea54424f2c87d30c75f7", + "slotId": "Back_plate" + } + ], + "_name": "Body armor Gzhel K Standard", + "_parent": "6576ea54424f2c87d30c75f7", + "_type": "Preset" + }, + "657663ff303700411c024278": { + "_changeWeaponName": false, + "_encyclopedia": "5e9dacf986f774054d6b89f4", + "_id": "657663ff303700411c024278", + "_items": [ + { + "_id": "6576e98b46600d80c70ba7cc", + "_tpl": "5e9dacf986f774054d6b89f4" + }, + { + "_id": "6576e98b46600d80c70ba7cd", + "_tpl": "65732de75d3a3129fb05f3dd", + "parentId": "6576e98b46600d80c70ba7cc", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e98b46600d80c70ba7ce", + "_tpl": "65732df4d0acf75aea06c87b", + "parentId": "6576e98b46600d80c70ba7cc", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e98b46600d80c70ba7cf", + "_tpl": "65732e05d0acf75aea06c87f", + "parentId": "6576e98b46600d80c70ba7cc", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e98b46600d80c70ba7d0", + "_tpl": "65732e0f6784ca384b0167ad", + "parentId": "6576e98b46600d80c70ba7cc", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e98b46600d80c70ba7d1", + "_tpl": "65732e215d3a3129fb05f3e1", + "parentId": "6576e98b46600d80c70ba7cc", + "slotId": "Collar" + }, + { + "_id": "6576e98b46600d80c70ba7d2", + "_tpl": "65732e30dd8739f6440ef383", + "parentId": "6576e98b46600d80c70ba7cc", + "slotId": "Groin" + }, + { + "_id": "6576e98b46600d80c70ba7d3", + "_tpl": "65573fa5655447403702a816", + "parentId": "6576e98b46600d80c70ba7cc", + "slotId": "Front_plate" + }, + { + "_id": "6576e98b46600d80c70ba7d4", + "_tpl": "65573fa5655447403702a816", + "parentId": "6576e98b46600d80c70ba7cc", + "slotId": "Back_plate" + } + ], + "_name": "Body armor Defender 2 Standard", + "_parent": "6576e98b46600d80c70ba7cc", + "_type": "Preset" + }, + "657664ae303700411c02428c": { + "_changeWeaponName": false, + "_encyclopedia": "60a3c68c37ea821725773ef5", + "_id": "657664ae303700411c02428c", + "_items": [ + { + "_id": "6576e57d424f2c87d30c75c5", + "_tpl": "60a3c68c37ea821725773ef5" + }, + { + "_id": "6576e57d424f2c87d30c75c6", + "_tpl": "65733312ca0ca984940a2d53", + "parentId": "6576e57d424f2c87d30c75c5", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e57d424f2c87d30c75c7", + "_tpl": "657333232cc8dfad2c0a3d97", + "parentId": "6576e57d424f2c87d30c75c5", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e57d424f2c87d30c75c8", + "_tpl": "657333302cc8dfad2c0a3d9b", + "parentId": "6576e57d424f2c87d30c75c5", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e57d424f2c87d30c75c9", + "_tpl": "6573333eca0ca984940a2d57", + "parentId": "6576e57d424f2c87d30c75c5", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e57d424f2c87d30c75ca", + "_tpl": "6573334aca0ca984940a2d5b", + "parentId": "6576e57d424f2c87d30c75c5", + "slotId": "Collar" + }, + { + "_id": "6576e57d424f2c87d30c75cb", + "_tpl": "65733375b7a8d286530e3dd7", + "parentId": "6576e57d424f2c87d30c75c5", + "slotId": "Shoulder_l" + }, + { + "_id": "6576e57d424f2c87d30c75cc", + "_tpl": "6573337f2cc8dfad2c0a3da7", + "parentId": "6576e57d424f2c87d30c75c5", + "slotId": "Shoulder_r" + }, + { + "_id": "6576e57d424f2c87d30c75cd", + "_tpl": "656fa53d94b480b8a500c0e4", + "parentId": "6576e57d424f2c87d30c75c5", + "slotId": "Front_plate" + }, + { + "_id": "6576e57d424f2c87d30c75ce", + "_tpl": "656fa53d94b480b8a500c0e4", + "parentId": "6576e57d424f2c87d30c75c5", + "slotId": "Back_plate" + }, + { + "_id": "6576e57d424f2c87d30c75cf", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6576e57d424f2c87d30c75c5", + "slotId": "Left_side_plate" + }, + { + "_id": "6576e57d424f2c87d30c75d0", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6576e57d424f2c87d30c75c5", + "slotId": "Right_side_plate" + } + ], + "_name": "Vest CQC Osprey MK4A Protection Standard", + "_parent": "6576e57d424f2c87d30c75c5", + "_type": "Preset" + }, + "657664ec526e320fbe0357fe": { + "_changeWeaponName": false, + "_encyclopedia": "63737f448b28897f2802b874", + "_id": "657664ec526e320fbe0357fe", + "_items": [ + { + "_id": "6576eb68fad2d1a4c00ca49a", + "_tpl": "63737f448b28897f2802b874" + }, + { + "_id": "6576eb68fad2d1a4c00ca49b", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "6576eb68fad2d1a4c00ca49a", + "slotId": "Front_plate" + }, + { + "_id": "6576eb68fad2d1a4c00ca49c", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "6576eb68fad2d1a4c00ca49a", + "slotId": "Back_plate" + } + ], + "_name": "Body armor Hexatac HPC Standard", + "_parent": "6576eb68fad2d1a4c00ca49a", + "_type": "Preset" + }, + "65766527303700411c0242a6": { + "_changeWeaponName": false, + "_encyclopedia": "5b44cad286f77402a54ae7e5", + "_id": "65766527303700411c0242a6", + "_items": [ + { + "_id": "6576e7e2424f2c87d30c75df", + "_tpl": "5b44cad286f77402a54ae7e5" + }, + { + "_id": "6576e7e2424f2c87d30c75e0", + "_tpl": "6575bc88c6700bd6b40e8a57", + "parentId": "6576e7e2424f2c87d30c75df", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e7e2424f2c87d30c75e1", + "_tpl": "6575bca0dc9932aed601c5d7", + "parentId": "6576e7e2424f2c87d30c75df", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e7e2424f2c87d30c75e2", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "6576e7e2424f2c87d30c75df", + "slotId": "Front_plate" + }, + { + "_id": "6576e7e2424f2c87d30c75e3", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "6576e7e2424f2c87d30c75df", + "slotId": "Back_plate" + } + ], + "_name": "Vest 5.11 Tactical TacTec Standard", + "_parent": "6576e7e2424f2c87d30c75df", + "_type": "Preset" + }, + "65766582234b9f6e050a42c1": { + "_changeWeaponName": false, + "_encyclopedia": "5b44d0de86f774503d30cba8", + "_id": "65766582234b9f6e050a42c1", + "_items": [ + { + "_id": "6576eb4346600d80c70ba7e7", + "_tpl": "5b44d0de86f774503d30cba8" + }, + { + "_id": "6576eb4346600d80c70ba7e8", + "_tpl": "6575c342efc786cd9101a5e5", + "parentId": "6576eb4346600d80c70ba7e7", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576eb4346600d80c70ba7e9", + "_tpl": "6575c34bc6700bd6b40e8a84", + "parentId": "6576eb4346600d80c70ba7e7", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576eb4346600d80c70ba7ea", + "_tpl": "6575c35bc6700bd6b40e8a88", + "parentId": "6576eb4346600d80c70ba7e7", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576eb4346600d80c70ba7eb", + "_tpl": "6575c366c6700bd6b40e8a8c", + "parentId": "6576eb4346600d80c70ba7e7", + "slotId": "soft_armor_right" + }, + { + "_id": "6576eb4346600d80c70ba7ec", + "_tpl": "6575c373dc9932aed601c5ec", + "parentId": "6576eb4346600d80c70ba7e7", + "slotId": "Collar" + }, + { + "_id": "6576eb4346600d80c70ba7ed", + "_tpl": "6575c385dc9932aed601c5f0", + "parentId": "6576eb4346600d80c70ba7e7", + "slotId": "Groin" + }, + { + "_id": "6576eb4346600d80c70ba7ee", + "_tpl": "6575c390efc786cd9101a5e9", + "parentId": "6576eb4346600d80c70ba7e7", + "slotId": "Groin_back" + }, + { + "_id": "6576eb4346600d80c70ba7ef", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "6576eb4346600d80c70ba7e7", + "slotId": "Front_plate" + }, + { + "_id": "6576eb4346600d80c70ba7f0", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "6576eb4346600d80c70ba7e7", + "slotId": "Back_plate" + } + ], + "_name": "Body armor IOTV Gen4 High Mobility Standard", + "_parent": "6576eb4346600d80c70ba7e7", + "_type": "Preset" + }, + "657665e2303700411c0242b2": { + "_changeWeaponName": false, + "_encyclopedia": "5c0e541586f7747fa54205c9", + "_id": "657665e2303700411c0242b2", + "_items": [ + { + "_id": "6576e928ab23f2038109a9ed", + "_tpl": "5c0e541586f7747fa54205c9" + }, + { + "_id": "6576e928ab23f2038109a9ee", + "_tpl": "6575ea3060703324250610da", + "parentId": "6576e928ab23f2038109a9ed", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e928ab23f2038109a9ef", + "_tpl": "6575ea4cf6a13a7b7100adc4", + "parentId": "6576e928ab23f2038109a9ed", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e928ab23f2038109a9f0", + "_tpl": "6575ea5cf6a13a7b7100adc8", + "parentId": "6576e928ab23f2038109a9ed", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e928ab23f2038109a9f1", + "_tpl": "6575ea6760703324250610de", + "parentId": "6576e928ab23f2038109a9ed", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e928ab23f2038109a9f2", + "_tpl": "6575ea719c7cad336508e418", + "parentId": "6576e928ab23f2038109a9ed", + "slotId": "Collar" + }, + { + "_id": "6576e928ab23f2038109a9f3", + "_tpl": "6575ea7c60703324250610e2", + "parentId": "6576e928ab23f2038109a9ed", + "slotId": "Groin" + }, + { + "_id": "6576e928ab23f2038109a9f4", + "_tpl": "656f611f94b480b8a500c0db", + "parentId": "6576e928ab23f2038109a9ed", + "slotId": "Front_plate" + }, + { + "_id": "6576e928ab23f2038109a9f5", + "_tpl": "656efaf54772930db4031ff5", + "parentId": "6576e928ab23f2038109a9ed", + "slotId": "Back_plate" + } + ], + "_name": "Body armor 6B13 M Killa Standard", + "_parent": "6576e928ab23f2038109a9ed", + "_type": "Preset" + }, + "6576667d526e320fbe035806": { + "_changeWeaponName": false, + "_encyclopedia": "5e4ac41886f77406a511c9a8", + "_id": "6576667d526e320fbe035806", + "_items": [ + { + "_id": "6576e5b746600d80c70ba7be", + "_tpl": "5e4ac41886f77406a511c9a8" + }, + { + "_id": "6576e5b746600d80c70ba7bf", + "_tpl": "6575ef599c7cad336508e453", + "parentId": "6576e5b746600d80c70ba7be", + "slotId": "soft_armor_front" + }, + { + "_id": "6576e5b746600d80c70ba7c0", + "_tpl": "6575ef6bf6a13a7b7100b093", + "parentId": "6576e5b746600d80c70ba7be", + "slotId": "soft_armor_back" + }, + { + "_id": "6576e5b746600d80c70ba7c1", + "_tpl": "6575ef78da698a4e980677eb", + "parentId": "6576e5b746600d80c70ba7be", + "slotId": "soft_armor_left" + }, + { + "_id": "6576e5b746600d80c70ba7c2", + "_tpl": "6575ef7f9c7cad336508e457", + "parentId": "6576e5b746600d80c70ba7be", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e5b746600d80c70ba7c3", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "6576e5b746600d80c70ba7be", + "slotId": "front_plate" + }, + { + "_id": "6576e5b746600d80c70ba7c4", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "6576e5b746600d80c70ba7be", + "slotId": "back_plate" + }, + { + "_id": "6576e5b746600d80c70ba7c5", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6576e5b746600d80c70ba7be", + "slotId": "left_side_plate" + }, + { + "_id": "6576e5b746600d80c70ba7c6", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6576e5b746600d80c70ba7be", + "slotId": "right_side_plate" + } + ], + "_name": "Vest Ars Arma CPC MOD1 Standard", + "_parent": "6576e5b746600d80c70ba7be", + "_type": "Preset" + }, + "657666ca303700411c0242c6": { + "_changeWeaponName": false, + "_encyclopedia": "5e4abb5086f77406975c9342", + "_id": "657666ca303700411c0242c6", + "_items": [ + { + "_id": "6576ec9946600d80c70ba80a", + "_tpl": "5e4abb5086f77406975c9342" + }, + { + "_id": "6576ec9946600d80c70ba80b", + "_tpl": "6575e71760703324250610c3", + "parentId": "6576ec9946600d80c70ba80a", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576ec9946600d80c70ba80c", + "_tpl": "6575e72660703324250610c7", + "parentId": "6576ec9946600d80c70ba80a", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576ec9946600d80c70ba80d", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "6576ec9946600d80c70ba80a", + "slotId": "Front_plate" + }, + { + "_id": "6576ec9946600d80c70ba80e", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "6576ec9946600d80c70ba80a", + "slotId": "Back_plate" + } + ], + "_name": "Body armor LBT 6094A Slick Plate Carrier Black Standard", + "_parent": "6576ec9946600d80c70ba80a", + "_type": "Preset" + }, + "6576670586f11bca4106d36f": { + "_changeWeaponName": false, + "_encyclopedia": "6038b4b292ec1c3103795a0b", + "_id": "6576670586f11bca4106d36f", + "_items": [ + { + "_id": "6576ec7e06a990316201e802", + "_tpl": "6038b4b292ec1c3103795a0b" + }, + { + "_id": "6576ec7e06a990316201e803", + "_tpl": "6575e71760703324250610c3", + "parentId": "6576ec7e06a990316201e802", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576ec7e06a990316201e804", + "_tpl": "6575e72660703324250610c7", + "parentId": "6576ec7e06a990316201e802", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576ec7e06a990316201e805", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "6576ec7e06a990316201e802", + "slotId": "Front_plate" + }, + { + "_id": "6576ec7e06a990316201e806", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "6576ec7e06a990316201e802", + "slotId": "Back_plate" + } + ], + "_name": "Body armor LBT 6094A Slick Plate Carrier Sand Standard", + "_parent": "6576ec7e06a990316201e802", + "_type": "Preset" + }, + "65766738234b9f6e050a42d8": { + "_changeWeaponName": false, + "_encyclopedia": "6038b4ca92ec1c3103795a0d", + "_id": "65766738234b9f6e050a42d8", + "_items": [ + { + "_id": "6576ec8bfad2d1a4c00ca4bc", + "_tpl": "6038b4ca92ec1c3103795a0d" + }, + { + "_id": "6576ec8bfad2d1a4c00ca4bd", + "_tpl": "6575e71760703324250610c3", + "parentId": "6576ec8bfad2d1a4c00ca4bc", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576ec8bfad2d1a4c00ca4be", + "_tpl": "6575e72660703324250610c7", + "parentId": "6576ec8bfad2d1a4c00ca4bc", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576ec8bfad2d1a4c00ca4bf", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "6576ec8bfad2d1a4c00ca4bc", + "slotId": "Front_plate" + }, + { + "_id": "6576ec8bfad2d1a4c00ca4c0", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "6576ec8bfad2d1a4c00ca4bc", + "slotId": "Back_plate" + } + ], + "_name": "Body armor LBT 6094A Slick Plate Carrier Olive Standard", + "_parent": "6576ec8bfad2d1a4c00ca4bc", + "_type": "Preset" + }, + "6576676d86f11bca4106d37b": { + "_changeWeaponName": false, + "_encyclopedia": "5fd4c474dd870108a754b241", + "_id": "6576676d86f11bca4106d37b", + "_items": [ + { + "_id": "6576ec5406a990316201e7ff", + "_tpl": "5fd4c474dd870108a754b241" + }, + { + "_id": "6576ec5406a990316201e800", + "_tpl": "656faf0ca0dce000a2020f77", + "parentId": "6576ec5406a990316201e7ff", + "slotId": "front_plate" + }, + { + "_id": "6576ec5406a990316201e801", + "_tpl": "656faf0ca0dce000a2020f77", + "parentId": "6576ec5406a990316201e7ff", + "slotId": "back_plate" + } + ], + "_name": "Body armor 5.11 Tactical Hexgrid Plate Carrier Standard", + "_parent": "6576ec5406a990316201e7ff", + "_type": "Preset" + }, + "657667b5234b9f6e050a42e4": { + "_changeWeaponName": false, + "_encyclopedia": "609e860ebd219504d8507525", + "_id": "657667b5234b9f6e050a42e4", + "_items": [ + { + "_id": "6576e54cab23f2038109a9d9", + "_tpl": "609e860ebd219504d8507525" + }, + { + "_id": "6576e54cab23f2038109a9da", + "_tpl": "6575f5cbf6a13a7b7100b0bf", + "parentId": "6576e54cab23f2038109a9d9", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e54cab23f2038109a9db", + "_tpl": "6575f5e1da698a4e98067869", + "parentId": "6576e54cab23f2038109a9d9", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e54cab23f2038109a9dc", + "_tpl": "656fa99800d62bcd2e024088", + "parentId": "6576e54cab23f2038109a9d9", + "slotId": "Front_plate" + }, + { + "_id": "6576e54cab23f2038109a9dd", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "6576e54cab23f2038109a9d9", + "slotId": "Back_plate" + } + ], + "_name": "Vest Crye Precision AVS Tagilla Edition Standard", + "_parent": "6576e54cab23f2038109a9d9", + "_type": "Preset" + }, + "657667f686f11bca4106d383": { + "_changeWeaponName": false, + "_encyclopedia": "628cd624459354321c4b7fa2", + "_id": "657667f686f11bca4106d383", + "_items": [ + { + "_id": "6576e4a6ab23f2038109a9cf", + "_tpl": "628cd624459354321c4b7fa2" + }, + { + "_id": "6576e4a6ab23f2038109a9d0", + "_tpl": "64afdcb83efdfea28601d041", + "parentId": "6576e4a6ab23f2038109a9cf", + "slotId": "Front_plate" + }, + { + "_id": "6576e4a6ab23f2038109a9d1", + "_tpl": "64afdcb83efdfea28601d041", + "parentId": "6576e4a6ab23f2038109a9cf", + "slotId": "Back_plate" + } + ], + "_name": "Vest Tasmanian Tiger SK Standard", + "_parent": "6576e4a6ab23f2038109a9cf", + "_type": "Preset" + }, + "6576683d303700411c0242d2": { + "_changeWeaponName": false, + "_encyclopedia": "628b9784bcf6e2659e09b8a2", + "_id": "6576683d303700411c0242d2", + "_items": [ + { + "_id": "65cf51c6a644dd466f01fde7", + "_tpl": "628b9784bcf6e2659e09b8a2" + }, + { + "_id": "65cf51c6a644dd466f01fde8", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "65cf51c6a644dd466f01fde7", + "slotId": "Front_plate" + }, + { + "_id": "65cf51c6a644dd466f01fde9", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "65cf51c6a644dd466f01fde7", + "slotId": "Back_plate" + }, + { + "_id": "65cf51c6a644dd466f01fdea", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "65cf51c6a644dd466f01fde7", + "slotId": "Left_side_plate" + }, + { + "_id": "65cf51c6a644dd466f01fdeb", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "65cf51c6a644dd466f01fde7", + "slotId": "Right_side_plate" + } + ], + "_name": "Vest Precision PlateFrame Standard", + "_parent": "65cf51c6a644dd466f01fde7", + "_type": "Preset" + }, + "657668ad86f11bca4106d38b": { + "_changeWeaponName": false, + "_encyclopedia": "5b44cf1486f77431723e3d05", + "_id": "657668ad86f11bca4106d38b", + "_items": [ + { + "_id": "6576eb0d424f2c87d30c760d", + "_tpl": "5b44cf1486f77431723e3d05" + }, + { + "_id": "6576eb0d424f2c87d30c760e", + "_tpl": "6575c3b3dc9932aed601c5f4", + "parentId": "6576eb0d424f2c87d30c760d", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576eb0d424f2c87d30c760f", + "_tpl": "6575c3beefc786cd9101a5ed", + "parentId": "6576eb0d424f2c87d30c760d", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576eb0d424f2c87d30c7610", + "_tpl": "6575c3cdc6700bd6b40e8a90", + "parentId": "6576eb0d424f2c87d30c760d", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576eb0d424f2c87d30c7611", + "_tpl": "6575c3dfdc9932aed601c5f8", + "parentId": "6576eb0d424f2c87d30c760d", + "slotId": "soft_armor_right" + }, + { + "_id": "6576eb0d424f2c87d30c7612", + "_tpl": "6575c3ec52b7f8c76a05ee39", + "parentId": "6576eb0d424f2c87d30c760d", + "slotId": "Collar" + }, + { + "_id": "6576eb0d424f2c87d30c7613", + "_tpl": "6575c3fd52b7f8c76a05ee3d", + "parentId": "6576eb0d424f2c87d30c760d", + "slotId": "Shoulder_l" + }, + { + "_id": "6576eb0d424f2c87d30c7614", + "_tpl": "6575c40c52b7f8c76a05ee41", + "parentId": "6576eb0d424f2c87d30c760d", + "slotId": "Shoulder_r" + }, + { + "_id": "6576eb0d424f2c87d30c7615", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "6576eb0d424f2c87d30c760d", + "slotId": "Front_plate" + }, + { + "_id": "6576eb0d424f2c87d30c7616", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "6576eb0d424f2c87d30c760d", + "slotId": "Back_plate" + }, + { + "_id": "6576eb0d424f2c87d30c7617", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6576eb0d424f2c87d30c760d", + "slotId": "Left_side_plate" + }, + { + "_id": "6576eb0d424f2c87d30c7618", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6576eb0d424f2c87d30c760d", + "slotId": "Right_side_plate" + } + ], + "_name": "Body armor IOTV Gen4 Assault Standard", + "_parent": "6576eb0d424f2c87d30c760d", + "_type": "Preset" + }, + "65766910303700411c0242da": { + "_changeWeaponName": false, + "_encyclopedia": "5b44cd8b86f774503d30cba2", + "_id": "65766910303700411c0242da", + "_items": [ + { + "_id": "6576eb1cab23f2038109aa27", + "_tpl": "5b44cd8b86f774503d30cba2" + }, + { + "_id": "6576eb1cab23f2038109aa28", + "_tpl": "6575c2adefc786cd9101a5d9", + "parentId": "6576eb1cab23f2038109aa27", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576eb1cab23f2038109aa29", + "_tpl": "6575c2be52b7f8c76a05ee25", + "parentId": "6576eb1cab23f2038109aa27", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576eb1cab23f2038109aa2a", + "_tpl": "6575c2cd52b7f8c76a05ee29", + "parentId": "6576eb1cab23f2038109aa27", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576eb1cab23f2038109aa2b", + "_tpl": "6575c2d852b7f8c76a05ee2d", + "parentId": "6576eb1cab23f2038109aa27", + "slotId": "soft_armor_right" + }, + { + "_id": "6576eb1cab23f2038109aa2c", + "_tpl": "6575c2e4efc786cd9101a5dd", + "parentId": "6576eb1cab23f2038109aa27", + "slotId": "Collar" + }, + { + "_id": "6576eb1cab23f2038109aa2d", + "_tpl": "6575c2f7efc786cd9101a5e1", + "parentId": "6576eb1cab23f2038109aa27", + "slotId": "Shoulder_l" + }, + { + "_id": "6576eb1cab23f2038109aa2e", + "_tpl": "6575c30352b7f8c76a05ee31", + "parentId": "6576eb1cab23f2038109aa27", + "slotId": "Shoulder_r" + }, + { + "_id": "6576eb1cab23f2038109aa2f", + "_tpl": "6575c31b52b7f8c76a05ee35", + "parentId": "6576eb1cab23f2038109aa27", + "slotId": "Groin" + }, + { + "_id": "6576eb1cab23f2038109aa30", + "_tpl": "6575c326c6700bd6b40e8a80", + "parentId": "6576eb1cab23f2038109aa27", + "slotId": "Groin_back" + }, + { + "_id": "6576eb1cab23f2038109aa31", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "6576eb1cab23f2038109aa27", + "slotId": "Front_plate" + }, + { + "_id": "6576eb1cab23f2038109aa32", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "6576eb1cab23f2038109aa27", + "slotId": "Back_plate" + }, + { + "_id": "6576eb1cab23f2038109aa33", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6576eb1cab23f2038109aa27", + "slotId": "Left_side_plate" + }, + { + "_id": "6576eb1cab23f2038109aa34", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6576eb1cab23f2038109aa27", + "slotId": "Right_side_plate" + } + ], + "_name": "Body armor IOTV Gen4 Full Protection Standard", + "_parent": "6576eb1cab23f2038109aa27", + "_type": "Preset" + }, + "6576695d234b9f6e050a42f0": { + "_changeWeaponName": false, + "_encyclopedia": "5ca2151486f774244a3b8d30", + "_id": "6576695d234b9f6e050a42f0", + "_items": [ + { + "_id": "6576e976fad2d1a4c00ca47e", + "_tpl": "5ca2151486f774244a3b8d30" + }, + { + "_id": "6576e976fad2d1a4c00ca47f", + "_tpl": "6575dd3e9e27f4a85e081142", + "parentId": "6576e976fad2d1a4c00ca47e", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e976fad2d1a4c00ca480", + "_tpl": "6575dd519e27f4a85e081146", + "parentId": "6576e976fad2d1a4c00ca47e", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e976fad2d1a4c00ca481", + "_tpl": "6575dd64945bf78edd04c438", + "parentId": "6576e976fad2d1a4c00ca47e", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e976fad2d1a4c00ca482", + "_tpl": "6575dd6e9d3a0ddf660b9047", + "parentId": "6576e976fad2d1a4c00ca47e", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e976fad2d1a4c00ca483", + "_tpl": "6575dd769d3a0ddf660b904b", + "parentId": "6576e976fad2d1a4c00ca47e", + "slotId": "Collar" + }, + { + "_id": "6576e976fad2d1a4c00ca484", + "_tpl": "6575dd800546f8b1de093df6", + "parentId": "6576e976fad2d1a4c00ca47e", + "slotId": "Groin" + }, + { + "_id": "6576e976fad2d1a4c00ca485", + "_tpl": "6575dd94945bf78edd04c43c", + "parentId": "6576e976fad2d1a4c00ca47e", + "slotId": "Groin_back" + }, + { + "_id": "6576e976fad2d1a4c00ca486", + "_tpl": "65573fa5655447403702a816", + "parentId": "6576e976fad2d1a4c00ca47e", + "slotId": "Front_plate" + }, + { + "_id": "6576e976fad2d1a4c00ca487", + "_tpl": "65573fa5655447403702a816", + "parentId": "6576e976fad2d1a4c00ca47e", + "slotId": "Back_plate" + } + ], + "_name": "Body armor FORT Redut M Standard", + "_parent": "6576e976fad2d1a4c00ca47e", + "_type": "Preset" + }, + "657669c186f11bca4106d3a5": { + "_changeWeaponName": false, + "_encyclopedia": "5ca21c6986f77479963115a7", + "_id": "657669c186f11bca4106d3a5", + "_items": [ + { + "_id": "6576e959ab23f2038109a9f6", + "_tpl": "5ca21c6986f77479963115a7" + }, + { + "_id": "6576e959ab23f2038109a9f7", + "_tpl": "6575d9a79e27f4a85e08112d", + "parentId": "6576e959ab23f2038109a9f6", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e959ab23f2038109a9f8", + "_tpl": "6575d9b8945bf78edd04c427", + "parentId": "6576e959ab23f2038109a9f6", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e959ab23f2038109a9f9", + "_tpl": "6575d9c40546f8b1de093dee", + "parentId": "6576e959ab23f2038109a9f6", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e959ab23f2038109a9fa", + "_tpl": "6575d9cf0546f8b1de093df2", + "parentId": "6576e959ab23f2038109a9f6", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e959ab23f2038109a9fb", + "_tpl": "6575d9d8945bf78edd04c42b", + "parentId": "6576e959ab23f2038109a9f6", + "slotId": "Collar" + }, + { + "_id": "6576e959ab23f2038109a9fc", + "_tpl": "6575da07945bf78edd04c433", + "parentId": "6576e959ab23f2038109a9f6", + "slotId": "Shoulder_l" + }, + { + "_id": "6576e959ab23f2038109a9fd", + "_tpl": "6575da159e27f4a85e081131", + "parentId": "6576e959ab23f2038109a9f6", + "slotId": "Shoulder_r" + }, + { + "_id": "6576e959ab23f2038109a9fe", + "_tpl": "6575d9e7945bf78edd04c42f", + "parentId": "6576e959ab23f2038109a9f6", + "slotId": "Groin" + }, + { + "_id": "6576e959ab23f2038109a9ff", + "_tpl": "6575d9f816c2762fba00588d", + "parentId": "6576e959ab23f2038109a9f6", + "slotId": "Groin_back" + }, + { + "_id": "6576e959ab23f2038109aa00", + "_tpl": "65573fa5655447403702a816", + "parentId": "6576e959ab23f2038109a9f6", + "slotId": "Front_plate" + }, + { + "_id": "6576e959ab23f2038109aa01", + "_tpl": "65573fa5655447403702a816", + "parentId": "6576e959ab23f2038109a9f6", + "slotId": "Back_plate" + }, + { + "_id": "6576e959ab23f2038109aa02", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "6576e959ab23f2038109a9f6", + "slotId": "Left_side_plate" + }, + { + "_id": "6576e959ab23f2038109aa03", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "6576e959ab23f2038109a9f6", + "slotId": "Right_side_plate" + } + ], + "_name": "Body armor FORT Redut T5 Standard", + "_parent": "6576e959ab23f2038109a9f6", + "_type": "Preset" + }, + "65766a20234b9f6e050a4306": { + "_changeWeaponName": false, + "_encyclopedia": "628b9c7d45122232a872358f", + "_id": "65766a20234b9f6e050a4306", + "_items": [ + { + "_id": "6576e529fad2d1a4c00ca45f", + "_tpl": "628b9c7d45122232a872358f" + }, + { + "_id": "6576e529fad2d1a4c00ca460", + "_tpl": "6575f24ff6a13a7b7100b09e", + "parentId": "6576e529fad2d1a4c00ca45f", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576e529fad2d1a4c00ca461", + "_tpl": "6575f25ada698a4e98067836", + "parentId": "6576e529fad2d1a4c00ca45f", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576e529fad2d1a4c00ca462", + "_tpl": "6575f2649cfdfe416f0399b8", + "parentId": "6576e529fad2d1a4c00ca45f", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576e529fad2d1a4c00ca463", + "_tpl": "6575f26d9c7cad336508e480", + "parentId": "6576e529fad2d1a4c00ca45f", + "slotId": "soft_armor_right" + }, + { + "_id": "6576e529fad2d1a4c00ca464", + "_tpl": "656fa53d94b480b8a500c0e4", + "parentId": "6576e529fad2d1a4c00ca45f", + "slotId": "Front_plate" + }, + { + "_id": "6576e529fad2d1a4c00ca465", + "_tpl": "656fa53d94b480b8a500c0e4", + "parentId": "6576e529fad2d1a4c00ca45f", + "slotId": "Back_plate" + }, + { + "_id": "6576e529fad2d1a4c00ca466", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6576e529fad2d1a4c00ca45f", + "slotId": "Left_side_plate" + }, + { + "_id": "6576e529fad2d1a4c00ca467", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "6576e529fad2d1a4c00ca45f", + "slotId": "Right_side_plate" + } + ], + "_name": "Vest Crye Precision CPC Standard", + "_parent": "6576e529fad2d1a4c00ca45f", + "_type": "Preset" + }, + "65766a7b86f11bca4106d3c3": { + "_changeWeaponName": false, + "_encyclopedia": "5c0e625a86f7742d77340f62", + "_id": "65766a7b86f11bca4106d3c3", + "_items": [ + { + "_id": "6576ea1dab23f2038109aa07", + "_tpl": "5c0e625a86f7742d77340f62" + }, + { + "_id": "6576ea1dab23f2038109aa08", + "_tpl": "65764275d8537eb26a0355e9", + "parentId": "6576ea1dab23f2038109aa07", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576ea1dab23f2038109aa09", + "_tpl": "657642b0e6d5dd75f40688a5", + "parentId": "6576ea1dab23f2038109aa07", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576ea1dab23f2038109aa0a", + "_tpl": "6576434820cc24d17102b148", + "parentId": "6576ea1dab23f2038109aa07", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576ea1dab23f2038109aa0b", + "_tpl": "657643732bc38ef78e076477", + "parentId": "6576ea1dab23f2038109aa07", + "slotId": "soft_armor_right" + }, + { + "_id": "6576ea1dab23f2038109aa0c", + "_tpl": "657643a220cc24d17102b14c", + "parentId": "6576ea1dab23f2038109aa07", + "slotId": "Collar" + }, + { + "_id": "6576ea1dab23f2038109aa0d", + "_tpl": "656f63c027aed95beb08f62c", + "parentId": "6576ea1dab23f2038109aa07", + "slotId": "Front_plate" + }, + { + "_id": "6576ea1dab23f2038109aa0e", + "_tpl": "656fafe3498d1b7e3e071da4", + "parentId": "6576ea1dab23f2038109aa07", + "slotId": "Back_plate" + }, + { + "_id": "6576ea1dab23f2038109aa0f", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "6576ea1dab23f2038109aa07", + "slotId": "Left_side_plate" + }, + { + "_id": "6576ea1dab23f2038109aa10", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "6576ea1dab23f2038109aa07", + "slotId": "Right_side_plate" + } + ], + "_name": "Body armor BNTI Zhuk 6a Standard", + "_parent": "6576ea1dab23f2038109aa07", + "_type": "Preset" + }, + "65766adc234b9f6e050a431a": { + "_changeWeaponName": false, + "_encyclopedia": "545cdb794bdc2d3a198b456a", + "_id": "65766adc234b9f6e050a431a", + "_items": [ + { + "_id": "6576eba346600d80c70ba7f8", + "_tpl": "545cdb794bdc2d3a198b456a" + }, + { + "_id": "6576eba346600d80c70ba7f9", + "_tpl": "6575ce3716c2762fba0057fd", + "parentId": "6576eba346600d80c70ba7f8", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576eba346600d80c70ba7fa", + "_tpl": "6575ce45dc9932aed601c616", + "parentId": "6576eba346600d80c70ba7f8", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576eba346600d80c70ba7fb", + "_tpl": "6575ce5016c2762fba005802", + "parentId": "6576eba346600d80c70ba7f8", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576eba346600d80c70ba7fc", + "_tpl": "6575ce5befc786cd9101a671", + "parentId": "6576eba346600d80c70ba7f8", + "slotId": "soft_armor_right" + }, + { + "_id": "6576eba346600d80c70ba7fd", + "_tpl": "6575ce6f16c2762fba005806", + "parentId": "6576eba346600d80c70ba7f8", + "slotId": "Collar" + }, + { + "_id": "6576eba346600d80c70ba7fe", + "_tpl": "6575ce9db15fef3dd4051628", + "parentId": "6576eba346600d80c70ba7f8", + "slotId": "Shoulder_l" + }, + { + "_id": "6576eba346600d80c70ba7ff", + "_tpl": "6575cea8b15fef3dd405162c", + "parentId": "6576eba346600d80c70ba7f8", + "slotId": "Shoulder_r" + }, + { + "_id": "6576eba346600d80c70ba800", + "_tpl": "6575ce8bdc9932aed601c61e", + "parentId": "6576eba346600d80c70ba7f8", + "slotId": "Groin" + }, + { + "_id": "6576eba346600d80c70ba801", + "_tpl": "64afc71497cf3a403c01ff38", + "parentId": "6576eba346600d80c70ba7f8", + "slotId": "Front_plate" + }, + { + "_id": "6576eba346600d80c70ba802", + "_tpl": "64afc71497cf3a403c01ff38", + "parentId": "6576eba346600d80c70ba7f8", + "slotId": "Back_plate" + }, + { + "_id": "6576eba346600d80c70ba803", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "6576eba346600d80c70ba7f8", + "slotId": "Left_side_plate" + }, + { + "_id": "6576eba346600d80c70ba804", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "6576eba346600d80c70ba7f8", + "slotId": "Right_side_plate" + } + ], + "_name": "Body armor 6B46 6A Zabralo Sh Standard ", + "_parent": "6576eba346600d80c70ba7f8", + "_type": "Preset" + }, + "65766b46303700411c0242f8": { + "_changeWeaponName": false, + "_encyclopedia": "60a283193cb70855c43a381d", + "_id": "65766b46303700411c0242f8", + "_items": [ + { + "_id": "6576ea8e46600d80c70ba7da", + "_tpl": "60a283193cb70855c43a381d" + }, + { + "_id": "6576ea8e46600d80c70ba7db", + "_tpl": "6575d561b15fef3dd4051670", + "parentId": "6576ea8e46600d80c70ba7da", + "slotId": "Soft_armor_front" + }, + { + "_id": "6576ea8e46600d80c70ba7dc", + "_tpl": "6575d56b16c2762fba005818", + "parentId": "6576ea8e46600d80c70ba7da", + "slotId": "Soft_armor_back" + }, + { + "_id": "6576ea8e46600d80c70ba7dd", + "_tpl": "6575d57a16c2762fba00581c", + "parentId": "6576ea8e46600d80c70ba7da", + "slotId": "Soft_armor_left" + }, + { + "_id": "6576ea8e46600d80c70ba7de", + "_tpl": "6575d589b15fef3dd4051674", + "parentId": "6576ea8e46600d80c70ba7da", + "slotId": "soft_armor_right" + }, + { + "_id": "6576ea8e46600d80c70ba7df", + "_tpl": "6575d598b15fef3dd4051678", + "parentId": "6576ea8e46600d80c70ba7da", + "slotId": "Collar" + }, + { + "_id": "6576ea8e46600d80c70ba7e0", + "_tpl": "6575d5b316c2762fba005824", + "parentId": "6576ea8e46600d80c70ba7da", + "slotId": "Shoulder_l" + }, + { + "_id": "6576ea8e46600d80c70ba7e1", + "_tpl": "6575d5bd16c2762fba005828", + "parentId": "6576ea8e46600d80c70ba7da", + "slotId": "Shoulder_r" + }, + { + "_id": "6576ea8e46600d80c70ba7e2", + "_tpl": "6575d5a616c2762fba005820", + "parentId": "6576ea8e46600d80c70ba7da", + "slotId": "Groin" + }, + { + "_id": "6576ea8e46600d80c70ba7e3", + "_tpl": "656fa61e94b480b8a500c0e8", + "parentId": "6576ea8e46600d80c70ba7da", + "slotId": "Front_plate" + }, + { + "_id": "6576ea8e46600d80c70ba7e4", + "_tpl": "656fa61e94b480b8a500c0e8", + "parentId": "6576ea8e46600d80c70ba7da", + "slotId": "Back_plate" + }, + { + "_id": "6576ea8e46600d80c70ba7e5", + "_tpl": "64afdb577bb3bfe8fe03fd1d", + "parentId": "6576ea8e46600d80c70ba7da", + "slotId": "Left_side_plate" + }, + { + "_id": "6576ea8e46600d80c70ba7e6", + "_tpl": "64afdb577bb3bfe8fe03fd1d", + "parentId": "6576ea8e46600d80c70ba7da", + "slotId": "Right_side_plate" + } + ], + "_name": "Body armor NFM THOR Integrated Carrier Standard", + "_parent": "6576ea8e46600d80c70ba7da", + "_type": "Preset" + }, + "657b351d306ad0bf99008208": { + "_changeWeaponName": false, + "_encyclopedia": "5c0e746986f7741453628fe5", + "_id": "657b351d306ad0bf99008208", + "_items": [ + { + "_id": "657b351d306ad0bf9900820e", + "_tpl": "5c0e746986f7741453628fe5" + }, + { + "_id": "657b351d306ad0bf9900820f", + "_tpl": "6570df294cc0d2ab1e05ed74", + "parentId": "657b351d306ad0bf9900820e", + "slotId": "Soft_armor_front" + }, + { + "_id": "657b351d306ad0bf99008210", + "_tpl": "6570df9c615f54368b04fca9", + "parentId": "657b351d306ad0bf9900820e", + "slotId": "Soft_armor_back" + }, + { + "_id": "657b351d306ad0bf99008211", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "657b351d306ad0bf9900820e", + "slotId": "Front_plate" + }, + { + "_id": "657b351d306ad0bf99008212", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "657b351d306ad0bf9900820e", + "slotId": "Back_plate" + } + ], + "_name": "Vest WARTECH TV110 Standard", + "_parent": "657b351d306ad0bf9900820e", + "_type": "Preset" + }, + "657bc54eb588f345450a6d56": { + "_changeWeaponName": false, + "_encyclopedia": "5df8a58286f77412631087ed", + "_id": "657bc54eb588f345450a6d56", + "_items": [ + { + "_id": "657bc54eb588f345450a6d5b", + "_tpl": "5df8a58286f77412631087ed" + }, + { + "_id": "657bc54eb588f345450a6d5c", + "_tpl": "657ba096e57570b7f80a17fb", + "parentId": "657bc54eb588f345450a6d5b", + "slotId": "Helmet_top" + }, + { + "_id": "657bc54eb588f345450a6d5d", + "_tpl": "657ba145e57570b7f80a17ff", + "parentId": "657bc54eb588f345450a6d5b", + "slotId": "Helmet_back" + }, + { + "_id": "657bc54eb588f345450a6d5e", + "_tpl": "657ba18923918923cb0df568", + "parentId": "657bc54eb588f345450a6d5b", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet Shlemofon TSh 4M L Standart", + "_parent": "657bc54eb588f345450a6d5b", + "_type": "Preset" + }, + "657bc59526820ea7da04f2e8": { + "_changeWeaponName": false, + "_encyclopedia": "5ea05cf85ad9772e6624305d", + "_id": "657bc59526820ea7da04f2e8", + "_items": [ + { + "_id": "657bc59526820ea7da04f2ec", + "_tpl": "5ea05cf85ad9772e6624305d" + }, + { + "_id": "657bc59526820ea7da04f2ed", + "_tpl": "657ba2eef58ba5a625010798", + "parentId": "657bc59526820ea7da04f2ec", + "slotId": "Helmet_top" + }, + { + "_id": "657bc59526820ea7da04f2ee", + "_tpl": "657ba34b9ba22f103e08139b", + "parentId": "657bc59526820ea7da04f2ec", + "slotId": "Helmet_back" + } + ], + "_name": "Helmet Tak Kek Fast MT Replika Standart", + "_parent": "657bc59526820ea7da04f2ec", + "_type": "Preset" + }, + "657bc5cbaab96fccee08bea8": { + "_changeWeaponName": false, + "_encyclopedia": "59e7711e86f7746cae05fbe1", + "_id": "657bc5cbaab96fccee08bea8", + "_items": [ + { + "_id": "657bc5cbaab96fccee08bead", + "_tpl": "59e7711e86f7746cae05fbe1" + }, + { + "_id": "657bc5cbaab96fccee08beae", + "_tpl": "657ba50c23918923cb0df56c", + "parentId": "657bc5cbaab96fccee08bead", + "slotId": "Helmet_top" + }, + { + "_id": "657bc5cbaab96fccee08beaf", + "_tpl": "657ba5439ba22f103e08139f", + "parentId": "657bc5cbaab96fccee08bead", + "slotId": "Helmet_back" + }, + { + "_id": "657bc5cbaab96fccee08beb0", + "_tpl": "657ba57af58ba5a62501079e", + "parentId": "657bc5cbaab96fccee08bead", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet Kolpak 1S Standart", + "_parent": "657bc5cbaab96fccee08bead", + "_type": "Preset" + }, + "657bc600b588f345450a6d62": { + "_changeWeaponName": false, + "_encyclopedia": "5c0d2727d174af02a012cf58", + "_id": "657bc600b588f345450a6d62", + "_items": [ + { + "_id": "6583fdfb76287649ed0a5d1c", + "_tpl": "5c0d2727d174af02a012cf58" + }, + { + "_id": "6583fdfb76287649ed0a5d1d", + "_tpl": "657ba6c3c6f689d3a205b857", + "parentId": "6583fdfb76287649ed0a5d1c", + "slotId": "Helmet_top" + }, + { + "_id": "6583fdfb76287649ed0a5d1e", + "_tpl": "657ba737b7e9ca9a02045bf6", + "parentId": "6583fdfb76287649ed0a5d1c", + "slotId": "Helmet_back" + }, + { + "_id": "6583fdfb76287649ed0a5d1f", + "_tpl": "658188edf026a90c1708c827", + "parentId": "6583fdfb76287649ed0a5d1c", + "slotId": "helmet_eyes" + }, + { + "_id": "6583fdfb76287649ed0a5d20", + "_tpl": "657ba75e23918923cb0df573", + "parentId": "6583fdfb76287649ed0a5d1c", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet PSh 97 Djeta Standart", + "_parent": "6583fdfb76287649ed0a5d1c", + "_type": "Preset" + }, + "657bc644bbd440df880b2de2": { + "_changeWeaponName": false, + "_encyclopedia": "5c08f87c0db8340019124324", + "_id": "657bc644bbd440df880b2de2", + "_items": [ + { + "_id": "6584051836c26459480dcc3e", + "_tpl": "5c08f87c0db8340019124324" + }, + { + "_id": "6584051836c26459480dcc3f", + "_tpl": "657ba85ecfcf63c951052da7", + "parentId": "6584051836c26459480dcc3e", + "slotId": "Helmet_top" + }, + { + "_id": "6584051836c26459480dcc40", + "_tpl": "657ba8bccfcf63c951052dab", + "parentId": "6584051836c26459480dcc3e", + "slotId": "Helmet_back" + }, + { + "_id": "6584051836c26459480dcc41", + "_tpl": "65818e4e566d2de69901b1b1", + "parentId": "6584051836c26459480dcc3e", + "slotId": "helmet_eyes" + }, + { + "_id": "6584051836c26459480dcc42", + "_tpl": "657ba8eab7e9ca9a02045bfd", + "parentId": "6584051836c26459480dcc3e", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet Firefighter ShPM Standart", + "_parent": "6584051836c26459480dcc3e", + "_type": "Preset" + }, + "657bc68d26820ea7da04f2f0": { + "_changeWeaponName": false, + "_encyclopedia": "5a7c4850e899ef00150be885", + "_id": "657bc68d26820ea7da04f2f0", + "_items": [ + { + "_id": "657bc68d26820ea7da04f2f5", + "_tpl": "5a7c4850e899ef00150be885" + }, + { + "_id": "657bc68d26820ea7da04f2f6", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "657bc68d26820ea7da04f2f5", + "slotId": "Helmet_top" + }, + { + "_id": "657bc68d26820ea7da04f2f7", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "657bc68d26820ea7da04f2f5", + "slotId": "Helmet_back" + }, + { + "_id": "657bc68d26820ea7da04f2f8", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "657bc68d26820ea7da04f2f5", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet Ratnik BSh 6b47 Default Standart", + "_parent": "657bc68d26820ea7da04f2f5", + "_type": "Preset" + }, + "657bc6ceaab96fccee08beb2": { + "_changeWeaponName": false, + "_encyclopedia": "5aa7cfc0e5b5b00015693143", + "_id": "657bc6ceaab96fccee08beb2", + "_items": [ + { + "_id": "657bc6ceaab96fccee08beb7", + "_tpl": "5aa7cfc0e5b5b00015693143" + }, + { + "_id": "657bc6ceaab96fccee08beb8", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "657bc6ceaab96fccee08beb7", + "slotId": "Helmet_top" + }, + { + "_id": "657bc6ceaab96fccee08beb9", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "657bc6ceaab96fccee08beb7", + "slotId": "Helmet_back" + }, + { + "_id": "657bc6ceaab96fccee08beba", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "657bc6ceaab96fccee08beb7", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet Ratnik BSh 6b47 Flora digital Standart", + "_parent": "657bc6ceaab96fccee08beb7", + "_type": "Preset" + }, + "657bc706b588f345450a6d6c": { + "_changeWeaponName": false, + "_encyclopedia": "5645bc214bdc2d363b8b4571", + "_id": "657bc706b588f345450a6d6c", + "_items": [ + { + "_id": "657bc706b588f345450a6d71", + "_tpl": "5645bc214bdc2d363b8b4571" + }, + { + "_id": "657bc706b588f345450a6d72", + "_tpl": "657bae18b7e9ca9a02045c0a", + "parentId": "657bc706b588f345450a6d71", + "slotId": "Helmet_top" + }, + { + "_id": "657bc706b588f345450a6d73", + "_tpl": "657baeaacfcf63c951052db3", + "parentId": "657bc706b588f345450a6d71", + "slotId": "Helmet_back" + }, + { + "_id": "657bc706b588f345450a6d74", + "_tpl": "657baecbc6f689d3a205b863", + "parentId": "657bc706b588f345450a6d71", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet Fort Kiver M Standart", + "_parent": "657bc706b588f345450a6d71", + "_type": "Preset" + }, + "657bc742bbd440df880b2dec": { + "_changeWeaponName": false, + "_encyclopedia": "5aa7d193e5b5b000171d063f", + "_id": "657bc742bbd440df880b2dec", + "_items": [ + { + "_id": "657bc742bbd440df880b2df1", + "_tpl": "5aa7d193e5b5b000171d063f" + }, + { + "_id": "657bc742bbd440df880b2df2", + "_tpl": "657bb70486c7f9ef7a009936", + "parentId": "657bc742bbd440df880b2df1", + "slotId": "Helmet_top" + }, + { + "_id": "657bc742bbd440df880b2df3", + "_tpl": "657bb79ba1c61ee0c303631a", + "parentId": "657bc742bbd440df880b2df1", + "slotId": "Helmet_back" + }, + { + "_id": "657bc742bbd440df880b2df4", + "_tpl": "657bb7d7b30eca9763051176", + "parentId": "657bc742bbd440df880b2df1", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet SSSh 94 Sfera S Standart", + "_parent": "657bc742bbd440df880b2df1", + "_type": "Preset" + }, + "657bc772aab96fccee08bebc": { + "_changeWeaponName": false, + "_encyclopedia": "5b432d215acfc4771e1c6624", + "_id": "657bc772aab96fccee08bebc", + "_items": [ + { + "_id": "657bc772aab96fccee08bec0", + "_tpl": "5b432d215acfc4771e1c6624" + }, + { + "_id": "657bc772aab96fccee08bec1", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "657bc772aab96fccee08bec0", + "slotId": "Helmet_top" + }, + { + "_id": "657bc772aab96fccee08bec2", + "_tpl": "657bb99db30eca976305117f", + "parentId": "657bc772aab96fccee08bec0", + "slotId": "Helmet_back" + } + ], + "_name": "Helmet LShZ Standart", + "_parent": "657bc772aab96fccee08bec0", + "_type": "Preset" + }, + "657bc7a5bbd440df880b2df6": { + "_changeWeaponName": false, + "_encyclopedia": "5f60b34a41e30a4ab12a6947", + "_id": "657bc7a5bbd440df880b2df6", + "_items": [ + { + "_id": "657bc7a5bbd440df880b2dfa", + "_tpl": "5f60b34a41e30a4ab12a6947" + }, + { + "_id": "657bc7a5bbd440df880b2dfb", + "_tpl": "657bbad7a1c61ee0c3036323", + "parentId": "657bc7a5bbd440df880b2dfa", + "slotId": "Helmet_top" + }, + { + "_id": "657bc7a5bbd440df880b2dfc", + "_tpl": "657bbb31b30eca9763051183", + "parentId": "657bc7a5bbd440df880b2dfa", + "slotId": "Helmet_back" + } + ], + "_name": "Helmet Galvion Caiman Standart", + "_parent": "657bc7a5bbd440df880b2dfa", + "_type": "Preset" + }, + "657bc7d6aab96fccee08bec4": { + "_changeWeaponName": false, + "_encyclopedia": "61bca7cda0eae612383adf57", + "_id": "657bc7d6aab96fccee08bec4", + "_items": [ + { + "_id": "657bc7d6aab96fccee08bec8", + "_tpl": "61bca7cda0eae612383adf57" + }, + { + "_id": "657bc7d6aab96fccee08bec9", + "_tpl": "657bbcc9a1c61ee0c3036327", + "parentId": "657bc7d6aab96fccee08bec8", + "slotId": "Helmet_top" + }, + { + "_id": "657bc7d6aab96fccee08beca", + "_tpl": "657bbcffbbd440df880b2dd5", + "parentId": "657bc7d6aab96fccee08bec8", + "slotId": "Helmet_back" + } + ], + "_name": "Helmet NFM HJELM Standart", + "_parent": "657bc7d6aab96fccee08bec8", + "_type": "Preset" + }, + "657bc821aab96fccee08becc": { + "_changeWeaponName": false, + "_encyclopedia": "5c0e874186f7745dc7616606", + "_id": "657bc821aab96fccee08becc", + "_items": [ + { + "_id": "657bc821aab96fccee08bed2", + "_tpl": "5c0e874186f7745dc7616606" + }, + { + "_id": "657bc821aab96fccee08bed3", + "_tpl": "6571133d22996eaf11088200", + "parentId": "657bc821aab96fccee08bed2", + "slotId": "Helmet_top" + }, + { + "_id": "657bc821aab96fccee08bed4", + "_tpl": "6571138e818110db4600aa71", + "parentId": "657bc821aab96fccee08bed2", + "slotId": "Helmet_back" + }, + { + "_id": "657bc821aab96fccee08bed5", + "_tpl": "657112fa818110db4600aa6b", + "parentId": "657bc821aab96fccee08bed2", + "slotId": "Helmet_ears" + }, + { + "_id": "657bc821aab96fccee08bed6", + "_tpl": "5c0e842486f77443a74d2976", + "parentId": "657bc821aab96fccee08bed2", + "slotId": "mod_equipment" + } + ], + "_name": "Helmet Maska 1 Sha Killa Standard", + "_parent": "657bc821aab96fccee08bed2", + "_type": "Preset" + }, + "657bc861b588f345450a6d76": { + "_changeWeaponName": false, + "_encyclopedia": "5f60c74e3b85f6263c145586", + "_id": "657bc861b588f345450a6d76", + "_items": [ + { + "_id": "657bc861b588f345450a6d7b", + "_tpl": "5f60c74e3b85f6263c145586" + }, + { + "_id": "657bc861b588f345450a6d7c", + "_tpl": "657bc285aab96fccee08bea3", + "parentId": "657bc861b588f345450a6d7b", + "slotId": "Helmet_top" + }, + { + "_id": "657bc861b588f345450a6d7d", + "_tpl": "657bc2c5a1c61ee0c3036333", + "parentId": "657bc861b588f345450a6d7b", + "slotId": "Helmet_back" + }, + { + "_id": "657bc861b588f345450a6d7e", + "_tpl": "657bc2e7b30eca976305118d", + "parentId": "657bc861b588f345450a6d7b", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet Rys T Standard", + "_parent": "657bc861b588f345450a6d7b", + "_type": "Preset" + }, + "657bc88ebbd440df880b2dfe": { + "_changeWeaponName": false, + "_encyclopedia": "5aa7e276e5b5b000171d0647", + "_id": "657bc88ebbd440df880b2dfe", + "_items": [ + { + "_id": "657bc88ebbd440df880b2e03", + "_tpl": "5aa7e276e5b5b000171d0647" + }, + { + "_id": "657bc88ebbd440df880b2e04", + "_tpl": "657bc06daab96fccee08be9b", + "parentId": "657bc88ebbd440df880b2e03", + "slotId": "Helmet_top" + }, + { + "_id": "657bc88ebbd440df880b2e05", + "_tpl": "657bc0d8a1c61ee0c303632f", + "parentId": "657bc88ebbd440df880b2e03", + "slotId": "Helmet_back" + }, + { + "_id": "657bc88ebbd440df880b2e06", + "_tpl": "657bc107aab96fccee08be9f", + "parentId": "657bc88ebbd440df880b2e03", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet Altin Standart", + "_parent": "657bc88ebbd440df880b2e03", + "_type": "Preset" + }, + "657bc8c926820ea7da04f2fa": { + "_changeWeaponName": false, + "_encyclopedia": "5ca20ee186f774799474abc2", + "_id": "657bc8c926820ea7da04f2fa", + "_items": [ + { + "_id": "657bc8c926820ea7da04f2ff", + "_tpl": "5ca20ee186f774799474abc2" + }, + { + "_id": "657bc8c926820ea7da04f300", + "_tpl": "657bbe73a1c61ee0c303632b", + "parentId": "657bc8c926820ea7da04f2ff", + "slotId": "Helmet_top" + }, + { + "_id": "657bc8c926820ea7da04f301", + "_tpl": "657bbed0aab96fccee08be96", + "parentId": "657bc8c926820ea7da04f2ff", + "slotId": "Helmet_back" + }, + { + "_id": "657bc8c926820ea7da04f302", + "_tpl": "657bbefeb30eca9763051189", + "parentId": "657bc8c926820ea7da04f2ff", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet LShZ 5 Vulkan 5 Standart", + "_parent": "657bc8c926820ea7da04f2ff", + "_type": "Preset" + }, + "657eb19b7ba4217c5e65b689": { + "_changeWeaponName": false, + "_encyclopedia": "644674a13d52156624001fbc", + "_id": "657eb19b7ba4217c5e65b689", + "_items": [ + { + "_id": "657eb19b7ba4217c5e65b68a", + "_tpl": "644674a13d52156624001fbc", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Foldable": { + "Folded": false + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "657eb19b7ba4217c5e65b68b", + "_tpl": "6450ec2e7da7133e5a09ca96", + "parentId": "657eb19b7ba4217c5e65b68a", + "slotId": "mod_magazine" + }, + { + "_id": "657eb19b7ba4217c5e65b68c", + "_tpl": "6450f21a3d52156624001fcf", + "parentId": "657eb19b7ba4217c5e65b68a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "657eb19b7ba4217c5e65b68d", + "_tpl": "6451167ad4928d46d30be3fd", + "parentId": "657eb19b7ba4217c5e65b68a", + "slotId": "mod_stock_000" + }, + { + "_id": "657eb19b7ba4217c5e65b68e", + "_tpl": "645122f6d4928d46d30be3ff", + "parentId": "657eb19b7ba4217c5e65b68a", + "slotId": "mod_barrel" + }, + { + "_id": "657eb19b7ba4217c5e65b68f", + "_tpl": "64527a263d52156624001fd7", + "parentId": "657eb19b7ba4217c5e65b68e", + "slotId": "mod_muzzle" + }, + { + "_id": "657eb19b7ba4217c5e65b690", + "_tpl": "644675573d52156624001fc9", + "parentId": "657eb19b7ba4217c5e65b68e", + "slotId": "mod_handguard" + } + ], + "_name": "9A91_default", + "_parent": "657eb19b7ba4217c5e65b68a", + "_type": "Preset" + }, + "657eb1c4aebd1b6d254bf6d5": { + "_changeWeaponName": true, + "_id": "657eb1c4aebd1b6d254bf6d5", + "_items": [ + { + "_id": "657eb2562ce80354b8259891", + "_tpl": "644674a13d52156624001fbc", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "657eb2562ce80354b8259892", + "_tpl": "6450ec2e7da7133e5a09ca96", + "parentId": "657eb2562ce80354b8259891", + "slotId": "mod_magazine" + }, + { + "_id": "657eb2562ce80354b8259893", + "_tpl": "6450f21a3d52156624001fcf", + "parentId": "657eb2562ce80354b8259891", + "slotId": "mod_pistol_grip" + }, + { + "_id": "657eb2562ce80354b8259894", + "_tpl": "6451167ad4928d46d30be3fd", + "parentId": "657eb2562ce80354b8259891", + "slotId": "mod_stock_000" + }, + { + "_id": "657eb2562ce80354b8259895", + "_tpl": "6544d4187c5457729210d277", + "parentId": "657eb2562ce80354b8259891", + "slotId": "mod_scope" + }, + { + "_id": "657eb2562ce80354b8259896", + "_tpl": "645122f6d4928d46d30be3ff", + "parentId": "657eb2562ce80354b8259891", + "slotId": "mod_barrel" + }, + { + "_id": "657eb2562ce80354b8259897", + "_tpl": "64527a3a7da7133e5a09ca99", + "parentId": "657eb2562ce80354b8259896", + "slotId": "mod_muzzle" + }, + { + "_id": "657eb2562ce80354b8259898", + "_tpl": "57a3459f245977764a01f703", + "parentId": "657eb2562ce80354b8259897", + "slotId": "mod_mount" + }, + { + "_id": "657eb2562ce80354b8259899", + "_tpl": "646f6322f43d0c5d62063715", + "parentId": "657eb2562ce80354b8259898", + "slotId": "mod_tactical" + }, + { + "_id": "657eb2562ce80354b825989a", + "_tpl": "646f62fee779812413011ab7", + "parentId": "657eb2562ce80354b8259899", + "slotId": "mod_tactical" + }, + { + "_id": "657eb2562ce80354b825989b", + "_tpl": "644675573d52156624001fc9", + "parentId": "657eb2562ce80354b8259896", + "slotId": "mod_handguard" + } + ], + "_name": "9A91_tactical", + "_parent": "657eb2562ce80354b8259891", + "_type": "Preset" + }, + "657eb1fa2ce80354b8259889": { + "_changeWeaponName": false, + "_encyclopedia": "645e0c6b3b381ede770e1cc9", + "_id": "657eb1fa2ce80354b8259889", + "_items": [ + { + "_id": "657eb24cc98bee241a0cc619", + "_tpl": "645e0c6b3b381ede770e1cc9", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "657eb24cc98bee241a0cc61a", + "_tpl": "6450ec2e7da7133e5a09ca96", + "parentId": "657eb24cc98bee241a0cc619", + "slotId": "mod_magazine" + }, + { + "_id": "657eb24cc98bee241a0cc61b", + "_tpl": "6452519e3d52156624001fd5", + "parentId": "657eb24cc98bee241a0cc619", + "slotId": "mod_stock" + }, + { + "_id": "657eb24cc98bee241a0cc61c", + "_tpl": "645123013d52156624001fd1", + "parentId": "657eb24cc98bee241a0cc619", + "slotId": "mod_barrel" + }, + { + "_id": "657eb24cc98bee241a0cc61d", + "_tpl": "64527a263d52156624001fd7", + "parentId": "657eb24cc98bee241a0cc61c", + "slotId": "mod_muzzle" + }, + { + "_id": "657eb24cc98bee241a0cc61e", + "_tpl": "6448f2f6d4928d46d30be3f6", + "parentId": "657eb24cc98bee241a0cc61c", + "slotId": "mod_handguard" + } + ], + "_name": "VSK94_default", + "_parent": "657eb24cc98bee241a0cc619", + "_type": "Preset" + }, + "657eb23b7ba4217c5e65b692": { + "_changeWeaponName": true, + "_id": "657eb23b7ba4217c5e65b692", + "_items": [ + { + "_id": "657eb261896bd1647e75b389", + "_tpl": "645e0c6b3b381ede770e1cc9", + "upd": { + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "657eb261896bd1647e75b38a", + "_tpl": "6450ec2e7da7133e5a09ca96", + "parentId": "657eb261896bd1647e75b389", + "slotId": "mod_magazine" + }, + { + "_id": "657eb261896bd1647e75b38b", + "_tpl": "6452519e3d52156624001fd5", + "parentId": "657eb261896bd1647e75b389", + "slotId": "mod_stock" + }, + { + "_id": "657eb261896bd1647e75b38c", + "_tpl": "618a5d5852ecee1505530b2a", + "parentId": "657eb261896bd1647e75b389", + "slotId": "mod_scope" + }, + { + "_id": "657eb261896bd1647e75b38d", + "_tpl": "645123013d52156624001fd1", + "parentId": "657eb261896bd1647e75b389", + "slotId": "mod_barrel" + }, + { + "_id": "657eb261896bd1647e75b38e", + "_tpl": "64527a263d52156624001fd7", + "parentId": "657eb261896bd1647e75b38d", + "slotId": "mod_muzzle" + }, + { + "_id": "657eb261896bd1647e75b38f", + "_tpl": "6448f2f6d4928d46d30be3f6", + "parentId": "657eb261896bd1647e75b38d", + "slotId": "mod_handguard" + } + ], + "_name": "VSK94_tactical", + "_parent": "657eb261896bd1647e75b389", + "_type": "Preset" + }, + "657eb281b0bc0f28b178311e": { + "_changeWeaponName": false, + "_encyclopedia": "6513ef33e06849f06c0957ca", + "_id": "657eb281b0bc0f28b178311e", + "_items": [ + { + "_id": "657eb281b0bc0f28b178311f", + "_tpl": "6513ef33e06849f06c0957ca", + "upd": { + "FireMode": { + "FireMode": "fullauto" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "657eb281b0bc0f28b1783120", + "_tpl": "6513f0a194c72326990a3868", + "parentId": "657eb281b0bc0f28b178311f", + "slotId": "mod_magazine" + }, + { + "_id": "657eb281b0bc0f28b1783121", + "_tpl": "6513f1798cb24472490ee331", + "parentId": "657eb281b0bc0f28b178311f", + "slotId": "mod_stock" + }, + { + "_id": "657eb281b0bc0f28b1783122", + "_tpl": "6513f13a8cb24472490ee32f", + "parentId": "657eb281b0bc0f28b1783121", + "slotId": "mod_pistolgrip" + }, + { + "_id": "657eb281b0bc0f28b1783123", + "_tpl": "6513eff1e06849f06c0957d4", + "parentId": "657eb281b0bc0f28b178311f", + "slotId": "mod_barrel" + }, + { + "_id": "657eb281b0bc0f28b1783124", + "_tpl": "6513f037e06849f06c0957d7", + "parentId": "657eb281b0bc0f28b1783123", + "slotId": "mod_bipod" + }, + { + "_id": "657eb281b0bc0f28b1783125", + "_tpl": "6513f0f5e63f29908d0ffab8", + "parentId": "657eb281b0bc0f28b1783123", + "slotId": "mod_muzzle" + }, + { + "_id": "657eb281b0bc0f28b1783126", + "_tpl": "6513f05a94c72326990a3866", + "parentId": "657eb281b0bc0f28b178311f", + "slotId": "mod_handguard" + }, + { + "_id": "657eb281b0bc0f28b1783127", + "_tpl": "6513f153e63f29908d0ffaba", + "parentId": "657eb281b0bc0f28b178311f", + "slotId": "mod_sight_rear" + } + ], + "_name": "rpd_default", + "_parent": "657eb281b0bc0f28b178311f", + "_type": "Preset" + }, + "657eb2b246a703073a5b91e8": { + "_changeWeaponName": true, + "_id": "657eb2b246a703073a5b91e8", + "_items": [ + { + "_id": "657eb2b246a703073a5b91e9", + "_tpl": "6513ef33e06849f06c0957ca", + "upd": { + "FireMode": { + "FireMode": "fullauto" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "657eb2b246a703073a5b91ea", + "_tpl": "6513f0a194c72326990a3868", + "parentId": "657eb2b246a703073a5b91e9", + "slotId": "mod_magazine" + }, + { + "_id": "657eb2b246a703073a5b91eb", + "_tpl": "6513f1798cb24472490ee331", + "parentId": "657eb2b246a703073a5b91e9", + "slotId": "mod_stock" + }, + { + "_id": "657eb2b246a703073a5b91ec", + "_tpl": "6513f13a8cb24472490ee32f", + "parentId": "657eb2b246a703073a5b91eb", + "slotId": "mod_pistolgrip" + }, + { + "_id": "657eb2b246a703073a5b91ed", + "_tpl": "65266fd43341ed9aa903dd56", + "parentId": "657eb2b246a703073a5b91e9", + "slotId": "mod_barrel" + }, + { + "_id": "657eb2b246a703073a5b91ee", + "_tpl": "6513f05a94c72326990a3866", + "parentId": "657eb2b246a703073a5b91e9", + "slotId": "mod_handguard" + }, + { + "_id": "657eb2b246a703073a5b91ef", + "_tpl": "6513f153e63f29908d0ffaba", + "parentId": "657eb2b246a703073a5b91e9", + "slotId": "mod_sight_rear" + } + ], + "_name": "rpd_short", + "_parent": "657eb2b246a703073a5b91e9", + "_type": "Preset" + }, + "657eb30326f0eb0718056204": { + "_changeWeaponName": false, + "_encyclopedia": "65268d8ecb944ff1e90ea385", + "_id": "657eb30326f0eb0718056204", + "_items": [ + { + "_id": "657eb30326f0eb0718056205", + "_tpl": "65268d8ecb944ff1e90ea385", + "upd": { + "FireMode": { + "FireMode": "fullauto" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "657eb30326f0eb0718056206", + "_tpl": "6513f0a194c72326990a3868", + "parentId": "657eb30326f0eb0718056205", + "slotId": "mod_magazine" + }, + { + "_id": "657eb30326f0eb0718056207", + "_tpl": "6513f1798cb24472490ee331", + "parentId": "657eb30326f0eb0718056205", + "slotId": "mod_stock" + }, + { + "_id": "657eb30326f0eb0718056208", + "_tpl": "6513f13a8cb24472490ee32f", + "parentId": "657eb30326f0eb0718056207", + "slotId": "mod_pistolgrip" + }, + { + "_id": "657eb30326f0eb0718056209", + "_tpl": "6513eff1e06849f06c0957d4", + "parentId": "657eb30326f0eb0718056205", + "slotId": "mod_barrel" + }, + { + "_id": "657eb30326f0eb071805620a", + "_tpl": "6513f037e06849f06c0957d7", + "parentId": "657eb30326f0eb0718056209", + "slotId": "mod_bipod" + }, + { + "_id": "657eb30326f0eb071805620b", + "_tpl": "6513f0f5e63f29908d0ffab8", + "parentId": "657eb30326f0eb0718056209", + "slotId": "mod_muzzle" + }, + { + "_id": "657eb30326f0eb071805620c", + "_tpl": "6513f05a94c72326990a3866", + "parentId": "657eb30326f0eb0718056205", + "slotId": "mod_handguard" + }, + { + "_id": "657eb30326f0eb071805620d", + "_tpl": "6513f153e63f29908d0ffaba", + "parentId": "657eb30326f0eb0718056205", + "slotId": "mod_sight_rear" + } + ], + "_name": "rpdn_default", + "_parent": "657eb30326f0eb0718056205", + "_type": "Preset" + }, + "657eb3773271d8578610fe28": { + "_changeWeaponName": false, + "_encyclopedia": "65290f395ae2ae97b80fdf2d", + "_id": "657eb3773271d8578610fe28", + "_items": [ + { + "_id": "657eb3773271d8578610fe29", + "_tpl": "65290f395ae2ae97b80fdf2d", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "657eb3773271d8578610fe2a", + "_tpl": "652911675ae2ae97b80fdf3c", + "parentId": "657eb3773271d8578610fe29", + "slotId": "mod_pistol_grip" + }, + { + "_id": "657eb3773271d8578610fe2b", + "_tpl": "65293c38fc460e50a509cb25", + "parentId": "657eb3773271d8578610fe29", + "slotId": "mod_magazine" + }, + { + "_id": "657eb3773271d8578610fe2c", + "_tpl": "6529119424cbe3c74a05e5bb", + "parentId": "657eb3773271d8578610fe29", + "slotId": "mod_reciever" + }, + { + "_id": "657eb3773271d8578610fe2d", + "_tpl": "6567e751a715f85433025998", + "parentId": "657eb3773271d8578610fe2c", + "slotId": "mod_scope" + }, + { + "_id": "657eb3773271d8578610fe2e", + "_tpl": "6567e7681265c8a131069b0f", + "parentId": "657eb3773271d8578610fe2d", + "slotId": "mod_scope" + }, + { + "_id": "657eb3773271d8578610fe2f", + "_tpl": "652910565ae2ae97b80fdf35", + "parentId": "657eb3773271d8578610fe2c", + "slotId": "mod_barrel" + }, + { + "_id": "657eb3773271d8578610fe30", + "_tpl": "6529113b5ae2ae97b80fdf39", + "parentId": "657eb3773271d8578610fe2f", + "slotId": "mod_muzzle" + }, + { + "_id": "657eb3773271d8578610fe31", + "_tpl": "652911e650dc782999054b9d", + "parentId": "657eb3773271d8578610fe30", + "slotId": "mod_muzzle" + }, + { + "_id": "657eb3773271d8578610fe32", + "_tpl": "652910bc24cbe3c74a05e5b9", + "parentId": "657eb3773271d8578610fe2f", + "slotId": "mod_gas_block" + }, + { + "_id": "657eb3773271d8578610fe33", + "_tpl": "652910ef50dc782999054b97", + "parentId": "657eb3773271d8578610fe2c", + "slotId": "mod_handguard" + }, + { + "_id": "657eb3773271d8578610fe34", + "_tpl": "6529348224cbe3c74a05e5c4", + "parentId": "657eb3773271d8578610fe29", + "slotId": "mod_stock_000" + }, + { + "_id": "657eb3773271d8578610fe35", + "_tpl": "6529366450dc782999054ba0", + "parentId": "657eb3773271d8578610fe34", + "slotId": "mod_stock" + }, + { + "_id": "657eb3773271d8578610fe36", + "_tpl": "6529370c405a5f51dd023db8", + "parentId": "657eb3773271d8578610fe35", + "slotId": "mod_stock_000" + }, + { + "_id": "657eb3773271d8578610fe37", + "_tpl": "6529109524cbe3c74a05e5b7", + "parentId": "657eb3773271d8578610fe29", + "slotId": "mod_charge" + } + ], + "_name": "sig_mcx_spear_default", + "_parent": "657eb3773271d8578610fe29", + "_type": "Preset" + }, + "657eb391aebd1b6d254bf6e2": { + "_changeWeaponName": true, + "_id": "657eb391aebd1b6d254bf6e2", + "_items": [ + { + "_id": "657eb391aebd1b6d254bf6e3", + "_tpl": "65290f395ae2ae97b80fdf2d", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "657eb391aebd1b6d254bf6e4", + "_tpl": "652911675ae2ae97b80fdf3c", + "parentId": "657eb391aebd1b6d254bf6e3", + "slotId": "mod_pistol_grip" + }, + { + "_id": "657eb391aebd1b6d254bf6e5", + "_tpl": "65293c7a17e14363030ad308", + "parentId": "657eb391aebd1b6d254bf6e3", + "slotId": "mod_magazine" + }, + { + "_id": "657eb391aebd1b6d254bf6e6", + "_tpl": "6529119424cbe3c74a05e5bb", + "parentId": "657eb391aebd1b6d254bf6e3", + "slotId": "mod_reciever" + }, + { + "_id": "657eb391aebd1b6d254bf6e7", + "_tpl": "652910565ae2ae97b80fdf35", + "parentId": "657eb391aebd1b6d254bf6e6", + "slotId": "mod_barrel" + }, + { + "_id": "657eb391aebd1b6d254bf6e8", + "_tpl": "6529113b5ae2ae97b80fdf39", + "parentId": "657eb391aebd1b6d254bf6e7", + "slotId": "mod_muzzle" + }, + { + "_id": "657eb391aebd1b6d254bf6e9", + "_tpl": "652910bc24cbe3c74a05e5b9", + "parentId": "657eb391aebd1b6d254bf6e7", + "slotId": "mod_gas_block" + }, + { + "_id": "657eb391aebd1b6d254bf6ea", + "_tpl": "652910ef50dc782999054b97", + "parentId": "657eb391aebd1b6d254bf6e6", + "slotId": "mod_handguard" + }, + { + "_id": "657eb391aebd1b6d254bf6eb", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "657eb391aebd1b6d254bf6ea", + "slotId": "mod_mount_000" + }, + { + "_id": "657eb391aebd1b6d254bf6ec", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "657eb391aebd1b6d254bf6ea", + "slotId": "mod_mount_001" + }, + { + "_id": "657eb391aebd1b6d254bf6ed", + "_tpl": "5c18b90d2e2216152142466b", + "parentId": "657eb391aebd1b6d254bf6ea", + "slotId": "mod_sight_front" + }, + { + "_id": "657eb391aebd1b6d254bf6ee", + "_tpl": "651a8e529829226ceb67c319", + "parentId": "657eb391aebd1b6d254bf6ea", + "slotId": "mod_foregrip" + }, + { + "_id": "657eb391aebd1b6d254bf6ef", + "_tpl": "5c18b9192e2216398b5a8104", + "parentId": "657eb391aebd1b6d254bf6e6", + "slotId": "mod_sight_rear" + }, + { + "_id": "657eb391aebd1b6d254bf6f0", + "_tpl": "5c5db6f82e2216003a0fe914", + "parentId": "657eb391aebd1b6d254bf6e3", + "slotId": "mod_stock_000" + }, + { + "_id": "657eb391aebd1b6d254bf6f1", + "_tpl": "6529109524cbe3c74a05e5b7", + "parentId": "657eb391aebd1b6d254bf6e3", + "slotId": "mod_charge" + } + ], + "_name": "sig_mcx_spear_cqb", + "_parent": "657eb391aebd1b6d254bf6e3", + "_type": "Preset" + }, + "657eb3ef7ba4217c5e65b6a5": { + "_changeWeaponName": true, + "_id": "657eb3ef7ba4217c5e65b6a5", + "_items": [ + { + "_id": "657eb3ef7ba4217c5e65b6a6", + "_tpl": "574d967124597745970e7c94", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "657eb3ef7ba4217c5e65b6a7", + "_tpl": "653ecef836fae5a82f02b869", + "parentId": "657eb3ef7ba4217c5e65b6a6", + "slotId": "mod_stock" + }, + { + "_id": "657eb3ef7ba4217c5e65b6a8", + "_tpl": "634f02331f9f536910079b51", + "parentId": "657eb3ef7ba4217c5e65b6a6", + "slotId": "mod_barrel" + }, + { + "_id": "657eb3ef7ba4217c5e65b6a9", + "_tpl": "634f04d82e5def262d0b30c6", + "parentId": "657eb3ef7ba4217c5e65b6a8", + "slotId": "mod_mount_000" + }, + { + "_id": "657eb3ef7ba4217c5e65b6aa", + "_tpl": "634f02d7517ccc8a960fc744", + "parentId": "657eb3ef7ba4217c5e65b6a9", + "slotId": "mod_gas_block" + }, + { + "_id": "657eb3ef7ba4217c5e65b6ab", + "_tpl": "653ecc425a1690d9d90491e4", + "parentId": "657eb3ef7ba4217c5e65b6aa", + "slotId": "mod_mount_000" + }, + { + "_id": "657eb3ef7ba4217c5e65b6ac", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "657eb3ef7ba4217c5e65b6a9", + "slotId": "mod_sight_rear" + }, + { + "_id": "657eb3ef7ba4217c5e65b6ad", + "_tpl": "593d1fa786f7746da62d61ac", + "parentId": "657eb3ef7ba4217c5e65b6a8", + "slotId": "mod_mount_001" + }, + { + "_id": "657eb3ef7ba4217c5e65b6ae", + "_tpl": "5c5952732e2216398b5abda2", + "parentId": "657eb3ef7ba4217c5e65b6ad", + "slotId": "mod_tactical_000" + }, + { + "_id": "657eb3ef7ba4217c5e65b6af", + "_tpl": "5cf67cadd7f00c065a5abab7", + "parentId": "657eb3ef7ba4217c5e65b6a8", + "slotId": "mod_muzzle" + }, + { + "_id": "657eb3ef7ba4217c5e65b6b0", + "_tpl": "59fb257e86f7742981561852", + "parentId": "657eb3ef7ba4217c5e65b6af", + "slotId": "mod_muzzle" + }, + { + "_id": "657eb3ef7ba4217c5e65b6b1", + "_tpl": "587df583245977373c4f1129", + "parentId": "657eb3ef7ba4217c5e65b6a6", + "slotId": "mod_magazine" + }, + { + "_id": "657eb3ef7ba4217c5e65b6b2", + "_tpl": "6415c694da439c6a97048b56", + "parentId": "657eb3ef7ba4217c5e65b6a6", + "slotId": "mod_reciever" + }, + { + "_id": "657eb3ef7ba4217c5e65b6b3", + "_tpl": "609a63b6e2ff132951242d09", + "parentId": "657eb3ef7ba4217c5e65b6b2", + "slotId": "mod_scope" + } + ], + "_name": "sks_tactical", + "_parent": "657eb3ef7ba4217c5e65b6a6", + "_type": "Preset" + }, + "657eb42546a703073a5b91f1": { + "_changeWeaponName": true, + "_id": "657eb42546a703073a5b91f1", + "_items": [ + { + "_id": "657eb42546a703073a5b91f2", + "_tpl": "587e02ff24597743df3deaeb", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "657eb42546a703073a5b91f3", + "_tpl": "587e0531245977466077a0f7", + "parentId": "657eb42546a703073a5b91f2", + "slotId": "mod_stock" + }, + { + "_id": "657eb42546a703073a5b91f4", + "_tpl": "634eff66517ccc8a960fc735", + "parentId": "657eb42546a703073a5b91f2", + "slotId": "mod_barrel" + }, + { + "_id": "657eb42546a703073a5b91f5", + "_tpl": "634f05a21f9f536910079b56", + "parentId": "657eb42546a703073a5b91f4", + "slotId": "mod_mount_000" + }, + { + "_id": "657eb42546a703073a5b91f6", + "_tpl": "634f036a517ccc8a960fc746", + "parentId": "657eb42546a703073a5b91f5", + "slotId": "mod_gas_block" + }, + { + "_id": "657eb42546a703073a5b91f7", + "_tpl": "634f03d40384a3ba4f06f874", + "parentId": "657eb42546a703073a5b91f6", + "slotId": "mod_mount_000" + }, + { + "_id": "657eb42546a703073a5b91f8", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "657eb42546a703073a5b91f5", + "slotId": "mod_sight_rear" + }, + { + "_id": "657eb42546a703073a5b91f9", + "_tpl": "587df3a12459772c28142567", + "parentId": "657eb42546a703073a5b91f2", + "slotId": "mod_magazine" + }, + { + "_id": "657eb42546a703073a5b91fa", + "_tpl": "587e08ee245977446b4410cf", + "parentId": "657eb42546a703073a5b91f2", + "slotId": "mod_mount" + }, + { + "_id": "657eb42546a703073a5b91fb", + "_tpl": "5c82343a2e221644f31c0611", + "parentId": "657eb42546a703073a5b91fa", + "slotId": "mod_scope" + }, + { + "_id": "657eb42546a703073a5b91fc", + "_tpl": "634f06262e5def262d0b30ca", + "parentId": "657eb42546a703073a5b91f2", + "slotId": "mod_reciever" + } + ], + "_name": "op_sks_sniper", + "_parent": "657eb42546a703073a5b91f2", + "_type": "Preset" + }, + "657eb44126f0eb0718056218": { + "_changeWeaponName": true, + "_id": "657eb44126f0eb0718056218", + "_items": [ + { + "_id": "657eb44126f0eb0718056219", + "_tpl": "587e02ff24597743df3deaeb", + "upd": { + "FireMode": { + "FireMode": "single" + }, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + } + }, + { + "_id": "657eb44126f0eb071805621a", + "_tpl": "653ecef836fae5a82f02b869", + "parentId": "657eb44126f0eb0718056219", + "slotId": "mod_stock" + }, + { + "_id": "657eb44126f0eb071805621b", + "_tpl": "634eff66517ccc8a960fc735", + "parentId": "657eb44126f0eb0718056219", + "slotId": "mod_barrel" + }, + { + "_id": "657eb44126f0eb071805621c", + "_tpl": "634f05a21f9f536910079b56", + "parentId": "657eb44126f0eb071805621b", + "slotId": "mod_mount_000" + }, + { + "_id": "657eb44126f0eb071805621d", + "_tpl": "634f036a517ccc8a960fc746", + "parentId": "657eb44126f0eb071805621c", + "slotId": "mod_gas_block" + }, + { + "_id": "657eb44126f0eb071805621e", + "_tpl": "653ecc425a1690d9d90491e4", + "parentId": "657eb44126f0eb071805621d", + "slotId": "mod_mount_000" + }, + { + "_id": "657eb44126f0eb071805621f", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "657eb44126f0eb071805621c", + "slotId": "mod_sight_rear" + }, + { + "_id": "657eb44126f0eb0718056220", + "_tpl": "587df583245977373c4f1129", + "parentId": "657eb44126f0eb0718056219", + "slotId": "mod_magazine" + }, + { + "_id": "657eb44126f0eb0718056221", + "_tpl": "6415d33eda439c6a97048b5b", + "parentId": "657eb44126f0eb0718056219", + "slotId": "mod_mount" + }, + { + "_id": "657eb44126f0eb0718056222", + "_tpl": "591c4efa86f7741030027726", + "parentId": "657eb44126f0eb0718056221", + "slotId": "mod_scope" + }, + { + "_id": "657eb44126f0eb0718056223", + "_tpl": "591c4e1186f77410354b316e", + "parentId": "657eb44126f0eb0718056222", + "slotId": "mod_tactical" + }, + { + "_id": "657eb44126f0eb0718056224", + "_tpl": "634f06262e5def262d0b30ca", + "parentId": "657eb44126f0eb0718056219", + "slotId": "mod_reciever" + } + ], + "_name": "op_sks_tactical", + "_parent": "657eb44126f0eb0718056219", + "_type": "Preset" + }, + "657fa705e9433140ad0baf95": { + "_changeWeaponName": false, + "_encyclopedia": "5d5e7d28a4b936645d161203", + "_id": "657fa705e9433140ad0baf95", + "_items": [ + { + "_id": "657fa705e9433140ad0baf99", + "_tpl": "5d5e7d28a4b936645d161203" + }, + { + "_id": "657fa705e9433140ad0baf9a", + "_tpl": "657f8a8d7db258e5600fe33d", + "parentId": "657fa705e9433140ad0baf99", + "slotId": "Helmet_top" + }, + { + "_id": "657fa705e9433140ad0baf9b", + "_tpl": "657f8b05f4c82973640b2348", + "parentId": "657fa705e9433140ad0baf99", + "slotId": "Helmet_back" + } + ], + "_name": "Helmet MSA ACH TC 2001 Standart", + "_parent": "657fa705e9433140ad0baf99", + "_type": "Preset" + }, + "657fa735e65c0122b70ffda5": { + "_changeWeaponName": false, + "_encyclopedia": "5d5e9c74a4b9364855191c40", + "_id": "657fa735e65c0122b70ffda5", + "_items": [ + { + "_id": "657fa735e65c0122b70ffda9", + "_tpl": "5d5e9c74a4b9364855191c40" + }, + { + "_id": "657fa735e65c0122b70ffdaa", + "_tpl": "657f8b94f92cd718b70154ff", + "parentId": "657fa735e65c0122b70ffda9", + "slotId": "Helmet_top" + }, + { + "_id": "657fa735e65c0122b70ffdab", + "_tpl": "657f8b43f92cd718b70154fb", + "parentId": "657fa735e65c0122b70ffda9", + "slotId": "Helmet_back" + } + ], + "_name": "Helmet MSA ACH TC 2002 Standart", + "_parent": "657fa735e65c0122b70ffda9", + "_type": "Preset" + }, + "657fa7c0e65c0122b70ffdb0": { + "_changeWeaponName": false, + "_encyclopedia": "5a154d5cfcdbcb001a3b00da", + "_id": "657fa7c0e65c0122b70ffdb0", + "_items": [ + { + "_id": "657fa7c0e65c0122b70ffdb4", + "_tpl": "5a154d5cfcdbcb001a3b00da" + }, + { + "_id": "657fa7c0e65c0122b70ffdb5", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "657fa7c0e65c0122b70ffdb4", + "slotId": "Helmet_top" + }, + { + "_id": "657fa7c0e65c0122b70ffdb6", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "657fa7c0e65c0122b70ffdb4", + "slotId": "Helmet_back" + } + ], + "_name": "Helmet Ops Core Fast MT Black Standart", + "_parent": "657fa7c0e65c0122b70ffdb4", + "_type": "Preset" + }, + "657fa7f1e9433140ad0baf9d": { + "_changeWeaponName": false, + "_encyclopedia": "5ac8d6885acfc400180ae7b0", + "_id": "657fa7f1e9433140ad0baf9d", + "_items": [ + { + "_id": "657fa7f1e9433140ad0bafa1", + "_tpl": "5ac8d6885acfc400180ae7b0" + }, + { + "_id": "657fa7f1e9433140ad0bafa2", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "657fa7f1e9433140ad0bafa1", + "slotId": "Helmet_top" + }, + { + "_id": "657fa7f1e9433140ad0bafa3", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "657fa7f1e9433140ad0bafa1", + "slotId": "Helmet_back" + } + ], + "_name": "Helmet Ops Core Fast MT Sand Standart", + "_parent": "657fa7f1e9433140ad0bafa1", + "_type": "Preset" + }, + "657fa836c6679fefb3051e28": { + "_changeWeaponName": false, + "_encyclopedia": "5aa7e454e5b5b0214e506fa2", + "_id": "657fa836c6679fefb3051e28", + "_items": [ + { + "_id": "657fa836c6679fefb3051e2d", + "_tpl": "5aa7e454e5b5b0214e506fa2" + }, + { + "_id": "657fa836c6679fefb3051e2e", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "657fa836c6679fefb3051e2d", + "slotId": "Helmet_top" + }, + { + "_id": "657fa836c6679fefb3051e2f", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "657fa836c6679fefb3051e2d", + "slotId": "Helmet_back" + }, + { + "_id": "657fa836c6679fefb3051e30", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "657fa836c6679fefb3051e2d", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet ZSh 1 2M Standart", + "_parent": "657fa836c6679fefb3051e2d", + "_type": "Preset" + }, + "657fa87fc6679fefb3051e32": { + "_changeWeaponName": false, + "_encyclopedia": "5aa7e4a4e5b5b000137b76f2", + "_id": "657fa87fc6679fefb3051e32", + "_items": [ + { + "_id": "657fa87fc6679fefb3051e37", + "_tpl": "5aa7e4a4e5b5b000137b76f2" + }, + { + "_id": "657fa87fc6679fefb3051e38", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "657fa87fc6679fefb3051e37", + "slotId": "Helmet_top" + }, + { + "_id": "657fa87fc6679fefb3051e39", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "657fa87fc6679fefb3051e37", + "slotId": "Helmet_back" + }, + { + "_id": "657fa87fc6679fefb3051e3a", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "657fa87fc6679fefb3051e37", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet ZSh 1 2M Black Standart", + "_parent": "657fa87fc6679fefb3051e37", + "_type": "Preset" + }, + "657fa8c5e9433140ad0bafa5": { + "_changeWeaponName": false, + "_encyclopedia": "5b40e3f35acfc40016388218", + "_id": "657fa8c5e9433140ad0bafa5", + "_items": [ + { + "_id": "657fa8c5e9433140ad0bafa9", + "_tpl": "5b40e3f35acfc40016388218" + }, + { + "_id": "657fa8c5e9433140ad0bafaa", + "_tpl": "657f95bff92cd718b701550c", + "parentId": "657fa8c5e9433140ad0bafa9", + "slotId": "Helmet_top" + }, + { + "_id": "657fa8c5e9433140ad0bafab", + "_tpl": "657f9605f4c82973640b2358", + "parentId": "657fa8c5e9433140ad0bafa9", + "slotId": "Helmet_back" + } + ], + "_name": "Helmet HighCom Striker ACHHC IIIA Black Standart", + "_parent": "657fa8c5e9433140ad0bafa9", + "_type": "Preset" + }, + "657fa8e787e11c61f70bfad5": { + "_changeWeaponName": false, + "_encyclopedia": "5b40e4035acfc47a87740943", + "_id": "657fa8e787e11c61f70bfad5", + "_items": [ + { + "_id": "657fa8e787e11c61f70bfad9", + "_tpl": "5b40e4035acfc47a87740943" + }, + { + "_id": "657fa8e787e11c61f70bfada", + "_tpl": "657f95bff92cd718b701550c", + "parentId": "657fa8e787e11c61f70bfad9", + "slotId": "Helmet_top" + }, + { + "_id": "657fa8e787e11c61f70bfadb", + "_tpl": "657f9605f4c82973640b2358", + "parentId": "657fa8e787e11c61f70bfad9", + "slotId": "Helmet_back" + } + ], + "_name": "Helmet HighCom Striker ACHHC IIIA Olive Standart", + "_parent": "657fa8e787e11c61f70bfad9", + "_type": "Preset" + }, + "657fa92de65c0122b70ffdb9": { + "_changeWeaponName": false, + "_encyclopedia": "5c17a7ed2e2216152142459c", + "_id": "657fa92de65c0122b70ffdb9", + "_items": [ + { + "_id": "657fa92de65c0122b70ffdbd", + "_tpl": "5c17a7ed2e2216152142459c" + }, + { + "_id": "657fa92de65c0122b70ffdbe", + "_tpl": "657f9897f4c82973640b235e", + "parentId": "657fa92de65c0122b70ffdbd", + "slotId": "Helmet_top" + }, + { + "_id": "657fa92de65c0122b70ffdbf", + "_tpl": "657f98fbada5fadd1f07a585", + "parentId": "657fa92de65c0122b70ffdbd", + "slotId": "Helmet_back" + } + ], + "_name": "Helmet Crye Precision AirFrame Standart", + "_parent": "657fa92de65c0122b70ffdbd", + "_type": "Preset" + }, + "657fa95ae9433140ad0bafad": { + "_changeWeaponName": false, + "_encyclopedia": "5ea17ca01412a1425304d1c0", + "_id": "657fa95ae9433140ad0bafad", + "_items": [ + { + "_id": "657fa95ae9433140ad0bafb1", + "_tpl": "5ea17ca01412a1425304d1c0" + }, + { + "_id": "657fa95ae9433140ad0bafb2", + "_tpl": "657f9a55c6679fefb3051e19", + "parentId": "657fa95ae9433140ad0bafb1", + "slotId": "Helmet_top" + }, + { + "_id": "657fa95ae9433140ad0bafb3", + "_tpl": "657f9a94ada5fadd1f07a589", + "parentId": "657fa95ae9433140ad0bafb1", + "slotId": "Helmet_back" + } + ], + "_name": "Helmet Diamond Age Bastion Standart", + "_parent": "657fa95ae9433140ad0bafb1", + "_type": "Preset" + }, + "657fa996e9433140ad0bafb5": { + "_changeWeaponName": false, + "_encyclopedia": "5d6d3716a4b9361bc8618872", + "_id": "657fa996e9433140ad0bafb5", + "_items": [ + { + "_id": "657fa996e9433140ad0bafba", + "_tpl": "5d6d3716a4b9361bc8618872" + }, + { + "_id": "657fa996e9433140ad0bafbb", + "_tpl": "657fa009d4caf976440afe3a", + "parentId": "657fa996e9433140ad0bafba", + "slotId": "Helmet_top" + }, + { + "_id": "657fa996e9433140ad0bafbc", + "_tpl": "657fa04ac6679fefb3051e24", + "parentId": "657fa996e9433140ad0bafba", + "slotId": "Helmet_back" + }, + { + "_id": "657fa996e9433140ad0bafbd", + "_tpl": "657fa07387e11c61f70bface", + "parentId": "657fa996e9433140ad0bafba", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet BNTI LShZ 2DTM Standart", + "_parent": "657fa996e9433140ad0bafba", + "_type": "Preset" + }, + "657fa9cf87e11c61f70bfadd": { + "_changeWeaponName": false, + "_encyclopedia": "5e4bfc1586f774264f7582d3", + "_id": "657fa9cf87e11c61f70bfadd", + "_items": [ + { + "_id": "657fa9cf87e11c61f70bfae1", + "_tpl": "5e4bfc1586f774264f7582d3" + }, + { + "_id": "657fa9cf87e11c61f70bfae2", + "_tpl": "657f9c78ada5fadd1f07a58d", + "parentId": "657fa9cf87e11c61f70bfae1", + "slotId": "Helmet_top" + }, + { + "_id": "657fa9cf87e11c61f70bfae3", + "_tpl": "657f9cb587e11c61f70bfaca", + "parentId": "657fa9cf87e11c61f70bfae1", + "slotId": "Helmet_back" + } + ], + "_name": "Helmet MSA Gallet TC 800 Standart", + "_parent": "657fa9cf87e11c61f70bfae1", + "_type": "Preset" + }, + "657faa0687e11c61f70bfae5": { + "_changeWeaponName": false, + "_encyclopedia": "65719f0775149d62ce0a670b", + "_id": "657faa0687e11c61f70bfae5", + "_items": [ + { + "_id": "657faa0687e11c61f70bfaea", + "_tpl": "65719f0775149d62ce0a670b" + }, + { + "_id": "657faa0687e11c61f70bfaeb", + "_tpl": "657fa0fcd4caf976440afe3e", + "parentId": "657faa0687e11c61f70bfaea", + "slotId": "Helmet_top" + }, + { + "_id": "657faa0687e11c61f70bfaec", + "_tpl": "657fa168e9433140ad0baf8e", + "parentId": "657faa0687e11c61f70bfaea", + "slotId": "Helmet_back" + }, + { + "_id": "657faa0687e11c61f70bfaed", + "_tpl": "657fa186d4caf976440afe42", + "parentId": "657faa0687e11c61f70bfaea", + "slotId": "Helmet_ears" + } + ], + "_name": "Helmet Class Tor 2 Standart", + "_parent": "657faa0687e11c61f70bfaea", + "_type": "Preset" + }, + "657faa32e65c0122b70ffdc1": { + "_changeWeaponName": false, + "_encyclopedia": "65709d2d21b9f815e208ff95", + "_id": "657faa32e65c0122b70ffdc1", + "_items": [ + { + "_id": "657faa32e65c0122b70ffdc5", + "_tpl": "65709d2d21b9f815e208ff95" + }, + { + "_id": "657faa32e65c0122b70ffdc6", + "_tpl": "657f9eb7e9433140ad0baf86", + "parentId": "657faa32e65c0122b70ffdc5", + "slotId": "Helmet_top" + }, + { + "_id": "657faa32e65c0122b70ffdc7", + "_tpl": "657f9ef6c6679fefb3051e1f", + "parentId": "657faa32e65c0122b70ffdc5", + "slotId": "Helmet_back" + } + ], + "_name": "Helmet Adept Neosteel Standart", + "_parent": "657faa32e65c0122b70ffdc5", + "_type": "Preset" + } + }, + "bot_presets": [ + { + "BotDifficulty": "easy", + "COEF_IF_MOVE": 1.3, + "FIRST_CONTACT_ADD_SEC": 0.15, + "HearingSense": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "Role": "assault", + "SCATTERING_DIST_MODIF": 0.8, + "ScatteringPerMeter": 0.095, + "UseThis": true, + "VisibleAngle": 140, + "VisibleDistance": 125 + }, + { + "BotDifficulty": "normal", + "COEF_IF_MOVE": 1.3, + "FIRST_CONTACT_ADD_SEC": 0.15, + "HearingSense": 0.8, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "Role": "assault", + "SCATTERING_DIST_MODIF": 0.8, + "ScatteringPerMeter": 0.085, + "UseThis": true, + "VisibleAngle": 145, + "VisibleDistance": 129 + }, + { + "BotDifficulty": "hard", + "COEF_IF_MOVE": 1.3, + "FIRST_CONTACT_ADD_SEC": 0.15, + "HearingSense": 0.85, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "Role": "assault", + "SCATTERING_DIST_MODIF": 0.8, + "ScatteringPerMeter": 0.085, + "UseThis": true, + "VisibleAngle": 145, + "VisibleDistance": 137 + }, + { + "BotDifficulty": "impossible", + "COEF_IF_MOVE": 1.3, + "FIRST_CONTACT_ADD_SEC": 0.15, + "HearingSense": 0.85, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "Role": "assault", + "SCATTERING_DIST_MODIF": 0.8, + "ScatteringPerMeter": 0.063, + "UseThis": true, + "VisibleAngle": 160, + "VisibleDistance": 140 + }, + { + "BotDifficulty": "easy", + "COEF_IF_MOVE": 1, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HearingSense": 0.7, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "Role": "marksman", + "SCATTERING_DIST_MODIF": 0.7, + "ScatteringPerMeter": 0.08, + "UseThis": true, + "VisibleAngle": 160, + "VisibleDistance": 200 + }, + { + "BotDifficulty": "normal", + "COEF_IF_MOVE": 1, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HearingSense": 0.7, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "Role": "marksman", + "SCATTERING_DIST_MODIF": 0.7, + "ScatteringPerMeter": 0.08, + "UseThis": true, + "VisibleAngle": 165, + "VisibleDistance": 220 + }, + { + "BotDifficulty": "hard", + "COEF_IF_MOVE": 1, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HearingSense": 0.9, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "Role": "marksman", + "SCATTERING_DIST_MODIF": 0.7, + "ScatteringPerMeter": 0.08, + "UseThis": true, + "VisibleAngle": 180, + "VisibleDistance": 240 + }, + { + "BotDifficulty": "impossible", + "COEF_IF_MOVE": 1, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HearingSense": 0.9, + "MAX_AIMING_UPGRADE_BY_TIME": 0.85, + "Role": "marksman", + "SCATTERING_DIST_MODIF": 0.7, + "ScatteringPerMeter": 0.08, + "UseThis": true, + "VisibleAngle": 160, + "VisibleDistance": 250 + }, + { + "BotDifficulty": "normal", + "COEF_IF_MOVE": 1, + "FIRST_CONTACT_ADD_SEC": 0.13, + "HearingSense": 4.8, + "MAX_AIMING_UPGRADE_BY_TIME": 0.15, + "Role": "bossKilla", + "SCATTERING_DIST_MODIF": 0.45, + "ScatteringPerMeter": 0.09, + "UseThis": true, + "VisibleAngle": 180, + "VisibleDistance": 140 + }, + { + "BotDifficulty": "normal", + "COEF_IF_MOVE": 1, + "FIRST_CONTACT_ADD_SEC": 0.13, + "HearingSense": 4.8, + "MAX_AIMING_UPGRADE_BY_TIME": 0.15, + "Role": "bossTagilla", + "SCATTERING_DIST_MODIF": 0.45, + "ScatteringPerMeter": 0.09, + "UseThis": true, + "VisibleAngle": 180, + "VisibleDistance": 140 + }, + { + "BotDifficulty": "normal", + "COEF_IF_MOVE": 1, + "FIRST_CONTACT_ADD_SEC": 0.13, + "HearingSense": 4.8, + "MAX_AIMING_UPGRADE_BY_TIME": 0.15, + "Role": "bossBully", + "SCATTERING_DIST_MODIF": 0.8, + "ScatteringPerMeter": 0.02, + "UseThis": true, + "VisibleAngle": 170, + "VisibleDistance": 140 + }, + { + "BotDifficulty": "normal", + "COEF_IF_MOVE": 1, + "FIRST_CONTACT_ADD_SEC": 0.13, + "HearingSense": 4.8, + "MAX_AIMING_UPGRADE_BY_TIME": 0.15, + "Role": "bossGluhar", + "SCATTERING_DIST_MODIF": 0.67, + "ScatteringPerMeter": 0.045, + "UseThis": true, + "VisibleAngle": 170, + "VisibleDistance": 140 + }, + { + "BotDifficulty": "normal", + "COEF_IF_MOVE": 1, + "FIRST_CONTACT_ADD_SEC": 0.13, + "HearingSense": 4.8, + "MAX_AIMING_UPGRADE_BY_TIME": 0.15, + "Role": "bossSanitar", + "SCATTERING_DIST_MODIF": 0.6, + "ScatteringPerMeter": 0.045, + "UseThis": true, + "VisibleAngle": 170, + "VisibleDistance": 140 + }, + { + "BotDifficulty": "normal", + "COEF_IF_MOVE": 1, + "FIRST_CONTACT_ADD_SEC": 0.13, + "HearingSense": 4.8, + "MAX_AIMING_UPGRADE_BY_TIME": 0.15, + "Role": "bossKojaniy", + "SCATTERING_DIST_MODIF": 0.6, + "ScatteringPerMeter": 0.045, + "UseThis": true, + "VisibleAngle": 170, + "VisibleDistance": 165 + }, + { + "BotDifficulty": "normal", + "COEF_IF_MOVE": 1, + "FIRST_CONTACT_ADD_SEC": 0.13, + "HearingSense": 4.8, + "MAX_AIMING_UPGRADE_BY_TIME": 0.15, + "Role": "bossKnight", + "SCATTERING_DIST_MODIF": 0.6, + "ScatteringPerMeter": 0.045, + "UseThis": true, + "VisibleAngle": 170, + "VisibleDistance": 140 + }, + { + "BotDifficulty": "normal", + "COEF_IF_MOVE": 1, + "FIRST_CONTACT_ADD_SEC": 0.13, + "HearingSense": 4.8, + "MAX_AIMING_UPGRADE_BY_TIME": 0.15, + "Role": "followerBigPipe", + "SCATTERING_DIST_MODIF": 0.45, + "ScatteringPerMeter": 0.09, + "UseThis": true, + "VisibleAngle": 180, + "VisibleDistance": 170 + }, + { + "BotDifficulty": "normal", + "COEF_IF_MOVE": 1, + "FIRST_CONTACT_ADD_SEC": 0.13, + "HearingSense": 4.8, + "MAX_AIMING_UPGRADE_BY_TIME": 0.15, + "Role": "followerBirdEye", + "SCATTERING_DIST_MODIF": 0.55, + "ScatteringPerMeter": 0.045, + "UseThis": true, + "VisibleAngle": 180, + "VisibleDistance": 255 + }, + { + "BotDifficulty": "normal", + "COEF_IF_MOVE": 1, + "FIRST_CONTACT_ADD_SEC": 0.13, + "HearingSense": 4.8, + "MAX_AIMING_UPGRADE_BY_TIME": 0.15, + "Role": "bossBoar", + "SCATTERING_DIST_MODIF": 0.6, + "ScatteringPerMeter": 0.045, + "UseThis": false, + "VisibleAngle": 170, + "VisibleDistance": 140 + } + ], "config": { + "AimPunchMagnitude": 17, + "Aiming": { + "AimProceduralIntensity": 0.75, + "CameraSnapGlobalMult": 2, + "HeavyWeight": 9, + "LightWeight": 0.6, + "MaxTimeHeavy": 2.4, + "MaxTimeLight": 2, + "MinTimeHeavy": 0.95, + "MinTimeLight": 0.35, + "ProceduralIntensityByPose": { + "x": 0.33, + "y": 0.66, + "z": 1 + }, + "RecoilBackBonus": 20, + "RecoilConvergenceMult": 1, + "RecoilCrank": false, + "RecoilDamping": 0.7, + "RecoilHandDamping": 0.45, + "RecoilScaling": 1, + "RecoilVertBonus": 20, + "RecoilXIntensityByPose": { + "x": 0.35, + "y": 0.7, + "z": 1 + }, + "RecoilYIntensityByPose": { + "x": 0.7, + "y": 0.7, + "z": 1 + }, + "RecoilZIntensityByPose": { + "x": 0.7, + "y": 0.7, + "z": 1 + } + }, + "ArmorMaterials": { + "Aluminium": { + "Destructibility": 0.45, + "ExplosionDestructibility": 0.45, + "MaxRepairDegradation": 0.1, + "MaxRepairKitDegradation": 0.09, + "MinRepairDegradation": 0.06, + "MinRepairKitDegradation": 0.055 + }, + "Aramid": { + "Destructibility": 0.1875, + "ExplosionDestructibility": 0.15, + "MaxRepairDegradation": 0.07, + "MaxRepairKitDegradation": 0.065, + "MinRepairDegradation": 0.03, + "MinRepairKitDegradation": 0.025 + }, + "ArmoredSteel": { + "Destructibility": 0.525, + "ExplosionDestructibility": 0.45, + "MaxRepairDegradation": 0.03, + "MaxRepairKitDegradation": 0.025, + "MinRepairDegradation": 0.01, + "MinRepairKitDegradation": 0.005 + }, + "Ceramic": { + "Destructibility": 0.6, + "ExplosionDestructibility": 0.525, + "MaxRepairDegradation": 0.22, + "MaxRepairKitDegradation": 0.2, + "MinRepairDegradation": 0.17, + "MinRepairKitDegradation": 0.155 + }, + "Combined": { + "Destructibility": 0.375, + "ExplosionDestructibility": 0.2, + "MaxRepairDegradation": 0.15, + "MaxRepairKitDegradation": 0.14, + "MinRepairDegradation": 0.1, + "MinRepairKitDegradation": 0.09 + }, + "Glass": { + "Destructibility": 0.6, + "ExplosionDestructibility": 0.6, + "MaxRepairDegradation": 0.42, + "MaxRepairKitDegradation": 0.38, + "MinRepairDegradation": 0.23, + "MinRepairKitDegradation": 0.21 + }, + "Titan": { + "Destructibility": 0.4125, + "ExplosionDestructibility": 0.375, + "MaxRepairDegradation": 0.1, + "MaxRepairKitDegradation": 0.09, + "MinRepairDegradation": 0.06, + "MinRepairKitDegradation": 0.055 + }, + "UHMWPE": { + "Destructibility": 0.3375, + "ExplosionDestructibility": 0.3, + "MaxRepairDegradation": 0.03, + "MaxRepairKitDegradation": 0.025, + "MinRepairDegradation": 0.01, + "MinRepairKitDegradation": 0.005 + } + }, + "AudioSettings": { + "AudioGroupPresets": [ + { + "AngleToAllowBinaural": 1000, + "DisabledBinauralByDistance": false, + "DistanceToAllowBinaural": 1000, + "GroupType": 0, + "HeightToAllowBinaural": 1000, + "Name": "Gunshots", + "OcclusionEnabled": true, + "OcclusionIntensity": 1, + "OverallVolume": 1 + }, + { + "AngleToAllowBinaural": 12, + "DisabledBinauralByDistance": true, + "DistanceToAllowBinaural": 10, + "GroupType": 1, + "HeightToAllowBinaural": 2, + "Name": "Weaponry", + "OcclusionEnabled": true, + "OcclusionIntensity": 1, + "OverallVolume": 1 + }, + { + "AngleToAllowBinaural": 30, + "DisabledBinauralByDistance": false, + "DistanceToAllowBinaural": 60, + "GroupType": 2, + "HeightToAllowBinaural": 10, + "Name": "Impacts", + "OcclusionEnabled": true, + "OcclusionIntensity": 1, + "OverallVolume": 1 + }, + { + "AngleToAllowBinaural": 30, + "DisabledBinauralByDistance": false, + "DistanceToAllowBinaural": 60, + "GroupType": 3, + "HeightToAllowBinaural": 10, + "Name": "Character", + "OcclusionEnabled": true, + "OcclusionIntensity": 1, + "OverallVolume": 1 + }, + { + "AngleToAllowBinaural": 30, + "DisabledBinauralByDistance": false, + "DistanceToAllowBinaural": 60, + "GroupType": 4, + "HeightToAllowBinaural": 10, + "Name": "Environment", + "OcclusionEnabled": true, + "OcclusionIntensity": 1, + "OverallVolume": 1 + }, + { + "AngleToAllowBinaural": 12, + "DisabledBinauralByDistance": true, + "DistanceToAllowBinaural": 10, + "GroupType": 5, + "HeightToAllowBinaural": 2, + "Name": "Collisions", + "OcclusionEnabled": true, + "OcclusionIntensity": 1, + "OverallVolume": 1 + }, + { + "AngleToAllowBinaural": 30, + "DisabledBinauralByDistance": false, + "DistanceToAllowBinaural": 60, + "GroupType": 6, + "HeightToAllowBinaural": 10, + "Name": "Speech", + "OcclusionEnabled": true, + "OcclusionIntensity": 1, + "OverallVolume": 0.7 + }, + { + "AngleToAllowBinaural": 30, + "DisabledBinauralByDistance": false, + "DistanceToAllowBinaural": 60, + "GroupType": 7, + "HeightToAllowBinaural": 10, + "Name": "Distant", + "OcclusionEnabled": true, + "OcclusionIntensity": 1, + "OverallVolume": 1 + }, + { + "AngleToAllowBinaural": 30, + "DisabledBinauralByDistance": false, + "DistanceToAllowBinaural": 60, + "GroupType": 8, + "HeightToAllowBinaural": 10, + "Name": "NonspatialBypass", + "OcclusionEnabled": false, + "OcclusionIntensity": 1, + "OverallVolume": 1 + }, + { + "AngleToAllowBinaural": 30, + "DisabledBinauralByDistance": false, + "DistanceToAllowBinaural": 60, + "GroupType": 9, + "HeightToAllowBinaural": 10, + "Name": "Nonspatial", + "OcclusionEnabled": false, + "OcclusionIntensity": 1, + "OverallVolume": 1 + }, + { + "AngleToAllowBinaural": 30, + "DisabledBinauralByDistance": false, + "DistanceToAllowBinaural": 60, + "GroupType": 10, + "HeightToAllowBinaural": 10, + "Name": "Voip", + "OcclusionEnabled": true, + "OcclusionIntensity": 1, + "OverallVolume": 1 + }, + { + "AngleToAllowBinaural": 1000, + "DisabledBinauralByDistance": true, + "DistanceToAllowBinaural": 1000, + "GroupType": 11, + "HeightToAllowBinaural": 1000, + "Name": "Grenades", + "OcclusionEnabled": true, + "OcclusionIntensity": 1, + "OverallVolume": 1 + }, + { + "AngleToAllowBinaural": 12, + "DisabledBinauralByDistance": true, + "DistanceToAllowBinaural": 10, + "GroupType": 12, + "HeightToAllowBinaural": 2, + "Name": "Windows", + "OcclusionEnabled": true, + "OcclusionIntensity": 1, + "OverallVolume": 1 + } + ], + "EnvironmentSettings": { + "SnowStepsVolumeMultiplier": 0.35, + "SurfaceMultipliers": [ + { + "SurfaceType": "Concrete", + "VolumeMult": 0 + }, + { + "SurfaceType": "Metal", + "VolumeMult": 0.4 + }, + { + "SurfaceType": "Wood", + "VolumeMult": 0.5 + }, + { + "SurfaceType": "Soil", + "VolumeMult": 1 + }, + { + "SurfaceType": "Grass", + "VolumeMult": 1 + }, + { + "SurfaceType": "Asphalt", + "VolumeMult": 0.8 + }, + { + "SurfaceType": "Glass", + "VolumeMult": 0.1 + }, + { + "SurfaceType": "Gravel", + "VolumeMult": 1 + }, + { + "SurfaceType": "MetalThin", + "VolumeMult": 0.4 + }, + { + "SurfaceType": "Puddle", + "VolumeMult": 0 + }, + { + "SurfaceType": "Slate", + "VolumeMult": 0.3 + }, + { + "SurfaceType": "Tile", + "VolumeMult": 0.1 + }, + { + "SurfaceType": "WoodThick", + "VolumeMult": 0.5 + }, + { + "SurfaceType": "Swamp", + "VolumeMult": 0 + }, + { + "SurfaceType": "Garbage", + "VolumeMult": 0.5 + }, + { + "SurfaceType": "GarbageMetal", + "VolumeMult": 0.4 + }, + { + "SurfaceType": "Plastic", + "VolumeMult": 0.3 + }, + { + "SurfaceType": "WholeGlass", + "VolumeMult": 0.1 + }, + { + "SurfaceType": "WoodThin", + "VolumeMult": 0.5 + } + ] + } + }, + "AzimuthPanelShowsPlayerOrientation": false, + "BTRSettings": { + "AddPriceTaxi": 500, + "BasePriceTaxi": 7000, + "BearPriceMod": 1, + "BotCoverMinPrice": 30000, + "CheckSurfaceForWheelsTimer": 0.3, + "CleanUpPrice": 50000, + "CoefficientDiscountCharisma": 0.002, + "DeliveryMinPrice": 1000, + "DeliveryPrice": 500, + "DiameterWheel": 57.5, + "HeightWheel": 0.65, + "HeightWheelMaxPosLimit": 0.8, + "HeightWheelMinPosLimit": 0.46, + "HeightWheelOffset": -0.075, + "LocationsWithBTR": [ + "develop", + "TarkovStreets" + ], + "MapsConfigs": { + "Develop": { + "mapID": "develop", + "pathsConfigurations": [ + { + "circle": true, + "circleCount": 143, + "enterPoint": "p7", + "exitPoint": "p7", + "id": "circleAll", + "once": false, + "pathPoints": [ + "p1", + "p2", + "p3", + "p4", + "p5", + "p6" + ] + }, + { + "circle": false, + "circleCount": 0, + "enterPoint": "p7", + "exitPoint": "p8", + "id": "once1", + "once": true, + "pathPoints": [ + "p1", + "p2", + "p3", + "p4", + "p5" + ] + } + ] + }, + "TarkovStreets": { + "mapID": "TarkovStreets", + "pathsConfigurations": [ + { + "circle": true, + "circleCount": 5, + "enterPoint": "p7", + "exitPoint": "p7", + "id": "RouteOne", + "once": false, + "pathPoints": [ + "p1", + "p2", + "p6", + "p5", + "p4", + "p3" + ] + }, + { + "circle": true, + "circleCount": 3, + "enterPoint": "p8", + "exitPoint": "p8", + "id": "RouteTwo", + "once": false, + "pathPoints": [ + "p6", + "p2", + "p1", + "p3", + "p4", + "p5" + ] + }, + { + "circle": true, + "circleCount": 4, + "enterPoint": "p9", + "exitPoint": "p9", + "id": "RouteTree", + "once": false, + "pathPoints": [ + "p4", + "p3", + "p1", + "p2", + "p6", + "p5" + ] + }, + { + "circle": true, + "circleCount": 2, + "enterPoint": "p10", + "exitPoint": "p10", + "id": "RouteFour", + "once": false, + "pathPoints": [ + "p5", + "p6", + "p2", + "p1", + "p4" + ] + } + ] + } + }, + "ModDeliveryCost": 0.05, + "ScavPriceMod": 0.8, + "SnapToSurfaceWheelsSpeed": 0.2, + "TaxiMinPrice": 4000, + "UsecPriceMod": 1.5 + }, + "Ballistic": { + "GlobalDamageDegradationCoefficient": 0.5 + }, + "BaseCheckTime": 3, + "BaseLoadTime": 0.85, + "BaseUnloadTime": 0.3, + "BluntDamageReduceFromSoftArmorMod": 0.6, + "BotsEnabled": true, + "BufferZone": { + "CustomerAccessTime": 600, + "CustomerCriticalTimeStart": 10, + "CustomerKickNotifTime": 60 + }, + "CoopSettings": { + "AvailableVersions": [ + "edge_of_darkness", + "press_edition", + "tournament_live" + ] + }, + "Customization": { + "BodyParts": { + "Body": "Body", + "Feet": "Feet", + "Hands": "Hands", + "Head": "Head" + }, + "CustomizationVoice": [ + { + "isNotRandom": true, + "side": [ + "Bear", + "Savage" + ], + "voice": "Bear_1" + }, + { + "isNotRandom": true, + "side": [ + "Bear", + "Savage" + ], + "voice": "Bear_2" + }, + { + "isNotRandom": true, + "side": [ + "Usec", + "Savage" + ], + "voice": "Usec_1" + }, + { + "isNotRandom": true, + "side": [ + "Usec", + "Savage" + ], + "voice": "Usec_2" + }, + { + "isNotRandom": false, + "side": [ + "Savage" + ], + "voice": "Scav_1" + }, + { + "isNotRandom": false, + "side": [ + "Savage" + ], + "voice": "Scav_2" + }, + { + "isNotRandom": false, + "side": [ + "Savage" + ], + "voice": "Scav_3" + }, + { + "isNotRandom": false, + "side": [ + "Savage" + ], + "voice": "Scav_4" + }, + { + "isNotRandom": false, + "side": [ + "Savage" + ], + "voice": "Scav_5" + }, + { + "isNotRandom": false, + "side": [ + "Savage" + ], + "voice": "Scav_6" + }, + { + "isNotRandom": true, + "side": [ + "Usec", + "Savage" + ], + "voice": "Usec_3" + }, + { + "isNotRandom": true, + "side": [ + "Bear", + "Savage" + ], + "voice": "Bear_3" + }, + { + "isNotRandom": true, + "side": [ + "Savage" + ], + "voice": "BossBully" + }, + { + "isNotRandom": true, + "side": [ + "Savage" + ], + "voice": "BossGluhar" + }, + { + "isNotRandom": true, + "side": [ + "Savage" + ], + "voice": "BossSanitar" + }, + { + "isNotRandom": true, + "side": [ + "Savage" + ], + "voice": "SectantWarrior" + }, + { + "isNotRandom": true, + "side": [ + "Savage" + ], + "voice": "SectantPriest" + }, + { + "isNotRandom": true, + "side": [ + "Bear" + ], + "voice": "Bear_1_Eng" + }, + { + "isNotRandom": true, + "side": [ + "Bear" + ], + "voice": "Bear_2_Eng" + }, + { + "isNotRandom": true, + "side": [ + "Usec" + ], + "voice": "Usec_4" + }, + { + "isNotRandom": true, + "side": [ + "Usec" + ], + "voice": "Usec_5" + }, + { + "isNotRandom": true, + "side": [ + "Savage" + ], + "voice": "BossTagilla" + }, + { + "isNotRandom": true, + "side": [ + "Savage" + ], + "voice": "BossKilla" + }, + { + "isNotRandom": true, + "side": [ + "Savage" + ], + "voice": "BossKnight" + }, + { + "isNotRandom": true, + "side": [ + "Savage" + ], + "voice": "BossBirdEye" + }, + { + "isNotRandom": true, + "side": [ + "Savage" + ], + "voice": "BossBigPipe" + }, + { + "isNotRandom": true, + "side": [ + "Savage" + ], + "voice": "Arena_Guard_1" + }, + { + "isNotRandom": true, + "side": [ + "Savage" + ], + "voice": "Arena_Guard_2" + }, + { + "isNotRandom": true, + "side": [ + "Savage" + ], + "voice": "Boss_Kaban" + }, + { + "isNotRandom": true, + "side": [ + "Savage" + ], + "voice": "Boss_Kollontay" + }, + { + "isNotRandom": true, + "side": [ + "Savage" + ], + "voice": "Boss_Sturman" + } + ], + "SavageBody": { + "DefaultUsecBody": { + "body": "5cde95d97d6c8b647a3769b0", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "Top_BOSS_BigPipe": { + "body": "6287b16b05846043f15a790d", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "Top_BOSS_Birdeye": { + "body": "628a6801805c5b6c100cc200", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "Top_BOSS_Blackknight": { + "body": "628796f2af0a053a6672c29a", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "Top_BOSS_Kaban": { + "body": "648067b8aa32c2049f098463", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "Top_BOSS_Kolontai": { + "body": "654b5eb7a29f3736215dd030", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "Top_BOSS_Sanitar": { + "body": "5e9975c486f774382b6320cb", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "Top_BOSS_Zryachi": { + "body": "63628b825c1b30a79d09ccb9", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "Top_security_Gorka4": { + "body": "5d5e7e8386f774393602d6fa", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "Top_security_Husky": { + "body": "5d5e7e7586f77427997cfb7f", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "Tshirt_security_TshirtTatu_01": { + "body": "5d5e7e4a86f774279a21cc0d", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "Tshirt_security_TshirtTatu_02": { + "body": "5d5e7e5d86f774279b4f4b01", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "Wild_Dealmaker_body": { + "body": "5d28adcb86f77429242fc893", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "scav_kit_upper_meteor": { + "body": "5df8a10486f77412672a1e3a", + "hands": "5df8eac086f77412640e2ea7", + "isNotRandom": false + }, + "top_boss_tagilla": { + "body": "609e86926e8078716f600883", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "top_cultist_01": { + "body": "5fb53cc97b5d1342ee24bd63", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "top_cultist_02": { + "body": "5fb53d0b7b5d1342ee24bd64", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "usec_top_beltstaff": { + "body": "6033a35f80ae5e2f970ba6bb", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "usec_upper_acu": { + "body": "5fd3e9f71b735718c25cd9f8", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "usec_upper_aggressor": { + "body": "5d1f56c686f7744bcd13459c", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "usec_upper_commando": { + "body": "5d4da0cb86f77450fe0a6629", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "usec_upper_flexion": { + "body": "5d1f56e486f7744bce0ee9ed", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "usec_upper_hoody": { + "body": "5e9da17386f774054b6f79a3", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "usec_upper_infiltrator": { + "body": "5d1f56f186f7744bcb0acd1a", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "usec_upper_pcsmulticam": { + "body": "5d1f56ff86f7743f8362bcd7", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "usec_upper_pcuironsight": { + "body": "5d1f56a686f7744bce0ee9eb", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "usec_upper_tier3": { + "body": "5fcf63da5c287f01f22bf245", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "usec_upper_tier_2": { + "body": "5e4bb35286f77406a511c9bc", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "user_upper_NightPatrol": { + "body": "5f5e4075df4f3100376a8138", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "wild_Gluhar_body": { + "body": "5d5e7dd786f7744a7a274322", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "wild_Killa_body": { + "body": "5cdea33e7d6c8b0474535dac", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "wild_Shturman_body": { + "body": "5d5e7c9186f774393602d6f9", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "wild_body": { + "body": "5cc2e59214c02e000f16684e", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": false + }, + "wild_body_1": { + "body": "5cde9f337d6c8b0474535da8", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": false + }, + "wild_body_2": { + "body": "5d28ad6986f77429275dba22", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": false + }, + "wild_body_3": { + "body": "5d28ad7286f7742926686182", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": false + }, + "wild_body_bomber": { + "body": "619238266c614e6d15792bca", + "hands": "618cf9540a5a59657e5f5677", + "isNotRandom": false + }, + "wild_body_feldparka": { + "body": "64a2edba08d26f8d62049c06", + "hands": "64ac23c449d74fd5ec0a124e", + "isNotRandom": false + }, + "wild_body_motocross": { + "body": "5e9da1d086f774054a667134", + "hands": "5e9da2dd86f774054e7d0f63", + "isNotRandom": false + }, + "wild_body_rainparka": { + "body": "5fd1eb3fbe3b7107d66cb645", + "hands": "5fd78fe9e3bfcf6cab4c9f54", + "isNotRandom": false + }, + "wild_body_russia1": { + "body": "5e4bb3ee86f77406975c934e", + "hands": "5e4bb49586f77406a313ec5a", + "isNotRandom": false + }, + "wild_body_underarmour": { + "body": "5fd22d311add82653b5a704c", + "hands": "5fd7901bdd870108a754c0e6", + "isNotRandom": false + }, + "wild_body_victory": { + "body": "637df28ac22da5bb8d046935", + "hands": "6391c6205dbbdb3b1b049840", + "isNotRandom": false + }, + "wild_pmcBot_body": { + "body": "5d28ae4986f7742926686187", + "hands": "5cc0876314c02e000c6bea6b", + "isNotRandom": true + }, + "wild_security_body_1": { + "body": "5d28adfd86f774292364a6e5", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "wild_security_body_2": { + "body": "5d28ae2986f7742926686185", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "wild_security_body_bratva_1": { + "body": "65749b8fe32c4e3f7907bf42", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "wild_security_body_bratva_2": { + "body": "65749ba32fdb04fb79092d37", + "hands": "5cc2e68f14c02e28b47de290", + "isNotRandom": true + }, + "wild_top_yellowcoat": { + "body": "618d1af10a5a59657e5f56f3", + "hands": "6197aca964ae5436d76c1f98", + "isNotRandom": false + } + }, + "SavageFeet": { + "Pants_BOSS_BigPipe": { + "NotRandom": false, + "feet": "6287b14b66bb7d4a3c32bc94", + "isNotRandom": true + }, + "Pants_BOSS_Birdeye": { + "NotRandom": false, + "feet": "628a4645c9327c7587388849", + "isNotRandom": true + }, + "Pants_BOSS_Blackknight": { + "NotRandom": false, + "feet": "628771f70828252c7a28b961", + "isNotRandom": true + }, + "Pants_BOSS_Glukhar": { + "NotRandom": false, + "feet": "5d5e7f2a86f77427997cfb80", + "isNotRandom": true + }, + "Pants_BOSS_Kaban": { + "NotRandom": false, + "feet": "64806edf77c11aeac5078e33", + "isNotRandom": true + }, + "Pants_BOSS_Kolontai": { + "NotRandom": false, + "feet": "654a2bc5ee6e547e9f6238e7", + "isNotRandom": true + }, + "Pants_BOSS_Sanitar": { + "NotRandom": false, + "feet": "5e99762586f77466320ff9a9", + "isNotRandom": true + }, + "Pants_BOSS_Shturman": { + "NotRandom": false, + "feet": "5d5e7f3c86f7742797262063", + "isNotRandom": true + }, + "Pants_BOSS_Zryachi": { + "NotRandom": false, + "feet": "6361216278f9ab270a0a48d9", + "isNotRandom": true + }, + "Pants_security_Flora": { + "NotRandom": false, + "feet": "5d5e7f8986f7742798716582", + "isNotRandom": true + }, + "Pants_security_Gorka4": { + "NotRandom": false, + "feet": "5d5e7f4986f7746956659f8a", + "isNotRandom": true + }, + "Wild_Dealmaker_feet": { + "NotRandom": false, + "feet": "5d28b3a186f7747f7e69ab8c", + "isNotRandom": true + }, + "Wild_Killa_feet": { + "NotRandom": false, + "feet": "5cdea3c47d6c8b0475341734", + "isNotRandom": true + }, + "pants_boss_tagilla": { + "NotRandom": false, + "feet": "609e86c09776a947754429b2", + "isNotRandom": true + }, + "pants_cultist_01": { + "NotRandom": false, + "feet": "5fb535bd1c69e5198e234125", + "isNotRandom": true + }, + "pants_cultist_02": { + "NotRandom": false, + "feet": "5fb535cf1c69e5198e234126", + "isNotRandom": true + }, + "scav_kit_lower_sklon": { + "NotRandom": false, + "feet": "5df8a15186f77412640e2e6a", + "isNotRandom": false + }, + "wild_feet": { + "NotRandom": false, + "feet": "5cc2e5d014c02e15d53d9c03", + "isNotRandom": false + }, + "wild_feet_1": { + "NotRandom": false, + "feet": "5cde9fb87d6c8b0474535da9", + "isNotRandom": false + }, + "wild_feet_2": { + "NotRandom": false, + "feet": "5d28af3486f774292364a6e7", + "isNotRandom": false + }, + "wild_feet_bomber": { + "NotRandom": false, + "feet": "6193be546e5968395b260157", + "isNotRandom": false + }, + "wild_feet_feldparka": { + "NotRandom": false, + "feet": "64a2e970a74bb33d140e6dc5", + "isNotRandom": false + }, + "wild_feet_scavelite_taclite": { + "NotRandom": false, + "feet": "6033a430ed2e0509b15f9033", + "isNotRandom": true + }, + "wild_feet_slimPants": { + "NotRandom": false, + "feet": "5f5e41576760b4138443b344", + "isNotRandom": false + }, + "wild_feet_sweatpants": { + "NotRandom": false, + "feet": "5f5e410c6bdad616ad46d60b", + "isNotRandom": false + }, + "wild_feet_victory": { + "NotRandom": false, + "feet": "637df25a1e688345e1097bd4", + "isNotRandom": false + }, + "wild_feet_wasatch": { + "NotRandom": false, + "feet": "5f5e41366760b4138443b343", + "isNotRandom": false + }, + "wild_pants_yellowcoat": { + "NotRandom": false, + "feet": "61922589bb2cea6f7a22d964", + "isNotRandom": false + }, + "wild_pmcBot_feet": { + "NotRandom": false, + "feet": "5d28af7886f77429275dba25", + "isNotRandom": true + }, + "wild_security_feet_1": { + "NotRandom": false, + "feet": "5d28af5386f774292364a6e8", + "isNotRandom": true + }, + "wild_security_feet_bratva_1": { + "NotRandom": false, + "feet": "65749c05e0423b9ebe0c79c7", + "isNotRandom": true + }, + "wild_security_feet_bratva_2": { + "NotRandom": false, + "feet": "65749c1fe32c4e3f7907bf47", + "isNotRandom": true + } + }, + "SavageHead": { + "DefaultUsecHead": { + "NotRandom": false, + "head": "5cde96047d6c8b20b577f016", + "isNotRandom": true + }, + "Head_BOSS_BigPIpe": { + "NotRandom": false, + "head": "6287b0d239d8207cb27d66c7", + "isNotRandom": true + }, + "Head_BOSS_Birdeye": { + "NotRandom": false, + "head": "628b57d800f171376e7b2634", + "isNotRandom": true + }, + "Head_BOSS_Blackknight": { + "NotRandom": false, + "head": "62875ad50828252c7a28b95c", + "isNotRandom": true + }, + "Head_BOSS_Glukhar": { + "NotRandom": false, + "head": "5d5e805d86f77439eb4c2d0e", + "isNotRandom": true + }, + "Head_BOSS_Kaban": { + "NotRandom": false, + "head": "64809e3077c11aeac5078e3c", + "isNotRandom": true + }, + "Head_BOSS_Kolontai": { + "NotRandom": false, + "head": "654b5ed58558fd71f97254f4", + "isNotRandom": true + }, + "Head_BOSS_Sanitar": { + "NotRandom": false, + "head": "5e99767c86f7741ac7399393", + "isNotRandom": true + }, + "Head_BOSS_Zryachi": { + "NotRandom": false, + "head": "636129784aa74b8fe30ab418", + "isNotRandom": true + }, + "Wild_Dealmaker_head": { + "NotRandom": false, + "head": "5d28b01486f77429242fc898", + "isNotRandom": true + }, + "Wild_Head_nonMesh": { + "NotRandom": false, + "head": "5d5f8ba486f77431254e7fd2", + "isNotRandom": true + }, + "Wild_Killa_head": { + "NotRandom": false, + "head": "5d28b03e86f7747f7e69ab8a", + "isNotRandom": true + }, + "bear_head": { + "NotRandom": false, + "head": "5cc084dd14c02e000b0550a3", + "isNotRandom": true + }, + "bear_head_1": { + "NotRandom": false, + "head": "5cc084dd14c02e000b0550a3", + "isNotRandom": true + }, + "head_cultist_01": { + "NotRandom": false, + "head": "5fb5297a0359a84b77066e56", + "isNotRandom": true + }, + "head_cultist_02": { + "NotRandom": false, + "head": "5fb52a3a1c69e5198e234118", + "isNotRandom": true + }, + "head_cultist_03": { + "NotRandom": false, + "head": "5fb52a537b5d1342ee24bd57", + "isNotRandom": true + }, + "usec_head_1": { + "NotRandom": false, + "head": "5cc084dd14c02e000b0550a3", + "isNotRandom": true + }, + "usec_head_3": { + "NotRandom": false, + "head": "5fdb5950f5264a66150d1c6e", + "isNotRandom": true + }, + "usec_head_4": { + "NotRandom": false, + "head": "60a6aaad42fd2735e4589978", + "isNotRandom": true + }, + "usec_head_5": { + "NotRandom": false, + "head": "60a6aa8fd559ae040d0d951f", + "isNotRandom": true + }, + "wild_head_1": { + "NotRandom": false, + "head": "5cc2e4d014c02e000d0115f8", + "isNotRandom": false + }, + "wild_head_2": { + "NotRandom": false, + "head": "5cde9ff17d6c8b0474535daa", + "isNotRandom": false + }, + "wild_head_3": { + "NotRandom": false, + "head": "5d28afe786f774292668618d", + "isNotRandom": false + }, + "wild_head_drozd": { + "NotRandom": false, + "head": "5f68c4a7c174a17c0f4c8945", + "isNotRandom": false + }, + "wild_head_misha": { + "NotRandom": false, + "head": "5f68c4c217d579077152a252", + "isNotRandom": false + }, + "wild_security_head_den": { + "NotRandom": false, + "head": "65749be133fdc9c0cf06d3c8", + "isNotRandom": true + }, + "wild_security_head_gus": { + "NotRandom": false, + "head": "65749bcce32c4e3f7907bf44", + "isNotRandom": true + } + } + }, + "DiscardLimitsEnabled": true, + "EventSettings": { + "EventActive": false, + "EventTime": 390, + "EventWeather": { + "Cloudness": 1, + "Hour": 21, + "Minute": 0, + "Rain": 0.1, + "RainRandomness": 0, + "ScaterringFogDensity": 0.02, + "TopWindDirection": { + "x": -1, + "y": 0, + "z": 0 + }, + "Wind": 4, + "WindDirection": 8 + }, + "ExitTimeMultiplier": 3, + "StaminaMultiplier": 3, + "SummonFailedWeather": { + "Cloudness": 0, + "Rain": 0, + "RainRandomness": 0, + "ScaterringFogDensity": 0.001, + "TopWindDirection": { + "x": -1, + "y": 0, + "z": 0 + }, + "Wind": 0, + "WindDirection": 8 + }, + "SummonSuccessWeather": { + "Cloudness": 0, + "Hour": 6, + "Minute": 10, + "Rain": 0.1, + "RainRandomness": 0, + "ScaterringFogDensity": 0.05, + "TopWindDirection": { + "x": -1, + "y": 0, + "z": 0 + }, + "Wind": 0.2, + "WindDirection": 8 + }, + "WeatherChangeTime": 20 + }, + "EventType": [ + "None" + ], + "FavoriteItemsSettings": { + "PlaceOfFameMaxItemsCount": 7, + "WeaponStandMaxItemsCount": 3 + }, + "FenceSettings": { + "FenceId": "579dc571d53a0658a154fbec", + "Levels": { + "-1": { + "AvailableExits": 3, + "BotApplySilenceChance": 40, + "BotFollowChance": 40, + "BotGetInCoverChance": 40, + "BotHelpChance": 40, + "BotSpreadoutChance": 40, + "BotStopChance": 40, + "CanInteractWithBtr": true, + "DeliveryGridSize": { + "x": 3, + "y": 2, + "z": 0 + }, + "ExfiltrationPriceModifier": 1.25, + "HostileBosses": true, + "HostileScavs": false, + "PaidExitCostModifier": 1.25, + "PriceModCleanUp": -2000, + "PriceModDelivery": -500, + "PriceModTaxi": -200, + "PriceModifier": 1.05, + "SavageCooldownModifier": 1.25, + "ScavAttackSupport": false, + "ScavCaseTimeModifier": 1.25, + "ScavEquipmentSpawnChanceModifier": 0 + }, + "-2": { + "AvailableExits": 2, + "BotApplySilenceChance": 30, + "BotFollowChance": 30, + "BotGetInCoverChance": 30, + "BotHelpChance": 30, + "BotSpreadoutChance": 30, + "BotStopChance": 30, + "CanInteractWithBtr": true, + "DeliveryGridSize": { + "x": 2, + "y": 2, + "z": 0 + }, + "ExfiltrationPriceModifier": 1.5, + "HostileBosses": true, + "HostileScavs": false, + "PaidExitCostModifier": 1.5, + "PriceModCleanUp": -4000, + "PriceModDelivery": -800, + "PriceModTaxi": -400, + "PriceModifier": 1.08, + "SavageCooldownModifier": 1.5, + "ScavAttackSupport": false, + "ScavCaseTimeModifier": 1.5, + "ScavEquipmentSpawnChanceModifier": -1 + }, + "-3": { + "AvailableExits": 2, + "BotApplySilenceChance": 20, + "BotFollowChance": 20, + "BotGetInCoverChance": 20, + "BotHelpChance": 20, + "BotSpreadoutChance": 20, + "BotStopChance": 20, + "CanInteractWithBtr": true, + "DeliveryGridSize": { + "x": 3, + "y": 1, + "z": 0 + }, + "ExfiltrationPriceModifier": 2, + "HostileBosses": true, + "HostileScavs": false, + "PaidExitCostModifier": 2, + "PriceModCleanUp": -6000, + "PriceModDelivery": -1200, + "PriceModTaxi": -600, + "PriceModifier": 1.1, + "SavageCooldownModifier": 2, + "ScavAttackSupport": false, + "ScavCaseTimeModifier": 2, + "ScavEquipmentSpawnChanceModifier": -2 + }, + "-4": { + "AvailableExits": 2, + "BotApplySilenceChance": 15, + "BotFollowChance": 15, + "BotGetInCoverChance": 15, + "BotHelpChance": 15, + "BotSpreadoutChance": 15, + "BotStopChance": 15, + "CanInteractWithBtr": true, + "DeliveryGridSize": { + "x": 2, + "y": 1, + "z": 0 + }, + "ExfiltrationPriceModifier": 2.5, + "HostileBosses": true, + "HostileScavs": false, + "PaidExitCostModifier": 2.5, + "PriceModCleanUp": -8000, + "PriceModDelivery": -1600, + "PriceModTaxi": -800, + "PriceModifier": 1.12, + "SavageCooldownModifier": 2.5, + "ScavAttackSupport": false, + "ScavCaseTimeModifier": 3, + "ScavEquipmentSpawnChanceModifier": -2 + }, + "-5": { + "AvailableExits": 1, + "BotApplySilenceChance": 10, + "BotFollowChance": 10, + "BotGetInCoverChance": 10, + "BotHelpChance": 10, + "BotSpreadoutChance": 10, + "BotStopChance": 10, + "CanInteractWithBtr": true, + "DeliveryGridSize": { + "x": 1, + "y": 1, + "z": 0 + }, + "ExfiltrationPriceModifier": 3, + "HostileBosses": true, + "HostileScavs": false, + "PaidExitCostModifier": 3, + "PriceModCleanUp": -10000, + "PriceModDelivery": -2000, + "PriceModTaxi": -1000, + "PriceModifier": 1.15, + "SavageCooldownModifier": 3, + "ScavAttackSupport": false, + "ScavCaseTimeModifier": 3.5, + "ScavEquipmentSpawnChanceModifier": -3 + }, + "-6": { + "AvailableExits": 1, + "BotApplySilenceChance": 5, + "BotFollowChance": 5, + "BotGetInCoverChance": 5, + "BotHelpChance": 5, + "BotSpreadoutChance": 5, + "BotStopChance": 5, + "CanInteractWithBtr": false, + "DeliveryGridSize": { + "x": 1, + "y": 1, + "z": 0 + }, + "ExfiltrationPriceModifier": 3.5, + "HostileBosses": true, + "HostileScavs": true, + "PaidExitCostModifier": 3.5, + "PriceModCleanUp": -10000, + "PriceModDelivery": -2000, + "PriceModTaxi": -1000, + "PriceModifier": 1.17, + "SavageCooldownModifier": 4, + "ScavAttackSupport": false, + "ScavCaseTimeModifier": 5.5, + "ScavEquipmentSpawnChanceModifier": -4 + }, + "-7": { + "AvailableExits": 1, + "BotApplySilenceChance": 0, + "BotFollowChance": 0, + "BotGetInCoverChance": 0, + "BotHelpChance": 0, + "BotSpreadoutChance": 0, + "BotStopChance": 0, + "CanInteractWithBtr": false, + "DeliveryGridSize": { + "x": 1, + "y": 1, + "z": 0 + }, + "ExfiltrationPriceModifier": 4, + "HostileBosses": true, + "HostileScavs": true, + "PaidExitCostModifier": 4, + "PriceModCleanUp": -10000, + "PriceModDelivery": -2000, + "PriceModTaxi": -1000, + "PriceModifier": 1.2, + "SavageCooldownModifier": 6, + "ScavAttackSupport": false, + "ScavCaseTimeModifier": 9, + "ScavEquipmentSpawnChanceModifier": -5 + }, + "0": { + "AvailableExits": 3, + "BotApplySilenceChance": 50, + "BotFollowChance": 50, + "BotGetInCoverChance": 50, + "BotHelpChance": 50, + "BotSpreadoutChance": 50, + "BotStopChance": 50, + "CanInteractWithBtr": true, + "DeliveryGridSize": { + "x": 5, + "y": 2, + "z": 0 + }, + "ExfiltrationPriceModifier": 1, + "HostileBosses": true, + "HostileScavs": false, + "PaidExitCostModifier": 1, + "PriceModCleanUp": 0, + "PriceModDelivery": 0, + "PriceModTaxi": 0, + "PriceModifier": 1, + "SavageCooldownModifier": 1, + "ScavAttackSupport": false, + "ScavCaseTimeModifier": 1, + "ScavEquipmentSpawnChanceModifier": 0 + }, + "1": { + "AvailableExits": 4, + "BotApplySilenceChance": 55, + "BotFollowChance": 55, + "BotGetInCoverChance": 55, + "BotHelpChance": 55, + "BotSpreadoutChance": 55, + "BotStopChance": 55, + "CanInteractWithBtr": true, + "DeliveryGridSize": { + "x": 6, + "y": 2, + "z": 0 + }, + "ExfiltrationPriceModifier": 0.95, + "HostileBosses": true, + "HostileScavs": false, + "PaidExitCostModifier": 0.95, + "PriceModCleanUp": 1000, + "PriceModDelivery": 200, + "PriceModTaxi": 100, + "PriceModifier": 0.97, + "SavageCooldownModifier": 0.9, + "ScavAttackSupport": false, + "ScavCaseTimeModifier": 0.95, + "ScavEquipmentSpawnChanceModifier": 2 + }, + "2": { + "AvailableExits": 4, + "BotApplySilenceChance": 60, + "BotFollowChance": 60, + "BotGetInCoverChance": 60, + "BotHelpChance": 60, + "BotSpreadoutChance": 60, + "BotStopChance": 60, + "CanInteractWithBtr": true, + "DeliveryGridSize": { + "x": 5, + "y": 3, + "z": 0 + }, + "ExfiltrationPriceModifier": 0.9, + "HostileBosses": true, + "HostileScavs": false, + "PaidExitCostModifier": 0.9, + "PriceModCleanUp": 2000, + "PriceModDelivery": 400, + "PriceModTaxi": 200, + "PriceModifier": 0.95, + "SavageCooldownModifier": 0.8, + "ScavAttackSupport": false, + "ScavCaseTimeModifier": 0.9, + "ScavEquipmentSpawnChanceModifier": 6 + }, + "3": { + "AvailableExits": 4, + "BotApplySilenceChance": 70, + "BotFollowChance": 70, + "BotGetInCoverChance": 70, + "BotHelpChance": 70, + "BotSpreadoutChance": 70, + "BotStopChance": 70, + "CanInteractWithBtr": true, + "DeliveryGridSize": { + "x": 6, + "y": 3, + "z": 0 + }, + "ExfiltrationPriceModifier": 0.7, + "HostileBosses": true, + "HostileScavs": false, + "PaidExitCostModifier": 0.8, + "PriceModCleanUp": 4000, + "PriceModDelivery": 800, + "PriceModTaxi": 400, + "PriceModifier": 0.92, + "SavageCooldownModifier": 0.7, + "ScavAttackSupport": false, + "ScavCaseTimeModifier": 0.8, + "ScavEquipmentSpawnChanceModifier": 9 + }, + "4": { + "AvailableExits": 5, + "BotApplySilenceChance": 80, + "BotFollowChance": 80, + "BotGetInCoverChance": 80, + "BotHelpChance": 80, + "BotSpreadoutChance": 80, + "BotStopChance": 80, + "CanInteractWithBtr": true, + "DeliveryGridSize": { + "x": 5, + "y": 4, + "z": 0 + }, + "ExfiltrationPriceModifier": 0.5, + "HostileBosses": true, + "HostileScavs": false, + "PaidExitCostModifier": 0.7, + "PriceModCleanUp": 6000, + "PriceModDelivery": 1200, + "PriceModTaxi": 600, + "PriceModifier": 0.9, + "SavageCooldownModifier": 0.6, + "ScavAttackSupport": false, + "ScavCaseTimeModifier": 0.7, + "ScavEquipmentSpawnChanceModifier": 12 + }, + "5": { + "AvailableExits": 5, + "BotApplySilenceChance": 90, + "BotFollowChance": 90, + "BotGetInCoverChance": 90, + "BotHelpChance": 90, + "BotSpreadoutChance": 90, + "BotStopChance": 90, + "CanInteractWithBtr": true, + "DeliveryGridSize": { + "x": 6, + "y": 4, + "z": 0 + }, + "ExfiltrationPriceModifier": 0.4, + "HostileBosses": true, + "HostileScavs": false, + "PaidExitCostModifier": 0.6, + "PriceModCleanUp": 8000, + "PriceModDelivery": 1600, + "PriceModTaxi": 800, + "PriceModifier": 0.85, + "SavageCooldownModifier": 0.5, + "ScavAttackSupport": false, + "ScavCaseTimeModifier": 0.6, + "ScavEquipmentSpawnChanceModifier": 15 + }, + "6": { + "AvailableExits": 6, + "BotApplySilenceChance": 100, + "BotFollowChance": 100, + "BotGetInCoverChance": 100, + "BotHelpChance": 100, + "BotSpreadoutChance": 100, + "BotStopChance": 100, + "CanInteractWithBtr": true, + "DeliveryGridSize": { + "x": 7, + "y": 4, + "z": 0 + }, + "ExfiltrationPriceModifier": 0.3, + "HostileBosses": false, + "HostileScavs": false, + "PaidExitCostModifier": 0.5, + "PriceModCleanUp": 10000, + "PriceModDelivery": 2000, + "PriceModTaxi": 1000, + "PriceModifier": 0.8, + "SavageCooldownModifier": 0.4, + "ScavAttackSupport": true, + "ScavCaseTimeModifier": 0.5, + "ScavEquipmentSpawnChanceModifier": 17 + } + }, + "paidExitStandingNumerator": 0.2 + }, + "FractureCausedByBulletHit": { + "B": 0.05, + "FunctionType": "SquareRoot", + "K": 0.3, + "Threshold": 0.3 + }, + "FractureCausedByFalling": { + "B": 0.38, + "FunctionType": "Linear", + "K": 1, + "Threshold": 0.2 + }, + "GameSearchingTimeout": 45, + "GlobalItemPriceModifier": 1, + "GlobalLootChanceModifier": 0.2, + "GraphicSettings": { + "ExperimentalFogInCity": true + }, + "HandsOverdamage": 0.7, + "Health": { + "Effects": { + "Berserk": { + "DefaultDelay": 5, + "DefaultResidueTime": 3, + "WorkingTime": 10 + }, + "BodyTemperature": { + "DefaultBuildUpTime": 15, + "DefaultResidueTime": 15, + "LoopTime": 1 + }, + "BreakPart": { + "BulletHitProbability": { + "B": 0.05, + "FunctionType": "SquareRoot", + "K": 0.3, + "Threshold": 0.3 + }, + "DefaultDelay": 5, + "DefaultResidueTime": 5, + "FallingProbability": { + "B": 0.38, + "FunctionType": "Linear", + "K": 1, + "Threshold": 0.2 + }, + "HealExperience": 30, + "OfflineDurationMax": -1, + "OfflineDurationMin": -1, + "RemovePrice": 1000, + "RemovedAfterDeath": false + }, + "ChronicStaminaFatigue": { + "EnergyRate": 0.0001, + "EnergyRatePerStack": 0.0063, + "TicksEvery": 10, + "WorkingTime": 180 + }, + "Contusion": { + "Dummy": 0 + }, + "Dehydration": { + "BleedingHealth": 0.4, + "BleedingLifeTime": 30, + "BleedingLoopTime": 6, + "DamageOnStrongDehydration": 1, + "DefaultDelay": 50, + "DefaultResidueTime": 5, + "StrongDehydrationLoopTime": 15 + }, + "Disorientation": { + "Dummy": 0 + }, + "Exhaustion": { + "Damage": 1, + "DamageLoopTime": 5, + "DefaultDelay": 30, + "DefaultResidueTime": 5 + }, + "Existence": { + "DestroyedStomachEnergyTimeFactor": 5, + "DestroyedStomachHydrationTimeFactor": 5, + "EnergyDamage": 3.2, + "EnergyLoopTime": 60, + "HydrationDamage": 2.6, + "HydrationLoopTime": 60 + }, + "Flash": { + "Dummy": 0 + }, + "Fracture": { + "BulletHitProbability": { + "B": 0.05, + "FunctionType": "SquareRoot", + "K": 0.3, + "Threshold": 0.3 + }, + "DefaultDelay": 5, + "DefaultResidueTime": 5, + "FallingProbability": { + "B": 0.38, + "FunctionType": "Linear", + "K": 1, + "Threshold": 0.2 + }, + "HealExperience": 30, + "OfflineDurationMax": -1, + "OfflineDurationMin": -1, + "RemovePrice": 1000, + "RemovedAfterDeath": false + }, + "HeavyBleeding": { + "DamageEnergy": 0.5, + "DamageHealth": 0.9, + "DamageHealthDehydrated": 0.4, + "DefaultDelay": 0.4, + "DefaultResidueTime": 0.4, + "EliteVitalityDuration": 33, + "EnergyLoopTime": 5, + "HealExperience": 40, + "HealthLoopTime": 4, + "HealthLoopTimeDehydrated": 6, + "LifeTimeDehydrated": 0, + "OfflineDurationMax": 900, + "OfflineDurationMin": 900, + "Probability": { + "B": -0.17, + "FunctionType": "Linear", + "K": 0.45, + "Threshold": 0.5 + }, + "RemovePrice": 1200, + "RemovedAfterDeath": false + }, + "Intoxication": { + "DamageHealth": 1, + "DefaultDelay": 10, + "DefaultResidueTime": 15, + "HealExperience": 150, + "HealthLoopTime": 3, + "OfflineDurationMax": -1, + "OfflineDurationMin": -1, + "RemovePrice": 42700, + "RemovedAfterDeath": false + }, + "LightBleeding": { + "DamageEnergy": 0.5, + "DamageHealth": 0.8, + "DamageHealthDehydrated": 0.4, + "DefaultDelay": 0.4, + "DefaultResidueTime": 0.4, + "EliteVitalityDuration": 22, + "EnergyLoopTime": 6, + "HealExperience": 25, + "HealthLoopTime": 6, + "HealthLoopTimeDehydrated": 6, + "LifeTimeDehydrated": 30, + "OfflineDurationMax": 600, + "OfflineDurationMin": 600, + "Probability": { + "B": -0.125, + "FunctionType": "Linear", + "K": 0.5, + "Threshold": 0.35 + }, + "RemovePrice": 400, + "RemovedAfterDeath": false + }, + "LowEdgeHealth": { + "DefaultDelay": 0.4, + "DefaultResidueTime": 5, + "StartCommonHealth": 130 + }, + "MedEffect": { + "DrinkStartDelay": 2, + "DrugsStartDelay": 0, + "FoodStartDelay": 1, + "LoopTime": 0.4, + "MedKitStartDelay": 2, + "MedicalStartDelay": 0, + "StartDelay": 0, + "StimulatorStartDelay": 0 + }, + "MildMusclePain": { + "GymEffectivity": 0.5, + "OfflineDurationMax": -1, + "OfflineDurationMin": -1, + "TraumaChance": 0 + }, + "Pain": { + "HealExperience": 20, + "TremorDelay": 30 + }, + "PainKiller": { + "Dummy": 0 + }, + "RadExposure": { + "Damage": 1, + "DamageLoopTime": 2 + }, + "Regeneration": { + "BodyHealth": { + "Chest": { + "Value": 1.4 + }, + "Head": { + "Value": 0.6125 + }, + "LeftArm": { + "Value": 1.05 + }, + "LeftLeg": { + "Value": 1.1375 + }, + "RightArm": { + "Value": 1.05 + }, + "RightLeg": { + "Value": 1.1375 + }, + "Stomach": { + "Value": 1.225 + } + }, + "Energy": 1, + "Hydration": 1, + "Influences": { + "Fracture": { + "EnergySlowDownPercentage": 0, + "HealthSlowDownPercentage": 0, + "HydrationSlowDownPercentage": 0 + }, + "HeavyBleeding": { + "EnergySlowDownPercentage": 0, + "HealthSlowDownPercentage": 100, + "HydrationSlowDownPercentage": 0 + }, + "Intoxication": { + "EnergySlowDownPercentage": 0, + "HealthSlowDownPercentage": 0, + "HydrationSlowDownPercentage": 0 + }, + "LightBleeding": { + "EnergySlowDownPercentage": 0, + "HealthSlowDownPercentage": 100, + "HydrationSlowDownPercentage": 0 + }, + "RadExposure": { + "EnergySlowDownPercentage": 0, + "HealthSlowDownPercentage": 0, + "HydrationSlowDownPercentage": 0 + } + }, + "LoopTime": 3, + "MinimumHealthPercentage": 30 + }, + "SandingScreen": { + "Dummy": 0 + }, + "SevereMusclePain": { + "GymEffectivity": 1, + "OfflineDurationMax": -1, + "OfflineDurationMin": -1, + "TraumaChance": 10 + }, + "Stimulator": { + "BuffLoopTime": 0.2, + "Buffs": { + "BuffsAdrenaline": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "Endurance", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "Strength", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "RecoilControl", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "StressResistance", + "Value": -10 + }, + { + "AbsoluteValue": true, + "BuffType": "HealthRate", + "Chance": 1, + "Delay": 1, + "Duration": 15, + "SkillName": "", + "Value": 4 + }, + { + "AbsoluteValue": true, + "BuffType": "HydrationRate", + "Chance": 1, + "Delay": 50, + "Duration": 30, + "SkillName": "", + "Value": -1 + }, + { + "AbsoluteValue": true, + "BuffType": "EnergyRate", + "Chance": 1, + "Delay": 50, + "Duration": 30, + "SkillName": "", + "Value": -0.8 + } + ], + "BuffsGoldenStarBalm": [ + { + "AbsoluteValue": true, + "BuffType": "EnergyRate", + "Chance": 1, + "Delay": 1, + "Duration": 5, + "SkillName": "", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "HydrationRate", + "Chance": 1, + "Delay": 1, + "Duration": 5, + "SkillName": "", + "Value": 1 + }, + { + "AbsoluteValue": false, + "BuffType": "Contusion", + "Chance": 1, + "Delay": 1, + "Duration": 5, + "SkillName": "", + "Value": 1 + } + ], + "BuffsPropital": [ + { + "AbsoluteValue": true, + "BuffType": "HealthRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "Metabolism", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "Health", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "Vitality", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "HandsTremor", + "Chance": 1, + "Delay": 270, + "Duration": 30, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": true, + "BuffType": "QuantumTunnelling", + "Chance": 1, + "Delay": 270, + "Duration": 30, + "SkillName": "", + "Value": 0 + } + ], + "BuffsSJ1TGLabs": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 180, + "SkillName": "Endurance", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 180, + "SkillName": "Strength", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 180, + "SkillName": "StressResistance", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "EnergyRate", + "Chance": 1, + "Delay": 100, + "Duration": 200, + "SkillName": "", + "Value": -0.25 + }, + { + "AbsoluteValue": true, + "BuffType": "HydrationRate", + "Chance": 1, + "Delay": 100, + "Duration": 200, + "SkillName": "", + "Value": -0.3 + } + ], + "BuffsSJ6TGLabs": [ + { + "AbsoluteValue": true, + "BuffType": "MaxStamina", + "Chance": 1, + "Delay": 1, + "Duration": 240, + "SkillName": "", + "Value": 30 + }, + { + "AbsoluteValue": true, + "BuffType": "StaminaRate", + "Chance": 1, + "Delay": 1, + "Duration": 240, + "SkillName": "", + "Value": 2 + }, + { + "AbsoluteValue": true, + "BuffType": "HandsTremor", + "Chance": 1, + "Delay": 200, + "Duration": 40, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": true, + "BuffType": "QuantumTunnelling", + "Chance": 1, + "Delay": 200, + "Duration": 40, + "SkillName": "", + "Value": 0 + } + ], + "BuffsZagustin": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 180, + "SkillName": "Vitality", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 180, + "SkillName": "Metabolism", + "Value": -5 + }, + { + "AbsoluteValue": true, + "BuffType": "RemoveAllBloodLosses", + "Chance": 1, + "Delay": 0, + "Duration": 180, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": true, + "BuffType": "HandsTremor", + "Chance": 1, + "Delay": 170, + "Duration": 40, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": true, + "BuffType": "HydrationRate", + "Chance": 1, + "Delay": 170, + "Duration": 40, + "SkillName": "", + "Value": -1.4 + } + ], + "Buffs_3bTG": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 240, + "SkillName": "Attention", + "Value": 30 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 240, + "SkillName": "Perception", + "Value": 30 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 240, + "SkillName": "Strength", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "StaminaRate", + "Chance": 1, + "Delay": 1, + "Duration": 240, + "SkillName": "", + "Value": 1 + }, + { + "AbsoluteValue": false, + "BuffType": "HandsTremor", + "Chance": 1, + "Delay": 220, + "Duration": 45, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": true, + "BuffType": "EnergyRate", + "Chance": 1, + "Delay": 120, + "Duration": 120, + "SkillName": "", + "Value": -0.25 + } + ], + "Buffs_AHF1M": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "Health", + "Value": 5 + }, + { + "AbsoluteValue": false, + "BuffType": "RemoveAllBloodLosses", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": true, + "BuffType": "HydrationRate", + "Chance": 1, + "Delay": 1, + "Duration": 120, + "SkillName": "", + "Value": -0.3 + } + ], + "Buffs_Antidote": [ + { + "AbsoluteValue": true, + "BuffType": "Antidote", + "Chance": 1, + "Delay": 6, + "Duration": 60, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 6, + "Duration": 60, + "SkillName": "Health", + "Value": -5 + } + ], + "Buffs_BodyTemperature": [ + { + "AbsoluteValue": true, + "BuffType": "BodyTemperature", + "Chance": 1, + "Delay": 6, + "Duration": 300, + "SkillName": "", + "Value": -7 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 6, + "Duration": 300, + "SkillName": "Metabolism", + "Value": -20 + }, + { + "AbsoluteValue": true, + "BuffType": "HealthRate", + "Chance": 1, + "Delay": 6, + "Duration": 420, + "SkillName": "", + "Value": -0.1 + }, + { + "AbsoluteValue": false, + "BuffType": "HandsTremor", + "Chance": 1, + "Delay": 6, + "Duration": 420, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": false, + "BuffType": "Pain", + "Chance": 1, + "Delay": 300, + "Duration": 120, + "SkillName": "", + "Value": 0 + } + ], + "Buffs_KultistsToxin": [ + { + "AbsoluteValue": true, + "BuffType": "UnknownToxin", + "Chance": 1, + "Delay": 6, + "Duration": -1, + "SkillName": "", + "Value": 0 + } + ], + "Buffs_L1": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 120, + "SkillName": "Endurance", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 120, + "SkillName": "Strength", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "MaxStamina", + "Chance": 1, + "Delay": 1, + "Duration": 120, + "SkillName": "", + "Value": 30 + }, + { + "AbsoluteValue": true, + "BuffType": "HydrationRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": -0.45 + }, + { + "AbsoluteValue": true, + "BuffType": "EnergyRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": -0.45 + } + ], + "Buffs_MULE": [ + { + "AbsoluteValue": false, + "BuffType": "WeightLimit", + "Chance": 1, + "Delay": 1, + "Duration": 900, + "SkillName": "", + "Value": 0.5 + }, + { + "AbsoluteValue": true, + "BuffType": "HealthRate", + "Chance": 1, + "Delay": 1, + "Duration": 900, + "SkillName": "", + "Value": -0.1 + } + ], + "Buffs_Meldonin": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 900, + "SkillName": "Strength", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 900, + "SkillName": "Endurance", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "StaminaRate", + "Chance": 1, + "Delay": 1, + "Duration": 900, + "SkillName": "", + "Value": 0.5 + }, + { + "AbsoluteValue": true, + "BuffType": "HydrationRate", + "Chance": 1, + "Delay": 30, + "Duration": 900, + "SkillName": "", + "Value": -0.1 + }, + { + "AbsoluteValue": true, + "BuffType": "EnergyRate", + "Chance": 1, + "Delay": 30, + "Duration": 900, + "SkillName": "", + "Value": -0.1 + } + ], + "Buffs_Obdolbos": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 0.25, + "Delay": 0, + "Duration": 600, + "SkillName": "Endurance", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 0.25, + "Delay": 0, + "Duration": 600, + "SkillName": "Strength", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 0.25, + "Delay": 0, + "Duration": 600, + "SkillName": "Intellect", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 0.25, + "Delay": 0, + "Duration": 600, + "SkillName": "Attention", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 0.25, + "Delay": 0, + "Duration": 600, + "SkillName": "StressResistance", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 0.25, + "Delay": 0, + "Duration": 600, + "SkillName": "Charisma", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "MaxStamina", + "Chance": 0.25, + "Delay": 0, + "Duration": 600, + "SkillName": "", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "HealthRate", + "Chance": 0.25, + "Delay": 0, + "Duration": 600, + "SkillName": "", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "StaminaRate", + "Chance": 0.25, + "Delay": 0, + "Duration": 600, + "SkillName": "", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "WeightLimit", + "Chance": 0.25, + "Delay": 0, + "Duration": 600, + "SkillName": "", + "Value": 0.1 + }, + { + "AbsoluteValue": false, + "BuffType": "DamageModifier", + "Chance": 0.25, + "Delay": 0, + "Duration": 600, + "SkillName": "", + "Value": 0.2 + }, + { + "AbsoluteValue": false, + "BuffType": "HandsTremor", + "Chance": 0.25, + "Delay": 0, + "Duration": 600, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": true, + "BuffType": "HydrationRate", + "Chance": 0.25, + "Delay": 0, + "Duration": 600, + "SkillName": "", + "Value": -1 + }, + { + "AbsoluteValue": true, + "BuffType": "EnergyRate", + "Chance": 0.25, + "Delay": 0, + "Duration": 600, + "SkillName": "", + "Value": -1 + }, + { + "AbsoluteValue": true, + "BuffType": "HealthRate", + "Chance": 0.25, + "Delay": 0, + "Duration": 600, + "SkillName": "", + "Value": -600 + } + ], + "Buffs_Obdolbos2": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 0, + "Duration": 1800, + "SkillName": "Endurance", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 0, + "Duration": 1800, + "SkillName": "Strength", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 0, + "Duration": 1800, + "SkillName": "Attention", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 0, + "Duration": 1800, + "SkillName": "Perception", + "Value": 20 + }, + { + "AbsoluteValue": false, + "BuffType": "WeightLimit", + "Chance": 1, + "Delay": 0, + "Duration": 1800, + "SkillName": "", + "Value": 0.45 + }, + { + "AbsoluteValue": true, + "BuffType": "MaxStamina", + "Chance": 1, + "Delay": 0, + "Duration": 1800, + "SkillName": "", + "Value": -20 + }, + { + "AbsoluteValue": true, + "BuffType": "StaminaRate", + "Chance": 1, + "Delay": 0, + "Duration": 1800, + "SkillName": "", + "Value": -1 + }, + { + "AbsoluteValue": true, + "BuffType": "HealthRate", + "Chance": 1, + "Delay": 0, + "Duration": 1800, + "SkillName": "", + "Value": -1 + } + ], + "Buffs_P22": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "StressResistance", + "Value": 30 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "Health", + "Value": 30 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "Vitality", + "Value": 30 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 65, + "Duration": 60, + "SkillName": "Endurance", + "Value": -10 + }, + { + "AbsoluteValue": true, + "BuffType": "StaminaRate", + "Chance": 1, + "Delay": 65, + "Duration": 60, + "SkillName": "", + "Value": -0.8 + } + ], + "Buffs_PNB": [ + { + "AbsoluteValue": true, + "BuffType": "HealthRate", + "Chance": 1, + "Delay": 1, + "Duration": 40, + "SkillName": "", + "Value": 3 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 40, + "SkillName": "Strength", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 41, + "Duration": 180, + "SkillName": "Health", + "Value": -20 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 41, + "Duration": 180, + "SkillName": "Vitality", + "Value": -20 + }, + { + "AbsoluteValue": true, + "BuffType": "HandsTremor", + "Chance": 1, + "Delay": 41, + "Duration": 20, + "SkillName": "", + "Value": 0 + } + ], + "Buffs_Perfotoran": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "Metabolism", + "Value": 5 + }, + { + "AbsoluteValue": true, + "BuffType": "Antidote", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": true, + "BuffType": "RemoveAllBloodLosses", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": true, + "BuffType": "HealthRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": 1.5 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 60, + "Duration": 60, + "SkillName": "Health", + "Value": -15 + }, + { + "AbsoluteValue": true, + "BuffType": "EnergyRate", + "Chance": 1, + "Delay": 60, + "Duration": 60, + "SkillName": "", + "Value": -1.1 + } + ], + "Buffs_SJ12_TGLabs": [ + { + "AbsoluteValue": true, + "BuffType": "BodyTemperature", + "Chance": 1, + "Delay": 1, + "Duration": 600, + "SkillName": "", + "Value": -4 + }, + { + "AbsoluteValue": true, + "BuffType": "EnergyRate", + "Chance": 1, + "Delay": 1, + "Duration": 600, + "SkillName": "", + "Value": 0.05 + }, + { + "AbsoluteValue": true, + "BuffType": "HydrationRate", + "Chance": 1, + "Delay": 1, + "Duration": 600, + "SkillName": "", + "Value": 0.05 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 600, + "SkillName": "Perception", + "Value": 30 + }, + { + "AbsoluteValue": true, + "BuffType": "BodyTemperature", + "Chance": 1, + "Delay": 606, + "Duration": 300, + "SkillName": "", + "Value": 6 + } + ], + "Buffs_Trimadol": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 180, + "SkillName": "Endurance", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 180, + "SkillName": "Strength", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 180, + "SkillName": "Attention", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 180, + "SkillName": "StressResistance", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "MaxStamina", + "Chance": 1, + "Delay": 1, + "Duration": 180, + "SkillName": "", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "StaminaRate", + "Chance": 1, + "Delay": 1, + "Duration": 180, + "SkillName": "", + "Value": 3 + }, + { + "AbsoluteValue": true, + "BuffType": "EnergyRate", + "Chance": 1, + "Delay": 1, + "Duration": 180, + "SkillName": "", + "Value": -0.5 + }, + { + "AbsoluteValue": true, + "BuffType": "HydrationRate", + "Chance": 1, + "Delay": 1, + "Duration": 180, + "SkillName": "", + "Value": -0.5 + } + ], + "Buffs_drink_aquamari": [ + { + "AbsoluteValue": true, + "BuffType": "MaxStamina", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "StaminaRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "", + "Value": 1 + } + ], + "Buffs_drink_hotrod": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "Endurance", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "Strength", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "MagDrills", + "Value": 1 + } + ], + "Buffs_drink_jack": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 210, + "SkillName": "StressResistance", + "Value": 2 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 210, + "SkillName": "Memory", + "Value": -3 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 210, + "SkillName": "Health", + "Value": -2 + }, + { + "AbsoluteValue": true, + "BuffType": "HandsTremor", + "Chance": 1, + "Delay": 220, + "Duration": 60, + "SkillName": "", + "Value": 0 + } + ], + "Buffs_drink_juice_army": [ + { + "AbsoluteValue": true, + "BuffType": "EnergyRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": 0.2 + } + ], + "Buffs_drink_maxenergy": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "Endurance", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "StressResistance", + "Value": -1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "MagDrills", + "Value": 1 + } + ], + "Buffs_drink_milk": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "Immunity", + "Value": 1 + } + ], + "Buffs_drink_moonshine": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 500, + "SkillName": "StressResistance", + "Value": 3 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 500, + "SkillName": "Memory", + "Value": -5 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 500, + "SkillName": "Health", + "Value": -1 + }, + { + "AbsoluteValue": true, + "BuffType": "HandsTremor", + "Chance": 1, + "Delay": 510, + "Duration": 150, + "SkillName": "", + "Value": 0 + } + ], + "Buffs_drink_purewater": [ + { + "AbsoluteValue": true, + "BuffType": "HealthRate", + "Chance": 1, + "Delay": 3, + "Duration": 60, + "SkillName": "", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 600, + "SkillName": "Endurance", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 600, + "SkillName": "Strength", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 600, + "SkillName": "Vitality", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 600, + "SkillName": "Health", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 600, + "SkillName": "StressResistance", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 600, + "SkillName": "Metabolism", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 600, + "SkillName": "Immunity", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 600, + "SkillName": "Intellect", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 600, + "SkillName": "Memory", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 600, + "SkillName": "Perception", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 600, + "SkillName": "Attention", + "Value": 1 + } + ], + "Buffs_drink_tarcola": [ + { + "AbsoluteValue": true, + "BuffType": "EnergyRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": 0.1 + } + ], + "Buffs_drink_vodka": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 250, + "SkillName": "StressResistance", + "Value": 5 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 250, + "SkillName": "Memory", + "Value": -10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 250, + "SkillName": "Health", + "Value": -5 + }, + { + "AbsoluteValue": true, + "BuffType": "HandsTremor", + "Chance": 1, + "Delay": 255, + "Duration": 120, + "SkillName": "", + "Value": 0 + } + ], + "Buffs_drink_vodka_BAD": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 250, + "SkillName": "StressResistance", + "Value": 5 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 250, + "SkillName": "Memory", + "Value": -10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 250, + "SkillName": "Health", + "Value": -5 + }, + { + "AbsoluteValue": true, + "BuffType": "HandsTremor", + "Chance": 1, + "Delay": 255, + "Duration": 120, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 0.2, + "Delay": 5, + "Duration": 250, + "SkillName": "Endurance", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 0.2, + "Delay": 5, + "Duration": 250, + "SkillName": "Strength", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 0.2, + "Delay": 5, + "Duration": 250, + "SkillName": "Charisma", + "Value": 10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 0.2, + "Delay": 5, + "Duration": 250, + "SkillName": "Intellect", + "Value": -10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 0.2, + "Delay": 5, + "Duration": 250, + "SkillName": "Attention", + "Value": -10 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 0.2, + "Delay": 5, + "Duration": 250, + "SkillName": "Metabolism", + "Value": -10 + }, + { + "AbsoluteValue": true, + "BuffType": "MaxStamina", + "Chance": 0.2, + "Delay": 5, + "Duration": 250, + "SkillName": "", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "StaminaRate", + "Chance": 0.2, + "Delay": 5, + "Duration": 250, + "SkillName": "", + "Value": -1 + }, + { + "AbsoluteValue": true, + "BuffType": "HydrationRate", + "Chance": 0.2, + "Delay": 5, + "Duration": 250, + "SkillName": "", + "Value": -0.3 + }, + { + "AbsoluteValue": false, + "BuffType": "WeightLimit", + "Chance": 0.2, + "Delay": 5, + "Duration": 250, + "SkillName": "", + "Value": -0.3 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 0.05, + "Delay": 5, + "Duration": 250, + "SkillName": "StressResistance", + "Value": 50 + }, + { + "AbsoluteValue": true, + "BuffType": "HealthRate", + "Chance": 0.05, + "Delay": 5, + "Duration": 15, + "SkillName": "", + "Value": -1211 + } + ], + "Buffs_drink_water": [ + { + "AbsoluteValue": true, + "BuffType": "MaxStamina", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "", + "Value": 5 + } + ], + "Buffs_food_alyonka": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 120, + "SkillName": "Attention", + "Value": 2 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 120, + "SkillName": "StressResistance", + "Value": 2 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 120, + "SkillName": "Intellect", + "Value": 2 + } + ], + "Buffs_food_beer": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 5, + "Duration": 120, + "SkillName": "StressResistance", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 5, + "Duration": 120, + "SkillName": "Charisma", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 5, + "Duration": 120, + "SkillName": "Attention", + "Value": -3 + } + ], + "Buffs_food_borodinskiye": [ + { + "AbsoluteValue": true, + "BuffType": "HydrationRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": -0.2 + } + ], + "Buffs_food_condensed_milk": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "Intellect", + "Value": 3 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "Attention", + "Value": 3 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "StressResistance", + "Value": 3 + } + ], + "Buffs_food_emelya": [ + { + "AbsoluteValue": true, + "BuffType": "HydrationRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": -0.2 + } + ], + "Buffs_food_mayonez": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "Metabolism", + "Value": -3 + } + ], + "Buffs_food_mre": [ + { + "AbsoluteValue": true, + "BuffType": "EnergyRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "", + "Value": 0.1 + } + ], + "Buffs_food_slippers": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "Intellect", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "Attention", + "Value": 1 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "StressResistance", + "Value": 1 + } + ], + "Buffs_food_sugar": [ + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 300, + "SkillName": "Intellect", + "Value": 1 + } + ], + "Buffs_hultafors": [ + { + "AbsoluteValue": false, + "AppliesTo": [], + "BuffType": "Contusion", + "Chance": 1, + "Delay": 0, + "Duration": 20, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": false, + "AppliesTo": [], + "BuffType": "Fracture", + "Chance": 1, + "Delay": 0, + "Duration": 0, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": false, + "AppliesTo": [], + "BuffType": "Pain", + "Chance": 1, + "Delay": 0, + "Duration": 20, + "SkillName": "", + "Value": 0 + } + ], + "Buffs_knife": [ + { + "AbsoluteValue": false, + "BuffType": "DamageModifier", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": 0.5 + }, + { + "AbsoluteValue": true, + "BuffType": "HealthRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": -0.5 + }, + { + "AbsoluteValue": false, + "BuffType": "Pain", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": false, + "BuffType": "QuantumTunnelling", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": false, + "BuffType": "HandsTremor", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": 0 + } + ], + "Buffs_melee_bleed": [ + { + "AbsoluteValue": false, + "AppliesTo": [], + "BuffType": "HeavyBleeding", + "Chance": 0.5, + "Delay": 1, + "Duration": 0, + "SkillName": "", + "Value": 0 + }, + { + "AbsoluteValue": false, + "AppliesTo": [], + "BuffType": "LightBleeding", + "Chance": 1, + "Delay": 1, + "Duration": 0, + "SkillName": "", + "Value": 0 + } + ], + "Buffs_melee_blunt": [ + { + "AbsoluteValue": false, + "AppliesTo": [ + "Head" + ], + "BuffType": "Contusion", + "Chance": 1, + "Delay": 1, + "Duration": 100, + "SkillName": "", + "Value": 1 + }, + { + "AbsoluteValue": false, + "AppliesTo": [], + "BuffType": "Fracture", + "Chance": 1, + "Delay": 0, + "Duration": 0, + "SkillName": "", + "Value": 0 + } + ], + "BuffseTGchange": [ + { + "AbsoluteValue": true, + "BuffType": "HealthRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": 6.5 + }, + { + "AbsoluteValue": true, + "BuffType": "EnergyRate", + "Chance": 1, + "Delay": 1, + "Duration": 60, + "SkillName": "", + "Value": 0.5 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 90, + "SkillName": "Metabolism", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 1, + "Duration": 90, + "SkillName": "Immunity", + "Value": 20 + }, + { + "AbsoluteValue": true, + "BuffType": "EnergyRate", + "Chance": 1, + "Delay": 65, + "Duration": 20, + "SkillName": "", + "Value": -3 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 65, + "Duration": 60, + "SkillName": "Endurance", + "Value": -5 + }, + { + "AbsoluteValue": true, + "BuffType": "SkillRate", + "Chance": 1, + "Delay": 65, + "Duration": 60, + "SkillName": "Health", + "Value": -5 + } + ] + } + }, + "Stun": { + "Dummy": 0 + }, + "Tremor": { + "DefaultDelay": 15, + "DefaultResidueTime": 0.2 + }, + "Wound": { + "ThresholdMax": 60, + "ThresholdMin": 25, + "WorkingTime": 480 + } + }, + "Falling": { + "DamagePerMeter": 9, + "SafeHeight": 3 + }, + "HealPrice": { + "EnergyPointPrice": 0, + "HealthPointPrice": 30, + "HydrationPointPrice": 0, + "TrialLevels": 5, + "TrialRaids": 30 + }, + "ProfileHealthSettings": { + "BodyPartsSettings": { + "Chest": { + "Default": 85, + "EnvironmentDamageMultiplier": 0.25, + "Maximum": 85, + "Minimum": 0, + "OverDamageReceivedMultiplier": 0.7 + }, + "Head": { + "Default": 35, + "EnvironmentDamageMultiplier": 0.125, + "Maximum": 35, + "Minimum": 0, + "OverDamageReceivedMultiplier": 0.7 + }, + "LeftArm": { + "Default": 60, + "EnvironmentDamageMultiplier": 0.5, + "Maximum": 60, + "Minimum": 0, + "OverDamageReceivedMultiplier": 0.7 + }, + "LeftLeg": { + "Default": 65, + "EnvironmentDamageMultiplier": 0.5, + "Maximum": 65, + "Minimum": 0, + "OverDamageReceivedMultiplier": 0.7 + }, + "RightArm": { + "Default": 60, + "EnvironmentDamageMultiplier": 0.5, + "Maximum": 60, + "Minimum": 0, + "OverDamageReceivedMultiplier": 0.7 + }, + "RightLeg": { + "Default": 65, + "EnvironmentDamageMultiplier": 0.5, + "Maximum": 65, + "Minimum": 0, + "OverDamageReceivedMultiplier": 0.7 + }, + "Stomach": { + "Default": 70, + "EnvironmentDamageMultiplier": 0.17, + "Maximum": 70, + "Minimum": 0, + "OverDamageReceivedMultiplier": 0.7 + } + }, + "DefaultStimulatorBuff": "", + "HealthFactorsSettings": { + "Energy": { + "Default": 100, + "Maximum": 100, + "Minimum": 0 + }, + "Hydration": { + "Default": 100, + "Maximum": 100, + "Minimum": 0 + }, + "Poisoning": { + "Default": 0, + "Maximum": 100, + "Minimum": 0 + }, + "Radiation": { + "Default": 0, + "Maximum": 100, + "Minimum": 0 + }, + "Temperature": { + "Default": 36.6, + "Maximum": 40, + "Minimum": 28 + } + } + } + }, + "Inertia": { + "AverageRotationFrameSpan": 60, + "BaseJumpPenalty": 0.3, + "BaseJumpPenaltyDuration": 0.4, + "CrouchSpeedAccelerationRange": { + "x": 0.475, + "y": 0.75, + "z": 0 + }, + "DiagonalTime": { + "x": 1.4, + "y": 1, + "z": 0 + }, + "DurationPower": 1.07, + "ExitMovementStateSpeedThreshold": { + "x": 0.01, + "y": 0.01, + "z": 0 + }, + "FallThreshold": 0.15, + "InertiaBackwardCoef": { + "x": 0.6, + "y": 0.4, + "z": 0 + }, + "InertiaLimits": { + "x": 0, + "y": 65, + "z": 0.5 + }, + "InertiaLimitsStep": 0.025, + "InertiaTiltCurveMax": { + "x": 1, + "y": 0.06, + "z": 0 + }, + "InertiaTiltCurveMin": { + "x": 0, + "y": 0.22, + "z": 0 + }, + "MaxMovementAccelerationRangeRight": { + "x": 0.3, + "y": 1, + "z": 0 + }, + "MaxTimeWithoutInput": { + "x": 0.1, + "y": 0.3, + "z": 0 + }, + "MinDirectionBlendTime": 0.15, + "MinMovementAccelerationRangeRight": { + "x": 0.8, + "y": 1, + "z": 0 + }, + "MoveTimeRange": { + "x": 0.1, + "y": 0.45, + "z": 0 + }, + "PenaltyPower": 1.23, + "PreSprintAccelerationLimits": { + "x": 3, + "y": 1.7, + "z": 0 + }, + "ProneDirectionAccelerationRange": { + "x": 2.5, + "y": 2, + "z": 0 + }, + "ProneSpeedAccelerationRange": { + "x": 1, + "y": 1.6, + "z": 0 + }, + "SideTime": { + "x": 2, + "y": 1, + "z": 0 + }, + "SpeedInertiaAfterJump": { + "x": 1, + "y": 1.55, + "z": 0 + }, + "SpeedLimitAfterFallMax": { + "x": 4, + "y": 0, + "z": 0 + }, + "SpeedLimitAfterFallMin": { + "x": 0.3, + "y": 1, + "z": 0 + }, + "SpeedLimitDurationMax": { + "x": 2, + "y": 1.2, + "z": 0 + }, + "SpeedLimitDurationMin": { + "x": 0.3, + "y": 0.5, + "z": 0 + }, + "SprintAccelerationLimits": { + "x": 1, + "y": 0, + "z": 0 + }, + "SprintBrakeInertia": { + "x": 0, + "y": 55, + "z": 0 + }, + "SprintSpeedInertiaCurveMax": { + "x": 1.5, + "y": 0.3, + "z": 0 + }, + "SprintSpeedInertiaCurveMin": { + "x": 0.3, + "y": 1, + "z": 0 + }, + "SprintTransitionMotionPreservation": { + "x": 0.7, + "y": 0.9, + "z": 0 + }, + "TiltAcceleration": { + "x": 0, + "y": 0, + "z": 0 + }, + "TiltInertiaMaxSpeed": { + "x": 0.6, + "y": 0.5, + "z": 0 + }, + "TiltMaxSideBackSpeed": { + "x": 1.2, + "y": 0.8, + "z": 0 + }, + "TiltStartSideBackSpeed": { + "x": 0.8, + "y": 0.5, + "z": 0 + }, + "WalkInertia": { + "x": 0.05, + "y": 0.4675, + "z": 0 + }, + "WeaponFlipSpeed": { + "x": 1, + "y": 0.5, + "z": 0 + } + }, + "Insurance": { + "MaxStorageTimeInHour": 72 + }, + "ItemsCommonSettings": { + "ItemRemoveAfterInterruptionTime": 2 + }, + "LegsOverdamage": 1, + "LoadTimeSpeedProgress": 1, + "Malfunction": { + "AllowMalfForBots": false, + "AmmoFeedWt": 0.2, + "AmmoJamWt": 0.1, + "AmmoMalfChanceMult": 1, + "AmmoMisfireWt": 0.7, + "DurFeedWt": 0.1, + "DurHardSlideMaxWt": 0.8, + "DurHardSlideMinWt": 0.3, + "DurJamWt": 0.6, + "DurMisfireWt": 0.1, + "DurRangeToIgnoreMalfs": { + "x": 93, + "y": 100, + "z": 0 + }, + "DurSoftSlideWt": 0.2, + "IdleToOutSpeedMultOnMalf": 3, + "MagazineMalfChanceMult": 1, + "MalfRepairHardSlideMult": 1, + "MalfRepairOneHandBrokenMult": 0.9, + "MalfRepairTwoHandsBrokenMult": 0.8, + "OutToIdleSpeedMultForPistol": 3, + "OverheatFeedWt": 0.35, + "OverheatHardSlideMaxWt": 1.2, + "OverheatHardSlideMinWt": 0.3, + "OverheatJamWt": 0.25, + "OverheatSoftSlideWt": 0.7, + "ShowGlowAttemptsCount": 3, + "TimeToQuickdrawPistol": 5 + }, + "MarksmanAccuracy": 1.3, + "Mastering": [ + { + "Level2": 1600, + "Level3": 2000, + "Name": "M4", + "Templates": [ + "5c07c60e0db834002330051f", + "5447a9cd4bdc2dbd208b4567", + "5bb2475ed4351e00853264e3", + "5d43021ca4b9362eab4b5e25" + ] + }, + { + "Level2": 500, + "Level3": 600, + "Name": "AKM", + "Templates": [ + "59d6088586f774275f37482f", + "5a0ec13bfcdbcb00165aa685", + "59ff346386f77477562ff5e2", + "5abcbc27d8ce8700182eceeb", + "59e6687d86f77411d949b251", + "59e6152586f77473dc057aa1" + ] + }, + { + "Level2": 200, + "Level3": 300, + "Name": "SKS", + "Templates": [ + "587e02ff24597743df3deaeb", + "574d967124597745970e7c94" + ] + }, + { + "Level2": 275, + "Level3": 350, + "Name": "AKSU", + "Templates": [ + "57dc2fa62459775949412633", + "5839a40f24597726f856b511", + "583990e32459771419544dd2" + ] + }, + { + "Level2": 2000, + "Level3": 2200, + "Name": "AK74", + "Templates": [ + "5ac66cb05acfc40198510a10", + "5ac66d015acfc400180ae6e4", + "5ac66d2e5acfc43b321d4b53", + "5ac66d725acfc43b321d4b60", + "5ac66d9b5acfc4001633997a", + "6499849fc93611967b034949", + "5bf3e03b0db834001d2c4a9c", + "5ac4cd105acfc40016339859", + "5644bd2b4bdc2d3b4c8b4572", + "5bf3e0490db83400196199af", + "5ab8e9fcd8ce870019439434", + "628a60ae6b1d481ff772e9c8", + "628b5638ad252a16da6dd245", + "628b9c37a733087d0d7fe84b", + "5beed0f50db834001c062b12" + ] + }, + { + "Level2": 275, + "Level3": 500, + "Name": "VSS", + "Templates": [ + "57c44b372459772d2b39b8ce", + "57838ad32459774a17445cd2" + ] + }, + { + "Level2": 75, + "Level3": 100, + "Name": "MP443", + "Templates": [ + "576a581d2459771e7b1bc4f1" + ] + }, + { + "Level2": 150, + "Level3": 200, + "Name": "MP133", + "Templates": [ + "54491c4f4bdc2db1078b4568" + ] + }, + { + "Level2": 1500, + "Level3": 2200, + "Name": "MP153", + "Templates": [ + "56dee2bdd2720bc8328b4567", + "606dae0ab0e443224b421bb7" + ] + }, + { + "Level2": 150, + "Level3": 250, + "Name": "MR43", + "Templates": [ + "64748cb8de82c85eaf0a273a", + "5580223e4bdc2d1c128b457f" + ] + }, + { + "Level2": 75, + "Level3": 100, + "Name": "PM", + "Templates": [ + "5448bd6b4bdc2dfc2f8b4569", + "579204f224597773d619e051" + ] + }, + { + "Level2": 75, + "Level3": 100, + "Name": "PB", + "Templates": [ + "56e0598dd2720bb5668b45a6" + ] + }, + { + "Level2": 75, + "Level3": 100, + "Name": "P226", + "Templates": [ + "56d59856d2720bd8418b456a" + ] + }, + { + "Level2": 200, + "Level3": 250, + "Name": "MP5", + "Templates": [ + "5d2f0d8048f0356c925bc3b0", + "5926bb2186f7744b1c6c6e60" + ] + }, + { + "Level2": 75, + "Level3": 100, + "Name": "TT", + "Templates": [ + "571a12c42459771f627b58a0", + "5b3b713c5acfc4330140bd8d" + ] + }, + { + "Level2": 300, + "Level3": 650, + "Name": "SAIGA", + "Templates": [ + "576165642459773c7a400233" + ] + }, + { + "Level2": 175, + "Level3": 350, + "Name": "PP19", + "Templates": [ + "59984ab886f7743e98271174", + "59f9cabd86f7743a10721f46" + ] + }, + { + "Level2": 150, + "Level3": 200, + "Name": "MPX", + "Templates": [ + "58948c8e86f77409493f7266" + ] + }, + { + "Level2": 175, + "Level3": 200, + "Name": "PP-91", + "Templates": [ + "57f3c6bd24597738e730fa2f", + "57d14d2524597714373db789", + "57f4c844245977379d5c14d1" + ] + }, + { + "Level2": 100, + "Level3": 175, + "Name": "SV98", + "Templates": [ + "55801eed4bdc2d89578b4588" + ] + }, + { + "Level2": 100, + "Level3": 175, + "Name": "DVL", + "Templates": [ + "588892092459774ac91d4b11" + ] + }, + { + "Level2": 75, + "Level3": 100, + "Name": "TOZ106", + "Templates": [ + "5a38e6bac4a2826c6e06d79b" + ] + }, + { + "Level2": 175, + "Level3": 300, + "Name": "R11SRASS", + "Templates": [ + "5a367e5dc4a282000e49738f" + ] + }, + { + "Level2": 100, + "Level3": 125, + "Name": "GLOCK17", + "Templates": [ + "5a7ae0c351dfba0017554310", + "5b1fa9b25acfc40018633c01", + "63088377b5cd696784087147" + ] + }, + { + "Level2": 75, + "Level3": 100, + "Name": "APS", + "Templates": [ + "5a17f98cfcdbcb0980087290", + "5abccb7dd8ce87001773e277" + ] + }, + { + "Level2": 275, + "Level3": 400, + "Name": "M1A", + "Templates": [ + "5aafa857e5b5b00018480968" + ] + }, + { + "Level2": 100, + "Level3": 200, + "Name": "M870", + "Templates": [ + "5a7828548dc32e5a9c28b516" + ] + }, + { + "Level2": 200, + "Level3": 250, + "Name": "mosin", + "Templates": [ + "5bfd297f0db834001a669119", + "5ae08f0a5acfc408fb1398a1" + ] + }, + { + "Level2": 175, + "Level3": 300, + "Name": "SA-58", + "Templates": [ + "5b0bbe4e5acfc40dc528a72d" + ] + }, + { + "Level2": 75, + "Level3": 125, + "Name": "sr1mp", + "Templates": [ + "59f98b4986f7746f546d2cef" + ] + }, + { + "Level2": 550, + "Level3": 800, + "Name": "mp7", + "Templates": [ + "5ba26383d4351e00334c93d9", + "5bd70322209c4d00d7167b8f" + ] + }, + { + "Level2": 150, + "Level3": 200, + "Name": "r700", + "Templates": [ + "5bfea6e90db834001b7347f3" + ] + }, + { + "Level2": 75, + "Level3": 150, + "Name": "VPO101", + "Templates": [ + "5c501a4d2e221602b412b540" + ] + }, + { + "Level2": 250, + "Level3": 300, + "Name": "SVD", + "Templates": [ + "5c46fbd72e2216398b5a8c9c" + ] + }, + { + "Level2": 450, + "Level3": 600, + "Name": "MDR", + "Templates": [ + "5c488a752e221602b412af63", + "5dcbd56fdbd3d91b3e5468d5" + ] + }, + { + "Level2": 175, + "Level3": 400, + "Name": "ASH12", + "Templates": [ + "5cadfbf7ae92152ac412eeef" + ] + }, + { + "Level2": 200, + "Level3": 350, + "Name": "P90", + "Templates": [ + "5cc82d76e24e8d00134b4b83" + ] + }, + { + "Level2": 75, + "Level3": 100, + "Name": "m9", + "Templates": [ + "5cadc190ae921500103bb3b6" + ] + }, + { + "Level2": 200, + "Level3": 350, + "Name": "KS23", + "Templates": [ + "5e848cc2988a8701445df1e8" + ] + }, + { + "Level2": 125, + "Level3": 225, + "Name": "57", + "Templates": [ + "5d3eb3b0a4b93615055e84d2", + "5d67abc1a4b93614ec50137f" + ] + }, + { + "Level2": 150, + "Level3": 175, + "Name": "MP9", + "Templates": [ + "5e00903ae9dc277128008b87", + "5de7bd7bfd6b4e6e2276dc25" + ] + }, + { + "Level2": 125, + "Level3": 250, + "Name": "VPO_215", + "Templates": [ + "5de652c31b7e3716273428be" + ] + }, + { + "Level2": 75, + "Level3": 125, + "Name": "T5000", + "Templates": [ + "5df24cf80dee1b22f862e9bc" + ] + }, + { + "Level2": 350, + "Level3": 500, + "Name": "SR25", + "Templates": [ + "5df8ce05b11454561e39243b" + ] + }, + { + "Level2": 75, + "Level3": 100, + "Name": "m1911", + "Templates": [ + "5e81c3cbac2bb513793cdc75", + "5f36a0e5fbf956000b716b65" + ] + }, + { + "Level2": 175, + "Level3": 200, + "Name": "PPSH", + "Templates": [ + "5ea03f7400685063ec28bfa8" + ] + }, + { + "Level2": 250, + "Level3": 400, + "Name": "RFB", + "Templates": [ + "5f2a9575926fd9352339381f" + ] + }, + { + "Level2": 375, + "Level3": 500, + "Name": "UMP45", + "Templates": [ + "5fc3e272f8b6a877a729eac5" + ] + }, + { + "Level2": 100, + "Level3": 200, + "Name": "M590", + "Templates": [ + "5e870397991fd70db46995c8" + ] + }, + { + "Level2": 100, + "Level3": 200, + "Name": "Mk18", + "Templates": [ + "5fc22d7c187fea44d52eda44" + ] + }, + { + "Level2": 300, + "Level3": 450, + "Name": "VECTOR", + "Templates": [ + "5fb64bc92b1b027b1f50bcf2", + "5fc3f2d5900b1d5091531e57" + ] + }, + { + "Level2": 150, + "Level3": 200, + "Name": "MCX", + "Templates": [ + "5fbcc1d9016cce60e8341ab3" + ] + }, + { + "Level2": 100, + "Level3": 150, + "Name": "STM-9", + "Templates": [ + "60339954d62c9b14ed777c06" + ] + }, + { + "Level2": 75, + "Level3": 100, + "Name": "PL15", + "Templates": [ + "602a9740da11d6478d5a06dc" + ] + }, + { + "Level2": 600, + "Level3": 1300, + "Name": "MK47", + "Templates": [ + "606587252535c57a13424cfd" + ] + }, + { + "Level2": 150, + "Level3": 200, + "Name": "G28", + "Templates": [ + "6176aca650224f204c1da3fb" + ] + }, + { + "Level2": 350, + "Level3": 500, + "Name": "Mk17", + "Templates": [ + "6184055050224f204c1da540", + "618428466ef05c2ce828f218", + "6183afd850224f204c1da514", + "6165ac306ef05c2ce828ef74" + ] + }, + { + "Level2": 75, + "Level3": 100, + "Name": "USP", + "Templates": [ + "6193a720f8ee7e52e42109ed" + ] + }, + { + "Level2": 75, + "Level3": 150, + "Name": "MTS", + "Templates": [ + "60db29ce99594040e04c4a27" + ] + }, + { + "Level2": 75, + "Level3": 100, + "Name": "RHINO", + "Templates": [ + "624c2e8614da335f1e034d8c", + "61a4c8884f95bc3b2c5dc96f" + ] + }, + { + "Level2": 200, + "Level3": 250, + "Name": "G36", + "Templates": [ + "623063e994fc3f7b302a9696" + ] + }, + { + "Level2": 350, + "Level3": 450, + "Name": "M3S90", + "Templates": [ + "6259b864ebedf17603599e88" + ] + }, + { + "Level2": 75, + "Level3": 100, + "Name": "MP-18", + "Templates": [ + "61f7c9e189e6fb1a5e3ea78d" + ] + }, + { + "Level2": 150, + "Level3": 200, + "Name": "AXMC", + "Templates": [ + "627e14b21713922ded6f2c15" + ] + }, + { + "Level2": 200, + "Level3": 350, + "Name": "SR2", + "Templates": [ + "62e14904c2699c0ec93adc47" + ] + }, + { + "Level2": 350, + "Level3": 500, + "Name": "AUG", + "Templates": [ + "62e7c4fba689e8c9c50dfc38", + "63171672192e68c5460cebc5" + ] + }, + { + "Level2": 100, + "Level3": 125, + "Name": "RSH12", + "Templates": [ + "633ec7c2a6918cb895019c6c" + ] + }, + { + "Level2": 150, + "Level3": 200, + "Name": "PKM", + "Templates": [ + "64637076203536ad5600c990", + "64ca3d3954fc657e230529cc" + ] + }, + { + "Level2": 200, + "Level3": 250, + "Name": "SVT-40", + "Templates": [ + "6410733d5dd49d77bd07847e", + "643ea5b23db6f9f57107d9fd" + ] + }, + { + "Level2": 150, + "Level3": 200, + "Name": "RPD", + "Templates": [ + "6513ef33e06849f06c0957ca", + "65268d8ecb944ff1e90ea385" + ] + }, + { + "Level2": 350, + "Level3": 500, + "Name": "SPEAR", + "Templates": [ + "65290f395ae2ae97b80fdf2d" + ] + }, + { + "Level2": 275, + "Level3": 500, + "Name": "VSK94", + "Templates": [ + "644674a13d52156624001fbc", + "645e0c6b3b381ede770e1cc9" + ] + } + ], + "MaxBotsAliveOnMap": 36, + "MaxLoyaltyLevelForAll": false, + "Overheat": { + "AutoshotChance": 0.2, + "AutoshotMinOverheat": 170, + "AutoshotPossibilityDuration": 3, + "BarrelMoveMaxMult": 0, + "BarrelMoveRndDuration": 1, + "DurReduceMaxMult": 3, + "DurReduceMinMult": 1, + "EnableSlideOnMaxOverheat": true, + "FirerateOverheatBorder": 140, + "FireratePitchMult": 0.5, + "FirerateReduceMaxMult": 1.15, + "FirerateReduceMinMult": 0.85, + "FixSlideOverheat": 170, + "MaxCOIIncreaseMult": 1.5, + "MaxMalfChance": 9, + "MaxOverheat": 200, + "MaxOverheatCoolCoef": 6, + "MaxWearOnMaxOverheat": 0.7, + "MaxWearOnOverheat": 0.2, + "MinMalfChance": 0.5, + "MinOverheat": 0, + "MinWearOnMaxOverheat": 0.2, + "MinWearOnOverheat": 0.1, + "ModCoolFactor": 1, + "ModHeatFactor": 1, + "OverheatProblemsStart": 100, + "OverheatWearLimit": 0.55, + "StartSlideOverheat": 200 + }, + "RagFair": { + "ChangePriceCoef": 1, + "balancerAveragePriceCoefficient": 10, + "balancerMinPriceCount": 3, + "balancerRemovePriceCoefficient": 5, + "balancerUserItemSaleCooldown": 1, + "balancerUserItemSaleCooldownEnabled": true, + "communityItemTax": 3, + "communityRequirementTax": 3, + "communityTax": 3, + "delaySinceOfferAdd": 0, + "enabled": true, + "includePveTraderSales": false, + "isOnlyFoundInRaidAllowed": true, + "maxActiveOfferCount": [ + { + "count": 1, + "from": -10000, + "to": -2 + }, + { + "count": 1, + "from": -2, + "to": 0.2 + }, + { + "count": 2, + "from": 0.2, + "to": 7 + }, + { + "count": 3, + "from": 7, + "to": 30 + }, + { + "count": 4, + "from": 30, + "to": 60 + }, + { + "count": 5, + "from": 60, + "to": 100 + }, + { + "count": 6, + "from": 100, + "to": 150 + }, + { + "count": 8, + "from": 150, + "to": 200 + }, + { + "count": 8, + "from": 200, + "to": 250 + }, + { + "count": 8, + "from": 250, + "to": 500 + }, + { + "count": 8, + "from": 500, + "to": 750 + }, + { + "count": 8, + "from": 750, + "to": 1000 + }, + { + "count": 10, + "from": 1000, + "to": 10000 + } + ], + "maxRenewOfferTimeInHour": 48, + "maxSumForDecreaseRatingPerOneSale": 30000000, + "maxSumForIncreaseRatingPerOneSale": 50000000, + "maxSumForRarity": { + "Common": { + "value": 999999 + }, + "Not_exist": { + "value": 999999 + }, + "Rare": { + "value": 999999 + }, + "Superrare": { + "value": 999999 + } + }, + "minUserLevel": 15, + "offerDurationTimeInHour": 12, + "offerDurationTimeInHourAfterRemove": 0.02, + "offerPriorityCost": 6, + "priceStabilizerEnabled": false, + "priceStabilizerStartIntervalInHours": 1, + "priorityTimeModifier": 2, + "ratingDecreaseCount": 0.03, + "ratingIncreaseCount": 0.02, + "ratingSumForDecrease": 100000, + "ratingSumForIncrease": 100000, + "renewPricePerHour": 0.5, + "sellInOnePiece": 300, + "uniqueBuyerTimeoutInDays": 14, + "youSellOfferMaxStorageTimeInHour": 72, + "yourOfferDidNotSellMaxStorageTimeInHour": 72 + }, + "RepairSettings": { + "ItemEnhancementSettings": { + "DamageReduction": { + "PriceModifier": 1.2 + }, + "MalfunctionProtections": { + "PriceModifier": 1.3 + }, + "WeaponSpread": { + "PriceModifier": 1.1 + } + }, + "MinimumLevelToApplyBuff": 10, + "RepairStrategies": { + "Armor": { + "BuffTypes": [ + "DamageReduction" + ], + "Filter": [ + "57bef4c42459772e8d35a53b", + "5448e5284bdc2dcb718b4567" + ] + }, + "Firearms": { + "BuffTypes": [ + "WeaponSpread", + "MalfunctionProtections" + ], + "Filter": [ + "5422acb9af1c889c16000029" + ] + } + }, + "armorClassDivisor": 6, + "durabilityPointCostArmor": 0.335, + "durabilityPointCostGuns": 0.5 + }, + "RequirementReferences": { + "Alpinist": [ + { + "Count": 1, + "Id": "5c12688486f77426843c7d32", + "RequiredSlot": "FirstPrimaryWeapon", + "Requirement": "HasItem", + "RequirementTip": "EXFIL_NEED_ITEM {0}" + }, + { + "Count": 1, + "Id": "5c0126f40db834002a125382", + "RequiredSlot": "FirstPrimaryWeapon", + "Requirement": "HasItem", + "RequirementTip": "EXFIL_NEED_ITEM {0}" + }, + { + "Count": 0, + "Id": "", + "RequiredSlot": "ArmorVest", + "Requirement": "Empty", + "RequirementTip": "EXFIL_ARMOR_TIP" + } + ] + }, + "RestrictionsInRaid": [ + { + "MaxInLobby": 400000, + "MaxInRaid": 400000, + "TemplateId": "5449016a4bdc2d6f028b456f" + }, + { + "MaxInLobby": 8000, + "MaxInRaid": 8000, + "TemplateId": "5696686a4bdc2da3298b456a" + }, + { + "MaxInLobby": 8000, + "MaxInRaid": 8000, + "TemplateId": "569668774bdc2da2298b4568" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "59faff1d86f7746c51718c9c" + }, + { + "MaxInLobby": 10, + "MaxInRaid": 10, + "TemplateId": "5d235b4d86f7742e017bc88a" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "619cbf9e0a7c3a1a2731940a" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5c1d0c5f86f7744bb2683cf0" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5c1d0d6d86f7744bb2683e1f" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5c1e495a86f7743109743dfb" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5ad5d7d286f77450166e0a89" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5ad7247386f7747487619dc3" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5448ba0b4bdc2d02308b456c" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5c1e2a1e86f77431ea0ea84c" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5e42c71586f7747f245e1343" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5a0dc95c86f77452440fc675" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5a0ee4b586f7743698200d22" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5a0ee76686f7743698200d5c" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5a13ef0686f7746e5a411744" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5a13f24186f77410e57c5626" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5a0eecf686f7740350630097" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5a0f08bc86f77478f33b84c2" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5aafbde786f774389d0cbc0f" + }, + { + "MaxInLobby": 1, + "MaxInRaid": 1, + "TemplateId": "5e2af55f86f7746d4159f07c" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5d235bb686f77443f4331278" + }, + { + "MaxInLobby": 2, + "MaxInRaid": 2, + "TemplateId": "5c127c4486f7745625356c13" + }, + { + "MaxInLobby": 2, + "MaxInRaid": 2, + "TemplateId": "59fb023c86f7746d0d4b423c" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "59fafd4b86f7745ca07e1232" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5c1267ee86f77416ec610f72" + }, + { + "MaxInLobby": 5, + "MaxInRaid": 5, + "TemplateId": "59faf7ca86f7740dbe19f6c2" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5c0530ee86f774697952d952" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5c052e6986f7746b207bc3c9" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "590c60fc86f77412b13fddcf" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5bc9bdb8d4351e003562b8a1" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5bc9c377d4351e3bac12251b" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5e54f6af86f7742199090bf3" + }, + { + "MaxInLobby": 1, + "MaxInRaid": 1, + "TemplateId": "5df8a4d786f77412672a1e3b" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5780cf942459777df90dcb72" + }, + { + "MaxInLobby": 1, + "MaxInRaid": 1, + "TemplateId": "5c0e774286f77468413cc5b2" + }, + { + "MaxInLobby": 1, + "MaxInRaid": 1, + "TemplateId": "5c0e805e86f774683f3dd637" + }, + { + "MaxInLobby": 1, + "MaxInRaid": 1, + "TemplateId": "5b44c6ae86f7742d1627baea" + }, + { + "MaxInLobby": 1, + "MaxInRaid": 1, + "TemplateId": "59e763f286f7742ee57895da" + }, + { + "MaxInLobby": 1, + "MaxInRaid": 1, + "TemplateId": "5ab8ebf186f7742d8b372e80" + }, + { + "MaxInLobby": 1, + "MaxInRaid": 1, + "TemplateId": "545cdae64bdc2d39198b4568" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5d80c60f86f77440373c4ece" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5d80c62a86f7744036212b3f" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5913915886f774123603c392" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5d08d21286f774736e7c94c3" + }, + { + "MaxInLobby": 6, + "MaxInRaid": 6, + "TemplateId": "5b43575a86f77424f443fe62" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5bc9b720d4351e450201234b" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5d1b327086f7742525194449" + }, + { + "MaxInLobby": 5, + "MaxInRaid": 5, + "TemplateId": "5e2aee0a86f774755a234b62" + }, + { + "MaxInLobby": 6, + "MaxInRaid": 6, + "TemplateId": "5c12620d86f7743f8b198b72" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5c1f79a086f7746ed066fb8f" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5c1e2d1f86f77431e9280bee" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5d8e0db586f7744450412a42" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5d0377ce86f774186372f689" + }, + { + "MaxInLobby": 6, + "MaxInRaid": 6, + "TemplateId": "590c621186f774138d11ea29" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5c052f6886f7746b1e3db148" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "57347ca924597744596b4e71" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5fca138c2a7b221b2852a5c6" + }, + { + "MaxInLobby": 2, + "MaxInRaid": 2, + "TemplateId": "5c1d0efb86f7744baf2e7b7b" + }, + { + "MaxInLobby": 2, + "MaxInRaid": 2, + "TemplateId": "5e42c81886f7742a01529f57" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "5c94bbff86f7747ee735c08f" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5783c43d2459774bbe137486" + }, + { + "MaxInLobby": 2, + "MaxInRaid": 2, + "TemplateId": "5e42c83786f7742a021fdf3c" + }, + { + "MaxInLobby": 2, + "MaxInRaid": 2, + "TemplateId": "619cbf7d23893217ec30b689" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "619cbfccbedcde2f5b3f7bdd" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "60391afc25aff57af81f7085" + }, + { + "MaxInLobby": 4, + "MaxInRaid": 4, + "TemplateId": "619cbfeb6b8a1b37a54eebfa" + }, + { + "MaxInLobby": 3, + "MaxInRaid": 3, + "TemplateId": "5c05300686f7746dce784e5d" + }, + { + "MaxInLobby": 1, + "MaxInRaid": 1, + "TemplateId": "5bffdd7e0db834001b734a1a" + }, + { + "MaxInLobby": 5, + "MaxInRaid": 5, + "TemplateId": "5c110624d174af029e69734c" + }, + { + "MaxInLobby": 5, + "MaxInRaid": 5, + "TemplateId": "5c0696830db834001d23f5da" + }, + { + "MaxInLobby": 5, + "MaxInRaid": 5, + "TemplateId": "5c066e3a0db834001b7353f0" + }, + { + "MaxInLobby": 5, + "MaxInRaid": 5, + "TemplateId": "5c0558060db834001b735271" + }, + { + "MaxInLobby": 5, + "MaxInRaid": 5, + "TemplateId": "57235b6f24597759bf5a30f1" + }, + { + "MaxInLobby": 5, + "MaxInRaid": 5, + "TemplateId": "5a1eaa87fcdbcb001865f75e" + }, + { + "MaxInLobby": 5, + "MaxInRaid": 5, + "TemplateId": "5d1b5e94d7ad1a2b865a96b0" + }, + { + "MaxInLobby": 5, + "MaxInRaid": 5, + "TemplateId": "609bab8b455afd752b2e6138" + }, + { + "MaxInLobby": 5, + "MaxInRaid": 5, + "TemplateId": "606f2696f2cb2e02a42aceb1" + }, + { + "MaxInLobby": 2, + "MaxInRaid": 2, + "TemplateId": "5df8a42886f77412640e2e75" + }, + { + "MaxInLobby": 2, + "MaxInRaid": 2, + "TemplateId": "5e9db13186f7742f845ee9d3" + }, + { + "MaxInLobby": 1, + "MaxInRaid": 1, + "TemplateId": "628e1ffc83ec92260c0f437f" + }, + { + "MaxInLobby": 1, + "MaxInRaid": 1, + "TemplateId": "62a1b7fbc30cfa1d366af586" + }, + { + "MaxInLobby": 1, + "MaxInRaid": 1, + "TemplateId": "618bb76513f5097c8d5aa2d5" + }, + { + "MaxInLobby": 1, + "MaxInRaid": 1, + "TemplateId": "619cf0335771dd3c390269ae" + }, + { + "MaxInLobby": 1, + "MaxInRaid": 1, + "TemplateId": "639346cc1c8f182ad90c8972" + }, + { + "MaxInLobby": 5, + "MaxInRaid": 5, + "TemplateId": "6478641c19d732620e045e17" + }, + { + "MaxInLobby": 5, + "MaxInRaid": 5, + "TemplateId": "63fc44e2429a8a166c7f61e6" + }, + { + "MaxInLobby": 2, + "MaxInRaid": 2, + "TemplateId": "628baf0b967de16aab5a4f36" + } + ], + "SavagePlayCooldown": 1500, + "SavagePlayCooldownDevelop": 0, + "SavagePlayCooldownNdaFree": 1500, + "SessionsToShowHotKeys": 100, + "SkillAtrophy": false, + "SkillEnduranceWeightThreshold": 0.65, + "SkillExpPerLevel": 100, + "SkillFatiguePerPoint": 0.6, + "SkillFatigueReset": 200, + "SkillFreshEffectiveness": 1.3, + "SkillFreshPoints": 1, + "SkillMinEffectiveness": 0.0001, + "SkillPointsBeforeFatigue": 1, + "SkillsSettings": { + "AdvancedModding": [], + "AimDrills": { + "WeaponShotAction": 0.2 + }, + "Assault": { + "WeaponChamberAction": 0.1, + "WeaponFixAction": 0.1, + "WeaponReloadAction": 0.025, + "WeaponShotAction": 0.1 + }, + "AttachedLauncher": [], + "Attention": { + "DependentSkillRatios": [ + { + "Ratio": 0.2, + "SkillId": "Charisma" + } + ], + "ExamineWithInstruction": 3, + "FindActionFalse": 0.334, + "FindActionTrue": 0.167 + }, + "Auctions": [], + "Barter": [], + "BearAksystems": [], + "BearAssaultoperations": [], + "BearAuthority": [], + "BearHeavycaliber": [], + "BearRawpower": [], + "BotReload": [], + "BotSound": [], + "Charisma": { + "BonusSettings": { + "EliteBonusSettings": { + "FenceStandingLossDiscount": 0.5, + "RepeatableQuestExtraCount": 1, + "ScavCaseDiscount": 0.1 + }, + "LevelBonusSettings": { + "HealthRestoreDiscount": 0.001, + "HealthRestoreTraderDiscount": 0.001, + "InsuranceDiscount": 0.001, + "InsuranceTraderDiscount": 0.001, + "PaidExitDiscount": 0.001, + "RepeatableQuestChangeDiscount": 0.001 + } + }, + "Counters": { + "insuranceCost": { + "divisor": 200000, + "points": 1 + }, + "repairCost": { + "divisor": 10000, + "points": 1 + }, + "repeatableQuestCompleteCount": { + "divisor": 1, + "points": 1 + }, + "restoredHealthCost": { + "divisor": 15000, + "points": 1 + }, + "scavCaseCost": { + "divisor": 150000, + "points": 1 + } + }, + "SkillProgressAtn": 0.5, + "SkillProgressInt": 0.5, + "SkillProgressPer": 0.5 + }, + "Cleanoperations": [], + "CovertMovement": { + "MovementAction": 0.025 + }, + "Crafting": { + "CraftTimeReductionPerLevel": 0.75, + "CraftingCycleHours": 8, + "CraftingPointsToInteligence": 15, + "EliteExtraProductions": 1, + "PointsPerCraftingCycle": 1, + "PointsPerUniqueCraftCycle": 2.5, + "ProductionTimeReductionPerLevel": 0.75, + "UniqueCraftsPerCycle": 1 + }, + "DMR": { + "WeaponChamberAction": 0.025, + "WeaponFixAction": 0.2, + "WeaponReloadAction": 0.02, + "WeaponShotAction": 0.2 + }, + "Endurance": { + "DependentSkillRatios": [ + { + "Ratio": 0.25, + "SkillId": "Health" + } + ], + "GainPerFatigueStack": 0.05, + "MovementAction": 0.005, + "QTELevelMultipliers": { + "10": { + "Multiplier": 0.9 + }, + "25": { + "Multiplier": 0.6 + }, + "50": { + "Multiplier": 0.3 + } + }, + "SprintAction": 0.04 + }, + "FieldMedicine": [], + "FirstAid": [], + "Freetrading": [], + "HMG": [], + "Health": { + "SkillProgress": 0.5 + }, + "HeavyVests": { + "BluntThroughputDamageHVestsReducePerLevel": 0.004, + "BuffMaxCount": 1, + "BuffSettings": { + "CommonBuffChanceLevelBonus": 0.005, + "CommonBuffMinChanceValue": 0.15, + "CurrentDurabilityLossToRemoveBuff": 0.4, + "MaxDurabilityLossToRemoveBuff": 0.4, + "RareBuffChanceCoff": 0.15, + "ReceivedDurabilityMaxPercent": 30 + }, + "Counters": { + "armorDurability": { + "divisor": 10.2, + "points": 1 + } + }, + "MoveSpeedPenaltyReductionHVestsReducePerLevel": 0.005, + "RicochetChanceHVestsCurrentDurabilityThreshold": 0.5, + "RicochetChanceHVestsEliteLevel": 0.05, + "RicochetChanceHVestsMaxDurabilityThreshold": 0.2, + "WearAmountRepairHVestsReducePerLevel": 0.01, + "WearChanceRepairHVestsReduceEliteLevel": 0.5 + }, + "HideoutManagement": { + "ConsumptionReductionPerLevel": 0.5, + "EliteSlots": { + "AirFilteringUnit": { + "Container": 0, + "Slots": 2 + }, + "BitcoinFarm": { + "Container": 2, + "Slots": 0 + }, + "Generator": { + "Container": 0, + "Slots": 2 + }, + "WaterCollector": { + "Container": 0, + "Slots": 2 + } + }, + "SkillBoostPercent": 1, + "SkillPointsPerAreaUpgrade": 20, + "SkillPointsPerCraft": 1, + "SkillPointsRate": { + "AirFilteringUnit": { + "PointsGained": 1, + "ResourceSpent": 10 + }, + "Generator": { + "PointsGained": 1, + "ResourceSpent": 10 + }, + "SolarPower": { + "PointsGained": 2, + "ResourceSpent": 50 + }, + "WaterCollector": { + "PointsGained": 1, + "ResourceSpent": 10 + } + } + }, + "Immunity": { + "HealthNegativeEffect": 0.5, + "ImmunityMiscEffects": 1, + "ImmunityPainKiller": 1, + "ImmunityPoisonBuff": 1, + "StimulatorNegativeBuff": 0.011 + }, + "Intellect": { + "Counters": { + "armorDurability": { + "divisor": 30, + "points": 1 + }, + "firearmsDurability": { + "divisor": 13, + "points": 1 + }, + "meleeWeaponDurability": { + "divisor": 18, + "points": 1 + } + }, + "DependentSkillRatios": [ + { + "Ratio": 0.2, + "SkillId": "Charisma" + } + ], + "ExamineAction": 20, + "RepairAction": 0.005, + "RepairPointsCostReduction": 0.004, + "SkillProgress": 0.5, + "WearAmountReducePerLevel": 0.004, + "WearChanceReduceEliteLevel": 0.5 + }, + "LMG": [], + "Launcher": [], + "LightVests": { + "BuffMaxCount": 1, + "BuffSettings": { + "CommonBuffChanceLevelBonus": 0.005, + "CommonBuffMinChanceValue": 0.15, + "CurrentDurabilityLossToRemoveBuff": 0.4, + "MaxDurabilityLossToRemoveBuff": 0.4, + "RareBuffChanceCoff": 0.15, + "ReceivedDurabilityMaxPercent": 30 + }, + "Counters": { + "armorDurability": { + "divisor": 9.2, + "points": 1 + } + }, + "MeleeDamageLVestsReducePerLevel": 0.006, + "MoveSpeedPenaltyReductionLVestsReducePerLevel": 0.006, + "WearAmountRepairLVestsReducePerLevel": 0.008, + "WearChanceRepairLVestsReduceEliteLevel": 0.5 + }, + "Lockpicking": [], + "MagDrills": { + "MagazineCheckAction": 0.05, + "RaidLoadedAmmoAction": 0.02, + "RaidUnloadedAmmoAction": 0.01 + }, + "Melee": { + "BuffSettings": { + "CommonBuffChanceLevelBonus": 0, + "CommonBuffMinChanceValue": 1, + "RareBuffChanceCoff": 0, + "ReceivedDurabilityMaxPercent": 0.01 + } + }, + "Memory": { + "AnySkillUp": 5, + "SkillProgress": 0.4 + }, + "Metabolism": { + "DecreaseNegativeEffectDurationRate": 1, + "DecreasePoisonDurationRate": 1, + "EnergyRecoveryRate": 20, + "HydrationRecoveryRate": 20, + "IncreasePositiveEffectDurationRate": 1 + }, + "NightOps": [], + "Perception": { + "DependentSkillRatios": [ + { + "Ratio": 0.2, + "SkillId": "Charisma" + } + ], + "OnlineAction": 2.5, + "UniqueLoot": 0.334 + }, + "Pistol": { + "WeaponChamberAction": 0.1, + "WeaponFixAction": 0.1, + "WeaponReloadAction": 0.025, + "WeaponShotAction": 0.1 + }, + "ProneMovement": [], + "RecoilControl": { + "RecoilAction": 0.00015, + "RecoilBonusPerLevel": 0.003 + }, + "Revolver": { + "WeaponChamberAction": 0.1, + "WeaponFixAction": 0.2, + "WeaponReloadAction": 0.025, + "WeaponShotAction": 0.1 + }, + "SMG": [], + "Search": { + "FindAction": 0.166, + "SearchAction": 0.33 + }, + "Shadowconnections": [], + "Shotgun": { + "WeaponChamberAction": 0.1, + "WeaponFixAction": 0.2, + "WeaponReloadAction": 0.01, + "WeaponShotAction": 0.1 + }, + "SilentOps": [], + "SkillProgressRate": 0.4, + "Sniper": { + "WeaponChamberAction": 0.025, + "WeaponFixAction": 0.2, + "WeaponReloadAction": 0.02, + "WeaponShotAction": 0.2 + }, + "Sniping": [], + "Strength": { + "DependentSkillRatios": [ + { + "Ratio": 0.25, + "SkillId": "Health" + } + ], + "FistfightAction": 0.2, + "MovementActionMax": 0.015, + "MovementActionMin": 0.005, + "PushUpMax": 0.1, + "PushUpMin": 0.033, + "QTELevelMultipliers": [ + { + "Level": 10, + "Multiplier": 0.9 + }, + { + "Level": 25, + "Multiplier": 0.6 + }, + { + "Level": 50, + "Multiplier": 0.3 + } + ], + "SprintActionMax": 0.12, + "SprintActionMin": 0.04, + "ThrowAction": 0.2 + }, + "StressResistance": { + "HealthNegativeEffect": 0.33, + "LowHPDuration": 0.033 + }, + "Surgery": { + "SkillProgress": 0.5, + "SurgeryAction": 3 + }, + "Taskperformance": [], + "Throwing": { + "ThrowAction": 0.25 + }, + "TroubleShooting": { + "EliteAmmoChanceReduceMult": 0.3, + "EliteDurabilityChanceReduceMult": 0.3, + "EliteMagChanceReduceMult": 0.3, + "MalfRepairSpeedBonusPerLevel": 0.005, + "SkillPointsPerMalfFix": 3.2 + }, + "UsecArsystems": [], + "UsecDeepweaponmodding_Settings": [], + "UsecLongrangeoptics_Settings": [], + "UsecNegotiations": [], + "UsecTactics": [], + "Vitality": { + "DamageTakenAction": 0.005, + "HealthNegativeEffect": 0.5 + }, + "WeaponModding": [], + "WeaponSkillProgressRate": 1, + "WeaponSkillRecoilBonusPerLevel": 0.003, + "WeaponTreatment": { + "BuffMaxCount": 2, + "BuffSettings": { + "CommonBuffChanceLevelBonus": 0.0019, + "CommonBuffMinChanceValue": 0.074, + "CurrentDurabilityLossToRemoveBuff": 0.05, + "MaxDurabilityLossToRemoveBuff": 0.05, + "RareBuffChanceCoff": 0.075, + "ReceivedDurabilityMaxPercent": 30 + }, + "Counters": { + "firearmsDurability": { + "divisor": 6, + "points": 1 + } + }, + "DurLossReducePerLevel": 0.005, + "Filter": [], + "SkillPointsPerRepair": 3, + "WearAmountRepairGunsReducePerLevel": 0.01, + "WearChanceRepairGunsReduceEliteLevel": 0.5 + } + }, + "SprintSpeed": { + "x": 0.5, + "y": 1, + "z": 0 + }, + "SquadSettings": { + "CountOfRequestsToOnePlayer": 3, + "SecondsForExpiredRequest": 120, + "SendRequestDelaySeconds": 60 + }, + "Stamina": { + "AimConsumptionByPose": { + "x": 0.15, + "y": 0.75, + "z": 1 + }, + "AimDrainRate": 1.1, + "AimRangeFinderDrainRate": 0.55, + "AimingSpeedMultiplier": 0.4, + "BaseHoldBreathConsumption": 4, + "BaseOverweightLimits": { + "x": 26, + "y": 67, + "z": 0 + }, + "BaseRestorationRate": 4.5, + "Capacity": 100, + "ClimbLegsConsumption": { + "x": 0, + "y": 20, + "z": 0 + }, + "ClimbOneHandConsumption": { + "x": 8, + "y": 20, + "z": 0 + }, + "ClimbTwoHandsConsumption": { + "x": 12, + "y": 25, + "z": 0 + }, + "CrouchConsumption": { + "x": 0.17, + "y": 0.7, + "z": 0 + }, + "ExhaustedMeleeDamageMultiplier": 0.33, + "ExhaustedMeleeSpeed": 0.65, + "FallDamageMultiplier": 3.9, + "FatigueAmountToCreateEffect": 15, + "FatigueRestorationRate": 0.42, + "GrenadeHighThrow": 11, + "GrenadeLowThrow": 8, + "HandsCapacity": 70, + "HandsRestoration": 2.1, + "HoldBreathStaminaMultiplier": { + "x": 2, + "y": 1, + "z": 0 + }, + "JumpConsumption": 14, + "OverweightConsumptionByPose": { + "x": -3, + "y": -2, + "z": 0 + }, + "OxygenCapacity": 350, + "OxygenRestoration": 4, + "PoseLevelConsumptionPerNotch": { + "x": 1.1, + "y": 3, + "z": 0 + }, + "PoseLevelDecreaseSpeed": { + "x": 0.85, + "y": 0.6, + "z": 0 + }, + "PoseLevelIncreaseSpeed": { + "x": 0.65, + "y": 0.4, + "z": 0 + }, + "ProneConsumption": 1, + "RestorationMultiplierByPose": { + "x": 1.45, + "y": 1.25, + "z": 1 + }, + "SafeHeightOverweight": 1.75, + "SitToStandConsumption": 1, + "SoundRadius": { + "x": 1, + "y": 1.3, + "z": 0 + }, + "SprintAccelerationLowerLimit": 0.8, + "SprintDrainRate": 4, + "SprintOverweightLimits": { + "x": 26, + "y": 63, + "z": 0 + }, + "SprintSensitivityLowerLimit": 0.5, + "SprintSpeedLowerLimit": 0.1, + "StaminaExhaustionCausesJiggle": true, + "StaminaExhaustionRocksCamera": false, + "StaminaExhaustionStartsBreathSound": true, + "StandupConsumption": { + "x": 10, + "y": 20, + "z": 0 + }, + "TransitionSpeed": { + "x": 1, + "y": 0.66, + "z": 0 + }, + "VaultLegsConsumption": { + "x": 5, + "y": 20, + "z": 0 + }, + "VaultOneHandConsumption": { + "x": 5, + "y": 16, + "z": 0 + }, + "WalkConsumption": { + "x": 0.2, + "y": 0.5, + "z": 0 + }, + "WalkOverweightLimits": { + "x": 45, + "y": 75, + "z": 0 + }, + "WalkSpeedOverweightLimits": { + "x": 35, + "y": 70, + "z": 0 + }, + "WalkVisualEffectMultiplier": 0.1, + "WeaponFastSwitchConsumption": 15 + }, + "StaminaDrain": { + "LeftPlatoPoint": 0.9, + "LowerLeftPoint": 1.2, + "LowerRightPoint": 1.5, + "RightLimit": 1.5, + "RightPlatoPoint": 1, + "ZeroValue": 2 + }, + "StaminaRestoration": { + "LeftPlatoPoint": 0.1, + "LowerLeftPoint": 0.9, + "LowerRightPoint": 0.5, + "RightLimit": 1.5, + "RightPlatoPoint": 0.9, + "ZeroValue": 0.07 + }, + "StomachOverdamage": 1.5, + "TODSkyDate": "08-01-2018", + "TeamSearchingTimeout": 10, + "TestValue": 3, + "TimeBeforeDeploy": 10, + "TimeBeforeDeployLocal": 10, + "TradingSetting": 0, + "TradingSettings": { + "BuyoutRestrictions": { + "MinDurability": 0.6, + "MinFoodDrinkResource": 0.01, + "MinMedsResource": 0.01 + } + }, + "TradingUnlimitedItems": false, + "UncheckOnShot": true, + "VaultingSettings": { + "GridSettings": { + "GridOffsetX": 0, + "GridOffsetY": 0, + "GridOffsetZ": 0, + "GridSizeX": 0, + "GridSizeY": 1.8, + "GridSizeZ": 2, + "OffsetFactor": 0.1, + "SteppingLengthX": 0.1, + "SteppingLengthY": 0.1, + "SteppingLengthZ": 0.1 + }, + "IsActive": true, + "MovesSettings": { + "ClimbSettings": { + "AutoMoveRestrictions": { + "IsActive": true, + "MaxHeight": 0.41, + "MaxLength": 10, + "MinDistantToInteract": 0.41, + "MinHeight": 0.25, + "MinLength": 0.41 + }, + "IsActive": true, + "MaxOneHandHeight": 1.2, + "MaxWithoutHandHeight": 0.65, + "MoveRestrictions": { + "IsActive": true, + "MaxHeight": 1.31, + "MaxLength": 10, + "MinDistantToInteract": 0.5, + "MinHeight": 0.25, + "MinLength": 0 + }, + "SpeedRange": { + "x": 1.1, + "y": 0.8, + "z": 0 + } + }, + "VaultSettings": { + "AutoMoveRestrictions": { + "IsActive": true, + "MaxHeight": 0.41, + "MaxLength": 0.41, + "MinDistantToInteract": 0.41, + "MinHeight": 0.25, + "MinLength": 0 + }, + "IsActive": true, + "MaxWithoutHandHeight": 0.65, + "MoveRestrictions": { + "IsActive": true, + "MaxHeight": 1.1, + "MaxLength": 0.41, + "MinDistantToInteract": 0.5, + "MinHeight": 0.25, + "MinLength": 0 + }, + "SpeedRange": { + "x": 1.25, + "y": 0.9, + "z": 0 + } + } + }, + "VaultingInputTime": 0.6 + }, + "WAVE_COEF_HIGH": 1.8, + "WAVE_COEF_HORDE": 10, + "WAVE_COEF_LOW": 1, + "WAVE_COEF_MID": 1.4, + "WalkSpeed": { + "x": 0.625, + "y": 0.717, + "z": 0 + }, + "WallContusionAbsorption": { + "x": 0.4, + "y": 0.01, + "z": 0 + }, + "WeaponFastDrawSettings": { + "HandShakeCurveFrequency": 1, + "HandShakeCurveIntensity": 1, + "HandShakeMaxDuration": 10, + "HandShakeTremorIntensity": 3, + "WeaponFastSwitchMaxSpeedMult": 2, + "WeaponFastSwitchMinSpeedMult": 1.5, + "WeaponPistolFastSwitchMaxSpeedMult": 2, + "WeaponPistolFastSwitchMinSpeedMult": 1.5 + }, + "WeaponSkillProgressRate": 1.4, + "armor": { + "class": [ + { + "resistance": 1 + }, + { + "resistance": 10 + }, + { + "resistance": 20 + }, + { + "resistance": 30 + }, + { + "resistance": 40 + }, + { + "resistance": 50 + }, + { + "resistance": 60 + }, + { + "resistance": 70 + }, + { + "resistance": 80 + }, + { + "resistance": 90 + }, + { + "resistance": 100 + } + ] + }, "content": { "ip": "", "port": 666, "root": "" }, - "AimPunchMagnitude": 17, - "WeaponSkillProgressRate": 1.4, - "SkillAtrophy": false, "exp": { + "expForLockedDoorBreach": 20, + "expForLockedDoorOpen": 30, "heal": { + "expForEnergy": 1, "expForHeal": 1, - "expForHydration": 1, - "expForEnergy": 1 - }, - "match_end": { - "README": "Сначала проверяются условия выхода (*_requirement), только потом применяются награды (*_reward). Получившаяся сумма умножается на *Mult", - "survived_exp_requirement": 200, - "survived_seconds_requirement": 420, - "survived_exp_reward": 300, - "mia_exp_reward": 200, - "runner_exp_reward": 200, - "leftMult": 0, - "miaMult": 1, - "survivedMult": 1.3, - "runnerMult": 0.5, - "killedMult": 1 + "expForHydration": 1 }, "kill": { + "bloodLossToLitre": 0.005, + "botExpOnDamageAllHealth": 30, + "botHeadShotMult": 1.1, "combo": [ { "percent": 0 @@ -60,16 +27735,14 @@ "percent": 100 } ], - "victimLevelExp": 175, - "pmcHeadShotMult": 1.2, - "botHeadShotMult": 1.1, - "pmcExpOnDamageAllHealth": 50, - "botExpOnDamageAllHealth": 30, "longShotDistance": 100, - "bloodLossToLitre": 0.005, - "victimBotLevelExp": 80 + "pmcExpOnDamageAllHealth": 50, + "pmcHeadShotMult": 1.2, + "victimBotLevelExp": 80, + "victimLevelExp": 175 }, "level": { + "clan_level": 0, "exp_table": [ { "exp": 0 @@ -309,11 +27982,10 @@ "exp": 12000000 } ], - "trade_level": 0, - "savage_level": 0, - "clan_level": 0, "mastering1": 1500, - "mastering2": 5000 + "mastering2": 5000, + "savage_level": 0, + "trade_level": 0 }, "loot_attempts": [ { @@ -326,27907 +27998,48 @@ "k_exp": 0.125 } ], - "expForLockedDoorOpen": 30, - "expForLockedDoorBreach": 20, - "triggerMult": 2, - "expForLevelOneDogtag": 0.02 - }, - "t_base_looting": 5, - "t_base_lockpicking": 45, - "armor": { - "class": [ - { - "resistance": 1 - }, - { - "resistance": 10 - }, - { - "resistance": 20 - }, - { - "resistance": 30 - }, - { - "resistance": 40 - }, - { - "resistance": 50 - }, - { - "resistance": 60 - }, - { - "resistance": 70 - }, - { - "resistance": 80 - }, - { - "resistance": 90 - }, - { - "resistance": 100 - } - ] - }, - "SessionsToShowHotKeys": 100, - "MaxBotsAliveOnMap": 36, - "SavagePlayCooldown": 1500, - "SavagePlayCooldownNdaFree": 1500, - "MarksmanAccuracy": 1.3, - "SavagePlayCooldownDevelop": 0, - "TODSkyDate": "08-01-2018", - "Mastering": [ - { - "Name": "M4", - "Templates": [ - "5c07c60e0db834002330051f", - "5447a9cd4bdc2dbd208b4567", - "5bb2475ed4351e00853264e3", - "5d43021ca4b9362eab4b5e25" - ], - "Level2": 1600, - "Level3": 2000 - }, - { - "Name": "AKM", - "Templates": [ - "59d6088586f774275f37482f", - "5a0ec13bfcdbcb00165aa685", - "59ff346386f77477562ff5e2", - "5abcbc27d8ce8700182eceeb", - "59e6687d86f77411d949b251", - "59e6152586f77473dc057aa1" - ], - "Level2": 500, - "Level3": 600 - }, - { - "Name": "SKS", - "Templates": [ - "587e02ff24597743df3deaeb", - "574d967124597745970e7c94" - ], - "Level2": 200, - "Level3": 300 - }, - { - "Name": "AKSU", - "Templates": [ - "57dc2fa62459775949412633", - "5839a40f24597726f856b511", - "583990e32459771419544dd2" - ], - "Level2": 275, - "Level3": 350 - }, - { - "Name": "AK74", - "Templates": [ - "5ac66cb05acfc40198510a10", - "5ac66d015acfc400180ae6e4", - "5ac66d2e5acfc43b321d4b53", - "5ac66d725acfc43b321d4b60", - "5ac66d9b5acfc4001633997a", - "6499849fc93611967b034949", - "5bf3e03b0db834001d2c4a9c", - "5ac4cd105acfc40016339859", - "5644bd2b4bdc2d3b4c8b4572", - "5bf3e0490db83400196199af", - "5ab8e9fcd8ce870019439434", - "628a60ae6b1d481ff772e9c8", - "628b5638ad252a16da6dd245", - "628b9c37a733087d0d7fe84b", - "5beed0f50db834001c062b12" - ], - "Level2": 2000, - "Level3": 2200 - }, - { - "Name": "VSS", - "Templates": [ - "57c44b372459772d2b39b8ce", - "57838ad32459774a17445cd2" - ], - "Level2": 275, - "Level3": 500 - }, - { - "Name": "MP443", - "Templates": [ - "576a581d2459771e7b1bc4f1" - ], - "Level2": 75, - "Level3": 100 - }, - { - "Name": "MP133", - "Templates": [ - "54491c4f4bdc2db1078b4568" - ], - "Level2": 150, - "Level3": 200 - }, - { - "Name": "MP153", - "Templates": [ - "56dee2bdd2720bc8328b4567", - "606dae0ab0e443224b421bb7" - ], - "Level2": 1500, - "Level3": 2200 - }, - { - "Name": "MR43", - "Templates": [ - "64748cb8de82c85eaf0a273a", - "5580223e4bdc2d1c128b457f" - ], - "Level2": 150, - "Level3": 250 - }, - { - "Name": "PM", - "Templates": [ - "5448bd6b4bdc2dfc2f8b4569", - "579204f224597773d619e051", - "66015072e9f84d5680039678" - ], - "Level2": 75, - "Level3": 100 - }, - { - "Name": "PB", - "Templates": [ - "56e0598dd2720bb5668b45a6" - ], - "Level2": 75, - "Level3": 100 - }, - { - "Name": "P226", - "Templates": [ - "56d59856d2720bd8418b456a" - ], - "Level2": 75, - "Level3": 100 - }, - { - "Name": "MP5", - "Templates": [ - "5d2f0d8048f0356c925bc3b0", - "5926bb2186f7744b1c6c6e60" - ], - "Level2": 200, - "Level3": 250 - }, - { - "Name": "TT", - "Templates": [ - "571a12c42459771f627b58a0", - "5b3b713c5acfc4330140bd8d" - ], - "Level2": 75, - "Level3": 100 - }, - { - "Name": "SAIGA", - "Templates": [ - "576165642459773c7a400233" - ], - "Level2": 300, - "Level3": 650 - }, - { - "Name": "PP19", - "Templates": [ - "59984ab886f7743e98271174", - "59f9cabd86f7743a10721f46" - ], - "Level2": 175, - "Level3": 350 - }, - { - "Name": "MPX", - "Templates": [ - "58948c8e86f77409493f7266" - ], - "Level2": 150, - "Level3": 200 - }, - { - "Name": "PP-91", - "Templates": [ - "57f3c6bd24597738e730fa2f", - "57d14d2524597714373db789", - "57f4c844245977379d5c14d1" - ], - "Level2": 175, - "Level3": 200 - }, - { - "Name": "SV98", - "Templates": [ - "55801eed4bdc2d89578b4588" - ], - "Level2": 100, - "Level3": 175 - }, - { - "Name": "DVL", - "Templates": [ - "588892092459774ac91d4b11" - ], - "Level2": 100, - "Level3": 175 - }, - { - "Name": "TOZ106", - "Templates": [ - "5a38e6bac4a2826c6e06d79b" - ], - "Level2": 75, - "Level3": 100 - }, - { - "Name": "R11SRASS", - "Templates": [ - "5a367e5dc4a282000e49738f" - ], - "Level2": 175, - "Level3": 300 - }, - { - "Name": "GLOCK17", - "Templates": [ - "5a7ae0c351dfba0017554310", - "5b1fa9b25acfc40018633c01", - "63088377b5cd696784087147" - ], - "Level2": 100, - "Level3": 125 - }, - { - "Name": "APS", - "Templates": [ - "5a17f98cfcdbcb0980087290", - "5abccb7dd8ce87001773e277" - ], - "Level2": 75, - "Level3": 100 - }, - { - "Name": "M1A", - "Templates": [ - "5aafa857e5b5b00018480968" - ], - "Level2": 275, - "Level3": 400 - }, - { - "Name": "M870", - "Templates": [ - "5a7828548dc32e5a9c28b516" - ], - "Level2": 100, - "Level3": 200 - }, - { - "Name": "mosin", - "Templates": [ - "5bfd297f0db834001a669119", - "5ae08f0a5acfc408fb1398a1" - ], - "Level2": 200, - "Level3": 250 - }, - { - "Name": "SA-58", - "Templates": [ - "5b0bbe4e5acfc40dc528a72d" - ], - "Level2": 175, - "Level3": 300 - }, - { - "Name": "sr1mp", - "Templates": [ - "59f98b4986f7746f546d2cef" - ], - "Level2": 75, - "Level3": 125 - }, - { - "Name": "mp7", - "Templates": [ - "5ba26383d4351e00334c93d9", - "5bd70322209c4d00d7167b8f" - ], - "Level2": 550, - "Level3": 800 - }, - { - "Name": "r700", - "Templates": [ - "5bfea6e90db834001b7347f3" - ], - "Level2": 150, - "Level3": 200 - }, - { - "Name": "VPO101", - "Templates": [ - "5c501a4d2e221602b412b540" - ], - "Level2": 75, - "Level3": 150 - }, - { - "Name": "SVD", - "Templates": [ - "5c46fbd72e2216398b5a8c9c" - ], - "Level2": 250, - "Level3": 300 - }, - { - "Name": "MDR", - "Templates": [ - "5c488a752e221602b412af63", - "5dcbd56fdbd3d91b3e5468d5" - ], - "Level2": 450, - "Level3": 600 - }, - { - "Name": "ASH12", - "Templates": [ - "5cadfbf7ae92152ac412eeef" - ], - "Level2": 175, - "Level3": 400 - }, - { - "Name": "P90", - "Templates": [ - "5cc82d76e24e8d00134b4b83" - ], - "Level2": 200, - "Level3": 350 - }, - { - "Name": "m9", - "Templates": [ - "5cadc190ae921500103bb3b6" - ], - "Level2": 75, - "Level3": 100 - }, - { - "Name": "KS23", - "Templates": [ - "5e848cc2988a8701445df1e8" - ], - "Level2": 200, - "Level3": 350 - }, - { - "Name": "57", - "Templates": [ - "5d3eb3b0a4b93615055e84d2", - "5d67abc1a4b93614ec50137f" - ], - "Level2": 125, - "Level3": 225 - }, - { - "Name": "MP9", - "Templates": [ - "5e00903ae9dc277128008b87", - "5de7bd7bfd6b4e6e2276dc25" - ], - "Level2": 150, - "Level3": 175 - }, - { - "Name": "VPO_215", - "Templates": [ - "5de652c31b7e3716273428be" - ], - "Level2": 125, - "Level3": 250 - }, - { - "Name": "T5000", - "Templates": [ - "5df24cf80dee1b22f862e9bc" - ], - "Level2": 75, - "Level3": 125 - }, - { - "Name": "SR25", - "Templates": [ - "5df8ce05b11454561e39243b" - ], - "Level2": 350, - "Level3": 500 - }, - { - "Name": "m1911", - "Templates": [ - "5e81c3cbac2bb513793cdc75", - "5f36a0e5fbf956000b716b65" - ], - "Level2": 75, - "Level3": 100 - }, - { - "Name": "PPSH", - "Templates": [ - "5ea03f7400685063ec28bfa8" - ], - "Level2": 175, - "Level3": 200 - }, - { - "Name": "RFB", - "Templates": [ - "5f2a9575926fd9352339381f" - ], - "Level2": 250, - "Level3": 400 - }, - { - "Name": "UMP45", - "Templates": [ - "5fc3e272f8b6a877a729eac5" - ], - "Level2": 375, - "Level3": 500 - }, - { - "Name": "M590", - "Templates": [ - "5e870397991fd70db46995c8" - ], - "Level2": 100, - "Level3": 200 - }, - { - "Name": "Mk18", - "Templates": [ - "5fc22d7c187fea44d52eda44" - ], - "Level2": 100, - "Level3": 200 - }, - { - "Name": "VECTOR", - "Templates": [ - "5fb64bc92b1b027b1f50bcf2", - "5fc3f2d5900b1d5091531e57" - ], - "Level2": 300, - "Level3": 450 - }, - { - "Name": "MCX", - "Templates": [ - "5fbcc1d9016cce60e8341ab3" - ], - "Level2": 150, - "Level3": 200 - }, - { - "Name": "STM-9", - "Templates": [ - "60339954d62c9b14ed777c06" - ], - "Level2": 100, - "Level3": 150 - }, - { - "Name": "PL15", - "Templates": [ - "602a9740da11d6478d5a06dc" - ], - "Level2": 75, - "Level3": 100 - }, - { - "Name": "MK47", - "Templates": [ - "606587252535c57a13424cfd" - ], - "Level2": 600, - "Level3": 1300 - }, - { - "Name": "G28", - "Templates": [ - "6176aca650224f204c1da3fb" - ], - "Level2": 150, - "Level3": 200 - }, - { - "Name": "Mk17", - "Templates": [ - "6184055050224f204c1da540", - "618428466ef05c2ce828f218", - "6183afd850224f204c1da514", - "6165ac306ef05c2ce828ef74" - ], - "Level2": 350, - "Level3": 500 - }, - { - "Name": "USP", - "Templates": [ - "6193a720f8ee7e52e42109ed" - ], - "Level2": 75, - "Level3": 100 - }, - { - "Name": "MTS", - "Templates": [ - "60db29ce99594040e04c4a27" - ], - "Level2": 75, - "Level3": 150 - }, - { - "Name": "RHINO", - "Templates": [ - "624c2e8614da335f1e034d8c", - "61a4c8884f95bc3b2c5dc96f" - ], - "Level2": 75, - "Level3": 100 - }, - { - "Name": "G36", - "Templates": [ - "623063e994fc3f7b302a9696" - ], - "Level2": 200, - "Level3": 250 - }, - { - "Name": "M3S90", - "Templates": [ - "6259b864ebedf17603599e88" - ], - "Level2": 350, - "Level3": 450 - }, - { - "Name": "MP-18", - "Templates": [ - "61f7c9e189e6fb1a5e3ea78d" - ], - "Level2": 75, - "Level3": 100 - }, - { - "Name": "AXMC", - "Templates": [ - "627e14b21713922ded6f2c15" - ], - "Level2": 150, - "Level3": 200 - }, - { - "Name": "SR2", - "Templates": [ - "62e14904c2699c0ec93adc47" - ], - "Level2": 200, - "Level3": 350 - }, - { - "Name": "AUG", - "Templates": [ - "62e7c4fba689e8c9c50dfc38", - "63171672192e68c5460cebc5" - ], - "Level2": 350, - "Level3": 500 - }, - { - "Name": "RSH12", - "Templates": [ - "633ec7c2a6918cb895019c6c" - ], - "Level2": 100, - "Level3": 125 - }, - { - "Name": "PKM", - "Templates": [ - "64637076203536ad5600c990", - "64ca3d3954fc657e230529cc" - ], - "Level2": 150, - "Level3": 200 - }, - { - "Name": "SVT-40", - "Templates": [ - "6410733d5dd49d77bd07847e", - "643ea5b23db6f9f57107d9fd" - ], - "Level2": 200, - "Level3": 250 - }, - { - "Name": "RPD", - "Templates": [ - "6513ef33e06849f06c0957ca", - "65268d8ecb944ff1e90ea385" - ], - "Level2": 150, - "Level3": 200 - }, - { - "Name": "SPEAR", - "Templates": [ - "65290f395ae2ae97b80fdf2d" - ], - "Level2": 350, - "Level3": 500 - }, - { - "Name": "VSK94", - "Templates": [ - "644674a13d52156624001fbc", - "645e0c6b3b381ede770e1cc9" - ], - "Level2": 275, - "Level3": 500 - } - ], - "GlobalItemPriceModifier": 1, - "TradingUnlimitedItems": false, - "MaxLoyaltyLevelForAll": false, - "GlobalLootChanceModifier": 0.2, - "TimeBeforeDeploy": 10, - "TimeBeforeDeployLocal": 10, - "LoadTimeSpeedProgress": 1, - "BaseLoadTime": 0.85, - "BaseUnloadTime": 0.3, - "BaseCheckTime": 3, - "Customization": { - "SavageHead": { - "wild_head_1": { - "head": "5cc2e4d014c02e000d0115f8", - "isNotRandom": false, - "NotRandom": false - }, - "wild_head_2": { - "head": "5cde9ff17d6c8b0474535daa", - "isNotRandom": false, - "NotRandom": false - }, - "wild_head_3": { - "head": "5d28afe786f774292668618d", - "isNotRandom": false, - "NotRandom": false - }, - "Wild_Dealmaker_head": { - "head": "5d28b01486f77429242fc898", - "isNotRandom": true, - "NotRandom": false - }, - "Wild_Killa_head": { - "head": "5d28b03e86f7747f7e69ab8a", - "isNotRandom": true, - "NotRandom": false - }, - "bear_head": { - "head": "5cc084dd14c02e000b0550a3", - "isNotRandom": true, - "NotRandom": false - }, - "bear_head_1": { - "head": "5cc084dd14c02e000b0550a3", - "isNotRandom": true, - "NotRandom": false - }, - "usec_head_1": { - "head": "5cc084dd14c02e000b0550a3", - "isNotRandom": true, - "NotRandom": false - }, - "Head_BOSS_Glukhar": { - "head": "5d5e805d86f77439eb4c2d0e", - "isNotRandom": true, - "NotRandom": false - }, - "Wild_Head_nonMesh": { - "head": "5d5f8ba486f77431254e7fd2", - "isNotRandom": true, - "NotRandom": false - }, - "Head_BOSS_Sanitar": { - "head": "5e99767c86f7741ac7399393", - "isNotRandom": true, - "NotRandom": false - }, - "wild_head_drozd": { - "head": "5f68c4a7c174a17c0f4c8945", - "isNotRandom": false, - "NotRandom": false - }, - "wild_head_misha": { - "head": "5f68c4c217d579077152a252", - "isNotRandom": false, - "NotRandom": false - }, - "head_cultist_01": { - "head": "5fb5297a0359a84b77066e56", - "isNotRandom": true, - "NotRandom": false - }, - "head_cultist_02": { - "head": "5fb52a3a1c69e5198e234118", - "isNotRandom": true, - "NotRandom": false - }, - "head_cultist_03": { - "head": "5fb52a537b5d1342ee24bd57", - "isNotRandom": true, - "NotRandom": false - }, - "DefaultUsecHead": { - "head": "5cde96047d6c8b20b577f016", - "isNotRandom": true, - "NotRandom": false - }, - "usec_head_3": { - "head": "5fdb5950f5264a66150d1c6e", - "isNotRandom": true, - "NotRandom": false - }, - "usec_head_4": { - "head": "60a6aaad42fd2735e4589978", - "isNotRandom": true, - "NotRandom": false - }, - "usec_head_5": { - "head": "60a6aa8fd559ae040d0d951f", - "isNotRandom": true, - "NotRandom": false - }, - "Head_BOSS_Blackknight": { - "head": "62875ad50828252c7a28b95c", - "isNotRandom": true, - "NotRandom": false - }, - "Head_BOSS_BigPIpe": { - "head": "6287b0d239d8207cb27d66c7", - "isNotRandom": true, - "NotRandom": false - }, - "Head_BOSS_Birdeye": { - "head": "628b57d800f171376e7b2634", - "isNotRandom": true, - "NotRandom": false - }, - "Head_BOSS_Zryachi": { - "head": "636129784aa74b8fe30ab418", - "isNotRandom": true, - "NotRandom": false - }, - "Head_BOSS_Kaban": { - "head": "64809e3077c11aeac5078e3c", - "isNotRandom": true, - "NotRandom": false - }, - "Head_BOSS_Kolontai": { - "head": "654b5ed58558fd71f97254f4", - "isNotRandom": true, - "NotRandom": false - }, - "wild_security_head_den": { - "head": "65749be133fdc9c0cf06d3c8", - "isNotRandom": true, - "NotRandom": false - }, - "wild_security_head_gus": { - "head": "65749bcce32c4e3f7907bf44", - "isNotRandom": true, - "NotRandom": false - } - }, - "SavageBody": { - "wild_body": { - "body": "5cc2e59214c02e000f16684e", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": false - }, - "wild_body_1": { - "body": "5cde9f337d6c8b0474535da8", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": false - }, - "wild_body_2": { - "body": "5d28ad6986f77429275dba22", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": false - }, - "wild_body_3": { - "body": "5d28ad7286f7742926686182", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": false - }, - "Wild_Dealmaker_body": { - "body": "5d28adcb86f77429242fc893", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "wild_security_body_1": { - "body": "5d28adfd86f774292364a6e5", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "wild_security_body_2": { - "body": "5d28ae2986f7742926686185", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "wild_Killa_body": { - "body": "5cdea33e7d6c8b0474535dac", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "wild_pmcBot_body": { - "body": "5d28ae4986f7742926686187", - "hands": "5cc0876314c02e000c6bea6b", - "isNotRandom": true - }, - "wild_Shturman_body": { - "body": "5d5e7c9186f774393602d6f9", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "wild_Gluhar_body": { - "body": "5d5e7dd786f7744a7a274322", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "Tshirt_security_TshirtTatu_01": { - "body": "5d5e7e4a86f774279a21cc0d", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "Tshirt_security_TshirtTatu_02": { - "body": "5d5e7e5d86f774279b4f4b01", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "Top_security_Husky": { - "body": "5d5e7e7586f77427997cfb7f", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "Top_security_Gorka4": { - "body": "5d5e7e8386f774393602d6fa", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "scav_kit_upper_meteor": { - "body": "5df8a10486f77412672a1e3a", - "hands": "5df8eac086f77412640e2ea7", - "isNotRandom": false - }, - "wild_body_russia1": { - "body": "5e4bb3ee86f77406975c934e", - "hands": "5e4bb49586f77406a313ec5a", - "isNotRandom": false - }, - "Top_BOSS_Sanitar": { - "body": "5e9975c486f774382b6320cb", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "wild_body_motocross": { - "body": "5e9da1d086f774054a667134", - "hands": "5e9da2dd86f774054e7d0f63", - "isNotRandom": false - }, - "top_cultist_01": { - "body": "5fb53cc97b5d1342ee24bd63", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "top_cultist_02": { - "body": "5fb53d0b7b5d1342ee24bd64", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "wild_body_rainparka": { - "body": "5fd1eb3fbe3b7107d66cb645", - "hands": "5fd78fe9e3bfcf6cab4c9f54", - "isNotRandom": false - }, - "wild_body_underarmour": { - "body": "5fd22d311add82653b5a704c", - "hands": "5fd7901bdd870108a754c0e6", - "isNotRandom": false - }, - "top_boss_tagilla": { - "body": "609e86926e8078716f600883", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "DefaultUsecBody": { - "body": "5cde95d97d6c8b647a3769b0", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "usec_upper_acu": { - "body": "5fd3e9f71b735718c25cd9f8", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "usec_upper_commando": { - "body": "5d4da0cb86f77450fe0a6629", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "usec_upper_aggressor": { - "body": "5d1f56c686f7744bcd13459c", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "usec_upper_hoody": { - "body": "5e9da17386f774054b6f79a3", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "usec_upper_pcuironsight": { - "body": "5d1f56a686f7744bce0ee9eb", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "usec_top_beltstaff": { - "body": "6033a35f80ae5e2f970ba6bb", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "usec_upper_flexion": { - "body": "5d1f56e486f7744bce0ee9ed", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "usec_upper_tier3": { - "body": "5fcf63da5c287f01f22bf245", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "usec_upper_pcsmulticam": { - "body": "5d1f56ff86f7743f8362bcd7", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "usec_upper_tier_2": { - "body": "5e4bb35286f77406a511c9bc", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "usec_upper_infiltrator": { - "body": "5d1f56f186f7744bcb0acd1a", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "user_upper_NightPatrol": { - "body": "5f5e4075df4f3100376a8138", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "wild_body_bomber": { - "body": "619238266c614e6d15792bca", - "hands": "618cf9540a5a59657e5f5677", - "isNotRandom": false - }, - "wild_top_yellowcoat": { - "body": "618d1af10a5a59657e5f56f3", - "hands": "6197aca964ae5436d76c1f98", - "isNotRandom": false - }, - "Top_BOSS_Blackknight": { - "body": "628796f2af0a053a6672c29a", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "Top_BOSS_BigPipe": { - "body": "6287b16b05846043f15a790d", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "Top_BOSS_Birdeye": { - "body": "628a6801805c5b6c100cc200", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "Top_BOSS_Zryachi": { - "body": "63628b825c1b30a79d09ccb9", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "wild_body_victory": { - "body": "637df28ac22da5bb8d046935", - "hands": "6391c6205dbbdb3b1b049840", - "isNotRandom": false - }, - "Top_BOSS_Kaban": { - "body": "648067b8aa32c2049f098463", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "wild_body_feldparka": { - "body": "64a2edba08d26f8d62049c06", - "hands": "64ac23c449d74fd5ec0a124e", - "isNotRandom": false - }, - "Top_BOSS_Kolontai": { - "body": "654b5eb7a29f3736215dd030", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "wild_security_body_bratva_1": { - "body": "65749b8fe32c4e3f7907bf42", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - }, - "wild_security_body_bratva_2": { - "body": "65749ba32fdb04fb79092d37", - "hands": "5cc2e68f14c02e28b47de290", - "isNotRandom": true - } - }, - "SavageFeet": { - "wild_feet": { - "feet": "5cc2e5d014c02e15d53d9c03", - "isNotRandom": false, - "NotRandom": false - }, - "wild_feet_1": { - "feet": "5cde9fb87d6c8b0474535da9", - "isNotRandom": false, - "NotRandom": false - }, - "wild_feet_2": { - "feet": "5d28af3486f774292364a6e7", - "isNotRandom": false, - "NotRandom": false - }, - "Wild_Dealmaker_feet": { - "feet": "5d28b3a186f7747f7e69ab8c", - "isNotRandom": true, - "NotRandom": false - }, - "wild_security_feet_1": { - "feet": "5d28af5386f774292364a6e8", - "isNotRandom": true, - "NotRandom": false - }, - "Wild_Killa_feet": { - "feet": "5cdea3c47d6c8b0475341734", - "isNotRandom": true, - "NotRandom": false - }, - "wild_pmcBot_feet": { - "feet": "5d28af7886f77429275dba25", - "isNotRandom": true, - "NotRandom": false - }, - "Pants_BOSS_Glukhar": { - "feet": "5d5e7f2a86f77427997cfb80", - "isNotRandom": true, - "NotRandom": false - }, - "Pants_BOSS_Shturman": { - "feet": "5d5e7f3c86f7742797262063", - "isNotRandom": true, - "NotRandom": false - }, - "Pants_security_Gorka4": { - "feet": "5d5e7f4986f7746956659f8a", - "isNotRandom": true, - "NotRandom": false - }, - "Pants_security_Flora": { - "feet": "5d5e7f8986f7742798716582", - "isNotRandom": true, - "NotRandom": false - }, - "scav_kit_lower_sklon": { - "feet": "5df8a15186f77412640e2e6a", - "isNotRandom": false, - "NotRandom": false - }, - "Pants_BOSS_Sanitar": { - "feet": "5e99762586f77466320ff9a9", - "isNotRandom": true, - "NotRandom": false - }, - "wild_feet_sweatpants": { - "feet": "5f5e410c6bdad616ad46d60b", - "isNotRandom": false, - "NotRandom": false - }, - "wild_feet_wasatch": { - "feet": "5f5e41366760b4138443b343", - "isNotRandom": false, - "NotRandom": false - }, - "wild_feet_slimPants": { - "feet": "5f5e41576760b4138443b344", - "isNotRandom": false, - "NotRandom": false - }, - "pants_cultist_01": { - "feet": "5fb535bd1c69e5198e234125", - "isNotRandom": true, - "NotRandom": false - }, - "pants_cultist_02": { - "feet": "5fb535cf1c69e5198e234126", - "isNotRandom": true, - "NotRandom": false - }, - "wild_feet_scavelite_taclite": { - "feet": "6033a430ed2e0509b15f9033", - "isNotRandom": true, - "NotRandom": false - }, - "pants_boss_tagilla": { - "feet": "609e86c09776a947754429b2", - "isNotRandom": true, - "NotRandom": false - }, - "wild_feet_bomber": { - "feet": "6193be546e5968395b260157", - "isNotRandom": false, - "NotRandom": false - }, - "wild_pants_yellowcoat": { - "feet": "61922589bb2cea6f7a22d964", - "isNotRandom": false, - "NotRandom": false - }, - "Pants_BOSS_Blackknight": { - "feet": "628771f70828252c7a28b961", - "isNotRandom": true, - "NotRandom": false - }, - "Pants_BOSS_BigPipe": { - "feet": "6287b14b66bb7d4a3c32bc94", - "isNotRandom": true, - "NotRandom": false - }, - "Pants_BOSS_Birdeye": { - "feet": "628a4645c9327c7587388849", - "isNotRandom": true, - "NotRandom": false - }, - "Pants_BOSS_Zryachi": { - "feet": "6361216278f9ab270a0a48d9", - "isNotRandom": true, - "NotRandom": false - }, - "wild_feet_victory": { - "feet": "637df25a1e688345e1097bd4", - "isNotRandom": false, - "NotRandom": false - }, - "Pants_BOSS_Kaban": { - "feet": "64806edf77c11aeac5078e33", - "isNotRandom": true, - "NotRandom": false - }, - "wild_feet_feldparka": { - "feet": "64a2e970a74bb33d140e6dc5", - "isNotRandom": false, - "NotRandom": false - }, - "Pants_BOSS_Kolontai": { - "feet": "654a2bc5ee6e547e9f6238e7", - "isNotRandom": true, - "NotRandom": false - }, - "wild_security_feet_bratva_1": { - "feet": "65749c05e0423b9ebe0c79c7", - "isNotRandom": true, - "NotRandom": false - }, - "wild_security_feet_bratva_2": { - "feet": "65749c1fe32c4e3f7907bf47", - "isNotRandom": true, - "NotRandom": false - } - }, - "CustomizationVoice": [ - { - "voice": "Bear_1", - "side": [ - "Bear", - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "Bear_2", - "side": [ - "Bear", - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "Usec_1", - "side": [ - "Usec", - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "Usec_2", - "side": [ - "Usec", - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "Scav_1", - "side": [ - "Savage" - ], - "isNotRandom": false - }, - { - "voice": "Scav_2", - "side": [ - "Savage" - ], - "isNotRandom": false - }, - { - "voice": "Scav_3", - "side": [ - "Savage" - ], - "isNotRandom": false - }, - { - "voice": "Scav_4", - "side": [ - "Savage" - ], - "isNotRandom": false - }, - { - "voice": "Scav_5", - "side": [ - "Savage" - ], - "isNotRandom": false - }, - { - "voice": "Scav_6", - "side": [ - "Savage" - ], - "isNotRandom": false - }, - { - "voice": "Usec_3", - "side": [ - "Usec", - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "Bear_3", - "side": [ - "Bear", - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "BossBully", - "side": [ - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "BossGluhar", - "side": [ - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "BossSanitar", - "side": [ - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "SectantWarrior", - "side": [ - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "SectantPriest", - "side": [ - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "Bear_1_Eng", - "side": [ - "Bear" - ], - "isNotRandom": true - }, - { - "voice": "Bear_2_Eng", - "side": [ - "Bear" - ], - "isNotRandom": true - }, - { - "voice": "Usec_4", - "side": [ - "Usec" - ], - "isNotRandom": true - }, - { - "voice": "Usec_5", - "side": [ - "Usec" - ], - "isNotRandom": true - }, - { - "voice": "BossTagilla", - "side": [ - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "BossKilla", - "side": [ - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "BossKnight", - "side": [ - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "BossBirdEye", - "side": [ - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "BossBigPipe", - "side": [ - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "Arena_Guard_1", - "side": [ - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "Arena_Guard_2", - "side": [ - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "Boss_Kaban", - "side": [ - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "Boss_Kollontay", - "side": [ - "Savage" - ], - "isNotRandom": true - }, - { - "voice": "Boss_Sturman", - "side": [ - "Savage" - ], - "isNotRandom": true - } - ], - "BodyParts": { - "Head": "Head", - "Body": "Body", - "Feet": "Feet", - "Hands": "Hands" - } - }, - "UncheckOnShot": true, - "BotsEnabled": true, - "ArmorMaterials": { - "UHMWPE": { - "Destructibility": 0.3375, - "MinRepairDegradation": 0.01, - "MaxRepairDegradation": 0.03, - "ExplosionDestructibility": 0.3, - "MinRepairKitDegradation": 0.005, - "MaxRepairKitDegradation": 0.025 - }, - "Aramid": { - "Destructibility": 0.1875, - "MinRepairDegradation": 0.03, - "MaxRepairDegradation": 0.07, - "ExplosionDestructibility": 0.15, - "MinRepairKitDegradation": 0.025, - "MaxRepairKitDegradation": 0.065 - }, - "Combined": { - "Destructibility": 0.375, - "MinRepairDegradation": 0.1, - "MaxRepairDegradation": 0.15, - "ExplosionDestructibility": 0.2, - "MinRepairKitDegradation": 0.09, - "MaxRepairKitDegradation": 0.14 - }, - "Titan": { - "Destructibility": 0.4125, - "MinRepairDegradation": 0.06, - "MaxRepairDegradation": 0.1, - "ExplosionDestructibility": 0.375, - "MinRepairKitDegradation": 0.055, - "MaxRepairKitDegradation": 0.09 - }, - "Aluminium": { - "Destructibility": 0.45, - "MinRepairDegradation": 0.06, - "MaxRepairDegradation": 0.1, - "ExplosionDestructibility": 0.45, - "MinRepairKitDegradation": 0.055, - "MaxRepairKitDegradation": 0.09 - }, - "ArmoredSteel": { - "Destructibility": 0.525, - "MinRepairDegradation": 0.01, - "MaxRepairDegradation": 0.03, - "ExplosionDestructibility": 0.45, - "MinRepairKitDegradation": 0.005, - "MaxRepairKitDegradation": 0.025 - }, - "Ceramic": { - "Destructibility": 0.6, - "MinRepairDegradation": 0.17, - "MaxRepairDegradation": 0.22, - "ExplosionDestructibility": 0.525, - "MinRepairKitDegradation": 0.155, - "MaxRepairKitDegradation": 0.2 - }, - "Glass": { - "Destructibility": 0.6, - "MinRepairDegradation": 0.23, - "MaxRepairDegradation": 0.42, - "ExplosionDestructibility": 0.6, - "MinRepairKitDegradation": 0.21, - "MaxRepairKitDegradation": 0.38 - } - }, - "LegsOverdamage": 1, - "HandsOverdamage": 0.7, - "StomachOverdamage": 1.5, - "Health": { - "Falling": { - "DamagePerMeter": 9, - "SafeHeight": 3 - }, - "Effects": { - "Existence": { - "EnergyLoopTime": 60, - "HydrationLoopTime": 60, - "EnergyDamage": 3.2, - "HydrationDamage": 2.6, - "DestroyedStomachEnergyTimeFactor": 5, - "DestroyedStomachHydrationTimeFactor": 5 - }, - "Dehydration": { - "DefaultDelay": 50, - "DefaultResidueTime": 5, - "BleedingHealth": 0.4, - "BleedingLoopTime": 6, - "BleedingLifeTime": 30, - "DamageOnStrongDehydration": 1, - "StrongDehydrationLoopTime": 15 - }, - "BreakPart": { - "DefaultDelay": 5, - "DefaultResidueTime": 5, - "HealExperience": 30, - "OfflineDurationMin": -1, - "OfflineDurationMax": -1, - "RemovePrice": 1000, - "RemovedAfterDeath": false, - "BulletHitProbability": { - "FunctionType": "SquareRoot", - "K": 0.3, - "B": 0.05, - "Threshold": 0.3 - }, - "FallingProbability": { - "FunctionType": "Linear", - "K": 1, - "B": 0.38, - "Threshold": 0.2 - } - }, - "Contusion": { - "Dummy": 0 - }, - "Disorientation": { - "Dummy": 0 - }, - "Exhaustion": { - "DefaultDelay": 30, - "DefaultResidueTime": 5, - "Damage": 1, - "DamageLoopTime": 5 - }, - "LowEdgeHealth": { - "DefaultDelay": 0.4, - "DefaultResidueTime": 5, - "StartCommonHealth": 130 - }, - "RadExposure": { - "Damage": 1, - "DamageLoopTime": 2 - }, - "Stun": { - "Dummy": 0 - }, - "Intoxication": { - "DefaultDelay": 10, - "DefaultResidueTime": 15, - "DamageHealth": 1, - "HealthLoopTime": 3, - "OfflineDurationMin": -1, - "OfflineDurationMax": -1, - "RemovedAfterDeath": false, - "HealExperience": 150, - "RemovePrice": 42700 - }, - "Regeneration": { - "LoopTime": 3, - "MinimumHealthPercentage": 30, - "Energy": 1, - "Hydration": 1, - "BodyHealth": { - "Head": { - "Value": 0.6125 - }, - "Chest": { - "Value": 1.4 - }, - "Stomach": { - "Value": 1.225 - }, - "LeftArm": { - "Value": 1.05 - }, - "RightArm": { - "Value": 1.05 - }, - "LeftLeg": { - "Value": 1.1375 - }, - "RightLeg": { - "Value": 1.1375 - } - }, - "Influences": { - "LightBleeding": { - "HealthSlowDownPercentage": 100, - "EnergySlowDownPercentage": 0, - "HydrationSlowDownPercentage": 0 - }, - "HeavyBleeding": { - "HealthSlowDownPercentage": 100, - "EnergySlowDownPercentage": 0, - "HydrationSlowDownPercentage": 0 - }, - "Fracture": { - "HealthSlowDownPercentage": 0, - "EnergySlowDownPercentage": 0, - "HydrationSlowDownPercentage": 0 - }, - "RadExposure": { - "HealthSlowDownPercentage": 0, - "EnergySlowDownPercentage": 0, - "HydrationSlowDownPercentage": 0 - }, - "Intoxication": { - "HealthSlowDownPercentage": 0, - "EnergySlowDownPercentage": 0, - "HydrationSlowDownPercentage": 0 - } - } - }, - "Wound": { - "WorkingTime": 480, - "ThresholdMin": 25, - "ThresholdMax": 60 - }, - "Berserk": { - "DefaultDelay": 5, - "WorkingTime": 10, - "DefaultResidueTime": 3 - }, - "Flash": { - "Dummy": 0 - }, - "MedEffect": { - "LoopTime": 0.4, - "StartDelay": 0, - "DrinkStartDelay": 2, - "FoodStartDelay": 1, - "DrugsStartDelay": 0, - "MedKitStartDelay": 2, - "MedicalStartDelay": 0, - "StimulatorStartDelay": 0 - }, - "Pain": { - "TremorDelay": 30, - "HealExperience": 20 - }, - "PainKiller": { - "Dummy": 0 - }, - "SandingScreen": { - "Dummy": 0 - }, - "Stimulator": { - "BuffLoopTime": 0.2, - "Buffs": { - "BuffsSJ1TGLabs": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 180, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "Endurance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 180, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "Strength" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 180, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "StressResistance" - }, - { - "BuffType": "EnergyRate", - "Chance": 1, - "Delay": 100, - "Duration": 200, - "Value": -0.25, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HydrationRate", - "Chance": 1, - "Delay": 100, - "Duration": 200, - "Value": -0.3, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "BuffsSJ6TGLabs": [ - { - "BuffType": "MaxStamina", - "Chance": 1, - "Delay": 1, - "Duration": 240, - "Value": 30, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "StaminaRate", - "Chance": 1, - "Delay": 1, - "Duration": 240, - "Value": 2, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HandsTremor", - "Chance": 1, - "Delay": 200, - "Duration": 40, - "Value": 0, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "QuantumTunnelling", - "Chance": 1, - "Delay": 200, - "Duration": 40, - "Value": 0, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "BuffsPropital": [ - { - "BuffType": "HealthRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "Metabolism" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "Health" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "Vitality" - }, - { - "BuffType": "HandsTremor", - "Chance": 1, - "Delay": 270, - "Duration": 30, - "Value": 0, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "QuantumTunnelling", - "Chance": 1, - "Delay": 270, - "Duration": 30, - "Value": 0, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "BuffsZagustin": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 180, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "Vitality" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 180, - "Value": -5, - "AbsoluteValue": true, - "SkillName": "Metabolism" - }, - { - "BuffType": "RemoveAllBloodLosses", - "Chance": 1, - "Delay": 0, - "Duration": 180, - "Value": 0, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HandsTremor", - "Chance": 1, - "Delay": 170, - "Duration": 40, - "Value": 0, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HydrationRate", - "Chance": 1, - "Delay": 170, - "Duration": 40, - "Value": -1.4, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "BuffseTGchange": [ - { - "BuffType": "HealthRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 6.5, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "EnergyRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 0.5, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 90, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "Metabolism" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 90, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "Immunity" - }, - { - "BuffType": "EnergyRate", - "Chance": 1, - "Delay": 65, - "Duration": 20, - "Value": -3, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 65, - "Duration": 60, - "Value": -5, - "AbsoluteValue": true, - "SkillName": "Endurance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 65, - "Duration": 60, - "Value": -5, - "AbsoluteValue": true, - "SkillName": "Health" - } - ], - "BuffsAdrenaline": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Endurance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Strength" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "RecoilControl" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": -10, - "AbsoluteValue": true, - "SkillName": "StressResistance" - }, - { - "BuffType": "HealthRate", - "Chance": 1, - "Delay": 1, - "Duration": 15, - "Value": 4, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HydrationRate", - "Chance": 1, - "Delay": 50, - "Duration": 30, - "Value": -1, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "EnergyRate", - "Chance": 1, - "Delay": 50, - "Duration": 30, - "Value": -0.8, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "BuffsGoldenStarBalm": [ - { - "BuffType": "EnergyRate", - "Chance": 1, - "Delay": 1, - "Duration": 5, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HydrationRate", - "Chance": 1, - "Delay": 1, - "Duration": 5, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "Contusion", - "Chance": 1, - "Delay": 1, - "Duration": 5, - "Value": 1, - "AbsoluteValue": false, - "SkillName": "" - } - ], - "Buffs_drink_aquamari": [ - { - "BuffType": "MaxStamina", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "StaminaRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_drink_maxenergy": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Endurance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": -1, - "AbsoluteValue": true, - "SkillName": "StressResistance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "MagDrills" - } - ], - "Buffs_drink_milk": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Immunity" - } - ], - "Buffs_drink_tarcola": [ - { - "BuffType": "EnergyRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 0.1, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_drink_hotrod": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Endurance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Strength" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "MagDrills" - } - ], - "Buffs_drink_juice_army": [ - { - "BuffType": "EnergyRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 0.2, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_drink_water": [ - { - "BuffType": "MaxStamina", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 5, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_food_borodinskiye": [ - { - "BuffType": "HydrationRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": -0.2, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_food_condensed_milk": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 3, - "AbsoluteValue": true, - "SkillName": "Intellect" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 3, - "AbsoluteValue": true, - "SkillName": "Attention" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 3, - "AbsoluteValue": true, - "SkillName": "StressResistance" - } - ], - "Buffs_food_emelya": [ - { - "BuffType": "HydrationRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": -0.2, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_food_mayonez": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": -3, - "AbsoluteValue": true, - "SkillName": "Metabolism" - } - ], - "Buffs_food_mre": [ - { - "BuffType": "EnergyRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 0.1, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_food_sugar": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 300, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Intellect" - } - ], - "Buffs_drink_vodka": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 250, - "Value": 5, - "AbsoluteValue": true, - "SkillName": "StressResistance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 250, - "Value": -10, - "AbsoluteValue": true, - "SkillName": "Memory" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 250, - "Value": -5, - "AbsoluteValue": true, - "SkillName": "Health" - }, - { - "BuffType": "HandsTremor", - "Chance": 1, - "Delay": 255, - "Duration": 120, - "Value": 0, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_drink_jack": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 210, - "Value": 2, - "AbsoluteValue": true, - "SkillName": "StressResistance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 210, - "Value": -3, - "AbsoluteValue": true, - "SkillName": "Memory" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 210, - "Value": -2, - "AbsoluteValue": true, - "SkillName": "Health" - }, - { - "BuffType": "HandsTremor", - "Chance": 1, - "Delay": 220, - "Duration": 60, - "Value": 0, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_drink_moonshine": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 500, - "Value": 3, - "AbsoluteValue": true, - "SkillName": "StressResistance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 500, - "Value": -5, - "AbsoluteValue": true, - "SkillName": "Memory" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 500, - "Value": -1, - "AbsoluteValue": true, - "SkillName": "Health" - }, - { - "BuffType": "HandsTremor", - "Chance": 1, - "Delay": 510, - "Duration": 150, - "Value": 0, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_drink_purewater": [ - { - "BuffType": "HealthRate", - "Chance": 1, - "Delay": 3, - "Duration": 60, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 600, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Endurance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 600, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Strength" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 600, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Vitality" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 600, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Health" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 600, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "StressResistance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 600, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Metabolism" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 600, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Immunity" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 600, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Intellect" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 600, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Memory" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 600, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Perception" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 600, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Attention" - } - ], - "Buffs_3bTG": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 240, - "Value": 30, - "AbsoluteValue": true, - "SkillName": "Attention" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 240, - "Value": 30, - "AbsoluteValue": true, - "SkillName": "Perception" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 240, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Strength" - }, - { - "BuffType": "StaminaRate", - "Chance": 1, - "Delay": 1, - "Duration": 240, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HandsTremor", - "Chance": 1, - "Delay": 220, - "Duration": 45, - "Value": 0, - "AbsoluteValue": false, - "SkillName": "" - }, - { - "BuffType": "EnergyRate", - "Chance": 1, - "Delay": 120, - "Duration": 120, - "Value": -0.25, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_AHF1M": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 5, - "AbsoluteValue": true, - "SkillName": "Health" - }, - { - "BuffType": "RemoveAllBloodLosses", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 0, - "AbsoluteValue": false, - "SkillName": "" - }, - { - "BuffType": "HydrationRate", - "Chance": 1, - "Delay": 1, - "Duration": 120, - "Value": -0.3, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_L1": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 120, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Endurance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 120, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "Strength" - }, - { - "BuffType": "MaxStamina", - "Chance": 1, - "Delay": 1, - "Duration": 120, - "Value": 30, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HydrationRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": -0.45, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "EnergyRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": -0.45, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_MULE": [ - { - "BuffType": "WeightLimit", - "Chance": 1, - "Delay": 1, - "Duration": 900, - "Value": 0.5, - "AbsoluteValue": false, - "SkillName": "" - }, - { - "BuffType": "HealthRate", - "Chance": 1, - "Delay": 1, - "Duration": 900, - "Value": -0.1, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_Meldonin": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 900, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Strength" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 900, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "Endurance" - }, - { - "BuffType": "StaminaRate", - "Chance": 1, - "Delay": 1, - "Duration": 900, - "Value": 0.5, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HydrationRate", - "Chance": 1, - "Delay": 30, - "Duration": 900, - "Value": -0.1, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "EnergyRate", - "Chance": 1, - "Delay": 30, - "Duration": 900, - "Value": -0.1, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_Obdolbos": [ - { - "BuffType": "SkillRate", - "Chance": 0.25, - "Delay": 0, - "Duration": 600, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Endurance" - }, - { - "BuffType": "SkillRate", - "Chance": 0.25, - "Delay": 0, - "Duration": 600, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Strength" - }, - { - "BuffType": "SkillRate", - "Chance": 0.25, - "Delay": 0, - "Duration": 600, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Intellect" - }, - { - "BuffType": "SkillRate", - "Chance": 0.25, - "Delay": 0, - "Duration": 600, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Attention" - }, - { - "BuffType": "SkillRate", - "Chance": 0.25, - "Delay": 0, - "Duration": 600, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "StressResistance" - }, - { - "BuffType": "SkillRate", - "Chance": 0.25, - "Delay": 0, - "Duration": 600, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Charisma" - }, - { - "BuffType": "MaxStamina", - "Chance": 0.25, - "Delay": 0, - "Duration": 600, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HealthRate", - "Chance": 0.25, - "Delay": 0, - "Duration": 600, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "StaminaRate", - "Chance": 0.25, - "Delay": 0, - "Duration": 600, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "WeightLimit", - "Chance": 0.25, - "Delay": 0, - "Duration": 600, - "Value": 0.1, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "DamageModifier", - "Chance": 0.25, - "Delay": 0, - "Duration": 600, - "Value": 0.2, - "AbsoluteValue": false, - "SkillName": "" - }, - { - "BuffType": "HandsTremor", - "Chance": 0.25, - "Delay": 0, - "Duration": 600, - "Value": 0, - "AbsoluteValue": false, - "SkillName": "" - }, - { - "BuffType": "HydrationRate", - "Chance": 0.25, - "Delay": 0, - "Duration": 600, - "Value": -1, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "EnergyRate", - "Chance": 0.25, - "Delay": 0, - "Duration": 600, - "Value": -1, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HealthRate", - "Chance": 0.25, - "Delay": 0, - "Duration": 600, - "Value": -600, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_P22": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 30, - "AbsoluteValue": true, - "SkillName": "StressResistance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 30, - "AbsoluteValue": true, - "SkillName": "Health" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 30, - "AbsoluteValue": true, - "SkillName": "Vitality" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 65, - "Duration": 60, - "Value": -10, - "AbsoluteValue": true, - "SkillName": "Endurance" - }, - { - "BuffType": "StaminaRate", - "Chance": 1, - "Delay": 65, - "Duration": 60, - "Value": -0.8, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_KultistsToxin": [ - { - "BuffType": "UnknownToxin", - "Chance": 1, - "Delay": 6, - "Duration": -1, - "Value": 0, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_BodyTemperature": [ - { - "BuffType": "BodyTemperature", - "Chance": 1, - "Delay": 6, - "Duration": 300, - "Value": -7, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 6, - "Duration": 300, - "Value": -20, - "AbsoluteValue": true, - "SkillName": "Metabolism" - }, - { - "BuffType": "HealthRate", - "Chance": 1, - "Delay": 6, - "Duration": 420, - "Value": -0.1, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HandsTremor", - "Chance": 1, - "Delay": 6, - "Duration": 420, - "Value": 0, - "AbsoluteValue": false, - "SkillName": "" - }, - { - "BuffType": "Pain", - "Chance": 1, - "Delay": 300, - "Duration": 120, - "Value": 0, - "AbsoluteValue": false, - "SkillName": "" - } - ], - "Buffs_Antidote": [ - { - "BuffType": "Antidote", - "Chance": 1, - "Delay": 6, - "Duration": 60, - "Value": 0, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 6, - "Duration": 60, - "Value": -5, - "AbsoluteValue": true, - "SkillName": "Health" - } - ], - "Buffs_melee_bleed": [ - { - "BuffType": "HeavyBleeding", - "Chance": 0.5, - "Delay": 1, - "Duration": 0, - "Value": 0, - "AbsoluteValue": false, - "SkillName": "", - "AppliesTo": [] - }, - { - "BuffType": "LightBleeding", - "Chance": 1, - "Delay": 1, - "Duration": 0, - "Value": 0, - "AbsoluteValue": false, - "SkillName": "", - "AppliesTo": [] - } - ], - "Buffs_melee_blunt": [ - { - "BuffType": "Contusion", - "Chance": 1, - "Delay": 1, - "Duration": 100, - "Value": 1, - "AbsoluteValue": false, - "SkillName": "", - "AppliesTo": [ - "Head" - ] - }, - { - "BuffType": "Fracture", - "Chance": 1, - "Delay": 0, - "Duration": 0, - "Value": 0, - "AbsoluteValue": false, - "SkillName": "", - "AppliesTo": [] - } - ], - "Buffs_hultafors": [ - { - "BuffType": "Contusion", - "Chance": 1, - "Delay": 0, - "Duration": 20, - "Value": 0, - "AbsoluteValue": false, - "SkillName": "", - "AppliesTo": [] - }, - { - "BuffType": "Fracture", - "Chance": 1, - "Delay": 0, - "Duration": 0, - "Value": 0, - "AbsoluteValue": false, - "SkillName": "", - "AppliesTo": [] - }, - { - "BuffType": "Pain", - "Chance": 1, - "Delay": 0, - "Duration": 20, - "Value": 0, - "AbsoluteValue": false, - "SkillName": "", - "AppliesTo": [] - } - ], - "Buffs_drink_vodka_BAD": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 250, - "Value": 5, - "AbsoluteValue": true, - "SkillName": "StressResistance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 250, - "Value": -10, - "AbsoluteValue": true, - "SkillName": "Memory" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 250, - "Value": -5, - "AbsoluteValue": true, - "SkillName": "Health" - }, - { - "BuffType": "HandsTremor", - "Chance": 1, - "Delay": 255, - "Duration": 120, - "Value": 0, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "SkillRate", - "Chance": 0.2, - "Delay": 5, - "Duration": 250, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Endurance" - }, - { - "BuffType": "SkillRate", - "Chance": 0.2, - "Delay": 5, - "Duration": 250, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Strength" - }, - { - "BuffType": "SkillRate", - "Chance": 0.2, - "Delay": 5, - "Duration": 250, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Charisma" - }, - { - "BuffType": "SkillRate", - "Chance": 0.2, - "Delay": 5, - "Duration": 250, - "Value": -10, - "AbsoluteValue": true, - "SkillName": "Intellect" - }, - { - "BuffType": "SkillRate", - "Chance": 0.2, - "Delay": 5, - "Duration": 250, - "Value": -10, - "AbsoluteValue": true, - "SkillName": "Attention" - }, - { - "BuffType": "SkillRate", - "Chance": 0.2, - "Delay": 5, - "Duration": 250, - "Value": -10, - "AbsoluteValue": true, - "SkillName": "Metabolism" - }, - { - "BuffType": "MaxStamina", - "Chance": 0.2, - "Delay": 5, - "Duration": 250, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "StaminaRate", - "Chance": 0.2, - "Delay": 5, - "Duration": 250, - "Value": -1, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HydrationRate", - "Chance": 0.2, - "Delay": 5, - "Duration": 250, - "Value": -0.3, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "WeightLimit", - "Chance": 0.2, - "Delay": 5, - "Duration": 250, - "Value": -0.3, - "AbsoluteValue": false, - "SkillName": "" - }, - { - "BuffType": "SkillRate", - "Chance": 0.05, - "Delay": 5, - "Duration": 250, - "Value": 50, - "AbsoluteValue": true, - "SkillName": "StressResistance" - }, - { - "BuffType": "HealthRate", - "Chance": 0.05, - "Delay": 5, - "Duration": 15, - "Value": -1211, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_food_alyonka": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 120, - "Value": 2, - "AbsoluteValue": true, - "SkillName": "Attention" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 120, - "Value": 2, - "AbsoluteValue": true, - "SkillName": "StressResistance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 120, - "Value": 2, - "AbsoluteValue": true, - "SkillName": "Intellect" - } - ], - "Buffs_food_slippers": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Intellect" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Attention" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "StressResistance" - } - ], - "Buffs_knife": [ - { - "BuffType": "DamageModifier", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 0.5, - "AbsoluteValue": false, - "SkillName": "" - }, - { - "BuffType": "HealthRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": -0.5, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "Pain", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 0, - "AbsoluteValue": false, - "SkillName": "" - }, - { - "BuffType": "QuantumTunnelling", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 0, - "AbsoluteValue": false, - "SkillName": "" - }, - { - "BuffType": "HandsTremor", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 0, - "AbsoluteValue": false, - "SkillName": "" - } - ], - "Buffs_food_beer": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 5, - "Duration": 120, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "StressResistance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 5, - "Duration": 120, - "Value": 1, - "AbsoluteValue": true, - "SkillName": "Charisma" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 5, - "Duration": 120, - "Value": -3, - "AbsoluteValue": true, - "SkillName": "Attention" - } - ], - "Buffs_Obdolbos2": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 0, - "Duration": 1800, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "Endurance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 0, - "Duration": 1800, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "Strength" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 0, - "Duration": 1800, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "Attention" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 0, - "Duration": 1800, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "Perception" - }, - { - "BuffType": "WeightLimit", - "Chance": 1, - "Delay": 0, - "Duration": 1800, - "Value": 0.45, - "AbsoluteValue": false, - "SkillName": "" - }, - { - "BuffType": "MaxStamina", - "Chance": 1, - "Delay": 0, - "Duration": 1800, - "Value": -20, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "StaminaRate", - "Chance": 1, - "Delay": 0, - "Duration": 1800, - "Value": -1, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HealthRate", - "Chance": 1, - "Delay": 0, - "Duration": 1800, - "Value": -1, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_SJ12_TGLabs": [ - { - "BuffType": "BodyTemperature", - "Chance": 1, - "Delay": 1, - "Duration": 600, - "Value": -4, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "EnergyRate", - "Chance": 1, - "Delay": 1, - "Duration": 600, - "Value": 0.05, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HydrationRate", - "Chance": 1, - "Delay": 1, - "Duration": 600, - "Value": 0.05, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 600, - "Value": 30, - "AbsoluteValue": true, - "SkillName": "Perception" - }, - { - "BuffType": "BodyTemperature", - "Chance": 1, - "Delay": 606, - "Duration": 300, - "Value": 6, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_PNB": [ - { - "BuffType": "HealthRate", - "Chance": 1, - "Delay": 1, - "Duration": 40, - "Value": 3, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 40, - "Value": 20, - "AbsoluteValue": true, - "SkillName": "Strength" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 41, - "Duration": 180, - "Value": -20, - "AbsoluteValue": true, - "SkillName": "Health" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 41, - "Duration": 180, - "Value": -20, - "AbsoluteValue": true, - "SkillName": "Vitality" - }, - { - "BuffType": "HandsTremor", - "Chance": 1, - "Delay": 41, - "Duration": 20, - "Value": 0, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_Trimadol": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 180, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Endurance" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 180, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Strength" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 180, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "Attention" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 180, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "StressResistance" - }, - { - "BuffType": "MaxStamina", - "Chance": 1, - "Delay": 1, - "Duration": 180, - "Value": 10, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "StaminaRate", - "Chance": 1, - "Delay": 1, - "Duration": 180, - "Value": 3, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "EnergyRate", - "Chance": 1, - "Delay": 1, - "Duration": 180, - "Value": -0.5, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HydrationRate", - "Chance": 1, - "Delay": 1, - "Duration": 180, - "Value": -0.5, - "AbsoluteValue": true, - "SkillName": "" - } - ], - "Buffs_Perfotoran": [ - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 5, - "AbsoluteValue": true, - "SkillName": "Metabolism" - }, - { - "BuffType": "Antidote", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 0, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "RemoveAllBloodLosses", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 0, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "HealthRate", - "Chance": 1, - "Delay": 1, - "Duration": 60, - "Value": 1.5, - "AbsoluteValue": true, - "SkillName": "" - }, - { - "BuffType": "SkillRate", - "Chance": 1, - "Delay": 60, - "Duration": 60, - "Value": -15, - "AbsoluteValue": true, - "SkillName": "Health" - }, - { - "BuffType": "EnergyRate", - "Chance": 1, - "Delay": 60, - "Duration": 60, - "Value": -1.1, - "AbsoluteValue": true, - "SkillName": "" - } - ] - } - }, - "Tremor": { - "DefaultDelay": 15, - "DefaultResidueTime": 0.2 - }, - "ChronicStaminaFatigue": { - "EnergyRate": 0.0001, - "WorkingTime": 180, - "TicksEvery": 10, - "EnergyRatePerStack": 0.0063 - }, - "Fracture": { - "DefaultDelay": 5, - "DefaultResidueTime": 5, - "HealExperience": 30, - "OfflineDurationMin": -1, - "OfflineDurationMax": -1, - "RemovePrice": 1000, - "RemovedAfterDeath": false, - "BulletHitProbability": { - "FunctionType": "SquareRoot", - "K": 0.3, - "B": 0.05, - "Threshold": 0.3 - }, - "FallingProbability": { - "FunctionType": "Linear", - "K": 1, - "B": 0.38, - "Threshold": 0.2 - } - }, - "HeavyBleeding": { - "DefaultDelay": 0.4, - "DefaultResidueTime": 0.4, - "DamageEnergy": 0.5, - "DamageHealth": 0.9, - "EnergyLoopTime": 5, - "HealthLoopTime": 4, - "DamageHealthDehydrated": 0.4, - "HealthLoopTimeDehydrated": 6, - "LifeTimeDehydrated": 0, - "EliteVitalityDuration": 33, - "HealExperience": 40, - "OfflineDurationMin": 900, - "OfflineDurationMax": 900, - "RemovePrice": 1200, - "RemovedAfterDeath": false, - "Probability": { - "FunctionType": "Linear", - "K": 0.45, - "B": -0.17, - "Threshold": 0.5 - } - }, - "LightBleeding": { - "DefaultDelay": 0.4, - "DefaultResidueTime": 0.4, - "DamageEnergy": 0.5, - "DamageHealth": 0.8, - "EnergyLoopTime": 6, - "HealthLoopTime": 6, - "DamageHealthDehydrated": 0.4, - "HealthLoopTimeDehydrated": 6, - "LifeTimeDehydrated": 30, - "EliteVitalityDuration": 22, - "HealExperience": 25, - "OfflineDurationMin": 600, - "OfflineDurationMax": 600, - "RemovePrice": 400, - "RemovedAfterDeath": false, - "Probability": { - "FunctionType": "Linear", - "K": 0.5, - "B": -0.125, - "Threshold": 0.35 - } - }, - "BodyTemperature": { - "DefaultBuildUpTime": 15, - "DefaultResidueTime": 15, - "LoopTime": 1 - }, - "MildMusclePain": { - "OfflineDurationMin": -1, - "OfflineDurationMax": -1, - "GymEffectivity": 0.5, - "TraumaChance": 0 - }, - "SevereMusclePain": { - "OfflineDurationMin": -1, - "OfflineDurationMax": -1, - "GymEffectivity": 1, - "TraumaChance": 10 - } - }, - "HealPrice": { - "HealthPointPrice": 30, - "HydrationPointPrice": 0, - "EnergyPointPrice": 0, - "TrialLevels": 5, - "TrialRaids": 30 - }, - "ProfileHealthSettings": { - "BodyPartsSettings": { - "Head": { - "Minimum": 0, - "Maximum": 35, - "Default": 35, - "OverDamageReceivedMultiplier": 0.7, - "EnvironmentDamageMultiplier": 0.125 - }, - "Chest": { - "Minimum": 0, - "Maximum": 85, - "Default": 85, - "OverDamageReceivedMultiplier": 0.7, - "EnvironmentDamageMultiplier": 0.25 - }, - "Stomach": { - "Minimum": 0, - "Maximum": 70, - "Default": 70, - "OverDamageReceivedMultiplier": 0.7, - "EnvironmentDamageMultiplier": 0.17 - }, - "LeftArm": { - "Minimum": 0, - "Maximum": 60, - "Default": 60, - "OverDamageReceivedMultiplier": 0.7, - "EnvironmentDamageMultiplier": 0.5 - }, - "RightArm": { - "Minimum": 0, - "Maximum": 60, - "Default": 60, - "OverDamageReceivedMultiplier": 0.7, - "EnvironmentDamageMultiplier": 0.5 - }, - "LeftLeg": { - "Minimum": 0, - "Maximum": 65, - "Default": 65, - "OverDamageReceivedMultiplier": 0.7, - "EnvironmentDamageMultiplier": 0.5 - }, - "RightLeg": { - "Minimum": 0, - "Maximum": 65, - "Default": 65, - "OverDamageReceivedMultiplier": 0.7, - "EnvironmentDamageMultiplier": 0.5 - } - }, - "HealthFactorsSettings": { - "Energy": { - "Minimum": 0, - "Maximum": 100, - "Default": 100 - }, - "Hydration": { - "Minimum": 0, - "Maximum": 100, - "Default": 100 - }, - "Temperature": { - "Minimum": 28, - "Maximum": 40, - "Default": 36.6 - }, - "Poisoning": { - "Minimum": 0, - "Maximum": 100, - "Default": 0 - }, - "Radiation": { - "Minimum": 0, - "Maximum": 100, - "Default": 0 - } - }, - "DefaultStimulatorBuff": "" - } - }, - "rating": { - "levelRequired": 10, - "limit": 100, - "categories": { - "experience": true, - "kd": false, - "surviveRatio": false, - "avgEarnings": false, - "pmcKills": true, - "raidCount": true, - "longestShot": true, - "timeOnline": true, - "inventoryFullCost": true, - "ragFairStanding": true - } - }, - "tournament": { - "categories": { - "dogtags": true - }, - "limit": 20, - "levelRequired": 1 - }, - "RagFair": { - "enabled": true, - "priceStabilizerEnabled": false, - "includePveTraderSales": false, - "priceStabilizerStartIntervalInHours": 1, - "minUserLevel": 15, - "communityTax": 3, - "communityItemTax": 3, - "communityRequirementTax": 3, - "offerPriorityCost": 6, - "offerDurationTimeInHour": 12, - "offerDurationTimeInHourAfterRemove": 0.02, - "priorityTimeModifier": 2, - "maxRenewOfferTimeInHour": 48, - "renewPricePerHour": 0.5, - "maxActiveOfferCount": [ - { - "from": -10000, - "to": -2, - "count": 1 - }, - { - "from": -2, - "to": 0.2, - "count": 1 - }, - { - "from": 0.2, - "to": 7, - "count": 2 - }, - { - "from": 7, - "to": 30, - "count": 3 - }, - { - "from": 30, - "to": 60, - "count": 4 - }, - { - "from": 60, - "to": 100, - "count": 5 - }, - { - "from": 100, - "to": 150, - "count": 6 - }, - { - "from": 150, - "to": 200, - "count": 8 - }, - { - "from": 200, - "to": 250, - "count": 8 - }, - { - "from": 250, - "to": 500, - "count": 8 - }, - { - "from": 500, - "to": 750, - "count": 8 - }, - { - "from": 750, - "to": 1000, - "count": 8 - }, - { - "from": 1000, - "to": 10000, - "count": 10 - } - ], - "balancerRemovePriceCoefficient": 5, - "balancerMinPriceCount": 3, - "balancerAveragePriceCoefficient": 10, - "delaySinceOfferAdd": 0, - "uniqueBuyerTimeoutInDays": 14, - "ratingSumForIncrease": 100000, - "ratingIncreaseCount": 0.02, - "ratingSumForDecrease": 100000, - "ratingDecreaseCount": 0.03, - "maxSumForIncreaseRatingPerOneSale": 50000000, - "maxSumForDecreaseRatingPerOneSale": 30000000, - "maxSumForRarity": { - "Common": { - "value": 999999 - }, - "Rare": { - "value": 999999 - }, - "Superrare": { - "value": 999999 - }, - "Not_exist": { - "value": 999999 - } - }, - "ChangePriceCoef": 1, - "balancerUserItemSaleCooldownEnabled": true, - "balancerUserItemSaleCooldown": 1, - "youSellOfferMaxStorageTimeInHour": 72, - "yourOfferDidNotSellMaxStorageTimeInHour": 72, - "isOnlyFoundInRaidAllowed": true, - "sellInOnePiece": 300 + "match_end": { + "README": "Сначала проверяются условия выхода (*_requirement), только потом применяются награды (*_reward). Получившаяся сумма умножается на *Mult", + "killedMult": 1, + "leftMult": 0, + "miaMult": 1, + "mia_exp_reward": 200, + "runnerMult": 0.5, + "runner_exp_reward": 200, + "survivedMult": 1.3, + "survived_exp_requirement": 200, + "survived_exp_reward": 300, + "survived_seconds_requirement": 420 + }, + "triggerMult": 2 }, "handbook": { "defaultCategory": "5b5f78dc86f77409407a7f8e" }, - "FractureCausedByFalling": { - "FunctionType": "Linear", - "K": 1, - "B": 0.38, - "Threshold": 0.2 - }, - "FractureCausedByBulletHit": { - "FunctionType": "SquareRoot", - "K": 0.3, - "B": 0.05, - "Threshold": 0.3 - }, - "WAVE_COEF_LOW": 1, - "WAVE_COEF_MID": 1.4, - "WAVE_COEF_HIGH": 1.8, - "WAVE_COEF_HORDE": 10, - "Stamina": { - "Capacity": 100, - "SprintDrainRate": 4, - "BaseRestorationRate": 4.5, - "JumpConsumption": 14, - "GrenadeHighThrow": 11, - "GrenadeLowThrow": 8, - "AimDrainRate": 1.1, - "AimRangeFinderDrainRate": 0.55, - "OxygenCapacity": 350, - "OxygenRestoration": 4, - "WalkOverweightLimits": { - "x": 45, - "y": 75, - "z": 0 - }, - "BaseOverweightLimits": { - "x": 26, - "y": 67, - "z": 0 - }, - "SprintOverweightLimits": { - "x": 26, - "y": 63, - "z": 0 - }, - "WalkSpeedOverweightLimits": { - "x": 35, - "y": 70, - "z": 0 - }, - "CrouchConsumption": { - "x": 0.17, - "y": 0.7, - "z": 0 - }, - "WalkConsumption": { - "x": 0.2, - "y": 0.5, - "z": 0 - }, - "StandupConsumption": { - "x": 10, - "y": 20, - "z": 0 - }, - "TransitionSpeed": { - "x": 1, - "y": 0.66, - "z": 0 - }, - "SprintAccelerationLowerLimit": 0.8, - "SprintSpeedLowerLimit": 0.1, - "SprintSensitivityLowerLimit": 0.5, - "AimConsumptionByPose": { - "x": 0.15, - "y": 0.75, - "z": 1 - }, - "RestorationMultiplierByPose": { - "x": 1.45, - "y": 1.25, - "z": 1 - }, - "OverweightConsumptionByPose": { - "x": -3, - "y": -2, - "z": 0 - }, - "AimingSpeedMultiplier": 0.4, - "WalkVisualEffectMultiplier": 0.1, - "HandsCapacity": 70, - "HandsRestoration": 2.1, - "ProneConsumption": 1, - "BaseHoldBreathConsumption": 4, - "SoundRadius": { - "x": 1, - "y": 1.3, - "z": 0 - }, - "ExhaustedMeleeSpeed": 0.65, - "FatigueRestorationRate": 0.42, - "FatigueAmountToCreateEffect": 15, - "ExhaustedMeleeDamageMultiplier": 0.33, - "FallDamageMultiplier": 3.9, - "SafeHeightOverweight": 1.75, - "SitToStandConsumption": 1, - "StaminaExhaustionCausesJiggle": true, - "StaminaExhaustionStartsBreathSound": true, - "StaminaExhaustionRocksCamera": false, - "HoldBreathStaminaMultiplier": { - "x": 2, - "y": 1, - "z": 0 - }, - "PoseLevelIncreaseSpeed": { - "x": 0.65, - "y": 0.4, - "z": 0 - }, - "PoseLevelDecreaseSpeed": { - "x": 0.85, - "y": 0.6, - "z": 0 - }, - "PoseLevelConsumptionPerNotch": { - "x": 1.1, - "y": 3, - "z": 0 - }, - "WeaponFastSwitchConsumption": 15, - "VaultLegsConsumption": { - "x": 5, - "y": 20, - "z": 0 - }, - "VaultOneHandConsumption": { - "x": 5, - "y": 16, - "z": 0 - }, - "ClimbLegsConsumption": { - "x": 0, - "y": 20, - "z": 0 - }, - "ClimbOneHandConsumption": { - "x": 8, - "y": 20, - "z": 0 - }, - "ClimbTwoHandsConsumption": { - "x": 12, - "y": 25, - "z": 0 - } - }, - "StaminaRestoration": { - "LowerLeftPoint": 0.9, - "LowerRightPoint": 0.5, - "LeftPlatoPoint": 0.1, - "RightPlatoPoint": 0.9, - "RightLimit": 1.5, - "ZeroValue": 0.07 - }, - "StaminaDrain": { - "LowerLeftPoint": 1.2, - "LowerRightPoint": 1.5, - "LeftPlatoPoint": 0.9, - "RightPlatoPoint": 1, - "RightLimit": 1.5, - "ZeroValue": 2 - }, - "RequirementReferences": { - "Alpinist": [ - { - "Requirement": "HasItem", - "Id": "5c12688486f77426843c7d32", - "Count": 1, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_NEED_ITEM {0}" - }, - { - "Requirement": "HasItem", - "Id": "5c0126f40db834002a125382", - "Count": 1, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "EXFIL_NEED_ITEM {0}" - }, - { - "Requirement": "Empty", - "Id": "", - "Count": 0, - "RequiredSlot": "ArmorVest", - "RequirementTip": "EXFIL_ARMOR_TIP" - } - ] - }, - "RestrictionsInRaid": [ - { - "TemplateId": "5449016a4bdc2d6f028b456f", - "MaxInLobby": 400000, - "MaxInRaid": 400000 - }, - { - "TemplateId": "5696686a4bdc2da3298b456a", - "MaxInLobby": 8000, - "MaxInRaid": 8000 - }, - { - "TemplateId": "569668774bdc2da2298b4568", - "MaxInLobby": 8000, - "MaxInRaid": 8000 - }, - { - "TemplateId": "59faff1d86f7746c51718c9c", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5d235b4d86f7742e017bc88a", - "MaxInLobby": 10, - "MaxInRaid": 10 - }, - { - "TemplateId": "619cbf9e0a7c3a1a2731940a", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5c1d0c5f86f7744bb2683cf0", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5c1d0d6d86f7744bb2683e1f", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5c1e495a86f7743109743dfb", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5ad5d7d286f77450166e0a89", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5ad7247386f7747487619dc3", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5448ba0b4bdc2d02308b456c", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5c1e2a1e86f77431ea0ea84c", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5e42c71586f7747f245e1343", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5a0dc95c86f77452440fc675", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5a0ee4b586f7743698200d22", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5a0ee76686f7743698200d5c", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5a13ef0686f7746e5a411744", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5a13f24186f77410e57c5626", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5a0eecf686f7740350630097", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5a0f08bc86f77478f33b84c2", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5aafbde786f774389d0cbc0f", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5e2af55f86f7746d4159f07c", - "MaxInLobby": 1, - "MaxInRaid": 1 - }, - { - "TemplateId": "5d235bb686f77443f4331278", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5c127c4486f7745625356c13", - "MaxInLobby": 2, - "MaxInRaid": 2 - }, - { - "TemplateId": "59fb023c86f7746d0d4b423c", - "MaxInLobby": 2, - "MaxInRaid": 2 - }, - { - "TemplateId": "59fafd4b86f7745ca07e1232", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5c1267ee86f77416ec610f72", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "59faf7ca86f7740dbe19f6c2", - "MaxInLobby": 5, - "MaxInRaid": 5 - }, - { - "TemplateId": "5c0530ee86f774697952d952", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5c052e6986f7746b207bc3c9", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "590c60fc86f77412b13fddcf", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5bc9bdb8d4351e003562b8a1", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5bc9c377d4351e3bac12251b", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5e54f6af86f7742199090bf3", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5df8a4d786f77412672a1e3b", - "MaxInLobby": 1, - "MaxInRaid": 1 - }, - { - "TemplateId": "5780cf942459777df90dcb72", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5c0e774286f77468413cc5b2", - "MaxInLobby": 1, - "MaxInRaid": 1 - }, - { - "TemplateId": "5c0e805e86f774683f3dd637", - "MaxInLobby": 1, - "MaxInRaid": 1 - }, - { - "TemplateId": "5b44c6ae86f7742d1627baea", - "MaxInLobby": 1, - "MaxInRaid": 1 - }, - { - "TemplateId": "59e763f286f7742ee57895da", - "MaxInLobby": 1, - "MaxInRaid": 1 - }, - { - "TemplateId": "5ab8ebf186f7742d8b372e80", - "MaxInLobby": 1, - "MaxInRaid": 1 - }, - { - "TemplateId": "545cdae64bdc2d39198b4568", - "MaxInLobby": 1, - "MaxInRaid": 1 - }, - { - "TemplateId": "5d80c60f86f77440373c4ece", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5d80c62a86f7744036212b3f", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5913915886f774123603c392", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5d08d21286f774736e7c94c3", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5b43575a86f77424f443fe62", - "MaxInLobby": 6, - "MaxInRaid": 6 - }, - { - "TemplateId": "5bc9b720d4351e450201234b", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5d1b327086f7742525194449", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5e2aee0a86f774755a234b62", - "MaxInLobby": 5, - "MaxInRaid": 5 - }, - { - "TemplateId": "5c12620d86f7743f8b198b72", - "MaxInLobby": 6, - "MaxInRaid": 6 - }, - { - "TemplateId": "5c1f79a086f7746ed066fb8f", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5c1e2d1f86f77431e9280bee", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5d8e0db586f7744450412a42", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5d0377ce86f774186372f689", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "590c621186f774138d11ea29", - "MaxInLobby": 6, - "MaxInRaid": 6 - }, - { - "TemplateId": "5c052f6886f7746b1e3db148", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "57347ca924597744596b4e71", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5fca138c2a7b221b2852a5c6", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5c1d0efb86f7744baf2e7b7b", - "MaxInLobby": 2, - "MaxInRaid": 2 - }, - { - "TemplateId": "5e42c81886f7742a01529f57", - "MaxInLobby": 2, - "MaxInRaid": 2 - }, - { - "TemplateId": "5c94bbff86f7747ee735c08f", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5783c43d2459774bbe137486", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5e42c83786f7742a021fdf3c", - "MaxInLobby": 2, - "MaxInRaid": 2 - }, - { - "TemplateId": "619cbf7d23893217ec30b689", - "MaxInLobby": 2, - "MaxInRaid": 2 - }, - { - "TemplateId": "619cbfccbedcde2f5b3f7bdd", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "60391afc25aff57af81f7085", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "619cbfeb6b8a1b37a54eebfa", - "MaxInLobby": 4, - "MaxInRaid": 4 - }, - { - "TemplateId": "5c05300686f7746dce784e5d", - "MaxInLobby": 3, - "MaxInRaid": 3 - }, - { - "TemplateId": "5bffdd7e0db834001b734a1a", - "MaxInLobby": 1, - "MaxInRaid": 1 - }, - { - "TemplateId": "5c110624d174af029e69734c", - "MaxInLobby": 5, - "MaxInRaid": 5 - }, - { - "TemplateId": "5c0696830db834001d23f5da", - "MaxInLobby": 5, - "MaxInRaid": 5 - }, - { - "TemplateId": "5c066e3a0db834001b7353f0", - "MaxInLobby": 5, - "MaxInRaid": 5 - }, - { - "TemplateId": "5c0558060db834001b735271", - "MaxInLobby": 5, - "MaxInRaid": 5 - }, - { - "TemplateId": "57235b6f24597759bf5a30f1", - "MaxInLobby": 5, - "MaxInRaid": 5 - }, - { - "TemplateId": "5a1eaa87fcdbcb001865f75e", - "MaxInLobby": 5, - "MaxInRaid": 5 - }, - { - "TemplateId": "5d1b5e94d7ad1a2b865a96b0", - "MaxInLobby": 5, - "MaxInRaid": 5 - }, - { - "TemplateId": "609bab8b455afd752b2e6138", - "MaxInLobby": 5, - "MaxInRaid": 5 - }, - { - "TemplateId": "606f2696f2cb2e02a42aceb1", - "MaxInLobby": 5, - "MaxInRaid": 5 - }, - { - "TemplateId": "5df8a42886f77412640e2e75", - "MaxInLobby": 2, - "MaxInRaid": 2 - }, - { - "TemplateId": "5e9db13186f7742f845ee9d3", - "MaxInLobby": 2, - "MaxInRaid": 2 - }, - { - "TemplateId": "628e1ffc83ec92260c0f437f", - "MaxInLobby": 1, - "MaxInRaid": 1 - }, - { - "TemplateId": "62a1b7fbc30cfa1d366af586", - "MaxInLobby": 1, - "MaxInRaid": 1 - }, - { - "TemplateId": "618bb76513f5097c8d5aa2d5", - "MaxInLobby": 1, - "MaxInRaid": 1 - }, - { - "TemplateId": "619cf0335771dd3c390269ae", - "MaxInLobby": 1, - "MaxInRaid": 1 - }, - { - "TemplateId": "639346cc1c8f182ad90c8972", - "MaxInLobby": 1, - "MaxInRaid": 1 - }, - { - "TemplateId": "6478641c19d732620e045e17", - "MaxInLobby": 5, - "MaxInRaid": 5 - }, - { - "TemplateId": "63fc44e2429a8a166c7f61e6", - "MaxInLobby": 5, - "MaxInRaid": 5 - }, - { - "TemplateId": "628baf0b967de16aab5a4f36", - "MaxInLobby": 2, - "MaxInRaid": 2 - } - ], - "SkillMinEffectiveness": 0.0001, - "SkillFatiguePerPoint": 0.6, - "SkillFreshEffectiveness": 1.3, - "SkillFreshPoints": 1, - "SkillPointsBeforeFatigue": 1, - "SkillFatigueReset": 200, - "EventType": [ - "None" - ], - "WalkSpeed": { - "x": 0.625, - "y": 0.717, - "z": 0 - }, - "SprintSpeed": { - "x": 0.5, - "y": 1, - "z": 0 - }, - "SkillEnduranceWeightThreshold": 0.65, - "TeamSearchingTimeout": 10, - "Insurance": { - "MaxStorageTimeInHour": 72, - "CoefOfHavingMarkOfUnknown": 0.7 - }, - "SkillExpPerLevel": 100, - "GameSearchingTimeout": 45, - "WallContusionAbsorption": { - "x": 0.4, - "y": 0.01, - "z": 0 - }, - "SkillsSettings": { - "SkillProgressRate": 0.4, - "WeaponSkillProgressRate": 1, - "WeaponSkillRecoilBonusPerLevel": 0.003, - "HideoutManagement": { - "SkillPointsPerAreaUpgrade": 20, - "SkillPointsPerCraft": 1, - "ConsumptionReductionPerLevel": 0.5, - "SkillBoostPercent": 1, - "SkillPointsRate": { - "Generator": { - "ResourceSpent": 10, - "PointsGained": 1 - }, - "AirFilteringUnit": { - "ResourceSpent": 10, - "PointsGained": 1 - }, - "WaterCollector": { - "ResourceSpent": 10, - "PointsGained": 1 - }, - "SolarPower": { - "ResourceSpent": 50, - "PointsGained": 2 - } - }, - "EliteSlots": { - "Generator": { - "Slots": 2, - "Container": 0 - }, - "AirFilteringUnit": { - "Slots": 2, - "Container": 0 - }, - "WaterCollector": { - "Slots": 2, - "Container": 0 - }, - "BitcoinFarm": { - "Slots": 0, - "Container": 2 - } - } - }, - "Crafting": { - "PointsPerCraftingCycle": 1, - "CraftingCycleHours": 8, - "PointsPerUniqueCraftCycle": 2.5, - "UniqueCraftsPerCycle": 1, - "CraftTimeReductionPerLevel": 0.75, - "ProductionTimeReductionPerLevel": 0.75, - "EliteExtraProductions": 1, - "CraftingPointsToInteligence": 15 - }, - "Metabolism": { - "HydrationRecoveryRate": 20, - "EnergyRecoveryRate": 20, - "IncreasePositiveEffectDurationRate": 1, - "DecreaseNegativeEffectDurationRate": 1, - "DecreasePoisonDurationRate": 1 - }, - "Immunity": { - "ImmunityMiscEffects": 1, - "ImmunityPoisonBuff": 1, - "ImmunityPainKiller": 1, - "HealthNegativeEffect": 0.5, - "StimulatorNegativeBuff": 0.011 - }, - "Endurance": { - "MovementAction": 0.005, - "SprintAction": 0.04, - "GainPerFatigueStack": 0.05, - "QTELevelMultipliers": { - "10": { - "Multiplier": 0.9 - }, - "25": { - "Multiplier": 0.6 - }, - "50": { - "Multiplier": 0.3 - } - }, - "DependentSkillRatios": [ - { - "SkillId": "Health", - "Ratio": 0.25 - } - ] - }, - "Strength": { - "SprintActionMin": 0.04, - "SprintActionMax": 0.12, - "MovementActionMin": 0.005, - "MovementActionMax": 0.015, - "PushUpMin": 0.033, - "PushUpMax": 0.1, - "FistfightAction": 0.2, - "ThrowAction": 0.2, - "QTELevelMultipliers": [ - { - "Level": 10, - "Multiplier": 0.9 - }, - { - "Level": 25, - "Multiplier": 0.6 - }, - { - "Level": 50, - "Multiplier": 0.3 - } - ], - "DependentSkillRatios": [ - { - "SkillId": "Health", - "Ratio": 0.25 - } - ] - }, - "Vitality": { - "DamageTakenAction": 0.005, - "HealthNegativeEffect": 0.5 - }, - "Health": { - "SkillProgress": 0.5 - }, - "StressResistance": { - "HealthNegativeEffect": 0.33, - "LowHPDuration": 0.033 - }, - "Throwing": { - "ThrowAction": 0.25 - }, - "RecoilControl": { - "RecoilAction": 0.00015, - "RecoilBonusPerLevel": 0.003 - }, - "Pistol": { - "WeaponReloadAction": 0.025, - "WeaponShotAction": 0.1, - "WeaponFixAction": 0.1, - "WeaponChamberAction": 0.1 - }, - "Revolver": { - "WeaponReloadAction": 0.025, - "WeaponShotAction": 0.1, - "WeaponFixAction": 0.2, - "WeaponChamberAction": 0.1 - }, - "SMG": [], - "Assault": { - "WeaponReloadAction": 0.025, - "WeaponShotAction": 0.1, - "WeaponFixAction": 0.1, - "WeaponChamberAction": 0.1 - }, - "Shotgun": { - "WeaponReloadAction": 0.01, - "WeaponShotAction": 0.1, - "WeaponFixAction": 0.2, - "WeaponChamberAction": 0.1 - }, - "Sniper": { - "WeaponReloadAction": 0.02, - "WeaponShotAction": 0.2, - "WeaponFixAction": 0.2, - "WeaponChamberAction": 0.025 - }, - "LMG": [], - "HMG": [], - "Launcher": [], - "AttachedLauncher": [], - "Melee": { - "BuffSettings": { - "CommonBuffMinChanceValue": 1, - "CommonBuffChanceLevelBonus": 0, - "RareBuffChanceCoff": 0, - "ReceivedDurabilityMaxPercent": 0.01 - } - }, - "DMR": { - "WeaponReloadAction": 0.02, - "WeaponShotAction": 0.2, - "WeaponFixAction": 0.2, - "WeaponChamberAction": 0.025 - }, - "BearAssaultoperations": [], - "BearAuthority": [], - "BearAksystems": [], - "BearHeavycaliber": [], - "BearRawpower": [], - "UsecArsystems": [], - "UsecDeepweaponmodding_Settings": [], - "UsecLongrangeoptics_Settings": [], - "UsecNegotiations": [], - "UsecTactics": [], - "BotReload": [], - "CovertMovement": { - "MovementAction": 0.025 - }, - "FieldMedicine": [], - "Search": { - "SearchAction": 0.33, - "FindAction": 0.166 - }, - "Sniping": [], - "ProneMovement": [], - "FirstAid": [], - "LightVests": { - "WearAmountRepairLVestsReducePerLevel": 0.008, - "WearChanceRepairLVestsReduceEliteLevel": 0.5, - "MoveSpeedPenaltyReductionLVestsReducePerLevel": 0.006, - "MeleeDamageLVestsReducePerLevel": 0.006, - "BuffSettings": { - "CommonBuffMinChanceValue": 0.15, - "CommonBuffChanceLevelBonus": 0.005, - "RareBuffChanceCoff": 0.15, - "ReceivedDurabilityMaxPercent": 30, - "MaxDurabilityLossToRemoveBuff": 0.4, - "CurrentDurabilityLossToRemoveBuff": 0.4 - }, - "BuffMaxCount": 1, - "Counters": { - "armorDurability": { - "points": 1, - "divisor": 9.2 - } - } - }, - "HeavyVests": { - "WearAmountRepairHVestsReducePerLevel": 0.01, - "WearChanceRepairHVestsReduceEliteLevel": 0.5, - "MoveSpeedPenaltyReductionHVestsReducePerLevel": 0.005, - "BluntThroughputDamageHVestsReducePerLevel": 0.004, - "RicochetChanceHVestsEliteLevel": 0.05, - "RicochetChanceHVestsMaxDurabilityThreshold": 0.2, - "RicochetChanceHVestsCurrentDurabilityThreshold": 0.5, - "BuffSettings": { - "CommonBuffMinChanceValue": 0.15, - "CommonBuffChanceLevelBonus": 0.005, - "RareBuffChanceCoff": 0.15, - "ReceivedDurabilityMaxPercent": 30, - "CurrentDurabilityLossToRemoveBuff": 0.4, - "MaxDurabilityLossToRemoveBuff": 0.4 - }, - "BuffMaxCount": 1, - "Counters": { - "armorDurability": { - "points": 1, - "divisor": 10.2 - } - } - }, - "WeaponModding": [], - "AdvancedModding": [], - "NightOps": [], - "SilentOps": [], - "Lockpicking": [], - "WeaponTreatment": { - "WearAmountRepairGunsReducePerLevel": 0.01, - "DurLossReducePerLevel": 0.005, - "SkillPointsPerRepair": 3, - "Filter": [], - "WearChanceRepairGunsReduceEliteLevel": 0.5, - "BuffSettings": { - "CommonBuffMinChanceValue": 0.074, - "CommonBuffChanceLevelBonus": 0.0019, - "RareBuffChanceCoff": 0.075, - "ReceivedDurabilityMaxPercent": 30, - "CurrentDurabilityLossToRemoveBuff": 0.05, - "MaxDurabilityLossToRemoveBuff": 0.05 - }, - "BuffMaxCount": 2, - "Counters": { - "firearmsDurability": { - "points": 1, - "divisor": 6 - } - } - }, - "MagDrills": { - "RaidLoadedAmmoAction": 0.02, - "RaidUnloadedAmmoAction": 0.01, - "MagazineCheckAction": 0.05 - }, - "Freetrading": [], - "Auctions": [], - "Cleanoperations": [], - "Barter": [], - "Shadowconnections": [], - "Taskperformance": [], - "Perception": { - "OnlineAction": 2.5, - "UniqueLoot": 0.334, - "DependentSkillRatios": [ - { - "SkillId": "Charisma", - "Ratio": 0.2 - } - ] - }, - "Intellect": { - "ExamineAction": 20, - "SkillProgress": 0.5, - "RepairAction": 0.005, - "WearAmountReducePerLevel": 0.004, - "WearChanceReduceEliteLevel": 0.5, - "RepairPointsCostReduction": 0.004, - "Counters": { - "firearmsDurability": { - "points": 1, - "divisor": 13 - }, - "armorDurability": { - "points": 1, - "divisor": 30 - }, - "meleeWeaponDurability": { - "points": 1, - "divisor": 18 - } - }, - "DependentSkillRatios": [ - { - "SkillId": "Charisma", - "Ratio": 0.2 - } - ] - }, - "Attention": { - "ExamineWithInstruction": 3, - "FindActionFalse": 0.334, - "FindActionTrue": 0.167, - "DependentSkillRatios": [ - { - "SkillId": "Charisma", - "Ratio": 0.2 - } - ] - }, - "Charisma": { - "SkillProgressInt": 0.5, - "SkillProgressAtn": 0.5, - "SkillProgressPer": 0.5, - "BonusSettings": { - "LevelBonusSettings": { - "RepeatableQuestChangeDiscount": 0.001, - "HealthRestoreDiscount": 0.001, - "HealthRestoreTraderDiscount": 0.001, - "InsuranceDiscount": 0.001, - "InsuranceTraderDiscount": 0.001, - "PaidExitDiscount": 0.001 - }, - "EliteBonusSettings": { - "ScavCaseDiscount": 0.1, - "FenceStandingLossDiscount": 0.5, - "RepeatableQuestExtraCount": 1 - } - }, - "Counters": { - "repeatableQuestCompleteCount": { - "points": 1, - "divisor": 1 - }, - "insuranceCost": { - "points": 1, - "divisor": 200000 - }, - "repairCost": { - "points": 1, - "divisor": 10000 - }, - "restoredHealthCost": { - "points": 1, - "divisor": 15000 - }, - "scavCaseCost": { - "points": 1, - "divisor": 150000 - } - } - }, - "Memory": { - "AnySkillUp": 5, - "SkillProgress": 0.4 - }, - "Surgery": { - "SurgeryAction": 3, - "SkillProgress": 0.5 - }, - "AimDrills": { - "WeaponShotAction": 0.2 - }, - "BotSound": [], - "TroubleShooting": { - "MalfRepairSpeedBonusPerLevel": 0.005, - "SkillPointsPerMalfFix": 3.2, - "EliteDurabilityChanceReduceMult": 0.3, - "EliteAmmoChanceReduceMult": 0.3, - "EliteMagChanceReduceMult": 0.3 - } - }, - "AzimuthPanelShowsPlayerOrientation": false, - "Aiming": { - "ProceduralIntensityByPose": { - "x": 0.33, - "y": 0.66, - "z": 1 - }, - "AimProceduralIntensity": 0.75, - "HeavyWeight": 9, - "LightWeight": 0.6, - "MaxTimeHeavy": 2.4, - "MinTimeHeavy": 0.95, - "MaxTimeLight": 2, - "MinTimeLight": 0.35, - "RecoilScaling": 1, - "RecoilDamping": 0.7, - "CameraSnapGlobalMult": 2, - "RecoilXIntensityByPose": { - "x": 0.35, - "y": 0.7, - "z": 1 - }, - "RecoilYIntensityByPose": { - "x": 0.7, - "y": 0.7, - "z": 1 - }, - "RecoilZIntensityByPose": { - "x": 0.7, - "y": 0.7, - "z": 1 - }, - "RecoilCrank": false, - "RecoilHandDamping": 0.45, - "RecoilConvergenceMult": 1, - "RecoilVertBonus": 20, - "RecoilBackBonus": 20 - }, - "Malfunction": { - "AmmoMalfChanceMult": 1, - "MagazineMalfChanceMult": 1, - "MalfRepairHardSlideMult": 1, - "MalfRepairOneHandBrokenMult": 0.9, - "MalfRepairTwoHandsBrokenMult": 0.8, - "AllowMalfForBots": false, - "ShowGlowAttemptsCount": 3, - "OutToIdleSpeedMultForPistol": 3, - "IdleToOutSpeedMultOnMalf": 3, - "TimeToQuickdrawPistol": 5, - "DurRangeToIgnoreMalfs": { - "x": 93, - "y": 100, - "z": 0 - }, - "DurFeedWt": 0.1, - "DurMisfireWt": 0.1, - "DurJamWt": 0.6, - "DurSoftSlideWt": 0.2, - "DurHardSlideMinWt": 0.3, - "DurHardSlideMaxWt": 0.8, - "AmmoMisfireWt": 0.7, - "AmmoFeedWt": 0.2, - "AmmoJamWt": 0.1, - "OverheatFeedWt": 0.35, - "OverheatJamWt": 0.25, - "OverheatSoftSlideWt": 0.7, - "OverheatHardSlideMinWt": 0.3, - "OverheatHardSlideMaxWt": 1.2 - }, - "Overheat": { - "MinOverheat": 0, - "MaxOverheat": 200, - "OverheatProblemsStart": 100, - "ModHeatFactor": 1, - "ModCoolFactor": 1, - "MinWearOnOverheat": 0.1, - "MaxWearOnOverheat": 0.2, - "MinWearOnMaxOverheat": 0.2, - "MaxWearOnMaxOverheat": 0.7, - "OverheatWearLimit": 0.55, - "MaxCOIIncreaseMult": 1.5, - "MinMalfChance": 0.5, - "MaxMalfChance": 9, - "DurReduceMinMult": 1, - "DurReduceMaxMult": 3, - "BarrelMoveRndDuration": 1, - "BarrelMoveMaxMult": 0, - "FireratePitchMult": 0.5, - "FirerateReduceMinMult": 0.85, - "FirerateReduceMaxMult": 1.15, - "FirerateOverheatBorder": 140, - "EnableSlideOnMaxOverheat": true, - "StartSlideOverheat": 200, - "FixSlideOverheat": 170, - "AutoshotMinOverheat": 170, - "AutoshotChance": 0.2, - "AutoshotPossibilityDuration": 3, - "MaxOverheatCoolCoef": 6 - }, - "FenceSettings": { - "FenceId": "579dc571d53a0658a154fbec", - "Levels": { - "-7": { - "SavageCooldownModifier": 6, - "ScavCaseTimeModifier": 9, - "PaidExitCostModifier": 4, - "BotFollowChance": 0, - "ScavEquipmentSpawnChanceModifier": -5, - "PriceModifier": 1.2, - "HostileBosses": true, - "HostileScavs": true, - "ScavAttackSupport": false, - "ExfiltrationPriceModifier": 4, - "AvailableExits": 1, - "BotSpreadoutChance": 0, - "BotGetInCoverChance": 0, - "BotApplySilenceChance": 0, - "BotStopChance": 0, - "BotHelpChance": 0, - "PriceModTaxi": -1000, - "PriceModDelivery": -2000, - "PriceModCleanUp": -10000, - "DeliveryGridSize": { - "x": 1, - "y": 1, - "z": 0 - }, - "CanInteractWithBtr": false, - "ReactOnMarkOnUnknowns": false - }, - "-6": { - "SavageCooldownModifier": 4, - "ScavCaseTimeModifier": 5.5, - "PaidExitCostModifier": 3.5, - "BotFollowChance": 5, - "ScavEquipmentSpawnChanceModifier": -4, - "PriceModifier": 1.17, - "HostileBosses": true, - "HostileScavs": true, - "ScavAttackSupport": false, - "ExfiltrationPriceModifier": 3.5, - "AvailableExits": 1, - "BotSpreadoutChance": 5, - "BotGetInCoverChance": 5, - "BotApplySilenceChance": 5, - "BotStopChance": 5, - "BotHelpChance": 5, - "PriceModTaxi": -1000, - "PriceModDelivery": -2000, - "PriceModCleanUp": -10000, - "DeliveryGridSize": { - "x": 1, - "y": 1, - "z": 0 - }, - "CanInteractWithBtr": false, - "ReactOnMarkOnUnknowns": false - }, - "-5": { - "SavageCooldownModifier": 3, - "ScavCaseTimeModifier": 3.5, - "PaidExitCostModifier": 3, - "BotFollowChance": 10, - "ScavEquipmentSpawnChanceModifier": -3, - "PriceModifier": 1.15, - "HostileBosses": true, - "HostileScavs": false, - "ScavAttackSupport": false, - "ExfiltrationPriceModifier": 3, - "AvailableExits": 1, - "BotSpreadoutChance": 10, - "BotGetInCoverChance": 10, - "BotApplySilenceChance": 10, - "BotStopChance": 10, - "BotHelpChance": 10, - "PriceModTaxi": -1000, - "PriceModDelivery": -2000, - "PriceModCleanUp": -10000, - "DeliveryGridSize": { - "x": 1, - "y": 1, - "z": 0 - }, - "CanInteractWithBtr": true, - "ReactOnMarkOnUnknowns": false - }, - "-4": { - "SavageCooldownModifier": 2.5, - "ScavCaseTimeModifier": 3, - "PaidExitCostModifier": 2.5, - "BotFollowChance": 15, - "ScavEquipmentSpawnChanceModifier": -2, - "PriceModifier": 1.12, - "HostileBosses": true, - "HostileScavs": false, - "ScavAttackSupport": false, - "ExfiltrationPriceModifier": 2.5, - "AvailableExits": 2, - "BotSpreadoutChance": 15, - "BotGetInCoverChance": 15, - "BotApplySilenceChance": 15, - "BotStopChance": 15, - "BotHelpChance": 15, - "PriceModTaxi": -800, - "PriceModDelivery": -1600, - "PriceModCleanUp": -8000, - "DeliveryGridSize": { - "x": 2, - "y": 1, - "z": 0 - }, - "CanInteractWithBtr": true, - "ReactOnMarkOnUnknowns": false - }, - "-3": { - "SavageCooldownModifier": 2, - "ScavCaseTimeModifier": 2, - "PaidExitCostModifier": 2, - "BotFollowChance": 20, - "ScavEquipmentSpawnChanceModifier": -2, - "PriceModifier": 1.1, - "HostileBosses": true, - "HostileScavs": false, - "ScavAttackSupport": false, - "ExfiltrationPriceModifier": 2, - "AvailableExits": 2, - "BotSpreadoutChance": 20, - "BotGetInCoverChance": 20, - "BotApplySilenceChance": 20, - "BotStopChance": 20, - "BotHelpChance": 20, - "PriceModTaxi": -600, - "PriceModDelivery": -1200, - "PriceModCleanUp": -6000, - "DeliveryGridSize": { - "x": 3, - "y": 1, - "z": 0 - }, - "CanInteractWithBtr": true, - "ReactOnMarkOnUnknowns": false - }, - "-2": { - "SavageCooldownModifier": 1.5, - "ScavCaseTimeModifier": 1.5, - "PaidExitCostModifier": 1.5, - "BotFollowChance": 30, - "ScavEquipmentSpawnChanceModifier": -1, - "PriceModifier": 1.08, - "HostileBosses": true, - "HostileScavs": false, - "ScavAttackSupport": false, - "ExfiltrationPriceModifier": 1.5, - "AvailableExits": 2, - "BotSpreadoutChance": 30, - "BotGetInCoverChance": 30, - "BotApplySilenceChance": 30, - "BotStopChance": 30, - "BotHelpChance": 30, - "PriceModTaxi": -400, - "PriceModDelivery": -800, - "PriceModCleanUp": -4000, - "DeliveryGridSize": { - "x": 2, - "y": 2, - "z": 0 - }, - "CanInteractWithBtr": true, - "ReactOnMarkOnUnknowns": false - }, - "-1": { - "SavageCooldownModifier": 1.25, - "ScavCaseTimeModifier": 1.25, - "PaidExitCostModifier": 1.25, - "BotFollowChance": 40, - "ScavEquipmentSpawnChanceModifier": 0, - "PriceModifier": 1.05, - "HostileBosses": true, - "HostileScavs": false, - "ScavAttackSupport": false, - "ExfiltrationPriceModifier": 1.25, - "AvailableExits": 3, - "BotSpreadoutChance": 40, - "BotGetInCoverChance": 40, - "BotApplySilenceChance": 40, - "BotStopChance": 40, - "BotHelpChance": 40, - "PriceModTaxi": -200, - "PriceModDelivery": -500, - "PriceModCleanUp": -2000, - "DeliveryGridSize": { - "x": 3, - "y": 2, - "z": 0 - }, - "CanInteractWithBtr": true, - "ReactOnMarkOnUnknowns": false - }, - "0": { - "SavageCooldownModifier": 1, - "ScavCaseTimeModifier": 1, - "PaidExitCostModifier": 1, - "BotFollowChance": 50, - "ScavEquipmentSpawnChanceModifier": 0, - "PriceModifier": 1, - "HostileBosses": true, - "HostileScavs": false, - "ScavAttackSupport": false, - "ExfiltrationPriceModifier": 1, - "AvailableExits": 3, - "BotSpreadoutChance": 50, - "BotGetInCoverChance": 50, - "BotApplySilenceChance": 50, - "BotStopChance": 50, - "BotHelpChance": 50, - "PriceModTaxi": 0, - "PriceModDelivery": 0, - "PriceModCleanUp": 0, - "DeliveryGridSize": { - "x": 5, - "y": 2, - "z": 0 - }, - "CanInteractWithBtr": true, - "ReactOnMarkOnUnknowns": false - }, - "1": { - "SavageCooldownModifier": 0.9, - "ScavCaseTimeModifier": 0.95, - "PaidExitCostModifier": 0.95, - "BotFollowChance": 55, - "ScavEquipmentSpawnChanceModifier": 2, - "PriceModifier": 0.97, - "HostileBosses": true, - "HostileScavs": false, - "ScavAttackSupport": false, - "ExfiltrationPriceModifier": 0.95, - "AvailableExits": 4, - "BotSpreadoutChance": 55, - "BotGetInCoverChance": 55, - "BotApplySilenceChance": 55, - "BotStopChance": 55, - "BotHelpChance": 55, - "PriceModTaxi": 100, - "PriceModDelivery": 200, - "PriceModCleanUp": 1000, - "DeliveryGridSize": { - "x": 6, - "y": 2, - "z": 0 - }, - "CanInteractWithBtr": true, - "ReactOnMarkOnUnknowns": false - }, - "2": { - "SavageCooldownModifier": 0.8, - "ScavCaseTimeModifier": 0.9, - "PaidExitCostModifier": 0.9, - "BotFollowChance": 60, - "ScavEquipmentSpawnChanceModifier": 6, - "PriceModifier": 0.95, - "HostileBosses": true, - "HostileScavs": false, - "ScavAttackSupport": false, - "ExfiltrationPriceModifier": 0.9, - "AvailableExits": 4, - "BotSpreadoutChance": 60, - "BotGetInCoverChance": 60, - "BotApplySilenceChance": 60, - "BotStopChance": 60, - "BotHelpChance": 60, - "PriceModTaxi": 200, - "PriceModDelivery": 400, - "PriceModCleanUp": 2000, - "DeliveryGridSize": { - "x": 5, - "y": 3, - "z": 0 - }, - "CanInteractWithBtr": true, - "ReactOnMarkOnUnknowns": false - }, - "3": { - "SavageCooldownModifier": 0.7, - "ScavCaseTimeModifier": 0.8, - "PaidExitCostModifier": 0.8, - "BotFollowChance": 70, - "ScavEquipmentSpawnChanceModifier": 9, - "PriceModifier": 0.92, - "HostileBosses": true, - "HostileScavs": false, - "ScavAttackSupport": false, - "ExfiltrationPriceModifier": 0.7, - "AvailableExits": 4, - "BotSpreadoutChance": 70, - "BotGetInCoverChance": 70, - "BotApplySilenceChance": 70, - "BotStopChance": 70, - "BotHelpChance": 70, - "PriceModTaxi": 400, - "PriceModDelivery": 800, - "PriceModCleanUp": 4000, - "DeliveryGridSize": { - "x": 6, - "y": 3, - "z": 0 - }, - "CanInteractWithBtr": true, - "ReactOnMarkOnUnknowns": false - }, - "4": { - "SavageCooldownModifier": 0.6, - "ScavCaseTimeModifier": 0.7, - "PaidExitCostModifier": 0.7, - "BotFollowChance": 80, - "ScavEquipmentSpawnChanceModifier": 12, - "PriceModifier": 0.9, - "HostileBosses": true, - "HostileScavs": false, - "ScavAttackSupport": false, - "ExfiltrationPriceModifier": 0.5, - "AvailableExits": 5, - "BotSpreadoutChance": 80, - "BotGetInCoverChance": 80, - "BotApplySilenceChance": 80, - "BotStopChance": 80, - "BotHelpChance": 80, - "PriceModTaxi": 600, - "PriceModDelivery": 1200, - "PriceModCleanUp": 6000, - "DeliveryGridSize": { - "x": 5, - "y": 4, - "z": 0 - }, - "CanInteractWithBtr": true, - "ReactOnMarkOnUnknowns": false - }, - "5": { - "SavageCooldownModifier": 0.5, - "ScavCaseTimeModifier": 0.6, - "PaidExitCostModifier": 0.6, - "BotFollowChance": 90, - "ScavEquipmentSpawnChanceModifier": 15, - "PriceModifier": 0.85, - "HostileBosses": true, - "HostileScavs": false, - "ScavAttackSupport": false, - "ExfiltrationPriceModifier": 0.4, - "AvailableExits": 5, - "BotSpreadoutChance": 90, - "BotGetInCoverChance": 90, - "BotApplySilenceChance": 90, - "BotStopChance": 90, - "BotHelpChance": 90, - "PriceModTaxi": 800, - "PriceModDelivery": 1600, - "PriceModCleanUp": 8000, - "DeliveryGridSize": { - "x": 6, - "y": 4, - "z": 0 - }, - "CanInteractWithBtr": true, - "ReactOnMarkOnUnknowns": false - }, - "6": { - "SavageCooldownModifier": 0.4, - "ScavCaseTimeModifier": 0.5, - "PaidExitCostModifier": 0.5, - "BotFollowChance": 100, - "ScavEquipmentSpawnChanceModifier": 17, - "PriceModifier": 0.8, - "HostileBosses": false, - "HostileScavs": false, - "ScavAttackSupport": true, - "ExfiltrationPriceModifier": 0.3, - "AvailableExits": 6, - "BotSpreadoutChance": 100, - "BotGetInCoverChance": 100, - "BotApplySilenceChance": 100, - "BotStopChance": 100, - "BotHelpChance": 100, - "PriceModTaxi": 1000, - "PriceModDelivery": 2000, - "PriceModCleanUp": 10000, - "DeliveryGridSize": { - "x": 7, - "y": 4, - "z": 0 - }, - "CanInteractWithBtr": true, - "ReactOnMarkOnUnknowns": true - } - }, - "paidExitStandingNumerator": 0.2 - }, - "TestValue": 3, - "Inertia": { - "InertiaLimits": { - "x": 0, - "y": 65, - "z": 0.5 - }, - "InertiaLimitsStep": 0.025, - "ExitMovementStateSpeedThreshold": { - "x": 0.01, - "y": 0.01, - "z": 0 - }, - "WalkInertia": { - "x": 0.05, - "y": 0.4675, - "z": 0 - }, - "FallThreshold": 0.15, - "SpeedLimitAfterFallMin": { - "x": 0.3, - "y": 1, - "z": 0 - }, - "SpeedLimitAfterFallMax": { - "x": 4, - "y": 0, - "z": 0 - }, - "SpeedLimitDurationMin": { - "x": 0.3, - "y": 0.5, - "z": 0 - }, - "SpeedLimitDurationMax": { - "x": 2, - "y": 1.2, - "z": 0 - }, - "SpeedInertiaAfterJump": { - "x": 1, - "y": 1.55, - "z": 0 - }, - "BaseJumpPenaltyDuration": 0.4, - "DurationPower": 1.07, - "BaseJumpPenalty": 0.3, - "PenaltyPower": 1.23, - "InertiaTiltCurveMin": { - "x": 0, - "y": 0.22, - "z": 0 - }, - "InertiaTiltCurveMax": { - "x": 1, - "y": 0.06, - "z": 0 - }, - "InertiaBackwardCoef": { - "x": 0.6, - "y": 0.4, - "z": 0 - }, - "TiltInertiaMaxSpeed": { - "x": 0.6, - "y": 0.5, - "z": 0 - }, - "TiltStartSideBackSpeed": { - "x": 0.8, - "y": 0.5, - "z": 0 - }, - "TiltMaxSideBackSpeed": { - "x": 1.2, - "y": 0.8, - "z": 0 - }, - "TiltAcceleration": { - "x": 0, - "y": 0, - "z": 0 - }, - "AverageRotationFrameSpan": 60, - "SprintSpeedInertiaCurveMin": { - "x": 0.3, - "y": 1, - "z": 0 - }, - "SprintSpeedInertiaCurveMax": { - "x": 1.5, - "y": 0.3, - "z": 0 - }, - "SprintBrakeInertia": { - "x": 0, - "y": 55, - "z": 0 - }, - "SprintTransitionMotionPreservation": { - "x": 0.7, - "y": 0.9, - "z": 0 - }, - "WeaponFlipSpeed": { - "x": 1, - "y": 0.5, - "z": 0 - }, - "PreSprintAccelerationLimits": { - "x": 3, - "y": 1.7, - "z": 0 - }, - "SprintAccelerationLimits": { - "x": 1, - "y": 0, - "z": 0 - }, - "SideTime": { - "x": 2, - "y": 1, - "z": 0 - }, - "DiagonalTime": { - "x": 1.4, - "y": 1, - "z": 0 - }, - "MinDirectionBlendTime": 0.15, - "MinMovementAccelerationRangeRight": { - "x": 0.8, - "y": 1, - "z": 0 - }, - "MaxMovementAccelerationRangeRight": { - "x": 0.3, - "y": 1, - "z": 0 - }, - "MaxTimeWithoutInput": { - "x": 0.1, - "y": 0.3, - "z": 0 - }, - "ProneSpeedAccelerationRange": { - "x": 1, - "y": 1.6, - "z": 0 - }, - "ProneDirectionAccelerationRange": { - "x": 2.5, - "y": 2, - "z": 0 - }, - "MoveTimeRange": { - "x": 0.1, - "y": 0.45, - "z": 0 - }, - "CrouchSpeedAccelerationRange": { - "x": 0.475, - "y": 0.75, - "z": 0 - } - }, - "Ballistic": { - "GlobalDamageDegradationCoefficient": 0.5 - }, - "RepairSettings": { - "armorClassDivisor": 6, - "durabilityPointCostArmor": 0.335, - "durabilityPointCostGuns": 0.5, - "RepairStrategies": { - "Firearms": { - "Filter": [ - "5422acb9af1c889c16000029" - ], - "BuffTypes": [ - "WeaponSpread", - "MalfunctionProtections" - ] - }, - "Armor": { - "Filter": [ - "57bef4c42459772e8d35a53b", - "5448e5284bdc2dcb718b4567" - ], - "BuffTypes": [ - "DamageReduction" - ] - } - }, - "MinimumLevelToApplyBuff": 10, - "ItemEnhancementSettings": { - "WeaponSpread": { - "PriceModifier": 1.1 - }, - "DamageReduction": { - "PriceModifier": 1.2 - }, - "MalfunctionProtections": { - "PriceModifier": 1.3 - } - } - }, - "DiscardLimitsEnabled": true, - "CoopSettings": { - "AvailableVersions": [ - "edge_of_darkness", - "press_edition", - "tournament_live" - ] - }, - "BufferZone": { - "CustomerCriticalTimeStart": 10, - "CustomerKickNotifTime": 60, - "CustomerAccessTime": 600 - }, - "TradingSetting": 0, - "TradingSettings": { - "BuyoutRestrictions": { - "MinFoodDrinkResource": 0.01, - "MinMedsResource": 0.01, - "MinDurability": 0.6 - } - }, - "ItemsCommonSettings": { - "ItemRemoveAfterInterruptionTime": 2 - }, - "SquadSettings": { - "SendRequestDelaySeconds": 60, - "SecondsForExpiredRequest": 120, - "CountOfRequestsToOnePlayer": 3 - }, - "AudioSettings": { - "AudioGroupPresets": [ - { - "Name": "Gunshots", - "GroupType": 0, - "OverallVolume": 1, - "OcclusionEnabled": true, - "OcclusionIntensity": 1, - "DisabledBinauralByDistance": false, - "DistanceToAllowBinaural": 1000, - "HeightToAllowBinaural": 1000, - "AngleToAllowBinaural": 1000 - }, - { - "Name": "Weaponry", - "GroupType": 1, - "OverallVolume": 1, - "OcclusionEnabled": true, - "OcclusionIntensity": 1, - "DisabledBinauralByDistance": true, - "DistanceToAllowBinaural": 10, - "HeightToAllowBinaural": 2, - "AngleToAllowBinaural": 12 - }, - { - "Name": "Impacts", - "GroupType": 2, - "OverallVolume": 1, - "OcclusionEnabled": true, - "OcclusionIntensity": 1, - "DisabledBinauralByDistance": false, - "DistanceToAllowBinaural": 60, - "HeightToAllowBinaural": 10, - "AngleToAllowBinaural": 30 - }, - { - "Name": "Character", - "GroupType": 3, - "OverallVolume": 1, - "OcclusionEnabled": true, - "OcclusionIntensity": 1, - "DisabledBinauralByDistance": false, - "DistanceToAllowBinaural": 60, - "HeightToAllowBinaural": 10, - "AngleToAllowBinaural": 30 - }, - { - "Name": "Environment", - "GroupType": 4, - "OverallVolume": 1, - "OcclusionEnabled": true, - "OcclusionIntensity": 1, - "DisabledBinauralByDistance": false, - "DistanceToAllowBinaural": 60, - "HeightToAllowBinaural": 10, - "AngleToAllowBinaural": 30 - }, - { - "Name": "Collisions", - "GroupType": 5, - "OverallVolume": 1, - "OcclusionEnabled": true, - "OcclusionIntensity": 1, - "DisabledBinauralByDistance": true, - "DistanceToAllowBinaural": 10, - "HeightToAllowBinaural": 2, - "AngleToAllowBinaural": 12 - }, - { - "Name": "Speech", - "GroupType": 6, - "OverallVolume": 0.7, - "OcclusionEnabled": true, - "OcclusionIntensity": 1, - "DisabledBinauralByDistance": false, - "DistanceToAllowBinaural": 60, - "HeightToAllowBinaural": 10, - "AngleToAllowBinaural": 30 - }, - { - "Name": "Distant", - "GroupType": 7, - "OverallVolume": 1, - "OcclusionEnabled": true, - "OcclusionIntensity": 1, - "DisabledBinauralByDistance": false, - "DistanceToAllowBinaural": 60, - "HeightToAllowBinaural": 10, - "AngleToAllowBinaural": 30 - }, - { - "Name": "NonspatialBypass", - "GroupType": 8, - "OverallVolume": 1, - "OcclusionEnabled": false, - "OcclusionIntensity": 1, - "DisabledBinauralByDistance": false, - "DistanceToAllowBinaural": 60, - "HeightToAllowBinaural": 10, - "AngleToAllowBinaural": 30 - }, - { - "Name": "Nonspatial", - "GroupType": 9, - "OverallVolume": 1, - "OcclusionEnabled": false, - "OcclusionIntensity": 1, - "DisabledBinauralByDistance": false, - "DistanceToAllowBinaural": 60, - "HeightToAllowBinaural": 10, - "AngleToAllowBinaural": 30 - }, - { - "Name": "Voip", - "GroupType": 10, - "OverallVolume": 1, - "OcclusionEnabled": true, - "OcclusionIntensity": 1, - "DisabledBinauralByDistance": false, - "DistanceToAllowBinaural": 60, - "HeightToAllowBinaural": 10, - "AngleToAllowBinaural": 30 - }, - { - "Name": "Grenades", - "GroupType": 11, - "OverallVolume": 1, - "OcclusionEnabled": true, - "OcclusionIntensity": 1, - "DisabledBinauralByDistance": true, - "DistanceToAllowBinaural": 1000, - "HeightToAllowBinaural": 1000, - "AngleToAllowBinaural": 1000 - }, - { - "Name": "Windows", - "GroupType": 12, - "OverallVolume": 1, - "OcclusionEnabled": true, - "OcclusionIntensity": 1, - "DisabledBinauralByDistance": true, - "DistanceToAllowBinaural": 10, - "HeightToAllowBinaural": 2, - "AngleToAllowBinaural": 12 - } - ], - "EnvironmentSettings": { - "SnowStepsVolumeMultiplier": 0.35, - "SurfaceMultipliers": [ - { - "SurfaceType": "Concrete", - "VolumeMult": 0 - }, - { - "SurfaceType": "Metal", - "VolumeMult": 0.4 - }, - { - "SurfaceType": "Wood", - "VolumeMult": 0.5 - }, - { - "SurfaceType": "Soil", - "VolumeMult": 1 - }, - { - "SurfaceType": "Grass", - "VolumeMult": 1 - }, - { - "SurfaceType": "Asphalt", - "VolumeMult": 0.8 - }, - { - "SurfaceType": "Glass", - "VolumeMult": 0.1 - }, - { - "SurfaceType": "Gravel", - "VolumeMult": 1 - }, - { - "SurfaceType": "MetalThin", - "VolumeMult": 0.4 - }, - { - "SurfaceType": "Puddle", - "VolumeMult": 0 - }, - { - "SurfaceType": "Slate", - "VolumeMult": 0.3 - }, - { - "SurfaceType": "Tile", - "VolumeMult": 0.1 - }, - { - "SurfaceType": "WoodThick", - "VolumeMult": 0.5 - }, - { - "SurfaceType": "Swamp", - "VolumeMult": 0 - }, - { - "SurfaceType": "Garbage", - "VolumeMult": 0.5 - }, - { - "SurfaceType": "GarbageMetal", - "VolumeMult": 0.4 - }, - { - "SurfaceType": "Plastic", - "VolumeMult": 0.3 - }, - { - "SurfaceType": "WholeGlass", - "VolumeMult": 0.1 - }, - { - "SurfaceType": "WoodThin", - "VolumeMult": 0.5 - } - ] - } - }, - "WeaponFastDrawSettings": { - "WeaponFastSwitchMaxSpeedMult": 2, - "WeaponFastSwitchMinSpeedMult": 1.5, - "HandShakeMaxDuration": 10, - "HandShakeTremorIntensity": 3, - "HandShakeCurveFrequency": 1, - "HandShakeCurveIntensity": 1, - "WeaponPistolFastSwitchMaxSpeedMult": 2, - "WeaponPistolFastSwitchMinSpeedMult": 1.5 - }, - "GraphicSettings": { - "ExperimentalFogInCity": true - }, - "EventSettings": { - "EventActive": false, - "EventTime": 390, - "WeatherChangeTime": 20, - "ExitTimeMultiplier": 3, - "StaminaMultiplier": 3, - "EventWeather": { - "Hour": 21, - "Minute": 0, - "Cloudness": 1, - "WindDirection": 8, - "Wind": 4, - "Rain": 0.1, - "RainRandomness": 0, - "ScaterringFogDensity": 0.02, - "TopWindDirection": { - "x": -1, - "y": 0, - "z": 0 - } - }, - "SummonSuccessWeather": { - "Hour": 6, - "Minute": 10, - "Cloudness": 0, - "WindDirection": 8, - "Wind": 0.2, - "Rain": 0.1, - "RainRandomness": 0, - "ScaterringFogDensity": 0.05, - "TopWindDirection": { - "x": -1, - "y": 0, - "z": 0 - } - }, - "SummonFailedWeather": { - "Cloudness": 0, - "WindDirection": 8, - "Wind": 0, - "Rain": 0, - "RainRandomness": 0, - "ScaterringFogDensity": 0.001, - "TopWindDirection": { - "x": -1, - "y": 0, - "z": 0 - } - } - }, - "FavoriteItemsSettings": { - "WeaponStandMaxItemsCount": 3, - "PlaceOfFameMaxItemsCount": 7 - }, - "VaultingSettings": { - "IsActive": true, - "VaultingInputTime": 0.6, - "GridSettings": { - "GridSizeX": 0, - "GridSizeY": 1.8, - "GridSizeZ": 2, - "SteppingLengthX": 0.1, - "SteppingLengthY": 0.1, - "SteppingLengthZ": 0.1, - "GridOffsetX": 0, - "GridOffsetY": 0, - "GridOffsetZ": 0, - "OffsetFactor": 0.1 - }, - "MovesSettings": { - "VaultSettings": { - "IsActive": true, - "MaxWithoutHandHeight": 0.65, - "SpeedRange": { - "x": 1.25, - "y": 0.9, - "z": 0 - }, - "MoveRestrictions": { - "IsActive": true, - "MinDistantToInteract": 0.5, - "MinHeight": 0.25, - "MaxHeight": 1.1, - "MinLength": 0, - "MaxLength": 0.41 - }, - "AutoMoveRestrictions": { - "IsActive": true, - "MinDistantToInteract": 0.41, - "MinHeight": 0.25, - "MaxHeight": 0.41, - "MinLength": 0, - "MaxLength": 0.41 - } - }, - "ClimbSettings": { - "IsActive": true, - "MaxWithoutHandHeight": 0.65, - "MaxOneHandHeight": 1.2, - "SpeedRange": { - "x": 1.1, - "y": 0.8, - "z": 0 - }, - "MoveRestrictions": { - "IsActive": true, - "MinDistantToInteract": 0.5, - "MinHeight": 0.25, - "MaxHeight": 1.31, - "MinLength": 0, - "MaxLength": 10 - }, - "AutoMoveRestrictions": { - "IsActive": true, - "MinDistantToInteract": 0.41, - "MinHeight": 0.25, - "MaxHeight": 0.41, - "MinLength": 0.41, - "MaxLength": 10 - } - } - } - }, - "BTRSettings": { - "LocationsWithBTR": [ - "develop", - "Woods", - "TarkovStreets" - ], - "BasePriceTaxi": 7000, - "AddPriceTaxi": 500, - "CleanUpPrice": 50000, - "DeliveryPrice": 500, - "ModDeliveryCost": 0.05, - "BearPriceMod": 1, - "UsecPriceMod": 1.5, - "ScavPriceMod": 0.8, - "CoefficientDiscountCharisma": 0.002, - "DeliveryMinPrice": 1000, - "TaxiMinPrice": 4000, - "BotCoverMinPrice": 30000, - "MapsConfigs": { - "Develop": { - "mapID": "develop", - "pathsConfigurations": [ - { - "id": "circleAll", - "enterPoint": "p7", - "exitPoint": "p7", - "pathPoints": [ - "p1", - "p2", - "p3", - "p4", - "p5", - "p6" - ], - "once": false, - "circle": true, - "circleCount": 143, - "active": true - }, - { - "id": "once1", - "enterPoint": "p7", - "exitPoint": "p8", - "pathPoints": [ - "p1", - "p2", - "p3", - "p4", - "p5" - ], - "once": true, - "circle": false, - "circleCount": 0, - "active": true - } - ], - "DiameterWheel": 57.5, - "HeightWheel": 0.65, - "HeightWheelMaxPosLimit": 0.8, - "HeightWheelMinPosLimit": 0.46, - "SnapToSurfaceWheelsSpeed": 0.2, - "CheckSurfaceForWheelsTimer": 0.3, - "HeightWheelOffset": -0.075, - "BtrSkin": "Cleare", - "SuspensionRestLength": 0.4, - "SuspensionTravel": 0.3, - "SuspensionSpringStiffness": 80000, - "SuspensionDamperStiffness": 7000, - "SuspensionWheelRadius": 1.143 - }, - "TarkovStreets": { - "mapID": "TarkovStreets", - "pathsConfigurations": [ - { - "id": "RouteOne", - "enterPoint": "p7", - "exitPoint": "p7", - "pathPoints": [ - "p1", - "p2", - "p6", - "p5", - "p4", - "p3" - ], - "once": false, - "circle": true, - "circleCount": 5, - "active": true - }, - { - "id": "RouteTwo", - "enterPoint": "p8", - "exitPoint": "p8", - "pathPoints": [ - "p6", - "p2", - "p1", - "p3", - "p4", - "p5" - ], - "once": false, - "circle": true, - "circleCount": 3, - "active": true - }, - { - "id": "RouteTree", - "enterPoint": "p9", - "exitPoint": "p9", - "pathPoints": [ - "p4", - "p3", - "p1", - "p2", - "p6", - "p5" - ], - "once": false, - "circle": true, - "circleCount": 4, - "active": true - }, - { - "id": "RouteFour", - "enterPoint": "p10", - "exitPoint": "p10", - "pathPoints": [ - "p5", - "p6", - "p2", - "p1", - "p4" - ], - "once": false, - "circle": true, - "circleCount": 2, - "active": true - } - ], - "DiameterWheel": 57.5, - "HeightWheel": 0.65, - "HeightWheelMaxPosLimit": 0.8, - "HeightWheelMinPosLimit": 0.46, - "SnapToSurfaceWheelsSpeed": 0.2, - "CheckSurfaceForWheelsTimer": 0.3, - "HeightWheelOffset": -0.075, - "BtrSkin": "Cleare", - "SuspensionRestLength": 0.4, - "SuspensionTravel": 0.3, - "SuspensionSpringStiffness": 80000, - "SuspensionDamperStiffness": 7000, - "SuspensionWheelRadius": 1.143 - }, - "Woods": { - "mapID": "Woods", - "pathsConfigurations": [ - { - "id": "RouteOne", - "enterPoint": "p10", - "exitPoint": "p10", - "pathPoints": [ - "p5", - "p4", - "p1", - "p2", - "p7", - "p3" - ], - "once": false, - "circle": true, - "circleCount": 5, - "active": true, - "skinType": [] - }, - { - "id": "RouteWho", - "enterPoint": "p10", - "exitPoint": "p10", - "pathPoints": [ - "p5", - "p4", - "p1", - "p2", - "p7", - "p3", - "p6" - ], - "once": false, - "circle": true, - "circleCount": 5, - "active": true, - "skinType": [] - }, - { - "id": "RouteThree", - "enterPoint": "p12", - "exitPoint": "p12", - "pathPoints": [ - "p7", - "p3", - "p4", - "p5", - "p1", - "p2" - ], - "once": false, - "circle": true, - "circleCount": 5, - "active": true, - "skinType": [] - }, - { - "id": "RouteFour", - "enterPoint": "p9", - "exitPoint": "p10", - "pathPoints": [ - "p1", - "p2", - "p7", - "p3", - "p4", - "p6", - "p5" - ], - "once": true, - "circle": false, - "circleCount": 0, - "active": false, - "skinType": [] - }, - { - "id": "RouteFive", - "enterPoint": "p10", - "exitPoint": "p9", - "pathPoints": [ - "p5", - "p6", - "p4", - "p3", - "p7", - "p2", - "p1" - ], - "once": true, - "circle": false, - "circleCount": 0, - "active": false, - "skinType": [] - } - ], - "DiameterWheel": 57.5, - "HeightWheel": 0.65, - "HeightWheelMaxPosLimit": 0.8, - "HeightWheelMinPosLimit": 0.46, - "SnapToSurfaceWheelsSpeed": 0.15, - "CheckSurfaceForWheelsTimer": 0.05, - "HeightWheelOffset": -0.075, - "BtrSkin": "Dirt", - "SuspensionRestLength": 0.4, - "SuspensionTravel": 0.3, - "SuspensionSpringStiffness": 80000, - "SuspensionDamperStiffness": 7000, - "SuspensionWheelRadius": 1.143 - } - }, - "DiameterWheel": 57.5, - "HeightWheel": 0.65, - "HeightWheelMaxPosLimit": 0.8, - "HeightWheelMinPosLimit": 0.46, - "SnapToSurfaceWheelsSpeed": 0.2, - "CheckSurfaceForWheelsTimer": 0.3, - "HeightWheelOffset": -0.075 - }, - "BluntDamageReduceFromSoftArmorMod": 0.6 - }, - "bot_presets": [ - { - "UseThis": true, - "Role": "assault", - "BotDifficulty": "easy", - "VisibleAngle": 140, - "VisibleDistance": 125, - "ScatteringPerMeter": 0.095, - "HearingSense": 0.75, - "SCATTERING_DIST_MODIF": 0.8, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "FIRST_CONTACT_ADD_SEC": 0.15, - "COEF_IF_MOVE": 1.3 - }, - { - "UseThis": true, - "Role": "assault", - "BotDifficulty": "normal", - "VisibleAngle": 145, - "VisibleDistance": 129, - "ScatteringPerMeter": 0.085, - "HearingSense": 0.8, - "SCATTERING_DIST_MODIF": 0.8, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "FIRST_CONTACT_ADD_SEC": 0.15, - "COEF_IF_MOVE": 1.3 - }, - { - "UseThis": true, - "Role": "assault", - "BotDifficulty": "hard", - "VisibleAngle": 145, - "VisibleDistance": 137, - "ScatteringPerMeter": 0.085, - "HearingSense": 0.85, - "SCATTERING_DIST_MODIF": 0.8, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "FIRST_CONTACT_ADD_SEC": 0.15, - "COEF_IF_MOVE": 1.3 - }, - { - "UseThis": true, - "Role": "assault", - "BotDifficulty": "impossible", - "VisibleAngle": 160, - "VisibleDistance": 140, - "ScatteringPerMeter": 0.063, - "HearingSense": 0.85, - "SCATTERING_DIST_MODIF": 0.8, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "FIRST_CONTACT_ADD_SEC": 0.15, - "COEF_IF_MOVE": 1.3 - }, - { - "UseThis": true, - "Role": "marksman", - "BotDifficulty": "easy", - "VisibleAngle": 160, - "VisibleDistance": 200, - "ScatteringPerMeter": 0.08, - "HearingSense": 0.7, - "SCATTERING_DIST_MODIF": 0.7, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "FIRST_CONTACT_ADD_SEC": 0.1, - "COEF_IF_MOVE": 1 - }, - { - "UseThis": true, - "Role": "marksman", - "BotDifficulty": "normal", - "VisibleAngle": 165, - "VisibleDistance": 220, - "ScatteringPerMeter": 0.08, - "HearingSense": 0.7, - "SCATTERING_DIST_MODIF": 0.7, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "FIRST_CONTACT_ADD_SEC": 0.1, - "COEF_IF_MOVE": 1 - }, - { - "UseThis": true, - "Role": "marksman", - "BotDifficulty": "hard", - "VisibleAngle": 180, - "VisibleDistance": 240, - "ScatteringPerMeter": 0.08, - "HearingSense": 0.9, - "SCATTERING_DIST_MODIF": 0.7, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "FIRST_CONTACT_ADD_SEC": 0.1, - "COEF_IF_MOVE": 1 - }, - { - "UseThis": true, - "Role": "marksman", - "BotDifficulty": "impossible", - "VisibleAngle": 160, - "VisibleDistance": 250, - "ScatteringPerMeter": 0.08, - "HearingSense": 0.9, - "SCATTERING_DIST_MODIF": 0.7, - "MAX_AIMING_UPGRADE_BY_TIME": 0.85, - "FIRST_CONTACT_ADD_SEC": 0.1, - "COEF_IF_MOVE": 1 - }, - { - "UseThis": true, - "Role": "bossKilla", - "BotDifficulty": "normal", - "VisibleAngle": 180, - "VisibleDistance": 140, - "ScatteringPerMeter": 0.09, - "HearingSense": 4.8, - "SCATTERING_DIST_MODIF": 0.45, - "MAX_AIMING_UPGRADE_BY_TIME": 0.15, - "FIRST_CONTACT_ADD_SEC": 0.13, - "COEF_IF_MOVE": 1 - }, - { - "UseThis": true, - "Role": "bossTagilla", - "BotDifficulty": "normal", - "VisibleAngle": 180, - "VisibleDistance": 140, - "ScatteringPerMeter": 0.09, - "HearingSense": 4.8, - "SCATTERING_DIST_MODIF": 0.45, - "MAX_AIMING_UPGRADE_BY_TIME": 0.15, - "FIRST_CONTACT_ADD_SEC": 0.13, - "COEF_IF_MOVE": 1 - }, - { - "UseThis": true, - "Role": "bossBully", - "BotDifficulty": "normal", - "VisibleAngle": 170, - "VisibleDistance": 140, - "ScatteringPerMeter": 0.02, - "HearingSense": 4.8, - "SCATTERING_DIST_MODIF": 0.8, - "MAX_AIMING_UPGRADE_BY_TIME": 0.15, - "FIRST_CONTACT_ADD_SEC": 0.13, - "COEF_IF_MOVE": 1 - }, - { - "UseThis": true, - "Role": "bossGluhar", - "BotDifficulty": "normal", - "VisibleAngle": 170, - "VisibleDistance": 140, - "ScatteringPerMeter": 0.045, - "HearingSense": 4.8, - "SCATTERING_DIST_MODIF": 0.67, - "MAX_AIMING_UPGRADE_BY_TIME": 0.15, - "FIRST_CONTACT_ADD_SEC": 0.13, - "COEF_IF_MOVE": 1 - }, - { - "UseThis": true, - "Role": "bossSanitar", - "BotDifficulty": "normal", - "VisibleAngle": 170, - "VisibleDistance": 140, - "ScatteringPerMeter": 0.045, - "HearingSense": 4.8, - "SCATTERING_DIST_MODIF": 0.6, - "MAX_AIMING_UPGRADE_BY_TIME": 0.15, - "FIRST_CONTACT_ADD_SEC": 0.13, - "COEF_IF_MOVE": 1 - }, - { - "UseThis": true, - "Role": "bossKojaniy", - "BotDifficulty": "normal", - "VisibleAngle": 170, - "VisibleDistance": 165, - "ScatteringPerMeter": 0.045, - "HearingSense": 4.8, - "SCATTERING_DIST_MODIF": 0.6, - "MAX_AIMING_UPGRADE_BY_TIME": 0.15, - "FIRST_CONTACT_ADD_SEC": 0.13, - "COEF_IF_MOVE": 1 - }, - { - "UseThis": true, - "Role": "bossKnight", - "BotDifficulty": "normal", - "VisibleAngle": 170, - "VisibleDistance": 140, - "ScatteringPerMeter": 0.045, - "HearingSense": 4.8, - "SCATTERING_DIST_MODIF": 0.6, - "MAX_AIMING_UPGRADE_BY_TIME": 0.15, - "FIRST_CONTACT_ADD_SEC": 0.13, - "COEF_IF_MOVE": 1 - }, - { - "UseThis": true, - "Role": "followerBigPipe", - "BotDifficulty": "normal", - "VisibleAngle": 180, - "VisibleDistance": 170, - "ScatteringPerMeter": 0.09, - "HearingSense": 4.8, - "SCATTERING_DIST_MODIF": 0.45, - "MAX_AIMING_UPGRADE_BY_TIME": 0.15, - "FIRST_CONTACT_ADD_SEC": 0.13, - "COEF_IF_MOVE": 1 - }, - { - "UseThis": true, - "Role": "followerBirdEye", - "BotDifficulty": "normal", - "VisibleAngle": 180, - "VisibleDistance": 255, - "ScatteringPerMeter": 0.045, - "HearingSense": 4.8, - "SCATTERING_DIST_MODIF": 0.55, - "MAX_AIMING_UPGRADE_BY_TIME": 0.15, - "FIRST_CONTACT_ADD_SEC": 0.13, - "COEF_IF_MOVE": 1 - }, - { - "UseThis": false, - "Role": "bossBoar", - "BotDifficulty": "normal", - "VisibleAngle": 170, - "VisibleDistance": 140, - "ScatteringPerMeter": 0.045, - "HearingSense": 4.8, - "SCATTERING_DIST_MODIF": 0.6, - "MAX_AIMING_UPGRADE_BY_TIME": 0.15, - "FIRST_CONTACT_ADD_SEC": 0.13, - "COEF_IF_MOVE": 1 - } - ], - "BotWeaponScatterings": [ - { - "Name": "AssaultCarbine", - "PriorityScatter1meter": 0.2, - "PriorityScatter10meter": 0.1, - "PriorityScatter100meter": 0.03 - }, - { - "Name": "AssaultRifle", - "PriorityScatter1meter": 0.2, - "PriorityScatter10meter": 0.1, - "PriorityScatter100meter": 0.03 - }, - { - "Name": "GrenadeLauncher ", - "PriorityScatter1meter": 0.2, - "PriorityScatter10meter": 0.1, - "PriorityScatter100meter": 0.03 - } - ], - "ItemPresets": { - "5acf7e2b86f7740874790e20": { - "_id": "5acf7e2b86f7740874790e20", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AK-103 Default", - "_parent": "5ac670435acfc43f67248a8d", - "_items": [ - { - "_id": "5ac670435acfc43f67248a8d", - "_tpl": "5ac66d2e5acfc43b321d4b53" - }, - { - "_id": "5acf7e2b86f7740874790e18", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "5ac670435acfc43f67248a8d", - "slotId": "mod_gas_block" - }, - { - "_id": "5acf7e2b86f7740874790e1f", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "5acf7e2b86f7740874790e18", - "slotId": "mod_handguard" - }, - { - "_id": "5acf7e2b86f7740874790e19", - "_tpl": "5ac72e7d5acfc40016339a02", - "parentId": "5ac670435acfc43f67248a8d", - "slotId": "mod_muzzle" - }, - { - "_id": "5acf7e2b86f7740874790e1a", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "5ac670435acfc43f67248a8d", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5acf7e2b86f7740874790e1b", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "5ac670435acfc43f67248a8d", - "slotId": "mod_reciever" - }, - { - "_id": "5acf7e2b86f7740874790e1c", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "5ac670435acfc43f67248a8d", - "slotId": "mod_sight_rear" - }, - { - "_id": "5acf7e2b86f7740874790e1d", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "5ac670435acfc43f67248a8d", - "slotId": "mod_stock" - }, - { - "_id": "5acf7e2b86f7740874790e1e", - "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "5ac670435acfc43f67248a8d", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5ac66d2e5acfc43b321d4b53" - }, - "5bbf1c5a88a45017bb03d7aa": { - "_id": "5bbf1c5a88a45017bb03d7aa", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "M4A1_LVOA", - "_parent": "5bbf1cf988a45017d47b827a", - "_items": [ - { - "_id": "5bbf1cf988a45017d47b827a", - "_tpl": "5447a9cd4bdc2dbd208b4567" - }, - { - "_id": "5bbf1cf988a45017d47b827b", - "_tpl": "57c55efc2459772d2c6271e7", - "parentId": "5bbf1cf988a45017d47b827a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5bbf1cf988a45017d47b827c", - "_tpl": "59bfe68886f7746004266202", - "parentId": "5bbf1cf988a45017d47b827a", - "slotId": "mod_reciever" - }, - { - "_id": "5bbf1cf988a45017d47b827d", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "5bbf1cf988a45017d47b827c", - "slotId": "mod_barrel" - }, - { - "_id": "5bbf1cf988a45017d47b827e", - "_tpl": "56ea8180d2720bf2698b456a", - "parentId": "5bbf1cf988a45017d47b827d", - "slotId": "mod_muzzle" - }, - { - "_id": "5bbf1cf988a45017d47b827f", - "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "5bbf1cf988a45017d47b827d", - "slotId": "mod_gas_block" - }, - { - "_id": "5bbf1cf988a45017d47b8280", - "_tpl": "595cfa8b86f77427437e845b", - "parentId": "5bbf1cf988a45017d47b827c", - "slotId": "mod_handguard" - }, - { - "_id": "5bbf1cf988a45017d47b8281", - "_tpl": "59e0bed186f774156f04ce84", - "parentId": "5bbf1cf988a45017d47b8280", - "slotId": "mod_mount_000" - }, - { - "_id": "5bbf1cf988a45017d47b8282", - "_tpl": "59e0be5d86f7742d48765bd2", - "parentId": "5bbf1cf988a45017d47b8280", - "slotId": "mod_mount_002" - }, - { - "_id": "5bbf1cf988a45017d47b8283", - "_tpl": "59e0bdb186f774156f04ce82", - "parentId": "5bbf1cf988a45017d47b8280", - "slotId": "mod_mount_003" - }, - { - "_id": "5bbf1cf988a45017d47b8284", - "_tpl": "59e0bdb186f774156f04ce82", - "parentId": "5bbf1cf988a45017d47b8280", - "slotId": "mod_mount_004" - }, - { - "_id": "5bbf1cf988a45017d47b8285", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "5bbf1cf988a45017d47b827a", - "slotId": "mod_stock" - }, - { - "_id": "5bbf1cf988a45017d47b8286", - "_tpl": "5b39f8db5acfc40016387a1b", - "parentId": "5bbf1cf988a45017d47b8285", - "slotId": "mod_stock_000" - }, - { - "_id": "5bbf1cf988a45017d47b8287", - "_tpl": "5b2240bf5acfc40dc528af69", - "parentId": "5bbf1cf988a45017d47b827a", - "slotId": "mod_charge" - } - ] - }, - "5acf7dd986f774486e1281bf": { - "_id": "5acf7dd986f774486e1281bf", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AK-101 Default", - "_parent": "5acf7dd986f774486e1281b6", - "_items": [ - { - "_id": "5acf7dd986f774486e1281b6", - "_tpl": "5ac66cb05acfc40198510a10" - }, - { - "_id": "5acf7dd986f774486e1281b7", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "5acf7dd986f774486e1281b6", - "slotId": "mod_gas_block" - }, - { - "_id": "5acf7dd986f774486e1281be", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "5acf7dd986f774486e1281b7", - "slotId": "mod_handguard" - }, - { - "_id": "5acf7dd986f774486e1281b8", - "_tpl": "5ac72e615acfc43f67248aa0", - "parentId": "5acf7dd986f774486e1281b6", - "slotId": "mod_muzzle" - }, - { - "_id": "5acf7dd986f774486e1281b9", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "5acf7dd986f774486e1281b6", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5acf7dd986f774486e1281ba", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "5acf7dd986f774486e1281b6", - "slotId": "mod_reciever" - }, - { - "_id": "5acf7dd986f774486e1281bb", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "5acf7dd986f774486e1281b6", - "slotId": "mod_sight_rear" - }, - { - "_id": "5acf7dd986f774486e1281bc", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "5acf7dd986f774486e1281b6", - "slotId": "mod_stock" - }, - { - "_id": "5acf7dd986f774486e1281bd", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "5acf7dd986f774486e1281b6", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5ac66cb05acfc40198510a10" - }, - "5acf7e7986f774401e19c3a0": { - "_id": "5acf7e7986f774401e19c3a0", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AK-105 Default", - "_parent": "5acf7e7986f774401e19c399", - "_items": [ - { - "_id": "5acf7e7986f774401e19c399", - "_tpl": "5ac66d9b5acfc4001633997a" - }, - { - "_id": "5ac739405acfc400154e275e", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "5acf7e7986f774401e19c399", - "slotId": "mod_gas_block" - }, - { - "_id": "5acf7e7986f774401e19c39f", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "5ac739405acfc400154e275e", - "slotId": "mod_handguard" - }, - { - "_id": "5acf7e7986f774401e19c39a", - "_tpl": "5ac72e945acfc43f3b691116", - "parentId": "5acf7e7986f774401e19c399", - "slotId": "mod_muzzle" - }, - { - "_id": "5acf7e7986f774401e19c39b", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "5acf7e7986f774401e19c399", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5ac739405acfc400154e2761", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "5acf7e7986f774401e19c399", - "slotId": "mod_reciever" - }, - { - "_id": "5acf7e7986f774401e19c39c", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "5acf7e7986f774401e19c399", - "slotId": "mod_sight_rear" - }, - { - "_id": "5acf7e7986f774401e19c39d", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "5acf7e7986f774401e19c399", - "slotId": "mod_stock" - }, - { - "_id": "5acf7e7986f774401e19c39e", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "5acf7e7986f774401e19c399", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5ac66d9b5acfc4001633997a" - }, - "5ac4ab8886f7747d0f66429a": { - "_id": "5ac4ab8886f7747d0f66429a", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AKMSN Default", - "_parent": "5ac4a2c15acfc40019262e62", - "_items": [ - { - "_id": "5ac4a2c15acfc40019262e62", - "_tpl": "5abcbc27d8ce8700182eceeb" - }, - { - "_id": "5ac4ab8886f7747d0f664292", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "5ac4a2c15acfc40019262e62", - "slotId": "mod_gas_block" - }, - { - "_id": "5ac4ab8886f7747d0f664299", - "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "5ac4ab8886f7747d0f664292", - "slotId": "mod_handguard" - }, - { - "_id": "5ac4ab8886f7747d0f664293", - "_tpl": "59e61eb386f77440d64f5daf", - "parentId": "5ac4a2c15acfc40019262e62", - "slotId": "mod_muzzle" - }, - { - "_id": "5ac4ab8886f7747d0f664294", - "_tpl": "5a0071d486f77404e23a12b2", - "parentId": "5ac4a2c15acfc40019262e62", - "slotId": "mod_pistol_grip_akms" - }, - { - "_id": "5ac4ab8886f7747d0f664295", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "5ac4a2c15acfc40019262e62", - "slotId": "mod_reciever" - }, - { - "_id": "5ac4ab8886f7747d0f664296", - "_tpl": "59d650cf86f7741b846413a4", - "parentId": "5ac4a2c15acfc40019262e62", - "slotId": "mod_sight_rear" - }, - { - "_id": "5ac4ab8886f7747d0f664297", - "_tpl": "5abcd472d8ce8700166032ae", - "parentId": "5ac4a2c15acfc40019262e62", - "slotId": "mod_stock_akms" - }, - { - "_id": "5ac4ab8886f7747d0f664298", - "_tpl": "5a0060fc86f7745793204432", - "parentId": "5ac4a2c15acfc40019262e62", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5abcbc27d8ce8700182eceeb" - }, - "5acf7e4c86f774499a3f3bdd": { - "_id": "5acf7e4c86f774499a3f3bdd", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AK-104 Default", - "_parent": "5acf7e4c86f774499a3f3bd5", - "_items": [ - { - "_id": "5acf7e4c86f774499a3f3bd5", - "_tpl": "5ac66d725acfc43b321d4b60" - }, - { - "_id": "5acf7e4c86f774499a3f3bd6", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "5acf7e4c86f774499a3f3bd5", - "slotId": "mod_gas_block" - }, - { - "_id": "5acf7e4c86f774499a3f3bdc", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "5acf7e4c86f774499a3f3bd6", - "slotId": "mod_handguard" - }, - { - "_id": "5acf7e4c86f774499a3f3bd7", - "_tpl": "5ac72e895acfc43b321d4bd5", - "parentId": "5acf7e4c86f774499a3f3bd5", - "slotId": "mod_muzzle" - }, - { - "_id": "5acf7e4c86f774499a3f3bd8", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "5acf7e4c86f774499a3f3bd5", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5acf7e4c86f774499a3f3bd9", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "5acf7e4c86f774499a3f3bd5", - "slotId": "mod_reciever" - }, - { - "_id": "5ac739405acfc400154e2762", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "5acf7e4c86f774499a3f3bd5", - "slotId": "mod_sight_rear" - }, - { - "_id": "5acf7e4c86f774499a3f3bda", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "5acf7e4c86f774499a3f3bd5", - "slotId": "mod_stock" - }, - { - "_id": "5acf7e4c86f774499a3f3bdb", - "_tpl": "5ac66bea5acfc43b321d4aec", - "parentId": "5acf7e4c86f774499a3f3bd5", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5ac66d725acfc43b321d4b60" - }, - "5b83f22086f77464e15a1d5f": { - "_id": "5b83f22086f77464e15a1d5f", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "Austrian_20_full_stock", - "_parent": "5b83f22086f77464e15a1d61", - "_items": [ - { - "_id": "5b83f22086f77464e15a1d61", - "_tpl": "5b0bbe4e5acfc40dc528a72d" - }, - { - "_id": "5b83f22086f77464e15a1d62", - "_tpl": "5b7d678a5acfc4001a5c4022", - "parentId": "5b83f22086f77464e15a1d61", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5b83f22086f77464e15a1d63", - "_tpl": "5b099ac65acfc400186331e1", - "parentId": "5b83f22086f77464e15a1d61", - "slotId": "mod_magazine" - }, - { - "_id": "5b83f22086f77464e15a1d64", - "_tpl": "5b7bed205acfc400161d08cc", - "parentId": "5b83f22086f77464e15a1d61", - "slotId": "mod_handguard" - }, - { - "_id": "5b83f22086f77464e15a1d65", - "_tpl": "5b7be1265acfc400161d0798", - "parentId": "5b83f22086f77464e15a1d61", - "slotId": "mod_barrel" - }, - { - "_id": "5b83f22086f77464e15a1d66", - "_tpl": "5b7d68af5acfc400170e30c3", - "parentId": "5b83f22086f77464e15a1d65", - "slotId": "mod_muzzle" - }, - { - "_id": "5b83f22086f77464e15a1d67", - "_tpl": "5b0bc22d5acfc47a8607f085", - "parentId": "5b83f22086f77464e15a1d61", - "slotId": "mod_sight_rear" - }, - { - "_id": "5b83f22086f77464e15a1d68", - "_tpl": "5b7d6c105acfc40015109a5f", - "parentId": "5b83f22086f77464e15a1d61", - "slotId": "mod_reciever" - }, - { - "_id": "5b83f22086f77464e15a1d69", - "_tpl": "5b7d645e5acfc400170e2f90", - "parentId": "5b83f22086f77464e15a1d61", - "slotId": "mod_stock" - } - ] - }, - "60b7d76e2a3c79100f1979de": { - "_id": "60b7d76e2a3c79100f1979de", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "CMMG MK47 short default", - "_parent": "60b7d76e2a3c79100f1979ec", - "_items": [ - { - "_id": "60b7d76e2a3c79100f1979ec", - "_tpl": "606587252535c57a13424cfd", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "60b7d76e2a3c79100f1979ed", - "_tpl": "55802f5d4bdc2dac148b458f", - "parentId": "60b7d76e2a3c79100f1979ec", - "slotId": "mod_pistol_grip" - }, - { - "_id": "60b7d76e2a3c79100f1979ee", - "_tpl": "59d6272486f77466146386ff", - "parentId": "60b7d76e2a3c79100f1979ec", - "slotId": "mod_magazine" - }, - { - "_id": "60b7d76e2a3c79100f1979ef", - "_tpl": "606587a88900dc2d9a55b659", - "parentId": "60b7d76e2a3c79100f1979ec", - "slotId": "mod_reciever" - }, - { - "_id": "60b7d76e2a3c79100f1979f0", - "_tpl": "60658776f2cb2e02a42ace2b", - "parentId": "60b7d76e2a3c79100f1979ef", - "slotId": "mod_barrel" - }, - { - "_id": "60b7d76e2a3c79100f1979f1", - "_tpl": "6065c6e7132d4d12c81fd8e1", - "parentId": "60b7d76e2a3c79100f1979f0", - "slotId": "mod_muzzle" - }, - { - "_id": "60b7d76e2a3c79100f1979f2", - "_tpl": "6065dc8a132d4d12c81fd8e3", - "parentId": "60b7d76e2a3c79100f1979f0", - "slotId": "mod_gas_block" - }, - { - "_id": "60b7d76e2a3c79100f1979f3", - "_tpl": "6065880c132d4d12c81fd8da", - "parentId": "60b7d76e2a3c79100f1979ef", - "slotId": "mod_handguard" - }, - { - "_id": "60b7d76e2a3c79100f1979f4", - "_tpl": "5bc09a30d4351e00367fb7c8", - "parentId": "60b7d76e2a3c79100f1979f3", - "slotId": "mod_sight_front" - }, - { - "_id": "60b7d76e2a3c79100f1979f5", - "_tpl": "5bc09a18d4351e003562b68e", - "parentId": "60b7d76e2a3c79100f1979ef", - "slotId": "mod_sight_rear" - }, - { - "_id": "60b7d76e2a3c79100f1979f6", - "_tpl": "606587e18900dc2d9a55b65f", - "parentId": "60b7d76e2a3c79100f1979ec", - "slotId": "mod_stock_001" - }, - { - "_id": "60b7d76e2a3c79100f1979f7", - "_tpl": "606587d11246154cad35d635", - "parentId": "60b7d76e2a3c79100f1979f6", - "slotId": "mod_stock_000" - }, - { - "_id": "60b7d76e2a3c79100f1979f8", - "_tpl": "606587bd6d0bd7580617bacc", - "parentId": "60b7d76e2a3c79100f1979ec", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "606587252535c57a13424cfd" - }, - "58dffc5d86f77407c744a847": { - "_id": "58dffc5d86f77407c744a847", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "DVL Default", - "_parent": "5a3a85ca86f7746b26670454", - "_items": [ - { - "_id": "5a3a85ca86f7746b26670454", - "_tpl": "588892092459774ac91d4b11" - }, - { - "_id": "5a3a85ca86f7746b26670455", - "_tpl": "5888988e24597752fe43a6fa", - "parentId": "5a3a85ca86f7746b26670454", - "slotId": "mod_magazine" - }, - { - "_id": "5a3a85ca86f7746b26670456", - "_tpl": "5888956924597752983e182d", - "parentId": "5a3a85ca86f7746b26670454", - "slotId": "mod_barrel" - }, - { - "_id": "5a3a85ca86f7746b26670459", - "_tpl": "5888996c24597754281f9419", - "parentId": "5a3a85ca86f7746b26670456", - "slotId": "mod_muzzle" - }, - { - "_id": "5a3a85ca86f7746b2667045a", - "_tpl": "5888976c24597754281f93f5", - "parentId": "5a3a85ca86f7746b26670456", - "slotId": "mod_handguard" - }, - { - "_id": "5a3a85ca86f7746b26670457", - "_tpl": "57c55f172459772d27602381", - "parentId": "5a3a85ca86f7746b26670454", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5a3a85ca86f7746b26670458", - "_tpl": "58889d0c2459775bc215d981", - "parentId": "5a3a85ca86f7746b26670454", - "slotId": "mod_stock" - } - ], - "_encyclopedia": "588892092459774ac91d4b11" - }, - "5f06d6e1475d472556679d16": { - "_id": "5f06d6e1475d472556679d16", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "FN_GL40_default", - "_parent": "5f06d6e1475d472556679d19", - "_items": [ - { - "_id": "5f06d6e1475d472556679d19", - "_tpl": "5e81ebcd8e146c7080625e15", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5f06d6e1475d472556679d1a", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "5f06d6e1475d472556679d19", - "slotId": "mod_pistol_grip" - } - ], - "_encyclopedia": "5e81ebcd8e146c7080625e15" - }, - "62975de85c32d414f8797433": { - "_id": "62975de85c32d414f8797433", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "M3_default", - "_parent": "62975de85c32d414f879743d", - "_items": [ - { - "_id": "62975de85c32d414f879743d", - "_tpl": "6259b864ebedf17603599e88", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "62975de85c32d414f879743e", - "_tpl": "6259c2c1d714855d182bad85", - "parentId": "62975de85c32d414f879743d", - "slotId": "mod_barrel" - }, - { - "_id": "62975de85c32d414f879743f", - "_tpl": "6259c4347d6aab70bc23a190", - "parentId": "62975de85c32d414f879743d", - "slotId": "mod_handguard" - }, - { - "_id": "62975de85c32d414f8797440", - "_tpl": "625ff2ccb8c587128c1a01dd", - "parentId": "62975de85c32d414f879743d", - "slotId": "mod_magazine" - }, - { - "_id": "62975de85c32d414f8797441", - "_tpl": "6259c3387d6aab70bc23a18d", - "parentId": "62975de85c32d414f879743d", - "slotId": "mod_stock", - "upd": { - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "62975de85c32d414f8797442", - "_tpl": "6259c3d8012d6678ec38eeb8", - "parentId": "62975de85c32d414f8797441", - "slotId": "mod_pistol_grip" - }, - { - "_id": "62975de85c32d414f8797443", - "_tpl": "625ed7c64d9b6612df732146", - "parentId": "62975de85c32d414f879743d", - "slotId": "mod_mount" - }, - { - "_id": "62975de85c32d414f8797444", - "_tpl": "625ebcef6f53af4aa66b44dc", - "parentId": "62975de85c32d414f879743d", - "slotId": "mod_sight_rear" - }, - { - "_id": "62975de85c32d414f8797445", - "_tpl": "625ec45bb14d7326ac20f572", - "parentId": "62975de85c32d414f879743d", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "6259b864ebedf17603599e88" - }, - "584149452459775992479702": { - "_id": "584149452459775992479702", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "PB Default", - "_parent": "64c23da53d572f1a621fdd29", - "_items": [ - { - "_id": "64c23da53d572f1a621fdd29", - "_tpl": "56e0598dd2720bb5668b45a6", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "64c23da53d572f1a621fdd2a", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "64c23da53d572f1a621fdd29", - "slotId": "mod_magazine" - }, - { - "_id": "64c23da53d572f1a621fdd2b", - "_tpl": "56e05b06d2720bb2668b4586", - "parentId": "64c23da53d572f1a621fdd29", - "slotId": "mod_muzzle" - }, - { - "_id": "64c23da53d572f1a621fdd2c", - "_tpl": "56e05a6ed2720bd0748b4567", - "parentId": "64c23da53d572f1a621fdd29", - "slotId": "mod_pistolgrip" - } - ], - "_encyclopedia": "56e0598dd2720bb5668b45a6" - }, - "5bbf1c1c88a45017144d28c5": { - "_id": "5bbf1c1c88a45017144d28c5", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "AK74M_zenitco", - "_parent": "5bbf1c1c88a45017144d28d1", - "_items": [ - { - "_id": "5bbf1c1c88a45017144d28d1", - "_tpl": "5ac4cd105acfc40016339859" - }, - { - "_id": "5bbf1c1c88a45017144d28d2", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "5bbf1c1c88a45017144d28d1", - "slotId": "mod_gas_block" - }, - { - "_id": "5bbf1c1c88a45017144d28d3", - "_tpl": "5648b4534bdc2d3d1c8b4580", - "parentId": "5bbf1c1c88a45017144d28d2", - "slotId": "mod_handguard" - }, - { - "_id": "5bbf1c1c88a45017144d28d4", - "_tpl": "5649ab884bdc2ded0b8b457f", - "parentId": "5bbf1c1c88a45017144d28d1", - "slotId": "mod_muzzle" - }, - { - "_id": "5bbf1c1c88a45017144d28d5", - "_tpl": "5649ae4a4bdc2d1b2b8b4588", - "parentId": "5bbf1c1c88a45017144d28d1", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5bbf1c1c88a45017144d28d6", - "_tpl": "5649af884bdc2d1b2b8b4589", - "parentId": "5bbf1c1c88a45017144d28d1", - "slotId": "mod_reciever" - }, - { - "_id": "5bbf1c1c88a45017144d28d7", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "5bbf1c1c88a45017144d28d1", - "slotId": "mod_sight_rear" - }, - { - "_id": "5bbf1c1c88a45017144d28d8", - "_tpl": "5ac78eaf5acfc4001926317a", - "parentId": "5bbf1c1c88a45017144d28d1", - "slotId": "mod_stock" - }, - { - "_id": "5bbf1c1c88a45017144d28d9", - "_tpl": "59ecc3dd86f7746dc827481c", - "parentId": "5bbf1c1c88a45017144d28d8", - "slotId": "mod_stock" - }, - { - "_id": "5bbf1c1c88a45017144d28da", - "_tpl": "5648ac824bdc2ded0b8b457d", - "parentId": "5bbf1c1c88a45017144d28d1", - "slotId": "mod_charge" - } - ] - }, - "5ba3a078d4351e00334c96ca": { - "_id": "5ba3a078d4351e00334c96ca", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "AKMB", - "_parent": "5ba3a078d4351e00334c96cd", - "_items": [ - { - "_id": "5ba3a078d4351e00334c96cd", - "_tpl": "59d6088586f774275f37482f" - }, - { - "_id": "5ba3a078d4351e00334c96ce", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "5ba3a078d4351e00334c96cd", - "slotId": "mod_gas_block" - }, - { - "_id": "5ba3a078d4351e00334c96cf", - "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "5ba3a078d4351e00334c96ce", - "slotId": "mod_handguard" - }, - { - "_id": "5ba3a078d4351e00334c96d0", - "_tpl": "5a0d63621526d8dba31fe3bf", - "parentId": "5ba3a078d4351e00334c96cd", - "slotId": "mod_muzzle" - }, - { - "_id": "5ba3a078d4351e00334c96d1", - "_tpl": "59e62cc886f77440d40b52a1", - "parentId": "5ba3a078d4351e00334c96cd", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5ba3a078d4351e00334c96d2", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "5ba3a078d4351e00334c96cd", - "slotId": "mod_reciever" - }, - { - "_id": "5ba3a078d4351e00334c96d3", - "_tpl": "5a0eb980fcdbcb001a3b00a6", - "parentId": "5ba3a078d4351e00334c96cd", - "slotId": "mod_sight_rear" - }, - { - "_id": "5ba3a078d4351e00334c96d4", - "_tpl": "59d6514b86f774171a068a08", - "parentId": "5ba3a078d4351e00334c96cd", - "slotId": "mod_stock" - }, - { - "_id": "5ba3a078d4351e00334c96d5", - "_tpl": "59d625f086f774661516605d", - "parentId": "5ba3a078d4351e00334c96cd", - "slotId": "mod_magazine" - } - ] - }, - "5ba3a53dd4351e3bac12056e": { - "_id": "5ba3a53dd4351e3bac12056e", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "AKMSN2", - "_parent": "5ba3a53dd4351e3bac12057b", - "_items": [ - { - "_id": "5ba3a53dd4351e3bac12057b", - "_tpl": "5abcbc27d8ce8700182eceeb" - }, - { - "_id": "5ba3a53dd4351e3bac12057c", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "5ba3a53dd4351e3bac12057b", - "slotId": "mod_gas_block" - }, - { - "_id": "5ba3a53dd4351e3bac12057d", - "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "5ba3a53dd4351e3bac12057c", - "slotId": "mod_handguard" - }, - { - "_id": "5ba3a53dd4351e3bac12057e", - "_tpl": "59d64fc686f774171b243fe2", - "parentId": "5ba3a53dd4351e3bac12057b", - "slotId": "mod_muzzle" - }, - { - "_id": "5ba3a53dd4351e3bac12057f", - "_tpl": "5a0071d486f77404e23a12b2", - "parentId": "5ba3a53dd4351e3bac12057b", - "slotId": "mod_pistol_grip_akms" - }, - { - "_id": "5ba3a53dd4351e3bac120580", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "5ba3a53dd4351e3bac12057b", - "slotId": "mod_reciever" - }, - { - "_id": "5ba3a53dd4351e3bac120581", - "_tpl": "59d650cf86f7741b846413a4", - "parentId": "5ba3a53dd4351e3bac12057b", - "slotId": "mod_sight_rear" - }, - { - "_id": "5ba3a53dd4351e3bac120582", - "_tpl": "5abcd472d8ce8700166032ae", - "parentId": "5ba3a53dd4351e3bac12057b", - "slotId": "mod_stock_akms" - }, - { - "_id": "5ba3a53dd4351e3bac120583", - "_tpl": "5a0060fc86f7745793204432", - "parentId": "5ba3a53dd4351e3bac12057b", - "slotId": "mod_magazine" - }, - { - "_id": "5ba3a53dd4351e3bac120584", - "_tpl": "5a7c74b3e899ef0014332c29", - "parentId": "5ba3a53dd4351e3bac12057b", - "slotId": "mod_mount_001" - }, - { - "_id": "5ba3a53dd4351e3bac120585", - "_tpl": "5ba36f85d4351e0085325c81", - "parentId": "5ba3a53dd4351e3bac120584", - "slotId": "mod_tactical" - } - ] - }, - "62973e474bb5ab23071c2a70": { - "_id": "62973e474bb5ab23071c2a70", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AXMC_default", - "_parent": "6298905aa77ec735f90a2fae", - "_items": [ - { - "_id": "6298905aa77ec735f90a2fae", - "_tpl": "627e14b21713922ded6f2c15", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6298905aa77ec735f90a2faf", - "_tpl": "628120fd5631d45211793c9f", - "parentId": "6298905aa77ec735f90a2fae", - "slotId": "mod_magazine" - }, - { - "_id": "6298905aa77ec735f90a2fb0", - "_tpl": "62811e2510e26c1f344e6554", - "parentId": "6298905aa77ec735f90a2fae", - "slotId": "mod_pistol_grip", - "upd": { - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "6298905aa77ec735f90a2fb1", - "_tpl": "62811f828193841aca4a45c3", - "parentId": "6298905aa77ec735f90a2fb0", - "slotId": "mod_stock" - }, - { - "_id": "6298905aa77ec735f90a2fb2", - "_tpl": "6281204f308cb521f87a8f9b", - "parentId": "6298905aa77ec735f90a2fb0", - "slotId": "mod_reciever" - }, - { - "_id": "6298905aa77ec735f90a2fb3", - "_tpl": "6281209662cba23f6c4d7a19", - "parentId": "6298905aa77ec735f90a2fb2", - "slotId": "mod_handguard" - }, - { - "_id": "6298905aa77ec735f90a2fb4", - "_tpl": "628120c21d5df4475f46a337", - "parentId": "6298905aa77ec735f90a2fb3", - "slotId": "mod_mount_000" - }, - { - "_id": "6298905aa77ec735f90a2fb5", - "_tpl": "628120d309427b40ab14e76d", - "parentId": "6298905aa77ec735f90a2fb3", - "slotId": "mod_mount_001" - }, - { - "_id": "6298905aa77ec735f90a2fb6", - "_tpl": "628120d309427b40ab14e76d", - "parentId": "6298905aa77ec735f90a2fb3", - "slotId": "mod_mount_002" - }, - { - "_id": "6298905aa77ec735f90a2fb7", - "_tpl": "628120dd308cb521f87a8fa1", - "parentId": "6298905aa77ec735f90a2fb3", - "slotId": "mod_mount_003" - }, - { - "_id": "6298905aa77ec735f90a2fb8", - "_tpl": "6281212a09427b40ab14e770", - "parentId": "6298905aa77ec735f90a2fb2", - "slotId": "mod_foregrip" - }, - { - "_id": "6298905aa77ec735f90a2fb9", - "_tpl": "62811fbf09427b40ab14e767", - "parentId": "6298905aa77ec735f90a2fb2", - "slotId": "mod_reciever" - }, - { - "_id": "6298905aa77ec735f90a2fba", - "_tpl": "628121434fa03b6b6c35dc6a", - "parentId": "6298905aa77ec735f90a2fb9", - "slotId": "mod_barrel" - }, - { - "_id": "6298905aa77ec735f90a2fbb", - "_tpl": "62812081d23f207deb0ab216", - "parentId": "6298905aa77ec735f90a2fba", - "slotId": "mod_muzzle" - }, - { - "_id": "6298905aa77ec735f90a2fbc", - "_tpl": "628120621d5df4475f46a335", - "parentId": "6298905aa77ec735f90a2fbb", - "slotId": "mod_muzzle" - }, - { - "_id": "6298905aa77ec735f90a2fbd", - "_tpl": "62811cd7308cb521f87a8f99", - "parentId": "6298905aa77ec735f90a2fae", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "627e14b21713922ded6f2c15" - }, - "5c0d1e9386f77440120288b7": { - "_id": "5c0d1e9386f77440120288b7", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "HK416 default", - "_parent": "5c0d1e9386f77440120288c4", - "_items": [ - { - "_id": "5c0d1e9386f77440120288c4", - "_tpl": "5bb2475ed4351e00853264e3", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c0d1e9386f77440120288c5", - "_tpl": "5bb20e0ed4351e3bac1212dc", - "parentId": "5c0d1e9386f77440120288c4", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5c0d1e9386f77440120288c6", - "_tpl": "5c05413a0db834001c390617", - "parentId": "5c0d1e9386f77440120288c4", - "slotId": "mod_magazine" - }, - { - "_id": "5c0d1e9386f77440120288c7", - "_tpl": "5bb20d53d4351e4502010a69", - "parentId": "5c0d1e9386f77440120288c4", - "slotId": "mod_reciever" - }, - { - "_id": "5c0d1e9386f77440120288c8", - "_tpl": "5bb20d9cd4351e00334c9d8a", - "parentId": "5c0d1e9386f77440120288c7", - "slotId": "mod_barrel" - }, - { - "_id": "5c0d1e9386f77440120288c9", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "5c0d1e9386f77440120288c8", - "slotId": "mod_muzzle" - }, - { - "_id": "5c0d1e9386f77440120288ca", - "_tpl": "5bb20dcad4351e3bac1212da", - "parentId": "5c0d1e9386f77440120288c8", - "slotId": "mod_gas_block" - }, - { - "_id": "5c0d1e9386f77440120288cb", - "_tpl": "5bb20de5d4351e0035629e59", - "parentId": "5c0d1e9386f77440120288c7", - "slotId": "mod_handguard" - }, - { - "_id": "5c0d1e9386f77440120288cc", - "_tpl": "5bb20e49d4351e3bac1212de", - "parentId": "5c0d1e9386f77440120288c7", - "slotId": "mod_sight_rear" - }, - { - "_id": "5c0d1e9386f77440120288cd", - "_tpl": "5bb20e58d4351e00320205d7", - "parentId": "5c0d1e9386f77440120288c4", - "slotId": "mod_stock" - }, - { - "_id": "5c0d1e9386f77440120288ce", - "_tpl": "5bb20e70d4351e0035629f8f", - "parentId": "5c0d1e9386f77440120288cd", - "slotId": "mod_stock_000" - }, - { - "_id": "5c0d1e9386f77440120288cf", - "_tpl": "5bb20dbcd4351e44f824c04e", - "parentId": "5c0d1e9386f77440120288c4", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "5bb2475ed4351e00853264e3" - }, - "5ac4ad3686f774181345c3da": { - "_id": "5ac4ad3686f774181345c3da", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "M1A Default", - "_parent": "64c171afc69480f5b1030b96", - "_items": [ - { - "_id": "64c171afc69480f5b1030b96", - "_tpl": "5aafa857e5b5b00018480968", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "64c171afc69480f5b1030b97", - "_tpl": "64b9e2037fdfb81df81e3c25", - "parentId": "64c171afc69480f5b1030b96", - "slotId": "mod_magazine" - }, - { - "_id": "64c171afc69480f5b1030b98", - "_tpl": "5aaf8e43e5b5b00015693246", - "parentId": "64c171afc69480f5b1030b96", - "slotId": "mod_stock" - }, - { - "_id": "64c171afc69480f5b1030b99", - "_tpl": "5ab24ef9e5b5b00fe93c9209", - "parentId": "64c171afc69480f5b1030b98", - "slotId": "mod_mount" - }, - { - "_id": "64c171afc69480f5b1030b9a", - "_tpl": "5aaf9d53e5b5b00015042a52", - "parentId": "64c171afc69480f5b1030b96", - "slotId": "mod_barrel" - }, - { - "_id": "64c171afc69480f5b1030b9b", - "_tpl": "5aafa1c2e5b5b00015042a56", - "parentId": "64c171afc69480f5b1030b9a", - "slotId": "mod_muzzle" - }, - { - "_id": "64c171afc69480f5b1030b9c", - "_tpl": "5aafa49ae5b5b00015042a58", - "parentId": "64c171afc69480f5b1030b9b", - "slotId": "mod_sight_front" - }, - { - "_id": "64c171afc69480f5b1030b9d", - "_tpl": "5abcbb20d8ce87001773e258", - "parentId": "64c171afc69480f5b1030b96", - "slotId": "mod_sight_rear" - } - ], - "_encyclopedia": "5aafa857e5b5b00018480968" - }, - "629744d002667c48a467e9f9": { - "_id": "629744d002667c48a467e9f9", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MGL_default", - "_parent": "629744d002667c48a467e9ff", - "_items": [ - { - "_id": "629744d002667c48a467e9ff", - "_tpl": "6275303a9f372d6ea97f9ec7", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "629744d002667c48a467ea00", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "629744d002667c48a467e9ff", - "slotId": "mod_pistol_grip" - }, - { - "_id": "629744d002667c48a467ea01", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "629744d002667c48a467e9ff", - "slotId": "mod_stock" - }, - { - "_id": "629744d002667c48a467ea02", - "_tpl": "627bce33f21bc425b06ab967", - "parentId": "629744d002667c48a467e9ff", - "slotId": "mod_magazine" - }, - { - "_id": "629744d002667c48a467ea03", - "_tpl": "6284bd5f95250a29bc628a30", - "parentId": "629744d002667c48a467e9ff", - "slotId": "mod_scope" - } - ], - "_encyclopedia": "6275303a9f372d6ea97f9ec7" - }, - "5af08cf886f774223c269184": { - "_id": "5af08cf886f774223c269184", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "M4A1_Std", - "_parent": "6396b722d604e334650f9726", - "_items": [ - { - "_id": "6396b722d604e334650f9726", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "6396b722d604e334650f9727", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "6396b722d604e334650f9726", - "slotId": "mod_pistol_grip" - }, - { - "_id": "6396b722d604e334650f9728", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "6396b722d604e334650f9726", - "slotId": "mod_magazine" - }, - { - "_id": "6396b722d604e334650f9729", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "6396b722d604e334650f9726", - "slotId": "mod_reciever" - }, - { - "_id": "6396b722d604e334650f972a", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "6396b722d604e334650f9729", - "slotId": "mod_barrel" - }, - { - "_id": "6396b722d604e334650f972b", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "6396b722d604e334650f972a", - "slotId": "mod_muzzle" - }, - { - "_id": "6396b722d604e334650f972c", - "_tpl": "5ae30e795acfc408fb139a0b", - "parentId": "6396b722d604e334650f972a", - "slotId": "mod_gas_block" - }, - { - "_id": "6396b722d604e334650f972d", - "_tpl": "5ae30db85acfc408fb139a05", - "parentId": "6396b722d604e334650f9729", - "slotId": "mod_handguard" - }, - { - "_id": "6396b722d604e334650f972e", - "_tpl": "637f57a68d137b27f70c4968", - "parentId": "6396b722d604e334650f972d", - "slotId": "mod_handguard" - }, - { - "_id": "6396b722d604e334650f972f", - "_tpl": "5ae30bad5acfc400185c2dc4", - "parentId": "6396b722d604e334650f9729", - "slotId": "mod_sight_rear" - }, - { - "_id": "6396b722d604e334650f9730", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "6396b722d604e334650f9726", - "slotId": "mod_stock" - }, - { - "_id": "6396b722d604e334650f9731", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "6396b722d604e334650f9730", - "slotId": "mod_stock_000" - }, - { - "_id": "6396b722d604e334650f9732", - "_tpl": "55d44fd14bdc2d962f8b456e", - "parentId": "6396b722d604e334650f9726", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "5447a9cd4bdc2dbd208b4567" - }, - "59411abb86f77478f702b5d2": { - "_id": "59411abb86f77478f702b5d2", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "MP5SD", - "_parent": "639bb5185b759c65a34764ee", - "_items": [ - { - "_id": "639bb5185b759c65a34764ee", - "_tpl": "5926bb2186f7744b1c6c6e60", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "639bb5185b759c65a34764ef", - "_tpl": "5926c3b286f774640d189b6b", - "parentId": "639bb5185b759c65a34764ee", - "slotId": "mod_magazine" - }, - { - "_id": "639bb5185b759c65a34764f0", - "_tpl": "5926f2e086f7745aae644231", - "parentId": "639bb5185b759c65a34764ee", - "slotId": "mod_reciever" - }, - { - "_id": "639bb5185b759c65a34764f1", - "_tpl": "5926f34786f77469195bfe92", - "parentId": "639bb5185b759c65a34764f0", - "slotId": "mod_handguard" - }, - { - "_id": "639bb5185b759c65a34764f2", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "639bb5185b759c65a34764f0", - "slotId": "mod_sight_rear" - }, - { - "_id": "639bb5185b759c65a34764f3", - "_tpl": "5926d40686f7740f152b6b7e", - "parentId": "639bb5185b759c65a34764f0", - "slotId": "mod_stock" - }, - { - "_id": "639bb5185b759c65a34764f4", - "_tpl": "5926d33d86f77410de68ebc0", - "parentId": "639bb5185b759c65a34764f0", - "slotId": "mod_muzzle" - }, - { - "_id": "639bb5185b759c65a34764f5", - "_tpl": "5926c32286f774616e42de99", - "parentId": "639bb5185b759c65a34764ee", - "slotId": "mod_charge" - } - ] - }, - "5eb2963686f7742d3f5ab0f8": { - "_id": "5eb2963686f7742d3f5ab0f8", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "PPSH_default", - "_parent": "5eb2963686f7742d3f5ab0fd", - "_items": [ - { - "_id": "5eb2963686f7742d3f5ab0fd", - "_tpl": "5ea03f7400685063ec28bfa8", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5eb2963686f7742d3f5ab0fe", - "_tpl": "5ea03e9400685063ec28bfa4", - "parentId": "5eb2963686f7742d3f5ab0fd", - "slotId": "mod_stock" - }, - { - "_id": "5eb2963686f7742d3f5ab0ff", - "_tpl": "5ea034eb5aad6446a939737b", - "parentId": "5eb2963686f7742d3f5ab0fd", - "slotId": "mod_magazine" - }, - { - "_id": "5eb2963686f7742d3f5ab100", - "_tpl": "5ea03e5009aa976f2e7a514b", - "parentId": "5eb2963686f7742d3f5ab0fd", - "slotId": "mod_reciever" - }, - { - "_id": "5eb2963686f7742d3f5ab101", - "_tpl": "5ea02bb600685063ec28bfa1", - "parentId": "5eb2963686f7742d3f5ab0fd", - "slotId": "mod_barrel" - } - ], - "_encyclopedia": "5ea03f7400685063ec28bfa8" - }, - "618aae5a4dc2d41d5c30264b": { - "_id": "618aae5a4dc2d41d5c30264b", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "AKS74U_Vympel", - "_parent": "618aae5a4dc2d41d5c302655", - "_items": [ - { - "_id": "618aae5a4dc2d41d5c302655", - "_tpl": "583990e32459771419544dd2", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "618aae5a4dc2d41d5c302656", - "_tpl": "57e3dba62459770f0c32322b", - "parentId": "618aae5a4dc2d41d5c302655", - "slotId": "mod_pistol_grip" - }, - { - "_id": "618aae5a4dc2d41d5c302657", - "_tpl": "57dc347d245977596754e7a1", - "parentId": "618aae5a4dc2d41d5c302655", - "slotId": "mod_stock" - }, - { - "_id": "618aae5a4dc2d41d5c302658", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "618aae5a4dc2d41d5c302655", - "slotId": "mod_magazine" - }, - { - "_id": "618aae5a4dc2d41d5c302659", - "_tpl": "57ffb0e42459777d047111c5", - "parentId": "618aae5a4dc2d41d5c302655", - "slotId": "mod_muzzle" - }, - { - "_id": "618aae5a4dc2d41d5c30265a", - "_tpl": "57dc334d245977597164366f", - "parentId": "618aae5a4dc2d41d5c302655", - "slotId": "mod_reciever" - }, - { - "_id": "618aae5a4dc2d41d5c30265b", - "_tpl": "5947db3f86f77447880cf76f", - "parentId": "618aae5a4dc2d41d5c302655", - "slotId": "mod_mount_000" - }, - { - "_id": "618aae5a4dc2d41d5c30265c", - "_tpl": "59d36a0086f7747e673f3946", - "parentId": "618aae5a4dc2d41d5c302655", - "slotId": "mod_gas_block" - }, - { - "_id": "618aae5a4dc2d41d5c30265d", - "_tpl": "57dc32dc245977596d4ef3d3", - "parentId": "618aae5a4dc2d41d5c30265c", - "slotId": "mod_handguard" - } - ] - }, - "6297738b9f1b474e440c45b5": { - "_id": "6297738b9f1b474e440c45b5", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "G36_default", - "_parent": "6297738b9f1b474e440c45b6", - "_items": [ - { - "_id": "6297738b9f1b474e440c45b6", - "_tpl": "623063e994fc3f7b302a9696", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6297738b9f1b474e440c45b7", - "_tpl": "62307b7b10d2321fa8741921", - "parentId": "6297738b9f1b474e440c45b6", - "slotId": "mod_magazine" - }, - { - "_id": "6297738b9f1b474e440c45b8", - "_tpl": "622f140da5958f63c67f1735", - "parentId": "6297738b9f1b474e440c45b6", - "slotId": "mod_stock" - }, - { - "_id": "6297738b9f1b474e440c45b9", - "_tpl": "622b38c56762c718e457e246", - "parentId": "6297738b9f1b474e440c45b6", - "slotId": "mod_barrel" - }, - { - "_id": "6297738b9f1b474e440c45ba", - "_tpl": "622f128cec80d870d349b4e8", - "parentId": "6297738b9f1b474e440c45b9", - "slotId": "mod_muzzle" - }, - { - "_id": "6297738b9f1b474e440c45bb", - "_tpl": "622b327b267a1b13a44abea3", - "parentId": "6297738b9f1b474e440c45b9", - "slotId": "mod_gas_block" - }, - { - "_id": "6297738b9f1b474e440c45bc", - "_tpl": "6231654c71b5bc3baa1078e5", - "parentId": "6297738b9f1b474e440c45b6", - "slotId": "mod_handguard" - }, - { - "_id": "6297738b9f1b474e440c45bd", - "_tpl": "622f02437762f55aaa68ac85", - "parentId": "6297738b9f1b474e440c45b6", - "slotId": "mod_mount" - }, - { - "_id": "6297738b9f1b474e440c45be", - "_tpl": "622b4d7df9cfc87d675d2ded", - "parentId": "6297738b9f1b474e440c45b6", - "slotId": "mod_scope" - }, - { - "_id": "6297738b9f1b474e440c45bf", - "_tpl": "622efbcb99f4ea1a4d6c9a15", - "parentId": "6297738b9f1b474e440c45be", - "slotId": "mod_scope" - } - ], - "_encyclopedia": "623063e994fc3f7b302a9696" - }, - "5af08bfd86f774223d4528e2": { - "_id": "5af08bfd86f774223d4528e2", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "M1A_EBR_Stock", - "_parent": "5af08bfd86f774223d4528ed", - "_items": [ - { - "_id": "5af08bfd86f774223d4528ed", - "_tpl": "5aafa857e5b5b00018480968" - }, - { - "_id": "5af08bfd86f774223d4528ee", - "_tpl": "5aaf8a0be5b5b00015693243", - "parentId": "5af08bfd86f774223d4528ed", - "slotId": "mod_magazine" - }, - { - "_id": "5af08bfd86f774223d4528ef", - "_tpl": "5addc7005acfc4001669f275", - "parentId": "5af08bfd86f774223d4528ed", - "slotId": "mod_stock" - }, - { - "_id": "5af08bfd86f774223d4528f0", - "_tpl": "5addc7ac5acfc400194dbd90", - "parentId": "5af08bfd86f774223d4528ef", - "slotId": "mod_stock" - }, - { - "_id": "5af08bfd86f774223d4528f1", - "_tpl": "5addc7db5acfc4001669f279", - "parentId": "5af08bfd86f774223d4528f0", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5af08bfd86f774223d4528f2", - "_tpl": "5aaf9d53e5b5b00015042a52", - "parentId": "5af08bfd86f774223d4528ed", - "slotId": "mod_barrel" - }, - { - "_id": "5af08bfd86f774223d4528f3", - "_tpl": "5aafa1c2e5b5b00015042a56", - "parentId": "5af08bfd86f774223d4528f2", - "slotId": "mod_muzzle" - }, - { - "_id": "5af08bfd86f774223d4528f4", - "_tpl": "5aafa49ae5b5b00015042a58", - "parentId": "5af08bfd86f774223d4528f3", - "slotId": "mod_sight_front" - }, - { - "_id": "5af08bfd86f774223d4528f5", - "_tpl": "5abcbb20d8ce87001773e258", - "parentId": "5af08bfd86f774223d4528ed", - "slotId": "mod_sight_rear" - } - ] - }, - "5a32808386f774764a3226d9": { - "_id": "5a32808386f774764a3226d9", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "M4A1 2017 New year", - "_parent": "5a2fa9c4c4a282000d72204f", - "_items": [ - { - "_id": "5a2fa9c4c4a282000d72204f", - "_tpl": "5447a9cd4bdc2dbd208b4567" - }, - { - "_id": "5a2fa9c4c4a282000d722051", - "_tpl": "59db3a1d86f77429e05b4e92", - "parentId": "5a2fa9c4c4a282000d72204f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5a32808386f774764a3226ce", - "_tpl": "59c1383d86f774290a37e0ca", - "parentId": "5a2fa9c4c4a282000d72204f", - "slotId": "mod_magazine" - }, - { - "_id": "5a32808386f774764a3226d1", - "_tpl": "59e6920f86f77411d82aa167", - "parentId": "5a32808386f774764a3226ce", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 60 - } - }, - { - "_id": "5a2fa9c4c4a282000d722053", - "_tpl": "59bfe68886f7746004266202", - "parentId": "5a2fa9c4c4a282000d72204f", - "slotId": "mod_reciever" - }, - { - "_id": "5a2fa9c4c4a282000d722058", - "_tpl": "57adff4f24597737f373b6e6", - "parentId": "5a2fa9c4c4a282000d722053", - "slotId": "mod_scope" - }, - { - "_id": "5a2fa9c4c4a282000d722059", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "5a2fa9c4c4a282000d722053", - "slotId": "mod_barrel" - }, - { - "_id": "5a2fa9c4c4a282000d72205b", - "_tpl": "59bffc1f86f77435b128b872", - "parentId": "5a2fa9c4c4a282000d722059", - "slotId": "mod_muzzle" - }, - { - "_id": "5a2fa9c4c4a282000d722060", - "_tpl": "59bffbb386f77435b379b9c2", - "parentId": "5a2fa9c4c4a282000d72205b", - "slotId": "mod_muzzle" - }, - { - "_id": "5a2fa9c4c4a282000d72205c", - "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "5a2fa9c4c4a282000d722059", - "slotId": "mod_gas_block" - }, - { - "_id": "5a2fa9c4c4a282000d72205a", - "_tpl": "595cf16b86f77427440c32e2", - "parentId": "5a2fa9c4c4a282000d722053", - "slotId": "mod_handguard" - }, - { - "_id": "5a32808386f774764a3226d2", - "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "5a2fa9c4c4a282000d72205a", - "slotId": "mod_scope" - }, - { - "_id": "5a32808386f774764a3226d4", - "_tpl": "58d39d3d86f77445bb794ae7", - "parentId": "5a32808386f774764a3226d2", - "slotId": "mod_scope" - }, - { - "_id": "5a32808386f774764a3226d8", - "_tpl": "58d399e486f77442e0016fe7", - "parentId": "5a32808386f774764a3226d4", - "slotId": "mod_scope" - }, - { - "_id": "5a2fa9c4c4a282000d72205d", - "_tpl": "59e0bed186f774156f04ce84", - "parentId": "5a2fa9c4c4a282000d72205a", - "slotId": "mod_mount_000" - }, - { - "_id": "5a32808386f774764a3226d5", - "_tpl": "59f8a37386f7747af3328f06", - "parentId": "5a2fa9c4c4a282000d72205d", - "slotId": "mod_foregrip" - }, - { - "_id": "5a2fa9c4c4a282000d72205e", - "_tpl": "59e0bdb186f774156f04ce82", - "parentId": "5a2fa9c4c4a282000d72205a", - "slotId": "mod_mount_002" - }, - { - "_id": "5a32808386f774764a3226d6", - "_tpl": "56def37dd2720bec348b456a", - "parentId": "5a2fa9c4c4a282000d72205e", - "slotId": "mod_tactical" - }, - { - "_id": "5a2fa9c4c4a282000d72205f", - "_tpl": "59e0be5d86f7742d48765bd2", - "parentId": "5a2fa9c4c4a282000d72205a", - "slotId": "mod_mount_003" - }, - { - "_id": "5a32808386f774764a3226d7", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "5a2fa9c4c4a282000d72205f", - "slotId": "mod_tactical" - }, - { - "_id": "5a32808386f774764a3226d3", - "_tpl": "59e0be5d86f7742d48765bd2", - "parentId": "5a2fa9c4c4a282000d72205a", - "slotId": "mod_mount_004" - }, - { - "_id": "5a32808386f774764a3226cf", - "_tpl": "5947e98b86f774778f1448bc", - "parentId": "5a2fa9c4c4a282000d72204f", - "slotId": "mod_stock" - }, - { - "_id": "5a32808386f774764a3226d0", - "_tpl": "56ea7165d2720b6e518b4583", - "parentId": "5a2fa9c4c4a282000d72204f", - "slotId": "mod_charge" - } - ] - }, - "5dd800eae49222636663133b": { - "_id": "5dd800eae49222636663133b", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "M4_sai", - "_parent": "5dd800eae49222636663134d", - "_items": [ - { - "_id": "5dd800eae49222636663134d", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5dd800eae49222636663134e", - "_tpl": "5cc9bcaed7f00c011c04e179", - "parentId": "5dd800eae49222636663134d", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5dd800eae49222636663134f", - "_tpl": "59c1383d86f774290a37e0ca", - "parentId": "5dd800eae49222636663134d", - "slotId": "mod_magazine" - }, - { - "_id": "5dd800eae492226366631350", - "_tpl": "5d4405aaa4b9361e6a4e6bd3", - "parentId": "5dd800eae49222636663134d", - "slotId": "mod_reciever" - }, - { - "_id": "5dd800eae492226366631351", - "_tpl": "59f9d81586f7744c7506ee62", - "parentId": "5dd800eae492226366631350", - "slotId": "mod_scope" - }, - { - "_id": "5dd800eae492226366631352", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "5dd800eae492226366631350", - "slotId": "mod_barrel" - }, - { - "_id": "5dd800eae492226366631353", - "_tpl": "5cff9e5ed7ad1a09407397d4", - "parentId": "5dd800eae492226366631352", - "slotId": "mod_muzzle" - }, - { - "_id": "5dd800eae492226366631354", - "_tpl": "5d00ec68d7ad1a04a067e5be", - "parentId": "5dd800eae492226366631352", - "slotId": "mod_gas_block" - }, - { - "_id": "5dd800eae492226366631355", - "_tpl": "5c78f2612e221600114c9f0d", - "parentId": "5dd800eae492226366631350", - "slotId": "mod_handguard" - }, - { - "_id": "5dd800eae492226366631356", - "_tpl": "5b7be4895acfc400170e2dd5", - "parentId": "5dd800eae492226366631355", - "slotId": "mod_foregrip" - }, - { - "_id": "5dd800eae492226366631357", - "_tpl": "588226d124597767ad33f787", - "parentId": "5dd800eae492226366631356", - "slotId": "mod_foregrip" - }, - { - "_id": "5dd800eae492226366631358", - "_tpl": "5ba26b01d4351e0085325a51", - "parentId": "5dd800eae492226366631355", - "slotId": "mod_sight_front" - }, - { - "_id": "5dd800eae492226366631359", - "_tpl": "5c78f2882e22165df16b832e", - "parentId": "5dd800eae492226366631355", - "slotId": "mod_muzzle" - }, - { - "_id": "5dd800eae49222636663135a", - "_tpl": "5b07dd285acfc4001754240d", - "parentId": "5dd800eae492226366631355", - "slotId": "mod_tactical_002" - }, - { - "_id": "5dd800eae49222636663135b", - "_tpl": "5ba26b17d4351e00367f9bdd", - "parentId": "5dd800eae492226366631350", - "slotId": "mod_sight_rear" - }, - { - "_id": "5dd800eae49222636663135c", - "_tpl": "5d120a10d7ad1a4e1026ba85", - "parentId": "5dd800eae49222636663134d", - "slotId": "mod_stock" - }, - { - "_id": "5dd800eae49222636663135d", - "_tpl": "5d120a28d7ad1a1c8962e295", - "parentId": "5dd800eae49222636663135c", - "slotId": "mod_stock" - }, - { - "_id": "5dd800eae49222636663135e", - "_tpl": "5d44334ba4b9362b346d1948", - "parentId": "5dd800eae49222636663134d", - "slotId": "mod_charge" - } - ] - }, - "584148f2245977598f1ad387": { - "_id": "584148f2245977598f1ad387", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MP-133 Default", - "_parent": "584148f2245977598f1ad381", - "_items": [ - { - "_id": "584148f2245977598f1ad381", - "_tpl": "54491c4f4bdc2db1078b4568" - }, - { - "_id": "584148f2245977598f1ad382", - "_tpl": "55d4491a4bdc2d882f8b456e", - "parentId": "584148f2245977598f1ad381", - "slotId": "mod_barrel" - }, - { - "_id": "584148f2245977598f1ad383", - "_tpl": "55d45d3f4bdc2d972f8b456c", - "parentId": "584148f2245977598f1ad381", - "slotId": "mod_handguard" - }, - { - "_id": "584148f2245977598f1ad384", - "_tpl": "55d484b44bdc2d1d4e8b456d", - "parentId": "584148f2245977598f1ad381", - "slotId": "mod_magazine" - }, - { - "_id": "584148f2245977598f1ad385", - "_tpl": "56083cba4bdc2de22e8b456f", - "parentId": "584148f2245977598f1ad381", - "slotId": "mod_stock" - } - ], - "_encyclopedia": "54491c4f4bdc2db1078b4568" - }, - "60b7c28ee53e4c5c8945dd73": { - "_id": "60b7c28ee53e4c5c8945dd73", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MP-155 default", - "_parent": "60b7c28ee53e4c5c8945dd79", - "_items": [ - { - "_id": "60b7c28ee53e4c5c8945dd79", - "_tpl": "606dae0ab0e443224b421bb7", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "60b7c28ee53e4c5c8945dd7a", - "_tpl": "6076c1b9f2cb2e02a42acedc", - "parentId": "60b7c28ee53e4c5c8945dd79", - "slotId": "mod_barrel" - }, - { - "_id": "60b7c28ee53e4c5c8945dd7b", - "_tpl": "607d5aa50494a626335e12ed", - "parentId": "60b7c28ee53e4c5c8945dd79", - "slotId": "mod_handguard" - }, - { - "_id": "60b7c28ee53e4c5c8945dd7c", - "_tpl": "6076c87f232e5a31c233d50e", - "parentId": "60b7c28ee53e4c5c8945dd79", - "slotId": "mod_magazine" - }, - { - "_id": "60b7c28ee53e4c5c8945dd7d", - "_tpl": "607d5a891246154cad35d6aa", - "parentId": "60b7c28ee53e4c5c8945dd79", - "slotId": "mod_stock" - } - ], - "_encyclopedia": "606dae0ab0e443224b421bb7" - }, - "618ab04934aa2e47480fba2b": { - "_id": "618ab04934aa2e47480fba2b", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "RPKT", - "_parent": "618ab04934aa2e47480fba2e", - "_items": [ - { - "_id": "618ab04934aa2e47480fba2e", - "_tpl": "5ac66d725acfc43b321d4b60", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "618ab04934aa2e47480fba2f", - "_tpl": "59e649f986f77411d949b246", - "parentId": "618ab04934aa2e47480fba2e", - "slotId": "mod_gas_block" - }, - { - "_id": "618ab04934aa2e47480fba30", - "_tpl": "5efaf417aeb21837e749c7f2", - "parentId": "618ab04934aa2e47480fba2f", - "slotId": "mod_handguard" - }, - { - "_id": "618ab04934aa2e47480fba31", - "_tpl": "5c1cd46f2e22164bef5cfedb", - "parentId": "618ab04934aa2e47480fba30", - "slotId": "mod_foregrip" - }, - { - "_id": "618ab04934aa2e47480fba32", - "_tpl": "58491f3324597764bc48fa02", - "parentId": "618ab04934aa2e47480fba30", - "slotId": "mod_scope" - }, - { - "_id": "618ab04934aa2e47480fba33", - "_tpl": "5f633f791b231926f2329f13", - "parentId": "618ab04934aa2e47480fba2e", - "slotId": "mod_muzzle" - }, - { - "_id": "618ab04934aa2e47480fba34", - "_tpl": "5947fa2486f77425b47c1a9b", - "parentId": "618ab04934aa2e47480fba2e", - "slotId": "mod_pistol_grip" - }, - { - "_id": "618ab04934aa2e47480fba35", - "_tpl": "5d2c772c48f0355d95672c25", - "parentId": "618ab04934aa2e47480fba2e", - "slotId": "mod_reciever" - }, - { - "_id": "618ab04934aa2e47480fba36", - "_tpl": "5cf50fc5d7f00c056c53f83c", - "parentId": "618ab04934aa2e47480fba2e", - "slotId": "mod_stock" - }, - { - "_id": "618ab04934aa2e47480fba37", - "_tpl": "5b39f8db5acfc40016387a1b", - "parentId": "618ab04934aa2e47480fba36", - "slotId": "mod_stock" - }, - { - "_id": "618ab04934aa2e47480fba38", - "_tpl": "5cbdc23eae9215001136a407", - "parentId": "618ab04934aa2e47480fba2e", - "slotId": "mod_magazine" - } - ] - }, - "59430b9b86f77403c27945fd": { - "_id": "59430b9b86f77403c27945fd", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "AK74MOE", - "_parent": "59e5ea8186f7740613442164", - "_items": [ - { - "_id": "59e5ea8186f7740613442164", - "_tpl": "5644bd2b4bdc2d3b4c8b4572" - }, - { - "_id": "59e5ea8186f7740613442165", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "59e5ea8186f7740613442164", - "slotId": "mod_gas_block" - }, - { - "_id": "59e5ea8186f774061344216c", - "_tpl": "57cffddc24597763133760c6", - "parentId": "59e5ea8186f7740613442165", - "slotId": "mod_handguard" - }, - { - "_id": "59e5ea8186f774061344216f", - "_tpl": "57cffcd624597763133760c5", - "parentId": "59e5ea8186f774061344216c", - "slotId": "mod_mount_003" - }, - { - "_id": "59e5ea8186f7740613442166", - "_tpl": "5649ab884bdc2ded0b8b457f", - "parentId": "59e5ea8186f7740613442164", - "slotId": "mod_muzzle" - }, - { - "_id": "59e5ea8186f7740613442167", - "_tpl": "5649ae4a4bdc2d1b2b8b4588", - "parentId": "59e5ea8186f7740613442164", - "slotId": "mod_pistol_grip" - }, - { - "_id": "59e5ea8186f7740613442168", - "_tpl": "5649af094bdc2df8348b4586", - "parentId": "59e5ea8186f7740613442164", - "slotId": "mod_reciever" - }, - { - "_id": "59e5ea8186f7740613442169", - "_tpl": "5649d9a14bdc2d79388b4580", - "parentId": "59e5ea8186f7740613442164", - "slotId": "mod_sight_rear" - }, - { - "_id": "59e5ea8186f774061344216d", - "_tpl": "58491f3324597764bc48fa02", - "parentId": "59e5ea8186f7740613442169", - "slotId": "mod_scope" - }, - { - "_id": "59e5ea8186f774061344216a", - "_tpl": "5649b2314bdc2d79388b4576", - "parentId": "59e5ea8186f7740613442164", - "slotId": "mod_stock" - }, - { - "_id": "59e5ea8186f774061344216e", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "59e5ea8186f774061344216a", - "slotId": "mod_stock" - }, - { - "_id": "59e5ea8186f7740613442170", - "_tpl": "58d2946386f774496974c37e", - "parentId": "59e5ea8186f774061344216e", - "slotId": "mod_stock_000" - }, - { - "_id": "59e5ea8186f7740613442171", - "_tpl": "58d2912286f7744e27117493", - "parentId": "59e5ea8186f7740613442170", - "slotId": "mod_stock" - }, - { - "_id": "59e5ea8186f774061344216b", - "_tpl": "55d482194bdc2d1d4e8b456b", - "parentId": "59e5ea8186f7740613442164", - "slotId": "mod_magazine" - } - ] - }, - "584147ed2459775a77263501": { - "_id": "584147ed2459775a77263501", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AKS-74UN Default", - "_parent": "61a9f94d4e42d705e313383f", - "_items": [ - { - "_id": "61a9f94d4e42d705e313383f", - "_tpl": "583990e32459771419544dd2", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "61a9f94d4e42d705e3133840", - "_tpl": "5649ad3f4bdc2df8348b4585", - "parentId": "61a9f94d4e42d705e313383f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "61a9f94d4e42d705e3133841", - "_tpl": "57dc347d245977596754e7a1", - "parentId": "61a9f94d4e42d705e313383f", - "slotId": "mod_stock" - }, - { - "_id": "61a9f94d4e42d705e3133842", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "61a9f94d4e42d705e313383f", - "slotId": "mod_magazine" - }, - { - "_id": "61a9f94d4e42d705e3133843", - "_tpl": "57dc324a24597759501edc20", - "parentId": "61a9f94d4e42d705e313383f", - "slotId": "mod_muzzle" - }, - { - "_id": "61a9f94d4e42d705e3133844", - "_tpl": "57dc334d245977597164366f", - "parentId": "61a9f94d4e42d705e313383f", - "slotId": "mod_reciever" - }, - { - "_id": "61a9f94d4e42d705e3133845", - "_tpl": "59d36a0086f7747e673f3946", - "parentId": "61a9f94d4e42d705e313383f", - "slotId": "mod_gas_block" - }, - { - "_id": "61a9f94d4e42d705e3133846", - "_tpl": "57dc32dc245977596d4ef3d3", - "parentId": "61a9f94d4e42d705e3133845", - "slotId": "mod_handguard" - } - ], - "_encyclopedia": "583990e32459771419544dd2" - }, - "629774055c32d414f8797477": { - "_id": "629774055c32d414f8797477", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "G36_C", - "_parent": "629774055c32d414f8797478", - "_items": [ - { - "_id": "629774055c32d414f8797478", - "_tpl": "623063e994fc3f7b302a9696", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "629774055c32d414f8797479", - "_tpl": "62307b7b10d2321fa8741921", - "parentId": "629774055c32d414f8797478", - "slotId": "mod_magazine" - }, - { - "_id": "629774055c32d414f879747a", - "_tpl": "622f140da5958f63c67f1735", - "parentId": "629774055c32d414f8797478", - "slotId": "mod_stock" - }, - { - "_id": "629774055c32d414f879747b", - "_tpl": "622b379bf9cfc87d675d2de5", - "parentId": "629774055c32d414f8797478", - "slotId": "mod_barrel" - }, - { - "_id": "629774055c32d414f879747c", - "_tpl": "622f0ee47762f55aaa68ac87", - "parentId": "629774055c32d414f879747b", - "slotId": "mod_muzzle" - }, - { - "_id": "629774055c32d414f879747d", - "_tpl": "622b327b267a1b13a44abea3", - "parentId": "629774055c32d414f879747b", - "slotId": "mod_gas_block" - }, - { - "_id": "629774055c32d414f879747e", - "_tpl": "62386b2adf47d66e835094b2", - "parentId": "629774055c32d414f8797478", - "slotId": "mod_handguard" - }, - { - "_id": "629774055c32d414f879747f", - "_tpl": "62444cb99f47004c781903eb", - "parentId": "629774055c32d414f879747e", - "slotId": "mod_mount_000" - }, - { - "_id": "629774055c32d414f8797480", - "_tpl": "622f16a1a5958f63c67f1737", - "parentId": "629774055c32d414f879747e", - "slotId": "mod_tactical" - }, - { - "_id": "629774055c32d414f8797481", - "_tpl": "622f02437762f55aaa68ac85", - "parentId": "629774055c32d414f8797478", - "slotId": "mod_mount" - }, - { - "_id": "629774055c32d414f8797482", - "_tpl": "622b3c081b89c677a33bcda6", - "parentId": "629774055c32d414f8797478", - "slotId": "mod_scope" - }, - { - "_id": "629774055c32d414f8797483", - "_tpl": "623166e08c43374ca1567195", - "parentId": "629774055c32d414f8797482", - "slotId": "mod_sight_front" - }, - { - "_id": "629774055c32d414f8797484", - "_tpl": "6231670f0b8aa5472d060095", - "parentId": "629774055c32d414f8797482", - "slotId": "mod_sight_rear" - } - ] - }, - "629774817d59e26b711f88be": { - "_id": "629774817d59e26b711f88be", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "G36_E2", - "_parent": "629774817d59e26b711f88c2", - "_items": [ - { - "_id": "629774817d59e26b711f88c2", - "_tpl": "623063e994fc3f7b302a9696", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "629774817d59e26b711f88c3", - "_tpl": "62307b7b10d2321fa8741921", - "parentId": "629774817d59e26b711f88c2", - "slotId": "mod_magazine" - }, - { - "_id": "629774817d59e26b711f88c4", - "_tpl": "622f140da5958f63c67f1735", - "parentId": "629774817d59e26b711f88c2", - "slotId": "mod_stock" - }, - { - "_id": "629774817d59e26b711f88c5", - "_tpl": "622b38c56762c718e457e246", - "parentId": "629774817d59e26b711f88c2", - "slotId": "mod_barrel" - }, - { - "_id": "629774817d59e26b711f88c6", - "_tpl": "622f128cec80d870d349b4e8", - "parentId": "629774817d59e26b711f88c5", - "slotId": "mod_muzzle" - }, - { - "_id": "629774817d59e26b711f88c7", - "_tpl": "622b327b267a1b13a44abea3", - "parentId": "629774817d59e26b711f88c5", - "slotId": "mod_gas_block" - }, - { - "_id": "629774817d59e26b711f88c8", - "_tpl": "6231654c71b5bc3baa1078e5", - "parentId": "629774817d59e26b711f88c2", - "slotId": "mod_handguard" - }, - { - "_id": "629774817d59e26b711f88c9", - "_tpl": "622f02437762f55aaa68ac85", - "parentId": "629774817d59e26b711f88c2", - "slotId": "mod_mount" - }, - { - "_id": "629774817d59e26b711f88ca", - "_tpl": "622b3c081b89c677a33bcda6", - "parentId": "629774817d59e26b711f88c2", - "slotId": "mod_scope" - }, - { - "_id": "629774817d59e26b711f88cb", - "_tpl": "623166e08c43374ca1567195", - "parentId": "629774817d59e26b711f88ca", - "slotId": "mod_sight_front" - }, - { - "_id": "629774817d59e26b711f88cc", - "_tpl": "6231670f0b8aa5472d060095", - "parentId": "629774817d59e26b711f88ca", - "slotId": "mod_sight_rear" - } - ] - }, - "5ebbff0841a637322117a5fb": { - "_id": "5ebbff0841a637322117a5fb", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "M4A1_USASOC2", - "_parent": "5ebbff0841a637322117a5fc", - "_items": [ - { - "_id": "5ebbff0841a637322117a5fc", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5ebbff0841a637322117a5fd", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "5ebbff0841a637322117a5fc", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5ebbff0841a637322117a5fe", - "_tpl": "5d1340b3d7ad1a0b52682ed7", - "parentId": "5ebbff0841a637322117a5fc", - "slotId": "mod_magazine" - }, - { - "_id": "5ebbff0841a637322117a5ff", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "5ebbff0841a637322117a5fc", - "slotId": "mod_reciever" - }, - { - "_id": "5ebbff0841a637322117a600", - "_tpl": "5c0a2cec0db834001b7ce47d", - "parentId": "5ebbff0841a637322117a5ff", - "slotId": "mod_scope" - }, - { - "_id": "5ebbff0841a637322117a601", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "5ebbff0841a637322117a5ff", - "slotId": "mod_barrel" - }, - { - "_id": "5ebbff0841a637322117a602", - "_tpl": "5ea172e498dacb342978818e", - "parentId": "5ebbff0841a637322117a601", - "slotId": "mod_muzzle" - }, - { - "_id": "5ebbff0841a637322117a603", - "_tpl": "5ea17bbc09aa976f2e7a51cd", - "parentId": "5ebbff0841a637322117a602", - "slotId": "mod_muzzle" - }, - { - "_id": "5ebbff0841a637322117a604", - "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "5ebbff0841a637322117a601", - "slotId": "mod_gas_block" - }, - { - "_id": "5ebbff0841a637322117a605", - "_tpl": "5ea16ada09aa976f2e7a51be", - "parentId": "5ebbff0841a637322117a5ff", - "slotId": "mod_handguard" - }, - { - "_id": "5ebbff0841a637322117a606", - "_tpl": "5c06595c0db834001a66af6c", - "parentId": "5ebbff0841a637322117a605", - "slotId": "mod_tactical_000" - }, - { - "_id": "5ebbff0841a637322117a607", - "_tpl": "5c17804b2e2216152006c02f", - "parentId": "5ebbff0841a637322117a605", - "slotId": "mod_sight_front" - }, - { - "_id": "5ebbff0841a637322117a608", - "_tpl": "5c1780312e221602b66cc189", - "parentId": "5ebbff0841a637322117a5ff", - "slotId": "mod_sight_rear" - }, - { - "_id": "5ebbff0841a637322117a609", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "5ebbff0841a637322117a5fc", - "slotId": "mod_stock" - }, - { - "_id": "5ebbff0841a637322117a60a", - "_tpl": "5ae30c9a5acfc408fb139a03", - "parentId": "5ebbff0841a637322117a609", - "slotId": "mod_stock_000" - }, - { - "_id": "5ebbff0841a637322117a60b", - "_tpl": "5ea16d4d5aad6446a939753d", - "parentId": "5ebbff0841a637322117a5fc", - "slotId": "mod_charge" - } - ] - }, - "60b7c2bd95047637182d90a4": { - "_id": "60b7c2bd95047637182d90a4", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "MP-155 Ultima", - "_parent": "60b7c2bd95047637182d90ae", - "_items": [ - { - "_id": "60b7c2bd95047637182d90ae", - "_tpl": "606dae0ab0e443224b421bb7", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "60b7c2bd95047637182d90af", - "_tpl": "6076c1b9f2cb2e02a42acedc", - "parentId": "60b7c2bd95047637182d90ae", - "slotId": "mod_barrel" - }, - { - "_id": "60b7c2bd95047637182d90b0", - "_tpl": "606ee5c81246154cad35d65e", - "parentId": "60b7c2bd95047637182d90ae", - "slotId": "mod_handguard" - }, - { - "_id": "60b7c2bd95047637182d90b1", - "_tpl": "6076c87f232e5a31c233d50e", - "parentId": "60b7c2bd95047637182d90ae", - "slotId": "mod_magazine" - }, - { - "_id": "60b7c2bd95047637182d90b2", - "_tpl": "606eef46232e5a31c233d500", - "parentId": "60b7c2bd95047637182d90ae", - "slotId": "mod_stock" - }, - { - "_id": "60b7c2bd95047637182d90b3", - "_tpl": "606eef756d0bd7580617baf8", - "parentId": "60b7c2bd95047637182d90b2", - "slotId": "mod_stock" - }, - { - "_id": "60b7c2bd95047637182d90b4", - "_tpl": "606ef0812535c57a13424d20", - "parentId": "60b7c2bd95047637182d90b3", - "slotId": "mod_stock" - }, - { - "_id": "60b7c2bd95047637182d90b5", - "_tpl": "606f2696f2cb2e02a42aceb1", - "parentId": "60b7c2bd95047637182d90b3", - "slotId": "mod_tactical" - }, - { - "_id": "60b7c2bd95047637182d90b6", - "_tpl": "60785ce5132d4d12c81fd918", - "parentId": "60b7c2bd95047637182d90ae", - "slotId": "mod_mount" - } - ] - }, - "618ab00ef236914bab050ca0": { - "_id": "618ab00ef236914bab050ca0", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "P90_Devgru", - "_parent": "618ab00ef236914bab050ca1", - "_items": [ - { - "_id": "618ab00ef236914bab050ca1", - "_tpl": "5cc82d76e24e8d00134b4b83", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "618ab00ef236914bab050ca2", - "_tpl": "5cc70093e4a949033c734312", - "parentId": "618ab00ef236914bab050ca1", - "slotId": "mod_magazine" - }, - { - "_id": "618ab00ef236914bab050ca3", - "_tpl": "5cebec10d7f00c065703d185", - "parentId": "618ab00ef236914bab050ca1", - "slotId": "mod_stock" - }, - { - "_id": "618ab00ef236914bab050ca4", - "_tpl": "5cc700d4e4a949000f0f0f28", - "parentId": "618ab00ef236914bab050ca3", - "slotId": "mod_stock_000" - }, - { - "_id": "618ab00ef236914bab050ca5", - "_tpl": "5cc70102e4a949035e43ba74", - "parentId": "618ab00ef236914bab050ca1", - "slotId": "mod_reciever" - }, - { - "_id": "618ab00ef236914bab050ca6", - "_tpl": "5cc7015ae4a949001152b4c6", - "parentId": "618ab00ef236914bab050ca5", - "slotId": "mod_mount_000" - }, - { - "_id": "618ab00ef236914bab050ca7", - "_tpl": "58491f3324597764bc48fa02", - "parentId": "618ab00ef236914bab050ca6", - "slotId": "mod_scope" - }, - { - "_id": "618ab00ef236914bab050ca8", - "_tpl": "5cc70146e4a949000d73bf6b", - "parentId": "618ab00ef236914bab050ca5", - "slotId": "mod_mount_001" - }, - { - "_id": "618ab00ef236914bab050ca9", - "_tpl": "5cc70146e4a949000d73bf6b", - "parentId": "618ab00ef236914bab050ca5", - "slotId": "mod_mount_002" - }, - { - "_id": "618ab00ef236914bab050caa", - "_tpl": "5cc701aae4a949000e1ea45c", - "parentId": "618ab00ef236914bab050ca1", - "slotId": "mod_barrel" - }, - { - "_id": "618ab00ef236914bab050cab", - "_tpl": "5cc82796e24e8d000f5859a8", - "parentId": "618ab00ef236914bab050caa", - "slotId": "mod_muzzle" - }, - { - "_id": "618ab00ef236914bab050cac", - "_tpl": "5cebec00d7f00c065c53522a", - "parentId": "618ab00ef236914bab050cab", - "slotId": "mod_muzzle" - }, - { - "_id": "618ab00ef236914bab050cad", - "_tpl": "5cc6ea78e4a949000e1ea3c1", - "parentId": "618ab00ef236914bab050ca1", - "slotId": "mod_charge" - } - ] - }, - "5841474424597759ba49be91": { - "_id": "5841474424597759ba49be91", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AK-74N", - "_parent": "61a9f8f132a4743c3453d2c6", - "_items": [ - { - "_id": "61a9f8f132a4743c3453d2c6", - "_tpl": "5644bd2b4bdc2d3b4c8b4572", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "61a9f8f132a4743c3453d2c7", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "61a9f8f132a4743c3453d2c6", - "slotId": "mod_gas_block" - }, - { - "_id": "61a9f8f132a4743c3453d2c8", - "_tpl": "5648b0744bdc2d363b8b4578", - "parentId": "61a9f8f132a4743c3453d2c7", - "slotId": "mod_handguard" - }, - { - "_id": "61a9f8f132a4743c3453d2c9", - "_tpl": "5649aa744bdc2ded0b8b457e", - "parentId": "61a9f8f132a4743c3453d2c6", - "slotId": "mod_muzzle" - }, - { - "_id": "61a9f8f132a4743c3453d2ca", - "_tpl": "5649ad3f4bdc2df8348b4585", - "parentId": "61a9f8f132a4743c3453d2c6", - "slotId": "mod_pistol_grip" - }, - { - "_id": "61a9f8f132a4743c3453d2cb", - "_tpl": "5649af094bdc2df8348b4586", - "parentId": "61a9f8f132a4743c3453d2c6", - "slotId": "mod_reciever" - }, - { - "_id": "61a9f8f132a4743c3453d2cc", - "_tpl": "5649b0544bdc2d1b2b8b458a", - "parentId": "61a9f8f132a4743c3453d2c6", - "slotId": "mod_sight_rear" - }, - { - "_id": "61a9f8f132a4743c3453d2cd", - "_tpl": "5649b1c04bdc2d16268b457c", - "parentId": "61a9f8f132a4743c3453d2c6", - "slotId": "mod_stock" - }, - { - "_id": "61a9f8f132a4743c3453d2ce", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "61a9f8f132a4743c3453d2c6", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5644bd2b4bdc2d3b4c8b4572" - }, - "5ba3a4d1d4351e4502010622": { - "_id": "5ba3a4d1d4351e4502010622", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "AKMN2", - "_parent": "5ba3a4d1d4351e4502010625", - "_items": [ - { - "_id": "5ba3a4d1d4351e4502010625", - "_tpl": "5a0ec13bfcdbcb00165aa685" - }, - { - "_id": "5ba3a4d1d4351e4502010626", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "5ba3a4d1d4351e4502010625", - "slotId": "mod_gas_block" - }, - { - "_id": "5ba3a4d1d4351e4502010627", - "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "5ba3a4d1d4351e4502010626", - "slotId": "mod_handguard" - }, - { - "_id": "5ba3a4d1d4351e4502010628", - "_tpl": "59d64fc686f774171b243fe2", - "parentId": "5ba3a4d1d4351e4502010625", - "slotId": "mod_muzzle" - }, - { - "_id": "5ba3a4d1d4351e4502010629", - "_tpl": "59e62cc886f77440d40b52a1", - "parentId": "5ba3a4d1d4351e4502010625", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5ba3a4d1d4351e450201062a", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "5ba3a4d1d4351e4502010625", - "slotId": "mod_reciever" - }, - { - "_id": "5ba3a4d1d4351e450201062b", - "_tpl": "59d650cf86f7741b846413a4", - "parentId": "5ba3a4d1d4351e4502010625", - "slotId": "mod_sight_rear" - }, - { - "_id": "5ba3a4d1d4351e450201062c", - "_tpl": "59d6514b86f774171a068a08", - "parentId": "5ba3a4d1d4351e4502010625", - "slotId": "mod_stock" - }, - { - "_id": "5ba3a4d1d4351e450201062d", - "_tpl": "59d625f086f774661516605d", - "parentId": "5ba3a4d1d4351e4502010625", - "slotId": "mod_magazine" - }, - { - "_id": "5ba3a4d1d4351e450201062e", - "_tpl": "5a7c74b3e899ef0014332c29", - "parentId": "5ba3a4d1d4351e4502010625", - "slotId": "mod_mount_000" - }, - { - "_id": "5ba3a4d1d4351e450201062f", - "_tpl": "5ba36f85d4351e0085325c81", - "parentId": "5ba3a4d1d4351e450201062e", - "slotId": "mod_tactical" - } - ] - }, - "5ac4ac9486f774181345c3d2": { - "_id": "5ac4ac9486f774181345c3d2", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "APB Default", - "_parent": "5abcdb1cd8ce87041e75bc85", - "_items": [ - { - "_id": "5abcdb1cd8ce87041e75bc85", - "_tpl": "5abccb7dd8ce87001773e277" - }, - { - "_id": "5abcdb1cd8ce87041e75bc86", - "_tpl": "5a17fb03fcdbcbcae668728f", - "parentId": "5abcdb1cd8ce87041e75bc85", - "slotId": "mod_magazine" - }, - { - "_id": "5abcdb1cd8ce87041e75bc87", - "_tpl": "5a17fb9dfcdbcbcae6687291", - "parentId": "5abcdb1cd8ce87041e75bc85", - "slotId": "mod_stock" - }, - { - "_id": "5abcdb1cd8ce87041e75bc88", - "_tpl": "5a17fc70fcdbcb0176308b3d", - "parentId": "5abcdb1cd8ce87041e75bc85", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5abcdb1cd8ce87041e75bc89", - "_tpl": "5aba62f8d8ce87001943946b", - "parentId": "5abcdb1cd8ce87041e75bc85", - "slotId": "mod_sight_front" - }, - { - "_id": "5abcdb1cd8ce87041e75bc8a", - "_tpl": "5aba639ed8ce8700182ece67", - "parentId": "5abcdb1cd8ce87041e75bc85", - "slotId": "mod_sight_rear" - }, - { - "_id": "5abcdb1cd8ce87041e75bc8b", - "_tpl": "5abcc328d8ce8700194394f3", - "parentId": "5abcdb1cd8ce87041e75bc85", - "slotId": "mod_muzzle" - } - ], - "_encyclopedia": "5abccb7dd8ce87001773e277" - }, - "58414907245977598f1ad38d": { - "_id": "58414907245977598f1ad38d", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MP-153 Default", - "_parent": "58414907245977598f1ad388", - "_items": [ - { - "_id": "58414907245977598f1ad388", - "_tpl": "56dee2bdd2720bc8328b4567" - }, - { - "_id": "58414907245977598f1ad389", - "_tpl": "56deec93d2720bec348b4568", - "parentId": "58414907245977598f1ad388", - "slotId": "mod_barrel" - }, - { - "_id": "58414907245977598f1ad38a", - "_tpl": "56deed6ed2720b4c698b4583", - "parentId": "58414907245977598f1ad388", - "slotId": "mod_handguard" - }, - { - "_id": "58414907245977598f1ad38b", - "_tpl": "56deee15d2720bee328b4567", - "parentId": "58414907245977598f1ad388", - "slotId": "mod_magazine" - }, - { - "_id": "57a25c2d2459770b297b0dbf", - "_tpl": "56083be64bdc2d20478b456f", - "parentId": "58414907245977598f1ad388", - "slotId": "mod_stock" - } - ], - "_encyclopedia": "56dee2bdd2720bc8328b4567" - }, - "5e03410186f77469041348ea": { - "_id": "5e03410186f77469041348ea", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MP9N_default", - "_parent": "5e03410186f77469041348eb", - "_items": [ - { - "_id": "5e03410186f77469041348eb", - "_tpl": "5de7bd7bfd6b4e6e2276dc25", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5e03410186f77469041348ec", - "_tpl": "5de8eac42a78646d96665d91", - "parentId": "5e03410186f77469041348eb", - "slotId": "mod_magazine" - }, - { - "_id": "5e03410186f77469041348ed", - "_tpl": "5de910da8b6c4240ba2651b5", - "parentId": "5e03410186f77469041348eb", - "slotId": "mod_stock" - }, - { - "_id": "5e03410186f77469041348ee", - "_tpl": "5de8fbad2fbe23140d3ee9c4", - "parentId": "5e03410186f77469041348eb", - "slotId": "mod_foregrip" - }, - { - "_id": "5e03410186f77469041348ef", - "_tpl": "5de8e67c4a9f347bc92edbd7", - "parentId": "5e03410186f77469041348eb", - "slotId": "mod_reciever" - }, - { - "_id": "5e03410186f77469041348f0", - "_tpl": "5de8fb539f98ac2bc659513a", - "parentId": "5e03410186f77469041348ef", - "slotId": "mod_sight_rear" - }, - { - "_id": "5e03410186f77469041348f1", - "_tpl": "5de8fc0b205ddc616a6bc51b", - "parentId": "5e03410186f77469041348ef", - "slotId": "mod_mount" - }, - { - "_id": "5e03410186f77469041348f2", - "_tpl": "5de922d4b11454561e39239f", - "parentId": "5e03410186f77469041348eb", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "5de7bd7bfd6b4e6e2276dc25" - }, - "58dffd4586f77408a27629b2": { - "_id": "58dffd4586f77408a27629b2", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "MPX Silenced", - "_parent": "58dffb3286f77405bb0f797b", - "_items": [ - { - "_id": "58dffb3286f77405bb0f797b", - "_tpl": "58948c8e86f77409493f7266" - }, - { - "_id": "58dffb9c86f774062d730f90", - "_tpl": "5894a51286f77426d13baf02", - "parentId": "58dffb3286f77405bb0f797b", - "slotId": "mod_pistol_grip" - }, - { - "_id": "58dffb9c86f774062d730f91", - "_tpl": "5894a05586f774094708ef75", - "parentId": "58dffb3286f77405bb0f797b", - "slotId": "mod_magazine" - }, - { - "_id": "58dffb9c86f774062d730f92", - "_tpl": "5894a5b586f77426d2590767", - "parentId": "58dffb3286f77405bb0f797b", - "slotId": "mod_reciever" - }, - { - "_id": "58dffb9c86f774062d730f93", - "_tpl": "58aeaaa886f7744fc1560f81", - "parentId": "58dffb9c86f774062d730f92", - "slotId": "mod_barrel" - }, - { - "_id": "58dffb9c86f774062d730f96", - "_tpl": "58aeac1b86f77457c419f475", - "parentId": "58dffb9c86f774062d730f93", - "slotId": "mod_muzzle" - }, - { - "_id": "58dffb9c86f774062d730f94", - "_tpl": "5894a42086f77426d2590762", - "parentId": "58dffb9c86f774062d730f92", - "slotId": "mod_handguard" - }, - { - "_id": "58dffb9c86f774062d730f97", - "_tpl": "5894a73486f77426d259076c", - "parentId": "58dffb9c86f774062d730f94", - "slotId": "mod_sight_front" - }, - { - "_id": "58dffb3286f77405bb0f797d", - "_tpl": "58a56f8d86f774651579314c", - "parentId": "58dffb9c86f774062d730f94", - "slotId": "mod_mount_000" - }, - { - "_id": "58dffb9c86f774062d730f98", - "_tpl": "58a5c12e86f7745d585a2b9e", - "parentId": "58dffb9c86f774062d730f94", - "slotId": "mod_mount_001" - }, - { - "_id": "58dffb3286f77405bb0f797c", - "_tpl": "58a56f8d86f774651579314c", - "parentId": "58dffb9c86f774062d730f94", - "slotId": "mod_mount_002" - }, - { - "_id": "58dffb9c86f774062d730f95", - "_tpl": "5894a81786f77427140b8347", - "parentId": "58dffb9c86f774062d730f92", - "slotId": "mod_sight_rear" - }, - { - "_id": "58dffb3286f77405bb0f7988", - "_tpl": "58ac1bf086f77420ed183f9f", - "parentId": "58dffb3286f77405bb0f797b", - "slotId": "mod_stock" - }, - { - "_id": "58dffb3286f77405bb0f798f", - "_tpl": "57ade1442459771557167e15", - "parentId": "58dffb3286f77405bb0f7988", - "slotId": "mod_stock" - }, - { - "_id": "58dffb3286f77405bb0f7989", - "_tpl": "58949fac86f77409483e16aa", - "parentId": "58dffb3286f77405bb0f797b", - "slotId": "mod_charge" - } - ] - }, - "624d7ae691f0160c7324c402": { - "_id": "624d7ae691f0160c7324c402", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "Rhino 50DS Tactical", - "_parent": "624d7ae691f0160c7324c403", - "_items": [ - { - "_id": "624d7ae691f0160c7324c403", - "_tpl": "61a4c8884f95bc3b2c5dc96f", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "624d7ae691f0160c7324c404", - "_tpl": "619f54a1d25cbd424731fb99", - "parentId": "624d7ae691f0160c7324c403", - "slotId": "mod_magazine" - }, - { - "_id": "624d7ae691f0160c7324c405", - "_tpl": "619f4f8c4c58466fe1228439", - "parentId": "624d7ae691f0160c7324c403", - "slotId": "mod_sight_rear" - }, - { - "_id": "624d7ae691f0160c7324c406", - "_tpl": "619f52454c58466fe122843b", - "parentId": "624d7ae691f0160c7324c403", - "slotId": "mod_sight_front" - }, - { - "_id": "624d7ae691f0160c7324c407", - "_tpl": "619f4ab2d25cbd424731fb95", - "parentId": "624d7ae691f0160c7324c403", - "slotId": "mod_pistol_grip" - }, - { - "_id": "624d7ae691f0160c7324c408", - "_tpl": "5a7b483fe899ef0016170d15", - "parentId": "624d7ae691f0160c7324c403", - "slotId": "mod_tactical" - } - ] - }, - "5dd800bde492226366631317": { - "_id": "5dd800bde492226366631317", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "AK104_T-SAW", - "_parent": "5dd800bde492226366631328", - "_items": [ - { - "_id": "5dd800bde492226366631328", - "_tpl": "5ac66d725acfc43b321d4b60", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5dd800bde492226366631329", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "5dd800bde492226366631328", - "slotId": "mod_gas_block" - }, - { - "_id": "5dd800bde49222636663132a", - "_tpl": "5cf4e3f3d7f00c06595bc7f0", - "parentId": "5dd800bde492226366631329", - "slotId": "mod_handguard" - }, - { - "_id": "5dd800bde49222636663132b", - "_tpl": "5c7fc87d2e221644f31c0298", - "parentId": "5dd800bde49222636663132a", - "slotId": "mod_foregrip" - }, - { - "_id": "5dd800bde49222636663132c", - "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "5dd800bde49222636663132a", - "slotId": "mod_scope" - }, - { - "_id": "5dd800bde49222636663132d", - "_tpl": "5a33b2c9c4a282000c5a9511", - "parentId": "5dd800bde49222636663132c", - "slotId": "mod_scope" - }, - { - "_id": "5dd800bde49222636663132e", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "5dd800bde49222636663132d", - "slotId": "mod_scope" - }, - { - "_id": "5dd800bde49222636663132f", - "_tpl": "5cc9ad73d7f00c000e2579d4", - "parentId": "5dd800bde492226366631328", - "slotId": "mod_muzzle" - }, - { - "_id": "5dd800bde492226366631330", - "_tpl": "5cf50850d7f00c056e24104c", - "parentId": "5dd800bde492226366631328", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5dd800bde492226366631331", - "_tpl": "5d2c770c48f0354b4a07c100", - "parentId": "5dd800bde492226366631328", - "slotId": "mod_reciever" - }, - { - "_id": "5dd800bde492226366631332", - "_tpl": "5d1b5e94d7ad1a2b865a96b0", - "parentId": "5dd800bde492226366631331", - "slotId": "mod_scope" - }, - { - "_id": "5dd800bde492226366631333", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "5dd800bde492226366631328", - "slotId": "mod_sight_rear" - }, - { - "_id": "5dd800bde492226366631334", - "_tpl": "5cf50fc5d7f00c056c53f83c", - "parentId": "5dd800bde492226366631328", - "slotId": "mod_stock" - }, - { - "_id": "5dd800bde492226366631335", - "_tpl": "5c793fde2e221601da358614", - "parentId": "5dd800bde492226366631334", - "slotId": "mod_stock" - }, - { - "_id": "5dd800bde492226366631336", - "_tpl": "5cfe8010d7ad1a59283b14c6", - "parentId": "5dd800bde492226366631328", - "slotId": "mod_magazine" - }, - { - "_id": "5dd800bde492226366631337", - "_tpl": "5648ac824bdc2ded0b8b457d", - "parentId": "5dd800bde492226366631328", - "slotId": "mod_charge" - } - ] - }, - "584147732459775a2b6d9f12": { - "_id": "584147732459775a2b6d9f12", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AKS-74U Default", - "_parent": "61a9f9234e42d705e3133837", - "_items": [ - { - "_id": "61a9f9234e42d705e3133837", - "_tpl": "57dc2fa62459775949412633", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "61a9f9234e42d705e3133838", - "_tpl": "57e3dba62459770f0c32322b", - "parentId": "61a9f9234e42d705e3133837", - "slotId": "mod_pistol_grip" - }, - { - "_id": "61a9f9234e42d705e3133839", - "_tpl": "57dc347d245977596754e7a1", - "parentId": "61a9f9234e42d705e3133837", - "slotId": "mod_stock" - }, - { - "_id": "61a9f9234e42d705e313383a", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "61a9f9234e42d705e3133837", - "slotId": "mod_magazine" - }, - { - "_id": "61a9f9234e42d705e313383b", - "_tpl": "57dc324a24597759501edc20", - "parentId": "61a9f9234e42d705e3133837", - "slotId": "mod_muzzle" - }, - { - "_id": "61a9f9234e42d705e313383c", - "_tpl": "57dc334d245977597164366f", - "parentId": "61a9f9234e42d705e3133837", - "slotId": "mod_reciever" - }, - { - "_id": "61a9f9234e42d705e313383d", - "_tpl": "59d36a0086f7747e673f3946", - "parentId": "61a9f9234e42d705e3133837", - "slotId": "mod_gas_block" - }, - { - "_id": "61a9f9234e42d705e313383e", - "_tpl": "57dc32dc245977596d4ef3d3", - "parentId": "61a9f9234e42d705e313383d", - "slotId": "mod_handguard" - } - ], - "_encyclopedia": "57dc2fa62459775949412633" - }, - "5a43a85186f7746c914b947a": { - "_id": "5a43a85186f7746c914b947a", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "AKSU eft book", - "_parent": "5a3cf1304f39f9000d28ab39", - "_items": [ - { - "_id": "5a3cf1304f39f9000d28ab39", - "_tpl": "583990e32459771419544dd2" - }, - { - "_id": "5a3cf1304f39f9000d28ab40", - "_tpl": "5649ae4a4bdc2d1b2b8b4588", - "parentId": "5a3cf1304f39f9000d28ab39", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5a3cf1304f39f9000d28ab41", - "_tpl": "59ecc28286f7746d7a68aa8c", - "parentId": "5a3cf1304f39f9000d28ab39", - "slotId": "mod_stock" - }, - { - "_id": "5a3cf1304f39f9000d28ab47", - "_tpl": "59ecc3dd86f7746dc827481c", - "parentId": "5a3cf1304f39f9000d28ab41", - "slotId": "mod_stock" - }, - { - "_id": "5a43a85186f7746c914b9476", - "_tpl": "5648ac824bdc2ded0b8b457d", - "parentId": "5a3cf1304f39f9000d28ab39", - "slotId": "mod_charge" - }, - { - "_id": "5a3cf1304f39f9000d28ab42", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "5a3cf1304f39f9000d28ab39", - "slotId": "mod_magazine" - }, - { - "_id": "5a43a85186f7746c914b9477", - "_tpl": "56dfef82d2720bbd668b4567", - "parentId": "5a3cf1304f39f9000d28ab42", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, - { - "_id": "5a3cf1304f39f9000d28ab43", - "_tpl": "5649ab884bdc2ded0b8b457f", - "parentId": "5a3cf1304f39f9000d28ab39", - "slotId": "mod_muzzle" - }, - { - "_id": "5a3cf1304f39f9000d28ab44", - "_tpl": "57dc334d245977597164366f", - "parentId": "5a3cf1304f39f9000d28ab39", - "slotId": "mod_reciever" - }, - { - "_id": "5a3cf1304f39f9000d28ab48", - "_tpl": "57ffb0062459777a045af529", - "parentId": "5a3cf1304f39f9000d28ab44", - "slotId": "mod_mount_000" - }, - { - "_id": "5a43a85186f7746c914b9478", - "_tpl": "584924ec24597768f12ae244", - "parentId": "5a3cf1304f39f9000d28ab48", - "slotId": "mod_scope" - }, - { - "_id": "5a3cf1304f39f9000d28ab45", - "_tpl": "59d36a0086f7747e673f3946", - "parentId": "5a3cf1304f39f9000d28ab39", - "slotId": "mod_gas_block" - }, - { - "_id": "5a3cf1304f39f9000d28ab49", - "_tpl": "57ffa9f4245977728561e844", - "parentId": "5a3cf1304f39f9000d28ab45", - "slotId": "mod_handguard" - }, - { - "_id": "5a43a85186f7746c914b9479", - "_tpl": "59fc48e086f77463b1118392", - "parentId": "5a3cf1304f39f9000d28ab49", - "slotId": "mod_foregrip" - }, - { - "_id": "5a3cf1304f39f9000d28ab4a", - "_tpl": "57ffaea724597779f52b3a4d", - "parentId": "5a3cf1304f39f9000d28ab49", - "slotId": "mod_tactical_000" - }, - { - "_id": "5a3cf1304f39f9000d28ab4b", - "_tpl": "57fd23e32459772d0805bcf1", - "parentId": "5a3cf1304f39f9000d28ab4a", - "slotId": "mod_scope" - } - ] - }, - "6297757b2aecda1b350da2a3": { - "_id": "6297757b2aecda1b350da2a3", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "G36_KV2", - "_parent": "6297757b2aecda1b350da2a6", - "_items": [ - { - "_id": "6297757b2aecda1b350da2a6", - "_tpl": "623063e994fc3f7b302a9696", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6297757b2aecda1b350da2a7", - "_tpl": "62307b7b10d2321fa8741921", - "parentId": "6297757b2aecda1b350da2a6", - "slotId": "mod_magazine" - }, - { - "_id": "6297757b2aecda1b350da2a8", - "_tpl": "622f14e899892a7f9e08f6c5", - "parentId": "6297757b2aecda1b350da2a6", - "slotId": "mod_stock" - }, - { - "_id": "6297757b2aecda1b350da2a9", - "_tpl": "622b3858034a3e17ad0b81f5", - "parentId": "6297757b2aecda1b350da2a6", - "slotId": "mod_barrel" - }, - { - "_id": "6297757b2aecda1b350da2aa", - "_tpl": "622f128cec80d870d349b4e8", - "parentId": "6297757b2aecda1b350da2a9", - "slotId": "mod_muzzle" - }, - { - "_id": "6297757b2aecda1b350da2ab", - "_tpl": "622b327b267a1b13a44abea3", - "parentId": "6297757b2aecda1b350da2a9", - "slotId": "mod_gas_block" - }, - { - "_id": "6297757b2aecda1b350da2ac", - "_tpl": "62386b7153757417e93a4e9f", - "parentId": "6297757b2aecda1b350da2a6", - "slotId": "mod_handguard" - }, - { - "_id": "6297757b2aecda1b350da2ad", - "_tpl": "622f16a1a5958f63c67f1737", - "parentId": "6297757b2aecda1b350da2ac", - "slotId": "mod_tactical" - }, - { - "_id": "6297757b2aecda1b350da2ae", - "_tpl": "622f02437762f55aaa68ac85", - "parentId": "6297757b2aecda1b350da2a6", - "slotId": "mod_mount" - }, - { - "_id": "6297757b2aecda1b350da2af", - "_tpl": "622b3d5cf9cfc87d675d2de9", - "parentId": "6297757b2aecda1b350da2a6", - "slotId": "mod_scope" - } - ] - }, - "5af08d1c86f774223a7aa1b4": { - "_id": "5af08d1c86f774223a7aa1b4", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "M870_MESA_Tactical_Breacher", - "_parent": "5af08d1c86f774223a7aa1c1", - "_items": [ - { - "_id": "5af08d1c86f774223a7aa1c1", - "_tpl": "5a7828548dc32e5a9c28b516" - }, - { - "_id": "5af08d1c86f774223a7aa1c2", - "_tpl": "5a787fdfc5856700142fdd9a", - "parentId": "5af08d1c86f774223a7aa1c1", - "slotId": "mod_barrel" - }, - { - "_id": "5af08d1c86f774223a7aa1c3", - "_tpl": "5a788031c585673f2b5c1c79", - "parentId": "5af08d1c86f774223a7aa1c1", - "slotId": "mod_handguard" - }, - { - "_id": "5af08d1c86f774223a7aa1c4", - "_tpl": "59fc48e086f77463b1118392", - "parentId": "5af08d1c86f774223a7aa1c3", - "slotId": "mod_foregrip" - }, - { - "_id": "5af08d1c86f774223a7aa1c5", - "_tpl": "5a7882dcc5856700177af662", - "parentId": "5af08d1c86f774223a7aa1c1", - "slotId": "mod_magazine" - }, - { - "_id": "5af08d1c86f774223a7aa1c6", - "_tpl": "5ae35b315acfc4001714e8b0", - "parentId": "5af08d1c86f774223a7aa1c1", - "slotId": "mod_stock" - }, - { - "_id": "5af08d1c86f774223a7aa1c7", - "_tpl": "56eabf3bd2720b75698b4569", - "parentId": "5af08d1c86f774223a7aa1c6", - "slotId": "mod_stock" - }, - { - "_id": "5af08d1c86f774223a7aa1c8", - "_tpl": "58d2912286f7744e27117493", - "parentId": "5af08d1c86f774223a7aa1c7", - "slotId": "mod_stock" - }, - { - "_id": "5af08d1c86f774223a7aa1c9", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "5af08d1c86f774223a7aa1c6", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5af08d1c86f774223a7aa1ca", - "_tpl": "5a78948ec5856700177b1124", - "parentId": "5af08d1c86f774223a7aa1c1", - "slotId": "mod_mount" - }, - { - "_id": "5af08d1c86f774223a7aa1cb", - "_tpl": "584924ec24597768f12ae244", - "parentId": "5af08d1c86f774223a7aa1ca", - "slotId": "mod_scope" - } - ] - }, - "584147982459775a6c55e931": { - "_id": "584147982459775a6c55e931", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AKS-74UB Default", - "_parent": "61a9f93a7549bb6aab33c04b", - "_items": [ - { - "_id": "61a9f93a7549bb6aab33c04b", - "_tpl": "5839a40f24597726f856b511", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "61a9f93a7549bb6aab33c04c", - "_tpl": "5649ad3f4bdc2df8348b4585", - "parentId": "61a9f93a7549bb6aab33c04b", - "slotId": "mod_pistol_grip" - }, - { - "_id": "61a9f93a7549bb6aab33c04d", - "_tpl": "57dc347d245977596754e7a1", - "parentId": "61a9f93a7549bb6aab33c04b", - "slotId": "mod_stock" - }, - { - "_id": "61a9f93a7549bb6aab33c04e", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "61a9f93a7549bb6aab33c04b", - "slotId": "mod_magazine" - }, - { - "_id": "61a9f93a7549bb6aab33c04f", - "_tpl": "57ffb0e42459777d047111c5", - "parentId": "61a9f93a7549bb6aab33c04b", - "slotId": "mod_muzzle" - }, - { - "_id": "61a9f93a7549bb6aab33c050", - "_tpl": "5839a7742459773cf9693481", - "parentId": "61a9f93a7549bb6aab33c04b", - "slotId": "mod_reciever" - }, - { - "_id": "61a9f93a7549bb6aab33c051", - "_tpl": "59d36a0086f7747e673f3946", - "parentId": "61a9f93a7549bb6aab33c04b", - "slotId": "mod_gas_block" - }, - { - "_id": "61a9f93a7549bb6aab33c052", - "_tpl": "57dc32dc245977596d4ef3d3", - "parentId": "61a9f93a7549bb6aab33c051", - "slotId": "mod_handguard" - } - ], - "_encyclopedia": "5839a40f24597726f856b511" - }, - "629774d35c32d414f8797486": { - "_id": "629774d35c32d414f8797486", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "G36_K", - "_parent": "629774d35c32d414f8797487", - "_items": [ - { - "_id": "629774d35c32d414f8797487", - "_tpl": "623063e994fc3f7b302a9696", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "629774d35c32d414f8797488", - "_tpl": "62307b7b10d2321fa8741921", - "parentId": "629774d35c32d414f8797487", - "slotId": "mod_magazine" - }, - { - "_id": "629774d35c32d414f8797489", - "_tpl": "622f140da5958f63c67f1735", - "parentId": "629774d35c32d414f8797487", - "slotId": "mod_stock" - }, - { - "_id": "629774d35c32d414f879748a", - "_tpl": "622b3858034a3e17ad0b81f5", - "parentId": "629774d35c32d414f8797487", - "slotId": "mod_barrel" - }, - { - "_id": "629774d35c32d414f879748b", - "_tpl": "622f128cec80d870d349b4e8", - "parentId": "629774d35c32d414f879748a", - "slotId": "mod_muzzle" - }, - { - "_id": "629774d35c32d414f879748c", - "_tpl": "622b327b267a1b13a44abea3", - "parentId": "629774d35c32d414f879748a", - "slotId": "mod_gas_block" - }, - { - "_id": "629774d35c32d414f879748d", - "_tpl": "62386b7153757417e93a4e9f", - "parentId": "629774d35c32d414f8797487", - "slotId": "mod_handguard" - }, - { - "_id": "629774d35c32d414f879748e", - "_tpl": "622f02437762f55aaa68ac85", - "parentId": "629774d35c32d414f8797487", - "slotId": "mod_mount" - }, - { - "_id": "629774d35c32d414f879748f", - "_tpl": "622b4d7df9cfc87d675d2ded", - "parentId": "629774d35c32d414f8797487", - "slotId": "mod_scope" - }, - { - "_id": "629774d35c32d414f8797490", - "_tpl": "622efbcb99f4ea1a4d6c9a15", - "parentId": "629774d35c32d414f879748f", - "slotId": "mod_scope" - } - ] - }, - "6198e2ddef80673cae5d1c87": { - "_id": "6198e2ddef80673cae5d1c87", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MTs-255 DEFAULT", - "_parent": "61a64b25063f5a50e60c37f4", - "_items": [ - { - "_id": "61a64b25063f5a50e60c37f4", - "_tpl": "60db29ce99594040e04c4a27", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "61a64b25063f5a50e60c37f5", - "_tpl": "60dc519adf4c47305f6d410d", - "parentId": "61a64b25063f5a50e60c37f4", - "slotId": "mod_magazine" - }, - { - "_id": "61a64b25063f5a50e60c37f6", - "_tpl": "612368f58b401f4f51239b33", - "parentId": "61a64b25063f5a50e60c37f4", - "slotId": "mod_barrel" - }, - { - "_id": "61a64b25063f5a50e60c37f7", - "_tpl": "619d36da53b4d42ee724fae4", - "parentId": "61a64b25063f5a50e60c37f6", - "slotId": "mod_muzzle" - }, - { - "_id": "61a64b25063f5a50e60c37f8", - "_tpl": "612781056f3d944a17348d60", - "parentId": "61a64b25063f5a50e60c37f4", - "slotId": "mod_stock" - }, - { - "_id": "61a64b25063f5a50e60c37f9", - "_tpl": "6123649463849f3d843da7c4", - "parentId": "61a64b25063f5a50e60c37f4", - "slotId": "mod_handguard" - } - ], - "_encyclopedia": "60db29ce99594040e04c4a27" - }, - "624d7a3691f0160c7324c3f4": { - "_id": "624d7a3691f0160c7324c3f4", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Rhino 50DS default", - "_parent": "624d7a3691f0160c7324c3f5", - "_items": [ - { - "_id": "624d7a3691f0160c7324c3f5", - "_tpl": "61a4c8884f95bc3b2c5dc96f", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "624d7a3691f0160c7324c3f6", - "_tpl": "619f54a1d25cbd424731fb99", - "parentId": "624d7a3691f0160c7324c3f5", - "slotId": "mod_magazine" - }, - { - "_id": "624d7a3691f0160c7324c3f7", - "_tpl": "619f4cee4c58466fe1228435", - "parentId": "624d7a3691f0160c7324c3f5", - "slotId": "mod_sight_rear" - }, - { - "_id": "624d7a3691f0160c7324c3f8", - "_tpl": "619f4d304c58466fe1228437", - "parentId": "624d7a3691f0160c7324c3f5", - "slotId": "mod_sight_front" - }, - { - "_id": "624d7a3691f0160c7324c3f9", - "_tpl": "619f4bffd25cbd424731fb97", - "parentId": "624d7a3691f0160c7324c3f5", - "slotId": "mod_pistol_grip" - } - ], - "_encyclopedia": "61a4c8884f95bc3b2c5dc96f" - }, - "5f676b779ab5ec19f028eaf3": { - "_id": "5f676b779ab5ec19f028eaf3", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "RFB_default", - "_parent": "5f676b779ab5ec19f028eaf5", - "_items": [ - { - "_id": "5f676b779ab5ec19f028eaf5", - "_tpl": "5f2a9575926fd9352339381f", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5f676b779ab5ec19f028eaf6", - "_tpl": "5b099ac65acfc400186331e1", - "parentId": "5f676b779ab5ec19f028eaf5", - "slotId": "mod_magazine" - }, - { - "_id": "5f676b779ab5ec19f028eaf7", - "_tpl": "5f2aa46b878ef416f538b567", - "parentId": "5f676b779ab5ec19f028eaf5", - "slotId": "mod_barrel" - }, - { - "_id": "5f676b779ab5ec19f028eaf8", - "_tpl": "5f2aa4464b50c14bcf07acdb", - "parentId": "5f676b779ab5ec19f028eaf7", - "slotId": "mod_muzzle" - }, - { - "_id": "5f676b779ab5ec19f028eaf9", - "_tpl": "5f2aa47a200e2c0ee46efa71", - "parentId": "5f676b779ab5ec19f028eaf5", - "slotId": "mod_handguard" - }, - { - "_id": "5f676b779ab5ec19f028eafa", - "_tpl": "5f2aa493cd375f14e15eea72", - "parentId": "5f676b779ab5ec19f028eaf9", - "slotId": "mod_mount_000" - }, - { - "_id": "5f676b779ab5ec19f028eafb", - "_tpl": "5f2aa49f9b44de6b1b4e68d4", - "parentId": "5f676b779ab5ec19f028eaf5", - "slotId": "mod_mount" - } - ], - "_encyclopedia": "5f2a9575926fd9352339381f" - }, - "5eb2968186f7746d1f1a4fd5": { - "_id": "5eb2968186f7746d1f1a4fd5", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "1911_default", - "_parent": "5eb2968186f7746d1f1a4fdf", - "_items": [ - { - "_id": "5eb2968186f7746d1f1a4fdf", - "_tpl": "5e81c3cbac2bb513793cdc75", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5eb2968186f7746d1f1a4fe0", - "_tpl": "5e81c519cb2b95385c177551", - "parentId": "5eb2968186f7746d1f1a4fdf", - "slotId": "mod_barrel" - }, - { - "_id": "5eb2968186f7746d1f1a4fe1", - "_tpl": "5e81c6bf763d9f754677beff", - "parentId": "5eb2968186f7746d1f1a4fdf", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5eb2968186f7746d1f1a4fe2", - "_tpl": "5e81edc13397a21db957f6a1", - "parentId": "5eb2968186f7746d1f1a4fdf", - "slotId": "mod_reciever" - }, - { - "_id": "5eb2968186f7746d1f1a4fe3", - "_tpl": "5e81ee4dcb2b95385c177582", - "parentId": "5eb2968186f7746d1f1a4fe2", - "slotId": "mod_sight_rear" - }, - { - "_id": "5eb2968186f7746d1f1a4fe4", - "_tpl": "5e81ee213397a21db957f6a6", - "parentId": "5eb2968186f7746d1f1a4fe2", - "slotId": "mod_sight_front" - }, - { - "_id": "5eb2968186f7746d1f1a4fe5", - "_tpl": "5e81c4ca763d9f754677befa", - "parentId": "5eb2968186f7746d1f1a4fdf", - "slotId": "mod_magazine" - }, - { - "_id": "5eb2968186f7746d1f1a4fe6", - "_tpl": "5e81c6a2ac2bb513793cdc7f", - "parentId": "5eb2968186f7746d1f1a4fdf", - "slotId": "mod_trigger" - }, - { - "_id": "5eb2968186f7746d1f1a4fe7", - "_tpl": "5e81c550763d9f754677befd", - "parentId": "5eb2968186f7746d1f1a4fdf", - "slotId": "mod_hammer" - }, - { - "_id": "5eb2968186f7746d1f1a4fe8", - "_tpl": "5e81c539cb2b95385c177553", - "parentId": "5eb2968186f7746d1f1a4fdf", - "slotId": "mod_catch" - } - ], - "_encyclopedia": "5e81c3cbac2bb513793cdc75" - }, - "5c10fcb186f774533e5529ab": { - "_id": "5c10fcb186f774533e5529ab", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "ADAR default", - "_parent": "61a9f8bd6bf73d5c697b3c44", - "_items": [ - { - "_id": "61a9f8bd6bf73d5c697b3c44", - "_tpl": "5c07c60e0db834002330051f", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "61a9f8bd6bf73d5c697b3c45", - "_tpl": "5c0e2ff6d174af02a1659d4a", - "parentId": "61a9f8bd6bf73d5c697b3c44", - "slotId": "mod_pistol_grip" - }, - { - "_id": "61a9f8bd6bf73d5c697b3c46", - "_tpl": "5aaa5e60e5b5b000140293d6", - "parentId": "61a9f8bd6bf73d5c697b3c44", - "slotId": "mod_magazine" - }, - { - "_id": "61a9f8bd6bf73d5c697b3c47", - "_tpl": "5c0e2f26d174af02a9625114", - "parentId": "61a9f8bd6bf73d5c697b3c44", - "slotId": "mod_reciever" - }, - { - "_id": "61a9f8bd6bf73d5c697b3c48", - "_tpl": "5c0e2f94d174af029f650d56", - "parentId": "61a9f8bd6bf73d5c697b3c47", - "slotId": "mod_barrel" - }, - { - "_id": "61a9f8bd6bf73d5c697b3c49", - "_tpl": "5c0fafb6d174af02a96260ba", - "parentId": "61a9f8bd6bf73d5c697b3c48", - "slotId": "mod_muzzle" - }, - { - "_id": "61a9f8bd6bf73d5c697b3c4a", - "_tpl": "5ae30e795acfc408fb139a0b", - "parentId": "61a9f8bd6bf73d5c697b3c48", - "slotId": "mod_gas_block" - }, - { - "_id": "61a9f8bd6bf73d5c697b3c4b", - "_tpl": "5c0e2f5cd174af02a012cfc9", - "parentId": "61a9f8bd6bf73d5c697b3c47", - "slotId": "mod_handguard" - }, - { - "_id": "61a9f8bd6bf73d5c697b3c4c", - "_tpl": "5c0faeddd174af02a962601f", - "parentId": "61a9f8bd6bf73d5c697b3c44", - "slotId": "mod_stock" - }, - { - "_id": "61a9f8bd6bf73d5c697b3c4d", - "_tpl": "5c0faf68d174af02a96260b8", - "parentId": "61a9f8bd6bf73d5c697b3c44", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "5c07c60e0db834002330051f" - }, - "5ba3a449d4351e0034778243": { - "_id": "5ba3a449d4351e0034778243", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "AKMSP", - "_parent": "5ba3a449d4351e0034778247", - "_items": [ - { - "_id": "5ba3a449d4351e0034778247", - "_tpl": "59ff346386f77477562ff5e2" - }, - { - "_id": "5ba3a449d4351e0034778248", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "5ba3a449d4351e0034778247", - "slotId": "mod_gas_block" - }, - { - "_id": "5ba3a449d4351e0034778249", - "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "5ba3a449d4351e0034778248", - "slotId": "mod_handguard" - }, - { - "_id": "5ba3a449d4351e003477824a", - "_tpl": "59d64fc686f774171b243fe2", - "parentId": "5ba3a449d4351e0034778247", - "slotId": "mod_muzzle" - }, - { - "_id": "5ba3a449d4351e003477824b", - "_tpl": "5a0071d486f77404e23a12b2", - "parentId": "5ba3a449d4351e0034778247", - "slotId": "mod_pistol_grip_akms" - }, - { - "_id": "5ba3a449d4351e003477824c", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "5ba3a449d4351e0034778247", - "slotId": "mod_reciever" - }, - { - "_id": "5ba3a449d4351e003477824d", - "_tpl": "59d650cf86f7741b846413a4", - "parentId": "5ba3a449d4351e0034778247", - "slotId": "mod_sight_rear" - }, - { - "_id": "5ba3a449d4351e003477824e", - "_tpl": "5a0ed824fcdbcb0176308b0d", - "parentId": "5ba3a449d4351e003477824d", - "slotId": "mod_sight_rear" - }, - { - "_id": "5ba3a449d4351e003477824f", - "_tpl": "59ff3b6a86f77477562ff5ed", - "parentId": "5ba3a449d4351e0034778247", - "slotId": "mod_stock_akms" - }, - { - "_id": "5ba3a449d4351e0034778250", - "_tpl": "5a0060fc86f7745793204432", - "parentId": "5ba3a449d4351e0034778247", - "slotId": "mod_magazine" - }, - { - "_id": "5ba3a449d4351e0034778251", - "_tpl": "5a0f096dfcdbcb0176308b15", - "parentId": "5ba3a449d4351e0034778247", - "slotId": "mod_sight_front" - } - ] - }, - "5ac4abf986f7747d117c67aa": { - "_id": "5ac4abf986f7747d117c67aa", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AKS-74 Default", - "_parent": "5ac4a2c15acfc40019262e61", - "_items": [ - { - "_id": "5ac4a2c15acfc40019262e61", - "_tpl": "5ab8e9fcd8ce870019439434" - }, - { - "_id": "5ac4abf986f7747d117c67a2", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "5ac4a2c15acfc40019262e61", - "slotId": "mod_gas_block" - }, - { - "_id": "5ac4abf986f7747d117c67a9", - "_tpl": "5648b0744bdc2d363b8b4578", - "parentId": "5ac4abf986f7747d117c67a2", - "slotId": "mod_handguard" - }, - { - "_id": "5ac4abf986f7747d117c67a3", - "_tpl": "5649aa744bdc2ded0b8b457e", - "parentId": "5ac4a2c15acfc40019262e61", - "slotId": "mod_muzzle" - }, - { - "_id": "5ac4abf986f7747d117c67a4", - "_tpl": "57e3dba62459770f0c32322b", - "parentId": "5ac4a2c15acfc40019262e61", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5ac4abf986f7747d117c67a5", - "_tpl": "5649af094bdc2df8348b4586", - "parentId": "5ac4a2c15acfc40019262e61", - "slotId": "mod_reciever" - }, - { - "_id": "5ac4abf986f7747d117c67a6", - "_tpl": "5649b0544bdc2d1b2b8b458a", - "parentId": "5ac4a2c15acfc40019262e61", - "slotId": "mod_sight_rear" - }, - { - "_id": "5ac4abf986f7747d117c67a7", - "_tpl": "5ab626e4d8ce87272e4c6e43", - "parentId": "5ac4a2c15acfc40019262e61", - "slotId": "mod_stock" - }, - { - "_id": "5ac4abf986f7747d117c67a8", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "5ac4a2c15acfc40019262e61", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5ab8e9fcd8ce870019439434" - }, - "5ac4accf86f774181345c3d7": { - "_id": "5ac4accf86f774181345c3d7", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "APS Default", - "_parent": "5ac4a2c15acfc40019262e5f", - "_items": [ - { - "_id": "5ac4a2c15acfc40019262e5f", - "_tpl": "5a17f98cfcdbcb0980087290" - }, - { - "_id": "5ac4accf86f774181345c3d3", - "_tpl": "5a17fb03fcdbcbcae668728f", - "parentId": "5ac4a2c15acfc40019262e5f", - "slotId": "mod_magazine" - }, - { - "_id": "5ac4accf86f774181345c3d4", - "_tpl": "5a17fc70fcdbcb0176308b3d", - "parentId": "5ac4a2c15acfc40019262e5f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5ac4accf86f774181345c3d5", - "_tpl": "5aba62f8d8ce87001943946b", - "parentId": "5ac4a2c15acfc40019262e5f", - "slotId": "mod_sight_front" - }, - { - "_id": "5ac4accf86f774181345c3d6", - "_tpl": "5aba637ad8ce87001773e17f", - "parentId": "5ac4a2c15acfc40019262e5f", - "slotId": "mod_sight_rear" - } - ], - "_encyclopedia": "5a17f98cfcdbcb0980087290" - }, - "6297743d005016781231ab76": { - "_id": "6297743d005016781231ab76", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "G36_E", - "_parent": "6297743d005016781231ab77", - "_items": [ - { - "_id": "6297743d005016781231ab77", - "_tpl": "623063e994fc3f7b302a9696", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6297743d005016781231ab78", - "_tpl": "62307b7b10d2321fa8741921", - "parentId": "6297743d005016781231ab77", - "slotId": "mod_magazine" - }, - { - "_id": "6297743d005016781231ab79", - "_tpl": "622f140da5958f63c67f1735", - "parentId": "6297743d005016781231ab77", - "slotId": "mod_stock" - }, - { - "_id": "6297743d005016781231ab7a", - "_tpl": "622b38c56762c718e457e246", - "parentId": "6297743d005016781231ab77", - "slotId": "mod_barrel" - }, - { - "_id": "6297743d005016781231ab7b", - "_tpl": "622f128cec80d870d349b4e8", - "parentId": "6297743d005016781231ab7a", - "slotId": "mod_muzzle" - }, - { - "_id": "6297743d005016781231ab7c", - "_tpl": "622b327b267a1b13a44abea3", - "parentId": "6297743d005016781231ab7a", - "slotId": "mod_gas_block" - }, - { - "_id": "6297743d005016781231ab7d", - "_tpl": "6231654c71b5bc3baa1078e5", - "parentId": "6297743d005016781231ab77", - "slotId": "mod_handguard" - }, - { - "_id": "6297743d005016781231ab7e", - "_tpl": "622f02437762f55aaa68ac85", - "parentId": "6297743d005016781231ab77", - "slotId": "mod_mount" - }, - { - "_id": "6297743d005016781231ab7f", - "_tpl": "622b4f54dc8dcc0ba8742f85", - "parentId": "6297743d005016781231ab77", - "slotId": "mod_scope" - } - ] - }, - "5f6770f839a13e712a1dff54": { - "_id": "5f6770f839a13e712a1dff54", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "KS23_short", - "_parent": "5f6770f839a13e712a1dff55", - "_items": [ - { - "_id": "5f6770f839a13e712a1dff55", - "_tpl": "5e848cc2988a8701445df1e8", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5f6770f839a13e712a1dff56", - "_tpl": "5e848d1c264f7c180b5e35a9", - "parentId": "5f6770f839a13e712a1dff55", - "slotId": "mod_barrel" - }, - { - "_id": "5f6770f839a13e712a1dff57", - "_tpl": "5e848d51e4dbc5266a4ec63b", - "parentId": "5f6770f839a13e712a1dff55", - "slotId": "mod_handguard" - }, - { - "_id": "5f6770f839a13e712a1dff58", - "_tpl": "5f647d9f8499b57dc40ddb93", - "parentId": "5f6770f839a13e712a1dff55", - "slotId": "mod_magazine" - }, - { - "_id": "5f6770f839a13e712a1dff59", - "_tpl": "5e848d99865c0f329958c83b", - "parentId": "5f6770f839a13e712a1dff55", - "slotId": "mod_stock" - }, - { - "_id": "5f6770f839a13e712a1dff5a", - "_tpl": "5e848dc4e4dbc5266a4ec63d", - "parentId": "5f6770f839a13e712a1dff59", - "slotId": "mod_stock" - } - ] - }, - "618aaf656bbeff39ad4acf0c": { - "_id": "618aaf656bbeff39ad4acf0c", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "M4A1_SpecOps", - "_parent": "6396b7886a00541d900be595", - "_items": [ - { - "_id": "6396b7886a00541d900be595", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "6396b7886a00541d900be596", - "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "6396b7886a00541d900be595", - "slotId": "mod_pistol_grip" - }, - { - "_id": "6396b7886a00541d900be597", - "_tpl": "5d1340cad7ad1a0b0b249869", - "parentId": "6396b7886a00541d900be595", - "slotId": "mod_magazine" - }, - { - "_id": "6396b7886a00541d900be598", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "6396b7886a00541d900be595", - "slotId": "mod_reciever" - }, - { - "_id": "6396b7886a00541d900be599", - "_tpl": "58d39d3d86f77445bb794ae7", - "parentId": "6396b7886a00541d900be598", - "slotId": "mod_scope" - }, - { - "_id": "6396b7886a00541d900be59a", - "_tpl": "58d39b0386f77443380bf13c", - "parentId": "6396b7886a00541d900be599", - "slotId": "mod_scope" - }, - { - "_id": "6396b7886a00541d900be59b", - "_tpl": "58d399e486f77442e0016fe7", - "parentId": "6396b7886a00541d900be59a", - "slotId": "mod_scope" - }, - { - "_id": "6396b7886a00541d900be59c", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "6396b7886a00541d900be598", - "slotId": "mod_barrel" - }, - { - "_id": "6396b7886a00541d900be59d", - "_tpl": "59bffc1f86f77435b128b872", - "parentId": "6396b7886a00541d900be59c", - "slotId": "mod_muzzle" - }, - { - "_id": "6396b7886a00541d900be59e", - "_tpl": "59bffbb386f77435b379b9c2", - "parentId": "6396b7886a00541d900be59d", - "slotId": "mod_muzzle" - }, - { - "_id": "6396b7886a00541d900be59f", - "_tpl": "5ae30e795acfc408fb139a0b", - "parentId": "6396b7886a00541d900be59c", - "slotId": "mod_gas_block" - }, - { - "_id": "6396b7886a00541d900be5a0", - "_tpl": "55d459824bdc2d892f8b4573", - "parentId": "6396b7886a00541d900be598", - "slotId": "mod_handguard" - }, - { - "_id": "6396b7886a00541d900be5a1", - "_tpl": "637f57b78d137b27f70c496a", - "parentId": "6396b7886a00541d900be5a0", - "slotId": "mod_handguard" - }, - { - "_id": "6396b7886a00541d900be5a2", - "_tpl": "5c1bc5612e221602b5429350", - "parentId": "6396b7886a00541d900be5a1", - "slotId": "mod_foregrip" - }, - { - "_id": "6396b7886a00541d900be5a3", - "_tpl": "55d5f46a4bdc2d1b198b4567", - "parentId": "6396b7886a00541d900be598", - "slotId": "mod_sight_rear" - }, - { - "_id": "6396b7886a00541d900be5a4", - "_tpl": "5947eab886f77475961d96c5", - "parentId": "6396b7886a00541d900be595", - "slotId": "mod_stock" - }, - { - "_id": "6396b7886a00541d900be5a5", - "_tpl": "5bb20dbcd4351e44f824c04e", - "parentId": "6396b7886a00541d900be595", - "slotId": "mod_charge" - } - ] - }, - "5d3f06c886f7743bb5318c6a": { - "_id": "5d3f06c886f7743bb5318c6a", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MP5k default", - "_parent": "5d3f06c886f7743bb5318c72", - "_items": [ - { - "_id": "5d3f06c886f7743bb5318c72", - "_tpl": "5d2f0d8048f0356c925bc3b0", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5d3f06c886f7743bb5318c73", - "_tpl": "5d2f213448f0355009199284", - "parentId": "5d3f06c886f7743bb5318c72", - "slotId": "mod_magazine" - }, - { - "_id": "5d3f06c886f7743bb5318c74", - "_tpl": "5d2f261548f03576f500e7b7", - "parentId": "5d3f06c886f7743bb5318c72", - "slotId": "mod_reciever" - }, - { - "_id": "5d3f06c886f7743bb5318c75", - "_tpl": "5d2f259b48f0355a844acd74", - "parentId": "5d3f06c886f7743bb5318c74", - "slotId": "mod_handguard" - }, - { - "_id": "5d3f06c886f7743bb5318c76", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "5d3f06c886f7743bb5318c74", - "slotId": "mod_sight_rear" - }, - { - "_id": "5d3f06c886f7743bb5318c77", - "_tpl": "5d2f25bc48f03502573e5d85", - "parentId": "5d3f06c886f7743bb5318c74", - "slotId": "mod_stock" - }, - { - "_id": "5d3f06c886f7743bb5318c78", - "_tpl": "5d2f2d5748f03572ec0c0139", - "parentId": "5d3f06c886f7743bb5318c72", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "5d2f0d8048f0356c925bc3b0" - }, - "5b439b5686f77428bd137424": { - "_id": "5b439b5686f77428bd137424", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "SA-58_OSW", - "_parent": "5b439b5686f77428bd137432", - "_items": [ - { - "_id": "5b439b5686f77428bd137432", - "_tpl": "5b0bbe4e5acfc40dc528a72d" - }, - { - "_id": "5b439b5686f77428bd137433", - "_tpl": "5b099b965acfc400186331e6", - "parentId": "5b439b5686f77428bd137432", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5b439b5686f77428bd137434", - "_tpl": "5b099ac65acfc400186331e1", - "parentId": "5b439b5686f77428bd137432", - "slotId": "mod_magazine" - }, - { - "_id": "5b439b5686f77428bd137435", - "_tpl": "5b099a9d5acfc47a8607efe7", - "parentId": "5b439b5686f77428bd137432", - "slotId": "mod_handguard" - }, - { - "_id": "5b439b5686f77428bd137436", - "_tpl": "5b099a765acfc47a8607efe3", - "parentId": "5b439b5686f77428bd137432", - "slotId": "mod_barrel" - }, - { - "_id": "5b439b5686f77428bd137437", - "_tpl": "5b099b7d5acfc400186331e4", - "parentId": "5b439b5686f77428bd137436", - "slotId": "mod_muzzle" - }, - { - "_id": "5b439b5686f77428bd137438", - "_tpl": "5b0bc22d5acfc47a8607f085", - "parentId": "5b439b5686f77428bd137432", - "slotId": "mod_sight_rear" - }, - { - "_id": "5b439b5686f77428bd137439", - "_tpl": "5b099bb25acfc400186331e8", - "parentId": "5b439b5686f77428bd137432", - "slotId": "mod_reciever" - }, - { - "_id": "5b439b5686f77428bd13743a", - "_tpl": "5b099bf25acfc4001637e683", - "parentId": "5b439b5686f77428bd137432", - "slotId": "mod_stock" - }, - { - "_id": "5b439b5686f77428bd13743b", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "5b439b5686f77428bd13743a", - "slotId": "mod_stock_000" - }, - { - "_id": "5b439b5686f77428bd13743c", - "_tpl": "56eabf3bd2720b75698b4569", - "parentId": "5b439b5686f77428bd13743b", - "slotId": "mod_stock_000" - }, - { - "_id": "5b439b5686f77428bd13743d", - "_tpl": "58d2912286f7744e27117493", - "parentId": "5b439b5686f77428bd13743c", - "slotId": "mod_stock" - } - ], - "_encyclopedia": "5b0bbe4e5acfc40dc528a72d" - }, - "5c0c1ce886f77401c119d014": { - "_id": "5c0c1ce886f77401c119d014", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AK74_default", - "_parent": "5c0c1ce886f77401c119d015", - "_items": [ - { - "_id": "5c0c1ce886f77401c119d015", - "_tpl": "5bf3e03b0db834001d2c4a9c", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c0c1ce886f77401c119d016", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "5c0c1ce886f77401c119d015", - "slotId": "mod_gas_block" - }, - { - "_id": "5c0c1ce886f77401c119d017", - "_tpl": "5648b0744bdc2d363b8b4578", - "parentId": "5c0c1ce886f77401c119d016", - "slotId": "mod_handguard" - }, - { - "_id": "5c0c1ce886f77401c119d018", - "_tpl": "5649aa744bdc2ded0b8b457e", - "parentId": "5c0c1ce886f77401c119d015", - "slotId": "mod_muzzle" - }, - { - "_id": "5c0c1ce886f77401c119d019", - "_tpl": "57e3dba62459770f0c32322b", - "parentId": "5c0c1ce886f77401c119d015", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5c0c1ce886f77401c119d01a", - "_tpl": "5649af094bdc2df8348b4586", - "parentId": "5c0c1ce886f77401c119d015", - "slotId": "mod_reciever" - }, - { - "_id": "5c0c1ce886f77401c119d01b", - "_tpl": "5649b0544bdc2d1b2b8b458a", - "parentId": "5c0c1ce886f77401c119d015", - "slotId": "mod_sight_rear" - }, - { - "_id": "5c0c1ce886f77401c119d01c", - "_tpl": "5649b1c04bdc2d16268b457c", - "parentId": "5c0c1ce886f77401c119d015", - "slotId": "mod_stock" - }, - { - "_id": "5c0c1ce886f77401c119d01d", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "5c0c1ce886f77401c119d015", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5bf3e03b0db834001d2c4a9c" - }, - "59e8d2ab86f77407f03fc9c2": { - "_id": "59e8d2ab86f77407f03fc9c2", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AKM Default", - "_parent": "5a3d2b1686f774126c4d15f4", - "_items": [ - { - "_id": "5a3d2b1686f774126c4d15f4", - "_tpl": "59d6088586f774275f37482f" - }, - { - "_id": "5a3d2b1686f774126c4d15f5", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "5a3d2b1686f774126c4d15f4", - "slotId": "mod_gas_block" - }, - { - "_id": "5a3d2b1686f774126c4d15fc", - "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "5a3d2b1686f774126c4d15f5", - "slotId": "mod_handguard" - }, - { - "_id": "5a3d2b1686f774126c4d15f6", - "_tpl": "59d64fc686f774171b243fe2", - "parentId": "5a3d2b1686f774126c4d15f4", - "slotId": "mod_muzzle" - }, - { - "_id": "5a3d2b1686f774126c4d15f7", - "_tpl": "59e62cc886f77440d40b52a1", - "parentId": "5a3d2b1686f774126c4d15f4", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5a3d2b1686f774126c4d15f8", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "5a3d2b1686f774126c4d15f4", - "slotId": "mod_reciever" - }, - { - "_id": "5a3d2b1686f774126c4d15f9", - "_tpl": "59d650cf86f7741b846413a4", - "parentId": "5a3d2b1686f774126c4d15f4", - "slotId": "mod_sight_rear" - }, - { - "_id": "5a3d2b1686f774126c4d15fa", - "_tpl": "59d6514b86f774171a068a08", - "parentId": "5a3d2b1686f774126c4d15f4", - "slotId": "mod_stock" - }, - { - "_id": "5a3d2b1686f774126c4d15fb", - "_tpl": "59d625f086f774661516605d", - "parentId": "5a3d2b1686f774126c4d15f4", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "59d6088586f774275f37482f" - }, - "5a325c3686f7744273716c5b": { - "_id": "5a325c3686f7744273716c5b", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AKMN Default", - "_parent": "5a325c3686f7744273716c52", - "_items": [ - { - "_id": "5a325c3686f7744273716c52", - "_tpl": "5a0ec13bfcdbcb00165aa685" - }, - { - "_id": "5a325c3686f7744273716c53", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "5a325c3686f7744273716c52", - "slotId": "mod_gas_block" - }, - { - "_id": "5a325c3686f7744273716c5a", - "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "5a325c3686f7744273716c53", - "slotId": "mod_handguard" - }, - { - "_id": "5a325c3686f7744273716c54", - "_tpl": "59d64fc686f774171b243fe2", - "parentId": "5a325c3686f7744273716c52", - "slotId": "mod_muzzle" - }, - { - "_id": "5a325c3686f7744273716c55", - "_tpl": "59e62cc886f77440d40b52a1", - "parentId": "5a325c3686f7744273716c52", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5a325c3686f7744273716c56", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "5a325c3686f7744273716c52", - "slotId": "mod_reciever" - }, - { - "_id": "5a325c3686f7744273716c57", - "_tpl": "59d650cf86f7741b846413a4", - "parentId": "5a325c3686f7744273716c52", - "slotId": "mod_sight_rear" - }, - { - "_id": "5a325c3686f7744273716c58", - "_tpl": "59d6514b86f774171a068a08", - "parentId": "5a325c3686f7744273716c52", - "slotId": "mod_stock" - }, - { - "_id": "5a325c3686f7744273716c59", - "_tpl": "5a01c29586f77474660c694c", - "parentId": "5a325c3686f7744273716c52", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5a0ec13bfcdbcb00165aa685" - }, - "5a327f4a86f774766866140b": { - "_id": "5a327f4a86f774766866140b", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AKMS Default", - "_parent": "5a327f4a86f7747668661402", - "_items": [ - { - "_id": "5a327f4a86f7747668661402", - "_tpl": "59ff346386f77477562ff5e2" - }, - { - "_id": "5a327f4a86f7747668661403", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "5a327f4a86f7747668661402", - "slotId": "mod_gas_block" - }, - { - "_id": "5a327f4a86f774766866140a", - "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "5a327f4a86f7747668661403", - "slotId": "mod_handguard" - }, - { - "_id": "5a327f4a86f7747668661404", - "_tpl": "59d64fc686f774171b243fe2", - "parentId": "5a327f4a86f7747668661402", - "slotId": "mod_muzzle" - }, - { - "_id": "5a327f4a86f7747668661405", - "_tpl": "5a0071d486f77404e23a12b2", - "parentId": "5a327f4a86f7747668661402", - "slotId": "mod_pistol_grip_akms" - }, - { - "_id": "5a327f4a86f7747668661406", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "5a327f4a86f7747668661402", - "slotId": "mod_reciever" - }, - { - "_id": "5a327f4a86f7747668661407", - "_tpl": "59d650cf86f7741b846413a4", - "parentId": "5a327f4a86f7747668661402", - "slotId": "mod_sight_rear" - }, - { - "_id": "5a327f4a86f7747668661408", - "_tpl": "59ff3b6a86f77477562ff5ed", - "parentId": "5a327f4a86f7747668661402", - "slotId": "mod_stock_akms" - }, - { - "_id": "5a327f4a86f7747668661409", - "_tpl": "5a0060fc86f7745793204432", - "parentId": "5a327f4a86f7747668661402", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "59ff346386f77477562ff5e2" - }, - "5b83f23a86f7746d3d190a73": { - "_id": "5b83f23a86f7746d3d190a73", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "Belgian_30_para_stock", - "_parent": "5b83f23a86f7746d3d190a7d", - "_items": [ - { - "_id": "5b83f23a86f7746d3d190a7d", - "_tpl": "5b0bbe4e5acfc40dc528a72d" - }, - { - "_id": "5b83f23a86f7746d3d190a7e", - "_tpl": "5b7d678a5acfc4001a5c4022", - "parentId": "5b83f23a86f7746d3d190a7d", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5b83f23a86f7746d3d190a7f", - "_tpl": "5b7bef5d5acfc43bca7067a3", - "parentId": "5b83f23a86f7746d3d190a7d", - "slotId": "mod_magazine" - }, - { - "_id": "5b83f23a86f7746d3d190a80", - "_tpl": "5b7d671b5acfc43d82528ddd", - "parentId": "5b83f23a86f7746d3d190a7d", - "slotId": "mod_handguard" - }, - { - "_id": "5b83f23a86f7746d3d190a81", - "_tpl": "5b7be1265acfc400161d0798", - "parentId": "5b83f23a86f7746d3d190a7d", - "slotId": "mod_barrel" - }, - { - "_id": "5b83f23a86f7746d3d190a82", - "_tpl": "5b7d68af5acfc400170e30c3", - "parentId": "5b83f23a86f7746d3d190a81", - "slotId": "mod_muzzle" - }, - { - "_id": "5b83f23a86f7746d3d190a83", - "_tpl": "5b0bc22d5acfc47a8607f085", - "parentId": "5b83f23a86f7746d3d190a7d", - "slotId": "mod_sight_rear" - }, - { - "_id": "5b83f23a86f7746d3d190a84", - "_tpl": "5b7d6c105acfc40015109a5f", - "parentId": "5b83f23a86f7746d3d190a7d", - "slotId": "mod_reciever" - }, - { - "_id": "5b83f23a86f7746d3d190a85", - "_tpl": "5b7d63cf5acfc4001876c8df", - "parentId": "5b83f23a86f7746d3d190a7d", - "slotId": "mod_stock" - } - ] - }, - "6193e590069d61205d490dd8": { - "_id": "6193e590069d61205d490dd8", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "G28 DEFAULT", - "_parent": "6193e590069d61205d490dda", - "_items": [ - { - "_id": "6193e590069d61205d490dda", - "_tpl": "6176aca650224f204c1da3fb", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6193e590069d61205d490ddb", - "_tpl": "6193dcd0f8ee7e52e4210a28", - "parentId": "6193e590069d61205d490dda", - "slotId": "mod_pistol_grip" - }, - { - "_id": "6193e590069d61205d490ddc", - "_tpl": "617131a4568c120fdd29482d", - "parentId": "6193e590069d61205d490dda", - "slotId": "mod_magazine" - }, - { - "_id": "6193e590069d61205d490ddd", - "_tpl": "617153016c780c1e710c9a2f", - "parentId": "6193e590069d61205d490dda", - "slotId": "mod_stock" - }, - { - "_id": "6193e590069d61205d490dde", - "_tpl": "617155ee50224f204c1da3cd", - "parentId": "6193e590069d61205d490ddd", - "slotId": "mod_stock_000" - }, - { - "_id": "6193e590069d61205d490ddf", - "_tpl": "61715e7e67085e45ef140b33", - "parentId": "6193e590069d61205d490dde", - "slotId": "mod_stock_000" - }, - { - "_id": "6193e590069d61205d490de0", - "_tpl": "61713a8fd92c473c770214a4", - "parentId": "6193e590069d61205d490dda", - "slotId": "mod_reciever" - }, - { - "_id": "6193e590069d61205d490de1", - "_tpl": "61713cc4d8e3106d9806c109", - "parentId": "6193e590069d61205d490de0", - "slotId": "mod_scope" - }, - { - "_id": "6193e590069d61205d490de2", - "_tpl": "61714eec290d254f5e6b2ffc", - "parentId": "6193e590069d61205d490de1", - "slotId": "mod_scope_000" - }, - { - "_id": "6193e590069d61205d490de3", - "_tpl": "61714b2467085e45ef140b2c", - "parentId": "6193e590069d61205d490de1", - "slotId": "mod_scope_001" - }, - { - "_id": "6193e590069d61205d490de4", - "_tpl": "58d399e486f77442e0016fe7", - "parentId": "6193e590069d61205d490de3", - "slotId": "mod_scope" - }, - { - "_id": "6193e590069d61205d490de5", - "_tpl": "61702be9faa1272e431522c3", - "parentId": "6193e590069d61205d490de0", - "slotId": "mod_barrel" - }, - { - "_id": "6193e590069d61205d490de6", - "_tpl": "61713308d92c473c770214a0", - "parentId": "6193e590069d61205d490de5", - "slotId": "mod_muzzle" - }, - { - "_id": "6193e590069d61205d490de7", - "_tpl": "6171367e1cb55961fa0fdb36", - "parentId": "6193e590069d61205d490de6", - "slotId": "mod_muzzle" - }, - { - "_id": "6193e590069d61205d490de8", - "_tpl": "61702f1b67085e45ef140b26", - "parentId": "6193e590069d61205d490de5", - "slotId": "mod_gas_block" - }, - { - "_id": "6193e590069d61205d490de9", - "_tpl": "61703001d92c473c77021497", - "parentId": "6193e590069d61205d490de0", - "slotId": "mod_handguard" - }, - { - "_id": "6193e590069d61205d490dea", - "_tpl": "619386379fb0c665d5490dbe", - "parentId": "6193e590069d61205d490de9", - "slotId": "mod_foregrip" - }, - { - "_id": "6193e590069d61205d490deb", - "_tpl": "5bb20e49d4351e3bac1212de", - "parentId": "6193e590069d61205d490de0", - "slotId": "mod_sight_rear" - }, - { - "_id": "6193e590069d61205d490dec", - "_tpl": "61702d8a67085e45ef140b24", - "parentId": "6193e590069d61205d490dda", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "6176aca650224f204c1da3fb" - }, - "5a88acfb86f77457fd2c0d8f": { - "_id": "5a88acfb86f77457fd2c0d8f", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Glock base", - "_parent": "5a88595b86f774182259772e", - "_items": [ - { - "_id": "5a88595b86f774182259772e", - "_tpl": "5a7ae0c351dfba0017554310" - }, - { - "_id": "5a88595b86f7741822597735", - "_tpl": "5a6b5f868dc32e000a311389", - "parentId": "5a88595b86f774182259772e", - "slotId": "mod_barrel" - }, - { - "_id": "5a88595b86f7741822597736", - "_tpl": "5a6f5e048dc32e00094b97da", - "parentId": "5a88595b86f774182259772e", - "slotId": "mod_reciever" - }, - { - "_id": "5a88595b86f774182259774a", - "_tpl": "5a6f5d528dc32e00094b97d9", - "parentId": "5a88595b86f7741822597736", - "slotId": "mod_sight_rear" - }, - { - "_id": "5a88595b86f774182259774b", - "_tpl": "5a6f58f68dc32e000a311390", - "parentId": "5a88595b86f7741822597736", - "slotId": "mod_sight_front" - }, - { - "_id": "5a88595b86f7741822597737", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "5a88595b86f774182259772e", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5a7ae0c351dfba0017554310" - }, - "5b439b1f86f7744fd8059cbe": { - "_id": "5b439b1f86f7744fd8059cbe", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Glock_18C", - "_parent": "5b439b1f86f7744fd8059cc6", - "_items": [ - { - "_id": "5b439b1f86f7744fd8059cc6", - "_tpl": "5b1fa9b25acfc40018633c01" - }, - { - "_id": "5b439b1f86f7744fd8059cc7", - "_tpl": "5b1fa9ea5acfc40018633c0a", - "parentId": "5b439b1f86f7744fd8059cc6", - "slotId": "mod_barrel" - }, - { - "_id": "5b439b1f86f7744fd8059cc8", - "_tpl": "5b1faa0f5acfc40dc528aeb5", - "parentId": "5b439b1f86f7744fd8059cc6", - "slotId": "mod_reciever" - }, - { - "_id": "5b439b1f86f7744fd8059cc9", - "_tpl": "5a6f5d528dc32e00094b97d9", - "parentId": "5b439b1f86f7744fd8059cc8", - "slotId": "mod_sight_rear" - }, - { - "_id": "5b439b1f86f7744fd8059cca", - "_tpl": "5a6f58f68dc32e000a311390", - "parentId": "5b439b1f86f7744fd8059cc8", - "slotId": "mod_sight_front" - }, - { - "_id": "5b439b1f86f7744fd8059ccb", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "5b439b1f86f7744fd8059cc6", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5b1fa9b25acfc40018633c01" - }, - "5af08c4486f774223b094223": { - "_id": "5af08c4486f774223b094223", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "M1A_SASS_Chasis", - "_parent": "5af08c4486f774223b09422d", - "_items": [ - { - "_id": "5af08c4486f774223b09422d", - "_tpl": "5aafa857e5b5b00018480968" - }, - { - "_id": "5af08c4486f774223b09422e", - "_tpl": "5aaf8a0be5b5b00015693243", - "parentId": "5af08c4486f774223b09422d", - "slotId": "mod_magazine" - }, - { - "_id": "5af08c4486f774223b09422f", - "_tpl": "5ab372a310e891001717f0d8", - "parentId": "5af08c4486f774223b09422d", - "slotId": "mod_stock" - }, - { - "_id": "5af08c4486f774223b094230", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "5af08c4486f774223b09422f", - "slotId": "mod_pistolgrip" - }, - { - "_id": "5af08c4486f774223b094231", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "5af08c4486f774223b09422f", - "slotId": "mod_stock" - }, - { - "_id": "5af08c4486f774223b094232", - "_tpl": "58d2946386f774496974c37e", - "parentId": "5af08c4486f774223b094231", - "slotId": "mod_stock_000" - }, - { - "_id": "5af08c4486f774223b094233", - "_tpl": "5addbac75acfc400194dbc56", - "parentId": "5af08c4486f774223b09422d", - "slotId": "mod_barrel" - }, - { - "_id": "5af08c4486f774223b094234", - "_tpl": "5addbbb25acfc40015621bd9", - "parentId": "5af08c4486f774223b094233", - "slotId": "mod_muzzle" - } - ] - }, - "5d3f0bc986f7743cb332abdc": { - "_id": "5d3f0bc986f7743cb332abdc", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "M9A3 default", - "_parent": "5d3f0bc986f7743cb332abdf", - "_items": [ - { - "_id": "5d3f0bc986f7743cb332abdf", - "_tpl": "5cadc190ae921500103bb3b6", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5d3f0bc986f7743cb332abe0", - "_tpl": "5cadc1c6ae9215000f2775a4", - "parentId": "5d3f0bc986f7743cb332abdf", - "slotId": "mod_barrel" - }, - { - "_id": "5d3f0bc986f7743cb332abe1", - "_tpl": "5cadc390ae921500126a77f1", - "parentId": "5d3f0bc986f7743cb332abe0", - "slotId": "mod_muzzle" - }, - { - "_id": "5d3f0bc986f7743cb332abe2", - "_tpl": "5cadc431ae921500113bb8d5", - "parentId": "5d3f0bc986f7743cb332abdf", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5d3f0bc986f7743cb332abe3", - "_tpl": "5cadc55cae921500103bb3be", - "parentId": "5d3f0bc986f7743cb332abdf", - "slotId": "mod_reciever" - }, - { - "_id": "5d3f0bc986f7743cb332abe4", - "_tpl": "5cadd940ae9215051e1c2316", - "parentId": "5d3f0bc986f7743cb332abe3", - "slotId": "mod_sight_rear" - }, - { - "_id": "5d3f0bc986f7743cb332abe5", - "_tpl": "5cadd919ae921500126a77f3", - "parentId": "5d3f0bc986f7743cb332abe3", - "slotId": "mod_sight_front" - }, - { - "_id": "5d3f0bc986f7743cb332abe6", - "_tpl": "5cadc2e0ae9215051e1c21e7", - "parentId": "5d3f0bc986f7743cb332abdf", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5cadc190ae921500103bb3b6" - }, - "629792f0fd6eda47d6466fe8": { - "_id": "629792f0fd6eda47d6466fe8", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MP18_default", - "_parent": "629792f0fd6eda47d6466fe9", - "_items": [ - { - "_id": "629792f0fd6eda47d6466fe9", - "_tpl": "61f7c9e189e6fb1a5e3ea78d", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "629792f0fd6eda47d6466fea", - "_tpl": "61f4012adfc9f01a816adda1", - "parentId": "629792f0fd6eda47d6466fe9", - "slotId": "mod_barrel" - }, - { - "_id": "629792f0fd6eda47d6466feb", - "_tpl": "61f7b85367ddd414173fdb36", - "parentId": "629792f0fd6eda47d6466fea", - "slotId": "mod_handguard" - }, - { - "_id": "629792f0fd6eda47d6466fec", - "_tpl": "61f7b234ea4ab34f2f59c3ec", - "parentId": "629792f0fd6eda47d6466fe9", - "slotId": "mod_stock" - } - ], - "_encyclopedia": "61f7c9e189e6fb1a5e3ea78d" - }, - "5bdb3ac186f77405f232ad22": { - "_id": "5bdb3ac186f77405f232ad22", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MP7A2_def", - "_parent": "5bdb3ac186f77405f232ad29", - "_items": [ - { - "_id": "5bdb3ac186f77405f232ad29", - "_tpl": "5bd70322209c4d00d7167b8f" - }, - { - "_id": "5bdb3ac186f77405f232ad2a", - "_tpl": "5ba264f6d4351e0034777d52", - "parentId": "5bdb3ac186f77405f232ad29", - "slotId": "mod_magazine" - }, - { - "_id": "5bdb3ac186f77405f232ad2b", - "_tpl": "5ba26acdd4351e003562908e", - "parentId": "5bdb3ac186f77405f232ad29", - "slotId": "mod_muzzle" - }, - { - "_id": "5bdb3ac186f77405f232ad2c", - "_tpl": "5ba26b01d4351e0085325a51", - "parentId": "5bdb3ac186f77405f232ad29", - "slotId": "mod_sight_front" - }, - { - "_id": "5bdb3ac186f77405f232ad2d", - "_tpl": "5ba26b17d4351e00367f9bdd", - "parentId": "5bdb3ac186f77405f232ad29", - "slotId": "mod_sight_rear" - }, - { - "_id": "5bdb3ac186f77405f232ad2e", - "_tpl": "5bd704e7209c4d00d7167c31", - "parentId": "5bdb3ac186f77405f232ad29", - "slotId": "mod_stock" - } - ], - "_encyclopedia": "5bd70322209c4d00d7167b8f" - }, - "584149ad2459775a7726350e": { - "_id": "584149ad2459775a7726350e", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "PP-9 Klin Default", - "_parent": "5841427d24597752602fdcc7", - "_items": [ - { - "_id": "5841427d24597752602fdcc7", - "_tpl": "57f4c844245977379d5c14d1" - }, - { - "_id": "584149ad2459775a7726350d", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "5841427d24597752602fdcc7", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5841427d24597752602fdcf1", - "_tpl": "57d1519e24597714373db79d", - "parentId": "5841427d24597752602fdcc7", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "57f4c844245977379d5c14d1" - }, - "59ef247086f77439967a900a": { - "_id": "59ef247086f77439967a900a", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AKM VPO-209", - "_parent": "639bb5575b759c65a34764f6", - "_items": [ - { - "_id": "639bb5575b759c65a34764f6", - "_tpl": "59e6687d86f77411d949b251", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "639bb5575b759c65a34764f7", - "_tpl": "59e649f986f77411d949b246", - "parentId": "639bb5575b759c65a34764f6", - "slotId": "mod_gas_block" - }, - { - "_id": "639bb5575b759c65a34764f8", - "_tpl": "59e898ee86f77427614bd225", - "parentId": "639bb5575b759c65a34764f7", - "slotId": "mod_handguard" - }, - { - "_id": "639bb5575b759c65a34764f9", - "_tpl": "59e8a00d86f7742ad93b569c", - "parentId": "639bb5575b759c65a34764f6", - "slotId": "mod_muzzle" - }, - { - "_id": "639bb5575b759c65a34764fa", - "_tpl": "59e6318286f77444dd62c4cc", - "parentId": "639bb5575b759c65a34764f6", - "slotId": "mod_pistol_grip" - }, - { - "_id": "639bb5575b759c65a34764fb", - "_tpl": "59e6449086f7746c9f75e822", - "parentId": "639bb5575b759c65a34764f6", - "slotId": "mod_reciever" - }, - { - "_id": "639bb5575b759c65a34764fc", - "_tpl": "59e8977386f77415a553c453", - "parentId": "639bb5575b759c65a34764f6", - "slotId": "mod_sight_rear" - }, - { - "_id": "639bb5575b759c65a34764fd", - "_tpl": "59e89d0986f77427600d226e", - "parentId": "639bb5575b759c65a34764f6", - "slotId": "mod_stock" - }, - { - "_id": "639bb5575b759c65a34764fe", - "_tpl": "5b1fd4e35acfc40018633c39", - "parentId": "639bb5575b759c65a34764f6", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "59e6687d86f77411d949b251" - }, - "5ba3a3dfd4351e0032020190": { - "_id": "5ba3a3dfd4351e0032020190", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "AKMP", - "_parent": "5ba3a3dfd4351e0032020192", - "_items": [ - { - "_id": "5ba3a3dfd4351e0032020192", - "_tpl": "59d6088586f774275f37482f" - }, - { - "_id": "5ba3a3dfd4351e0032020193", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "5ba3a3dfd4351e0032020192", - "slotId": "mod_gas_block" - }, - { - "_id": "5ba3a3dfd4351e0032020194", - "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "5ba3a3dfd4351e0032020193", - "slotId": "mod_handguard" - }, - { - "_id": "5ba3a3dfd4351e0032020195", - "_tpl": "59d64fc686f774171b243fe2", - "parentId": "5ba3a3dfd4351e0032020192", - "slotId": "mod_muzzle" - }, - { - "_id": "5ba3a3dfd4351e0032020196", - "_tpl": "59e62cc886f77440d40b52a1", - "parentId": "5ba3a3dfd4351e0032020192", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5ba3a3dfd4351e0032020197", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "5ba3a3dfd4351e0032020192", - "slotId": "mod_reciever" - }, - { - "_id": "5ba3a3dfd4351e0032020198", - "_tpl": "59d650cf86f7741b846413a4", - "parentId": "5ba3a3dfd4351e0032020192", - "slotId": "mod_sight_rear" - }, - { - "_id": "5ba3a3dfd4351e0032020199", - "_tpl": "5a0ed824fcdbcb0176308b0d", - "parentId": "5ba3a3dfd4351e0032020198", - "slotId": "mod_sight_rear" - }, - { - "_id": "5ba3a3dfd4351e003202019a", - "_tpl": "59d6514b86f774171a068a08", - "parentId": "5ba3a3dfd4351e0032020192", - "slotId": "mod_stock" - }, - { - "_id": "5ba3a3dfd4351e003202019b", - "_tpl": "59d625f086f774661516605d", - "parentId": "5ba3a3dfd4351e0032020192", - "slotId": "mod_magazine" - }, - { - "_id": "5ba3a3dfd4351e003202019c", - "_tpl": "5a0f096dfcdbcb0176308b15", - "parentId": "5ba3a3dfd4351e0032020192", - "slotId": "mod_sight_front" - } - ] - }, - "584148a524597759eb357a44": { - "_id": "584148a524597759eb357a44", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MP-443 Default", - "_parent": "584148a524597759eb357a40", - "_items": [ - { - "_id": "584148a524597759eb357a40", - "_tpl": "576a581d2459771e7b1bc4f1" - }, - { - "_id": "584148a524597759eb357a41", - "_tpl": "576a5ed62459771e9c2096cb", - "parentId": "584148a524597759eb357a40", - "slotId": "mod_magazine" - }, - { - "_id": "584148a524597759eb357a42", - "_tpl": "576a63cd2459771e796e0e11", - "parentId": "584148a524597759eb357a40", - "slotId": "mod_pistol_grip" - } - ], - "_encyclopedia": "576a581d2459771e7b1bc4f1" - }, - "618aafe23c1dcf601e0327db": { - "_id": "618aafe23c1dcf601e0327db", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "MP5_SilentOps", - "_parent": "618aafe23c1dcf601e0327e8", - "_items": [ - { - "_id": "618aafe23c1dcf601e0327e8", - "_tpl": "5926bb2186f7744b1c6c6e60", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "618aafe23c1dcf601e0327e9", - "_tpl": "5926c3b286f774640d189b6b", - "parentId": "618aafe23c1dcf601e0327e8", - "slotId": "mod_magazine" - }, - { - "_id": "618aafe23c1dcf601e0327ea", - "_tpl": "5926c0df86f77462f647f764", - "parentId": "618aafe23c1dcf601e0327e8", - "slotId": "mod_reciever" - }, - { - "_id": "618aafe23c1dcf601e0327eb", - "_tpl": "5d19cd96d7ad1a4a992c9f52", - "parentId": "618aafe23c1dcf601e0327ea", - "slotId": "mod_handguard" - }, - { - "_id": "618aafe23c1dcf601e0327ec", - "_tpl": "558032614bdc2de7118b4585", - "parentId": "618aafe23c1dcf601e0327eb", - "slotId": "mod_foregrip" - }, - { - "_id": "618aafe23c1dcf601e0327ed", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "618aafe23c1dcf601e0327ea", - "slotId": "mod_sight_rear" - }, - { - "_id": "618aafe23c1dcf601e0327ee", - "_tpl": "5926d40686f7740f152b6b7e", - "parentId": "618aafe23c1dcf601e0327ea", - "slotId": "mod_stock" - }, - { - "_id": "618aafe23c1dcf601e0327ef", - "_tpl": "5c0000c00db834001a6697fc", - "parentId": "618aafe23c1dcf601e0327ea", - "slotId": "mod_muzzle" - }, - { - "_id": "618aafe23c1dcf601e0327f0", - "_tpl": "5c6165902e22160010261b28", - "parentId": "618aafe23c1dcf601e0327ef", - "slotId": "mod_muzzle" - }, - { - "_id": "618aafe23c1dcf601e0327f1", - "_tpl": "5926dad986f7741f82604363", - "parentId": "618aafe23c1dcf601e0327ea", - "slotId": "mod_mount" - }, - { - "_id": "618aafe23c1dcf601e0327f2", - "_tpl": "591c4efa86f7741030027726", - "parentId": "618aafe23c1dcf601e0327f1", - "slotId": "mod_scope" - }, - { - "_id": "618aafe23c1dcf601e0327f3", - "_tpl": "5926c32286f774616e42de99", - "parentId": "618aafe23c1dcf601e0327e8", - "slotId": "mod_charge" - } - ] - }, - "59e8d2b386f77445830dd299": { - "_id": "59e8d2b386f77445830dd299", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "DVL Silenced", - "_parent": "5a3a85e886f774745637d909", - "_items": [ - { - "_id": "5a3a85e886f774745637d909", - "_tpl": "588892092459774ac91d4b11" - }, - { - "_id": "5a3a85e886f774745637d90a", - "_tpl": "5888988e24597752fe43a6fa", - "parentId": "5a3a85e886f774745637d909", - "slotId": "mod_magazine" - }, - { - "_id": "5a3a85e886f774745637d90b", - "_tpl": "5888945a2459774bf43ba385", - "parentId": "5a3a85e886f774745637d909", - "slotId": "mod_barrel" - }, - { - "_id": "5a3a85e886f774745637d90e", - "_tpl": "58889c7324597754281f9439", - "parentId": "5a3a85e886f774745637d90b", - "slotId": "mod_muzzle" - }, - { - "_id": "5a3a85e886f774745637d90f", - "_tpl": "5888961624597754281f93f3", - "parentId": "5a3a85e886f774745637d90b", - "slotId": "mod_bipod" - }, - { - "_id": "5a3a85e886f774745637d90c", - "_tpl": "57c55f172459772d27602381", - "parentId": "5a3a85e886f774745637d909", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5a3a85e886f774745637d90d", - "_tpl": "58889d0c2459775bc215d981", - "parentId": "5a3a85e886f774745637d909", - "slotId": "mod_stock" - } - ] - }, - "6193e5f3aa34a3034236bdb3": { - "_id": "6193e5f3aa34a3034236bdb3", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "G28 Patrol", - "_parent": "6193e5f3aa34a3034236bdb5", - "_items": [ - { - "_id": "6193e5f3aa34a3034236bdb5", - "_tpl": "6176aca650224f204c1da3fb", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6193e5f3aa34a3034236bdb6", - "_tpl": "6193dcd0f8ee7e52e4210a28", - "parentId": "6193e5f3aa34a3034236bdb5", - "slotId": "mod_pistol_grip" - }, - { - "_id": "6193e5f3aa34a3034236bdb7", - "_tpl": "617131a4568c120fdd29482d", - "parentId": "6193e5f3aa34a3034236bdb5", - "slotId": "mod_magazine" - }, - { - "_id": "6193e5f3aa34a3034236bdb8", - "_tpl": "617153016c780c1e710c9a2f", - "parentId": "6193e5f3aa34a3034236bdb5", - "slotId": "mod_stock" - }, - { - "_id": "6193e5f3aa34a3034236bdb9", - "_tpl": "617154aa1cb55961fa0fdb3b", - "parentId": "6193e5f3aa34a3034236bdb8", - "slotId": "mod_stock_000" - }, - { - "_id": "6193e5f3aa34a3034236bdba", - "_tpl": "61713a8fd92c473c770214a4", - "parentId": "6193e5f3aa34a3034236bdb5", - "slotId": "mod_reciever" - }, - { - "_id": "6193e5f3aa34a3034236bdbb", - "_tpl": "6171407e50224f204c1da3c5", - "parentId": "6193e5f3aa34a3034236bdba", - "slotId": "mod_scope" - }, - { - "_id": "6193e5f3aa34a3034236bdbc", - "_tpl": "617151c1d92c473c770214ab", - "parentId": "6193e5f3aa34a3034236bdbb", - "slotId": "mod_scope_000" - }, - { - "_id": "6193e5f3aa34a3034236bdbd", - "_tpl": "61702be9faa1272e431522c3", - "parentId": "6193e5f3aa34a3034236bdba", - "slotId": "mod_barrel" - }, - { - "_id": "6193e5f3aa34a3034236bdbe", - "_tpl": "61713308d92c473c770214a0", - "parentId": "6193e5f3aa34a3034236bdbd", - "slotId": "mod_muzzle" - }, - { - "_id": "6193e5f3aa34a3034236bdbf", - "_tpl": "61702f1b67085e45ef140b26", - "parentId": "6193e5f3aa34a3034236bdbd", - "slotId": "mod_gas_block" - }, - { - "_id": "6193e5f3aa34a3034236bdc0", - "_tpl": "61712eae6c780c1e710c9a1d", - "parentId": "6193e5f3aa34a3034236bdba", - "slotId": "mod_handguard" - }, - { - "_id": "6193e5f3aa34a3034236bdc1", - "_tpl": "5bb20e49d4351e3bac1212de", - "parentId": "6193e5f3aa34a3034236bdba", - "slotId": "mod_sight_rear" - }, - { - "_id": "6193e5f3aa34a3034236bdc2", - "_tpl": "61702d8a67085e45ef140b24", - "parentId": "6193e5f3aa34a3034236bdb5", - "slotId": "mod_charge" - } - ] - }, - "5a43a86d86f7746c9d7395e8": { - "_id": "5a43a86d86f7746c9d7395e8", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "P226 eft book", - "_parent": "5a43a86d86f7746c9d7395dd", - "_items": [ - { - "_id": "5a43a86d86f7746c9d7395dd", - "_tpl": "56d59856d2720bd8418b456a" - }, - { - "_id": "5a43a86d86f7746c9d7395de", - "_tpl": "587de4282459771bca0ec90b", - "parentId": "5a43a86d86f7746c9d7395dd", - "slotId": "mod_barrel" - }, - { - "_id": "5a43a86d86f7746c9d7395e2", - "_tpl": "5a33a8ebc4a282000c5a950d", - "parentId": "5a43a86d86f7746c9d7395de", - "slotId": "mod_muzzle" - }, - { - "_id": "5a43a86d86f7746c9d7395e6", - "_tpl": "5a33b2c9c4a282000c5a9511", - "parentId": "5a43a86d86f7746c9d7395e2", - "slotId": "mod_scope" - }, - { - "_id": "5a43a86d86f7746c9d7395e7", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "5a43a86d86f7746c9d7395e6", - "slotId": "mod_scope" - }, - { - "_id": "5a43a86d86f7746c9d7395df", - "_tpl": "56d5a2bbd2720bb8418b456a", - "parentId": "5a43a86d86f7746c9d7395dd", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5a43a86d86f7746c9d7395e0", - "_tpl": "56d5a407d2720bb3418b456b", - "parentId": "5a43a86d86f7746c9d7395dd", - "slotId": "mod_reciever" - }, - { - "_id": "5a43a86d86f7746c9d7395e3", - "_tpl": "56d5a77ed2720b90418b4568", - "parentId": "5a43a86d86f7746c9d7395e0", - "slotId": "mod_sight_rear" - }, - { - "_id": "5a43a86d86f7746c9d7395e4", - "_tpl": "56d5a661d2720bd8418b456b", - "parentId": "5a43a86d86f7746c9d7395e0", - "slotId": "mod_sight_front" - }, - { - "_id": "5a43a86d86f7746c9d7395e1", - "_tpl": "56d59948d2720bb7418b4582", - "parentId": "5a43a86d86f7746c9d7395dd", - "slotId": "mod_magazine" - }, - { - "_id": "5a43a86d86f7746c9d7395e5", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "5a43a86d86f7746c9d7395e1", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 15 - } - } - ] - }, - "584149242459775a7726350a": { - "_id": "584149242459775a7726350a", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "P226R Default", - "_parent": "584149242459775a77263502", - "_items": [ - { - "_id": "584149242459775a77263502", - "_tpl": "56d59856d2720bd8418b456a" - }, - { - "_id": "584149242459775a77263503", - "_tpl": "56d5a1f7d2720bb3418b456a", - "parentId": "584149242459775a77263502", - "slotId": "mod_barrel" - }, - { - "_id": "584149242459775a77263504", - "_tpl": "56d5a2bbd2720bb8418b456a", - "parentId": "584149242459775a77263502", - "slotId": "mod_pistol_grip" - }, - { - "_id": "584149242459775a77263505", - "_tpl": "56d5a407d2720bb3418b456b", - "parentId": "584149242459775a77263502", - "slotId": "mod_reciever" - }, - { - "_id": "584149242459775a77263507", - "_tpl": "56d5a77ed2720b90418b4568", - "parentId": "584149242459775a77263505", - "slotId": "mod_sight_rear" - }, - { - "_id": "584149242459775a77263508", - "_tpl": "56d5a661d2720bd8418b456b", - "parentId": "584149242459775a77263505", - "slotId": "mod_sight_front" - }, - { - "_id": "584149242459775a77263506", - "_tpl": "56d59948d2720bb7418b4582", - "parentId": "584149242459775a77263502", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "56d59856d2720bd8418b456a" - }, - "584149ea2459775a6c55e940": { - "_id": "584149ea2459775a6c55e940", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "PP-91-01 Kedr-B Default", - "_parent": "5841427d24597752602fdcc6", - "_items": [ - { - "_id": "5841427d24597752602fdcc6", - "_tpl": "57f3c6bd24597738e730fa2f" - }, - { - "_id": "5841427d24597752602fdcee", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "5841427d24597752602fdcc6", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5841427d24597752602fdcef", - "_tpl": "57f3c7e024597738ea4ba286", - "parentId": "5841427d24597752602fdcc6", - "slotId": "mod_muzzle" - }, - { - "_id": "5841427d24597752602fdd05", - "_tpl": "57f3c8cc2459773ec4480328", - "parentId": "5841427d24597752602fdcef", - "slotId": "mod_muzzle" - }, - { - "_id": "5841427d24597752602fdcf0", - "_tpl": "57d1519e24597714373db79d", - "parentId": "5841427d24597752602fdcc6", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "57f3c6bd24597738e730fa2f" - }, - "6197d1f3585c515a052ad88f": { - "_id": "6197d1f3585c515a052ad88f", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MP-43 DEFAULT", - "_parent": "6197d1f3585c515a052ad893", - "_items": [ - { - "_id": "6197d1f3585c515a052ad893", - "_tpl": "5580223e4bdc2d1c128b457f", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6197d1f3585c515a052ad894", - "_tpl": "55d447bb4bdc2d892f8b456f", - "parentId": "6197d1f3585c515a052ad893", - "slotId": "mod_barrel" - }, - { - "_id": "6197d1f3585c515a052ad895", - "_tpl": "611a31ce5b7ffe001b4649d1", - "parentId": "6197d1f3585c515a052ad893", - "slotId": "mod_stock" - } - ], - "_encyclopedia": "5580223e4bdc2d1c128b457f" - }, - "5a3a85af86f774745637d46c": { - "_id": "5a3a85af86f774745637d46c", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "RSASS", - "_parent": "639bb52dad9d7e3216668f6d", - "_items": [ - { - "_id": "639bb52dad9d7e3216668f6d", - "_tpl": "5a367e5dc4a282000e49738f", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "639bb52dad9d7e3216668f6e", - "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "639bb52dad9d7e3216668f6d", - "slotId": "mod_pistol_grip" - }, - { - "_id": "639bb52dad9d7e3216668f6f", - "_tpl": "5a3501acc4a282000d72293a", - "parentId": "639bb52dad9d7e3216668f6d", - "slotId": "mod_magazine" - }, - { - "_id": "639bb52dad9d7e3216668f70", - "_tpl": "5a33ca0fc4a282000d72292f", - "parentId": "639bb52dad9d7e3216668f6d", - "slotId": "mod_stock" - }, - { - "_id": "639bb52dad9d7e3216668f71", - "_tpl": "5a33cae9c4a28232980eb086", - "parentId": "639bb52dad9d7e3216668f70", - "slotId": "mod_stock" - }, - { - "_id": "639bb52dad9d7e3216668f72", - "_tpl": "5a329052c4a28200741e22d3", - "parentId": "639bb52dad9d7e3216668f6d", - "slotId": "mod_handguard" - }, - { - "_id": "639bb52dad9d7e3216668f73", - "_tpl": "5a34fae7c4a2826c6e06d760", - "parentId": "639bb52dad9d7e3216668f6d", - "slotId": "mod_barrel" - }, - { - "_id": "639bb52dad9d7e3216668f74", - "_tpl": "5a34fd2bc4a282329a73b4c5", - "parentId": "639bb52dad9d7e3216668f73", - "slotId": "mod_muzzle" - }, - { - "_id": "639bb52dad9d7e3216668f75", - "_tpl": "5a34fbadc4a28200741e230a", - "parentId": "639bb52dad9d7e3216668f73", - "slotId": "mod_gas_block" - } - ], - "_encyclopedia": "5a367e5dc4a282000e49738f" - }, - "618aaeb931ddad66c15eb7e9": { - "_id": "618aaeb931ddad66c15eb7e9", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "AS_Val_Cobra", - "_parent": "618ab12c34aa2e47480fba3c", - "_items": [ - { - "_id": "618ab12c34aa2e47480fba3c", - "_tpl": "57c44b372459772d2b39b8ce", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "618ab12c34aa2e47480fba3d", - "_tpl": "57c44dd02459772d2e0ae249", - "parentId": "618ab12c34aa2e47480fba3c", - "slotId": "mod_muzzle" - }, - { - "_id": "618ab12c34aa2e47480fba3e", - "_tpl": "57c44e7b2459772d28133248", - "parentId": "618ab12c34aa2e47480fba3d", - "slotId": "mod_sight_rear" - }, - { - "_id": "618ab12c34aa2e47480fba3f", - "_tpl": "57c44f4f2459772d2c627113", - "parentId": "618ab12c34aa2e47480fba3c", - "slotId": "mod_reciever" - }, - { - "_id": "618ab12c34aa2e47480fba40", - "_tpl": "57838f9f2459774a150289a0", - "parentId": "618ab12c34aa2e47480fba3c", - "slotId": "mod_magazine" - }, - { - "_id": "618ab12c34aa2e47480fba41", - "_tpl": "57c44fa82459772d2d75e415", - "parentId": "618ab12c34aa2e47480fba3c", - "slotId": "mod_pistol_grip" - }, - { - "_id": "618ab12c34aa2e47480fba42", - "_tpl": "57c450252459772d28133253", - "parentId": "618ab12c34aa2e47480fba3c", - "slotId": "mod_stock" - }, - { - "_id": "618ab12c34aa2e47480fba43", - "_tpl": "5e569a2e56edd02abe09f280", - "parentId": "618ab12c34aa2e47480fba3c", - "slotId": "mod_mount_004" - }, - { - "_id": "618ab12c34aa2e47480fba44", - "_tpl": "591c4efa86f7741030027726", - "parentId": "618ab12c34aa2e47480fba43", - "slotId": "mod_scope" - } - ] - }, - "5e035eb586f774756048ec12": { - "_id": "5e035eb586f774756048ec12", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "DTMDR308_default", - "_parent": "5e035eb586f774756048ec19", - "_items": [ - { - "_id": "5e035eb586f774756048ec19", - "_tpl": "5dcbd56fdbd3d91b3e5468d5", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5e035eb586f774756048ec1a", - "_tpl": "5dcbd6dddbd3d91b3e5468de", - "parentId": "5e035eb586f774756048ec19", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5e035eb586f774756048ec1b", - "_tpl": "5a3501acc4a282000d72293a", - "parentId": "5e035eb586f774756048ec19", - "slotId": "mod_magazine" - }, - { - "_id": "5e035eb586f774756048ec1c", - "_tpl": "5dcbd6b46ec07c0c4347a564", - "parentId": "5e035eb586f774756048ec19", - "slotId": "mod_handguard" - }, - { - "_id": "5e035eb586f774756048ec1d", - "_tpl": "5dcbe9431e1f4616d354987e", - "parentId": "5e035eb586f774756048ec19", - "slotId": "mod_barrel" - }, - { - "_id": "5e035eb586f774756048ec1e", - "_tpl": "5dcbe965e4ed22586443a79d", - "parentId": "5e035eb586f774756048ec1d", - "slotId": "mod_muzzle" - } - ], - "_encyclopedia": "5dcbd56fdbd3d91b3e5468d5" - }, - "629775539f1b474e440c45c1": { - "_id": "629775539f1b474e440c45c1", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "G36_KV1", - "_parent": "629775539f1b474e440c45c7", - "_items": [ - { - "_id": "629775539f1b474e440c45c7", - "_tpl": "623063e994fc3f7b302a9696", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "629775539f1b474e440c45c8", - "_tpl": "62307b7b10d2321fa8741921", - "parentId": "629775539f1b474e440c45c7", - "slotId": "mod_magazine" - }, - { - "_id": "629775539f1b474e440c45c9", - "_tpl": "622f14e899892a7f9e08f6c5", - "parentId": "629775539f1b474e440c45c7", - "slotId": "mod_stock" - }, - { - "_id": "629775539f1b474e440c45ca", - "_tpl": "622b3858034a3e17ad0b81f5", - "parentId": "629775539f1b474e440c45c7", - "slotId": "mod_barrel" - }, - { - "_id": "629775539f1b474e440c45cb", - "_tpl": "622f128cec80d870d349b4e8", - "parentId": "629775539f1b474e440c45ca", - "slotId": "mod_muzzle" - }, - { - "_id": "629775539f1b474e440c45cc", - "_tpl": "622b327b267a1b13a44abea3", - "parentId": "629775539f1b474e440c45ca", - "slotId": "mod_gas_block" - }, - { - "_id": "629775539f1b474e440c45cd", - "_tpl": "62386b7153757417e93a4e9f", - "parentId": "629775539f1b474e440c45c7", - "slotId": "mod_handguard" - }, - { - "_id": "629775539f1b474e440c45ce", - "_tpl": "622f16a1a5958f63c67f1737", - "parentId": "629775539f1b474e440c45cd", - "slotId": "mod_tactical" - }, - { - "_id": "629775539f1b474e440c45cf", - "_tpl": "622f02437762f55aaa68ac85", - "parentId": "629775539f1b474e440c45c7", - "slotId": "mod_mount" - }, - { - "_id": "629775539f1b474e440c45d0", - "_tpl": "622b4d7df9cfc87d675d2ded", - "parentId": "629775539f1b474e440c45c7", - "slotId": "mod_scope" - }, - { - "_id": "629775539f1b474e440c45d1", - "_tpl": "622efdf8ec80d870d349b4e5", - "parentId": "629775539f1b474e440c45d0", - "slotId": "mod_scope" - } - ] - }, - "5f6771214ef1ca4f4e1b8a06": { - "_id": "5f6771214ef1ca4f4e1b8a06", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "KS23M_long_default", - "_parent": "5f6771214ef1ca4f4e1b8a07", - "_items": [ - { - "_id": "5f6771214ef1ca4f4e1b8a07", - "_tpl": "5e848cc2988a8701445df1e8", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5f6771214ef1ca4f4e1b8a08", - "_tpl": "5e848d2eea0a7c419c2f9bfd", - "parentId": "5f6771214ef1ca4f4e1b8a07", - "slotId": "mod_barrel" - }, - { - "_id": "5f6771214ef1ca4f4e1b8a09", - "_tpl": "5e848d51e4dbc5266a4ec63b", - "parentId": "5f6771214ef1ca4f4e1b8a07", - "slotId": "mod_handguard" - }, - { - "_id": "5f6771214ef1ca4f4e1b8a0a", - "_tpl": "5f647d9f8499b57dc40ddb93", - "parentId": "5f6771214ef1ca4f4e1b8a07", - "slotId": "mod_magazine" - }, - { - "_id": "5f6771214ef1ca4f4e1b8a0b", - "_tpl": "5e848db4681bea2ada00daa9", - "parentId": "5f6771214ef1ca4f4e1b8a07", - "slotId": "mod_stock" - } - ], - "_encyclopedia": "5e848cc2988a8701445df1e8" - }, - "5af08cc686f77424a61595f2": { - "_id": "5af08cc686f77424a61595f2", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "M4A1_Sopmod_Block_1", - "_parent": "6398705eb0cbbf65cc6346ed", - "_items": [ - { - "_id": "6398705eb0cbbf65cc6346ed", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "6398705eb0cbbf65cc6346ee", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "6398705eb0cbbf65cc6346ed", - "slotId": "mod_pistol_grip" - }, - { - "_id": "6398705eb0cbbf65cc6346ef", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "6398705eb0cbbf65cc6346ed", - "slotId": "mod_magazine" - }, - { - "_id": "6398705eb0cbbf65cc6346f0", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "6398705eb0cbbf65cc6346ed", - "slotId": "mod_reciever" - }, - { - "_id": "6398705eb0cbbf65cc6346f1", - "_tpl": "55d3632e4bdc2d972f8b4569", - "parentId": "6398705eb0cbbf65cc6346f0", - "slotId": "mod_barrel" - }, - { - "_id": "6398705eb0cbbf65cc6346f2", - "_tpl": "544a38634bdc2d58388b4568", - "parentId": "6398705eb0cbbf65cc6346f1", - "slotId": "mod_muzzle" - }, - { - "_id": "6398705eb0cbbf65cc6346f3", - "_tpl": "5ae30e795acfc408fb139a0b", - "parentId": "6398705eb0cbbf65cc6346f1", - "slotId": "mod_gas_block" - }, - { - "_id": "6398705eb0cbbf65cc6346f4", - "_tpl": "55d459824bdc2d892f8b4573", - "parentId": "6398705eb0cbbf65cc6346f0", - "slotId": "mod_handguard" - }, - { - "_id": "6398705eb0cbbf65cc6346f5", - "_tpl": "637f57b78d137b27f70c496a", - "parentId": "6398705eb0cbbf65cc6346f4", - "slotId": "mod_handguard" - }, - { - "_id": "6398705eb0cbbf65cc6346f6", - "_tpl": "55d5f46a4bdc2d1b198b4567", - "parentId": "6398705eb0cbbf65cc6346f0", - "slotId": "mod_sight_rear" - }, - { - "_id": "6398705eb0cbbf65cc6346f7", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "6398705eb0cbbf65cc6346ed", - "slotId": "mod_stock" - }, - { - "_id": "6398705eb0cbbf65cc6346f8", - "_tpl": "5ae30c9a5acfc408fb139a03", - "parentId": "6398705eb0cbbf65cc6346f7", - "slotId": "mod_stock_000" - }, - { - "_id": "6398705eb0cbbf65cc6346f9", - "_tpl": "55d44fd14bdc2d962f8b456e", - "parentId": "6398705eb0cbbf65cc6346ed", - "slotId": "mod_charge" - } - ] - }, - "5ebbfe23ba87a5065a00a563": { - "_id": "5ebbfe23ba87a5065a00a563", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "M4A1_USASOC1", - "_parent": "5ebbfe23ba87a5065a00a564", - "_items": [ - { - "_id": "5ebbfe23ba87a5065a00a564", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5ebbfe23ba87a5065a00a565", - "_tpl": "5d15cf3bd7ad1a67e71518b2", - "parentId": "5ebbfe23ba87a5065a00a564", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5ebbfe23ba87a5065a00a566", - "_tpl": "5d1340cad7ad1a0b0b249869", - "parentId": "5ebbfe23ba87a5065a00a564", - "slotId": "mod_magazine" - }, - { - "_id": "5ebbfe23ba87a5065a00a567", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "5ebbfe23ba87a5065a00a564", - "slotId": "mod_reciever" - }, - { - "_id": "5ebbfe23ba87a5065a00a568", - "_tpl": "5c7d55f52e221644f31bff6a", - "parentId": "5ebbfe23ba87a5065a00a567", - "slotId": "mod_scope" - }, - { - "_id": "5ebbfe23ba87a5065a00a569", - "_tpl": "5c7d560b2e22160bc12c6139", - "parentId": "5ebbfe23ba87a5065a00a568", - "slotId": "mod_scope" - }, - { - "_id": "5ebbfe23ba87a5065a00a56a", - "_tpl": "5c7d55de2e221644f31bff68", - "parentId": "5ebbfe23ba87a5065a00a569", - "slotId": "mod_scope" - }, - { - "_id": "5ebbfe23ba87a5065a00a56b", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "5ebbfe23ba87a5065a00a567", - "slotId": "mod_barrel" - }, - { - "_id": "5ebbfe23ba87a5065a00a56c", - "_tpl": "5ea172e498dacb342978818e", - "parentId": "5ebbfe23ba87a5065a00a56b", - "slotId": "mod_muzzle" - }, - { - "_id": "5ebbfe23ba87a5065a00a56d", - "_tpl": "5ea17bbc09aa976f2e7a51cd", - "parentId": "5ebbfe23ba87a5065a00a56c", - "slotId": "mod_muzzle" - }, - { - "_id": "5ebbfe23ba87a5065a00a56e", - "_tpl": "5d00ec68d7ad1a04a067e5be", - "parentId": "5ebbfe23ba87a5065a00a56b", - "slotId": "mod_gas_block" - }, - { - "_id": "5ebbfe23ba87a5065a00a56f", - "_tpl": "5ea16acdfadf1d18c87b0784", - "parentId": "5ebbfe23ba87a5065a00a567", - "slotId": "mod_handguard" - }, - { - "_id": "5ebbfe23ba87a5065a00a570", - "_tpl": "5c06595c0db834001a66af6c", - "parentId": "5ebbfe23ba87a5065a00a56f", - "slotId": "mod_tactical_000" - }, - { - "_id": "5ebbfe23ba87a5065a00a571", - "_tpl": "5c18b90d2e2216152142466b", - "parentId": "5ebbfe23ba87a5065a00a56f", - "slotId": "mod_sight_front" - }, - { - "_id": "5ebbfe23ba87a5065a00a572", - "_tpl": "5c18b9192e2216398b5a8104", - "parentId": "5ebbfe23ba87a5065a00a567", - "slotId": "mod_sight_rear" - }, - { - "_id": "5ebbfe23ba87a5065a00a573", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "5ebbfe23ba87a5065a00a564", - "slotId": "mod_stock" - }, - { - "_id": "5ebbfe23ba87a5065a00a574", - "_tpl": "5d135ecbd7ad1a21c176542e", - "parentId": "5ebbfe23ba87a5065a00a573", - "slotId": "mod_stock_000" - }, - { - "_id": "5ebbfe23ba87a5065a00a575", - "_tpl": "5ea16d4d5aad6446a939753d", - "parentId": "5ebbfe23ba87a5065a00a564", - "slotId": "mod_charge" - } - ] - }, - "59ef24b986f77439987b8762": { - "_id": "59ef24b986f77439987b8762", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AKM VPO-136", - "_parent": "639bb56e92e27b60a107409f", - "_items": [ - { - "_id": "639bb56e92e27b60a107409f", - "_tpl": "59e6152586f77473dc057aa1", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "639bb56e92e27b60a10740a0", - "_tpl": "59e649f986f77411d949b246", - "parentId": "639bb56e92e27b60a107409f", - "slotId": "mod_gas_block" - }, - { - "_id": "639bb56e92e27b60a10740a1", - "_tpl": "59e6284f86f77440d569536f", - "parentId": "639bb56e92e27b60a10740a0", - "slotId": "mod_handguard" - }, - { - "_id": "639bb56e92e27b60a10740a2", - "_tpl": "59e61eb386f77440d64f5daf", - "parentId": "639bb56e92e27b60a107409f", - "slotId": "mod_muzzle" - }, - { - "_id": "639bb56e92e27b60a10740a3", - "_tpl": "59e6318286f77444dd62c4cc", - "parentId": "639bb56e92e27b60a107409f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "639bb56e92e27b60a10740a4", - "_tpl": "59e6449086f7746c9f75e822", - "parentId": "639bb56e92e27b60a107409f", - "slotId": "mod_reciever" - }, - { - "_id": "639bb56e92e27b60a10740a5", - "_tpl": "59d650cf86f7741b846413a4", - "parentId": "639bb56e92e27b60a107409f", - "slotId": "mod_sight_rear" - }, - { - "_id": "639bb56e92e27b60a10740a6", - "_tpl": "59e6227d86f77440d64f5dc2", - "parentId": "639bb56e92e27b60a107409f", - "slotId": "mod_stock" - }, - { - "_id": "639bb56e92e27b60a10740a7", - "_tpl": "5b1fd4e35acfc40018633c39", - "parentId": "639bb56e92e27b60a107409f", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "59e6152586f77473dc057aa1" - }, - "5ba3a14cd4351e003202017f": { - "_id": "5ba3a14cd4351e003202017f", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "AKMSB", - "_parent": "5ba3a14cd4351e0032020181", - "_items": [ - { - "_id": "5ba3a14cd4351e0032020181", - "_tpl": "59ff346386f77477562ff5e2" - }, - { - "_id": "5ba3a14cd4351e0032020182", - "_tpl": "59d64ec286f774171d1e0a42", - "parentId": "5ba3a14cd4351e0032020181", - "slotId": "mod_gas_block" - }, - { - "_id": "5ba3a14cd4351e0032020183", - "_tpl": "59d64f2f86f77417193ef8b3", - "parentId": "5ba3a14cd4351e0032020182", - "slotId": "mod_handguard" - }, - { - "_id": "5ba3a14cd4351e0032020184", - "_tpl": "5a0d63621526d8dba31fe3bf", - "parentId": "5ba3a14cd4351e0032020181", - "slotId": "mod_muzzle" - }, - { - "_id": "5ba3a14cd4351e0032020185", - "_tpl": "5a0071d486f77404e23a12b2", - "parentId": "5ba3a14cd4351e0032020181", - "slotId": "mod_pistol_grip_akms" - }, - { - "_id": "5ba3a14cd4351e0032020186", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "5ba3a14cd4351e0032020181", - "slotId": "mod_reciever" - }, - { - "_id": "5ba3a14cd4351e0032020187", - "_tpl": "5a0eb980fcdbcb001a3b00a6", - "parentId": "5ba3a14cd4351e0032020181", - "slotId": "mod_sight_rear" - }, - { - "_id": "5ba3a14cd4351e0032020188", - "_tpl": "59ff3b6a86f77477562ff5ed", - "parentId": "5ba3a14cd4351e0032020181", - "slotId": "mod_stock_akms" - }, - { - "_id": "5ba3a14cd4351e0032020189", - "_tpl": "5a0060fc86f7745793204432", - "parentId": "5ba3a14cd4351e0032020181", - "slotId": "mod_magazine" - } - ] - }, - "5c0c1d2b86f77401c119d01f": { - "_id": "5c0c1d2b86f77401c119d01f", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AKS74 default", - "_parent": "5c0c1d2b86f77401c119d020", - "_items": [ - { - "_id": "5c0c1d2b86f77401c119d020", - "_tpl": "5bf3e0490db83400196199af", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c0c1d2b86f77401c119d021", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "5c0c1d2b86f77401c119d020", - "slotId": "mod_gas_block" - }, - { - "_id": "5c0c1d2b86f77401c119d022", - "_tpl": "5648b0744bdc2d363b8b4578", - "parentId": "5c0c1d2b86f77401c119d021", - "slotId": "mod_handguard" - }, - { - "_id": "5c0c1d2b86f77401c119d023", - "_tpl": "5649aa744bdc2ded0b8b457e", - "parentId": "5c0c1d2b86f77401c119d020", - "slotId": "mod_muzzle" - }, - { - "_id": "5c0c1d2b86f77401c119d024", - "_tpl": "57e3dba62459770f0c32322b", - "parentId": "5c0c1d2b86f77401c119d020", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5c0c1d2b86f77401c119d025", - "_tpl": "5649af094bdc2df8348b4586", - "parentId": "5c0c1d2b86f77401c119d020", - "slotId": "mod_reciever" - }, - { - "_id": "5c0c1d2b86f77401c119d026", - "_tpl": "5649b0544bdc2d1b2b8b458a", - "parentId": "5c0c1d2b86f77401c119d020", - "slotId": "mod_sight_rear" - }, - { - "_id": "5c0c1d2b86f77401c119d027", - "_tpl": "5ab626e4d8ce87272e4c6e43", - "parentId": "5c0c1d2b86f77401c119d020", - "slotId": "mod_stock" - }, - { - "_id": "5c0c1d2b86f77401c119d028", - "_tpl": "564ca99c4bdc2d16268b4589", - "parentId": "5c0c1d2b86f77401c119d020", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5bf3e0490db83400196199af" - }, - "5841482e2459775a050cdda9": { - "_id": "5841482e2459775a050cdda9", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AS VAL Default", - "_parent": "5841482e2459775a050cdda1", - "_items": [ - { - "_id": "5841482e2459775a050cdda1", - "_tpl": "57c44b372459772d2b39b8ce" - }, - { - "_id": "5841482e2459775a050cdda2", - "_tpl": "57c44dd02459772d2e0ae249", - "parentId": "5841482e2459775a050cdda1", - "slotId": "mod_muzzle" - }, - { - "_id": "5841482e2459775a050cdda7", - "_tpl": "57c44e7b2459772d28133248", - "parentId": "5841482e2459775a050cdda2", - "slotId": "mod_sight_rear" - }, - { - "_id": "5841482e2459775a050cdda3", - "_tpl": "57c44f4f2459772d2c627113", - "parentId": "5841482e2459775a050cdda1", - "slotId": "mod_reciever" - }, - { - "_id": "5841482e2459775a050cdda4", - "_tpl": "57838f9f2459774a150289a0", - "parentId": "5841482e2459775a050cdda1", - "slotId": "mod_magazine" - }, - { - "_id": "5841482e2459775a050cdda5", - "_tpl": "57c44fa82459772d2d75e415", - "parentId": "5841482e2459775a050cdda1", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5841482e2459775a050cdda6", - "_tpl": "57c450252459772d28133253", - "parentId": "5841482e2459775a050cdda1", - "slotId": "mod_stock" - } - ], - "_encyclopedia": "57c44b372459772d2b39b8ce" - }, - "5e0340ab86f7745bb7339235": { - "_id": "5e0340ab86f7745bb7339235", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MP9_default", - "_parent": "5e0340ab86f7745bb7339236", - "_items": [ - { - "_id": "5e0340ab86f7745bb7339236", - "_tpl": "5e00903ae9dc277128008b87", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5e0340ab86f7745bb7339237", - "_tpl": "5de8eac42a78646d96665d91", - "parentId": "5e0340ab86f7745bb7339236", - "slotId": "mod_magazine" - }, - { - "_id": "5e0340ab86f7745bb7339238", - "_tpl": "5de910da8b6c4240ba2651b5", - "parentId": "5e0340ab86f7745bb7339236", - "slotId": "mod_stock" - }, - { - "_id": "5e0340ab86f7745bb7339239", - "_tpl": "5e0090f7e9dc277128008b93", - "parentId": "5e0340ab86f7745bb7339236", - "slotId": "mod_reciever" - }, - { - "_id": "5e0340ab86f7745bb733923a", - "_tpl": "5de8fb539f98ac2bc659513a", - "parentId": "5e0340ab86f7745bb7339239", - "slotId": "mod_sight_rear" - }, - { - "_id": "5e0340ab86f7745bb733923b", - "_tpl": "5de922d4b11454561e39239f", - "parentId": "5e0340ab86f7745bb7339236", - "slotId": "mod_charge" - }, - { - "_id": "5e0340ab86f7745bb733923c", - "_tpl": "5de8fbf2b74cd90030650c79", - "parentId": "5e0340ab86f7745bb7339236", - "slotId": "mod_mount_000" - } - ], - "_encyclopedia": "5e00903ae9dc277128008b87" - }, - "5841499024597759f825ff3e": { - "_id": "5841499024597759f825ff3e", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "PM (t) Default", - "_parent": "64c23de75a41fc5756069944", - "_items": [ - { - "_id": "64c23de75a41fc5756069944", - "_tpl": "579204f224597773d619e051", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "64c23de75a41fc5756069945", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "64c23de75a41fc5756069944", - "slotId": "mod_magazine" - }, - { - "_id": "64c23de75a41fc5756069946", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "64c23de75a41fc5756069944", - "slotId": "mod_reciever" - }, - { - "_id": "64c23de75a41fc5756069947", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "64c23de75a41fc5756069946", - "slotId": "mod_sight_rear" - }, - { - "_id": "64c23de75a41fc5756069948", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "64c23de75a41fc5756069944", - "slotId": "mod_pistolgrip" - } - ], - "_encyclopedia": "579204f224597773d619e051" - }, - "58414967245977598f1ad391": { - "_id": "58414967245977598f1ad391", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "PM Default", - "_parent": "64c23df38c55c412dc222f04", - "_items": [ - { - "_id": "64c23df38c55c412dc222f04", - "_tpl": "5448bd6b4bdc2dfc2f8b4569", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "64c23df38c55c412dc222f05", - "_tpl": "5448c12b4bdc2d02308b456f", - "parentId": "64c23df38c55c412dc222f04", - "slotId": "mod_magazine" - }, - { - "_id": "64c23df38c55c412dc222f06", - "_tpl": "6374a822e629013b9c0645c8", - "parentId": "64c23df38c55c412dc222f04", - "slotId": "mod_reciever" - }, - { - "_id": "64c23df38c55c412dc222f07", - "_tpl": "63c6adcfb4ba094317063742", - "parentId": "64c23df38c55c412dc222f06", - "slotId": "mod_sight_rear" - }, - { - "_id": "64c23df38c55c412dc222f08", - "_tpl": "6374a7e7417239a7bf00f042", - "parentId": "64c23df38c55c412dc222f04", - "slotId": "mod_pistolgrip" - } - ], - "_encyclopedia": "5448bd6b4bdc2dfc2f8b4569" - }, - "624d7b2881a57812413b7954": { - "_id": "624d7b2881a57812413b7954", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Rhino 200DS default", - "_parent": "624d7b2881a57812413b7955", - "_items": [ - { - "_id": "624d7b2881a57812413b7955", - "_tpl": "624c2e8614da335f1e034d8c", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "624d7b2881a57812413b7956", - "_tpl": "624c3074dbbd335e8e6becf3", - "parentId": "624d7b2881a57812413b7955", - "slotId": "mod_magazine" - }, - { - "_id": "624d7b2881a57812413b7957", - "_tpl": "619f4d304c58466fe1228437", - "parentId": "624d7b2881a57812413b7955", - "slotId": "mod_sight_front" - }, - { - "_id": "624d7b2881a57812413b7958", - "_tpl": "619f4bffd25cbd424731fb97", - "parentId": "624d7b2881a57812413b7955", - "slotId": "mod_pistol_grip" - } - ], - "_encyclopedia": "624c2e8614da335f1e034d8c" - }, - "5a327f9086f77475187e50a9": { - "_id": "5a327f9086f77475187e50a9", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "AKM 2017 new year", - "_parent": "5a2fab6dc4a282000e497100", - "_items": [ - { - "_id": "5a2fab6dc4a282000e497100", - "_tpl": "59d6088586f774275f37482f" - }, - { - "_id": "5a2fab6dc4a282000e49710b", - "_tpl": "5a01ad4786f77450561fda02", - "parentId": "5a2fab6dc4a282000e497100", - "slotId": "mod_gas_block" - }, - { - "_id": "5a2fab6dc4a282000e497112", - "_tpl": "59fb375986f7741b681b81a6", - "parentId": "5a2fab6dc4a282000e49710b", - "slotId": "mod_handguard" - }, - { - "_id": "5a2fab6dc4a282000e497114", - "_tpl": "59e0bed186f774156f04ce84", - "parentId": "5a2fab6dc4a282000e497112", - "slotId": "mod_mount_000" - }, - { - "_id": "5a327f9086f77475187e50a5", - "_tpl": "588226d124597767ad33f787", - "parentId": "5a2fab6dc4a282000e497114", - "slotId": "mod_foregrip" - }, - { - "_id": "5a2fab8dc4a282000c5a9268", - "_tpl": "59e0be5d86f7742d48765bd2", - "parentId": "5a2fab6dc4a282000e497112", - "slotId": "mod_mount_001" - }, - { - "_id": "5a327f9086f77475187e50a6", - "_tpl": "57fd23e32459772d0805bcf1", - "parentId": "5a2fab8dc4a282000c5a9268", - "slotId": "mod_tactical" - }, - { - "_id": "5a327f9086f77475187e50a4", - "_tpl": "59e0be5d86f7742d48765bd2", - "parentId": "5a2fab6dc4a282000e497112", - "slotId": "mod_mount_002" - }, - { - "_id": "5a2fab6dc4a282000e497115", - "_tpl": "59e0bdb186f774156f04ce82", - "parentId": "5a2fab6dc4a282000e497112", - "slotId": "mod_mount_003" - }, - { - "_id": "5a327f9086f77475187e50a7", - "_tpl": "560d657b4bdc2da74d8b4572", - "parentId": "5a2fab6dc4a282000e497115", - "slotId": "mod_tactical" - }, - { - "_id": "5a2fab6dc4a282000e49710c", - "_tpl": "5a0d63621526d8dba31fe3bf", - "parentId": "5a2fab6dc4a282000e497100", - "slotId": "mod_muzzle" - }, - { - "_id": "5a2fab6dc4a282000e49710d", - "_tpl": "5947f92f86f77427344a76b1", - "parentId": "5a2fab6dc4a282000e497100", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5a2fab6dc4a282000e49710e", - "_tpl": "59d6507c86f7741b846413a2", - "parentId": "5a2fab6dc4a282000e497100", - "slotId": "mod_reciever" - }, - { - "_id": "5a2fab6dc4a282000e49710f", - "_tpl": "5649d9a14bdc2d79388b4580", - "parentId": "5a2fab6dc4a282000e497100", - "slotId": "mod_sight_rear" - }, - { - "_id": "5a327f9086f77475187e50a1", - "_tpl": "584924ec24597768f12ae244", - "parentId": "5a2fab6dc4a282000e49710f", - "slotId": "mod_scope" - }, - { - "_id": "5a2fab6dc4a282000e497110", - "_tpl": "5649b2314bdc2d79388b4576", - "parentId": "5a2fab6dc4a282000e497100", - "slotId": "mod_stock" - }, - { - "_id": "5a327f9086f77475187e50a2", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "5a2fab6dc4a282000e497110", - "slotId": "mod_stock" - }, - { - "_id": "5a327f9086f77475187e50a8", - "_tpl": "5947c73886f7747701588af5", - "parentId": "5a327f9086f77475187e50a2", - "slotId": "mod_stock_000" - }, - { - "_id": "5a2fab6dc4a282000e497111", - "_tpl": "59d6272486f77466146386ff", - "parentId": "5a2fab6dc4a282000e497100", - "slotId": "mod_magazine" - }, - { - "_id": "5a327f9086f77475187e50a3", - "_tpl": "5656d7c34bdc2d9d198b4587", - "parentId": "5a2fab6dc4a282000e497111", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - } - ] - }, - "5acf7dfc86f774401e19c390": { - "_id": "5acf7dfc86f774401e19c390", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AK-102 Default", - "_parent": "5ac739405acfc400154e275d", - "_items": [ - { - "_id": "5ac739405acfc400154e275d", - "_tpl": "5ac66d015acfc400180ae6e4" - }, - { - "_id": "5ac739405acfc400154e275e", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "5ac739405acfc400154e275d", - "slotId": "mod_gas_block" - }, - { - "_id": "5acf7dfc86f774401e19c38f", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "5ac739405acfc400154e275e", - "slotId": "mod_handguard" - }, - { - "_id": "5acf7dfc86f774401e19c38c", - "_tpl": "5ac72e725acfc400180ae701", - "parentId": "5ac739405acfc400154e275d", - "slotId": "mod_muzzle" - }, - { - "_id": "5acf7dfc86f774401e19c38d", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "5ac739405acfc400154e275d", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5ac739405acfc400154e2761", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "5ac739405acfc400154e275d", - "slotId": "mod_reciever" - }, - { - "_id": "5ac739405acfc400154e2762", - "_tpl": "5ac733a45acfc400192630e2", - "parentId": "5ac739405acfc400154e275d", - "slotId": "mod_sight_rear" - }, - { - "_id": "5acf7dfc86f774401e19c38e", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "5ac739405acfc400154e275d", - "slotId": "mod_stock" - }, - { - "_id": "5ac739405acfc400154e2764", - "_tpl": "5ac66c5d5acfc4001718d314", - "parentId": "5ac739405acfc400154e275d", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5ac66d015acfc400180ae6e4" - }, - "5acf7db286f7743a9c7092e3": { - "_id": "5acf7db286f7743a9c7092e3", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AK-74M Default", - "_parent": "5ac5f8745acfc43f67248a76", - "_items": [ - { - "_id": "5ac5f8745acfc43f67248a76", - "_tpl": "5ac4cd105acfc40016339859" - }, - { - "_id": "5ac5f8745acfc43f67248a77", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "5ac5f8745acfc43f67248a76", - "slotId": "mod_gas_block" - }, - { - "_id": "5acf7db286f7743a9c7092e2", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "5ac5f8745acfc43f67248a77", - "slotId": "mod_handguard" - }, - { - "_id": "5acf7db286f7743a9c7092e0", - "_tpl": "5ac7655e5acfc40016339a19", - "parentId": "5ac5f8745acfc43f67248a76", - "slotId": "mod_muzzle" - }, - { - "_id": "5ac5f8745acfc43f67248a79", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "5ac5f8745acfc43f67248a76", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5ac5f8745acfc43f67248a7a", - "_tpl": "5ac50da15acfc4001718d287", - "parentId": "5ac5f8745acfc43f67248a76", - "slotId": "mod_reciever" - }, - { - "_id": "5acf7db286f7743a9c7092e1", - "_tpl": "5ac72e475acfc400180ae6fe", - "parentId": "5ac5f8745acfc43f67248a76", - "slotId": "mod_sight_rear" - }, - { - "_id": "5ac5f8745acfc43f67248a7c", - "_tpl": "5ac50c185acfc400163398d4", - "parentId": "5ac5f8745acfc43f67248a76", - "slotId": "mod_stock" - }, - { - "_id": "5ac5f8745acfc43f67248a7d", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "5ac5f8745acfc43f67248a76", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5ac4cd105acfc40016339859" - }, - "5c123fe086f7742a60324263": { - "_id": "5c123fe086f7742a60324263", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "M1A 2018 new year", - "_parent": "5c2209ca86f774193869965a", - "_items": [ - { - "_id": "5c2209ca86f774193869965a", - "_tpl": "5aafa857e5b5b00018480968", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c2209ca86f774193869965b", - "_tpl": "5addccf45acfc400185c2989", - "parentId": "5c2209ca86f774193869965a", - "slotId": "mod_magazine" - }, - { - "_id": "5c2209ca86f774193869965c", - "_tpl": "5ab372a310e891001717f0d8", - "parentId": "5c2209ca86f774193869965a", - "slotId": "mod_stock" - }, - { - "_id": "5c2209ca86f774193869965d", - "_tpl": "588226dd24597767ad33f789", - "parentId": "5c2209ca86f774193869965c", - "slotId": "mod_foregrip" - }, - { - "_id": "5c2209ca86f774193869965e", - "_tpl": "5b3b6dc75acfc47a8773fb1e", - "parentId": "5c2209ca86f774193869965c", - "slotId": "mod_scope" - }, - { - "_id": "5c2209ca86f774193869965f", - "_tpl": "5b3b6e495acfc4330140bd88", - "parentId": "5c2209ca86f774193869965e", - "slotId": "mod_scope" - }, - { - "_id": "5c2209ca86f7741938699660", - "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "5c2209ca86f774193869965c", - "slotId": "mod_mount" - }, - { - "_id": "5c2209ca86f7741938699661", - "_tpl": "577d128124597739d65d0e56", - "parentId": "5c2209ca86f7741938699660", - "slotId": "mod_scope" - }, - { - "_id": "5c2209ca86f7741938699662", - "_tpl": "577d141e24597739c5255e01", - "parentId": "5c2209ca86f7741938699661", - "slotId": "mod_scope" - }, - { - "_id": "5c2209ca86f7741938699663", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "5c2209ca86f774193869965c", - "slotId": "mod_tactical_003" - }, - { - "_id": "5c2209ca86f7741938699664", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "5c2209ca86f774193869965c", - "slotId": "mod_pistolgrip" - }, - { - "_id": "5c2209ca86f7741938699665", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "5c2209ca86f774193869965c", - "slotId": "mod_stock" - }, - { - "_id": "5c2209ca86f7741938699666", - "_tpl": "58d2946386f774496974c37e", - "parentId": "5c2209ca86f7741938699665", - "slotId": "mod_stock_000" - }, - { - "_id": "5c2209ca86f7741938699667", - "_tpl": "58d2912286f7744e27117493", - "parentId": "5c2209ca86f7741938699666", - "slotId": "mod_stock" - }, - { - "_id": "5c2209ca86f7741938699668", - "_tpl": "5addbac75acfc400194dbc56", - "parentId": "5c2209ca86f774193869965a", - "slotId": "mod_barrel" - }, - { - "_id": "5c2209ca86f7741938699669", - "_tpl": "5addbb825acfc408fb139400", - "parentId": "5c2209ca86f7741938699668", - "slotId": "mod_muzzle" - } - ] - }, - "5bd056fa86f7743aba7658cd": { - "_id": "5bd056fa86f7743aba7658cd", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MP7_default", - "_parent": "5bd056fa86f7743aba7658d2", - "_items": [ - { - "_id": "5bd056fa86f7743aba7658d2", - "_tpl": "5ba26383d4351e00334c93d9" - }, - { - "_id": "5bd056fa86f7743aba7658d3", - "_tpl": "5ba264f6d4351e0034777d52", - "parentId": "5bd056fa86f7743aba7658d2", - "slotId": "mod_magazine" - }, - { - "_id": "5bd056fa86f7743aba7658d4", - "_tpl": "5ba26acdd4351e003562908e", - "parentId": "5bd056fa86f7743aba7658d2", - "slotId": "mod_muzzle" - }, - { - "_id": "5bd056fa86f7743aba7658d5", - "_tpl": "5ba26b01d4351e0085325a51", - "parentId": "5bd056fa86f7743aba7658d2", - "slotId": "mod_sight_front" - }, - { - "_id": "5bd056fa86f7743aba7658d6", - "_tpl": "5ba26b17d4351e00367f9bdd", - "parentId": "5bd056fa86f7743aba7658d2", - "slotId": "mod_sight_rear" - }, - { - "_id": "5bd056fa86f7743aba7658d7", - "_tpl": "5bcf0213d4351e0085327c17", - "parentId": "5bd056fa86f7743aba7658d2", - "slotId": "mod_stock" - } - ], - "_encyclopedia": "5ba26383d4351e00334c93d9" - }, - "5d23467086f77443f37fc602": { - "_id": "5d23467086f77443f37fc602", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "ASH-12 default", - "_parent": "5d32cdef86f774403c15985a", - "_items": [ - { - "_id": "5d32cdef86f774403c15985a", - "_tpl": "5cadfbf7ae92152ac412eeef", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5d32cdef86f774403c15985b", - "_tpl": "5caf17c9ae92150b30006be1", - "parentId": "5d32cdef86f774403c15985a", - "slotId": "mod_muzzle" - }, - { - "_id": "5d32cdef86f774403c15985c", - "_tpl": "5caf1041ae92157c28402e3f", - "parentId": "5d32cdef86f774403c15985a", - "slotId": "mod_magazine" - }, - { - "_id": "5d32cdef86f774403c15985d", - "_tpl": "5caf16a2ae92152ac412efbc", - "parentId": "5d32cdef86f774403c15985a", - "slotId": "mod_sight_front" - }, - { - "_id": "5d32cdef86f774403c15985e", - "_tpl": "5cdaa99dd7f00c002412d0b2", - "parentId": "5d32cdef86f774403c15985a", - "slotId": "mod_handguard" - }, - { - "_id": "5d32cdef86f774403c15985f", - "_tpl": "5cda9bcfd7f00c0c0b53e900", - "parentId": "5d32cdef86f774403c15985e", - "slotId": "mod_foregrip" - }, - { - "_id": "5d32cdef86f774403c159860", - "_tpl": "5caf1691ae92152ac412efb9", - "parentId": "5d32cdef86f774403c15985a", - "slotId": "mod_scope" - } - ], - "_encyclopedia": "5cadfbf7ae92152ac412eeef" - }, - "60479fb29c15b12b9a480fb0": { - "_id": "60479fb29c15b12b9a480fb0", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "PL-15", - "_parent": "60479fb29c15b12b9a480fb1", - "_items": [ - { - "_id": "60479fb29c15b12b9a480fb1", - "_tpl": "602a9740da11d6478d5a06dc", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "60479fb29c15b12b9a480fb2", - "_tpl": "602a95edda11d6478d5a06da", - "parentId": "60479fb29c15b12b9a480fb1", - "slotId": "mod_barrel" - }, - { - "_id": "60479fb29c15b12b9a480fb3", - "_tpl": "60228924961b8d75ee233c32", - "parentId": "60479fb29c15b12b9a480fb1", - "slotId": "mod_reciever" - }, - { - "_id": "60479fb29c15b12b9a480fb4", - "_tpl": "60229948cacb6b0506369e27", - "parentId": "60479fb29c15b12b9a480fb3", - "slotId": "mod_sight_rear" - }, - { - "_id": "60479fb29c15b12b9a480fb5", - "_tpl": "60228a76d62c9b14ed777a66", - "parentId": "60479fb29c15b12b9a480fb3", - "slotId": "mod_sight_front" - }, - { - "_id": "60479fb29c15b12b9a480fb6", - "_tpl": "602286df23506e50807090c6", - "parentId": "60479fb29c15b12b9a480fb1", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "602a9740da11d6478d5a06dc" - }, - "584149c42459775a77263510": { - "_id": "584149c42459775a77263510", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "PP-91 Kedr Default", - "_parent": "57ee35422459776d4e721588", - "_items": [ - { - "_id": "57ee35422459776d4e721588", - "_tpl": "57d14d2524597714373db789" - }, - { - "_id": "57ee35422459776d4e721589", - "_tpl": "57d152ec245977144076ccdf", - "parentId": "57ee35422459776d4e721588", - "slotId": "mod_pistol_grip" - }, - { - "_id": "57ee35422459776d4e72158a", - "_tpl": "57d1519e24597714373db79d", - "parentId": "57ee35422459776d4e721588", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "57d14d2524597714373db789" - }, - "5ac4ad7586f7747d14551da3": { - "_id": "5ac4ad7586f7747d14551da3", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "M870 Default", - "_parent": "5ac4a2c15acfc40019262e63", - "_items": [ - { - "_id": "5ac4a2c15acfc40019262e63", - "_tpl": "5a7828548dc32e5a9c28b516" - }, - { - "_id": "5ac4a14c5acfc40019262e46", - "_tpl": "5a787f7ac5856700177af660", - "parentId": "5ac4a2c15acfc40019262e63", - "slotId": "mod_barrel" - }, - { - "_id": "5ac4a14c5acfc40019262e49", - "_tpl": "5a788089c5856700142fdd9c", - "parentId": "5ac4a2c15acfc40019262e63", - "slotId": "mod_handguard" - }, - { - "_id": "5ac4a14c5acfc40019262e3f", - "_tpl": "5a7882dcc5856700177af662", - "parentId": "5ac4a2c15acfc40019262e63", - "slotId": "mod_magazine" - }, - { - "_id": "5ac4ad7586f7747d14551da2", - "_tpl": "5a7880d0c5856700142fdd9d", - "parentId": "5ac4a2c15acfc40019262e63", - "slotId": "mod_stock" - } - ], - "_encyclopedia": "5a7828548dc32e5a9c28b516" - }, - "59411aa786f7747aeb37f9a5": { - "_id": "59411aa786f7747aeb37f9a5", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MP5 Default", - "_parent": "61a9f96a84ea0800645777f1", - "_items": [ - { - "_id": "61a9f96a84ea0800645777f1", - "_tpl": "5926bb2186f7744b1c6c6e60", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "61a9f96a84ea0800645777f2", - "_tpl": "5926c3b286f774640d189b6b", - "parentId": "61a9f96a84ea0800645777f1", - "slotId": "mod_magazine" - }, - { - "_id": "61a9f96a84ea0800645777f3", - "_tpl": "5926c0df86f77462f647f764", - "parentId": "61a9f96a84ea0800645777f1", - "slotId": "mod_reciever" - }, - { - "_id": "61a9f96a84ea0800645777f4", - "_tpl": "5926c36d86f77467a92a8629", - "parentId": "61a9f96a84ea0800645777f3", - "slotId": "mod_handguard" - }, - { - "_id": "61a9f96a84ea0800645777f5", - "_tpl": "5926d2be86f774134d668e4e", - "parentId": "61a9f96a84ea0800645777f3", - "slotId": "mod_sight_rear" - }, - { - "_id": "61a9f96a84ea0800645777f6", - "_tpl": "5926d3c686f77410de68ebc8", - "parentId": "61a9f96a84ea0800645777f3", - "slotId": "mod_stock" - }, - { - "_id": "61a9f96a84ea0800645777f7", - "_tpl": "5926e16e86f7742f5a0f7ecb", - "parentId": "61a9f96a84ea0800645777f3", - "slotId": "mod_muzzle" - }, - { - "_id": "61a9f96a84ea0800645777f8", - "_tpl": "5926c32286f774616e42de99", - "parentId": "61a9f96a84ea0800645777f1", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "5926bb2186f7744b1c6c6e60" - }, - "5bd05f1186f774572f181678": { - "_id": "5bd05f1186f774572f181678", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "MP7_DEVGRU", - "_parent": "5bd05f1186f774572f181683", - "_items": [ - { - "_id": "5bd05f1186f774572f181683", - "_tpl": "5ba26383d4351e00334c93d9" - }, - { - "_id": "5bd05f1186f774572f181684", - "_tpl": "5ba26586d4351e44f824b340", - "parentId": "5bd05f1186f774572f181683", - "slotId": "mod_magazine" - }, - { - "_id": "5bd05f1186f774572f181685", - "_tpl": "5ba26acdd4351e003562908e", - "parentId": "5bd05f1186f774572f181683", - "slotId": "mod_muzzle" - }, - { - "_id": "5bd05f1186f774572f181686", - "_tpl": "5ba26ae8d4351e00367f9bdb", - "parentId": "5bd05f1186f774572f181685", - "slotId": "mod_muzzle" - }, - { - "_id": "5bd05f1186f774572f181687", - "_tpl": "58d39d3d86f77445bb794ae7", - "parentId": "5bd05f1186f774572f181683", - "slotId": "mod_scope" - }, - { - "_id": "5bd05f1186f774572f181688", - "_tpl": "58d39b0386f77443380bf13c", - "parentId": "5bd05f1186f774572f181687", - "slotId": "mod_scope" - }, - { - "_id": "5bd05f1186f774572f181689", - "_tpl": "58d399e486f77442e0016fe7", - "parentId": "5bd05f1186f774572f181688", - "slotId": "mod_scope" - }, - { - "_id": "5bd05f1186f774572f18168a", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "5bd05f1186f774572f181683", - "slotId": "mod_tactical_000" - }, - { - "_id": "5bd05f1186f774572f18168b", - "_tpl": "57d17e212459775a1179a0f5", - "parentId": "5bd05f1186f774572f181683", - "slotId": "mod_tactical_002" - }, - { - "_id": "5bd05f1186f774572f18168c", - "_tpl": "57d17c5e2459775a5c57d17d", - "parentId": "5bd05f1186f774572f18168b", - "slotId": "mod_flashlight" - }, - { - "_id": "5bd05f1186f774572f18168d", - "_tpl": "5bcf0213d4351e0085327c17", - "parentId": "5bd05f1186f774572f181683", - "slotId": "mod_stock" - } - ] - }, - "58dffca786f774083a256ab1": { - "_id": "58dffca786f774083a256ab1", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MPX Default", - "_parent": "58dffb3286f77405bb0f797a", - "_items": [ - { - "_id": "58dffb3286f77405bb0f797a", - "_tpl": "58948c8e86f77409493f7266" - }, - { - "_id": "58dffb3286f77405bb0f7983", - "_tpl": "5894a51286f77426d13baf02", - "parentId": "58dffb3286f77405bb0f797a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "58dffb3286f77405bb0f7984", - "_tpl": "5894a05586f774094708ef75", - "parentId": "58dffb3286f77405bb0f797a", - "slotId": "mod_magazine" - }, - { - "_id": "58dffb3286f77405bb0f7985", - "_tpl": "5894a5b586f77426d2590767", - "parentId": "58dffb3286f77405bb0f797a", - "slotId": "mod_reciever" - }, - { - "_id": "58dffb3286f77405bb0f798a", - "_tpl": "5894a2c386f77427140b8342", - "parentId": "58dffb3286f77405bb0f7985", - "slotId": "mod_barrel" - }, - { - "_id": "58dffb3286f77405bb0f798d", - "_tpl": "58949dea86f77409483e16a8", - "parentId": "58dffb3286f77405bb0f798a", - "slotId": "mod_muzzle" - }, - { - "_id": "58dffb3286f77405bb0f798b", - "_tpl": "5894a42086f77426d2590762", - "parentId": "58dffb3286f77405bb0f7985", - "slotId": "mod_handguard" - }, - { - "_id": "58dffb3286f77405bb0f798e", - "_tpl": "5894a73486f77426d259076c", - "parentId": "58dffb3286f77405bb0f798b", - "slotId": "mod_sight_front" - }, - { - "_id": "58dffb3286f77405bb0f7980", - "_tpl": "58a56f8d86f774651579314c", - "parentId": "58dffb3286f77405bb0f798b", - "slotId": "mod_mount_000" - }, - { - "_id": "58dffca786f774083a256ab0", - "_tpl": "58a5c12e86f7745d585a2b9e", - "parentId": "58dffb3286f77405bb0f798b", - "slotId": "mod_mount_001" - }, - { - "_id": "58dffb3286f77405bb0f797f", - "_tpl": "58a56f8d86f774651579314c", - "parentId": "58dffb3286f77405bb0f798b", - "slotId": "mod_mount_002" - }, - { - "_id": "58dffb3286f77405bb0f798c", - "_tpl": "5894a81786f77427140b8347", - "parentId": "58dffb3286f77405bb0f7985", - "slotId": "mod_sight_rear" - }, - { - "_id": "58dffb3286f77405bb0f7986", - "_tpl": "5894a13e86f7742405482982", - "parentId": "58dffb3286f77405bb0f797a", - "slotId": "mod_stock" - }, - { - "_id": "58dffb3286f77405bb0f7987", - "_tpl": "58949edd86f77409483e16a9", - "parentId": "58dffb3286f77405bb0f797a", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "58948c8e86f77409493f7266" - }, - "5c0d1ec986f77439512a1a72": { - "_id": "5c0d1ec986f77439512a1a72", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "RPK16 nomag", - "_parent": "5c0d1ec986f77439512a1a80", - "_items": [ - { - "_id": "5c0d1ec986f77439512a1a80", - "_tpl": "5beed0f50db834001c062b12", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c0d1ec986f77439512a1a81", - "_tpl": "5beec8ea0db834001a6f9dbf", - "parentId": "5c0d1ec986f77439512a1a80", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5c0d1ec986f77439512a1a82", - "_tpl": "5beec91a0db834001961942d", - "parentId": "5c0d1ec986f77439512a1a80", - "slotId": "mod_reciever" - }, - { - "_id": "5c0d1ec986f77439512a1a83", - "_tpl": "5beec9450db83400970084fd", - "parentId": "5c0d1ec986f77439512a1a82", - "slotId": "mod_sight_rear" - }, - { - "_id": "5c0d1ec986f77439512a1a84", - "_tpl": "5bf3f59f0db834001a6fa060", - "parentId": "5c0d1ec986f77439512a1a83", - "slotId": "mod_sight_rear" - }, - { - "_id": "5c0d1ec986f77439512a1a85", - "_tpl": "5beec8b20db834001961942a", - "parentId": "5c0d1ec986f77439512a1a80", - "slotId": "mod_stock_001" - }, - { - "_id": "5c0d1ec986f77439512a1a86", - "_tpl": "5beec8c20db834001d2c465c", - "parentId": "5c0d1ec986f77439512a1a85", - "slotId": "mod_stock" - }, - { - "_id": "5c0d1ec986f77439512a1a87", - "_tpl": "5beec3e30db8340019619424", - "parentId": "5c0d1ec986f77439512a1a80", - "slotId": "mod_handguard" - }, - { - "_id": "5c0d1ec986f77439512a1a88", - "_tpl": "5beecbb80db834001d2c465e", - "parentId": "5c0d1ec986f77439512a1a87", - "slotId": "mod_mount_000" - }, - { - "_id": "5c0d1ec986f77439512a1a89", - "_tpl": "5beecbb80db834001d2c465e", - "parentId": "5c0d1ec986f77439512a1a87", - "slotId": "mod_mount_001" - }, - { - "_id": "5c0d1ec986f77439512a1a8a", - "_tpl": "5beec1bd0db834001e6006f3", - "parentId": "5c0d1ec986f77439512a1a80", - "slotId": "mod_barrel" - }, - { - "_id": "5c0d1ec986f77439512a1a8b", - "_tpl": "5beec3420db834001b095429", - "parentId": "5c0d1ec986f77439512a1a8a", - "slotId": "mod_muzzle" - } - ], - "_encyclopedia": "5beed0f50db834001c062b12" - }, - "6193e4a46bb904059c382295": { - "_id": "6193e4a46bb904059c382295", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "SCARH MK17 LB", - "_parent": "6193e4a46bb904059c382296", - "_items": [ - { - "_id": "6193e4a46bb904059c382296", - "_tpl": "6183afd850224f204c1da514", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6193e4a46bb904059c382297", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "6193e4a46bb904059c382296", - "slotId": "mod_pistol_grip" - }, - { - "_id": "6193e4a46bb904059c382298", - "_tpl": "618168dc8004cc50514c34fc", - "parentId": "6193e4a46bb904059c382296", - "slotId": "mod_magazine" - }, - { - "_id": "6193e4a46bb904059c382299", - "_tpl": "6165adcdd3a39d50044c120f", - "parentId": "6193e4a46bb904059c382296", - "slotId": "mod_reciever" - }, - { - "_id": "6193e4a46bb904059c38229a", - "_tpl": "6183b084a112697a4b3a6e6c", - "parentId": "6193e4a46bb904059c382299", - "slotId": "mod_barrel" - }, - { - "_id": "6193e4a46bb904059c38229b", - "_tpl": "618178aa1cb55961fa0fdc80", - "parentId": "6193e4a46bb904059c38229a", - "slotId": "mod_muzzle" - }, - { - "_id": "6193e4a46bb904059c38229c", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "6193e4a46bb904059c38229a", - "slotId": "mod_sight_front" - }, - { - "_id": "6193e4a46bb904059c38229d", - "_tpl": "61817865d3a39d50044c13a4", - "parentId": "6193e4a46bb904059c382299", - "slotId": "mod_sight_rear" - }, - { - "_id": "6193e4a46bb904059c38229e", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "6193e4a46bb904059c382299", - "slotId": "mod_mount_000" - }, - { - "_id": "6193e4a46bb904059c38229f", - "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "6193e4a46bb904059c382299", - "slotId": "mod_mount_001" - }, - { - "_id": "6193e4a46bb904059c3822a0", - "_tpl": "61816734d8e3106d9806c1f3", - "parentId": "6193e4a46bb904059c382296", - "slotId": "mod_stock" - }, - { - "_id": "6193e4a46bb904059c3822a1", - "_tpl": "618167528004cc50514c34f9", - "parentId": "6193e4a46bb904059c3822a0", - "slotId": "mod_stock_001" - }, - { - "_id": "6193e4a46bb904059c3822a2", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "6193e4a46bb904059c3822a1", - "slotId": "mod_stock" - }, - { - "_id": "6193e4a46bb904059c3822a3", - "_tpl": "618167441cb55961fa0fdc71", - "parentId": "6193e4a46bb904059c3822a0", - "slotId": "mod_stock_002" - }, - { - "_id": "6193e4a46bb904059c3822a4", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "6193e4a46bb904059c382296", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "6183afd850224f204c1da514" - }, - "6193e4fae693542ea37d11c6": { - "_id": "6193e4fae693542ea37d11c6", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "SCARH MK17 DEFAULT", - "_parent": "6193e4fae693542ea37d11c7", - "_items": [ - { - "_id": "6193e4fae693542ea37d11c7", - "_tpl": "6165ac306ef05c2ce828ef74", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6193e4fae693542ea37d11c8", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "6193e4fae693542ea37d11c7", - "slotId": "mod_pistol_grip" - }, - { - "_id": "6193e4fae693542ea37d11c9", - "_tpl": "6183d53f1cb55961fa0fdcda", - "parentId": "6193e4fae693542ea37d11c7", - "slotId": "mod_magazine" - }, - { - "_id": "6193e4fae693542ea37d11ca", - "_tpl": "6165aeedfaa1272e431521e3", - "parentId": "6193e4fae693542ea37d11c7", - "slotId": "mod_reciever" - }, - { - "_id": "6193e4fae693542ea37d11cb", - "_tpl": "6183b0711cb55961fa0fdcad", - "parentId": "6193e4fae693542ea37d11ca", - "slotId": "mod_barrel" - }, - { - "_id": "6193e4fae693542ea37d11cc", - "_tpl": "618178aa1cb55961fa0fdc80", - "parentId": "6193e4fae693542ea37d11cb", - "slotId": "mod_muzzle" - }, - { - "_id": "6193e4fae693542ea37d11cd", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "6193e4fae693542ea37d11cb", - "slotId": "mod_sight_front" - }, - { - "_id": "6193e4fae693542ea37d11ce", - "_tpl": "61817865d3a39d50044c13a4", - "parentId": "6193e4fae693542ea37d11ca", - "slotId": "mod_sight_rear" - }, - { - "_id": "6193e4fae693542ea37d11cf", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "6193e4fae693542ea37d11ca", - "slotId": "mod_mount_000" - }, - { - "_id": "6193e4fae693542ea37d11d0", - "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "6193e4fae693542ea37d11ca", - "slotId": "mod_mount_001" - }, - { - "_id": "6193e4fae693542ea37d11d1", - "_tpl": "61825d06d92c473c770215de", - "parentId": "6193e4fae693542ea37d11c7", - "slotId": "mod_stock" - }, - { - "_id": "6193e4fae693542ea37d11d2", - "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "6193e4fae693542ea37d11d1", - "slotId": "mod_stock_001" - }, - { - "_id": "6193e4fae693542ea37d11d3", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "6193e4fae693542ea37d11d2", - "slotId": "mod_stock" - }, - { - "_id": "6193e4fae693542ea37d11d4", - "_tpl": "61825d24d3a39d50044c13af", - "parentId": "6193e4fae693542ea37d11d1", - "slotId": "mod_stock_002" - }, - { - "_id": "6193e4fae693542ea37d11d5", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "6193e4fae693542ea37d11c7", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "6165ac306ef05c2ce828ef74" - }, - "619d276ca4712949ff3159b9": { - "_id": "619d276ca4712949ff3159b9", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "USP Expert", - "_parent": "619d276ca4712949ff3159bc", - "_items": [ - { - "_id": "619d276ca4712949ff3159bc", - "_tpl": "6193a720f8ee7e52e42109ed", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "619d276ca4712949ff3159bd", - "_tpl": "6194eff92d2c397d6600348b", - "parentId": "619d276ca4712949ff3159bc", - "slotId": "mod_barrel" - }, - { - "_id": "619d276ca4712949ff3159be", - "_tpl": "6194f5722d2c397d6600348f", - "parentId": "619d276ca4712949ff3159bc", - "slotId": "mod_reciever" - }, - { - "_id": "619d276ca4712949ff3159bf", - "_tpl": "6194f2df645b5d229654ad77", - "parentId": "619d276ca4712949ff3159be", - "slotId": "mod_sight_rear" - }, - { - "_id": "619d276ca4712949ff3159c0", - "_tpl": "6194f3286db0f2477964e67d", - "parentId": "619d276ca4712949ff3159be", - "slotId": "mod_sight_front" - }, - { - "_id": "619d276ca4712949ff3159c1", - "_tpl": "6193d3149fb0c665d5490e32", - "parentId": "619d276ca4712949ff3159bc", - "slotId": "mod_magazine" - }, - { - "_id": "619d276ca4712949ff3159c2", - "_tpl": "6193d3cded0429009f543e6a", - "parentId": "619d276ca4712949ff3159bc", - "slotId": "mod_trigger" - }, - { - "_id": "619d276ca4712949ff3159c3", - "_tpl": "6193d3be7c6c7b169525f0da", - "parentId": "619d276ca4712949ff3159bc", - "slotId": "mod_hammer" - }, - { - "_id": "619d276ca4712949ff3159c4", - "_tpl": "6193d5d4f8ee7e52e4210a1b", - "parentId": "619d276ca4712949ff3159bc", - "slotId": "mod_catch" - } - ] - }, - "5a88afdc86f7746de12fcc20": { - "_id": "5a88afdc86f7746de12fcc20", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "glock_alpha_wolf", - "_parent": "5a88595b86f7741822597733", - "_items": [ - { - "_id": "5a88595b86f7741822597733", - "_tpl": "5a7ae0c351dfba0017554310" - }, - { - "_id": "5a8864f986f774796c36ca5f", - "_tpl": "5a6b5b8a8dc32e001207faf3", - "parentId": "5a88595b86f7741822597733", - "slotId": "mod_barrel" - }, - { - "_id": "5a8864f986f774796c36ca60", - "_tpl": "5a7ad1fb51dfba0013379715", - "parentId": "5a8864f986f774796c36ca5f", - "slotId": "mod_muzzle" - }, - { - "_id": "5a88595b86f7741822597745", - "_tpl": "5a702d198dc32e000b452fc3", - "parentId": "5a88595b86f7741822597733", - "slotId": "mod_reciever" - }, - { - "_id": "5a88595b86f7741822597746", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "5a88595b86f7741822597733", - "slotId": "mod_magazine" - } - ] - }, - "5fd251a31189a17bcc172662": { - "_id": "5fd251a31189a17bcc172662", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "mcx_short_default", - "_parent": "5fd35eb1a8c881276c55e714", - "_items": [ - { - "_id": "5fd35eb1a8c881276c55e714", - "_tpl": "5fbcc1d9016cce60e8341ab3", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5fd35eb1a8c881276c55e715", - "_tpl": "5fbcbd6c187fea44d52eda14", - "parentId": "5fd35eb1a8c881276c55e714", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5fd35eb1a8c881276c55e716", - "_tpl": "55d4887d4bdc2d962f8b4570", - "parentId": "5fd35eb1a8c881276c55e714", - "slotId": "mod_magazine" - }, - { - "_id": "5fd35eb1a8c881276c55e717", - "_tpl": "5fbcc3e4d6fa9c00c571bb58", - "parentId": "5fd35eb1a8c881276c55e714", - "slotId": "mod_reciever" - }, - { - "_id": "5fd35eb1a8c881276c55e718", - "_tpl": "5fbbfacda56d053a3543f799", - "parentId": "5fd35eb1a8c881276c55e717", - "slotId": "mod_barrel" - }, - { - "_id": "5fd35eb1a8c881276c55e719", - "_tpl": "5fbc22ccf24b94483f726483", - "parentId": "5fd35eb1a8c881276c55e718", - "slotId": "mod_muzzle" - }, - { - "_id": "5fd35eb1a8c881276c55e71a", - "_tpl": "5fbcbd10ab884124df0cd563", - "parentId": "5fd35eb1a8c881276c55e719", - "slotId": "mod_muzzle_000" - }, - { - "_id": "5fd35eb1a8c881276c55e71b", - "_tpl": "5fbc210bf24b94483f726481", - "parentId": "5fd35eb1a8c881276c55e718", - "slotId": "mod_gas_block" - }, - { - "_id": "5fd35eb1a8c881276c55e71c", - "_tpl": "5fbc226eca32ed67276c155d", - "parentId": "5fd35eb1a8c881276c55e717", - "slotId": "mod_handguard" - }, - { - "_id": "5fd35eb1a8c881276c55e71d", - "_tpl": "5fc0fa362770a0045c59c677", - "parentId": "5fd35eb1a8c881276c55e71c", - "slotId": "mod_sight_front" - }, - { - "_id": "5fd35eb1a8c881276c55e71e", - "_tpl": "5fc0fa957283c4046c58147e", - "parentId": "5fd35eb1a8c881276c55e717", - "slotId": "mod_sight_rear" - }, - { - "_id": "5fd35eb1a8c881276c55e71f", - "_tpl": "5fbcc437d724d907e2077d5c", - "parentId": "5fd35eb1a8c881276c55e714", - "slotId": "mod_stock" - }, - { - "_id": "5fd35eb1a8c881276c55e720", - "_tpl": "5fbcc640016cce60e8341acc", - "parentId": "5fd35eb1a8c881276c55e714", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "5fbcc1d9016cce60e8341ab3" - }, - "5c0c202e86f77448687e0368": { - "_id": "5c0c202e86f77448687e0368", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "mosin sniper obrez", - "_parent": "5c0c202e86f77448687e036a", - "_items": [ - { - "_id": "5c0c202e86f77448687e036a", - "_tpl": "5ae08f0a5acfc408fb1398a1", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c0c202e86f77448687e036b", - "_tpl": "5ae0973a5acfc4001562206c", - "parentId": "5c0c202e86f77448687e036a", - "slotId": "mod_magazine" - }, - { - "_id": "5c0c202e86f77448687e036c", - "_tpl": "5bfd36290db834001966869a", - "parentId": "5c0c202e86f77448687e036a", - "slotId": "mod_stock" - }, - { - "_id": "5c0c202e86f77448687e036d", - "_tpl": "5bfd4cd60db834001c38f095", - "parentId": "5c0c202e86f77448687e036a", - "slotId": "mod_barrel" - }, - { - "_id": "5c0c202e86f77448687e036e", - "_tpl": "5bfd4c980db834001b73449d", - "parentId": "5c0c202e86f77448687e036d", - "slotId": "mod_sight_rear" - } - ] - }, - "5d23424c86f7740d5e50ce65": { - "_id": "5d23424c86f7740d5e50ce65", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "p90 SBRT", - "_parent": "5d23424c86f7740d5e50ce6c", - "_items": [ - { - "_id": "5d23424c86f7740d5e50ce6c", - "_tpl": "5cc82d76e24e8d00134b4b83", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5d23424c86f7740d5e50ce6d", - "_tpl": "5cc70093e4a949033c734312", - "parentId": "5d23424c86f7740d5e50ce6c", - "slotId": "mod_magazine" - }, - { - "_id": "5d23424c86f7740d5e50ce6e", - "_tpl": "5cebec10d7f00c065703d185", - "parentId": "5d23424c86f7740d5e50ce6c", - "slotId": "mod_stock" - }, - { - "_id": "5d23424c86f7740d5e50ce6f", - "_tpl": "5cc700d4e4a949000f0f0f28", - "parentId": "5d23424c86f7740d5e50ce6e", - "slotId": "mod_stock_000" - }, - { - "_id": "5d23424c86f7740d5e50ce70", - "_tpl": "5cc700ede4a949033c734315", - "parentId": "5d23424c86f7740d5e50ce6c", - "slotId": "mod_reciever" - }, - { - "_id": "5d23424c86f7740d5e50ce71", - "_tpl": "5cc701d7e4a94900100ac4e7", - "parentId": "5d23424c86f7740d5e50ce6c", - "slotId": "mod_barrel" - }, - { - "_id": "5d23424c86f7740d5e50ce72", - "_tpl": "5cc6ea85e4a949000e1ea3c3", - "parentId": "5d23424c86f7740d5e50ce6c", - "slotId": "mod_charge" - } - ] - }, - "5d4d617f86f77449c463d107": { - "_id": "5d4d617f86f77449c463d107", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "tx-15 default", - "_parent": "5d4d617f86f77449c463d116", - "_items": [ - { - "_id": "5d4d617f86f77449c463d116", - "_tpl": "5d43021ca4b9362eab4b5e25", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5d4d617f86f77449c463d117", - "_tpl": "55802f5d4bdc2dac148b458f", - "parentId": "5d4d617f86f77449c463d116", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5d4d617f86f77449c463d118", - "_tpl": "5aaa5dfee5b5b000140293d3", - "parentId": "5d4d617f86f77449c463d116", - "slotId": "mod_magazine" - }, - { - "_id": "5d4d617f86f77449c463d119", - "_tpl": "5d4405aaa4b9361e6a4e6bd3", - "parentId": "5d4d617f86f77449c463d116", - "slotId": "mod_reciever" - }, - { - "_id": "5d4d617f86f77449c463d11a", - "_tpl": "5d440b93a4b9364276578d4b", - "parentId": "5d4d617f86f77449c463d119", - "slotId": "mod_barrel" - }, - { - "_id": "5d4d617f86f77449c463d11b", - "_tpl": "5d440625a4b9361eec4ae6c5", - "parentId": "5d4d617f86f77449c463d11a", - "slotId": "mod_muzzle" - }, - { - "_id": "5d4d617f86f77449c463d11c", - "_tpl": "5d44064fa4b9361e4f6eb8b5", - "parentId": "5d4d617f86f77449c463d11b", - "slotId": "mod_muzzle" - }, - { - "_id": "5d4d617f86f77449c463d11d", - "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "5d4d617f86f77449c463d11a", - "slotId": "mod_gas_block" - }, - { - "_id": "5d4d617f86f77449c463d11e", - "_tpl": "5d4405f0a4b9361e6a4e6bd9", - "parentId": "5d4d617f86f77449c463d119", - "slotId": "mod_handguard" - }, - { - "_id": "5d4d617f86f77449c463d11f", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "5d4d617f86f77449c463d11e", - "slotId": "mod_mount_004" - }, - { - "_id": "5d4d617f86f77449c463d120", - "_tpl": "5b7be4895acfc400170e2dd5", - "parentId": "5d4d617f86f77449c463d11e", - "slotId": "mod_foregrip" - }, - { - "_id": "5d4d617f86f77449c463d121", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "5d4d617f86f77449c463d116", - "slotId": "mod_stock" - }, - { - "_id": "5d4d617f86f77449c463d122", - "_tpl": "5d4406a8a4b9361e4f6eb8b7", - "parentId": "5d4d617f86f77449c463d121", - "slotId": "mod_stock_000" - }, - { - "_id": "5d4d617f86f77449c463d123", - "_tpl": "5d44334ba4b9362b346d1948", - "parentId": "5d4d617f86f77449c463d116", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "5d43021ca4b9362eab4b5e25" - }, - "5a327f7c86f77475187e509a": { - "_id": "5a327f7c86f77475187e509a", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "SR1M x4 attack silenced", - "_parent": "5a327f7c86f77475187e5095", - "_items": [ - { - "_id": "5a327f7c86f77475187e5095", - "_tpl": "59f98b4986f7746f546d2cef" - }, - { - "_id": "5a327f7c86f77475187e5096", - "_tpl": "5a27bad7c4a282000b15184b", - "parentId": "5a327f7c86f77475187e5095", - "slotId": "mod_mount" - }, - { - "_id": "5a327f7c86f77475187e5098", - "_tpl": "5a27b3d0c4a282000d721ec1", - "parentId": "5a327f7c86f77475187e5096", - "slotId": "mod_mount" - }, - { - "_id": "5a327f7c86f77475187e5099", - "_tpl": "5a27b6bec4a282000e496f78", - "parentId": "5a327f7c86f77475187e5098", - "slotId": "mod_muzzle" - }, - { - "_id": "5a327f7c86f77475187e5097", - "_tpl": "59f99a7d86f7745b134aa97b", - "parentId": "5a327f7c86f77475187e5095", - "slotId": "mod_magazine" - } - ] - }, - "5a13df5286f774032f5454a0": { - "_id": "5a13df5286f774032f5454a0", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Saiga-9 Default", - "_parent": "5a13df5286f774032f545497", - "_items": [ - { - "_id": "5a13df5286f774032f545497", - "_tpl": "59f9cabd86f7743a10721f46" - }, - { - "_id": "5a13df5286f774032f545498", - "_tpl": "5998517986f7746017232f7e", - "parentId": "5a13df5286f774032f545497", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5a13df5286f774032f545499", - "_tpl": "599851db86f77467372f0a18", - "parentId": "5a13df5286f774032f545497", - "slotId": "mod_stock" - }, - { - "_id": "5a13df5286f774032f54549a", - "_tpl": "5998529a86f774647f44f421", - "parentId": "5a13df5286f774032f545497", - "slotId": "mod_magazine" - }, - { - "_id": "5a13df5286f774032f54549b", - "_tpl": "5998598e86f7740b3f498a86", - "parentId": "5a13df5286f774032f545497", - "slotId": "mod_muzzle" - }, - { - "_id": "5a13df5286f774032f54549c", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "5a13df5286f774032f545497", - "slotId": "mod_reciever" - }, - { - "_id": "5a13df5286f774032f54549d", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "5a13df5286f774032f545497", - "slotId": "mod_sight_rear" - }, - { - "_id": "5a13df5286f774032f54549e", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "5a13df5286f774032f545497", - "slotId": "mod_gas_block" - }, - { - "_id": "5a13df5286f774032f54549f", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "5a13df5286f774032f54549e", - "slotId": "mod_handguard" - } - ], - "_encyclopedia": "59f9cabd86f7743a10721f46" - }, - "5a88aed086f77476cd391963": { - "_id": "5a88aed086f77476cd391963", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "glock fischer development", - "_parent": "5a886a6186f77439ae323413", - "_items": [ - { - "_id": "5a886a6186f77439ae323413", - "_tpl": "5a7ae0c351dfba0017554310" - }, - { - "_id": "5a886a6186f77439ae32341a", - "_tpl": "5a6b5f868dc32e000a311389", - "parentId": "5a886a6186f77439ae323413", - "slotId": "mod_barrel" - }, - { - "_id": "5a886a6186f77439ae32341b", - "_tpl": "5a7b4960e899ef197b331a2d", - "parentId": "5a886a6186f77439ae323413", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5a886a6186f77439ae32341c", - "_tpl": "5a6f5e048dc32e00094b97da", - "parentId": "5a886a6186f77439ae323413", - "slotId": "mod_reciever" - }, - { - "_id": "5a886a6186f77439ae32342a", - "_tpl": "5a7d9122159bd4001438dbf4", - "parentId": "5a886a6186f77439ae32341c", - "slotId": "mod_sight_rear" - }, - { - "_id": "5a886a6186f77439ae32342b", - "_tpl": "5a7d90eb159bd400165484f1", - "parentId": "5a886a6186f77439ae32341c", - "slotId": "mod_sight_front" - }, - { - "_id": "5a886a6186f77439ae32341d", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "5a886a6186f77439ae323413", - "slotId": "mod_magazine" - }, - { - "_id": "5a886a6186f77439ae32341e", - "_tpl": "5a7ad74e51dfba0015068f45", - "parentId": "5a886a6186f77439ae323413", - "slotId": "mod_tactical" - }, - { - "_id": "5a886a6186f77439ae32342c", - "_tpl": "5a7b483fe899ef0016170d15", - "parentId": "5a886a6186f77439ae32341e", - "slotId": "mod_tactical" - } - ] - }, - "6398636bb483a550805be5e5": { - "_id": "6398636bb483a550805be5e5", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AUG_A1_default", - "_parent": "6398636bb483a550805be5e6", - "_items": [ - { - "_id": "6398636bb483a550805be5e6", - "_tpl": "62e7c4fba689e8c9c50dfc38", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6398636bb483a550805be5e7", - "_tpl": "62e7c98b550c8218d602cbb4", - "parentId": "6398636bb483a550805be5e6", - "slotId": "mod_magazine" - }, - { - "_id": "6398636bb483a550805be5e8", - "_tpl": "62e7c880f68e7a0676050c7c", - "parentId": "6398636bb483a550805be5e6", - "slotId": "mod_charge" - }, - { - "_id": "6398636bb483a550805be5e9", - "_tpl": "62ea7c793043d74a0306e19f", - "parentId": "6398636bb483a550805be5e6", - "slotId": "mod_reciever" - }, - { - "_id": "6398636bb483a550805be5ea", - "_tpl": "62e7c7f3c34ea971710c32fc", - "parentId": "6398636bb483a550805be5e9", - "slotId": "mod_barrel" - }, - { - "_id": "6398636bb483a550805be5eb", - "_tpl": "630f2872911356c17d06abc5", - "parentId": "6398636bb483a550805be5ea", - "slotId": "mod_muzzle_000" - }, - { - "_id": "6398636bb483a550805be5ec", - "_tpl": "634e61b0767cb15c4601a877", - "parentId": "6398636bb483a550805be5ea", - "slotId": "mod_foregrip" - } - ], - "_encyclopedia": "62e7c4fba689e8c9c50dfc38" - }, - "5c0c1dba86f7743e667da897": { - "_id": "5c0c1dba86f7743e667da897", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "rem700 AAC SD", - "_parent": "5c0c1dba86f7743e667da89d", - "_items": [ - { - "_id": "5c0c1dba86f7743e667da89d", - "_tpl": "5bfea6e90db834001b7347f3", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c0c1dba86f7743e667da89e", - "_tpl": "5bfea7ad0db834001c38f1ee", - "parentId": "5c0c1dba86f7743e667da89d", - "slotId": "mod_magazine" - }, - { - "_id": "5c0c1dba86f7743e667da89f", - "_tpl": "5bfeb32b0db834001a6694d9", - "parentId": "5c0c1dba86f7743e667da89d", - "slotId": "mod_stock" - }, - { - "_id": "5c0c1dba86f7743e667da8a0", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "5c0c1dba86f7743e667da89d", - "slotId": "mod_barrel" - }, - { - "_id": "5c0c1dba86f7743e667da8a1", - "_tpl": "5a34fd2bc4a282329a73b4c5", - "parentId": "5c0c1dba86f7743e667da8a0", - "slotId": "mod_muzzle" - }, - { - "_id": "5c0c1dba86f7743e667da8a2", - "_tpl": "5a34fe59c4a282000b1521a2", - "parentId": "5c0c1dba86f7743e667da8a1", - "slotId": "mod_muzzle" - }, - { - "_id": "5c0c1dba86f7743e667da8a3", - "_tpl": "5bfebc5e0db834001a6694e5", - "parentId": "5c0c1dba86f7743e667da89d", - "slotId": "mod_mount" - }, - { - "_id": "5c0c1dba86f7743e667da8a4", - "_tpl": "5a37cb10c4a282329a73b4e7", - "parentId": "5c0c1dba86f7743e667da8a3", - "slotId": "mod_scope" - } - ] - }, - "5d383ee786f7742a15793860": { - "_id": "5d383ee786f7742a15793860", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "rem700 arch", - "_parent": "5d38512f86f77479f81e48e7", - "_items": [ - { - "_id": "5d38512f86f77479f81e48e7", - "_tpl": "5bfea6e90db834001b7347f3", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5d38512f86f77479f81e48e8", - "_tpl": "5d25af8f8abbc3055079fec5", - "parentId": "5d38512f86f77479f81e48e7", - "slotId": "mod_magazine" - }, - { - "_id": "5d38512f86f77479f81e48e9", - "_tpl": "5cf13123d7f00c1085616a50", - "parentId": "5d38512f86f77479f81e48e7", - "slotId": "mod_stock" - }, - { - "_id": "5d38512f86f77479f81e48ea", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "5d38512f86f77479f81e48e7", - "slotId": "mod_barrel" - }, - { - "_id": "5d38512f86f77479f81e48eb", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "5d38512f86f77479f81e48ea", - "slotId": "mod_muzzle" - } - ] - }, - "5c0c1d6586f7743e5335d264": { - "_id": "5c0c1d6586f7743e5335d264", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "rem700 default", - "_parent": "5c0c1d6586f7743e5335d269", - "_items": [ - { - "_id": "5c0c1d6586f7743e5335d269", - "_tpl": "5bfea6e90db834001b7347f3", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c0c1d6586f7743e5335d26a", - "_tpl": "5bfea7ad0db834001c38f1ee", - "parentId": "5c0c1d6586f7743e5335d269", - "slotId": "mod_magazine" - }, - { - "_id": "5c0c1d6586f7743e5335d26b", - "_tpl": "5bfeb32b0db834001a6694d9", - "parentId": "5c0c1d6586f7743e5335d269", - "slotId": "mod_stock" - }, - { - "_id": "5c0c1d6586f7743e5335d26c", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "5c0c1d6586f7743e5335d269", - "slotId": "mod_barrel" - } - ], - "_encyclopedia": "5bfea6e90db834001b7347f3" - }, - "5c98be1e86f7741cc96ffd79": { - "_id": "5c98be1e86f7741cc96ffd79", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "SVDS no scope default", - "_parent": "5c98be1e86f7741cc96ffd86", - "_items": [ - { - "_id": "5c98be1e86f7741cc96ffd86", - "_tpl": "5c46fbd72e2216398b5a8c9c", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c98be1e86f7741cc96ffd87", - "_tpl": "5c471be12e221602b66cd9ac", - "parentId": "5c98be1e86f7741cc96ffd86", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5c98be1e86f7741cc96ffd88", - "_tpl": "5c471c442e221602b542a6f8", - "parentId": "5c98be1e86f7741cc96ffd86", - "slotId": "mod_magazine" - }, - { - "_id": "5c98be1e86f7741cc96ffd89", - "_tpl": "5c471b5d2e221602b21d4e14", - "parentId": "5c98be1e86f7741cc96ffd86", - "slotId": "mod_stock" - }, - { - "_id": "5c98be1e86f7741cc96ffd8a", - "_tpl": "5c471cb32e221602b177afaa", - "parentId": "5c98be1e86f7741cc96ffd86", - "slotId": "mod_barrel" - }, - { - "_id": "5c98be1e86f7741cc96ffd8b", - "_tpl": "5c471bfc2e221602b21d4e17", - "parentId": "5c98be1e86f7741cc96ffd8a", - "slotId": "mod_muzzle" - }, - { - "_id": "5c98be1e86f7741cc96ffd8c", - "_tpl": "5c471ba12e221602b3137d76", - "parentId": "5c98be1e86f7741cc96ffd8b", - "slotId": "mod_sight_front" - }, - { - "_id": "5c98be1e86f7741cc96ffd8d", - "_tpl": "5c471c842e221615214259b5", - "parentId": "5c98be1e86f7741cc96ffd8a", - "slotId": "mod_gas_block" - }, - { - "_id": "5c98be1e86f7741cc96ffd8e", - "_tpl": "5c471c2d2e22164bef5d077f", - "parentId": "5c98be1e86f7741cc96ffd86", - "slotId": "mod_mount_001" - }, - { - "_id": "5c98be1e86f7741cc96ffd8f", - "_tpl": "5c471c6c2e221602b66cd9ae", - "parentId": "5c98be1e86f7741cc96ffd8e", - "slotId": "mod_handguard" - }, - { - "_id": "5c98be1e86f7741cc96ffd90", - "_tpl": "5c471b7e2e2216152006e46c", - "parentId": "5c98be1e86f7741cc96ffd8e", - "slotId": "mod_sight_rear" - }, - { - "_id": "5c98be1e86f7741cc96ffd91", - "_tpl": "5c471bd12e221602b4129c3a", - "parentId": "5c98be1e86f7741cc96ffd86", - "slotId": "mod_reciever" - } - ], - "_encyclopedia": "5c46fbd72e2216398b5a8c9c" - }, - "62875070bbbd995f3c41b225": { - "_id": "62875070bbbd995f3c41b225", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "bigpipe_mcx", - "_parent": "62875070bbbd995f3c41b23c", - "_items": [ - { - "_id": "62875070bbbd995f3c41b23c", - "_tpl": "5fbcc1d9016cce60e8341ab3", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "62875070bbbd995f3c41b23d", - "_tpl": "55802f5d4bdc2dac148b458f", - "parentId": "62875070bbbd995f3c41b23c", - "slotId": "mod_pistol_grip" - }, - { - "_id": "62875070bbbd995f3c41b23e", - "_tpl": "55802d5f4bdc2dac148b458e", - "parentId": "62875070bbbd995f3c41b23c", - "slotId": "mod_magazine" - }, - { - "_id": "62875070bbbd995f3c41b23f", - "_tpl": "5fbcc3e4d6fa9c00c571bb58", - "parentId": "62875070bbbd995f3c41b23c", - "slotId": "mod_reciever" - }, - { - "_id": "62875070bbbd995f3c41b240", - "_tpl": "58d39d3d86f77445bb794ae7", - "parentId": "62875070bbbd995f3c41b23f", - "slotId": "mod_scope" - }, - { - "_id": "62875070bbbd995f3c41b241", - "_tpl": "58d39b0386f77443380bf13c", - "parentId": "62875070bbbd995f3c41b240", - "slotId": "mod_scope" - }, - { - "_id": "62875070bbbd995f3c41b242", - "_tpl": "58d399e486f77442e0016fe7", - "parentId": "62875070bbbd995f3c41b241", - "slotId": "mod_scope" - }, - { - "_id": "62875070bbbd995f3c41b243", - "_tpl": "5fbbfabed5cb881a7363194e", - "parentId": "62875070bbbd995f3c41b23f", - "slotId": "mod_barrel" - }, - { - "_id": "62875070bbbd995f3c41b244", - "_tpl": "5fbc22ccf24b94483f726483", - "parentId": "62875070bbbd995f3c41b243", - "slotId": "mod_muzzle" - }, - { - "_id": "62875070bbbd995f3c41b245", - "_tpl": "5fbcbcf593164a5b6278efb2", - "parentId": "62875070bbbd995f3c41b244", - "slotId": "mod_muzzle_000" - }, - { - "_id": "62875070bbbd995f3c41b246", - "_tpl": "5fbe760793164a5b6278efc8", - "parentId": "62875070bbbd995f3c41b244", - "slotId": "mod_muzzle_001" - }, - { - "_id": "62875070bbbd995f3c41b247", - "_tpl": "5fbc210bf24b94483f726481", - "parentId": "62875070bbbd995f3c41b243", - "slotId": "mod_gas_block" - }, - { - "_id": "62875070bbbd995f3c41b248", - "_tpl": "5fbc227aa56d053a3543f79e", - "parentId": "62875070bbbd995f3c41b23f", - "slotId": "mod_handguard" - }, - { - "_id": "62875070bbbd995f3c41b249", - "_tpl": "59e0bdb186f774156f04ce82", - "parentId": "62875070bbbd995f3c41b248", - "slotId": "mod_mount_001" - }, - { - "_id": "62875070bbbd995f3c41b24a", - "_tpl": "57d17e212459775a1179a0f5", - "parentId": "62875070bbbd995f3c41b249", - "slotId": "mod_tactical" - }, - { - "_id": "62875070bbbd995f3c41b24b", - "_tpl": "57d17c5e2459775a5c57d17d", - "parentId": "62875070bbbd995f3c41b24a", - "slotId": "mod_flashlight" - }, - { - "_id": "62875070bbbd995f3c41b24c", - "_tpl": "5c17804b2e2216152006c02f", - "parentId": "62875070bbbd995f3c41b248", - "slotId": "mod_sight_front" - }, - { - "_id": "62875070bbbd995f3c41b24d", - "_tpl": "5fc0f9cbd6fa9c00c571bb90", - "parentId": "62875070bbbd995f3c41b248", - "slotId": "mod_foregrip" - }, - { - "_id": "62875070bbbd995f3c41b24e", - "_tpl": "5c1780312e221602b66cc189", - "parentId": "62875070bbbd995f3c41b23f", - "slotId": "mod_sight_rear" - }, - { - "_id": "62875070bbbd995f3c41b24f", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "62875070bbbd995f3c41b23f", - "slotId": "mod_tactical" - }, - { - "_id": "62875070bbbd995f3c41b250", - "_tpl": "5fbcc429900b1d5091531dd7", - "parentId": "62875070bbbd995f3c41b23c", - "slotId": "mod_stock" - }, - { - "_id": "62875070bbbd995f3c41b251", - "_tpl": "5fbcc640016cce60e8341acc", - "parentId": "62875070bbbd995f3c41b23c", - "slotId": "mod_charge" - } - ] - }, - "6287549856af630b0f672cc4": { - "_id": "6287549856af630b0f672cc4", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "knight_mdr308", - "_parent": "6287549856af630b0f672cd2", - "_items": [ - { - "_id": "6287549856af630b0f672cd2", - "_tpl": "5dcbd56fdbd3d91b3e5468d5", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6287549856af630b0f672cd3", - "_tpl": "5c48a2c22e221602b313fb6c", - "parentId": "6287549856af630b0f672cd2", - "slotId": "mod_pistol_grip" - }, - { - "_id": "6287549856af630b0f672cd4", - "_tpl": "5a3501acc4a282000d72293a", - "parentId": "6287549856af630b0f672cd2", - "slotId": "mod_magazine" - }, - { - "_id": "6287549856af630b0f672cd5", - "_tpl": "5dcbd6b46ec07c0c4347a564", - "parentId": "6287549856af630b0f672cd2", - "slotId": "mod_handguard" - }, - { - "_id": "6287549856af630b0f672cd6", - "_tpl": "5b7be4895acfc400170e2dd5", - "parentId": "6287549856af630b0f672cd5", - "slotId": "mod_mount_000" - }, - { - "_id": "6287549856af630b0f672cd7", - "_tpl": "58c157be86f77403c74b2bb6", - "parentId": "6287549856af630b0f672cd6", - "slotId": "mod_foregrip" - }, - { - "_id": "6287549856af630b0f672cd8", - "_tpl": "5c06595c0db834001a66af6c", - "parentId": "6287549856af630b0f672cd5", - "slotId": "mod_tactical" - }, - { - "_id": "6287549856af630b0f672cd9", - "_tpl": "5dcbe9431e1f4616d354987e", - "parentId": "6287549856af630b0f672cd2", - "slotId": "mod_barrel" - }, - { - "_id": "6287549856af630b0f672cda", - "_tpl": "5a34fd2bc4a282329a73b4c5", - "parentId": "6287549856af630b0f672cd9", - "slotId": "mod_muzzle" - }, - { - "_id": "6287549856af630b0f672cdb", - "_tpl": "59db7eed86f77461f8380365", - "parentId": "6287549856af630b0f672cd2", - "slotId": "mod_scope" - }, - { - "_id": "6287549856af630b0f672cdc", - "_tpl": "5c052a900db834001a66acbd", - "parentId": "6287549856af630b0f672cdb", - "slotId": "mod_scope" - }, - { - "_id": "6287549856af630b0f672cdd", - "_tpl": "5a33bab6c4a28200741e22f8", - "parentId": "6287549856af630b0f672cdc", - "slotId": "mod_mount" - }, - { - "_id": "6287549856af630b0f672cde", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "6287549856af630b0f672cdd", - "slotId": "mod_scope" - }, - { - "_id": "6287549856af630b0f672cdf", - "_tpl": "5dfa3d7ac41b2312ea33362a", - "parentId": "6287549856af630b0f672cd2", - "slotId": "mod_sight_rear" - } - ] - }, - "5a8ae43686f774377b73cfb3": { - "_id": "5a8ae43686f774377b73cfb3", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "mpx_sd_mid_range", - "_parent": "5a8ae43686f774377b73cfa2", - "_items": [ - { - "_id": "5a8ae43686f774377b73cfa2", - "_tpl": "58948c8e86f77409493f7266" - }, - { - "_id": "5a8ae43686f774377b73cfa3", - "_tpl": "57c55efc2459772d2c6271e7", - "parentId": "5a8ae43686f774377b73cfa2", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5a8ae43686f774377b73cfa4", - "_tpl": "5894a05586f774094708ef75", - "parentId": "5a8ae43686f774377b73cfa2", - "slotId": "mod_magazine" - }, - { - "_id": "5a8ae43686f774377b73cfa5", - "_tpl": "5894a5b586f77426d2590767", - "parentId": "5a8ae43686f774377b73cfa2", - "slotId": "mod_reciever" - }, - { - "_id": "5a8ae43686f774377b73cfa8", - "_tpl": "57adff4f24597737f373b6e6", - "parentId": "5a8ae43686f774377b73cfa5", - "slotId": "mod_scope" - }, - { - "_id": "5a8ae43686f774377b73cfac", - "_tpl": "58d2664f86f7747fec5834f6", - "parentId": "5a8ae43686f774377b73cfa8", - "slotId": "mod_scope" - }, - { - "_id": "5a8ae43686f774377b73cfb0", - "_tpl": "58d268fc86f774111273f8c2", - "parentId": "5a8ae43686f774377b73cfac", - "slotId": "mod_scope" - }, - { - "_id": "5a8ae43686f774377b73cfa9", - "_tpl": "58aeaaa886f7744fc1560f81", - "parentId": "5a8ae43686f774377b73cfa5", - "slotId": "mod_barrel" - }, - { - "_id": "5a8ae43686f774377b73cfad", - "_tpl": "58aeac1b86f77457c419f475", - "parentId": "5a8ae43686f774377b73cfa9", - "slotId": "mod_muzzle" - }, - { - "_id": "5a8ae43686f774377b73cfaa", - "_tpl": "5894a42086f77426d2590762", - "parentId": "5a8ae43686f774377b73cfa5", - "slotId": "mod_handguard" - }, - { - "_id": "5a8ae43686f774377b73cfae", - "_tpl": "58a56f8d86f774651579314c", - "parentId": "5a8ae43686f774377b73cfaa", - "slotId": "mod_mount_000" - }, - { - "_id": "5a8ae43686f774377b73cfb1", - "_tpl": "5a7b483fe899ef0016170d15", - "parentId": "5a8ae43686f774377b73cfae", - "slotId": "mod_tactical" - }, - { - "_id": "5a8ae43686f774377b73cfaf", - "_tpl": "58a5c12e86f7745d585a2b9e", - "parentId": "5a8ae43686f774377b73cfaa", - "slotId": "mod_mount_001" - }, - { - "_id": "5a8ae43686f774377b73cfb2", - "_tpl": "59f8a37386f7747af3328f06", - "parentId": "5a8ae43686f774377b73cfaf", - "slotId": "mod_foregrip" - }, - { - "_id": "5a8ae43686f774377b73cfa6", - "_tpl": "58ac1bf086f77420ed183f9f", - "parentId": "5a8ae43686f774377b73cfa2", - "slotId": "mod_stock" - }, - { - "_id": "5a8ae43686f774377b73cfab", - "_tpl": "591aef7986f774139d495f03", - "parentId": "5a8ae43686f774377b73cfa6", - "slotId": "mod_stock" - }, - { - "_id": "5a8ae43686f774377b73cfa7", - "_tpl": "58949edd86f77409483e16a9", - "parentId": "5a8ae43686f774377b73cfa2", - "slotId": "mod_charge" - } - ] - }, - "5d38517786f7742a1468cf6a": { - "_id": "5d38517786f7742a1468cf6a", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "rem700 MRS", - "_parent": "5d38517786f7742a1468cf6e", - "_items": [ - { - "_id": "5d38517786f7742a1468cf6e", - "_tpl": "5bfea6e90db834001b7347f3", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5d38517786f7742a1468cf6f", - "_tpl": "5d25a6538abbc306c62e630d", - "parentId": "5d38517786f7742a1468cf6e", - "slotId": "mod_magazine" - }, - { - "_id": "5d38517786f7742a1468cf70", - "_tpl": "5cde739cd7f00c0010373bd3", - "parentId": "5d38517786f7742a1468cf6e", - "slotId": "mod_stock" - }, - { - "_id": "5d38517786f7742a1468cf71", - "_tpl": "5a33ca0fc4a282000d72292f", - "parentId": "5d38517786f7742a1468cf70", - "slotId": "mod_stock" - }, - { - "_id": "5d38517786f7742a1468cf72", - "_tpl": "5a33cae9c4a28232980eb086", - "parentId": "5d38517786f7742a1468cf71", - "slotId": "mod_stock" - }, - { - "_id": "5d38517786f7742a1468cf73", - "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "5d38517786f7742a1468cf70", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5d38517786f7742a1468cf74", - "_tpl": "5cde7afdd7f00c000d36b89d", - "parentId": "5d38517786f7742a1468cf70", - "slotId": "mod_handguard" - }, - { - "_id": "5d38517786f7742a1468cf75", - "_tpl": "5a9d6d00a2750c5c985b5305", - "parentId": "5d38517786f7742a1468cf74", - "slotId": "mod_mount_000" - }, - { - "_id": "5d38517786f7742a1468cf76", - "_tpl": "5a9d6d00a2750c5c985b5305", - "parentId": "5d38517786f7742a1468cf74", - "slotId": "mod_mount_001" - }, - { - "_id": "5d38517786f7742a1468cf77", - "_tpl": "5a9d6d00a2750c5c985b5305", - "parentId": "5d38517786f7742a1468cf74", - "slotId": "mod_mount_002" - }, - { - "_id": "5d38517786f7742a1468cf78", - "_tpl": "5a9d6d13a2750c00164f6b03", - "parentId": "5d38517786f7742a1468cf74", - "slotId": "mod_foregrip" - }, - { - "_id": "5d38517786f7742a1468cf79", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "5d38517786f7742a1468cf6e", - "slotId": "mod_barrel" - }, - { - "_id": "5d38517786f7742a1468cf7a", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "5d38517786f7742a1468cf79", - "slotId": "mod_muzzle" - }, - { - "_id": "5d38517786f7742a1468cf7b", - "_tpl": "5cde7b43d7f00c000d36b93e", - "parentId": "5d38517786f7742a1468cf6e", - "slotId": "mod_mount" - } - ] - }, - "629711787af74c3ff577951d": { - "_id": "629711787af74c3ff577951d", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "SAG545_short", - "_parent": "629711787af74c3ff577951f", - "_items": [ - { - "_id": "629711787af74c3ff577951f", - "_tpl": "628b9c37a733087d0d7fe84b", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "629711787af74c3ff5779520", - "_tpl": "628b8d83717774443b15e248", - "parentId": "629711787af74c3ff577951f", - "slotId": "mod_gas_block" - }, - { - "_id": "629711787af74c3ff5779521", - "_tpl": "628b916469015a4e1711ed8d", - "parentId": "629711787af74c3ff5779520", - "slotId": "mod_handguard" - }, - { - "_id": "629711787af74c3ff5779522", - "_tpl": "628b9be6cff66b70c002b14c", - "parentId": "629711787af74c3ff5779521", - "slotId": "mod_reciever" - }, - { - "_id": "629711787af74c3ff5779523", - "_tpl": "628b9471078f94059a4b9bfb", - "parentId": "629711787af74c3ff5779522", - "slotId": "mod_sight_rear" - }, - { - "_id": "629711787af74c3ff5779524", - "_tpl": "5943eeeb86f77412d6384f6b", - "parentId": "629711787af74c3ff577951f", - "slotId": "mod_muzzle" - }, - { - "_id": "629711787af74c3ff5779525", - "_tpl": "5cf50850d7f00c056e24104c", - "parentId": "629711787af74c3ff577951f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "629711787af74c3ff5779526", - "_tpl": "628b9a40717774443b15e9f2", - "parentId": "629711787af74c3ff577951f", - "slotId": "mod_stock_000" - }, - { - "_id": "629711787af74c3ff5779527", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "629711787af74c3ff5779526", - "slotId": "mod_stock" - }, - { - "_id": "629711787af74c3ff5779528", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "629711787af74c3ff577951f", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "628b9c37a733087d0d7fe84b" - }, - "5dd7f8c524e5d7504a4e3077": { - "_id": "5dd7f8c524e5d7504a4e3077", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "ak-74_plum", - "_parent": "5dd7f8c524e5d7504a4e3081", - "_items": [ - { - "_id": "5dd7f8c524e5d7504a4e3081", - "_tpl": "5bf3e03b0db834001d2c4a9c", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5dd7f8c524e5d7504a4e3082", - "_tpl": "59c6633186f7740cf0493bb9", - "parentId": "5dd7f8c524e5d7504a4e3081", - "slotId": "mod_gas_block" - }, - { - "_id": "5dd7f8c524e5d7504a4e3083", - "_tpl": "5cbda9f4ae9215000e5b9bfc", - "parentId": "5dd7f8c524e5d7504a4e3082", - "slotId": "mod_handguard" - }, - { - "_id": "5dd7f8c524e5d7504a4e3084", - "_tpl": "5649aa744bdc2ded0b8b457e", - "parentId": "5dd7f8c524e5d7504a4e3081", - "slotId": "mod_muzzle" - }, - { - "_id": "5dd7f8c524e5d7504a4e3085", - "_tpl": "5649ad3f4bdc2df8348b4585", - "parentId": "5dd7f8c524e5d7504a4e3081", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5dd7f8c524e5d7504a4e3086", - "_tpl": "5649af094bdc2df8348b4586", - "parentId": "5dd7f8c524e5d7504a4e3081", - "slotId": "mod_reciever" - }, - { - "_id": "5dd7f8c524e5d7504a4e3087", - "_tpl": "5649b0544bdc2d1b2b8b458a", - "parentId": "5dd7f8c524e5d7504a4e3081", - "slotId": "mod_sight_rear" - }, - { - "_id": "5dd7f8c524e5d7504a4e3088", - "_tpl": "5cbdb1b0ae9215000d50e105", - "parentId": "5dd7f8c524e5d7504a4e3081", - "slotId": "mod_stock" - }, - { - "_id": "5dd7f8c524e5d7504a4e3089", - "_tpl": "5cbdaf89ae9215000e5b9c94", - "parentId": "5dd7f8c524e5d7504a4e3081", - "slotId": "mod_magazine" - } - ] - }, - "5c98bf9186f7740cf708c509": { - "_id": "5c98bf9186f7740cf708c509", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "VPO-101 default", - "_parent": "5c98bf9186f7740cf708c50a", - "_items": [ - { - "_id": "5c98bf9186f7740cf708c50a", - "_tpl": "5c501a4d2e221602b412b540", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c98bf9186f7740cf708c50b", - "_tpl": "5c5039be2e221602b177c9ff", - "parentId": "5c98bf9186f7740cf708c50a", - "slotId": "mod_gas_block" - }, - { - "_id": "5c98bf9186f7740cf708c50c", - "_tpl": "5c503d0a2e221602b542b7ef", - "parentId": "5c98bf9186f7740cf708c50a", - "slotId": "mod_reciever" - }, - { - "_id": "5c98bf9186f7740cf708c50d", - "_tpl": "5c503b1c2e221602b21d6e9d", - "parentId": "5c98bf9186f7740cf708c50a", - "slotId": "mod_sight_rear" - }, - { - "_id": "5c98bf9186f7740cf708c50e", - "_tpl": "5c503af12e221602b177ca02", - "parentId": "5c98bf9186f7740cf708c50a", - "slotId": "mod_stock" - }, - { - "_id": "5c98bf9186f7740cf708c50f", - "_tpl": "5c503ac82e221602b21d6e9a", - "parentId": "5c98bf9186f7740cf708c50a", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5c501a4d2e221602b412b540" - }, - "618ab0c66bbeff39ad4acf2e": { - "_id": "618ab0c66bbeff39ad4acf2e", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "Vityaz_FSB", - "_parent": "618ab0c66bbeff39ad4acf3b", - "_items": [ - { - "_id": "618ab0c66bbeff39ad4acf3b", - "_tpl": "59984ab886f7743e98271174", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "618ab0c66bbeff39ad4acf3c", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "618ab0c66bbeff39ad4acf3b", - "slotId": "mod_pistol_grip" - }, - { - "_id": "618ab0c66bbeff39ad4acf3d", - "_tpl": "5ac78eaf5acfc4001926317a", - "parentId": "618ab0c66bbeff39ad4acf3b", - "slotId": "mod_stock" - }, - { - "_id": "618ab0c66bbeff39ad4acf3e", - "_tpl": "5b222d405acfc400153af4fe", - "parentId": "618ab0c66bbeff39ad4acf3d", - "slotId": "mod_stock" - }, - { - "_id": "618ab0c66bbeff39ad4acf3f", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "618ab0c66bbeff39ad4acf3b", - "slotId": "mod_magazine" - }, - { - "_id": "618ab0c66bbeff39ad4acf40", - "_tpl": "56d59d3ad2720bdb418b4577", - "parentId": "618ab0c66bbeff39ad4acf3f", - "slotId": "cartridges", - "upd": { - "StackObjectsCount": 30 - } - }, - { - "_id": "618ab0c66bbeff39ad4acf41", - "_tpl": "59bfc5c886f7743bf6794e62", - "parentId": "618ab0c66bbeff39ad4acf3b", - "slotId": "mod_muzzle" - }, - { - "_id": "618ab0c66bbeff39ad4acf42", - "_tpl": "59985a6c86f77414ec448d17", - "parentId": "618ab0c66bbeff39ad4acf3b", - "slotId": "mod_reciever" - }, - { - "_id": "618ab0c66bbeff39ad4acf43", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "618ab0c66bbeff39ad4acf3b", - "slotId": "mod_gas_block" - }, - { - "_id": "618ab0c66bbeff39ad4acf44", - "_tpl": "5c617a5f2e2216000f1e81b3", - "parentId": "618ab0c66bbeff39ad4acf43", - "slotId": "mod_handguard" - }, - { - "_id": "618ab0c66bbeff39ad4acf45", - "_tpl": "5c1bc4812e22164bef5cfde7", - "parentId": "618ab0c66bbeff39ad4acf44", - "slotId": "mod_foregrip" - }, - { - "_id": "618ab0c66bbeff39ad4acf46", - "_tpl": "57ffaea724597779f52b3a4d", - "parentId": "618ab0c66bbeff39ad4acf44", - "slotId": "mod_tactical" - }, - { - "_id": "618ab0c66bbeff39ad4acf47", - "_tpl": "58d39d3d86f77445bb794ae7", - "parentId": "618ab0c66bbeff39ad4acf46", - "slotId": "mod_scope" - }, - { - "_id": "618ab0c66bbeff39ad4acf48", - "_tpl": "58d399e486f77442e0016fe7", - "parentId": "618ab0c66bbeff39ad4acf47", - "slotId": "mod_scope" - } - ] - }, - "5a88b0f686f77416370eca3e": { - "_id": "5a88b0f686f77416370eca3e", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "glock_zev_hex_surefire", - "_parent": "5a88595b86f7741822597732", - "_items": [ - { - "_id": "5a88595b86f7741822597732", - "_tpl": "5a7ae0c351dfba0017554310" - }, - { - "_id": "5a88680c86f77439ae3233c9", - "_tpl": "5a6b5b8a8dc32e001207faf3", - "parentId": "5a88595b86f7741822597732", - "slotId": "mod_barrel" - }, - { - "_id": "5a88680c86f77439ae3233d4", - "_tpl": "5a7ad0c451dfba0013379712", - "parentId": "5a88680c86f77439ae3233c9", - "slotId": "mod_muzzle" - }, - { - "_id": "5a88595b86f7741822597742", - "_tpl": "5a71e22f8dc32e00094b97f4", - "parentId": "5a88595b86f7741822597732", - "slotId": "mod_reciever" - }, - { - "_id": "5a886a6186f77439ae323422", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "5a88595b86f7741822597742", - "slotId": "mod_scope" - }, - { - "_id": "5a88595b86f7741822597743", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "5a88595b86f7741822597732", - "slotId": "mod_magazine" - }, - { - "_id": "5a886a6186f77439ae323415", - "_tpl": "56def37dd2720bec348b456a", - "parentId": "5a88595b86f7741822597732", - "slotId": "mod_tactical" - } - ] - }, - "5c0c1dff86f7744dba7a2892": { - "_id": "5c0c1dff86f7744dba7a2892", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "mosin infantry carbine", - "_parent": "5c0c1dff86f7744dba7a2894", - "_items": [ - { - "_id": "5c0c1dff86f7744dba7a2894", - "_tpl": "5bfd297f0db834001a669119", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c0c1dff86f7744dba7a2895", - "_tpl": "5ae0973a5acfc4001562206c", - "parentId": "5c0c1dff86f7744dba7a2894", - "slotId": "mod_magazine" - }, - { - "_id": "5c0c1dff86f7744dba7a2896", - "_tpl": "5bfd384c0db834001a6691d3", - "parentId": "5c0c1dff86f7744dba7a2894", - "slotId": "mod_stock" - }, - { - "_id": "5c0c1dff86f7744dba7a2897", - "_tpl": "5bfd4cbe0db834001b73449f", - "parentId": "5c0c1dff86f7744dba7a2894", - "slotId": "mod_barrel" - }, - { - "_id": "5c0c1dff86f7744dba7a2898", - "_tpl": "5ae099875acfc4001714e593", - "parentId": "5c0c1dff86f7744dba7a2897", - "slotId": "mod_sight_front" - }, - { - "_id": "5c0c1dff86f7744dba7a2899", - "_tpl": "5bfd4c980db834001b73449d", - "parentId": "5c0c1dff86f7744dba7a2897", - "slotId": "mod_sight_rear" - } - ] - }, - "5fd2517dbdd50d684f73a474": { - "_id": "5fd2517dbdd50d684f73a474", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "ump45_default", - "_parent": "5fd2517dbdd50d684f73a47c", - "_items": [ - { - "_id": "5fd2517dbdd50d684f73a47c", - "_tpl": "5fc3e272f8b6a877a729eac5", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5fd2517dbdd50d684f73a47d", - "_tpl": "5fc3e466187fea44d52eda90", - "parentId": "5fd2517dbdd50d684f73a47c", - "slotId": "mod_magazine" - }, - { - "_id": "5fd2517dbdd50d684f73a47e", - "_tpl": "5fc3e4ee7283c4046c5814af", - "parentId": "5fd2517dbdd50d684f73a47c", - "slotId": "mod_stock" - }, - { - "_id": "5fd2517dbdd50d684f73a47f", - "_tpl": "5fc3e4a27283c4046c5814ab", - "parentId": "5fd2517dbdd50d684f73a47c", - "slotId": "mod_barrel" - }, - { - "_id": "5fd2517dbdd50d684f73a480", - "_tpl": "5fc53954f8b6a877a729eaeb", - "parentId": "5fd2517dbdd50d684f73a47c", - "slotId": "mod_mount_000" - }, - { - "_id": "5fd2517dbdd50d684f73a481", - "_tpl": "5fc5396e900b1d5091531e72", - "parentId": "5fd2517dbdd50d684f73a47c", - "slotId": "mod_mount_001" - }, - { - "_id": "5fd2517dbdd50d684f73a482", - "_tpl": "5fc5396e900b1d5091531e72", - "parentId": "5fd2517dbdd50d684f73a47c", - "slotId": "mod_mount_002" - } - ], - "_encyclopedia": "5fc3e272f8b6a877a729eac5" - }, - "618ab08919394179c84fa57c": { - "_id": "618ab08919394179c84fa57c", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "SA58_AP", - "_parent": "618ab08919394179c84fa581", - "_items": [ - { - "_id": "618ab08919394179c84fa581", - "_tpl": "5b0bbe4e5acfc40dc528a72d", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "618ab08919394179c84fa582", - "_tpl": "5b099b965acfc400186331e6", - "parentId": "618ab08919394179c84fa581", - "slotId": "mod_pistol_grip" - }, - { - "_id": "618ab08919394179c84fa583", - "_tpl": "5b7d37845acfc400170e2f87", - "parentId": "618ab08919394179c84fa581", - "slotId": "mod_magazine" - }, - { - "_id": "618ab08919394179c84fa584", - "_tpl": "5b099a9d5acfc47a8607efe7", - "parentId": "618ab08919394179c84fa581", - "slotId": "mod_handguard" - }, - { - "_id": "618ab08919394179c84fa585", - "_tpl": "558032614bdc2de7118b4585", - "parentId": "618ab08919394179c84fa584", - "slotId": "mod_foregrip" - }, - { - "_id": "618ab08919394179c84fa586", - "_tpl": "5b099a765acfc47a8607efe3", - "parentId": "618ab08919394179c84fa581", - "slotId": "mod_barrel" - }, - { - "_id": "618ab08919394179c84fa587", - "_tpl": "5dfa3cd1b33c0951220c079b", - "parentId": "618ab08919394179c84fa586", - "slotId": "mod_muzzle" - }, - { - "_id": "618ab08919394179c84fa588", - "_tpl": "5b099bb25acfc400186331e8", - "parentId": "618ab08919394179c84fa581", - "slotId": "mod_reciever" - }, - { - "_id": "618ab08919394179c84fa589", - "_tpl": "5b30b0dc5acfc400153b7124", - "parentId": "618ab08919394179c84fa588", - "slotId": "mod_scope" - }, - { - "_id": "618ab08919394179c84fa58a", - "_tpl": "5b099bf25acfc4001637e683", - "parentId": "618ab08919394179c84fa581", - "slotId": "mod_stock" - }, - { - "_id": "618ab08919394179c84fa58b", - "_tpl": "5d120a10d7ad1a4e1026ba85", - "parentId": "618ab08919394179c84fa58a", - "slotId": "mod_stock_000" - }, - { - "_id": "618ab08919394179c84fa58c", - "_tpl": "5d120a28d7ad1a1c8962e295", - "parentId": "618ab08919394179c84fa58b", - "slotId": "mod_stock" - } - ] - }, - "59b81f7386f77421ac688a0a": { - "_id": "59b81f7386f77421ac688a0a", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "VITYAZ-SN Default", - "_parent": "5a3fdab186f774601a498470", - "_items": [ - { - "_id": "5a3fdab186f774601a498470", - "_tpl": "59984ab886f7743e98271174" - }, - { - "_id": "5a3fdab186f774601a498471", - "_tpl": "5998517986f7746017232f7e", - "parentId": "5a3fdab186f774601a498470", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5a3fdab186f774601a498472", - "_tpl": "599851db86f77467372f0a18", - "parentId": "5a3fdab186f774601a498470", - "slotId": "mod_stock" - }, - { - "_id": "5a3fdab186f774601a498473", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "5a3fdab186f774601a498470", - "slotId": "mod_magazine" - }, - { - "_id": "5a3fdab186f774601a498474", - "_tpl": "5998597786f77414ea6da093", - "parentId": "5a3fdab186f774601a498470", - "slotId": "mod_muzzle" - }, - { - "_id": "5a3fdab186f774601a498475", - "_tpl": "59985a8086f77414ec448d1a", - "parentId": "5a3fdab186f774601a498470", - "slotId": "mod_reciever" - }, - { - "_id": "5a3fdab186f774601a498476", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "5a3fdab186f774601a498470", - "slotId": "mod_sight_rear" - }, - { - "_id": "5a3fdab186f774601a498477", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "5a3fdab186f774601a498470", - "slotId": "mod_gas_block" - }, - { - "_id": "5a3fdab186f774601a498478", - "_tpl": "5648b1504bdc2d9d488b4584", - "parentId": "5a3fdab186f774601a498477", - "slotId": "mod_handguard" - } - ], - "_encyclopedia": "59984ab886f7743e98271174" - }, - "619d272b0f9e4513744e7699": { - "_id": "619d272b0f9e4513744e7699", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "USP Elite", - "_parent": "619d272b0f9e4513744e769a", - "_items": [ - { - "_id": "619d272b0f9e4513744e769a", - "_tpl": "6193a720f8ee7e52e42109ed", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "619d272b0f9e4513744e769b", - "_tpl": "6194f017ed0429009f543eaa", - "parentId": "619d272b0f9e4513744e769a", - "slotId": "mod_barrel" - }, - { - "_id": "619d272b0f9e4513744e769c", - "_tpl": "6194f5d418a3974e5e7421ef", - "parentId": "619d272b0f9e4513744e769a", - "slotId": "mod_reciever" - }, - { - "_id": "619d272b0f9e4513744e769d", - "_tpl": "6194f2df645b5d229654ad77", - "parentId": "619d272b0f9e4513744e769c", - "slotId": "mod_sight_rear" - }, - { - "_id": "619d272b0f9e4513744e769e", - "_tpl": "6194f3286db0f2477964e67d", - "parentId": "619d272b0f9e4513744e769c", - "slotId": "mod_sight_front" - }, - { - "_id": "619d272b0f9e4513744e769f", - "_tpl": "6193d3149fb0c665d5490e32", - "parentId": "619d272b0f9e4513744e769a", - "slotId": "mod_magazine" - }, - { - "_id": "619d272b0f9e4513744e76a0", - "_tpl": "6193d3cded0429009f543e6a", - "parentId": "619d272b0f9e4513744e769a", - "slotId": "mod_trigger" - }, - { - "_id": "619d272b0f9e4513744e76a1", - "_tpl": "6193d3be7c6c7b169525f0da", - "parentId": "619d272b0f9e4513744e769a", - "slotId": "mod_hammer" - }, - { - "_id": "619d272b0f9e4513744e76a2", - "_tpl": "6193d5d4f8ee7e52e4210a1b", - "parentId": "619d272b0f9e4513744e769a", - "slotId": "mod_catch" - }, - { - "_id": "619d272b0f9e4513744e76a3", - "_tpl": "619621a4de3cdf1d2614a7a7", - "parentId": "619d272b0f9e4513744e769a", - "slotId": "mod_mount_000" - } - ] - }, - "5b83f29886f7746d956305a1": { - "_id": "5b83f29886f7746d956305a1", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "keymod_10_prs_stock", - "_parent": "5b83f29886f7746d956305b0", - "_items": [ - { - "_id": "5b83f29886f7746d956305b0", - "_tpl": "5b0bbe4e5acfc40dc528a72d" - }, - { - "_id": "5b83f29886f7746d956305b1", - "_tpl": "5b7d679f5acfc4001a5c4024", - "parentId": "5b83f29886f7746d956305b0", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5b83f29886f7746d956305b2", - "_tpl": "5b7bef1e5acfc43d82528402", - "parentId": "5b83f29886f7746d956305b0", - "slotId": "mod_magazine" - }, - { - "_id": "5b83f29886f7746d956305b3", - "_tpl": "5b7bebc85acfc43bca706666", - "parentId": "5b83f29886f7746d956305b0", - "slotId": "mod_handguard" - }, - { - "_id": "5b83f29886f7746d956305b4", - "_tpl": "5b7be4895acfc400170e2dd5", - "parentId": "5b83f29886f7746d956305b3", - "slotId": "mod_mount_000" - }, - { - "_id": "5b83f29886f7746d956305b5", - "_tpl": "588226d124597767ad33f787", - "parentId": "5b83f29886f7746d956305b4", - "slotId": "mod_foregrip" - }, - { - "_id": "5b83f29886f7746d956305b6", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "5b83f29886f7746d956305b3", - "slotId": "mod_mount_001" - }, - { - "_id": "5b83f29886f7746d956305b7", - "_tpl": "5b7be1265acfc400161d0798", - "parentId": "5b83f29886f7746d956305b0", - "slotId": "mod_barrel" - }, - { - "_id": "5b83f29886f7746d956305b8", - "_tpl": "59bffc1f86f77435b128b872", - "parentId": "5b83f29886f7746d956305b7", - "slotId": "mod_muzzle" - }, - { - "_id": "5b83f29886f7746d956305b9", - "_tpl": "59bffbb386f77435b379b9c2", - "parentId": "5b83f29886f7746d956305b8", - "slotId": "mod_muzzle" - }, - { - "_id": "5b83f29886f7746d956305ba", - "_tpl": "5b0bc22d5acfc47a8607f085", - "parentId": "5b83f29886f7746d956305b0", - "slotId": "mod_sight_rear" - }, - { - "_id": "5b83f29886f7746d956305bb", - "_tpl": "5b099bb25acfc400186331e8", - "parentId": "5b83f29886f7746d956305b0", - "slotId": "mod_reciever" - }, - { - "_id": "5b83f29886f7746d956305bc", - "_tpl": "5b7d63b75acfc400170e2f8a", - "parentId": "5b83f29886f7746d956305b0", - "slotId": "mod_stock" - } - ] - }, - "5c98bd7386f7740cfb15654e": { - "_id": "5c98bd7386f7740cfb15654e", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "dt mdr default", - "_parent": "5c98bd7386f7740cfb156551", - "_items": [ - { - "_id": "5c98bd7386f7740cfb156551", - "_tpl": "5c488a752e221602b412af63", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c98bd7386f7740cfb156552", - "_tpl": "5c48a2c22e221602b313fb6c", - "parentId": "5c98bd7386f7740cfb156551", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5c98bd7386f7740cfb156553", - "_tpl": "55802d5f4bdc2dac148b458e", - "parentId": "5c98bd7386f7740cfb156551", - "slotId": "mod_magazine" - }, - { - "_id": "5c98bd7386f7740cfb156554", - "_tpl": "5c48a14f2e2216152006edd7", - "parentId": "5c98bd7386f7740cfb156551", - "slotId": "mod_handguard" - }, - { - "_id": "5c98bd7386f7740cfb156555", - "_tpl": "5c48a2852e221602b21d5923", - "parentId": "5c98bd7386f7740cfb156551", - "slotId": "mod_barrel" - }, - { - "_id": "5c98bd7386f7740cfb156556", - "_tpl": "5c48a2a42e221602b66d1e07", - "parentId": "5c98bd7386f7740cfb156555", - "slotId": "mod_muzzle" - } - ], - "_encyclopedia": "5c488a752e221602b412af63" - }, - "5f06d6bb4010601e3232cd22": { - "_id": "5f06d6bb4010601e3232cd22", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "moss590_default", - "_parent": "5f06d6bb4010601e3232cd2a", - "_items": [ - { - "_id": "5f06d6bb4010601e3232cd2a", - "_tpl": "5e870397991fd70db46995c8", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5f06d6bb4010601e3232cd2b", - "_tpl": "5e87071478f43e51ca2de5e1", - "parentId": "5f06d6bb4010601e3232cd2a", - "slotId": "mod_barrel" - }, - { - "_id": "5f06d6bb4010601e3232cd2c", - "_tpl": "5e8708d4ae379e67d22e0102", - "parentId": "5f06d6bb4010601e3232cd2b", - "slotId": "mod_sight_front" - }, - { - "_id": "5f06d6bb4010601e3232cd2d", - "_tpl": "5e87076ce2db31558c75a11d", - "parentId": "5f06d6bb4010601e3232cd2a", - "slotId": "mod_handguard" - }, - { - "_id": "5f06d6bb4010601e3232cd2e", - "_tpl": "5e87080c81c4ed43e83cefda", - "parentId": "5f06d6bb4010601e3232cd2a", - "slotId": "mod_magazine" - }, - { - "_id": "5f06d6bb4010601e3232cd2f", - "_tpl": "5e87116b81c4ed43e83cefdd", - "parentId": "5f06d6bb4010601e3232cd2a", - "slotId": "mod_stock" - }, - { - "_id": "5f06d6bb4010601e3232cd30", - "_tpl": "5e87114fe2db31558c75a120", - "parentId": "5f06d6bb4010601e3232cd2a", - "slotId": "mod_mount" - } - ], - "_encyclopedia": "5e870397991fd70db46995c8" - }, - "657eb19b7ba4217c5e65b689": { - "_id": "657eb19b7ba4217c5e65b689", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "9A91_default", - "_parent": "657eb19b7ba4217c5e65b68a", - "_items": [ - { - "_id": "657eb19b7ba4217c5e65b68a", - "_tpl": "644674a13d52156624001fbc", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "657eb19b7ba4217c5e65b68b", - "_tpl": "6450ec2e7da7133e5a09ca96", - "parentId": "657eb19b7ba4217c5e65b68a", - "slotId": "mod_magazine" - }, - { - "_id": "657eb19b7ba4217c5e65b68c", - "_tpl": "6450f21a3d52156624001fcf", - "parentId": "657eb19b7ba4217c5e65b68a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "657eb19b7ba4217c5e65b68d", - "_tpl": "6451167ad4928d46d30be3fd", - "parentId": "657eb19b7ba4217c5e65b68a", - "slotId": "mod_stock_000" - }, - { - "_id": "657eb19b7ba4217c5e65b68e", - "_tpl": "645122f6d4928d46d30be3ff", - "parentId": "657eb19b7ba4217c5e65b68a", - "slotId": "mod_barrel" - }, - { - "_id": "657eb19b7ba4217c5e65b68f", - "_tpl": "64527a263d52156624001fd7", - "parentId": "657eb19b7ba4217c5e65b68e", - "slotId": "mod_muzzle" - }, - { - "_id": "657eb19b7ba4217c5e65b690", - "_tpl": "644675573d52156624001fc9", - "parentId": "657eb19b7ba4217c5e65b68e", - "slotId": "mod_handguard" - } - ], - "_encyclopedia": "644674a13d52156624001fbc" - }, - "5a8ae36686f774377d6ce226": { - "_id": "5a8ae36686f774377d6ce226", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "m4_hera_arms", - "_parent": "5a885e7f86f77418225977d0", - "_items": [ - { - "_id": "5a885e7f86f77418225977d0", - "_tpl": "5447a9cd4bdc2dbd208b4567" - }, - { - "_id": "5a885e7f86f77418225977d1", - "_tpl": "5a33e75ac4a2826c6e06d759", - "parentId": "5a885e7f86f77418225977d0", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5a41586e86f7746ac955fefc", - "_tpl": "59c1383d86f774290a37e0ca", - "parentId": "5a885e7f86f77418225977d0", - "slotId": "mod_magazine" - }, - { - "_id": "5a885e7f86f77418225977d3", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "5a885e7f86f77418225977d0", - "slotId": "mod_reciever" - }, - { - "_id": "5a885e7f86f77418225977d6", - "_tpl": "5a1ead28fcdbcb001912fa9f", - "parentId": "5a885e7f86f77418225977d3", - "slotId": "mod_scope" - }, - { - "_id": "5a4158a886f7746acc3eee94", - "_tpl": "5a1eaa87fcdbcb001865f75e", - "parentId": "5a885e7f86f77418225977d6", - "slotId": "mod_scope" - }, - { - "_id": "5a885e7f86f77418225977d7", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "5a885e7f86f77418225977d3", - "slotId": "mod_barrel" - }, - { - "_id": "5a885e7f86f77418225977d9", - "_tpl": "5943ee5a86f77413872d25ec", - "parentId": "5a885e7f86f77418225977d7", - "slotId": "mod_muzzle" - }, - { - "_id": "5a885e7f86f77418225977da", - "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "5a885e7f86f77418225977d7", - "slotId": "mod_gas_block" - }, - { - "_id": "5a885e7f86f77418225977d8", - "_tpl": "595cf16b86f77427440c32e2", - "parentId": "5a885e7f86f77418225977d3", - "slotId": "mod_handguard" - }, - { - "_id": "5a885e7f86f77418225977db", - "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "5a885e7f86f77418225977d8", - "slotId": "mod_scope" - }, - { - "_id": "5a885e7f86f77418225977de", - "_tpl": "5a33b2c9c4a282000c5a9511", - "parentId": "5a885e7f86f77418225977db", - "slotId": "mod_scope" - }, - { - "_id": "5a885e7f86f77418225977e1", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "5a885e7f86f77418225977de", - "slotId": "mod_scope" - }, - { - "_id": "5a885e7f86f77418225977dc", - "_tpl": "59e0bed186f774156f04ce84", - "parentId": "5a885e7f86f77418225977d8", - "slotId": "mod_mount_000" - }, - { - "_id": "5a885e7f86f77418225977df", - "_tpl": "5a7dbfc1159bd40016548fde", - "parentId": "5a885e7f86f77418225977dc", - "slotId": "mod_foregrip" - }, - { - "_id": "5a885e7f86f77418225977dd", - "_tpl": "59e0be5d86f7742d48765bd2", - "parentId": "5a885e7f86f77418225977d8", - "slotId": "mod_mount_003" - }, - { - "_id": "5a885e7f86f77418225977e0", - "_tpl": "5a7b483fe899ef0016170d15", - "parentId": "5a885e7f86f77418225977dd", - "slotId": "mod_tactical" - }, - { - "_id": "5a885e7f86f77418225977d4", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "5a885e7f86f77418225977d0", - "slotId": "mod_stock" - }, - { - "_id": "5a885e7f86f77418225977d5", - "_tpl": "56ea7165d2720b6e518b4583", - "parentId": "5a885e7f86f77418225977d0", - "slotId": "mod_charge" - } - ] - }, - "639867ca90c8ca7156504f75": { - "_id": "639867ca90c8ca7156504f75", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "AUG_A3_CIV", - "_parent": "639867ca90c8ca7156504f76", - "_items": [ - { - "_id": "639867ca90c8ca7156504f76", - "_tpl": "63171672192e68c5460cebc5", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "639867ca90c8ca7156504f77", - "_tpl": "630e1adbbd357927e4007c09", - "parentId": "639867ca90c8ca7156504f76", - "slotId": "mod_magazine" - }, - { - "_id": "639867ca90c8ca7156504f78", - "_tpl": "62ebbc53e3c1e1ec7c02c44f", - "parentId": "639867ca90c8ca7156504f76", - "slotId": "mod_charge" - }, - { - "_id": "639867ca90c8ca7156504f79", - "_tpl": "62e7c72df68e7a0676050c77", - "parentId": "639867ca90c8ca7156504f76", - "slotId": "mod_reciever" - }, - { - "_id": "639867ca90c8ca7156504f7a", - "_tpl": "630e39c3bd357927e4007c15", - "parentId": "639867ca90c8ca7156504f79", - "slotId": "mod_barrel" - }, - { - "_id": "639867ca90c8ca7156504f7b", - "_tpl": "630f291b9f66a28b37094bb8", - "parentId": "639867ca90c8ca7156504f7a", - "slotId": "mod_muzzle" - }, - { - "_id": "639867ca90c8ca7156504f7c", - "_tpl": "634e61b0767cb15c4601a877", - "parentId": "639867ca90c8ca7156504f7a", - "slotId": "mod_foregrip" - }, - { - "_id": "639867ca90c8ca7156504f7d", - "_tpl": "62ebd290c427473eff0baafb", - "parentId": "639867ca90c8ca7156504f79", - "slotId": "mod_mount" - } - ] - }, - "63986a9ab483a550805be5ee": { - "_id": "63986a9ab483a550805be5ee", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "SR2M_FSB", - "_parent": "63986a9ab483a550805be5ef", - "_items": [ - { - "_id": "63986a9ab483a550805be5ef", - "_tpl": "62e14904c2699c0ec93adc47", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "63986a9ab483a550805be5f0", - "_tpl": "62e153bcdb1a5c41971c1b5b", - "parentId": "63986a9ab483a550805be5ef", - "slotId": "mod_magazine" - }, - { - "_id": "63986a9ab483a550805be5f1", - "_tpl": "62e2a7138e1ac9380579c122", - "parentId": "63986a9ab483a550805be5ef", - "slotId": "mod_muzzle" - }, - { - "_id": "63986a9ab483a550805be5f2", - "_tpl": "62e2969582ebf260c20539c2", - "parentId": "63986a9ab483a550805be5ef", - "slotId": "mod_stock" - }, - { - "_id": "63986a9ab483a550805be5f3", - "_tpl": "62e27a7865f0b1592a49e17b", - "parentId": "63986a9ab483a550805be5ef", - "slotId": "mod_reciever" - }, - { - "_id": "63986a9ab483a550805be5f4", - "_tpl": "62ff9920fe938a24c90c10d2", - "parentId": "63986a9ab483a550805be5f3", - "slotId": "mod_mount" - }, - { - "_id": "63986a9ab483a550805be5f5", - "_tpl": "637ba19df7ca6372bf2613d7", - "parentId": "63986a9ab483a550805be5ef", - "slotId": "mod_handguard" - }, - { - "_id": "63986a9ab483a550805be5f6", - "_tpl": "62ed1921b3608410ef5a2c04", - "parentId": "63986a9ab483a550805be5f5", - "slotId": "mod_mount_001" - }, - { - "_id": "63986a9ab483a550805be5f7", - "_tpl": "637ba29bf7ca6372bf2613db", - "parentId": "63986a9ab483a550805be5ef", - "slotId": "mod_pistolgrip" - } - ] - }, - "63986752a28b76105a33c095": { - "_id": "63986752a28b76105a33c095", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AUG_A3_default", - "_parent": "63986752a28b76105a33c096", - "_items": [ - { - "_id": "63986752a28b76105a33c096", - "_tpl": "63171672192e68c5460cebc5", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "63986752a28b76105a33c097", - "_tpl": "62e7c98b550c8218d602cbb4", - "parentId": "63986752a28b76105a33c096", - "slotId": "mod_magazine" - }, - { - "_id": "63986752a28b76105a33c098", - "_tpl": "62ebbc53e3c1e1ec7c02c44f", - "parentId": "63986752a28b76105a33c096", - "slotId": "mod_charge" - }, - { - "_id": "63986752a28b76105a33c099", - "_tpl": "62e7c72df68e7a0676050c77", - "parentId": "63986752a28b76105a33c096", - "slotId": "mod_reciever" - }, - { - "_id": "63986752a28b76105a33c09a", - "_tpl": "62e7c7f3c34ea971710c32fc", - "parentId": "63986752a28b76105a33c099", - "slotId": "mod_barrel" - }, - { - "_id": "63986752a28b76105a33c09b", - "_tpl": "630f28f0cadb1fe05e06f004", - "parentId": "63986752a28b76105a33c09a", - "slotId": "mod_muzzle_000" - }, - { - "_id": "63986752a28b76105a33c09c", - "_tpl": "634e61b0767cb15c4601a877", - "parentId": "63986752a28b76105a33c09a", - "slotId": "mod_foregrip" - }, - { - "_id": "63986752a28b76105a33c09d", - "_tpl": "62ebd290c427473eff0baafb", - "parentId": "63986752a28b76105a33c099", - "slotId": "mod_mount" - } - ], - "_encyclopedia": "63171672192e68c5460cebc5" - }, - "5d383f5d86f7742a15793872": { - "_id": "5d383f5d86f7742a15793872", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "rem700 PRO", - "_parent": "5d38511b86f7742a157945d9", - "_items": [ - { - "_id": "5d38511b86f7742a157945d9", - "_tpl": "5bfea6e90db834001b7347f3", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5d38511b86f7742a157945da", - "_tpl": "5ce69cbad7f00c00b61c5098", - "parentId": "5d38511b86f7742a157945d9", - "slotId": "mod_magazine" - }, - { - "_id": "5d38511b86f7742a157945db", - "_tpl": "5cdeac22d7f00c000f26168f", - "parentId": "5d38511b86f7742a157945d9", - "slotId": "mod_stock" - }, - { - "_id": "5d38511b86f7742a157945dc", - "_tpl": "5cdeac42d7f00c000d36ba73", - "parentId": "5d38511b86f7742a157945db", - "slotId": "mod_stock" - }, - { - "_id": "5d38511b86f7742a157945dd", - "_tpl": "5cdeac5cd7f00c000f261694", - "parentId": "5d38511b86f7742a157945db", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5d38511b86f7742a157945de", - "_tpl": "5cdeaca5d7f00c00b61c4b70", - "parentId": "5d38511b86f7742a157945db", - "slotId": "mod_mount_000" - }, - { - "_id": "5d38511b86f7742a157945df", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "5d38511b86f7742a157945db", - "slotId": "mod_mount_001" - }, - { - "_id": "5d38511b86f7742a157945e0", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "5d38511b86f7742a157945db", - "slotId": "mod_mount_002" - }, - { - "_id": "5d38511b86f7742a157945e1", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "5d38511b86f7742a157945db", - "slotId": "mod_mount_003" - }, - { - "_id": "5d38511b86f7742a157945e2", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "5d38511b86f7742a157945d9", - "slotId": "mod_barrel" - }, - { - "_id": "5d38511b86f7742a157945e3", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "5d38511b86f7742a157945e2", - "slotId": "mod_muzzle" - } - ] - }, - "6193e108c1982475fa2a7f16": { - "_id": "6193e108c1982475fa2a7f16", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "SCARL MK16 CQC", - "_parent": "6193e108c1982475fa2a7f17", - "_items": [ - { - "_id": "6193e108c1982475fa2a7f17", - "_tpl": "618428466ef05c2ce828f218", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6193e108c1982475fa2a7f18", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "6193e108c1982475fa2a7f17", - "slotId": "mod_pistol_grip" - }, - { - "_id": "6193e108c1982475fa2a7f19", - "_tpl": "61840d85568c120fdd2962a5", - "parentId": "6193e108c1982475fa2a7f17", - "slotId": "mod_magazine" - }, - { - "_id": "6193e108c1982475fa2a7f1a", - "_tpl": "618426d96c780c1e710c9b9f", - "parentId": "6193e108c1982475fa2a7f17", - "slotId": "mod_reciever" - }, - { - "_id": "6193e108c1982475fa2a7f1b", - "_tpl": "6183fc15d3a39d50044c13e9", - "parentId": "6193e108c1982475fa2a7f1a", - "slotId": "mod_barrel" - }, - { - "_id": "6193e108c1982475fa2a7f1c", - "_tpl": "618407a850224f204c1da549", - "parentId": "6193e108c1982475fa2a7f1b", - "slotId": "mod_muzzle" - }, - { - "_id": "6193e108c1982475fa2a7f1d", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "6193e108c1982475fa2a7f1b", - "slotId": "mod_sight_front" - }, - { - "_id": "6193e108c1982475fa2a7f1e", - "_tpl": "61817865d3a39d50044c13a4", - "parentId": "6193e108c1982475fa2a7f1a", - "slotId": "mod_sight_rear" - }, - { - "_id": "6193e108c1982475fa2a7f1f", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "6193e108c1982475fa2a7f1a", - "slotId": "mod_mount_000" - }, - { - "_id": "6193e108c1982475fa2a7f20", - "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "6193e108c1982475fa2a7f1a", - "slotId": "mod_mount_001" - }, - { - "_id": "6193e108c1982475fa2a7f21", - "_tpl": "61825d06d92c473c770215de", - "parentId": "6193e108c1982475fa2a7f17", - "slotId": "mod_stock" - }, - { - "_id": "6193e108c1982475fa2a7f22", - "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "6193e108c1982475fa2a7f21", - "slotId": "mod_stock_001" - }, - { - "_id": "6193e108c1982475fa2a7f23", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "6193e108c1982475fa2a7f22", - "slotId": "mod_stock" - }, - { - "_id": "6193e108c1982475fa2a7f24", - "_tpl": "61825d24d3a39d50044c13af", - "parentId": "6193e108c1982475fa2a7f21", - "slotId": "mod_stock_002" - }, - { - "_id": "6193e108c1982475fa2a7f25", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "6193e108c1982475fa2a7f17", - "slotId": "mod_charge" - } - ] - }, - "6193e18de693542ea37d11b3": { - "_id": "6193e18de693542ea37d11b3", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "SCARL MK16 LB", - "_parent": "6193e18de693542ea37d11b4", - "_items": [ - { - "_id": "6193e18de693542ea37d11b4", - "_tpl": "6184055050224f204c1da540", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6193e18de693542ea37d11b5", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "6193e18de693542ea37d11b4", - "slotId": "mod_pistol_grip" - }, - { - "_id": "6193e18de693542ea37d11b6", - "_tpl": "61840bedd92c473c77021635", - "parentId": "6193e18de693542ea37d11b4", - "slotId": "mod_magazine" - }, - { - "_id": "6193e18de693542ea37d11b7", - "_tpl": "618405198004cc50514c3594", - "parentId": "6193e18de693542ea37d11b4", - "slotId": "mod_reciever" - }, - { - "_id": "6193e18de693542ea37d11b8", - "_tpl": "6183fd9e8004cc50514c358f", - "parentId": "6193e18de693542ea37d11b7", - "slotId": "mod_barrel" - }, - { - "_id": "6193e18de693542ea37d11b9", - "_tpl": "618407a850224f204c1da549", - "parentId": "6193e18de693542ea37d11b8", - "slotId": "mod_muzzle" - }, - { - "_id": "6193e18de693542ea37d11ba", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "6193e18de693542ea37d11b8", - "slotId": "mod_sight_front" - }, - { - "_id": "6193e18de693542ea37d11bb", - "_tpl": "61817865d3a39d50044c13a4", - "parentId": "6193e18de693542ea37d11b7", - "slotId": "mod_sight_rear" - }, - { - "_id": "6193e18de693542ea37d11bc", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "6193e18de693542ea37d11b7", - "slotId": "mod_mount_000" - }, - { - "_id": "6193e18de693542ea37d11bd", - "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "6193e18de693542ea37d11b7", - "slotId": "mod_mount_001" - }, - { - "_id": "6193e18de693542ea37d11be", - "_tpl": "61816734d8e3106d9806c1f3", - "parentId": "6193e18de693542ea37d11b4", - "slotId": "mod_stock" - }, - { - "_id": "6193e18de693542ea37d11bf", - "_tpl": "618167528004cc50514c34f9", - "parentId": "6193e18de693542ea37d11be", - "slotId": "mod_stock_001" - }, - { - "_id": "6193e18de693542ea37d11c0", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "6193e18de693542ea37d11bf", - "slotId": "mod_stock" - }, - { - "_id": "6193e18de693542ea37d11c1", - "_tpl": "618167441cb55961fa0fdc71", - "parentId": "6193e18de693542ea37d11be", - "slotId": "mod_stock_002" - }, - { - "_id": "6193e18de693542ea37d11c2", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "6193e18de693542ea37d11b4", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "6184055050224f204c1da540" - }, - "5a3a859786f7747e2305e8bf": { - "_id": "5a3a859786f7747e2305e8bf", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Toz-106 Default", - "_parent": "5a3a859786f7747e2305e8bb", - "_items": [ - { - "_id": "5a3a859786f7747e2305e8bb", - "_tpl": "5a38e6bac4a2826c6e06d79b" - }, - { - "_id": "5a3a859786f7747e2305e8bc", - "_tpl": "5a38ee51c4a282000c5a955c", - "parentId": "5a3a859786f7747e2305e8bb", - "slotId": "mod_magazine" - }, - { - "_id": "5a3a859786f7747e2305e8bd", - "_tpl": "5a38ef1fc4a282000b1521f6", - "parentId": "5a3a859786f7747e2305e8bb", - "slotId": "mod_stock" - }, - { - "_id": "5a3a859786f7747e2305e8be", - "_tpl": "5a38eecdc4a282329a73b512", - "parentId": "5a3a859786f7747e2305e8bd", - "slotId": "mod_pistol_grip" - } - ], - "_encyclopedia": "5a38e6bac4a2826c6e06d79b" - }, - "619d267f36b5be1f3236f9ba": { - "_id": "619d267f36b5be1f3236f9ba", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "USP DEFAULT", - "_parent": "619d267f36b5be1f3236f9bb", - "_items": [ - { - "_id": "619d267f36b5be1f3236f9bb", - "_tpl": "6193a720f8ee7e52e42109ed", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "619d267f36b5be1f3236f9bc", - "_tpl": "6194ef39de3cdf1d2614a768", - "parentId": "619d267f36b5be1f3236f9bb", - "slotId": "mod_barrel" - }, - { - "_id": "619d267f36b5be1f3236f9bd", - "_tpl": "6193d382ed0429009f543e65", - "parentId": "619d267f36b5be1f3236f9bb", - "slotId": "mod_reciever" - }, - { - "_id": "619d267f36b5be1f3236f9be", - "_tpl": "6194f2912d2c397d6600348d", - "parentId": "619d267f36b5be1f3236f9bd", - "slotId": "mod_sight_rear" - }, - { - "_id": "619d267f36b5be1f3236f9bf", - "_tpl": "6194f35c18a3974e5e7421e6", - "parentId": "619d267f36b5be1f3236f9bd", - "slotId": "mod_sight_front" - }, - { - "_id": "619d267f36b5be1f3236f9c0", - "_tpl": "6193d338de3cdf1d2614a6fc", - "parentId": "619d267f36b5be1f3236f9bb", - "slotId": "mod_magazine" - }, - { - "_id": "619d267f36b5be1f3236f9c1", - "_tpl": "6193d3cded0429009f543e6a", - "parentId": "619d267f36b5be1f3236f9bb", - "slotId": "mod_trigger" - }, - { - "_id": "619d267f36b5be1f3236f9c2", - "_tpl": "6193d3be7c6c7b169525f0da", - "parentId": "619d267f36b5be1f3236f9bb", - "slotId": "mod_hammer" - }, - { - "_id": "619d267f36b5be1f3236f9c3", - "_tpl": "6193d5d4f8ee7e52e4210a1b", - "parentId": "619d267f36b5be1f3236f9bb", - "slotId": "mod_catch" - } - ], - "_encyclopedia": "6193a720f8ee7e52e42109ed" - }, - "5a8ae21486f774377b73cf5d": { - "_id": "5a8ae21486f774377b73cf5d", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "akm_kreb_thermal_silenced", - "_parent": "60c0e3c5c13d3d37756c061c", - "_items": [ - { - "_id": "60c0e3c5c13d3d37756c061c", - "_tpl": "59d6088586f774275f37482f", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "60c0e3c5c13d3d37756c061d", - "_tpl": "5a01ad4786f77450561fda02", - "parentId": "60c0e3c5c13d3d37756c061c", - "slotId": "mod_gas_block" - }, - { - "_id": "60c0e3c5c13d3d37756c061e", - "_tpl": "59fb375986f7741b681b81a6", - "parentId": "60c0e3c5c13d3d37756c061d", - "slotId": "mod_handguard" - }, - { - "_id": "60c0e3c5c13d3d37756c061f", - "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "60c0e3c5c13d3d37756c061e", - "slotId": "mod_scope" - }, - { - "_id": "60c0e3c5c13d3d37756c0620", - "_tpl": "5a33b2c9c4a282000c5a9511", - "parentId": "60c0e3c5c13d3d37756c061f", - "slotId": "mod_scope" - }, - { - "_id": "60c0e3c5c13d3d37756c0621", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "60c0e3c5c13d3d37756c0620", - "slotId": "mod_scope" - }, - { - "_id": "60c0e3c5c13d3d37756c0622", - "_tpl": "59e0bed186f774156f04ce84", - "parentId": "60c0e3c5c13d3d37756c061e", - "slotId": "mod_mount_000" - }, - { - "_id": "60c0e3c5c13d3d37756c0623", - "_tpl": "588226d124597767ad33f787", - "parentId": "60c0e3c5c13d3d37756c0622", - "slotId": "mod_foregrip" - }, - { - "_id": "60c0e3c5c13d3d37756c0624", - "_tpl": "59e0be5d86f7742d48765bd2", - "parentId": "60c0e3c5c13d3d37756c061e", - "slotId": "mod_mount_003" - }, - { - "_id": "60c0e3c5c13d3d37756c0625", - "_tpl": "56def37dd2720bec348b456a", - "parentId": "60c0e3c5c13d3d37756c0624", - "slotId": "mod_tactical" - }, - { - "_id": "60c0e3c5c13d3d37756c0626", - "_tpl": "593d489686f7745c6255d58a", - "parentId": "60c0e3c5c13d3d37756c061c", - "slotId": "mod_muzzle" - }, - { - "_id": "60c0e3c5c13d3d37756c0627", - "_tpl": "5947f92f86f77427344a76b1", - "parentId": "60c0e3c5c13d3d37756c061c", - "slotId": "mod_pistol_grip" - }, - { - "_id": "60c0e3c5c13d3d37756c0628", - "_tpl": "5d2c772c48f0355d95672c25", - "parentId": "60c0e3c5c13d3d37756c061c", - "slotId": "mod_reciever" - }, - { - "_id": "60c0e3c5c13d3d37756c0629", - "_tpl": "5a1ead28fcdbcb001912fa9f", - "parentId": "60c0e3c5c13d3d37756c0628", - "slotId": "mod_scope" - }, - { - "_id": "60c0e3c5c13d3d37756c062a", - "_tpl": "5a1eaa87fcdbcb001865f75e", - "parentId": "60c0e3c5c13d3d37756c0629", - "slotId": "mod_scope" - }, - { - "_id": "60c0e3c5c13d3d37756c062b", - "_tpl": "5649b2314bdc2d79388b4576", - "parentId": "60c0e3c5c13d3d37756c061c", - "slotId": "mod_stock" - }, - { - "_id": "60c0e3c5c13d3d37756c062c", - "_tpl": "5947e98b86f774778f1448bc", - "parentId": "60c0e3c5c13d3d37756c062b", - "slotId": "mod_stock" - }, - { - "_id": "60c0e3c5c13d3d37756c062d", - "_tpl": "59fafc5086f7740dbe19f6c3", - "parentId": "60c0e3c5c13d3d37756c061c", - "slotId": "mod_magazine" - }, - { - "_id": "60c0e3c5c13d3d37756c062e", - "_tpl": "5648ac824bdc2ded0b8b457d", - "parentId": "60c0e3c5c13d3d37756c061c", - "slotId": "mod_charge" - } - ] - }, - "628754510c9eb3366b5218f8": { - "_id": "628754510c9eb3366b5218f8", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "knight_g17", - "_parent": "628754510c9eb3366b521900", - "_items": [ - { - "_id": "628754510c9eb3366b521900", - "_tpl": "5a7ae0c351dfba0017554310", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "628754510c9eb3366b521901", - "_tpl": "5a6b5b8a8dc32e001207faf3", - "parentId": "628754510c9eb3366b521900", - "slotId": "mod_barrel" - }, - { - "_id": "628754510c9eb3366b521902", - "_tpl": "5a71e4f48dc32e001207fb26", - "parentId": "628754510c9eb3366b521900", - "slotId": "mod_reciever" - }, - { - "_id": "628754510c9eb3366b521903", - "_tpl": "5a71e0fb8dc32e00094b97f2", - "parentId": "628754510c9eb3366b521902", - "slotId": "mod_sight_rear" - }, - { - "_id": "628754510c9eb3366b521904", - "_tpl": "5a71e0048dc32e000c52ecc8", - "parentId": "628754510c9eb3366b521902", - "slotId": "mod_sight_front" - }, - { - "_id": "628754510c9eb3366b521905", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "628754510c9eb3366b521902", - "slotId": "mod_scope" - }, - { - "_id": "628754510c9eb3366b521906", - "_tpl": "5a7ad2e851dfba0016153692", - "parentId": "628754510c9eb3366b521900", - "slotId": "mod_magazine" - } - ] - }, - "5fd251c90d9c95034825edb5": { - "_id": "5fd251c90d9c95034825edb5", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "vector_9_default", - "_parent": "5fd251c90d9c95034825edb6", - "_items": [ - { - "_id": "5fd251c90d9c95034825edb6", - "_tpl": "5fc3f2d5900b1d5091531e57", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5fd251c90d9c95034825edb7", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "5fd251c90d9c95034825edb6", - "slotId": "mod_magazine" - }, - { - "_id": "5fd251c90d9c95034825edb8", - "_tpl": "5fb6567747ce63734e3fa1dc", - "parentId": "5fd251c90d9c95034825edb6", - "slotId": "mod_sight_front" - }, - { - "_id": "5fd251c90d9c95034825edb9", - "_tpl": "5fb6564947ce63734e3fa1da", - "parentId": "5fd251c90d9c95034825edb6", - "slotId": "mod_sight_rear" - }, - { - "_id": "5fd251c90d9c95034825edba", - "_tpl": "5fb6558ad6f0b2136f2d7eb7", - "parentId": "5fd251c90d9c95034825edb6", - "slotId": "mod_stock" - }, - { - "_id": "5fd251c90d9c95034825edbb", - "_tpl": "5fbbc366ca32ed67276c1557", - "parentId": "5fd251c90d9c95034825edb6", - "slotId": "mod_barrel" - }, - { - "_id": "5fd251c90d9c95034825edbc", - "_tpl": "5fbbc34106bde7524f03cbe9", - "parentId": "5fd251c90d9c95034825edbb", - "slotId": "mod_muzzle" - }, - { - "_id": "5fd251c90d9c95034825edbd", - "_tpl": "5fbb976df9986c4cff3fe5f2", - "parentId": "5fd251c90d9c95034825edb6", - "slotId": "mod_mount" - }, - { - "_id": "5fd251c90d9c95034825edbe", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "5fd251c90d9c95034825edb6", - "slotId": "mod_mount_001" - }, - { - "_id": "5fd251c90d9c95034825edbf", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "5fd251c90d9c95034825edb6", - "slotId": "mod_mount_002" - } - ], - "_encyclopedia": "5fc3f2d5900b1d5091531e57" - }, - "628753ee0c9eb3366b5218d4": { - "_id": "628753ee0c9eb3366b5218d4", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "knight_g18", - "_parent": "628753ee0c9eb3366b5218dd", - "_items": [ - { - "_id": "628753ee0c9eb3366b5218dd", - "_tpl": "5b1fa9b25acfc40018633c01", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "628753ee0c9eb3366b5218de", - "_tpl": "5b1fa9ea5acfc40018633c0a", - "parentId": "628753ee0c9eb3366b5218dd", - "slotId": "mod_barrel" - }, - { - "_id": "628753ee0c9eb3366b5218df", - "_tpl": "5a7b4960e899ef197b331a2d", - "parentId": "628753ee0c9eb3366b5218dd", - "slotId": "mod_pistol_grip" - }, - { - "_id": "628753ee0c9eb3366b5218e0", - "_tpl": "5b1faa0f5acfc40dc528aeb5", - "parentId": "628753ee0c9eb3366b5218dd", - "slotId": "mod_reciever" - }, - { - "_id": "628753ee0c9eb3366b5218e1", - "_tpl": "5a7d912f159bd400165484f3", - "parentId": "628753ee0c9eb3366b5218e0", - "slotId": "mod_sight_rear" - }, - { - "_id": "628753ee0c9eb3366b5218e2", - "_tpl": "5a7d9104159bd400134c8c21", - "parentId": "628753ee0c9eb3366b5218e0", - "slotId": "mod_sight_front" - }, - { - "_id": "628753ee0c9eb3366b5218e3", - "_tpl": "5a7ad2e851dfba0016153692", - "parentId": "628753ee0c9eb3366b5218dd", - "slotId": "mod_magazine" - }, - { - "_id": "628753ee0c9eb3366b5218e4", - "_tpl": "56def37dd2720bec348b456a", - "parentId": "628753ee0c9eb3366b5218dd", - "slotId": "mod_tactical" - } - ] - }, - "628755f166bb7d4a3c32bc45": { - "_id": "628755f166bb7d4a3c32bc45", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "knight_scarh", - "_parent": "628755f166bb7d4a3c32bc57", - "_items": [ - { - "_id": "628755f166bb7d4a3c32bc57", - "_tpl": "6165ac306ef05c2ce828ef74", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "628755f166bb7d4a3c32bc58", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "628755f166bb7d4a3c32bc57", - "slotId": "mod_pistol_grip" - }, - { - "_id": "628755f166bb7d4a3c32bc59", - "_tpl": "6183d53f1cb55961fa0fdcda", - "parentId": "628755f166bb7d4a3c32bc57", - "slotId": "mod_magazine" - }, - { - "_id": "628755f166bb7d4a3c32bc5a", - "_tpl": "6165aeedfaa1272e431521e3", - "parentId": "628755f166bb7d4a3c32bc57", - "slotId": "mod_reciever" - }, - { - "_id": "628755f166bb7d4a3c32bc5b", - "_tpl": "57aca93d2459771f2c7e26db", - "parentId": "628755f166bb7d4a3c32bc5a", - "slotId": "mod_scope" - }, - { - "_id": "628755f166bb7d4a3c32bc5c", - "_tpl": "618168b350224f204c1da4d8", - "parentId": "628755f166bb7d4a3c32bc5a", - "slotId": "mod_barrel" - }, - { - "_id": "628755f166bb7d4a3c32bc5d", - "_tpl": "618178aa1cb55961fa0fdc80", - "parentId": "628755f166bb7d4a3c32bc5c", - "slotId": "mod_muzzle" - }, - { - "_id": "628755f166bb7d4a3c32bc5e", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "628755f166bb7d4a3c32bc5c", - "slotId": "mod_sight_front" - }, - { - "_id": "628755f166bb7d4a3c32bc5f", - "_tpl": "61817865d3a39d50044c13a4", - "parentId": "628755f166bb7d4a3c32bc5a", - "slotId": "mod_sight_rear" - }, - { - "_id": "628755f166bb7d4a3c32bc60", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "628755f166bb7d4a3c32bc5a", - "slotId": "mod_tactical_000" - }, - { - "_id": "628755f166bb7d4a3c32bc61", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "628755f166bb7d4a3c32bc5a", - "slotId": "mod_mount_000" - }, - { - "_id": "628755f166bb7d4a3c32bc62", - "_tpl": "5fce0cf655375d18a253eff0", - "parentId": "628755f166bb7d4a3c32bc61", - "slotId": "mod_foregrip" - }, - { - "_id": "628755f166bb7d4a3c32bc63", - "_tpl": "61825d06d92c473c770215de", - "parentId": "628755f166bb7d4a3c32bc57", - "slotId": "mod_stock" - }, - { - "_id": "628755f166bb7d4a3c32bc64", - "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "628755f166bb7d4a3c32bc63", - "slotId": "mod_stock_001" - }, - { - "_id": "628755f166bb7d4a3c32bc65", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "628755f166bb7d4a3c32bc64", - "slotId": "mod_stock" - }, - { - "_id": "628755f166bb7d4a3c32bc66", - "_tpl": "61825d24d3a39d50044c13af", - "parentId": "628755f166bb7d4a3c32bc63", - "slotId": "mod_stock_002" - }, - { - "_id": "628755f166bb7d4a3c32bc67", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "628755f166bb7d4a3c32bc57", - "slotId": "mod_charge" - } - ] - }, - "6398681b9f81ff62557b8225": { - "_id": "6398681b9f81ff62557b8225", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "AUG_A3_CQB", - "_parent": "6398681b9f81ff62557b8226", - "_items": [ - { - "_id": "6398681b9f81ff62557b8226", - "_tpl": "63171672192e68c5460cebc5", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6398681b9f81ff62557b8227", - "_tpl": "630e295c984633f1fb0e7c30", - "parentId": "6398681b9f81ff62557b8226", - "slotId": "mod_magazine" - }, - { - "_id": "6398681b9f81ff62557b8228", - "_tpl": "62ebbc53e3c1e1ec7c02c44f", - "parentId": "6398681b9f81ff62557b8226", - "slotId": "mod_charge" - }, - { - "_id": "6398681b9f81ff62557b8229", - "_tpl": "62e7c72df68e7a0676050c77", - "parentId": "6398681b9f81ff62557b8226", - "slotId": "mod_reciever" - }, - { - "_id": "6398681b9f81ff62557b822a", - "_tpl": "630e39c3bd357927e4007c15", - "parentId": "6398681b9f81ff62557b8229", - "slotId": "mod_barrel" - }, - { - "_id": "6398681b9f81ff62557b822b", - "_tpl": "630f291b9f66a28b37094bb8", - "parentId": "6398681b9f81ff62557b822a", - "slotId": "mod_muzzle" - }, - { - "_id": "6398681b9f81ff62557b822c", - "_tpl": "634e61b0767cb15c4601a877", - "parentId": "6398681b9f81ff62557b822a", - "slotId": "mod_foregrip" - }, - { - "_id": "6398681b9f81ff62557b822d", - "_tpl": "62e7c8f91cd3fde4d503d690", - "parentId": "6398681b9f81ff62557b8229", - "slotId": "mod_mount" - }, - { - "_id": "6398681b9f81ff62557b822e", - "_tpl": "558022b54bdc2dac148b458d", - "parentId": "6398681b9f81ff62557b822d", - "slotId": "mod_scope" - }, - { - "_id": "6398681b9f81ff62557b822f", - "_tpl": "626becf9582c3e319310b837", - "parentId": "6398681b9f81ff62557b8229", - "slotId": "mod_tactical" - } - ] - }, - "63986a38608a960125446db5": { - "_id": "63986a38608a960125446db5", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "SR2M_default", - "_parent": "63986a38608a960125446db6", - "_items": [ - { - "_id": "63986a38608a960125446db6", - "_tpl": "62e14904c2699c0ec93adc47", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "63986a38608a960125446db7", - "_tpl": "633a98eab8b0506e48497c1a", - "parentId": "63986a38608a960125446db6", - "slotId": "mod_magazine" - }, - { - "_id": "63986a38608a960125446db8", - "_tpl": "62e2a754b6c0ee2f230cee0f", - "parentId": "63986a38608a960125446db6", - "slotId": "mod_muzzle" - }, - { - "_id": "63986a38608a960125446db9", - "_tpl": "62e292e7b6c0ee2f230cee00", - "parentId": "63986a38608a960125446db6", - "slotId": "mod_stock" - }, - { - "_id": "63986a38608a960125446dba", - "_tpl": "62e27a7865f0b1592a49e17b", - "parentId": "63986a38608a960125446db6", - "slotId": "mod_reciever" - }, - { - "_id": "63986a38608a960125446dbb", - "_tpl": "62e15547db1a5c41971c1b5e", - "parentId": "63986a38608a960125446db6", - "slotId": "mod_handguard" - }, - { - "_id": "63986a38608a960125446dbc", - "_tpl": "62ed189fb3608410ef5a2bfc", - "parentId": "63986a38608a960125446dbb", - "slotId": "mod_mount_001" - }, - { - "_id": "63986a38608a960125446dbd", - "_tpl": "637b9c37b7e3bc41b21ce71a", - "parentId": "63986a38608a960125446db6", - "slotId": "mod_pistolgrip" - } - ], - "_encyclopedia": "62e14904c2699c0ec93adc47" - }, - "58dffce486f77409f40f8162": { - "_id": "58dffce486f77409f40f8162", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "SKS Defualt", - "_parent": "657eb3b326f0eb071805620f", - "_items": [ - { - "_id": "657eb3b326f0eb071805620f", - "_tpl": "574d967124597745970e7c94", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "657eb3b326f0eb0718056210", - "_tpl": "574dad8024597745964bf05c", - "parentId": "657eb3b326f0eb071805620f", - "slotId": "mod_stock" - }, - { - "_id": "657eb3b326f0eb0718056211", - "_tpl": "634f02331f9f536910079b51", - "parentId": "657eb3b326f0eb071805620f", - "slotId": "mod_barrel" - }, - { - "_id": "657eb3b326f0eb0718056212", - "_tpl": "634f04d82e5def262d0b30c6", - "parentId": "657eb3b326f0eb0718056211", - "slotId": "mod_mount_000" - }, - { - "_id": "657eb3b326f0eb0718056213", - "_tpl": "634f02d7517ccc8a960fc744", - "parentId": "657eb3b326f0eb0718056212", - "slotId": "mod_gas_block" - }, - { - "_id": "657eb3b326f0eb0718056214", - "_tpl": "634f08a21f9f536910079b5a", - "parentId": "657eb3b326f0eb0718056213", - "slotId": "mod_mount_000" - }, - { - "_id": "657eb3b326f0eb0718056215", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "657eb3b326f0eb0718056212", - "slotId": "mod_sight_rear" - }, - { - "_id": "657eb3b326f0eb0718056216", - "_tpl": "587df3a12459772c28142567", - "parentId": "657eb3b326f0eb071805620f", - "slotId": "mod_magazine" - }, - { - "_id": "657eb3b326f0eb0718056217", - "_tpl": "634f05ca517ccc8a960fc748", - "parentId": "657eb3b326f0eb071805620f", - "slotId": "mod_reciever" - } - ], - "_encyclopedia": "574d967124597745970e7c94" - }, - "5d51290186f77419093e7c24": { - "_id": "5d51290186f77419093e7c24", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "fseven default", - "_parent": "5d51290186f77419093e7c25", - "_items": [ - { - "_id": "5d51290186f77419093e7c25", - "_tpl": "5d3eb3b0a4b93615055e84d2", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5d51290186f77419093e7c26", - "_tpl": "5d3eb5b6a4b9361eab311902", - "parentId": "5d51290186f77419093e7c25", - "slotId": "mod_barrel" - }, - { - "_id": "5d51290186f77419093e7c27", - "_tpl": "5d3eb44aa4b93650d64e4979", - "parentId": "5d51290186f77419093e7c25", - "slotId": "mod_reciever" - }, - { - "_id": "5d51290186f77419093e7c28", - "_tpl": "5d3eb4aba4b93650d64e497d", - "parentId": "5d51290186f77419093e7c27", - "slotId": "mod_sight_rear" - }, - { - "_id": "5d51290186f77419093e7c29", - "_tpl": "5d3eb536a4b9363b1f22f8e2", - "parentId": "5d51290186f77419093e7c27", - "slotId": "mod_sight_front" - }, - { - "_id": "5d51290186f77419093e7c2a", - "_tpl": "5d3eb5eca4b9363b1f22f8e4", - "parentId": "5d51290186f77419093e7c25", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5d3eb3b0a4b93615055e84d2" - }, - "5c0c1e7486f7744dba7a289b": { - "_id": "5c0c1e7486f7744dba7a289b", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "mosin infantry rifle", - "_parent": "5c0c1e7486f7744dba7a289c", - "_items": [ - { - "_id": "5c0c1e7486f7744dba7a289c", - "_tpl": "5bfd297f0db834001a669119", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c0c1e7486f7744dba7a289d", - "_tpl": "5ae0973a5acfc4001562206c", - "parentId": "5c0c1e7486f7744dba7a289c", - "slotId": "mod_magazine" - }, - { - "_id": "5c0c1e7486f7744dba7a289e", - "_tpl": "5bfd35380db83400232fe5cc", - "parentId": "5c0c1e7486f7744dba7a289c", - "slotId": "mod_stock" - }, - { - "_id": "5c0c1e7486f7744dba7a289f", - "_tpl": "5ae09bff5acfc4001562219d", - "parentId": "5c0c1e7486f7744dba7a289c", - "slotId": "mod_barrel" - }, - { - "_id": "5c0c1e7486f7744dba7a28a0", - "_tpl": "5ae099875acfc4001714e593", - "parentId": "5c0c1e7486f7744dba7a289f", - "slotId": "mod_sight_front" - }, - { - "_id": "5c0c1e7486f7744dba7a28a1", - "_tpl": "5ae099925acfc4001a5fc7b3", - "parentId": "5c0c1e7486f7744dba7a289f", - "slotId": "mod_sight_rear" - } - ], - "_encyclopedia": "5bfd297f0db834001a669119" - }, - "5c0c208886f7743e5335d279": { - "_id": "5c0c208886f7743e5335d279", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "mosin sniper obrez m", - "_parent": "5c0c208886f7743e5335d280", - "_items": [ - { - "_id": "5c0c208886f7743e5335d280", - "_tpl": "5ae08f0a5acfc408fb1398a1", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c0c208886f7743e5335d281", - "_tpl": "5ae0973a5acfc4001562206c", - "parentId": "5c0c208886f7743e5335d280", - "slotId": "mod_magazine" - }, - { - "_id": "5c0c208886f7743e5335d282", - "_tpl": "5bfd36290db834001966869a", - "parentId": "5c0c208886f7743e5335d280", - "slotId": "mod_stock" - }, - { - "_id": "5c0c208886f7743e5335d283", - "_tpl": "5bfd4cd60db834001c38f095", - "parentId": "5c0c208886f7743e5335d280", - "slotId": "mod_barrel" - }, - { - "_id": "5c0c208886f7743e5335d284", - "_tpl": "5bbdb811d4351e45020113c7", - "parentId": "5c0c208886f7743e5335d283", - "slotId": "mod_sight_rear" - } - ] - }, - "5b8683a486f77467f2423114": { - "_id": "5b8683a486f77467f2423114", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "mosin", - "_parent": "5bbf1d5988a45017b431dafb", - "_items": [ - { - "_id": "5bbf1d5988a45017b431dafb", - "_tpl": "5ae08f0a5acfc408fb1398a1" - }, - { - "_id": "5bbf1d5988a45017b431dafc", - "_tpl": "5ae0973a5acfc4001562206c", - "parentId": "5bbf1d5988a45017b431dafb", - "slotId": "mod_magazine" - }, - { - "_id": "5bbf1d5988a45017b431dafd", - "_tpl": "5ae096d95acfc400185c2c81", - "parentId": "5bbf1d5988a45017b431dafb", - "slotId": "mod_stock" - }, - { - "_id": "5bbf1d5988a45017b431dafe", - "_tpl": "5ae09bff5acfc4001562219d", - "parentId": "5bbf1d5988a45017b431dafb", - "slotId": "mod_barrel" - }, - { - "_id": "5bbf1d5988a45017b431daff", - "_tpl": "5ae099875acfc4001714e593", - "parentId": "5bbf1d5988a45017b431dafe", - "slotId": "mod_sight_front" - }, - { - "_id": "5bbf1d5988a45017b431db00", - "_tpl": "5ae099925acfc4001a5fc7b3", - "parentId": "5bbf1d5988a45017b431dafe", - "slotId": "mod_sight_rear" - } - ], - "_encyclopedia": "5ae08f0a5acfc408fb1398a1" - }, - "62972a7d91492d1a34152fbe": { - "_id": "62972a7d91492d1a34152fbe", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "rd704_default", - "_parent": "62972a7d91492d1a34152fc9", - "_items": [ - { - "_id": "62972a7d91492d1a34152fc9", - "_tpl": "628a60ae6b1d481ff772e9c8", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "62972a7d91492d1a34152fca", - "_tpl": "628a83c29179c324ed269508", - "parentId": "62972a7d91492d1a34152fc9", - "slotId": "mod_gas_block" - }, - { - "_id": "62972a7d91492d1a34152fcb", - "_tpl": "628a66b41d5e41750e314f34", - "parentId": "62972a7d91492d1a34152fc9", - "slotId": "mod_muzzle" - }, - { - "_id": "62972a7d91492d1a34152fcc", - "_tpl": "628a664bccaab13006640e47", - "parentId": "62972a7d91492d1a34152fc9", - "slotId": "mod_pistol_grip" - }, - { - "_id": "62972a7d91492d1a34152fcd", - "_tpl": "628a665a86cbd9750d2ff5e5", - "parentId": "62972a7d91492d1a34152fc9", - "slotId": "mod_reciever" - }, - { - "_id": "62972a7d91492d1a34152fce", - "_tpl": "628a7b23b0f75035732dd565", - "parentId": "62972a7d91492d1a34152fc9", - "slotId": "mod_sight_rear" - }, - { - "_id": "62972a7d91492d1a34152fcf", - "_tpl": "628a6678ccaab13006640e49", - "parentId": "62972a7d91492d1a34152fc9", - "slotId": "mod_stock_000" - }, - { - "_id": "62972a7d91492d1a34152fd0", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "62972a7d91492d1a34152fcf", - "slotId": "mod_stock" - }, - { - "_id": "62972a7d91492d1a34152fd1", - "_tpl": "628a85ee6b1d481ff772e9d5", - "parentId": "62972a7d91492d1a34152fd0", - "slotId": "mod_stock_000" - }, - { - "_id": "62972a7d91492d1a34152fd2", - "_tpl": "59d625f086f774661516605d", - "parentId": "62972a7d91492d1a34152fc9", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "628a60ae6b1d481ff772e9c8" - }, - "5ddbbeac582ed30a6134e577": { - "_id": "5ddbbeac582ed30a6134e577", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "saiga12_nerf", - "_parent": "5ddbbeac582ed30a6134e59c", - "_items": [ - { - "_id": "5ddbbeac582ed30a6134e59c", - "_tpl": "576165642459773c7a400233", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5ddbbeac582ed30a6134e59d", - "_tpl": "5c90c3622e221601da359851", - "parentId": "5ddbbeac582ed30a6134e59c", - "slotId": "mod_mount_000" - }, - { - "_id": "5ddbbeac582ed30a6134e59e", - "_tpl": "5d1b5e94d7ad1a2b865a96b0", - "parentId": "5ddbbeac582ed30a6134e59d", - "slotId": "mod_scope" - }, - { - "_id": "5ddbbeac582ed30a6134e59f", - "_tpl": "58272b392459774b4c7b3ccd", - "parentId": "5ddbbeac582ed30a6134e59c", - "slotId": "mod_handguard" - }, - { - "_id": "5ddbbeac582ed30a6134e5a0", - "_tpl": "5c1cd46f2e22164bef5cfedb", - "parentId": "5ddbbeac582ed30a6134e59f", - "slotId": "mod_foregrip" - }, - { - "_id": "5ddbbeac582ed30a6134e5a1", - "_tpl": "5c5952732e2216398b5abda2", - "parentId": "5ddbbeac582ed30a6134e59f", - "slotId": "mod_tactical_000" - }, - { - "_id": "5ddbbeac582ed30a6134e5a2", - "_tpl": "5b3a337e5acfc4704b4a19a0", - "parentId": "5ddbbeac582ed30a6134e59f", - "slotId": "mod_tactical_001" - }, - { - "_id": "5ddbbeac582ed30a6134e5a3", - "_tpl": "5b3a337e5acfc4704b4a19a0", - "parentId": "5ddbbeac582ed30a6134e59f", - "slotId": "mod_tactical_002" - }, - { - "_id": "5ddbbeac582ed30a6134e5a4", - "_tpl": "59c0ec5b86f77435b128bfca", - "parentId": "5ddbbeac582ed30a6134e59c", - "slotId": "mod_muzzle" - }, - { - "_id": "5ddbbeac582ed30a6134e5a5", - "_tpl": "5947f92f86f77427344a76b1", - "parentId": "5ddbbeac582ed30a6134e59c", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5ddbbeac582ed30a6134e5a6", - "_tpl": "57616c112459773cce774d66", - "parentId": "5ddbbeac582ed30a6134e59c", - "slotId": "mod_reciever" - }, - { - "_id": "5ddbbeac582ed30a6134e5a7", - "_tpl": "57a9b9ce2459770ee926038d", - "parentId": "5ddbbeac582ed30a6134e59c", - "slotId": "mod_sight_rear" - }, - { - "_id": "5ddbbeac582ed30a6134e5a8", - "_tpl": "5cf50fc5d7f00c056c53f83c", - "parentId": "5ddbbeac582ed30a6134e59c", - "slotId": "mod_stock" - }, - { - "_id": "5ddbbeac582ed30a6134e5a9", - "_tpl": "58d2946c86f7744e271174b5", - "parentId": "5ddbbeac582ed30a6134e5a8", - "slotId": "mod_stock" - }, - { - "_id": "5ddbbeac582ed30a6134e5aa", - "_tpl": "58d2912286f7744e27117493", - "parentId": "5ddbbeac582ed30a6134e5a9", - "slotId": "mod_stock" - }, - { - "_id": "5ddbbeac582ed30a6134e5ab", - "_tpl": "5cf8f3b0d7f00c00217872ef", - "parentId": "5ddbbeac582ed30a6134e59c", - "slotId": "mod_magazine" - }, - { - "_id": "5ddbbeac582ed30a6134e5ac", - "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges" - }, - { - "_id": "5ddbbeac582ed30a6134e5ad", - "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 1 - }, - { - "_id": "5ddbbeac582ed30a6134e5ae", - "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 2 - }, - { - "_id": "5ddbbeac582ed30a6134e5af", - "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 3 - }, - { - "_id": "5ddbbeac582ed30a6134e5b0", - "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 4 - }, - { - "_id": "5ddbbeac582ed30a6134e5b1", - "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 5 - }, - { - "_id": "5ddbbeac582ed30a6134e5b2", - "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 6 - }, - { - "_id": "5ddbbeac582ed30a6134e5b3", - "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 7 - }, - { - "_id": "5ddbbeac582ed30a6134e5b4", - "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 8 - }, - { - "_id": "5ddbbeac582ed30a6134e5b5", - "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 9 - }, - { - "_id": "5ddbbeac582ed30a6134e5b6", - "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 10 - }, - { - "_id": "5ddbbeac582ed30a6134e5b7", - "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 11 - }, - { - "_id": "5ddbbeac582ed30a6134e5b8", - "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 12 - }, - { - "_id": "5ddbbeac582ed30a6134e5b9", - "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 13 - }, - { - "_id": "5ddbbeac582ed30a6134e5ba", - "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 14 - }, - { - "_id": "5ddbbeac582ed30a6134e5bb", - "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 15 - }, - { - "_id": "5ddbbeac582ed30a6134e5bc", - "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 16 - }, - { - "_id": "5ddbbeac582ed30a6134e5bd", - "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 17 - }, - { - "_id": "5ddbbeac582ed30a6134e5be", - "_tpl": "5d6e6891a4b9361bd473feea", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 18 - }, - { - "_id": "5ddbbeac582ed30a6134e5bf", - "_tpl": "5d6e68c4a4b9361b93413f79", - "parentId": "5ddbbeac582ed30a6134e5ab", - "slotId": "cartridges", - "location": 19 - } - ] - }, - "619e61e70459e93c12392ba7": { - "_id": "619e61e70459e93c12392ba7", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "SCARL MK16 CW", - "_parent": "619e61e70459e93c12392ba8", - "_items": [ - { - "_id": "619e61e70459e93c12392ba8", - "_tpl": "618428466ef05c2ce828f218", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "619e61e70459e93c12392ba9", - "_tpl": "55802f5d4bdc2dac148b458f", - "parentId": "619e61e70459e93c12392ba8", - "slotId": "mod_pistol_grip" - }, - { - "_id": "619e61e70459e93c12392baa", - "_tpl": "5aaa5dfee5b5b000140293d3", - "parentId": "619e61e70459e93c12392ba8", - "slotId": "mod_magazine" - }, - { - "_id": "619e61e70459e93c12392bab", - "_tpl": "618405198004cc50514c3594", - "parentId": "619e61e70459e93c12392ba8", - "slotId": "mod_reciever" - }, - { - "_id": "619e61e70459e93c12392bac", - "_tpl": "544a3a774bdc2d3a388b4567", - "parentId": "619e61e70459e93c12392bab", - "slotId": "mod_scope" - }, - { - "_id": "619e61e70459e93c12392bad", - "_tpl": "58d268fc86f774111273f8c2", - "parentId": "619e61e70459e93c12392bac", - "slotId": "mod_scope" - }, - { - "_id": "619e61e70459e93c12392bae", - "_tpl": "6183fd911cb55961fa0fdce9", - "parentId": "619e61e70459e93c12392bab", - "slotId": "mod_barrel" - }, - { - "_id": "619e61e70459e93c12392baf", - "_tpl": "56ea6fafd2720b844b8b4593", - "parentId": "619e61e70459e93c12392bae", - "slotId": "mod_muzzle" - }, - { - "_id": "619e61e70459e93c12392bb0", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "619e61e70459e93c12392bae", - "slotId": "mod_sight_front" - }, - { - "_id": "619e61e70459e93c12392bb1", - "_tpl": "61817865d3a39d50044c13a4", - "parentId": "619e61e70459e93c12392bab", - "slotId": "mod_sight_rear" - }, - { - "_id": "619e61e70459e93c12392bb2", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "619e61e70459e93c12392bab", - "slotId": "mod_mount_000" - }, - { - "_id": "619e61e70459e93c12392bb3", - "_tpl": "5c1bc5612e221602b5429350", - "parentId": "619e61e70459e93c12392bb2", - "slotId": "mod_foregrip" - }, - { - "_id": "619e61e70459e93c12392bb4", - "_tpl": "61965d9058ef8c428c287e0d", - "parentId": "619e61e70459e93c12392bb2", - "slotId": "mod_mount" - }, - { - "_id": "619e61e70459e93c12392bb5", - "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "619e61e70459e93c12392bab", - "slotId": "mod_mount_001" - }, - { - "_id": "619e61e70459e93c12392bb6", - "_tpl": "61825d06d92c473c770215de", - "parentId": "619e61e70459e93c12392ba8", - "slotId": "mod_stock" - }, - { - "_id": "619e61e70459e93c12392bb7", - "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "619e61e70459e93c12392bb6", - "slotId": "mod_stock_001" - }, - { - "_id": "619e61e70459e93c12392bb8", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "619e61e70459e93c12392bb7", - "slotId": "mod_stock" - }, - { - "_id": "619e61e70459e93c12392bb9", - "_tpl": "618167441cb55961fa0fdc71", - "parentId": "619e61e70459e93c12392bb6", - "slotId": "mod_stock_002" - }, - { - "_id": "619e61e70459e93c12392bba", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "619e61e70459e93c12392ba8", - "slotId": "mod_charge" - } - ] - }, - "5a327f7286f7747668661419": { - "_id": "5a327f7286f7747668661419", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "SR1M x1 attachment silenced", - "_parent": "5a327f7286f7747668661414", - "_items": [ - { - "_id": "5a327f7286f7747668661414", - "_tpl": "59f98b4986f7746f546d2cef" - }, - { - "_id": "5a327f7286f7747668661415", - "_tpl": "5a27b281c4a28200741e1e52", - "parentId": "5a327f7286f7747668661414", - "slotId": "mod_mount" - }, - { - "_id": "5a327f7286f7747668661417", - "_tpl": "5a27b3d0c4a282000d721ec1", - "parentId": "5a327f7286f7747668661415", - "slotId": "mod_mount" - }, - { - "_id": "5a327f7286f7747668661418", - "_tpl": "5a27b6bec4a282000e496f78", - "parentId": "5a327f7286f7747668661417", - "slotId": "mod_muzzle" - }, - { - "_id": "5a327f7286f7747668661416", - "_tpl": "59f99a7d86f7745b134aa97b", - "parentId": "5a327f7286f7747668661414", - "slotId": "mod_magazine" - } - ] - }, - "58414a2724597759b344da4d": { - "_id": "58414a2724597759b344da4d", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "TT Default", - "_parent": "57ab5a6c2459777e356c68aa", - "_items": [ - { - "_id": "57ab5a6c2459777e356c68aa", - "_tpl": "571a12c42459771f627b58a0" - }, - { - "_id": "57ab5a6c2459777e356c68ab", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "57ab5a6c2459777e356c68aa", - "slotId": "mod_barrel" - }, - { - "_id": "57ab5a6c2459777e356c68ac", - "_tpl": "571a282c2459771fb2755a69", - "parentId": "57ab5a6c2459777e356c68aa", - "slotId": "mod_pistol_grip" - }, - { - "_id": "57ab5a6c2459777e356c68ad", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "57ab5a6c2459777e356c68aa", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "571a12c42459771f627b58a0" - }, - "5e0359bd86f7746b243db876": { - "_id": "5e0359bd86f7746b243db876", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "VPO215_default", - "_parent": "5e0359bd86f7746b243db877", - "_items": [ - { - "_id": "5e0359bd86f7746b243db877", - "_tpl": "5de652c31b7e3716273428be", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5e0359bd86f7746b243db878", - "_tpl": "5de653abf76fdc1ce94a5a2a", - "parentId": "5e0359bd86f7746b243db877", - "slotId": "mod_magazine" - }, - { - "_id": "5e0359bd86f7746b243db879", - "_tpl": "5de655be4a9f347bc92edb88", - "parentId": "5e0359bd86f7746b243db877", - "slotId": "mod_stock" - }, - { - "_id": "5e0359bd86f7746b243db87a", - "_tpl": "5de65547883dde217541644b", - "parentId": "5e0359bd86f7746b243db877", - "slotId": "mod_barrel" - }, - { - "_id": "5e0359bd86f7746b243db87b", - "_tpl": "5de6556a205ddc616a6bc4f7", - "parentId": "5e0359bd86f7746b243db87a", - "slotId": "mod_muzzle" - }, - { - "_id": "5e0359bd86f7746b243db87c", - "_tpl": "5de6558e9f98ac2bc65950fc", - "parentId": "5e0359bd86f7746b243db877", - "slotId": "mod_mount" - } - ], - "_encyclopedia": "5de652c31b7e3716273428be" - }, - "62874ff7a4a8431af4739d25": { - "_id": "62874ff7a4a8431af4739d25", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "bigpipe_m45a1", - "_parent": "62874ff7a4a8431af4739d30", - "_items": [ - { - "_id": "62874ff7a4a8431af4739d30", - "_tpl": "5f36a0e5fbf956000b716b65", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "62874ff7a4a8431af4739d31", - "_tpl": "5f3e7801153b8571434a924c", - "parentId": "62874ff7a4a8431af4739d30", - "slotId": "mod_barrel" - }, - { - "_id": "62874ff7a4a8431af4739d32", - "_tpl": "5f3e778efcd9b651187d7201", - "parentId": "62874ff7a4a8431af4739d30", - "slotId": "mod_pistol_grip" - }, - { - "_id": "62874ff7a4a8431af4739d33", - "_tpl": "5f3e7823ddc4f03b010e2045", - "parentId": "62874ff7a4a8431af4739d30", - "slotId": "mod_reciever" - }, - { - "_id": "62874ff7a4a8431af4739d34", - "_tpl": "5f3e7897ddc4f03b010e204a", - "parentId": "62874ff7a4a8431af4739d33", - "slotId": "mod_sight_rear" - }, - { - "_id": "62874ff7a4a8431af4739d35", - "_tpl": "5f3e78a7fbf956000b716b8e", - "parentId": "62874ff7a4a8431af4739d33", - "slotId": "mod_sight_front" - }, - { - "_id": "62874ff7a4a8431af4739d36", - "_tpl": "5f3e77b26cda304dcc634057", - "parentId": "62874ff7a4a8431af4739d30", - "slotId": "mod_magazine" - }, - { - "_id": "62874ff7a4a8431af4739d37", - "_tpl": "5f3e772a670e2a7b01739a52", - "parentId": "62874ff7a4a8431af4739d30", - "slotId": "mod_trigger" - }, - { - "_id": "62874ff7a4a8431af4739d38", - "_tpl": "5f3e76d86cda304dcc634054", - "parentId": "62874ff7a4a8431af4739d30", - "slotId": "mod_hammer" - }, - { - "_id": "62874ff7a4a8431af4739d39", - "_tpl": "5f3e777688ca2d00ad199d25", - "parentId": "62874ff7a4a8431af4739d30", - "slotId": "mod_catch" - } - ] - }, - "5a8ae54786f7743b5e013ba0": { - "_id": "5a8ae54786f7743b5e013ba0", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "mr133_tactical", - "_parent": "5a8ae54786f7743b5e013b94", - "_items": [ - { - "_id": "5a8ae54786f7743b5e013b94", - "_tpl": "54491c4f4bdc2db1078b4568" - }, - { - "_id": "5a8ae54786f7743b5e013b95", - "_tpl": "55d4491a4bdc2d882f8b456e", - "parentId": "5a8ae54786f7743b5e013b94", - "slotId": "mod_barrel" - }, - { - "_id": "5a8ae54786f7743b5e013b9a", - "_tpl": "560838c94bdc2d77798b4569", - "parentId": "5a8ae54786f7743b5e013b95", - "slotId": "mod_muzzle" - }, - { - "_id": "5a8ae54786f7743b5e013b96", - "_tpl": "55d45f484bdc2d972f8b456d", - "parentId": "5a8ae54786f7743b5e013b94", - "slotId": "mod_handguard" - }, - { - "_id": "5a8ae54786f7743b5e013b9b", - "_tpl": "588226d124597767ad33f787", - "parentId": "5a8ae54786f7743b5e013b96", - "slotId": "mod_foregrip" - }, - { - "_id": "5a8ae54786f7743b5e013b9c", - "_tpl": "57d17e212459775a1179a0f5", - "parentId": "5a8ae54786f7743b5e013b96", - "slotId": "mod_tactical_000" - }, - { - "_id": "5a8ae54786f7743b5e013b9e", - "_tpl": "59d790f486f77403cb06aec6", - "parentId": "5a8ae54786f7743b5e013b9c", - "slotId": "mod_flashlight" - }, - { - "_id": "5a8ae54786f7743b5e013b97", - "_tpl": "55d484b44bdc2d1d4e8b456d", - "parentId": "5a8ae54786f7743b5e013b94", - "slotId": "mod_magazine" - }, - { - "_id": "5a8ae54786f7743b5e013b98", - "_tpl": "56083be64bdc2d20478b456f", - "parentId": "5a8ae54786f7743b5e013b94", - "slotId": "mod_stock" - }, - { - "_id": "5a8ae54786f7743b5e013b99", - "_tpl": "55d48a634bdc2d8b2f8b456a", - "parentId": "5a8ae54786f7743b5e013b94", - "slotId": "mod_mount_001" - }, - { - "_id": "5a8ae54786f7743b5e013b9d", - "_tpl": "5a33b2c9c4a282000c5a9511", - "parentId": "5a8ae54786f7743b5e013b99", - "slotId": "mod_scope" - }, - { - "_id": "5a8ae54786f7743b5e013b9f", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "5a8ae54786f7743b5e013b9d", - "slotId": "mod_scope" - } - ] - }, - "5d2340e986f77461496241bc": { - "_id": "5d2340e986f77461496241bc", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "p90 CWDG", - "_parent": "5d2340e986f77461496241cb", - "_items": [ - { - "_id": "5d2340e986f77461496241cb", - "_tpl": "5cc82d76e24e8d00134b4b83", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5d2340e986f77461496241cc", - "_tpl": "5cc70093e4a949033c734312", - "parentId": "5d2340e986f77461496241cb", - "slotId": "mod_magazine" - }, - { - "_id": "5d2340e986f77461496241cd", - "_tpl": "5cebec10d7f00c065703d185", - "parentId": "5d2340e986f77461496241cb", - "slotId": "mod_stock" - }, - { - "_id": "5d2340e986f77461496241ce", - "_tpl": "5cc700cae4a949035e43ba72", - "parentId": "5d2340e986f77461496241cd", - "slotId": "mod_stock_000" - }, - { - "_id": "5d2340e986f77461496241cf", - "_tpl": "5cc70102e4a949035e43ba74", - "parentId": "5d2340e986f77461496241cb", - "slotId": "mod_reciever" - }, - { - "_id": "5d2340e986f77461496241d0", - "_tpl": "5cc7015ae4a949001152b4c6", - "parentId": "5d2340e986f77461496241cf", - "slotId": "mod_mount_000" - }, - { - "_id": "5d2340e986f77461496241d1", - "_tpl": "584924ec24597768f12ae244", - "parentId": "5d2340e986f77461496241d0", - "slotId": "mod_scope" - }, - { - "_id": "5d2340e986f77461496241d2", - "_tpl": "5cc70146e4a949000d73bf6b", - "parentId": "5d2340e986f77461496241cf", - "slotId": "mod_mount_001" - }, - { - "_id": "5d2340e986f77461496241d3", - "_tpl": "5cc70146e4a949000d73bf6b", - "parentId": "5d2340e986f77461496241cf", - "slotId": "mod_mount_002" - }, - { - "_id": "5d2340e986f77461496241d4", - "_tpl": "5cc701aae4a949000e1ea45c", - "parentId": "5d2340e986f77461496241cb", - "slotId": "mod_barrel" - }, - { - "_id": "5d2340e986f77461496241d5", - "_tpl": "5cc82796e24e8d000f5859a8", - "parentId": "5d2340e986f77461496241d4", - "slotId": "mod_muzzle" - }, - { - "_id": "5d2340e986f77461496241d6", - "_tpl": "5cebec00d7f00c065c53522a", - "parentId": "5d2340e986f77461496241d5", - "slotId": "mod_muzzle" - }, - { - "_id": "5d2340e986f77461496241d7", - "_tpl": "5cc6ea78e4a949000e1ea3c1", - "parentId": "5d2340e986f77461496241cb", - "slotId": "mod_charge" - } - ] - }, - "6193e380069d61205d490dc7": { - "_id": "6193e380069d61205d490dc7", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "SCARH MK17 CQC", - "_parent": "6193e380069d61205d490dc8", - "_items": [ - { - "_id": "6193e380069d61205d490dc8", - "_tpl": "6165ac306ef05c2ce828ef74", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6193e380069d61205d490dc9", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "6193e380069d61205d490dc8", - "slotId": "mod_pistol_grip" - }, - { - "_id": "6193e380069d61205d490dca", - "_tpl": "6183d53f1cb55961fa0fdcda", - "parentId": "6193e380069d61205d490dc8", - "slotId": "mod_magazine" - }, - { - "_id": "6193e380069d61205d490dcb", - "_tpl": "6165aeedfaa1272e431521e3", - "parentId": "6193e380069d61205d490dc8", - "slotId": "mod_reciever" - }, - { - "_id": "6193e380069d61205d490dcc", - "_tpl": "618168b350224f204c1da4d8", - "parentId": "6193e380069d61205d490dcb", - "slotId": "mod_barrel" - }, - { - "_id": "6193e380069d61205d490dcd", - "_tpl": "618178aa1cb55961fa0fdc80", - "parentId": "6193e380069d61205d490dcc", - "slotId": "mod_muzzle" - }, - { - "_id": "6193e380069d61205d490dce", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "6193e380069d61205d490dcc", - "slotId": "mod_sight_front" - }, - { - "_id": "6193e380069d61205d490dcf", - "_tpl": "61817865d3a39d50044c13a4", - "parentId": "6193e380069d61205d490dcb", - "slotId": "mod_sight_rear" - }, - { - "_id": "6193e380069d61205d490dd0", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "6193e380069d61205d490dcb", - "slotId": "mod_mount_000" - }, - { - "_id": "6193e380069d61205d490dd1", - "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "6193e380069d61205d490dcb", - "slotId": "mod_mount_001" - }, - { - "_id": "6193e380069d61205d490dd2", - "_tpl": "61825d06d92c473c770215de", - "parentId": "6193e380069d61205d490dc8", - "slotId": "mod_stock" - }, - { - "_id": "6193e380069d61205d490dd3", - "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "6193e380069d61205d490dd2", - "slotId": "mod_stock_001" - }, - { - "_id": "6193e380069d61205d490dd4", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "6193e380069d61205d490dd3", - "slotId": "mod_stock" - }, - { - "_id": "6193e380069d61205d490dd5", - "_tpl": "61825d24d3a39d50044c13af", - "parentId": "6193e380069d61205d490dd2", - "slotId": "mod_stock_002" - }, - { - "_id": "6193e380069d61205d490dd6", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "6193e380069d61205d490dc8", - "slotId": "mod_charge" - } - ] - }, - "62971cf67af74c3ff577954b": { - "_id": "62971cf67af74c3ff577954b", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "SAG545_long", - "_parent": "62971cf67af74c3ff577954f", - "_items": [ - { - "_id": "62971cf67af74c3ff577954f", - "_tpl": "628b5638ad252a16da6dd245", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "62971cf67af74c3ff5779550", - "_tpl": "628b8d83717774443b15e248", - "parentId": "62971cf67af74c3ff577954f", - "slotId": "mod_gas_block" - }, - { - "_id": "62971cf67af74c3ff5779551", - "_tpl": "628b916469015a4e1711ed8d", - "parentId": "62971cf67af74c3ff5779550", - "slotId": "mod_handguard" - }, - { - "_id": "62971cf67af74c3ff5779552", - "_tpl": "628b9be6cff66b70c002b14c", - "parentId": "62971cf67af74c3ff5779551", - "slotId": "mod_reciever" - }, - { - "_id": "62971cf67af74c3ff5779553", - "_tpl": "628b9471078f94059a4b9bfb", - "parentId": "62971cf67af74c3ff5779552", - "slotId": "mod_sight_rear" - }, - { - "_id": "62971cf67af74c3ff5779554", - "_tpl": "5ac7655e5acfc40016339a19", - "parentId": "62971cf67af74c3ff577954f", - "slotId": "mod_muzzle" - }, - { - "_id": "62971cf67af74c3ff5779555", - "_tpl": "5cf50850d7f00c056e24104c", - "parentId": "62971cf67af74c3ff577954f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "62971cf67af74c3ff5779556", - "_tpl": "628b9a40717774443b15e9f2", - "parentId": "62971cf67af74c3ff577954f", - "slotId": "mod_stock_000" - }, - { - "_id": "62971cf67af74c3ff5779557", - "_tpl": "55d4ae6c4bdc2d8b2f8b456e", - "parentId": "62971cf67af74c3ff5779556", - "slotId": "mod_stock" - }, - { - "_id": "62971cf67af74c3ff5779558", - "_tpl": "55d480c04bdc2d1d4e8b456a", - "parentId": "62971cf67af74c3ff577954f", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "628b5638ad252a16da6dd245" - }, - "5a327f6386f77479010da870": { - "_id": "5a327f6386f77479010da870", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "SR1M Default", - "_parent": "5a327f6386f77479010da86e", - "_items": [ - { - "_id": "5a327f6386f77479010da86e", - "_tpl": "59f98b4986f7746f546d2cef" - }, - { - "_id": "5a327f6386f77479010da86f", - "_tpl": "59f99a7d86f7745b134aa97b", - "parentId": "5a327f6386f77479010da86e", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "59f98b4986f7746f546d2cef" - }, - "5a88ad7b86f77479aa7226af": { - "_id": "5a88ad7b86f77479aa7226af", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "glock extended compensated", - "_parent": "5a88680c86f77439ae3233c7", - "_items": [ - { - "_id": "5a88680c86f77439ae3233c7", - "_tpl": "5a7ae0c351dfba0017554310" - }, - { - "_id": "5a88680c86f77439ae3233ca", - "_tpl": "5a6b5f868dc32e000a311389", - "parentId": "5a88680c86f77439ae3233c7", - "slotId": "mod_barrel" - }, - { - "_id": "5a88680c86f77439ae3233cb", - "_tpl": "5a7b4960e899ef197b331a2d", - "parentId": "5a88680c86f77439ae3233c7", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5a88680c86f77439ae3233cc", - "_tpl": "5a6f5e048dc32e00094b97da", - "parentId": "5a88680c86f77439ae3233c7", - "slotId": "mod_reciever" - }, - { - "_id": "5a886a6186f77439ae323426", - "_tpl": "5a71e0fb8dc32e00094b97f2", - "parentId": "5a88680c86f77439ae3233cc", - "slotId": "mod_sight_rear" - }, - { - "_id": "5a88680c86f77439ae3233d7", - "_tpl": "5a71e0048dc32e000c52ecc8", - "parentId": "5a88680c86f77439ae3233cc", - "slotId": "mod_sight_front" - }, - { - "_id": "5a88680c86f77439ae3233d8", - "_tpl": "5a7b32a2e899ef00135e345a", - "parentId": "5a88680c86f77439ae3233cc", - "slotId": "mod_muzzle" - }, - { - "_id": "5a88680c86f77439ae3233cd", - "_tpl": "5a718f958dc32e00094b97e7", - "parentId": "5a88680c86f77439ae3233c7", - "slotId": "mod_magazine" - }, - { - "_id": "5a88680c86f77439ae3233ce", - "_tpl": "5a7b483fe899ef0016170d15", - "parentId": "5a88680c86f77439ae3233c7", - "slotId": "mod_tactical" - } - ] - }, - "5d23404b86f7740d62079098": { - "_id": "5d23404b86f7740d62079098", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "p90 SBR", - "_parent": "5d23404b86f7740d620790a4", - "_items": [ - { - "_id": "5d23404b86f7740d620790a4", - "_tpl": "5cc82d76e24e8d00134b4b83", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5d23404b86f7740d620790a5", - "_tpl": "5cc70093e4a949033c734312", - "parentId": "5d23404b86f7740d620790a4", - "slotId": "mod_magazine" - }, - { - "_id": "5d23404b86f7740d620790a6", - "_tpl": "5cc700b9e4a949000f0f0f25", - "parentId": "5d23404b86f7740d620790a4", - "slotId": "mod_stock" - }, - { - "_id": "5d23404b86f7740d620790a7", - "_tpl": "5cc700cae4a949035e43ba72", - "parentId": "5d23404b86f7740d620790a6", - "slotId": "mod_stock_000" - }, - { - "_id": "5d23404b86f7740d620790a8", - "_tpl": "5cc70102e4a949035e43ba74", - "parentId": "5d23404b86f7740d620790a4", - "slotId": "mod_reciever" - }, - { - "_id": "5d23404b86f7740d620790a9", - "_tpl": "5cc7015ae4a949001152b4c6", - "parentId": "5d23404b86f7740d620790a8", - "slotId": "mod_mount_000" - }, - { - "_id": "5d23404b86f7740d620790aa", - "_tpl": "5cc70146e4a949000d73bf6b", - "parentId": "5d23404b86f7740d620790a8", - "slotId": "mod_mount_001" - }, - { - "_id": "5d23404b86f7740d620790ab", - "_tpl": "5cc70146e4a949000d73bf6b", - "parentId": "5d23404b86f7740d620790a8", - "slotId": "mod_mount_002" - }, - { - "_id": "5d23404b86f7740d620790ac", - "_tpl": "5cc701d7e4a94900100ac4e7", - "parentId": "5d23404b86f7740d620790a4", - "slotId": "mod_barrel" - }, - { - "_id": "5d23404b86f7740d620790ad", - "_tpl": "5cc6ea78e4a949000e1ea3c1", - "parentId": "5d23404b86f7740d620790a4", - "slotId": "mod_charge" - } - ] - }, - "6193e226449ec003d9127fa6": { - "_id": "6193e226449ec003d9127fa6", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "SCARL MK16 DEFAULT", - "_parent": "6193e226449ec003d9127fa7", - "_items": [ - { - "_id": "6193e226449ec003d9127fa7", - "_tpl": "618428466ef05c2ce828f218", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6193e226449ec003d9127fa8", - "_tpl": "571659bb2459771fb2755a12", - "parentId": "6193e226449ec003d9127fa7", - "slotId": "mod_pistol_grip" - }, - { - "_id": "6193e226449ec003d9127fa9", - "_tpl": "61840d85568c120fdd2962a5", - "parentId": "6193e226449ec003d9127fa7", - "slotId": "mod_magazine" - }, - { - "_id": "6193e226449ec003d9127faa", - "_tpl": "618426d96c780c1e710c9b9f", - "parentId": "6193e226449ec003d9127fa7", - "slotId": "mod_reciever" - }, - { - "_id": "6193e226449ec003d9127fab", - "_tpl": "6183fd911cb55961fa0fdce9", - "parentId": "6193e226449ec003d9127faa", - "slotId": "mod_barrel" - }, - { - "_id": "6193e226449ec003d9127fac", - "_tpl": "618407a850224f204c1da549", - "parentId": "6193e226449ec003d9127fab", - "slotId": "mod_muzzle" - }, - { - "_id": "6193e226449ec003d9127fad", - "_tpl": "61816fcad92c473c770215cc", - "parentId": "6193e226449ec003d9127fab", - "slotId": "mod_sight_front" - }, - { - "_id": "6193e226449ec003d9127fae", - "_tpl": "61817865d3a39d50044c13a4", - "parentId": "6193e226449ec003d9127faa", - "slotId": "mod_sight_rear" - }, - { - "_id": "6193e226449ec003d9127faf", - "_tpl": "61816df1d3a39d50044c139e", - "parentId": "6193e226449ec003d9127faa", - "slotId": "mod_mount_000" - }, - { - "_id": "6193e226449ec003d9127fb0", - "_tpl": "61816dfa6ef05c2ce828f1ad", - "parentId": "6193e226449ec003d9127faa", - "slotId": "mod_mount_001" - }, - { - "_id": "6193e226449ec003d9127fb1", - "_tpl": "61825d06d92c473c770215de", - "parentId": "6193e226449ec003d9127fa7", - "slotId": "mod_stock" - }, - { - "_id": "6193e226449ec003d9127fb2", - "_tpl": "61825d136ef05c2ce828f1cc", - "parentId": "6193e226449ec003d9127fb1", - "slotId": "mod_stock_001" - }, - { - "_id": "6193e226449ec003d9127fb3", - "_tpl": "618167616ef05c2ce828f1a8", - "parentId": "6193e226449ec003d9127fb2", - "slotId": "mod_stock" - }, - { - "_id": "6193e226449ec003d9127fb4", - "_tpl": "61825d24d3a39d50044c13af", - "parentId": "6193e226449ec003d9127fb1", - "slotId": "mod_stock_002" - }, - { - "_id": "6193e226449ec003d9127fb5", - "_tpl": "6181688c6c780c1e710c9b04", - "parentId": "6193e226449ec003d9127fa7", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "618428466ef05c2ce828f218" - }, - "59dcdbb386f77417b03f350d": { - "_id": "59dcdbb386f77417b03f350d", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "SKS-OP Default", - "_parent": "657eb404b0bc0f28b1783129", - "_items": [ - { - "_id": "657eb404b0bc0f28b1783129", - "_tpl": "587e02ff24597743df3deaeb", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "657eb404b0bc0f28b178312a", - "_tpl": "587e0531245977466077a0f7", - "parentId": "657eb404b0bc0f28b1783129", - "slotId": "mod_stock" - }, - { - "_id": "657eb404b0bc0f28b178312b", - "_tpl": "634eff66517ccc8a960fc735", - "parentId": "657eb404b0bc0f28b1783129", - "slotId": "mod_barrel" - }, - { - "_id": "657eb404b0bc0f28b178312c", - "_tpl": "634f05a21f9f536910079b56", - "parentId": "657eb404b0bc0f28b178312b", - "slotId": "mod_mount_000" - }, - { - "_id": "657eb404b0bc0f28b178312d", - "_tpl": "634f036a517ccc8a960fc746", - "parentId": "657eb404b0bc0f28b178312c", - "slotId": "mod_gas_block" - }, - { - "_id": "657eb404b0bc0f28b178312e", - "_tpl": "634f03d40384a3ba4f06f874", - "parentId": "657eb404b0bc0f28b178312d", - "slotId": "mod_mount_000" - }, - { - "_id": "657eb404b0bc0f28b178312f", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "657eb404b0bc0f28b178312c", - "slotId": "mod_sight_rear" - }, - { - "_id": "657eb404b0bc0f28b1783130", - "_tpl": "587df3a12459772c28142567", - "parentId": "657eb404b0bc0f28b1783129", - "slotId": "mod_magazine" - }, - { - "_id": "657eb404b0bc0f28b1783131", - "_tpl": "634f06262e5def262d0b30ca", - "parentId": "657eb404b0bc0f28b1783129", - "slotId": "mod_reciever" - } - ], - "_encyclopedia": "587e02ff24597743df3deaeb" - }, - "60479c3f420fac5ebc199f86": { - "_id": "60479c3f420fac5ebc199f86", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "STM-9 Default", - "_parent": "60479c3f420fac5ebc199f92", - "_items": [ - { - "_id": "60479c3f420fac5ebc199f92", - "_tpl": "60339954d62c9b14ed777c06", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "60479c3f420fac5ebc199f93", - "_tpl": "602e71bd53a60014f9705bfa", - "parentId": "60479c3f420fac5ebc199f92", - "slotId": "mod_pistol_grip" - }, - { - "_id": "60479c3f420fac5ebc199f94", - "_tpl": "5a7ad2e851dfba0016153692", - "parentId": "60479c3f420fac5ebc199f92", - "slotId": "mod_magazine" - }, - { - "_id": "60479c3f420fac5ebc199f95", - "_tpl": "602e63fb6335467b0c5ac94d", - "parentId": "60479c3f420fac5ebc199f92", - "slotId": "mod_reciever" - }, - { - "_id": "60479c3f420fac5ebc199f96", - "_tpl": "603372b4da11d6478d5a07ff", - "parentId": "60479c3f420fac5ebc199f95", - "slotId": "mod_barrel" - }, - { - "_id": "60479c3f420fac5ebc199f97", - "_tpl": "60337f5dce399e10262255d1", - "parentId": "60479c3f420fac5ebc199f96", - "slotId": "mod_muzzle" - }, - { - "_id": "60479c3f420fac5ebc199f98", - "_tpl": "6034e3cb0ddce744014cb870", - "parentId": "60479c3f420fac5ebc199f95", - "slotId": "mod_handguard" - }, - { - "_id": "60479c3f420fac5ebc199f99", - "_tpl": "602e3f1254072b51b239f713", - "parentId": "60479c3f420fac5ebc199f92", - "slotId": "mod_stock_001" - }, - { - "_id": "60479c3f420fac5ebc199f9a", - "_tpl": "602e620f9b513876d4338d9a", - "parentId": "60479c3f420fac5ebc199f99", - "slotId": "mod_stock_000" - }, - { - "_id": "60479c3f420fac5ebc199f9b", - "_tpl": "6033749e88382f4fab3fd2c5", - "parentId": "60479c3f420fac5ebc199f92", - "slotId": "mod_charge" - }, - { - "_id": "60479c3f420fac5ebc199f9c", - "_tpl": "602f85fd9b513876d4338d9c", - "parentId": "60479c3f420fac5ebc199f92", - "slotId": "mod_tactical_000" - } - ], - "_encyclopedia": "60339954d62c9b14ed777c06" - }, - "58414a052459775a2b6d9f1e": { - "_id": "58414a052459775a2b6d9f1e", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Saiga 12 v10 Default", - "_parent": "58414a052459775a2b6d9f15", - "_items": [ - { - "_id": "58414a052459775a2b6d9f15", - "_tpl": "576165642459773c7a400233" - }, - { - "_id": "58414a052459775a2b6d9f16", - "_tpl": "576169e62459773c69055191", - "parentId": "58414a052459775a2b6d9f15", - "slotId": "mod_handguard" - }, - { - "_id": "58414a052459775a2b6d9f17", - "_tpl": "576167ab2459773cad038c43", - "parentId": "58414a052459775a2b6d9f15", - "slotId": "mod_muzzle" - }, - { - "_id": "58414a052459775a2b6d9f18", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "58414a052459775a2b6d9f15", - "slotId": "mod_pistol_grip" - }, - { - "_id": "58414a052459775a2b6d9f19", - "_tpl": "57616c112459773cce774d66", - "parentId": "58414a052459775a2b6d9f15", - "slotId": "mod_reciever" - }, - { - "_id": "58414a052459775a2b6d9f1a", - "_tpl": "57a9b9ce2459770ee926038d", - "parentId": "58414a052459775a2b6d9f15", - "slotId": "mod_sight_rear" - }, - { - "_id": "58414a052459775a2b6d9f1b", - "_tpl": "57616ca52459773c69055192", - "parentId": "58414a052459775a2b6d9f15", - "slotId": "mod_stock" - }, - { - "_id": "58414a052459775a2b6d9f1c", - "_tpl": "57616a9e2459773c7a400234", - "parentId": "58414a052459775a2b6d9f15", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "576165642459773c7a400233" - }, - "628750420828252c7a28b944": { - "_id": "628750420828252c7a28b944", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "bigpipe_m870", - "_parent": "628750420828252c7a28b94e", - "_items": [ - { - "_id": "628750420828252c7a28b94e", - "_tpl": "5a7828548dc32e5a9c28b516", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "628750420828252c7a28b94f", - "_tpl": "5a787fdfc5856700142fdd9a", - "parentId": "628750420828252c7a28b94e", - "slotId": "mod_barrel" - }, - { - "_id": "628750420828252c7a28b950", - "_tpl": "5a788089c5856700142fdd9c", - "parentId": "628750420828252c7a28b94e", - "slotId": "mod_handguard" - }, - { - "_id": "628750420828252c7a28b951", - "_tpl": "5a7882dcc5856700177af662", - "parentId": "628750420828252c7a28b94e", - "slotId": "mod_magazine" - }, - { - "_id": "628750420828252c7a28b952", - "_tpl": "5bfe86a20db834001d23e8f7", - "parentId": "628750420828252c7a28b94e", - "slotId": "mod_stock" - }, - { - "_id": "628750420828252c7a28b953", - "_tpl": "5bfe86bd0db83400232fe959", - "parentId": "628750420828252c7a28b952", - "slotId": "mod_stock" - }, - { - "_id": "628750420828252c7a28b954", - "_tpl": "5a7893c1c585673f2b5c374d", - "parentId": "628750420828252c7a28b94e", - "slotId": "mod_mount" - }, - { - "_id": "628750420828252c7a28b955", - "_tpl": "5a33b2c9c4a282000c5a9511", - "parentId": "628750420828252c7a28b954", - "slotId": "mod_scope" - }, - { - "_id": "628750420828252c7a28b956", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "628750420828252c7a28b955", - "slotId": "mod_scope" - } - ] - }, - "62875103af0a053a6672c234": { - "_id": "62875103af0a053a6672c234", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "birdeye_m4", - "_parent": "62875103af0a053a6672c24a", - "_items": [ - { - "_id": "62875103af0a053a6672c24a", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "62875103af0a053a6672c24b", - "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "62875103af0a053a6672c24a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "62875103af0a053a6672c24c", - "_tpl": "5aaa5dfee5b5b000140293d3", - "parentId": "62875103af0a053a6672c24a", - "slotId": "mod_magazine" - }, - { - "_id": "62875103af0a053a6672c24d", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "62875103af0a053a6672c24a", - "slotId": "mod_reciever" - }, - { - "_id": "62875103af0a053a6672c24e", - "_tpl": "5c7d55f52e221644f31bff6a", - "parentId": "62875103af0a053a6672c24d", - "slotId": "mod_scope" - }, - { - "_id": "62875103af0a053a6672c24f", - "_tpl": "5c7d560b2e22160bc12c6139", - "parentId": "62875103af0a053a6672c24e", - "slotId": "mod_scope" - }, - { - "_id": "62875103af0a053a6672c250", - "_tpl": "5c7d55de2e221644f31bff68", - "parentId": "62875103af0a053a6672c24f", - "slotId": "mod_scope" - }, - { - "_id": "62875103af0a053a6672c251", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "62875103af0a053a6672c24d", - "slotId": "mod_barrel" - }, - { - "_id": "62875103af0a053a6672c252", - "_tpl": "5c6d710d2e22165df16b81e7", - "parentId": "62875103af0a053a6672c251", - "slotId": "mod_muzzle" - }, - { - "_id": "62875103af0a053a6672c253", - "_tpl": "55d6190f4bdc2d87028b4567", - "parentId": "62875103af0a053a6672c252", - "slotId": "mod_muzzle" - }, - { - "_id": "62875103af0a053a6672c254", - "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "62875103af0a053a6672c251", - "slotId": "mod_gas_block" - }, - { - "_id": "62875103af0a053a6672c255", - "_tpl": "5ea16acdfadf1d18c87b0784", - "parentId": "62875103af0a053a6672c24d", - "slotId": "mod_handguard" - }, - { - "_id": "62875103af0a053a6672c256", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "62875103af0a053a6672c255", - "slotId": "mod_mount_000" - }, - { - "_id": "62875103af0a053a6672c257", - "_tpl": "5cc9c20cd7f00c001336c65d", - "parentId": "62875103af0a053a6672c256", - "slotId": "mod_tactical" - }, - { - "_id": "62875103af0a053a6672c258", - "_tpl": "5b7be4895acfc400170e2dd5", - "parentId": "62875103af0a053a6672c255", - "slotId": "mod_foregrip" - }, - { - "_id": "62875103af0a053a6672c259", - "_tpl": "5c7fc87d2e221644f31c0298", - "parentId": "62875103af0a053a6672c258", - "slotId": "mod_foregrip" - }, - { - "_id": "62875103af0a053a6672c25a", - "_tpl": "5c17804b2e2216152006c02f", - "parentId": "62875103af0a053a6672c255", - "slotId": "mod_sight_front" - }, - { - "_id": "62875103af0a053a6672c25b", - "_tpl": "5c1780312e221602b66cc189", - "parentId": "62875103af0a053a6672c24d", - "slotId": "mod_sight_rear" - }, - { - "_id": "62875103af0a053a6672c25c", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "62875103af0a053a6672c24a", - "slotId": "mod_stock" - }, - { - "_id": "62875103af0a053a6672c25d", - "_tpl": "5d135ecbd7ad1a21c176542e", - "parentId": "62875103af0a053a6672c25c", - "slotId": "mod_stock_000" - }, - { - "_id": "62875103af0a053a6672c25e", - "_tpl": "5b2240bf5acfc40dc528af69", - "parentId": "62875103af0a053a6672c24a", - "slotId": "mod_charge" - } - ] - }, - "62875256bbbd995f3c41b253": { - "_id": "62875256bbbd995f3c41b253", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "birdeye_rsass", - "_parent": "62875256bbbd995f3c41b257", - "_items": [ - { - "_id": "62875256bbbd995f3c41b257", - "_tpl": "5a367e5dc4a282000e49738f", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "62875256bbbd995f3c41b258", - "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "62875256bbbd995f3c41b257", - "slotId": "mod_pistol_grip" - }, - { - "_id": "62875256bbbd995f3c41b259", - "_tpl": "5a3501acc4a282000d72293a", - "parentId": "62875256bbbd995f3c41b257", - "slotId": "mod_magazine" - }, - { - "_id": "62875256bbbd995f3c41b25a", - "_tpl": "5a33ca0fc4a282000d72292f", - "parentId": "62875256bbbd995f3c41b257", - "slotId": "mod_stock" - }, - { - "_id": "62875256bbbd995f3c41b25b", - "_tpl": "5a33cae9c4a28232980eb086", - "parentId": "62875256bbbd995f3c41b25a", - "slotId": "mod_stock" - }, - { - "_id": "62875256bbbd995f3c41b25c", - "_tpl": "5a329052c4a28200741e22d3", - "parentId": "62875256bbbd995f3c41b257", - "slotId": "mod_handguard" - }, - { - "_id": "62875256bbbd995f3c41b25d", - "_tpl": "5c0102b20db834001d23eebc", - "parentId": "62875256bbbd995f3c41b25c", - "slotId": "mod_foregrip" - }, - { - "_id": "62875256bbbd995f3c41b25e", - "_tpl": "5fce0cf655375d18a253eff0", - "parentId": "62875256bbbd995f3c41b25d", - "slotId": "mod_foregrip" - }, - { - "_id": "62875256bbbd995f3c41b25f", - "_tpl": "5a34fae7c4a2826c6e06d760", - "parentId": "62875256bbbd995f3c41b257", - "slotId": "mod_barrel" - }, - { - "_id": "62875256bbbd995f3c41b260", - "_tpl": "607ffb988900dc2d9a55b6e4", - "parentId": "62875256bbbd995f3c41b25f", - "slotId": "mod_muzzle" - }, - { - "_id": "62875256bbbd995f3c41b261", - "_tpl": "5a34fbadc4a28200741e230a", - "parentId": "62875256bbbd995f3c41b25f", - "slotId": "mod_gas_block" - }, - { - "_id": "62875256bbbd995f3c41b262", - "_tpl": "5a37ca54c4a282000d72296a", - "parentId": "62875256bbbd995f3c41b257", - "slotId": "mod_scope" - }, - { - "_id": "62875256bbbd995f3c41b263", - "_tpl": "5a37cb10c4a282329a73b4e7", - "parentId": "62875256bbbd995f3c41b262", - "slotId": "mod_scope_000" - } - ] - }, - "628753bba4a8431af4739d3b": { - "_id": "628753bba4a8431af4739d3b", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "birdeye_sr25", - "_parent": "628753bba4a8431af4739d4f", - "_items": [ - { - "_id": "628753bba4a8431af4739d4f", - "_tpl": "5df8ce05b11454561e39243b", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "628753bba4a8431af4739d50", - "_tpl": "57af48872459771f0b2ebf11", - "parentId": "628753bba4a8431af4739d4f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "628753bba4a8431af4739d51", - "_tpl": "5df8f541c41b2312ea3335e3", - "parentId": "628753bba4a8431af4739d4f", - "slotId": "mod_magazine" - }, - { - "_id": "628753bba4a8431af4739d52", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "628753bba4a8431af4739d4f", - "slotId": "mod_stock" - }, - { - "_id": "628753bba4a8431af4739d53", - "_tpl": "5fc2369685fd526b824a5713", - "parentId": "628753bba4a8431af4739d52", - "slotId": "mod_stock_000" - }, - { - "_id": "628753bba4a8431af4739d54", - "_tpl": "5df8e4080b92095fd441e594", - "parentId": "628753bba4a8431af4739d4f", - "slotId": "mod_reciever" - }, - { - "_id": "628753bba4a8431af4739d55", - "_tpl": "618bab21526131765025ab3f", - "parentId": "628753bba4a8431af4739d54", - "slotId": "mod_scope" - }, - { - "_id": "628753bba4a8431af4739d56", - "_tpl": "618ba27d9008e4636a67f61d", - "parentId": "628753bba4a8431af4739d55", - "slotId": "mod_scope" - }, - { - "_id": "628753bba4a8431af4739d57", - "_tpl": "618ba92152ecee1505530bd3", - "parentId": "628753bba4a8431af4739d55", - "slotId": "mod_mount" - }, - { - "_id": "628753bba4a8431af4739d58", - "_tpl": "5a32aa8bc4a2826c6e06d737", - "parentId": "628753bba4a8431af4739d57", - "slotId": "mod_scope" - }, - { - "_id": "628753bba4a8431af4739d59", - "_tpl": "5df917564a9f347bc92edca3", - "parentId": "628753bba4a8431af4739d54", - "slotId": "mod_barrel" - }, - { - "_id": "628753bba4a8431af4739d5a", - "_tpl": "6130c43c67085e45ef1405a1", - "parentId": "628753bba4a8431af4739d59", - "slotId": "mod_muzzle" - }, - { - "_id": "628753bba4a8431af4739d5b", - "_tpl": "5dfa3d2b0dee1b22f862eade", - "parentId": "628753bba4a8431af4739d5a", - "slotId": "mod_muzzle" - }, - { - "_id": "628753bba4a8431af4739d5c", - "_tpl": "5dfa3d45dfc58d14537c20b0", - "parentId": "628753bba4a8431af4739d59", - "slotId": "mod_gas_block" - }, - { - "_id": "628753bba4a8431af4739d5d", - "_tpl": "5df916dfbb49d91fb446d6b9", - "parentId": "628753bba4a8431af4739d54", - "slotId": "mod_handguard" - }, - { - "_id": "628753bba4a8431af4739d5e", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "628753bba4a8431af4739d5d", - "slotId": "mod_tactical" - }, - { - "_id": "628753bba4a8431af4739d5f", - "_tpl": "5dfa3d950dee1b22f862eae0", - "parentId": "628753bba4a8431af4739d5d", - "slotId": "mod_sight_front" - }, - { - "_id": "628753bba4a8431af4739d60", - "_tpl": "57cffcd624597763133760c5", - "parentId": "628753bba4a8431af4739d5d", - "slotId": "mod_foregrip" - }, - { - "_id": "628753bba4a8431af4739d61", - "_tpl": "5dfa3d7ac41b2312ea33362a", - "parentId": "628753bba4a8431af4739d54", - "slotId": "mod_sight_rear" - }, - { - "_id": "628753bba4a8431af4739d62", - "_tpl": "5df8e085bb49d91fb446d6a8", - "parentId": "628753bba4a8431af4739d4f", - "slotId": "mod_charge" - } - ] - }, - "5a8c436686f7740f394d10b5": { - "_id": "5a8c436686f7740f394d10b5", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "glock_high_capacity_compensated", - "_parent": "5a88680c86f77439ae3233c7", - "_items": [ - { - "_id": "5a88680c86f77439ae3233c7", - "_tpl": "5a7ae0c351dfba0017554310" - }, - { - "_id": "5a88680c86f77439ae3233ca", - "_tpl": "5a6b5f868dc32e000a311389", - "parentId": "5a88680c86f77439ae3233c7", - "slotId": "mod_barrel" - }, - { - "_id": "5a88680c86f77439ae3233cb", - "_tpl": "5a7b4960e899ef197b331a2d", - "parentId": "5a88680c86f77439ae3233c7", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5a88680c86f77439ae3233cc", - "_tpl": "5a6f5e048dc32e00094b97da", - "parentId": "5a88680c86f77439ae3233c7", - "slotId": "mod_reciever" - }, - { - "_id": "5a886a6186f77439ae323426", - "_tpl": "5a71e0fb8dc32e00094b97f2", - "parentId": "5a88680c86f77439ae3233cc", - "slotId": "mod_sight_rear" - }, - { - "_id": "5a88680c86f77439ae3233d7", - "_tpl": "5a71e0048dc32e000c52ecc8", - "parentId": "5a88680c86f77439ae3233cc", - "slotId": "mod_sight_front" - }, - { - "_id": "5a88680c86f77439ae3233d8", - "_tpl": "5a7b32a2e899ef00135e345a", - "parentId": "5a88680c86f77439ae3233cc", - "slotId": "mod_muzzle" - }, - { - "_id": "5a88680c86f77439ae3233cd", - "_tpl": "5a718f958dc32e00094b97e7", - "parentId": "5a88680c86f77439ae3233c7", - "slotId": "mod_magazine" - }, - { - "_id": "5a88680c86f77439ae3233ce", - "_tpl": "5a7b483fe899ef0016170d15", - "parentId": "5a88680c86f77439ae3233c7", - "slotId": "mod_tactical" - } - ] - }, - "5c0c1fc586f77455912eaf08": { - "_id": "5c0c1fc586f77455912eaf08", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "mosin infantry obrez", - "_parent": "5c0c1fc586f77455912eaf0a", - "_items": [ - { - "_id": "5c0c1fc586f77455912eaf0a", - "_tpl": "5bfd297f0db834001a669119", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c0c1fc586f77455912eaf0b", - "_tpl": "5ae0973a5acfc4001562206c", - "parentId": "5c0c1fc586f77455912eaf0a", - "slotId": "mod_magazine" - }, - { - "_id": "5c0c1fc586f77455912eaf0c", - "_tpl": "5bfd36ad0db834001c38ef66", - "parentId": "5c0c1fc586f77455912eaf0a", - "slotId": "mod_stock" - }, - { - "_id": "5c0c1fc586f77455912eaf0d", - "_tpl": "5bfd4cc90db834001d23e846", - "parentId": "5c0c1fc586f77455912eaf0a", - "slotId": "mod_barrel" - } - ] - }, - "5d23376786f77459bb77d838": { - "_id": "5d23376786f77459bb77d838", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "p90 default", - "_parent": "5d23376786f77459bb77d83a", - "_items": [ - { - "_id": "5d23376786f77459bb77d83a", - "_tpl": "5cc82d76e24e8d00134b4b83", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5d23376786f77459bb77d83b", - "_tpl": "5cc70093e4a949033c734312", - "parentId": "5d23376786f77459bb77d83a", - "slotId": "mod_magazine" - }, - { - "_id": "5d23376786f77459bb77d83c", - "_tpl": "5cc700b9e4a949000f0f0f25", - "parentId": "5d23376786f77459bb77d83a", - "slotId": "mod_stock" - }, - { - "_id": "5d23376786f77459bb77d83d", - "_tpl": "5cc700cae4a949035e43ba72", - "parentId": "5d23376786f77459bb77d83c", - "slotId": "mod_stock_000" - }, - { - "_id": "5d23376786f77459bb77d83e", - "_tpl": "5cc70102e4a949035e43ba74", - "parentId": "5d23376786f77459bb77d83a", - "slotId": "mod_reciever" - }, - { - "_id": "5d23376786f77459bb77d83f", - "_tpl": "5cebec38d7f00c00110a652a", - "parentId": "5d23376786f77459bb77d83e", - "slotId": "mod_mount_000" - }, - { - "_id": "5d23376786f77459bb77d840", - "_tpl": "5cc70146e4a949000d73bf6b", - "parentId": "5d23376786f77459bb77d83e", - "slotId": "mod_mount_001" - }, - { - "_id": "5d23376786f77459bb77d841", - "_tpl": "5cc70146e4a949000d73bf6b", - "parentId": "5d23376786f77459bb77d83e", - "slotId": "mod_mount_002" - }, - { - "_id": "5d23376786f77459bb77d842", - "_tpl": "5cc701aae4a949000e1ea45c", - "parentId": "5d23376786f77459bb77d83a", - "slotId": "mod_barrel" - }, - { - "_id": "5d23376786f77459bb77d843", - "_tpl": "5cc82796e24e8d000f5859a8", - "parentId": "5d23376786f77459bb77d842", - "slotId": "mod_muzzle" - }, - { - "_id": "5d23376786f77459bb77d844", - "_tpl": "5cc6ea78e4a949000e1ea3c1", - "parentId": "5d23376786f77459bb77d83a", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "5cc82d76e24e8d00134b4b83" - }, - "58414a16245977599247970a": { - "_id": "58414a16245977599247970a", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "SV-98 Default", - "_parent": "629762133e4c46444179c8fd", - "_items": [ - { - "_id": "629762133e4c46444179c8fd", - "_tpl": "55801eed4bdc2d89578b4588", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "629762133e4c46444179c8fe", - "_tpl": "559ba5b34bdc2d1f1a8b4582", - "parentId": "629762133e4c46444179c8fd", - "slotId": "mod_magazine" - }, - { - "_id": "629762133e4c46444179c8ff", - "_tpl": "56083e1b4bdc2dc8488b4572", - "parentId": "629762133e4c46444179c8fd", - "slotId": "mod_sight_rear" - }, - { - "_id": "629762133e4c46444179c900", - "_tpl": "56083eab4bdc2d26448b456a", - "parentId": "629762133e4c46444179c8fd", - "slotId": "mod_tactical" - }, - { - "_id": "629762133e4c46444179c901", - "_tpl": "560e620e4bdc2d724b8b456b", - "parentId": "629762133e4c46444179c8fd", - "slotId": "mod_muzzle" - }, - { - "_id": "629762133e4c46444179c902", - "_tpl": "61faa91878830f069b6b7967", - "parentId": "629762133e4c46444179c8fd", - "slotId": "mod_stock" - }, - { - "_id": "629762133e4c46444179c903", - "_tpl": "56ea8222d2720b69698b4567", - "parentId": "629762133e4c46444179c902", - "slotId": "mod_bipod" - } - ], - "_encyclopedia": "55801eed4bdc2d89578b4588" - }, - "5e0354f786f77425b53eb6c5": { - "_id": "5e0354f786f77425b53eb6c5", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "T5000_default", - "_parent": "5e0354f786f77425b53eb6c7", - "_items": [ - { - "_id": "5e0354f786f77425b53eb6c7", - "_tpl": "5df24cf80dee1b22f862e9bc", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5e0354f786f77425b53eb6c8", - "_tpl": "5df25b6c0b92095fd441e4cf", - "parentId": "5e0354f786f77425b53eb6c7", - "slotId": "mod_magazine" - }, - { - "_id": "5e0354f786f77425b53eb6c9", - "_tpl": "5df256570dee1b22f862e9c4", - "parentId": "5e0354f786f77425b53eb6c7", - "slotId": "mod_barrel" - }, - { - "_id": "5e0354f786f77425b53eb6ca", - "_tpl": "5df35e7f2a78646d96665dd4", - "parentId": "5e0354f786f77425b53eb6c9", - "slotId": "mod_muzzle" - }, - { - "_id": "5e0354f786f77425b53eb6cb", - "_tpl": "5df35e59c41b2312ea3334d5", - "parentId": "5e0354f786f77425b53eb6c7", - "slotId": "mod_stock", - "upd": { - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "5e0354f786f77425b53eb6cc", - "_tpl": "5df25d3bfd6b4e6e2276dc9a", - "parentId": "5e0354f786f77425b53eb6cb", - "slotId": "mod_handguard" - }, - { - "_id": "5e0354f786f77425b53eb6cd", - "_tpl": "5df35eb2b11454561e3923e2", - "parentId": "5e0354f786f77425b53eb6cc", - "slotId": "mod_mount_000" - }, - { - "_id": "5e0354f786f77425b53eb6ce", - "_tpl": "5df35eb2b11454561e3923e2", - "parentId": "5e0354f786f77425b53eb6cc", - "slotId": "mod_mount_001" - }, - { - "_id": "5e0354f786f77425b53eb6cf", - "_tpl": "5df35ea9c41b2312ea3334d8", - "parentId": "5e0354f786f77425b53eb6cc", - "slotId": "mod_mount_002" - }, - { - "_id": "5e0354f786f77425b53eb6d0", - "_tpl": "5df35eb2b11454561e3923e2", - "parentId": "5e0354f786f77425b53eb6cc", - "slotId": "mod_mount_003" - }, - { - "_id": "5e0354f786f77425b53eb6d1", - "_tpl": "5df36948bb49d91fb446d5ad", - "parentId": "5e0354f786f77425b53eb6cc", - "slotId": "mod_foregrip" - }, - { - "_id": "5e0354f786f77425b53eb6d2", - "_tpl": "5df38a5fb74cd90030650cb6", - "parentId": "5e0354f786f77425b53eb6cb", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5e0354f786f77425b53eb6d3", - "_tpl": "5df35ddddfc58d14537c2036", - "parentId": "5e0354f786f77425b53eb6cb", - "slotId": "mod_stock_axis" - }, - { - "_id": "5e0354f786f77425b53eb6d4", - "_tpl": "5df35e970b92095fd441e4d2", - "parentId": "5e0354f786f77425b53eb6c7", - "slotId": "mod_mount" - } - ], - "_encyclopedia": "5df24cf80dee1b22f862e9bc" - }, - "5a88ae4a86f77457fd2c0dae": { - "_id": "5a88ae4a86f77457fd2c0dae", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "glock viper ported mid 33 capacity", - "_parent": "5a886a6186f77439ae323412", - "_items": [ - { - "_id": "5a886a6186f77439ae323412", - "_tpl": "5a7ae0c351dfba0017554310" - }, - { - "_id": "5a886a6186f77439ae323416", - "_tpl": "5a6b5b8a8dc32e001207faf3", - "parentId": "5a886a6186f77439ae323412", - "slotId": "mod_barrel" - }, - { - "_id": "5a886a6186f77439ae323427", - "_tpl": "5a7ad0c451dfba0013379712", - "parentId": "5a886a6186f77439ae323416", - "slotId": "mod_muzzle" - }, - { - "_id": "5a886a6186f77439ae323417", - "_tpl": "5a6f5f078dc32e00094b97dd", - "parentId": "5a886a6186f77439ae323412", - "slotId": "mod_reciever" - }, - { - "_id": "5a886a6186f77439ae323418", - "_tpl": "5a7ad2e851dfba0016153692", - "parentId": "5a886a6186f77439ae323412", - "slotId": "mod_magazine" - }, - { - "_id": "5a886a6186f77439ae323419", - "_tpl": "5a7b4900e899ef197b331a2a", - "parentId": "5a886a6186f77439ae323412", - "slotId": "mod_tactical" - }, - { - "_id": "5a886a6186f77439ae323428", - "_tpl": "58d2664f86f7747fec5834f6", - "parentId": "5a886a6186f77439ae323419", - "slotId": "mod_scope" - }, - { - "_id": "5a886a6186f77439ae323429", - "_tpl": "58d268fc86f774111273f8c2", - "parentId": "5a886a6186f77439ae323428", - "slotId": "mod_scope" - } - ] - }, - "63986acda28b76105a33c09f": { - "_id": "63986acda28b76105a33c09f", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "SR2M_TAC", - "_parent": "63986acda28b76105a33c0a0", - "_items": [ - { - "_id": "63986acda28b76105a33c0a0", - "_tpl": "62e14904c2699c0ec93adc47", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "63986acda28b76105a33c0a1", - "_tpl": "62e153bcdb1a5c41971c1b5b", - "parentId": "63986acda28b76105a33c0a0", - "slotId": "mod_magazine" - }, - { - "_id": "63986acda28b76105a33c0a2", - "_tpl": "62e2a7138e1ac9380579c122", - "parentId": "63986acda28b76105a33c0a0", - "slotId": "mod_muzzle" - }, - { - "_id": "63986acda28b76105a33c0a3", - "_tpl": "62e2969582ebf260c20539c2", - "parentId": "63986acda28b76105a33c0a0", - "slotId": "mod_stock" - }, - { - "_id": "63986acda28b76105a33c0a4", - "_tpl": "62e27a7865f0b1592a49e17b", - "parentId": "63986acda28b76105a33c0a0", - "slotId": "mod_reciever" - }, - { - "_id": "63986acda28b76105a33c0a5", - "_tpl": "62e281349ecd3f493f6df954", - "parentId": "63986acda28b76105a33c0a4", - "slotId": "mod_mount" - }, - { - "_id": "63986acda28b76105a33c0a6", - "_tpl": "616554fe50224f204c1da2aa", - "parentId": "63986acda28b76105a33c0a5", - "slotId": "mod_scope" - }, - { - "_id": "63986acda28b76105a33c0a7", - "_tpl": "61657230d92c473c770213d7", - "parentId": "63986acda28b76105a33c0a6", - "slotId": "mod_scope" - }, - { - "_id": "63986acda28b76105a33c0a8", - "_tpl": "637ba19df7ca6372bf2613d7", - "parentId": "63986acda28b76105a33c0a0", - "slotId": "mod_handguard" - }, - { - "_id": "63986acda28b76105a33c0a9", - "_tpl": "62ed1921b3608410ef5a2c04", - "parentId": "63986acda28b76105a33c0a8", - "slotId": "mod_mount_001" - }, - { - "_id": "63986acda28b76105a33c0aa", - "_tpl": "560d657b4bdc2da74d8b4572", - "parentId": "63986acda28b76105a33c0a9", - "slotId": "mod_tactical" - }, - { - "_id": "63986acda28b76105a33c0ab", - "_tpl": "637ba29bf7ca6372bf2613db", - "parentId": "63986acda28b76105a33c0a0", - "slotId": "mod_pistolgrip" - } - ] - }, - "5e03511086f7744ccb1fb6cf": { - "_id": "5e03511086f7744ccb1fb6cf", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "SR25_default", - "_parent": "5e03511086f7744ccb1fb6dd", - "_items": [ - { - "_id": "5e03511086f7744ccb1fb6dd", - "_tpl": "5df8ce05b11454561e39243b", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5e03511086f7744ccb1fb6de", - "_tpl": "55d4b9964bdc2d1d4e8b456e", - "parentId": "5e03511086f7744ccb1fb6dd", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5e03511086f7744ccb1fb6df", - "_tpl": "5df8f541c41b2312ea3335e3", - "parentId": "5e03511086f7744ccb1fb6dd", - "slotId": "mod_magazine" - }, - { - "_id": "5e03511086f7744ccb1fb6e0", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "5e03511086f7744ccb1fb6dd", - "slotId": "mod_stock" - }, - { - "_id": "5e03511086f7744ccb1fb6e1", - "_tpl": "5ae30c9a5acfc408fb139a03", - "parentId": "5e03511086f7744ccb1fb6e0", - "slotId": "mod_stock_000" - }, - { - "_id": "5e03511086f7744ccb1fb6e2", - "_tpl": "5df8e4080b92095fd441e594", - "parentId": "5e03511086f7744ccb1fb6dd", - "slotId": "mod_reciever" - }, - { - "_id": "5e03511086f7744ccb1fb6e3", - "_tpl": "5df917564a9f347bc92edca3", - "parentId": "5e03511086f7744ccb1fb6e2", - "slotId": "mod_barrel" - }, - { - "_id": "5e03511086f7744ccb1fb6e4", - "_tpl": "5dfa3cd1b33c0951220c079b", - "parentId": "5e03511086f7744ccb1fb6e3", - "slotId": "mod_muzzle" - }, - { - "_id": "5e03511086f7744ccb1fb6e5", - "_tpl": "5dfa3d45dfc58d14537c20b0", - "parentId": "5e03511086f7744ccb1fb6e3", - "slotId": "mod_gas_block" - }, - { - "_id": "5e03511086f7744ccb1fb6e6", - "_tpl": "5df916dfbb49d91fb446d6b9", - "parentId": "5e03511086f7744ccb1fb6e2", - "slotId": "mod_handguard" - }, - { - "_id": "5e03511086f7744ccb1fb6e7", - "_tpl": "5dfa3d950dee1b22f862eae0", - "parentId": "5e03511086f7744ccb1fb6e6", - "slotId": "mod_sight_front" - }, - { - "_id": "5e03511086f7744ccb1fb6e8", - "_tpl": "5dfa3d7ac41b2312ea33362a", - "parentId": "5e03511086f7744ccb1fb6e2", - "slotId": "mod_sight_rear" - }, - { - "_id": "5e03511086f7744ccb1fb6e9", - "_tpl": "5df8e053bb49d91fb446d6a6", - "parentId": "5e03511086f7744ccb1fb6dd", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "5df8ce05b11454561e39243b" - }, - "5c0e93cb86f77432297fdfc8": { - "_id": "5c0e93cb86f77432297fdfc8", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "TT brunner", - "_parent": "5c0e93cb86f77432297fdfd0", - "_items": [ - { - "_id": "5c0e93cb86f77432297fdfd0", - "_tpl": "571a12c42459771f627b58a0", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c0e93cb86f77432297fdfd1", - "_tpl": "571a26d524597720680fbe8a", - "parentId": "5c0e93cb86f77432297fdfd0", - "slotId": "mod_barrel" - }, - { - "_id": "5c0e93cb86f77432297fdfd2", - "_tpl": "5c079ec50db834001966a706", - "parentId": "5c0e93cb86f77432297fdfd0", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5c0e93cb86f77432297fdfd3", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "5c0e93cb86f77432297fdfd0", - "slotId": "mod_magazine" - }, - { - "_id": "5c0e93cb86f77432297fdfd4", - "_tpl": "5bffd7ed0db834001d23ebf9", - "parentId": "5c0e93cb86f77432297fdfd0", - "slotId": "mod_muzzle" - }, - { - "_id": "5c0e93cb86f77432297fdfd5", - "_tpl": "5c079ed60db834001a66b372", - "parentId": "5c0e93cb86f77432297fdfd0", - "slotId": "mod_tactical" - } - ] - }, - "629766c15c9e3c392f7c2db0": { - "_id": "629766c15c9e3c392f7c2db0", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "SV98_OV", - "_parent": "6297693e5c9e3c392f7c2dc0", - "_items": [ - { - "_id": "6297693e5c9e3c392f7c2dc0", - "_tpl": "55801eed4bdc2d89578b4588", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "6297693e5c9e3c392f7c2dc1", - "_tpl": "559ba5b34bdc2d1f1a8b4582", - "parentId": "6297693e5c9e3c392f7c2dc0", - "slotId": "mod_magazine" - }, - { - "_id": "6297693e5c9e3c392f7c2dc2", - "_tpl": "56083e1b4bdc2dc8488b4572", - "parentId": "6297693e5c9e3c392f7c2dc0", - "slotId": "mod_sight_rear" - }, - { - "_id": "6297693e5c9e3c392f7c2dc3", - "_tpl": "560e620e4bdc2d724b8b456b", - "parentId": "6297693e5c9e3c392f7c2dc0", - "slotId": "mod_muzzle" - }, - { - "_id": "6297693e5c9e3c392f7c2dc4", - "_tpl": "623b2e9d11c3296b440d1638", - "parentId": "6297693e5c9e3c392f7c2dc0", - "slotId": "mod_stock", - "upd": { - "Foldable": { - "Folded": false - } - } - }, - { - "_id": "6297693e5c9e3c392f7c2dc5", - "_tpl": "623c3c1f37b4b31470357737", - "parentId": "6297693e5c9e3c392f7c2dc4", - "slotId": "mod_handguard" - }, - { - "_id": "6297693e5c9e3c392f7c2dc6", - "_tpl": "623c2f4242aee3103f1c44b7", - "parentId": "6297693e5c9e3c392f7c2dc5", - "slotId": "mod_mount_000" - }, - { - "_id": "6297693e5c9e3c392f7c2dc7", - "_tpl": "623c2f652febb22c2777d8d7", - "parentId": "6297693e5c9e3c392f7c2dc5", - "slotId": "mod_mount_001" - }, - { - "_id": "6297693e5c9e3c392f7c2dc8", - "_tpl": "623c2f652febb22c2777d8d7", - "parentId": "6297693e5c9e3c392f7c2dc5", - "slotId": "mod_mount_002" - }, - { - "_id": "6297693e5c9e3c392f7c2dc9", - "_tpl": "623c3be0484b5003161840dc", - "parentId": "6297693e5c9e3c392f7c2dc4", - "slotId": "mod_pistol_grip" - }, - { - "_id": "6297693e5c9e3c392f7c2dca", - "_tpl": "624c29ce09cd027dff2f8cd7", - "parentId": "6297693e5c9e3c392f7c2dc4", - "slotId": "mod_stock_000" - } - ] - }, - "619d26ccc7791e3af27ae3cd": { - "_id": "619d26ccc7791e3af27ae3cd", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "USP Match", - "_parent": "619d26ccc7791e3af27ae3d7", - "_items": [ - { - "_id": "619d26ccc7791e3af27ae3d7", - "_tpl": "6193a720f8ee7e52e42109ed", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "619d26ccc7791e3af27ae3d8", - "_tpl": "6194f02d9bb3d20b0946d2f0", - "parentId": "619d26ccc7791e3af27ae3d7", - "slotId": "mod_barrel" - }, - { - "_id": "619d26ccc7791e3af27ae3d9", - "_tpl": "6194f5a318a3974e5e7421eb", - "parentId": "619d26ccc7791e3af27ae3d7", - "slotId": "mod_reciever" - }, - { - "_id": "619d26ccc7791e3af27ae3da", - "_tpl": "6194f2df645b5d229654ad77", - "parentId": "619d26ccc7791e3af27ae3d9", - "slotId": "mod_sight_rear" - }, - { - "_id": "619d26ccc7791e3af27ae3db", - "_tpl": "6194f3286db0f2477964e67d", - "parentId": "619d26ccc7791e3af27ae3d9", - "slotId": "mod_sight_front" - }, - { - "_id": "619d26ccc7791e3af27ae3dc", - "_tpl": "6193d3149fb0c665d5490e32", - "parentId": "619d26ccc7791e3af27ae3d7", - "slotId": "mod_magazine" - }, - { - "_id": "619d26ccc7791e3af27ae3dd", - "_tpl": "6193d3cded0429009f543e6a", - "parentId": "619d26ccc7791e3af27ae3d7", - "slotId": "mod_trigger" - }, - { - "_id": "619d26ccc7791e3af27ae3de", - "_tpl": "6193d3be7c6c7b169525f0da", - "parentId": "619d26ccc7791e3af27ae3d7", - "slotId": "mod_hammer" - }, - { - "_id": "619d26ccc7791e3af27ae3df", - "_tpl": "6193d5d4f8ee7e52e4210a1b", - "parentId": "619d26ccc7791e3af27ae3d7", - "slotId": "mod_catch" - }, - { - "_id": "619d26ccc7791e3af27ae3e0", - "_tpl": "619624b26db0f2477964e6b0", - "parentId": "619d26ccc7791e3af27ae3d7", - "slotId": "mod_mount_000" - } - ] - }, - "619d270836b5be1f3236f9c5": { - "_id": "619d270836b5be1f3236f9c5", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "USP Tactical", - "_parent": "619d270836b5be1f3236f9c6", - "_items": [ - { - "_id": "619d270836b5be1f3236f9c6", - "_tpl": "6193a720f8ee7e52e42109ed", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "619d270836b5be1f3236f9c7", - "_tpl": "6194efe07c6c7b169525f11b", - "parentId": "619d270836b5be1f3236f9c6", - "slotId": "mod_barrel" - }, - { - "_id": "619d270836b5be1f3236f9c8", - "_tpl": "6194f1f918a3974e5e7421e4", - "parentId": "619d270836b5be1f3236f9c7", - "slotId": "mod_muzzle" - }, - { - "_id": "619d270836b5be1f3236f9c9", - "_tpl": "6194f41f9fb0c665d5490e75", - "parentId": "619d270836b5be1f3236f9c6", - "slotId": "mod_reciever" - }, - { - "_id": "619d270836b5be1f3236f9ca", - "_tpl": "6194f2df645b5d229654ad77", - "parentId": "619d270836b5be1f3236f9c9", - "slotId": "mod_sight_rear" - }, - { - "_id": "619d270836b5be1f3236f9cb", - "_tpl": "6194f3286db0f2477964e67d", - "parentId": "619d270836b5be1f3236f9c9", - "slotId": "mod_sight_front" - }, - { - "_id": "619d270836b5be1f3236f9cc", - "_tpl": "6193d3149fb0c665d5490e32", - "parentId": "619d270836b5be1f3236f9c6", - "slotId": "mod_magazine" - }, - { - "_id": "619d270836b5be1f3236f9cd", - "_tpl": "6193d3cded0429009f543e6a", - "parentId": "619d270836b5be1f3236f9c6", - "slotId": "mod_trigger" - }, - { - "_id": "619d270836b5be1f3236f9ce", - "_tpl": "6193d3be7c6c7b169525f0da", - "parentId": "619d270836b5be1f3236f9c6", - "slotId": "mod_hammer" - }, - { - "_id": "619d270836b5be1f3236f9cf", - "_tpl": "6193d5d4f8ee7e52e4210a1b", - "parentId": "619d270836b5be1f3236f9c6", - "slotId": "mod_catch" - }, - { - "_id": "619d270836b5be1f3236f9d0", - "_tpl": "6196255558ef8c428c287d1c", - "parentId": "619d270836b5be1f3236f9c6", - "slotId": "mod_mount_000" - } - ] - }, - "628751e6af0a053a6672c261": { - "_id": "628751e6af0a053a6672c261", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "birdeye_m700", - "_parent": "628751e6af0a053a6672c26f", - "_items": [ - { - "_id": "628751e6af0a053a6672c26f", - "_tpl": "5bfea6e90db834001b7347f3", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "628751e6af0a053a6672c270", - "_tpl": "5d25a6a48abbc306c62e6310", - "parentId": "628751e6af0a053a6672c26f", - "slotId": "mod_magazine" - }, - { - "_id": "628751e6af0a053a6672c271", - "_tpl": "5cde739cd7f00c0010373bd3", - "parentId": "628751e6af0a053a6672c26f", - "slotId": "mod_stock" - }, - { - "_id": "628751e6af0a053a6672c272", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "628751e6af0a053a6672c271", - "slotId": "mod_stock" - }, - { - "_id": "628751e6af0a053a6672c273", - "_tpl": "5d4406a8a4b9361e4f6eb8b7", - "parentId": "628751e6af0a053a6672c272", - "slotId": "mod_stock_000" - }, - { - "_id": "628751e6af0a053a6672c274", - "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "628751e6af0a053a6672c271", - "slotId": "mod_pistol_grip" - }, - { - "_id": "628751e6af0a053a6672c275", - "_tpl": "5cde7afdd7f00c000d36b89d", - "parentId": "628751e6af0a053a6672c271", - "slotId": "mod_handguard" - }, - { - "_id": "628751e6af0a053a6672c276", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "628751e6af0a053a6672c26f", - "slotId": "mod_barrel" - }, - { - "_id": "628751e6af0a053a6672c277", - "_tpl": "5d1f819086f7744b355c219b", - "parentId": "628751e6af0a053a6672c276", - "slotId": "mod_muzzle" - }, - { - "_id": "628751e6af0a053a6672c278", - "_tpl": "5cff9e84d7ad1a049e54ed55", - "parentId": "628751e6af0a053a6672c277", - "slotId": "mod_muzzle" - }, - { - "_id": "628751e6af0a053a6672c279", - "_tpl": "5cde7b43d7f00c000d36b93e", - "parentId": "628751e6af0a053a6672c26f", - "slotId": "mod_mount" - }, - { - "_id": "628751e6af0a053a6672c27a", - "_tpl": "5aa66a9be5b5b0214e506e89", - "parentId": "628751e6af0a053a6672c279", - "slotId": "mod_scope" - }, - { - "_id": "628751e6af0a053a6672c27b", - "_tpl": "61714eec290d254f5e6b2ffc", - "parentId": "628751e6af0a053a6672c27a", - "slotId": "mod_scope" - } - ] - }, - "58414a3f2459775a77263531": { - "_id": "58414a3f2459775a77263531", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "VSS Vintorez Default", - "_parent": "58414a3f2459775a7726352a", - "_items": [ - { - "_id": "58414a3f2459775a7726352a", - "_tpl": "57838ad32459774a17445cd2" - }, - { - "_id": "58414a3f2459775a7726352b", - "_tpl": "57838f0b2459774a256959b2", - "parentId": "58414a3f2459775a7726352a", - "slotId": "mod_magazine" - }, - { - "_id": "58414a3f2459775a7726352c", - "_tpl": "57838c962459774a1651ec63", - "parentId": "58414a3f2459775a7726352a", - "slotId": "mod_muzzle" - }, - { - "_id": "58414a3f2459775a77263530", - "_tpl": "57838e1b2459774a256959b1", - "parentId": "58414a3f2459775a7726352c", - "slotId": "mod_sight_rear" - }, - { - "_id": "58414a3f2459775a7726352d", - "_tpl": "578395402459774a256959b5", - "parentId": "58414a3f2459775a7726352a", - "slotId": "mod_reciever" - }, - { - "_id": "58414a3f2459775a7726352e", - "_tpl": "578395e82459774a0e553c7b", - "parentId": "58414a3f2459775a7726352a", - "slotId": "mod_stock" - } - ], - "_encyclopedia": "57838ad32459774a17445cd2" - }, - "5a88af5086f77411a871682c": { - "_id": "5a88af5086f77411a871682c", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "glock aimtech mount_osprey", - "_parent": "5a88680c86f77439ae3233c8", - "_items": [ - { - "_id": "5a88680c86f77439ae3233c8", - "_tpl": "5a7ae0c351dfba0017554310" - }, - { - "_id": "5a88680c86f77439ae3233cf", - "_tpl": "5a6b5e468dc32e001207faf5", - "parentId": "5a88680c86f77439ae3233c8", - "slotId": "mod_barrel" - }, - { - "_id": "5a88680c86f77439ae3233d9", - "_tpl": "5a32a064c4a28200741e22de", - "parentId": "5a88680c86f77439ae3233cf", - "slotId": "mod_muzzle" - }, - { - "_id": "5a88680c86f77439ae3233d0", - "_tpl": "5a6f5e048dc32e00094b97da", - "parentId": "5a88680c86f77439ae3233c8", - "slotId": "mod_reciever" - }, - { - "_id": "5a88680c86f77439ae3233d1", - "_tpl": "5a718da68dc32e000d46d264", - "parentId": "5a88680c86f77439ae3233c8", - "slotId": "mod_magazine" - }, - { - "_id": "5a88680c86f77439ae3233d2", - "_tpl": "5a7ad4af51dfba0013379717", - "parentId": "5a88680c86f77439ae3233c8", - "slotId": "mod_tactical" - }, - { - "_id": "5a88680c86f77439ae3233da", - "_tpl": "577d128124597739d65d0e56", - "parentId": "5a88680c86f77439ae3233d2", - "slotId": "mod_scope" - }, - { - "_id": "5a88680c86f77439ae3233db", - "_tpl": "577d141e24597739c5255e01", - "parentId": "5a88680c86f77439ae3233da", - "slotId": "mod_scope" - } - ] - }, - "5a88b1f686f774159949926e": { - "_id": "5a88b1f686f774159949926e", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "glock_zev_spartan_salient", - "_parent": "5a88595b86f7741822597734", - "_items": [ - { - "_id": "5a88595b86f7741822597734", - "_tpl": "5a7ae0c351dfba0017554310" - }, - { - "_id": "5a88665a86f774213552aa58", - "_tpl": "5a6b5ed88dc32e000c52ec86", - "parentId": "5a88595b86f7741822597734", - "slotId": "mod_barrel" - }, - { - "_id": "5a88680c86f77439ae3233d5", - "_tpl": "5a6b59a08dc32e000b452fb7", - "parentId": "5a88665a86f774213552aa58", - "slotId": "mod_muzzle" - }, - { - "_id": "5a88595b86f7741822597748", - "_tpl": "5a71e4f48dc32e001207fb26", - "parentId": "5a88595b86f7741822597734", - "slotId": "mod_reciever" - }, - { - "_id": "5a886a6186f77439ae323423", - "_tpl": "5a7d912f159bd400165484f3", - "parentId": "5a88595b86f7741822597748", - "slotId": "mod_sight_rear" - }, - { - "_id": "5a886a6186f77439ae323424", - "_tpl": "5a7d9104159bd400134c8c21", - "parentId": "5a88595b86f7741822597748", - "slotId": "mod_sight_front" - }, - { - "_id": "5a886a6186f77439ae323425", - "_tpl": "5a71e1868dc32e00094b97f3", - "parentId": "5a88595b86f7741822597748", - "slotId": "mod_scope" - }, - { - "_id": "5a88595b86f7741822597749", - "_tpl": "5a718b548dc32e000d46d262", - "parentId": "5a88595b86f7741822597734", - "slotId": "mod_magazine" - } - ] - }, - "5f6762e964af6a2aa319deeb": { - "_id": "5f6762e964af6a2aa319deeb", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "m45a1_default", - "_parent": "5f6762e964af6a2aa319def6", - "_items": [ - { - "_id": "5f6762e964af6a2aa319def6", - "_tpl": "5f36a0e5fbf956000b716b65", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5f6762e964af6a2aa319def7", - "_tpl": "5f3e7801153b8571434a924c", - "parentId": "5f6762e964af6a2aa319def6", - "slotId": "mod_barrel" - }, - { - "_id": "5f6762e964af6a2aa319def8", - "_tpl": "5f3e778efcd9b651187d7201", - "parentId": "5f6762e964af6a2aa319def6", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5f6762e964af6a2aa319def9", - "_tpl": "5f3e7823ddc4f03b010e2045", - "parentId": "5f6762e964af6a2aa319def6", - "slotId": "mod_reciever" - }, - { - "_id": "5f6762e964af6a2aa319defa", - "_tpl": "5f3e7897ddc4f03b010e204a", - "parentId": "5f6762e964af6a2aa319def9", - "slotId": "mod_sight_rear" - }, - { - "_id": "5f6762e964af6a2aa319defb", - "_tpl": "5f3e78a7fbf956000b716b8e", - "parentId": "5f6762e964af6a2aa319def9", - "slotId": "mod_sight_front" - }, - { - "_id": "5f6762e964af6a2aa319defc", - "_tpl": "5f3e77b26cda304dcc634057", - "parentId": "5f6762e964af6a2aa319def6", - "slotId": "mod_magazine" - }, - { - "_id": "5f6762e964af6a2aa319defd", - "_tpl": "5f3e772a670e2a7b01739a52", - "parentId": "5f6762e964af6a2aa319def6", - "slotId": "mod_trigger" - }, - { - "_id": "5f6762e964af6a2aa319defe", - "_tpl": "5f3e76d86cda304dcc634054", - "parentId": "5f6762e964af6a2aa319def6", - "slotId": "mod_hammer" - }, - { - "_id": "5f6762e964af6a2aa319deff", - "_tpl": "5f3e777688ca2d00ad199d25", - "parentId": "5f6762e964af6a2aa319def6", - "slotId": "mod_catch" - } - ], - "_encyclopedia": "5f36a0e5fbf956000b716b65" - }, - "5b44abe986f774283e2e3512": { - "_id": "5b44abe986f774283e2e3512", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "gold_TT", - "_parent": "5b44abe986f774283e2e3514", - "_items": [ - { - "_id": "5b44abe986f774283e2e3514", - "_tpl": "5b3b713c5acfc4330140bd8d" - }, - { - "_id": "5b44abe986f774283e2e3515", - "_tpl": "5b3baf8f5acfc40dc5296692", - "parentId": "5b44abe986f774283e2e3514", - "slotId": "mod_barrel" - }, - { - "_id": "5b44abe986f774283e2e3516", - "_tpl": "5b3cadf35acfc400194776a0", - "parentId": "5b44abe986f774283e2e3514", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5b44abe986f774283e2e3517", - "_tpl": "571a29dc2459771fb2755a6a", - "parentId": "5b44abe986f774283e2e3514", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5b3b713c5acfc4330140bd8d" - }, - "5a8ae73886f7747b2e6e1416": { - "_id": "5a8ae73886f7747b2e6e1416", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "m4_block_2_customized", - "_parent": "6396b4846a00541d900be57f", - "_items": [ - { - "_id": "6396b4846a00541d900be57f", - "_tpl": "5447a9cd4bdc2dbd208b4567", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "6396b4846a00541d900be580", - "_tpl": "5a339805c4a2826c6e06d73d", - "parentId": "6396b4846a00541d900be57f", - "slotId": "mod_pistol_grip" - }, - { - "_id": "6396b4846a00541d900be581", - "_tpl": "55802d5f4bdc2dac148b458e", - "parentId": "6396b4846a00541d900be57f", - "slotId": "mod_magazine" - }, - { - "_id": "6396b4846a00541d900be582", - "_tpl": "55d355e64bdc2d962f8b4569", - "parentId": "6396b4846a00541d900be57f", - "slotId": "mod_reciever" - }, - { - "_id": "6396b4846a00541d900be583", - "_tpl": "57aca93d2459771f2c7e26db", - "parentId": "6396b4846a00541d900be582", - "slotId": "mod_scope" - }, - { - "_id": "6396b4846a00541d900be584", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "6396b4846a00541d900be582", - "slotId": "mod_barrel" - }, - { - "_id": "6396b4846a00541d900be585", - "_tpl": "56ea8180d2720bf2698b456a", - "parentId": "6396b4846a00541d900be584", - "slotId": "mod_muzzle" - }, - { - "_id": "6396b4846a00541d900be586", - "_tpl": "57da93632459771cb65bf83f", - "parentId": "6396b4846a00541d900be585", - "slotId": "mod_muzzle" - }, - { - "_id": "6396b4846a00541d900be587", - "_tpl": "56eabcd4d2720b66698b4574", - "parentId": "6396b4846a00541d900be584", - "slotId": "mod_gas_block" - }, - { - "_id": "6396b4846a00541d900be588", - "_tpl": "55f84c3c4bdc2d5f408b4576", - "parentId": "6396b4846a00541d900be582", - "slotId": "mod_handguard" - }, - { - "_id": "6396b4846a00541d900be589", - "_tpl": "5649a2464bdc2d91118b45a8", - "parentId": "6396b4846a00541d900be588", - "slotId": "mod_scope" - }, - { - "_id": "6396b4846a00541d900be58a", - "_tpl": "58d39d3d86f77445bb794ae7", - "parentId": "6396b4846a00541d900be589", - "slotId": "mod_scope" - }, - { - "_id": "6396b4846a00541d900be58b", - "_tpl": "58d399e486f77442e0016fe7", - "parentId": "6396b4846a00541d900be58a", - "slotId": "mod_scope" - }, - { - "_id": "6396b4846a00541d900be58c", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "6396b4846a00541d900be588", - "slotId": "mod_tactical" - }, - { - "_id": "6396b4846a00541d900be58d", - "_tpl": "638f1ff84822287cad04be9d", - "parentId": "6396b4846a00541d900be588", - "slotId": "mod_handguard" - }, - { - "_id": "6396b4846a00541d900be58e", - "_tpl": "58c157be86f77403c74b2bb6", - "parentId": "6396b4846a00541d900be58d", - "slotId": "mod_foregrip" - }, - { - "_id": "6396b4846a00541d900be58f", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "6396b4846a00541d900be57f", - "slotId": "mod_stock" - }, - { - "_id": "6396b4846a00541d900be590", - "_tpl": "58d2946386f774496974c37e", - "parentId": "6396b4846a00541d900be58f", - "slotId": "mod_stock_000" - }, - { - "_id": "6396b4846a00541d900be591", - "_tpl": "58d2912286f7744e27117493", - "parentId": "6396b4846a00541d900be590", - "slotId": "mod_stock" - }, - { - "_id": "6396b4846a00541d900be592", - "_tpl": "55d44fd14bdc2d962f8b456e", - "parentId": "6396b4846a00541d900be57f", - "slotId": "mod_charge" - } - ] - }, - "628755c60c9eb3366b521908": { - "_id": "628755c60c9eb3366b521908", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "knight_mk47", - "_parent": "628755c60c9eb3366b521918", - "_items": [ - { - "_id": "628755c60c9eb3366b521918", - "_tpl": "606587252535c57a13424cfd", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "628755c60c9eb3366b521919", - "_tpl": "57af48872459771f0b2ebf11", - "parentId": "628755c60c9eb3366b521918", - "slotId": "mod_pistol_grip" - }, - { - "_id": "628755c60c9eb3366b52191a", - "_tpl": "59d625f086f774661516605d", - "parentId": "628755c60c9eb3366b521918", - "slotId": "mod_magazine" - }, - { - "_id": "628755c60c9eb3366b52191b", - "_tpl": "606587a88900dc2d9a55b659", - "parentId": "628755c60c9eb3366b521918", - "slotId": "mod_reciever" - }, - { - "_id": "628755c60c9eb3366b52191c", - "_tpl": "5c0a2cec0db834001b7ce47d", - "parentId": "628755c60c9eb3366b52191b", - "slotId": "mod_scope" - }, - { - "_id": "628755c60c9eb3366b52191d", - "_tpl": "60658776f2cb2e02a42ace2b", - "parentId": "628755c60c9eb3366b52191b", - "slotId": "mod_barrel" - }, - { - "_id": "628755c60c9eb3366b52191e", - "_tpl": "5dfa3cd1b33c0951220c079b", - "parentId": "628755c60c9eb3366b52191d", - "slotId": "mod_muzzle" - }, - { - "_id": "628755c60c9eb3366b52191f", - "_tpl": "6065dc8a132d4d12c81fd8e3", - "parentId": "628755c60c9eb3366b52191d", - "slotId": "mod_gas_block" - }, - { - "_id": "628755c60c9eb3366b521920", - "_tpl": "6065880c132d4d12c81fd8da", - "parentId": "628755c60c9eb3366b52191b", - "slotId": "mod_handguard" - }, - { - "_id": "628755c60c9eb3366b521921", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "628755c60c9eb3366b521920", - "slotId": "mod_mount_001" - }, - { - "_id": "628755c60c9eb3366b521922", - "_tpl": "57d17e212459775a1179a0f5", - "parentId": "628755c60c9eb3366b521921", - "slotId": "mod_tactical" - }, - { - "_id": "628755c60c9eb3366b521923", - "_tpl": "57d17c5e2459775a5c57d17d", - "parentId": "628755c60c9eb3366b521922", - "slotId": "mod_flashlight" - }, - { - "_id": "628755c60c9eb3366b521924", - "_tpl": "544909bb4bdc2d6f028b4577", - "parentId": "628755c60c9eb3366b521920", - "slotId": "mod_tactical_000" - }, - { - "_id": "628755c60c9eb3366b521925", - "_tpl": "5b7be4895acfc400170e2dd5", - "parentId": "628755c60c9eb3366b521920", - "slotId": "mod_foregrip" - }, - { - "_id": "628755c60c9eb3366b521926", - "_tpl": "5fce0cf655375d18a253eff0", - "parentId": "628755c60c9eb3366b521925", - "slotId": "mod_foregrip" - }, - { - "_id": "628755c60c9eb3366b521927", - "_tpl": "5c17804b2e2216152006c02f", - "parentId": "628755c60c9eb3366b521920", - "slotId": "mod_sight_front" - }, - { - "_id": "628755c60c9eb3366b521928", - "_tpl": "5c1780312e221602b66cc189", - "parentId": "628755c60c9eb3366b52191b", - "slotId": "mod_sight_rear" - }, - { - "_id": "628755c60c9eb3366b521929", - "_tpl": "5d120a10d7ad1a4e1026ba85", - "parentId": "628755c60c9eb3366b521918", - "slotId": "mod_stock_001" - }, - { - "_id": "628755c60c9eb3366b52192a", - "_tpl": "5d120a28d7ad1a1c8962e295", - "parentId": "628755c60c9eb3366b521929", - "slotId": "mod_stock" - }, - { - "_id": "628755c60c9eb3366b52192b", - "_tpl": "606587bd6d0bd7580617bacc", - "parentId": "628755c60c9eb3366b521918", - "slotId": "mod_charge" - } - ] - }, - "5c0c1f2b86f77455912eaefc": { - "_id": "5c0c1f2b86f77455912eaefc", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "mosin sniper carbine", - "_parent": "5c0c1f2b86f77455912eaefe", - "_items": [ - { - "_id": "5c0c1f2b86f77455912eaefe", - "_tpl": "5ae08f0a5acfc408fb1398a1", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5c0c1f2b86f77455912eaeff", - "_tpl": "5ae0973a5acfc4001562206c", - "parentId": "5c0c1f2b86f77455912eaefe", - "slotId": "mod_magazine" - }, - { - "_id": "5c0c1f2b86f77455912eaf00", - "_tpl": "5bfd37c80db834001d23e842", - "parentId": "5c0c1f2b86f77455912eaefe", - "slotId": "mod_stock" - }, - { - "_id": "5c0c1f2b86f77455912eaf01", - "_tpl": "5bfd4cbe0db834001b73449f", - "parentId": "5c0c1f2b86f77455912eaefe", - "slotId": "mod_barrel" - }, - { - "_id": "5c0c1f2b86f77455912eaf02", - "_tpl": "5ae099875acfc4001714e593", - "parentId": "5c0c1f2b86f77455912eaf01", - "slotId": "mod_sight_front" - }, - { - "_id": "5c0c1f2b86f77455912eaf03", - "_tpl": "5bfd4c980db834001b73449d", - "parentId": "5c0c1f2b86f77455912eaf01", - "slotId": "mod_sight_rear" - }, - { - "_id": "5c0c1f2b86f77455912eaf04", - "_tpl": "5b3f7bf05acfc433000ecf6b", - "parentId": "5c0c1f2b86f77455912eaefe", - "slotId": "mod_mount" - }, - { - "_id": "5c0c1f2b86f77455912eaf05", - "_tpl": "5b3f7c005acfc4704b4a1de8", - "parentId": "5c0c1f2b86f77455912eaf04", - "slotId": "mod_mount" - }, - { - "_id": "5c0c1f2b86f77455912eaf06", - "_tpl": "5b3f7c1c5acfc40dc5296b1d", - "parentId": "5c0c1f2b86f77455912eaf05", - "slotId": "mod_scope" - } - ] - }, - "5fd25119dd870108a754a163": { - "_id": "5fd25119dd870108a754a163", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "mjolnir_default", - "_parent": "5fd25119dd870108a754a165", - "_items": [ - { - "_id": "5fd25119dd870108a754a165", - "_tpl": "5fc22d7c187fea44d52eda44", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5fd25119dd870108a754a166", - "_tpl": "57c55efc2459772d2c6271e7", - "parentId": "5fd25119dd870108a754a165", - "slotId": "mod_pistol_grip" - }, - { - "_id": "5fd25119dd870108a754a167", - "_tpl": "5fc23426900b1d5091531e15", - "parentId": "5fd25119dd870108a754a165", - "slotId": "mod_magazine" - }, - { - "_id": "5fd25119dd870108a754a168", - "_tpl": "5649be884bdc2d79388b4577", - "parentId": "5fd25119dd870108a754a165", - "slotId": "mod_stock_001" - }, - { - "_id": "5fd25119dd870108a754a169", - "_tpl": "5fc2369685fd526b824a5713", - "parentId": "5fd25119dd870108a754a168", - "slotId": "mod_stock_000" - }, - { - "_id": "5fd25119dd870108a754a16a", - "_tpl": "5fc278107283c4046c581489", - "parentId": "5fd25119dd870108a754a165", - "slotId": "mod_reciever" - }, - { - "_id": "5fd25119dd870108a754a16b", - "_tpl": "5fc23678ab884124df0cd590", - "parentId": "5fd25119dd870108a754a16a", - "slotId": "mod_barrel" - }, - { - "_id": "5fd25119dd870108a754a16c", - "_tpl": "5fc23636016cce60e8341b05", - "parentId": "5fd25119dd870108a754a16b", - "slotId": "mod_muzzle" - }, - { - "_id": "5fd25119dd870108a754a16d", - "_tpl": "5fc2360f900b1d5091531e19", - "parentId": "5fd25119dd870108a754a16b", - "slotId": "mod_gas_block" - }, - { - "_id": "5fd25119dd870108a754a16e", - "_tpl": "5fc235db2770a0045c59c683", - "parentId": "5fd25119dd870108a754a16a", - "slotId": "mod_handguard" - } - ], - "_encyclopedia": "5fc22d7c187fea44d52eda44" - }, - "5d383e1a86f7742a1468ce63": { - "_id": "5d383e1a86f7742a1468ce63", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "rem700 AICS", - "_parent": "5d38514286f7742a135d4441", - "_items": [ - { - "_id": "5d38514286f7742a135d4441", - "_tpl": "5bfea6e90db834001b7347f3", - "upd": { - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5d38514286f7742a135d4442", - "_tpl": "5d25a4a98abbc30b917421a4", - "parentId": "5d38514286f7742a135d4441", - "slotId": "mod_magazine" - }, - { - "_id": "5d38514286f7742a135d4443", - "_tpl": "5d25d0ac8abbc3054f3e61f7", - "parentId": "5d38514286f7742a135d4441", - "slotId": "mod_stock" - }, - { - "_id": "5d38514286f7742a135d4444", - "_tpl": "5a9d6d00a2750c5c985b5305", - "parentId": "5d38514286f7742a135d4443", - "slotId": "mod_mount_000" - }, - { - "_id": "5d38514286f7742a135d4445", - "_tpl": "5bfebc320db8340019668d79", - "parentId": "5d38514286f7742a135d4441", - "slotId": "mod_barrel" - }, - { - "_id": "5d38514286f7742a135d4446", - "_tpl": "5d270b3c8abbc3105335cfb8", - "parentId": "5d38514286f7742a135d4445", - "slotId": "mod_muzzle" - } - ] - }, - "5fd251ee16cac650092f5d02": { - "_id": "5fd251ee16cac650092f5d02", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "vector_45_default", - "_parent": "5fd251ee16cac650092f5d04", - "_items": [ - { - "_id": "5fd251ee16cac650092f5d04", - "_tpl": "5fb64bc92b1b027b1f50bcf2", - "upd": { - "Foldable": { - "Folded": false - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "5fd251ee16cac650092f5d05", - "_tpl": "5fb651b52b1b027b1f50bcff", - "parentId": "5fd251ee16cac650092f5d04", - "slotId": "mod_magazine" - }, - { - "_id": "5fd251ee16cac650092f5d06", - "_tpl": "5fb6567747ce63734e3fa1dc", - "parentId": "5fd251ee16cac650092f5d04", - "slotId": "mod_sight_front" - }, - { - "_id": "5fd251ee16cac650092f5d07", - "_tpl": "5fb6564947ce63734e3fa1da", - "parentId": "5fd251ee16cac650092f5d04", - "slotId": "mod_sight_rear" - }, - { - "_id": "5fd251ee16cac650092f5d08", - "_tpl": "5fb6558ad6f0b2136f2d7eb7", - "parentId": "5fd251ee16cac650092f5d04", - "slotId": "mod_stock" - }, - { - "_id": "5fd251ee16cac650092f5d09", - "_tpl": "5fb65363d1409e5ca04b54f5", - "parentId": "5fd251ee16cac650092f5d04", - "slotId": "mod_barrel" - }, - { - "_id": "5fd251ee16cac650092f5d0a", - "_tpl": "5fb6548dd1409e5ca04b54f9", - "parentId": "5fd251ee16cac650092f5d09", - "slotId": "mod_muzzle" - }, - { - "_id": "5fd251ee16cac650092f5d0b", - "_tpl": "5fbb976df9986c4cff3fe5f2", - "parentId": "5fd251ee16cac650092f5d04", - "slotId": "mod_mount" - }, - { - "_id": "5fd251ee16cac650092f5d0c", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "5fd251ee16cac650092f5d04", - "slotId": "mod_mount_001" - }, - { - "_id": "5fd251ee16cac650092f5d0d", - "_tpl": "5fce0f9b55375d18a253eff2", - "parentId": "5fd251ee16cac650092f5d04", - "slotId": "mod_mount_002" - } - ], - "_encyclopedia": "5fb64bc92b1b027b1f50bcf2" - }, - "5a3b898486f77467720a2f29": { - "_id": "5a3b898486f77467720a2f29", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "pvs 14 skull lock nightvision", - "_parent": "5a3b898486f77467720a2f25", - "_items": [ - { - "_id": "5a3b898486f77467720a2f25", - "_tpl": "5a16bb52fcdbcb001a3b00dc" - }, - { - "_id": "5a3b898486f77467720a2f26", - "_tpl": "5a16b8a9fcdbcb00165aa6ca", - "parentId": "5a3b898486f77467720a2f25", - "slotId": "mod_nvg" - }, - { - "_id": "5a3b898486f77467720a2f27", - "_tpl": "5a16b93dfcdbcbcae6687261", - "parentId": "5a3b898486f77467720a2f26", - "slotId": "mod_nvg" - }, - { - "_id": "5a3b898486f77467720a2f28", - "_tpl": "57235b6f24597759bf5a30f1", - "parentId": "5a3b898486f77467720a2f27", - "slotId": "mod_nvg" - } - ] - }, - "6398685ee678457197138035": { - "_id": "6398685ee678457197138035", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Glock19x_default", - "_parent": "639c2f29ccb515300b15f22a", - "_items": [ - { - "_id": "639c2f29ccb515300b15f22a", - "_tpl": "63088377b5cd696784087147", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "639c2f29ccb515300b15f22b", - "_tpl": "630764fea987397c0816d219", - "parentId": "639c2f29ccb515300b15f22a", - "slotId": "mod_barrel" - }, - { - "_id": "639c2f29ccb515300b15f22c", - "_tpl": "63075cc5962d0247b029dc2a", - "parentId": "639c2f29ccb515300b15f22a", - "slotId": "mod_reciever" - }, - { - "_id": "639c2f29ccb515300b15f22d", - "_tpl": "630765cb962d0247b029dc45", - "parentId": "639c2f29ccb515300b15f22c", - "slotId": "mod_sight_rear" - }, - { - "_id": "639c2f29ccb515300b15f22e", - "_tpl": "630765777d50ff5e8a1ea718", - "parentId": "639c2f29ccb515300b15f22c", - "slotId": "mod_sight_front" - }, - { - "_id": "639c2f29ccb515300b15f22f", - "_tpl": "63076701a987397c0816d21b", - "parentId": "639c2f29ccb515300b15f22a", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "63088377b5cd696784087147" - }, - "639868a207a3eb0207197bb5": { - "_id": "639868a207a3eb0207197bb5", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "RSH12_default", - "_parent": "639868a207a3eb0207197bb6", - "_items": [ - { - "_id": "639868a207a3eb0207197bb6", - "_tpl": "633ec7c2a6918cb895019c6c", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "639868a207a3eb0207197bb7", - "_tpl": "633ec6ee025b096d320a3b15", - "parentId": "639868a207a3eb0207197bb6", - "slotId": "mod_magazine" - }, - { - "_id": "639868a207a3eb0207197bb8", - "_tpl": "633ec8e4025b096d320a3b1e", - "parentId": "639868a207a3eb0207197bb6", - "slotId": "mod_pistol_grip" - } - ], - "_encyclopedia": "633ec7c2a6918cb895019c6c" - }, - "64cf7b7d8b48ea38c5030f65": { - "_id": "64cf7b7d8b48ea38c5030f65", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "PKP_Zenit", - "_parent": "658aa9ce349ef92c315e7e5d", - "_items": [ - { - "_id": "658aa9ce349ef92c315e7e5d", - "_tpl": "64ca3d3954fc657e230529cc", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "658aa9ce349ef92c315e7e5e", - "_tpl": "64cbad529f7cf7f75c077fd5", - "parentId": "658aa9ce349ef92c315e7e5d", - "slotId": "mod_pistolgrip" - }, - { - "_id": "658aa9ce349ef92c315e7e5f", - "_tpl": "64639a9aab86f8fd4300146c", - "parentId": "658aa9ce349ef92c315e7e5d", - "slotId": "mod_barrel" - }, - { - "_id": "658aa9ce349ef92c315e7e60", - "_tpl": "646372518610c40fc20204e8", - "parentId": "658aa9ce349ef92c315e7e5d", - "slotId": "mod_magazine" - }, - { - "_id": "658aa9ce349ef92c315e7e61", - "_tpl": "6492d7847363b8a52206bc52", - "parentId": "658aa9ce349ef92c315e7e5d", - "slotId": "mod_stock" - }, - { - "_id": "658aa9ce349ef92c315e7e62", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "658aa9ce349ef92c315e7e61", - "slotId": "mod_pistolgrip_000" - }, - { - "_id": "658aa9ce349ef92c315e7e63", - "_tpl": "6492fb8253acae0af00a29b6", - "parentId": "658aa9ce349ef92c315e7e5d", - "slotId": "mod_sight_rear" - }, - { - "_id": "658aa9ce349ef92c315e7e64", - "_tpl": "6491c6f6ef312a876705191b", - "parentId": "658aa9ce349ef92c315e7e5d", - "slotId": "mod_handguard" - }, - { - "_id": "658aa9ce349ef92c315e7e65", - "_tpl": "5c1cd46f2e22164bef5cfedb", - "parentId": "658aa9ce349ef92c315e7e64", - "slotId": "mod_foregrip" - }, - { - "_id": "658aa9ce349ef92c315e7e66", - "_tpl": "6492c8bba6e68e06fb0bae87", - "parentId": "658aa9ce349ef92c315e7e64", - "slotId": "mod_mount" - } - ] - }, - "657669c186f11bca4106d3a5": { - "_id": "657669c186f11bca4106d3a5", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor FORT Redut T5 Standard", - "_parent": "6576e959ab23f2038109a9f6", - "_items": [ - { - "_id": "6576e959ab23f2038109a9f6", - "_tpl": "5ca21c6986f77479963115a7" - }, - { - "_id": "6576e959ab23f2038109a9f7", - "_tpl": "6575d9a79e27f4a85e08112d", - "parentId": "6576e959ab23f2038109a9f6", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e959ab23f2038109a9f8", - "_tpl": "6575d9b8945bf78edd04c427", - "parentId": "6576e959ab23f2038109a9f6", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e959ab23f2038109a9f9", - "_tpl": "6575d9c40546f8b1de093dee", - "parentId": "6576e959ab23f2038109a9f6", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e959ab23f2038109a9fa", - "_tpl": "6575d9cf0546f8b1de093df2", - "parentId": "6576e959ab23f2038109a9f6", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e959ab23f2038109a9fb", - "_tpl": "6575d9d8945bf78edd04c42b", - "parentId": "6576e959ab23f2038109a9f6", - "slotId": "Collar" - }, - { - "_id": "6576e959ab23f2038109a9fc", - "_tpl": "6575da07945bf78edd04c433", - "parentId": "6576e959ab23f2038109a9f6", - "slotId": "Shoulder_l" - }, - { - "_id": "6576e959ab23f2038109a9fd", - "_tpl": "6575da159e27f4a85e081131", - "parentId": "6576e959ab23f2038109a9f6", - "slotId": "Shoulder_r" - }, - { - "_id": "6576e959ab23f2038109a9fe", - "_tpl": "6575d9e7945bf78edd04c42f", - "parentId": "6576e959ab23f2038109a9f6", - "slotId": "Groin" - }, - { - "_id": "6576e959ab23f2038109a9ff", - "_tpl": "6575d9f816c2762fba00588d", - "parentId": "6576e959ab23f2038109a9f6", - "slotId": "Groin_back" - }, - { - "_id": "6576e959ab23f2038109aa00", - "_tpl": "65573fa5655447403702a816", - "parentId": "6576e959ab23f2038109a9f6", - "slotId": "Front_plate" - }, - { - "_id": "6576e959ab23f2038109aa01", - "_tpl": "65573fa5655447403702a816", - "parentId": "6576e959ab23f2038109a9f6", - "slotId": "Back_plate" - }, - { - "_id": "6576e959ab23f2038109aa02", - "_tpl": "64afd81707e2cf40e903a316", - "parentId": "6576e959ab23f2038109a9f6", - "slotId": "Left_side_plate" - }, - { - "_id": "6576e959ab23f2038109aa03", - "_tpl": "64afd81707e2cf40e903a316", - "parentId": "6576e959ab23f2038109a9f6", - "slotId": "Right_side_plate" - } - ], - "_encyclopedia": "5ca21c6986f77479963115a7" - }, - "657663b6526e320fbe0357ec": { - "_id": "657663b6526e320fbe0357ec", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor Gzhel K Standard", - "_parent": "6576ea54424f2c87d30c75f7", - "_items": [ - { - "_id": "6576ea54424f2c87d30c75f7", - "_tpl": "5ab8e79e86f7742d8b372e78" - }, - { - "_id": "6576ea54424f2c87d30c75f8", - "_tpl": "65732688d9d89ff7ac0d9c4c", - "parentId": "6576ea54424f2c87d30c75f7", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576ea54424f2c87d30c75f9", - "_tpl": "657326978c1cc6dcd9098b56", - "parentId": "6576ea54424f2c87d30c75f7", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576ea54424f2c87d30c75fa", - "_tpl": "657326a28c1cc6dcd9098b5a", - "parentId": "6576ea54424f2c87d30c75f7", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576ea54424f2c87d30c75fb", - "_tpl": "657326b08c1cc6dcd9098b5e", - "parentId": "6576ea54424f2c87d30c75f7", - "slotId": "soft_armor_right" - }, - { - "_id": "6576ea54424f2c87d30c75fc", - "_tpl": "657326bc5d3a3129fb05f36b", - "parentId": "6576ea54424f2c87d30c75f7", - "slotId": "Collar" - }, - { - "_id": "6576ea54424f2c87d30c75fd", - "_tpl": "656f611f94b480b8a500c0db", - "parentId": "6576ea54424f2c87d30c75f7", - "slotId": "Front_plate" - }, - { - "_id": "6576ea54424f2c87d30c75fe", - "_tpl": "65573fa5655447403702a816", - "parentId": "6576ea54424f2c87d30c75f7", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5ab8e79e86f7742d8b372e78" - }, - "65766738234b9f6e050a42d8": { - "_id": "65766738234b9f6e050a42d8", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor LBT 6094A Slick Plate Carrier Olive Standard", - "_parent": "6576ec8bfad2d1a4c00ca4bc", - "_items": [ - { - "_id": "6576ec8bfad2d1a4c00ca4bc", - "_tpl": "6038b4ca92ec1c3103795a0d" - }, - { - "_id": "6576ec8bfad2d1a4c00ca4bd", - "_tpl": "6575e71760703324250610c3", - "parentId": "6576ec8bfad2d1a4c00ca4bc", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576ec8bfad2d1a4c00ca4be", - "_tpl": "6575e72660703324250610c7", - "parentId": "6576ec8bfad2d1a4c00ca4bc", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576ec8bfad2d1a4c00ca4bf", - "_tpl": "656fa76500d62bcd2e024080", - "parentId": "6576ec8bfad2d1a4c00ca4bc", - "slotId": "Front_plate" - }, - { - "_id": "6576ec8bfad2d1a4c00ca4c0", - "_tpl": "656fa76500d62bcd2e024080", - "parentId": "6576ec8bfad2d1a4c00ca4bc", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "6038b4ca92ec1c3103795a0d" - }, - "657fa705e9433140ad0baf95": { - "_id": "657fa705e9433140ad0baf95", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet MSA ACH TC 2001 Standart", - "_parent": "657fa705e9433140ad0baf99", - "_items": [ - { - "_id": "657fa705e9433140ad0baf99", - "_tpl": "5d5e7d28a4b936645d161203" - }, - { - "_id": "657fa705e9433140ad0baf9a", - "_tpl": "657f8a8d7db258e5600fe33d", - "parentId": "657fa705e9433140ad0baf99", - "slotId": "Helmet_top" - }, - { - "_id": "657fa705e9433140ad0baf9b", - "_tpl": "657f8b05f4c82973640b2348", - "parentId": "657fa705e9433140ad0baf99", - "slotId": "Helmet_back" - } - ], - "_encyclopedia": "5d5e7d28a4b936645d161203" - }, - "65712075f1074598bf0c02a7": { - "_id": "65712075f1074598bf0c02a7", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Maska 1Sh Standard", - "_parent": "6576e80dfad2d1a4c00ca47a", - "_items": [ - { - "_id": "6576e80dfad2d1a4c00ca47a", - "_tpl": "5c091a4e0db834001d5addc8" - }, - { - "_id": "6576e80dfad2d1a4c00ca47b", - "_tpl": "6571133d22996eaf11088200", - "parentId": "6576e80dfad2d1a4c00ca47a", - "slotId": "Helmet_top" - }, - { - "_id": "6576e80dfad2d1a4c00ca47c", - "_tpl": "6571138e818110db4600aa71", - "parentId": "6576e80dfad2d1a4c00ca47a", - "slotId": "Helmet_back" - }, - { - "_id": "6576e80dfad2d1a4c00ca47d", - "_tpl": "657112fa818110db4600aa6b", - "parentId": "6576e80dfad2d1a4c00ca47a", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5c091a4e0db834001d5addc8" - }, - "65711fc9c50461e8750d1f5b": { - "_id": "65711fc9c50461e8750d1f5b", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Ssh-68 Standard", - "_parent": "6576e378fad2d1a4c00ca449", - "_items": [ - { - "_id": "6576e378fad2d1a4c00ca449", - "_tpl": "5c06c6a80db834001b735491" - }, - { - "_id": "6576e378fad2d1a4c00ca44a", - "_tpl": "6571199565daf6aa960c9b10", - "parentId": "6576e378fad2d1a4c00ca449", - "slotId": "Helmet_top" - }, - { - "_id": "6576e378fad2d1a4c00ca44b", - "_tpl": "657119d49eb8c145180dbb95", - "parentId": "6576e378fad2d1a4c00ca449", - "slotId": "Helmet_back" - }, - { - "_id": "6576e378fad2d1a4c00ca44c", - "_tpl": "657119fea330b8c9060f7afc", - "parentId": "6576e378fad2d1a4c00ca449", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5c06c6a80db834001b735491" - }, - "6576616086f11bca4106d35f": { - "_id": "6576616086f11bca4106d35f", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest ANA Tactical M1 Standard", - "_parent": "6576e776424f2c87d30c75d8", - "_items": [ - { - "_id": "6576e776424f2c87d30c75d8", - "_tpl": "5c0e722886f7740458316a57" - }, - { - "_id": "6576e776424f2c87d30c75d9", - "_tpl": "65730c0e292ecadbfa09ad49", - "parentId": "6576e776424f2c87d30c75d8", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e776424f2c87d30c75da", - "_tpl": "65730c2213a2f660f60bea96", - "parentId": "6576e776424f2c87d30c75d8", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e776424f2c87d30c75db", - "_tpl": "65730c2b292ecadbfa09ad50", - "parentId": "6576e776424f2c87d30c75d8", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e776424f2c87d30c75dc", - "_tpl": "65730c35292ecadbfa09ad54", - "parentId": "6576e776424f2c87d30c75d8", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e776424f2c87d30c75dd", - "_tpl": "656fa0fb498d1b7e3e071d9c", - "parentId": "6576e776424f2c87d30c75d8", - "slotId": "Front_plate" - }, - { - "_id": "6576e776424f2c87d30c75de", - "_tpl": "656fa0fb498d1b7e3e071d9c", - "parentId": "6576e776424f2c87d30c75d8", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5c0e722886f7740458316a57" - }, - "6571952aacb85662e7024c01": { - "_id": "6571952aacb85662e7024c01", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest ANA Tactical M2 Standard", - "_parent": "6576e641fad2d1a4c00ca46e", - "_items": [ - { - "_id": "6576e641fad2d1a4c00ca46e", - "_tpl": "5ab8dced86f774646209ec87" - }, - { - "_id": "6576e641fad2d1a4c00ca46f", - "_tpl": "6570f6e774d84423df065f21", - "parentId": "6576e641fad2d1a4c00ca46e", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e641fad2d1a4c00ca470", - "_tpl": "6570f71dd67d0309980a7af8", - "parentId": "6576e641fad2d1a4c00ca46e", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e641fad2d1a4c00ca471", - "_tpl": "6570f74774d84423df065f25", - "parentId": "6576e641fad2d1a4c00ca46e", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e641fad2d1a4c00ca472", - "_tpl": "6570f79c4c65ab77a6015121", - "parentId": "6576e641fad2d1a4c00ca46e", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e641fad2d1a4c00ca473", - "_tpl": "656fa25e94b480b8a500c0e0", - "parentId": "6576e641fad2d1a4c00ca46e", - "slotId": "Front_plate" - }, - { - "_id": "6576e641fad2d1a4c00ca474", - "_tpl": "656fa25e94b480b8a500c0e0", - "parentId": "6576e641fad2d1a4c00ca46e", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5ab8dced86f774646209ec87" - }, - "64cbe20d5aa0a53ad12f96c9": { - "_id": "64cbe20d5aa0a53ad12f96c9", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "PKM_Zenit", - "_parent": "658aa98d8dd41d79e97de81c", - "_items": [ - { - "_id": "658aa98d8dd41d79e97de81c", - "_tpl": "64637076203536ad5600c990", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "658aa98d8dd41d79e97de81d", - "_tpl": "646371779f5f0ea59a04c204", - "parentId": "658aa98d8dd41d79e97de81c", - "slotId": "mod_pistolgrip" - }, - { - "_id": "658aa98d8dd41d79e97de81e", - "_tpl": "646371faf2404ab67905c8e9", - "parentId": "658aa98d8dd41d79e97de81c", - "slotId": "mod_barrel" - }, - { - "_id": "658aa98d8dd41d79e97de81f", - "_tpl": "6492ef63cfcf7c89e701abf1", - "parentId": "658aa98d8dd41d79e97de81e", - "slotId": "mod_muzzle" - }, - { - "_id": "658aa98d8dd41d79e97de820", - "_tpl": "646372518610c40fc20204e8", - "parentId": "658aa98d8dd41d79e97de81c", - "slotId": "mod_magazine" - }, - { - "_id": "658aa98d8dd41d79e97de821", - "_tpl": "6492d7847363b8a52206bc52", - "parentId": "658aa98d8dd41d79e97de81c", - "slotId": "mod_stock" - }, - { - "_id": "658aa98d8dd41d79e97de822", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "658aa98d8dd41d79e97de821", - "slotId": "mod_pistolgrip_000" - }, - { - "_id": "658aa98d8dd41d79e97de823", - "_tpl": "6492fb8253acae0af00a29b6", - "parentId": "658aa98d8dd41d79e97de81c", - "slotId": "mod_sight_rear" - }, - { - "_id": "658aa98d8dd41d79e97de824", - "_tpl": "6491c6f6ef312a876705191b", - "parentId": "658aa98d8dd41d79e97de81c", - "slotId": "mod_handguard" - }, - { - "_id": "658aa98d8dd41d79e97de825", - "_tpl": "5c1cd46f2e22164bef5cfedb", - "parentId": "658aa98d8dd41d79e97de824", - "slotId": "mod_foregrip" - }, - { - "_id": "658aa98d8dd41d79e97de826", - "_tpl": "6492c6dd60fdb10a020621a2", - "parentId": "658aa98d8dd41d79e97de824", - "slotId": "mod_mount" - } - ] - }, - "64c1525e3319a1cf380c4e09": { - "_id": "64c1525e3319a1cf380c4e09", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AVT-40_Default", - "_parent": "64c397208427c75665190df1", - "_items": [ - { - "_id": "64c397208427c75665190df1", - "_tpl": "6410733d5dd49d77bd07847e", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "64c397208427c75665190df2", - "_tpl": "6410745d5dd49d77bd078485", - "parentId": "64c397208427c75665190df1", - "slotId": "mod_stock" - }, - { - "_id": "64c397208427c75665190df3", - "_tpl": "6410758c857473525b08bb77", - "parentId": "64c397208427c75665190df1", - "slotId": "mod_barrel" - }, - { - "_id": "64c397208427c75665190df4", - "_tpl": "64119d1f2c6d6f921a0929f8", - "parentId": "64c397208427c75665190df3", - "slotId": "mod_muzzle" - }, - { - "_id": "64c397208427c75665190df5", - "_tpl": "64119d672c6d6f921a0929fb", - "parentId": "64c397208427c75665190df4", - "slotId": "mod_sight_front" - }, - { - "_id": "64c397208427c75665190df6", - "_tpl": "64119d90dcf48d656f0aa275", - "parentId": "64c397208427c75665190df3", - "slotId": "mod_sight_rear" - }, - { - "_id": "64c397208427c75665190df7", - "_tpl": "64119cdbdcf48d656f0aa272", - "parentId": "64c397208427c75665190df1", - "slotId": "mod_reciever" - }, - { - "_id": "64c397208427c75665190df8", - "_tpl": "641074a07fd350b98c0b3f96", - "parentId": "64c397208427c75665190df1", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "6410733d5dd49d77bd07847e" - }, - "5dd8013ff4c3af18c507b10a": { - "_id": "5dd8013ff4c3af18c507b10a", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "tx15_dwarrior", - "_parent": "63986e59bde1df2cb34c6712", - "_items": [ - { - "_id": "63986e59bde1df2cb34c6712", - "_tpl": "5d43021ca4b9362eab4b5e25", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "63986e59bde1df2cb34c6713", - "_tpl": "5b07db875acfc40dc528a5f6", - "parentId": "63986e59bde1df2cb34c6712", - "slotId": "mod_pistol_grip" - }, - { - "_id": "63986e59bde1df2cb34c6714", - "_tpl": "5d1340cad7ad1a0b0b249869", - "parentId": "63986e59bde1df2cb34c6712", - "slotId": "mod_magazine" - }, - { - "_id": "63986e59bde1df2cb34c6715", - "_tpl": "59bfe68886f7746004266202", - "parentId": "63986e59bde1df2cb34c6712", - "slotId": "mod_reciever" - }, - { - "_id": "63986e59bde1df2cb34c6716", - "_tpl": "5c0a2cec0db834001b7ce47d", - "parentId": "63986e59bde1df2cb34c6715", - "slotId": "mod_scope" - }, - { - "_id": "63986e59bde1df2cb34c6717", - "_tpl": "55d35ee94bdc2d61338b4568", - "parentId": "63986e59bde1df2cb34c6715", - "slotId": "mod_barrel" - }, - { - "_id": "63986e59bde1df2cb34c6718", - "_tpl": "5cff9e5ed7ad1a09407397d4", - "parentId": "63986e59bde1df2cb34c6717", - "slotId": "mod_muzzle" - }, - { - "_id": "63986e59bde1df2cb34c6719", - "_tpl": "5cff9e84d7ad1a049e54ed55", - "parentId": "63986e59bde1df2cb34c6718", - "slotId": "mod_muzzle" - }, - { - "_id": "63986e59bde1df2cb34c671a", - "_tpl": "5d00ec68d7ad1a04a067e5be", - "parentId": "63986e59bde1df2cb34c6717", - "slotId": "mod_gas_block" - }, - { - "_id": "63986e59bde1df2cb34c671b", - "_tpl": "5d123102d7ad1a004e475fe5", - "parentId": "63986e59bde1df2cb34c6715", - "slotId": "mod_handguard" - }, - { - "_id": "63986e59bde1df2cb34c671c", - "_tpl": "5d124c01d7ad1a115c7d59fb", - "parentId": "63986e59bde1df2cb34c671b", - "slotId": "mod_mount_000" - }, - { - "_id": "63986e59bde1df2cb34c671d", - "_tpl": "5d124c01d7ad1a115c7d59fb", - "parentId": "63986e59bde1df2cb34c671b", - "slotId": "mod_mount_001" - }, - { - "_id": "63986e59bde1df2cb34c671e", - "_tpl": "57fd23e32459772d0805bcf1", - "parentId": "63986e59bde1df2cb34c671b", - "slotId": "mod_tactical_002" - }, - { - "_id": "63986e59bde1df2cb34c671f", - "_tpl": "637f57d2f5ef8c33840d36c4", - "parentId": "63986e59bde1df2cb34c671b", - "slotId": "mod_handguard" - }, - { - "_id": "63986e59bde1df2cb34c6720", - "_tpl": "5d124c1ad7ad1a12227c53a7", - "parentId": "63986e59bde1df2cb34c671f", - "slotId": "mod_foregrip" - }, - { - "_id": "63986e59bde1df2cb34c6721", - "_tpl": "591af10186f774139d495f0e", - "parentId": "63986e59bde1df2cb34c6712", - "slotId": "mod_stock" - }, - { - "_id": "63986e59bde1df2cb34c6722", - "_tpl": "5bb20dbcd4351e44f824c04e", - "parentId": "63986e59bde1df2cb34c6712", - "slotId": "mod_charge" - } - ] - }, - "64c152953319a1cf380c4e1b": { - "_id": "64c152953319a1cf380c4e1b", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "MP-43_Obrez_Default", - "_parent": "64c3905a8427c75665190d1b", - "_items": [ - { - "_id": "64c3905a8427c75665190d1b", - "_tpl": "64748cb8de82c85eaf0a273a", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "64c3905a8427c75665190d1c", - "_tpl": "64748d02d1c009260702b526", - "parentId": "64c3905a8427c75665190d1b", - "slotId": "mod_barrel" - } - ], - "_encyclopedia": "64748cb8de82c85eaf0a273a" - }, - "657123216d197c216005b354": { - "_id": "657123216d197c216005b354", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor 6B13 Assault Flora digital Standard", - "_parent": "6576ec3eab23f2038109aa78", - "_items": [ - { - "_id": "6576ec3eab23f2038109aa78", - "_tpl": "5c0e53c886f7747fa54205c7" - }, - { - "_id": "6576ec3eab23f2038109aa79", - "_tpl": "654a8b0b0337d53f9102c2ae", - "parentId": "6576ec3eab23f2038109aa78", - "slotId": "soft_armor_front" - }, - { - "_id": "6576ec3eab23f2038109aa7a", - "_tpl": "654a8976f414fcea4004d78b", - "parentId": "6576ec3eab23f2038109aa78", - "slotId": "soft_armor_back" - }, - { - "_id": "6576ec3eab23f2038109aa7b", - "_tpl": "654a8b3df414fcea4004d78f", - "parentId": "6576ec3eab23f2038109aa78", - "slotId": "soft_armor_left" - }, - { - "_id": "6576ec3eab23f2038109aa7c", - "_tpl": "654a8b80f414fcea4004d797", - "parentId": "6576ec3eab23f2038109aa78", - "slotId": "soft_armor_right" - }, - { - "_id": "6576ec3eab23f2038109aa7d", - "_tpl": "654a8ae00337d53f9102c2aa", - "parentId": "6576ec3eab23f2038109aa78", - "slotId": "Collar" - }, - { - "_id": "6576ec3eab23f2038109aa7e", - "_tpl": "654a8bc5f414fcea4004d79b", - "parentId": "6576ec3eab23f2038109aa78", - "slotId": "Groin" - }, - { - "_id": "6576ec3eab23f2038109aa7f", - "_tpl": "656f603f94b480b8a500c0d6", - "parentId": "6576ec3eab23f2038109aa78", - "slotId": "front_plate" - }, - { - "_id": "6576ec3eab23f2038109aa80", - "_tpl": "656efd66034e8e01c407f35c", - "parentId": "6576ec3eab23f2038109aa78", - "slotId": "back_plate" - } - ], - "_encyclopedia": "5c0e53c886f7747fa54205c7" - }, - "65765d08b7ea14f3b70da69b": { - "_id": "65765d08b7ea14f3b70da69b", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor Kora Kulon Flora digital Standard", - "_parent": "6576e9b6ab23f2038109aa04", - "_items": [ - { - "_id": "6576e9b6ab23f2038109aa04", - "_tpl": "64be79e2bf8412471d0d9bcc" - }, - { - "_id": "6576e9b6ab23f2038109aa05", - "_tpl": "6570495b45d573133d0d6adb", - "parentId": "6576e9b6ab23f2038109aa04", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e9b6ab23f2038109aa06", - "_tpl": "657049d23425b19bbc0502f0", - "parentId": "6576e9b6ab23f2038109aa04", - "slotId": "Soft_armor_back" - } - ], - "_encyclopedia": "64be79e2bf8412471d0d9bcc" - }, - "6576670586f11bca4106d36f": { - "_id": "6576670586f11bca4106d36f", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor LBT 6094A Slick Plate Carrier Sand Standard", - "_parent": "6576ec7e06a990316201e802", - "_items": [ - { - "_id": "6576ec7e06a990316201e802", - "_tpl": "6038b4b292ec1c3103795a0b" - }, - { - "_id": "6576ec7e06a990316201e803", - "_tpl": "6575e71760703324250610c3", - "parentId": "6576ec7e06a990316201e802", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576ec7e06a990316201e804", - "_tpl": "6575e72660703324250610c7", - "parentId": "6576ec7e06a990316201e802", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576ec7e06a990316201e805", - "_tpl": "656fa76500d62bcd2e024080", - "parentId": "6576ec7e06a990316201e802", - "slotId": "Front_plate" - }, - { - "_id": "6576ec7e06a990316201e806", - "_tpl": "656fa76500d62bcd2e024080", - "parentId": "6576ec7e06a990316201e802", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "6038b4b292ec1c3103795a0b" - }, - "65712184f1074598bf0c02bc": { - "_id": "65712184f1074598bf0c02bc", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor PACA Standard", - "_parent": "6576ea63ab23f2038109aa11", - "_items": [ - { - "_id": "6576ea63ab23f2038109aa11", - "_tpl": "5648a7494bdc2d9d488b4583" - }, - { - "_id": "6576ea63ab23f2038109aa12", - "_tpl": "65703d866584602f7d057a8a", - "parentId": "6576ea63ab23f2038109aa11", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576ea63ab23f2038109aa13", - "_tpl": "65703fa06584602f7d057a8e", - "parentId": "6576ea63ab23f2038109aa11", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576ea63ab23f2038109aa14", - "_tpl": "65703fe46a912c8b5c03468b", - "parentId": "6576ea63ab23f2038109aa11", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576ea63ab23f2038109aa15", - "_tpl": "657040374e67e8ec7a0d261c", - "parentId": "6576ea63ab23f2038109aa11", - "slotId": "soft_armor_right" - } - ], - "_encyclopedia": "5648a7494bdc2d9d488b4583" - }, - "65711f886d197c216005b32f": { - "_id": "65711f886d197c216005b32f", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet DevTac Ronin Standart", - "_parent": "6576e590fad2d1a4c00ca468", - "_items": [ - { - "_id": "6576e590fad2d1a4c00ca468", - "_tpl": "5b4329f05acfc47a86086aa1" - }, - { - "_id": "6576e590fad2d1a4c00ca469", - "_tpl": "65711b07a330b8c9060f7b01", - "parentId": "6576e590fad2d1a4c00ca468", - "slotId": "Helmet_top" - }, - { - "_id": "6576e590fad2d1a4c00ca46a", - "_tpl": "65711b489eb8c145180dbb9d", - "parentId": "6576e590fad2d1a4c00ca468", - "slotId": "Helmet_back" - }, - { - "_id": "6576e590fad2d1a4c00ca46b", - "_tpl": "65711b9b65daf6aa960c9b1b", - "parentId": "6576e590fad2d1a4c00ca468", - "slotId": "helmet_eyes" - }, - { - "_id": "6576e590fad2d1a4c00ca46c", - "_tpl": "65711bc79eb8c145180dbba1", - "parentId": "6576e590fad2d1a4c00ca468", - "slotId": "helmet_jaw" - }, - { - "_id": "6576e590fad2d1a4c00ca46d", - "_tpl": "65711b706d197c216005b31c", - "parentId": "6576e590fad2d1a4c00ca468", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5b4329f05acfc47a86086aa1" - }, - "657bc68d26820ea7da04f2f0": { - "_id": "657bc68d26820ea7da04f2f0", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Ratnik BSh 6b47 Default Standart", - "_parent": "657bc68d26820ea7da04f2f5", - "_items": [ - { - "_id": "657bc68d26820ea7da04f2f5", - "_tpl": "5a7c4850e899ef00150be885" - }, - { - "_id": "657bc68d26820ea7da04f2f6", - "_tpl": "657baaf0b7e9ca9a02045c02", - "parentId": "657bc68d26820ea7da04f2f5", - "slotId": "Helmet_top" - }, - { - "_id": "657bc68d26820ea7da04f2f7", - "_tpl": "657bab6ec6f689d3a205b85f", - "parentId": "657bc68d26820ea7da04f2f5", - "slotId": "Helmet_back" - }, - { - "_id": "657bc68d26820ea7da04f2f8", - "_tpl": "657babc6f58ba5a6250107a2", - "parentId": "657bc68d26820ea7da04f2f5", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5a7c4850e899ef00150be885" - }, - "657fa836c6679fefb3051e28": { - "_id": "657fa836c6679fefb3051e28", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet ZSh 1 2M Standart", - "_parent": "657fa836c6679fefb3051e2d", - "_items": [ - { - "_id": "657fa836c6679fefb3051e2d", - "_tpl": "5aa7e454e5b5b0214e506fa2" - }, - { - "_id": "657fa836c6679fefb3051e2e", - "_tpl": "657f925dada5fadd1f07a57a", - "parentId": "657fa836c6679fefb3051e2d", - "slotId": "Helmet_top" - }, - { - "_id": "657fa836c6679fefb3051e2f", - "_tpl": "657f92acada5fadd1f07a57e", - "parentId": "657fa836c6679fefb3051e2d", - "slotId": "Helmet_back" - }, - { - "_id": "657fa836c6679fefb3051e30", - "_tpl": "657f92e7f4c82973640b2354", - "parentId": "657fa836c6679fefb3051e2d", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5aa7e454e5b5b0214e506fa2" - }, - "64ccaa66ad8a0956023901b6": { - "_id": "64ccaa66ad8a0956023901b6", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "PKM_Zenit_2", - "_parent": "658aa9c0fd239b582c21464c", - "_items": [ - { - "_id": "658aa9c0fd239b582c21464c", - "_tpl": "64637076203536ad5600c990", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "658aa9c0fd239b582c21464d", - "_tpl": "646371779f5f0ea59a04c204", - "parentId": "658aa9c0fd239b582c21464c", - "slotId": "mod_pistolgrip" - }, - { - "_id": "658aa9c0fd239b582c21464e", - "_tpl": "646371faf2404ab67905c8e9", - "parentId": "658aa9c0fd239b582c21464c", - "slotId": "mod_barrel" - }, - { - "_id": "658aa9c0fd239b582c21464f", - "_tpl": "6492ef63cfcf7c89e701abf1", - "parentId": "658aa9c0fd239b582c21464e", - "slotId": "mod_muzzle" - }, - { - "_id": "658aa9c0fd239b582c214650", - "_tpl": "646372518610c40fc20204e8", - "parentId": "658aa9c0fd239b582c21464c", - "slotId": "mod_magazine" - }, - { - "_id": "658aa9c0fd239b582c214651", - "_tpl": "6492d7847363b8a52206bc52", - "parentId": "658aa9c0fd239b582c21464c", - "slotId": "mod_stock" - }, - { - "_id": "658aa9c0fd239b582c214652", - "_tpl": "5649ade84bdc2d1b2b8b4587", - "parentId": "658aa9c0fd239b582c214651", - "slotId": "mod_pistolgrip_000" - }, - { - "_id": "658aa9c0fd239b582c214653", - "_tpl": "6492fb8253acae0af00a29b6", - "parentId": "658aa9c0fd239b582c21464c", - "slotId": "mod_sight_rear" - }, - { - "_id": "658aa9c0fd239b582c214654", - "_tpl": "6491c6f6ef312a876705191b", - "parentId": "658aa9c0fd239b582c21464c", - "slotId": "mod_handguard" - }, - { - "_id": "658aa9c0fd239b582c214655", - "_tpl": "5c1cd46f2e22164bef5cfedb", - "parentId": "658aa9c0fd239b582c214654", - "slotId": "mod_foregrip" - } - ] - }, - "65766adc234b9f6e050a431a": { - "_id": "65766adc234b9f6e050a431a", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor 6B46 6A Zabralo Sh Standard ", - "_parent": "6576eba346600d80c70ba7f8", - "_items": [ - { - "_id": "6576eba346600d80c70ba7f8", - "_tpl": "545cdb794bdc2d3a198b456a" - }, - { - "_id": "6576eba346600d80c70ba7f9", - "_tpl": "6575ce3716c2762fba0057fd", - "parentId": "6576eba346600d80c70ba7f8", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576eba346600d80c70ba7fa", - "_tpl": "6575ce45dc9932aed601c616", - "parentId": "6576eba346600d80c70ba7f8", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576eba346600d80c70ba7fb", - "_tpl": "6575ce5016c2762fba005802", - "parentId": "6576eba346600d80c70ba7f8", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576eba346600d80c70ba7fc", - "_tpl": "6575ce5befc786cd9101a671", - "parentId": "6576eba346600d80c70ba7f8", - "slotId": "soft_armor_right" - }, - { - "_id": "6576eba346600d80c70ba7fd", - "_tpl": "6575ce6f16c2762fba005806", - "parentId": "6576eba346600d80c70ba7f8", - "slotId": "Collar" - }, - { - "_id": "6576eba346600d80c70ba7fe", - "_tpl": "6575ce9db15fef3dd4051628", - "parentId": "6576eba346600d80c70ba7f8", - "slotId": "Shoulder_l" - }, - { - "_id": "6576eba346600d80c70ba7ff", - "_tpl": "6575cea8b15fef3dd405162c", - "parentId": "6576eba346600d80c70ba7f8", - "slotId": "Shoulder_r" - }, - { - "_id": "6576eba346600d80c70ba800", - "_tpl": "6575ce8bdc9932aed601c61e", - "parentId": "6576eba346600d80c70ba7f8", - "slotId": "Groin" - }, - { - "_id": "6576eba346600d80c70ba801", - "_tpl": "64afc71497cf3a403c01ff38", - "parentId": "6576eba346600d80c70ba7f8", - "slotId": "Front_plate" - }, - { - "_id": "6576eba346600d80c70ba802", - "_tpl": "64afc71497cf3a403c01ff38", - "parentId": "6576eba346600d80c70ba7f8", - "slotId": "Back_plate" - }, - { - "_id": "6576eba346600d80c70ba803", - "_tpl": "64afd81707e2cf40e903a316", - "parentId": "6576eba346600d80c70ba7f8", - "slotId": "Left_side_plate" - }, - { - "_id": "6576eba346600d80c70ba804", - "_tpl": "64afd81707e2cf40e903a316", - "parentId": "6576eba346600d80c70ba7f8", - "slotId": "Right_side_plate" - } - ], - "_encyclopedia": "545cdb794bdc2d3a198b456a" - }, - "657faa32e65c0122b70ffdc1": { - "_id": "657faa32e65c0122b70ffdc1", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Adept Neosteel Standart", - "_parent": "657faa32e65c0122b70ffdc5", - "_items": [ - { - "_id": "657faa32e65c0122b70ffdc5", - "_tpl": "65709d2d21b9f815e208ff95" - }, - { - "_id": "657faa32e65c0122b70ffdc6", - "_tpl": "657f9eb7e9433140ad0baf86", - "parentId": "657faa32e65c0122b70ffdc5", - "slotId": "Helmet_top" - }, - { - "_id": "657faa32e65c0122b70ffdc7", - "_tpl": "657f9ef6c6679fefb3051e1f", - "parentId": "657faa32e65c0122b70ffdc5", - "slotId": "Helmet_back" - } - ], - "_encyclopedia": "65709d2d21b9f815e208ff95" - }, - "657fa735e65c0122b70ffda5": { - "_id": "657fa735e65c0122b70ffda5", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet MSA ACH TC 2002 Standart", - "_parent": "657fa735e65c0122b70ffda9", - "_items": [ - { - "_id": "657fa735e65c0122b70ffda9", - "_tpl": "5d5e9c74a4b9364855191c40" - }, - { - "_id": "657fa735e65c0122b70ffdaa", - "_tpl": "657f8b94f92cd718b70154ff", - "parentId": "657fa735e65c0122b70ffda9", - "slotId": "Helmet_top" - }, - { - "_id": "657fa735e65c0122b70ffdab", - "_tpl": "657f8b43f92cd718b70154fb", - "parentId": "657fa735e65c0122b70ffda9", - "slotId": "Helmet_back" - } - ], - "_encyclopedia": "5d5e9c74a4b9364855191c40" - }, - "657120dd6fe59548840cb54c": { - "_id": "657120dd6fe59548840cb54c", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet ULACH Desert Tan Standard", - "_parent": "6576e428ab23f2038109a9cb", - "_items": [ - { - "_id": "6576e428ab23f2038109a9cb", - "_tpl": "5b40e2bc5acfc40016388216" - }, - { - "_id": "6576e428ab23f2038109a9cc", - "_tpl": "657112234269e9a568089eac", - "parentId": "6576e428ab23f2038109a9cb", - "slotId": "Helmet_top" - }, - { - "_id": "6576e428ab23f2038109a9cd", - "_tpl": "657112a4818110db4600aa66", - "parentId": "6576e428ab23f2038109a9cb", - "slotId": "Helmet_back" - }, - { - "_id": "6576e428ab23f2038109a9ce", - "_tpl": "657112ce22996eaf110881fb", - "parentId": "6576e428ab23f2038109a9cb", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5b40e2bc5acfc40016388216" - }, - "657122026d197c216005b34a": { - "_id": "657122026d197c216005b34a", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor Kora Kulon Black Standard", - "_parent": "6576e9ccfad2d1a4c00ca488", - "_items": [ - { - "_id": "6576e9ccfad2d1a4c00ca488", - "_tpl": "64be79c487d1510151095552" - }, - { - "_id": "6576e9ccfad2d1a4c00ca489", - "_tpl": "6570495b45d573133d0d6adb", - "parentId": "6576e9ccfad2d1a4c00ca488", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e9ccfad2d1a4c00ca48a", - "_tpl": "657049d23425b19bbc0502f0", - "parentId": "6576e9ccfad2d1a4c00ca488", - "slotId": "Soft_armor_back" - } - ], - "_encyclopedia": "64be79c487d1510151095552" - }, - "65765a38526e320fbe035795": { - "_id": "65765a38526e320fbe035795", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor Zhuk 3 Standard", - "_parent": "6576ea29fad2d1a4c00ca48b", - "_items": [ - { - "_id": "6576ea29fad2d1a4c00ca48b", - "_tpl": "5c0e5edb86f77461f55ed1f7" - }, - { - "_id": "6576ea29fad2d1a4c00ca48c", - "_tpl": "6571dbd388ead79fcf091d71", - "parentId": "6576ea29fad2d1a4c00ca48b", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576ea29fad2d1a4c00ca48d", - "_tpl": "6571dbda88ead79fcf091d75", - "parentId": "6576ea29fad2d1a4c00ca48b", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576ea29fad2d1a4c00ca48e", - "_tpl": "6571dbe07c02ae206002502e", - "parentId": "6576ea29fad2d1a4c00ca48b", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576ea29fad2d1a4c00ca48f", - "_tpl": "6571dbeaee8ec43d520cf89e", - "parentId": "6576ea29fad2d1a4c00ca48b", - "slotId": "soft_armor_right" - }, - { - "_id": "6576ea29fad2d1a4c00ca490", - "_tpl": "6571dbef88ead79fcf091d79", - "parentId": "6576ea29fad2d1a4c00ca48b", - "slotId": "Collar" - }, - { - "_id": "6576ea29fad2d1a4c00ca491", - "_tpl": "656f57dc27aed95beb08f628", - "parentId": "6576ea29fad2d1a4c00ca48b", - "slotId": "Front_plate" - }, - { - "_id": "6576ea29fad2d1a4c00ca492", - "_tpl": "656fac30c6baea13cd07e10c", - "parentId": "6576ea29fad2d1a4c00ca48b", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5c0e5edb86f77461f55ed1f7" - }, - "657fa8e787e11c61f70bfad5": { - "_id": "657fa8e787e11c61f70bfad5", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet HighCom Striker ACHHC IIIA Olive Standart", - "_parent": "657fa8e787e11c61f70bfad9", - "_items": [ - { - "_id": "657fa8e787e11c61f70bfad9", - "_tpl": "5b40e4035acfc47a87740943" - }, - { - "_id": "657fa8e787e11c61f70bfada", - "_tpl": "657f95bff92cd718b701550c", - "parentId": "657fa8e787e11c61f70bfad9", - "slotId": "Helmet_top" - }, - { - "_id": "657fa8e787e11c61f70bfadb", - "_tpl": "657f9605f4c82973640b2358", - "parentId": "657fa8e787e11c61f70bfad9", - "slotId": "Helmet_back" - } - ], - "_encyclopedia": "5b40e4035acfc47a87740943" - }, - "657bc772aab96fccee08bebc": { - "_id": "657bc772aab96fccee08bebc", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet LShZ Standart", - "_parent": "657bc772aab96fccee08bec0", - "_items": [ - { - "_id": "657bc772aab96fccee08bec0", - "_tpl": "5b432d215acfc4771e1c6624" - }, - { - "_id": "657bc772aab96fccee08bec1", - "_tpl": "657bb92fa1c61ee0c303631f", - "parentId": "657bc772aab96fccee08bec0", - "slotId": "Helmet_top" - }, - { - "_id": "657bc772aab96fccee08bec2", - "_tpl": "657bb99db30eca976305117f", - "parentId": "657bc772aab96fccee08bec0", - "slotId": "Helmet_back" - } - ], - "_encyclopedia": "5b432d215acfc4771e1c6624" - }, - "657663ff303700411c024278": { - "_id": "657663ff303700411c024278", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor Defender 2 Standard", - "_parent": "6576e98b46600d80c70ba7cc", - "_items": [ - { - "_id": "6576e98b46600d80c70ba7cc", - "_tpl": "5e9dacf986f774054d6b89f4" - }, - { - "_id": "6576e98b46600d80c70ba7cd", - "_tpl": "65732de75d3a3129fb05f3dd", - "parentId": "6576e98b46600d80c70ba7cc", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e98b46600d80c70ba7ce", - "_tpl": "65732df4d0acf75aea06c87b", - "parentId": "6576e98b46600d80c70ba7cc", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e98b46600d80c70ba7cf", - "_tpl": "65732e05d0acf75aea06c87f", - "parentId": "6576e98b46600d80c70ba7cc", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e98b46600d80c70ba7d0", - "_tpl": "65732e0f6784ca384b0167ad", - "parentId": "6576e98b46600d80c70ba7cc", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e98b46600d80c70ba7d1", - "_tpl": "65732e215d3a3129fb05f3e1", - "parentId": "6576e98b46600d80c70ba7cc", - "slotId": "Collar" - }, - { - "_id": "6576e98b46600d80c70ba7d2", - "_tpl": "65732e30dd8739f6440ef383", - "parentId": "6576e98b46600d80c70ba7cc", - "slotId": "Groin" - }, - { - "_id": "6576e98b46600d80c70ba7d3", - "_tpl": "65573fa5655447403702a816", - "parentId": "6576e98b46600d80c70ba7cc", - "slotId": "Front_plate" - }, - { - "_id": "6576e98b46600d80c70ba7d4", - "_tpl": "65573fa5655447403702a816", - "parentId": "6576e98b46600d80c70ba7cc", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5e9dacf986f774054d6b89f4" - }, - "657bc644bbd440df880b2de2": { - "_id": "657bc644bbd440df880b2de2", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Firefighter ShPM Standart", - "_parent": "6584051836c26459480dcc3e", - "_items": [ - { - "_id": "6584051836c26459480dcc3e", - "_tpl": "5c08f87c0db8340019124324" - }, - { - "_id": "6584051836c26459480dcc3f", - "_tpl": "657ba85ecfcf63c951052da7", - "parentId": "6584051836c26459480dcc3e", - "slotId": "Helmet_top" - }, - { - "_id": "6584051836c26459480dcc40", - "_tpl": "657ba8bccfcf63c951052dab", - "parentId": "6584051836c26459480dcc3e", - "slotId": "Helmet_back" - }, - { - "_id": "6584051836c26459480dcc41", - "_tpl": "65818e4e566d2de69901b1b1", - "parentId": "6584051836c26459480dcc3e", - "slotId": "helmet_eyes" - }, - { - "_id": "6584051836c26459480dcc42", - "_tpl": "657ba8eab7e9ca9a02045bfd", - "parentId": "6584051836c26459480dcc3e", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5c08f87c0db8340019124324" - }, - "657bc600b588f345450a6d62": { - "_id": "657bc600b588f345450a6d62", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet PSh 97 Djeta Standart", - "_parent": "6583fdfb76287649ed0a5d1c", - "_items": [ - { - "_id": "6583fdfb76287649ed0a5d1c", - "_tpl": "5c0d2727d174af02a012cf58" - }, - { - "_id": "6583fdfb76287649ed0a5d1d", - "_tpl": "657ba6c3c6f689d3a205b857", - "parentId": "6583fdfb76287649ed0a5d1c", - "slotId": "Helmet_top" - }, - { - "_id": "6583fdfb76287649ed0a5d1e", - "_tpl": "657ba737b7e9ca9a02045bf6", - "parentId": "6583fdfb76287649ed0a5d1c", - "slotId": "Helmet_back" - }, - { - "_id": "6583fdfb76287649ed0a5d1f", - "_tpl": "658188edf026a90c1708c827", - "parentId": "6583fdfb76287649ed0a5d1c", - "slotId": "helmet_eyes" - }, - { - "_id": "6583fdfb76287649ed0a5d20", - "_tpl": "657ba75e23918923cb0df573", - "parentId": "6583fdfb76287649ed0a5d1c", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5c0d2727d174af02a012cf58" - }, - "657bc742bbd440df880b2dec": { - "_id": "657bc742bbd440df880b2dec", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet SSSh 94 Sfera S Standart", - "_parent": "657bc742bbd440df880b2df1", - "_items": [ - { - "_id": "657bc742bbd440df880b2df1", - "_tpl": "5aa7d193e5b5b000171d063f" - }, - { - "_id": "657bc742bbd440df880b2df2", - "_tpl": "657bb70486c7f9ef7a009936", - "parentId": "657bc742bbd440df880b2df1", - "slotId": "Helmet_top" - }, - { - "_id": "657bc742bbd440df880b2df3", - "_tpl": "657bb79ba1c61ee0c303631a", - "parentId": "657bc742bbd440df880b2df1", - "slotId": "Helmet_back" - }, - { - "_id": "657bc742bbd440df880b2df4", - "_tpl": "657bb7d7b30eca9763051176", - "parentId": "657bc742bbd440df880b2df1", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5aa7d193e5b5b000171d063f" - }, - "657bc59526820ea7da04f2e8": { - "_id": "657bc59526820ea7da04f2e8", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Tak Kek Fast MT Replika Standart", - "_parent": "657bc59526820ea7da04f2ec", - "_items": [ - { - "_id": "657bc59526820ea7da04f2ec", - "_tpl": "5ea05cf85ad9772e6624305d" - }, - { - "_id": "657bc59526820ea7da04f2ed", - "_tpl": "657ba2eef58ba5a625010798", - "parentId": "657bc59526820ea7da04f2ec", - "slotId": "Helmet_top" - }, - { - "_id": "657bc59526820ea7da04f2ee", - "_tpl": "657ba34b9ba22f103e08139b", - "parentId": "657bc59526820ea7da04f2ec", - "slotId": "Helmet_back" - } - ], - "_encyclopedia": "5ea05cf85ad9772e6624305d" - }, - "657eb23b7ba4217c5e65b692": { - "_id": "657eb23b7ba4217c5e65b692", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "VSK94_tactical", - "_parent": "657eb261896bd1647e75b389", - "_items": [ - { - "_id": "657eb261896bd1647e75b389", - "_tpl": "645e0c6b3b381ede770e1cc9", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "657eb261896bd1647e75b38a", - "_tpl": "6450ec2e7da7133e5a09ca96", - "parentId": "657eb261896bd1647e75b389", - "slotId": "mod_magazine" - }, - { - "_id": "657eb261896bd1647e75b38b", - "_tpl": "6452519e3d52156624001fd5", - "parentId": "657eb261896bd1647e75b389", - "slotId": "mod_stock" - }, - { - "_id": "657eb261896bd1647e75b38c", - "_tpl": "618a5d5852ecee1505530b2a", - "parentId": "657eb261896bd1647e75b389", - "slotId": "mod_scope" - }, - { - "_id": "657eb261896bd1647e75b38d", - "_tpl": "645123013d52156624001fd1", - "parentId": "657eb261896bd1647e75b389", - "slotId": "mod_barrel" - }, - { - "_id": "657eb261896bd1647e75b38e", - "_tpl": "64527a263d52156624001fd7", - "parentId": "657eb261896bd1647e75b38d", - "slotId": "mod_muzzle" - }, - { - "_id": "657eb261896bd1647e75b38f", - "_tpl": "6448f2f6d4928d46d30be3f6", - "parentId": "657eb261896bd1647e75b38d", - "slotId": "mod_handguard" - } - ] - }, - "65766582234b9f6e050a42c1": { - "_id": "65766582234b9f6e050a42c1", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor IOTV Gen4 High Mobility Standard", - "_parent": "6576eb4346600d80c70ba7e7", - "_items": [ - { - "_id": "6576eb4346600d80c70ba7e7", - "_tpl": "5b44d0de86f774503d30cba8" - }, - { - "_id": "6576eb4346600d80c70ba7e8", - "_tpl": "6575c342efc786cd9101a5e5", - "parentId": "6576eb4346600d80c70ba7e7", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576eb4346600d80c70ba7e9", - "_tpl": "6575c34bc6700bd6b40e8a84", - "parentId": "6576eb4346600d80c70ba7e7", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576eb4346600d80c70ba7ea", - "_tpl": "6575c35bc6700bd6b40e8a88", - "parentId": "6576eb4346600d80c70ba7e7", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576eb4346600d80c70ba7eb", - "_tpl": "6575c366c6700bd6b40e8a8c", - "parentId": "6576eb4346600d80c70ba7e7", - "slotId": "soft_armor_right" - }, - { - "_id": "6576eb4346600d80c70ba7ec", - "_tpl": "6575c373dc9932aed601c5ec", - "parentId": "6576eb4346600d80c70ba7e7", - "slotId": "Collar" - }, - { - "_id": "6576eb4346600d80c70ba7ed", - "_tpl": "6575c385dc9932aed601c5f0", - "parentId": "6576eb4346600d80c70ba7e7", - "slotId": "Groin" - }, - { - "_id": "6576eb4346600d80c70ba7ee", - "_tpl": "6575c390efc786cd9101a5e9", - "parentId": "6576eb4346600d80c70ba7e7", - "slotId": "Groin_back" - }, - { - "_id": "6576eb4346600d80c70ba7ef", - "_tpl": "656fa8d700d62bcd2e024084", - "parentId": "6576eb4346600d80c70ba7e7", - "slotId": "Front_plate" - }, - { - "_id": "6576eb4346600d80c70ba7f0", - "_tpl": "656fa8d700d62bcd2e024084", - "parentId": "6576eb4346600d80c70ba7e7", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5b44d0de86f774503d30cba8" - }, - "657666ca303700411c0242c6": { - "_id": "657666ca303700411c0242c6", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor LBT 6094A Slick Plate Carrier Black Standard", - "_parent": "6576ec9946600d80c70ba80a", - "_items": [ - { - "_id": "6576ec9946600d80c70ba80a", - "_tpl": "5e4abb5086f77406975c9342" - }, - { - "_id": "6576ec9946600d80c70ba80b", - "_tpl": "6575e71760703324250610c3", - "parentId": "6576ec9946600d80c70ba80a", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576ec9946600d80c70ba80c", - "_tpl": "6575e72660703324250610c7", - "parentId": "6576ec9946600d80c70ba80a", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576ec9946600d80c70ba80d", - "_tpl": "656fa76500d62bcd2e024080", - "parentId": "6576ec9946600d80c70ba80a", - "slotId": "Front_plate" - }, - { - "_id": "6576ec9946600d80c70ba80e", - "_tpl": "656fa76500d62bcd2e024080", - "parentId": "6576ec9946600d80c70ba80a", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5e4abb5086f77406975c9342" - }, - "65765fbe234b9f6e050a4292": { - "_id": "65765fbe234b9f6e050a4292", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor NFM THOR Concealable Reinforced Standard", - "_parent": "6576eaa3424f2c87d30c75ff", - "_items": [ - { - "_id": "6576eaa3424f2c87d30c75ff", - "_tpl": "609e8540d5c319764c2bc2e9" - }, - { - "_id": "6576eaa3424f2c87d30c7600", - "_tpl": "6572e5221b5bc1185508c24f", - "parentId": "6576eaa3424f2c87d30c75ff", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576eaa3424f2c87d30c7601", - "_tpl": "6572e52f73c0eabb700109a0", - "parentId": "6576eaa3424f2c87d30c75ff", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576eaa3424f2c87d30c7602", - "_tpl": "6572e53c73c0eabb700109a4", - "parentId": "6576eaa3424f2c87d30c75ff", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576eaa3424f2c87d30c7603", - "_tpl": "6572e54873c0eabb700109a8", - "parentId": "6576eaa3424f2c87d30c75ff", - "slotId": "soft_armor_right" - }, - { - "_id": "6576eaa3424f2c87d30c7604", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "6576eaa3424f2c87d30c75ff", - "slotId": "Front_plate" - }, - { - "_id": "6576eaa3424f2c87d30c7605", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "6576eaa3424f2c87d30c75ff", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "609e8540d5c319764c2bc2e9" - }, - "657bc8c926820ea7da04f2fa": { - "_id": "657bc8c926820ea7da04f2fa", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet LShZ 5 Vulkan 5 Standart", - "_parent": "657bc8c926820ea7da04f2ff", - "_items": [ - { - "_id": "657bc8c926820ea7da04f2ff", - "_tpl": "5ca20ee186f774799474abc2" - }, - { - "_id": "657bc8c926820ea7da04f300", - "_tpl": "657bbe73a1c61ee0c303632b", - "parentId": "657bc8c926820ea7da04f2ff", - "slotId": "Helmet_top" - }, - { - "_id": "657bc8c926820ea7da04f301", - "_tpl": "657bbed0aab96fccee08be96", - "parentId": "657bc8c926820ea7da04f2ff", - "slotId": "Helmet_back" - }, - { - "_id": "657bc8c926820ea7da04f302", - "_tpl": "657bbefeb30eca9763051189", - "parentId": "657bc8c926820ea7da04f2ff", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5ca20ee186f774799474abc2" - }, - "64c390af8427c75665190d1d": { - "_id": "64c390af8427c75665190d1d", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "SVT-40_sniper", - "_parent": "64c3942c8427c75665190d47", - "_items": [ - { - "_id": "64c3942c8427c75665190d47", - "_tpl": "643ea5b23db6f9f57107d9fd", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "64c3942c8427c75665190d48", - "_tpl": "6410745d5dd49d77bd078485", - "parentId": "64c3942c8427c75665190d47", - "slotId": "mod_stock" - }, - { - "_id": "64c3942c8427c75665190d49", - "_tpl": "6410758c857473525b08bb77", - "parentId": "64c3942c8427c75665190d47", - "slotId": "mod_barrel" - }, - { - "_id": "64c3942c8427c75665190d4a", - "_tpl": "64119d1f2c6d6f921a0929f8", - "parentId": "64c3942c8427c75665190d49", - "slotId": "mod_muzzle" - }, - { - "_id": "64c3942c8427c75665190d4b", - "_tpl": "64119d672c6d6f921a0929fb", - "parentId": "64c3942c8427c75665190d4a", - "slotId": "mod_sight_front" - }, - { - "_id": "64c3942c8427c75665190d4c", - "_tpl": "64119d90dcf48d656f0aa275", - "parentId": "64c3942c8427c75665190d49", - "slotId": "mod_sight_rear" - }, - { - "_id": "64c3942c8427c75665190d4d", - "_tpl": "64119cdbdcf48d656f0aa272", - "parentId": "64c3942c8427c75665190d47", - "slotId": "mod_reciever" - }, - { - "_id": "64c3942c8427c75665190d4e", - "_tpl": "6422e1ea3c0f06190302161a", - "parentId": "64c3942c8427c75665190d47", - "slotId": "mod_magazine" - }, - { - "_id": "64c3942c8427c75665190d4f", - "_tpl": "641dc35e19604f20c800be18", - "parentId": "64c3942c8427c75665190d47", - "slotId": "mod_scope" - }, - { - "_id": "64c3942c8427c75665190d50", - "_tpl": "5b3f7c1c5acfc40dc5296b1d", - "parentId": "64c3942c8427c75665190d4f", - "slotId": "mod_scope" - } - ] - }, - "657bc7d6aab96fccee08bec4": { - "_id": "657bc7d6aab96fccee08bec4", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet NFM HJELM Standart", - "_parent": "657bc7d6aab96fccee08bec8", - "_items": [ - { - "_id": "657bc7d6aab96fccee08bec8", - "_tpl": "61bca7cda0eae612383adf57" - }, - { - "_id": "657bc7d6aab96fccee08bec9", - "_tpl": "657bbcc9a1c61ee0c3036327", - "parentId": "657bc7d6aab96fccee08bec8", - "slotId": "Helmet_top" - }, - { - "_id": "657bc7d6aab96fccee08beca", - "_tpl": "657bbcffbbd440df880b2dd5", - "parentId": "657bc7d6aab96fccee08bec8", - "slotId": "Helmet_back" - } - ], - "_encyclopedia": "61bca7cda0eae612383adf57" - }, - "5a8ae65f86f774377a23ed55": { - "_id": "5a8ae65f86f774377a23ed55", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "vityaz_zenit", - "_parent": "639c46925287bf79c373762a", - "_items": [ - { - "_id": "639c46925287bf79c373762a", - "_tpl": "59984ab886f7743e98271174", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "639c46925287bf79c373762b", - "_tpl": "5649ae4a4bdc2d1b2b8b4588", - "parentId": "639c46925287bf79c373762a", - "slotId": "mod_pistol_grip" - }, - { - "_id": "639c46925287bf79c373762c", - "_tpl": "5ac78eaf5acfc4001926317a", - "parentId": "639c46925287bf79c373762a", - "slotId": "mod_stock" - }, - { - "_id": "639c46925287bf79c373762d", - "_tpl": "59ecc3dd86f7746dc827481c", - "parentId": "639c46925287bf79c373762c", - "slotId": "mod_stock" - }, - { - "_id": "639c46925287bf79c373762e", - "_tpl": "5648ac824bdc2ded0b8b457d", - "parentId": "639c46925287bf79c373762a", - "slotId": "mod_charge" - }, - { - "_id": "639c46925287bf79c373762f", - "_tpl": "599860ac86f77436b225ed1a", - "parentId": "639c46925287bf79c373762a", - "slotId": "mod_magazine" - }, - { - "_id": "639c46925287bf79c3737630", - "_tpl": "59bfc5c886f7743bf6794e62", - "parentId": "639c46925287bf79c373762a", - "slotId": "mod_muzzle" - }, - { - "_id": "639c46925287bf79c3737631", - "_tpl": "59985a6c86f77414ec448d17", - "parentId": "639c46925287bf79c373762a", - "slotId": "mod_reciever" - }, - { - "_id": "639c46925287bf79c3737632", - "_tpl": "570fd6c2d2720bc6458b457f", - "parentId": "639c46925287bf79c3737631", - "slotId": "mod_scope" - }, - { - "_id": "639c46925287bf79c3737633", - "_tpl": "599860e986f7743bb57573a6", - "parentId": "639c46925287bf79c373762a", - "slotId": "mod_sight_rear" - }, - { - "_id": "639c46925287bf79c3737634", - "_tpl": "59ccd11386f77428f24a488f", - "parentId": "639c46925287bf79c373762a", - "slotId": "mod_gas_block" - }, - { - "_id": "639c46925287bf79c3737635", - "_tpl": "5648b4534bdc2d3d1c8b4580", - "parentId": "639c46925287bf79c3737634", - "slotId": "mod_handguard" - }, - { - "_id": "639c46925287bf79c3737636", - "_tpl": "591af28e86f77414a27a9e1d", - "parentId": "639c46925287bf79c3737635", - "slotId": "mod_foregrip" - }, - { - "_id": "639c46925287bf79c3737637", - "_tpl": "560d657b4bdc2da74d8b4572", - "parentId": "639c46925287bf79c3737635", - "slotId": "mod_tactical_002" - } - ] - }, - "6571944dacb85662e7024bea": { - "_id": "6571944dacb85662e7024bea", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest 6B5 15 Zh 86 Uley Standard", - "_parent": "6576e7b4ab23f2038109a9e8", - "_items": [ - { - "_id": "6576e7b4ab23f2038109a9e8", - "_tpl": "5c0e446786f7742013381639" - }, - { - "_id": "6576e7b4ab23f2038109a9e9", - "_tpl": "657087577f6d4590ac0d2109", - "parentId": "6576e7b4ab23f2038109a9e8", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e7b4ab23f2038109a9ea", - "_tpl": "6570880f4a747dbb63005ee5", - "parentId": "6576e7b4ab23f2038109a9e8", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e7b4ab23f2038109a9eb", - "_tpl": "65708afe4a747dbb63005eee", - "parentId": "6576e7b4ab23f2038109a9e8", - "slotId": "Collar" - }, - { - "_id": "6576e7b4ab23f2038109a9ec", - "_tpl": "65708b4c4a747dbb63005ef3", - "parentId": "6576e7b4ab23f2038109a9e8", - "slotId": "Groin" - } - ], - "_encyclopedia": "5c0e446786f7742013381639" - }, - "64cf7b2d033b747d625b7666": { - "_id": "64cf7b2d033b747d625b7666", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "PKP_Default", - "_parent": "64cf80f5528e2c17a14d22f3", - "_items": [ - { - "_id": "64cf80f5528e2c17a14d22f3", - "_tpl": "64ca3d3954fc657e230529cc", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "64cf80f5528e2c17a14d22f4", - "_tpl": "64cbad529f7cf7f75c077fd5", - "parentId": "64cf80f5528e2c17a14d22f3", - "slotId": "mod_pistolgrip" - }, - { - "_id": "64cf80f5528e2c17a14d22f5", - "_tpl": "64639a9aab86f8fd4300146c", - "parentId": "64cf80f5528e2c17a14d22f3", - "slotId": "mod_barrel" - }, - { - "_id": "64cf80f5528e2c17a14d22f6", - "_tpl": "646372518610c40fc20204e8", - "parentId": "64cf80f5528e2c17a14d22f3", - "slotId": "mod_magazine" - }, - { - "_id": "64cf80f5528e2c17a14d22f7", - "_tpl": "6492e3a97df7d749100e29ee", - "parentId": "64cf80f5528e2c17a14d22f3", - "slotId": "mod_stock" - }, - { - "_id": "64cf80f5528e2c17a14d22f8", - "_tpl": "6464d870bb2c580352070cc4", - "parentId": "64cf80f5528e2c17a14d22f3", - "slotId": "mod_bipod" - }, - { - "_id": "64cf80f5528e2c17a14d22f9", - "_tpl": "6492fb8253acae0af00a29b6", - "parentId": "64cf80f5528e2c17a14d22f3", - "slotId": "mod_sight_rear" - } - ], - "_encyclopedia": "64ca3d3954fc657e230529cc" - }, - "657122506fe59548840cb559": { - "_id": "657122506fe59548840cb559", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor Kirasa N Standard", - "_parent": "6576e9f4424f2c87d30c75ef", - "_items": [ - { - "_id": "6576e9f4424f2c87d30c75ef", - "_tpl": "5b44d22286f774172b0c9de8" - }, - { - "_id": "6576e9f4424f2c87d30c75f0", - "_tpl": "65704de13e7bba58ea0285c8", - "parentId": "6576e9f4424f2c87d30c75ef", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e9f4424f2c87d30c75f1", - "_tpl": "65705c3c14f2ed6d7d0b7738", - "parentId": "6576e9f4424f2c87d30c75ef", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e9f4424f2c87d30c75f2", - "_tpl": "65705c777260e1139e091408", - "parentId": "6576e9f4424f2c87d30c75ef", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e9f4424f2c87d30c75f3", - "_tpl": "65705cb314f2ed6d7d0b773c", - "parentId": "6576e9f4424f2c87d30c75ef", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e9f4424f2c87d30c75f4", - "_tpl": "65705cea4916448ae1050897", - "parentId": "6576e9f4424f2c87d30c75ef", - "slotId": "Collar" - }, - { - "_id": "6576e9f4424f2c87d30c75f5", - "_tpl": "656f9d5900d62bcd2e02407c", - "parentId": "6576e9f4424f2c87d30c75ef", - "slotId": "Front_plate" - }, - { - "_id": "6576e9f4424f2c87d30c75f6", - "_tpl": "656f9d5900d62bcd2e02407c", - "parentId": "6576e9f4424f2c87d30c75ef", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5b44d22286f774172b0c9de8" - }, - "6571214fc50461e8750d1f6b": { - "_id": "6571214fc50461e8750d1f6b", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor Modul 3M Standard", - "_parent": "6576e9e246600d80c70ba7d5", - "_items": [ - { - "_id": "6576e9e246600d80c70ba7d5", - "_tpl": "59e7635f86f7742cbf2c1095" - }, - { - "_id": "6576e9e246600d80c70ba7d6", - "_tpl": "65702f87722744627e05cdb8", - "parentId": "6576e9e246600d80c70ba7d5", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e9e246600d80c70ba7d7", - "_tpl": "65702fe593b7ea9c330f4ce8", - "parentId": "6576e9e246600d80c70ba7d5", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e9e246600d80c70ba7d8", - "_tpl": "6570305d93b7ea9c330f4ced", - "parentId": "6576e9e246600d80c70ba7d5", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e9e246600d80c70ba7d9", - "_tpl": "65703472c9030b928a0a8a78", - "parentId": "6576e9e246600d80c70ba7d5", - "slotId": "soft_armor_right" - } - ], - "_encyclopedia": "59e7635f86f7742cbf2c1095" - }, - "657fa996e9433140ad0bafb5": { - "_id": "657fa996e9433140ad0bafb5", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet BNTI LShZ 2DTM Standart", - "_parent": "657fa996e9433140ad0bafba", - "_items": [ - { - "_id": "657fa996e9433140ad0bafba", - "_tpl": "5d6d3716a4b9361bc8618872" - }, - { - "_id": "657fa996e9433140ad0bafbb", - "_tpl": "657fa009d4caf976440afe3a", - "parentId": "657fa996e9433140ad0bafba", - "slotId": "Helmet_top" - }, - { - "_id": "657fa996e9433140ad0bafbc", - "_tpl": "657fa04ac6679fefb3051e24", - "parentId": "657fa996e9433140ad0bafba", - "slotId": "Helmet_back" - }, - { - "_id": "657fa996e9433140ad0bafbd", - "_tpl": "657fa07387e11c61f70bface", - "parentId": "657fa996e9433140ad0bafba", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5d6d3716a4b9361bc8618872" - }, - "657fa8c5e9433140ad0bafa5": { - "_id": "657fa8c5e9433140ad0bafa5", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet HighCom Striker ACHHC IIIA Black Standart", - "_parent": "657fa8c5e9433140ad0bafa9", - "_items": [ - { - "_id": "657fa8c5e9433140ad0bafa9", - "_tpl": "5b40e3f35acfc40016388218" - }, - { - "_id": "657fa8c5e9433140ad0bafaa", - "_tpl": "657f95bff92cd718b701550c", - "parentId": "657fa8c5e9433140ad0bafa9", - "slotId": "Helmet_top" - }, - { - "_id": "657fa8c5e9433140ad0bafab", - "_tpl": "657f9605f4c82973640b2358", - "parentId": "657fa8c5e9433140ad0bafa9", - "slotId": "Helmet_back" - } - ], - "_encyclopedia": "5b40e3f35acfc40016388218" - }, - "657fa9cf87e11c61f70bfadd": { - "_id": "657fa9cf87e11c61f70bfadd", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet MSA Gallet TC 800 Standart", - "_parent": "657fa9cf87e11c61f70bfae1", - "_items": [ - { - "_id": "657fa9cf87e11c61f70bfae1", - "_tpl": "5e4bfc1586f774264f7582d3" - }, - { - "_id": "657fa9cf87e11c61f70bfae2", - "_tpl": "657f9c78ada5fadd1f07a58d", - "parentId": "657fa9cf87e11c61f70bfae1", - "slotId": "Helmet_top" - }, - { - "_id": "657fa9cf87e11c61f70bfae3", - "_tpl": "657f9cb587e11c61f70bfaca", - "parentId": "657fa9cf87e11c61f70bfae1", - "slotId": "Helmet_back" - } - ], - "_encyclopedia": "5e4bfc1586f774264f7582d3" - }, - "657bc861b588f345450a6d76": { - "_id": "657bc861b588f345450a6d76", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Rys T Standard", - "_parent": "657bc861b588f345450a6d7b", - "_items": [ - { - "_id": "657bc861b588f345450a6d7b", - "_tpl": "5f60c74e3b85f6263c145586" - }, - { - "_id": "657bc861b588f345450a6d7c", - "_tpl": "657bc285aab96fccee08bea3", - "parentId": "657bc861b588f345450a6d7b", - "slotId": "Helmet_top" - }, - { - "_id": "657bc861b588f345450a6d7d", - "_tpl": "657bc2c5a1c61ee0c3036333", - "parentId": "657bc861b588f345450a6d7b", - "slotId": "Helmet_back" - }, - { - "_id": "657bc861b588f345450a6d7e", - "_tpl": "657bc2e7b30eca976305118d", - "parentId": "657bc861b588f345450a6d7b", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5f60c74e3b85f6263c145586" - }, - "65765d5086f11bca4106d316": { - "_id": "65765d5086f11bca4106d316", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest 6B5 16 Zh 86 Uley Standard", - "_parent": "6576e797fad2d1a4c00ca475", - "_items": [ - { - "_id": "6576e797fad2d1a4c00ca475", - "_tpl": "5c0e3eb886f7742015526062" - }, - { - "_id": "6576e797fad2d1a4c00ca476", - "_tpl": "65764a4cd8537eb26a0355ee", - "parentId": "6576e797fad2d1a4c00ca475", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e797fad2d1a4c00ca477", - "_tpl": "65764bc22bc38ef78e076485", - "parentId": "6576e797fad2d1a4c00ca475", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e797fad2d1a4c00ca478", - "_tpl": "65764c39526e320fbe035777", - "parentId": "6576e797fad2d1a4c00ca475", - "slotId": "Collar" - }, - { - "_id": "6576e797fad2d1a4c00ca479", - "_tpl": "65764c6b526e320fbe03577b", - "parentId": "6576e797fad2d1a4c00ca475", - "slotId": "Groin" - } - ], - "_encyclopedia": "5c0e3eb886f7742015526062" - }, - "64cbdff43ccb85468628d5fc": { - "_id": "64cbdff43ccb85468628d5fc", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "PKM_default", - "_parent": "64cbdff43ccb85468628d605", - "_items": [ - { - "_id": "64cbdff43ccb85468628d605", - "_tpl": "64637076203536ad5600c990", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "64cbdff43ccb85468628d606", - "_tpl": "646371779f5f0ea59a04c204", - "parentId": "64cbdff43ccb85468628d605", - "slotId": "mod_pistolgrip" - }, - { - "_id": "64cbdff43ccb85468628d607", - "_tpl": "646371faf2404ab67905c8e9", - "parentId": "64cbdff43ccb85468628d605", - "slotId": "mod_barrel" - }, - { - "_id": "64cbdff43ccb85468628d608", - "_tpl": "6492efb8cfcf7c89e701abf3", - "parentId": "64cbdff43ccb85468628d607", - "slotId": "mod_muzzle" - }, - { - "_id": "64cbdff43ccb85468628d609", - "_tpl": "646372518610c40fc20204e8", - "parentId": "64cbdff43ccb85468628d605", - "slotId": "mod_magazine" - }, - { - "_id": "64cbdff43ccb85468628d60a", - "_tpl": "646371a9f2404ab67905c8e6", - "parentId": "64cbdff43ccb85468628d605", - "slotId": "mod_stock" - }, - { - "_id": "64cbdff43ccb85468628d60b", - "_tpl": "6464d870bb2c580352070cc4", - "parentId": "64cbdff43ccb85468628d605", - "slotId": "mod_bipod" - }, - { - "_id": "64cbdff43ccb85468628d60c", - "_tpl": "6492fb8253acae0af00a29b6", - "parentId": "64cbdff43ccb85468628d605", - "slotId": "mod_sight_rear" - } - ], - "_encyclopedia": "64637076203536ad5600c990" - }, - "65712763c50461e8750d1fae": { - "_id": "65712763c50461e8750d1fae", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor 6B23 2 Mountain Flora Standard", - "_parent": "657b346db1b05ca017061dad", - "_items": [ - { - "_id": "657b346db1b05ca017061dad", - "_tpl": "5c0e57ba86f7747fa141986d" - }, - { - "_id": "657b346db1b05ca017061dae", - "_tpl": "65707fc348c7a887f2010432", - "parentId": "657b346db1b05ca017061dad", - "slotId": "Soft_armor_front" - }, - { - "_id": "657b346db1b05ca017061daf", - "_tpl": "6570800612755ae0d907acf8", - "parentId": "657b346db1b05ca017061dad", - "slotId": "Soft_armor_back" - }, - { - "_id": "657b346db1b05ca017061db0", - "_tpl": "65708070f65e2491bf00972c", - "parentId": "657b346db1b05ca017061dad", - "slotId": "Soft_armor_left" - }, - { - "_id": "657b346db1b05ca017061db1", - "_tpl": "657080a212755ae0d907ad04", - "parentId": "657b346db1b05ca017061dad", - "slotId": "soft_armor_right" - }, - { - "_id": "657b346db1b05ca017061db2", - "_tpl": "657080ca12755ae0d907ad5e", - "parentId": "657b346db1b05ca017061dad", - "slotId": "Collar" - }, - { - "_id": "657b346db1b05ca017061db3", - "_tpl": "65708122f65e2491bf009755", - "parentId": "657b346db1b05ca017061dad", - "slotId": "Groin" - }, - { - "_id": "657b346db1b05ca017061db4", - "_tpl": "65708165696fe382cf073255", - "parentId": "657b346db1b05ca017061dad", - "slotId": "Groin_back" - }, - { - "_id": "657b346db1b05ca017061db5", - "_tpl": "656f603f94b480b8a500c0d6", - "parentId": "657b346db1b05ca017061dad", - "slotId": "Front_plate" - }, - { - "_id": "657b346db1b05ca017061db6", - "_tpl": "657b22485f444d6dff0c6c2f", - "parentId": "657b346db1b05ca017061dad", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5c0e57ba86f7747fa141986d" - }, - "657127126d197c216005b402": { - "_id": "657127126d197c216005b402", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor Interceptor OTV Standard", - "_parent": "6576eae7424f2c87d30c7606", - "_items": [ - { - "_id": "6576eae7424f2c87d30c7606", - "_tpl": "64abd93857958b4249003418" - }, - { - "_id": "6576eae7424f2c87d30c7607", - "_tpl": "6570f30b0921c914bf07964c", - "parentId": "6576eae7424f2c87d30c7606", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576eae7424f2c87d30c7608", - "_tpl": "6570f35cd67d0309980a7acb", - "parentId": "6576eae7424f2c87d30c7606", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576eae7424f2c87d30c7609", - "_tpl": "6570f3890b4ae5847f060dad", - "parentId": "6576eae7424f2c87d30c7606", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576eae7424f2c87d30c760a", - "_tpl": "6570f3bb0b4ae5847f060db2", - "parentId": "6576eae7424f2c87d30c7606", - "slotId": "soft_armor_right" - }, - { - "_id": "6576eae7424f2c87d30c760b", - "_tpl": "656fb0bd7c2d57afe200c0dc", - "parentId": "6576eae7424f2c87d30c7606", - "slotId": "Front_plate" - }, - { - "_id": "6576eae7424f2c87d30c760c", - "_tpl": "656fb0bd7c2d57afe200c0dc", - "parentId": "6576eae7424f2c87d30c7606", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "64abd93857958b4249003418" - }, - "657bc7a5bbd440df880b2df6": { - "_id": "657bc7a5bbd440df880b2df6", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Galvion Caiman Standart", - "_parent": "657bc7a5bbd440df880b2dfa", - "_items": [ - { - "_id": "657bc7a5bbd440df880b2dfa", - "_tpl": "5f60b34a41e30a4ab12a6947" - }, - { - "_id": "657bc7a5bbd440df880b2dfb", - "_tpl": "657bbad7a1c61ee0c3036323", - "parentId": "657bc7a5bbd440df880b2dfa", - "slotId": "Helmet_top" - }, - { - "_id": "657bc7a5bbd440df880b2dfc", - "_tpl": "657bbb31b30eca9763051183", - "parentId": "657bc7a5bbd440df880b2dfa", - "slotId": "Helmet_back" - } - ], - "_encyclopedia": "5f60b34a41e30a4ab12a6947" - }, - "6576667d526e320fbe035806": { - "_id": "6576667d526e320fbe035806", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest Ars Arma CPC MOD1 Standard", - "_parent": "6576e5b746600d80c70ba7be", - "_items": [ - { - "_id": "6576e5b746600d80c70ba7be", - "_tpl": "5e4ac41886f77406a511c9a8" - }, - { - "_id": "6576e5b746600d80c70ba7bf", - "_tpl": "6575ef599c7cad336508e453", - "parentId": "6576e5b746600d80c70ba7be", - "slotId": "soft_armor_front" - }, - { - "_id": "6576e5b746600d80c70ba7c0", - "_tpl": "6575ef6bf6a13a7b7100b093", - "parentId": "6576e5b746600d80c70ba7be", - "slotId": "soft_armor_back" - }, - { - "_id": "6576e5b746600d80c70ba7c1", - "_tpl": "6575ef78da698a4e980677eb", - "parentId": "6576e5b746600d80c70ba7be", - "slotId": "soft_armor_left" - }, - { - "_id": "6576e5b746600d80c70ba7c2", - "_tpl": "6575ef7f9c7cad336508e457", - "parentId": "6576e5b746600d80c70ba7be", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e5b746600d80c70ba7c3", - "_tpl": "656fae5f7c2d57afe200c0d7", - "parentId": "6576e5b746600d80c70ba7be", - "slotId": "front_plate" - }, - { - "_id": "6576e5b746600d80c70ba7c4", - "_tpl": "656fae5f7c2d57afe200c0d7", - "parentId": "6576e5b746600d80c70ba7be", - "slotId": "back_plate" - }, - { - "_id": "6576e5b746600d80c70ba7c5", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "6576e5b746600d80c70ba7be", - "slotId": "left_side_plate" - }, - { - "_id": "6576e5b746600d80c70ba7c6", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "6576e5b746600d80c70ba7be", - "slotId": "right_side_plate" - } - ], - "_encyclopedia": "5e4ac41886f77406a511c9a8" - }, - "657eb1c4aebd1b6d254bf6d5": { - "_id": "657eb1c4aebd1b6d254bf6d5", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "9A91_tactical", - "_parent": "657eb2562ce80354b8259891", - "_items": [ - { - "_id": "657eb2562ce80354b8259891", - "_tpl": "644674a13d52156624001fbc", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "657eb2562ce80354b8259892", - "_tpl": "6450ec2e7da7133e5a09ca96", - "parentId": "657eb2562ce80354b8259891", - "slotId": "mod_magazine" - }, - { - "_id": "657eb2562ce80354b8259893", - "_tpl": "6450f21a3d52156624001fcf", - "parentId": "657eb2562ce80354b8259891", - "slotId": "mod_pistol_grip" - }, - { - "_id": "657eb2562ce80354b8259894", - "_tpl": "6451167ad4928d46d30be3fd", - "parentId": "657eb2562ce80354b8259891", - "slotId": "mod_stock_000" - }, - { - "_id": "657eb2562ce80354b8259895", - "_tpl": "6544d4187c5457729210d277", - "parentId": "657eb2562ce80354b8259891", - "slotId": "mod_scope" - }, - { - "_id": "657eb2562ce80354b8259896", - "_tpl": "645122f6d4928d46d30be3ff", - "parentId": "657eb2562ce80354b8259891", - "slotId": "mod_barrel" - }, - { - "_id": "657eb2562ce80354b8259897", - "_tpl": "64527a3a7da7133e5a09ca99", - "parentId": "657eb2562ce80354b8259896", - "slotId": "mod_muzzle" - }, - { - "_id": "657eb2562ce80354b8259898", - "_tpl": "57a3459f245977764a01f703", - "parentId": "657eb2562ce80354b8259897", - "slotId": "mod_mount" - }, - { - "_id": "657eb2562ce80354b8259899", - "_tpl": "646f6322f43d0c5d62063715", - "parentId": "657eb2562ce80354b8259898", - "slotId": "mod_tactical" - }, - { - "_id": "657eb2562ce80354b825989a", - "_tpl": "646f62fee779812413011ab7", - "parentId": "657eb2562ce80354b8259899", - "slotId": "mod_tactical" - }, - { - "_id": "657eb2562ce80354b825989b", - "_tpl": "644675573d52156624001fc9", - "parentId": "657eb2562ce80354b8259896", - "slotId": "mod_handguard" - } - ] - }, - "65765f39526e320fbe0357b1": { - "_id": "65765f39526e320fbe0357b1", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor 6B13 Assault Flora Standard", - "_parent": "6576ec1bfad2d1a4c00ca4b2", - "_items": [ - { - "_id": "6576ec1bfad2d1a4c00ca4b2", - "_tpl": "5c0e51be86f774598e797894" - }, - { - "_id": "6576ec1bfad2d1a4c00ca4b3", - "_tpl": "654a8b0b0337d53f9102c2ae", - "parentId": "6576ec1bfad2d1a4c00ca4b2", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576ec1bfad2d1a4c00ca4b4", - "_tpl": "654a8976f414fcea4004d78b", - "parentId": "6576ec1bfad2d1a4c00ca4b2", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576ec1bfad2d1a4c00ca4b5", - "_tpl": "654a8b3df414fcea4004d78f", - "parentId": "6576ec1bfad2d1a4c00ca4b2", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576ec1bfad2d1a4c00ca4b6", - "_tpl": "654a8b80f414fcea4004d797", - "parentId": "6576ec1bfad2d1a4c00ca4b2", - "slotId": "soft_armor_right" - }, - { - "_id": "6576ec1bfad2d1a4c00ca4b7", - "_tpl": "654a8ae00337d53f9102c2aa", - "parentId": "6576ec1bfad2d1a4c00ca4b2", - "slotId": "Collar" - }, - { - "_id": "6576ec1bfad2d1a4c00ca4b8", - "_tpl": "654a8bc5f414fcea4004d79b", - "parentId": "6576ec1bfad2d1a4c00ca4b2", - "slotId": "Groin" - }, - { - "_id": "6576ec1bfad2d1a4c00ca4b9", - "_tpl": "656f603f94b480b8a500c0d6", - "parentId": "6576ec1bfad2d1a4c00ca4b2", - "slotId": "Front_plate" - }, - { - "_id": "6576ec1bfad2d1a4c00ca4ba", - "_tpl": "656efd66034e8e01c407f35c", - "parentId": "6576ec1bfad2d1a4c00ca4b2", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5c0e51be86f774598e797894" - }, - "6571211af1074598bf0c02b4": { - "_id": "6571211af1074598bf0c02b4", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor 6B2 Flora Standard", - "_parent": "6576ec0406a990316201e7fb", - "_items": [ - { - "_id": "6576ec0406a990316201e7fb", - "_tpl": "5df8a2ca86f7740bfe6df777" - }, - { - "_id": "6576ec0406a990316201e7fc", - "_tpl": "656fd7c32668ef0402028fb9", - "parentId": "6576ec0406a990316201e7fb", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576ec0406a990316201e7fd", - "_tpl": "656fd89bf5a9631d4e042575", - "parentId": "6576ec0406a990316201e7fb", - "slotId": "Soft_armor_back" - } - ], - "_encyclopedia": "5df8a2ca86f7740bfe6df777" - }, - "657fa95ae9433140ad0bafad": { - "_id": "657fa95ae9433140ad0bafad", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Diamond Age Bastion Standart", - "_parent": "657fa95ae9433140ad0bafb1", - "_items": [ - { - "_id": "657fa95ae9433140ad0bafb1", - "_tpl": "5ea17ca01412a1425304d1c0" - }, - { - "_id": "657fa95ae9433140ad0bafb2", - "_tpl": "657f9a55c6679fefb3051e19", - "parentId": "657fa95ae9433140ad0bafb1", - "slotId": "Helmet_top" - }, - { - "_id": "657fa95ae9433140ad0bafb3", - "_tpl": "657f9a94ada5fadd1f07a589", - "parentId": "657fa95ae9433140ad0bafb1", - "slotId": "Helmet_back" - } - ], - "_encyclopedia": "5ea17ca01412a1425304d1c0" - }, - "657bc821aab96fccee08becc": { - "_id": "657bc821aab96fccee08becc", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Maska 1 Sha Killa Standard", - "_parent": "657bc821aab96fccee08bed2", - "_items": [ - { - "_id": "657bc821aab96fccee08bed2", - "_tpl": "5c0e874186f7745dc7616606" - }, - { - "_id": "657bc821aab96fccee08bed3", - "_tpl": "6571133d22996eaf11088200", - "parentId": "657bc821aab96fccee08bed2", - "slotId": "Helmet_top" - }, - { - "_id": "657bc821aab96fccee08bed4", - "_tpl": "6571138e818110db4600aa71", - "parentId": "657bc821aab96fccee08bed2", - "slotId": "Helmet_back" - }, - { - "_id": "657bc821aab96fccee08bed5", - "_tpl": "657112fa818110db4600aa6b", - "parentId": "657bc821aab96fccee08bed2", - "slotId": "Helmet_ears" - }, - { - "_id": "657bc821aab96fccee08bed6", - "_tpl": "5c0e842486f77443a74d2976", - "parentId": "657bc821aab96fccee08bed2", - "slotId": "mod_equipment" - } - ], - "_encyclopedia": "5c0e874186f7745dc7616606" - }, - "657bc54eb588f345450a6d56": { - "_id": "657bc54eb588f345450a6d56", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Shlemofon TSh 4M L Standart", - "_parent": "657bc54eb588f345450a6d5b", - "_items": [ - { - "_id": "657bc54eb588f345450a6d5b", - "_tpl": "5df8a58286f77412631087ed" - }, - { - "_id": "657bc54eb588f345450a6d5c", - "_tpl": "657ba096e57570b7f80a17fb", - "parentId": "657bc54eb588f345450a6d5b", - "slotId": "Helmet_top" - }, - { - "_id": "657bc54eb588f345450a6d5d", - "_tpl": "657ba145e57570b7f80a17ff", - "parentId": "657bc54eb588f345450a6d5b", - "slotId": "Helmet_back" - }, - { - "_id": "657bc54eb588f345450a6d5e", - "_tpl": "657ba18923918923cb0df568", - "parentId": "657bc54eb588f345450a6d5b", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5df8a58286f77412631087ed" - }, - "657fa87fc6679fefb3051e32": { - "_id": "657fa87fc6679fefb3051e32", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet ZSh 1 2M Black Standart", - "_parent": "657fa87fc6679fefb3051e37", - "_items": [ - { - "_id": "657fa87fc6679fefb3051e37", - "_tpl": "5aa7e4a4e5b5b000137b76f2" - }, - { - "_id": "657fa87fc6679fefb3051e38", - "_tpl": "657f925dada5fadd1f07a57a", - "parentId": "657fa87fc6679fefb3051e37", - "slotId": "Helmet_top" - }, - { - "_id": "657fa87fc6679fefb3051e39", - "_tpl": "657f92acada5fadd1f07a57e", - "parentId": "657fa87fc6679fefb3051e37", - "slotId": "Helmet_back" - }, - { - "_id": "657fa87fc6679fefb3051e3a", - "_tpl": "657f92e7f4c82973640b2354", - "parentId": "657fa87fc6679fefb3051e37", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5aa7e4a4e5b5b000137b76f2" - }, - "657eb1fa2ce80354b8259889": { - "_id": "657eb1fa2ce80354b8259889", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "VSK94_default", - "_parent": "657eb24cc98bee241a0cc619", - "_items": [ - { - "_id": "657eb24cc98bee241a0cc619", - "_tpl": "645e0c6b3b381ede770e1cc9", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "657eb24cc98bee241a0cc61a", - "_tpl": "6450ec2e7da7133e5a09ca96", - "parentId": "657eb24cc98bee241a0cc619", - "slotId": "mod_magazine" - }, - { - "_id": "657eb24cc98bee241a0cc61b", - "_tpl": "6452519e3d52156624001fd5", - "parentId": "657eb24cc98bee241a0cc619", - "slotId": "mod_stock" - }, - { - "_id": "657eb24cc98bee241a0cc61c", - "_tpl": "645123013d52156624001fd1", - "parentId": "657eb24cc98bee241a0cc619", - "slotId": "mod_barrel" - }, - { - "_id": "657eb24cc98bee241a0cc61d", - "_tpl": "64527a263d52156624001fd7", - "parentId": "657eb24cc98bee241a0cc61c", - "slotId": "mod_muzzle" - }, - { - "_id": "657eb24cc98bee241a0cc61e", - "_tpl": "6448f2f6d4928d46d30be3f6", - "parentId": "657eb24cc98bee241a0cc61c", - "slotId": "mod_handguard" - } - ], - "_encyclopedia": "645e0c6b3b381ede770e1cc9" - }, - "64c1510bda0f6d156000cc17": { - "_id": "64c1510bda0f6d156000cc17", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "AK-12_Default", - "_parent": "64f58e9a8a8ce309480cda24", - "_items": [ - { - "_id": "64f58e9a8a8ce309480cda24", - "_tpl": "6499849fc93611967b034949", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "64f58e9a8a8ce309480cda25", - "_tpl": "649ec107961514b22506b10c", - "parentId": "64f58e9a8a8ce309480cda24", - "slotId": "mod_gas_block" - }, - { - "_id": "64f58e9a8a8ce309480cda26", - "_tpl": "5beec8ea0db834001a6f9dbf", - "parentId": "64f58e9a8a8ce309480cda24", - "slotId": "mod_pistol_grip" - }, - { - "_id": "64f58e9a8a8ce309480cda27", - "_tpl": "649ec127c93611967b034957", - "parentId": "64f58e9a8a8ce309480cda24", - "slotId": "mod_handguard" - }, - { - "_id": "64f58e9a8a8ce309480cda28", - "_tpl": "5beecbb80db834001d2c465e", - "parentId": "64f58e9a8a8ce309480cda27", - "slotId": "mod_mount_001" - }, - { - "_id": "64f58e9a8a8ce309480cda29", - "_tpl": "649ec2af961514b22506b10f", - "parentId": "64f58e9a8a8ce309480cda24", - "slotId": "mod_muzzle" - }, - { - "_id": "64f58e9a8a8ce309480cda2a", - "_tpl": "649ec2f3961514b22506b111", - "parentId": "64f58e9a8a8ce309480cda24", - "slotId": "mod_reciever" - }, - { - "_id": "64f58e9a8a8ce309480cda2b", - "_tpl": "649ec2da59cbb3c813042dca", - "parentId": "64f58e9a8a8ce309480cda2a", - "slotId": "mod_sight_rear" - }, - { - "_id": "64f58e9a8a8ce309480cda2c", - "_tpl": "649ec2cec93611967b03495e", - "parentId": "64f58e9a8a8ce309480cda2b", - "slotId": "mod_sight_rear" - }, - { - "_id": "64f58e9a8a8ce309480cda2d", - "_tpl": "649ec30cb013f04a700e60fb", - "parentId": "64f58e9a8a8ce309480cda24", - "slotId": "mod_magazine" - }, - { - "_id": "64f58e9a8a8ce309480cda2e", - "_tpl": "649ec87d8007560a9001ab36", - "parentId": "64f58e9a8a8ce309480cda24", - "slotId": "mod_stock_001" - }, - { - "_id": "64f58e9a8a8ce309480cda2f", - "_tpl": "5beec8c20db834001d2c465c", - "parentId": "64f58e9a8a8ce309480cda2e", - "slotId": "mod_stock" - } - ], - "_encyclopedia": "6499849fc93611967b034949" - }, - "65766a7b86f11bca4106d3c3": { - "_id": "65766a7b86f11bca4106d3c3", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor BNTI Zhuk 6a Standard", - "_parent": "6576ea1dab23f2038109aa07", - "_items": [ - { - "_id": "6576ea1dab23f2038109aa07", - "_tpl": "5c0e625a86f7742d77340f62" - }, - { - "_id": "6576ea1dab23f2038109aa08", - "_tpl": "65764275d8537eb26a0355e9", - "parentId": "6576ea1dab23f2038109aa07", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576ea1dab23f2038109aa09", - "_tpl": "657642b0e6d5dd75f40688a5", - "parentId": "6576ea1dab23f2038109aa07", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576ea1dab23f2038109aa0a", - "_tpl": "6576434820cc24d17102b148", - "parentId": "6576ea1dab23f2038109aa07", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576ea1dab23f2038109aa0b", - "_tpl": "657643732bc38ef78e076477", - "parentId": "6576ea1dab23f2038109aa07", - "slotId": "soft_armor_right" - }, - { - "_id": "6576ea1dab23f2038109aa0c", - "_tpl": "657643a220cc24d17102b14c", - "parentId": "6576ea1dab23f2038109aa07", - "slotId": "Collar" - }, - { - "_id": "6576ea1dab23f2038109aa0d", - "_tpl": "656f63c027aed95beb08f62c", - "parentId": "6576ea1dab23f2038109aa07", - "slotId": "Front_plate" - }, - { - "_id": "6576ea1dab23f2038109aa0e", - "_tpl": "656fafe3498d1b7e3e071da4", - "parentId": "6576ea1dab23f2038109aa07", - "slotId": "Back_plate" - }, - { - "_id": "6576ea1dab23f2038109aa0f", - "_tpl": "64afd81707e2cf40e903a316", - "parentId": "6576ea1dab23f2038109aa07", - "slotId": "Left_side_plate" - }, - { - "_id": "6576ea1dab23f2038109aa10", - "_tpl": "64afd81707e2cf40e903a316", - "parentId": "6576ea1dab23f2038109aa07", - "slotId": "Right_side_plate" - } - ], - "_encyclopedia": "5c0e625a86f7742d77340f62" - }, - "65765d8586f11bca4106d323": { - "_id": "65765d8586f11bca4106d323", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor DRD Standard", - "_parent": "6576eb7646600d80c70ba7f1", - "_items": [ - { - "_id": "6576eb7646600d80c70ba7f1", - "_tpl": "62a09d79de7ac81993580530" - }, - { - "_id": "6576eb7646600d80c70ba7f2", - "_tpl": "6572e048371fccfbf909d5d8", - "parentId": "6576eb7646600d80c70ba7f1", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576eb7646600d80c70ba7f3", - "_tpl": "6572e059371fccfbf909d5dc", - "parentId": "6576eb7646600d80c70ba7f1", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576eb7646600d80c70ba7f4", - "_tpl": "6572e06219b4b511af012f89", - "parentId": "6576eb7646600d80c70ba7f1", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576eb7646600d80c70ba7f5", - "_tpl": "6572e06819b4b511af012f8d", - "parentId": "6576eb7646600d80c70ba7f1", - "slotId": "soft_armor_right" - } - ], - "_encyclopedia": "62a09d79de7ac81993580530" - }, - "657664ec526e320fbe0357fe": { - "_id": "657664ec526e320fbe0357fe", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor Hexatac HPC Standard", - "_parent": "6576eb68fad2d1a4c00ca49a", - "_items": [ - { - "_id": "6576eb68fad2d1a4c00ca49a", - "_tpl": "63737f448b28897f2802b874" - }, - { - "_id": "6576eb68fad2d1a4c00ca49b", - "_tpl": "656fae5f7c2d57afe200c0d7", - "parentId": "6576eb68fad2d1a4c00ca49a", - "slotId": "Front_plate" - }, - { - "_id": "6576eb68fad2d1a4c00ca49c", - "_tpl": "656fae5f7c2d57afe200c0d7", - "parentId": "6576eb68fad2d1a4c00ca49a", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "63737f448b28897f2802b874" - }, - "65766910303700411c0242da": { - "_id": "65766910303700411c0242da", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor IOTV Gen4 Full Protection Standard", - "_parent": "6576eb1cab23f2038109aa27", - "_items": [ - { - "_id": "6576eb1cab23f2038109aa27", - "_tpl": "5b44cd8b86f774503d30cba2" - }, - { - "_id": "6576eb1cab23f2038109aa28", - "_tpl": "6575c2adefc786cd9101a5d9", - "parentId": "6576eb1cab23f2038109aa27", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576eb1cab23f2038109aa29", - "_tpl": "6575c2be52b7f8c76a05ee25", - "parentId": "6576eb1cab23f2038109aa27", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576eb1cab23f2038109aa2a", - "_tpl": "6575c2cd52b7f8c76a05ee29", - "parentId": "6576eb1cab23f2038109aa27", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576eb1cab23f2038109aa2b", - "_tpl": "6575c2d852b7f8c76a05ee2d", - "parentId": "6576eb1cab23f2038109aa27", - "slotId": "soft_armor_right" - }, - { - "_id": "6576eb1cab23f2038109aa2c", - "_tpl": "6575c2e4efc786cd9101a5dd", - "parentId": "6576eb1cab23f2038109aa27", - "slotId": "Collar" - }, - { - "_id": "6576eb1cab23f2038109aa2d", - "_tpl": "6575c2f7efc786cd9101a5e1", - "parentId": "6576eb1cab23f2038109aa27", - "slotId": "Shoulder_l" - }, - { - "_id": "6576eb1cab23f2038109aa2e", - "_tpl": "6575c30352b7f8c76a05ee31", - "parentId": "6576eb1cab23f2038109aa27", - "slotId": "Shoulder_r" - }, - { - "_id": "6576eb1cab23f2038109aa2f", - "_tpl": "6575c31b52b7f8c76a05ee35", - "parentId": "6576eb1cab23f2038109aa27", - "slotId": "Groin" - }, - { - "_id": "6576eb1cab23f2038109aa30", - "_tpl": "6575c326c6700bd6b40e8a80", - "parentId": "6576eb1cab23f2038109aa27", - "slotId": "Groin_back" - }, - { - "_id": "6576eb1cab23f2038109aa31", - "_tpl": "656fa8d700d62bcd2e024084", - "parentId": "6576eb1cab23f2038109aa27", - "slotId": "Front_plate" - }, - { - "_id": "6576eb1cab23f2038109aa32", - "_tpl": "656fa8d700d62bcd2e024084", - "parentId": "6576eb1cab23f2038109aa27", - "slotId": "Back_plate" - }, - { - "_id": "6576eb1cab23f2038109aa33", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "6576eb1cab23f2038109aa27", - "slotId": "Left_side_plate" - }, - { - "_id": "6576eb1cab23f2038109aa34", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "6576eb1cab23f2038109aa27", - "slotId": "Right_side_plate" - } - ], - "_encyclopedia": "5b44cd8b86f774503d30cba2" - }, - "657121c5f1074598bf0c02c8": { - "_id": "657121c5f1074598bf0c02c8", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor MF UNTAR Standard", - "_parent": "6576eabcab23f2038109aa16", - "_items": [ - { - "_id": "6576eabcab23f2038109aa16", - "_tpl": "5ab8e4ed86f7742d8e50c7fa" - }, - { - "_id": "6576eabcab23f2038109aa17", - "_tpl": "657044e971369562b300ce9b", - "parentId": "6576eabcab23f2038109aa16", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576eabcab23f2038109aa18", - "_tpl": "657045741bd9beedc40b7299", - "parentId": "6576eabcab23f2038109aa16", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576eabcab23f2038109aa19", - "_tpl": "657045b97e80617cee095bda", - "parentId": "6576eabcab23f2038109aa16", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576eabcab23f2038109aa1a", - "_tpl": "6570460471369562b300ce9f", - "parentId": "6576eabcab23f2038109aa16", - "slotId": "soft_armor_right" - } - ], - "_encyclopedia": "5ab8e4ed86f7742d8e50c7fa" - }, - "657fa92de65c0122b70ffdb9": { - "_id": "657fa92de65c0122b70ffdb9", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Crye Precision AirFrame Standart", - "_parent": "657fa92de65c0122b70ffdbd", - "_items": [ - { - "_id": "657fa92de65c0122b70ffdbd", - "_tpl": "5c17a7ed2e2216152142459c" - }, - { - "_id": "657fa92de65c0122b70ffdbe", - "_tpl": "657f9897f4c82973640b235e", - "parentId": "657fa92de65c0122b70ffdbd", - "slotId": "Helmet_top" - }, - { - "_id": "657fa92de65c0122b70ffdbf", - "_tpl": "657f98fbada5fadd1f07a585", - "parentId": "657fa92de65c0122b70ffdbd", - "slotId": "Helmet_back" - } - ], - "_encyclopedia": "5c17a7ed2e2216152142459c" - }, - "657bc706b588f345450a6d6c": { - "_id": "657bc706b588f345450a6d6c", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Fort Kiver M Standart", - "_parent": "657bc706b588f345450a6d71", - "_items": [ - { - "_id": "657bc706b588f345450a6d71", - "_tpl": "5645bc214bdc2d363b8b4571" - }, - { - "_id": "657bc706b588f345450a6d72", - "_tpl": "657bae18b7e9ca9a02045c0a", - "parentId": "657bc706b588f345450a6d71", - "slotId": "Helmet_top" - }, - { - "_id": "657bc706b588f345450a6d73", - "_tpl": "657baeaacfcf63c951052db3", - "parentId": "657bc706b588f345450a6d71", - "slotId": "Helmet_back" - }, - { - "_id": "657bc706b588f345450a6d74", - "_tpl": "657baecbc6f689d3a205b863", - "parentId": "657bc706b588f345450a6d71", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5645bc214bdc2d363b8b4571" - }, - "657fa7f1e9433140ad0baf9d": { - "_id": "657fa7f1e9433140ad0baf9d", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Ops Core Fast MT Sand Standart", - "_parent": "657fa7f1e9433140ad0bafa1", - "_items": [ - { - "_id": "657fa7f1e9433140ad0bafa1", - "_tpl": "5ac8d6885acfc400180ae7b0" - }, - { - "_id": "657fa7f1e9433140ad0bafa2", - "_tpl": "657f8ec5f4c82973640b234c", - "parentId": "657fa7f1e9433140ad0bafa1", - "slotId": "Helmet_top" - }, - { - "_id": "657fa7f1e9433140ad0bafa3", - "_tpl": "657f8f10f4c82973640b2350", - "parentId": "657fa7f1e9433140ad0bafa1", - "slotId": "Helmet_back" - } - ], - "_encyclopedia": "5ac8d6885acfc400180ae7b0" - }, - "657120b36fe59548840cb542": { - "_id": "657120b36fe59548840cb542", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet ULACH Black Standard", - "_parent": "6576e40dfad2d1a4c00ca44e", - "_items": [ - { - "_id": "6576e40dfad2d1a4c00ca44e", - "_tpl": "5b40e1525acfc4771e1c6611" - }, - { - "_id": "6576e40dfad2d1a4c00ca44f", - "_tpl": "657112234269e9a568089eac", - "parentId": "6576e40dfad2d1a4c00ca44e", - "slotId": "Helmet_top" - }, - { - "_id": "6576e40dfad2d1a4c00ca450", - "_tpl": "657112a4818110db4600aa66", - "parentId": "6576e40dfad2d1a4c00ca44e", - "slotId": "Helmet_back" - }, - { - "_id": "6576e40dfad2d1a4c00ca451", - "_tpl": "657112ce22996eaf110881fb", - "parentId": "6576e40dfad2d1a4c00ca44e", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5b40e1525acfc4771e1c6611" - }, - "65711f2bc50461e8750d1f4f": { - "_id": "65711f2bc50461e8750d1f4f", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Untar Standard", - "_parent": "6576e388ab23f2038109a9c7", - "_items": [ - { - "_id": "6576e388ab23f2038109a9c7", - "_tpl": "5aa7d03ae5b5b00016327db5" - }, - { - "_id": "6576e388ab23f2038109a9c8", - "_tpl": "654a90aff4f81a421b0a7c86", - "parentId": "6576e388ab23f2038109a9c7", - "slotId": "helmet_top" - }, - { - "_id": "6576e388ab23f2038109a9c9", - "_tpl": "654a91068e1ce698150fd1e2", - "parentId": "6576e388ab23f2038109a9c7", - "slotId": "helmet_back" - }, - { - "_id": "6576e388ab23f2038109a9ca", - "_tpl": "654a9189bcc67a392b056c79", - "parentId": "6576e388ab23f2038109a9c7", - "slotId": "helmet_ears" - } - ], - "_encyclopedia": "5aa7d03ae5b5b00016327db5" - }, - "657bc88ebbd440df880b2dfe": { - "_id": "657bc88ebbd440df880b2dfe", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Altin Standart", - "_parent": "657bc88ebbd440df880b2e03", - "_items": [ - { - "_id": "657bc88ebbd440df880b2e03", - "_tpl": "5aa7e276e5b5b000171d0647" - }, - { - "_id": "657bc88ebbd440df880b2e04", - "_tpl": "657bc06daab96fccee08be9b", - "parentId": "657bc88ebbd440df880b2e03", - "slotId": "Helmet_top" - }, - { - "_id": "657bc88ebbd440df880b2e05", - "_tpl": "657bc0d8a1c61ee0c303632f", - "parentId": "657bc88ebbd440df880b2e03", - "slotId": "Helmet_back" - }, - { - "_id": "657bc88ebbd440df880b2e06", - "_tpl": "657bc107aab96fccee08be9f", - "parentId": "657bc88ebbd440df880b2e03", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5aa7e276e5b5b000171d0647" - }, - "657120376d197c216005b33e": { - "_id": "657120376d197c216005b33e", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet EXFIL Coyote Standard", - "_parent": "6576e3af424f2c87d30c75b2", - "_items": [ - { - "_id": "6576e3af424f2c87d30c75b2", - "_tpl": "5e01ef6886f77445f643baa4" - }, - { - "_id": "6576e3af424f2c87d30c75b3", - "_tpl": "6551fec55d0cf82e51014288", - "parentId": "6576e3af424f2c87d30c75b2", - "slotId": "helmet_top" - }, - { - "_id": "6576e3af424f2c87d30c75b4", - "_tpl": "655200ba0ef76cf7be09d528", - "parentId": "6576e3af424f2c87d30c75b2", - "slotId": "helmet_back" - } - ], - "_encyclopedia": "5e01ef6886f77445f643baa4" - }, - "657127b7f1074598bf0c02f2": { - "_id": "657127b7f1074598bf0c02f2", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor HighCom Trooper Standard", - "_parent": "6576eb55424f2c87d30c7619", - "_items": [ - { - "_id": "6576eb55424f2c87d30c7619", - "_tpl": "5c0e655586f774045612eeb2" - }, - { - "_id": "6576eb55424f2c87d30c761a", - "_tpl": "6570e025615f54368b04fcb0", - "parentId": "6576eb55424f2c87d30c7619", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576eb55424f2c87d30c761b", - "_tpl": "6570e0610b57c03ec90b96ef", - "parentId": "6576eb55424f2c87d30c7619", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576eb55424f2c87d30c761c", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "6576eb55424f2c87d30c7619", - "slotId": "Front_plate" - }, - { - "_id": "6576eb55424f2c87d30c761d", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "6576eb55424f2c87d30c7619", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5c0e655586f774045612eeb2" - }, - "65766278526e320fbe0357d4": { - "_id": "65766278526e320fbe0357d4", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor Korund VM Standard", - "_parent": "657b348439de0339ee0d3fcf", - "_items": [ - { - "_id": "657b348439de0339ee0d3fcf", - "_tpl": "5f5f41476bdad616ad46d631" - }, - { - "_id": "657b348439de0339ee0d3fd0", - "_tpl": "65731b46cea9255e2102360a", - "parentId": "657b348439de0339ee0d3fcf", - "slotId": "Soft_armor_front" - }, - { - "_id": "657b348439de0339ee0d3fd1", - "_tpl": "65731b4fcea9255e2102360e", - "parentId": "657b348439de0339ee0d3fcf", - "slotId": "Soft_armor_back" - }, - { - "_id": "657b348439de0339ee0d3fd2", - "_tpl": "65731b576e709cddd001ec3f", - "parentId": "657b348439de0339ee0d3fcf", - "slotId": "Soft_armor_left" - }, - { - "_id": "657b348439de0339ee0d3fd3", - "_tpl": "65731b60ff6dc44a7d068c4a", - "parentId": "657b348439de0339ee0d3fcf", - "slotId": "soft_armor_right" - }, - { - "_id": "657b348439de0339ee0d3fd4", - "_tpl": "65731b666e709cddd001ec43", - "parentId": "657b348439de0339ee0d3fcf", - "slotId": "Collar" - }, - { - "_id": "657b348439de0339ee0d3fd5", - "_tpl": "65731b716e709cddd001ec47", - "parentId": "657b348439de0339ee0d3fcf", - "slotId": "Groin" - }, - { - "_id": "657b348439de0339ee0d3fd6", - "_tpl": "65731b6b6042b0f210020ef6", - "parentId": "657b348439de0339ee0d3fcf", - "slotId": "Groin_back" - }, - { - "_id": "657b348439de0339ee0d3fd7", - "_tpl": "656f664200d62bcd2e024077", - "parentId": "657b348439de0339ee0d3fcf", - "slotId": "Front_plate" - }, - { - "_id": "657b348439de0339ee0d3fd8", - "_tpl": "654a4f8bc721968a4404ef18", - "parentId": "657b348439de0339ee0d3fcf", - "slotId": "Left_side_plate" - }, - { - "_id": "657b348439de0339ee0d3fd9", - "_tpl": "654a4f8bc721968a4404ef18", - "parentId": "657b348439de0339ee0d3fcf", - "slotId": "Right_side_plate" - }, - { - "_id": "657b348439de0339ee0d3fda", - "_tpl": "657b2797c3dbcb01d60c35ea", - "parentId": "657b348439de0339ee0d3fcf", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5f5f41476bdad616ad46d631" - }, - "657bc6ceaab96fccee08beb2": { - "_id": "657bc6ceaab96fccee08beb2", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Ratnik BSh 6b47 Flora digital Standart", - "_parent": "657bc6ceaab96fccee08beb7", - "_items": [ - { - "_id": "657bc6ceaab96fccee08beb7", - "_tpl": "5aa7cfc0e5b5b00015693143" - }, - { - "_id": "657bc6ceaab96fccee08beb8", - "_tpl": "657baaf0b7e9ca9a02045c02", - "parentId": "657bc6ceaab96fccee08beb7", - "slotId": "Helmet_top" - }, - { - "_id": "657bc6ceaab96fccee08beb9", - "_tpl": "657bab6ec6f689d3a205b85f", - "parentId": "657bc6ceaab96fccee08beb7", - "slotId": "Helmet_back" - }, - { - "_id": "657bc6ceaab96fccee08beba", - "_tpl": "657babc6f58ba5a6250107a2", - "parentId": "657bc6ceaab96fccee08beb7", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "5aa7cfc0e5b5b00015693143" - }, - "6571960bacb85662e7024c23": { - "_id": "6571960bacb85662e7024c23", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest Ars Arma A18 Skanda Standard", - "_parent": "6576e5ce424f2c87d30c75d1", - "_items": [ - { - "_id": "6576e5ce424f2c87d30c75d1", - "_tpl": "5d5d87f786f77427997cfaef" - }, - { - "_id": "6576e5ce424f2c87d30c75d2", - "_tpl": "6570e5100b57c03ec90b970a", - "parentId": "6576e5ce424f2c87d30c75d1", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e5ce424f2c87d30c75d3", - "_tpl": "6570e479a6560e4ee50c2b02", - "parentId": "6576e5ce424f2c87d30c75d1", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e5ce424f2c87d30c75d4", - "_tpl": "6570e5674cc0d2ab1e05edbb", - "parentId": "6576e5ce424f2c87d30c75d1", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e5ce424f2c87d30c75d5", - "_tpl": "6570e59b0b57c03ec90b970e", - "parentId": "6576e5ce424f2c87d30c75d1", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e5ce424f2c87d30c75d6", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "6576e5ce424f2c87d30c75d1", - "slotId": "Front_plate" - }, - { - "_id": "6576e5ce424f2c87d30c75d7", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "6576e5ce424f2c87d30c75d1", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5d5d87f786f77427997cfaef" - }, - "657662c8234b9f6e050a42b2": { - "_id": "657662c8234b9f6e050a42b2", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest Bagarii Standard", - "_parent": "657b34a2f01824c5880be6f8", - "_items": [ - { - "_id": "657b34a2f01824c5880be6f8", - "_tpl": "628d0618d1ba6e4fa07ce5a4" - }, - { - "_id": "657b34a2f01824c5880be6f9", - "_tpl": "657322988c1cc6dcd9098b2d", - "parentId": "657b34a2f01824c5880be6f8", - "slotId": "Soft_armor_front" - }, - { - "_id": "657b34a2f01824c5880be6fa", - "_tpl": "657322a4cea9255e21023651", - "parentId": "657b34a2f01824c5880be6f8", - "slotId": "Soft_armor_back" - }, - { - "_id": "657b34a2f01824c5880be6fb", - "_tpl": "657322acd9d89ff7ac0d961b", - "parentId": "657b34a2f01824c5880be6f8", - "slotId": "Soft_armor_left" - }, - { - "_id": "657b34a2f01824c5880be6fc", - "_tpl": "657322b7d9d89ff7ac0d961f", - "parentId": "657b34a2f01824c5880be6f8", - "slotId": "soft_armor_right" - }, - { - "_id": "657b34a2f01824c5880be6fd", - "_tpl": "656f664200d62bcd2e024077", - "parentId": "657b34a2f01824c5880be6f8", - "slotId": "Front_plate" - }, - { - "_id": "657b34a2f01824c5880be6fe", - "_tpl": "657b2797c3dbcb01d60c35ea", - "parentId": "657b34a2f01824c5880be6f8", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "628d0618d1ba6e4fa07ce5a4" - }, - "657665e2303700411c0242b2": { - "_id": "657665e2303700411c0242b2", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor 6B13 M Killa Standard", - "_parent": "6576e928ab23f2038109a9ed", - "_items": [ - { - "_id": "6576e928ab23f2038109a9ed", - "_tpl": "5c0e541586f7747fa54205c9" - }, - { - "_id": "6576e928ab23f2038109a9ee", - "_tpl": "6575ea3060703324250610da", - "parentId": "6576e928ab23f2038109a9ed", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e928ab23f2038109a9ef", - "_tpl": "6575ea4cf6a13a7b7100adc4", - "parentId": "6576e928ab23f2038109a9ed", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e928ab23f2038109a9f0", - "_tpl": "6575ea5cf6a13a7b7100adc8", - "parentId": "6576e928ab23f2038109a9ed", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e928ab23f2038109a9f1", - "_tpl": "6575ea6760703324250610de", - "parentId": "6576e928ab23f2038109a9ed", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e928ab23f2038109a9f2", - "_tpl": "6575ea719c7cad336508e418", - "parentId": "6576e928ab23f2038109a9ed", - "slotId": "Collar" - }, - { - "_id": "6576e928ab23f2038109a9f3", - "_tpl": "6575ea7c60703324250610e2", - "parentId": "6576e928ab23f2038109a9ed", - "slotId": "Groin" - }, - { - "_id": "6576e928ab23f2038109a9f4", - "_tpl": "656f611f94b480b8a500c0db", - "parentId": "6576e928ab23f2038109a9ed", - "slotId": "Front_plate" - }, - { - "_id": "6576e928ab23f2038109a9f5", - "_tpl": "656efaf54772930db4031ff5", - "parentId": "6576e928ab23f2038109a9ed", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5c0e541586f7747fa54205c9" - }, - "65766b46303700411c0242f8": { - "_id": "65766b46303700411c0242f8", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor NFM THOR Integrated Carrier Standard", - "_parent": "6576ea8e46600d80c70ba7da", - "_items": [ - { - "_id": "6576ea8e46600d80c70ba7da", - "_tpl": "60a283193cb70855c43a381d" - }, - { - "_id": "6576ea8e46600d80c70ba7db", - "_tpl": "6575d561b15fef3dd4051670", - "parentId": "6576ea8e46600d80c70ba7da", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576ea8e46600d80c70ba7dc", - "_tpl": "6575d56b16c2762fba005818", - "parentId": "6576ea8e46600d80c70ba7da", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576ea8e46600d80c70ba7dd", - "_tpl": "6575d57a16c2762fba00581c", - "parentId": "6576ea8e46600d80c70ba7da", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576ea8e46600d80c70ba7de", - "_tpl": "6575d589b15fef3dd4051674", - "parentId": "6576ea8e46600d80c70ba7da", - "slotId": "soft_armor_right" - }, - { - "_id": "6576ea8e46600d80c70ba7df", - "_tpl": "6575d598b15fef3dd4051678", - "parentId": "6576ea8e46600d80c70ba7da", - "slotId": "Collar" - }, - { - "_id": "6576ea8e46600d80c70ba7e0", - "_tpl": "6575d5b316c2762fba005824", - "parentId": "6576ea8e46600d80c70ba7da", - "slotId": "Shoulder_l" - }, - { - "_id": "6576ea8e46600d80c70ba7e1", - "_tpl": "6575d5bd16c2762fba005828", - "parentId": "6576ea8e46600d80c70ba7da", - "slotId": "Shoulder_r" - }, - { - "_id": "6576ea8e46600d80c70ba7e2", - "_tpl": "6575d5a616c2762fba005820", - "parentId": "6576ea8e46600d80c70ba7da", - "slotId": "Groin" - }, - { - "_id": "6576ea8e46600d80c70ba7e3", - "_tpl": "656fa61e94b480b8a500c0e8", - "parentId": "6576ea8e46600d80c70ba7da", - "slotId": "Front_plate" - }, - { - "_id": "6576ea8e46600d80c70ba7e4", - "_tpl": "656fa61e94b480b8a500c0e8", - "parentId": "6576ea8e46600d80c70ba7da", - "slotId": "Back_plate" - }, - { - "_id": "6576ea8e46600d80c70ba7e5", - "_tpl": "64afdb577bb3bfe8fe03fd1d", - "parentId": "6576ea8e46600d80c70ba7da", - "slotId": "Left_side_plate" - }, - { - "_id": "6576ea8e46600d80c70ba7e6", - "_tpl": "64afdb577bb3bfe8fe03fd1d", - "parentId": "6576ea8e46600d80c70ba7da", - "slotId": "Right_side_plate" - } - ], - "_encyclopedia": "60a283193cb70855c43a381d" - }, - "657fa7c0e65c0122b70ffdb0": { - "_id": "657fa7c0e65c0122b70ffdb0", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Ops Core Fast MT Black Standart", - "_parent": "657fa7c0e65c0122b70ffdb4", - "_items": [ - { - "_id": "657fa7c0e65c0122b70ffdb4", - "_tpl": "5a154d5cfcdbcb001a3b00da" - }, - { - "_id": "657fa7c0e65c0122b70ffdb5", - "_tpl": "657f8ec5f4c82973640b234c", - "parentId": "657fa7c0e65c0122b70ffdb4", - "slotId": "Helmet_top" - }, - { - "_id": "657fa7c0e65c0122b70ffdb6", - "_tpl": "657f8f10f4c82973640b2350", - "parentId": "657fa7c0e65c0122b70ffdb4", - "slotId": "Helmet_back" - } - ], - "_encyclopedia": "5a154d5cfcdbcb001a3b00da" - }, - "65766527303700411c0242a6": { - "_id": "65766527303700411c0242a6", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest 5.11 Tactical TacTec Standard", - "_parent": "6576e7e2424f2c87d30c75df", - "_items": [ - { - "_id": "6576e7e2424f2c87d30c75df", - "_tpl": "5b44cad286f77402a54ae7e5" - }, - { - "_id": "6576e7e2424f2c87d30c75e0", - "_tpl": "6575bc88c6700bd6b40e8a57", - "parentId": "6576e7e2424f2c87d30c75df", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e7e2424f2c87d30c75e1", - "_tpl": "6575bca0dc9932aed601c5d7", - "parentId": "6576e7e2424f2c87d30c75df", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e7e2424f2c87d30c75e2", - "_tpl": "656fae5f7c2d57afe200c0d7", - "parentId": "6576e7e2424f2c87d30c75df", - "slotId": "Front_plate" - }, - { - "_id": "6576e7e2424f2c87d30c75e3", - "_tpl": "656fae5f7c2d57afe200c0d7", - "parentId": "6576e7e2424f2c87d30c75df", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5b44cad286f77402a54ae7e5" - }, - "6576600186f11bca4106d331": { - "_id": "6576600186f11bca4106d331", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest 6B3TM 01 Standard", - "_parent": "6576e7cc46600d80c70ba7c7", - "_items": [ - { - "_id": "6576e7cc46600d80c70ba7c7", - "_tpl": "5d5d646386f7742797261fd9" - }, - { - "_id": "6576e7cc46600d80c70ba7c8", - "_tpl": "65764e1e2bc38ef78e076489", - "parentId": "6576e7cc46600d80c70ba7c7", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e7cc46600d80c70ba7c9", - "_tpl": "65764fae2bc38ef78e07648d", - "parentId": "6576e7cc46600d80c70ba7c7", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e7cc46600d80c70ba7ca", - "_tpl": "6576504b526e320fbe035783", - "parentId": "6576e7cc46600d80c70ba7c7", - "slotId": "Groin" - }, - { - "_id": "6576e7cc46600d80c70ba7cb", - "_tpl": "6576500f526e320fbe03577f", - "parentId": "6576e7cc46600d80c70ba7c7", - "slotId": "Groin_back" - } - ], - "_encyclopedia": "5d5d646386f7742797261fd9" - }, - "65765cb6b7ea14f3b70da689": { - "_id": "65765cb6b7ea14f3b70da689", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor 6B23 1 Flora digital Standard", - "_parent": "6576ebf5ab23f2038109aa6f", - "_items": [ - { - "_id": "6576ebf5ab23f2038109aa6f", - "_tpl": "5c0e5bab86f77461f55ed1f3" - }, - { - "_id": "6576ebf5ab23f2038109aa70", - "_tpl": "6571b27a6d84a2b8b6007f92", - "parentId": "6576ebf5ab23f2038109aa6f", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576ebf5ab23f2038109aa71", - "_tpl": "6571baa74cb80d995d0a1490", - "parentId": "6576ebf5ab23f2038109aa6f", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576ebf5ab23f2038109aa72", - "_tpl": "6571baac6d84a2b8b6007fa3", - "parentId": "6576ebf5ab23f2038109aa6f", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576ebf5ab23f2038109aa73", - "_tpl": "6571bab0f41985531a038091", - "parentId": "6576ebf5ab23f2038109aa6f", - "slotId": "soft_armor_right" - }, - { - "_id": "6576ebf5ab23f2038109aa74", - "_tpl": "6571babb4076795e5e07383f", - "parentId": "6576ebf5ab23f2038109aa6f", - "slotId": "Collar" - }, - { - "_id": "6576ebf5ab23f2038109aa75", - "_tpl": "6571bac34076795e5e073843", - "parentId": "6576ebf5ab23f2038109aa6f", - "slotId": "Groin" - }, - { - "_id": "6576ebf5ab23f2038109aa76", - "_tpl": "6571babf4cb80d995d0a1494", - "parentId": "6576ebf5ab23f2038109aa6f", - "slotId": "Groin_back" - }, - { - "_id": "6576ebf5ab23f2038109aa77", - "_tpl": "654a4dea7c17dec2f50cc86a", - "parentId": "6576ebf5ab23f2038109aa6f", - "slotId": "Front_plate" - } - ], - "_encyclopedia": "5c0e5bab86f77461f55ed1f3" - }, - "65765896526e320fbe035788": { - "_id": "65765896526e320fbe035788", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor PACA Rivals Edition Standard", - "_parent": "6576ea74fad2d1a4c00ca493", - "_items": [ - { - "_id": "6576ea74fad2d1a4c00ca493", - "_tpl": "607f20859ee58b18e41ecd90" - }, - { - "_id": "6576ea74fad2d1a4c00ca494", - "_tpl": "65703d866584602f7d057a8a", - "parentId": "6576ea74fad2d1a4c00ca493", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576ea74fad2d1a4c00ca495", - "_tpl": "65703fa06584602f7d057a8e", - "parentId": "6576ea74fad2d1a4c00ca493", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576ea74fad2d1a4c00ca496", - "_tpl": "65703fe46a912c8b5c03468b", - "parentId": "6576ea74fad2d1a4c00ca493", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576ea74fad2d1a4c00ca497", - "_tpl": "657040374e67e8ec7a0d261c", - "parentId": "6576ea74fad2d1a4c00ca493", - "slotId": "soft_armor_right" - } - ], - "_encyclopedia": "607f20859ee58b18e41ecd90" - }, - "6571200b6fe59548840cb53a": { - "_id": "6571200b6fe59548840cb53a", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet EXFIL Black Standard", - "_parent": "6576e39946600d80c70ba7a5", - "_items": [ - { - "_id": "6576e39946600d80c70ba7a5", - "_tpl": "5e00c1ad86f774747333222c" - }, - { - "_id": "6576e39946600d80c70ba7a6", - "_tpl": "6551fec55d0cf82e51014288", - "parentId": "6576e39946600d80c70ba7a5", - "slotId": "helmet_top" - }, - { - "_id": "6576e39946600d80c70ba7a7", - "_tpl": "655200ba0ef76cf7be09d528", - "parentId": "6576e39946600d80c70ba7a5", - "slotId": "helmet_back" - } - ], - "_encyclopedia": "5e00c1ad86f774747333222c" - }, - "64c151f83319a1cf380c4df7": { - "_id": "64c151f83319a1cf380c4df7", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "SVT-40_Default", - "_parent": "64c39021e4368919ca5ad9e8", - "_items": [ - { - "_id": "64c39021e4368919ca5ad9e8", - "_tpl": "643ea5b23db6f9f57107d9fd", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "64c39021e4368919ca5ad9e9", - "_tpl": "6410745d5dd49d77bd078485", - "parentId": "64c39021e4368919ca5ad9e8", - "slotId": "mod_stock" - }, - { - "_id": "64c39021e4368919ca5ad9ea", - "_tpl": "6410758c857473525b08bb77", - "parentId": "64c39021e4368919ca5ad9e8", - "slotId": "mod_barrel" - }, - { - "_id": "64c39021e4368919ca5ad9eb", - "_tpl": "64119d1f2c6d6f921a0929f8", - "parentId": "64c39021e4368919ca5ad9ea", - "slotId": "mod_muzzle" - }, - { - "_id": "64c39021e4368919ca5ad9ec", - "_tpl": "64119d672c6d6f921a0929fb", - "parentId": "64c39021e4368919ca5ad9eb", - "slotId": "mod_sight_front" - }, - { - "_id": "64c39021e4368919ca5ad9ed", - "_tpl": "64119d90dcf48d656f0aa275", - "parentId": "64c39021e4368919ca5ad9ea", - "slotId": "mod_sight_rear" - }, - { - "_id": "64c39021e4368919ca5ad9ee", - "_tpl": "64119cdbdcf48d656f0aa272", - "parentId": "64c39021e4368919ca5ad9e8", - "slotId": "mod_reciever" - }, - { - "_id": "64c39021e4368919ca5ad9ef", - "_tpl": "6422e1ea3c0f06190302161a", - "parentId": "64c39021e4368919ca5ad9e8", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "643ea5b23db6f9f57107d9fd" - }, - "6576676d86f11bca4106d37b": { - "_id": "6576676d86f11bca4106d37b", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor 5.11 Tactical Hexgrid Plate Carrier Standard", - "_parent": "6576ec5406a990316201e7ff", - "_items": [ - { - "_id": "6576ec5406a990316201e7ff", - "_tpl": "5fd4c474dd870108a754b241" - }, - { - "_id": "6576ec5406a990316201e800", - "_tpl": "656faf0ca0dce000a2020f77", - "parentId": "6576ec5406a990316201e7ff", - "slotId": "front_plate" - }, - { - "_id": "6576ec5406a990316201e801", - "_tpl": "656faf0ca0dce000a2020f77", - "parentId": "6576ec5406a990316201e7ff", - "slotId": "back_plate" - } - ], - "_encyclopedia": "5fd4c474dd870108a754b241" - }, - "6576695d234b9f6e050a42f0": { - "_id": "6576695d234b9f6e050a42f0", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor FORT Redut M Standard", - "_parent": "6576e976fad2d1a4c00ca47e", - "_items": [ - { - "_id": "6576e976fad2d1a4c00ca47e", - "_tpl": "5ca2151486f774244a3b8d30" - }, - { - "_id": "6576e976fad2d1a4c00ca47f", - "_tpl": "6575dd3e9e27f4a85e081142", - "parentId": "6576e976fad2d1a4c00ca47e", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e976fad2d1a4c00ca480", - "_tpl": "6575dd519e27f4a85e081146", - "parentId": "6576e976fad2d1a4c00ca47e", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e976fad2d1a4c00ca481", - "_tpl": "6575dd64945bf78edd04c438", - "parentId": "6576e976fad2d1a4c00ca47e", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e976fad2d1a4c00ca482", - "_tpl": "6575dd6e9d3a0ddf660b9047", - "parentId": "6576e976fad2d1a4c00ca47e", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e976fad2d1a4c00ca483", - "_tpl": "6575dd769d3a0ddf660b904b", - "parentId": "6576e976fad2d1a4c00ca47e", - "slotId": "Collar" - }, - { - "_id": "6576e976fad2d1a4c00ca484", - "_tpl": "6575dd800546f8b1de093df6", - "parentId": "6576e976fad2d1a4c00ca47e", - "slotId": "Groin" - }, - { - "_id": "6576e976fad2d1a4c00ca485", - "_tpl": "6575dd94945bf78edd04c43c", - "parentId": "6576e976fad2d1a4c00ca47e", - "slotId": "Groin_back" - }, - { - "_id": "6576e976fad2d1a4c00ca486", - "_tpl": "65573fa5655447403702a816", - "parentId": "6576e976fad2d1a4c00ca47e", - "slotId": "Front_plate" - }, - { - "_id": "6576e976fad2d1a4c00ca487", - "_tpl": "65573fa5655447403702a816", - "parentId": "6576e976fad2d1a4c00ca47e", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5ca2151486f774244a3b8d30" - }, - "657668ad86f11bca4106d38b": { - "_id": "657668ad86f11bca4106d38b", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Body armor IOTV Gen4 Assault Standard", - "_parent": "6576eb0d424f2c87d30c760d", - "_items": [ - { - "_id": "6576eb0d424f2c87d30c760d", - "_tpl": "5b44cf1486f77431723e3d05" - }, - { - "_id": "6576eb0d424f2c87d30c760e", - "_tpl": "6575c3b3dc9932aed601c5f4", - "parentId": "6576eb0d424f2c87d30c760d", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576eb0d424f2c87d30c760f", - "_tpl": "6575c3beefc786cd9101a5ed", - "parentId": "6576eb0d424f2c87d30c760d", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576eb0d424f2c87d30c7610", - "_tpl": "6575c3cdc6700bd6b40e8a90", - "parentId": "6576eb0d424f2c87d30c760d", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576eb0d424f2c87d30c7611", - "_tpl": "6575c3dfdc9932aed601c5f8", - "parentId": "6576eb0d424f2c87d30c760d", - "slotId": "soft_armor_right" - }, - { - "_id": "6576eb0d424f2c87d30c7612", - "_tpl": "6575c3ec52b7f8c76a05ee39", - "parentId": "6576eb0d424f2c87d30c760d", - "slotId": "Collar" - }, - { - "_id": "6576eb0d424f2c87d30c7613", - "_tpl": "6575c3fd52b7f8c76a05ee3d", - "parentId": "6576eb0d424f2c87d30c760d", - "slotId": "Shoulder_l" - }, - { - "_id": "6576eb0d424f2c87d30c7614", - "_tpl": "6575c40c52b7f8c76a05ee41", - "parentId": "6576eb0d424f2c87d30c760d", - "slotId": "Shoulder_r" - }, - { - "_id": "6576eb0d424f2c87d30c7615", - "_tpl": "656fa8d700d62bcd2e024084", - "parentId": "6576eb0d424f2c87d30c760d", - "slotId": "Front_plate" - }, - { - "_id": "6576eb0d424f2c87d30c7616", - "_tpl": "656fa8d700d62bcd2e024084", - "parentId": "6576eb0d424f2c87d30c760d", - "slotId": "Back_plate" - }, - { - "_id": "6576eb0d424f2c87d30c7617", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "6576eb0d424f2c87d30c760d", - "slotId": "Left_side_plate" - }, - { - "_id": "6576eb0d424f2c87d30c7618", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "6576eb0d424f2c87d30c760d", - "slotId": "Right_side_plate" - } - ], - "_encyclopedia": "5b44cf1486f77431723e3d05" - }, - "657faa0687e11c61f70bfae5": { - "_id": "657faa0687e11c61f70bfae5", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Class Tor 2 Standart", - "_parent": "657faa0687e11c61f70bfaea", - "_items": [ - { - "_id": "657faa0687e11c61f70bfaea", - "_tpl": "65719f0775149d62ce0a670b" - }, - { - "_id": "657faa0687e11c61f70bfaeb", - "_tpl": "657fa0fcd4caf976440afe3e", - "parentId": "657faa0687e11c61f70bfaea", - "slotId": "Helmet_top" - }, - { - "_id": "657faa0687e11c61f70bfaec", - "_tpl": "657fa168e9433140ad0baf8e", - "parentId": "657faa0687e11c61f70bfaea", - "slotId": "Helmet_back" - }, - { - "_id": "657faa0687e11c61f70bfaed", - "_tpl": "657fa186d4caf976440afe42", - "parentId": "657faa0687e11c61f70bfaea", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "65719f0775149d62ce0a670b" - }, - "657bc5cbaab96fccee08bea8": { - "_id": "657bc5cbaab96fccee08bea8", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Helmet Kolpak 1S Standart", - "_parent": "657bc5cbaab96fccee08bead", - "_items": [ - { - "_id": "657bc5cbaab96fccee08bead", - "_tpl": "59e7711e86f7746cae05fbe1" - }, - { - "_id": "657bc5cbaab96fccee08beae", - "_tpl": "657ba50c23918923cb0df56c", - "parentId": "657bc5cbaab96fccee08bead", - "slotId": "Helmet_top" - }, - { - "_id": "657bc5cbaab96fccee08beaf", - "_tpl": "657ba5439ba22f103e08139f", - "parentId": "657bc5cbaab96fccee08bead", - "slotId": "Helmet_back" - }, - { - "_id": "657bc5cbaab96fccee08beb0", - "_tpl": "657ba57af58ba5a62501079e", - "parentId": "657bc5cbaab96fccee08bead", - "slotId": "Helmet_ears" - } - ], - "_encyclopedia": "59e7711e86f7746cae05fbe1" - }, - "657661ad234b9f6e050a42a2": { - "_id": "657661ad234b9f6e050a42a2", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest Shellback Tactical Banshee Standard", - "_parent": "6576e4b546600d80c70ba7ae", - "_items": [ - { - "_id": "6576e4b546600d80c70ba7ae", - "_tpl": "639343fce101f4caa40a4ef3" - }, - { - "_id": "6576e4b546600d80c70ba7af", - "_tpl": "6573101e292ecadbfa09b389", - "parentId": "6576e4b546600d80c70ba7ae", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e4b546600d80c70ba7b0", - "_tpl": "6573102b292ecadbfa09b38d", - "parentId": "6576e4b546600d80c70ba7ae", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e4b546600d80c70ba7b1", - "_tpl": "65731038292ecadbfa09b391", - "parentId": "6576e4b546600d80c70ba7ae", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e4b546600d80c70ba7b2", - "_tpl": "65731045f31d5be00e08a75a", - "parentId": "6576e4b546600d80c70ba7ae", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e4b546600d80c70ba7b3", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "6576e4b546600d80c70ba7ae", - "slotId": "Front_plate" - }, - { - "_id": "6576e4b546600d80c70ba7b4", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "6576e4b546600d80c70ba7ae", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "639343fce101f4caa40a4ef3" - }, - "65719408289dc422160e08c4": { - "_id": "65719408289dc422160e08c4", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest WARTECH TV115 Standard", - "_parent": "6576e488424f2c87d30c75b5", - "_items": [ - { - "_id": "6576e488424f2c87d30c75b5", - "_tpl": "64a536392d2c4e6e970f4121" - }, - { - "_id": "6576e488424f2c87d30c75b6", - "_tpl": "6570653e89fd4926380b733e", - "parentId": "6576e488424f2c87d30c75b5", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e488424f2c87d30c75b7", - "_tpl": "6570658a89fd4926380b7346", - "parentId": "6576e488424f2c87d30c75b5", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e488424f2c87d30c75b8", - "_tpl": "656fac30c6baea13cd07e10c", - "parentId": "6576e488424f2c87d30c75b5", - "slotId": "Front_plate" - }, - { - "_id": "6576e488424f2c87d30c75b9", - "_tpl": "656fac30c6baea13cd07e10c", - "parentId": "6576e488424f2c87d30c75b5", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "64a536392d2c4e6e970f4121" - }, - "657664ae303700411c02428c": { - "_id": "657664ae303700411c02428c", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest CQC Osprey MK4A Protection Standard", - "_parent": "6576e57d424f2c87d30c75c5", - "_items": [ - { - "_id": "6576e57d424f2c87d30c75c5", - "_tpl": "60a3c68c37ea821725773ef5" - }, - { - "_id": "6576e57d424f2c87d30c75c6", - "_tpl": "65733312ca0ca984940a2d53", - "parentId": "6576e57d424f2c87d30c75c5", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e57d424f2c87d30c75c7", - "_tpl": "657333232cc8dfad2c0a3d97", - "parentId": "6576e57d424f2c87d30c75c5", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e57d424f2c87d30c75c8", - "_tpl": "657333302cc8dfad2c0a3d9b", - "parentId": "6576e57d424f2c87d30c75c5", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e57d424f2c87d30c75c9", - "_tpl": "6573333eca0ca984940a2d57", - "parentId": "6576e57d424f2c87d30c75c5", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e57d424f2c87d30c75ca", - "_tpl": "6573334aca0ca984940a2d5b", - "parentId": "6576e57d424f2c87d30c75c5", - "slotId": "Collar" - }, - { - "_id": "6576e57d424f2c87d30c75cb", - "_tpl": "65733375b7a8d286530e3dd7", - "parentId": "6576e57d424f2c87d30c75c5", - "slotId": "Shoulder_l" - }, - { - "_id": "6576e57d424f2c87d30c75cc", - "_tpl": "6573337f2cc8dfad2c0a3da7", - "parentId": "6576e57d424f2c87d30c75c5", - "slotId": "Shoulder_r" - }, - { - "_id": "6576e57d424f2c87d30c75cd", - "_tpl": "656fa53d94b480b8a500c0e4", - "parentId": "6576e57d424f2c87d30c75c5", - "slotId": "Front_plate" - }, - { - "_id": "6576e57d424f2c87d30c75ce", - "_tpl": "656fa53d94b480b8a500c0e4", - "parentId": "6576e57d424f2c87d30c75c5", - "slotId": "Back_plate" - }, - { - "_id": "6576e57d424f2c87d30c75cf", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "6576e57d424f2c87d30c75c5", - "slotId": "Left_side_plate" - }, - { - "_id": "6576e57d424f2c87d30c75d0", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "6576e57d424f2c87d30c75c5", - "slotId": "Right_side_plate" - } - ], - "_encyclopedia": "60a3c68c37ea821725773ef5" - }, - "657194c0289dc422160e08d1": { - "_id": "657194c0289dc422160e08d1", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest CQC Osprey MK4A Assault Standard", - "_parent": "6576e5a2ab23f2038109a9de", - "_items": [ - { - "_id": "6576e5a2ab23f2038109a9de", - "_tpl": "60a3c70cde5f453f634816a3" - }, - { - "_id": "6576e5a2ab23f2038109a9df", - "_tpl": "6570fae34c65ab77a6015146", - "parentId": "6576e5a2ab23f2038109a9de", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e5a2ab23f2038109a9e0", - "_tpl": "6570fa1f4c65ab77a601512f", - "parentId": "6576e5a2ab23f2038109a9de", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e5a2ab23f2038109a9e1", - "_tpl": "6570fb22584a51c23e03251f", - "parentId": "6576e5a2ab23f2038109a9de", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e5a2ab23f2038109a9e2", - "_tpl": "6570fb6ad3eefd23430f8c7c", - "parentId": "6576e5a2ab23f2038109a9de", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e5a2ab23f2038109a9e3", - "_tpl": "6570fb8f4c65ab77a601514d", - "parentId": "6576e5a2ab23f2038109a9de", - "slotId": "Collar" - }, - { - "_id": "6576e5a2ab23f2038109a9e4", - "_tpl": "6570fbdd74d84423df065f60", - "parentId": "6576e5a2ab23f2038109a9de", - "slotId": "Shoulder_l" - }, - { - "_id": "6576e5a2ab23f2038109a9e5", - "_tpl": "6570fc41d3eefd23430f8c83", - "parentId": "6576e5a2ab23f2038109a9de", - "slotId": "Shoulder_r" - }, - { - "_id": "6576e5a2ab23f2038109a9e6", - "_tpl": "656fb21fa0dce000a2020f7c", - "parentId": "6576e5a2ab23f2038109a9de", - "slotId": "Front_plate" - }, - { - "_id": "6576e5a2ab23f2038109a9e7", - "_tpl": "656fb21fa0dce000a2020f7c", - "parentId": "6576e5a2ab23f2038109a9de", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "60a3c70cde5f453f634816a3" - }, - "6576604f86f11bca4106d33d": { - "_id": "6576604f86f11bca4106d33d", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest FirstSpear Strandhogg Standard", - "_parent": "6576e4d8fad2d1a4c00ca457", - "_items": [ - { - "_id": "6576e4d8fad2d1a4c00ca457", - "_tpl": "61bcc89aef0f505f0c6cd0fc" - }, - { - "_id": "6576e4d8fad2d1a4c00ca458", - "_tpl": "6572eb0e55beba16bc04079f", - "parentId": "6576e4d8fad2d1a4c00ca457", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e4d8fad2d1a4c00ca459", - "_tpl": "6572eb1b04ee6483ef039882", - "parentId": "6576e4d8fad2d1a4c00ca457", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e4d8fad2d1a4c00ca45a", - "_tpl": "6572eb3004ee6483ef039886", - "parentId": "6576e4d8fad2d1a4c00ca457", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e4d8fad2d1a4c00ca45b", - "_tpl": "6572eb3b04ee6483ef03988a", - "parentId": "6576e4d8fad2d1a4c00ca457", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e4d8fad2d1a4c00ca45c", - "_tpl": "6572eb865b5eac12f10a03ee", - "parentId": "6576e4d8fad2d1a4c00ca457", - "slotId": "Groin" - }, - { - "_id": "6576e4d8fad2d1a4c00ca45d", - "_tpl": "656fb21fa0dce000a2020f7c", - "parentId": "6576e4d8fad2d1a4c00ca457", - "slotId": "Front_plate" - }, - { - "_id": "6576e4d8fad2d1a4c00ca45e", - "_tpl": "656fb21fa0dce000a2020f7c", - "parentId": "6576e4d8fad2d1a4c00ca457", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "61bcc89aef0f505f0c6cd0fc" - }, - "657667b5234b9f6e050a42e4": { - "_id": "657667b5234b9f6e050a42e4", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest Crye Precision AVS Tagilla Edition Standard", - "_parent": "6576e54cab23f2038109a9d9", - "_items": [ - { - "_id": "6576e54cab23f2038109a9d9", - "_tpl": "609e860ebd219504d8507525" - }, - { - "_id": "6576e54cab23f2038109a9da", - "_tpl": "6575f5cbf6a13a7b7100b0bf", - "parentId": "6576e54cab23f2038109a9d9", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e54cab23f2038109a9db", - "_tpl": "6575f5e1da698a4e98067869", - "parentId": "6576e54cab23f2038109a9d9", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e54cab23f2038109a9dc", - "_tpl": "656fa99800d62bcd2e024088", - "parentId": "6576e54cab23f2038109a9d9", - "slotId": "Front_plate" - }, - { - "_id": "6576e54cab23f2038109a9dd", - "_tpl": "656fa0fb498d1b7e3e071d9c", - "parentId": "6576e54cab23f2038109a9d9", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "609e860ebd219504d8507525" - }, - "657660eb86f11bca4106d34f": { - "_id": "657660eb86f11bca4106d34f", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest Eagle Industries MMAC Standard", - "_parent": "6576e4e8ab23f2038109a9d2", - "_items": [ - { - "_id": "6576e4e8ab23f2038109a9d2", - "_tpl": "61bc85697113f767765c7fe7" - }, - { - "_id": "6576e4e8ab23f2038109a9d3", - "_tpl": "6572fc809a866b80ab07eb59", - "parentId": "6576e4e8ab23f2038109a9d2", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e4e8ab23f2038109a9d4", - "_tpl": "6572fc8c9a866b80ab07eb5d", - "parentId": "6576e4e8ab23f2038109a9d2", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e4e8ab23f2038109a9d5", - "_tpl": "6572fc989a866b80ab07eb61", - "parentId": "6576e4e8ab23f2038109a9d2", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e4e8ab23f2038109a9d6", - "_tpl": "6572fca39a866b80ab07eb65", - "parentId": "6576e4e8ab23f2038109a9d2", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e4e8ab23f2038109a9d7", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "6576e4e8ab23f2038109a9d2", - "slotId": "Front_plate" - }, - { - "_id": "6576e4e8ab23f2038109a9d8", - "_tpl": "656fad8c498d1b7e3e071da0", - "parentId": "6576e4e8ab23f2038109a9d2", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "61bc85697113f767765c7fe7" - }, - "65719d367a553968340d88b8": { - "_id": "65719d367a553968340d88b8", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest Crye Precision AVS Standard", - "_parent": "6576e56446600d80c70ba7b8", - "_items": [ - { - "_id": "6576e56446600d80c70ba7b8", - "_tpl": "544a5caa4bdc2d1a388b4568" - }, - { - "_id": "6576e56446600d80c70ba7b9", - "_tpl": "6570e83223c1f638ef0b0ede", - "parentId": "6576e56446600d80c70ba7b8", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e56446600d80c70ba7ba", - "_tpl": "6570e87c23c1f638ef0b0ee2", - "parentId": "6576e56446600d80c70ba7b8", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e56446600d80c70ba7bb", - "_tpl": "6570e90b3a5689d85f08db97", - "parentId": "6576e56446600d80c70ba7b8", - "slotId": "Groin" - }, - { - "_id": "6576e56446600d80c70ba7bc", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "6576e56446600d80c70ba7b8", - "slotId": "Front_plate" - }, - { - "_id": "6576e56446600d80c70ba7bd", - "_tpl": "656f9fa0498d1b7e3e071d98", - "parentId": "6576e56446600d80c70ba7b8", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "544a5caa4bdc2d1a388b4568" - }, - "657eb42546a703073a5b91f1": { - "_id": "657eb42546a703073a5b91f1", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "op_sks_sniper", - "_parent": "657eb42546a703073a5b91f2", - "_items": [ - { - "_id": "657eb42546a703073a5b91f2", - "_tpl": "587e02ff24597743df3deaeb", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "657eb42546a703073a5b91f3", - "_tpl": "587e0531245977466077a0f7", - "parentId": "657eb42546a703073a5b91f2", - "slotId": "mod_stock" - }, - { - "_id": "657eb42546a703073a5b91f4", - "_tpl": "634eff66517ccc8a960fc735", - "parentId": "657eb42546a703073a5b91f2", - "slotId": "mod_barrel" - }, - { - "_id": "657eb42546a703073a5b91f5", - "_tpl": "634f05a21f9f536910079b56", - "parentId": "657eb42546a703073a5b91f4", - "slotId": "mod_mount_000" - }, - { - "_id": "657eb42546a703073a5b91f6", - "_tpl": "634f036a517ccc8a960fc746", - "parentId": "657eb42546a703073a5b91f5", - "slotId": "mod_gas_block" - }, - { - "_id": "657eb42546a703073a5b91f7", - "_tpl": "634f03d40384a3ba4f06f874", - "parentId": "657eb42546a703073a5b91f6", - "slotId": "mod_mount_000" - }, - { - "_id": "657eb42546a703073a5b91f8", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "657eb42546a703073a5b91f5", - "slotId": "mod_sight_rear" - }, - { - "_id": "657eb42546a703073a5b91f9", - "_tpl": "587df3a12459772c28142567", - "parentId": "657eb42546a703073a5b91f2", - "slotId": "mod_magazine" - }, - { - "_id": "657eb42546a703073a5b91fa", - "_tpl": "587e08ee245977446b4410cf", - "parentId": "657eb42546a703073a5b91f2", - "slotId": "mod_mount" - }, - { - "_id": "657eb42546a703073a5b91fb", - "_tpl": "5c82343a2e221644f31c0611", - "parentId": "657eb42546a703073a5b91fa", - "slotId": "mod_scope" - }, - { - "_id": "657eb42546a703073a5b91fc", - "_tpl": "634f06262e5def262d0b30ca", - "parentId": "657eb42546a703073a5b91f2", - "slotId": "mod_reciever" - } - ] - }, - "657660a1526e320fbe0357c1": { - "_id": "657660a1526e320fbe0357c1", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest ECLiPSE RBAV-AF Standard", - "_parent": "6576e519424f2c87d30c75bd", - "_items": [ - { - "_id": "6576e519424f2c87d30c75bd", - "_tpl": "628dc750b910320f4c27a732" - }, - { - "_id": "6576e519424f2c87d30c75be", - "_tpl": "6572f1ca4c8d903cc60c874e", - "parentId": "6576e519424f2c87d30c75bd", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e519424f2c87d30c75bf", - "_tpl": "6572f1d60103b4a3270332db", - "parentId": "6576e519424f2c87d30c75bd", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e519424f2c87d30c75c0", - "_tpl": "6572f1e10103b4a3270332df", - "parentId": "6576e519424f2c87d30c75bd", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e519424f2c87d30c75c1", - "_tpl": "6572f1edea457732140ce875", - "parentId": "6576e519424f2c87d30c75bd", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e519424f2c87d30c75c2", - "_tpl": "6572f1f7ea457732140ce879", - "parentId": "6576e519424f2c87d30c75bd", - "slotId": "Groin" - }, - { - "_id": "6576e519424f2c87d30c75c3", - "_tpl": "656fa25e94b480b8a500c0e0", - "parentId": "6576e519424f2c87d30c75bd", - "slotId": "Front_plate" - }, - { - "_id": "6576e519424f2c87d30c75c4", - "_tpl": "656fa25e94b480b8a500c0e0", - "parentId": "6576e519424f2c87d30c75bd", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "628dc750b910320f4c27a732" - }, - "657eb44126f0eb0718056218": { - "_id": "657eb44126f0eb0718056218", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "op_sks_tactical", - "_parent": "657eb44126f0eb0718056219", - "_items": [ - { - "_id": "657eb44126f0eb0718056219", - "_tpl": "587e02ff24597743df3deaeb", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "657eb44126f0eb071805621a", - "_tpl": "653ecef836fae5a82f02b869", - "parentId": "657eb44126f0eb0718056219", - "slotId": "mod_stock" - }, - { - "_id": "657eb44126f0eb071805621b", - "_tpl": "634eff66517ccc8a960fc735", - "parentId": "657eb44126f0eb0718056219", - "slotId": "mod_barrel" - }, - { - "_id": "657eb44126f0eb071805621c", - "_tpl": "634f05a21f9f536910079b56", - "parentId": "657eb44126f0eb071805621b", - "slotId": "mod_mount_000" - }, - { - "_id": "657eb44126f0eb071805621d", - "_tpl": "634f036a517ccc8a960fc746", - "parentId": "657eb44126f0eb071805621c", - "slotId": "mod_gas_block" - }, - { - "_id": "657eb44126f0eb071805621e", - "_tpl": "653ecc425a1690d9d90491e4", - "parentId": "657eb44126f0eb071805621d", - "slotId": "mod_mount_000" - }, - { - "_id": "657eb44126f0eb071805621f", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "657eb44126f0eb071805621c", - "slotId": "mod_sight_rear" - }, - { - "_id": "657eb44126f0eb0718056220", - "_tpl": "587df583245977373c4f1129", - "parentId": "657eb44126f0eb0718056219", - "slotId": "mod_magazine" - }, - { - "_id": "657eb44126f0eb0718056221", - "_tpl": "6415d33eda439c6a97048b5b", - "parentId": "657eb44126f0eb0718056219", - "slotId": "mod_mount" - }, - { - "_id": "657eb44126f0eb0718056222", - "_tpl": "591c4efa86f7741030027726", - "parentId": "657eb44126f0eb0718056221", - "slotId": "mod_scope" - }, - { - "_id": "657eb44126f0eb0718056223", - "_tpl": "591c4e1186f77410354b316e", - "parentId": "657eb44126f0eb0718056222", - "slotId": "mod_tactical" - }, - { - "_id": "657eb44126f0eb0718056224", - "_tpl": "634f06262e5def262d0b30ca", - "parentId": "657eb44126f0eb0718056219", - "slotId": "mod_reciever" - } - ] - }, - "657eb2b246a703073a5b91e8": { - "_id": "657eb2b246a703073a5b91e8", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "rpd_short", - "_parent": "657eb2b246a703073a5b91e9", - "_items": [ - { - "_id": "657eb2b246a703073a5b91e9", - "_tpl": "6513ef33e06849f06c0957ca", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "fullauto" - } - } - }, - { - "_id": "657eb2b246a703073a5b91ea", - "_tpl": "6513f0a194c72326990a3868", - "parentId": "657eb2b246a703073a5b91e9", - "slotId": "mod_magazine" - }, - { - "_id": "657eb2b246a703073a5b91eb", - "_tpl": "6513f1798cb24472490ee331", - "parentId": "657eb2b246a703073a5b91e9", - "slotId": "mod_stock" - }, - { - "_id": "657eb2b246a703073a5b91ec", - "_tpl": "6513f13a8cb24472490ee32f", - "parentId": "657eb2b246a703073a5b91eb", - "slotId": "mod_pistolgrip" - }, - { - "_id": "657eb2b246a703073a5b91ed", - "_tpl": "65266fd43341ed9aa903dd56", - "parentId": "657eb2b246a703073a5b91e9", - "slotId": "mod_barrel" - }, - { - "_id": "657eb2b246a703073a5b91ee", - "_tpl": "6513f05a94c72326990a3866", - "parentId": "657eb2b246a703073a5b91e9", - "slotId": "mod_handguard" - }, - { - "_id": "657eb2b246a703073a5b91ef", - "_tpl": "6513f153e63f29908d0ffaba", - "parentId": "657eb2b246a703073a5b91e9", - "slotId": "mod_sight_rear" - } - ] - }, - "657eb3ef7ba4217c5e65b6a5": { - "_id": "657eb3ef7ba4217c5e65b6a5", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "sks_tactical", - "_parent": "657eb3ef7ba4217c5e65b6a6", - "_items": [ - { - "_id": "657eb3ef7ba4217c5e65b6a6", - "_tpl": "574d967124597745970e7c94", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "657eb3ef7ba4217c5e65b6a7", - "_tpl": "653ecef836fae5a82f02b869", - "parentId": "657eb3ef7ba4217c5e65b6a6", - "slotId": "mod_stock" - }, - { - "_id": "657eb3ef7ba4217c5e65b6a8", - "_tpl": "634f02331f9f536910079b51", - "parentId": "657eb3ef7ba4217c5e65b6a6", - "slotId": "mod_barrel" - }, - { - "_id": "657eb3ef7ba4217c5e65b6a9", - "_tpl": "634f04d82e5def262d0b30c6", - "parentId": "657eb3ef7ba4217c5e65b6a8", - "slotId": "mod_mount_000" - }, - { - "_id": "657eb3ef7ba4217c5e65b6aa", - "_tpl": "634f02d7517ccc8a960fc744", - "parentId": "657eb3ef7ba4217c5e65b6a9", - "slotId": "mod_gas_block" - }, - { - "_id": "657eb3ef7ba4217c5e65b6ab", - "_tpl": "653ecc425a1690d9d90491e4", - "parentId": "657eb3ef7ba4217c5e65b6aa", - "slotId": "mod_mount_000" - }, - { - "_id": "657eb3ef7ba4217c5e65b6ac", - "_tpl": "574db213245977459a2f3f5d", - "parentId": "657eb3ef7ba4217c5e65b6a9", - "slotId": "mod_sight_rear" - }, - { - "_id": "657eb3ef7ba4217c5e65b6ad", - "_tpl": "593d1fa786f7746da62d61ac", - "parentId": "657eb3ef7ba4217c5e65b6a8", - "slotId": "mod_mount_001" - }, - { - "_id": "657eb3ef7ba4217c5e65b6ae", - "_tpl": "5c5952732e2216398b5abda2", - "parentId": "657eb3ef7ba4217c5e65b6ad", - "slotId": "mod_tactical_000" - }, - { - "_id": "657eb3ef7ba4217c5e65b6af", - "_tpl": "5cf67cadd7f00c065a5abab7", - "parentId": "657eb3ef7ba4217c5e65b6a8", - "slotId": "mod_muzzle" - }, - { - "_id": "657eb3ef7ba4217c5e65b6b0", - "_tpl": "59fb257e86f7742981561852", - "parentId": "657eb3ef7ba4217c5e65b6af", - "slotId": "mod_muzzle" - }, - { - "_id": "657eb3ef7ba4217c5e65b6b1", - "_tpl": "587df583245977373c4f1129", - "parentId": "657eb3ef7ba4217c5e65b6a6", - "slotId": "mod_magazine" - }, - { - "_id": "657eb3ef7ba4217c5e65b6b2", - "_tpl": "6415c694da439c6a97048b56", - "parentId": "657eb3ef7ba4217c5e65b6a6", - "slotId": "mod_reciever" - }, - { - "_id": "657eb3ef7ba4217c5e65b6b3", - "_tpl": "609a63b6e2ff132951242d09", - "parentId": "657eb3ef7ba4217c5e65b6b2", - "slotId": "mod_scope" - } - ] - }, - "65766a20234b9f6e050a4306": { - "_id": "65766a20234b9f6e050a4306", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest Crye Precision CPC Standard", - "_parent": "6576e529fad2d1a4c00ca45f", - "_items": [ - { - "_id": "6576e529fad2d1a4c00ca45f", - "_tpl": "628b9c7d45122232a872358f" - }, - { - "_id": "6576e529fad2d1a4c00ca460", - "_tpl": "6575f24ff6a13a7b7100b09e", - "parentId": "6576e529fad2d1a4c00ca45f", - "slotId": "Soft_armor_front" - }, - { - "_id": "6576e529fad2d1a4c00ca461", - "_tpl": "6575f25ada698a4e98067836", - "parentId": "6576e529fad2d1a4c00ca45f", - "slotId": "Soft_armor_back" - }, - { - "_id": "6576e529fad2d1a4c00ca462", - "_tpl": "6575f2649cfdfe416f0399b8", - "parentId": "6576e529fad2d1a4c00ca45f", - "slotId": "Soft_armor_left" - }, - { - "_id": "6576e529fad2d1a4c00ca463", - "_tpl": "6575f26d9c7cad336508e480", - "parentId": "6576e529fad2d1a4c00ca45f", - "slotId": "soft_armor_right" - }, - { - "_id": "6576e529fad2d1a4c00ca464", - "_tpl": "656fa53d94b480b8a500c0e4", - "parentId": "6576e529fad2d1a4c00ca45f", - "slotId": "Front_plate" - }, - { - "_id": "6576e529fad2d1a4c00ca465", - "_tpl": "656fa53d94b480b8a500c0e4", - "parentId": "6576e529fad2d1a4c00ca45f", - "slotId": "Back_plate" - }, - { - "_id": "6576e529fad2d1a4c00ca466", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "6576e529fad2d1a4c00ca45f", - "slotId": "Left_side_plate" - }, - { - "_id": "6576e529fad2d1a4c00ca467", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "6576e529fad2d1a4c00ca45f", - "slotId": "Right_side_plate" - } - ], - "_encyclopedia": "628b9c7d45122232a872358f" - }, - "6576683d303700411c0242d2": { - "_id": "6576683d303700411c0242d2", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest Precision PlateFrame Standard", - "_parent": "65cf51c6a644dd466f01fde7", - "_items": [ - { - "_id": "65cf51c6a644dd466f01fde7", - "_tpl": "628b9784bcf6e2659e09b8a2" - }, - { - "_id": "65cf51c6a644dd466f01fde8", - "_tpl": "656fae5f7c2d57afe200c0d7", - "parentId": "65cf51c6a644dd466f01fde7", - "slotId": "Front_plate" - }, - { - "_id": "65cf51c6a644dd466f01fde9", - "_tpl": "656fae5f7c2d57afe200c0d7", - "parentId": "65cf51c6a644dd466f01fde7", - "slotId": "Back_plate" - }, - { - "_id": "65cf51c6a644dd466f01fdea", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "65cf51c6a644dd466f01fde7", - "slotId": "Left_side_plate" - }, - { - "_id": "65cf51c6a644dd466f01fdeb", - "_tpl": "6557458f83942d705f0c4962", - "parentId": "65cf51c6a644dd466f01fde7", - "slotId": "Right_side_plate" - } - ], - "_encyclopedia": "628b9784bcf6e2659e09b8a2" - }, - "6606af2cc690b729e20beb56": { - "_id": "6606af2cc690b729e20beb56", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "ussr_pd_20x1mm", - "_parent": "6606af2cc690b729e20beb59", - "_items": [ - { - "_id": "6606af2cc690b729e20beb59", - "_tpl": "66015072e9f84d5680039678", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "6606af2cc690b729e20beb5a", - "_tpl": "66015dc4aaad2f54cb04c56a", - "parentId": "6606af2cc690b729e20beb59", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "66015072e9f84d5680039678" - }, - "657b351d306ad0bf99008208": { - "_id": "657b351d306ad0bf99008208", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest WARTECH TV110 Standard", - "_parent": "657b351d306ad0bf9900820e", - "_items": [ - { - "_id": "657b351d306ad0bf9900820e", - "_tpl": "5c0e746986f7741453628fe5" - }, - { - "_id": "657b351d306ad0bf9900820f", - "_tpl": "6570df294cc0d2ab1e05ed74", - "parentId": "657b351d306ad0bf9900820e", - "slotId": "Soft_armor_front" - }, - { - "_id": "657b351d306ad0bf99008210", - "_tpl": "6570df9c615f54368b04fca9", - "parentId": "657b351d306ad0bf9900820e", - "slotId": "Soft_armor_back" - }, - { - "_id": "657b351d306ad0bf99008211", - "_tpl": "656fa0fb498d1b7e3e071d9c", - "parentId": "657b351d306ad0bf9900820e", - "slotId": "Front_plate" - }, - { - "_id": "657b351d306ad0bf99008212", - "_tpl": "656fa0fb498d1b7e3e071d9c", - "parentId": "657b351d306ad0bf9900820e", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "5c0e746986f7741453628fe5" - }, - "5d7b845786f7743c1e531da7": { - "_id": "5d7b845786f7743c1e531da7", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "fseven fde silenced", - "_parent": "655b79dfb71eeb7c4168c62a", - "_items": [ - { - "_id": "655b79dfb71eeb7c4168c62a", - "_tpl": "5d67abc1a4b93614ec50137f", - "upd": { - "Repairable": { - "Durability": 100, - "MaxDurability": 100 - } - } - }, - { - "_id": "655b79dfb71eeb7c4168c62b", - "_tpl": "5d3eb59ea4b9361c284bb4b2", - "parentId": "655b79dfb71eeb7c4168c62a", - "slotId": "mod_barrel" - }, - { - "_id": "655b79dfb71eeb7c4168c62c", - "_tpl": "5d3ef698a4b9361182109872", - "parentId": "655b79dfb71eeb7c4168c62b", - "slotId": "mod_muzzle" - }, - { - "_id": "655b79dfb71eeb7c4168c62d", - "_tpl": "5d3eb44aa4b93650d64e4979", - "parentId": "655b79dfb71eeb7c4168c62a", - "slotId": "mod_reciever" - }, - { - "_id": "655b79dfb71eeb7c4168c62e", - "_tpl": "5d3eb4aba4b93650d64e497d", - "parentId": "655b79dfb71eeb7c4168c62d", - "slotId": "mod_sight_rear" - }, - { - "_id": "655b79dfb71eeb7c4168c62f", - "_tpl": "5d3eb536a4b9363b1f22f8e2", - "parentId": "655b79dfb71eeb7c4168c62d", - "slotId": "mod_sight_front" - }, - { - "_id": "655b79dfb71eeb7c4168c630", - "_tpl": "5d3eb5eca4b9363b1f22f8e4", - "parentId": "655b79dfb71eeb7c4168c62a", - "slotId": "mod_magazine" - } - ], - "_encyclopedia": "5d67abc1a4b93614ec50137f" - }, - "657eb3773271d8578610fe28": { - "_id": "657eb3773271d8578610fe28", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "sig_mcx_spear_default", - "_parent": "657eb3773271d8578610fe29", - "_items": [ - { - "_id": "657eb3773271d8578610fe29", - "_tpl": "65290f395ae2ae97b80fdf2d", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "657eb3773271d8578610fe2a", - "_tpl": "652911675ae2ae97b80fdf3c", - "parentId": "657eb3773271d8578610fe29", - "slotId": "mod_pistol_grip" - }, - { - "_id": "657eb3773271d8578610fe2b", - "_tpl": "65293c38fc460e50a509cb25", - "parentId": "657eb3773271d8578610fe29", - "slotId": "mod_magazine" - }, - { - "_id": "657eb3773271d8578610fe2c", - "_tpl": "6529119424cbe3c74a05e5bb", - "parentId": "657eb3773271d8578610fe29", - "slotId": "mod_reciever" - }, - { - "_id": "657eb3773271d8578610fe2d", - "_tpl": "6567e751a715f85433025998", - "parentId": "657eb3773271d8578610fe2c", - "slotId": "mod_scope" - }, - { - "_id": "657eb3773271d8578610fe2e", - "_tpl": "6567e7681265c8a131069b0f", - "parentId": "657eb3773271d8578610fe2d", - "slotId": "mod_scope" - }, - { - "_id": "657eb3773271d8578610fe2f", - "_tpl": "652910565ae2ae97b80fdf35", - "parentId": "657eb3773271d8578610fe2c", - "slotId": "mod_barrel" - }, - { - "_id": "657eb3773271d8578610fe30", - "_tpl": "6529113b5ae2ae97b80fdf39", - "parentId": "657eb3773271d8578610fe2f", - "slotId": "mod_muzzle" - }, - { - "_id": "657eb3773271d8578610fe31", - "_tpl": "652911e650dc782999054b9d", - "parentId": "657eb3773271d8578610fe30", - "slotId": "mod_muzzle" - }, - { - "_id": "657eb3773271d8578610fe32", - "_tpl": "652910bc24cbe3c74a05e5b9", - "parentId": "657eb3773271d8578610fe2f", - "slotId": "mod_gas_block" - }, - { - "_id": "657eb3773271d8578610fe33", - "_tpl": "652910ef50dc782999054b97", - "parentId": "657eb3773271d8578610fe2c", - "slotId": "mod_handguard" - }, - { - "_id": "657eb3773271d8578610fe34", - "_tpl": "6529348224cbe3c74a05e5c4", - "parentId": "657eb3773271d8578610fe29", - "slotId": "mod_stock_000" - }, - { - "_id": "657eb3773271d8578610fe35", - "_tpl": "6529366450dc782999054ba0", - "parentId": "657eb3773271d8578610fe34", - "slotId": "mod_stock" - }, - { - "_id": "657eb3773271d8578610fe36", - "_tpl": "6529370c405a5f51dd023db8", - "parentId": "657eb3773271d8578610fe35", - "slotId": "mod_stock_000" - }, - { - "_id": "657eb3773271d8578610fe37", - "_tpl": "6529109524cbe3c74a05e5b7", - "parentId": "657eb3773271d8578610fe29", - "slotId": "mod_charge" - } - ], - "_encyclopedia": "65290f395ae2ae97b80fdf2d" - }, - "657eb391aebd1b6d254bf6e2": { - "_id": "657eb391aebd1b6d254bf6e2", - "_type": "Preset", - "_changeWeaponName": true, - "_name": "sig_mcx_spear_cqb", - "_parent": "657eb391aebd1b6d254bf6e3", - "_items": [ - { - "_id": "657eb391aebd1b6d254bf6e3", - "_tpl": "65290f395ae2ae97b80fdf2d", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "single" - } - } - }, - { - "_id": "657eb391aebd1b6d254bf6e4", - "_tpl": "652911675ae2ae97b80fdf3c", - "parentId": "657eb391aebd1b6d254bf6e3", - "slotId": "mod_pistol_grip" - }, - { - "_id": "657eb391aebd1b6d254bf6e5", - "_tpl": "65293c7a17e14363030ad308", - "parentId": "657eb391aebd1b6d254bf6e3", - "slotId": "mod_magazine" - }, - { - "_id": "657eb391aebd1b6d254bf6e6", - "_tpl": "6529119424cbe3c74a05e5bb", - "parentId": "657eb391aebd1b6d254bf6e3", - "slotId": "mod_reciever" - }, - { - "_id": "657eb391aebd1b6d254bf6e7", - "_tpl": "652910565ae2ae97b80fdf35", - "parentId": "657eb391aebd1b6d254bf6e6", - "slotId": "mod_barrel" - }, - { - "_id": "657eb391aebd1b6d254bf6e8", - "_tpl": "6529113b5ae2ae97b80fdf39", - "parentId": "657eb391aebd1b6d254bf6e7", - "slotId": "mod_muzzle" - }, - { - "_id": "657eb391aebd1b6d254bf6e9", - "_tpl": "652910bc24cbe3c74a05e5b9", - "parentId": "657eb391aebd1b6d254bf6e7", - "slotId": "mod_gas_block" - }, - { - "_id": "657eb391aebd1b6d254bf6ea", - "_tpl": "652910ef50dc782999054b97", - "parentId": "657eb391aebd1b6d254bf6e6", - "slotId": "mod_handguard" - }, - { - "_id": "657eb391aebd1b6d254bf6eb", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "657eb391aebd1b6d254bf6ea", - "slotId": "mod_mount_000" - }, - { - "_id": "657eb391aebd1b6d254bf6ec", - "_tpl": "5b7be47f5acfc400170e2dd2", - "parentId": "657eb391aebd1b6d254bf6ea", - "slotId": "mod_mount_001" - }, - { - "_id": "657eb391aebd1b6d254bf6ed", - "_tpl": "5c18b90d2e2216152142466b", - "parentId": "657eb391aebd1b6d254bf6ea", - "slotId": "mod_sight_front" - }, - { - "_id": "657eb391aebd1b6d254bf6ee", - "_tpl": "651a8e529829226ceb67c319", - "parentId": "657eb391aebd1b6d254bf6ea", - "slotId": "mod_foregrip" - }, - { - "_id": "657eb391aebd1b6d254bf6ef", - "_tpl": "5c18b9192e2216398b5a8104", - "parentId": "657eb391aebd1b6d254bf6e6", - "slotId": "mod_sight_rear" - }, - { - "_id": "657eb391aebd1b6d254bf6f0", - "_tpl": "5c5db6f82e2216003a0fe914", - "parentId": "657eb391aebd1b6d254bf6e3", - "slotId": "mod_stock_000" - }, - { - "_id": "657eb391aebd1b6d254bf6f1", - "_tpl": "6529109524cbe3c74a05e5b7", - "parentId": "657eb391aebd1b6d254bf6e3", - "slotId": "mod_charge" - } - ] - }, - "65719339acb85662e7024be2": { - "_id": "65719339acb85662e7024be2", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest Eagle Allied Industries MBSS Standard", - "_parent": "6576e4f846600d80c70ba7b5", - "_items": [ - { - "_id": "6576e4f846600d80c70ba7b5", - "_tpl": "64a5366719bab53bd203bf33" - }, - { - "_id": "6576e4f846600d80c70ba7b6", - "_tpl": "656fac30c6baea13cd07e10c", - "parentId": "6576e4f846600d80c70ba7b5", - "slotId": "Front_plate" - }, - { - "_id": "6576e4f846600d80c70ba7b7", - "_tpl": "656fac30c6baea13cd07e10c", - "parentId": "6576e4f846600d80c70ba7b5", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "64a5366719bab53bd203bf33" - }, - "657667f686f11bca4106d383": { - "_id": "657667f686f11bca4106d383", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "Vest Tasmanian Tiger SK Standard", - "_parent": "6576e4a6ab23f2038109a9cf", - "_items": [ - { - "_id": "6576e4a6ab23f2038109a9cf", - "_tpl": "628cd624459354321c4b7fa2" - }, - { - "_id": "6576e4a6ab23f2038109a9d0", - "_tpl": "64afdcb83efdfea28601d041", - "parentId": "6576e4a6ab23f2038109a9cf", - "slotId": "Front_plate" - }, - { - "_id": "6576e4a6ab23f2038109a9d1", - "_tpl": "64afdcb83efdfea28601d041", - "parentId": "6576e4a6ab23f2038109a9cf", - "slotId": "Back_plate" - } - ], - "_encyclopedia": "628cd624459354321c4b7fa2" - }, - "657eb281b0bc0f28b178311e": { - "_id": "657eb281b0bc0f28b178311e", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "rpd_default", - "_parent": "657eb281b0bc0f28b178311f", - "_items": [ - { - "_id": "657eb281b0bc0f28b178311f", - "_tpl": "6513ef33e06849f06c0957ca", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "fullauto" - } - } - }, - { - "_id": "657eb281b0bc0f28b1783120", - "_tpl": "6513f0a194c72326990a3868", - "parentId": "657eb281b0bc0f28b178311f", - "slotId": "mod_magazine" - }, - { - "_id": "657eb281b0bc0f28b1783121", - "_tpl": "6513f1798cb24472490ee331", - "parentId": "657eb281b0bc0f28b178311f", - "slotId": "mod_stock" - }, - { - "_id": "657eb281b0bc0f28b1783122", - "_tpl": "6513f13a8cb24472490ee32f", - "parentId": "657eb281b0bc0f28b1783121", - "slotId": "mod_pistolgrip" - }, - { - "_id": "657eb281b0bc0f28b1783123", - "_tpl": "6513eff1e06849f06c0957d4", - "parentId": "657eb281b0bc0f28b178311f", - "slotId": "mod_barrel" - }, - { - "_id": "657eb281b0bc0f28b1783124", - "_tpl": "6513f037e06849f06c0957d7", - "parentId": "657eb281b0bc0f28b1783123", - "slotId": "mod_bipod" - }, - { - "_id": "657eb281b0bc0f28b1783125", - "_tpl": "6513f0f5e63f29908d0ffab8", - "parentId": "657eb281b0bc0f28b1783123", - "slotId": "mod_muzzle" - }, - { - "_id": "657eb281b0bc0f28b1783126", - "_tpl": "6513f05a94c72326990a3866", - "parentId": "657eb281b0bc0f28b178311f", - "slotId": "mod_handguard" - }, - { - "_id": "657eb281b0bc0f28b1783127", - "_tpl": "6513f153e63f29908d0ffaba", - "parentId": "657eb281b0bc0f28b178311f", - "slotId": "mod_sight_rear" - } - ], - "_encyclopedia": "6513ef33e06849f06c0957ca" - }, - "657eb30326f0eb0718056204": { - "_id": "657eb30326f0eb0718056204", - "_type": "Preset", - "_changeWeaponName": false, - "_name": "rpdn_default", - "_parent": "657eb30326f0eb0718056205", - "_items": [ - { - "_id": "657eb30326f0eb0718056205", - "_tpl": "65268d8ecb944ff1e90ea385", - "upd": { - "Repairable": { - "MaxDurability": 100, - "Durability": 100 - }, - "FireMode": { - "FireMode": "fullauto" - } - } - }, - { - "_id": "657eb30326f0eb0718056206", - "_tpl": "6513f0a194c72326990a3868", - "parentId": "657eb30326f0eb0718056205", - "slotId": "mod_magazine" - }, - { - "_id": "657eb30326f0eb0718056207", - "_tpl": "6513f1798cb24472490ee331", - "parentId": "657eb30326f0eb0718056205", - "slotId": "mod_stock" - }, - { - "_id": "657eb30326f0eb0718056208", - "_tpl": "6513f13a8cb24472490ee32f", - "parentId": "657eb30326f0eb0718056207", - "slotId": "mod_pistolgrip" - }, - { - "_id": "657eb30326f0eb0718056209", - "_tpl": "6513eff1e06849f06c0957d4", - "parentId": "657eb30326f0eb0718056205", - "slotId": "mod_barrel" - }, - { - "_id": "657eb30326f0eb071805620a", - "_tpl": "6513f037e06849f06c0957d7", - "parentId": "657eb30326f0eb0718056209", - "slotId": "mod_bipod" - }, - { - "_id": "657eb30326f0eb071805620b", - "_tpl": "6513f0f5e63f29908d0ffab8", - "parentId": "657eb30326f0eb0718056209", - "slotId": "mod_muzzle" - }, - { - "_id": "657eb30326f0eb071805620c", - "_tpl": "6513f05a94c72326990a3866", - "parentId": "657eb30326f0eb0718056205", - "slotId": "mod_handguard" - }, - { - "_id": "657eb30326f0eb071805620d", - "_tpl": "6513f153e63f29908d0ffaba", - "parentId": "657eb30326f0eb0718056205", - "slotId": "mod_sight_rear" - } - ], - "_encyclopedia": "65268d8ecb944ff1e90ea385" + "rating": { + "categories": { + "avgEarnings": false, + "experience": true, + "inventoryFullCost": true, + "kd": false, + "longestShot": true, + "pmcKills": true, + "ragFairStanding": true, + "raidCount": true, + "surviveRatio": false, + "timeOnline": true + }, + "levelRequired": 10, + "limit": 100 + }, + "t_base_lockpicking": 45, + "t_base_looting": 5, + "tournament": { + "categories": { + "dogtags": true + }, + "levelRequired": 1, + "limit": 20 } } -} \ No newline at end of file +} diff --git a/project/assets/database/hideout/areas.json b/project/assets/database/hideout/areas.json index b4c957c8..8b17d6e9 100644 --- a/project/assets/database/hideout/areas.json +++ b/project/assets/database/hideout/areas.json @@ -2971,6 +2971,119 @@ }, "enableAreaRequirements": false }, + { + "_id": "5d494a0e5b56502f18c98a02", + "type": 13, + "enabled": true, + "needsFuel": true, + "takeFromSlotLocked": false, + "craftGivesExp": true, + "displayLevel": true, + "requirements": [], + "stages": { + "0": { + "requirements": [], + "bonuses": [], + "slots": 0, + "constructionTime": 0, + "description": "", + "container": "", + "autoUpgrade": false, + "displayInterface": true, + "improvements": [] + }, + "1": { + "requirements": [ + { + "areaType": 9, + "requiredLevel": 3, + "type": "Area" + }, + { + "templateId": "5449016a4bdc2d6f028b456f", + "count": 400000, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "skillName": "Memory", + "skillLevel": 8, + "type": "Skill" + }, + { + "templateId": "573478bc24597738002c6175", + "count": 1, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "573474f924597738002c6174", + "count": 2, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "590c639286f774151567fa95", + "count": 5, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "590c645c86f77412b01304d9", + "count": 2, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "590c651286f7741e566b6461", + "count": 2, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "62a09e73af34e73a266d932a", + "count": 1, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + } + ], + "bonuses": [ + { + "id": "64f5b9e5fa34f11b380756f7", + "value": 15, + "passive": true, + "production": false, + "visible": true, + "type": "ExperienceRate" + }, + { + "id": "64f5b9e5fa34f11b380756f8", + "value": 30, + "passive": true, + "production": false, + "visible": true, + "skillType": "Practical", + "type": "SkillGroupLevelingBoost" + } + ], + "slots": 0, + "constructionTime": 194400, + "description": "", + "container": "", + "autoUpgrade": false, + "displayInterface": true, + "improvements": [] + } + }, + "enableAreaRequirements": false + }, { "_id": "5d494a175b56502f18c98a04", "type": 14, @@ -3217,6 +3330,354 @@ }, "enableAreaRequirements": false }, + { + "_id": "5d494a295b56502f18c98a08", + "type": 16, + "enabled": true, + "needsFuel": false, + "takeFromSlotLocked": false, + "craftGivesExp": true, + "displayLevel": true, + "requirements": [ + { + "areaType": 22, + "requiredLevel": 6, + "type": "Area" + } + ], + "stages": { + "0": { + "requirements": [], + "bonuses": [], + "slots": 0, + "constructionTime": 0, + "description": "", + "container": "", + "autoUpgrade": false, + "displayInterface": true, + "improvements": [] + }, + "1": { + "requirements": [ + { + "areaType": 15, + "requiredLevel": 2, + "type": "Area" + }, + { + "traderId": "5a7c2eca46aef81a7ca2145d", + "loyaltyLevel": 2, + "type": "TraderLoyalty" + }, + { + "templateId": "5d1b31ce86f7742523398394", + "count": 1, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "5e2af47786f7746d404f3aaa", + "count": 5, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "59e3658a86f7741776641ac4", + "count": 1, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "5d1b392c86f77425243e98fe", + "count": 5, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "590c31c586f774245e3141b2", + "count": 5, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "5734795124597738002c6176", + "count": 2, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + } + ], + "bonuses": [ + { + "id": "6548ae1b0d23be12146d70ee", + "value": 0, + "passive": true, + "production": false, + "visible": true, + "skillType": "Combat", + "type": "SkillGroupLevelingBoost" + }, + { + "id": "6548afcae28f7800b02d2004", + "value": 3, + "passive": true, + "production": false, + "visible": true, + "icon": "/files/Hideout/icon_hideout_videocardslots.png", + "type": "TextBonus" + }, + { + "id": "6548afd9eb937c71d7776652", + "value": 6, + "passive": true, + "production": false, + "visible": true, + "icon": "/files/Hideout/icon_hideout_videocardslots.png", + "type": "TextBonus" + }, + { + "id": "6548afe3e7726b6d1b4317d5", + "value": 6, + "passive": true, + "production": false, + "visible": true, + "icon": "/files/Hideout/icon_hideout_videocardslots.png", + "type": "TextBonus" + } + ], + "slots": 0, + "constructionTime": 43207.2, + "description": "", + "container": "63dbd45917fff4dee40fe16e", + "autoUpgrade": false, + "displayInterface": true, + "improvements": [] + }, + "2": { + "requirements": [ + { + "templateId": "590c639286f774151567fa95", + "count": 1, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "5af04b6486f774195a3ebb49", + "count": 1, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "590c2e1186f77425357b6124", + "count": 1, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "5bc9bc53d4351e00367fbcee", + "count": 1, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "590a3cd386f77436f20848cb", + "count": 10, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "59e35ef086f7741777737012", + "count": 6, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "57347c1124597737fb1379e3", + "count": 3, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "590c346786f77423e50ed342", + "count": 2, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "5e2af22086f7746d3f3c33fa", + "count": 2, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + } + ], + "bonuses": [ + { + "id": "6548ae2c84d9162bba1fbb04", + "value": 0, + "passive": true, + "production": false, + "visible": true, + "skillType": "Combat", + "type": "SkillGroupLevelingBoost" + }, + { + "id": "6549f1926b29cf3df65ea139", + "value": 6, + "passive": true, + "production": false, + "visible": true, + "icon": "/files/Hideout/icon_hideout_videocardslots.png", + "type": "TextBonus" + }, + { + "id": "6549f19ae28f7800b02d204f", + "value": 12, + "passive": true, + "production": false, + "visible": true, + "icon": "/files/Hideout/icon_hideout_videocardslots.png", + "type": "TextBonus" + }, + { + "id": "6549f1a284d9162bba1fbbb1", + "value": 12, + "passive": true, + "production": false, + "visible": true, + "icon": "/files/Hideout/icon_hideout_videocardslots.png", + "type": "TextBonus" + } + ], + "slots": 0, + "constructionTime": 64800, + "description": "", + "container": "65424185a57eea37ed6562e9", + "autoUpgrade": false, + "displayInterface": true, + "improvements": [] + }, + "3": { + "requirements": [ + { + "templateId": "62a0a0bb621468534a797ad5", + "count": 1, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "59e35de086f7741778269d84", + "count": 1, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "59e3639286f7741777737013", + "count": 1, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "590a3cd386f77436f20848cb", + "count": 15, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "5e2af29386f7746d4159f077", + "count": 3, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "57347cd0245977445a2d6ff1", + "count": 3, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "61bf7b6302b3924be92fa8c3", + "count": 15, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + }, + { + "templateId": "59e36c6f86f774176c10a2a7", + "count": 5, + "isFunctional": false, + "isEncoded": false, + "type": "Item" + } + ], + "bonuses": [ + { + "id": "6548ad85d520b562b66d65d9", + "value": 0, + "passive": true, + "production": false, + "visible": true, + "skillType": "Combat", + "type": "SkillGroupLevelingBoost" + }, + { + "id": "6549f1c405b256642e3e9131", + "value": 10, + "passive": true, + "production": false, + "visible": true, + "icon": "/files/Hideout/icon_hideout_videocardslots.png", + "type": "TextBonus" + }, + { + "id": "6549f1cdde376a2fc737e8a8", + "value": 24, + "passive": true, + "production": false, + "visible": true, + "icon": "/files/Hideout/icon_hideout_videocardslots.png", + "type": "TextBonus" + }, + { + "id": "6549f1d37d6e4756c83afa77", + "value": 24, + "passive": true, + "production": false, + "visible": true, + "icon": "/files/Hideout/icon_hideout_videocardslots.png", + "type": "TextBonus" + } + ], + "slots": 0, + "constructionTime": 86400, + "description": "", + "container": "6542435ea57eea37ed6562f0", + "autoUpgrade": false, + "displayInterface": true, + "improvements": [] + } + }, + "enableAreaRequirements": true + }, { "_id": "5d494a315b56502f18c98a0a", "type": 17, @@ -4832,466 +5293,5 @@ } }, "enableAreaRequirements": false - }, - { - "_id": "5d494a0e5b56502f18c98a02", - "type": 13, - "enabled": true, - "needsFuel": true, - "takeFromSlotLocked": false, - "craftGivesExp": true, - "displayLevel": true, - "requirements": [], - "stages": { - "0": { - "requirements": [], - "bonuses": [], - "slots": 0, - "constructionTime": 0, - "description": "", - "container": "", - "autoUpgrade": false, - "displayInterface": true, - "improvements": [] - }, - "1": { - "requirements": [ - { - "areaType": 9, - "requiredLevel": 3, - "type": "Area" - }, - { - "templateId": "5449016a4bdc2d6f028b456f", - "count": 400000, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "skillName": "HideoutManagement", - "skillLevel": 5, - "type": "Skill" - }, - { - "templateId": "573478bc24597738002c6175", - "count": 1, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "573474f924597738002c6174", - "count": 2, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "590c639286f774151567fa95", - "count": 5, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "590c645c86f77412b01304d9", - "count": 2, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "590c651286f7741e566b6461", - "count": 2, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "62a09e73af34e73a266d932a", - "count": 1, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - } - ], - "bonuses": [ - { - "id": "64f5b9e5fa34f11b380756f7", - "value": 15, - "passive": true, - "production": false, - "visible": true, - "type": "ExperienceRate" - }, - { - "id": "64f5b9e5fa34f11b380756f8", - "value": 30, - "passive": true, - "production": false, - "visible": true, - "skillType": "Practical", - "type": "SkillGroupLevelingBoost" - } - ], - "slots": 0, - "constructionTime": 194400, - "description": "", - "container": "", - "autoUpgrade": false, - "displayInterface": true, - "improvements": [] - } - }, - "enableAreaRequirements": false - }, - { - "_id": "5d494a295b56502f18c98a08", - "type": 16, - "enabled": true, - "needsFuel": false, - "takeFromSlotLocked": false, - "craftGivesExp": true, - "displayLevel": true, - "requirements": [ - { - "areaType": 22, - "requiredLevel": 6, - "type": "Area" - } - ], - "stages": { - "0": { - "requirements": [], - "bonuses": [], - "slots": 0, - "constructionTime": 0, - "description": "", - "container": "", - "autoUpgrade": false, - "displayInterface": true, - "improvements": [] - }, - "1": { - "requirements": [ - { - "areaType": 15, - "requiredLevel": 2, - "type": "Area" - }, - { - "traderId": "5a7c2eca46aef81a7ca2145d", - "loyaltyLevel": 2, - "type": "TraderLoyalty" - }, - { - "templateId": "5d1b31ce86f7742523398394", - "count": 1, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "5e2af47786f7746d404f3aaa", - "count": 5, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "59e3658a86f7741776641ac4", - "count": 1, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "5d1b392c86f77425243e98fe", - "count": 5, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "590c31c586f774245e3141b2", - "count": 5, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "5734795124597738002c6176", - "count": 2, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - } - ], - "bonuses": [ - { - "id": "6548ae1b0d23be12146d70ee", - "value": 0, - "passive": true, - "production": false, - "visible": true, - "skillType": "Combat", - "type": "SkillGroupLevelingBoost" - }, - { - "id": "6548afcae28f7800b02d2004", - "value": 3, - "passive": true, - "production": false, - "visible": true, - "icon": "/files/Hideout/EfT_UI_Icons_DogTag.png", - "type": "TextBonus" - }, - { - "id": "6548afd9eb937c71d7776652", - "value": 6, - "passive": true, - "production": false, - "visible": true, - "icon": "/files/Hideout/EfT_UI_Icons_SmallTrophy.png", - "type": "TextBonus" - }, - { - "id": "6548afe3e7726b6d1b4317d5", - "value": 6, - "passive": true, - "production": false, - "visible": true, - "icon": "/files/Hideout/EfT_UI_Icons_BigTrophy.png", - "type": "TextBonus" - } - ], - "slots": 0, - "constructionTime": 43207.2, - "description": "", - "container": "63dbd45917fff4dee40fe16e", - "autoUpgrade": false, - "displayInterface": true, - "improvements": [] - }, - "2": { - "requirements": [ - { - "templateId": "590c639286f774151567fa95", - "count": 1, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "5af04b6486f774195a3ebb49", - "count": 1, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "590c2e1186f77425357b6124", - "count": 1, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "5bc9bc53d4351e00367fbcee", - "count": 1, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "590a3cd386f77436f20848cb", - "count": 10, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "59e35ef086f7741777737012", - "count": 6, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "57347c1124597737fb1379e3", - "count": 3, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "590c346786f77423e50ed342", - "count": 2, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "5e2af22086f7746d3f3c33fa", - "count": 2, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - } - ], - "bonuses": [ - { - "id": "6548ae2c84d9162bba1fbb04", - "value": 0, - "passive": true, - "production": false, - "visible": true, - "skillType": "Combat", - "type": "SkillGroupLevelingBoost" - }, - { - "id": "6549f1926b29cf3df65ea139", - "value": 6, - "passive": true, - "production": false, - "visible": true, - "icon": "/files/Hideout/EfT_UI_Icons_DogTag.png", - "type": "TextBonus" - }, - { - "id": "6549f19ae28f7800b02d204f", - "value": 12, - "passive": true, - "production": false, - "visible": true, - "icon": "/files/Hideout/EfT_UI_Icons_SmallTrophy.png", - "type": "TextBonus" - }, - { - "id": "6549f1a284d9162bba1fbbb1", - "value": 12, - "passive": true, - "production": false, - "visible": true, - "icon": "/files/Hideout/EfT_UI_Icons_BigTrophy.png", - "type": "TextBonus" - } - ], - "slots": 0, - "constructionTime": 64800, - "description": "", - "container": "65424185a57eea37ed6562e9", - "autoUpgrade": false, - "displayInterface": true, - "improvements": [] - }, - "3": { - "requirements": [ - { - "templateId": "62a0a0bb621468534a797ad5", - "count": 1, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "59e35de086f7741778269d84", - "count": 1, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "59e3639286f7741777737013", - "count": 1, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "590a3cd386f77436f20848cb", - "count": 15, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "5e2af29386f7746d4159f077", - "count": 3, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "57347cd0245977445a2d6ff1", - "count": 3, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "61bf7b6302b3924be92fa8c3", - "count": 15, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - }, - { - "templateId": "59e36c6f86f774176c10a2a7", - "count": 5, - "isFunctional": false, - "isEncoded": false, - "type": "Item" - } - ], - "bonuses": [ - { - "id": "6548ad85d520b562b66d65d9", - "value": 0, - "passive": true, - "production": false, - "visible": true, - "skillType": "Combat", - "type": "SkillGroupLevelingBoost" - }, - { - "id": "6549f1c405b256642e3e9131", - "value": 10, - "passive": true, - "production": false, - "visible": true, - "icon": "/files/Hideout/EfT_UI_Icons_DogTag.png", - "type": "TextBonus" - }, - { - "id": "6549f1cdde376a2fc737e8a8", - "value": 24, - "passive": true, - "production": false, - "visible": true, - "icon": "/files/Hideout/EfT_UI_Icons_SmallTrophy.png", - "type": "TextBonus" - }, - { - "id": "6549f1d37d6e4756c83afa77", - "value": 24, - "passive": true, - "production": false, - "visible": true, - "icon": "/files/Hideout/EfT_UI_Icons_BigTrophy.png", - "type": "TextBonus" - } - ], - "slots": 0, - "constructionTime": 86400, - "description": "", - "container": "6542435ea57eea37ed6562f0", - "autoUpgrade": false, - "displayInterface": true, - "improvements": [] - } - }, - "enableAreaRequirements": true } ] \ No newline at end of file diff --git a/project/assets/database/locales/global/ch.json b/project/assets/database/locales/global/ch.json index 9cab7606..2a763d6b 100644 --- a/project/assets/database/locales/global/ch.json +++ b/project/assets/database/locales/global/ch.json @@ -2675,7 +2675,7 @@ "5a16b8a9fcdbcb00165aa6ca Name": "Norotos钛合金高级战术支架 ", "5a16b8a9fcdbcb00165aa6ca ShortName": "TATM", "5a16b8a9fcdbcb00165aa6ca Description": "轻量化的钛合金支架,可安装在头盔的上头罩连接器上。需要在其上安装夜视仪或其他光学设备配合使用。", - "5a16b93dfcdbcbcae6687261 Name": "AN/PVS-14单目夜视仪双燕尾槽安装座", + "5a16b93dfcdbcbcae6687261 Name": "PVS-14单目夜视仪双燕尾槽安装座", "5a16b93dfcdbcbcae6687261 ShortName": "DDT", "5a16b93dfcdbcbcae6687261 Description": "PVS-14用双燕尾槽转接臂。", "5a16b9fffcdbcb0176308b34 Name": "Ops-Core FAST RAC 耳机", @@ -3465,7 +3465,7 @@ "5ae089fb5acfc408fb13989b ShortName": "奖杯", "5ae089fb5acfc408fb13989b Description": "奖杯", "5ae08f0a5acfc408fb1398a1 Name": "莫辛-纳甘 M91/30 PU 7.62x54 狙击步枪", - "5ae08f0a5acfc408fb1398a1 ShortName": "莫辛狙击式", + "5ae08f0a5acfc408fb1398a1 ShortName": "莫辛", "5ae08f0a5acfc408fb1398a1 Description": "莫辛纳甘M91/30 PU是一款著名俄式步枪的狙击变种,此步枪在第二次世界大战中经常被俄国狙击手所使用。", "5ae096d95acfc400185c2c81 Name": "莫辛步枪标准枪托", "5ae096d95acfc400185c2c81 ShortName": "莫辛枪托", @@ -4577,7 +4577,7 @@ "5c10c8fd86f7743d7d706df3 Name": "肾上腺素注射器", "5c10c8fd86f7743d7d706df3 ShortName": "肾上腺素", "5c10c8fd86f7743d7d706df3 Description": "一次性无菌注射器,含有一剂肾上腺素——肾上腺髓质的主要激素。用于在增强生理反应的同时为强烈的肌肉活动做准备。可以短暂提升力量和耐力以及缓解疼痛。", - "5c11046cd174af02a012e42b Name": "PVS-7 Wilcox接口", + "5c11046cd174af02a012e42b Name": "Wilcox PVS-7接口", "5c11046cd174af02a012e42b ShortName": "W-PVS7", "5c11046cd174af02a012e42b Description": "Wilcox生产的AN/PVS-7B/7D用NVG接口用于代替各种夜视设备使用的塑料基座。", "5c110624d174af029e69734c Name": "T7夜视仪基座热成像目镜", @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "NcSTAR公司生产的小型蓝点战术激光瞄准模块。", "5cd945d71388ce000a659dfb Name": "BEAR基础上装", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Combat shirt", "5cd946231388ce000d572fe3 Name": "BEAR基础下装", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "ASh-12 垂直手枪式握把", "5cda9bcfd7f00c0c0b53e900 ShortName": "ASh-12", "5cda9bcfd7f00c0c0b53e900 Description": "ASh-12的垂直手枪式握把。", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "USEC基础下装", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", "5cde9ec17d6c8b04723cf479 Name": "USEC基础上装", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Adik运动裤", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", "5cdea42e7d6c8b0474535dad Name": "Adik运动服", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "M700 Magpul Pro 700框架", "5cdeac22d7f00c000f26168f ShortName": "Pro700", "5cdeac22d7f00c000f26168f Description": "PRO 700是Magpul为雷明顿M700设计的一款轻巧、符合人体工程学的框架。", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "BEAR黑色山猫", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", "5d1f60ae86f7744bcc04998b Name": "BEAR承包商T恤", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "FSB快速反应部队", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "BEAR幽灵神射手", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "BEAR夏季迷彩", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "USEC侵略者TAC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "USEC Softshell Flexion", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "USEC林地潜伏者", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Combat shirt", "5d1f623886f7743014163027 Name": "USEC PCS多地形迷彩", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "USEC PCU Ironsight", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "FSB Urban Tact", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "BEAR Gorka Kobra", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "BEAR Gorka SSO", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "BEAR先锋渗透行动队", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "BEAR夏季迷彩", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "USEC Gen.2 Khyber", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "USEC林地潜伏者", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "USEC流浪者牛仔裤", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "USEC Taclife Terrain", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "USEC TACRES", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "AR-10 Daniel Defence WAVE 7.62x51膛口制退器", "5d1f819086f7744b355c219b ShortName": "Wave制退", "5d1f819086f7744b355c219b Description": "Daniel Defence Wave是一个非常有效的膛口制退器,也可作为安装QD Wave声音抑制器的平台。", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "USEC Commando", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "Knight's Armament公司量产的SR-25步枪上机匣。", "5df8e5c886f7744a122d6834 Name": "BEAR Zaslon", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "Meteor", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "BEAR Oldschool", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "USEC TIER2", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "Sklon", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "由Crye Precision设计并由Ars Arms改良的的第二代CPC防弹衣,供俄联邦特种部队使用。这种模块化的防弹衣是基于一种合身的聚合物紧身衣,避免了剧烈运动时防弹衣的摆动,也有助于更均匀地分配重量。预制突击型布局的口袋和装甲模块。", "5e4bb08f86f774069619fbbc Name": "BEAR Telnik", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "USEC TIER2", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "BEAR TIGR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "USEC Commando", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "俄罗斯夹克", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "BEAR TIGR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "USEC Urban Responder", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "BEAR Zaslon", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "USEC Deep Recon", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Tactical pants", "5e9dcf5986f7746c417435b3 Name": "LBT-8005A Day Pack背包", "5e9dcf5986f7746c417435b3 ShortName": "Day Pack", "5e9dcf5986f7746c417435b3 Description": "一个简单可靠的14升黑色多地形迷彩涂装背包。", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "Direct Action固定式胸挂,包含所有你能用到的基础口袋。", "5f5f45df0bc58666c37e7832 Name": "BEAR G99", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "USEC Night Patrol", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "BEAR G99", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "USEC Urban Responder", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Scav Boot", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "BEAR SRVV", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "USEC TIER3", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": ".300 AAC Blackout AP", "5fd20ff893a8961fc660a954 ShortName": "AP", "5fd20ff893a8961fc660a954 Description": ".300 AAC Blackout 穿甲弹", "5fd3e77be504291efd0040ad Name": "USEC VEKTOR", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "BEAR Boreas", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "BEAR Grizzly", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "USEC Adaptive Combat", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "带有不可拆卸口袋的简易尼龙负重系统。允许你在牺牲一定便捷性的条件下携带更多弹药。", "6038b228af2e28262649af14 Name": "BEAR Rash Guard", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "USEC Sandstone", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", "6038b4b292ec1c3103795a0b Name": "LBT 6094A 轻型插板胸挂 (tan)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "LBT 公司的简易插板胸挂。专门为胸挂进行了简约设计。", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "TP-200是用于地震勘探、钻孔炸药、破碎超大物品和执行特殊爆破作业时的中间雷管。", "603d01a1b41c9b37c6592047 Name": "BEAR VOIN", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "USEC Sage Warrior", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Azimut SS \"Zhuk\"胸挂(SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Azimut", "6040dd4ddcf9592f401632d2 Description": "带有不可拆卸口袋的简易负重系统。允许你在牺牲一定便捷性的条件下携带更多弹药。", @@ -8239,10 +8239,10 @@ "619b69037b9de8162902673e Description": "这款产品同时面向民用与军用市场。CQR枪托可以简便地安装在AK/AKM不可折叠枪托上。", "619b99ad604fcc392676806c Name": "BEAR 侦查", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "USEC K4", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", "619bc61e86e01e16f839a999 Name": "\"Alpha\" 臂带", "619bc61e86e01e16f839a999 ShortName": "Alpha", "619bc61e86e01e16f839a999 Description": "一款准备给从Alpha时期就开始待在塔科夫的老兵的臂带。", @@ -8275,10 +8275,10 @@ "619bdfd4c9546643a67df6fa Description": "USEC专业干员所佩戴的臂带。", "619bf75264927e572d0d5853 Name": "BEAR Sumrak", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "军用波纹软管", "619cbf476b8a1b37a54eebf8 ShortName": "军用波纹软管", "619cbf476b8a1b37a54eebf8 Description": "军用波纹软管被用在通风系统和空气过滤单元中。", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "USEC变色龙", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "BEAR VOLK", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "BEAR郊狼", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "USEC DesOps", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Death Knight面具", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "来自Goons小队指挥官的奇特面具。它来自Goons小队,一群没有打算撤出塔科夫,而是想要建立新秩序的前USEC行动人员。", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "USEC Predator", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", "64f07f7726cfa02c506f8ac0 Name": "日记本", "64f07f7726cfa02c506f8ac0 ShortName": "日记本", "64f07f7726cfa02c506f8ac0 Description": "日记本。写它的人喜欢一切关于苏联的东西。", @@ -11920,7 +11920,7 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "USEC Defender", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "USEC BOSS Delta", "657f8e9824d2053bb360b51d ShortName": "USEC BOSS Delta", "657f8e9824d2053bb360b51d Description": "USEC BOSS Delta", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "BEAR URON", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "BEAR OPS MGS", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Tactical jacket", "657f925dada5fadd1f07a57a Name": "混合复合材料", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "死去的平民", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", " V-ex_light": "通往军事基地的载具撤离点", " Voip/DisabledForOffline": "VOIP在离线模式中不可用", " kg": "千克", @@ -12085,9 +12070,9 @@ "4:3 - Not wide": "4:3 全屏", "4x supersampling": "4倍超级采样", "5070Kills": "51-70级玩家击杀数", - "65bd1875c443e7fffb006e83": "一级", - "65bd187e578fa4a9f503f003": "二级", - "65bd1882b7378d56ab0817c3": "三级", + "65bd1875c443e7fffb006e83": "Tier 1", + "65bd187e578fa4a9f503f003": "Tier 2", + "65bd1882b7378d56ab0817c3": "Tier 3", "7099Kills": "71-99级玩家击杀数", "ELITE Level": "精英等级", "A LOT": "大量", @@ -12102,8 +12087,6 @@ "AI amount": "AI数量", "AI difficulty": "AI难度", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "穿透力", - "AMMO PROJECTILE COUNT": "弹片数量", "ARMOR CLASS": "防弹级别", "ARMOR POINTS": "护甲耐久", "ARMOR TYPE": "护甲类型", @@ -12146,12 +12129,11 @@ "AheadOfTimeEnding": "完成时间", "Aim": "瞄准", "AimDrills": "瞄准训练", - "AimDrillsLevelingUpDescription": "瞄准训练技能可以在瞄准并击中敌人时得到提升。", "AimMaster": "瞄准大师", "AimMasterDescription": "精通瞄准可以降低瞄准所需时间并立即降低枪管晃动。", - "AimMasterElite": "提高瞄准速度 [{0:0.#%}]", - "AimMasterSpeed": "提高瞄准速度 [{0:0.#%}]", - "AimMasterWiggle": "“精确瞄准” 摆动 [{0:0.#%}]", + "AimMasterElite": "提高瞄准速度 [{0:0%}]", + "AimMasterSpeed": "提高瞄准速度 [{0:0%}]", + "AimMasterWiggle": "“精确瞄准” 摆动[(+{0:0%})]", "Aiming deadzone:": "瞄准盲区:", "AirFilteringUnit": "空气过滤单元", "AirplaneDelayMessage": "稍安勿躁!空域目前已被占用", @@ -12241,12 +12223,9 @@ "Arena/CustomGames/toggle/tournament": "比赛", "Arena/EndMatchNotification": "对局已在你离开时结束", "Arena/Matching/CustomGames": "自定义游戏", - "Arena/Notification/Selection/Blocked": "无法购买预设", "Arena/OnCancelMatch": "由于加载时出现问题,对局已取消", "Arena/OnCancelMatch/Group": "由于其他玩家在加载时出现问题,对局已取消", "Arena/OnCancelMatch/NoServer": "无法找到可用服务器。请稍后再试。", - "Arena/Popups/TwitchDropsHeader": "兑换礼物", - "Arena/Preset/Tooltip/Tab/6": "多种珍藏级预设。", "Arena/Preset/Tooltip/Tab/Assault": "突击是最万能的类别。此类别下的预设装备十分均衡,适合大部分交战场景。", "Arena/Preset/Tooltip/Tab/CQB": "CQB是竞技场中的重甲类别,配备了防弹面罩和主武器的大容量弹匣。此类别下的预设装备特别适合防守点位,也能轻松应对拉锯战。", "Arena/Preset/Tooltip/Tab/Collection": "通过竞技场特殊成就解锁的预设。", @@ -12294,19 +12273,13 @@ "Arena/TeamColor/white_plural": "白", "Arena/TeamColor/yellow": "黄", "Arena/TeamColor/yellow_plural": "黄", - "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "一位或多位组队成员金钱不足", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "一位或多位组队成员已解锁预设数量不足", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "一位或多位组队成员已解锁 {0} 预设数量不足", - "Arena/Tiers/LockedBy/PovertyThreshold": "没有足够的金钱使用该等级", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "没有足够的金钱使用 {0}", - "Arena/Tiers/LockedBy/PresetsUnlocked": "没有足够的已解锁预设", - "Arena/Tiers/LockedBy/UnavailableTier": "该等级暂未开放", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} 暂未开放", - "Arena/Tiers/RankingAvailable {0}": "无法参加排位模式:无法使用 {0} 预设", - "Arena/Tiers/Unlocked {0} presets": "{0} 预设已解锁", - "Arena/Tiers/UnlockedPresets": "预设已解锁", - "Arena/Tooltip/MapSelectedCounter": "已选地图数量", - "Arena/Tooltip/MinMapCount {0}": "请选择多个地图。你需要同时选择至少 {0} 个地图。", + "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", + "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", + "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", + "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", + "Arena/Tiers/UnlockedPresets": "Presets unlocked", "Arena/UI/Awaiting-Players": "等待玩家中", "Arena/UI/Confirm-Match": "确认", "Arena/UI/CustomMode": "自定义", @@ -12325,10 +12298,8 @@ "Arena/UI/Match_leaving_forbidden_body": "如果你离开对局,你会将队友置于劣势之中。
你将会失去待定奖励与评分,并且可能受到暂时禁赛。", "Arena/UI/Match_leaving_forbidden_header": "注意!你将要离开对局!", "Arena/UI/Match_leaving_permitted_header": "你现在可以离开对局并免受惩罚", - "Arena/UI/PresetResetToDefault": "以下预设已被重置为默认:", "Arena/UI/Return": "返回", "Arena/UI/Return-to-match": "返回对局", - "Arena/UI/Selection/Blocked": "预设已被占用", "Arena/UI/Waiting": "等待中...", "Arena/Ui/ServerFounding": "寻找服务器中...", "Arena/Widgets/Observer/capture point": "夺取目标点", @@ -12383,16 +12354,9 @@ "ArenaUI/PresetView/FreePreset": "免费", "ArenaUI/PresetView/PresetPreview": "装备预览", "ArenaUI/PresetView/ShopPrice": "价格", - "Arena_AirPit": "机库", - "Arena_AutoService": "销赃店", - "Arena_Bay5": "5号湾", - "Arena_Bowl": "体育馆", - "Arena_Yard": "街道", - "Arena_equator_TDM_02": "Equator购物中心", "Arena_result_final": "最终", "Arena_result_result": "对战结果", "Arena_result_rounds": "回合", - "Arena_saw": "锯木厂", "Armband": "臂带", "Armor": "护甲", "Armor Zone BackHead": "后颈", @@ -12438,13 +12402,11 @@ "Assault": "突击步枪", "AssaultCarbine Mastering": "突击卡宾枪", "AssaultDescription": "突击步枪使用技能可以提升对突击步枪的后坐力控制及总体掌握。", - "AssaultLevelingUpDescription": "突击步枪技能可以在使用对应类别的武器射击、换弹时得到提升。", "AssaultRifle": "突击步枪", "AssaultRifle Mastering": "突击步枪", "AssortmentUnlockReward/Description": "作为奖励,你将可以在 {0} 处购买这一物品", "AttachedLauncher": "下挂发射器", "AttachedLauncherDescription": "下挂式榴弹发射器使用技能", - "AttachedLauncherLevelingUpDescription": "下挂式榴弹发射器技能可以在使用对应类别的武器射击、换弹时得到提升。", "Attention": "专注", "Attention!": "注意!", "Attention! All items, brought by you into the raid or found in it, have been lost.": "注意!你已丢失了你带入战局或在战局中找到的所有物品。", @@ -12455,10 +12417,9 @@ "Attention! You’ve left the raid and lost everything you brought or found in it.": "注意!你已经离开战局并丢失了你带入战局或在战局中找到的所有物品。", "AttentionDescription": "专注可以提升搜刮各种容器的速度。", "AttentionEliteExtraLootExp": "搜索经验加倍", - "AttentionEliteLuckySearch": "有 [{0:0.#%}] 几率在容器中瞬间找到物品", - "AttentionLevelingUpDescription": "专注技能可以在搜索容器和尸体时得到提升。", - "AttentionLootSpeed": "提升搜刮速度 [{0:0.#%}]", - "AttentionRareLoot": "提升物品检视速度 [{0:0.#%}]", + "AttentionEliteLuckySearch": "有 [({0})] 几率在容器中瞬间找到物品", + "AttentionLootSpeed": "提升搜刮速度 [{0:0%}]", + "AttentionRareLoot": "提升物品检视速度 [{0:0%}]", "Auctionsdescription": "拍卖", "Authentic": "母语", "Authorization": "授权", @@ -12512,7 +12473,6 @@ "Bloom": "光晕效果:", "BodyTemperature": "体温", "Boiler Tanks": "锅炉水箱", - "BonfireBuff": "篝火暖身", "BoozeGenerator": "酒饮生成器", "Boss pick": "Boss", "BossType/AsOnline": "同在线", @@ -12613,17 +12573,16 @@ "Charge": "枪栓", "Charisma": "魅力", "CharismaAdditionalDailyQuests": "额外增加一个每日行动任务", - "CharismaBuff1": "降低商人的交易价格 [{0:0.#%}]", - "CharismaBuff2": "提升商人信任度提升速率 [{0:0.#%}]", - "CharismaDailyQuestsRerollDiscount": "降低行动任务更换消耗 [{0:0.#%}]", + "CharismaBuff1": "降低商人的交易价格 [{0:0%}]", + "CharismaBuff2": "提升商人信任度提升速率 [{0:0%}]", + "CharismaDailyQuestsRerollDiscount": "降低行动任务更换消耗 [{0:0%}]", "CharismaDescription": "魅力会影响商人各项服务的折扣力度。", "CharismaEliteBuff1": "你是第一个知道最新的交易新闻的人", - "CharismaEliteBuff2": "提升每笔交易的利润 [{0:0.#%}]", - "CharismaExfiltrationDiscount": "降低付费撤离点价格 [{0:0.#%}]", + "CharismaEliteBuff2": "提升每笔交易的利润 [{0:0%}]", + "CharismaExfiltrationDiscount": "降低付费撤离点价格 [{0:0%}]", "CharismaFenceRepPenaltyReduction": "降低Fence信任度惩罚", - "CharismaHealingDiscount": "降低战局后治疗服务的费用 [{0:0.#%}]", - "CharismaInsuranceDiscount": "降低保险服务费用 [{0:0.#%}]", - "CharismaLevelingUpDescription": "魅力技能可以在提升专注、感知和智力技能时间接得到提升。", + "CharismaHealingDiscount": "降低战局后治疗服务的费用 [{0:0%}]", + "CharismaInsuranceDiscount": "降低保险服务费用 [{0:0%}]", "CharismaScavCaseDiscount": "获得Scav宝箱折扣", "ChatScreen/QuestItemsListHeader": "以下物品将被转移到任务物品专用仓库:", "ChatScreen/QuestItemsMoved": "物品已被成功转移到任务物品专用仓库", @@ -12651,19 +12610,19 @@ "Close the game": "关闭游戏", "CloseBufferGates": "关上门", "CloseDoor": "关上", - "ClothingItem/Equipped": "已装备", - "ClothingItem/Obtained": "已获取", - "ClothingItem/Preview": "预览", - "ClothingItem/Purchase": "可用", - "ClothingItem/Unavailable": "不可用", - "ClothingPanel/ExternalObtain": "可在网站上购买", - "ClothingPanel/InternalObtain": "商人交易条件:", - "ClothingPanel/LoyaltyLevel": "商人\n信任度等级:", - "ClothingPanel/PlayerLevel": "玩家\n等级:", - "ClothingPanel/RequiredPayment": "需要的\n金额:", - "ClothingPanel/RequiredQuest": "前置\n任务条件:", - "ClothingPanel/RequiredSkill": "需要的\n级能等级:", - "ClothingPanel/StandingLevel": "商人\n声望:", + "ClothingItem/Equipped": "Equipped", + "ClothingItem/Obtained": "Obtained", + "ClothingItem/Preview": "Preview", + "ClothingItem/Purchase": "Available", + "ClothingItem/Unavailable": "Unavailable", + "ClothingPanel/ExternalObtain": "Available for purchase on the website", + "ClothingPanel/InternalObtain": "Trader purchase conditions:", + "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", + "ClothingPanel/PlayerLevel": "Player\nLevel:", + "ClothingPanel/RequiredPayment": "Required\nPayment:", + "ClothingPanel/RequiredQuest": "Completed\ntask:", + "ClothingPanel/RequiredSkill": "Required\nSkill:", + "ClothingPanel/StandingLevel": "Trader\nStanding:", "CloudinessType/Clear": "晴", "CloudinessType/Cloudy": "多云", "CloudinessType/CloudyWithGaps": "多云转晴", @@ -12740,17 +12699,15 @@ "CovertMovement": "隐蔽行动", "CovertMovementDescription": "隐蔽行动可以让你的脚步声更轻并且缩小声音传播的范围。", "CovertMovementElite": "在任何材质的表面上隐蔽行动都会同样安静。", - "CovertMovementEquipment": "降低使用武器和装备时的声音 [{0:0.#%}]", - "CovertMovementLevelingUpDescription": "隐蔽行动技能可以在无声前行时得到提升。", - "CovertMovementLoud": "降低在特殊表面上行走时的脚步声 [{0:0.#%}]", - "CovertMovementSoundRadius": "降低隐蔽行动时的声音半径 [{0:0.#%}]", - "CovertMovementSoundVolume": "降低在一般表面上行走时的脚步声 [{0:0.#%}]", - "CovertMovementSpeed": "提升隐蔽行动时的速度 [{0:0.#%}]", + "CovertMovementEquipment": "降低使用武器和装备时的声音 [{0:0%}]", + "CovertMovementLoud": "降低在特殊表面上行走时的脚步声 [{0:0%}]", + "CovertMovementSoundRadius": "降低隐蔽行动时的声音半径 [{0:0%}]", + "CovertMovementSoundVolume": "降低在一般表面上行走时的脚步声 [{0:0%}]", + "CovertMovementSpeed": "提升隐蔽行动时的速度 [{0:0%}]", "Crafting": "工艺", - "CraftingContinueTimeReduce": "降低所有循环生产(比特币矿场除外)的时间消耗 [{0:0.#%}]", + "CraftingContinueTimeReduce": "降低所有循环生产(比特币矿场除外)的时间消耗 [{0:0.##%}]", "CraftingElite": "每个区域可以同时制造两种不同物品", - "CraftingLevelingUpDescription": "工艺技能可以在藏身处制造物品时得到提升。", - "CraftingSingleTimeReduce": "降低制造物品的时间消耗 [{0:0.#%}]", + "CraftingSingleTimeReduce": "降低制造物品的时间消耗 [{0:0.##%}]", "Craftingdescription": "提高工艺技能可以减少物品的生产时间,包括那些循环生产的物品。", "Create group dialog": "创建聊天组", "CreateDialog": "{0} 创建了一个聊天组!", @@ -12779,7 +12736,6 @@ "DISPOSE": "丢弃", "DMR": "精确射手步枪", "DMRDescription": "精确射手步枪使用技能可以提升对精确射手步枪的后坐力控制及总体掌握。", - "DMRLevelingUpDescription": "精确射手步枪技能可以在使用对应类别的武器射击、换弹时得到提升。", "DON'T TRY TO LEAVE": "不要试图离开", "DONTKNOW": "不知道", "DOWN": "友军倒下", @@ -12908,11 +12864,11 @@ "DrawElite": "无论耐力状况如何,开始瞄准后均可在前3秒中保持稳定", "DrawMaster": "快拔大师", "DrawMasterDescription": "快拔精通可以使武器间切换变得更快。", - "DrawMasterElite": "提升武器切换速度 [{0:0.#%}]", - "DrawMasterSpeed": "提升武器切换速度 [{0:0.#%}]", - "DrawSound": "降低瞄准声音 [{0:0.#%}]", - "DrawSpeed": "提升瞄准速度 [{0:0.#%}]", - "DrawTremor": "降低 [50%] 前2秒瞄准时的颤栗影响", + "DrawMasterElite": "提升武器切换速度 [{0:0%}]", + "DrawMasterSpeed": "提升武器切换速度 [{0:0%}]", + "DrawSound": "降低瞄准声音 [{0:0%}]", + "DrawSpeed": "提升瞄准速度 [{0:0%}]", + "DrawTremor": "降低50%前2秒瞄准时的颤栗影响", "DropBackpack": "扔掉背包", "DropItem": "丢下物品", "Duck": "蹲下", @@ -12934,7 +12890,6 @@ "EAntialiasingMode/None": "关闭", "EAntialiasingMode/TAA_High": "TAA 高", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", "EArenaPresetsType/Assault": "突击", "EArenaPresetsType/CQB": "CQB", "EArenaPresetsType/Marksman": "狙击", @@ -13136,13 +13091,12 @@ "Enabled": "已启用", "Endurance": "耐力", "EnduranceBreathElite": "呼吸不再受能量值影响", - "EnduranceBuffBreathTimeInc": "提升屏息时间 [{0:0.#%}]", - "EnduranceBuffEnduranceInc": "提升耐力 [{0:0.#%}]", - "EnduranceBuffJumpCostRed": "降低跳跃时的耐力消耗 [{0:0.#%}]", - "EnduranceBuffRestorationTimeRed": "降低呼吸恢复耗时 [{0:0.#%}]", + "EnduranceBuffBreathTimeInc": "提升屏息时间 [{0:0%}]", + "EnduranceBuffEnduranceInc": "提升耐力 [{0:0%}]", + "EnduranceBuffJumpCostRed": "降低跳跃时的耐力消耗 [{0:0%}]", + "EnduranceBuffRestorationTimeRed": "降低呼吸恢复耗时 [{0:0%}]", "EnduranceDescription": "耐力影响跑步或跳跃时的耐力量和耐力消耗率,以及屏息时间和恢复呼吸速度。", "EnduranceHands": "加强手臂耐力", - "EnduranceLevelingUpDescription": "耐力技能可以在未超重时,通过冲刺来提升,也可以通过藏身处健身来提升。", "EnergyExpensesUp {0}": "能量消耗增加 {0}", "EnergyRate": "能量恢复", "Enter": "进入", @@ -13272,7 +13226,6 @@ "Friends": "好友", "Friends invite is already sent": "你已经发送了一个好友请求。", "Friends list": "好友列表", - "FrostbiteBuff": "寒冷冻伤", "Full": "满", "Full Recovery Time": "完全恢复时间", "Fullscreen mode:": "屏幕模式:", @@ -13341,7 +13294,6 @@ "HIT": "友军伤亡", "HMG": "重机枪", "HMGDescription": "重机枪使用技能可以提升对重机枪的后坐力控制及总体掌握。", - "HMGLevelingUpDescription": "重机枪技能可以在使用对应类别的武器射击、换弹时得到提升。", "HOLD FIRE": "快停火", "HOLDFIRE": "快停火", "HOLDPOSITION": "守原地", @@ -13372,27 +13324,25 @@ "Health/ItemResourceDepleted": "物品已被用尽", "Health/PlayerIsDead": "角色已死亡", "HealthAndPhysics": "生命健康和身体状态", - "HealthBreakChanceRed": "降低四肢骨折概率 [{0:0.#%}]", + "HealthBreakChanceRed": "降低四肢骨折概率 [{0:0%}]", "HealthDescription": "良好的健康可以加快被击中后伤口的回复速度,并降低骨折发生的几率,同时减少能量和水分的消耗。", "HealthEliteAbsorbDamage": "伤害吸收", "HealthElitePosion": "毒素免疫等级 [({0})]", - "HealthEnergy": "降低能量消耗 [{0:0.#%}]", - "HealthHydration": "降低水分消耗 [{0:0.#%}]", - "HealthLevelingUpDescription": "健康技能可以在提升力量、耐力和活力技能时间接得到提升。", - "HealthOfflineRegenerationInc": "提升战局外生命值恢复速度 [{0:0.#%}]", + "HealthEnergy": "降低能量消耗 [{0:0%}]", + "HealthHydration": "降低水分消耗 [{0:0%}]", + "HealthOfflineRegenerationInc": "提升战局外生命值恢复速度 [{0:0%}]", "HealthRate": "生命恢复", "HealthTreatment/SkipHealthTreatmentDialogue": "注意!你的生命值很低。\n确定要跳过治疗并\n回到主界面?", "Heating": "加热器", "Heavy": "重型", "HeavyBleeding": "大出血", - "HeavyVestBluntThroughputDamageReduction": "降低受重型护甲保护部位受到的钝伤 [{0:0.#%}]", - "HeavyVestDeteriorationChanceOnRepairReduce": "维修时有 [50%] 几率不产生损耗", - "HeavyVestMoveSpeedPenaltyReduction": "降低装备重型护甲时的移动速度惩罚 [{0:0.#%}]", + "HeavyVestBluntThroughputDamageReduction": "降低受重型护甲保护部位受到的钝伤 [{0:0%}]", + "HeavyVestDeteriorationChanceOnRepairReduce": "维修时有几率不产生损耗 [(-{0:0%})]", + "HeavyVestMoveSpeedPenaltyReduction": "降低装备重型护甲时的移动速度惩罚 [{0:0%}]", "HeavyVestNoBodyDamageDeflectChance": "重型护甲有几率跳弹", - "HeavyVestRepairDegradationReduction": "减少使用维修套件时的消耗 [{0:0.#%}]", + "HeavyVestRepairDegradationReduction": "减少使用维修套件时的消耗 [{0:0%}]", "HeavyVests": "重型护甲", "HeavyVestsDescription": "重型护甲穿着技能可以降低被击穿后对健康的损害,降低爆炸伤害对护甲自身和健康的影响,并且增强机动力。", - "HeavyVestsLevelingUpDescription": "重型护甲技能可以在通过维修套件修复重型防弹衣、插板时得到提升。", "Hideout/Craft/ToolMarkerTooltip": "这件物品将被用作为辅助工具。一旦制造完成,它会回到你的仓库中。", "Hideout/Handover window/Caption/All weapons": "所有武器", "Hideout/Handover window/Message/Items in stash selected:": "已选择仓库物品:", @@ -13405,9 +13355,8 @@ "HideoutExtraSlots": "+2个燃料罐槽\n+2个滤水器槽\n+2个空气过滤器槽\n+2比特币储存上限", "HideoutInteractions/TransferItems": "转移物品", "HideoutManagement": "藏身处管理", - "HideoutManagementLevelingUpDescription": "藏身处管理技能可以在进行制造和藏身处设施升级时得到提升。", - "HideoutResourceConsumption": "降低燃料、空气及水过滤器的消耗速率 [{0:0.#%}]", - "HideoutZoneBonusBoost": "提升藏身处所有区域奖励值 [{0:0.#}%]", + "HideoutResourceConsumption": "降低燃料、空气及水过滤器的消耗速率 [{0:0%}]", + "HideoutZoneBonusBoost": "提升藏身处所有区域奖励值的 [{0:0}%]", "Hideout\\Craft\\ToolMarketTooltip": "", "Hideout_area_16_stage_3_description": "在藏身处开辟的一整块区域,专门用来展示收藏品。", "Hiding objective {0:F1}": "藏匿目标中{0:F1}", @@ -13442,14 +13391,13 @@ "Identifier": "源字符", "Illumination": "照明", "Immunity": "免疫", - "ImmunityAvoidPoisonChance": "提升免受中毒的概率 [{0:0.#%}]", + "ImmunityAvoidPoisonChance": "提升免受中毒的概率 [{0:0%}]", "ImmunityDescription": "免疫会影响染病几率以及治愈的速度。", - "ImmunityLevelingUpDescription": "免疫技能可以在承受中毒及药品副作用时得到提升。", - "ImmunityMiscEffects": "降低所有兴奋剂和饮食的副作用 [{0:0.#%}]", - "ImmunityMiscEffectsChance": "有 [{0:0.#%}] 几率免受兴奋剂和饮食的副作用", - "ImmunityPainKiller": "提升止痛药持续时间 [{0:0.#%}]", - "ImmunityPoisonBuff": "降低毒性发作时的伤害 [{0:0.#%}]", - "ImmunityPoisonChance": "免疫中毒的概率 [{0:0.#%}]", + "ImmunityMiscEffects": "降低所有兴奋剂和饮食的副作用 [{0:0%}]", + "ImmunityMiscEffectsChance": "有 [{0:0%}] 几率免受兴奋剂和饮食的副作用", + "ImmunityPainKiller": "提升止痛药持续时间 [{0:0%}]", + "ImmunityPoisonBuff": "降低毒性发作时的伤害 [{0:0%}]", + "ImmunityPoisonChance": "免疫中毒的概率 [({0:0%})]", "In equipment": "装备中", "InMenu": "菜单", "InRaid": "战局", @@ -13472,10 +13420,9 @@ "IntellectEliteAmmoCounter": "弹药计数器", "IntellectEliteContainerScope": "不用搜索也能猜到容器里的内容", "IntellectEliteNaturalLearner": "你不需要手册就能解析物品", - "IntellectLearningSpeed": "提升物品检视速度 [{0:0.#%}]", - "IntellectLevelingUpDescription": "智力技能可以在检视新物品和维修物品时得到提升。", - "IntellectRepairPointsCostReduction": "降低维修套件消耗 [{0:0.#%}]", - "IntellectWeaponMaintance": "提高武器维修效果 [{0:0.#%}]", + "IntellectLearningSpeed": "提升物品检视速度 [{0:0%}]", + "IntellectRepairPointsCostReduction": "降低维修套件消耗 [{0:0%}]", + "IntellectWeaponMaintance": "提高武器维修效果 [{0:0%}]", "IntelligenceCenter": "情报中心", "Intensity:": "强度:", "Interact": "互动", @@ -13645,7 +13592,6 @@ "LL": "LL", "LMG": "轻机枪", "LMGDescription": "轻机枪使用技能可以提升对轻机枪的后坐力控制及总体掌握。", - "LMGLevelingUpDescription": "轻机枪技能可以在使用对应类别的武器射击、换弹时得到提升。", "LOAD": "装填", "LOAD FROM DIRECTORY...": "从目录载入...", "LOAD FROM FILE...": "从文件载入...", @@ -13665,9 +13611,8 @@ "LastHero": "LastHero", "LastHeroDescription": "多人死斗。只有一人能够获胜。", "LastHeroDescriptionShort": "孤军奋战,胜者为王", - "Launcher": "榴弹发射器", + "Launcher": "火箭发射器", "LauncherDescription": "榴弹发射器使用技能", - "LauncherLevelingUpDescription": "榴弹发射器技能可以在使用对应类别的武器射击、换弹时得到提升。", "LeanLockLeft": "向左侧身", "LeanLockRight": "向右侧身", "LeanX negative": "缓慢向左倾", @@ -13698,13 +13643,12 @@ "Light": "轻型", "LightBleeding": "轻微出血", "LightVestBleedingProtection": "受轻型护甲保护的部位免疫失血", - "LightVestDeteriorationChanceOnRepairReduce": "维修时有 [50%] 几率不产生损耗", - "LightVestMeleeWeaponDamageReduction": "降低受轻型护甲保护部位受到的近战武器伤害 [{0:0.#%}]", - "LightVestMoveSpeedPenaltyReduction": "降低装备轻型护甲时的移动速度惩罚 [{0:0.#%}]", - "LightVestRepairDegradationReduction": "降低使用维修套件时的消耗 [{0:0.#%}]", + "LightVestDeteriorationChanceOnRepairReduce": "维修时有几率不产生损耗 [(-{0:0%})]", + "LightVestMeleeWeaponDamageReduction": "降低受轻型护甲保护部位受到的近战武器伤害 [{0:0%}]", + "LightVestMoveSpeedPenaltyReduction": "降低装备轻型护甲时的移动速度惩罚 [{0:0%}]", + "LightVestRepairDegradationReduction": "降低使用维修套件时的消耗 [{0:0%}]", "LightVests": "轻型护甲", "LightVestsDescription": "轻型防弹衣穿着技能可以增加机动力,降低被击穿和受近战攻击时健康的损害。", - "LightVestsLevelingUpDescription": "轻型护甲技能可以在通过维修套件修复重型防弹衣、插板时得到提升。", "Lighthouse": "灯塔", "Lighthouse_pass": "通往灯塔的路", "Lighting quality:": "光线质量:", @@ -13756,7 +13700,6 @@ "MAP": "地图", "MASTERING": "专精", "MATERIAL": "装备材质", - "MAX AMMO DAMAGE": "威力", "MAXCOUNT": "最大数量", "MAXIMUM THROW DAMAGE": "单片破片最大伤害", "MED USE TIME": "治疗耗时", @@ -13805,12 +13748,11 @@ "MagDrills": "弹匣训练", "MagDrillsDescription": "针对弹匣掌握的技能——装填和卸载弹药以及检查弹匣中的剩余子弹数。", "MagDrillsInstantCheck": "弹匣会在移入物品栏时被瞬间检查完毕", - "MagDrillsInventoryCheckAccuracy": "增加通过快捷菜单检查弹匣的准确度 [{0:0.#}%]", - "MagDrillsInventoryCheckSpeed": "增加通过快捷菜单检查弹匣的速度 [{0:0.#}%]", - "MagDrillsLevelingUpDescription": "弹匣训练技能可以在安装、卸载和检视弹匣时得到提升。", + "MagDrillsInventoryCheckAccuracy": "增加通过快捷菜单检查弹匣的准确度 [{0}%]", + "MagDrillsInventoryCheckSpeed": "增加通过快捷菜单检查弹匣的速度 [{0}%]", "MagDrillsLoadProgression": "往弹匣里一发发装填弹药的速度更快", - "MagDrillsLoadSpeed": "提升装弹速度 [{0:0.#}%]", - "MagDrillsUnloadSpeed": "提升弹药卸载速度 [{0:0.#}%]", + "MagDrillsLoadSpeed": "提升装弹速度 [{0}%]", + "MagDrillsUnloadSpeed": "提升弹药卸载速度 [{0}%]", "MagPreset/CaliberNotSelected": "未指定口径", "MagPreset/DiscardCahangesDescription": "所有未保存的改动都会丢失。\n要继续吗?", "MagPreset/Error/ContainsMissingItems": "无法找到弹药:", @@ -13881,27 +13823,24 @@ "Meds": "药品", "Melee": "近战", "MeleeDescription": "近战武器使用技能", - "MeleeLevelingUpDescription": "近战技能可以在使用近战武器击伤敌人时得到提升。", "Memory": "记忆", "MemoryDescription": "受过训练的技能在开始消退前会维持得更久", "MemoryEliteMentalNoDegradation": "你不会遗忘任何技能", - "MemoryLevelingUpDescription": "The Memory skill is improved by", - "MemoryMentalForget1": "降低遗忘技能的速度 [{0:0.#%}]", - "MemoryMentalForget2": "降低技能等级退化速度 [{0:0.#%}]", + "MemoryMentalForget1": "降低遗忘技能的速度 [{0:0%}]", + "MemoryMentalForget2": "降低技能等级退化速度 [{0:0%}]", "Mental": "精神", "Merchant": "商人", "Metabolism": "代谢", "MetabolismDescription": "健康的新陈代谢会改善和增强饮食的效果,并使生理类技能维持得更久。", "MetabolismEliteBuffNoDyhydration": "你不会受到因疲劳或缺水造成的伤害", "MetabolismEliteNoForget": "你不会遗忘任何生理机能", - "MetabolismEnergyExpenses": "降低能量和水分消耗速度 [{0:0.#%}]", - "MetabolismLevelingUpDescription": "代谢技能可以在使用食物时得到提升。", - "MetabolismMiscDebuffTime": "降低兴奋剂和饮食的副作用 [{0:0.#%}]", - "MetabolismPhysicsForget": "降低生理机能的遗忘速度 [{0:0.#%}]", + "MetabolismEnergyExpenses": "降低能量和水分消耗速度 [{0:0%}]", + "MetabolismMiscDebuffTime": "降低兴奋剂和饮食的副作用 [{0:0%}]", + "MetabolismPhysicsForget": "降低生理机能的遗忘速度 [{0:0%}]", "MetabolismPhysicsForget2": "降低遗忘生理技能的最大限度", "MetabolismPhysicsNoForget": "生理技能不会再被遗忘", - "MetabolismPoisonTime": "降低毒性持续时间 [{0:0.#%}]", - "MetabolismRatioPlus": "提升饮食的增益效果 [{0:0.#%}]", + "MetabolismPoisonTime": "降低毒性持续时间 [{0:0%}]", + "MetabolismRatioPlus": "提升饮食的增益效果 [{0:0%}]", "Microphone sensitivity:": "麦克风灵敏度:", "MildMusclePain": "轻微肌肉酸痛", "Military Checkpoint": "Scav检查站", @@ -14081,7 +14020,7 @@ "OfflineRaid/StartAsGroup": "组队出生", "OfflineRaid/startasgrouptooltip": "开启此选项后,玩家将会在同一地点出生", "OfflineRaidScreen/WarningHeader": "注意!练习模式下你的进度不会被保存!", - "OfflineRaidScreen/WarningText": "组队练习要求所有小队成员均拥有Edge of Darkness游戏版本或解锁合作模式。\n战局将会在《逃离塔科夫》专用服务器上进行。", + "OfflineRaidScreen/WarningText": "组队练习要求所有小队成员均拥有Edge of Darkness游戏版本。\n战局将会在《逃离塔科夫》专用服务器上进行。", "Old Azs Gate": "老加油站", "Old Gas Station": "老加油站", "Old Road Gate": "老路大门", @@ -14137,10 +14076,9 @@ "Pending requests": "待处理请求", "Perception": "感知", "PerceptionDescription": "掌握感知可以提升你的听力范围,提高你的瞄准专注度以便于让你更容易发现战利品。", - "PerceptionFov": "提升瞄准专注度 [{0:0.#%}]", - "PerceptionHearing": "提升听觉范围 [{0:0.#%}]", - "PerceptionLevelingUpDescription": "感知技能可以在找到并拾取物品时得到提升。", - "PerceptionLootDot": "提升战利品探测半径 [{0:0.#%}]", + "PerceptionFov": "提升瞄准专注度 [{0:0%}]", + "PerceptionHearing": "提升听觉范围 [{0:0%}]", + "PerceptionLootDot": "提升战利品探测半径 [{0:0%}]", "PerceptionmEliteNoIdea": "物资临近感知", "Perish": "丧生", "Physical": "生理", @@ -14148,7 +14086,6 @@ "Pistol": "手枪", "Pistol Mastering": "手枪", "PistolDescription": "手枪使用技能可以提升对手枪的后坐力控制及总体掌握。", - "PistolLevelingUpDescription": "手枪技能可以在使用对应类别的武器射击、换弹时得到提升。", "PlaceOfFame": "荣誉架", "PlantLocationDescription": "16号化工厂的厂区和设施曾被非法租用给Terra集团公司。这个工厂在“契约战争”期间成为了USEC和BEAR双方争夺市工业区控制权的激战战场。随着之后的混乱加剧,工厂变成了幸存的市民、Scav和各种武装人员的避风港,其中也包括残存的USEC和BEAR行动人员。", "Player": "玩家", @@ -14219,10 +14156,9 @@ "Prone": "匍匐", "ProneMovement": "匍匐移动", "ProneMovementDescription": "掌握匍匐移动可以让你移动地更快、更安静。", - "ProneMovementElite": "增加匍匐移动时的速度 [{0:0.#%}]", - "ProneMovementLevelingUpDescription": "匍匐移动技能可以在匍匐前行时得到提升。", - "ProneMovementSpeed": "增加匍匐移动时的速度 [{0:0.#%}]", - "ProneMovementVolume": "降低匍匐移动时的音量 [{0:0.#%}]", + "ProneMovementElite": "增加匍匐移动时的速度 [{0:0%}]", + "ProneMovementSpeed": "增加匍匐移动时的速度 [(+{0:0%})]", + "ProneMovementVolume": "降低匍匐移动时的音量 [(-{0:0%})]", "Protect objective {0:F1}": "保护目标中{0:F1}", "QUEST ITEM": "任务物品", "QUEST ITEMS": "任务物品", @@ -14410,9 +14346,8 @@ "Recoil Up": "垂直后坐力", "RecoilControl": "后坐力控制", "RecoilControlDescription": "更好的后座力控制技能可以降低水平散布,使其更加可控。", - "RecoilControlElite": "提升后坐力控制能力 [{0:0.#%}]", - "RecoilControlImprove": "提升后坐力控制能力 [{0:0.#%}]", - "RecoilControlLevelingUpDescription": "后坐力控制可以在持续射击时得到提升。武器后坐力越高,提升效果越好。", + "RecoilControlElite": "提升后坐力控制能力 [{0:0%}]", + "RecoilControlImprove": "提升后坐力控制能力 [{0:0%}]", "RecommendedVRAM:": "推荐虚拟内存:", "Reconnection is not available at this moment due to testing purposes": "因为正在进行测试,所以目前无法重新连接。", "RedRebel_alp": "攀岩者之路", @@ -14442,7 +14377,6 @@ "Report game bug abuse": "举报滥用游戏Bug", "Report offensive nickname": "举报不当昵称", "Report suspected cheat use": "举报可疑的作弊使用者", - "Report suspicious profile": "举报可疑玩家资料", "ReportAbuseBug": "举报滥用游戏Bug", "ReportAbuseVoip": "举报滥用VoIP/语音功能", "ReportCheater": "举报可疑的作弊者", @@ -14478,7 +14412,6 @@ "Revolver": "左轮手枪", "Revolver Mastering": "左轮手枪", "RevolverDescription": "左轮手枪使用技能", - "RevolverLevelingUpDescription": "左轮手枪技能可以在使用对应类别的武器射击、换弹时得到提升。", "RezervBase": "储备站", "Rig": "胸挂", "Right Arm": "右臂", @@ -14528,7 +14461,6 @@ "SKILLS_SPEED_UP": "升级速度加快", "SMG": "冲锋枪", "SMGDescription": "冲锋枪使用技能可以提升对冲锋枪的后坐力控制及总体掌握。", - "SMGLevelingUpDescription": "冲锋枪技能可以在使用对应类别的武器射击、换弹时得到提升。", "SNIPERPHRASE": "有狙击手", "SO": "SO", "SOUND": "声音", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "与 {0} 的销售总额增加了 {1}", "Sandbox": "中心区", "Sandbox_VExit": "警方封锁线(载具撤离点)", - "Sandbox_high": "中心区", "Saturation:": "饱和度:", "Savage matchmaker": "作为本地带有随机装备的土匪——Scav进入战局。塔科夫是你的家,这里的规则由你制定。", "SavageBannerDescription": "作为Scav进入战局和以你的PMC主角色进入战局是不同的。玩家操控的Scav会在随机地点和时间出生。Scav的健康状况和装备也会是随机的。在以Scav身份撤离之后,你可以将从战局中带出的物品转移到你PMC主角色的仓库里。以Scav身份完成战局获得的经验不会转移到你的PMC角色上。以Scav身份死亡也不会以任何方式影响主角色的进度。", @@ -14585,7 +14516,6 @@ "Search": "搜索", "SearchDescription": "搜索技能可以让你更加快速高效地搜索尸体及容器。", "SearchDouble": "同时搜索两个容器", - "SearchLevelingUpDescription": "搜索技能可以在搜索容器时得到提升。", "SecondPrimaryWeapon": "主武器(背部)", "SecondaryWeapon": "副武器", "SecuredContainer": "安全箱栏", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "部分设置已改变。你想要保存它们吗?", "Settings/Sound/BinauralSound": "双声道", "Settings/Sound/ChatVolume": "聊天音量:", - "Settings/Sound/CommentatorVolume": "解说员音量:", "Settings/Sound/Device": "音频设备", "Settings/Sound/HideoutVolume": "藏身处音量:", "Settings/Sound/InterfaceVolume": "主界面音量:", "Settings/Sound/MusicOnRaidEnd": "战局结束音乐", "Settings/Sound/MusicVolume": "音乐音量:", "Settings/Sound/OverallVolume": "整体音量:", - "Settings/Sound/ReadyToMatchSoundVolume": "接受对战界面音量:", "Settings/UnavailablePressType": "不可用", "SevereMusclePain": "严重肌肉酸痛", "Shack": "军事基地检查站", @@ -14677,7 +14605,6 @@ "Shotgun": "霰弹枪", "Shotgun Mastering": "霰弹枪", "ShotgunDescription": "霰弹枪使用技能可以提升对霰弹枪的后坐力控制及总体掌握。", - "ShotgunLevelingUpDescription": "霰弹枪技能可以在使用对应类别的武器射击、换弹时得到提升。", "Show icons": "显示图标", "Show:": "显示:", "SightingRange": "射击场", @@ -14698,10 +14625,9 @@ "Smg Mastering": "冲锋枪", "Smuggler's Boat": "走私者的船", "Smugglers_Trail_coop": "走私者的通道(合作撤离点)", - "Sniper": "拴动式步枪", + "Sniper": "狙击枪", "Sniper Roadblock": "狙击手路障", - "SniperDescription": "拴动式步枪使用技能可以提升对拴动式步枪的后坐力控制及总体掌握。", - "SniperLevelingUpDescription": "拴动式步枪技能可以在使用对应类别的武器射击、换弹时得到提升。", + "SniperDescription": "狙击步枪使用技能可以提升对狙击步枪的后坐力控制及总体掌握。", "SniperRifle": "狙击步枪", "SniperRifle Mastering": "狙击步枪", "Sniper_exit": "Mira大道", @@ -14734,8 +14660,6 @@ "StartInGroup": "共同出生模式", "StartLookingForGroup": "开始寻找队伍", "StartNotInGroup": "分别出生模式", - "StashLinesExternalObtain": "仓库容量升级", - "StashLinesExternalObtain/Tooltip": "可在官方网站购买仓库容量升级", "StatFoundMoneyEUR": "欧元发现数", "StatFoundMoneyRUB": "卢布发现数", "StatFoundMoneyUSD": "美元发现数", @@ -14770,22 +14694,20 @@ "StomachBloodloss": "腹部出血", "Stop looking for group": "停止寻找队伍", "Strength": "力量", - "StrengthBuffAim": "降低瞄准时的耐力消耗 [{0:0.#%}]", + "StrengthBuffAim": "降低瞄准时的耐力消耗 [{0:0%}]", "StrengthBuffElite": "已装备的武器不会计入你的角色负重(不包括背包内的武器)", - "StrengthBuffJumpHeightInc": "提升跳跃高度 [{0:0.#%}]", - "StrengthBuffLiftWeightInc": "提升负重能力 [{0:0.#%}]", - "StrengthBuffMeleeCrits": "提高近战暴击概率 [{0:0.#}%]", - "StrengthBuffMeleePowerInc": "提升近战攻击伤害 [{0:0.#%}]", - "StrengthBuffSprintSpeedInc": "提升移动及冲刺速度 [{0:0.#%}]", - "StrengthBuffThrowDistanceInc": "提升投掷距离 [{0:0.#%}]", + "StrengthBuffJumpHeightInc": "提升跳跃高度 [{0:0%}]", + "StrengthBuffLiftWeightInc": "提升负重能力 [{0:0%}]", + "StrengthBuffMeleeCrits": "提高近战暴击概率 [({0})]", + "StrengthBuffMeleePowerInc": "提升近战攻击伤害 [{0:0%}]", + "StrengthBuffSprintSpeedInc": "提升移动及冲刺速度 [{0:0%}]", + "StrengthBuffThrowDistanceInc": "提升投掷距离 [{0:0%}]", "StrengthDescription": "增加力量可以让你跳得更高,冲刺更快,击打更用力,投掷更远,并承载更多的重量。", - "StrengthLevelingUpDescription": "力量技能可以通过在超重时疾跑、投掷手榴弹、使用近战武器和使用藏身处健身区来提升。", "StressBerserk": "狂暴模式可用", - "StressPainChance": "降低疼痛休克的概率 [{0:0.#%}]", + "StressPainChance": "降低疼痛休克的概率 [{0:0%}]", "StressResistance": "抗压", "StressResistanceDescription": "抗压可以提高抵抗受伤害性休克的几率,并减少因疼痛造成的手抖与颤栗。", - "StressResistanceLevelingUpDescription": "抗压技能可以通过承受伤害来提升。在没有使用止痛药时受到疼痛效果时也能得到提升。", - "StressTremor": "降低颤栗摇晃幅度 [{0:0.#%}]", + "StressTremor": "降低颤栗摇晃幅度 [{0:0%}]", "StringSeparator/Or": "或", "Stun": "震撼", "Subtask completed:": "次要任务已完成:", @@ -14851,9 +14773,8 @@ "Summary": "总结", "Surgery": "手术", "SurgeryDescription": "在紧急情况下,进行野战手术的能力可以挽救你的生命。你这个技能学得越好,你的操作就越快越好。", - "SurgeryLevelingUpDescription": "手术技能可以在使用手术包处理身体各部位时得到提升。", - "SurgeryReducePenalty": "降低手术后的生命值上限惩罚 [{0:0.#%}]", - "SurgerySpeed": "提升手术速度 [{0:0.#%}]", + "SurgeryReducePenalty": "降低手术后的生命值上限惩罚 [{0:0%}]", + "SurgerySpeed": "提升手术速度 [{0:0%}]", "Survival Rate Short": "存活率: {0}%", "SurvivalRate": "幸存率", "Survived": "幸存", @@ -14926,9 +14847,8 @@ "ThrowItem": "丢弃", "Throwing": "投掷物", "ThrowingDescription": "投掷武器使用技能可以让你将手榴弹扔的更远,并且消耗更少的能量。", - "ThrowingEnergyExpenses": "降低投掷时的能量消耗 [{0:0.#%}]", - "ThrowingLevelingUpDescription": "投掷物技能可以在投掷手榴弹时得到提升。", - "ThrowingStrengthBuff": "提升投掷力度 [{0:0.#%}]", + "ThrowingEnergyExpenses": "降低投掷时的能量消耗 [{0:0%}]", + "ThrowingStrengthBuff": "提升投掷力度 [{0:0%}]", "ThrowingWeaponsBuffElite": "投掷不再消耗能量,且疲劳程度不影响投掷准确度", "Time flow": "时间", "Time to reconnect left ({0})": "剩余重连时间 ({0})", @@ -14976,11 +14896,11 @@ "Trading/Dialog/AvaliableServices": "你能帮我做点事儿吗?", "Trading/Dialog/Btr/News": "有没有最新消息?", "Trading/Dialog/Btr/News/Next": "还有什么消息吗?", - "Trading/Dialog/Btr/News1": "最近雪真的好大!自从契约战争以来,就没有过这么大的雪。感觉就像我们没住在北方一样。可惜现在全化了。", - "Trading/Dialog/Btr/News2": "你不怎么出门的,对吧?最近有个重要的节日,整座城市的人都在庆祝。也祝你节日快乐。", - "Trading/Dialog/Btr/News3": "Boss们又开始搞事了,不是吗?驻守着他们的地盘,不给人喘息的机会。", - "Trading/Dialog/Btr/News4": "那个每年都打扮成圣诞老人的怪家伙,居然开口说话了!还是为他是哑巴呢。", - "Trading/Dialog/Btr/News5": "大家都开始收集城市里名人的小雕塑了。你说我的BTR会不会也被做成雕塑?", + "Trading/Dialog/Btr/News1": "最新的消息就是BTR!我自己把这家伙修好了。这绝对是我的手艺。现在我可以载着人到处转悠了,然后收点路费,就当是我的修车钱咯。", + "Trading/Dialog/Btr/News2": "有人正在塔科夫组织角斗竞技。说是很多人都自愿去参加了,钱拿到手软,当然,你得活着回来。", + "Trading/Dialog/Btr/News3": "最近有一些TerraGroup的文件,搞得塔科夫到处都闹哄哄的。甚至闹到了边境线之外,不过我不信。", + "Trading/Dialog/Btr/News4": "商人仓库里的大部分AP弹药都失踪了。像你这样的战士整天都在塔科夫到处奔波,寻找其他人的弹药储备。还好,现在一切都正常。", + "Trading/Dialog/Btr/News5": "Sanitar最近想要提高他在塔科夫的影响力。他整出了一种解药,而在此之前,所有人都中毒了。这是巧合?我可不信。", "Trading/Dialog/Btr/NoNews": "这就是我知道的所有消息了。", "Trading/Dialog/Btr/ServicePayoff{0}": "没问题,就这么办。(上交 \"{0}\")", "Trading/Dialog/BtrBotCover/Description": "在你待在车里的时候,我们会向外面的所有人开火。我们还会清空你的下车点,掩护你离开,但时间有限。", @@ -14999,34 +14919,18 @@ "Trading/Dialog/PlayerHandoveItem{0}": "我找到了这个。 (上交 \"{0}\")", "Trading/Dialog/PlayerTaxi/Description": "现在能去这些地方。挑一个吧。", "Trading/Dialog/PlayerTaxi/Name": "坐车", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "好的,目的地——Rodina影院。这个车费没问题吧?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Rodina影院", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "准备前往电车站。你带够钱了,对吧?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "电车", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "没问题,现在就去市中心。你带够钱了吗?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "市中心", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "准备好就出发,去倒塌的吊车。这个车费没问题吧?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "倒塌的吊车", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "我带你去废弃Scav检查点。这车费便宜吧?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "废弃Scav检查点", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "我现在载你去Pinewood酒店。这个车费怎么样,完全可以吧?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Pinewood酒店", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "这就去Scav地堡。价钱没问题吧?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Scav地堡", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "去沉陷村庄,对吧?我觉得没问题。这是车费价格。", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "沉陷村庄", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "没问题,这就带你去路口。你带够钱了吗?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "路口", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "锯木厂?行!车费是这么多。", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "锯木厂", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "去USEC检查站,好的。对了,这可不是免费搭便车啊。", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "USEC检查站", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "让我看看怎么去Emercom营地。你觉得这个价格合适吗?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "Emercom营地", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "好的,好的,这就去旧锯木厂。价钱是这么多。", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "旧锯木厂", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "你想在列车停放处下车?你知道吧,没有我你可到不了那个地方。如果你觉得价钱合适,就确认一下时间吧,好吗?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "列车停放处", + "Trading/Dialog/PlayerTaxi/p1/Description": "好的,目的地——Rodina影院。这个车费没问题吧?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina影院", + "Trading/Dialog/PlayerTaxi/p2/Description": "准备前往电车站。你带够钱了,对吧?", + "Trading/Dialog/PlayerTaxi/p2/Name": "电车", + "Trading/Dialog/PlayerTaxi/p3/Description": "没问题,现在就去市中心。你带够钱了吗?", + "Trading/Dialog/PlayerTaxi/p3/Name": "市中心", + "Trading/Dialog/PlayerTaxi/p4/Description": "准备好就出发,去倒塌的吊车。这个车费没问题吧?", + "Trading/Dialog/PlayerTaxi/p4/Name": "倒塌的吊车", + "Trading/Dialog/PlayerTaxi/p5/Description": "我带你去废弃Scav检查点。这车费便宜吧?", + "Trading/Dialog/PlayerTaxi/p5/Name": "废弃Scav检查点", + "Trading/Dialog/PlayerTaxi/p6/Description": "我现在载你去Pinewood酒店。这个车费怎么样,完全可以吧?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood酒店", "Trading/Dialog/Quit": "离开", "Trading/Dialog/ServicePayoff{0}": "好了,这些应该就足够了。 (上交 \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "隐藏历史记录", @@ -15062,14 +14966,13 @@ "TransferScreen/TransferFailed": "服务购买失败", "TransferScreen/TransferSuccess": "已购买服务!", "Tremor": "颤栗", - "TroubleFixing": "提升故障排除速度 [{0:0.#%}]", - "TroubleFixingAmmoElite": "当武器因弹匣发生故障后,由相同原因再次发生故障的概率降低 [50%]", - "TroubleFixingDurElite": "当武器因耐久度问题发生故障后,由相同原因再次发生故障的概率降低 [50%]", + "TroubleFixing": "提升故障排除速度 [{0:0%}]", + "TroubleFixingAmmoElite": "当武器因弹匣发生故障后,由相同原因再次发生故障的概率降低50%", + "TroubleFixingDurElite": "当武器因耐久度问题发生故障后,由相同原因再次发生故障的概率降低50%", "TroubleFixingExamineMalfElite": "不需要检查武器就能知道故障类型", - "TroubleFixingMagElite": "当武器因弹药发生故障后,由相同原因再次发生故障的概率降低 [50%]", + "TroubleFixingMagElite": "当武器因弹药发生故障后,由相同原因再次发生故障的概率降低50%", "TroubleShootingDescription": "排除故障技能有助于排除武器故障。", "Troubleshooting": "故障排除", - "TroubleshootingLevelingUpDescription": "故障排除可以在排除武器故障时得到提升。", "Try_keycard {0}": "尝试 {0}", "Tunnel": "隧道", "Tunnel_Shared": "隧道(合作撤离点)", @@ -15152,11 +15055,6 @@ "UI/Arena/Place_7": "第7名", "UI/Arena/Place_8": "第8名", "UI/Arena/Place_9": "第9名", - "UI/ArmorPenetration/High": "高", - "UI/ArmorPenetration/Low": "低", - "UI/ArmorPenetration/Medium": "中", - "UI/ArmorPenetration/VeryHigh": "很高", - "UI/ArmorPenetration/VeryLow": "很低 ", "UI/Charisma/Discount/Insurance": "保险花费", "UI/Charisma/Discount/PostRaidHealing": "治疗花费", "UI/Charisma/Discount/ScavCase": "Scav宝箱花费", @@ -15334,18 +15232,15 @@ "Very good standing": "非常好", "Vest": "背心", "Village": "村庄", - "Violation/IntentionalTeamDamage/Warning": "如果你继续伤害队友,你的帐号将被封禁", - "Violation/IntentionalTeamKill/Warning": "如果你继续在开局时击杀队友,你的帐号将被封禁", "Violation/TeamKill/Warning": "如果你继续击杀队友,你的帐号将被封禁", "Vital mod weapon in hands": "当武器在你手中的时候,你不能改装其基础部件。", "Vital parts": "基础部件", "Vitality": "活力", - "VitalityBuffBleedChanceRed": "降低失血概率 [{0:0.#%}]", + "VitalityBuffBleedChanceRed": "降低失血概率 [{0:0%}]", "VitalityBuffBleedStop": "所有出血可自行停止", "VitalityBuffRegeneration": "提升战斗时的生命值恢复", - "VitalityBuffSurviobilityInc": "降低肢体损毁时猝死的概率 [{0:0.#%}]", + "VitalityBuffSurviobilityInc": "降低肢体损坏时猝死的概率 [{0:0%}]", "VitalityDescription": "活力可以减少身体某一部位受到致命伤害后,出血和立即死亡的概率,来提高你在受伤后存活的机会。", - "VitalityLevelingUpDescription": "活力技能可以在承受各种失血和伤害时得到提升。", "Voice": "角色声音", "Voice 1": "嗓音 1", "Voice 2": "嗓音 2", @@ -15402,27 +15297,26 @@ "WaterCollector": "集水器", "Weapon": "武器", "Weapon has been built": "武器已建成", - "WeaponAccBuff": "提升武器精度 [{0:0.#%}]", + "WeaponAccBuff": "提升武器精度 [{0:0%}]", "WeaponBroken": "武器故障", "WeaponBuild/SetNameWindowCaption": "预设名称", "WeaponBuild/SetNameWindowPlaceholder": "输入预设名称", - "WeaponDeteriorationChanceReduce": "降低装备在维修时发生折损的概率 [{0:0.#%}]", + "WeaponDeteriorationChanceReduce": "降低装备在维修时发生折损的概率 [{0:0%}]", "WeaponDoubleMastering": "双倍专精经验", - "WeaponDurabilityLossOnShotReduce": "降低枪械在开火时的折损速率 [{0:0.#%}]", - "WeaponErgonomicsBuff": "提高武器人机功效 [{0:0.#%}]", + "WeaponDurabilityLossOnShotReduce": "降低枪械在开火时的折损速率 [{0:0%}]", + "WeaponErgonomicsBuff": "提高武器人机功效 [{0:0%}]", "WeaponJammed": "武器卡壳", "WeaponModding": "武器改装", "WeaponModdingDescription": "武器基础改装技能可以增加配件的人机工效并减少消音器的磨损。", "WeaponPunch": "枪托攻击", - "WeaponRecoilBuff": "降低武器后坐力 [{0:0.#%}]", - "WeaponReloadBuff": "提升换弹速度 [{0:0.#%}]", - "WeaponStiffHands": "提高武器人机功效 [{0:0.#%}]", - "WeaponSwapBuff": "提高武器切换速度 [{0:0.#%}]", + "WeaponRecoilBuff": "降低武器后坐力 [{0:0%}]", + "WeaponReloadBuff": "提升换弹速度 [{0:0%}]", + "WeaponStiffHands": "提高武器人机功效 [{0:0%}]", + "WeaponSwapBuff": "提高武器切换速度 [{0:0%}]", "WeaponTreatment": "武器维护", "WeaponTreatmentDescription": "武器维护和保养技能。", - "WeaponTreatmentLevelingUpDescription": "武器维护技能可以在使用维修套件进行枪械维修时得到提升。", "WearAmountRepairGunsReducePerLevel": "减少使用维修套件时的消耗", - "WearChanceRepairGunsReduceEliteLevel": "降低 [50%] 使用维修套件时的折损概率", + "WearChanceRepairGunsReduceEliteLevel": "降低50%使用维修套件时的折损概率", "Weather conditions": "天气状况", "WeightLimit": "重量限制", "Welcome screen description": "欢迎来到逃离塔科夫!\n在这场游戏中,你将不得不为你的生命而战,并在塔科夫的种种危险中幸存下来。塔科夫市位于俄罗斯的诺文斯克特区,这是一座处于混乱和崩溃边缘的城市。你的角色是一家私人军事公司(PMC)的行动人员,被卷入了“契约战争”之后一系列事件的漩涡中心。你所在的区域已被封锁,指挥部没有回应,以前的任务目标显然也失去了意义。现在每个人都有自己的目标:适应并生存,摆脱封锁,或尝试拯救他人。\n\n每一场游戏,都要做好死亡并失去一切的准备。请记住,网络连接的每一次中断或网络硬件故障都会使你的角色死亡,并导致你带入或在本场游戏中找到的所有装备丢失。\n\n是的,游戏里你会死,而且很可能会经常死,但是请记住,这只是一个游戏。祝你在游戏里获得好运!", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "胜率, %", "arena/career/teamFightStats/wins": "胜局数", "arena/career/teamFightStats/winsWithFavPreset": "使用最爱预设获胜次数", - "arena/customGames/create/samePresets": "可重复预设数量:", - "arena/customGames/create/setSamePresets": "允许选用重复预设", "arena/customGames/invite/message{0}": "来自 {0} 的自定义游戏邀请", "arena/customGames/notify/GameRemoved": "房间已解散", "arena/customgames/errors/notification/gamealreadystarted": "游戏已经开始", @@ -15706,9 +15598,8 @@ "arena/tab/SCOUT": "侦查", "arena/tab/SQB": "CQB", "arena/tooltip/OverallMatches": "排位和非排位对战的总胜场数。", - "arena/tooltip/Presets": "预设", + "arena/tooltip/Presets": "Presets", "arena/tooltip/countGlp": "你的总ARP(竞技场声望点数)评级。这项数据代表了你在竞技场排位模式中所取得的评分。游戏将通过它来匹配与你旗鼓相当的玩家,你也可以通过它来解锁新的预设与更高的排位。", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", "arena/tooltip/friends": "好友", "arena/tooltip/kdRatio": "你的总击杀/阵亡比,统计数据来源于所有排位与非排位对局。只计算玩家击杀。", "arena/tooltip/leftGlp": "达到下一排位等级所需的ARP点数。", @@ -15716,7 +15607,6 @@ "arena/tooltip/moneyRubles": "卢布。用于购买预设,在竞技场中赢得对局即可获得。", "arena/tooltip/ratingPlace": "你在排行榜中的位置", "arena/tooltip/settings": "设置", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", "arena/tooltip/sourcesGlp": "ARP来源:", "arena/tooltip/winMatches": "排位和非排位对战的总胜场数", "arena/tooltip/winRate": "你的总胜率,统计数据来源于排位和非排位对局中的输赢结果。", @@ -16370,7 +16260,7 @@ "scav_e6": "地下室入口", "scav_e7": "Cardinal公寓停车场", "scav_e8": "Klimov交易中心撤离点", - "searchspeed": "提升搜索速度 [{0:0.#%}]", + "searchspeed": "提升搜索速度 [{0:0%}]", "sec": "秒", "select weapon body for the build": "选择进行预设的武器本体", "semiauto": "半自动", @@ -16450,8 +16340,6 @@ "{0} GroupPlayerBlocking/MatchLeave": "此模式不可用,队伍成员({0})因为弃赛而被禁赛", "{0} GroupPlayerBlocking/NotAcceptedMatch": "此模式不可用,队伍成员({0})因为拒绝接受对局而被禁赛", "{0} GroupPlayerBlocking/TeamKill": "此模式不可用,队伍成员({0})因为连续击杀队友而被禁赛", - "{0} Violation/IntentionalTeamDamage/Blocking": "玩家 {0} 已被踢出对局,并将受到伤害队友惩罚", - "{0} Violation/IntentionalTeamKill/Blocking": "玩家 {0} 已被踢出对局,并将受到开局时击杀队友惩罚", "{0} Violation/TeamKill/Blocking": "玩家 {0} 已被踢出对局,并将受到击杀队友惩罚", "{0} added you to the ignore list": "{0} 加入你忽略名单", "{0} ask to cooperate": "{0} 向你问好", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "中心区", "653e6760052c01c1c805532f Description": "塔科夫的经济中心,也是TerraGroup的总部驻地。这里就是一切开始的地方。", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "联合保安公司", "5464e0404bdc2d2a708b4567 Description": "USEC私营军事公司成立于1999年,由KerniSEC和Safe Sea两家公司合并而成。在2004年,一位来自Terra Group国际控股公司的代理人与USEC取得了联系,USEC其后渐渐成为了Terra Group的私人军队,在世界各地设有办事处,拥有超过7500名员工。", "5464e0454bdc2d06708b4567 Name": "BEAR", @@ -18024,7 +17910,7 @@ "5a27bc8586f7741b543d8ea4 description": "你好啊,我亲爱的朋友,看来我们很快就要做成一笔有趣的生意了。在那个存储盘里,我们找到了一部分有关导弹引擎的蓝图,这绝对能让西方感兴趣,因为这东西是部署在台风级潜艇上的——虽然大概已经不能运作了。此外,还有一份详实的文件,是关于一名曾服役于波罗的海舰队的水手的,一名充满海盐味的老水手,他现在就在塔科夫的某处。而看上去他现在依旧和海军指挥部有所联系,他就是我们需要搞定的人。根据我的情报网,有时他会秘密的和Scav进行一些交易,要找到他并不容易。你必须得小心谨慎,别中了埋伏。机会只有一次,决不允许失败,否则我们这笔大买卖就彻底砸了,我的朋友。光是和你谈这些我的手就激动地抖个不停,这笔买卖重要到你难以想象的程度,绝对不能错过。你是一名优秀的战士,但是我想确保你在隐秘行动中也能如鱼得水。我需要一个狙击手,而且得是个狙击精英,所以等你准备好了再来找我。", "5a27bc8586f7741b543d8ea4 failMessageText": "", "5a27bc8586f7741b543d8ea4 successMessageText": "说实话,之前我真不相信你能搞定,不过现在看来你正是我要找的那个神枪手。我有需要时会再找你。", - "5a28235e86f7741da250b438": "达到指定的拴动式步枪操作技能等级", + "5a28235e86f7741da250b438": "达到指定的狙击步枪操作技能等级", "5a27bc8586f7741b543d8ea4 acceptPlayerMessage": "", "5a27bc8586f7741b543d8ea4 declinePlayerMessage": "", "5a27bc8586f7741b543d8ea4 completePlayerMessage": "", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "在灯塔使用栓动式步枪爆头击杀PMC人员", "63aec6f256503c322a190374": "在塔科夫街区使用栓动式步枪爆头击杀PMC人员", "64b694c8a857ea477002a408": "在立交桥使用栓动式步枪爆头击杀PMC人员", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18882,7 +18767,7 @@ "5c0be13186f7746f016734aa description": "别来无恙啊,雇佣兵。我听说你正在努力成为一名神枪手。想要干好神枪手先生的活儿自然是需要坚毅、耐心和使命感,但是还有其他很多重要的因素。你知道神枪手先生曾近对我说过什么吗?每个人都能开枪,但是只有极少数人能成为真正的狙击手。", "5c0be13186f7746f016734aa failMessageText": "真正老练的狙击手从来不会就这样放弃。屏住呼吸,再试一次吧。", "5c0be13186f7746f016734aa successMessageText": "说实话,我当时以为你办不成这件事。但是事实说明,你不是一般人。", - "5c0be2b486f7747bcb347d58": "达到指定的拴动式步枪操作技能等级", + "5c0be2b486f7747bcb347d58": "达到指定的狙击步枪操作技能等级", "5c1fb5f086f7744a184fb3c5": "", "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "使用栓动式步枪一命击杀PMC人员", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "在塔科夫街区穿戴UN制式装备(UN头盔、MF-UNTAR防弹背心和M4A1步枪)击杀Scav", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "以“幸存”状态撤离储备站", "629f08e7d285f377953b2af1": "以“幸存”状态撤离灯塔", "63aec66556503c322a190372": "以“幸存”状态撤离塔科夫街区", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Therapist信任度达到4级", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -20314,8 +20195,6 @@ "60ec2b04bc9a8b34cd453b81": "任务进行过程中,你不可以死亡或以其它状态离开战局(包括:阵亡,擅离,失踪,匆匆逃离)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", @@ -20641,7 +20520,7 @@ "6193850f60b34236ee0483de description": "过来吧,小天才。沿着海岸线有一条大路,你肯定已经见过了。我的人通过这条路来为我运送货物。通常来说,他们能自己解决问题或者摆平路上的蠢货,但是现在路上多了个操蛋的老鼠窝。他们用强大的武力攻击我的人,完全没有还手之力。去那里干倒这些疯子,行吗?我会给你丰厚的报酬。", "6193850f60b34236ee0483de failMessageText": "", "6193850f60b34236ee0483de successMessageText": "做得真他妈好,你把这些蠢蛋都干碎了。伙计,下次再见。", - "6193dabd5f6468204470571f": "消灭驻扎在海边及灯塔主路的Scav", + "6193dabd5f6468204470571f": "消灭驻扎在灯塔主路的Scav", "6193850f60b34236ee0483de acceptPlayerMessage": "", "6193850f60b34236ee0483de declinePlayerMessage": "", "6193850f60b34236ee0483de completePlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "在塔科夫街区幸存,并通过Primorsky(Приморский)大道出租车载具撤离点撤离", "6397a6942e519e69d2139b25": "在塔科夫街区找到第一辆Patrol-A装甲车,并使用MS2000指示器标记", "6397a7ce706b793c7d6094c9": "在塔科夫街区找到第二辆Patrol-A装甲车,并使用MS2000指示器标记", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "我已经联系上那些司机了。这可不容易,但是我确实了解到了一些有意思的东西。", @@ -21436,7 +21314,7 @@ "6396701b9113f06a7c3b2379 failMessageText": "", "6396701b9113f06a7c3b2379 successMessageText": "我们一直在观察你。我的神枪手已经出发了。就是这样。时间到了我会通知你的。", "6397ac912e519e69d2139b26": "从350开外击杀狙击Scav", - "639a169e6cd47c525121a116": "达到指定的拴动式步枪操作技能等级", + "639a169e6cd47c525121a116": "达到指定的狙击步枪操作技能等级", "6396701b9113f06a7c3b2379 acceptPlayerMessage": "", "6396701b9113f06a7c3b2379 declinePlayerMessage": "", "6396701b9113f06a7c3b2379 completePlayerMessage": "我已经是一个真正的狙击疯魔了。接下来呢?", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "在立交桥使用近战武器消灭Scav", "63a9b5b2813bba58a50c9eeb": "在海关使用近战武器消灭Scav", "63a9b5f064b9631d9178276b": "在储备站使用近战武器消灭Scav", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21691,8 +21568,8 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "又少了一件烦心事儿。你干的漂亮,孩子。", "64e7ba17220ee966bf425ecb": "找到并消灭Kaban", "64e7ba4a6393886f74119f3d": "在塔科夫街区的车行区域消灭Kaban的保镖", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", diff --git a/project/assets/database/locales/global/cz.json b/project/assets/database/locales/global/cz.json index d56b27c6..0d2bd71a 100644 --- a/project/assets/database/locales/global/cz.json +++ b/project/assets/database/locales/global/cz.json @@ -1575,7 +1575,7 @@ "588200cf2459774414733d55 ShortName": "MP153 710mm", "588200cf2459774414733d55 Description": "Standardní továrně vyráběná 710mm hlaveň pro 12ga brokovnice MP-153.", "58820d1224597753c90aeb13 Name": "Náboj 12/70 s olověnou střelou", - "58820d1224597753c90aeb13 ShortName": "Olověná", + "58820d1224597753c90aeb13 ShortName": "Střela", "58820d1224597753c90aeb13 Description": "Náboj 12/70 se střelou pro 12ga brokovnice.", "5882163224597757561aa920 Name": "7-ranný zásobník pro MP-153 12ga", "5882163224597757561aa920 ShortName": "MP153x7", @@ -1781,9 +1781,9 @@ "590a3b0486f7743954552bdb Name": "Deska plošných spojů", "590a3b0486f7743954552bdb ShortName": "DPS", "590a3b0486f7743954552bdb Description": "Univerzální komponent v mikroelektronice. Základní zdroj pro udržování elektronických systémů.", - "590a3c0a86f774385a33c450 Name": "Zapalovací svíčka", + "590a3c0a86f774385a33c450 Name": "Žhavící svíčka", "590a3c0a86f774385a33c450 ShortName": "ŽSvíčka", - "590a3c0a86f774385a33c450 Description": "Zapalovací svíčky se používají v benzinových spalovacích motorech. Zapálení směsi paliva a vzduchu se provádí elektrickým výbojem o napětí několika tisíc nebo desítek tisíc voltů, který vzniká mezi elektrodami. Svíčka vždy zapálí směs v určité části pracovního cyklu motoru.", + "590a3c0a86f774385a33c450 Description": "Žhavící svíčky se používají v benzinových spalovacích motorech. Zapálení směsi paliva a vzduchu se provádí elektrickým výbojem o napětí několika tisíc nebo desítek tisíc voltů, který vzniká mezi elektrodami. Svíčka vždy zapálí směs v určité části pracovního cyklu motoru.", "590a3cd386f77436f20848cb Name": "Energeticky úsporná žárovka", "590a3cd386f77436f20848cb ShortName": "Úsp. Žár.", "590a3cd386f77436f20848cb Description": "Elektrická žárovka s podstatně vyšší světelnou účinností (poměr světelného toku a spotřeby energie), například ve srovnání s žárovkami, které jsou dosud spíše běžné. Díky nahrazení obyčejných žárovek energeticky úspornými žárovkami šetří energii a chrání životní prostředí.", @@ -2507,7 +2507,7 @@ "5a0abb6e1526d8000a025282 Name": "Úsťový adaptér Taktika Tula pro AK 7.62x39", "5a0abb6e1526d8000a025282 ShortName": "TT AK", "5a0abb6e1526d8000a025282 Description": "Úsťový adaptér Taktika Tula pro zbraně AK a AKM, který umožňuje instalaci úsťových kompenzátoru, tlumičů a další zařízení.", - "5a0c27731526d80618476ac4 Name": "Omračující granát Zarya", + "5a0c27731526d80618476ac4 Name": "Omračující granát \"Zarya\"", "5a0c27731526d80618476ac4 ShortName": "Zarya", "5a0c27731526d80618476ac4 Description": "Určen k rozrušení psychické koncentrace vytvořením náhlého zvukového efektu a jasného záblesku. Používán během speciálních operací při zadržování pachatelů a při potlačení nepokojů.", "5a0c59791526d8dba737bba7 Name": "Pažbová botka GP-25 pro AK", @@ -2675,7 +2675,7 @@ "5a16b8a9fcdbcb00165aa6ca Name": "Pokročilá taktická titanová montáž Norotos", "5a16b8a9fcdbcb00165aa6ca ShortName": "PTTM", "5a16b8a9fcdbcb00165aa6ca Description": "Lehká titanová montáž pro instalaci na konektoru Shroud na helmě. Je nutný pro další instalaci nočního vidění nebo jiných optických zařízení. Vyrábí společnost Norotos Inc.", - "5a16b93dfcdbcbcae6687261 Name": "Boční montáž Norotos pro AN/PVS-14", + "5a16b93dfcdbcbcae6687261 Name": "Boční montáž pro AN/PVS-14", "5a16b93dfcdbcbcae6687261 ShortName": "DDT", "5a16b93dfcdbcbcae6687261 Description": "Montáž pro uchycení nočního vidění AN/PVS-14.", "5a16b9fffcdbcb0176308b34 Name": "Sluchátka Ops-Core FAST RAC", @@ -3465,7 +3465,7 @@ "5ae089fb5acfc408fb13989b ShortName": "Trofej", "5ae089fb5acfc408fb13989b Description": "Trofej", "5ae08f0a5acfc408fb1398a1 Name": "Odstřelovací puška Mosin 7.62x54R (Odstřelovací)", - "5ae08f0a5acfc408fb1398a1 ShortName": "Odstřelovací Mosin", + "5ae08f0a5acfc408fb1398a1 ShortName": "Mosin (Odstřelovací)", "5ae08f0a5acfc408fb1398a1 Description": "Mosin–Nagant M91/30 PU je odstřelovací varianta slavné ruské pušky, která byla hojně využívána ruskými odstřelovači během Druhé světové války.", "5ae096d95acfc400185c2c81 Name": "Standardní pažba pro pušku Mosin", "5ae096d95acfc400185c2c81 ShortName": "Pažba mosin", @@ -4188,7 +4188,7 @@ "5bf3f59f0db834001a6fa060 ShortName": "RPK-16 HL", "5bf3f59f0db834001a6fa060 Description": "Standardní odnímatelné hledí pro lehký kulomet RPK-16. Vyráběné společností Izhmash.", "5bfd297f0db834001a669119 Name": "Odstřelovací puška Mosin 7.62x54R (Pěchotní)", - "5bfd297f0db834001a669119 ShortName": "Pěchotní Mosin", + "5bfd297f0db834001a669119 ShortName": "Mosin (Pěchotní)", "5bfd297f0db834001a669119 Description": "Mosin-Nagant je jedna z nejznámějších Ruských pušek, kterou běžně používali ruští vojáci během 2. světové války. Byla vyvinuta v letech 1882 až 1891 a používaly ji ozbrojené síly Ruského impéria, Sovětského svazu a různých dalších států. Jedná se o jednu z nejmasověji vyráběných vojenských pušek se závorníkem v historii - od roku 1891 bylo vyrobeno více než 37 milionů kusů. Navzdory svému stáří se dodnes používá v různých konfliktech po celém světě.", "5bfd35380db83400232fe5cc Name": "Pažba pro pěchotní pušku Mosin", "5bfd35380db83400232fe5cc ShortName": "Pažba mosin inf.", @@ -4577,7 +4577,7 @@ "5c10c8fd86f7743d7d706df3 Name": "Injektor s adrenalinem", "5c10c8fd86f7743d7d706df3 ShortName": "Adrenalin", "5c10c8fd86f7743d7d706df3 Description": "Sterilní jednorázová injekční stříkačka s dávkou adrenalinu - hlavního hormonu dřeně nadledvin. Používá se k posílení fyziologické reakce spojené s přípravou všech svalů na zvýšenou aktivitu. Dočasně zvyšuje sílu a vytrvalost. Zmírňuje pocit bolesti.", - "5c11046cd174af02a012e42b Name": "Adaptér Wilcox pro PVS-7", + "5c11046cd174af02a012e42b Name": "Rozhraní Wilcox pro PVS-7", "5c11046cd174af02a012e42b ShortName": "W-PVS7", "5c11046cd174af02a012e42b Description": "Upevňovací rozhraní Wilcox NVG Interface Shoe pro AN/PVS-7B/7D, je navrženo tak, aby nahradilo plastové adaptéry různých typů noktovizorů.", "5c110624d174af029e69734c Name": "Termovizní brýle T-7 s montáží pro noční vidění", @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "Kompaktní taktický laserový zaměřovací modul s modrým bodem. Připevňuje se na libovolnou lištu Picatinny/Weaver pro přesné zaměření cíle. Vyrábí ho společnost NcSTAR.", "5cd945d71388ce000a659dfb Name": "BEAR základní vršek", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Combat shirt", "5cd946231388ce000d572fe3 Name": "BEAR základní spodek", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "Vertikální rukojeť pro ASh-12", "5cda9bcfd7f00c0c0b53e900 ShortName": "ASh-12", "5cda9bcfd7f00c0c0b53e900 Description": "Vertikální rukojeť pro útočnou pušku ASh-12.", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "USEC základní spodek", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", "5cde9ec17d6c8b04723cf479 Name": "USEC základní vršek", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Tepláky Adik", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", "5cdea42e7d6c8b0474535dad Name": "Tepláková souprava Adik", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "Šasí Magpul Pro 700 pro M700", "5cdeac22d7f00c000f26168f ShortName": "Pro700", "5cdeac22d7f00c000f26168f Description": "Pro 700 je lehké ergonomické šasí určené pro odstřelovací pušku Remington M700. Vyrobeno společností Magpul.", @@ -5434,8 +5434,8 @@ "5d03775b86f774203e7e0c4b Description": "High-tech součástka fázové antény používaná v rádio-lokačních systémech a v radio-elektronických bojových systémech.", "5d0377ce86f774186372f689 Name": "Vojenský termovizní modul Iridium", "5d0377ce86f774186372f689 ShortName": "Iridium", - "5d0377ce86f774186372f689 Description": "Prvek tepelného zobrazovacího systému používaného ve vojenských vozidlech.", - "5d03784a86f774203e7e0c4d Name": "Vojenský gyrotachometr", + "5d0377ce86f774186372f689 Description": "Prvek tepelného obrazovacího systému používaného ve vojenských vozidlech.", + "5d03784a86f774203e7e0c4d Name": "Vojenský gyrotachometer", "5d03784a86f774203e7e0c4d ShortName": "VGT", "5d03784a86f774203e7e0c4d Description": "Zařízení pro určení úhlové rychlosti používané ve vojenských vozidlech.", "5d0378d486f77420421a5ff4 Name": "Vojenská filtrace", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "BEAR Black Lynx", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", "5d1f60ae86f7744bcc04998b Name": "BEAR tričko contractor", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "FSB Fast Response", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "BEAR Ghost Marksman", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "BEAR Summerfield", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "USEC Aggressor TAC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "USEC Softshell Flexion", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "USEC Woodland Infiltrator", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Combat shirt", "5d1f623886f7743014163027 Name": "USEC PCS Vícebarevné", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "USEC PCU Ironsight", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "FSB Urban Tact", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "BEAR Gorka Kobra", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "BEAR Gorka SSO", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "BEAR Striker Infil Ops", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "BEAR Summer Field", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "USEC Gen.2 Khyber", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "USEC Woodland Infiltrator", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "USEC Ranger Jeans", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "USEC Taclife Terrain", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "USEC TACRES", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "Úsťová brzda Daniel Defense WAVE 7.62x51 pro AR-10", "5d1f819086f7744b355c219b ShortName": "WAVE 762", "5d1f819086f7744b355c219b Description": "Úsťová brzda Daniel Defense WAVE je určena k bezpečné montáži tlumiče Daniel Defense WAVE, ale účinně funguje i bez něj. Je vyrobena z letecké nerezové oceli 17-4 PH a opatřena povrchovou úpravou nitridem v solné lázni pro minimální korozi.", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "USEC Komando", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "Pozdro závěru pro pušku SR-25, vyrobené společností Knight's Armament Company.", "5df8e5c886f7744a122d6834 Name": "BEAR Zaslon", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "Meteor", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "BEAR Oldschool", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "USEC TIER2", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "Sklon", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "První generace neprůstřelné vesty CPC navržená společností Crye Precision a upravená společností Ars Arma pro použití speciálními jednotkami Ruské federace. Tato modulární neprůstřelná vesta je založena na polymerovém korzetu, který přiléhá k hrudi, což zabraňuje zpětnému pohybu ramene těla při aktivním pohybu a přispívá také k rovnoměrnějšímu rozložení hmotnosti. Vyrábí se v útočné konfiguraci pouzder. Vyrábí společnost Ars Arma.", "5e4bb08f86f774069619fbbc Name": "BEAR Telnik", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "USEC TIER2", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "BEAR TIGR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "USEC Commando", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "Ruská bunda", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "BEAR TIGR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "USEC Urban Responder", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "BEAR Zaslon", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "USEC Deep Recon", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Tactical pants", "5e9dcf5986f7746c417435b3 Name": "Batoh LBT-8005A Day Pack (Vícebarevný Černý)", "5e9dcf5986f7746c417435b3 ShortName": "Day Pack", "5e9dcf5986f7746c417435b3 Description": "Jednoduchý a spolehlivý 14 litrový batoh ve vícebarevné černé kamufláži. Vyrábí společnost London Bridge Trading.", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "Pevná souprava Thunderbolt, která obsahuje všechna potřebná základní pouzdra. Vyrobena společností Direct Action.", "5f5f45df0bc58666c37e7832 Name": "BEAR G99", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "USEC Night Patrol", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "BEAR G99", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "USEC Urban Responder", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Scav Boot", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "BEAR SRVV", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "USEC TIER3", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": ".300 Blackout AP", "5fd20ff893a8961fc660a954 ShortName": "AP", "5fd20ff893a8961fc660a954 Description": "Náboj .300 Blackout (7.62x35 mm) AP nabitý 8,4gramovou průraznou střelou z náboje 7.62x51mm NATO M80A1, složenou z ocelové průbojné špičky nad jádrem ze slitiny mědi s měděným polopláštěm v mosazné nábojnici. Navzdory vlastním vlastnostem střely při použití v náboji s plným výkonem jsou tyto vlastnosti při přenosu do středního náboje ovlivněny, nicméně střela má i nadále schopnosti prorážet základní a střední balistickou ochranu těla, navíc je schopna po zásahu způsobit značné nepříznivé účinky na cíl. Jeho konstrukce rovněž umožňuje, aby byl bez problémů používán v zásobnících STANAG 5.56x45 mm NATO.", "5fd3e77be504291efd0040ad Name": "USEC VEKTOR", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "BEAR Boreas", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "BEAR Grizzly", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "USEC Adaptive Combat", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "Jednoduchý, nylonový nosný systém s neodnímatelnými kapsami. Umožňuje nosit až pohádkově impozantní množství munice, bohužel na úkor pohodlí.", "6038b228af2e28262649af14 Name": "BEAR Rash Guard", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "USEC Sandstone", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", "6038b4b292ec1c3103795a0b Name": "Nosič plátů LBT-6094A Slick (Kojotí Hnědá)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "Jednoduchý, ale účinný nosič plátů od společnosti London Bridge Trading. Nejminimalističtější design určený pro použití s hrudními soupravami. Kojotí Hnědá verze.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "TP-200 je určen k použití v náložích při seismickém průzkumu, nebo jako meziproduktový detonátor při iniciaci výbušných náloží ve vrtech, dále k drcení nadrozměrných předmětů a k provádění speciálních trhacích prací.", "603d01a1b41c9b37c6592047 Name": "BEAR VOIN", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "USEC Sage Warrior", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Hrudní postroj Azimut SS \"Zhuk\" (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Azimut", "6040dd4ddcf9592f401632d2 Description": "Jednoduchý nylonový nosný systém s neodnímatelnými pouzdry. Umožňuje nosit poměrně působivé množství munice na úkor pohodlí. Verze kamufláže SURPAT.", @@ -8239,10 +8239,10 @@ "619b69037b9de8162902673e Description": "Určeno pro civilní trh i vojenské použití. Pažbu CQR47 lze snadno namontovat místo standardního upevnění neskládací pažby AK/AKM. Vyrábí společnost Hera Arms.", "619b99ad604fcc392676806c Name": "BEAR Recon", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "USEC K4", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", "619bc61e86e01e16f839a999 Name": "Páska na ruku (Alpha)", "619bc61e86e01e16f839a999 ShortName": "Alpha", "619bc61e86e01e16f839a999 Description": "Páska na rukáv pro veterány, kteří jsou tu ještě z dob Alfa verze.", @@ -8275,10 +8275,10 @@ "619bdfd4c9546643a67df6fa Description": "Páska na rukáv pro hardcore operátory USEC.", "619bf75264927e572d0d5853 Name": "BEAR Sumrak", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "Vojenská vlnitá hadice", "619cbf476b8a1b37a54eebf8 ShortName": "VHadice", "619cbf476b8a1b37a54eebf8 Description": "Vojenská vlnitá trubice pro ventilační systémy vojenského vybavení nebo systémy čištění vzduchu.", @@ -8858,7 +8858,7 @@ "628cd624459354321c4b7fa2 Name": "Nosič plátů Tasmanian Tiger SK (Vícebarevná Černá)", "628cd624459354321c4b7fa2 ShortName": "TT SK", "628cd624459354321c4b7fa2 Description": "Lehký, skeletový nosič plátů TT SK je vyroben především z lehkého, tenkého a odolného nylonového materiálu Cordura laminovaného TPU s udávanou hustotou nejméně 700 denierů. Konstrukce vesty poskytuje dva lehké kryty na pláty, nastavitelné ramenní popruhy a lehký bederní můstek. Je vybavena předním panelem pro 4 zásobníky.", - "628d0618d1ba6e4fa07ce5a4 Name": "Nosič plátů NPP KlASS Bagariy (Digitální Flora)", + "628d0618d1ba6e4fa07ce5a4 Name": "Taktická vesta s balistickou ochranou NPP KlASS Bagariy (Digitální Flora)", "628d0618d1ba6e4fa07ce5a4 ShortName": "Bagariy", "628d0618d1ba6e4fa07ce5a4 Description": "Ve druhém tisíciletí se vybavení vojáka vzhledem k novým hrozbám a úkolům výrazně změnilo. Byla vyžadována lepší úroveň ochrany, a proto ruská armáda potřebovala spolehlivé a funkční neprůstřelné vesty. V polovině roku 2000 dostala MVD, která byla později reorganizována na Ruskou gardu, neprůstřelné vesty Bagariy. Bagariy používali jak řadoví vojáci vnitřních vojsk, tak i speciální jednotky. Aktivně byla používána u PMC BEAR jako hlavní těžká neprůstřelná vesta.", "628dc750b910320f4c27a732 Name": "Nosič plátů ECLiPSE RBAV-AF (Zelený Ranger)", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "USEC Chameleon", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "BEAR VOLK", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "BEAR Kojotí", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "USEC DesOps", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Death Knightova maska", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "Unikátní maska vůdce oddílu Goons, bývalých USEC operátorů, kteří se rozhodli neutéct z Tarkova, ale vytvořit si vlastní řád.", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "USEC Predator", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", "64f07f7726cfa02c506f8ac0 Name": "Diář", "64f07f7726cfa02c506f8ac0 ShortName": "Diář", "64f07f7726cfa02c506f8ac0 Description": "Diář člověka, který opravdu miluje všechno Sovětské.", @@ -11920,7 +11920,7 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "USEC Defender", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "USEC BOSS Delta", "657f8e9824d2053bb360b51d ShortName": "USEC BOSS Delta", "657f8e9824d2053bb360b51d Description": "USEC BOSS Delta", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "BEAR URON", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "BEAR OPS MGS", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Tactical jacket", "657f925dada5fadd1f07a57a Name": "Hybridní kompozitní materiály", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "Mrtvý civilista", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", " V-ex_light": "Auto u cesty na vojenskou základnu", " Voip/DisabledForOffline": "VOIP není v offline režimu dostupný", " kg": "Kg", @@ -12085,9 +12070,9 @@ "4:3 - Not wide": "4:3 - Fullscreen", "4x supersampling": "Převzorkování (4x)", "5070Kills": "Zabito hráčů s úrovní 51-70", - "65bd1875c443e7fffb006e83": "Úroveň 1", - "65bd187e578fa4a9f503f003": "Úroveň 2", - "65bd1882b7378d56ab0817c3": "Úroveň 3", + "65bd1875c443e7fffb006e83": "Tier 1", + "65bd187e578fa4a9f503f003": "Tier 2", + "65bd1882b7378d56ab0817c3": "Tier 3", "7099Kills": "Zabito hráčů s úrovní 71-99", "ELITE Level": "ELITNÍ Úroveň", "A LOT": "MNOHO", @@ -12102,8 +12087,6 @@ "AI amount": "Množství AI", "AI difficulty": "Obtížnost AI", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "Penetrace", - "AMMO PROJECTILE COUNT": "Počet projektilů", "ARMOR CLASS": "TŘÍDA OCHRANY", "ARMOR POINTS": "ŽIVOTNOST", "ARMOR TYPE": "TYP ARMORU", @@ -12146,12 +12129,11 @@ "AheadOfTimeEnding": "ČAS DOKONČENÍ", "Aim": "Míření", "AimDrills": "Míření", - "AimDrillsLevelingUpDescription": "Dovednost Míření se zlepšuje zásahy do nepřítele během míření.", "AimMaster": "Mistr míření", "AimMasterDescription": "Mistrovské míření snižuje čas zamíření a kývání bezprostředně po zamíření.", - "AimMasterElite": "Zvyšuje rychlost zamíření o [{0:0.#%}]", - "AimMasterSpeed": "Zvyšuje rychlost zamíření o [{0:0.#%}]", - "AimMasterWiggle": "Zvyšuje AimMasterWiggle o [{0:0.#%}]", + "AimMasterElite": "Zvyšuje rychlost zamíření o [{0:0%}]", + "AimMasterSpeed": "Zvyšuje rychlost zamíření o [{0:0%}]", + "AimMasterWiggle": "Zvyšuje AimMasterWiggle o [(+{0:0%})]", "Aiming deadzone:": "Mrtvá zóna míření:", "AirFilteringUnit": "VZDUCHOVÁ FILTRAČNÍ JEDNOTKA", "AirplaneDelayMessage": "Počkejte na přílet! Vzdušný prostor je momentálně přetížený", @@ -12241,12 +12223,9 @@ "Arena/CustomGames/toggle/tournament": "Turnaj", "Arena/EndMatchNotification": "Zápas skončil v době vaší nepřítomnosti", "Arena/Matching/CustomGames": "Vlastní hry", - "Arena/Notification/Selection/Blocked": "Zakoupení šablony blokováno", "Arena/OnCancelMatch": "Vyhledávání zrušeno kvůli problémům s načítáním", "Arena/OnCancelMatch/Group": "Vyhledávání zrušeno kvůli problému s načítáním u člena skupiny", "Arena/OnCancelMatch/NoServer": "Nepodařilo se najít dostupný server. Zkuste to prosím později.", - "Arena/Popups/TwitchDropsHeader": "Vyzvednout dárek", - "Arena/Preset/Tooltip/Tab/6": "Různé jedinečné sběratelské šablony.", "Arena/Preset/Tooltip/Tab/Assault": "Třída útočníka je nejuniverzálnější. Šablony této třídy mají vyvážené vybavení vhodné pro většinu bojových situací.", "Arena/Preset/Tooltip/Tab/CQB": "CQB třída je nejsilněji třída v Aréně, co se týče balistiky. CQB se vyznačují obličejovými štíty a zvýšeným množstvím munice pro své hlavní zbraně. Šablony této třídy jsou vynikající při obraně pozic a dlouhotrvajících přestřelkách.", "Arena/Preset/Tooltip/Tab/Collection": "Šablony za speciální úspěchy v Aréně.", @@ -12294,22 +12273,16 @@ "Arena/TeamColor/white_plural": "Bílý", "Arena/TeamColor/yellow": "Žlutý", "Arena/TeamColor/yellow_plural": "Žlutý", - "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Nedostatek peněz pro jednoho nebo více členů skupiny", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Nedostatek odemčených šablon pro jednoho nebo více členů skupiny", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Nedostatek odemčených šablon {0} pro jednoho nebo více členů skupiny", - "Arena/Tiers/LockedBy/PovertyThreshold": "Nedostatek peněz pro Úroveň", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "Nedostatek peněz pro {0}", - "Arena/Tiers/LockedBy/PresetsUnlocked": "Nedostatek odemčených šablon", - "Arena/Tiers/LockedBy/UnavailableTier": "Úroveň není dostupná ke hře", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} je aktuálně nedostupná", - "Arena/Tiers/RankingAvailable {0}": "Hodnocené zápasy nedostupné: {0} odemčených šablon", - "Arena/Tiers/Unlocked {0} presets": "{0} odemčených šablon", - "Arena/Tiers/UnlockedPresets": "Odemčeno šablon", - "Arena/Tooltip/MapSelectedCounter": "Počet zvolených lokací", - "Arena/Tooltip/MinMapCount {0}": "Vyberte několik lokací. Musíte vybrat alespoň {0} lokací", + "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", + "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", + "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", + "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", + "Arena/Tiers/UnlockedPresets": "Presets unlocked", "Arena/UI/Awaiting-Players": "Čekání na hráče", "Arena/UI/Confirm-Match": "Potvrdit", - "Arena/UI/CustomMode": "Vlastní", + "Arena/UI/CustomMode": "Potvrdit", "Arena/UI/Disband-Game/Title": "ROZPUSTĚNÍ HRY", "Arena/UI/Excluded-from-tre-group": "- Budete vyhozeni ze skupiny", "Arena/UI/Game-Found": "Hra nalezena", @@ -12325,10 +12298,8 @@ "Arena/UI/Match_leaving_forbidden_body": "Pokud tento zápas opustíte, znevýhodníte své spoluhráče.
Ztratíte odměnu, hodnocení a budete mít nárok na dočasné zablokování.", "Arena/UI/Match_leaving_forbidden_header": "Pozor! Opouštíte zápas.", "Arena/UI/Match_leaving_permitted_header": "Tento zápas můžete opustit bez trestu.", - "Arena/UI/PresetResetToDefault": "Nastavení pro následující šablony bylo resetováno:", "Arena/UI/Return": "VRÁTIT", "Arena/UI/Return-to-match": "NÁVRAT DO ZÁPASU", - "Arena/UI/Selection/Blocked": "Šablona obsazena", "Arena/UI/Waiting": "Čekání...", "Arena/Ui/ServerFounding": "Hledání serveru...", "Arena/Widgets/Observer/capture point": "Obsaďte objekt", @@ -12370,7 +12341,7 @@ "ArenaIntoxication": "Silný Jed", "ArenaPresetViewScreen/CurrentRankPreset": "Aktuální šablona hodnosti", "ArenaPresetViewScreen/base": "Základní", - "ArenaPresetViewScreen/exp_progress": "Postup XP", + "ArenaPresetViewScreen/exp_progress": "Šablona postupu XP", "ArenaPresetViewScreen/need_unlock": "Vyžadováno odemčení šablony", "ArenaPresetViewScreen/unlocked": "Požadavky splněny", "ArenaRaidInviteDescription": "{0} vás zve do hry", @@ -12382,17 +12353,10 @@ "ArenaUI/BattleMenu/SquadLeaveWarning": "- Budete vyhozeni ze skupiny", "ArenaUI/PresetView/FreePreset": "ZDARMA", "ArenaUI/PresetView/PresetPreview": "Náhled šablony", - "ArenaUI/PresetView/ShopPrice": "Nákupní cena", - "Arena_AirPit": "Air Pit", - "Arena_AutoService": "Chop Shop", - "Arena_Bay5": "Bay 5", - "Arena_Bowl": "Bowl", - "Arena_Yard": "Block", - "Arena_equator_TDM_02": "Equator", + "ArenaUI/PresetView/ShopPrice": "Obchodní cena", "Arena_result_final": "Finální", "Arena_result_result": "Výsledky", "Arena_result_rounds": "Kolo", - "Arena_saw": "Sawmill", "Armband": "Páska", "Armor": "Balistická vesta", "Armor Zone BackHead": "Šíje", @@ -12437,14 +12401,12 @@ "Aspect ratio:": "Poměr stran:", "Assault": "Útočné pušky", "AssaultCarbine Mastering": "Útočné karabiny", - "AssaultDescription": "Dovednost Útočné pušky zlepšuje celkové ovládání, snižuje zpětný ráz a dobu přebíjení.", - "AssaultLevelingUpDescription": "Dovednost Útočné pušky se zlepšuje střelbou a přebijením těchto zbraní.", + "AssaultDescription": "Dovednost manipulace s útočnými puškami zlepšuje celkové ovládání, snižuje zpětný ráz a dobu přebíjení.", "AssaultRifle": "Útočné pušky", "AssaultRifle Mastering": "Útočné pušky", "AssortmentUnlockReward/Description": "Možnost zakoupit tento předmět u {0}", "AttachedLauncher": "Podvěsné granátomety", - "AttachedLauncherDescription": "Dovednost Podvěsné granátomety zlepšuje celkové chování, snižuje zpětný ráz a dobu přebijení těchto zbraní.", - "AttachedLauncherLevelingUpDescription": "Dovednost Podvěsné granátomety se zlepšuje střelbou a přebijením těchto zbraní.", + "AttachedLauncherDescription": "Schopnost manipulace s pod-hlavňovými granátomety", "Attention": "Pozornost", "Attention!": "Upozornění!", "Attention! All items, brought by you into the raid or found in it, have been lost.": "Pozor! Ztratil jste všechny předměty, které jste přinesl nebo našel během raidu.", @@ -12455,10 +12417,9 @@ "Attention! You’ve left the raid and lost everything you brought or found in it.": "Pozor! Opustil jste raid a ztratil všechny předměty, které jste měl u sebe.", "AttentionDescription": "Pozornost zvyšuje rychlost prohledávání různých kontejnerů.", "AttentionEliteExtraLootExp": "Zdvojnásobí vaše zkušenosti za prohledávání", - "AttentionEliteLuckySearch": "Zvyšuje šanci instantně objevit předmět v kontejneru o [{0:0.#%}]", - "AttentionLevelingUpDescription": "Dovednost Pozornost se zlepšuje prohledáváním kontejnerů a těl.", - "AttentionLootSpeed": "Zvyšuje rychlost prohledávání o [{0:0.#%}]", - "AttentionRareLoot": "Zvyšuje rychlost zkoumání o [{0:0.#%}]", + "AttentionEliteLuckySearch": "Šance instantně objevit předmět v kontejneru [({0})]", + "AttentionLootSpeed": "Zvyšuje rychlost prohledávání o [{0:0%}]", + "AttentionRareLoot": "Zvyšuje rychlost zkoumání o [{0:0%}]", "Auctionsdescription": "Aukce", "Authentic": "Autentické", "Authorization": "AUTORIZACE", @@ -12512,7 +12473,6 @@ "Bloom": "Bloom", "BodyTemperature": "Teplota těla", "Boiler Tanks": "Nádrže na vodu", - "BonfireBuff": "Teplo ohně", "BoozeGenerator": "PALÍRNA", "Boss pick": "Výběr bosse", "BossType/AsOnline": "Jako online", @@ -12613,17 +12573,16 @@ "Charge": "Závěr", "Charisma": "Charisma", "CharismaAdditionalDailyQuests": "Přidává další operační denní úkol", - "CharismaBuff1": "Snižuje ceny u obchodníků o [{0:0.#%}]", - "CharismaBuff2": "Zvyšuje věrnost u obchodníků o [{0:0.#%}]", - "CharismaDailyQuestsRerollDiscount": "Snižuje cenu nahrazení operačních úkolů o [{0:0.#%}]", + "CharismaBuff1": "Snižuje ceny u obchodníků o [{0:0%}]", + "CharismaBuff2": "Zvyšuje věrnost u obchodníků o [{0:0%}]", + "CharismaDailyQuestsRerollDiscount": "Snižuje cenu nahrazení operačních úkolů o [{0:0%}]", "CharismaDescription": "Zvládnutí umění charismatu vám umožní získat slevy na různé služby.", "CharismaEliteBuff1": "Nejnovější zprávy z obchodu se dozvíte jako první", - "CharismaEliteBuff2": "Zvyšuje výdělek z každé transakce o [{0:0.#%}]", - "CharismaExfiltrationDiscount": "Snižuje cenu placených východů o [{0:0.#%}]", + "CharismaEliteBuff2": "Zvyšuje výdělek z každé transakce o [{0:0%}]", + "CharismaExfiltrationDiscount": "Snižuje cenu placených východů o [{0:0%}]", "CharismaFenceRepPenaltyReduction": "Snižuje penalty pro reputaci u Fence", - "CharismaHealingDiscount": "Snižuje cenu služby léčení po raidu o [{0:0.#%}]", - "CharismaInsuranceDiscount": "Snižuje cenu služby pojištění o [{0:0.#%}]", - "CharismaLevelingUpDescription": "Dovednost Charisma se zlepšuje zlepšováním dovednosti Pozornost, Vnímání a Intelekt.", + "CharismaHealingDiscount": "Snižuje cenu služby léčení po raidu o [{0:0%}]", + "CharismaInsuranceDiscount": "Snižuje cenu služby pojištění o [{0:0%}]", "CharismaScavCaseDiscount": "Zvyšuje slevu na ceny ve Schránce pro scavy", "ChatScreen/QuestItemsListHeader": "Tyto předměty budou přesunuty do úkolové skrýše:", "ChatScreen/QuestItemsMoved": "Předměty úspěšně přesunuty do skrýše", @@ -12651,19 +12610,19 @@ "Close the game": "Ukončit hru", "CloseBufferGates": "zavřít dveře", "CloseDoor": "Zavřít", - "ClothingItem/Equipped": "Vybaveno", - "ClothingItem/Obtained": "Získáno", - "ClothingItem/Preview": "Náhled", - "ClothingItem/Purchase": "Dostupné", - "ClothingItem/Unavailable": "Nedostupné", - "ClothingPanel/ExternalObtain": "K dispozici k zakoupení na webových stránkách", - "ClothingPanel/InternalObtain": "Podmínky pro nákup:", - "ClothingPanel/LoyaltyLevel": "Úroveň reputace\ns obchodníkem:", - "ClothingPanel/PlayerLevel": "Úroveň\nhráče:", - "ClothingPanel/RequiredPayment": "Vyžadována\nplatba:", - "ClothingPanel/RequiredQuest": "Dokončený\núkol:", - "ClothingPanel/RequiredSkill": "Vyžadována\ndovednost:", - "ClothingPanel/StandingLevel": "Reputace\ns obchodníkem:", + "ClothingItem/Equipped": "Equipped", + "ClothingItem/Obtained": "Obtained", + "ClothingItem/Preview": "Preview", + "ClothingItem/Purchase": "Available", + "ClothingItem/Unavailable": "Unavailable", + "ClothingPanel/ExternalObtain": "Available for purchase on the website", + "ClothingPanel/InternalObtain": "Trader purchase conditions:", + "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", + "ClothingPanel/PlayerLevel": "Player\nLevel:", + "ClothingPanel/RequiredPayment": "Required\nPayment:", + "ClothingPanel/RequiredQuest": "Completed\ntask:", + "ClothingPanel/RequiredSkill": "Required\nSkill:", + "ClothingPanel/StandingLevel": "Trader\nStanding:", "CloudinessType/Clear": "Čisto", "CloudinessType/Cloudy": "Oblačno", "CloudinessType/CloudyWithGaps": "Zataženo s průtržemi mračen", @@ -12740,17 +12699,15 @@ "CovertMovement": "Plížení", "CovertMovementDescription": "Plížení dělá vaše kroky tišší a snižuje vzdálenost na kterou vás lze slyšet.", "CovertMovementElite": "Plížení je na všech površích stejně tiché", - "CovertMovementEquipment": "Snižuje hlasitost hluku zbraní a vybavení o [{0:0.#%}]", - "CovertMovementLevelingUpDescription": "Dovednost Plížení se zlepšuje pomalým pohybem.", - "CovertMovementLoud": "Snižuje hlasitost kroků na neobvyklých površích o [{0:0.#%}]", - "CovertMovementSoundRadius": "Snižuje oblast šíření zvuku při plížení o [{0:0.#%}]", - "CovertMovementSoundVolume": "Snižuje hlasitost kroků na běžných površích o [{0:0.#%}]", - "CovertMovementSpeed": "Zvyšuje rychlost plížení o [{0:0.#%}]", + "CovertMovementEquipment": "Snižuje hlasitost hluku zbraní a vybavení o [{0:0%}]", + "CovertMovementLoud": "Snižuje hlasitost kroků na neobvyklých površích o [{0:0%}]", + "CovertMovementSoundRadius": "Snižuje oblast šíření zvuku při plížení o [{0:0%}]", + "CovertMovementSoundVolume": "Snižuje hlasitost kroků na běžných površích o [{0:0%}]", + "CovertMovementSpeed": "Zvyšuje rychlost plížení o [{0:0%}]", "Crafting": "Výroba", - "CraftingContinueTimeReduce": "Zkracuje čas pro všechnu výrobu o [{0:0.#%}] (kromě Bitcoin farmy)", + "CraftingContinueTimeReduce": "Zkracuje čas pro všechnu výrobu o [{0:0.##%}] (kromě Bitcoin farmy)", "CraftingElite": "Možnost vyrábět až dva různé předměty v oblasti najednou", - "CraftingLevelingUpDescription": "Dovednost Výroba se zlepšuje vyráběním předmětů v Úkrytu.", - "CraftingSingleTimeReduce": "Snižuje čas výroby předmětů o [{0:0.#%}]", + "CraftingSingleTimeReduce": "Snižuje čas výroby předmětů o [{0:0.##%}]", "Craftingdescription": "Zlepšení řemeslných dovedností zkracuje dobu výroby předmětů, včetně těch, které se vyrábějí cyklicky.", "Create group dialog": "Vytvořit skupinovou konverzaci", "CreateDialog": "{0} vytvořil skupinovou konverzaci!", @@ -12778,8 +12735,7 @@ "DISCONNECT FROM GLOBAL CHAT": "ODPOJIT SE OD GLOBÁLNÍHO CHATU", "DISPOSE": "ZAHODIT", "DMR": "Ostrostřelecké pušky (DMR)", - "DMRDescription": "Dovednost Ostrostřelecké pušky (DMR) zlepšuje celkové ovládání, snižuje zpětný ráz a dobu přebíjení.", - "DMRLevelingUpDescription": "Dovednost Ostrostřelecké pušky se zlepšuje střelbou a přebijením těchto zbraní.", + "DMRDescription": "Dovednost manipulace s puškami pro přesnou střelbu (DMR) zlepšuje celkové ovládání, snižuje zpětný ráz a dobu přebíjení.", "DON'T TRY TO LEAVE": "NESNAŽTE SE ODEJÍT", "DONTKNOW": "NEVÍM", "DOWN": "K ZEMI", @@ -12908,11 +12864,11 @@ "DrawElite": "Stabilní zacílení první 3 vteřiny při jakémkoli stavu výdrže", "DrawMaster": "Mistr tasení", "DrawMasterDescription": "Mistrovské tasení umožňuje rychlejší přepínání zbraní.", - "DrawMasterElite": "Zvyšuje rychlost tasení zbraně o [{0:0.#%}]", - "DrawMasterSpeed": "Zvyšuje rychlost tasení zbraně o [{0:0.#%}]", - "DrawSound": "Snižuje zvuk zamíření o [{0:0.#%}]", - "DrawSpeed": "Zvyšuje rychlost zamíření o [{0:0.#%}]", - "DrawTremor": "Snižuje efekt chvění o [50%] první 2 vteřiny po zamíření", + "DrawMasterElite": "Zvyšuje rychlost tasení zbraně o [{0:0%}]", + "DrawMasterSpeed": "Zvyšuje rychlost tasení zbraně o [{0:0%}]", + "DrawSound": "Snižuje zvuk zamíření o [{0:0%}]", + "DrawSpeed": "Zvyšuje rychlost zamíření o [{0:0%}]", + "DrawTremor": "Snižuje efekt chvění o 50% první 2 vteřiny po zamíření", "DropBackpack": "Rychlé odhození batohu", "DropItem": "Zahodit předm.", "Duck": "Skrčení se", @@ -12934,10 +12890,9 @@ "EAntialiasingMode/None": "Vypnuto", "EAntialiasingMode/TAA_High": "TAA High", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", "EArenaPresetsType/Assault": "Útočník", "EArenaPresetsType/CQB": "CQB", - "EArenaPresetsType/Marksman": "Odstřelovač", + "EArenaPresetsType/Marksman": "Ostrostřelec", "EArenaPresetsType/Scout": "Průzkumník", "EAutoVaultingUseMode/Automatic": "Automaticky", "EAutoVaultingUseMode/Hotkey": "Klávesa", @@ -13136,13 +13091,12 @@ "Enabled": "Zapnuto", "Endurance": "Vytrvalost", "EnduranceBreathElite": "Dýchání není závislé na energii", - "EnduranceBuffBreathTimeInc": "Zvyšuje dobu zadržení dechu o [{0:0.#%}]", - "EnduranceBuffEnduranceInc": "Zvyšuje výdrž o [{0:0.#%}]", - "EnduranceBuffJumpCostRed": "Snižuje spotřebu výdrže při skoku o [{0:0.#%}]", - "EnduranceBuffRestorationTimeRed": "Snižuje čas obnovení výdrže o [{0:0.#%}]", + "EnduranceBuffBreathTimeInc": "Zvyšuje dobu zadržení dechu o [{0:0%}]", + "EnduranceBuffEnduranceInc": "Zvyšuje výdrž o [{0:0%}]", + "EnduranceBuffJumpCostRed": "Snižuje spotřebu výdrže při skoku o [{0:0%}]", + "EnduranceBuffRestorationTimeRed": "Snižuje čas obnovení výdrže o [{0:0%}]", "EnduranceDescription": "Vytrvalost ovlivňuje množství výdrže a rychlost jejího čerpání při běhu, skákání a také dobu zadržení dechu, popřípadě dobu znovu popadnutí dechu.", "EnduranceHands": "Výdrž rukou zvýšena", - "EnduranceLevelingUpDescription": "Dovednost Vytrvalost se zlepšuje běháním bez přetížení a posilováním v Úkrytu.", "EnergyExpensesUp {0}": "Spotřeba energie se zvýšila o {0}", "EnergyRate": "Obnova energie", "Enter": "Vstoupit", @@ -13272,7 +13226,6 @@ "Friends": "Přátelé", "Friends invite is already sent": "Žádost o přátelství byla již odeslána.", "Friends list": "Seznam přátel", - "FrostbiteBuff": "Moranina zima", "Full": "Plný", "Full Recovery Time": "Čas do úplného zotavení", "Fullscreen mode:": "Režim obrazovky:", @@ -13340,8 +13293,7 @@ "HIGH_PACKETS_LOSS": "Vysoká ztráta paketů", "HIT": "ZÁSAH", "HMG": "Těžké kulomety", - "HMGDescription": "Dovednost Těžké kulomety zlepšuje celkové ovládání, snižuje zpětný ráz a dobu přebíjení.", - "HMGLevelingUpDescription": "Dovednost Těžké kulomety se zlepšuje střelbou a přebijením těchto zbraní.", + "HMGDescription": "Dovednost manipulace s těžkými kulomety zlepšuje celkové ovládání, snižuje zpětný ráz a dobu přebíjení.", "HOLD FIRE": "NESTŘÍLET", "HOLDFIRE": "NESTŘÍLET", "HOLDPOSITION": "DRŽTE POZICI", @@ -13378,7 +13330,6 @@ "HealthElitePosion": "Úroveň imunity vůči jedu [({0})]", "HealthEnergy": "Snižuje spotřebu energie o [{0:0%}]", "HealthHydration": "Snižuje rychlost dehydratace o [{0:0%}]", - "HealthLevelingUpDescription": "Dovednost Zdraví se zlepšuje zlepšováním dovednosti Síla, Vytrvalost a Vitalita.", "HealthOfflineRegenerationInc": "Zvyšuje regeneraci mimo raid o [{0:0%}]", "HealthRate": "Regenerace zdraví", "HealthTreatment/SkipHealthTreatmentDialogue": "Pozor! Máte špatný zdravotní stav.\nPřejete si přeskočit ošetření a\npřejít do HLAVNÍHO MENU?", @@ -13386,13 +13337,12 @@ "Heavy": "Těžký", "HeavyBleeding": "Těžké krvácení", "HeavyVestBluntThroughputDamageReduction": "Snižuje tupé poškození na části těla kryté těžkou balistikou o [{0:0%}]", - "HeavyVestDeteriorationChanceOnRepairReduce": "Snižuje šanci na opotřebení při opravě o [50%]", + "HeavyVestDeteriorationChanceOnRepairReduce": "Šance na opravu bez opotřebení (50%)", "HeavyVestMoveSpeedPenaltyReduction": "Snižuje postih rychlosti pohybu při nošení těžké balistiky o [{0:0%}]", "HeavyVestNoBodyDamageDeflectChance": "Šance na odražení střely od těžké balistiky", "HeavyVestRepairDegradationReduction": "Snižuje opotřebení při použití opravných sad o [{0:0%}]", "HeavyVests": "Těžké vesty", "HeavyVestsDescription": "Schopnost nošení těžké balistické ochrany snižuje množství poškození z průrazného útoku, poškození explozí, které se projeví na vašem zdraví a životnosti balistické vesty a zlepšuje pohyblivost.", - "HeavyVestsLevelingUpDescription": "Dovednost Těžké vesty se zlepšuje opravováním těžkých balistických vest a plátů.", "Hideout/Craft/ToolMarkerTooltip": "Tento předmět se použije jako výpomocný nástroj. Po dokončení výroby se vrátí do vašeho inventáře.", "Hideout/Handover window/Caption/All weapons": "Všechny zbraně", "Hideout/Handover window/Message/Items in stash selected:": "Předměty ve skrýši vybrány:", @@ -13405,9 +13355,8 @@ "HideoutExtraSlots": "+2 sloty na palivové kanystry\n+2 sloty na vodní filtry\n+2 sloty na filtry vzduchu\n+2 úložná místa na mince z bitcoinové farmy", "HideoutInteractions/TransferItems": "Přenést předměty", "HideoutManagement": "Správa úkrytu", - "HideoutManagementLevelingUpDescription": "Dovednost Správa úkrytu se zlepšuje vyráběním předmětů a vylepšováním zón v Úkrytu.", - "HideoutResourceConsumption": "Snižuje spotřebu vzduchových, vodních filtrů a paliva o [{0:0.#%}]", - "HideoutZoneBonusBoost": "Zvyšuje procentuální bonus u všech oblastí o [{0:0.#}%] z původních hodnot", + "HideoutResourceConsumption": "Snižuje spotřebu vzduchových, vodních filtrů a paliva o [{0:0%}]", + "HideoutZoneBonusBoost": "Zvyšuje procentuální bonus u všech oblastí o [{0:0}%] z původních hodnot", "Hideout\\Craft\\ToolMarketTooltip": "", "Hideout_area_16_stage_3_description": "Plnohodnotný prostor v úkrytu určený k ukládání předmětů sběratelské hodnoty.", "Hiding objective {0:F1}": "Ukrývání předmětu {0:F1}", @@ -13444,12 +13393,11 @@ "Immunity": "Imunita", "ImmunityAvoidPoisonChance": "Zvyšuje šanci vyhnout se jedu o [{0:0%}]", "ImmunityDescription": "Imunita ovlivňuje náchylnost k onemocnění a jejich účinnost léčby.", - "ImmunityLevelingUpDescription": "Dovednost Imunita se zlepšuje tím, že jste pod účinky jedu nebo jiných negativních efektů.", "ImmunityMiscEffects": "Snižuje všechny negativní účinky u stimulantů, jídla a pití o [{0:0%}]", "ImmunityMiscEffectsChance": "Šance na získání imunity vůči negativním účinkům ze stimulantů, jídla a pití až do [{0:0%}]", "ImmunityPainKiller": "Zvyšuje dobu působení léku proti bolesti o [{0:0%}]", "ImmunityPoisonBuff": "Snižuje sílu účinku jedu o [{0:0%}]", - "ImmunityPoisonChance": "Šance na imunitu vůči jedům [{0:0.#%}]", + "ImmunityPoisonChance": "Šance na imunitu vůči jedům [({0:0%})]", "In equipment": "VE VÝBAVĚ", "InMenu": "Menu", "InRaid": "Raid", @@ -13473,7 +13421,6 @@ "IntellectEliteContainerScope": "Odhadnutí obsahu kontejneru bez prohledání", "IntellectEliteNaturalLearner": "Nepotřebujete návod k prozkoumání předmětu", "IntellectLearningSpeed": "Zvyšuje rychlost zkoumání o [{0:0%}]", - "IntellectLevelingUpDescription": "Dovednost Intelekt se zlepšuje prozkoumáváním předmětů, které neznáte a opravováním zbraní.", "IntellectRepairPointsCostReduction": "Snižuje spotřebu bodů opravných sad o [{0:0%}]", "IntellectWeaponMaintance": "Zvyšuje efektivitu opravných sad o [{0:0%}]", "IntelligenceCenter": "ZPRAVODAJSKÉ CENTRUM", @@ -13644,8 +13591,7 @@ "LH": "LH", "LL": "ÚR", "LMG": "Lehké kulomety", - "LMGDescription": "Dovednost Lehké kulomety zlepšuje celkové ovládání, snižuje zpětný ráz a dobu přebíjení.", - "LMGLevelingUpDescription": "Dovednost Lehké kulomety se zlepšuje střelbou a přebijením těchto zbraní.", + "LMGDescription": "Dovednost manipulace s lehkými kulomety zlepšuje celkové ovládání, snižuje zpětný ráz a dobu přebíjení.", "LOAD": "NABÍT", "LOAD FROM DIRECTORY...": "Načíst z adresáře...", "LOAD FROM FILE...": "Načíst ze souboru...", @@ -13665,9 +13611,8 @@ "LastHero": "LastHero", "LastHeroDescription": "Boj s protivníky v nekonečné přestřelce. Vítěz bude jen jeden.", "LastHeroDescriptionShort": "Jste odkázáni sami na sebe", - "Launcher": "Granátomety", - "LauncherDescription": "Dovednost Granátomety zlepšuje celkové chování, snižuje zpětný ráz a dobu přebijení těchto zbraní.", - "LauncherLevelingUpDescription": "Dovednost Granátomety se zlepšuje střelbou a přebijením těchto zbraní.", + "Launcher": "Odpalovací zařízení", + "LauncherDescription": "Schopnost manipulace s granátomety", "LeanLockLeft": "Výklon vlevo", "LeanLockRight": "Výklon vpravo", "LeanX negative": "Plynulý výklon vlevo", @@ -13698,13 +13643,12 @@ "Light": "Lehký", "LightBleeding": "Lehké krvácení", "LightVestBleedingProtection": "Části těla pokryté lehkou balistikou jsou imunní vůči krvácení", - "LightVestDeteriorationChanceOnRepairReduce": "Snižuje šanci na opotřebení při opravě o [50%]", + "LightVestDeteriorationChanceOnRepairReduce": "Šance na opravu bez opotřebení (50%)", "LightVestMeleeWeaponDamageReduction": "Snižuje poškození chladnými zbraněmi na části těla kryté lehkou balistikou o [{0:0%}]", - "LightVestMoveSpeedPenaltyReduction": "Snižuje postih rychlosti pohybu při nošení lehké balistiky o [{0:0.#%}]", - "LightVestRepairDegradationReduction": "Snižuje opotřebení při použití opravných sad o [{0:0.#%}]", + "LightVestMoveSpeedPenaltyReduction": "Snižuje postih rychlosti pohybu při nošení lehké balistiky o [{0:0%}]", + "LightVestRepairDegradationReduction": "Snižuje opotřebení při použití opravných sad o [{0:0%}]", "LightVests": "Lehké vesty", "LightVestsDescription": "Dovednost nošení lehké balistické vesty zlepšuje pohyblivost, snižuje množství poškození z průrazného útoku a útoků chladnými zbraněmi.", - "LightVestsLevelingUpDescription": "Dovednost Lehké vesty se zlepšuje opravováním lehkých balistických vest a plátů.", "Lighthouse": "Maják", "Lighthouse_pass": "Cesta na Lighthouse", "Lighting quality:": "Kvalita osvětlení:", @@ -13756,7 +13700,6 @@ "MAP": "MAPA", "MASTERING": "DOVEDNOSTI", "MATERIAL": "Materiál", - "MAX AMMO DAMAGE": "Poškození", "MAXCOUNT": "MAX. POČET", "MAXIMUM THROW DAMAGE": "MAXIMÁLNÍ POŠKOZENÍ STŘEPINOU", "MED USE TIME": "ČAS POUŽITÍ MED.", @@ -13805,12 +13748,11 @@ "MagDrills": "Manipulace se zásobníkem", "MagDrillsDescription": "Schopnost zaměřená na manipulaci se zásobníkem - páskování a vypáskování střeliva a kontrola zbývajících nábojů.", "MagDrillsInstantCheck": "Po přesunu do vašeho inventáře je zásobník ihned zkontrolován", - "MagDrillsInventoryCheckAccuracy": "Zvyšuje přesnost kontroly zásobníku v kontextovém menu o [{0:0.#}%]", - "MagDrillsInventoryCheckSpeed": "Zvyšuje rychlost kontroly zásobníku v kontextovém menu o [{0:0.#}%]", - "MagDrillsLevelingUpDescription": "Dovednost Manipulace se zásobníkem se zlepšuje páskováním, vypáskováváním a kontrolou zásobníků.", + "MagDrillsInventoryCheckAccuracy": "Zvyšuje přesnost kontroly zásobníku v kontextovém menu o [{0}%]", + "MagDrillsInventoryCheckSpeed": "Zvyšuje rychlost kontroly zásobníku v kontextovém menu o [{0}%]", "MagDrillsLoadProgression": "Páskování zásobníku je prováděno rychleji s každým další nabitým nábojem", - "MagDrillsLoadSpeed": "Zvyšuje rychlost páskování munice o [{0:0.#}%]", - "MagDrillsUnloadSpeed": "Zvyšuje rychlost vypáskování munice o [{0:0.#}%]", + "MagDrillsLoadSpeed": "Zvyšuje rychlost páskování munice o [{0}%]", + "MagDrillsUnloadSpeed": "Zvyšuje rychlost vypáskování munice o [{0}%]", "MagPreset/CaliberNotSelected": "Není specifikována ráže", "MagPreset/DiscardCahangesDescription": "Všechny neuložené změny budou ztraceny.\nPokračovat?", "MagPreset/Error/ContainsMissingItems": "Munice nenalezena:", @@ -13881,27 +13823,24 @@ "Meds": "Léky", "Melee": "Chladné zbraně", "MeleeDescription": "Schopnost manipulace s chladnými zbraněmi", - "MeleeLevelingUpDescription": "Dovednost Chladné zbraně se zlepšuje zásahy do nepřátel pomocí těchto zbraní.", "Memory": "Paměť", "MemoryDescription": "Trénované schopnosti zapomínáte pomaleji", "MemoryEliteMentalNoDegradation": "Nezapomenete žádné schopnosti", - "MemoryLevelingUpDescription": "Dovednost Paměť se zlepšuje pomocí", - "MemoryMentalForget1": "Snižuje míru zapomínání schopností o [{0:0.#%}]", - "MemoryMentalForget2": "Snižuje reset schopností o [{0:0.#%}]", + "MemoryMentalForget1": "Snižuje míru zapomínání schopností o [{0:0%}]", + "MemoryMentalForget2": "Snižuje reset schopností o [{0:0%}]", "Mental": "Psychické", "Merchant": "Obchodník", "Metabolism": "Metabolismus", "MetabolismDescription": "Zdravý metabolismus zvyšuje a prodlužuje účinky jídla a pití a také déle udržuje fyzické schopnosti.", "MetabolismEliteBuffNoDyhydration": "Nedochází k poškození z vyčerpání a dehydratace", "MetabolismEliteNoForget": "Nezapomenete žádné fyzické schopnosti", - "MetabolismEnergyExpenses": "Snižuje spotřebu energie a rychlost dehydratace o [{0:0.#%}]", - "MetabolismLevelingUpDescription": "Dovednost Metabolismus se zlepšuje konzumací jídla a pití.", - "MetabolismMiscDebuffTime": "Snižuje čas negativních účinků u stimulantů, jídla a pití o [{0:0.#%}]", - "MetabolismPhysicsForget": "Snižuje míru zapomínání fyzických schopností o [{0:0.#%}]", + "MetabolismEnergyExpenses": "Snižuje spotřebu energie a rychlost dehydratace o [{0:0%}]", + "MetabolismMiscDebuffTime": "Snižuje čas negativních účinků u stimulantů, jídla a pití o [{0:0%}]", + "MetabolismPhysicsForget": "Snižuje míru zapomínání fyzických schopností o [{0:0%}]", "MetabolismPhysicsForget2": "Snižuje míru zapomínání fyzických schopností", "MetabolismPhysicsNoForget": "Fyzické schopnosti již nemohou být zapomenuty", - "MetabolismPoisonTime": "Snižuje čas účinku jedu o [{0:0.#%}]", - "MetabolismRatioPlus": "Zlepšuje pozitivní efekty jídla a pití o [{0:0.#%}]", + "MetabolismPoisonTime": "Snižuje čas účinku jedu o [{0:0%}]", + "MetabolismRatioPlus": "Zlepšuje pozitivní efekty jídla a pití o [{0:0%}]", "Microphone sensitivity:": "Citlivost mikrofonu:", "MildMusclePain": "Mírná bolest svalů", "Military Checkpoint": "Kontrolní bod Scavů", @@ -14081,7 +14020,7 @@ "OfflineRaid/StartAsGroup": "Začít jako skupina", "OfflineRaid/startasgrouptooltip": "Pokud je tato možnost vybrána, všichni hráči začnou raid na stejném místě", "OfflineRaidScreen/WarningHeader": "Pozor! Váš postup není ve cvičném režimu ukládán!", - "OfflineRaidScreen/WarningText": "Kooperační režim vyžaduje Edge of Darkness verzi hry nebo rozšíření, toto platí pro všechny členy skupiny. \nHra bude probíhat na vyhrazených serverech Escape from Tarkov.", + "OfflineRaidScreen/WarningText": "Kooperační režim vyžaduje Edge of Darkness verzi hry, toto platí pro všechny členy skupiny. \nHra bude probíhat na vyhrazených serverech Escape from Tarkov.", "Old Azs Gate": "Brána staré čerpací stanice", "Old Gas Station": "Stará benzínka", "Old Road Gate": "Brána staré cesty", @@ -14137,18 +14076,16 @@ "Pending requests": "Žádosti k vyřízení", "Perception": "Vnímání", "PerceptionDescription": "Zlepšuje vnímání, koncentraci při míření a usnadňuje detekci blízké kořisti.", - "PerceptionFov": "Zlepšuje koncentraci při míření o [{0:0.#%}]", - "PerceptionHearing": "Zvyšuje doslechovou vzdálenost o [{0:0.#%}]", - "PerceptionLevelingUpDescription": "Dovednost Vnímání se zlepšuje hledáním a zvedáním předmětů.", - "PerceptionLootDot": "Zvyšuje oblast detekce předmětů o [{0:0.#%}]", + "PerceptionFov": "Zlepšuje koncentraci při míření o [{0:0%}]", + "PerceptionHearing": "Zvyšuje doslechovou vzdálenost o [{0:0%}]", + "PerceptionLootDot": "Zvyšuje oblast detekce předmětů o [{0:0%}]", "PerceptionmEliteNoIdea": "Upozornění na blízké cennosti", "Perish": "Zahynul", "Physical": "Fyzické", "Pier Boat": "Loď u mola", "Pistol": "Pistole", "Pistol Mastering": "Pistole", - "PistolDescription": "Dovednost Pistole zlepšuje celkové ovládání, snižuje zpětný ráz a dobu přebíjení těchto zbraní.", - "PistolLevelingUpDescription": "Dovednost Pistole se zlepšuje střelbou a přebijením těchto zbraní.", + "PistolDescription": "Dovednost manipulace s pistolemi zlepšuje celkové ovládání, snižuje zpětný ráz a dobu přebíjení.", "PlaceOfFame": "SÍŇ SLÁVY", "PlantLocationDescription": "Průmyslová zóna a zařízení chemičky č. 16 byly nelegálně pronajaty firmě TerraGroup. Během Válek kontraktorů se staly prostory továrny svědkem mnoha tvrdých přestřelek mezi operátory USEC a BEAR, kteří pak střídavě ovládaly tuto průmyslovou část Tarkova. Později, se prostory zařízení staly útočištěm pro zbylé civilisty, Scavy, včetně rozptýlených zbytků jednotek USEC a BEAR.", "Player": "Hráč", @@ -14219,10 +14156,9 @@ "Prone": "Zalehnutí", "ProneMovement": "Plazení", "ProneMovementDescription": "Plazení je rychlejší a tišší s každou další úrovní.", - "ProneMovementElite": "Zvyšuje rychlost plazení o [{0:0.#%}]", - "ProneMovementLevelingUpDescription": "Dovednost Plazení se zlepšuje pohybem v této poloze.", - "ProneMovementSpeed": "Zvyšuje rychlost plazení o [{0:0.#%}]", - "ProneMovementVolume": "Snižuje hlasitosti plazení [{0:0.#%}]", + "ProneMovementElite": "Zvyšuje rychlost plazení o [{0:0%}]", + "ProneMovementSpeed": "Zvyšuje rychlost plazení o [(+{0:0%})]", + "ProneMovementVolume": "Snižuje hlasitosti plazení [(-{0:0%})]", "Protect objective {0:F1}": "Chraňte předmět {0:F1}", "QUEST ITEM": "PŘEDMĚT K ÚKOLU", "QUEST ITEMS": "ÚKOL. VĚCI", @@ -14410,9 +14346,8 @@ "Recoil Up": "Vertikální zpětný ráz", "RecoilControl": "Zvládání zpětného rázu", "RecoilControlDescription": "Lepší kontrola nad zpětným rázem snižuje zdvih hlavně, takže je i lépe předvídatelný.", - "RecoilControlElite": "Zlepšuje kontrolu zpětného rázu o [{0:0.#%}]", - "RecoilControlImprove": "Zlepšuje kontrolu zpětného rázu o [{0:0.#%}]", - "RecoilControlLevelingUpDescription": "Dovednost Zvládání zpětného rázu se zlepšuje nepřerušovanou střelnou. Čím vyšší je základní zpětný ráz zbraně, tím rychleji se v této dovednosti zlepšujete.", + "RecoilControlElite": "Zlepšuje kontrolu zpětného rázu o [{0:0%}]", + "RecoilControlImprove": "Zlepšuje kontrolu zpětného rázu o [{0:0%}]", "RecommendedVRAM:": "Doporučená VRAM", "Reconnection is not available at this moment due to testing purposes": "Z důvodu testování není opětovné připojení momentálně možné", "RedRebel_alp": "Horolezecká stezka", @@ -14442,7 +14377,6 @@ "Report game bug abuse": "Nahlásit zneužití chyby ve hře", "Report offensive nickname": "Nahlásit urážlivou přezdívku", "Report suspected cheat use": "Nahlásit podezření na použití cheatu", - "Report suspicious profile": "Nahlásit podezřelý profil", "ReportAbuseBug": "Nahlásit za zneužití chyby", "ReportAbuseVoip": "Nahlásit zneužití VoIP & Rádia", "ReportCheater": "Nahlásit podezření na použití cheatu", @@ -14477,8 +14411,7 @@ "Revert your settings to default?": "Jste si jisti, že chcete vrátit nastavení na výchozí hodnoty?", "Revolver": "Revolvery", "Revolver Mastering": "Revolvery", - "RevolverDescription": "Dovednost Revolvery zlepšuje celkové ovládání, snižuje zpětný ráz a dobu přebijení těchto zbraní.", - "RevolverLevelingUpDescription": "Dovednost Revolvery se zlepšuje střelbou a přebijením těchto zbraní.", + "RevolverDescription": "Schopnost manipulace s revolverem.", "RezervBase": "Reserve", "Rig": "Vesta", "Right Arm": "PRAVÁ PAŽE", @@ -14527,8 +14460,7 @@ "SKILLS_SPEED_DOWN": "Snížení rychlosti levelování", "SKILLS_SPEED_UP": "Zvýšení rychlosti levelování", "SMG": "Samopaly", - "SMGDescription": "Dovednost Samopaly zlepšuje celkové ovládání, snižuje zpětný ráz a dobu přebíjení těchto zbraní.", - "SMGLevelingUpDescription": "Dovednost Samopaly se zlepšuje střelbou a přebijením těchto zbraní.", + "SMGDescription": "Dovednost manipulace se samopaly zlepšuje celkové ovládání, snižuje zpětný ráz a dobu přebíjení.", "SNIPERPHRASE": "ODSTŘELOVAČ", "SO": "SO", "SOUND": "ZVUK", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "Velikost slev u {0} se zvýšila o {1}", "Sandbox": "Ground Zero", "Sandbox_VExit": "Auto u Policejního zátarasu", - "Sandbox_high": "Ground Zero", "Saturation:": "Sytost:", "Savage matchmaker": "Vydejte se na raid jako Scav, místní bandita s náhodným vybavením. Tarkov je váš domov, pravidla si určujete sami!", "SavageBannerDescription": "Raid za Scava je odlišný od raidů za vaši hlavní postavu PMC. Scav hráči se spawnují v průběhu raidu na náhodných místech a v náhodném čase. Zdraví a vybavení Scava je také náhodné. Po úspěšném úniku z lokace získáte jako Scav možnost přenést veškerou vaší kořist získanou během raidu do hlavní skrýše. Raidy za Scava neovlivňují vaší hlavní postavu.", @@ -14585,7 +14516,6 @@ "Search": "Prohledat", "SearchDescription": "Dovednost prohledávání vám umožňuje rychleji a efektivněji prohledávat těla a kontejnery.", "SearchDouble": "Prohledávání dvou kontejnerů ve stejné době", - "SearchLevelingUpDescription": "Dovednost Prohledávání se zlepšuje prohledáváním kontejnerů.", "SecondPrimaryWeapon": "Na zádech", "SecondaryWeapon": "Sekundární zbraň", "SecuredContainer": "Vak", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "Některá nastavení byla změněna. Přejete si uložit změny?", "Settings/Sound/BinauralSound": "Binaurální zvuk", "Settings/Sound/ChatVolume": "Hlasitost konverzace:", - "Settings/Sound/CommentatorVolume": "Hlasitost hlasatele:", "Settings/Sound/Device": "Zvukové zařízení", "Settings/Sound/HideoutVolume": "Hlasitost úkrytu:", "Settings/Sound/InterfaceVolume": "Hlasitost rozhraní:", "Settings/Sound/MusicOnRaidEnd": "Hudba na konci raidu", "Settings/Sound/MusicVolume": "Hlasitost hudby:", "Settings/Sound/OverallVolume": "Celková hlasitost:", - "Settings/Sound/ReadyToMatchSoundVolume": "Hlasitost oznámení zápasu:", "Settings/UnavailablePressType": "Nedostupné", "SevereMusclePain": "Silná bolest svalů", "Shack": "KB Vojenské Základny", @@ -14676,8 +14604,7 @@ "Shorl_free_scav": "Cesta na Shoreline", "Shotgun": "Brokovnice", "Shotgun Mastering": "Brokovnice", - "ShotgunDescription": "Dovednost Brokovnice zlepšuje celkové ovládání, zpětný ráz a dobu přebijení těchto zbraní.", - "ShotgunLevelingUpDescription": "Dovednost Brokovnice se zlepšuje střelbou a přebijením těchto zbraní.", + "ShotgunDescription": "Dovednost manipulace s brokovnicemi zlepšuje celkové ovládání a zpětný ráz.", "Show icons": "Zobrazit ikony", "Show:": "Zobrazit:", "SightingRange": "DOHLED MÍŘIDEL", @@ -14700,8 +14627,7 @@ "Smugglers_Trail_coop": "Pašerácká stezka (Co-Op)", "Sniper": "Odstřelovací pušky", "Sniper Roadblock": "Zátaras odstřelovačů", - "SniperDescription": "Dovednost Odstřelovací pušky zlepšuje zpětný ráz, dobu přebíjení a zlepšuje celkové ovládání odstřelovacích pušek.", - "SniperLevelingUpDescription": "Dovednost Odstřelovací pušky se zlepšuje střelbou a přebijením těchto zbraní.", + "SniperDescription": "Schopnost odstřelování snižuje zpětný ráz, dobu přebíjení a zlepšuje celkové ovládání odstřelovacích pušek.", "SniperRifle": "Odstřelovací pušky", "SniperRifle Mastering": "Odstřelovací pušky", "Sniper_exit": "Ulice Mira", @@ -14734,8 +14660,6 @@ "StartInGroup": "Společně", "StartLookingForGroup": "Začít hledat tým", "StartNotInGroup": "Rozděleně", - "StashLinesExternalObtain": "Rozšíření skrýše", - "StashLinesExternalObtain/Tooltip": "Rozšíření skrýše je dostupné na webové stránce", "StatFoundMoneyEUR": "Nalezeno EUR", "StatFoundMoneyRUB": "Nalezeno RUB", "StatFoundMoneyUSD": "Nalezeno USD", @@ -14770,22 +14694,20 @@ "StomachBloodloss": "Břišní krvácení", "Stop looking for group": "Přestat hledat tým", "Strength": "Síla", - "StrengthBuffAim": "Snižuje spotřebuju výdrže při míření o [{0:0.#%}]", + "StrengthBuffAim": "Snižuje spotřebuju výdrže při míření o [{0:0%}]", "StrengthBuffElite": "Vybavené zbraně se nepočítají do hmotnosti postavy (kromě zbraní v batohu)", - "StrengthBuffJumpHeightInc": "Zvyšuje výšku výskoku o [{0:0.#%}]", - "StrengthBuffLiftWeightInc": "Zvyšuje nosnost o [{0:0.#%}]", - "StrengthBuffMeleeCrits": "Zvyšuje šanci způsobit krit. poškození chlad. zbr o [{0:0.#%}]", - "StrengthBuffMeleePowerInc": "Zvyšuje sílu úderu o [{0:0.#%}]", - "StrengthBuffSprintSpeedInc": "Zvyšuje rychlost pohybu a sprintu o [{0:0.#%}]", - "StrengthBuffThrowDistanceInc": "Zvyšuje vzdálenost hodu o [{0:0.#%}]", + "StrengthBuffJumpHeightInc": "Zvyšuje výšku výskoku o [{0:0%}]", + "StrengthBuffLiftWeightInc": "Zvyšuje nosnost o [{0:0%}]", + "StrengthBuffMeleeCrits": "Šance způsobit krit. poškození chlad. zbr [({0})]", + "StrengthBuffMeleePowerInc": "Zvyšuje sílu úderu o [{0:0%}]", + "StrengthBuffSprintSpeedInc": "Zvyšuje rychlost pohybu a sprintu o [{0:0%}]", + "StrengthBuffThrowDistanceInc": "Zvyšuje vzdálenost hodu o [{0:0%}]", "StrengthDescription": "Zvýšení síly Vám umožní skákat výše, běhat rychleji, udeřit tvrději, vrhat předměty na větší vzdálenost a nosit s sebou větší zátěž.", - "StrengthLevelingUpDescription": "Dovednost Síla se zlepšuje běháním během přetížení, házením granátů, používáním chladných zbraní a posilováním v Úkrytu.", "StressBerserk": "Přístupu k módu Berserk", - "StressPainChance": "Snižuje šanci na šok z bolesti o [{0:0.#%}]", + "StressPainChance": "Snižuje šanci na šok z bolesti o [{0:0%}]", "StressResistance": "Odolnost proti stresu", "StressResistanceDescription": "Odolnost vůči stresu zlepšuje šanci odolat šoku ze zranění a zmírňuje chvění a třes v rukou.", - "StressResistanceLevelingUpDescription": "Dovednost Odolnost proti stresu se zlepšuje tím, že dostáváte poškození. Dále tím, že máte efekt bolesti a nepoužijete prášky proti bolesti.", - "StressTremor": "Snižuje oscilace třesu o [{0:0.#%}]", + "StressTremor": "Snižuje oscilace třesu o [{0:0%}]", "StringSeparator/Or": " nebo ", "Stun": "Omráčení", "Subtask completed:": "Vedlejší úkol dokončen:", @@ -14851,9 +14773,8 @@ "Summary": "Shrnutí", "Surgery": "Chirurgie", "SurgeryDescription": "Schopnost provádět operace v poli vám může zachránit život v kritických situacích. Čím dříve si tuto schopnost osvojíte, tím dříve budete provádět operace rychleji a pečlivěji.", - "SurgeryLevelingUpDescription": "Dovednost Chirurgie se zlepšuje používáním chirurgických setů.", - "SurgeryReducePenalty": "Snižuje postih zdraví při šití o [{0:0.#%}]", - "SurgerySpeed": "Zvyšuje rychlost šití o [{0:0.#%}]", + "SurgeryReducePenalty": "Snižuje postih zdraví při šití o [{0:0%}]", + "SurgerySpeed": "Zvyšuje rychlost šití o [{0:0%}]", "Survival Rate Short": "M/P: {0}%", "SurvivalRate": "Míra přežití", "Survived": "Přežil", @@ -14926,9 +14847,8 @@ "ThrowItem": "Zahodit", "Throwing": "Vrhací zbraně", "ThrowingDescription": "Dovednosti manipulace s vrhacími zbraněmi vám umožňuje házet granáty na větší vzdálenost a s menší spotřebou energie.", - "ThrowingEnergyExpenses": "Snižuje spotřebu výdrže při hodu o [{0:0.#%}]", - "ThrowingLevelingUpDescription": "Dovednost Vrhací zbraně se zlepšuje házením granátů.", - "ThrowingStrengthBuff": "Zvyšuje sílu hodu o [{0:0.#%}]", + "ThrowingEnergyExpenses": "Snižuje spotřebu výdrže při hodu o [{0:0%}]", + "ThrowingStrengthBuff": "Zvyšuje sílu hodu o [{0:0%}]", "ThrowingWeaponsBuffElite": "Vrhání nespotřebovává energii a únava nemá vliv na přesnost", "Time flow": "Rychlost času", "Time to reconnect left ({0})": "Čas zbývající k znovupřipojení ({0})", @@ -14976,11 +14896,11 @@ "Trading/Dialog/AvaliableServices": "Můžete mi s něčím pomoct?", "Trading/Dialog/Btr/News": "Co je nového?", "Trading/Dialog/Btr/News/Next": "Nějaké další novinky?", - "Trading/Dialog/Btr/News1": "V poslední době tak silně sněžilo! Takový sníh jsme neměli od dob smluvních válek. Jako bychom nežili na severu. Škoda, že už všechno roztálo.", - "Trading/Dialog/Btr/News2": "Nechodíte často ven, že? Byl velký svátek, celé město slavilo! Mimochodem, hezké svátky.", - "Trading/Dialog/Btr/News3": "Naši králové nadělali pořádný nepořádek, že? Seděli na svých místech, nehýbali se, nenechali nikoho vydechnout.", - "Trading/Dialog/Btr/News4": "Tenhle podivín, který se rok co rok převléká za Santa Clause, teď mluví! Myslel jsem, že je němý.", - "Trading/Dialog/Btr/News5": "Lidé začali po celém městě sbírat figurky místních celebrit. Jsem zvědavý, jestli se z mého BTR stane jedna z nich, nebo ne.", + "Trading/Dialog/Btr/News1": "Největší novinkou je BTR! Všechno jsem si to opravil sám. Považuj to za můj vlastní výtvor. Teď už můžu vozit lidi. Možná mi to pomůže zaplatit opravy.", + "Trading/Dialog/Btr/News2": "V Tarkově někdo pořádá gladiátorské zápasy. Říká se, že spousta lidí tam šla z vlastní vůle. Peníze jsou docela slušné. Pokud přežiješ, samozřejmě!", + "Trading/Dialog/Btr/News3": "V celém Tarkově se strhl rozruch kvůli některým dokumentům TerraGroup. Dokonce se dívali i za hranice, ale já tomu tak nějak nevěřím.", + "Trading/Dialog/Btr/News4": "Před časem se ze zásob obchodníků ztratila většina průrazné munice. Bojovníci jako ty běhali po celém Tarkově a hledali cizí zásoby munice. Teď už je ale všechno v pořádku.", + "Trading/Dialog/Btr/News5": "Sanitar se v poslední době snažil posílit svůj vliv v Tarkově. Měl zřejmě nějakou protilátku. Nedlouho předtím se otrávilo hodně lidí. Náhoda? Myslím, že ne.", "Trading/Dialog/Btr/NoNews": "Myslím, že to jsou všechny novinky, co mám.", "Trading/Dialog/Btr/ServicePayoff{0}": "Jo, to by šlo. (Předat \"{0}\")", "Trading/Dialog/BtrBotCover/Description": "Po celou dobu, co budeš v BTR, budeme střílet na každého, kdo vystrčí nos. Také vyčistíme výsadkovou zónu a budeme tě krýt, než se dostaneš ven, ale ne na dlouho.", @@ -14999,34 +14919,18 @@ "Trading/Dialog/PlayerHandoveItem{0}": "Tohle jsem našel. (předat \"{0}\")", "Trading/Dialog/PlayerTaxi/Description": "Tady je seznam míst, kam tě mohu odvést. Vyber si.", "Trading/Dialog/PlayerTaxi/Name": "Taxi", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Dobře, cíl je kino Rodina. Cena vyhovuje?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Kino Rodina", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "Jedem na tramvaj. Peníze máš, že?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Tramvaj", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "Skvělé, jsme na cestě do centra města. Máš dost peněz?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "Centrum města", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Pojedeme ke Zřícenému jeřábu. Je cena dobrá?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Zřícený jeřáb", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "Vezmu tě na Starý kontrolní bod scavů. Cena je v pořádku, jo?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Starý kontrolní bod scavů", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "Odvezu tě do hotelu Pinewood. Co cena, dobrý?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Hotel Pinewood", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "Pojedeme k Bunkru scavů. Cena vyhovuje?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Scav bunkr", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "Eh, Potopená vesnice? Myslím, že to zvládneme. Tady je cena.", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Potopená vesnice", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "Mohu vás odvést k rozcestí. Máte dost peněz?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Rozcestí", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "Pila? Není problém! Tady je můj ceník.", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Pila", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "Kontrolní bod USECů, dobrá, ale nejezdím zadarmo.", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "Kontrolní bod USECů", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "Mapuji cestu na základnu Emercomu. Jste v pohodě, co se týče ceny?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "Základna Emercom", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "Okie-dokie, stará pila. Tady je cena.", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Stará pila", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "Mám tě vysadit v depu? Jen abys věděl, beze mě se odtud nedostaneš. Jestli je cena v pohodě, hlídej si tam čas, jo?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Vlakové depo", + "Trading/Dialog/PlayerTaxi/p1/Description": "Dobře, cíl je kino Rodina. Cena vyhovuje?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Kino Rodina", + "Trading/Dialog/PlayerTaxi/p2/Description": "Jedem na tramvaj. Peníze máš, že?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tramvaj", + "Trading/Dialog/PlayerTaxi/p3/Description": "Skvělé, jsme na cestě do centra města. Máš dost peněz?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Centrum města", + "Trading/Dialog/PlayerTaxi/p4/Description": "Pojedeme ke Zřícenému jeřábu. Je cena dobrá?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Zřícený jeřáb", + "Trading/Dialog/PlayerTaxi/p5/Description": "Vezmu tě na Starý kontrolní bod scavů. Cena je v pořádku, jo?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Starý kontrolní bod scavů", + "Trading/Dialog/PlayerTaxi/p6/Description": "Odvezu tě do hotelu Pinewood. Co cena, dobrý?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Hotel Pinewood", "Trading/Dialog/Quit": "Rozloučit se a odejít", "Trading/Dialog/ServicePayoff{0}": "Dobře, tohle by mělo stačit. (předat \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Skrýt historii", @@ -15062,14 +14966,13 @@ "TransferScreen/TransferFailed": "Zakoupení služby se nezdařilo", "TransferScreen/TransferSuccess": "Služba zakoupena!", "Tremor": "Třes", - "TroubleFixing": "Zvyšuje rychlost oprav o [{0:0.#%}]", - "TroubleFixingAmmoElite": "Snižuje pravděpodobnost závad způsobených zásobníkem o [50%] po opravě závady stejného původu", - "TroubleFixingDurElite": "Snižuje pravděpodobnost závad způsobených životností zbraní o [50%] po opravě závady stejného původu", + "TroubleFixing": "Zvyšuje rychlost oprav o [{0:0%}]", + "TroubleFixingAmmoElite": "Snižuje pravděpodobnost závad způsobených zásobníkem o 50% po opravě závady stejného původu", + "TroubleFixingDurElite": "Snižuje pravděpodobnost závad způsobených životností zbraní o 50% po opravě závady stejného původu", "TroubleFixingExamineMalfElite": "Identifikace typu poruchy nebude vyžadovat prohlídku zbraně", - "TroubleFixingMagElite": "Snižuje pravděpodobnost závad způsobených municí o [50%] po opravě závady stejného původu", + "TroubleFixingMagElite": "Snižuje pravděpodobnost závad způsobených municí o 50% po opravě závady stejného původu", "TroubleShootingDescription": "Dovednost řešení problémů usnadňuje odstraňování závad na zbraních.", "Troubleshooting": "Odstraňování problémů", - "TroubleshootingLevelingUpDescription": "Dovednost Odstraňování problémů se zlepšuje odstraňováním závad ze zbraní.", "Try_keycard {0}": "Zkusit {0}", "Tunnel": "Tunel", "Tunnel_Shared": "Postranní tunel (Co-Op)", @@ -15152,11 +15055,6 @@ "UI/Arena/Place_7": "7. místo", "UI/Arena/Place_8": "8. místo", "UI/Arena/Place_9": "9. místo", - "UI/ArmorPenetration/High": "Vysoká", - "UI/ArmorPenetration/Low": "Nízká", - "UI/ArmorPenetration/Medium": "Střední", - "UI/ArmorPenetration/VeryHigh": "Velmi vysoká", - "UI/ArmorPenetration/VeryLow": "Velmi nízká", "UI/Charisma/Discount/Insurance": "Cena pojištění", "UI/Charisma/Discount/PostRaidHealing": "Cena léčení", "UI/Charisma/Discount/ScavCase": "Cena schránky pro scavy", @@ -15312,7 +15210,7 @@ "UnlocksOn": "Odemkne se na úrovni {0}", "Unmute": "ZRUŠIT ZTLUMENÍ", "UnmuteVoip": "Zapnout VoIP & Rádio", - "Unranked": "NEHODNOCENÉ", + "Unranked": "NEHODNOCENO", "Unranked/Description": "Nehodnocená hra\nNehodnocené hry zahrnují všechny režimy, u kterých je obtížné určit osobní nebo týmové pořadí, a také režimy PvE a režimy, ve kterých hráči jednoduše bojují na život a na smrt.", "UnremovableItem/Attributes/CannotDroppedInRaid": "Nemůže být vyhozeno v raidu", "Unselected": "Nevybráno", @@ -15334,18 +15232,15 @@ "Very good standing": "velmi dobrá", "Vest": "Vesta", "Village": "Vesnice", - "Violation/IntentionalTeamDamage/Warning": "Pokud budete pokračovat ve střílení spoluhráčů, bude váš účet zablokován", - "Violation/IntentionalTeamKill/Warning": "Pokud budete pokračovat v zabíjení spoluhráčů na začátku kola, bude váš účet zablokován", "Violation/TeamKill/Warning": "Pokud budete pokračovat v zabíjení spoluhráčů, bude váš účet zablokován", "Vital mod weapon in hands": "Nemůžete upravovat hlavní části zbraně, pokud jí máte v rukou.", "Vital parts": "Důležité části", "Vitality": "Vitalita", - "VitalityBuffBleedChanceRed": "Snižuje šanci krvácení o [{0:0.#%}]", + "VitalityBuffBleedChanceRed": "Snižuje šanci krvácení o [{0:0%}]", "VitalityBuffBleedStop": "Všechna krvácení se zastaví sama", "VitalityBuffRegeneration": "Zvyšuje regeneraci zdraví během boje", - "VitalityBuffSurviobilityInc": "Snižuje šanci na úmrtí při ztrátě končetiny o [{0:0.#%}]", + "VitalityBuffSurviobilityInc": "Snižuje šanci na úmrtí při ztrátě končetiny o [{0:0%}]", "VitalityDescription": "Vitalita zvyšuje vaší šance na přežití zranění tím, že snižuje pravděpodobnost krvácení a okamžité smrti prostřednictvím kritického poškození jedné části těla.", - "VitalityLevelingUpDescription": "Dovednost Vitalita se zlepšuje krvácením a zraněním.", "Voice": "Hlas postavy", "Voice 1": "Hlas 1", "Voice 2": "Hlas 2", @@ -15406,23 +15301,22 @@ "WeaponBroken": "ZÁVADA NA ZBRANI", "WeaponBuild/SetNameWindowCaption": "POJMENOVÁNÍ ŠABLONY", "WeaponBuild/SetNameWindowPlaceholder": "zadejte název", - "WeaponDeteriorationChanceReduce": "Snižuje pravděpodobnost opotřebení během oprav o [{0:0.#%}]", + "WeaponDeteriorationChanceReduce": "Snižuje pravděpodobnost opotřebení během oprav o [{0:0%}]", "WeaponDoubleMastering": "Zdvojnásobuje zisk dovednosti", - "WeaponDurabilityLossOnShotReduce": "Snižuje opotřebovávání zbraně při střelbě o [{0:0.#%}]", - "WeaponErgonomicsBuff": "Zvyšuje ergonomii zbraně o [{0:0.#%}]", + "WeaponDurabilityLossOnShotReduce": "Snižuje opotřebovávání zbraně při střelbě o [{0:0%}]", + "WeaponErgonomicsBuff": "Zvyšuje ergonomii zbraně o [{0:0%}]", "WeaponJammed": "ZASEKNUTÁ ZBRAŇ", "WeaponModding": "Úpravy zbraní", "WeaponModdingDescription": "Schonost základní úpravy zbraní v boji zvyšuje ergonomii modifikací a snižuje opotřebování tlumiče.", "WeaponPunch": "Úder pažbou", - "WeaponRecoilBuff": "Snižuje zpětný ráz zbraně o [{0:0.#%}]", - "WeaponReloadBuff": "Zvyšuje rychlost přebíjení o [{0:0.#%}]", - "WeaponStiffHands": "Zvyšuje ergonomii zbraně o [{0:0.#%}]", - "WeaponSwapBuff": "Zvyšuje rychlost změny zbraně o [{0:0.#%}]", + "WeaponRecoilBuff": "Snižuje zpětný ráz zbraně o [{0:0%}]", + "WeaponReloadBuff": "Zvyšuje rychlost přebíjení o [{0:0%}]", + "WeaponStiffHands": "Zvyšuje ergonomii zbraně o [{0:0%}]", + "WeaponSwapBuff": "Zvyšuje rychlost změny zbraně o [{0:0%}]", "WeaponTreatment": "Údržba zbraní", "WeaponTreatmentDescription": "Schopnost opravy a údržby zbraně.", - "WeaponTreatmentLevelingUpDescription": "Dovednost Údržba zbraní se zlepšuje opravováním zbraní pomocí opravných sad.", "WearAmountRepairGunsReducePerLevel": "Snižuje opotřebení při použití opravných sad", - "WearChanceRepairGunsReduceEliteLevel": "Snižuje šanci na opotřebení při použití opravných sad o [50%]", + "WearChanceRepairGunsReduceEliteLevel": "Snižuje šanci na opotřebení při použití opravných sad o 50%", "Weather conditions": "Povětrnostní podmínky", "WeightLimit": "Hmotnostní limit", "Welcome screen description": "Vítejte u Escape from Tarkov!\nV této hře budete muset bojovat o svůj holý život. Překonávat nástrahy ruského města Tarkov, ležícího v Norvinském regionu nebude lehké. Město se ocitlo na pokraji chaosu a zkázy. Vaše postava je operátor soukromé vojenské společnosti (Private Military Company, PMC), chycený ve víru událostí následujících po Válkách kontraktorů (Contract Wars). Oblast je uzavřená a vaše operační velení nereaguje. Cíle vaší mise ztratily význam. Každý je tady teď sám za sebe - přizpůsobte se, přežijte, utečte z blokády nebo se pokuste zachránit ostatní.\n\nBuďte připraven, že v každé misi můžete zemřít a ztratit vše, co jste u sebe měl. Mějte na paměti, že každé selhání vašeho internetového připojení nebo počítače může způsobit odpojení ze hry, smrt vaší postavy a ztrátu všeho, co jste měl u sebe.\n\nAno, budete umírat. A nejspíš velmi často, ale pamatujte - je to stále jenom hra. Hodně štěstí, tam venku!", @@ -15516,7 +15410,7 @@ "arena/AssistShort": "A", "arena/DeathShort": "S", "arena/Exp": "Exp", - "arena/KillShort": "Z", + "arena/KillShort": "K", "arena/Leaderboard/Common": "Běžné", "arena/Leaderboard/KillToDeath": "Obecné", "arena/Leaderboard/Matches": "Zápasů", @@ -15526,16 +15420,16 @@ "arena/Leaderboard/Rank": "Hodnost", "arena/Leaderboard/RefreshHint{0}": "Aktualizováno každých {0} hodin.", "arena/Leaderboard/Title": "Žebříček", - "arena/Leaderboard/Wins": "Výhry", + "arena/Leaderboard/Wins": "Výher", "arena/Leaderboard/d": "d", "arena/Leaderboard/h": "h", "arena/Leaderboard/m": "m", - "arena/Leaderboard/top": "Top", + "arena/Leaderboard/top": "Nejlepší", "arena/Place": "Položit", "arena/Player": "Hráč", "arena/Rank": "Hodnost", "arena/Round": "Kolo", - "arena/button/ArenaBattle": "ZÁPAS V ARÉNĚ", + "arena/button/ArenaBattle": "ARÉNA ZÁPAS", "arena/button/Career": "KARIÉRA", "arena/button/Presets": "ŠABLONY", "arena/button/QuitGame": "OPUSTIT HRU", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "Míra vítězství, %", "arena/career/teamFightStats/wins": "Výher", "arena/career/teamFightStats/winsWithFavPreset": "Zápasů vyhráno s oblíbenou šablonou", - "arena/customGames/create/samePresets": "Duplicitní šablony:", - "arena/customGames/create/setSamePresets": "Povolit duplicitní šablony", "arena/customGames/invite/message{0}": "POZVÁNKA DO VLASTNÍ HRY OD {0}", "arena/customGames/notify/GameRemoved": "Místnost byla rozpuštěna", "arena/customgames/errors/notification/gamealreadystarted": "Hra již začala", @@ -15706,9 +15598,8 @@ "arena/tab/SCOUT": "PRŮZKUMNÍK", "arena/tab/SQB": "CQB", "arena/tooltip/OverallMatches": "Celkový počet odehraných hodnocených a nehodnocených zápasů.", - "arena/tooltip/Presets": "Šablony", - "arena/tooltip/countGlp": "Vaše celkové ARP hodnocení (Arena Reputation Points). Jedná se o statistiku, která určuje vaše hodnocení získané v hodnocených herních režimech. Používá se k porovnávání s hráči se stejnými dovednostmi a také k odemykání nových hodností.", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", + "arena/tooltip/Presets": "Presets", + "arena/tooltip/countGlp": "Vaše celkové hodnocení ARP (Arena Reputation Points). Jedná se o statistiku, která určuje vaše hodnocení získané v hodnocených herních režimech. Používá se k porovnávání s hráči se stejnými dovednostmi a také k odemykání nových hodností a šablon.", "arena/tooltip/friends": "Přátele", "arena/tooltip/kdRatio": "Váš celkový poměr počtu zabití a úmrtí, který se vypočítá ze všech zabití a úmrtí v hodnocených i nehodnocených zápasech. Počítají se pouze zabití hráčů.", "arena/tooltip/leftGlp": "Výše hodnocení ARP potřebná k dosažení další hodnosti.", @@ -15716,11 +15607,10 @@ "arena/tooltip/moneyRubles": "Rubly. Slouží k nákupu šablon a získávají se za vítězství v Aréně.", "arena/tooltip/ratingPlace": "Vaše pozice v žebříčku.", "arena/tooltip/settings": "Nastavení", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", "arena/tooltip/sourcesGlp": "Získáno ARP zdrojů:", "arena/tooltip/winMatches": "Celkový počet vítězství v hodnocených i nehodnocených zápasech.", "arena/tooltip/winRate": "Váš celkový poměr výher vypočítaný ze všech výher a proher v hodnocených i nehodnocených zápasech.", - "arenaui/presetview/lockedpreset": "Nedostupné", + "arenaui/presetview/lockedpreset": "Šablona nedostupná", "arm broke": "Zlomil jste si ruku!", "assaultKills": "Zabití útočnou puškou", "back_plate": "Z. PLÁT", @@ -16370,7 +16260,7 @@ "scav_e6": "Vstup do suterénu", "scav_e7": "Parkoviště apartmánového komplexu Cardinal", "scav_e8": "Obchodní centrum na Klimovské ulici", - "searchspeed": "Zvyšuje rychlost prohledávání o [{0:0.#%}]", + "searchspeed": "Zvyšuje rychlost prohledávání o [{0:0%}]", "sec": "s", "select weapon body for the build": "VYBRAT TĚLO ZBRANĚ PRO ŠABLONU", "semiauto": "Poloautomaticky", @@ -16450,8 +16340,6 @@ "{0} GroupPlayerBlocking/MatchLeave": "Herní režim dočasně zablokován z důvodu zablokování jednoho ze členů skupiny ({0}) za upuštění hry", "{0} GroupPlayerBlocking/NotAcceptedMatch": "Herní režim dočasně zablokován z důvodu zablokování jednoho ze členů skupiny ({0}) za neúspěšné potvrzení zápasu", "{0} GroupPlayerBlocking/TeamKill": "Herní režim dočasně zablokován z důvodu zablokování jednoho ze členů skupiny ({0}) za opakované zabijení spoluhráčů", - "{0} Violation/IntentionalTeamDamage/Blocking": "Hrát {0} byl vyloučen ze zápasu a obdržel trest za střílení na spoluhráče", - "{0} Violation/IntentionalTeamKill/Blocking": "Hrát {0} byl vyloučen ze zápasu a obdržel trest za střílení na spoluhráče na začátku kola", "{0} Violation/TeamKill/Blocking": "Hráč {0} byl vyloučen ze zápasu a obdržel trest za zabijení spoluhráčů", "{0} added you to the ignore list": "{0} vás přidal do seznamu ignorovaných", "{0} ask to cooperate": "{0} Vás zdraví", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "Ground Zero", "653e6760052c01c1c805532f Description": "Obchodní centrum Tarkova. Zde sídlila společnost TerraGroup. Tady to všechno začalo.", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "United Security", "5464e0404bdc2d2a708b4567 Description": "Soukromá vojenská společnost USEC byla založena v roce 1999 spojením společností KerniSEC a Safe Sea. V roce 2004 jednatel společnosti TerraGroup international holding uzavřel s vedením USEC kontrakt, čímž v podstatě vytvořil soukromou armádu firmy TG, o síle více než 7500 mužů s kancelářemi po celém světe.", "5464e0454bdc2d06708b4567 Name": "BEAR", @@ -17541,13 +17427,13 @@ "596a204686f774576d4c95de declinePlayerMessage": "", "596a204686f774576d4c95de completePlayerMessage": "", "596a218586f77420d232807c name": "Oprava auta", - "596a218586f77420d232807c description": "Dobré odpoledne, mladý muži. Potřebuji vaší pomoc, je to pro dobrou věc. Jak jste již dávno odhalil, sbírám jídlo, léky a další nezbytnosti pro evakuaci lidí. Nechci vás klamat, je to pravda. A právě teď už máme dostatek zásob na cestu. Ale co je nejdůležitější, přes moje kontakty se mi podařilo vyjednat s druhou stranou, volný průchod pro tyto lidi. Umíte si to představit? Ale pouze civilní obyvatelstvo a muži jen nad 60 let. Proto v první vlně budou většinou děti s matkami a pár starších lidí. Téměř vše je připraveno, až na jeden malý detail - potřebujeme odvoz. Máme několik vozidel, ale jen tolik, aby se vešli všichni z první vlny a nejsou bohužel provozuschopná. Byly odstavená příliš dlouho. A řekla bych, že potřebují nové baterie a zapalovací svíčky. Palivo, není nutné. Napíšu vám seznam toho, co potřebujeme. Můžete to sehnat?", + "596a218586f77420d232807c description": "Dobré odpoledne, mladý muži. Potřebuji vaší pomoc, je to pro dobrou věc. Jak jste již dávno odhalil, sbírám jídlo, léky a další nezbytnosti pro evakuaci lidí. Nechci vás klamat, je to pravda. A právě teď už máme dostatek zásob na cestu. Ale co je nejdůležitější, přes moje kontakty se mi podařilo vyjednat s druhou stranou, volný průchod pro tyto lidi. Umíte si to představit? Ale pouze civilní obyvatelstvo a muži jen nad 60 let. Proto v první vlně budou většinou děti s matkami a pár starších lidí. Téměř vše je připraveno, až na jeden malý detail - potřebujeme odvoz. Máme několik vozidel, ale jen tolik, aby se vešli všichni z první vlny a nejsou bohužel provozuschopná. Byly odstavená příliš dlouho. A řekla bych, že potřebují nové baterie a žhavící svíčky. Palivo, není nutné. Napíšu vám seznam toho, co potřebujeme. Můžete to sehnat?", "596a218586f77420d232807c failMessageText": "", "596a218586f77420d232807c successMessageText": "Nemáš ani tušení, jak moc jsi pro ty lidi udělal.", "596b46d886f77457ca186189": "Najít během raidu Autobaterie", - "596b46ec86f77457c7006f89": "Najít během raidu Zapalovací svíčky", + "596b46ec86f77457c7006f89": "Najít během raidu Žhavící svíčky", "596b470c86f77457ca18618a": "Předat baterie", - "596b472686f77457c7006f8a": "Předat zapalovací svíčky", + "596b472686f77457c7006f8a": "Předat žhavící svíčky", "5979e7a386f7743ec214c7a3": "", "596a218586f77420d232807c acceptPlayerMessage": "", "596a218586f77420d232807c declinePlayerMessage": "", @@ -17959,7 +17845,7 @@ "5a27bb3d86f77411ea361a21 name": "Náklad X - Část 2", "5a27bb3d86f77411ea361a21 description": "Disky obsahovaly více informací než jsem čekal. Náklad je ve zdravotním středisku, ale nejdůležitější je, že se tam dostal až po pokusu o evakuaci. Potom co byl západní tunel zničen, zkusili zaměstnanci TerraGroup s podporou USEC dostat náklad zpět do přístavu, ale vjezd už byl zatarasen T-90kou. Proto sjeli z cesty a jako správní kapitalisti ho někde urychleně uložili, ha-ha. Víme, že náklad měl dvě části. Ta první, která obsahovala modré sudy, je někde v prvním patře východního křídla střediska. Kde je druhá část, nevíme. Najdi ji.", "5a27bb3d86f77411ea361a21 failMessageText": "", - "5a27bb3d86f77411ea361a21 successMessageText": "Úžasné, první polovina nákladu je téměř naše. Podíváme se do dokumentů, které jsi nám poskytl a doufejme, že tam jsou informace o druhé polovině. Až budeme mít výsledky, tak tě kontaktujeme.", + "5a27bb3d86f77411ea361a21 successMessageText": "Úžasné, první polovina nákladu je téměř naše. Podíváme se do dokumentů, které jsi nám poskytli a doufejme, že tam jsou informace o druhé polovině. Až budeme mít výsledky, tak tě kontaktujeme.", "5a2819c886f77460ba564f38": "Získat jakékoli informace o druhé části zásilky", "5a2e966286f7742f6c4f27a6": "Předat získané informace", "5a3ba76486f7744d39436da2": "Najít ve zdravotním středisku místnost s barely", @@ -18024,7 +17910,7 @@ "5a27bc8586f7741b543d8ea4 description": "Zdravím tě můj drahý příteli, vypadá to že tentokrát jsem opravdu blízko velmi zajímavé zakázce. Na tom disku jsme našli část plánu raketového pohonu, který bude západ velice zajímat, protože se používá na ponorkách typu Typhoon - které jsou už údajně vyřazeny. Také tam byla dost detailní zpráva o námořníkovi, který sloužil u Baltské flotily, pravý mořský pes. Tak ten je teď někde v Tarkově a vypadá to, že je napojen na velení námořnictva. Právě jeho musíme dostat. Podle mých informací občas tajně kšeftuje se Scavy. Dostat se k němu nebude jednoduché. Je nutné, aby jsi pracoval diskrétně a nalíčit na něj past. Máme jen jednu šanci, příteli. Pro naše zájmy je důležité, aby jsi uspěl a nenechal tuhle šanci uniknout. Docela se mi teď trochu třesou ruce, jak spolu mluvíme. Nemáš ponětí jak je to důležité. Tady se s neúspěchem nepočítá. Jsi skvělý bojovník, ale chci si být jistý, že zvládneš i tichou operaci. Potřebuji odstřelovače, a to zkušeného, takže přijď až budeš připraven.", "5a27bc8586f7741b543d8ea4 failMessageText": "", "5a27bc8586f7741b543d8ea4 successMessageText": "Se vším respektem k tobě, nevěřil jsem, že to zvládneš. Vypadá to, že ti budu říkat ostrostřelec. Až budu potřebovat, tak tě kontaktuji.", - "5a28235e86f7741da250b438": "Dosáhnout požadované úrovně u dovednosti Odstřelovacích pušek", + "5a28235e86f7741da250b438": "Dosáhnout požadované úrovně u dovednosti Odstřelovací pušky", "5a27bc8586f7741b543d8ea4 acceptPlayerMessage": "", "5a27bc8586f7741b543d8ea4 declinePlayerMessage": "", "5a27bc8586f7741b543d8ea4 completePlayerMessage": "", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "Eliminovat na Lighthouse operátory PMC pomocí odstřelovací pušky do hlavy", "63aec6f256503c322a190374": "Eliminovat na Streets of Tarkov operátory PMC pomocí odstřelovací pušky do hlavy", "64b694c8a857ea477002a408": "Eliminovat na Interchange operátory PMC pomocí odstřelovací pušky do hlavy", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18882,7 +18767,7 @@ "5c0be13186f7746f016734aa description": "Ahoj, bojovníku. Slyšel jsem, že se snažíš stát odstřelovačem. Vydělávat si jako odstřelovač samozřejmě vyžaduje houževnatost, trpělivost a rozhodnost, ale existuje mnoho dalších důležitých faktorů. Víš, co mi řekl jednou Dima? \"Každý může střílet, ale jen pár z nich se může stát skutečnými Odstřelovači\".", "5c0be13186f7746f016734aa failMessageText": "Zkušený odstřelovač se takto neprozradí. Vydýchej se a zkus to znovu.", "5c0be13186f7746f016734aa successMessageText": "Upřímně řečeno, nebyl jsem si jistý, jestli to zvládneš. Ale určitě se zdá, že nejsi obyčejný křupan.", - "5c0be2b486f7747bcb347d58": "Dosáhnout požadované úrovně u dovednosti Odstřelovacích pušek", + "5c0be2b486f7747bcb347d58": "Dosáhnout požadované úrovně u dovednosti Odstřelovací pušky", "5c1fb5f086f7744a184fb3c5": "", "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Eliminovat operátory PMC pomocí odstřelovací pušky a neumřít", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Eliminovat Scavy na Streets of Tarkov, zatímco na sobě máte uniformu UN (UN helmu, vestu MF-UNTAR a pušku M4A1)", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "Přežít a odejít z Reserve se statusem \"Přežil\"", "629f08e7d285f377953b2af1": "Přežít a odejít z Lighthouse se statusem \"Přežil\"", "63aec66556503c322a190372": "Přežít a odejít ze Streets of Tarkov se statusem \"Přežil\"", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Dosáhnout 4. úrovně reputace u Therapistky", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -19963,7 +19844,7 @@ "5edac020218d181e29451446 declinePlayerMessage": "", "5edac020218d181e29451446 completePlayerMessage": "", "5edac34d0bb72a50635c2bfa name": "Kolegové - Část 3", - "5edac34d0bb72a50635c2bfa description": "Mladý muži, počkejte. Vím, že vás Jaeger požádal, abyste zabil Sanitara. Ale vy to dělat nemusíte. Chápu, jak to zní. Podle Jaegera je to ďábel v lidském těle, ale to tak není. Jsem si jistá, že Sanitar se jen snaží pomoci místnímu obyvatelstvu. S ohledem na aktuální podmínky, za kterých provádí ty nejsložitější operace není divu, že to často končí špatně. On je lékař a jeho znalosti mohou zachránit mnoho životů. Lékař s přístupem do skladu léků, které jsou pro nás velmi důležité. Nedávno už se mnou začal i komunikovat, nebude trvat dlouho a začne i spolupracovat. Ale na to ještě potřebuju něco, co ho zaujme. A myslím, že jsem na to přišla. Je to laboratoř. Vstupní klíče a vzorky vojenských stimulátorů. Myslím, že ty vzorky jsou základem, pro jeho experimenty. Můžete je pro mě najít? Přístupové karty můžete získat, jak chcete, ale stimulanty musí být zapečetěné, takže je musíte najít sám.", + "5edac34d0bb72a50635c2bfa description": "Mladý muži, počkejte. Vím, že vás Jaeger požádal, abyste zabil Sanitara. Ale vy to dělat nemusíte. Chápu, jak to zní. Podle Jaegera je to ďábel v lidském těle, ale to tak není. Jsem si jistá, že Sanitar se jen snaží pomoci místnímu obyvatelstvu. S ohledem na aktuální podmínky, za kterých provádí ty nejsložitější operace není divu, že to často končí špatně. On je lékař a jeho znalosti mohou zachránit mnoho životů. Lékař s přístupem do skladu léků, které jsou pro nás velmi důležité. Nedávno už se mnou začal i komunikovat a nebude douho trvat a začne spolupracovat. Ale na to ještě potřebuju něco, co ho zaujme. A myslím, že jsem na to přišla. Je to laboratoř. Vstupní klíče a vzorky vojenských stimulátorů. Myslím, že ty vzorky jsou základem, pro jeho experimenty. Můžete je pro mě najít? Přístupové karty můžete získat, jak chcete, ale stimulanty musí být zapečetěné, takže je musíte najít sám.", "5edac34d0bb72a50635c2bfa failMessageText": "Je škoda, že jsi poslechl toho Jaegera a zapomněl na vlastní rozum. Sanitar nám se svými znalostmi a léky mohl v mnohém pomoci. Nebyl svatý, ale každý má jistě šanci odčinit své hříchy, ale vy jste mu tu šanci vzal. Jsem z vás velice zklamaná.", "5edac34d0bb72a50635c2bfa successMessageText": "Díky. Věděl jsem, že pochopíš, jak důležitý Sanitar a jeho léky teď jsou. Okamžitě se o ty vstupní karty a stimulanty zajímal. Řekl bych, že projevil velký zájem a hned poslal první várku zboží. Tady, to je tvůj podíl.", "5edac37c218d181e29451453": "", @@ -20314,8 +20195,6 @@ "60ec2b04bc9a8b34cd453b81": "Během plnění úkolu nesmíte zemřít nebo opustit raid (Status: Zemřel, Opustil, Ztracen, Proběhl)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", @@ -20641,7 +20520,7 @@ "6193850f60b34236ee0483de description": "Pojď sem. Podél celého pobřeží mysu vede silnice, nejspíš jsi ji už viděl. Tuhle silnici používají moji chlapi k přepravě zboží ke mně a ode mě. Obvykle se jim podařilo vyhnout se problémům nebo uklidnit některé konkrétní pitomce, ale teď je tam zatraceně velké krysí hnízdo. Začali útočit na moje chlapy plnou silou, vůbec se přes ně nedá dostat. Běž tam a sejmi ty mlátičky na zem, jo? Dám ti za to něco pěkného.", "6193850f60b34236ee0483de failMessageText": "", "6193850f60b34236ee0483de successMessageText": "Dobrá práce, pořádně jsi ty blbce podělal. Dobře, kámo, uvidíme se.", - "6193dabd5f6468204470571f": "Eliminovat na Lighthouse Scavy u pobřeží a hlavní silnice", + "6193dabd5f6468204470571f": "Eliminovat na Lighthouse Scavy u hlavní silnice", "6193850f60b34236ee0483de acceptPlayerMessage": "", "6193850f60b34236ee0483de declinePlayerMessage": "", "6193850f60b34236ee0483de completePlayerMessage": "", @@ -21068,7 +20947,7 @@ "6391359b9444fb141f4e6ee6 name": "Máte poštu", "6391359b9444fb141f4e6ee6 description": "Pojď, pojď dál! Mám pro tebe něco na práci. Je to osobní záležitost. Poslal jsem dopis těsně předtím, než v Tarkově začal tenhle bordel. A teď si myslím, že nemá cenu to všechno rozdmýchávat. Není na to čas. Mohl by ses podívat na poštu, jestli tam můj dopis ještě je?", "6391359b9444fb141f4e6ee6 failMessageText": "", - "6391359b9444fb141f4e6ee6 successMessageText": "Našel jsi to? Uff, to se mi ulevilo. Nečetl jsi to, že ne? Raději ne.", + "6391359b9444fb141f4e6ee6 successMessageText": "Našel jsi to? Uff, to mi ulevilo. Nečetl jsi to, že ne? Raději ne.", "6391359b9444fb141f4e6ee7": "Získat na Streets of Tarkov dopis", "6391359b9444fb141f4e6ee8": "Předat dopis", "6391359b9444fb141f4e6ee6 acceptPlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "Přežít a opustit Streets of Tarkov pomocí auta na Primorské ulici", "6397a6942e519e69d2139b25": "Najít a označit na Streets of Tarkov první obrněné vozidlo Patrol-A pomocí značkovače MS2000", "6397a7ce706b793c7d6094c9": "Najít a označit na Streets of Tarkov druhé obrněné vozidlo Patrol-A pomocí značkovače MS2000", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "Podařilo se mi kontaktovat řidiče. Nebylo to snadný, ale zjistil jsem něco zajímavého.", @@ -21436,7 +21314,7 @@ "6396701b9113f06a7c3b2379 failMessageText": "", "6396701b9113f06a7c3b2379 successMessageText": "Sledovali jsme tě. Můj střelec dal svolení. To je prozatím vše. Dám ti vědět, až přijde čas.", "6397ac912e519e69d2139b26": "Eliminovat Scav odstřelovače na vzdálenost vyšší než 350m", - "639a169e6cd47c525121a116": "Dosáhnout požadované úrovně u dovednosti Odstřelovacích pušek", + "639a169e6cd47c525121a116": "Dosáhnout požadované úrovně u dovednosti Odstřelovací pušky", "6396701b9113f06a7c3b2379 acceptPlayerMessage": "", "6396701b9113f06a7c3b2379 declinePlayerMessage": "", "6396701b9113f06a7c3b2379 completePlayerMessage": "Teď jsem opravdový psycho sniper. Co bude dál?", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "Eliminovat Scavy na Interchange pomocí chladných zbraní", "63a9b5b2813bba58a50c9eeb": "Eliminovat Scavy na Customs pomocí chladných zbraní", "63a9b5f064b9631d9178276b": "Eliminovat Scavy na Reserve pomocí chladných zbraní", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21691,8 +21568,8 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "O jednoho šmejda méně. Vedl sis dobře, chlapče.", "64e7ba17220ee966bf425ecb": "Najít a eliminovat Kabana", "64e7ba4a6393886f74119f3d": "Eliminovat na Streets of Tarkov Kabanovu ochranku v autosalonu", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", diff --git a/project/assets/database/locales/global/en.json b/project/assets/database/locales/global/en.json index 32f5a745..a585ff96 100644 --- a/project/assets/database/locales/global/en.json +++ b/project/assets/database/locales/global/en.json @@ -2507,7 +2507,7 @@ "5a0abb6e1526d8000a025282 Name": "AK 7.62x39 Taktika Tula muzzle adapter", "5a0abb6e1526d8000a025282 ShortName": "TT AK", "5a0abb6e1526d8000a025282 Description": "The Taktika Tula muzzle device adapter. Provides the means of installing modern muzzle devices on AK and AKM.", - "5a0c27731526d80618476ac4 Name": "Zarya stun grenade", + "5a0c27731526d80618476ac4 Name": "\"Zarya\" stun grenade", "5a0c27731526d80618476ac4 ShortName": "Zarya", "5a0c27731526d80618476ac4 Description": "Intended to suppress the mental stability by creating a sudden sound effect and a bright flash. Used in special operations for apprehension of criminals and in riot suppression.", "5a0c59791526d8dba737bba7 Name": "AK GP-25 accessory kit recoil pad", @@ -5210,12 +5210,12 @@ "5cc9c20cd7f00c001336c65d Name": "NcSTAR Tactical blue laser LAM-module", "5cc9c20cd7f00c001336c65d ShortName": "TBL", "5cc9c20cd7f00c001336c65d Description": "A compact tactical Laser Aiming Module with a blue dot. Mounts on any Picatinny/Weaver rail for precise target acquisition. Manufactured by NcSTAR.", - "5cd945d71388ce000a659dfb Name": "BEAR base upper", + "5cd945d71388ce000a659dfb Name": "BEAR standard", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", - "5cd946231388ce000d572fe3 Name": "BEAR base lower", + "5cd945d71388ce000a659dfb Description": "Combat shirt", + "5cd946231388ce000d572fe3 Name": "BEAR standard", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "ASh-12 vertical foregrip", "5cda9bcfd7f00c0c0b53e900 ShortName": "ASh-12", "5cda9bcfd7f00c0c0b53e900 Description": "A vertical foregrip for the ASh-12 assault rifle.", @@ -5249,12 +5249,12 @@ "5cde95ef7d6c8b04713c4f2d Name": "USEC base lower", "5cde95ef7d6c8b04713c4f2d ShortName": "", "5cde95ef7d6c8b04713c4f2d Description": "", - "5cde9e957d6c8b0474535da7 Name": "USEC base lower", + "5cde9e957d6c8b0474535da7 Name": "USEC standard", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", - "5cde9ec17d6c8b04723cf479 Name": "USEC base upper", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", + "5cde9ec17d6c8b04723cf479 Name": "USEC standard", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Adik sweatpants", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", "5cdea42e7d6c8b0474535dad Name": "Adik tracksuit", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "M700 Magpul Pro 700 chassis", "5cdeac22d7f00c000f26168f ShortName": "Pro700", "5cdeac22d7f00c000f26168f Description": "Pro 700 is a lightweight ergonomic chassis designed for the Remington M700 sniper rifle. Manufactured by Magpul.", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "BEAR Black Lynx", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", - "5d1f60ae86f7744bcc04998b Name": "BEAR contractor t-shirt", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", + "5d1f60ae86f7744bcc04998b Name": "BEAR Contractor", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "FSB Fast Response", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "BEAR Ghost Marksman", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "BEAR Summer Field", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "USEC Aggressor TAC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "USEC Softshell Flexion", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "USEC Woodland Infiltrator", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Combat shirt", "5d1f623886f7743014163027 Name": "USEC PCS MultiCam", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "USEC PCU Ironsight", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "FSB Urban Tact", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "BEAR Gorka Kobra", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "BEAR Gorka SSO", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "BEAR Striker Infil Ops", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "BEAR Summer Field", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "USEC Gen.2 Khyber", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "USEC Woodland Infiltrator", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "USEC Ranger Jeans", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "USEC Taclife Terrain", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "USEC TACRES", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "AR-10 Daniel Defense WAVE 7.62x51 muzzle brake", "5d1f819086f7744b355c219b ShortName": "WAVE 762", "5d1f819086f7744b355c219b Description": "The Daniel Defense WAVE muzzle brake is designed to securely mount the Daniel Defense WAVE suppressor to the host firearm, but also functions effectively without it. It's manufactured from aerospace 17-4 PH stainless steel and had a salt bath nitride finish for minimal corrosion.", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "USEC Commando", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "An upper receiver for the SR-25 rifle, manufactured by Knight's Armament Company.", "5df8e5c886f7744a122d6834 Name": "BEAR Zaslon", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "Meteor", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "BEAR Oldschool", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "USEC TIER2", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "Sklon", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "The first generation of the modified CPC plate carrier originally designed by Crye Precision and adapted by Ars Arma for use by special forces of the Russian Federation. This modular body armor is based on a polymer harness that fits the thorax, which avoids the plate carrier backlash during active movement and also contributes to a more even distribution of weight. Made in the assault configuration of pouches. Manufactured by Ars Arma.", "5e4bb08f86f774069619fbbc Name": "BEAR Telnik", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "USEC TIER2", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "BEAR TIGR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "USEC Commando", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "Russia jacket", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "BEAR TIGR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "USEC Urban Responder", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "BEAR Zaslon", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "USEC Deep Recon", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Tactical pants", "5e9dcf5986f7746c417435b3 Name": "LBT-8005A Day Pack backpack (MultiCam Black)", "5e9dcf5986f7746c417435b3 ShortName": "Day Pack", "5e9dcf5986f7746c417435b3 Description": "A simple and reliable 14-liter backpack in MultiCam Black camouflage. Manufactured by London Bridge Trading.", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "The Thunderbolt fixed chest rig, containing all the basic utility pouches you'd need. Manufactured by Direct Action.", "5f5f45df0bc58666c37e7832 Name": "BEAR G99", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "USEC Night Patrol", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "BEAR G99", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "USEC Urban Responder", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Scav Boot", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "BEAR SRVV", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "USEC TIER3", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": ".300 Blackout AP", "5fd20ff893a8961fc660a954 ShortName": "AP", "5fd20ff893a8961fc660a954 Description": "A .300 Blackout (7.62x35mm) AP cartridge loaded with an 8.4 gram armor-piercing bullet from a 7.62x51mm NATO M80A1 cartridge, composed of a steel penetrator tip over a copper alloy core with a copper semi-jacket in a brass case. Despite the bullet's own characteristics when used in a full-power cartridge, these are affected when transferred to an intermediate cartridge, however, the bullet continues to have capabilities to pierce basic and intermediate body ballistic protections, in addition to being able to cause substantial adverse effects on the target after impact. Its design also allows it to be used in STANAG 5.56x45mm NATO magazines without any issues.", "5fd3e77be504291efd0040ad Name": "USEC VEKTOR", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "BEAR Boreas", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "BEAR Grizzly", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "USEC Adaptive Combat", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "A simple nylon bearing system with non-removable pouches. Allows you to carry a fairly impressive amount of ammunition at the expense of convenience.", "6038b228af2e28262649af14 Name": "BEAR Rash Guard", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "USEC Sandstone", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", "6038b4b292ec1c3103795a0b Name": "LBT-6094A Slick Plate Carrier (Coyote Tan)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "A simple yet effective plate carrier by London Bridge Trading company. The most minimalistic design intended for use with chest rigs. Coyote Tan version.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "TP-200 is intended for use as charges in the production of seismic surveys, intermediate detonators when initiating borehole explosive charges, crushing oversized items and performing special blasting operations.", "603d01a1b41c9b37c6592047 Name": "BEAR VOIN", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "USEC Sage Warrior", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Azimut SS \"Zhuk\" chest harness (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Zhuk", "6040dd4ddcf9592f401632d2 Description": "A simple nylon bearing system with non-removable pouches. Allows you to carry a fairly impressive amount of ammunition at the expense of convenience. SURPAT camouflage version.", @@ -8239,10 +8239,10 @@ "619b69037b9de8162902673e Description": "Designed for both the civilian market and military use. The CQR47 stock can be easily mounted in place of the standard attachment of the AK/AKM non-folding stock. Manufactured by Hera Arms.", "619b99ad604fcc392676806c Name": "BEAR Recon", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "USEC K4", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", "619bc61e86e01e16f839a999 Name": "Armband (Alpha)", "619bc61e86e01e16f839a999 ShortName": "Alpha", "619bc61e86e01e16f839a999 Description": "An armband for veterans who are still here from the Alpha times.", @@ -8275,10 +8275,10 @@ "619bdfd4c9546643a67df6fa Description": "An armband for hardcore USEC operators.", "619bf75264927e572d0d5853 Name": "BEAR Sumrak", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "Military corrugated tube", "619cbf476b8a1b37a54eebf8 ShortName": "MTube", "619cbf476b8a1b37a54eebf8 Description": "A military-issued corrugated tube for ventilation systems of military equipment or air purification systems.", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "USEC Chameleon", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "BEAR VOLK", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "BEAR Coyote", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "USEC DesOps", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Death Knight mask", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "A unique mask of the commander of the Goons squad, former USEC operators who decided not to flee Tarkov, but to create their own order.", @@ -9510,17 +9510,17 @@ "63a898a328e385334e0640a5 ShortName": "Gift", "63a898a328e385334e0640a5 Description": "A neatly wrapped Christmas gift. Looks like Santa is kind to you. Come on, open it up!", "63a8a3d48523141c3d055226 Name": "BEAR SPN", - "63a8a3d48523141c3d055226 ShortName": "BEAR SPN", - "63a8a3d48523141c3d055226 Description": "BEAR SPN", + "63a8a3d48523141c3d055226 ShortName": "", + "63a8a3d48523141c3d055226 Description": "Tactical jacket", "63a8a3f5dd384f7e8d716f9b Name": "USEC Mission", - "63a8a3f5dd384f7e8d716f9b ShortName": "USEC Mission", - "63a8a3f5dd384f7e8d716f9b Description": "USEC Mission", + "63a8a3f5dd384f7e8d716f9b ShortName": "", + "63a8a3f5dd384f7e8d716f9b Description": "Tactical jacket", "63a8a41e8523141c3d055228 Name": "BEAR SPN", - "63a8a41e8523141c3d055228 ShortName": "BEAR SPN", - "63a8a41e8523141c3d055228 Description": "BEAR SPN", + "63a8a41e8523141c3d055228 ShortName": "", + "63a8a41e8523141c3d055228 Description": "Tactical pants", "63a8a446dd384f7e8d716f9d Name": "USEC Rangemaster", - "63a8a446dd384f7e8d716f9d ShortName": "USEC Rangemaster", - "63a8a446dd384f7e8d716f9d Description": "USEC Rangemaster", + "63a8a446dd384f7e8d716f9d ShortName": "", + "63a8a446dd384f7e8d716f9d Description": "Jeans", "63a943cead5cc12f22161ff7 Name": "Accountant's notes", "63a943cead5cc12f22161ff7 ShortName": "Notes", "63a943cead5cc12f22161ff7 Description": "A diary with all sorts of financial data.", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "USEC Predator", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", "64f07f7726cfa02c506f8ac0 Name": "Journal", "64f07f7726cfa02c506f8ac0 ShortName": "Journal", "64f07f7726cfa02c506f8ac0 Description": "A journal of someone who really loves everything Soviet.", @@ -11920,10 +11920,10 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "USEC Defender", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "USEC BOSS Delta", - "657f8e9824d2053bb360b51d ShortName": "USEC BOSS Delta", - "657f8e9824d2053bb360b51d Description": "USEC BOSS Delta", + "657f8e9824d2053bb360b51d ShortName": "", + "657f8e9824d2053bb360b51d Description": "Tactical shirt", "657f8ec5f4c82973640b234c Name": "Hybrid composite materials", "657f8ec5f4c82973640b234c ShortName": "", "657f8ec5f4c82973640b234c Description": "", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "BEAR URON", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "BEAR OPS MGS", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Tactical jacket", "657f925dada5fadd1f07a57a Name": "Hybrid composite materials", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "Dead civilian", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", " V-ex_light": "Road to Military Base V-Ex", " Voip/DisabledForOffline": "VoIP is unavailable in the offline mode", " kg": "Kg", @@ -12102,8 +12087,6 @@ "AI amount": "AI amount", "AI difficulty": "AI difficulty", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "Penetration", - "AMMO PROJECTILE COUNT": "Projectile count", "ARMOR CLASS": "ARMOR CLASS", "ARMOR POINTS": "ARMOR POINTS", "ARMOR TYPE": "ARMOR TYPE", @@ -12146,12 +12129,11 @@ "AheadOfTimeEnding": "COMPLETION TIME", "Aim": "Aim", "AimDrills": "Aim Drills", - "AimDrillsLevelingUpDescription": "The Aim Drills skill is improved by hitting enemies while aiming.", "AimMaster": "Aim Master", "AimMasterDescription": "Mastering aim reduces aiming time and barrel sway immediately after aiming.", - "AimMasterElite": "Increases aiming speed by [{0:0.#%}]", - "AimMasterSpeed": "Increases aiming speed by [{0:0.#%}]", - "AimMasterWiggle": "Increases AimMasterWiggle by [{0:0.#%}]", + "AimMasterElite": "Increases aiming speed by [{0:0%}]", + "AimMasterSpeed": "Increases aiming speed by [{0:0%}]", + "AimMasterWiggle": "Increases AimMasterWiggle by [(+{0:0%})]", "Aiming deadzone:": "Aiming deadzone:", "AirFilteringUnit": "AIR FILTERING UNIT", "AirplaneDelayMessage": "Wait for arrival! Airspace is congested", @@ -12241,12 +12223,9 @@ "Arena/CustomGames/toggle/tournament": "Tournament", "Arena/EndMatchNotification": "Match has ended while you were away", "Arena/Matching/CustomGames": "Custom games", - "Arena/Notification/Selection/Blocked": "Preset purchase blocked", "Arena/OnCancelMatch": "Matching canceled due to loading issues", "Arena/OnCancelMatch/Group": "Matching canceled due to group member having loading issues", "Arena/OnCancelMatch/NoServer": "Could not find an available server. Please try later.", - "Arena/Popups/TwitchDropsHeader": "Redeem gift", - "Arena/Preset/Tooltip/Tab/6": "Various unique collectible presets.", "Arena/Preset/Tooltip/Tab/Assault": "Assault is the most versatile class. Presets of this class have balanced equipment suitable for most combat situations.", "Arena/Preset/Tooltip/Tab/CQB": "CQB is the most heavily armored class in the Arena. CQBs are characterized by their face shields and increased ammunition for their main weapons. Presets of this class are excellent in defending positions and prolonged firefights.", "Arena/Preset/Tooltip/Tab/Collection": "Presets given for special achievements in the Arena.", @@ -12295,18 +12274,12 @@ "Arena/TeamColor/yellow": "Yellow", "Arena/TeamColor/yellow_plural": "Yellow", "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked Tier presets for one or more group members", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Not enough unlocked {0} presets for one or more group members", - "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the Tier", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "Not enough money for {0}", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} currently not available for the game", - "Arena/Tiers/RankingAvailable {0}": "Ranked game unavailable: {0} presets unlocked", "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", "Arena/Tiers/UnlockedPresets": "Presets unlocked", - "Arena/Tooltip/MapSelectedCounter": "Number of selected locations", - "Arena/Tooltip/MinMapCount {0}": "Select multiple locations. You need to select at least {0} location(s)", "Arena/UI/Awaiting-Players": "Waiting for players", "Arena/UI/Confirm-Match": "Confirm", "Arena/UI/CustomMode": "Custom", @@ -12325,10 +12298,8 @@ "Arena/UI/Match_leaving_forbidden_body": "If you leave this match you will put your comrades at disadvantage.
You'll lose your reward, rating, and will be eligible for a temporary ban.", "Arena/UI/Match_leaving_forbidden_header": "Warning! You are leaving the match.", "Arena/UI/Match_leaving_permitted_header": "You can leave this match without penalty.", - "Arena/UI/PresetResetToDefault": "Settings for the following presets have been reset to default:", "Arena/UI/Return": "RETURN", "Arena/UI/Return-to-match": "RETURN TO MATCH", - "Arena/UI/Selection/Blocked": "Preset taken", "Arena/UI/Waiting": "Waiting...", "Arena/Ui/ServerFounding": "Looking for server...", "Arena/Widgets/Observer/capture point": "Capture the objective", @@ -12383,16 +12354,9 @@ "ArenaUI/PresetView/FreePreset": "FREE", "ArenaUI/PresetView/PresetPreview": "Preset preview", "ArenaUI/PresetView/ShopPrice": "Shop price", - "Arena_AirPit": "Air Pit", - "Arena_AutoService": "Chop Shop", - "Arena_Bay5": "Bay 5", - "Arena_Bowl": "Bowl", - "Arena_Yard": "Block", - "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Final", "Arena_result_result": "Results", "Arena_result_rounds": "Round", - "Arena_saw": "Sawmill", "Armband": "Armband", "Armor": "Armor", "Armor Zone BackHead": "Nape", @@ -12437,14 +12401,12 @@ "Aspect ratio:": "Aspect ratio:", "Assault": "Assault Rifles", "AssaultCarbine Mastering": "Assault carbine", - "AssaultDescription": "Assault Rifle handling skill improves the overall handling, reduces recoil and reload time of this weapon type.", - "AssaultLevelingUpDescription": "The Assault Rifles weapon skill is improved by firing and reloading the corresponding weapon type.", + "AssaultDescription": "Assault rifles handling skill improves the overall handling, reduces recoil and reload time of Assault rifles.", "AssaultRifle": "Assault Rifles", "AssaultRifle Mastering": "Assault rifle", "AssortmentUnlockReward/Description": "You will be able to purchase this item from {0} as a reward", "AttachedLauncher": "Underbarrel Launchers", - "AttachedLauncherDescription": "Underbarrel Launcher handling skill improves the overall handling, reduces recoil and reload time of this weapon type.", - "AttachedLauncherLevelingUpDescription": "The Underbarrel Launchers weapon skill is improved by firing and reloading the corresponding weapon type.", + "AttachedLauncherDescription": "Underbarrel grenade launcher handling skills", "Attention": "Attention", "Attention!": "Attention!", "Attention! All items, brought by you into the raid or found in it, have been lost.": "Attention! You have lost all items you brought and found during the raid.", @@ -12455,10 +12417,9 @@ "Attention! You’ve left the raid and lost everything you brought or found in it.": "Attention! You’ve left the raid and lost everything you brought and found in it.", "AttentionDescription": "Attention increases the looting speed of various containers.", "AttentionEliteExtraLootExp": "Doubles your looting EXP", - "AttentionEliteLuckySearch": "Increases chance to instantly find an item in a container by [{0:0.#%}]", - "AttentionLevelingUpDescription": "The Attention skill is improved by searching containers and bodies.", - "AttentionLootSpeed": "Increases looting speed by [{0:0.#%}]", - "AttentionRareLoot": "Increases item examination speed by [{0:0.#%}]", + "AttentionEliteLuckySearch": "Chance to instantly find an item in a container [({0})]", + "AttentionLootSpeed": "Increases looting speed by [{0:0%}]", + "AttentionRareLoot": "Increases item examination speed by [{0:0%}]", "Auctionsdescription": "Auctions", "Authentic": "Authentic", "Authorization": "AUTHORIZATION", @@ -12512,7 +12473,6 @@ "Bloom": "Bloom", "BodyTemperature": "Body temperature", "Boiler Tanks": "Boiler Tanks", - "BonfireBuff": "Bonfire's warmth", "BoozeGenerator": "BOOZE GENERATOR", "Boss pick": "Boss pick", "BossType/AsOnline": "As in online", @@ -12613,17 +12573,16 @@ "Charge": "Bolt", "Charisma": "Charisma", "CharismaAdditionalDailyQuests": "Adds one more daily operational task", - "CharismaBuff1": "Reduces traders' cash prices by [{0:0.#%}]", - "CharismaBuff2": "Increases traders' loyalty rate by [{0:0.#%}]", - "CharismaDailyQuestsRerollDiscount": "Reduces operational task replacement cost by [{0:0.#%}]", + "CharismaBuff1": "Reduces traders' cash prices by [{0:0%}]", + "CharismaBuff2": "Increases traders' loyalty rate by [{0:0%}]", + "CharismaDailyQuestsRerollDiscount": "Reduces operational task replacement cost by [{0:0%}]", "CharismaDescription": "Mastering the art of charisma allows to receive discounts on various services.", "CharismaEliteBuff1": "You are the first to know the latest trading news", - "CharismaEliteBuff2": "Increases profit from every transaction by [{0:0.#%}]", - "CharismaExfiltrationDiscount": "Reduces paid exfil prices by [{0:0.#%}]", + "CharismaEliteBuff2": "Increases profit from every transaction by [{0:0%}]", + "CharismaExfiltrationDiscount": "Reduces paid exfil prices by [{0:0%}]", "CharismaFenceRepPenaltyReduction": "Reduces Fence reputation penalty", - "CharismaHealingDiscount": "Reduces after-raid healing services prices by [{0:0.#%}]", - "CharismaInsuranceDiscount": "Reduces insurance services prices by [{0:0.#%}]", - "CharismaLevelingUpDescription": "The Charisma skill is improved indirectly by leveling the Attention, Perception, and Intellect skills.", + "CharismaHealingDiscount": "Reduces after-raid healing services prices by [{0:0%}]", + "CharismaInsuranceDiscount": "Reduces insurance services prices by [{0:0%}]", "CharismaScavCaseDiscount": "Adds a discount to Scav Case prices", "ChatScreen/QuestItemsListHeader": "The following items will be moved to quest item stash:", "ChatScreen/QuestItemsMoved": "Items successfully moved to quest item stash", @@ -12740,17 +12699,15 @@ "CovertMovement": "Covert Movement", "CovertMovementDescription": "Covert movement makes your steps quieter and reduces the sound radius.", "CovertMovementElite": "Covert movement becomes equally quiet on all surfaces", - "CovertMovementEquipment": "Reduces noise level of weapons and equipment by [{0:0.#%}]", - "CovertMovementLevelingUpDescription": "The Covert Movement skill is improved by moving quietly.", - "CovertMovementLoud": "Reduces noise level of footsteps on uncommon surfaces by [{0:0.#%}]", - "CovertMovementSoundRadius": "Reduces Covert Movement sound radius by [{0:0.#%}]", - "CovertMovementSoundVolume": "Reduces noise level of footsteps on common surfaces by [{0:0.#%}]", - "CovertMovementSpeed": "Increases covert movement speed by [{0:0.#%}]", + "CovertMovementEquipment": "Reduces noise level of weapons and equipment by [{0:0%}]", + "CovertMovementLoud": "Reduces noise level of footsteps on uncommon surfaces by [{0:0%}]", + "CovertMovementSoundRadius": "Reduces Covert Movement sound radius by [{0:0%}]", + "CovertMovementSoundVolume": "Reduces noise level of footsteps on common surfaces by [{0:0%}]", + "CovertMovementSpeed": "Increases covert movement speed by [{0:0%}]", "Crafting": "Crafting", - "CraftingContinueTimeReduce": "Reduces all cyclic production time (except Bitcoin Farm) by [{0:0.#%}]", + "CraftingContinueTimeReduce": "Reduces all cyclic production time (except Bitcoin Farm) by [{0:0.##%}]", "CraftingElite": "Ability to craft up to two different items in a zone at once", - "CraftingLevelingUpDescription": "The Crafting skill is improved by creating items in the Hideout.", - "CraftingSingleTimeReduce": "Reduces item crafting time by [{0:0.#%}]", + "CraftingSingleTimeReduce": "Reduces item crafting time by [{0:0.##%}]", "Craftingdescription": "Improving the crafting skill reduces the production time of items, including those produced cyclically.", "Create group dialog": "Create group chat", "CreateDialog": "{0} created a group chat!", @@ -12778,8 +12735,7 @@ "DISCONNECT FROM GLOBAL CHAT": "DISCONNECT FROM GLOBAL CHAT", "DISPOSE": "DISCARD", "DMR": "DMRs", - "DMRDescription": "Designated Marksman Rifle handling skill improves the overall handling, reduces recoil and reload time of this weapon type.", - "DMRLevelingUpDescription": "The Designated Marksman Rifles weapon skill is improved by firing and reloading the corresponding weapon type.", + "DMRDescription": "Designated Marksman Rifle handling skill improves the overall handling, reduces recoil and reload time of DMRs.", "DON'T TRY TO LEAVE": "DON'T TRY TO LEAVE", "DONTKNOW": "DON'T KNOW", "DOWN": "DOWN", @@ -12908,11 +12864,11 @@ "DrawElite": "Steady aim for the first 3 seconds with any stamina condition", "DrawMaster": "Draw Master", "DrawMasterDescription": "Draw mastering makes switching between weapons faster.", - "DrawMasterElite": "Increases weapon draw speed by [{0:0.#%}]", - "DrawMasterSpeed": "Increases weapon draw speed by [{0:0.#%}]", - "DrawSound": "Reduces aiming sound by [{0:0.#%}]", - "DrawSpeed": "Increases aiming speed by [{0:0.#%}]", - "DrawTremor": "Reduces the tremor effect for the first 2 seconds while aiming by [50%]", + "DrawMasterElite": "Increases weapon draw speed by [{0:0%}]", + "DrawMasterSpeed": "Increases weapon draw speed by [{0:0%}]", + "DrawSound": "Reduces aiming sound by [{0:0%}]", + "DrawSpeed": "Increases aiming speed by [{0:0%}]", + "DrawTremor": "Reduces the tremor effect for 50% for the first 2 seconds while aiming", "DropBackpack": "Drop backpack", "DropItem": "Drop Item", "Duck": "Crouch", @@ -12934,7 +12890,6 @@ "EAntialiasingMode/None": "Off", "EAntialiasingMode/TAA_High": "TAA High", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", "EArenaPresetsType/Assault": "Assault", "EArenaPresetsType/CQB": "CQB", "EArenaPresetsType/Marksman": "Marksman", @@ -13136,13 +13091,12 @@ "Enabled": "Enabled", "Endurance": "Endurance", "EnduranceBreathElite": "Breathing is independent of energy", - "EnduranceBuffBreathTimeInc": "Increases breath holding time by [{0:0.#%}]", - "EnduranceBuffEnduranceInc": "Increases stamina by [{0:0.#%}]", - "EnduranceBuffJumpCostRed": "Reduces jump stamina drain by [{0:0.#%}]", - "EnduranceBuffRestorationTimeRed": "Reduces breath recovery time by [{0:0.#%}]", + "EnduranceBuffBreathTimeInc": "Increases breath holding time by [{0:0%}]", + "EnduranceBuffEnduranceInc": "Increases stamina by [{0:0%}]", + "EnduranceBuffJumpCostRed": "Reduces jump stamina drain by [{0:0%}]", + "EnduranceBuffRestorationTimeRed": "Reduces breath recovery time by [{0:0%}]", "EnduranceDescription": "Endurance influences the amount of stamina and the rate of exhaustion while running or jumping, as well as holding and recovering breath.", "EnduranceHands": "Increased hands endurance", - "EnduranceLevelingUpDescription": "The Endurance skill is improved by sprinting without the overweight status effect, and by working out in the Hideout gym.", "EnergyExpensesUp {0}": "Energy drain increased by {0}", "EnergyRate": "Energy recovery", "Enter": "Enter", @@ -13272,7 +13226,6 @@ "Friends": "Friends", "Friends invite is already sent": "You have already sent a friend request.", "Friends list": "Friends list", - "FrostbiteBuff": "Morana's frostbite", "Full": "Full", "Full Recovery Time": "Full Recovery Time", "Fullscreen mode:": "Screen mode:", @@ -13339,9 +13292,8 @@ "HIDEOUT": "HIDEOUT", "HIGH_PACKETS_LOSS": "High packet loss", "HIT": "HIT", - "HMG": "Heavy Machine Guns", - "HMGDescription": "Heavy Machine Gun handling skill improves the overall handling, reduces recoil and reload time of this weapon type.", - "HMGLevelingUpDescription": "The Heavy Machine Guns weapon skill is improved by firing and reloading the corresponding weapon type.", + "HMG": "HMGs", + "HMGDescription": "Heavy machinegun handling skill improves the overall handling, reduces recoil and reload time of Heavy Machine Guns.", "HOLD FIRE": "HOLD FIRE", "HOLDFIRE": "HOLD FIRE", "HOLDPOSITION": "HOLD POSITION", @@ -13372,27 +13324,25 @@ "Health/ItemResourceDepleted": "Item has been depleted", "Health/PlayerIsDead": "Character is dead", "HealthAndPhysics": "Health and physique", - "HealthBreakChanceRed": "Reduces limb fracture chance by [{0:0.#%}]", + "HealthBreakChanceRed": "Reduces limb fracture chance by [{0:0%}]", "HealthDescription": "Good health speeds up the recovery from the damage sustained in the raids, decreases the probability of fractures and lowers the energy and dehydration rate.", "HealthEliteAbsorbDamage": "Damage absorption", "HealthElitePosion": "Poison immunity level [({0})]", - "HealthEnergy": "Reduces energy consumption by [{0:0.#%}]", - "HealthHydration": "Reduces dehydration rate by [{0:0.#%}]", - "HealthLevelingUpDescription": "The Health skill is improved indirectly by leveling the Strength, Endurance, and Vitality skills.", - "HealthOfflineRegenerationInc": "Increases off-raid health regeneration by [{0:0.#%}]", + "HealthEnergy": "Reduces energy consumption by [{0:0%}]", + "HealthHydration": "Reduces dehydration rate by [{0:0%}]", + "HealthOfflineRegenerationInc": "Increases off-raid health regeneration by [{0:0%}]", "HealthRate": "Health regeneration", "HealthTreatment/SkipHealthTreatmentDialogue": "Attention! Your health is low.\nSkip health treatment and\nproceed to the MAIN MENU?", "Heating": "HEATING", "Heavy": "Heavy", "HeavyBleeding": "Heavy bleeding", - "HeavyVestBluntThroughputDamageReduction": "Reduces blunt damage to body parts covered by heavy armor by [{0:0.#%}]", - "HeavyVestDeteriorationChanceOnRepairReduce": "Reduces wear chance when using repair kits by [50%]", - "HeavyVestMoveSpeedPenaltyReduction": "Reduces movement speed penalty while wearing heavy armor by [{0:0.#%}]", + "HeavyVestBluntThroughputDamageReduction": "Reduces blunt damage to body parts covered by heavy armor by [{0:0%}]", + "HeavyVestDeteriorationChanceOnRepairReduce": "Chance to not apply wear during repair (50%)", + "HeavyVestMoveSpeedPenaltyReduction": "Reduces movement speed penalty while wearing heavy armor by [{0:0%}]", "HeavyVestNoBodyDamageDeflectChance": "Chance to deflect a bullet from heavy armor", - "HeavyVestRepairDegradationReduction": "Reduces wear amount when using repair kits by [{0:0.#%}]", + "HeavyVestRepairDegradationReduction": "Reduces wear amount when using repair kits by [{0:0%}]", "HeavyVests": "Heavy Vests", "HeavyVestsDescription": "Heavy body armor wearing skill reduces amount of received penetration health damage, explosive damage to health and armor and improves mobility.", - "HeavyVestsLevelingUpDescription": "The Heavy Vests skill is improved by repairing heavy body armor and ballistic plates with repair kits.", "Hideout/Craft/ToolMarkerTooltip": "This item will be used as an auxiliary tool. It will return to your stash once production is complete.", "Hideout/Handover window/Caption/All weapons": "All weapons", "Hideout/Handover window/Message/Items in stash selected:": "Items in stash selected:", @@ -13404,10 +13354,9 @@ "Hideout/placeoffame/smalltrophies": "Small trophies", "HideoutExtraSlots": "+2 slots for fuel canisters\n+2 water filter slots\n+2 slots for air filters\n+2 to the storage limit of coins in a bitcoin farm", "HideoutInteractions/TransferItems": "Transfer items", - "HideoutManagement": "Hideout Management", - "HideoutManagementLevelingUpDescription": "The Hideout Management skill is improved by creating items and upgrading zones in the Hideout.", - "HideoutResourceConsumption": "Reduces fuel, air and water filters consumption rate by [{0:0.#%}]", - "HideoutZoneBonusBoost": "Increases all percentage bonuses from Hideout zones by [{0:0.#}%]", + "HideoutManagement": "Hideout management", + "HideoutResourceConsumption": "Reduces fuel, air and water filters consumption rate by [{0:0%}]", + "HideoutZoneBonusBoost": "Increases all percentage bonuses from Hideout zones by [{0:0}%]", "Hideout\\Craft\\ToolMarketTooltip": "", "Hideout_area_16_stage_3_description": "A full-fledged area in the Hideout dedicated to storing items of collectible value.", "Hiding objective {0:F1}": "Hiding objective {0:F1}", @@ -13442,14 +13391,13 @@ "Identifier": "Source string", "Illumination": "ILLUMINATION", "Immunity": "Immunity", - "ImmunityAvoidPoisonChance": "Increases chance to avoid a poison by [{0:0.#%}]", + "ImmunityAvoidPoisonChance": "Increases chance to avoid a poison by [{0:0%}]", "ImmunityDescription": "Immunity affects the susceptibility to illnesses and the effectiveness of their treatment.", - "ImmunityLevelingUpDescription": "The Immunity skill is improved by being under the effects of poisoning and other negative effects of stimulants.", - "ImmunityMiscEffects": "Reduces all negative effects from stimulants, food, water by [{0:0.#%}]", - "ImmunityMiscEffectsChance": "Chance to gain immunity to negative effects from stimulants, food, water up to [{0:0.#%}]", - "ImmunityPainKiller": "Increases painkiller action time by [{0:0.#%}]", - "ImmunityPoisonBuff": "Reduces poison effect force by [{0:0.#%}]", - "ImmunityPoisonChance": "Increases chance to gain immunity to poisons by [{0:0.#%}]", + "ImmunityMiscEffects": "Reduces all negative effects from stimulants, food, water by [{0:0%}]", + "ImmunityMiscEffectsChance": "Chance to gain immunity to negative effects from stimulants, food, water up to [{0:0%}]", + "ImmunityPainKiller": "Increases painkiller action time by [{0:0%}]", + "ImmunityPoisonBuff": "Reduces poison effect force by [{0:0%}]", + "ImmunityPoisonChance": "Chance to gain immunity to poisons [({0:0%})]", "In equipment": "IN EQUIPMENT", "InMenu": "Menu", "InRaid": "Raid", @@ -13472,10 +13420,9 @@ "IntellectEliteAmmoCounter": "Ammo counter", "IntellectEliteContainerScope": "Guess container contents without searching", "IntellectEliteNaturalLearner": "You do not need a manual for item examination", - "IntellectLearningSpeed": "Increases item examination speed by [{0:0.#%}]", - "IntellectLevelingUpDescription": "The Intellect skill is improved by examining previously unidentified items and repairing weapons.", - "IntellectRepairPointsCostReduction": "Reduces repair kit point consumption by [{0:0.#%}]", - "IntellectWeaponMaintance": "Increases weapon repair effectiveness by [{0:0.#%}]", + "IntellectLearningSpeed": "Increases item examination speed by [{0:0%}]", + "IntellectRepairPointsCostReduction": "Reduces repair kit point consumption by [{0:0%}]", + "IntellectWeaponMaintance": "Increases weapon repair effectiveness by [{0:0%}]", "IntelligenceCenter": "INTELLIGENCE CENTER", "Intensity:": "Intensity:", "Interact": "Interact", @@ -13643,9 +13590,8 @@ "LEVEL {0} UPGRADE REQUIREMENTS": "LEVEL {0} UPGRADE REQUIREMENTS", "LH": "LH", "LL": "LL", - "LMG": "Light Machine Guns", - "LMGDescription": "Light Machine Gun handling skill improves the overall handling, reduces recoil and reload time of this weapon type.", - "LMGLevelingUpDescription": "The Light Machine Guns weapon skill is improved by firing and reloading the corresponding weapon type.", + "LMG": "LMGs", + "LMGDescription": "Light Machinegun handling skill improves the overall handling, reduces recoil and reload time of LMGs.", "LOAD": "LOAD", "LOAD FROM DIRECTORY...": "Load from directory...", "LOAD FROM FILE...": "Load from file...", @@ -13665,9 +13611,8 @@ "LastHero": "LastHero", "LastHeroDescription": "A fight with the opponents in endless gunfight. There will be only one winner.", "LastHeroDescriptionShort": "You are on your own", - "Launcher": "Grenade Launchers", - "LauncherDescription": "Grenade Launcher handling skill improves the overall handling, reduces recoil and reload time of this weapon type.", - "LauncherLevelingUpDescription": "The Grenade Launchers weapon skill is improved by firing and reloading the corresponding weapon type.", + "Launcher": "Rocket Launchers", + "LauncherDescription": "Grenade launcher handling skills", "LeanLockLeft": "Lean left", "LeanLockRight": "Lean right", "LeanX negative": "Smoothly lean left", @@ -13698,13 +13643,12 @@ "Light": "Light", "LightBleeding": "Light bleeding", "LightVestBleedingProtection": "Body parts covered by light armor are immune to bleeding", - "LightVestDeteriorationChanceOnRepairReduce": "Reduces wear chance when using repair kits by [50%]", - "LightVestMeleeWeaponDamageReduction": "Reduces melee damage to body parts covered by light armor by [{0:0.#%}]", - "LightVestMoveSpeedPenaltyReduction": "Reduces movement speed penalty while wearing light armor by [{0:0.#%}]", - "LightVestRepairDegradationReduction": "Reduces wear amount when using repair kits by [{0:0.#%}]", + "LightVestDeteriorationChanceOnRepairReduce": "Chance to not apply wear during repair (50%)", + "LightVestMeleeWeaponDamageReduction": "Reduces melee damage to body parts covered by light armor by [{0:0%}]", + "LightVestMoveSpeedPenaltyReduction": "Reduces movement speed penalty while wearing light armor by [{0:0%}]", + "LightVestRepairDegradationReduction": "Reduces wear amount when using repair kits by [{0:0%}]", "LightVests": "Light Vests", "LightVestsDescription": "Light body armor wearing skill improves mobility and reduces the amount of received penetration and melee damage to your health.", - "LightVestsLevelingUpDescription": "The Light Vests skill is improved by repairing light body armor and ballistic plates with repair kits.", "Lighthouse": "Lighthouse", "Lighthouse_pass": "Path to Lighthouse", "Lighting quality:": "Lighting quality:", @@ -13756,7 +13700,6 @@ "MAP": "MAP", "MASTERING": "MASTERING", "MATERIAL": "Material", - "MAX AMMO DAMAGE": "Damage", "MAXCOUNT": "MAX COUNT", "MAXIMUM THROW DAMAGE": "MAXIMUM DAMAGE PER FRAGMENT", "MED USE TIME": "MED USE TIME", @@ -13805,12 +13748,11 @@ "MagDrills": "Mag Drills", "MagDrillsDescription": "Skill aimed at magazine handling - loading and unloading of ammo, checking for remaining cartridges.", "MagDrillsInstantCheck": "Magazine is checked instantly when moved to your inventory", - "MagDrillsInventoryCheckAccuracy": "Increases magazine check accuracy through the context menu by [{0:0.#}%]", - "MagDrillsInventoryCheckSpeed": "Increases magazine check speed through the context menu by [{0:0.#}%]", - "MagDrillsLevelingUpDescription": "The Mag Drills skill is improved by loading, unloading, and checking magazines.", + "MagDrillsInventoryCheckAccuracy": "Increases the accuracy of magazine check through the context menu by [{0}%]", + "MagDrillsInventoryCheckSpeed": "Increases the speed of magazine check through the context menu by [{0}%]", "MagDrillsLoadProgression": "Magazine loading is performed faster with every loaded round", - "MagDrillsLoadSpeed": "Increases ammo loading speed by [{0:0.#}%]", - "MagDrillsUnloadSpeed": "Increases ammo unloading speed by [{0:0.#}%]", + "MagDrillsLoadSpeed": "Increases ammo loading speed by [{0}%]", + "MagDrillsUnloadSpeed": "Increases ammo unloading speed by [{0}%]", "MagPreset/CaliberNotSelected": "Caliber not specified", "MagPreset/DiscardCahangesDescription": "Any unsaved changes will be lost.\nContinue?", "MagPreset/Error/ContainsMissingItems": "Ammo not found:", @@ -13881,27 +13823,24 @@ "Meds": "Meds", "Melee": "Melee", "MeleeDescription": "Melee weapons handling skills", - "MeleeLevelingUpDescription": "The Melee skill is improved by striking enemies with melee weapons.", "Memory": "Memory", "MemoryDescription": "Trained skills last longer before they start to fade", "MemoryEliteMentalNoDegradation": "You don't forget any skills", - "MemoryLevelingUpDescription": "The Memory skill is improved by", - "MemoryMentalForget1": "Reduces the rate at which you forget skills by [{0:0.#%}]", - "MemoryMentalForget2": "Reduces rollback of skill levels by [{0:0.#%}]", + "MemoryMentalForget1": "Reduces the rate at which you forget skills by [{0:0%}]", + "MemoryMentalForget2": "Reduces rollback of skill levels by [{0:0%}]", "Mental": "Mental", "Merchant": "Trader", "Metabolism": "Metabolism", "MetabolismDescription": "Healthy metabolism improves and extends the effects of eating and drinking, and sustains the physical skills longer.", "MetabolismEliteBuffNoDyhydration": "You don't receive damage from exhaustion and dehydration", "MetabolismEliteNoForget": "You don't forget any Physical skills", - "MetabolismEnergyExpenses": "Reduces energy consumption and dehydration rate by [{0:0.#%}]", - "MetabolismLevelingUpDescription": "The Metabolism skill is improved by consuming energy and water supplies.", - "MetabolismMiscDebuffTime": "Reduces negative effect time of stimulants, food, water by [{0:0.#%}]", - "MetabolismPhysicsForget": "Reduces the rate of forgetting Physical skills by [{0:0.#%}]", + "MetabolismEnergyExpenses": "Reduces energy consumption and dehydration rate by [{0:0%}]", + "MetabolismMiscDebuffTime": "Reduces negative effect time of stimulants, food, water by [{0:0%}]", + "MetabolismPhysicsForget": "Reduces the rate of forgetting Physical skills by [{0:0%}]", "MetabolismPhysicsForget2": "Decreases maximum scale of forgetting Physical skills", "MetabolismPhysicsNoForget": "Physical skills are no longer forgettable", - "MetabolismPoisonTime": "Reduces poison effect time by [{0:0.#%}]", - "MetabolismRatioPlus": "Increases food and drink positive effects by [{0:0.#%}]", + "MetabolismPoisonTime": "Reduces poison effect time by [{0:0%}]", + "MetabolismRatioPlus": "Increases food and drink positive effects by [{0:0%}]", "Microphone sensitivity:": "Microphone sensitivity:", "MildMusclePain": "Mild muscle pain", "Military Checkpoint": "Scav Checkpoint", @@ -14136,19 +14075,17 @@ "Penalties": "Penalties for failure", "Pending requests": "Pending requests", "Perception": "Perception", - "PerceptionDescription": "Increases the hearing distance, improves aiming concentration and makes detection of nearby loot easier.", - "PerceptionFov": "Increases aiming concentration by [{0:0.#%}]", - "PerceptionHearing": "Increases hearing distance by [{0:0.#%}]", - "PerceptionLevelingUpDescription": "The Perception skill is improved by finding and picking up any items.", - "PerceptionLootDot": "Increases loot detection radius by [{0:0.#%}]", + "PerceptionDescription": "Mastering perception increases the hearing distance, improves aiming concentration and makes detection of nearby loot easier.", + "PerceptionFov": "Increases aiming concentration by [{0:0%}]", + "PerceptionHearing": "Increases hearing distance by [{0:0%}]", + "PerceptionLootDot": "Increases loot detection radius by [{0:0%}]", "PerceptionmEliteNoIdea": "Loot proximity notification", "Perish": "Perished", "Physical": "Physical", "Pier Boat": "Pier Boat", "Pistol": "Pistols", "Pistol Mastering": "Pistol", - "PistolDescription": "Pistol handling skill improves the overall handling, reduces recoil and reload time of this weapon type.", - "PistolLevelingUpDescription": "The Pistols weapon skill is improved by firing and reloading the corresponding weapon type.", + "PistolDescription": "Pistol handling skill improves the overall handling, reduces recoil and reload time of pistols.", "PlaceOfFame": "PLACE OF FAME", "PlantLocationDescription": "The industrial estate and facilities of chemical factory #16 were rented out illegally to the TerraGroup company. During the Contract Wars, this factory was a hotbed for numerous firefights between USEC and BEAR operatives that determined control over the entire Tarkov industrial district. With time, the factory premises were converted into a shelter for local civilians, Scavs, along with the occasional USEC or BEAR operators.", "Player": "Player", @@ -14219,10 +14156,9 @@ "Prone": "Prone", "ProneMovement": "Prone Movement", "ProneMovementDescription": "Mastering the prone movement makes it faster and quieter.", - "ProneMovementElite": "Increases prone movement speed by [{0:0.#%}]", - "ProneMovementLevelingUpDescription": "The Prone Movement skill is improved by moving while in a prone position.", - "ProneMovementSpeed": "Increases prone movement speed by [{0:0.#%}]", - "ProneMovementVolume": "Decreases prone movement volume by [{0:0.#%}]", + "ProneMovementElite": "Increases prone movement speed by [{0:0%}]", + "ProneMovementSpeed": "Increases Prone Movement Speed by [(+{0:0%})]", + "ProneMovementVolume": "Decreases Prone Movement Volume [(-{0:0%})]", "Protect objective {0:F1}": "Protect objective {0:F1}", "QUEST ITEM": "QUEST ITEM", "QUEST ITEMS": "QUEST ITEMS", @@ -14410,9 +14346,8 @@ "Recoil Up": "Vertical recoil", "RecoilControl": "Recoil Control", "RecoilControlDescription": "Greater control over recoil reduces horizontal spread, making the recoil more predictable.", - "RecoilControlElite": "Improves recoil control by [{0:0.#%}]", - "RecoilControlImprove": "Improves recoil control by [{0:0.#%}]", - "RecoilControlLevelingUpDescription": "The Recoil Control skill is improved by continuous shooting. The higher the base recoil of the weapon, the faster the skill improves.", + "RecoilControlElite": "Improves recoil control by [{0:0%}]", + "RecoilControlImprove": "Improves recoil control by [{0:0%}]", "RecommendedVRAM:": "Recommended VRAM", "Reconnection is not available at this moment due to testing purposes": "Reconnection is not available at this moment due to testing purposes", "RedRebel_alp": "Climber's Trail", @@ -14437,12 +14372,11 @@ "Repair/HasCommonBuff": "Enhanced", "Repair/HasRareBuff": "Rare enhancement", "Repair/RepairKit/CanEnhance": "Repairing can add an enhancement", - "RepairWeaponDeteriorationReduce": "Reduces wear amount when using repair kits", + "RepairWeaponDeteriorationReduce": "Reduces wear during a repair by repair kits", "Repairing objective {0:F1}": "Repairing objective {0:F1}", "Report game bug abuse": "Report game bug abuse", "Report offensive nickname": "Report offensive nickname", "Report suspected cheat use": "Report suspected cheat use", - "Report suspicious profile": "Report suspicious profile", "ReportAbuseBug": "Report bug abuse", "ReportAbuseVoip": "Report VoIP & Radio abuse", "ReportCheater": "Report suspected cheater", @@ -14477,8 +14411,7 @@ "Revert your settings to default?": "Are you sure you want to revert your settings to their default values?", "Revolver": "Revolvers", "Revolver Mastering": "Revolver", - "RevolverDescription": "Revolver handling skill improves the overall handling, reduces recoil and reload time of this weapon type.", - "RevolverLevelingUpDescription": "The Revolvers weapon skill is improved by firing and reloading the corresponding weapon type.", + "RevolverDescription": "Revolver handling skill.", "RezervBase": "Reserve", "Rig": "Rig", "Right Arm": "RIGHT ARM", @@ -14526,9 +14459,8 @@ "SKILLS": "SKILLS", "SKILLS_SPEED_DOWN": "Leveling speed decreased", "SKILLS_SPEED_UP": "Leveling speed increased", - "SMG": "Submachine Guns", - "SMGDescription": "Submachine Gun handling skill improves the overall handling, reduces recoil and reload time of this weapon type.", - "SMGLevelingUpDescription": "The Submachine guns weapon skill is improved by firing and reloading the corresponding weapon type.", + "SMG": "SMGs", + "SMGDescription": "Submachine Gun handling skill improves the overall handling, reduces recoil and reload time of SMGs.", "SNIPERPHRASE": "SNIPER", "SO": "SO", "SOUND": "SOUND", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "Sales sum with {0} increased by {1}", "Sandbox": "Ground Zero", "Sandbox_VExit": "Police Cordon V-Ex", - "Sandbox_high": "Ground Zero", "Saturation:": "Saturation:", "Savage matchmaker": "Begin a raid as a Scav, a local bandit with a random set of gear. Tarkov is your home, you make the rules!", "SavageBannerDescription": "A raid as a Scav is different from a raid as your main PMC character. Player Scavs will spawn at random locations and times during an ongoing raid. The Scav's health and equipment will also be random. Extracting as a Scav will give you the opportunity to transfer any loot obtained during the raid to your main PMC character's stash. Completing a raid as a Scav will not transfer experience to your PMC character. Dying as a Scav will not affect your progress in any way.", @@ -14585,7 +14516,6 @@ "Search": "Search", "SearchDescription": "The search skill mastering allows you to search bodies and containers faster and more efficiently.", "SearchDouble": "Search two containers at a time", - "SearchLevelingUpDescription": "The Search skill is improved by searching containers.", "SecondPrimaryWeapon": "On Back", "SecondaryWeapon": "Sidearm", "SecuredContainer": "Pouch", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "Some settings have been changed. Do you wish to save them?", "Settings/Sound/BinauralSound": "Binaural audio", "Settings/Sound/ChatVolume": "Chat volume:", - "Settings/Sound/CommentatorVolume": "Announcer volume:", "Settings/Sound/Device": "Audio device", "Settings/Sound/HideoutVolume": "Hideout volume:", "Settings/Sound/InterfaceVolume": "Interface volume:", "Settings/Sound/MusicOnRaidEnd": "Music on raid end", "Settings/Sound/MusicVolume": "Music volume:", "Settings/Sound/OverallVolume": "Overall volume:", - "Settings/Sound/ReadyToMatchSoundVolume": "Match accept screen volume:", "Settings/UnavailablePressType": "Unavailable", "SevereMusclePain": "Severe muscle pain", "Shack": "Military Base CP", @@ -14676,8 +14604,7 @@ "Shorl_free_scav": "Path to Shoreline", "Shotgun": "Shotguns", "Shotgun Mastering": "Shotgun", - "ShotgunDescription": "Shotgun handling skill improves the overall handling, reduces recoil and reload time of this weapon type.", - "ShotgunLevelingUpDescription": "The Shotguns weapon skill is improved by firing and reloading the corresponding weapon type.", + "ShotgunDescription": "Shotgun handling skill improves the overall handling and recoil of shotguns.", "Show icons": "Show icons", "Show:": "Show: ", "SightingRange": "SIGHTING RANGE", @@ -14698,10 +14625,9 @@ "Smg Mastering": "SMG", "Smuggler's Boat": "Smuggler's Boat", "Smugglers_Trail_coop": "Smuggler's Path (Co-op)", - "Sniper": "Bolt-action Rifles", + "Sniper": "Sniper Rifles", "Sniper Roadblock": "Sniper Roadblock", - "SniperDescription": "Bolt-action Rifle handling skill improves the overall handling, reduces recoil and reload time of this weapon type.", - "SniperLevelingUpDescription": "The Bolt-action rifles weapon skill is improved by firing and reloading the corresponding weapon type.", + "SniperDescription": "Sniper rifle handling skill improves the overall handling, reduces recoil and reload time of Sniper rifles.", "SniperRifle": "Sniper Rifles", "SniperRifle Mastering": "Sniper rifle", "Sniper_exit": "Mira Ave", @@ -14734,8 +14660,6 @@ "StartInGroup": "Together", "StartLookingForGroup": "Start looking for a group", "StartNotInGroup": "Separately", - "StashLinesExternalObtain": "Stash upgrade", - "StashLinesExternalObtain/Tooltip": "Stash upgrade is available for purchase on the website", "StatFoundMoneyEUR": "EUR found", "StatFoundMoneyRUB": "RUB found", "StatFoundMoneyUSD": "USD found", @@ -14770,22 +14694,20 @@ "StomachBloodloss": "Abdominal bleeding", "Stop looking for group": "Stop looking for group", "Strength": "Strength", - "StrengthBuffAim": "Reduces stamina drain while aiming by [{0:0.#%}]", + "StrengthBuffAim": "Reduces stamina drain while aiming by [{0:0%}]", "StrengthBuffElite": "Equipped weapons don't add up to the weight of your character (not including weapons in backpacks)", - "StrengthBuffJumpHeightInc": "Increases jump height by [{0:0.#%}]", - "StrengthBuffLiftWeightInc": "Increases carrying weight by [{0:0.#%}]", - "StrengthBuffMeleeCrits": "Increases chance to deal critical melee damage by [{0:0.#%}]", - "StrengthBuffMeleePowerInc": "Increases melee strike power by [{0:0.#%}]", - "StrengthBuffSprintSpeedInc": "Increases movement and sprint speed by [{0:0.#%}]", - "StrengthBuffThrowDistanceInc": "Increases throw distance by [{0:0.#%}]", + "StrengthBuffJumpHeightInc": "Increases jump height by [{0:0%}]", + "StrengthBuffLiftWeightInc": "Increases carrying weight by [{0:0%}]", + "StrengthBuffMeleeCrits": "Chance to deal critical melee damage [({0})]", + "StrengthBuffMeleePowerInc": "Increases melee strike power by [{0:0%}]", + "StrengthBuffSprintSpeedInc": "Increases movement and sprint speed by [{0:0%}]", + "StrengthBuffThrowDistanceInc": "Increases throw distance by [{0:0%}]", "StrengthDescription": "Increasing strength allows you to jump higher, sprint faster, hit harder, throw farther, and carry more weight.", - "StrengthLevelingUpDescription": "The Strength skill is improved by sprinting with the overweight status effect, throwing grenades, using melee weapons, and by working out in the Hideout gym.", "StressBerserk": "Berserk mode access", - "StressPainChance": "Reduces pain shock chance by [{0:0.#%}]", + "StressPainChance": "Reduces pain shock chance by [{0:0%}]", "StressResistance": "Stress Resistance", "StressResistanceDescription": "Stress resistance improves the chances of withstanding injury shock, shaking hands, and tremors.", - "StressResistanceLevelingUpDescription": "The Stress Resistance skill is improved by receiving damage. Having the Pain status effect without using painkillers also improves this skill.", - "StressTremor": "Reduces tremor oscillation by [{0:0.#%}]", + "StressTremor": "Reduces tremor oscillation by [{0:0%}]", "StringSeparator/Or": " or ", "Stun": "Stunned", "Subtask completed:": "Subtask completed:", @@ -14851,9 +14773,8 @@ "Summary": "Summary", "Surgery": "Surgery", "SurgeryDescription": "The ability to perform field surgery may save your life in critical situations. The better you learn this skill, the faster and better you will perform combat surgeries.", - "SurgeryLevelingUpDescription": "The Surgery skill is improved by using surgical kits on injured body parts.", - "SurgeryReducePenalty": "Reduces surgery HP penalty by [{0:0.#%}]", - "SurgerySpeed": "Increases surgery speed by [{0:0.#%}]", + "SurgeryReducePenalty": "Reduces surgery HP penalty by [{0:0%}]", + "SurgerySpeed": "Increases surgery speed by [{0:0%}]", "Survival Rate Short": "S/R: {0}%", "SurvivalRate": "Survival rate", "Survived": "Survived", @@ -14926,9 +14847,8 @@ "ThrowItem": "Discard", "Throwing": "Throwables", "ThrowingDescription": "The throwing weapons handling skills allow you to throw grenades farther and with less energy consumption.", - "ThrowingEnergyExpenses": "Reduces required throw energy by [{0:0.#%}]", - "ThrowingLevelingUpDescription": "The Throwables skill is improved by throwing grenades.", - "ThrowingStrengthBuff": "Increases throw strength by [{0:0.#%}]", + "ThrowingEnergyExpenses": "Reduces required throw energy by [{0:0%}]", + "ThrowingStrengthBuff": "Increases throw strength by [{0:0%}]", "ThrowingWeaponsBuffElite": "Throwables don't require energy and fatigue does not affect their accuracy", "Time flow": "Time flow", "Time to reconnect left ({0})": "Time left to reconnect ({0})", @@ -14976,11 +14896,11 @@ "Trading/Dialog/AvaliableServices": "Can you help me with something?", "Trading/Dialog/Btr/News": "What's the news?", "Trading/Dialog/Btr/News/Next": "Any more news?", - "Trading/Dialog/Btr/News1": "It's been snowing so hard recently! We haven't had snow like this since the Contract Wars. It's like we don't live up north. Shame it's all melted now.", - "Trading/Dialog/Btr/News2": "You don't go out often, do you? There was a big holiday, the whole town celebrated! Happy holidays, by the way.", - "Trading/Dialog/Btr/News3": "Our kingpins made a big mess, didn't they? Sitting at their spots, not moving, not letting anyone breathe.", - "Trading/Dialog/Btr/News4": "This weirdo who dresses up as Santa Claus year after year, he's talking now! I thought he was mute.", - "Trading/Dialog/Btr/News5": "Folks started picking up figurines of local celebrities all over the city. I wonder if my BTR will turn out to be one or not.", + "Trading/Dialog/Btr/News1": "The biggest news is the BTR! I fixed it all myself. Consider it my own creation. Now I can drive people around. Maybe that'll help me pay for the repairs.", + "Trading/Dialog/Btr/News2": "Someone is organizing gladiatorial fights in Tarkov. They say a lot of people went there of their own free will. The money's pretty good. If you survive, obviously!", + "Trading/Dialog/Btr/News3": "There was an uproar all over Tarkov over some TerraGroup documents. They've even been looking beyond the border, but I kinda don't believe it.", + "Trading/Dialog/Btr/News4": "A while back, most of the AP ammo went missing from the traders' stocks. Fighters like you were running all over Tarkov, looking for other people's ammo stashes. Now everything's fine though.", + "Trading/Dialog/Btr/News5": "Sanitar tried to strengthen his influence in Tarkov recently. He had some kind of an antidote, apparently. Not long before that, a lot of people got poisoned. Coincidence? I think not.", "Trading/Dialog/Btr/NoNews": "I think that's all the news I have.", "Trading/Dialog/Btr/ServicePayoff{0}": "Works for me, yes. (hand over \"{0}\")", "Trading/Dialog/BtrBotCover/Description": "The whole time you're in the BTR, we'll shoot anyone who sticks their noses out. We'll also clear the drop zone and cover you while you get out, but not for long.", @@ -14999,34 +14919,18 @@ "Trading/Dialog/PlayerHandoveItem{0}": "Found this. (hand over \"{0}\")", "Trading/Dialog/PlayerTaxi/Description": "Here's where I can drop you off. Pick one.", "Trading/Dialog/PlayerTaxi/Name": "Take a ride", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Rodina Cinema", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "Driving to the tram. You got the cash, right?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Tram", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "Great, we're on course for city center. You got enough cash?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "City Center", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Collapsed Crane", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Old Scav Checkpoint", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Pinewood Hotel", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "Gonna head to the Scav bunker. Price alright?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Scav Bunker", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "The sunken village, huh? I think we can make it. Here's the price.", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Sunken Village", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "Could drive you to the fork in the road, sure. You got enough cash?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Junction", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "Sawmill? No problem! Here's my pricing.", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Sawmill", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "To the USEC checkpoint, alright. Not driving for free, though.", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "USEC Checkpoint", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "I'm mapping out the route to the Emercom base. You cool price-wise?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "Emercom Base", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "Okie-dokie, old sawmill it is. Here's the price.", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Old Sawmill", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "You want me to drop you off at the depot? Just so you know, you can't get out of there without me. If the price is okay, you keep an eye on the time there, okay?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Train Depot", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina Cinema", + "Trading/Dialog/PlayerTaxi/p2/Description": "Driving to the tram. You got the cash, right?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Great, we're on course for city center. You got enough cash?", + "Trading/Dialog/PlayerTaxi/p3/Name": "City Center", + "Trading/Dialog/PlayerTaxi/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Collapsed Crane", + "Trading/Dialog/PlayerTaxi/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Old Scav Checkpoint", + "Trading/Dialog/PlayerTaxi/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood Hotel", "Trading/Dialog/Quit": "Take your leave", "Trading/Dialog/ServicePayoff{0}": "Alright, this should be enough. (hand over \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Hide history", @@ -15062,14 +14966,13 @@ "TransferScreen/TransferFailed": "Failed to purchase service", "TransferScreen/TransferSuccess": "Service purchased!", "Tremor": "Tremor", - "TroubleFixing": "Increases troubleshooting speed by [{0:0.#%}]", - "TroubleFixingAmmoElite": "Reduces weapon cartridge malfunction chance after fixing a malfunction from the same source by [50%]", - "TroubleFixingDurElite": "Reduces weapon durability malfunction chance after fixing a malfunction from the same source by [50%]", + "TroubleFixing": "Increases troubleshooting speed by [{0:0%}]", + "TroubleFixingAmmoElite": "Reduces the chance of malfunctions from a magazine by 50% after fixing a malfunction caused by the same reason", + "TroubleFixingDurElite": "Reduces the chance of malfunctions based on the durability of weapons by 50% after fixing a malfunction caused by the same reason", "TroubleFixingExamineMalfElite": "Malfunction type identification doesn't require weapon examination", - "TroubleFixingMagElite": "Reduces weapon magazine malfunction chance after fixing a malfunction from the same source by [50%]", + "TroubleFixingMagElite": "Reduces the chance of malfunctions from a cartridge by 50% after fixing a malfunction caused by the same reason", "TroubleShootingDescription": "Troubleshooting skill facilitates rectification of weapon malfunctions.", "Troubleshooting": "Troubleshooting", - "TroubleshootingLevelingUpDescription": "The Troubleshooting skill is improved by regularly fixing weapon malfunctions.", "Try_keycard {0}": "Try {0}", "Tunnel": "Tunnel", "Tunnel_Shared": "Side Tunnel (Co-Op)", @@ -15152,11 +15055,6 @@ "UI/Arena/Place_7": "7th place", "UI/Arena/Place_8": "8th place", "UI/Arena/Place_9": "9th place", - "UI/ArmorPenetration/High": "High", - "UI/ArmorPenetration/Low": "Low", - "UI/ArmorPenetration/Medium": "Medium", - "UI/ArmorPenetration/VeryHigh": "Very high", - "UI/ArmorPenetration/VeryLow": "Very low ", "UI/Charisma/Discount/Insurance": "Insurance cost", "UI/Charisma/Discount/PostRaidHealing": "Healing cost", "UI/Charisma/Discount/ScavCase": "Scav Case cost", @@ -15334,18 +15232,15 @@ "Very good standing": "very good", "Vest": "Vest", "Village": "Village", - "Violation/IntentionalTeamDamage/Warning": "Your account will be blocked if you continue shooting your teammates", - "Violation/IntentionalTeamKill/Warning": "Your account will be blocked if you continue killing your teammates at round start", "Violation/TeamKill/Warning": "Your account will be blocked if you continue killing your teammates", "Vital mod weapon in hands": "You can't modify vital parts while the weapon is in your hands.", "Vital parts": "Vital parts", "Vitality": "Vitality", - "VitalityBuffBleedChanceRed": "Reduces bleeding chance by [{0:0.#%}]", + "VitalityBuffBleedChanceRed": "Reduces bleeding chance by [{0:0%}]", "VitalityBuffBleedStop": "All bleedings stop on their own", "VitalityBuffRegeneration": "Increases health regeneration in combat", - "VitalityBuffSurviobilityInc": "Reduces chance of death from losing a limb by [{0:0.#%}]", + "VitalityBuffSurviobilityInc": "Reduces chance of death from losing a limb by [{0:0%}]", "VitalityDescription": "Vitality improves your chances of surviving a wound by decreasing the possibility of bleeding and instant death through critical damage of a body part.", - "VitalityLevelingUpDescription": "The Vitality skill is improved by sustaining various bleedings and injuries.", "Voice": "Character voice", "Voice 1": "Voice 1", "Voice 2": "Voice 2", @@ -15402,27 +15297,26 @@ "WaterCollector": "WATER COLLECTOR", "Weapon": "Weapon", "Weapon has been built": "Weapon has been built", - "WeaponAccBuff": "Increases weapon accuracy by [{0:0.#%}]", + "WeaponAccBuff": "Increases weapon accuracy by [{0:0%}]", "WeaponBroken": "WEAPON ISSUE", "WeaponBuild/SetNameWindowCaption": "PRESET NAME", "WeaponBuild/SetNameWindowPlaceholder": "enter preset name", - "WeaponDeteriorationChanceReduce": "Reduces probability of wear during repair by [{0:0.#%}]", + "WeaponDeteriorationChanceReduce": "Reduces probability of wear during repair by [{0:0%}]", "WeaponDoubleMastering": "Doubles mastering gain", - "WeaponDurabilityLossOnShotReduce": "Reduces gun wear while shooting by [{0:0.#%}]", - "WeaponErgonomicsBuff": "Improves weapon ergonomics by [{0:0.#%}]", + "WeaponDurabilityLossOnShotReduce": "Reduces gun wear while shooting by [{0:0%}]", + "WeaponErgonomicsBuff": "Improves weapon ergonomics by [{0:0%}]", "WeaponJammed": "WEAPON JAMMED", "WeaponModding": "Weapon Modding", "WeaponModdingDescription": "Skill of basic weapon modding on the go increases the mod ergonomics and reduces silencer wear.", "WeaponPunch": "Buttstroke", - "WeaponRecoilBuff": "Reduces weapon recoil by [{0:0.#%}]", - "WeaponReloadBuff": "Increases reload speed by [{0:0.#%}]", - "WeaponStiffHands": "Increases weapon ergonomics by [{0:0.#%}]", - "WeaponSwapBuff": "Increases weapon switching speed by [{0:0.#%}]", + "WeaponRecoilBuff": "Reduces weapon recoil by [{0:0%}]", + "WeaponReloadBuff": "Increases reload speed by [{0:0%}]", + "WeaponStiffHands": "Increases weapon ergonomics by [{0:0%}]", + "WeaponSwapBuff": "Increases weapon switching speed by [{0:0%}]", "WeaponTreatment": "Weapon Maintenance", "WeaponTreatmentDescription": "Weapon service and maintenance skills.", - "WeaponTreatmentLevelingUpDescription": "The Weapon Maintenance skill is improved by repairing weapons with repair kits.", "WearAmountRepairGunsReducePerLevel": "Reduces wear amount when using repair kits", - "WearChanceRepairGunsReduceEliteLevel": "Reduces wear chance when using repair kits by [50%]", + "WearChanceRepairGunsReduceEliteLevel": "Reduces wear chance when using repair kits by 50%", "Weather conditions": "Weather conditions", "WeightLimit": "Weight limit", "Welcome screen description": "Welcome to Escape from Tarkov!\nIn this game, you will have to fight for your life and survive the perils of Tarkov, a Russian city in the Norvinsk region on the brink of chaos and collapse. Your character is an operator of a Private Military Company (PMC), caught in a maelstrom of events right after the Contract Wars. The area is sealed off, and your operational command is not responding; previous mission objectives have lost their purpose. Everybody has personal goals now – adapt and survive, escape the blockade or try to save others.\n\nBe prepared to die and lose everything you had with you in every raid you enter.\nKeep in mind that every drop in your internet connection or network hardware malfunction can lead to disconnection from the game with the consecutive death of your character and loss of all the gear you had with you or found within your raid.\n\nYes, you will die, and most probably very often, but remember – this is still a game. Best of luck out there!", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "Win rate, %", "arena/career/teamFightStats/wins": "Victories", "arena/career/teamFightStats/winsWithFavPreset": "Matches won with favorite preset", - "arena/customGames/create/samePresets": "Duplicate presets:", - "arena/customGames/create/setSamePresets": "Allow duplicate presets", "arena/customGames/invite/message{0}": "CUSTOM GAME INVITE FROM {0}", "arena/customGames/notify/GameRemoved": "Room has been disbanded", "arena/customgames/errors/notification/gamealreadystarted": "Game has already started", @@ -15708,7 +15600,6 @@ "arena/tooltip/OverallMatches": "Total number of ranked and unranked matches played.", "arena/tooltip/Presets": "Presets", "arena/tooltip/countGlp": "Your total ARP (Arena Reputation Points) rating. This is a statistic that determines your rating obtained in ranked game modes. It is used to match with players of equal skill, as well as to unlock new ranks and presets.", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", "arena/tooltip/friends": "Friends", "arena/tooltip/kdRatio": "Your overall Kill to Death ratio, calculated from all kills and deaths in ranked and unranked matches. Only the player kills are counted.", "arena/tooltip/leftGlp": "Amount of ARP rating required to reach the next rank.", @@ -15716,7 +15607,6 @@ "arena/tooltip/moneyRubles": "Roubles. Used to buy presets and are earned for victories in the Arena.", "arena/tooltip/ratingPlace": "Your position in the leaderboard.", "arena/tooltip/settings": "Settings", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", "arena/tooltip/sourcesGlp": "Earned ARP sources:", "arena/tooltip/winMatches": "Total number of wins in ranked and unranked matches.", "arena/tooltip/winRate": "Your overall win ratio, calculated from all wins and losses in ranked and unranked matches.", @@ -16330,9 +16220,9 @@ "rank_08": "Professional", "rank_09": "Elite", "rank_10": "Whisper of Death", - "rank_11": "Flame Warrior", + "rank_11": "Flame warrior", "rank_12": "Big Boss", - "rank_13": "Legend of the Arena", + "rank_13": "The Legend of the Arena", "ratingExpPos": "EXP rank", "readytoinstallupgrade": "Upgrading complete", "receive": "RECEIVE", @@ -16370,7 +16260,7 @@ "scav_e6": "Basement Entrance", "scav_e7": "Cardinal Apartment Complex Parking", "scav_e8": "Klimov Shopping Mall Exfil", - "searchspeed": "Increases search speed by [{0:0.#%}]", + "searchspeed": "Increases search speed by [{0:0%}]", "sec": "sec", "select weapon body for the build": "SELECT WEAPON BODY FOR THE PRESET", "semiauto": "Semi-auto", @@ -16450,8 +16340,6 @@ "{0} GroupPlayerBlocking/MatchLeave": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for quitting a game", "{0} GroupPlayerBlocking/NotAcceptedMatch": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for failing to accept a match", "{0} GroupPlayerBlocking/TeamKill": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for repeated teamkills", - "{0} Violation/IntentionalTeamDamage/Blocking": "Player {0} has been removed from the match and received a penalty for shooting teammates", - "{0} Violation/IntentionalTeamKill/Blocking": "Player {0} has been removed from the match and received a penalty for teamkilling at round start", "{0} Violation/TeamKill/Blocking": "Player {0} has been removed from the match and received a penalty for teamkilling", "{0} added you to the ignore list": "{0} added you to ignore list", "{0} ask to cooperate": "{0} greets you", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "Ground Zero", "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "United Security", "5464e0404bdc2d2a708b4567 Description": "The USEC private military company was established in 1999 after the merger of two companies: KerniSEC and Safe Sea. In 2004, an agent of TerraGroup International Holding made contact with USEC, which then consecutively made USEC, essentially, a private army of the holding, with offices all around the world, and over 7500 staff strong.", "5464e0454bdc2d06708b4567 Name": "BEAR", @@ -18259,7 +18145,7 @@ "5ac346e886f7741d6118b99b description": "I've been thinking about that thing we discussed last time. Have people really become kinder with the development of civilization? Do they really go hand in hand? All this time, where we believe there is civilization, life has become more comfortable, easier. There were increasingly fewer worries about safety or getting something to eat. It's easy to be humane when nothing is threatening you. The answer to these questions was right before my eyes. The situation in Tarkov has shown us how much kinder we have become. Once the issues of survival came to the front, it turned out that decent people aren’t more common than maybe 500 years ago. There're probably even fewer of them now. What do you think, are you one of them? Okay, don’t overthink it. I need you to do something for me. However, you will need to remember quite a lot for this job. Practice memorizing large volumes of information, I’ll contact you later.", "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "Seventh digit after the decimal separator in the pi number? IIO? Okay, when the time comes, I'll contact you.", - "5ac5eb3286f7746e7a509a09": "Reach the required Attention skill level", + "5ac5eb3286f7746e7a509a09": "Reach the required Memory skill level", "5acf3b9986f77418403493b5": "", "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Lighthouse ", "63aec6f256503c322a190374": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Streets of Tarkov", "64b694c8a857ea477002a408": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Interchange", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Streets of Tarkov", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "Survive and extract from Reserve with the \"Survived\" exit status", "629f08e7d285f377953b2af1": "Survive and extract from Lighthouse with the \"Survived\" exit status", "63aec66556503c322a190372": "Survive and extract from Streets of Tarkov with the \"Survived\" exit status", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Reach level 4 loyalty with Therapist", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -20314,8 +20195,6 @@ "60ec2b04bc9a8b34cd453b81": "You must not die or leave the raid while the task is active (Status: KIA, Left the Action, MIA, Ran Through)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", @@ -20641,7 +20520,7 @@ "6193850f60b34236ee0483de description": "Come here already. Alright, so along the entire coast of the cape, there is a road, you've probably seen it. My guys use this road to transport merchandise to and from me. Usually, they managed to avoid trouble or calm some particular morons down, but right now it's a damn rat nest there, probably found out about my convoys. They started attacking my guys with full power, can't get through them at all. Go there and lay those whack-jobs down, will you? I'll get something nice for you in return.", "6193850f60b34236ee0483de failMessageText": "", "6193850f60b34236ee0483de successMessageText": "Good shit, you fucked those morons up properly. Alright, mate, see ya.", - "6193dabd5f6468204470571f": "Eliminate Scavs along the shore and the main road on Lighthouse", + "6193dabd5f6468204470571f": "Eliminate Scavs along the main road on Lighthouse", "6193850f60b34236ee0483de acceptPlayerMessage": "", "6193850f60b34236ee0483de declinePlayerMessage": "", "6193850f60b34236ee0483de completePlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "Survive and extract from Streets of Tarkov through Primorsky Ave Taxi V-Ex", "6397a6942e519e69d2139b25": "Locate and mark the first Patrol-A armored vehicle with an MS2000 Marker on Streets of Tarkov", "6397a7ce706b793c7d6094c9": "Locate and mark the second Patrol-A armored vehicle with an MS2000 Marker on Streets of Tarkov", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "I managed to contact the drivers. This wasn't easy, but I did unearth something interesting.", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "Eliminate Scavs while using melee weapons on Interchange", "63a9b5b2813bba58a50c9eeb": "Eliminate Scavs while using melee weapons on Customs", "63a9b5f064b9631d9178276b": "Eliminate Scavs while using melee weapons on Reserve", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21691,8 +21568,8 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "One less scumbag to worry about. You did well, kid.", "64e7ba17220ee966bf425ecb": "Locate and eliminate Kaban", "64e7ba4a6393886f74119f3d": "Eliminate Kaban's guards at the car dealership on Streets of Tarkov", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", diff --git a/project/assets/database/locales/global/es-mx.json b/project/assets/database/locales/global/es-mx.json index 1c3b9f4e..6799ee1d 100644 --- a/project/assets/database/locales/global/es-mx.json +++ b/project/assets/database/locales/global/es-mx.json @@ -2507,7 +2507,7 @@ "5a0abb6e1526d8000a025282 Name": "Adaptador de bocacha Taktika Tula para AK de 7.62x39 mm", "5a0abb6e1526d8000a025282 ShortName": "TT AK", "5a0abb6e1526d8000a025282 Description": "Un adaptador de bocacha Taktika Tula. Proporciona los medios para instalar bocachas modernas en los fusiles AK y AKM de calibre 7.62x39 mm.", - "5a0c27731526d80618476ac4 Name": "Granada aturdidora Zarya", + "5a0c27731526d80618476ac4 Name": "Granada aturdidora \"Zarya\"", "5a0c27731526d80618476ac4 ShortName": "Zarya", "5a0c27731526d80618476ac4 Description": "Diseñada para suprimir la estabilidad mental al crear un efecto de sonido repentino y un destello muy brillante. Se utiliza en operaciones especiales para la aprehensión de criminales y en represión de disturbios.", "5a0c59791526d8dba737bba7 Name": "Cantonera del Kit de accesorios GP-25 para AK", @@ -2675,7 +2675,7 @@ "5a16b8a9fcdbcb00165aa6ca Name": "Montura Norotos Titanium Advanced Tactical Mount", "5a16b8a9fcdbcb00165aa6ca ShortName": "TATM", "5a16b8a9fcdbcb00165aa6ca Description": "Una montura ligera de titanio para ser instalada en el Soporte Frontal del casco. Es necesaria para la instalación de dispositivos de visión nocturna u otros dispositivos ópticos. Fabricada por Norotos Inc.", - "5a16b93dfcdbcbcae6687261 Name": "Montura Norotos Dual Dovetail para AN/PVS-14", + "5a16b93dfcdbcbcae6687261 Name": "Montura Dual Dovetail para AN/PVS-14", "5a16b93dfcdbcbcae6687261 ShortName": "DDT", "5a16b93dfcdbcbcae6687261 Description": "Una montura Dual Dovetail Interface Arm para el dispositivo Monocular de Visión Nocturna AN/PVS-14.", "5a16b9fffcdbcb0176308b34 Name": "Auriculares Ops-Core FAST RAC", @@ -3465,7 +3465,7 @@ "5ae089fb5acfc408fb13989b ShortName": "Trofeo", "5ae089fb5acfc408fb13989b Description": "Trofeo", "5ae08f0a5acfc408fb1398a1 Name": "Fusil de cerrojo Mosin de 7.62x54 mm R (Francotirador)", - "5ae08f0a5acfc408fb1398a1 ShortName": "Mosin Francotirador", + "5ae08f0a5acfc408fb1398a1 ShortName": "Mosin (Francotirador)", "5ae08f0a5acfc408fb1398a1 Description": "El fusil Mosin-Nagant M91/30 PU es la variante de francotirador del famoso fusil ruso, el cual fue usado comúnmente por francotiradores rusos durante la Segunda Guerra Mundial.", "5ae096d95acfc400185c2c81 Name": "Culata estándar para Fusil Mosin", "5ae096d95acfc400185c2c81 ShortName": "Cul. Mosin", @@ -4188,7 +4188,7 @@ "5bf3f59f0db834001a6fa060 ShortName": "A. RPK-16", "5bf3f59f0db834001a6fa060 Description": "Un alza (Mira trasera) desmontable fabricada por Izhmash. Es la mira estándar para la ametralladora ligera RPK-16.", "5bfd297f0db834001a669119 Name": "Fusil de cerrojo Mosin de 7.62x54 mm R (Infantería)", - "5bfd297f0db834001a669119 ShortName": "Mosin Infantería", + "5bfd297f0db834001a669119 ShortName": "Mosin (Infantería)", "5bfd297f0db834001a669119 Description": "El Mosin-Nagant es uno de los fusiles rusos más famosos, el cual fue comúnmente utilizado por los soldados rusos durante la Segunda Guerra Mundial. Desarrollado durante 1882 y 1891, fue usado por las fuerzas armadas del Imperio Ruso, la Unión Soviética y de muchas otras naciones. Es uno de los fusiles militares de cerrojo más producidos en la historia, con más de 37 millones de unidades fabricadas desde 1891. A pesar de su antigüedad, ha sido utilizado en varios conflictos armados alrededor del mundo, incluso en la actualidad.", "5bfd35380db83400232fe5cc Name": "Culata de infantería para Fusil Mosin", "5bfd35380db83400232fe5cc ShortName": "Cul. Inf. Mosin", @@ -4577,7 +4577,7 @@ "5c10c8fd86f7743d7d706df3 Name": "Inyector de adrenalina", "5c10c8fd86f7743d7d706df3 ShortName": "Adrenalina", "5c10c8fd86f7743d7d706df3 Description": "Un inyector con jeringa estéril desechable con dosis de adrenalina - la hormona principal de la médula adrenal. Se utiliza para mejorar la respuesta fisiológica asociada con la preparación de todos los músculos para una actividad física intensificada. Aumenta temporalmente la fuerza y la resistencia. Alivia la sensación de dolor.", - "5c11046cd174af02a012e42b Name": "Adaptador Wilcox para PVS-7", + "5c11046cd174af02a012e42b Name": "Adaptador Wilcox Interface para PVS-7", "5c11046cd174af02a012e42b ShortName": "W-PVS7", "5c11046cd174af02a012e42b Description": "El adaptador Wilcox NVG Interface Shoe para AN/PVS-7B/7D está diseñado para reemplazar los adaptadores originales de diversas Gafas de Visión Nocturna.", "5c110624d174af029e69734c Name": "Gafas de visión térmica T-7 con montura de visión nocturna", @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "Un compacto módulo táctico de apuntado láser de color azul. Puede instalarse en cualquier riel Picatinny/Weaver para una mejor adquisición del objetivo al apuntar. Fabricado por NcSTAR.", "5cd945d71388ce000a659dfb Name": "Básico Superior BEAR", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Combat shirt", "5cd946231388ce000d572fe3 Name": "Básico Inferior BEAR", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "Empuñadura vertical para ASh-12", "5cda9bcfd7f00c0c0b53e900 ShortName": "E. ASh-12", "5cda9bcfd7f00c0c0b53e900 Description": "Una empuñadura vertical para el fusil de asalto ASh-12.", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "Básico Inferior USEC", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", "5cde9ec17d6c8b04723cf479 Name": "Básico Superior USEC", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Pantalón deportivo Adik", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", "5cdea42e7d6c8b0474535dad Name": "Sudadera Adik", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "Chasis Magpul Pro 700 para M700", "5cdeac22d7f00c000f26168f ShortName": "Pro 700", "5cdeac22d7f00c000f26168f Description": "El Pro 700 es un chasis ligero y ergonómico, diseñado para el fusil de francotirador Remington M700. Fabricado por Magpul.", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "Black Lynx BEAR", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", "5d1f60ae86f7744bcc04998b Name": "Camiseta BEAR Contractor", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "Reacción Temprana FSB", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "Ghost Marksman BEAR", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "Summer Field BEAR", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "Aggressor TAC USEC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "Softshell Flexion USEC", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "Woodland Infiltrator USEC", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Combat shirt", "5d1f623886f7743014163027 Name": "PCS MultiCam USEC", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "PCU Ironsight USEC", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "FSB Urbano", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "Gorka Kobra BEAR", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "Gorka SSO BEAR", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "Striker Infil Ops BEAR", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "Summer Field BEAR", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "Gen.2 Khyber USEC", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "Woodland Infiltrator USEC", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "Jeans Ranger USEC", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "Taclife Terrain USEC", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "TACRES USEC", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "Freno de boca Daniel Defense WAVE de 7.62x51 mm para AR-10", "5d1f819086f7744b355c219b ShortName": "WAVE 762", "5d1f819086f7744b355c219b Description": "El freno de boca Daniel Defense WAVE está diseñado para instalar el supresor Daniel Defense WAVE al arma, pero también funciona de forma efectiva por sí solo. Está fabricado con acero aeroespacial inoxidable 17-4 PH y tiene un acabado en sal de nitrato para una menor corrosión.", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "Commando USEC", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "Un recibidor superior para el fusil SR-25, fabricado por Knight's Armament Company.", "5df8e5c886f7744a122d6834 Name": "Zaslon BEAR", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "Meteor", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "Oldschool BEAR", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "TIER 2 USEC", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "Sklon", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "La primera generación del chaleco portaplacas CPC, diseñado originalmente por Crye Precision y adoptado por Ars Arma para las fuerzas especiales de la Federación Rusa. Este chaleco modular tiene de base un arnés de polímero, el cual se adapta al tórax y fija el chaleco al cuerpo durante el movimiento, y también contribuye a una mejor distribución del peso. Hecho basándose en la configuración de asalto para los portacargadores. Fabricado por Ars Arma. Versión con camuflaje A-TACS Foliage Green.", "5e4bb08f86f774069619fbbc Name": "Telnik BEAR", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "TIER2 USEC", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "TIGR BEAR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "Commando USEC", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "Chaqueta de Rusia", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "TIGR BEAR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "Urban Responder USEC", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "Zaslon BEAR", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "Deep Recon USEC", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Tactical pants", "5e9dcf5986f7746c417435b3 Name": "Mochila LBT-8005A Day Pack (MultiCam Black)", "5e9dcf5986f7746c417435b3 ShortName": "Day Pack", "5e9dcf5986f7746c417435b3 Description": "Una mochila sencilla y confiable con capacidad de 14 litros, con camuflaje MultiCam Black. Fabricada por London Bridge Trading.", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "El chaleco táctico Thunderbolt contiene todos los bolsillos utilitarios básicos que podrías necesitar. Fabricado por Direct Action. Versión de color Shadow Grey.", "5f5f45df0bc58666c37e7832 Name": "G99 BEAR", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "Night Patrol USEC", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "G99 BEAR", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "Urban Responder USEC", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Boot Scav", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "SRVV BEAR", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "TIER3 USEC", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": "Cartucho de .300 Blackout - AP", "5fd20ff893a8961fc660a954 ShortName": "AP", "5fd20ff893a8961fc660a954 Description": "Munición de calibre .300 Blackout (7.62x35 mm) AP - Es un cartucho cargado con una bala perforante de 8.4 gramos de un cartucho 7.62x51 mm OTAN M80A1, compuesta de una punta penetradora de acero sobre un núcleo de aleación de cobre y con semi-encamisado de cobre, en un casquillo de latón. A pesar de las características propias de la bala al ser utilizada en un cartucho de alta potencia, estas se ven afectadas al ser trasladada a un cartucho intermedio, no obstante, la bala sigue teniendo capacidades para atravesar protecciones balísticas corporales básicas e intermedias, además de ser capaz de causar efectos adversos sustanciales al objetivo tras impactar. Su diseño también le permite ser utilizado en cargadores STANAG de 5.56x45 mm OTAN sin problema alguno.", "5fd3e77be504291efd0040ad Name": "VEKTOR USEC", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "Boreas BEAR", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "Grizzly BEAR", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "Adaptive Combat USEC", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "Un sistema de soporte simple hecho de nailon con portacargadores fijos. Te permite llevar una cantidad de munición bastante impresionante a expensas de comodidad.", "6038b228af2e28262649af14 Name": "Rash Guard BEAR", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "Sandstone USEC", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", "6038b4b292ec1c3103795a0b Name": "Chaleco portaplacas LBT-6094A Slick (Coyote Tan)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "Un chaleco portaplacas sencillo pero efectivo, fabricado por la compañía London Bridge Trading. Uno de los diseños más minimalistas para usarlo en conjunto con chalecos tácticos. Versión de color Coyote Tan.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "El TP-200 está diseñado como carga explosiva para la producción de sondeos sísmicos, también como detonador intermedio de cargas explosivas en perforaciones, demoler objetos sobredimensionados y para realizar operaciones de voladura especiales.", "603d01a1b41c9b37c6592047 Name": "VOIN BEAR", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "Sage Warrior USEC", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Arnés de pecho Azimut SS \"Zhuk\" (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Zhuk", "6040dd4ddcf9592f401632d2 Description": "Un sistema de soporte simple hecho de nailon con portacargadores fijos. Te permite llevar una cantidad de munición bastante impresionante a expensas de comodidad. Versión con camuflaje SURPAT.", @@ -8239,10 +8239,10 @@ "619b69037b9de8162902673e Description": "Diseñada tanto para el mercado civil como para uso militar. La culata CQR47 es fácil de instalar en fusiles AK/AKM de culata fija, reemplazando las piezas originales. Fabricado por Hera Arms.", "619b99ad604fcc392676806c Name": "Recon BEAR", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "K4 USEC", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", "619bc61e86e01e16f839a999 Name": "Brazalete (Alpha)", "619bc61e86e01e16f839a999 ShortName": "Alpha", "619bc61e86e01e16f839a999 Description": "Un brazalete de identificación especial para los veteranos que siguen aquí desde los tiempos de la versión Alpha.", @@ -8275,10 +8275,10 @@ "619bdfd4c9546643a67df6fa Description": "Un brazalete de identificación especial para operadores USEC veteranos.", "619bf75264927e572d0d5853 Name": "Sumrak BEAR", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "Tubo corrugado militar", "619cbf476b8a1b37a54eebf8 ShortName": "Tubo M.", "619cbf476b8a1b37a54eebf8 Description": "Un tubo corrugado de uso militar para sistemas de ventilación de equipos militares o sistemas de purificación de aire.", @@ -8858,7 +8858,7 @@ "628cd624459354321c4b7fa2 Name": "Chaleco portaplacas Tasmanian Tiger SK (MultiCam Black)", "628cd624459354321c4b7fa2 ShortName": "TT SK", "628cd624459354321c4b7fa2 Description": "El chaleco ultraligero y esquelético TT Plate Carrier SK está hecho principalmente de materiales de nailon Cordura laminado con TPU ligero, delgado y resistente con una supuesta densidad de al menos 700 denier. El diseño del chaleco proporciona dos fundas ligeras para placas balísticas, tirantes ajustables y un sujetador ligero en la cintura. Equipado con un panel frontal para 4 cargadores. Versión con camuflaje MultiCam Black.", - "628d0618d1ba6e4fa07ce5a4 Name": "Chaleco portaplacas NPP KlASS Bagariy (Flora Digital)", + "628d0618d1ba6e4fa07ce5a4 Name": "Chaleco balístico NPP KlASS Bagariy (Flora Digital)", "628d0618d1ba6e4fa07ce5a4 ShortName": "Bagariy", "628d0618d1ba6e4fa07ce5a4 Description": "En el segundo milenio, el equipo individual del soldado recibió importantes cambios en vista de nuevas amenazas y operaciones especializadas. Se requería un mejor nivel de protección, por lo que el Ejército Ruso necesitaba un chaleco balístico fiable y funcional. A mediados de la década del 2000, el MVD, que luego fue reorganizado en la Guardia Nacional de Rusia, recibió chalecos balísticos Bagariy. El Bagariy fue utilizado tanto por soldados convencionales de las tropas internas como por fuerzas especiales. La PMC BEAR lo utilizó activamente como su chaleco balístico pesado principal. Versión con camuflaje Flora Digital.", "628dc750b910320f4c27a732 Name": "Chaleco portaplacas ECLiPSE RBAV-AF (Ranger Green)", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "Chameleon USEC", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "VOLK BEAR", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "Coyote BEAR", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "DesOps USEC", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Máscara Death Knight", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "Una máscara única del comandante del escuadrón Goons, ex-operadores de USEC que decidieron no huir de Tarkov, sino crear su propio orden.", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "Predator USEC", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", "64f07f7726cfa02c506f8ac0 Name": "Diario", "64f07f7726cfa02c506f8ac0 ShortName": "Diario", "64f07f7726cfa02c506f8ac0 Description": "El diario de alguien que realmente ama todo lo soviético.", @@ -11920,7 +11920,7 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "Defender USEC", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "BOSS Delta USEC", "657f8e9824d2053bb360b51d ShortName": "BOSS Delta USEC", "657f8e9824d2053bb360b51d Description": "BOSS Delta USEC", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "URON BEAR", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "OPS MGS BEAR", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Tactical jacket", "657f925dada5fadd1f07a57a Name": "Materiales compuestos híbridos", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "Civil muerto", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", " V-ex_light": "Ex-V - Carretera a la Base Militar", " Voip/DisabledForOffline": "El VoIP no está disponible en el modo Offline.", " kg": "kg", @@ -12102,8 +12087,6 @@ "AI amount": "Cantidad de IA", "AI difficulty": "Dificultad de la IA", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "Penetración", - "AMMO PROJECTILE COUNT": "Conteo de proyectiles", "ARMOR CLASS": "NIVEL DE PROTECCIÓN", "ARMOR POINTS": "PUNTOS DE BLINDAJE", "ARMOR TYPE": "TIPO DE BLINDAJE", @@ -12145,13 +12128,12 @@ "AdvancedModdingDescription": "Usar la multiherramienta de forma hábil, hace que la modificación avanzada de armas sea más rápida y con menos penalizaciones a la movilidad del arma.", "AheadOfTimeEnding": "TIEMPO DE PARTIDA", "Aim": "Apuntar", - "AimDrills": "Prácticas de Apuntado", - "AimDrillsLevelingUpDescription": "La habilidad de Prácticas de Apuntado se mejora al impactar a los enemigos mientras se apunta.", + "AimDrills": "Práctica de Apuntado", "AimMaster": "Maestro del Apuntado", "AimMasterDescription": "Mejorar el apuntado reduce el tiempo necesario para apuntar, así como la oscilación del cañón inmediatamente después de apuntar.", - "AimMasterElite": "Incrementa la velocidad del apuntado en un [{0:0.#%}].", - "AimMasterSpeed": "Incrementa la velocidad del apuntado en un [{0:0.#%}].", - "AimMasterWiggle": "Incrementa AimMasterWiggle en un [{0:0.#%}]", + "AimMasterElite": "Incrementa la velocidad del apuntado en un [{0:0%}].", + "AimMasterSpeed": "Incrementa la velocidad del apuntado en un [{0:0%}].", + "AimMasterWiggle": "Incrementa AimMasterWiggle en un [(+{0:0%})]", "Aiming deadzone:": "Zona muerta del apuntado:", "AirFilteringUnit": "UNIDAD DE FILTRADO DE AIRE", "AirplaneDelayMessage": "¡Espera la arribada! El espacio aéreo está congestionado.", @@ -12241,12 +12223,9 @@ "Arena/CustomGames/toggle/tournament": "Torneo", "Arena/EndMatchNotification": "La partida terminó mientras estabas fuera", "Arena/Matching/CustomGames": "Partidas personalizadas", - "Arena/Notification/Selection/Blocked": "Compra del Kit bloqueada", "Arena/OnCancelMatch": "Emparejamiento cancelado debido a problemas de carga", "Arena/OnCancelMatch/Group": "Emparejamiento cancelado debido a que un miembro del grupo tiene problemas de carga", "Arena/OnCancelMatch/NoServer": "No se encontró un servidor disponible. Por favor, inténtalo más tarde.", - "Arena/Popups/TwitchDropsHeader": "Activar regalo", - "Arena/Preset/Tooltip/Tab/6": "Varios Kits coleccionables únicos.", "Arena/Preset/Tooltip/Tab/Assault": "La clase de Asalto es la más versátil. Los Kits de esta clase tienen un equipamiento equilibrado y son adecuados para la mayoría de situaciones en combate.", "Arena/Preset/Tooltip/Tab/CQB": "La clase CQB es la más blindada de la Arena. Los CQB se caracterizan por sus protectores faciales y una mayor cantidad de munición para sus armas principales. Los Kits de esta clase son excelentes para defender posiciones y en combates prolongados.", "Arena/Preset/Tooltip/Tab/Collection": "Kits otorgados por logros especiales en la Arena.", @@ -12294,19 +12273,13 @@ "Arena/TeamColor/white_plural": "Blancos", "Arena/TeamColor/yellow": "Amarillo", "Arena/TeamColor/yellow_plural": "Amarillos", - "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Uno o más miembros del grupo no tiene dinero suficiente", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Uno o más miembros del grupo no tiene suficientes Kits desbloqueados de este Tier", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Uno o más miembros del grupo no tiene suficientes Kits desbloqueados de {0}", - "Arena/Tiers/LockedBy/PovertyThreshold": "Dinero insuficiente para el Tier", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "Dinero insuficiente para {0}", - "Arena/Tiers/LockedBy/PresetsUnlocked": "No hay suficientes Kits desbloqueados", - "Arena/Tiers/LockedBy/UnavailableTier": "Tier no disponible para la partida", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} no disponible para la partida", - "Arena/Tiers/RankingAvailable {0}": "Partida clasificatoria no disponible: Kits {0} desbloqueados", - "Arena/Tiers/Unlocked {0} presets": "Kits {0} desbloqueados", - "Arena/Tiers/UnlockedPresets": "Kits desbloqueados", - "Arena/Tooltip/MapSelectedCounter": "Número de ubicaciones seleccionadas", - "Arena/Tooltip/MinMapCount {0}": "Selecciona múltiples ubicaciones. Debes seleccionar al menos {0} ubicaciones", + "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", + "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", + "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", + "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", + "Arena/Tiers/UnlockedPresets": "Presets unlocked", "Arena/UI/Awaiting-Players": "Esperando jugadores", "Arena/UI/Confirm-Match": "Confirmar", "Arena/UI/CustomMode": "Personalizado", @@ -12325,10 +12298,8 @@ "Arena/UI/Match_leaving_forbidden_body": "Si abandonas esta partida pondrás a tus camaradas en desventaja.
Perderás tu recompensa, puntuación y podrás ser sancionado con un baneo temporal.", "Arena/UI/Match_leaving_forbidden_header": "¡Atención! Estás abandonando la partida.", "Arena/UI/Match_leaving_permitted_header": "Puedes abandonar esta partida sin penalización.", - "Arena/UI/PresetResetToDefault": "Los siguientes Kits se han restablecido a sus valores por defecto:", "Arena/UI/Return": "REGRESAR", "Arena/UI/Return-to-match": "REGRESAR A LA PARTIDA", - "Arena/UI/Selection/Blocked": "Kit tomado", "Arena/UI/Waiting": "Esperando...", "Arena/Ui/ServerFounding": "Buscando servidor...", "Arena/Widgets/Observer/capture point": "Captura el objetivo", @@ -12383,16 +12354,9 @@ "ArenaUI/PresetView/FreePreset": "GRATIS", "ArenaUI/PresetView/PresetPreview": "Vista previa del Kit", "ArenaUI/PresetView/ShopPrice": "Precio de la tienda", - "Arena_AirPit": "Aeropuerto", - "Arena_AutoService": "Chop Shop", - "Arena_Bay5": "Bahía 5", - "Arena_Bowl": "Estadio", - "Arena_Yard": "Bloque", - "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Final", "Arena_result_result": "Resultados", "Arena_result_rounds": "Ronda", - "Arena_saw": "Aserradero", "Armband": "Brazalete", "Armor": "Blindaje", "Armor Zone BackHead": "Nuca", @@ -12437,14 +12401,12 @@ "Aspect ratio:": "Relación de Aspecto:", "Assault": "Fusiles de asalto", "AssaultCarbine Mastering": "Carabina de asalto", - "AssaultDescription": "La habilidad con el uso de Fusiles de Asalto mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "AssaultLevelingUpDescription": "La habilidad con Fusiles de Asalto se mejora al disparar y recargar el tipo de arma correspondiente.", + "AssaultDescription": "La habilidad de manejo de fusiles de asalto mejora la manipulación general de estos, reduciendo el retroceso y el tiempo de recarga.", "AssaultRifle": "Fusiles de asalto", "AssaultRifle Mastering": "Fusil de asalto", "AssortmentUnlockReward/Description": "Podrás comprar este objeto de {0} como recompensa", "AttachedLauncher": "Aditamentos Lanzagranadas", - "AttachedLauncherDescription": "La habilidad con el uso de Aditamentos Lanzagranadas mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "AttachedLauncherLevelingUpDescription": "La habilidad con Aditamentos Lanzagranadas se mejora al disparar y recargar el tipo de arma correspondiente.", + "AttachedLauncherDescription": "La habilidad de manejo de aditamentos lanzagranadas mejora la manipulación general de estos.", "Attention": "Atención", "Attention!": "¡Atención!", "Attention! All items, brought by you into the raid or found in it, have been lost.": "¡Atención! Has perdido todos los objetos que hayas llevado o encontrado durante la incursión.", @@ -12455,10 +12417,9 @@ "Attention! You’ve left the raid and lost everything you brought or found in it.": "¡Atención! Has abandonado la incursión y perdido todo lo que hayas llevado o encontrado en ella.", "AttentionDescription": "La Atención incrementa la velocidad de saqueo en varios contenedores.", "AttentionEliteExtraLootExp": "Duplica tu experiencia de saqueo", - "AttentionEliteLuckySearch": "Incrementa en un [{0:0.#%}] la probabilidad de encontrar objetos instantáneamente en un contenedor.", - "AttentionLevelingUpDescription": "La habilidad de Atención se mejora registrando contenedores y cuerpos.", - "AttentionLootSpeed": "Incrementa la velocidad de saqueo en un [{0:0.#%}].", - "AttentionRareLoot": "Incrementa la velocidad al examinar objetos en un [{0:0.#%}].", + "AttentionEliteLuckySearch": "Posibilidad de encontrar objetos instantáneamente en un contenedor [({0})].", + "AttentionLootSpeed": "Incrementa la velocidad de saqueo en un [{0:0%}].", + "AttentionRareLoot": "Incrementa la velocidad al examinar objetos en un [{0:0%}].", "Auctionsdescription": "Subastas", "Authentic": "Auténtico", "Authorization": "AUTORIZACIÓN", @@ -12512,7 +12473,6 @@ "Bloom": "Resplandor", "BodyTemperature": "Temperatura corporal", "Boiler Tanks": "Calderas", - "BonfireBuff": "Calor de hoguera", "BoozeGenerator": "DESTILADOR", "Boss pick": "Elegir Jefe", "BossType/AsOnline": "Como en online", @@ -12613,17 +12573,16 @@ "Charge": "Cerrojo", "Charisma": "Carisma", "CharismaAdditionalDailyQuests": "Añade una Tarea Operativa diaria más.", - "CharismaBuff1": "Reduce los precios en efectivo de los comerciantes en un [{0:0.#%}].", - "CharismaBuff2": "Incrementa la tasa de Lealtad con los comerciantes en un [{0:0.#%}].", - "CharismaDailyQuestsRerollDiscount": "Reduce el costo de reemplazo de Tareas Operativas en un [{0:0.#%}].", + "CharismaBuff1": "Reduce los precios en efectivo de los comerciantes en un [{0:0%}].", + "CharismaBuff2": "Incrementa la tasa de Lealtad con los comerciantes en un [{0:0%}].", + "CharismaDailyQuestsRerollDiscount": "Reduce el costo de reemplazo de Tareas Operativas en un [{0:0%}].", "CharismaDescription": "Dominar el arte del Carisma permite recibir descuentos en diversos servicios.", "CharismaEliteBuff1": "Eres el primero en conocer las noticias más recientes del mercado", - "CharismaEliteBuff2": "Incrementa los beneficios por cada transacción en un [{0:0.#%}].", - "CharismaExfiltrationDiscount": "Reduce los precios a las Exfiltraciones de pago en un [{0:0.#%}].", + "CharismaEliteBuff2": "Incrementa los beneficios por cada transacción en un [{0:0%}].", + "CharismaExfiltrationDiscount": "Reduce los precios a las Exfiltraciones de pago en un [{0:0%}].", "CharismaFenceRepPenaltyReduction": "Reduce las penalizaciones de Reputación con Fence.", - "CharismaHealingDiscount": "Reduce los precios a los servicios de Tratamiento Médico Tras Incursión en un [{0:0.#%}].", - "CharismaInsuranceDiscount": "Reduce los precios a los servicios de Seguros en un [{0:0.#%}].", - "CharismaLevelingUpDescription": "La habilidad de Carisma se mejora indirectamente al nivelar las habilidades de Atención, Percepción e Intelecto.", + "CharismaHealingDiscount": "Reduce los precios a los servicios de Tratamiento Médico Tras Incursión en un [{0:0%}].", + "CharismaInsuranceDiscount": "Reduce los precios a los servicios de Seguros en un [{0:0%}].", "CharismaScavCaseDiscount": "Añade un descuento a los precios del Buzón Scav.", "ChatScreen/QuestItemsListHeader": "Los siguientes objetos se moverán al Alijo para objetos de misión:", "ChatScreen/QuestItemsMoved": "Objetos movidos con éxito al Alijo para objetos de misión", @@ -12651,19 +12610,19 @@ "Close the game": "Cerrar el juego", "CloseBufferGates": "cerrar la puerta", "CloseDoor": "Cerrar", - "ClothingItem/Equipped": "Equipado", - "ClothingItem/Obtained": "Obtenido", - "ClothingItem/Preview": "Previsualizar", - "ClothingItem/Purchase": "Disponible", - "ClothingItem/Unavailable": "No disponible", - "ClothingPanel/ExternalObtain": "Disponible para comprar en el sitio web", - "ClothingPanel/InternalObtain": "Condiciones de compra del comerciante:", - "ClothingPanel/LoyaltyLevel": "Comerciante\nNivel de Lealtad:", - "ClothingPanel/PlayerLevel": "Jugador\nNivel:", - "ClothingPanel/RequiredPayment": "Requerido\nPago:", - "ClothingPanel/RequiredQuest": "Completado\nMisión:", - "ClothingPanel/RequiredSkill": "Requerido\nHabilidad:", - "ClothingPanel/StandingLevel": "Comerciante\nReputación:", + "ClothingItem/Equipped": "Equipped", + "ClothingItem/Obtained": "Obtained", + "ClothingItem/Preview": "Preview", + "ClothingItem/Purchase": "Available", + "ClothingItem/Unavailable": "Unavailable", + "ClothingPanel/ExternalObtain": "Available for purchase on the website", + "ClothingPanel/InternalObtain": "Trader purchase conditions:", + "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", + "ClothingPanel/PlayerLevel": "Player\nLevel:", + "ClothingPanel/RequiredPayment": "Required\nPayment:", + "ClothingPanel/RequiredQuest": "Completed\ntask:", + "ClothingPanel/RequiredSkill": "Required\nSkill:", + "ClothingPanel/StandingLevel": "Trader\nStanding:", "CloudinessType/Clear": "Despejado", "CloudinessType/Cloudy": "Nublado", "CloudinessType/CloudyWithGaps": "Nublado con claros", @@ -12740,17 +12699,15 @@ "CovertMovement": "Movimiento Sigiloso", "CovertMovementDescription": "El Movimiento Sigiloso hace que tus pasos sean menos ruidosos y reduce la distancia a la que puedes ser escuchado.", "CovertMovementElite": "El movimiento sigiloso se vuelve equitativamente silencioso en todas las superficies.", - "CovertMovementEquipment": "Reduce el nivel de ruido producido por el manejo de armas y equipamiento en un [{0:0.#%}].", - "CovertMovementLevelingUpDescription": "La habilidad de Movimiento Sigiloso se mejora al moverse de forma silenciosa.", - "CovertMovementLoud": "Reduce el nivel de ruido de los pasos sobre superficies poco comunes en un [{0:0.#%}].", - "CovertMovementSoundRadius": "Reduce el radio de sonido mientras te mueves sigilosamente en un [{0:0.#%}].", - "CovertMovementSoundVolume": "Reduce el nivel de ruido de los pasos sobre superficies comunes en un [{0:0.#%}].", - "CovertMovementSpeed": "Incrementa la velocidad de movimiento a cubierto en un [{0:0.#%}].", + "CovertMovementEquipment": "Reduce el nivel de ruido producido por el manejo de armas y equipamiento en un [{0:0%}].", + "CovertMovementLoud": "Reduce el nivel de ruido de los pasos sobre superficies poco comunes en un [{0:0%}].", + "CovertMovementSoundRadius": "Reduce el radio de sonido mientras te mueves sigilosamente en un [{0:0%}].", + "CovertMovementSoundVolume": "Reduce el nivel de ruido de los pasos sobre superficies comunes en un [{0:0%}].", + "CovertMovementSpeed": "Incrementa la velocidad de movimiento a cubierto en un [{0:0%}].", "Crafting": "Artesanía", - "CraftingContinueTimeReduce": "Reduce el tiempo de todas las producciones cíclicas en un [{0:0.#%}] (excepto la Granja de Minado).", + "CraftingContinueTimeReduce": "Reduce el tiempo de todas las producciones cíclicas en un [{0:0.##%}] (excepto la Granja de Minado).", "CraftingElite": "Permite la producción simultánea de dos objetos diferentes en la misma zona.", - "CraftingLevelingUpDescription": "La habilidad de Artesanía se mejora produciendo objetos en el Refugio.", - "CraftingSingleTimeReduce": "Reduce el tiempo de producción de objetos en un [{0:0.#%}].", + "CraftingSingleTimeReduce": "Reduce el tiempo de producción de objetos en un [{0:0.##%}].", "Craftingdescription": "Mejorar la habilidad de Artesanía reducirá el tiempo de producción de objetos, incluyendo aquellos que se producen cíclicamente.", "Create group dialog": "Crear un grupo de chat", "CreateDialog": "¡{0} ha creado un grupo de chat!", @@ -12778,8 +12735,7 @@ "DISCONNECT FROM GLOBAL CHAT": "DESCONECTARSE DEL CHAT GLOBAL", "DISPOSE": "DESCARTAR", "DMR": "Fusiles de Tirador Designado", - "DMRDescription": "La habilidad con el uso de Fusiles de Tirador Designado mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "DMRLevelingUpDescription": "La habilidad con Fusiles de Tirador Designado se mejora al disparar y recargar el tipo de arma correspondiente.", + "DMRDescription": "La habilidad de manejo de fusiles de tirador designado mejora la manipulación general de estos, reduciendo el retroceso y el tiempo de recarga.", "DON'T TRY TO LEAVE": "NO INTENTES ABANDONAR", "DONTKNOW": "NO SÉ", "DOWN": "ALIADO CAÍDO", @@ -12908,11 +12864,11 @@ "DrawElite": "Apuntado estable durante los primeros 3 segundos, sin importar el estado del aguante.", "DrawMaster": "Maestro en Desenfundar", "DrawMasterDescription": "Dominar el desenfundando hace más rápido el cambiar entre armas.", - "DrawMasterElite": "Incrementa la velocidad de desenfundado en un [{0:0.#%}].", - "DrawMasterSpeed": "Incrementa la velocidad de desenfundado en un [{0:0.#%}].", - "DrawSound": "Reduce el ruido que se produce al apuntar en un [{0:0.#%}].", - "DrawSpeed": "Incrementa la velocidad del apuntado en un [{0:0.#%}].", - "DrawTremor": "Reduce el efecto de los temblores en un [50%] durante los primeros 2 segundos después de apuntar.", + "DrawMasterElite": "Incrementa la velocidad de desenfundado en un [{0:0%}].", + "DrawMasterSpeed": "Incrementa la velocidad de desenfundado en un [{0:0%}].", + "DrawSound": "Reduce el ruido que se produce al apuntar en un [{0:0%}].", + "DrawSpeed": "Incrementa la velocidad del apuntado en un [{0:0%}].", + "DrawTremor": "Reduce el efecto de los temblores en un 50% durante los primeros 2 segundos después de apuntar.", "DropBackpack": "Tirar la mochila", "DropItem": "Tirar Objeto", "Duck": "Agacharse", @@ -12934,7 +12890,6 @@ "EAntialiasingMode/None": "desactivado", "EAntialiasingMode/TAA_High": "TAA alto", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", "EArenaPresetsType/Assault": "Asalto", "EArenaPresetsType/CQB": "CQB", "EArenaPresetsType/Marksman": "Tirador", @@ -13136,13 +13091,12 @@ "Enabled": "Habilitado", "Endurance": "Resistencia", "EnduranceBreathElite": "La respiración es independiente de la energía.", - "EnduranceBuffBreathTimeInc": "Incrementa el tiempo que aguantas la respiración en un [{0:0.#%}].", - "EnduranceBuffEnduranceInc": "Incrementa el Aguante en un [{0:0.#%}].", - "EnduranceBuffJumpCostRed": "Reduce el consumo del aguante al saltar en un [{0:0.#%}].", - "EnduranceBuffRestorationTimeRed": "Reduce el tiempo para recuperar el aliento en un [{0:0.#%}].", + "EnduranceBuffBreathTimeInc": "Incrementa el tiempo que aguantas la respiración en un [{0:0%}].", + "EnduranceBuffEnduranceInc": "Incrementa el Aguante en un [{0:0%}].", + "EnduranceBuffJumpCostRed": "Reduce el consumo del aguante al saltar en un [{0:0%}].", + "EnduranceBuffRestorationTimeRed": "Reduce el tiempo para recuperar el aliento en un [{0:0%}].", "EnduranceDescription": "La Resistencia influye en la cantidad de aguante y la tasa de agotamiento al correr o saltar, así como el tiempo para aguantar la respiración y recuperar el aliento.", "EnduranceHands": "Resistencia en los brazos incrementada.", - "EnduranceLevelingUpDescription": "La habilidad de Resistencia se mejora corriendo sin el efecto del sobrepeso y haciendo ejercicio en el Gimnasio del Refugio.", "EnergyExpensesUp {0}": "Consumo de energía incrementado en un {0}", "EnergyRate": "Recuperación de energía", "Enter": "Entrar", @@ -13272,7 +13226,6 @@ "Friends": "Amigos", "Friends invite is already sent": "Ya le has enviado una solicitud de amistad.", "Friends list": "Lista de amigos", - "FrostbiteBuff": "Congelación de Morana", "Full": "Lleno", "Full Recovery Time": "Tiempo para Recuperarse por Completo", "Fullscreen mode:": "Modo de Pantalla:", @@ -13340,8 +13293,7 @@ "HIGH_PACKETS_LOSS": "Pérdida de paquetes alta", "HIT": "ALIADO HERIDO", "HMG": "Ametralladoras Pesadas", - "HMGDescription": "La habilidad con el uso de Ametralladoras Pesadas mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "HMGLevelingUpDescription": "La habilidad con Ametralladoras Pesadas se mejora al disparar y recargar el tipo de arma correspondiente.", + "HMGDescription": "La habilidad de manejo de ametralladoras pesadas mejora la manipulación general de estas, reduciendo el retroceso y el tiempo de recarga.", "HOLD FIRE": "ALTO EL FUEGO", "HOLDFIRE": "ALTO EL FUEGO", "HOLDPOSITION": "MANTENER POSC.", @@ -13372,27 +13324,25 @@ "Health/ItemResourceDepleted": "El objeto se ha agotado", "Health/PlayerIsDead": "Tu personaje está muerto", "HealthAndPhysics": "Salud y físico", - "HealthBreakChanceRed": "Reduce la probabilidad de fracturas en un [{0:0.#%}].", + "HealthBreakChanceRed": "Reduce la probabilidad de fracturas en un [{0:0%}].", "HealthDescription": "Una buena Salud acelerará la recuperación de los daños sufridos durante las incursiones, disminuirá las probabilidades de fracturas, la pérdida de energía y la tasa de deshidratación.", "HealthEliteAbsorbDamage": "Absorción de daño", "HealthElitePosion": "Nivel de inmunidad al veneno [({0})].", - "HealthEnergy": "Reduce el consumo de energía en un [{0:0.#%}].", - "HealthHydration": "Reduce la tasa de deshidratación en un [{0:0.#%}].", - "HealthLevelingUpDescription": "La habilidad de Salud se mejora indirectamente al nivelar las habilidades de Fuerza, Resistencia y Vitalidad.", - "HealthOfflineRegenerationInc": "Incrementa la regeneración de salud fuera de incursión en un [{0:0.#%}].", + "HealthEnergy": "Reduce el consumo de energía en un [{0:0%}].", + "HealthHydration": "Reduce la tasa de deshidratación en un [{0:0%}].", + "HealthOfflineRegenerationInc": "Incrementa la regeneración de salud fuera de incursión en un [{0:0%}].", "HealthRate": "Regeneración de salud", "HealthTreatment/SkipHealthTreatmentDialogue": "¡Atención! Tu salud está baja.\n¿Quieres omitir el Tratamiento Médico y\nproceder al MENÚ PRINCIPAL?", "Heating": "CALEFACCIÓN", "Heavy": "Pesado", "HeavyBleeding": "Hemorragia grave", - "HeavyVestBluntThroughputDamageReduction": "Reduce el daño por traumatismo en las partes del cuerpo cubiertas por blindaje pesado en un [{0:0.#%}].", - "HeavyVestDeteriorationChanceOnRepairReduce": "Reduce en un [50%] la probabilidad de no causar desgaste durante la reparación.", - "HeavyVestMoveSpeedPenaltyReduction": "Reduce la penalización a la velocidad de movimiento en un [{0:0.#%}] al llevar equipado blindaje pesado.", + "HeavyVestBluntThroughputDamageReduction": "Reduce el daño por traumatismo en las partes del cuerpo cubiertas por blindaje pesado en un [{0:0%}].", + "HeavyVestDeteriorationChanceOnRepairReduce": "Probabilidad de no causar desgaste durante la reparación (50%).", + "HeavyVestMoveSpeedPenaltyReduction": "Reduce la penalización a la velocidad de movimiento en un [{0:0%}] al llevar equipado blindaje pesado.", "HeavyVestNoBodyDamageDeflectChance": "Probabilidad de desviar impactos de bala al llevar equipado blindaje pesado.", - "HeavyVestRepairDegradationReduction": "Reduce la cantidad de desgaste al utilizar kits de reparación en un [{0:0.#%}].", + "HeavyVestRepairDegradationReduction": "Reduce la cantidad de desgaste al utilizar kits de reparación en un [{0:0%}].", "HeavyVests": "Chalecos Balísticos Pesados", "HeavyVestsDescription": "Llevar puestos chalecos balísticos pesados reducirá la cantidad de daño recibido a la salud y al chaleco por penetración y explosivos, además de mejorar la movilidad.", - "HeavyVestsLevelingUpDescription": "La habilidad de Chalecos Balísticos Pesados se mejora reparando blindaje corporal pesado y placas balísticas pesadas con Kits de reparación.", "Hideout/Craft/ToolMarkerTooltip": "Este objeto se utilizará como una herramienta auxiliar. Regresará a tu Alijo cuando se complete la producción.", "Hideout/Handover window/Caption/All weapons": "Todas las armas", "Hideout/Handover window/Message/Items in stash selected:": "Objetos seleccionados del alijo:", @@ -13405,9 +13355,8 @@ "HideoutExtraSlots": "+2 ranuras para bidones de combustible.\n+2 ranuras para filtros de agua.\n+2 ranuras para filtros de aire.\n+2 ranuras para almacenar monedas en la Granja de Minado.", "HideoutInteractions/TransferItems": "Transferir objetos", "HideoutManagement": "Gestión del Refugio", - "HideoutManagementLevelingUpDescription": "La habilidad de Gestión del Refugio se mejora produciendo objetos y mejorando zonas en el Refugio.", - "HideoutResourceConsumption": "Reduce la tasa de consumo de combustible, filtros de aire y agua en un [{0:0.#%}].", - "HideoutZoneBonusBoost": "Incrementa todas las bonificaciones de porcentaje de las zonas del Refugio en un [{0:0.#}%].", + "HideoutResourceConsumption": "Reduce la tasa de consumo de combustible, filtros de aire y agua en un [{0:0%}].", + "HideoutZoneBonusBoost": "Incrementa todas las bonificaciones de porcentaje de las zonas del Refugio en un [{0:0}%] de su valor.", "Hideout\\Craft\\ToolMarketTooltip": "", "Hideout_area_16_stage_3_description": "Un área completa en el Refugio dedicada a almacenar objetos coleccionables de gran valor.", "Hiding objective {0:F1}": "Escondiendo objetivo {0:F1}", @@ -13442,14 +13391,13 @@ "Identifier": "Cadena de origen", "Illumination": "ILUMINACIÓN", "Immunity": "Inmunidad", - "ImmunityAvoidPoisonChance": "Incrementa la probabilidad de evitar el envenenamiento en un [{0:0.#%}].", + "ImmunityAvoidPoisonChance": "Incrementa la probabilidad de evitar el envenenamiento en un [{0:0%}].", "ImmunityDescription": "La Inmunidad afecta la susceptibilidad a las enfermedades y la efectividad de sus tratamientos.", - "ImmunityLevelingUpDescription": "La habilidad de Inmunidad mejora al estar bajo los efectos del envenenamiento y otros efectos negativos de los estimulantes.", - "ImmunityMiscEffects": "Reduce todos los efectos negativos de estimulantes, comida y bebida en un [{0:0.#%}].", - "ImmunityMiscEffectsChance": "Probabilidad de obtener inmunidad contra los efectos negativos de estimulantes, comida y bebida hasta en un [{0:0.#%}].", - "ImmunityPainKiller": "Incrementa el tiempo de acción de la analgesia en un [{0:0.#%}].", - "ImmunityPoisonBuff": "Reduce la fuerza de efecto del veneno en un [{0:0.#%}].", - "ImmunityPoisonChance": "Incrementa la probabilidad de obtener inmunidad contra los venenos hasta en un [{0:0.#%}].", + "ImmunityMiscEffects": "Reduce todos los efectos negativos de estimulantes, comida y bebida en un [{0:0%}].", + "ImmunityMiscEffectsChance": "Probabilidad de obtener inmunidad contra los efectos negativos de estimulantes, comida y bebida hasta en un [{0:0%}].", + "ImmunityPainKiller": "Incrementa el tiempo de acción de la analgesia en un [{0:0%}].", + "ImmunityPoisonBuff": "Reduce la fuerza de efecto del veneno en un [{0:0%}].", + "ImmunityPoisonChance": "Probabilidad de obtener inmunidad contra los venenos hasta en un [({0:0%})].", "In equipment": "EN EL EQUIPO", "InMenu": "Menú", "InRaid": "Incursión", @@ -13472,10 +13420,9 @@ "IntellectEliteAmmoCounter": "Contador de munición", "IntellectEliteContainerScope": "Adivina el contenido de los contenedores sin revisar.", "IntellectEliteNaturalLearner": "No necesitas examinar objetos de forma manual.", - "IntellectLearningSpeed": "Incrementa la velocidad al examinar objetos en un [{0:0.#%}].", - "IntellectLevelingUpDescription": "La habilidad de Intelecto se mejora examinando objetos no identificados y reparando armas.", - "IntellectRepairPointsCostReduction": "Reduce el consumo de puntos del kit de reparación en un [{0:0.#%}].", - "IntellectWeaponMaintance": "Incrementa la efectividad de la reparación de armas en un [{0:0.#%}].", + "IntellectLearningSpeed": "Incrementa la velocidad para examinar objetos en un [{0:0%}].", + "IntellectRepairPointsCostReduction": "Reduce el consumo de puntos del kit de reparación en un [{0:0%}].", + "IntellectWeaponMaintance": "Incrementa la efectividad de la reparación de armas en un [{0:0%}].", "IntelligenceCenter": "CENTRO DE INTELIGENCIA", "Intensity:": "Intensidad:", "Interact": "Interactuar", @@ -13644,8 +13591,7 @@ "LH": "LH", "LL": "NL", "LMG": "Ametralladoras Ligeras", - "LMGDescription": "La habilidad con el uso de Ametralladoras Ligeras mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "LMGLevelingUpDescription": "La habilidad con Ametralladoras Ligeras se mejora al disparar y recargar el tipo de arma correspondiente.", + "LMGDescription": "La habilidad de manejo de ametralladoras ligeras mejora la manipulación general de estas, reduciendo el retroceso y el tiempo de recarga.", "LOAD": "CARGAR", "LOAD FROM DIRECTORY...": "Cargar desde directorio...", "LOAD FROM FILE...": "Cargar desde archivo...", @@ -13666,8 +13612,7 @@ "LastHeroDescription": "Un combate con oponentes en un tiroteo sin fin. Solo habrá un ganador.", "LastHeroDescriptionShort": "Estás por tu cuenta", "Launcher": "Lanzacohetes", - "LauncherDescription": "La habilidad con el uso de Lanzacohetes mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "LauncherLevelingUpDescription": "La habilidad con Lanzacohetes se mejora al disparar y recargar el tipo de arma correspondiente.", + "LauncherDescription": "La habilidad de manejo de lanzacohetes mejora la manipulación general de estos, reduciendo el retroceso y el tiempo de recarga.", "LeanLockLeft": "Inclinarse a la izquierda", "LeanLockRight": "Inclinarse a la derecha", "LeanX negative": "Inclinarse suavemente a la izquierda", @@ -13698,13 +13643,12 @@ "Light": "Ligero", "LightBleeding": "Hemorragia leve", "LightVestBleedingProtection": "Las partes del cuerpo cubiertas por blindaje ligero son inmunes a la hemorragia.", - "LightVestDeteriorationChanceOnRepairReduce": "Reduce en un [50%] la probabilidad de no causar desgaste durante la reparación.", - "LightVestMeleeWeaponDamageReduction": "Reduce en un [{0:0.#%}] el daño por armas cuerpo a cuerpo en las partes del cuerpo cubiertas por blindaje ligero.", - "LightVestMoveSpeedPenaltyReduction": "Reduce la penalización a la velocidad de movimiento en un [{0:0.#%}] al llevar equipado blindaje ligero.", - "LightVestRepairDegradationReduction": "Reduce la cantidad de desgaste al utilizar kits de reparación en un [{0:0.#%}].", + "LightVestDeteriorationChanceOnRepairReduce": "Probabilidad de no causar desgaste durante la reparación (50%).", + "LightVestMeleeWeaponDamageReduction": "Reduce en un [{0:0%}] el daño por armas cuerpo a cuerpo en las partes del cuerpo cubiertas por blindaje ligero.", + "LightVestMoveSpeedPenaltyReduction": "Reduce la penalización a la velocidad de movimiento en un [{0:0%}] al llevar equipado blindaje ligero.", + "LightVestRepairDegradationReduction": "Reduce la cantidad de desgaste al utilizar kits de reparación en un [{0:0%}].", "LightVests": "Chalecos Balísticos Ligeros", "LightVestsDescription": "Llevar puestos chalecos balísticos ligeros mejorará la movilidad, reducirá la cantidad de daño recibido a la salud por penetración y golpes cuerpo a cuerpo.", - "LightVestsLevelingUpDescription": "La habilidad de Chalecos Balísticos Ligeros se mejora reparando blindaje corporal ligero y placas balísticas ligeras con Kits de reparación.", "Lighthouse": "Faro", "Lighthouse_pass": "Camino al Faro", "Lighting quality:": "Calidad de Iluminación:", @@ -13756,7 +13700,6 @@ "MAP": "MAPAS", "MASTERING": "MAESTRÍA", "MATERIAL": "Material", - "MAX AMMO DAMAGE": "Daño", "MAXCOUNT": "CONTEO MÁXIMO", "MAXIMUM THROW DAMAGE": "DAÑO MÁXIMO POR FRAGMENTO", "MED USE TIME": "TIEMPO DE APLICACIÓN", @@ -13803,14 +13746,13 @@ "MUMBLEPHRASE": "BALBUCEAR", "MachineGun Mastering": "Ametralladora", "MagDrills": "Rutinas de Cargado", - "MagDrillsDescription": "Habilidad destinada al manejo de cargadores - a cargar y descargar munición, así como la revisión de la munición restante en los cargadores.", + "MagDrillsDescription": "Habilidad destinada al manejo de cargadores - a cargar y descargar munición así como la revisión de la munición restante en los cargadores.", "MagDrillsInstantCheck": "El cargador es revisado instantáneamente al moverse a tu inventario.", - "MagDrillsInventoryCheckAccuracy": "Incrementa la precisión al revisar los cargadores usando el menú contextual en un [{0:0.#}%].", - "MagDrillsInventoryCheckSpeed": "Incrementa la velocidad al revisar los cargadores usando el menú contextual en un [{0:0.#}%].", - "MagDrillsLevelingUpDescription": "La habilidad de Rutinas de Cargado se mejora cargando, descargando y revisando cargadores.", + "MagDrillsInventoryCheckAccuracy": "Incrementa la precisión al revisar los cargadores usando el menú contextual en un [{0}%].", + "MagDrillsInventoryCheckSpeed": "Incrementa la velocidad al revisar los cargadores usando el menú contextual en un [{0}%].", "MagDrillsLoadProgression": "El llenado del cargador se hace más rápido con cada munición cargada.", - "MagDrillsLoadSpeed": "Incrementa la velocidad de cargado de munición en un [{0:0.#}%].", - "MagDrillsUnloadSpeed": "Incrementa la velocidad de descargado de munición en un [{0:0.#}%].", + "MagDrillsLoadSpeed": "Incrementa la velocidad de cargado de munición en un [{0}%].", + "MagDrillsUnloadSpeed": "Incrementa la velocidad de descargado de munición en un [{0}%].", "MagPreset/CaliberNotSelected": "Calibre no especificado", "MagPreset/DiscardCahangesDescription": "Cualquier cambio sin guardar se perderá.\n¿Continuar?", "MagPreset/Error/ContainsMissingItems": "Munición no encontrada:", @@ -13881,27 +13823,24 @@ "Meds": "Medicamentos", "Melee": "Cuerpo a Cuerpo", "MeleeDescription": "Habilidad en el manejo de armas cuerpo a cuerpo.", - "MeleeLevelingUpDescription": "La habilidad de Cuerpo a Cuerpo se mejora golpeando enemigos con armas cuerpo a cuerpo.", "Memory": "Memoria", "MemoryDescription": "Las habilidades aprendidas tardan más tiempo en olvidarse.", "MemoryEliteMentalNoDegradation": "No olvidarás ninguna habilidad.", - "MemoryLevelingUpDescription": "La habilidad de Memoria se mejora al", - "MemoryMentalForget1": "Reduce el ritmo al que olvidas habilidades en un [{0:0.#%}].", - "MemoryMentalForget2": "Reduce la reversión de los niveles de habilidad en un [{0:0.#%}].", + "MemoryMentalForget1": "Reduce el ritmo al que olvidas habilidades en un [{0:0%}].", + "MemoryMentalForget2": "Reduce la reversión de los niveles de habilidad en un [{0:0%}].", "Mental": "Mentales", "Merchant": "Comerciante", "Metabolism": "Metabolismo", "MetabolismDescription": "Un Metabolismo saludable mejorará y extenderá los efectos de comer y beber, además de retener por más tiempo las habilidades físicas adquiridas.", "MetabolismEliteBuffNoDyhydration": "No recibes daño por agotamiento y deshidratación.", "MetabolismEliteNoForget": "No olvidarás ninguna habilidad Física.", - "MetabolismEnergyExpenses": "Reduce la tasa de consumo de energía y de deshidratación en un [{0:0.#%}].", - "MetabolismLevelingUpDescription": "La habilidad de Metabolismo se mejora consumiendo alimentos y agua.", - "MetabolismMiscDebuffTime": "Reduce el tiempo de acción de los efectos negativos de estimulantes, comida y bebida en un [{0:0.#%}].", - "MetabolismPhysicsForget": "Reduce la tasa de olvido de habilidades Físicas en un [{0:0.#%}].", + "MetabolismEnergyExpenses": "Reduce la tasa de consumo de energía y de deshidratación en un [{0:0%}].", + "MetabolismMiscDebuffTime": "Reduce el tiempo de acción de los efectos negativos de estimulantes, comida y bebida en un [{0:0%}].", + "MetabolismPhysicsForget": "Reduce la tasa de olvido de habilidades Físicas en un [{0:0%}].", "MetabolismPhysicsForget2": "Disminuye el porcentaje máximo de olvido de habilidades Físicas.", "MetabolismPhysicsNoForget": "Las habilidades físicas ya no se olvidarán", - "MetabolismPoisonTime": "Reduce el tiempo de acción de los venenos en un [{0:0.#%}].", - "MetabolismRatioPlus": "Incrementa los efectos positivos de comer y beber en un [{0:0.#%}].", + "MetabolismPoisonTime": "Reduce el tiempo de acción de los venenos en un [{0:0%}].", + "MetabolismRatioPlus": "Incrementa los efectos positivos de comer y beber en un [{0:0%}].", "Microphone sensitivity:": "Sensibilidad del micrófono:", "MildMusclePain": "Dolor muscular leve", "Military Checkpoint": "Punto de Control Scav", @@ -14081,7 +14020,7 @@ "OfflineRaid/StartAsGroup": "Iniciar como grupo", "OfflineRaid/startasgrouptooltip": "Con esta opción seleccionada, los jugadores comenzarán la incursión uno al lado del otro", "OfflineRaidScreen/WarningHeader": "¡Atención! ¡Tu progreso no se guardará en el Modo de Práctica!", - "OfflineRaidScreen/WarningText": "Jugar de forma cooperativa requiere que todos los miembros del grupo posean la versión Edge of Darkness del juego o la Expansión Co-op. \nLa partida se llevará a cabo en servidores dedicados de Escape from Tarkov.", + "OfflineRaidScreen/WarningText": "Jugar de forma cooperativa requiere que todos los miembros del grupo posean la versión Edge of Darkness del juego.\nLa partida se llevará a cabo en servidores dedicados de Escape from Tarkov.", "Old Azs Gate": "Portón de la Gasolinera Antigua", "Old Gas Station": "Gasolinera Antigua", "Old Road Gate": "Portón de la Carretera Vieja", @@ -14137,18 +14076,16 @@ "Pending requests": "Solicitudes pendientes", "Perception": "Percepción", "PerceptionDescription": "Mejorar la Percepción incrementará la distancia a la que escuchas, la concentración al apuntar y hace más fácil la detección de objetos cercanos.", - "PerceptionFov": "Incrementa la concentración al apuntar en un [{0:0.#%}].", - "PerceptionHearing": "Incrementa la distancia a la que escuchas en un [{0:0.#%}].", - "PerceptionLevelingUpDescription": "La habilidad de Percepción se mejora al encontrar y recoger cualquier objeto.", - "PerceptionLootDot": "Incrementa el radio de detección de objetos en un [{0:0.#%}].", + "PerceptionFov": "Incrementa la concentración al apuntar en un [{0:0%}].", + "PerceptionHearing": "Incrementa la distancia a la que escuchas en un [{0:0%}].", + "PerceptionLootDot": "Incrementa el radio de detección de objetos en un [{0:0%}].", "PerceptionmEliteNoIdea": "Notificación de proximidad de botín", "Perish": "Muerto", "Physical": "Físicas", "Pier Boat": "Barco del Muelle", "Pistol": "Pistolas", "Pistol Mastering": "Pistola", - "PistolDescription": "La habilidad con el uso de Pistolas mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "PistolLevelingUpDescription": "La habilidad con Pistolas se mejora al disparar y recargar el tipo de arma correspondiente.", + "PistolDescription": "La habilidad de manejo de pistolas mejora la manipulación general de estas, reduciendo el retroceso y el tiempo de recarga.", "PlaceOfFame": "EXHIBIDOR", "PlantLocationDescription": "El parque industrial y las instalaciones de la fábrica química No. 16 fueron alquiladas ilegalmente a la compañía TerraGroup. Durante la Guerra de los Contratos, esta fábrica fue escenario de numerosos combates entre operadores USEC y BEAR que determinaron el control del parque industrial de Tarkov. Con el tiempo, las instalaciones de la fábrica se convirtieron en un refugio para civiles, Scavs y de vez en cuando a operadores de USEC o BEAR.", "Player": "Jugador", @@ -14219,10 +14156,9 @@ "Prone": "Pecho Tierra", "ProneMovement": "Movimiento Pecho Tierra", "ProneMovementDescription": "Mejorar la habilidad de Movimiento Pecho Tierra hace que arrastrarte se vuelva más rápido y sigiloso.", - "ProneMovementElite": "Incrementa la velocidad de movimiento pecho tierra en un [{0:0.#%}].", - "ProneMovementLevelingUpDescription": "La habilidad de Movimiento Pecho Tierra se mejora al moverse en posición pecho tierra.", - "ProneMovementSpeed": "Incrementa la velocidad de movimiento pecho tierra en un [{0:0.#%}].", - "ProneMovementVolume": "Disminuye el sonido del movimiento pecho tierra en un [{0:0.#%}].", + "ProneMovementElite": "Incrementa la velocidad de movimiento pecho tierra en un [{0:0%}].", + "ProneMovementSpeed": "Incrementa la velocidad de movimiento pecho tierra en un [(+{0:0%})]", + "ProneMovementVolume": "Disminuye el sonido del movimiento pecho tierra en un [(-{0:0%})]", "Protect objective {0:F1}": "Protege el objetivo {0:F1}", "QUEST ITEM": "OBJETO DE MISIÓN", "QUEST ITEMS": "OBJETOS DE MISIÓN", @@ -14410,9 +14346,8 @@ "Recoil Up": "Retroceso vertical", "RecoilControl": "Control de Retroceso", "RecoilControlDescription": "Un mayor control sobre el retroceso reduce la dispersión horizontal, haciéndolo más controlable.", - "RecoilControlElite": "Mejora el control del retroceso en un [{0:0.#%}].", - "RecoilControlImprove": "Mejora el control del retroceso en un [{0:0.#%}].", - "RecoilControlLevelingUpDescription": "La habilidad de Control de Retroceso se mejora mediante disparos continuos. Cuanto mayor sea el retroceso base del arma, más rápido mejorará la habilidad.", + "RecoilControlElite": "Mejora el control del retroceso en un [{0:0%}].", + "RecoilControlImprove": "Mejora el control del retroceso en un [{0:0%}].", "RecommendedVRAM:": "VRAM recomendada", "Reconnection is not available at this moment due to testing purposes": "La reconexión no está disponible en este momento debido a propósitos de prueba", "RedRebel_alp": "Sendero del Escalador", @@ -14442,7 +14377,6 @@ "Report game bug abuse": "Reportar abuso de bugs del juego", "Report offensive nickname": "Reportar apodo ofensivo", "Report suspected cheat use": "Reportar posible uso de trampas", - "Report suspicious profile": "Reportar perfil sospechoso", "ReportAbuseBug": "Reportar abuso de bugs", "ReportAbuseVoip": "Reportar abuso de VoIP y Radio", "ReportCheater": "Reportar posible uso de trampas", @@ -14477,8 +14411,7 @@ "Revert your settings to default?": "¿Estás seguro de querer restablecer a la configuración por defecto?", "Revolver": "Revólveres", "Revolver Mastering": "Revólver", - "RevolverDescription": "La habilidad con el uso de Revólveres mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "RevolverLevelingUpDescription": "La habilidad con Revólveres se mejora al disparar y recargar el tipo de arma correspondiente.", + "RevolverDescription": "La habilidad de manejo de revólveres mejora la manipulación general de estos, reduciendo el retroceso y el tiempo de recarga.", "RezervBase": "Reserva", "Rig": "Chaleco Táctico", "Right Arm": "BRAZO DER.", @@ -14527,8 +14460,7 @@ "SKILLS_SPEED_DOWN": "Velocidad de nivelación disminuida", "SKILLS_SPEED_UP": "Velocidad de nivelación incrementada", "SMG": "Subfusiles", - "SMGDescription": "La habilidad con el uso de Subfusiles mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "SMGLevelingUpDescription": "La habilidad con Subfusiles se mejora al disparar y recargar el tipo de arma correspondiente.", + "SMGDescription": "La habilidad de manejo de subfusiles mejora la manipulación general de estos, reduciendo el retroceso y el tiempo de recarga.", "SNIPERPHRASE": "FRANCOTIRADOR", "SO": "SO", "SOUND": "SONIDO", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "Suma de ventas con {0} incrementadas en {1}", "Sandbox": "Zona Cero", "Sandbox_VExit": "Ex-V - Cordón Policial", - "Sandbox_high": "Zona Cero", "Saturation:": "Saturación:", "Savage matchmaker": "Comienza una incursión como un Scav, un bandido local con equipamiento aleatorio. ¡Tarkov es tu hogar, tú pones las reglas!", "SavageBannerDescription": "Una incursión como Scav es diferente a una incursión con tu personaje principal PMC. Los jugadores Scavs aparecerán durante una incursión en lugares y horarios aleatorios. La salud y equipamiento de los Scavs también serán aleatorios. Extraer como un Scav te dará la oportunidad de transferir cualquier botín obtenido durante la incursión al alijo de tu personaje principal PMC. Completar una incursión como Scav no transferirá experiencia a tu personaje principal PMC. Morir siendo Scav no afectará tu progreso de ninguna manera.", @@ -14585,7 +14516,6 @@ "Search": "Buscar", "SearchDescription": "Mejorar la habilidad de Buscar te permitirá registrar cuerpos y contenedores de forma más rápida y eficiente.", "SearchDouble": "Buscar en dos contenedores al mismo tiempo", - "SearchLevelingUpDescription": "La habilidad de Buscar se mejora registrando contenedores.", "SecondPrimaryWeapon": "En la Espalda", "SecondaryWeapon": "Arma en la pistolera", "SecuredContainer": "Contenedor", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "Se han cambiado los ajustes. ¿Deseas guardarlos?", "Settings/Sound/BinauralSound": "Audio Binaural", "Settings/Sound/ChatVolume": "Volumen del chat:", - "Settings/Sound/CommentatorVolume": "Volumen del locutor:", "Settings/Sound/Device": "Dispositivo de audio", "Settings/Sound/HideoutVolume": "Volumen del Refugio:", "Settings/Sound/InterfaceVolume": "Volumen de la interfaz:", "Settings/Sound/MusicOnRaidEnd": "Música al terminar la incursión", "Settings/Sound/MusicVolume": "Volumen de la música:", "Settings/Sound/OverallVolume": "Volumen general:", - "Settings/Sound/ReadyToMatchSoundVolume": "Volumen de la pantalla para aceptar partida:", "Settings/UnavailablePressType": "No disponible", "SevereMusclePain": "Dolor muscular severo", "Shack": "Punto de Control de la Base Militar", @@ -14676,8 +14604,7 @@ "Shorl_free_scav": "Camino hacia Costa", "Shotgun": "Escopetas", "Shotgun Mastering": "Escopeta", - "ShotgunDescription": "La habilidad con el uso de Escopetas mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "ShotgunLevelingUpDescription": "La habilidad con Escopetas se mejora al disparar y recargar el tipo de arma correspondiente.", + "ShotgunDescription": "La habilidad de manejo de escopetas mejora la manipulación general de estas, reduciendo el retroceso y el tiempo de recarga.", "Show icons": "Mostrar iconos", "Show:": "Mostrar:", "SightingRange": "DISTANCIA DE APUNTADO", @@ -14698,10 +14625,9 @@ "Smg Mastering": "Subfusil", "Smuggler's Boat": "Bote del Contrabandista", "Smugglers_Trail_coop": "Camino del Contrabandista (Coop.)", - "Sniper": "Fusiles de Cerrojo", + "Sniper": "Fusiles de Francotirador", "Sniper Roadblock": "Bloqueo del Francotirador", - "SniperDescription": "La habilidad con el uso de Fusiles de Cerrojo mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "SniperLevelingUpDescription": "La habilidad con Fusiles de Cerrojo se mejora al disparar y recargar el tipo de arma correspondiente.", + "SniperDescription": "La habilidad de manejo de fusiles de francotirador mejora la manipulación general de estos, reduciendo el retroceso y el tiempo de recarga.", "SniperRifle": "Fusiles de francotirador", "SniperRifle Mastering": "Fusil de francotirador", "Sniper_exit": "Avenida Mira", @@ -14734,8 +14660,6 @@ "StartInGroup": "Juntos", "StartLookingForGroup": "Comenzar a buscar grupo", "StartNotInGroup": "Separados", - "StashLinesExternalObtain": "Mejora del Alijo", - "StashLinesExternalObtain/Tooltip": "La mejora del Alijo está disponible a la venta en el sitio web", "StatFoundMoneyEUR": "EUR encontrados", "StatFoundMoneyRUB": "RUB encontrados", "StatFoundMoneyUSD": "USD encontrados", @@ -14770,22 +14694,20 @@ "StomachBloodloss": "Sangrado abdominal", "Stop looking for group": "Dejar de buscar grupo", "Strength": "Fuerza", - "StrengthBuffAim": "Reduce el consumo de aguante al apuntar en un [{0:0.#%}].", + "StrengthBuffAim": "Reduce el consumo de aguante al apuntar en un [{0:0%}].", "StrengthBuffElite": "El peso de las armas equipadas no se añade al peso de tu personaje (No incluye las armas en la mochila).", - "StrengthBuffJumpHeightInc": "Incrementa la altura al saltar en un [{0:0.#%}].", - "StrengthBuffLiftWeightInc": "Incrementa la capacidad de carga en un [{0:0.#%}].", - "StrengthBuffMeleeCrits": "Incrementa en un [{0:0.#%}] la probabilidad de infligir daño crítico cuerpo a cuerpo.", - "StrengthBuffMeleePowerInc": "Incrementa la fuerza de golpe cuerpo a cuerpo en un [{0:0.#%}].", - "StrengthBuffSprintSpeedInc": "Incrementa la velocidad de movimiento y al correr en un [{0:0.#%}].", - "StrengthBuffThrowDistanceInc": "Incrementa la distancia de lanzamiento en un [{0:0.#%}].", + "StrengthBuffJumpHeightInc": "Incrementa la altura al saltar en un [{0:0%}].", + "StrengthBuffLiftWeightInc": "Incrementa la capacidad de carga en un [{0:0%}].", + "StrengthBuffMeleeCrits": "Posibilidad de infligir daño crítico cuerpo a cuerpo [({0})]", + "StrengthBuffMeleePowerInc": "Incrementa la fuerza de golpe cuerpo a cuerpo en un [{0:0%}].", + "StrengthBuffSprintSpeedInc": "Incrementa la velocidad de movimiento y al correr en un [{0:0%}].", + "StrengthBuffThrowDistanceInc": "Incrementa la distancia de lanzamiento en un [{0:0%}].", "StrengthDescription": "Incrementar la Fuerza te permitirá saltar más alto, correr más rápido, golpear más fuerte, lanzar más lejos y cargar con más peso.", - "StrengthLevelingUpDescription": "La habilidad de Fuerza se mejora corriendo con el efecto del sobrepeso, lanzando granadas, utilizando armas cuerpo a cuerpo y haciendo ejercicio en el Gimnasio del Refugio.", "StressBerserk": "Acceso al modo Berserker", - "StressPainChance": "Reduce en un [{0:0.#%}] la probabilidad de obtener conmoción por dolor.", + "StressPainChance": "Reduce en un [{0:0%}] la probabilidad de obtener conmoción por dolor.", "StressResistance": "Resistencia al Estrés", "StressResistanceDescription": "La Resistencia al Estrés mejora las posibilidades de resistir la conmoción generada por heridas y mitiga los temblores.", - "StressResistanceLevelingUpDescription": "La habilidad de Resistencia al Estrés mejora al recibir daño. Tener el efecto de estado de Dolor sin utilizar analgésicos también mejora esta habilidad.", - "StressTremor": "Reduce los movimientos involuntarios de los temblores en un [{0:0.#%}].", + "StressTremor": "Reduce los movimientos involuntarios de los temblores en un [{0:0%}].", "StringSeparator/Or": " o ", "Stun": "Aturdido", "Subtask completed:": "Misión secundaria completada: ", @@ -14851,9 +14773,8 @@ "Summary": "Resumen", "Surgery": "Cirugía", "SurgeryDescription": "La capacidad de realizar cirugías de combate puede salvarte la vida en situaciones críticas. Entre más practiques esta habilidad, más rápidas y mejores serán tus capacidades quirúrgicas.", - "SurgeryLevelingUpDescription": "La habilidad de Cirugía se mejora mediante el uso de Kits quirúrgicos en partes del cuerpo lesionadas.", - "SurgeryReducePenalty": "Reduce la penalización de PV por cirugía en un [{0:0.#%}].", - "SurgerySpeed": "Incrementa la velocidad al realizar cirugías en un [{0:0.#%}].", + "SurgeryReducePenalty": "Reduce la penalización de PV por cirugía en un [{0:0%}].", + "SurgerySpeed": "Incrementa la velocidad al realizar cirugías en un [{0:0%}].", "Survival Rate Short": "T/S: {0}%", "SurvivalRate": "Tasa de supervivencia", "Survived": "Sobrevivido", @@ -14926,9 +14847,8 @@ "ThrowItem": "Descartar", "Throwing": "Granadas de mano", "ThrowingDescription": "La habilidad de manejo de granadas de mano te permite arrojar granadas más lejos y con un menor consumo de energía.", - "ThrowingEnergyExpenses": "Reduce en un [{0:0.#%}] la energía requerida para realizar lanzamientos.", - "ThrowingLevelingUpDescription": "La habilidad de Granadas de mano se mejora lanzando granadas.", - "ThrowingStrengthBuff": "Incrementa la fuerza de los lanzamientos en un [{0:0.#%}].", + "ThrowingEnergyExpenses": "Reduce en un [{0:0%}] la energía requerida para realizar lanzamientos.", + "ThrowingStrengthBuff": "Incrementa la fuerza de los lanzamientos en un [{0:0%}].", "ThrowingWeaponsBuffElite": "Los lanzamientos no requieren energía y la fatiga no afecta su precisión.", "Time flow": "Flujo del tiempo", "Time to reconnect left ({0})": "Tiempo restante para reconectar: ({0})", @@ -14976,11 +14896,11 @@ "Trading/Dialog/AvaliableServices": "¿Puedes ayudarme con algo?", "Trading/Dialog/Btr/News": "¿Hay alguna novedad?", "Trading/Dialog/Btr/News/Next": "¿Alguna otra novedad?", - "Trading/Dialog/Btr/News1": "¡Estuvo nevando mucho últimamente! No había nevado tanto desde las Guerras de los Contratos. Es como si no viviéramos en el norte. Es una lástima que se haya derretido.", - "Trading/Dialog/Btr/News2": "No sales mucho de tu refugio, ¿verdad? ¡Eran las festividades, todo el mundo celebraba! Por cierto, felices fiestas.", - "Trading/Dialog/Btr/News3": "Los Jefes hicieron un desmadre, ¿verdad? Todos en un solo punto, sin moverse, y sin ceder ante nadie.", - "Trading/Dialog/Btr/News4": "¡Ahora resulta que ese tipo raro que se disfraza de Santa Claus todos los años puede hablar! Pensé que era mudo.", - "Trading/Dialog/Btr/News5": "La gente ha empezado a coleccionar figuras de las celebridades locales de Tarkov por toda la ciudad. Me pregunto si luego harán una de mi BTR.", + "Trading/Dialog/Btr/News1": "¡La mayor novedad es el BTR! Lo arreglé yo mismo. Considéralo mi propia creación. Ahora puedo llevar a la gente por doquier. Quizás eso me ayude a pagar las reparaciones.", + "Trading/Dialog/Btr/News2": "Alguien está organizando combates de gladiadores en Tarkov. Dicen que mucha gente fue voluntariamente. La paga es buena. ¡Obvio, si logras sobrevivir!", + "Trading/Dialog/Btr/News3": "Hubo un alboroto en todo Tarkov por unos documentos de TerraGroup. Incluso dicen que los han estado buscando más allá de la frontera, pero yo no lo creo.", + "Trading/Dialog/Btr/News4": "Hace un tiempo, los comerciantes se quedaron sin suministros de municiones perforantes. Los combatientes como tú corrían por todo Tarkov, solo para saquear las reservas de municiones de otros. Pero ahora todo anda bien.", + "Trading/Dialog/Btr/News5": "Sanitar intentó incrementar su influencia en Tarkov recientemente. Al parecer tenía algún tipo de antídoto. Pero poco antes de eso, un montón de gente fue envenenada. ¿Coincidencia? No lo creo.", "Trading/Dialog/Btr/NoNews": "Creo que esas son todas las noticias que tengo.", "Trading/Dialog/Btr/ServicePayoff{0}": "Sí, está bien. (entregar \"{0}\")", "Trading/Dialog/BtrBotCover/Description": "Mientras estés en el BTR le dispararemos a cualquiera que se atraviese. También despejaremos la zona de descenso cuando bajes del vehículo y te cubriremos, pero no por mucho tiempo.", @@ -14999,34 +14919,18 @@ "Trading/Dialog/PlayerHandoveItem{0}": "Encontré esto. (Entregar \"{0}\")", "Trading/Dialog/PlayerTaxi/Description": "Te puedo dejar en estos lugares. Elige uno.", "Trading/Dialog/PlayerTaxi/Name": "Dar una vuelta", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Muy bien, destino: el Cine Rodina. ¿El precio te parece bien?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Cine Rodina", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "Directo al Tranvía. ¿Traes el dinero, verdad?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Tranvía", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "Muy bien, rumbo al Centro de la Ciudad. ¿Tienes dinero suficiente?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "Centro de la Ciudad", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Iremos a la Grúa Colapsada. ¿El precio te parece bien?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Grúa Colapsada", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "Te llevaré al Viejo Punto de Control Scav. ¿El precio te parece bien, verdad?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Viejo Punto de Control Scav", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "Te llevaré al Hotel Pinewood. ¿Qué tal el precio? ¿Satisfecho?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Hotel Pinewood", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "Nos dirigimos al Búnker Scav. ¿El precio te parece bien?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Búnker Scav", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "¿Conque a la Aldea Hundida, eh? Creo que podemos hacerlo. Este es el precio.", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Aldea Hundida", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "Claro, puedo llevarte a la Intersección de caminos. ¿Traes suficiente dinero?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Intersección", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "¿El Aserradero? ¡No hay problema! Este es mi precio.", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Aserradero", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "Muy bien, al Punto de Control USEC. Pero no lo haré gratis.", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "Punto de Control USEC", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "Estoy trazando la ruta a la Base EMERCOM. ¿El precio te parece bien?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "Base EMERCOM", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "Okie-dokie, al Viejo Aserradero. Este es el precio.", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Viejo Aserradero", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "¿Quieres que te deje en el Depósito de Trenes? Para que sepas, no puedes salir de allí sin mí. Si el precio te parece bien, vigila el tiempo que pasas allí, ¿entendido?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Depósito de Trenes", + "Trading/Dialog/PlayerTaxi/p1/Description": "Muy bien, destino: el Cine Rodina. ¿El precio te parece bien?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Cine Rodina", + "Trading/Dialog/PlayerTaxi/p2/Description": "Directo al Tranvía. ¿Traes el dinero, verdad?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tranvía", + "Trading/Dialog/PlayerTaxi/p3/Description": "Muy bien, rumbo al Centro de la Ciudad. ¿Tienes dinero suficiente?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Centro de la Ciudad", + "Trading/Dialog/PlayerTaxi/p4/Description": "Iremos a la Grúa Colapsada. ¿El precio te parece bien?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Grúa Colapsada", + "Trading/Dialog/PlayerTaxi/p5/Description": "Te llevaré al Viejo Punto de Control Scav. ¿El precio te parece bien, verdad?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Viejo Punto de Control Scav", + "Trading/Dialog/PlayerTaxi/p6/Description": "Te llevaré al Hotel Pinewood. ¿Qué tal el precio? ¿Satisfecho?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Hotel Pinewood", "Trading/Dialog/Quit": "Despedirse y salir", "Trading/Dialog/ServicePayoff{0}": "Muy bien, esto debería ser suficiente. (entregar \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Ocultar historial", @@ -15062,14 +14966,13 @@ "TransferScreen/TransferFailed": "No se pudo comprar el servicio", "TransferScreen/TransferSuccess": "¡Servicio adquirido!", "Tremor": "Temblores", - "TroubleFixing": "Incrementa la velocidad de resolución de problemas en un [{0:0.#%}].", - "TroubleFixingAmmoElite": "Reduce en un [50%] la probabilidad de fallos de funcionamiento causado por cargadores, después de haber arreglado un fallo de la misma causa.", - "TroubleFixingDurElite": "Reduce en un [50%] la probabilidad de fallos de funcionamiento basado en la durabilidad de las armas, después de haber arreglado un fallo de la misma causa.", + "TroubleFixing": "Incrementa la velocidad de resolución de problemas en un [{0:0%}].", + "TroubleFixingAmmoElite": "Reduce en un 50% la probabilidad de fallos de funcionamiento causado por cargadores, después de haber arreglado un fallo de la misma causa.", + "TroubleFixingDurElite": "Reduce en un 50% la probabilidad de fallos de funcionamiento basado en la durabilidad de las armas, después de haber arreglado un fallo de la misma causa.", "TroubleFixingExamineMalfElite": "La identificación del tipo de avería no requiere examinar el arma.", - "TroubleFixingMagElite": "Reduce en un [50%] la probabilidad de fallos de funcionamiento causado por cartuchos, después de haber arreglado un fallo de la misma causa.", + "TroubleFixingMagElite": "Reduce en un 50% la probabilidad de fallos de funcionamiento causado por cartuchos, después de haber arreglado un fallo de la misma causa.", "TroubleShootingDescription": "La habilidad Resolución de Problemas facilita la rectificación de los fallos de funcionamiento de un arma.", "Troubleshooting": "Resolución de Problemas", - "TroubleshootingLevelingUpDescription": "La habilidad de Resolución de Problemas se mejora rectificando periódicamente los fallos de funcionamiento de las armas.", "Try_keycard {0}": "Intentar con {0}", "Tunnel": "Túnel", "Tunnel_Shared": "Túnel Secundario (Coop.)", @@ -15152,11 +15055,6 @@ "UI/Arena/Place_7": "7mo lugar", "UI/Arena/Place_8": "8vo lugar", "UI/Arena/Place_9": "9no lugar", - "UI/ArmorPenetration/High": "Alta", - "UI/ArmorPenetration/Low": "Baja", - "UI/ArmorPenetration/Medium": "Media", - "UI/ArmorPenetration/VeryHigh": "Muy alta", - "UI/ArmorPenetration/VeryLow": "Muy baja ", "UI/Charisma/Discount/Insurance": "Coste del seguro", "UI/Charisma/Discount/PostRaidHealing": "Coste de curación", "UI/Charisma/Discount/ScavCase": "Coste del Buzón Scav", @@ -15334,18 +15232,15 @@ "Very good standing": "muy buena", "Vest": "Chaleco Balísticos", "Village": "Aldea", - "Violation/IntentionalTeamDamage/Warning": "Tu cuenta será bloqueada si continúas disparando a tus compañeros de equipo", - "Violation/IntentionalTeamKill/Warning": "Tu cuenta será bloqueada si continúas matando a tus compañeros de equipo al inicio de la ronda", "Violation/TeamKill/Warning": "Tu cuenta será bloqueada si continúas matando a tus compañeros de equipo", "Vital mod weapon in hands": "No puedes modificar las piezas vitales mientras el arma está en tus manos.", "Vital parts": "Piezas vitales", "Vitality": "Vitalidad", - "VitalityBuffBleedChanceRed": "Reduce la probabilidad de hemorragia en un [{0:0.#%}].", + "VitalityBuffBleedChanceRed": "Reduce la probabilidad de hemorragia en un [{0:0%}].", "VitalityBuffBleedStop": "Todas las hemorragias se detienen de forma espontánea.", "VitalityBuffRegeneration": "Incrementa la regeneración de salud en combate.", - "VitalityBuffSurviobilityInc": "Reduce la probabilidad de morir al perder una parte del cuerpo en un [{0:0.#%}].", + "VitalityBuffSurviobilityInc": "Reduce la probabilidad de morir al perder una parte del cuerpo en un [{0:0%}].", "VitalityDescription": "La Vitalidad mejora las probabilidades de sobrevivir a las heridas, disminuyendo la posibilidad de sangrados y de muerte instantánea por daño crítico en alguna parte del cuerpo.", - "VitalityLevelingUpDescription": "La habilidad de Vitalidad se mejora al sufrir diversas hemorragias y lesiones.", "Voice": "Voz del personaje", "Voice 1": "Voz 1", "Voice 2": "Voz 2", @@ -15402,27 +15297,26 @@ "WaterCollector": "COLECTOR DE AGUA", "Weapon": "Arma", "Weapon has been built": "El arma se ha ensamblado", - "WeaponAccBuff": "Incrementa la precisión del arma en un [{0:0.#%}].", + "WeaponAccBuff": "Incrementa la precisión del arma en un [{0:0%}].", "WeaponBroken": "PROBLEMA EN EL ARMA", "WeaponBuild/SetNameWindowCaption": "NOMBRE DEL ESQUEMA", "WeaponBuild/SetNameWindowPlaceholder": "escribe nombre del esquema", - "WeaponDeteriorationChanceReduce": "Reduce la probabilidad de desgaste durante la reparación en un [{0:0.#%}].", + "WeaponDeteriorationChanceReduce": "Reduce la probabilidad de desgaste durante la reparación en un [{0:0%}].", "WeaponDoubleMastering": "Dobla la ganancia de puntos de maestría", - "WeaponDurabilityLossOnShotReduce": "Reduce el desgaste del arma al disparar en un [{0:0.#%}].", - "WeaponErgonomicsBuff": "Mejora la ergonomía del arma en un [{0:0.#%}].", + "WeaponDurabilityLossOnShotReduce": "Reduce el desgaste del arma al disparar en un [{0:0%}].", + "WeaponErgonomicsBuff": "Mejora la ergonomía del arma en un [{0:0%}].", "WeaponJammed": "ARMA ATASCADA", "WeaponModding": "Modificación de Armas", "WeaponModdingDescription": "Habilidad básica para la modificación de armas, incrementa la ergonomía de los accesorios y reduce el desgaste de los supresores.", "WeaponPunch": "Culatazo", - "WeaponRecoilBuff": "Reduce el retroceso del arma en un [{0:0.#%}].", - "WeaponReloadBuff": "Incrementa la velocidad de recarga en un [{0:0.#%}].", - "WeaponStiffHands": "Incrementa la ergonomía del arma en un [{0:0.#%}].", - "WeaponSwapBuff": "Incrementa la velocidad de cambio de arma en un [{0:0.#%}].", + "WeaponRecoilBuff": "Reduce el retroceso del arma en un [{0:0%}].", + "WeaponReloadBuff": "Incrementa la velocidad de recarga en un [{0:0%}].", + "WeaponStiffHands": "Incrementa la ergonomía del arma en un [{0:0%}].", + "WeaponSwapBuff": "Incrementa la velocidad de cambio de arma en un [{0:0%}].", "WeaponTreatment": "Mantenimiento de Armas", "WeaponTreatmentDescription": "Habilidades enfocadas al servicio y mantenimiento de las armas.", - "WeaponTreatmentLevelingUpDescription": "La habilidad de Mantenimiento de Armas se mejora reparando armas con Kits de reparación.", "WearAmountRepairGunsReducePerLevel": "Reduce la cantidad de desgaste cuando se utilizan kits de reparación", - "WearChanceRepairGunsReduceEliteLevel": "Reduce en un [50%] la probabilidad de desgaste cuando se utilizan kits de reparación.", + "WearChanceRepairGunsReduceEliteLevel": "Reduce en un 50% la probabilidad de desgaste cuando se utilizan kits de reparación.", "Weather conditions": "Condiciones meteorológicas", "WeightLimit": "Límite de peso", "Welcome screen description": "¡Bienvenido a Escape From Tarkov! \nEn este juego tendrás que luchar por tu vida y sobrevivir a los peligros de Tarkov, una ciudad Rusa en la región de Norvinsk al borde del caos y el colapso. Tu personaje es un operador de una Compañía Militar Privada (PMC), atrapado en el vórtice de los acontecimientos después de la Guerra de los Contratos (Contract Wars). El área está sellada, tu mando de operaciones no responde y los objetivos de la misión han perdido su propósito. Ahora todo el mundo tiene sus propias metas - adáptate y sobrevive, escapa del bloqueo o intenta salvar a otros.\n\nEn cada incursión a la que entres debes estar preparado para morir y perder todo lo que tenías contigo.\nTen en cuenta que una caída de tu conexión a internet o mal funcionamiento de hardware puede conducirte a la desconexión de la partida y la consiguiente muerte de tu personaje, además de perder todo lo que traías o habías recolectado en la incursión.\n\nSí, morirás, y probablemente muy a menudo, pero recuerda - esto solo es un juego. ¡Mucha suerte ahí fuera!", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "Tasa de victoria, %", "arena/career/teamFightStats/wins": "Victorias", "arena/career/teamFightStats/winsWithFavPreset": "Partidas ganadas con Kit favorito", - "arena/customGames/create/samePresets": "Kits duplicados:", - "arena/customGames/create/setSamePresets": "Permitir Kits duplicados", "arena/customGames/invite/message{0}": "INVITACIÓN A PARTIDA PERSONALIZADA DE {0}", "arena/customGames/notify/GameRemoved": "La sala ha sido disuelta", "arena/customgames/errors/notification/gamealreadystarted": "La partida ya ha comenzado", @@ -15706,9 +15598,8 @@ "arena/tab/SCOUT": "EXPLORADOR", "arena/tab/SQB": "CQB", "arena/tooltip/OverallMatches": "Número total de partidas jugadas en Clasificatorias y Casuales.", - "arena/tooltip/Presets": "Kits", + "arena/tooltip/Presets": "Presets", "arena/tooltip/countGlp": "Tu puntuación total de ARP (Arena Reputation Points). Esta es una estadística que determina tu clasificación conseguida en los modos de juego Clasificatorios. Se utiliza para emparejar jugadores con habilidades equivalentes, así como para desbloquear nuevos rangos y Kits de equipamiento.", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", "arena/tooltip/friends": "Amigos", "arena/tooltip/kdRatio": "Tu tasa general de Eliminaciones y Muertes, calculada a partir de todas tus Eliminaciones y Muertes en partidas Clasificatorias y Casuales. Solo cuentan las Eliminaciones del jugador.", "arena/tooltip/leftGlp": "Cantidad necesaria de puntuación ARP para alcanzar el siguiente rango.", @@ -15716,7 +15607,6 @@ "arena/tooltip/moneyRubles": "Rublos. Se utilizan para comprar Kits y se obtienen por victorias en la Arena.", "arena/tooltip/ratingPlace": "Tu posición en la tabla.", "arena/tooltip/settings": "Ajustes", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", "arena/tooltip/sourcesGlp": "Fuentes de ARP obtenida:", "arena/tooltip/winMatches": "Número total de victorias en partidas Clasificatorias y Casuales.", "arena/tooltip/winRate": "Tu tasa general de victorias, calculada a partir de todas las victorias y derrotas en partidas Clasificatorias y Casuales.", @@ -16370,7 +16260,7 @@ "scav_e6": "Entrada al Sótano", "scav_e7": "Estacionamiento del Complejo de Departamentos Cardinal", "scav_e8": "Exfiltración en el Centro Comercial Klimov", - "searchspeed": "Incrementa la velocidad de búsqueda en un [{0:0.#%}].", + "searchspeed": "Incrementa la velocidad de búsqueda en un [{0:0%}].", "sec": "seg", "select weapon body for the build": "SELECCIONA EL CUERPO DEL ARMA PARA El ESQUEMA", "semiauto": "Semiautomático", @@ -16450,8 +16340,6 @@ "{0} GroupPlayerBlocking/MatchLeave": "Modo de juego bloqueado temporalmente debido a que uno de los miembros del grupo ({0}) fue bloqueado por abandonar una partida", "{0} GroupPlayerBlocking/NotAcceptedMatch": "Modo de juego bloqueado temporalmente debido a que uno de los miembros del grupo ({0}) fue bloqueado por no aceptar una partida", "{0} GroupPlayerBlocking/TeamKill": "Modo de juego bloqueado temporalmente debido a que uno de los miembros del grupo ({0}) fue bloqueado por fuego amigo recurrente", - "{0} Violation/IntentionalTeamDamage/Blocking": "El jugador {0} ha sido expulsado de la partida y recibió una penalización por disparar a sus compañeros", - "{0} Violation/IntentionalTeamKill/Blocking": "El jugador {0} ha sido expulsado de la partida y recibió una penalización por matar compañeros al inicio de la ronda", "{0} Violation/TeamKill/Blocking": "El jugador {0} ha sido expulsado de la partida y recibió una penalización por eliminar compañeros", "{0} added you to the ignore list": "{0} te agregó a la lista de ignorados.", "{0} ask to cooperate": "{0} te saluda.", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "Zona Cero", "653e6760052c01c1c805532f Description": "El centro de negocios de Tarkov. Aquí es donde TerraGroup tenía su sede. Aquí es donde comenzó todo.", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "United Security", "5464e0404bdc2d2a708b4567 Description": "La compañía militar privada USEC fue establecida en 1999 después de la fusión de dos compañías: KerniSEC y Safe Sea. En 2004, un agente de TerraGroup International Holding se puso en contacto con USEC, que luego convirtió a USEC, esencialmente, en el ejército privado del Holding, con oficinas en todo el mundo y más de 7500 empleados.", "5464e0454bdc2d06708b4567 Name": "BEAR", @@ -18024,7 +17910,7 @@ "5a27bc8586f7741b543d8ea4 description": "Hola, mi querido amigo, parece que estamos cerca de un acuerdo interesante. En ese disco descubrimos un modelo incompleto de un motor para misiles que será excepcionalmente interesante para Occidente, ya que está diseñado para los submarinos de la clase Typhoon -- que supuestamente ya no son funcionales. Además de un archivo bastante detallado sobre un marinero que sirvió en la Flota del Báltico, un verdadero veterano, el cual ahora está en algún lugar de Tarkov, y parece que tiene conexiones con el mando de la Armada. Él es a quién debemos encontrar. Según mis informes, a veces realiza convenios en secreto con los Scavs, y llegar a él no será fácil. Tendrás que trabajar discretamente, para una emboscada. Solo tendremos una oportunidad amigo mío, y es muy importante no fallar y no perder a un blanco tan jugoso. Incluso me tiemblan las manos de solo hablar de esto, no tienes idea de lo crucial que es esto, y fallar no es una opción. Eres un buen combatiente, pero quiero asegurarme de que también eres bueno para operaciones encubiertas. Necesito un francotirador, y uno con experiencia, así que regresa cuando estés listo.", "5a27bc8586f7741b543d8ea4 failMessageText": "", "5a27bc8586f7741b543d8ea4 successMessageText": "Mercenario, con todo respeto, no creí que lo lograrías. Parece que tú serás nuestro \"tirador selecto\". Te contactaré cuando llegue el momento.", - "5a28235e86f7741da250b438": "Alcanza el nivel requerido de Habilidad con Fusiles de Cerrojo", + "5a28235e86f7741da250b438": "Alcanza el nivel requerido de Habilidad con Fusiles de francotirador", "5a27bc8586f7741b543d8ea4 acceptPlayerMessage": "", "5a27bc8586f7741b543d8ea4 declinePlayerMessage": "", "5a27bc8586f7741b543d8ea4 completePlayerMessage": "", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "Elimina operadores PMC de impactos en la cabeza utilizando un fusil de cerrojo en Faro", "63aec6f256503c322a190374": "Elimina operadores PMC de impactos en la cabeza utilizando un fusil de cerrojo en Calles de Tarkov", "64b694c8a857ea477002a408": "Elimina operadores PMC de impactos en la cabeza utilizando un fusil de cerrojo en Intercambio", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18882,7 +18767,7 @@ "5c0be13186f7746f016734aa description": "Saludos, mercenario. Escuché que estás tratando de convertirte en un francotirador. Seguramente el poder dedicarse al negocio de los francotiradores requiere tenacidad, paciencia y perspectiva, pero también hay muchos otros factores importantes a tomar en cuenta. ¿Sabes qué me dijo Dima una vez? \"Cualquiera puede disparar, pero solo unos cuantos pueden convertirse en francotiradores de verdad\".", "5c0be13186f7746f016734aa failMessageText": "Un francotirador experimentado no se habría expuesto de esa manera. Recupera el aliento y vuelve a intentarlo.", "5c0be13186f7746f016734aa successMessageText": "Francamente, no estaba seguro de que lo conseguirías. Pero aparentemente tú no eres un tipo regular.", - "5c0be2b486f7747bcb347d58": "Alcanza el nivel requerido de Habilidad con Fusiles de Cerrojo", + "5c0be2b486f7747bcb347d58": "Alcanza el nivel requerido de Habilidad con Fusiles de francotirador", "5c1fb5f086f7744a184fb3c5": "", "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Elimina operadores PMC utilizando un fusil de cerrojo sin morir", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Elimina Scavs en Calles de Tarkov mientras llevas puesto el uniforme de la ONU (Casco UNTAR, Chaleco balístico MF-UNTAR y Fusil M4A1)", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "Sobrevive y extrae de Reserva con el estado de \"Sobrevivido\"", "629f08e7d285f377953b2af1": "Sobrevive y extrae de Faro con el estado de \"Sobrevivido\"", "63aec66556503c322a190372": "Sobrevive y extrae de Calles de Tarkov con el estado de \"Sobrevivido\"", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Alcanza el Nivel de Lealtad 4 con Therapist", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -20314,8 +20195,6 @@ "60ec2b04bc9a8b34cd453b81": "No debes morir o abandonar la incursión mientras la misión esté activa (Estado: M.E.C., D.E.C., Abandono, Huida)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", @@ -20641,7 +20520,7 @@ "6193850f60b34236ee0483de description": "Ven aquí de una vez. Bueno, hay una carretera a lo largo de toda la costa del Cabo, probablemente la has visto. Mis muchachos usan esta carretera para transportar mis mercancías. Usualmente, se las arreglan para evitar problemas o logran calmar a ciertos imbéciles con los que llegan a toparse, pero ahora mismo es un puto nido de ratas, probablemente se enteraron de mis mercancías. Comenzaron a atacar a mis muchachos con todas sus fuerzas y ni siquiera puedo comunicarme con ellos, en lo absoluto. Ve y encárgate de esos pendejos ¿Quieres? A cambio, te conseguiré algo bueno.", "6193850f60b34236ee0483de failMessageText": "", "6193850f60b34236ee0483de successMessageText": "Qué buen pedo, te chingaste a esos idiotas como era debido. Entonces bien, nos vemos luego amigo.", - "6193dabd5f6468204470571f": "Elimina Scavs a lo largo de la playa y en la carretera principal de Faro", + "6193dabd5f6468204470571f": "Elimina Scavs en la carretera principal de Faro", "6193850f60b34236ee0483de acceptPlayerMessage": "", "6193850f60b34236ee0483de declinePlayerMessage": "", "6193850f60b34236ee0483de completePlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "Sobrevive y extrae de Calles de Tarkov a través de: Ex-V - Taxi en la Avenida Primorsky", "6397a6942e519e69d2139b25": "Localiza y coloca un Marcador MS2000 en el primer vehículo blindado Patrol-A en Calles de Tarkov", "6397a7ce706b793c7d6094c9": "Localiza y coloca un Marcador MS2000 en el segundo vehículo blindado Patrol-A en Calles de Tarkov", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "Logré ponerme en contacto con los conductores. No fue fácil, pero descubrí algo interesante.", @@ -21436,7 +21314,7 @@ "6396701b9113f06a7c3b2379 failMessageText": "", "6396701b9113f06a7c3b2379 successMessageText": "Hemos estado observándote. Mi tirador dio el visto bueno. Eso es todo por ahora. Te avisaré cuando llegue el momento.", "6397ac912e519e69d2139b26": "Elimina Scavs Francotiradores a más de 350 metros", - "639a169e6cd47c525121a116": "Alcanza el nivel requerido de Habilidad con Fusiles de Cerrojo", + "639a169e6cd47c525121a116": "Alcanza el nivel requerido de Habilidad con Fusiles de francotirador", "6396701b9113f06a7c3b2379 acceptPlayerMessage": "", "6396701b9113f06a7c3b2379 declinePlayerMessage": "", "6396701b9113f06a7c3b2379 completePlayerMessage": "Ya soy todo un francotirador demencial. ¿Qué sigue?", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "Elimina Scavs utilizando armas cuerpo a cuerpo en Intercambio", "63a9b5b2813bba58a50c9eeb": "Elimina Scavs utilizando armas cuerpo a cuerpo en Aduanas", "63a9b5f064b9631d9178276b": "Elimina Scavs utilizando armas cuerpo a cuerpo en Reserva", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21691,8 +21568,8 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "Un cabrón menos del que preocuparse. Lo hiciste bien, muchacho.", "64e7ba17220ee966bf425ecb": "Localiza y elimina a Kaban", "64e7ba4a6393886f74119f3d": "Elimina a los guardias de Kaban en el concesionario de automóviles de Calles de Tarkov", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", diff --git a/project/assets/database/locales/global/es.json b/project/assets/database/locales/global/es.json index 2bccb9bc..601e9f8d 100644 --- a/project/assets/database/locales/global/es.json +++ b/project/assets/database/locales/global/es.json @@ -2507,7 +2507,7 @@ "5a0abb6e1526d8000a025282 Name": "Adaptador de bocacha Taktika Tula para AK de 7,62x39 mm", "5a0abb6e1526d8000a025282 ShortName": "TT AK", "5a0abb6e1526d8000a025282 Description": "Un adaptador de bocacha Taktika Tula. Permite instalar bocachas modernas en los fusiles AK y AKM de calibre 7,62x39 mm.", - "5a0c27731526d80618476ac4 Name": "Granada aturdidora Zarya", + "5a0c27731526d80618476ac4 Name": "Granada aturdidora \"Zarya\"", "5a0c27731526d80618476ac4 ShortName": "Zarya", "5a0c27731526d80618476ac4 Description": "Diseñada para suprimir la estabilidad mental del enemigo creando un efecto repentino de sonido y un destello muy brillante. Se utiliza en operaciones especiales para la captura de delincuentes y la supresión de disturbios.", "5a0c59791526d8dba737bba7 Name": "Cantonera del Kit de Accesorios GP-25 para AK", @@ -2675,7 +2675,7 @@ "5a16b8a9fcdbcb00165aa6ca Name": "Montura Norotos Titanium Advanced Tactical Mount", "5a16b8a9fcdbcb00165aa6ca ShortName": "TATM", "5a16b8a9fcdbcb00165aa6ca Description": "Una montura ligera de titanio que se instala en el anclaje frontal del casco. Permite instalar dispositivos de visión nocturna u otros dispositivos ópticos. Producida por Norotos Inc.", - "5a16b93dfcdbcbcae6687261 Name": "Montura Norotos Dual Dovetail para AN/PVS-14", + "5a16b93dfcdbcbcae6687261 Name": "Montura Dual Dovetail para AN/PVS-14", "5a16b93dfcdbcbcae6687261 ShortName": "DDT", "5a16b93dfcdbcbcae6687261 Description": "Una montura Dual Dovetail Interface Arm para el dispositivo Monocular de visión nocturna AN/PVS-14.", "5a16b9fffcdbcb0176308b34 Name": "Auriculares Ops-Core FAST RAC", @@ -3465,7 +3465,7 @@ "5ae089fb5acfc408fb13989b ShortName": "Trofeo", "5ae089fb5acfc408fb13989b Description": "Trofeo", "5ae08f0a5acfc408fb1398a1 Name": "Fusil de cerrojo Mosin de 7,62x54 mm R (Francotirador)", - "5ae08f0a5acfc408fb1398a1 ShortName": "Mosin Francotirador", + "5ae08f0a5acfc408fb1398a1 ShortName": "Mosin (Francotirador)", "5ae08f0a5acfc408fb1398a1 Description": "El fusil Mosin–Nagant M91/30 PU es una versión para francotirador del famoso fusil ruso, que fue ampliamente utilizado por los francotiradores rusos durante la Segunda Guerra Mundial.", "5ae096d95acfc400185c2c81 Name": "Cuerpo estándar para Fusil Mosin", "5ae096d95acfc400185c2c81 ShortName": "Crpo. Mosin", @@ -4188,7 +4188,7 @@ "5bf3f59f0db834001a6fa060 ShortName": "A. RPK-16", "5bf3f59f0db834001a6fa060 Description": "Un alza desmontable producida por Izhmash. Es la mira estándar para la ametralladora ligera RPK-16.", "5bfd297f0db834001a669119 Name": "Fusil de cerrojo Mosin de 7,62x54 mm R (Infantería)", - "5bfd297f0db834001a669119 ShortName": "Mosin Infantería", + "5bfd297f0db834001a669119 ShortName": "Mosin (Infantería)", "5bfd297f0db834001a669119 Description": "El Mosin-Nagant es un famoso fusil ruso que fue ampliamente utilizado durante la Segunda Guerra Mundial. Desarrollado entre 1882 y 1891, fue usado por las fuerzas armadas del Imperio Ruso, la Unión Soviética y de muchas otras naciones. Es uno de los fusiles de cerrojo de mayor producción en la historia, con más de 37 millones de unidades fabricadas desde 1891. A pesar de su antigüedad, ha sido utilizado en varios conflictos armados alrededor del mundo, incluso en la actualidad.", "5bfd35380db83400232fe5cc Name": "Cuerpo de infantería para Fusil Mosin", "5bfd35380db83400232fe5cc ShortName": "Crpo. Inf. Mosin", @@ -4577,7 +4577,7 @@ "5c10c8fd86f7743d7d706df3 Name": "Inyector de adrenalina", "5c10c8fd86f7743d7d706df3 ShortName": "Adrenalina", "5c10c8fd86f7743d7d706df3 Description": "Un inyectable estéril que contiene una dosis de adrenalina, la hormona principal de la médula suprarrenal. Se utiliza para mejorar la respuesta fisiológica asociada con la preparación de todos los músculos del cuerpo para la actividad física. Aumenta temporalmente la fuerza y la resistencia y también alivia la sensación de dolor.", - "5c11046cd174af02a012e42b Name": "Adaptador Wilcox para PVS-7", + "5c11046cd174af02a012e42b Name": "Adaptador Wilcox Interface para PVS-7", "5c11046cd174af02a012e42b ShortName": "W-PVS7", "5c11046cd174af02a012e42b Description": "El adaptador Wilcox NVG Interface Shoe para AN/PVS-7B/7D está diseñado para reemplazar los adaptadores originales de diversas gafas de visión nocturna.", "5c110624d174af029e69734c Name": "Gafas de visión térmica T-7 con montura de visión nocturna", @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "Un módulo compacto de apuntado láser color azul. Puede ser montado en cualquier raíl Picatinny/Weaver para mejorar la adquisición de objetivos al apuntar. Producido por NcSTAR. ¡El azul mola!", "5cd945d71388ce000a659dfb Name": "Básico Superior BEAR", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Combat shirt", "5cd946231388ce000d572fe3 Name": "Básico Inferior BEAR", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "Empuñadura vertical para ASh-12", "5cda9bcfd7f00c0c0b53e900 ShortName": "E. ASh-12", "5cda9bcfd7f00c0c0b53e900 Description": "Una empuñadura vertical para el fusil de asalto ASh-12.", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "Básico Inferior USEC", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", "5cde9ec17d6c8b04723cf479 Name": "Básico Superior USEC", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Chándal Adik", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", "5cdea42e7d6c8b0474535dad Name": "Chándal Adik", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "Cuerpo Magpul Pro 700 para M700", "5cdeac22d7f00c000f26168f ShortName": "Crpo. Pro 700", "5cdeac22d7f00c000f26168f Description": "El Pro 700 es un cuerpo ligero y ergonómico, diseñado para el fusil de francotirador Remington M700. Producido por Magpul.", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "Black Lynx BEAR", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", "5d1f60ae86f7744bcc04998b Name": "Camiseta BEAR Contractor", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "Respuesta Rápida FSB", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "Ghost Marksman BEAR", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "Summer Field BEAR", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "Aggressor TAC USEC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "Softshell Flexion USEC", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "Woodland Infiltrator USEC", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Combat shirt", "5d1f623886f7743014163027 Name": "PCS MultiCam USEC", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "PCU Ironsight USEC", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "Operaciones Urbanas FSB", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "Gorka Kobra BEAR", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "Gorka SSO BEAR", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "Striker Infil Ops BEAR", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "Summer Field BEAR", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "Gen.2 Khyber USEC", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "Woodland Infiltrator USEC", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "Vaqueros Ranger USEC", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "Taclife Terrain USEC", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "TACRES USEC", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "Freno de boca Daniel Defense WAVE de 7,62x51 mm para AR-10", "5d1f819086f7744b355c219b ShortName": "WAVE 762", "5d1f819086f7744b355c219b Description": "El freno de boca Daniel Defense WAVE está diseñado para instalar el silenciador Daniel Defense WAVE al arma, pero también funciona de forma muy efectiva por sí solo. Está fabricado con acero aeroespacial inoxidable 17-4 PH y tiene un acabado en sal de nitrato para minimizar la corrosión.", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "Commando USEC", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "Un cuerpo superior para el fusil SR-25, producido por Knight's Armament Company.", "5df8e5c886f7744a122d6834 Name": "Zaslon BEAR", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "Meteoro", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "Oldschool BEAR", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "TIER 2 USEC", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "Sklon", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "Se trata de una modificación de primera generación del chaleco portaplacas CPC, diseñado por Crye Precision y adaptado por Ars Arma para las fuerzas especiales de la Federación Rusa. Este chaleco modular se sustenta sobre un corsé de polímero que se adapta al cuerpo y previene que se mueva durante el movimiento, y también contribuye a una distribución del peso mejorada. Esta versión está configurada como chaleco táctico de asalto por la distribución de los bolsillos. Producido por Ars Arma. Versión con camuflaje A-TACS Foliage Green.", "5e4bb08f86f774069619fbbc Name": "Telnik BEAR", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "TIER2 USEC", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "TIGR BEAR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "Commando USEC", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "Chaqueta de Rusia", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "TIGR BEAR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "Urban Responder USEC", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "Zaslon BEAR", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "Deep Recon USEC", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Tactical pants", "5e9dcf5986f7746c417435b3 Name": "Mochila LBT-8005A Day Pack (MultiCam Black)", "5e9dcf5986f7746c417435b3 ShortName": "Day Pack", "5e9dcf5986f7746c417435b3 Description": "Una mochila sencilla y fiable con capacidad de 14 litros y camuflaje MultiCam Black. Producida por London Bridge Trading.", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "El chaleco táctico fijo Thunderbolt contiene todos los bolsillos utilitarios básicos y portacargadores que podrías necesitar. Producido por Direct Action. Versión de color Shadow Grey.", "5f5f45df0bc58666c37e7832 Name": "G99 BEAR", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "Night Patrol USEC", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "G99 BEAR", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "Urban Responder USEC", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Boot Scav", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "SRVV BEAR", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "TIER3 USEC", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": "Cartucho de .300 Blackout - AP", "5fd20ff893a8961fc660a954 ShortName": "AP", "5fd20ff893a8961fc660a954 Description": "Munición de calibre .300 Blackout (7,62x35 mm) AP - Es un cartucho cargado con una bala perforante de 8,4 gramos de un cartucho 7,62x51 mm OTAN M80A1, compuesta de una punta penetradora de acero sobre un núcleo de aleación de cobre y con semi-encamisado de cobre, en un casquillo de latón. A pesar de las características propias de la bala al ser utilizada en un cartucho de alta potencia, estas se ven afectadas al ser trasladada a un cartucho intermedio, no obstante, la bala sigue teniendo capacidades para atravesar protecciones balísticas corporales básicas e intermedias, además de ser capaz de causar efectos adversos sustanciales al objetivo tras impactar. Su diseño también le permite ser utilizado en cargadores STANAG de 5,56x45 mm OTAN sin problema alguno.", "5fd3e77be504291efd0040ad Name": "VEKTOR USEC", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "Boreas BEAR", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "Grizzly BEAR", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "Adaptive Combat USEC", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "Un chaleco táctico tipo \"Arnes de pecho\" de nailon con bolsillos fijos. Permite llevar una cantidad sorprendente de munición a costa de su falta de modularidad.", "6038b228af2e28262649af14 Name": "Rash Guard BEAR", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "Sandstone USEC", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", "6038b4b292ec1c3103795a0b Name": "Chaleco portaplacas LBT-6094A Slick (Coyote Tan)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "Un chaleco portaplacas sencillo pero efectivo, producido por la compañía London Bridge Trading. USe trata de un diseño minimalista especialmente diseñado para ser utilizado con chalecos tácticos ligeros de tipo \"chest rig\". Versión de color Coyote Tan.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "La TP-200 está diseñada para usarse como carga en la realización de sondeos sísmicos, como detonadores intermedios para voladuras en pozo, así como la destrucción de objetos de gran tamaño y operaciones especiales de voladura.", "603d01a1b41c9b37c6592047 Name": "VOIN BEAR", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "Sage Warrior USEC", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Chaleco táctico Azimut SS \"Zhuk\" (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Zhuk", "6040dd4ddcf9592f401632d2 Description": "Un chaleco táctico tipo \"Arnes de pecho\" de nailon con bolsillos fijos. Permite llevar una cantidad sorprendente de munición a costa de su falta de modularidad. Versión con camuflaje SURPAT.", @@ -8239,10 +8239,10 @@ "619b69037b9de8162902673e Description": "Diseñada tanto para el mercado civil como el militar. La culata integral CQR47 es fácil de instalar en fusiles AK/AKM de culata fija, reemplazando las piezas originales. Fabricado por Hera Arms.", "619b99ad604fcc392676806c Name": "Recon BEAR", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "K4 USEC", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", "619bc61e86e01e16f839a999 Name": "Brazalete (Alpha)", "619bc61e86e01e16f839a999 ShortName": "Alpha", "619bc61e86e01e16f839a999 Description": "Un brazalete de identificación especial para los veteranos que siguen aquí desde los tiempos de la versión Alpha.", @@ -8275,10 +8275,10 @@ "619bdfd4c9546643a67df6fa Description": "Un brazalete de identificación especial para operadores USEC veteranos.", "619bf75264927e572d0d5853 Name": "Sumrak BEAR", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "Tubo corrugado de uso militar", "619cbf476b8a1b37a54eebf8 ShortName": "Tubo M.", "619cbf476b8a1b37a54eebf8 Description": "Un tubo corrugado de uso militar para sistemas de ventilación de equipos militares o sistemas de purificación de aire.", @@ -8858,7 +8858,7 @@ "628cd624459354321c4b7fa2 Name": "Chaleco portaplacas Tasmanian Tiger SK (MultiCam Black)", "628cd624459354321c4b7fa2 ShortName": "TT SK", "628cd624459354321c4b7fa2 Description": "El chaleco ultraligero y esquelético TT Plate Carrier SK está hecho principalmente de materiales de nailon Cordura laminado con TPU ligero, delgado y resistente con una supuesta densidad de al menos 700 denier. El diseño del chaleco proporciona dos fundas ligeras para placas balísticas, tirantes ajustables y un sujetador ligero en la cintura. Equipado con un panel frontal para 4 cargadores. Versión con camuflaje MultiCam Black.", - "628d0618d1ba6e4fa07ce5a4 Name": "Chaleco portaplacas NPP KlASS Bagariy (Flora Digital)", + "628d0618d1ba6e4fa07ce5a4 Name": "Chaleco balístico NPP KlASS Bagariy (Flora Digital)", "628d0618d1ba6e4fa07ce5a4 ShortName": "Bagariy", "628d0618d1ba6e4fa07ce5a4 Description": "En el segundo milenio, el equipo individual del soldado recibió importantes cambios derivados de nuevas amenazas y operaciones especializadas. Era requerido un mejor nivel de protección, por lo que el Ejército Ruso necesitaba un chaleco balístico fiable y funcional. A mediados de la década del 2000, el MVD, que luego fue reorganizado en la Guardia Nacional de Rusia, recibió chalecos balísticos Bagariy.\nEl Bagariy fue utilizado tanto por soldados convencionales de las tropas internas como por fuerzas especiales. La PMC BEAR lo utilizó activamente como su chaleco balístico pesado principal. Versión con camuflaje Flora Digital.", "628dc750b910320f4c27a732 Name": "Chaleco portaplacas ECLiPSE RBAV-AF (Ranger Green)", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "Chameleon USEC", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "VOLK BEAR", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "Coyote BEAR", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "DesOps USEC", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Máscara Death Knight", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "Una máscara única del comandante del escuadrón The Goons, ex-operadores de USEC que decidieron no huir de Tarkov, sino crear su propio orden.", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "Predator USEC", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", "64f07f7726cfa02c506f8ac0 Name": "Diario", "64f07f7726cfa02c506f8ac0 ShortName": "Diario", "64f07f7726cfa02c506f8ac0 Description": "El diario de alguien que ama de verdad todo lo soviético.", @@ -11920,7 +11920,7 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "Defender USEC", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "BOSS Delta USEC", "657f8e9824d2053bb360b51d ShortName": "BOSS Delta USEC", "657f8e9824d2053bb360b51d Description": "BOSS Delta USEC", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "URON BEAR", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "OPS MGS BEAR", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Tactical jacket", "657f925dada5fadd1f07a57a Name": "Materiales compuestos híbridos", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "Civil muerto", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", " V-ex_light": "V-Ex Carretera a la Base Militar", " Voip/DisabledForOffline": "El VoIP no está disponible en el modo Offline", " kg": "kg", @@ -12102,8 +12087,6 @@ "AI amount": "Cantidad de IA", "AI difficulty": "Dificultad de la IA", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "Penetración", - "AMMO PROJECTILE COUNT": "Conteo de proyectiles", "ARMOR CLASS": "NIVEL DE PROTECCIÓN", "ARMOR POINTS": "DURABILIDAD DE LA ARMADURA", "ARMOR TYPE": "TIPO DE BLINDAJE", @@ -12146,12 +12129,11 @@ "AheadOfTimeEnding": "TIEMPO DE PARTIDA", "Aim": "Apuntar", "AimDrills": "Prácticas en Apuntado", - "AimDrillsLevelingUpDescription": "La habilidad de Prácticas en Apuntado se mejora al impactar a los enemigos mientras se apunta.", "AimMaster": "Maestro del Apuntado", "AimMasterDescription": "Maestro del Apuntado reduce el tiempo necesario para apuntar y el balanceo posterior que se produce en el arma.", - "AimMasterElite": "Incrementa la velocidad de apuntado en un [{0:0.#%}].", - "AimMasterSpeed": "Aumenta la velocidad de apuntado en un [{0:0.#%}].", - "AimMasterWiggle": "Maestro del Apuntado mejora tu puntería al ladearte un [{0:0.#%}].", + "AimMasterElite": "Incrementa la velocidad de apuntado en un [{0:0%}].", + "AimMasterSpeed": "Aumenta la velocidad de apuntado en un [{0:0%}].", + "AimMasterWiggle": "Maestro del Apuntado mejora tu puntería al ladearte un [(+{0:0%})]", "Aiming deadzone:": "Zona muerta al apuntar:", "AirFilteringUnit": "FILTRADO DEL AIRE", "AirplaneDelayMessage": "¡Espera la llegada! El espacio aéreo está saturado.", @@ -12241,12 +12223,9 @@ "Arena/CustomGames/toggle/tournament": "Torneo", "Arena/EndMatchNotification": "La partida ha acabado mientras estabas fuera", "Arena/Matching/CustomGames": "Partidas personalizadas", - "Arena/Notification/Selection/Blocked": "Compra del Kit bloqueada", "Arena/OnCancelMatch": "Emparejamiento cancelado por problemas de carga", "Arena/OnCancelMatch/Group": "Emparejamiento cancelado debido a que un miembro del grupo tiene problemas de carga", "Arena/OnCancelMatch/NoServer": "No se ha encontrado un servidor disponible. Por favor, inténtalo más tarde.", - "Arena/Popups/TwitchDropsHeader": "Activar regalo", - "Arena/Preset/Tooltip/Tab/6": "Varios Kits coleccionables únicos.", "Arena/Preset/Tooltip/Tab/Assault": "La clase de Asalto es la más versátil. Los Kits de esta clase tienen un equipamiento balanceado y son adecuados para la mayoría de situaciones en combate.", "Arena/Preset/Tooltip/Tab/CQB": "La clase CQB es la más blindada de la Arena. Los CQB se caracterizan por sus protectores faciales y una mayor cantidad de munición para sus armas principales. Los Kits de esta clase son excelentes para defender posiciones y en combates prolongados.", "Arena/Preset/Tooltip/Tab/Collection": "Kits otorgados por logros especiales en la Arena.", @@ -12294,19 +12273,13 @@ "Arena/TeamColor/white_plural": "Blancos", "Arena/TeamColor/yellow": "Amarillo", "Arena/TeamColor/yellow_plural": "Amarillos", - "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Uno o más miembros del grupo no tiene dinero suficiente", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Uno o más miembros del grupo no tiene suficientes Kits desbloqueados de este Tier", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Uno o más miembros del grupo no tiene suficientes Kits desbloqueados de {0}", - "Arena/Tiers/LockedBy/PovertyThreshold": "No hay suficiente dinero para el Tier", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "No hay suficiente dinero para {0}", - "Arena/Tiers/LockedBy/PresetsUnlocked": "No hay suficientes Kits desbloqueados", - "Arena/Tiers/LockedBy/UnavailableTier": "Tier no disponible para la partida", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} no disponible para la partida", - "Arena/Tiers/RankingAvailable {0}": "Partida clasificatoria no disponible: Kits {0} desbloqueados", - "Arena/Tiers/Unlocked {0} presets": "Kits {0} desbloqueados", - "Arena/Tiers/UnlockedPresets": "Kits desbloqueados", - "Arena/Tooltip/MapSelectedCounter": "Número de ubicaciones seleccionadas", - "Arena/Tooltip/MinMapCount {0}": "Selecciona múltiples ubicaciones. Debes seleccionar al menos {0} ubicaciones", + "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", + "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", + "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", + "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", + "Arena/Tiers/UnlockedPresets": "Presets unlocked", "Arena/UI/Awaiting-Players": "Esperando a los jugadores", "Arena/UI/Confirm-Match": "Confirmar", "Arena/UI/CustomMode": "Personalizado", @@ -12325,10 +12298,8 @@ "Arena/UI/Match_leaving_forbidden_body": "Si abandonas esta partida pondrás a tus camaradas en desventaja.
Perderás tu recompensa, puntuación y podrás ser sancionado con un baneo temporal.", "Arena/UI/Match_leaving_forbidden_header": "¡Atención! Estás abandonando la partida.", "Arena/UI/Match_leaving_permitted_header": "Puedes abandonar esta partida sin penalización.", - "Arena/UI/PresetResetToDefault": "Los siguientes Kits se han restablecido a sus valores por defecto:", "Arena/UI/Return": "VOLVER", "Arena/UI/Return-to-match": "VOLVER A LA PARTIDA", - "Arena/UI/Selection/Blocked": "Kit cogido", "Arena/UI/Waiting": "Esperando...", "Arena/Ui/ServerFounding": "Buscando servidor...", "Arena/Widgets/Observer/capture point": "Captura el objetivo", @@ -12383,16 +12354,9 @@ "ArenaUI/PresetView/FreePreset": "GRATIS", "ArenaUI/PresetView/PresetPreview": "Vista previa del Kit", "ArenaUI/PresetView/ShopPrice": "Precio de la tienda", - "Arena_AirPit": "Air Pit", - "Arena_AutoService": "Chop Shop", - "Arena_Bay5": "Bay 5", - "Arena_Bowl": "Bowl", - "Arena_Yard": "Block", - "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Final", "Arena_result_result": "Resultados", "Arena_result_rounds": "Ronda", - "Arena_saw": "Sawmill", "Armband": "Brazalete", "Armor": "Blindaje", "Armor Zone BackHead": "Nuca", @@ -12437,14 +12401,12 @@ "Aspect ratio:": "Relación de aspecto:", "Assault": "Fusil de asalto", "AssaultCarbine Mastering": "Carabina de asalto", - "AssaultDescription": "La habilidad con el uso de fusiles de asalto mejora su manejo, reduce el retroceso y el tiempo de recarga con este tipo de armas.", - "AssaultLevelingUpDescription": "La habilidad con Fusiles de Asalto se mejora disparando y recargando el tipo de arma correspondiente.", + "AssaultDescription": "La habilidad con el uso de fusiles de asalto mejora su manejo, reduce el retroceso y el tiempo de recarga de los mismos.", "AssaultRifle": "Fusiles de asalto", "AssaultRifle Mastering": "Fusil de asalto", "AssortmentUnlockReward/Description": "Podrás comprar este objeto de {0} como recompensa.", - "AttachedLauncher": "Aditamentos Lanzagranadas", - "AttachedLauncherDescription": "La habilidad con el uso de aditamentos lanzagranadas mejora su manejo, reduce el retroceso y el tiempo de recarga con este tipo de armas.", - "AttachedLauncherLevelingUpDescription": "La habilidad con Aditamentos Lanzagranadas se mejora al disparar y recargar el tipo de arma correspondiente.", + "AttachedLauncher": "Lanzagranadas acoplado", + "AttachedLauncherDescription": "Habilidad en el manejo de lanzagranadas acoplado.", "Attention": "Atención", "Attention!": "¡Atención!", "Attention! All items, brought by you into the raid or found in it, have been lost.": "¡Atención! Has perdido todo lo que llevaste contigo o hayas podido encontrar durante la incursión.", @@ -12455,10 +12417,9 @@ "Attention! You’ve left the raid and lost everything you brought or found in it.": "¡Atención! Has abandonado la incursión y has perdido todo lo que llevaste contigo o hayas podido encontrar en ella.", "AttentionDescription": "La Atención aumenta la velocidad de saqueo en diversos contenedores.", "AttentionEliteExtraLootExp": "Duplica tu experiencia al saquear.", - "AttentionEliteLuckySearch": "Aumenta en un [{0:0.#%}] la posibilidad de encontrar objetos instantáneamente en un contenedor.", - "AttentionLevelingUpDescription": "La habilidad de Atención se mejora registrando contenedores y cuerpos.", - "AttentionLootSpeed": "Aumenta la velocidad de saqueo en un [{0:0.#%}].", - "AttentionRareLoot": "Incrementa la velocidad al examinar objetos en un [{0:0.#%}].", + "AttentionEliteLuckySearch": "Posibilidad de encontrar objetos instantáneamente en un contenedor [({0})].", + "AttentionLootSpeed": "Aumenta la velocidad de saqueo en un [{0:0%}].", + "AttentionRareLoot": "Incrementa la velocidad al examinar objetos en un [{0:0%}].", "Auctionsdescription": "Subastas", "Authentic": "Auténtico", "Authorization": "AUTORIZACIÓN", @@ -12512,7 +12473,6 @@ "Bloom": "Resplandor", "BodyTemperature": "Temperatura corporal", "Boiler Tanks": "Zona de Calderas", - "BonfireBuff": "Calor de hoguera", "BoozeGenerator": "ALAMBIQUE", "Boss pick": "Elegir Jefe", "BossType/AsOnline": "Como en línea", @@ -12613,17 +12573,16 @@ "Charge": "Cerrojo", "Charisma": "Carisma", "CharismaAdditionalDailyQuests": "Añade una Tarea Operacional diaria más", - "CharismaBuff1": "Reduce los precios en efectivo de los vendedores en un [{0:0.#%}].", - "CharismaBuff2": "Aumenta el ratio de Lealtad con los vendedores en un [{0:0.#%}].", - "CharismaDailyQuestsRerollDiscount": "Reduce el coste de reemplazo de Tareas Operacionales en un [{0:0.#%}].", + "CharismaBuff1": "Reduce los precios en efectivo de los vendedores en un [{0:0%}].", + "CharismaBuff2": "Aumenta el ratio de Lealtad con los vendedores en un [{0:0%}].", + "CharismaDailyQuestsRerollDiscount": "Reduce el coste de reemplazo de Tareas Operacionales en un [{0:0%}].", "CharismaDescription": "Dominar el arte del Carisma permite recibir descuentos en diversos servicios.", "CharismaEliteBuff1": "Eres el primero en saber las últimas novedades de los vendedores.", - "CharismaEliteBuff2": "Incrementas las ganancias por cada transacción en un [{0:0.#%}].", - "CharismaExfiltrationDiscount": "Reduce los precios a las Extracciones de pago en un [{0:0.#%}].", + "CharismaEliteBuff2": "Incrementas las ganancias por cada transacción en un [{0:0%}].", + "CharismaExfiltrationDiscount": "Reduce los precios a las Extracciones de pago en un [{0:0%}].", "CharismaFenceRepPenaltyReduction": "Reduce las penalizaciones de Reputación con Fence", - "CharismaHealingDiscount": "Reduce los precios a los servicios de Tratamiento Médico Tras Incursión en un [{0:0.#%}].", - "CharismaInsuranceDiscount": "Reduce los precios a los servicios de Seguros en un [{0:0.#%}].", - "CharismaLevelingUpDescription": "La habilidad de Carisma se mejora indirectamente al nivelar las habilidades de Atención, Percepción e Intelecto.", + "CharismaHealingDiscount": "Reduce los precios a los servicios de Tratamiento Médico Tras Incursión en un [{0:0%}].", + "CharismaInsuranceDiscount": "Reduce los precios a los servicios de Seguros en un [{0:0%}].", "CharismaScavCaseDiscount": "Añade un descuento a los precios del Buzón Scav", "ChatScreen/QuestItemsListHeader": "Los siguientes objetos serán movidos al Alijo para objetos de misión:", "ChatScreen/QuestItemsMoved": "Objetos movidos con éxito al Alijo para objetos de misión", @@ -12651,19 +12610,19 @@ "Close the game": "Cerrar el juego", "CloseBufferGates": "cerrar la puerta", "CloseDoor": "Cerrar", - "ClothingItem/Equipped": "Equipado", - "ClothingItem/Obtained": "Obtenido", - "ClothingItem/Preview": "Previsualizar", - "ClothingItem/Purchase": "Disponible", - "ClothingItem/Unavailable": "No disponible", - "ClothingPanel/ExternalObtain": "Disponible para comprar en el sitio web", - "ClothingPanel/InternalObtain": "Condiciones de compra del vendedor:", - "ClothingPanel/LoyaltyLevel": "Vendedor\nNivel de Lealtad:", - "ClothingPanel/PlayerLevel": "Jugador\nNivel:", - "ClothingPanel/RequiredPayment": "Requerido\nPago:", - "ClothingPanel/RequiredQuest": "Completado\nMisión:", - "ClothingPanel/RequiredSkill": "Requerido\nHabilidad:", - "ClothingPanel/StandingLevel": "Vendedor\nReputación:", + "ClothingItem/Equipped": "Equipped", + "ClothingItem/Obtained": "Obtained", + "ClothingItem/Preview": "Preview", + "ClothingItem/Purchase": "Available", + "ClothingItem/Unavailable": "Unavailable", + "ClothingPanel/ExternalObtain": "Available for purchase on the website", + "ClothingPanel/InternalObtain": "Trader purchase conditions:", + "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", + "ClothingPanel/PlayerLevel": "Player\nLevel:", + "ClothingPanel/RequiredPayment": "Required\nPayment:", + "ClothingPanel/RequiredQuest": "Completed\ntask:", + "ClothingPanel/RequiredSkill": "Required\nSkill:", + "ClothingPanel/StandingLevel": "Trader\nStanding:", "CloudinessType/Clear": "Despejado", "CloudinessType/Cloudy": "Nublado", "CloudinessType/CloudyWithGaps": "Nublado con claros", @@ -12740,17 +12699,15 @@ "CovertMovement": "Movimiento Sigiloso", "CovertMovementDescription": "Movimiento Sigiloso hace que tus pasos sean menos ruidosos y reduce la distancia a la que puedes ser escuchado.", "CovertMovementElite": "El movimiento sigiloso se vuelve igual de silencioso en todas las superficies.", - "CovertMovementEquipment": "Reduce el ruido producido por el manejo de armas y el equipamiento en un [{0:0.#%}].", - "CovertMovementLevelingUpDescription": "La habilidad de Movimiento Sigiloso se mejora al moverse de forma silenciosa.", - "CovertMovementLoud": "Reduce el nivel de ruido de las pisadas sobre superficies poco comunes en un [{0:0.#%}].", - "CovertMovementSoundRadius": "Reduce el radio en el que haces ruido mientras te mueves sigilosamente en un [{0:0.#%}].", - "CovertMovementSoundVolume": "Reduce el nivel de ruido de las pisadas sobre superficies comunes en un [{0:0.#%}].", - "CovertMovementSpeed": "Aumenta la velocidad de Movimiento Sigiloso en un [{0:0.#%}].", + "CovertMovementEquipment": "Reduce el ruido producido por el manejo de armas y el equipamiento en un [{0:0%}].", + "CovertMovementLoud": "Reduce el nivel de ruido de las pisadas sobre superficies poco comunes en un [{0:0%}].", + "CovertMovementSoundRadius": "Reduce el radio en el que haces ruido mientras te mueves sigilosamente en un [{0:0%}].", + "CovertMovementSoundVolume": "Reduce el nivel de ruido de las pisadas sobre superficies comunes en un [{0:0%}].", + "CovertMovementSpeed": "Aumenta la velocidad de Movimiento Sigiloso en un [{0:0%}].", "Crafting": "Artesanía", - "CraftingContinueTimeReduce": "Reduce el tiempo de producción cíclica de objetos en un [{0:0.#%}] (excepto la granja de minado).", + "CraftingContinueTimeReduce": "Reduce el tiempo de producción cíclica de objetos en un [{0:0.##%}] (excepto la granja de minado).", "CraftingElite": "Permite producir hasta dos objetos diferentes a la vez en la misma zona.", - "CraftingLevelingUpDescription": "La habilidad de Artesanía se mejora produciendo objetos en el Refugio.", - "CraftingSingleTimeReduce": "Reduce el tiempo de producción de objetos en un [{0:0.#%}].", + "CraftingSingleTimeReduce": "Reduce el tiempo de producción de objetos en un [{0:0.##%}].", "Craftingdescription": "Mejorar la habilidad de Artesanía reduce el tiempo de producción de objetos, incluyendo los que se elaboran cíclicamente.", "Create group dialog": "Crear un chat grupal", "CreateDialog": "¡{0} ha creado un chat grupal!", @@ -12778,8 +12735,7 @@ "DISCONNECT FROM GLOBAL CHAT": "DESCONECTARSE DEL CHAT GLOBAL", "DISPOSE": "DESECHAR", "DMR": "Fusiles de tirador designado", - "DMRDescription": "La habilidad con el uso de fusiles de tirador designado su manejo, reduce el retroceso y el tiempo de recarga con este tipo de armas.", - "DMRLevelingUpDescription": "La habilidad con Fusiles de Tirador Designado se mejora disparando y recargando el tipo de arma correspondiente.", + "DMRDescription": "La habilidad con el uso de fusiles de tirador designado mejora su manejo, reduce el retroceso y el tiempo de recarga de los mismos.", "DON'T TRY TO LEAVE": "NO INTENTES ABANDONAR", "DONTKNOW": "NO LO SÉ", "DOWN": "ALIADO CAÍDO", @@ -12908,11 +12864,11 @@ "DrawElite": "Apuntado estable durante los 3 primeros segundos pese al estado del aguante.", "DrawMaster": "Desenfundado Rápido", "DrawMasterDescription": "Desenfundado Rápido hace que cambies de arma mucho más rápido.", - "DrawMasterElite": "Aumenta la velocidad de desenfundado en un [{0:0.#%}].", - "DrawMasterSpeed": "Aumenta la velocidad de desenfundado en un [{0:0.#%}].", - "DrawSound": "Reduce el sonido que se produce al apuntar en un [{0:0.#%}].", - "DrawSpeed": "Aumenta la velocidad de apuntado en un [{0:0.#%}].", - "DrawTremor": "Reduce el efecto de los temblores en un [50%] durante los 2 primeros segundos tras apuntar.", + "DrawMasterElite": "Aumenta la velocidad de desenfundado en un [{0:0%}].", + "DrawMasterSpeed": "Aumenta la velocidad de desenfundado en un [{0:0%}].", + "DrawSound": "Reduce el sonido que se produce al apuntar en un [{0:0%}].", + "DrawSpeed": "Aumenta la velocidad de apuntado en un [{0:0%}].", + "DrawTremor": "Reduce el efecto de los temblores en un 50% durante los 2 primeros segundos tras apuntar.", "DropBackpack": "Tirar la mochila", "DropItem": "Tirar objeto", "Duck": "Agacharse", @@ -12934,7 +12890,6 @@ "EAntialiasingMode/None": "Desactivado", "EAntialiasingMode/TAA_High": "TAA Alto", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", "EArenaPresetsType/Assault": "Asalto", "EArenaPresetsType/CQB": "CQB", "EArenaPresetsType/Marksman": "Tirador", @@ -13136,13 +13091,12 @@ "Enabled": "Activado", "Endurance": "Resistencia", "EnduranceBreathElite": "El aguante es independiente de la energía del personaje.", - "EnduranceBuffBreathTimeInc": "Aumenta el tiempo que aguantas la respiración en un [{0:0.#%}].", - "EnduranceBuffEnduranceInc": "Aumenta el aguante en un [{0:0.#%}].", - "EnduranceBuffJumpCostRed": "Reduce el consumo de aguante al saltar en un [{0:0.#%}].", - "EnduranceBuffRestorationTimeRed": "Reduce el tiempo que necesitas para recuperar el aliento en un [{0:0.#%}].", + "EnduranceBuffBreathTimeInc": "Aumenta el tiempo que aguantas la respiración en un [{0:0%}].", + "EnduranceBuffEnduranceInc": "Aumenta el aguante en un [{0:0%}].", + "EnduranceBuffJumpCostRed": "Reduce el consumo de aguante al saltar en un [{0:0%}].", + "EnduranceBuffRestorationTimeRed": "Reduce el tiempo que necesitas para recuperar el aliento en un [{0:0%}].", "EnduranceDescription": "La habilidad de Resistencia influye en la cantidad de aguante y la velocidad a la que te cansas cuando corres y saltas, así como para contener y recuperar el aliento.", "EnduranceHands": "Resistencia de las manos incrementada.", - "EnduranceLevelingUpDescription": "La habilidad de Resistencia se mejora corriendo sin el efecto del sobrepeso y haciendo ejercicio en el Gimnasio del Refugio.", "EnergyExpensesUp {0}": "Consumo de energía incrementado en un {0}", "EnergyRate": "Recuperación de energía", "Enter": "Entrar", @@ -13272,7 +13226,6 @@ "Friends": "Amigos", "Friends invite is already sent": "Ya has enviado una solicitud de amistad a esa persona.", "Friends list": "Lista de amigos", - "FrostbiteBuff": "Congelación de Morana", "Full": "Lleno", "Full Recovery Time": "Tiempo necesario para recuperarse por completo", "Fullscreen mode:": "Modo de pantalla:", @@ -13339,9 +13292,8 @@ "HIDEOUT": "REFUGIO", "HIGH_PACKETS_LOSS": "Pérdida de paquetes alta", "HIT": "ALIADO HERIDO", - "HMG": "Ametralladoras Pesadas", - "HMGDescription": "La habilidad con el uso de ametralladoras pesadas mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "HMGLevelingUpDescription": "La habilidad con Ametralladoras Pesadas se mejora al disparar y recargar el tipo de arma correspondiente.", + "HMG": "Ametralladora pesada", + "HMGDescription": "La habilidad con el uso de ametralladoras pesadas mejora su manejo, reduce el retroceso y el tiempo de recarga de las mismas.", "HOLD FIRE": "ALTO EL FUEGO", "HOLDFIRE": "ALTO EL FUEGO", "HOLDPOSITION": "¡QUIETOS!", @@ -13372,27 +13324,25 @@ "Health/ItemResourceDepleted": "El objeto se ha acabado.", "Health/PlayerIsDead": "Tu personaje está muerto", "HealthAndPhysics": "Salud y físico", - "HealthBreakChanceRed": "Reduce la probabilidad de fracturas en un [{0:0.#%}].", + "HealthBreakChanceRed": "Reduce la probabilidad de fracturas en un [{0:0%}].", "HealthDescription": "Una buena salud acelera la recuperación de los daños sufridos durante las incursiones y disminuye la probabilidad de hacerse fracturas y perder energía, así como la deshidratación.", "HealthEliteAbsorbDamage": "Absorción de daño", "HealthElitePosion": "Nivel de inmunidad al veneno [({0})].", - "HealthEnergy": "Reduce el consumo de energía en un [{0:0.#%}].", - "HealthHydration": "Reduce la tasa de deshidratación en un [{0:0.#%}].", - "HealthLevelingUpDescription": "La habilidad de Salud se mejora indirectamente al nivelar las habilidades de Fuerza, Resistencia y Vitalidad.", - "HealthOfflineRegenerationInc": "Aumenta la regeneración de vida al estar fuera de incursión en un [{0:0.#%}].", + "HealthEnergy": "Reduce el consumo de energía en un [{0:0%}].", + "HealthHydration": "Reduce la tasa de deshidratación en un [{0:0%}].", + "HealthOfflineRegenerationInc": "Aumenta la regeneración de vida al estar fuera de incursión en un [{0:0%}].", "HealthRate": "Regeneración de salud", "HealthTreatment/SkipHealthTreatmentDialogue": "¡Atención! Tu salud está baja.\n¿Quieres omitir el Tratamiento Médico y\nproceder al MENÚ PRINCIPAL?", "Heating": "CALEFACCIÓN", "Heavy": "Pesado", "HeavyBleeding": "Hemorragia grave", - "HeavyVestBluntThroughputDamageReduction": "Reduce el daño por traumatismo en las partes del cuerpo cubiertas por blindaje pesado en un [{0:0.#%}].", - "HeavyVestDeteriorationChanceOnRepairReduce": "Reduce en un [50%] la probabilidad de no aplicar deterioro durante las reparaciones.", - "HeavyVestMoveSpeedPenaltyReduction": "Reduce la penalización de velocidad en un [{0:0.#%}] al equipar blindaje pesado.", + "HeavyVestBluntThroughputDamageReduction": "Reduce el daño por traumatismo en las partes del cuerpo cubiertas por blindaje pesado en un [{0:0%}].", + "HeavyVestDeteriorationChanceOnRepairReduce": "Probabilidad del 50% de no aplicar deterioro durante las reparaciones", + "HeavyVestMoveSpeedPenaltyReduction": "Reduce la penalización de velocidad en un [{0:0%}] al equipar blindaje pesado.", "HeavyVestNoBodyDamageDeflectChance": "Probabilidad de desviar balas con armadura pesada", - "HeavyVestRepairDegradationReduction": "Reduce el deterioro al usar kits de reparación en un [{0:0.#%}].", + "HeavyVestRepairDegradationReduction": "Reduce el deterioro al usar kits de reparación en un [{0:0%}].", "HeavyVests": "Chalecos Balísticos Pesados", "HeavyVestsDescription": "Mejora la movilidad y reduce la cantidad de daño por penetración y explosivos, así como a la durabilidad de tu armadura y a tu salud.", - "HeavyVestsLevelingUpDescription": "La habilidad de Chalecos Balísticos Pesados se mejora reparando blindaje corporal pesado y placas balísticas pesadas con kits de reparación.", "Hideout/Craft/ToolMarkerTooltip": "Este objeto se utilizará como herramienta auxiliar. Regresará a tu Alijo cuando la producción se haya completado.", "Hideout/Handover window/Caption/All weapons": "Todas las armas", "Hideout/Handover window/Message/Items in stash selected:": "Objetos seleccionados en el alijo:", @@ -13405,9 +13355,8 @@ "HideoutExtraSlots": "+2 huecos para bidones de combustible.\n+2 huecos para filtros de agua.\n+2 huecos para filtros de aire.\n+2 huecos para almacenar monedas en la granja de minado.", "HideoutInteractions/TransferItems": "Transferir objetos", "HideoutManagement": "Gestión del Refugio", - "HideoutManagementLevelingUpDescription": "La habilidad de Gestión del Refugio se mejora produciendo objetos y mejorando zonas en el Refugio.", - "HideoutResourceConsumption": "Reduce el consumo de combustible, así como de filtros de aire y agua en un [{0:0.#%}].", - "HideoutZoneBonusBoost": "Incrementa todas las bonificaciones de porcentaje de las zonas del Refugio en un [{0:0.#}%].", + "HideoutResourceConsumption": "Reduce el consumo de combustible, así como de filtros de aire y agua en un [{0:0%}].", + "HideoutZoneBonusBoost": "Incrementa todas las bonificaciones de porcentaje de las zonas del Refugio en un [{0:0}%] de su valor.", "Hideout\\Craft\\ToolMarketTooltip": "", "Hideout_area_16_stage_3_description": "Un área completa en el Refugio dedicada a almacenar objetos coleccionables de gran valor.", "Hiding objective {0:F1}": "Escondiendo objetivo {0:F1}", @@ -13442,14 +13391,13 @@ "Identifier": "Contexto", "Illumination": "ILUMINACIÓN", "Immunity": "Inmunidad", - "ImmunityAvoidPoisonChance": "Aumenta la probabilidad de evitar el envenenamiento en un [{0:0.#%}].", + "ImmunityAvoidPoisonChance": "Aumenta la probabilidad de evitar el envenenamiento en un [{0:0%}].", "ImmunityDescription": "La Inmunidad afecta a lo susceptible que eres a las enfermedades y a la efectividad de sus tratamientos.", - "ImmunityLevelingUpDescription": "La habilidad de Inmunidad mejora al estar bajo los efectos del envenenamiento y otros efectos negativos de los estimulantes.", - "ImmunityMiscEffects": "Reduce todos los efectos negativos de estimulantes, comida y bebida en un [{0:0.#%}].", - "ImmunityMiscEffectsChance": "Posibilidad de obtener inmunidad contra los efectos negativos de estimulantes, comida y bebida hasta en un [{0:0.#%}].", - "ImmunityPainKiller": "Aumenta el tiempo de acción de los analgésicos en un [{0:0.#%}].", - "ImmunityPoisonBuff": "Reduce el efecto del veneno en un [{0:0.#%}].", - "ImmunityPoisonChance": "Probabilidad de obtener inmunidad a los venenos hasta en un [{0:0.#%}].", + "ImmunityMiscEffects": "Reduce todos los efectos negativos de estimulantes, comida y bebida en un [{0:0%}].", + "ImmunityMiscEffectsChance": "Posibilidad de obtener inmunidad contra los efectos negativos de estimulantes, comida y bebida hasta en un [{0:0%}].", + "ImmunityPainKiller": "Aumenta el tiempo de acción de los analgésicos en un [{0:0%}].", + "ImmunityPoisonBuff": "Reduce el efecto del veneno en un [{0:0%}].", + "ImmunityPoisonChance": "Probabilidad de obtener inmunidad a los venenos hasta en un [({0:0%})].", "In equipment": "EN EL EQUIPAMIENTO", "InMenu": "Menú", "InRaid": "Incursión", @@ -13472,10 +13420,9 @@ "IntellectEliteAmmoCounter": "Habilitas el contador de munición.", "IntellectEliteContainerScope": "Adivinas el contenido de las cajas sin necesidad de registrarlas.", "IntellectEliteNaturalLearner": "No necesitas un manual para examinar el objeto", - "IntellectLearningSpeed": "Incrementa la velocidad a la que examinas los objetos en un [{0:0.#%}].", - "IntellectLevelingUpDescription": "La habilidad de Intelecto se mejora examinando objetos no identificados y reparando armas.", - "IntellectRepairPointsCostReduction": "Reduce el consumo de puntos del kit de reparación en un [{0:0.#%}].", - "IntellectWeaponMaintance": "Incrementa la efectividad de la reparación de tus armas en un [{0:0.#%}].", + "IntellectLearningSpeed": "Incrementa la velocidad a la que examinas los objetos en un [{0:0%}].", + "IntellectRepairPointsCostReduction": "Reduce el consumo de puntos del kit de reparación en un [{0:0%}].", + "IntellectWeaponMaintance": "Incrementa la efectividad de la reparación de tus armas en un [{0:0%}].", "IntelligenceCenter": "CENTRO DE INTELIGENCIA", "Intensity:": "Intensidad:", "Interact": "Interactuar", @@ -13643,9 +13590,8 @@ "LEVEL {0} UPGRADE REQUIREMENTS": "REQUISITOS DE MEJORA DEL NIVEL {0}", "LH": "LH", "LL": "NL", - "LMG": "Ametralladoras Ligeras", - "LMGDescription": "La habilidad con el uso de ametralladoras ligeras mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "LMGLevelingUpDescription": "La habilidad con Ametralladoras Ligeras se mejora al disparar y recargar el tipo de arma correspondiente.", + "LMG": "Ametralladora ligera", + "LMGDescription": "La habilidad con el uso de ametralladoras ligeras mejora su manejo, reduce el retroceso y el tiempo de recarga de las mismas.", "LOAD": "CARGAR", "LOAD FROM DIRECTORY...": "Cargar desde directorio...", "LOAD FROM FILE...": "Cargar desde archivo...", @@ -13666,8 +13612,7 @@ "LastHeroDescription": "Un combate con oponentes en un tiroteo sin fin. Solo habrá un ganador.", "LastHeroDescriptionShort": "Estás por tu cuenta", "Launcher": "Lanzacohetes", - "LauncherDescription": "La habilidad con el uso de Lanzacohetes mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "LauncherLevelingUpDescription": "La habilidad con Lanzacohetes se mejora al disparar y recargar el tipo de arma correspondiente.", + "LauncherDescription": "Habilidad en el manejo de lanzacohetes.", "LeanLockLeft": "Inclinarse a la izquierda", "LeanLockRight": "Inclinarse a la derecha", "LeanX negative": "Inclinación suave a la izquierda", @@ -13698,13 +13643,12 @@ "Light": "Ligero", "LightBleeding": "Hemorragia leve", "LightVestBleedingProtection": "Las partes del cuerpo cubiertas por armadura ligera son inmunes a la hemorragia", - "LightVestDeteriorationChanceOnRepairReduce": "Reduce en un [50%] la probabilidad de no aplicar deterioro durante las reparaciones.", - "LightVestMeleeWeaponDamageReduction": "Reduce en un [{0:0.#%}] el daño por armas cuerpo a cuerpo en las partes del cuerpo cubiertas por blindaje ligero.", - "LightVestMoveSpeedPenaltyReduction": "Reduce la penalización de velocidad al equipar blindaje ligero en un [{0:0.#%}].", - "LightVestRepairDegradationReduction": "Reduce la cantidad de deterioro al usar kits de reparación en un [{0:0.#%}].", + "LightVestDeteriorationChanceOnRepairReduce": "Probabilidad del 50% de no aplicar deterioro durante la reparación", + "LightVestMeleeWeaponDamageReduction": "Reduce en un [{0:0%}] el daño por armas cuerpo a cuerpo en las partes del cuerpo cubiertas por blindaje ligero.", + "LightVestMoveSpeedPenaltyReduction": "Reduce la penalización de velocidad al equipar blindaje ligero en un [{0:0%}].", + "LightVestRepairDegradationReduction": "Reduce la cantidad de deterioro al usar kits de reparación en un [{0:0%}].", "LightVests": "Chalecos Balísticos Ligeros", "LightVestsDescription": "Llevar chalecos balísticos ligeros mejorará la movilidad, reducirá la cantidad de daño recibido a la salud por penetración y golpes cuerpo a cuerpo.", - "LightVestsLevelingUpDescription": "La habilidad de Chalecos Balísticos Ligeros se mejora reparando blindaje corporal ligero y placas balísticas ligeras con Kits de reparación.", "Lighthouse": "Faro", "Lighthouse_pass": "Sendero a Lighthouse", "Lighting quality:": "Calidad de la iluminación:", @@ -13756,7 +13700,6 @@ "MAP": "MAPAS", "MASTERING": "MAESTRÍA", "MATERIAL": "MATERIAL", - "MAX AMMO DAMAGE": "Daño", "MAXCOUNT": "CANTIDAD MÁXIMA", "MAXIMUM THROW DAMAGE": "DAÑO MAXIMO POR LANZAMIENTO", "MED USE TIME": "TIEMPO DE USO", @@ -13805,12 +13748,11 @@ "MagDrills": "Habilidad con Cargadores", "MagDrillsDescription": "Una habilidad destinada al manejo de los cargadores, carga y descarga de munición, y la comprobación de las balas restantes en ellos.", "MagDrillsInstantCheck": "El cargador se comprueba al instante al moverse a tu inventario.", - "MagDrillsInventoryCheckAccuracy": "Aumenta la precisión al comprobar los cargadores desde el menú contextual en un [{0:0.#}%].", - "MagDrillsInventoryCheckSpeed": "Incrementa la velocidad de comprobación de los cargadores utilizando el menú contextual en un [{0:0.#}%].", - "MagDrillsLevelingUpDescription": "La Habilidad con Cargadores se mejora cargando, descargando y revisando cargadores.", + "MagDrillsInventoryCheckAccuracy": "Aumenta la precisión al comprobar los cargadores desde el menú contextual en un [{0}%].", + "MagDrillsInventoryCheckSpeed": "Incrementa la velocidad de comprobación de los cargadores utilizando el menú contextual en un [{0}%].", "MagDrillsLoadProgression": "Municionar cargadores será más rápido con cada bala que insertes.", - "MagDrillsLoadSpeed": "Aumenta la velocidad con la que municionas los cargadores en un [{0:0.#}%].", - "MagDrillsUnloadSpeed": "Aumenta la velocidad con la que vacías los cargadores en un [{0:0.#}%].", + "MagDrillsLoadSpeed": "Aumenta la velocidad con la que municionas los cargadores en un [{0}%].", + "MagDrillsUnloadSpeed": "Aumenta la velocidad con la que vacías los cargadores en un [{0}%].", "MagPreset/CaliberNotSelected": "Calibre no especificado", "MagPreset/DiscardCahangesDescription": "Cualquier cambio sin guardar se perderá.\n¿Continuar?", "MagPreset/Error/ContainsMissingItems": "Munición no encontrada:", @@ -13881,27 +13823,24 @@ "Meds": "Medicinas", "Melee": "Cuerpo a cuerpo", "MeleeDescription": "Habilidad en el manejo de armas cuerpo a cuerpo.", - "MeleeLevelingUpDescription": "La habilidad de Cuerpo a Cuerpo se mejora golpeando enemigos con armas cuerpo a cuerpo.", "Memory": "Memoria", "MemoryDescription": "Las habilidades aprendidas tardan más tiempo en empezar a olvidarse.", "MemoryEliteMentalNoDegradation": "No olvidarás ninguna habilidad.", - "MemoryLevelingUpDescription": "La habilidad de Memoria se mejora al", - "MemoryMentalForget1": "Reduce la velocidad a la que olvidas las habilidades en un [{0:0.#%}].", - "MemoryMentalForget2": "Reduce la pérdida de niveles de habilidad en un [{0:0.#%}].", + "MemoryMentalForget1": "Reduce la velocidad a la que olvidas las habilidades en un [{0:0%}].", + "MemoryMentalForget2": "Reduce la pérdida de niveles de habilidad en un [{0:0%}].", "Mental": "Mentales", "Merchant": "Vendedor", "Metabolism": "Metabolismo", "MetabolismDescription": "Tener un metabolismo saludable mejora e incrementa los efectos de comer y beber, además mantiene las habilidades físicas durante más tiempo.", "MetabolismEliteBuffNoDyhydration": "No recibes daño por deshidratación ni por agotamiento.", "MetabolismEliteNoForget": "No olvidarás ninguna habilidad Física.", - "MetabolismEnergyExpenses": "Reduce la tasa de consumo de energía y deshidratación en un [{0:0.#%}].", - "MetabolismLevelingUpDescription": "La habilidad de Metabolismo se mejora consumiendo alimentos y agua.", - "MetabolismMiscDebuffTime": "Reduce el tiempo de acción de los efectos negativos de estimulantes, comida y bebida en un [{0:0.#%}].", - "MetabolismPhysicsForget": "Reduce la velocidad a la que olvidas habilidades Físicas en un [{0:0.#%}].", + "MetabolismEnergyExpenses": "Reduce la tasa de consumo de energía y deshidratación en un [{0:0%}].", + "MetabolismMiscDebuffTime": "Reduce el tiempo de acción de los efectos negativos de estimulantes, comida y bebida en un [{0:0%}].", + "MetabolismPhysicsForget": "Reduce la velocidad a la que olvidas habilidades Físicas en un [{0:0%}].", "MetabolismPhysicsForget2": "Disminuye el porcentaje total de olvido de habilidades Físicas.", "MetabolismPhysicsNoForget": "Las habilidades físicas ya no se olvidan.", - "MetabolismPoisonTime": "Reduce el tiempo de acción de los venenos en un [{0:0.#%}].", - "MetabolismRatioPlus": "Incrementa los efectos positivos de comer y beber en un [{0:0.#%}].", + "MetabolismPoisonTime": "Reduce el tiempo de acción de los venenos en un [{0:0%}].", + "MetabolismRatioPlus": "Incrementa los efectos positivos de comer y beber en un [{0:0%}].", "Microphone sensitivity:": "Sensibilidad del micrófono:", "MildMusclePain": "Dolor muscular leve", "Military Checkpoint": "Punto de Control Scav", @@ -14081,7 +14020,7 @@ "OfflineRaid/StartAsGroup": "Iniciar como grupo", "OfflineRaid/startasgrouptooltip": "Con esta opción seleccionada los jugadores empezarán la incursión juntos", "OfflineRaidScreen/WarningHeader": "¡Atención! ¡Tu progreso no se guardará en el Modo de Prácticas!", - "OfflineRaidScreen/WarningText": "El Modo Cooperativo requiere que todos los miembros del grupo tengan la versión Edge of Darkness del juego o la Expansión Co-op. \nEl juego se ejecutará en un servidor dedicado de Escape From Tarkov.", + "OfflineRaidScreen/WarningText": "El Modo Cooperativo requiere que todos los miembros del grupo tengan la versión Edge of Darkness del juego. \nEl juego se ejecutará en un servidor dedicado de Escape From Tarkov.", "Old Azs Gate": "Portón de la Antigua Gasolinera", "Old Gas Station": "Antigua Gasolinera ", "Old Road Gate": "Portón de la Carretera Vieja ", @@ -14136,19 +14075,17 @@ "Penalties": "Penalizaciones por fallar la misión", "Pending requests": "Solicitudes pendientes", "Perception": "Percepción", - "PerceptionDescription": "Dominar la percepción aumenta la distancia a la que escuchas, mejora la concentración al apuntar y ayuda a detectar objetos cercanos más fácilmente.", - "PerceptionFov": "Concentración de apuntado aumentada en un [{0:0.#%}].", - "PerceptionHearing": "Incrementa la distancia a la que escuchas en un [{0:0.#%}].", - "PerceptionLevelingUpDescription": "La habilidad de Percepción se mejora al encontrar y recoger cualquier objeto.", - "PerceptionLootDot": "Incrementa el radio de detección de objetos en un [{0:0.#%}].", + "PerceptionDescription": "Dominar la percepción aumenta la distancia a la que escuchas, mejora la concentración al apuntar y ayuda a detectar el botín cercano más fácilmente.", + "PerceptionFov": "Concentración de apuntado aumentada en un [{0:0%}].", + "PerceptionHearing": "Incrementa la distancia a la que escuchas en un [{0:0%}].", + "PerceptionLootDot": "Incrementa el radio de detección de objetos en un [{0:0%}].", "PerceptionmEliteNoIdea": "Notificación de proximidad de botín.", "Perish": "Muerto", "Physical": "Físicas", "Pier Boat": "Barco del Puerto", "Pistol": "Pistola", "Pistol Mastering": "Pistola", - "PistolDescription": "La habilidad con el uso de pistolas mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "PistolLevelingUpDescription": "La habilidad con Pistolas se mejora al disparar y recargar el tipo de arma correspondiente.", + "PistolDescription": "La habilidad con el uso de pistolas mejora su manejo, reduce el retroceso y el tiempo de recarga de las mismas.", "PlaceOfFame": "EXHIBIDOR", "PlantLocationDescription": "El área industrial y las instalaciones de la Planta Química Nº 16 fueron alquiladas ilegalmente por la compañía TerraGroup. Durante las Contract Wars, los recintos de la planta se convirtieron en el escenario de numerosos enfrentamientos entre las facciones USEC y BEAR, que determinaron el control sobre el distrito industrial de Tarkov. Más tarde, tras el caos, la zona se convirtió en refugio para los civiles supervivientes, los Scavs y para todo tipo de fuerzas militares y armadas, incluyendo los restos dispersos de USEC y BEAR.", "Player": "Jugador", @@ -14219,10 +14156,9 @@ "Prone": "Tumbarse", "ProneMovement": "Movimiento Cuerpo a Tierra", "ProneMovementDescription": "Dominar el movimiento cuerpo a tierra mejora su velocidad y discreción.", - "ProneMovementElite": "Aumenta el movimiento cuerpo a tierra en un [{0:0.#%}].", - "ProneMovementLevelingUpDescription": "La habilidad de Movimiento Cuerpo a Tierra se mejora al moverse en posición pecho tierra.", - "ProneMovementSpeed": "Aumenta la velocidad de Movimiento Cuerpo a Tierra en un [{0:0.#%}].", - "ProneMovementVolume": "Disminuye el ruido de Movimiento Cuerpo a Tierra en un [{0:0.#%}].", + "ProneMovementElite": "Aumenta el movimiento cuerpo a tierra en un [{0:0%}].", + "ProneMovementSpeed": "Aumenta la velocidad de Movimiento Cuerpo a Tierra en un [(+{0:0%})].", + "ProneMovementVolume": "Disminuye el ruido de Movimiento Cuerpo a Tierra en un [(-{0:0%})].", "Protect objective {0:F1}": "Protege el objetivo {0:F1}", "QUEST ITEM": "OBJETO DE MISIÓN", "QUEST ITEMS": "OBJETOS DE MISIÓN", @@ -14410,9 +14346,8 @@ "Recoil Up": "Retroceso vertical", "RecoilControl": "Control del retroceso", "RecoilControlDescription": "Un mayor control sobre el retroceso reduce la dispersión horizontal al disparar, lo que lo hace más predecible y fácil de corregir.", - "RecoilControlElite": "Mejora el control del retroceso en un [{0:0.#%}].", - "RecoilControlImprove": "Mejora el control del retroceso en un [{0:0.#%}].", - "RecoilControlLevelingUpDescription": "La habilidad de Control de Retroceso se mejora mediante disparos continuos. Cuanto mayor sea el retroceso base del arma, más rápido mejorará la habilidad.", + "RecoilControlElite": "Mejora el control del retroceso en un [{0:0%}].", + "RecoilControlImprove": "Mejora el control del retroceso en un [{0:0%}].", "RecommendedVRAM:": "VRAM recomendada", "Reconnection is not available at this moment due to testing purposes": "La reconexión no está disponible en este momento debido a las comprobaciones que se están realizando.", "RedRebel_alp": "Camino del Escalador", @@ -14442,7 +14377,6 @@ "Report game bug abuse": "Informar sobre abuso de bugs del juego", "Report offensive nickname": "Informar sobre apodo ofensivo", "Report suspected cheat use": "Informar sobre la sospecha de usar trampas", - "Report suspicious profile": "Reportar perfil sospechoso", "ReportAbuseBug": "Informar sobre abuso de bugs", "ReportAbuseVoip": "Reportar abuso de VoIP y Radio", "ReportCheater": "Reportar posible uso de trampas", @@ -14477,8 +14411,7 @@ "Revert your settings to default?": "¿Seguro que quieres revertir tus ajustes a los valores por defecto?", "Revolver": "Revólver", "Revolver Mastering": "Revólver", - "RevolverDescription": "La habilidad con el uso de revólveres mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "RevolverLevelingUpDescription": "La habilidad con Revólveres se mejora al disparar y recargar el tipo de arma correspondiente.", + "RevolverDescription": "Habilidad en el manejo de revólveres.", "RezervBase": "Reserve", "Rig": "Chalecos tácticos", "Right Arm": "BRAZO DER.", @@ -14526,9 +14459,8 @@ "SKILLS": "HABILIDADES", "SKILLS_SPEED_DOWN": "Velocidad de subida de nivel disminuida", "SKILLS_SPEED_UP": "Velocidad de subida de nivel aumentada.", - "SMG": "Subfusiles", - "SMGDescription": "La habilidad con el uso de subfusiles mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "SMGLevelingUpDescription": "La habilidad con Subfusiles se mejora al disparar y recargar el tipo de arma correspondiente.", + "SMG": "Subfusil", + "SMGDescription": "La habilidad con el uso de subfusiles mejora su manejo, reduce el retroceso y el tiempo de recarga de los mismos.", "SNIPERPHRASE": "¡TIRADOR!", "SO": "SO", "SOUND": "SONIDO", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "El total de ventas con {0} ha aumentado en {1}", "Sandbox": "Ground Zero", "Sandbox_VExit": "V-Ex - Cordón Policial", - "Sandbox_high": "Ground Zero", "Saturation:": "Saturación:", "Savage matchmaker": "Entra a una incursión como Scav, un saqueador local con equipamiento aleatorio. ¡Tarkov es tu hogar y tú pones las reglas!", "SavageBannerDescription": "Jugar una incursión como Scav es diferente a hacerlo utilizando tu PMC. Los jugadores Scavs aparecerán en lugares y momentos aleatorios durante una sola incursión. La salud del Scav y su equipamiento también serán aleatorios. La extracción como Scav te dará la oportunidad de transferir el equipo que hayas conseguido acumular durante esa incursión al alijo de tu PMC. Completar la incursión como Scav no transferirá la experiencia a tu PMC. Morir como Scav tampoco afectará a tu progreso de ninguna forma.", @@ -14585,7 +14516,6 @@ "Search": "Buscar", "SearchDescription": "Dominar la habilidad de Buscar te permite registrar los cadáveres y contenedores de forma más rápida y efectiva.", "SearchDouble": "Buscar en dos contenedores al mismo tiempo.", - "SearchLevelingUpDescription": "La habilidad de Buscar se mejora registrando contenedores.", "SecondPrimaryWeapon": "En la espalda", "SecondaryWeapon": "Arma en la pistolera", "SecuredContainer": "Contenedor", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "Has cambiado los ajustes. ¿Quieres guardarlos?", "Settings/Sound/BinauralSound": "Sonido Binaural", "Settings/Sound/ChatVolume": "Volumen del chat:", - "Settings/Sound/CommentatorVolume": "Volumen del locutor:", "Settings/Sound/Device": "Dispositivo de audio", "Settings/Sound/HideoutVolume": "Volumen del Refugio:", "Settings/Sound/InterfaceVolume": "Volumen de la interfaz:", "Settings/Sound/MusicOnRaidEnd": "Música al final de la incursión", "Settings/Sound/MusicVolume": "Volumen de la música:", "Settings/Sound/OverallVolume": "Volumen general:", - "Settings/Sound/ReadyToMatchSoundVolume": "Volumen de la pantalla para aceptar partida:", "Settings/UnavailablePressType": "No disponible", "SevereMusclePain": "Dolor muscular severo", "Shack": "Checkpoint de la Base Militar", @@ -14676,8 +14604,7 @@ "Shorl_free_scav": "Camino hacia Shoreline", "Shotgun": "Escopeta", "Shotgun Mastering": "Escopeta", - "ShotgunDescription": "La habilidad con el uso de escopetas mejora la manipulación de este tipo de armas, reduciendo el retroceso y el tiempo de recarga.", - "ShotgunLevelingUpDescription": "La habilidad con Escopetas se mejora al disparar y recargar el tipo de arma correspondiente.", + "ShotgunDescription": "La habilidad con el uso de escopetas mejora su manejo y reduce el retroceso de las mismas.", "Show icons": "Mostrar iconos", "Show:": "Mostrar:", "SightingRange": "RANGO EFECTIVO", @@ -14698,10 +14625,9 @@ "Smg Mastering": "Subfusil", "Smuggler's Boat": "Barca del Contrabandista", "Smugglers_Trail_coop": "Senda del Contrabandista (Coop.)", - "Sniper": "Fusiles de Cerrojo", + "Sniper": "Fusiles de Francotirador", "Sniper Roadblock": "Bloqueo de los Francotiradores", - "SniperDescription": "La habilidad con el uso de fusiles de cerrojo mejora su manejo, reduce el retroceso y el tiempo de recarga con este tipo de armas.", - "SniperLevelingUpDescription": "La habilidad con Fusiles de Cerrojo se mejora disparando y recargando el tipo de arma correspondiente.", + "SniperDescription": "La habilidad con el uso de fusiles de francotirador mejora su manejo, reduce el retroceso y el tiempo de recarga de los mismos.", "SniperRifle": "Fusiles de francotirador", "SniperRifle Mastering": "Fusil de francotirador", "Sniper_exit": "Avenida Mira", @@ -14734,8 +14660,6 @@ "StartInGroup": "Juntos", "StartLookingForGroup": "Comenzar a buscar grupo", "StartNotInGroup": "Separados", - "StashLinesExternalObtain": "Mejora del Alijo", - "StashLinesExternalObtain/Tooltip": "La mejora del Alijo está disponible para su compra en el sitio web", "StatFoundMoneyEUR": "EUR encontrados", "StatFoundMoneyRUB": "RUB encontrados", "StatFoundMoneyUSD": "USD encontrados", @@ -14770,22 +14694,20 @@ "StomachBloodloss": "Sangrado abdominal", "Stop looking for group": "Detener la búsqueda de grupo", "Strength": "Fuerza", - "StrengthBuffAim": "Reduce el consumo de aguante al apuntar en un [{0:0.#%}].", + "StrengthBuffAim": "Reduce el consumo de aguante al apuntar en un [{0:0%}].", "StrengthBuffElite": "Las armas equipadas no añaden peso a tu personaje (no se incluyen las guardadas en mochilas).", - "StrengthBuffJumpHeightInc": "Incrementa la altura a la que saltas en un [{0:0.#%}].", - "StrengthBuffLiftWeightInc": "Incrementa la capacidad de carga en un [{0:0.#%}].", - "StrengthBuffMeleeCrits": "Incrementa en un [{0:0.#%}] la probabilidad de infligir daños críticos cuerpo a cuerpo.", - "StrengthBuffMeleePowerInc": "Aumenta la fuerza del ataque cuerpo a cuerpo en un [{0:0.#%}].", - "StrengthBuffSprintSpeedInc": "Incrementa la velocidad de movimiento y carrera en un [{0:0.#%}].", - "StrengthBuffThrowDistanceInc": "Incrementa la distancia a la que lanzas en un [{0:0.#%}].", + "StrengthBuffJumpHeightInc": "Incrementa la altura a la que saltas en un [{0:0%}].", + "StrengthBuffLiftWeightInc": "Incrementa la capacidad de carga en un [{0:0%}].", + "StrengthBuffMeleeCrits": "Probabilidad de infligir daños críticos cuerpo a cuerpo en [({0})].", + "StrengthBuffMeleePowerInc": "Aumenta la fuerza del ataque cuerpo a cuerpo en un [{0:0%}].", + "StrengthBuffSprintSpeedInc": "Incrementa la velocidad de movimiento y carrera en un [{0:0%}].", + "StrengthBuffThrowDistanceInc": "Incrementa la distancia a la que lanzas en un [{0:0%}].", "StrengthDescription": "Incrementar tu fuerza te permitirá saltar más alto, correr más rápido, golpear más fuerte, lanzar más lejos y cargar con más peso.", - "StrengthLevelingUpDescription": "La habilidad de Fuerza se mejora corriendo con el efecto del sobrepeso, lanzando granadas, usando armas cuerpo a cuerpo y haciendo ejercicio en el Gimnasio del Refugio.", "StressBerserk": "Acceso al modo Berserker.", - "StressPainChance": "Reduce la posibilidad de sufrir una conmoción por el dolor en un [{0:0.#%}].", + "StressPainChance": "Reduce la posibilidad de sufrir una conmoción por el dolor en un [{0:0%}].", "StressResistance": "Resiliencia", "StressResistanceDescription": "Tu resiliencia mejora las posibilidades de aguantar la conmoción producida por una lesión, así como los temblores involuntarios.", - "StressResistanceLevelingUpDescription": "La habilidad de Resiliencia mejora al recibir daño. Tener el efecto de estado de Dolor sin usar analgésicos también mejora esta habilidad.", - "StressTremor": "Reduce los movimientos involuntarios de los temblores en un [{0:0.#%}].", + "StressTremor": "Reduce los movimientos involuntarios de los temblores en un [{0:0%}].", "StringSeparator/Or": " o ", "Stun": "Aturdido", "Subtask completed:": "Subtarea completada:", @@ -14851,9 +14773,8 @@ "Summary": "Resumen", "Surgery": "Cirugía", "SurgeryDescription": "La capacidad de realizar cirugías de combate puede salvarte la vida en las situaciones más críticas. Al aumentar esta habilidad, las intervenciones serán mejores y más rápidas.", - "SurgeryLevelingUpDescription": "La habilidad de Cirugía se mejora mediante el uso de Kits quirúrgicos en partes del cuerpo lesionadas.", - "SurgeryReducePenalty": "Reduce la penalización de PV por cirugía en un [{0:0.#%}].", - "SurgerySpeed": "Incrementa la velocidad de practicar cirugías en un [{0:0.#%}].", + "SurgeryReducePenalty": "Reduce la penalización de PV por cirugía en un [{0:0%}].", + "SurgerySpeed": "Incrementa la velocidad de practicar cirugías en un [{0:0%}].", "Survival Rate Short": "R/S: {0}%", "SurvivalRate": "(RS) Ratio de Supervivencia", "Survived": "Superviviente", @@ -14926,9 +14847,8 @@ "ThrowItem": "Desechar", "Throwing": "Granadas de mano", "ThrowingDescription": "La habilidad de lanzamiento de armas te permite lanzar granadas más lejos y consumir menos energía.", - "ThrowingEnergyExpenses": "Reduce la energía requerida para lanzar en un [{0:0.#%}].", - "ThrowingLevelingUpDescription": "La habilidad de Granadas de mano se mejora lanzando granadas.", - "ThrowingStrengthBuff": "Incrementa la fuerza de lanzamiento en un [{0:0.#%}].", + "ThrowingEnergyExpenses": "Reduce la energía requerida para lanzar en un [{0:0%}].", + "ThrowingStrengthBuff": "Incrementa la fuerza de lanzamiento en un [{0:0%}].", "ThrowingWeaponsBuffElite": "Lanzar ya no requiere energía y la fatiga no afecta su precisión.", "Time flow": "Flujo del tiempo", "Time to reconnect left ({0})": "Tiempo restante para reconectar: ({0})", @@ -14976,11 +14896,11 @@ "Trading/Dialog/AvaliableServices": "¿Puedes ayudarme con algo?", "Trading/Dialog/Btr/News": "¿Qué novedades hay?", "Trading/Dialog/Btr/News/Next": "¿Alguna noticia más?", - "Trading/Dialog/Btr/News1": "¡Ha nevado mucho últimamente! No había nevado tanto desde las Contract Wars. Parece como si no viviéramos en el norte. Es una pena que ya se haya derretido.", - "Trading/Dialog/Btr/News2": "¿Qué a caso no sales de tu refugio? ¡Era fiesta, todo el mundo estaba de celebración! Feliz Año Nuevo, por cierto.", - "Trading/Dialog/Btr/News3": "Los Jefes la liaron, ¿verdad? No se movieron del sitio ni siquiera un paso, no dieron tregua a nadie.", - "Trading/Dialog/Btr/News4": "¡Ese tipo raro que todos los años se disfraza de Papá Noel ahora habla! Pensaba que era mudo.", - "Trading/Dialog/Btr/News5": "A la gente le ha dado por coleccionar figuras de los famosillos de Tarkov por toda la ciudad. Me pregunto si mi BTR llegará a convertirse en una de ellas.", + "Trading/Dialog/Btr/News1": "¡La verdadera novedad es el BTR! Lo arreglé yo mismo. Considéralo mi propia creación. Ahora puedo llevar a la gente por ahí. Quizá me ayude a pagar las reparaciones.", + "Trading/Dialog/Btr/News2": "Alguien está organizando combates de gladiadores en Tarkov. Dicen que muchos han ido voluntariamente. Pagan bien. ¡Si sobrevives, claro!", + "Trading/Dialog/Btr/News3": "Parece que hubo algo de alboroto en Tarkov con unos documentos de TerraGroup. Dicen que han estado buscando incluso más allá de la frontera, pero no me lo creo.", + "Trading/Dialog/Btr/News4": "Hace un tiempo, casi toda la munición perforante desapareció del stock de los vendedores. Los tipos duros como tú se recorrieron todo Tarkov, con la única intención de robar los alijos de munición de otros. Pero ahora todo anda bien.", + "Trading/Dialog/Btr/News5": "Sanitar ha intentado recientemente aumentar su influencia en Tarkov. Tenía algún tipo de antídoto, aparentemente. Pero poco antes de todo, un montón de gente fue envenenada. ¿Coincidencia? No lo creo.", "Trading/Dialog/Btr/NoNews": "Creo que esas son todas las noticias que tengo.", "Trading/Dialog/Btr/ServicePayoff{0}": "Sí, está bien. (entregar \"{0}\")", "Trading/Dialog/BtrBotCover/Description": "Mientras estés en el BTR le dispararemos a todo lo que se mueva. También limpiaremos la zona cuando salgas del vehículo y te cubriremos, pero no por mucho tiempo.", @@ -14999,34 +14919,18 @@ "Trading/Dialog/PlayerHandoveItem{0}": "He encontrado esto. (entregar \"{0}\")", "Trading/Dialog/PlayerTaxi/Description": "Te puedo dejar en estos sitios. Elige uno.", "Trading/Dialog/PlayerTaxi/Name": "Dar una vuelta", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Muy bien, destino: el Cine Rodina. ¿Te parece bien el precio?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Cine Rodina", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "Derecho al tranvía. ¿Tienes el dinero, verdad?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Tranvía", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "Bien, vamos al centro de la ciudad. ¿Tienes dinero suficiente?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "Centro de la Ciudad", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Conduciré hasta la grúa. ¿Estás de acuerdo con el precio?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Grúa Colapsada", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "Te llevaré hasta el viejo punto de control Scav. El precio está bien, ¿verdad?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Viejo punto de control Scav", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "Te llevaré al Hotel Pinewood. ¿Qué tal el precio? ¿Satisfecho?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Hotel Pinewood", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "Nos dirigimos al Búnker Scav. ¿El precio te parece bien?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Búnker Scav", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "¿Así que al Pueblo Hundido, eh? Creo que podemos hacerlo. Este es el precio.", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Pueblo Hundido", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "Claro, puedo llevarte a la Intersección de caminos. ¿Traes suficiente dinero?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Intersección", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "¿El Aserradero? ¡Sin problema! Este es mi precio.", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Aserradero", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "Muy bien, al Punto de Control USEC. Pero no lo haré gratis.", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "Punto de Control USEC", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "Estoy trazando la ruta a la Base EMERCOM. ¿El precio te parece bien?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "Base EMERCOM", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "Okie-dokie, al Viejo Aserradero. Este es el precio.", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Viejo Aserradero", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "¿Quieres que te deje en el Depósito de Trenes? Para que lo sepas, no puedes salir de allí sin mí. Si el precio te parece bien, vigila el tiempo que pasas allí, ¿entendido?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Depósito de Trenes", + "Trading/Dialog/PlayerTaxi/p1/Description": "Muy bien, destino: el Cine Rodina. ¿Te parece bien el precio?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Cine Rodina", + "Trading/Dialog/PlayerTaxi/p2/Description": "Derecho al tranvía. ¿Tienes el dinero, verdad?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tranvía", + "Trading/Dialog/PlayerTaxi/p3/Description": "Bien, vamos al centro de la ciudad. ¿Tienes dinero suficiente?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Centro de la Ciudad", + "Trading/Dialog/PlayerTaxi/p4/Description": "Conduciré hasta la grúa. ¿Estás de acuerdo con el precio?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Grúa Colapsada", + "Trading/Dialog/PlayerTaxi/p5/Description": "Te llevaré hasta el viejo punto de control Scav. El precio está bien, ¿verdad?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Viejo punto de control Scav", + "Trading/Dialog/PlayerTaxi/p6/Description": "Te llevaré al Hotel Pinewood. ¿Qué tal el precio? ¿Satisfecho?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Hotel Pinewood", "Trading/Dialog/Quit": "Marcharse", "Trading/Dialog/ServicePayoff{0}": "Muy bien, esto debería bastar. (entregar \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Ocultar historial", @@ -15062,14 +14966,13 @@ "TransferScreen/TransferFailed": "No se pudo comprar el servicio", "TransferScreen/TransferSuccess": "¡Servicio adquirido!", "Tremor": "Temblores", - "TroubleFixing": "Incrementa la velocidad de resolución de problemas en un [{0:0.#%}].", - "TroubleFixingAmmoElite": "Reduce la probabilidad de fallos de funcionamiento provocados por los cargadores en un [50%], tras arreglar el fallo causado por la misma razón.", - "TroubleFixingDurElite": "Reduce la probabilidad de fallos de funcionamiento basados en la durabilidad del arma en un [50%], tras arreglar el fallo causado por la misma razón.", + "TroubleFixing": "Incrementa la velocidad de resolución de problemas en un [{0:0%}].", + "TroubleFixingAmmoElite": "Reduce la probabilidad de fallos de funcionamiento provocados por los cargadores en un 50%, tras arreglar el fallo causado por la misma razón.", + "TroubleFixingDurElite": "Reduce la probabilidad de fallos de funcionamiento basados en la durabilidad del arma en un 50%, tras arreglar el fallo causado por la misma razón.", "TroubleFixingExamineMalfElite": "La identificación de un fallo de funcionamiento no requiere examinar el arma.", - "TroubleFixingMagElite": "Reduce la probabilidad de fallos de funcionamiento provocados por los casquillos en un [50%], tras arreglar el fallo causado por la misma razón.", + "TroubleFixingMagElite": "Reduce la probabilidad de fallos de funcionamiento provocados por los casquillos en un 50%, tras arreglar el fallo causado por la misma razón.", "TroubleShootingDescription": "La habilidad de Resolución de Problemas facilita la rectificación de los fallos de funcionamiento de las armas.", "Troubleshooting": "Resolución de Problemas", - "TroubleshootingLevelingUpDescription": "La habilidad de Resolución de Problemas se mejora rectificando periódicamente los fallos de funcionamiento de las armas.", "Try_keycard {0}": "Usar {0}", "Tunnel": "Túnel", "Tunnel_Shared": "Túnel lateral (Coop.)", @@ -15152,11 +15055,6 @@ "UI/Arena/Place_7": "7mo lugar", "UI/Arena/Place_8": "8vo lugar", "UI/Arena/Place_9": "9no lugar", - "UI/ArmorPenetration/High": "Alta", - "UI/ArmorPenetration/Low": "Baja", - "UI/ArmorPenetration/Medium": "Media", - "UI/ArmorPenetration/VeryHigh": "Muy alta", - "UI/ArmorPenetration/VeryLow": "Muy baja ", "UI/Charisma/Discount/Insurance": "Coste del seguro", "UI/Charisma/Discount/PostRaidHealing": "Coste de curación", "UI/Charisma/Discount/ScavCase": "Coste del Buzón Scav", @@ -15334,18 +15232,15 @@ "Very good standing": "muy buena", "Vest": "Chalecos", "Village": "Pueblo", - "Violation/IntentionalTeamDamage/Warning": "Tu cuenta será bloqueada si continúas disparando a tus compañeros de equipo", - "Violation/IntentionalTeamKill/Warning": "Tu cuenta será bloqueada si continúas matando a tus compañeros de equipo al inicio de la ronda", "Violation/TeamKill/Warning": "Tu cuenta será bloqueada si continúas matando a tus compañeros de equipo", "Vital mod weapon in hands": "No puedes modificar las piezas vitales mientras el arma está en tus manos.", "Vital parts": "Piezas esenciales", "Vitality": "Vitalidad", - "VitalityBuffBleedChanceRed": "Reduce la probabilidad de hemorragia en un [{0:0.#%}].", + "VitalityBuffBleedChanceRed": "Reduce la probabilidad de hemorragia en un [{0:0%}].", "VitalityBuffBleedStop": "Todas las hemorragias se detienen solas.", "VitalityBuffRegeneration": "Aumenta la regeneración de vida en combate.", - "VitalityBuffSurviobilityInc": "Reduce la probabilidad de morir al perder una parte del cuerpo en un [{0:0.#%}].", + "VitalityBuffSurviobilityInc": "Reduce la probabilidad de morir al perder una parte del cuerpo en un [{0:0%}].", "VitalityDescription": "La vitalidad mejora tus probabilidades de sobrevivir a una herida disminuyendo la posibilidad de sangrar y quizá de morir instantáneamente por un daño crítico en alguna parte de tu cuerpo.", - "VitalityLevelingUpDescription": "La habilidad de Vitalidad se mejora al sufrir diversas hemorragias y lesiones.", "Voice": "Voz de tu personaje", "Voice 1": "Tipo de voz 1", "Voice 2": "Tipo de voz 2", @@ -15402,27 +15297,26 @@ "WaterCollector": "COLECTOR DE AGUA", "Weapon": "Arma", "Weapon has been built": "El arma se ha montado con éxito.", - "WeaponAccBuff": "Aumenta la precisión del arma en un [{0:0.#%}].", + "WeaponAccBuff": "Aumenta la precisión del arma en un [{0:0%}].", "WeaponBroken": "PROBLEMA EN ARMA", "WeaponBuild/SetNameWindowCaption": "NOMBRA EL ESQUEMA", "WeaponBuild/SetNameWindowPlaceholder": "Introduce nombre del esquema", - "WeaponDeteriorationChanceReduce": "Reduce la probabilidad de desgaste durante la reparación en un [{0:0.#%}].", + "WeaponDeteriorationChanceReduce": "Reduce la probabilidad de desgaste durante la reparación en un [{0:0%}].", "WeaponDoubleMastering": "Dobla la ganancia de puntos de maestría.", - "WeaponDurabilityLossOnShotReduce": "Reduce el desgaste del arma al disparar en un [{0:0.#%}].", - "WeaponErgonomicsBuff": "Mejora la ergonomía del arma en un [{0:0.#%}].", + "WeaponDurabilityLossOnShotReduce": "Reduce el desgaste del arma al disparar en un [{0:0%}].", + "WeaponErgonomicsBuff": "Mejora la ergonomía del arma en un [{0:0%}].", "WeaponJammed": "ARMA ATASCADA", "WeaponModding": "Modificación de armas", "WeaponModdingDescription": "Habilidad básica para modificar armas. Aumenta la ergonomía de los accesorios y reduce el desgaste del silenciador.", "WeaponPunch": "Culatazo", - "WeaponRecoilBuff": "Reduce el retroceso del arma en un [{0:0.#%}].", - "WeaponReloadBuff": "Aumenta la velocidad de recarga en un [{0:0.#%}].", - "WeaponStiffHands": "Incrementa la ergonomía de las armas en un [{0:0.#%}].", - "WeaponSwapBuff": "Aumenta la velocidad para cambiar de arma en un [{0:0.#%}].", + "WeaponRecoilBuff": "Reduce el retroceso del arma en un [{0:0%}].", + "WeaponReloadBuff": "Aumenta la velocidad de recarga en un [{0:0%}].", + "WeaponStiffHands": "Incrementa la ergonomía de las armas en un [{0:0%}].", + "WeaponSwapBuff": "Aumenta la velocidad para cambiar de arma en un [{0:0%}].", "WeaponTreatment": "Mantenimiento de Armas", "WeaponTreatmentDescription": "Mejora la puesta a punto y el mantenimiento de armas.", - "WeaponTreatmentLevelingUpDescription": "La habilidad de Mantenimiento de Armas se mejora reparando armas con kits de reparación.", "WearAmountRepairGunsReducePerLevel": "Reduce la cantidad de deterioro al usar kits de reparación en un", - "WearChanceRepairGunsReduceEliteLevel": "Reduce la probabilidad de deterioro al usar kits de reparación en un [50%].", + "WearChanceRepairGunsReduceEliteLevel": "Reduce la probabilidad de deterioro al usar kits de reparación en un 50%.", "Weather conditions": "Condiciones meteorológicas", "WeightLimit": "Límite de peso", "Welcome screen description": "¡Bienvenido a Escape from Tarkov!\nEn este juego tendrás que luchar por tu vida y sobrevivir a los peligros de Tarkov, una ciudad rusa en la región de Norvinsk, que está al borde del caos y del colapso. Tu personaje es un operador de una compañía militar privada (PMC) que se ve envuelto en una vorágine de eventos tras las Contact Wars. El área ha sido clausurada y tu mando de operaciones no responde. Los objetivos que tenías ya no tienen importancia ni sentido, ahora todos tienen sus propias metas. Adáptate y sobrevive. Escapa del bloqueo o trata de salvar a otros.\n\nPrepárate para perder todo lo que tienes en cada partida.\nRecuerda que cualquier fallo de conexión o problema con tu equipo de red, te llevará a la desconexión del juego; y la consiguiente muerte de tu personaje y la pérdida de todo lo que tenías o habías encontrado durante la partida.\n\nSí, morirás, y probablemente muy a menudo. Pero recuerda que esto solo es un juego. ¡Mucha suerte ahí fuera!", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "Ratio de victoria, %", "arena/career/teamFightStats/wins": "Victorias", "arena/career/teamFightStats/winsWithFavPreset": "Partidas ganadas con Kit favorito", - "arena/customGames/create/samePresets": "Kits duplicados:", - "arena/customGames/create/setSamePresets": "Permitir Kits duplicados", "arena/customGames/invite/message{0}": "INVITACIÓN A PARTIDA PERSONALIZADA DE {0}", "arena/customGames/notify/GameRemoved": "La sala ha sido disuelta", "arena/customgames/errors/notification/gamealreadystarted": "La partida ya ha comenzado", @@ -15706,9 +15598,8 @@ "arena/tab/SCOUT": "EXPLORADOR", "arena/tab/SQB": "CQB", "arena/tooltip/OverallMatches": "Número total de partidas jugadas en Clasificatorias y Casuales.", - "arena/tooltip/Presets": "Kits", + "arena/tooltip/Presets": "Presets", "arena/tooltip/countGlp": "Tu puntuación total de ARP (Arena Reputation Points). Esta es una estadística que determina tu clasificación conseguida en los modos de juego Clasificatorios. Se usa para emparejar jugadores con habilidades equivalentes, así como para desbloquear nuevos rangos y Kits de equipamiento.", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", "arena/tooltip/friends": "Amigos", "arena/tooltip/kdRatio": "Tu ratio general de Eliminaciones y Muertes, calculada a partir de todas tus Eliminaciones y Muertes en partidas Clasificatorias y Casuales. Solo cuentan las Eliminaciones del jugador.", "arena/tooltip/leftGlp": "Cantidad necesaria de puntuación ARP para alcanzar el siguiente rango.", @@ -15716,7 +15607,6 @@ "arena/tooltip/moneyRubles": "Rublos. Se usan para comprar Kits y se obtienen por victorias en la Arena.", "arena/tooltip/ratingPlace": "Tu posición en la tabla.", "arena/tooltip/settings": "Ajustes", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", "arena/tooltip/sourcesGlp": "Fuentes de ARP obtenida:", "arena/tooltip/winMatches": "Número total de victorias en partidas Clasificatorias y Casuales.", "arena/tooltip/winRate": "Tu ratio general de victorias, calculada a partir de todas las victorias y derrotas en partidas Clasificatorias y Casuales.", @@ -16370,7 +16260,7 @@ "scav_e6": "Entrada al Sótano", "scav_e7": "Parking del Complejo de Apartamentos Cardinal", "scav_e8": "Centro Comercial Klimov", - "searchspeed": "Aumenta la velocidad de búsqueda en un [{0:0.#%}].", + "searchspeed": "Aumenta la velocidad de búsqueda en un [{0:0%}].", "sec": "seg", "select weapon body for the build": "SELECCIONA UN CUERPO DE ARMA PARA EL ESQUEMA", "semiauto": "Semiautomático", @@ -16450,8 +16340,6 @@ "{0} GroupPlayerBlocking/MatchLeave": "Modo de juego bloqueado temporalmente debido a que uno de los miembros del grupo ({0}) fue bloqueado por abandonar una partida", "{0} GroupPlayerBlocking/NotAcceptedMatch": "Modo de juego bloqueado temporalmente debido a que uno de los miembros del grupo ({0}) fue bloqueado por no aceptar una partida", "{0} GroupPlayerBlocking/TeamKill": "Modo de juego bloqueado temporalmente debido a que uno de los miembros del grupo ({0}) fue bloqueado por fuego amigo recurrente", - "{0} Violation/IntentionalTeamDamage/Blocking": "El jugador {0} ha sido expulsado de la partida y recibió una penalización por disparar a sus compañeros", - "{0} Violation/IntentionalTeamKill/Blocking": "El jugador {0} ha sido expulsado de la partida y recibió una penalización por matar compañeros al inicio de la ronda", "{0} Violation/TeamKill/Blocking": "El jugador {0} ha sido expulsado de la partida y recibió una penalización por eliminar compañeros", "{0} added you to the ignore list": "{0} te ha añadido a la lista de ignorados.", "{0} ask to cooperate": "{0} te saluda.", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "Ground Zero", "653e6760052c01c1c805532f Description": "El centro de negocios de Tarkov. Aquí es donde tenía su sede TerraGroup. Aquí fue donde comenzó todo.", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "United Security", "5464e0404bdc2d2a708b4567 Description": "La compañía militar privada USEC se estableció en 1999 después de la fusión de dos compañías: KerniSEC y Safe Sea. En 2004, un agente de la multinacional TerraGroup se puso en contacto con USEC, y tras contratarla, convirtió a USEC en el ejército privado de la compañía, con oficinas en todo el mundo y más de 7.500 empleados.", "5464e0454bdc2d06708b4567 Name": "BEAR", @@ -18024,7 +17910,7 @@ "5a27bc8586f7741b543d8ea4 description": "Hola, mi querido amigo. Parece que estamos muy cerca de llegar a un interesante acuerdo. Dentro del disco duro que trajiste hemos descubierto los planos incompletos del motor de un misil. Algo que puede ser de extremo interés para Occidente, ya que los submarinos de clase Typhoon estaban armados con estos misiles. Y se supone que ese tipo de submarinos ya no están en servicio. Además, también hemos encontrado el expediente detallado de un marinero que sirvió en la Flota del Báltico. Un perro viejo que ahora debe estar en algún lugar de Tarkov. Parece que tiene conexiones con el mando de la Marina. A él es a quien necesitamos encontrar. De acuerdo a la información de la que dispongo, a veces hace tratos en secreto con los Scavs. Acercarse a él no será fácil. Tendrás que trabajar discretamente y tenderle una emboscada. Solo tendrás una oportunidad para conseguirlo, amigo mío y es muy importante no fallar y no perder a un blanco tan delicado. Incluso me tiemblan las manos al hablar, no tienes ni idea de la importancia de todo esto. Fracasar no es una opción. Eres un gran combatiente, pero quiero asegurarme de que también lo eres en operaciones encubiertas. Necesito un francotirador, uno con experiencia, así que vuelve cuando estés listo.", "5a27bc8586f7741b543d8ea4 failMessageText": "", "5a27bc8586f7741b543d8ea4 successMessageText": "Mercenario, con el debido respeto, no creía que fueras capaz de conseguirlo. Parece que tú serás nuestro \"tirador selecto\". Me pondré en contacto contigo cuando sea necesario.", - "5a28235e86f7741da250b438": "Alcanza el nivel requerido de habilidad con Fusiles de cerrojo", + "5a28235e86f7741da250b438": "Alcanza el nivel requerido de habilidad con Fusiles de francotirador", "5a27bc8586f7741b543d8ea4 acceptPlayerMessage": "", "5a27bc8586f7741b543d8ea4 declinePlayerMessage": "", "5a27bc8586f7741b543d8ea4 completePlayerMessage": "", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "Elimina operadores PMC de disparo a la cabeza utilizando un fusil de cerrojo en Lighthouse", "63aec6f256503c322a190374": "Elimina operadores PMC de disparo a la cabeza utilizando un fusil de cerrojo en Streets of Tarkov", "64b694c8a857ea477002a408": "Elimina operadores PMC de disparo a la cabeza utilizando un fusil de cerrojo en Interchange", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18882,7 +18767,7 @@ "5c0be13186f7746f016734aa description": "Saludos, mercenario. Escuché que intentas convertirte en un francotirador. Dedicarse al negocio de los francotiradores a sueldo sin duda requiere tenacidad, paciencia y perspectiva. Pero también hay otros factores a tener en cuenta. ¿Sabes lo que Dima me dijo una vez? \"Todo el mundo puede disparar, pero solo algunos logran convertirse en francotiradores de verdad.\"", "5c0be13186f7746f016734aa failMessageText": "Un francotirador experimentado no se hubiera expuesto de esa manera. Recobra el aliento y vuelve a intentarlo.", "5c0be13186f7746f016734aa successMessageText": "¿Francamente? No pensaba que pudieras hacerlo. Pero parece que no eres un cualquiera...", - "5c0be2b486f7747bcb347d58": "Alcanza el nivel requerido de habilidad con Fusiles de cerrojo", + "5c0be2b486f7747bcb347d58": "Alcanza el nivel requerido de habilidad con Fusiles de francotirador", "5c1fb5f086f7744a184fb3c5": "", "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Elimina operadores PMC utilizando un fusil de cerrojo sin morir", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Elimina Scavs en Streets of Tarkov mientras llevas puesto el uniforme de la ONU (Casco UNTAR y chaleco balístico MF-UNTAR y Fusil M4A1)", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "Sobrevive y extrae de Reserve con el estado de \"Superviviente\"", "629f08e7d285f377953b2af1": "Sobrevive y extrae de Lighthouse con el estado de \"Superviviente\"", "63aec66556503c322a190372": "Sobrevive y extrae de Streets of Tarkov con el estado de \"Superviviente\"", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Llega al Nivel de Lealtad 4 con Therapist", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -20314,8 +20195,6 @@ "60ec2b04bc9a8b34cd453b81": "No debes morir o abandonar la incursión mientras la misión esté activa (Estado: M.E.C., D.E.C., Desertor, Huida)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", @@ -20641,7 +20520,7 @@ "6193850f60b34236ee0483de description": "¡Entra de una vez! Vale, hay una carretera a lo largo de toda la costa del cabo, seguramente ya la has visto. Mis chicos usan esta carretera para transportar mis mercancías. Usualmente, se las arreglan para evitar problemas o logran tranquilizar a los pocos idiotas con los que llegan a toparse en el camino, pero ahora mismo es un jodido nido de ratas, probablemente se enteraron de mis mercancías. Comenzaron a atacar a mis chicos con todas sus fuerzas y ahora ni siquiera puedo comunicarme con ellos en lo absoluto. Hazme un favor, ve y cárgate a esos hijos de puta. A cambio, te conseguiré algo bueno.", "6193850f60b34236ee0483de failMessageText": "", "6193850f60b34236ee0483de successMessageText": "Te cargaste a esos gilipollas como es debido, cojonudo. De acuerdo, nos vemos luego colega.", - "6193dabd5f6468204470571f": "Elimina Scavs a lo largo de la playa y en la carretera principal de Lighthouse", + "6193dabd5f6468204470571f": "Elimina Scavs en la carretera principal de Lighthouse", "6193850f60b34236ee0483de acceptPlayerMessage": "", "6193850f60b34236ee0483de declinePlayerMessage": "", "6193850f60b34236ee0483de completePlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "Sobrevive y extrae de Streets of Tarkov en el Taxi V-Ex de Avda. Primorsky", "6397a6942e519e69d2139b25": "Localiza y marca el primer vehículo blindado Patrol-A con un Marcador MS2000 en Streets of Tarkov", "6397a7ce706b793c7d6094c9": "Localiza y marca el segundo vehículo blindado Patrol-A con un Marcador MS2000 en Streets of Tarkov", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "Conseguí ponerme en contacto con los conductores. No fue fácil, pero descubrí algo interesante.", @@ -21436,7 +21314,7 @@ "6396701b9113f06a7c3b2379 failMessageText": "", "6396701b9113f06a7c3b2379 successMessageText": "Te hemos estado observando. Mi tirador dio el visto bueno. Eso es todo por ahora. Te avisaré cuando llegue el momento.", "6397ac912e519e69d2139b26": "Elimina Scavs Francotiradores a más de 350 metros de distancia", - "639a169e6cd47c525121a116": "Alcanza el nivel requerido de habilidad con Fusiles de cerrojo", + "639a169e6cd47c525121a116": "Alcanza el nivel requerido de habilidad con Fusiles de francotirador", "6396701b9113f06a7c3b2379 acceptPlayerMessage": "", "6396701b9113f06a7c3b2379 declinePlayerMessage": "", "6396701b9113f06a7c3b2379 completePlayerMessage": "Ya soy un verdadero francotirador de locura. ¿Qué es lo siguiente?", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "Elimina Scavs usando armas cuerpo a cuerpo en Interchange", "63a9b5b2813bba58a50c9eeb": "Elimina Scavs usando armas cuerpo a cuerpo en Customs", "63a9b5f064b9631d9178276b": "Elimina Scavs usando armas cuerpo a cuerpo en Reserve", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21691,8 +21568,8 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "Un cabrón menos del que preocuparse. Lo has hecho bien, chico.", "64e7ba17220ee966bf425ecb": "Localiza y elimina a Kaban", "64e7ba4a6393886f74119f3d": "Elimina a los guardias de Kaban en el concesionario de coches de Streets of Tarkov", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", diff --git a/project/assets/database/locales/global/fr.json b/project/assets/database/locales/global/fr.json index fe2d6d89..7a501f2e 100644 --- a/project/assets/database/locales/global/fr.json +++ b/project/assets/database/locales/global/fr.json @@ -1336,7 +1336,7 @@ "57acb6222459771ec34b5cb0 Description": "Un montage de visée en aluminium avec un rail Picatinny pour l'installation de viseurs et d'accessoires.", "57ade1442459771557167e15 Name": "Crosse Armacon Baskak", "57ade1442459771557167e15 ShortName": "Baskak", - "57ade1442459771557167e15 Description": "Une crosse russe légère de conception similaire au Spartan pour système AK et pouvant être installé à la fois sur des adaptateurs Mil-Spec et Com-Spec M/AR.", + "57ade1442459771557167e15 Description": "Un tube de crosse russe léger de conception similaire au Spartan pour système AK pouvant être installé à la fois sur des adaptateurs Mil-Spec et Com-Spec M/AR. Non compatible avec les systèmes AR.", "57adff4f24597737f373b6e6 Name": "Lunette SIG Sauer BRAVO4 4 x 30 mm", "57adff4f24597737f373b6e6 ShortName": "BRAVO4", "57adff4f24597737f373b6e6 Description": "Conçue par SIG Sauer, la lunette de visée BRAVO4 4 x 30 mm offre un large champs de vision, 43% supérieur à ses concurrents les plus proches. Elle possède également un rail sur le dessus permettant l'installation d'un viseur reflex compact de secours.", @@ -2217,7 +2217,7 @@ "59d6507c86f7741b846413a2 ShortName": "6P1 0-1", "59d6507c86f7741b846413a2 Description": "Capot standard pour le fusil d'assaut automatique AKM. Produit par TSNIITochMash.", "59d650cf86f7741b846413a4 Name": "Cran de mire pour AKM (6P1 Sb.2-1)", - "59d650cf86f7741b846413a4 ShortName": "6P1 Sb.2-1", + "59d650cf86f7741b846413a4 ShortName": "6P 1 Sb.2-1", "59d650cf86f7741b846413a4 Description": "Un cran de mire d'origine pour le fusil d'assaut AKM, produit par Izhmash.", "59d6514b86f774171a068a08 Name": "Une crosse standard en bois pour AKM (6P1 Sb.5)", "59d6514b86f774171a068a08 ShortName": "6P1 Sb.5", @@ -2237,12 +2237,12 @@ "59db794186f77448bc595262 Name": "Conteneur sécurisé Epsilon", "59db794186f77448bc595262 ShortName": "Epsilon", "59db794186f77448bc595262 Description": "L'une des dernières inventions de TerraGroup en matières de conteneur sécurisé : Le conteneur sécurisé Epsilon.", - "59db7e1086f77448be30ddf3 Name": "Lunette Trijicon ACOG TA11D 3,5 x 35 mm", + "59db7e1086f77448be30ddf3 Name": "Lunette Trijicon ACOG 3,5 x 35", "59db7e1086f77448be30ddf3 ShortName": "TA11D", - "59db7e1086f77448be30ddf3 Description": "La lunette ACOG 3,5 x 35 mm produite par Trijicon reste favorite parmi les tireurs de compétition, les forces de l'ordre et les civils défenseurs de la liberté dans le monde entier.", + "59db7e1086f77448be30ddf3 Description": "La lunette ACOG 3,5 x 35 produite par Trijicon reste favorite parmi les tireurs de compétition, les forces de l'ordre et les civiles défenseurs de la liberté dans le monde entier.", "59db7eed86f77461f8380365 Name": "Embase Trijicon TA51", "59db7eed86f77461f8380365 ShortName": "TA51", - "59db7eed86f77461f8380365 Description": "L'embase universelle TA51 pour l'installation des lunettes Trijicon 3,5 x 35 mm, 4 x 32 mm, 5,5 x 50 mm ACOG, 1 x 42 mm Reflex et 1-6 x 24 mm VCOG.", + "59db7eed86f77461f8380365 Description": "L'embase universel TA51 pour l'installation des lunettes Trijicon 3,5 x 35, 4 x 32, 5,5 x 50 ACOG, 1 x 42 Reflex et 1-6 x 24 VCOG.", "59e0bdb186f774156f04ce82 Name": "Rail Vltor CASV KeyMod 2 pouces", "59e0bdb186f774156f04ce82 ShortName": "CASV 2\"", "59e0bdb186f774156f04ce82 Description": "Le rail Vltor CASV KeyMod 2 pouces permet l'installation d'équipements et accessoires supplémentaires sur les garde-mains équipés d'une interface au standard KeyMod.", @@ -2398,7 +2398,7 @@ "59e77a2386f7742ee578960a Description": "A 7.62x54mm R PS gzh (GRAU Index - 7N1) cartridge with a 9.8 gram bullet with a pointed steel core over a lead base with a bimetallic jacket, in a bimetallic case. This PS cartridge was developed by TsNIITochMash in the mid-1960s from the 7.62x54mm R LPS gzh cartridge specifically to increase its accuracy when fired from a sniper or designated marksman rifles, such as the SVD and its variants, being able of piercing through basic and intermediate ballistic body protections as well as providing an outstanding stopping power effect.", "59e8977386f77415a553c453 Name": "Cran de mire pour VPO-209", "59e8977386f77415a553c453 ShortName": "VPO209", - "59e8977386f77415a553c453 Description": "Un cran de mire d'origine pour les carabines AKM VPO-209, produit par Molot Arms.", + "59e8977386f77415a553c453 Description": "Un cran de mire d'origine pour les carabines AKM VPO-209, produit par Molot Armes.", "59e898ee86f77427614bd225 Name": "Garde-main en bois pour VPO-209", "59e898ee86f77427614bd225 ShortName": "VPO209", "59e898ee86f77427614bd225 Description": "Un garde-main standard en bois pour la carabine VPO-209 AKM. Produit par Molot Arms.", @@ -3175,7 +3175,7 @@ "5aa7d193e5b5b000171d063f Description": "Le casque SSSh-94 \"SFERA-S\" est un casque spécial avec une protection modulable faite avec un acier pare-balles épaissis. Utilisé par les forces spéciales du Ministère des Affaires Intérieures de la Fédération de Russie.", "5aa7e276e5b5b000171d0647 Name": "Casque pare-balles Altyn (Olive Drab)", "5aa7e276e5b5b000171d0647 ShortName": "Altyn", - "5aa7e276e5b5b000171d0647 Description": "Le casque Altyn a réussi des tests de combat en situation réelle en Afghanistan, Tchétchénie et est toujours en service au sein du Ministère de l'Intérieur de la Fédération de Russie et des forces spéciales de l'armée. Peut être équipé d'une visière pare-balle.", + "5aa7e276e5b5b000171d0647 Description": "L'Altyn a réussi des tests de combat en situation réelle en Afghanistan, Tchétchénie et est toujours en service au sein du Ministère de l'Intérieur de la Fédération de Russie et des forces spéciales de l'armée. Peut être équipé d'une visière pare-balle.", "5aa7e373e5b5b000137b76f0 Name": "Visière pare-balles pour Altyn", "5aa7e373e5b5b000137b76f0 ShortName": "Altyn", "5aa7e373e5b5b000137b76f0 Description": "Une visière pare-balles spéciale pour le casque lourd Altyn. Elle augmente les chances de survie face aux impacts de balles et de shrapnel.", @@ -3556,7 +3556,7 @@ "5b04473a5acfc40018632f70 Description": "La crosse UAS pour fusils d'assaut à crosse fixe type AKM/AK74. Produite par Fab Defence.", "5b057b4f5acfc4771e1bd3e9 Name": "Poignée tactique Stark SE-5 Express", "5b057b4f5acfc4771e1bd3e9 ShortName": "SE-5", - "5b057b4f5acfc4771e1bd3e9 Description": "La poignée tactique Stark SE-5 Express permet une prise en main plus naturelle le long de l'axe du canon. Grâce à ça, elle réduit le recul et améliore le contrôle de l'arme.", + "5b057b4f5acfc4771e1bd3e9 Description": "The Stark SE-5 Express Forward tactical grip enables a more natural grip against the barrel axis. Thanks to that, it reduces recoil and improves the weapon control.", "5b07db875acfc40dc528a5f6 Name": "Poignée pistolet Tactical Dynamics type squelette pour AR-15", "5b07db875acfc40dc528a5f6 ShortName": "TD120001", "5b07db875acfc40dc528a5f6 Description": "Une poignée pistolet légère type squelette pour systèmes AR-15 et compatibles, produite par Tactical Dynamics.", @@ -3769,7 +3769,7 @@ "5b432b6c5acfc4001a599bf0 Description": "Un masque léger qui ne fournit aucune protection, mais vous rend plus effrayant.", "5b432b965acfc47a8774094e Name": "Casque antibruit électronique GSSh-01", "5b432b965acfc47a8774094e ShortName": "GSSh-01", - "5b432b965acfc47a8774094e Description": "Le casque antibruit électronique GSSh-01 est utilisé dans l'ensemble de combat d'infanterie Ratnik de l'armée russe.", + "5b432b965acfc47a8774094e Description": "The GSSh-01 headset is used in the Russian Ratnik military gear set.", "5b432be65acfc433000ed01f Name": "Lunettes anti-fragmentation 6B34", "5b432be65acfc433000ed01f ShortName": "6B34", "5b432be65acfc433000ed01f Description": "Une paire de lunettes anti-fragmentation 6B34 provenant de l'ensemble de combat d'infanterie Ratnik de l'armée Russe.", @@ -3778,10 +3778,10 @@ "5b432c305acfc40019478128 Description": "Le masque à gaz civil modèle 5 ou GP-5 est un équipement de protection individuelle des voies respiratoires, des yeux et de la peau du visage d'une personne.", "5b432d215acfc4771e1c6624 Name": "Casque léger LZSh (Olive Drab)", "5b432d215acfc4771e1c6624 ShortName": "LZSh", - "5b432d215acfc4771e1c6624 Description": "Un casque de protection léger produit en Russie. Dans les faits c'est une copie bon marché du casque \"Ops-core FAST\" avec de moins bonnes caractéristiques.", + "5b432d215acfc4771e1c6624 Description": "Casque de protection léger produit en Russie. Dans les faits c'est une copie du casque \"Ops-core FAST\", mais avec de moins bonnes caractéristiques.", "5b432f3d5acfc4704b4a1dfb Name": "Cagoule Momex", "5b432f3d5acfc4704b4a1dfb ShortName": "Momex", - "5b432f3d5acfc4704b4a1dfb Description": "Un cagoule tactique avec une ouverture unique pour les yeux.", + "5b432f3d5acfc4704b4a1dfb Description": "A tactical balaclava with a single hole for eyes.", "5b4335ba86f7744d2837a264 Name": "Kit de transfusion sanguine", "5b4335ba86f7744d2837a264 ShortName": "Kit transf.", "5b4335ba86f7744d2837a264 Description": "A set of medical instruments necessary for blood transfusion.", @@ -3792,17 +3792,17 @@ "5b4391a586f7745321235ab2 ShortName": "Caméra", "5b4391a586f7745321235ab2 Description": "Une caméra WI-FI contrôlable à distance.", "5b44c6ae86f7742d1627baea Name": "Sac à dos de combat ANA Tactical Beta 2 (Olive Drab)", - "5b44c6ae86f7742d1627baea ShortName": "Beta 2", - "5b44c6ae86f7742d1627baea Description": "Un sac léger et spacieux par ANA Tactical. Conçu spécialement pour une utilisation dans des conditions dynamiques et des terrains accidentés.", + "5b44c6ae86f7742d1627baea ShortName": "Beta2", + "5b44c6ae86f7742d1627baea Description": "A lightweight and capacious backpack from ANA Tactical. Specially designed for use in dynamic conditions and on rough terrain.", "5b44c8ea86f7742d1627baf1 Name": "Harnais tactique BlackHawk! Commando (Desert Tan)", "5b44c8ea86f7742d1627baf1 ShortName": "Commando", "5b44c8ea86f7742d1627baf1 Description": "Conçu pour un confort maximal et un accès rapide, ce harnais tactique vous donne accès à une foule de chargeurs à portée de main. Produit par BlackHawk. Modèle Desert Tan.", "5b44cad286f77402a54ae7e5 Name": "Gilet tactique porte-plaque 5.11 Tactical TacTec (Ranger Green)", "5b44cad286f77402a54ae7e5 ShortName": "TacTec", - "5b44cad286f77402a54ae7e5 Description": "Un gilet tactique porte-plaque équipé d'un ensemble de pochettes dont la configuration est faite pour l’utilisation des fusils d’assaut. Produit par 5.11 Tactical.", + "5b44cad286f77402a54ae7e5 Description": "A plate carrier with a set of pouches for use with assault rifles. Manufactured by 5.11 Tactical.", "5b44cd8b86f774503d30cba2 Name": "Gilet pare-balles IOTV Gen4 (protection intégrale, MultiCam)", "5b44cd8b86f774503d30cba2 ShortName": "Gen4 Intégrale", - "5b44cd8b86f774503d30cba2 Description": "Le gilet pare-balles Improved Outer Tactical Vest\" (IOTV) Gen IV est conçu pour permettre une liberté maximale de mouvement nécessaire à la bonne prise des positions de tir et à l'exécution des tâches. Le design optimal assure la meilleure répartition du poids possible aussi bien du système de gilet en lui même que d'une charge additionnelle, fournissant ainsi un confort, une durée de port et une mobilité accrus. Kit de protection intégrale.", + "5b44cd8b86f774503d30cba2 Description": "Le gilet pare-balles Improved Outer Tactical Vest\" (IOTV) Gen IV est conçu pour permettre une liberté maximale de mouvement nécessaire à la bonne prise des positions de tir et à l'exécution des tâches. Le design optimal assure la meilleure répartition du poids possible aussi bien du système de gilet en lui même que d'une charge additionnelle, fournissant ainsi un confort, une durée de port et une mobilité accrus.\nKit de protection intégrale.", "5b44cf1486f77431723e3d05 Name": "Gilet pare-balles IOTV Gen4 (kit assaut, MultiCam)", "5b44cf1486f77431723e3d05 ShortName": "Gen4 Assaut", "5b44cf1486f77431723e3d05 Description": "Le gilet pare-balles Improved Outer Tactical Vest\" (IOTV) Gen IV est conçu pour permettre une liberté maximale de mouvement nécessaire à la bonne prise des positions de tir et à l'exécution des tâches. Le design optimal assure la meilleure répartition du poids possible aussi bien du système de gilet en lui même que d'une charge additionnelle, fournissant ainsi un confort, une durée de port et une mobilité accrus.\n\nKit assaut à ergonomie accrue", @@ -3811,7 +3811,7 @@ "5b44d0de86f774503d30cba8 Description": "Le gilet pare-balles Improved Outer Tactical Vest\" (IOTV) Gen IV est conçu pour permettre une liberté maximale de mouvement nécessaire à la bonne prise des positions de tir et à l'exécution des tâches. Le design optimal assure la meilleure répartition du poids possible aussi bien du système de gilet en lui même que d'une charge additionnelle, fournissant ainsi un confort, une durée de port et une mobilité accrus.\n\nKit de mobilité et confort accrus.", "5b44d22286f774172b0c9de8 Name": "Gilet pare-balles BNTI Kirasa-N", "5b44d22286f774172b0c9de8 ShortName": "Kirasa-N", - "5b44d22286f774172b0c9de8 Description": "Le gilet pare-balles \"Kirasa N\" est conçu pour l'équipement des forces spéciales de l'armée russe et de la police. Le gilet pare-balles fournit une protection du torse. Les mousses amortisseurs fournissent une ventilation de l'espace sous le gilet et réduisent les dégâts contondants.", + "5b44d22286f774172b0c9de8 Description": "Le gilet pare-balles \"Kirasa N\" est conçu pour l'équipement des forces spéciales de l'armée et de la police.\n\nLe gilet pare-balles fournit une protection du torse. Les mousses amortisseurs fournissent une ventilation de l'espace sous le gilet et réduisent les dégâts contondants.", "5b46238386f7741a693bcf9c Name": "Visière pare-balles pour Kiver-M", "5b46238386f7741a693bcf9c ShortName": "VPB Kiver", "5b46238386f7741a693bcf9c Description": "Une visière spéciale pour le casque FORT Kiver-M, fabriquée en verre haute résistance.", @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "A compact tactical Laser Aiming Module with a blue dot. Mounts on any Picatinny/Weaver rail for precise target acquisition. Manufactured by NcSTAR.", "5cd945d71388ce000a659dfb Name": "Haut BEAR standard", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Combat shirt", "5cd946231388ce000d572fe3 Name": "Bas BEAR standard", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "Poignée tactique verticale pour ASh-12", "5cda9bcfd7f00c0c0b53e900 ShortName": "ASh-12", "5cda9bcfd7f00c0c0b53e900 Description": "Une poignée tactique verticale pour le fusil d'assaut ASh-12.", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "Bas USEC standard", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", "5cde9ec17d6c8b04723cf479 Name": "Haut USEC standard", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Bas Abibas", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", "5cdea42e7d6c8b0474535dad Name": "Survêtement Adik", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "Châssis Magpul Pro 700 pour M700", "5cdeac22d7f00c000f26168f ShortName": "Pro 700", "5cdeac22d7f00c000f26168f Description": "Le châssis Pro 700 est un châssis léger et ergonomique conçu pour le fusil de précision Remington M700. Produit par Magpul.", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "BEAR Black Lynx", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", "5d1f60ae86f7744bcc04998b Name": "T-shirt BEAR Contractor", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "FSB Fast Response", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "BEAR Ghost Marksman", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "BEAR Summer Field", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "USEC Aggressor TAC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "USEC Softshell Flexion", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "USEC Woodland Infiltrator", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Combat shirt", "5d1f623886f7743014163027 Name": "Tenue USEC PCS Multicam", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "USEC PCU Ironsight", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "FSB Urban Tact", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "BEAR Gorka Kobra", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "BEAR Gorka SSO", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "BEAR Striker Infil Ops", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "BEAR Summer Field", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "USEC Gen.2 Khyber", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "USEC Woodland Infiltrator", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "Jeans USEC Ranger", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "USEC Taclife Terrain", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "USEC TACRES", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "Frein de bouche Daniel Defense WAVE 7,62 x 51 mm pour AR-10", "5d1f819086f7744b355c219b ShortName": "WAVE 762", "5d1f819086f7744b355c219b Description": "Le frein de bouche Daniel Defense Wave est conçu pour monter efficacement le réducteur de son Daniel Defense WAVE sur l'arme hôte, mais fonctionne aussi efficacement sans celui-ci. Il est fabriqué en acier inoxydable aéronautique17-4 PH et a une finition en bain de sels de nitrite pour une corrosion minime.", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "USEC Commando", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "Haut USEC Commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "An upper receiver for the SR-25 rifle, manufactured by Knight's Armament Company.", "5df8e5c886f7744a122d6834 Name": "BEAR Zaslon", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "Meteor", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "BEAR Oldschool", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "USEC TIER2", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "Sklon", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "La première génération du gilet pare-balle CPC conçu par Crye Precision et adapté par Ars Arma pour l'utilisation par les forces spéciales de la fédération de Russie. Ce gilet tactique porte-plaque modulable est conçu sur un corset en polymère qui entoure le corps de l'utilisateur, évitant ainsi le rebond des plaques pare-balles lors des mouvements et contribue à une meilleure répartition du poids. Ce gilet possède des plaques et des pochettes pour une configuration assaut. Produit par Ars Arma.", "5e4bb08f86f774069619fbbc Name": "BEAR Telnik", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "USEC TIER2", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "BEAR TIGR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "USEC Commando", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "Veste russe", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "BEAR TIGR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "USEC Urban Responder", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "BEAR Zaslon", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "USEC Deep Recon", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Tactical pants", "5e9dcf5986f7746c417435b3 Name": "Sac à dos LBT-8005A Day Pack", "5e9dcf5986f7746c417435b3 ShortName": "Day Pack", "5e9dcf5986f7746c417435b3 Description": "A simple and reliable 14-liter backpack in MultiCam Black camouflage. Manufactured by London Bridge Trading.", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "The Thunderbolt fixed chest rig, containing all the basic utility pouches you'd need. Manufactured by Direct Action.", "5f5f45df0bc58666c37e7832 Name": "BEAR G99", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "USEC Night Patrol", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "BEAR G99", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "Bas USEC Urban Responder", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Bottes scav", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7088,7 +7088,7 @@ "5f994730c91ed922dd355de3 Name": "Bonnet Rivals 2020", "5f994730c91ed922dd355de3 ShortName": "Rivals", "5f994730c91ed922dd355de3 Description": "A special beanie from the Twitch Rivals 2020 event.", - "5f9949d869e2777a0e779ba5 Name": "Brassard (Rivals 2020)", + "5f9949d869e2777a0e779ba5 Name": "Brassard Rivals 2020", "5f9949d869e2777a0e779ba5 ShortName": "Rivals", "5f9949d869e2777a0e779ba5 Description": "Brassard exclusif à l'évènement des Twitch Rivals 2020.", "5fb64bc92b1b027b1f50bcf2 Name": "Pistolet-mitrailleur TDI KRISS Vector Gen.2 .45 ACP", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "BEAR SRVV", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "USEC TIER3", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": ".300 AAC Blackout AP", "5fd20ff893a8961fc660a954 ShortName": "AP", "5fd20ff893a8961fc660a954 Description": "A .300 Blackout (7.62x35mm) AP cartridge loaded with an 8.4 gram armor-piercing bullet from a 7.62x51mm NATO M80A1 cartridge, composed of a steel penetrator tip over a copper alloy core with a copper semi-jacket in a brass case. Despite the bullet's own characteristics when used in a full-power cartridge, these are affected when transferred to an intermediate cartridge, however, the bullet continues to have capabilities to pierce basic and intermediate body ballistic protections, in addition to being able to cause substantial adverse effects on the target after impact. Its design also allows it to be used in STANAG 5.56x45mm NATO magazines without any issues.", "5fd3e77be504291efd0040ad Name": "USEC VEKTOR", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "BEAR Boreas", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "BEAR Grizzly", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "USEC Adaptive Combat", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "Système de transport simple en nylon avec un système de pochettes non-amovibles. Il permet de transporter une quantité de munitions relativement impressionnante mais en dépit du confort.", "6038b228af2e28262649af14 Name": "BEAR Rash Guard", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "USEC Sandstone", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", "6038b4b292ec1c3103795a0b Name": "Gilet porte-plaque LBT-6094A Slick (Tan)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "Un gilet porte-plaque simple mais efficace produit par London Bridge Trading company. Il possède un design le plus minimaliste possible pour pouvoir être utilisé avec un gilet tactique. Modèle Tan.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "Le TP-200 est conçu pour une utilisation dans les prises de donnée sismiques, comme détonateur intermédiaire pour les charges explosives de forage ainsi que l'éclatement d'objets de grandes tailles lors d'opérations de dynamitage.", "603d01a1b41c9b37c6592047 Name": "BEAR VOIN", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "USEC Sage Warrior", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Harnais tactique Azimut SS Zhuk (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Azimut", "6040dd4ddcf9592f401632d2 Description": "Système de transport simple en nylon avec un système de pochettes non-amovibles. Il permet de transporter une quantité de munitions relativement impressionnante mais en dépit du confort. Modèle camouflage SURPAT.", @@ -7754,9 +7754,9 @@ "60b0f93284c20f0feb453da7 Name": "Cannette de RatCola", "60b0f93284c20f0feb453da7 ShortName": "RatCola", "60b0f93284c20f0feb453da7 Description": "RatCola édition limitée de la marque General Sam. La recette secrète de ce cola reste encore un mystère.", - "60b0f988c4449e4cb624c1da Name": "Brassard (Evasion)", + "60b0f988c4449e4cb624c1da Name": "Brassard Evasion", "60b0f988c4449e4cb624c1da ShortName": "Evasion", - "60b0f988c4449e4cb624c1da Description": "Un brassard spécial d'identification Evasion, un tournois esports local organisé par Sigma.", + "60b0f988c4449e4cb624c1da Description": "Un brassard d'identification Evasion, un tournois esports local organisé par Sigma.", "60b52e5bc7d8103275739d67 Name": "Chapeau de brousse Stich Profi Chimera", "60b52e5bc7d8103275739d67 ShortName": "Chimera", "60b52e5bc7d8103275739d67 Description": "Un chapeau de brousse avec un camouflage artificiel imitant des feuille, produit pas tich Profi.", @@ -8239,46 +8239,46 @@ "619b69037b9de8162902673e Description": "Conçue aussi bien pour le marché civil, des forces de l'ordre ou militaire. La crosse CQR est une crosse de remplacement facile à installer sur les fusils AK/AKM ne possédant pas de crosse rabattable. Produite par Hera Arms.", "619b99ad604fcc392676806c Name": "BEAR Recon", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "USEC K4", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", - "619bc61e86e01e16f839a999 Name": "Brassard (Alpha)", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", + "619bc61e86e01e16f839a999 Name": "Brassard \"Alpha\"", "619bc61e86e01e16f839a999 ShortName": "Alpha", "619bc61e86e01e16f839a999 Description": "Un brassard pour les vétérans qui sont présents depuis l'ère de l'Alpha.", - "619bdd8886e01e16f839a99c Name": "Brassard (BEAR)", + "619bdd8886e01e16f839a99c Name": "Brassard \"BEAR\"", "619bdd8886e01e16f839a99c ShortName": "BEAR", "619bdd8886e01e16f839a99c Description": "Un brassard pour les opérateurs BEAR aguerris.", - "619bddc6c9546643a67df6ee Name": "Brassard (DEADSKUL)", + "619bddc6c9546643a67df6ee Name": "Brassard \"DEADSKUL\"", "619bddc6c9546643a67df6ee ShortName": "DEADSKUL", - "619bddc6c9546643a67df6ee Description": "Un brassard donné par Fence, seulement pour les véritables collectionneurs.", - "619bddffc9546643a67df6f0 Name": "Brassard (Train Hard)", - "619bddffc9546643a67df6f0 ShortName": "THGP", + "619bddc6c9546643a67df6ee Description": "Un brassard de Fence, seulement pour les vrais collectionneurs.", + "619bddffc9546643a67df6f0 Name": "Brassard \"Train Hard\"", + "619bddffc9546643a67df6f0 ShortName": "Brassard", "619bddffc9546643a67df6f0 Description": "Un brassard de Jaeger. \" Tombe 715 fois, mais relève-toi 716 fois.\"", - "619bde3dc9546643a67df6f2 Name": "Brassard (Kiba Arms)", + "619bde3dc9546643a67df6f2 Name": "Brassard \"Kiba Arms\"", "619bde3dc9546643a67df6f2 ShortName": "Kiba", "619bde3dc9546643a67df6f2 Description": "Un brassard pour les employés de Kiba Arms.", - "619bde7fc9546643a67df6f4 Name": "Brassard (Labs)", + "619bde7fc9546643a67df6f4 Name": "Brassard Labs", "619bde7fc9546643a67df6f4 ShortName": "Labs", "619bde7fc9546643a67df6f4 Description": "Un brassard pour les employés des laboratoires TerraGroup.", - "619bdeb986e01e16f839a99e Name": "Brassard (RFARMY)", + "619bdeb986e01e16f839a99e Name": "Brassard \"RFARMY\"", "619bdeb986e01e16f839a99e ShortName": "RFARMY", - "619bdeb986e01e16f839a99e Description": "Un brassard arborant le drapeau Russe. Utilisé par le contingent des forces armées de la fédération de Russie sur le territoire de Tarkov et sa périphérie.", - "619bdef8c9546643a67df6f6 Name": "Brassard (TerraGroup)", + "619bdeb986e01e16f839a99e Description": "Un brassard à drapeau Russe. Utilisé par le contingent des forces armées de la fédération de Russie sur le territoire de Tarkov et sa périphérie.", + "619bdef8c9546643a67df6f6 Name": "Brassard \"TerraGroup\"", "619bdef8c9546643a67df6f6 ShortName": "TG", "619bdef8c9546643a67df6f6 Description": "Un brassard pour le service de sécurité de TerraGroup.", - "619bdf9cc9546643a67df6f8 Name": "Brassard (UNTAR)", + "619bdf9cc9546643a67df6f8 Name": "Brassard UNTAR", "619bdf9cc9546643a67df6f8 ShortName": "UNTAR", "619bdf9cc9546643a67df6f8 Description": "Un brassard pour les troupes de l'UN dans Tarkov.", - "619bdfd4c9546643a67df6fa Name": "Brassard (USEC)", + "619bdfd4c9546643a67df6fa Name": "Brassard \"USEC\"", "619bdfd4c9546643a67df6fa ShortName": "USEC", "619bdfd4c9546643a67df6fa Description": "Un brassard pour les opérateurs USEC endurcis.", "619bf75264927e572d0d5853 Name": "BEAR Sumrak", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "Tuyau ondulé militaire", "619cbf476b8a1b37a54eebf8 ShortName": "Tuy. Mili", "619cbf476b8a1b37a54eebf8 Description": "Un tuyau ondulé de qualité militaire pour la ventilation des équipements militaires ou les systèmes de purification d'air.", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "USEC Chameleon", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "BEAR VOLK", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "BEAR Coyote", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "USEC DesOps", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Masque de Death Knight", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "Un masque unique du commandant de l'escouade des sbires, un ancien opérateur de l'USEC qui a choisi de ne pas quitter Tarkov, mais plutôt de créer son monde.", @@ -9168,11 +9168,11 @@ "634f02331f9f536910079b51 ShortName": "SKS 520mm", "634f02331f9f536910079b51 Description": "Un canon de 520 mm d'origine pour la carabine SKS. Produit par Molot Arms.", "634f02d7517ccc8a960fc744 Name": "Tube d'emprunt de gaz pour SKS", - "634f02d7517ccc8a960fc744 ShortName": "TEG SKS", - "634f02d7517ccc8a960fc744 Description": "Un tube d'emprunt de gaz d'origine pour la carabine SKS produit par TOZ. Le tube d'emprunt de gaz sert de guide au piston.", + "634f02d7517ccc8a960fc744 ShortName": "SKS gas", + "634f02d7517ccc8a960fc744 Description": "A standard gas tube for the SKS carbine manufactured by TOZ. Gas tubes channel the travel direction of gas piston.", "634f036a517ccc8a960fc746 Name": "Tube d'emprunt de gaz pour OP-SKS", - "634f036a517ccc8a960fc746 ShortName": "TEG OP-SKS", - "634f036a517ccc8a960fc746 Description": "Un tube d'emprunt de gaz d'origine pour la carabine OP-SKS produit par Molot Arms. Le tube d'emprunt de gaz sert de guide au piston.", + "634f036a517ccc8a960fc746 ShortName": "OP-SKS gas", + "634f036a517ccc8a960fc746 Description": "A standard gas tube for the OP-SKS carbine manufactured by Molot Arms. Gas tubes channel the travel direction of gas piston.", "634f03d40384a3ba4f06f874 Name": "Couvre emprunt de gaz pour OP-SKS", "634f03d40384a3ba4f06f874 ShortName": "OP-SKS cover", "634f03d40384a3ba4f06f874 Description": "A standard wooden gas tube cover for the OP-SKS carbine, manufactured by Molot Arms.", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "USEC Predator", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", "64f07f7726cfa02c506f8ac0 Name": "Journal", "64f07f7726cfa02c506f8ac0 ShortName": "Journal", "64f07f7726cfa02c506f8ac0 Description": "Un journal appartenant à quelqu'un qui aime vraiment tout ce qui est soviétique.", @@ -10385,9 +10385,9 @@ "6531119b9afebff7ff0a1769 Name": "Cagoule de Zryachiy vengeur (pliée)", "6531119b9afebff7ff0a1769 ShortName": "Vengeur", "6531119b9afebff7ff0a1769 Description": "Un masque facial rouge intimidant, porté par Zryachiy. Pliée pour être porté comme un chapeau.", - "65392f611406374f82152ba5 Name": "Montage GBRS Aimpoint Hydra (noir)", + "65392f611406374f82152ba5 Name": "GBRS Aimpoint Hydra Mount Kit (Black)", "65392f611406374f82152ba5 ShortName": "Hydra", - "65392f611406374f82152ba5 Description": "Le montage Hydra pour la série de viseurs Aimpoint Micro T-1, H-1 et équipements tactiques. Produit par GBRS Group.", + "65392f611406374f82152ba5 Description": "The Hydra Mount Kit for Aimpoint Micro T-1 and H-1 series sights and tactical equipment. Manufactured by GBRS Group.", "653931da5db71d30ab1d6296 Name": "GBRS Aimpoint Hydra Mount Kit (FDE)", "653931da5db71d30ab1d6296 ShortName": "Hydra", "653931da5db71d30ab1d6296 Description": "The Hydra Mount Kit for Aimpoint Micro T-1 and H-1 series sights and tactical equipment. Manufactured by GBRS Group. Flat Dark Earth version.", @@ -11920,7 +11920,7 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "USEC Defender", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "USEC BOSS Delta", "657f8e9824d2053bb360b51d ShortName": "USEC BOSS Delta", "657f8e9824d2053bb360b51d Description": "USEC BOSS Delta", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "BEAR URON", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "BEAR OPS MGS", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Tactical jacket", "657f925dada5fadd1f07a57a Name": "Couche de matériaux combinés", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "Civil mort", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", " V-ex_light": "Véhicule vers la base militaire", " Voip/DisabledForOffline": "Le VOIP est indisponible en mode hors-ligne", " kg": "kg", @@ -12102,8 +12087,6 @@ "AI amount": "Quantité de l'IA", "AI difficulty": "Difficulté de l'IA", "AMD FSR 2.1:": "AMD FSR 2.2 :", - "AMMO PENETRATION POWER": "Pénétration", - "AMMO PROJECTILE COUNT": "Nombre de projectiles", "ARMOR CLASS": "CLASSE DE PROTECTION", "ARMOR POINTS": "DURABILITÉ", "ARMOR TYPE": "TYPE D'ARMURE", @@ -12146,7 +12129,6 @@ "AheadOfTimeEnding": "DÉLAI D'ACCOMPLISSEMENT", "Aim": "Viser", "AimDrills": "Entrainement visée", - "AimDrillsLevelingUpDescription": "La compétence d'entrainement à la visée est améliorée en touchant des ennemis en visant.", "AimMaster": "Tireur d'élite", "AimMasterDescription": "La maitrise de la visée réduit le temps de visée et l'oscillation du canon immédiatement après.", "AimMasterElite": "Augmente la vitesse de visée de [{0:0%}]", @@ -12241,12 +12223,9 @@ "Arena/CustomGames/toggle/tournament": "Tournois", "Arena/EndMatchNotification": "Le match s'est terminé pendant que vous étiez absent", "Arena/Matching/CustomGames": "Parties personnalisées", - "Arena/Notification/Selection/Blocked": "Achat de configuration bloqué", "Arena/OnCancelMatch": "Recherche de match annulée suite à des problèmes de chargement", "Arena/OnCancelMatch/Group": "Recherche de match annulée suite à un membre du groupe rencontrant des problèmes de chargement", "Arena/OnCancelMatch/NoServer": "Impossible de trouver un serveur disponible. Veuillez ressayer plus tard.", - "Arena/Popups/TwitchDropsHeader": "Récupérer le cadeau", - "Arena/Preset/Tooltip/Tab/6": "Diverses configurations uniques et de collection.", "Arena/Preset/Tooltip/Tab/Assault": "La classe assaut est la plus polyvalente. Les configurations d'équipement de cette classe sont équilibrées et donc adaptées à la plupart des situations de combat.", "Arena/Preset/Tooltip/Tab/CQB": "La classe CQB est la mieux protégée de l'Arène. Elle se démarque par la présence de visières pare-balles et d'un nombre de munitions élevé pour l'arme principale. Les configurations d'équipement pour cette classe sont excellentes pour la défense de position et les combats qui perdurent.", "Arena/Preset/Tooltip/Tab/Collection": "Des configurations d'équipement débloquées en accomplissant des actions spécifiques dans l'Arène.", @@ -12294,19 +12273,13 @@ "Arena/TeamColor/white_plural": "Blanche", "Arena/TeamColor/yellow": "Jaune", "Arena/TeamColor/yellow_plural": "Jaune", - "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Un ou plusieurs membres du groupe n'ont pas assez d'argent", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Pas assez de configurations du Tier déverrouillées pour au moins un des membres du groupe", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Pas assez de configurations du {0} déverrouillées pour au moins un des membres du groupe", - "Arena/Tiers/LockedBy/PovertyThreshold": "Pas assez d'argent pour le tier", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "Pas assez d'argent pour {0}", - "Arena/Tiers/LockedBy/PresetsUnlocked": "Pas assez de configurations débloquées", - "Arena/Tiers/LockedBy/UnavailableTier": "Tiers non disponible pour la partie", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "Configuration {0} non disponible pour la partie", - "Arena/Tiers/RankingAvailable {0}": "Partie classée indisponible : {0} configurations déverrouillées", - "Arena/Tiers/Unlocked {0} presets": "Configuration {0} débloquée", - "Arena/Tiers/UnlockedPresets": "Configuration débloquée", - "Arena/Tooltip/MapSelectedCounter": "Nombre de zones sélectionnées", - "Arena/Tooltip/MinMapCount {0}": "Sélectionnez plusieurs zones. Vous devez sélectionner au moins {0} zone(s)", + "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", + "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", + "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", + "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", + "Arena/Tiers/UnlockedPresets": "Presets unlocked", "Arena/UI/Awaiting-Players": "En attente de joueurs", "Arena/UI/Confirm-Match": "Confirmer", "Arena/UI/CustomMode": "Personnalisé", @@ -12325,10 +12298,8 @@ "Arena/UI/Match_leaving_forbidden_body": "Si vous quittez ce match, vous mettrez vos camarades en désavantage conséquent.
Vous allez perdre vos récompenses, votre classement et serez éligible à un bannissement temporaire.", "Arena/UI/Match_leaving_forbidden_header": "Attention ! Vous quittez le match.", "Arena/UI/Match_leaving_permitted_header": "Vous pouvez quitter ce match sans pénalité.", - "Arena/UI/PresetResetToDefault": "Les paramètres suivants ont été réinitialisés", "Arena/UI/Return": "REPRENDRE", "Arena/UI/Return-to-match": "REPRENDRE LE MATCH", - "Arena/UI/Selection/Blocked": "Configuration prise", "Arena/UI/Waiting": "En attente...", "Arena/Ui/ServerFounding": "En recherche de serveur...", "Arena/Widgets/Observer/capture point": "Capturez l'objectif", @@ -12383,16 +12354,9 @@ "ArenaUI/PresetView/FreePreset": "GRATUIT", "ArenaUI/PresetView/PresetPreview": "Aperçu de l'équipement", "ArenaUI/PresetView/ShopPrice": "Prix", - "Arena_AirPit": "Air Pit", - "Arena_AutoService": "Chop Shop", - "Arena_Bay5": "Bay 5", - "Arena_Bowl": "Bowl", - "Arena_Yard": "Block", - "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Finale", "Arena_result_result": "Résultats", "Arena_result_rounds": "Manche", - "Arena_saw": "Sawmill", "Armband": "Brassard", "Armor": "Blindage", "Armor Zone BackHead": "Nuque", @@ -12438,13 +12402,11 @@ "Assault": "Fusil d'assaut", "AssaultCarbine Mastering": "Carabine d'assaut", "AssaultDescription": "La compétence en maniement des fusils d'assaut améliore le maniement général, réduit le recul et le temps de rechargement des fusils d'assaut.", - "AssaultLevelingUpDescription": "The Assault Rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "AssaultRifle": "Fusils d'assaut", "AssaultRifle Mastering": "Fusil d’assaut", "AssortmentUnlockReward/Description": "Vous pourrez acheter cet objet chez {0} en récompense", "AttachedLauncher": "Lance-grenades monté", "AttachedLauncherDescription": "Compétence en manipulation des lance-grenades montés", - "AttachedLauncherLevelingUpDescription": "La compétence en maniement des lance-grenades montés est améliorée en tirant et en rechargeant des armes de la catégorie adéquate.", "Attention": "Attention", "Attention!": "Attention\u00A0!", "Attention! All items, brought by you into the raid or found in it, have been lost.": "Attention ! Vous avez perdu tous les objets que vous avez apportés ou trouvés au cours du raid.", @@ -12456,7 +12418,6 @@ "AttentionDescription": "L'attention augmente la vitesse de fouille des divers conteneurs.", "AttentionEliteExtraLootExp": "Double votre EXP de fouille", "AttentionEliteLuckySearch": "Chances de trouver instantanément un objet dans un conteneur [({0})]", - "AttentionLevelingUpDescription": "L'attention est améliorée en fouillant des conteneurs et des corps.", "AttentionLootSpeed": "Augmente la vitesse de fouille de [{0:0%}]", "AttentionRareLoot": "Augmente de vitesse d’examen de [{0:0%}]", "Auctionsdescription": "Enchères", @@ -12512,7 +12473,6 @@ "Bloom": "Flou lumineux", "BodyTemperature": "Température corporelle", "Boiler Tanks": "Réservoirs", - "BonfireBuff": "Bonfire's warmth", "BoozeGenerator": "ALAMBIC", "Boss pick": "Choix du Boss", "BossType/AsOnline": "Par défaut", @@ -12623,7 +12583,6 @@ "CharismaFenceRepPenaltyReduction": "Réduit la pénalité de réputation pour Fence", "CharismaHealingDiscount": "Réduit le prix des soins post-raid de [{0:0%}]", "CharismaInsuranceDiscount": "Réduit le prix des assurances de [{0:0%}]", - "CharismaLevelingUpDescription": "Le charisme est amélioré indirectement en améliorant l'attention, la perception et l'intelligence.", "CharismaScavCaseDiscount": "Ajoute une remise sur les prix de la boîte des scavs", "ChatScreen/QuestItemsListHeader": "Les objets suivants seront déplacés dans la réserve d'objets de quête : ", "ChatScreen/QuestItemsMoved": "Objets déplacés dans la réserve d'objets de quête avec succès", @@ -12651,19 +12610,19 @@ "Close the game": "Fermer le jeu", "CloseBufferGates": "fermer la porte", "CloseDoor": "Fermer", - "ClothingItem/Equipped": "Équipé", - "ClothingItem/Obtained": "Obtenu", - "ClothingItem/Preview": "Aperçu", - "ClothingItem/Purchase": "Disponible", - "ClothingItem/Unavailable": "Indisponible", - "ClothingPanel/ExternalObtain": "Disponible à l'achat sur le site internet", - "ClothingPanel/InternalObtain": "Conditions d'achat : ", - "ClothingPanel/LoyaltyLevel": "Marchand\n\nNiveau de loyauté : ", - "ClothingPanel/PlayerLevel": "Joueur\n\nNiveau : ", - "ClothingPanel/RequiredPayment": "Requis\n\nPaiement : ", - "ClothingPanel/RequiredQuest": "Complétée\n\nQuête :", - "ClothingPanel/RequiredSkill": "Requis\n\nCompétence : ", - "ClothingPanel/StandingLevel": "Marchand\n\nRéputation : ", + "ClothingItem/Equipped": "Equipped", + "ClothingItem/Obtained": "Obtained", + "ClothingItem/Preview": "Preview", + "ClothingItem/Purchase": "Available", + "ClothingItem/Unavailable": "Unavailable", + "ClothingPanel/ExternalObtain": "Available for purchase on the website", + "ClothingPanel/InternalObtain": "Trader purchase conditions:", + "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", + "ClothingPanel/PlayerLevel": "Player\nLevel:", + "ClothingPanel/RequiredPayment": "Required\nPayment:", + "ClothingPanel/RequiredQuest": "Completed\ntask:", + "ClothingPanel/RequiredSkill": "Required\nSkill:", + "ClothingPanel/StandingLevel": "Trader\nStanding:", "CloudinessType/Clear": "Dégagé", "CloudinessType/Cloudy": "Nuageux", "CloudinessType/CloudyWithGaps": "Éclaircies", @@ -12741,7 +12700,6 @@ "CovertMovementDescription": "Les mouvements furtifs rendent vos bruit de pas moins bruyant et réduisent la distance à laquelle ils peuvent être entendus.", "CovertMovementElite": "Les déplacements furtifs sont autant silencieux quelque soit la surface", "CovertMovementEquipment": "Réduit le son émis par les armes et l'équipement de [{0:0%}]", - "CovertMovementLevelingUpDescription": "La compétence en mouvements furtifs est améliorée en se déplaçant en étant accroupi.", "CovertMovementLoud": "Réduit le bruit de pas sur les surfaces atypiques de [{0:0%}]", "CovertMovementSoundRadius": "Réduit le rayon d'émission des sons produits par les déplacements furtifs de [{0:0%}]", "CovertMovementSoundVolume": "Réduit le bruit de pas sur les surfaces communes de [{0:0%}]", @@ -12749,7 +12707,6 @@ "Crafting": "Fabrication", "CraftingContinueTimeReduce": "Réduit le temps des productions cycliques (sauf Bitcoin) de [{0:0.##%}] ", "CraftingElite": "Possibilité de produire deux objets différents simultanément dans le même module", - "CraftingLevelingUpDescription": "La fabrication est améliorée en produisant des objects dans la planque.", "CraftingSingleTimeReduce": "Réduit le temps de production des objets de [{0:0.##%}]", "Craftingdescription": "L'amélioration des compétences de production réduit le temps de production des objets, comprenant ceux produits de façon cyclique (sauf bitcoin).", "Create group dialog": "Créer un groupe", @@ -12779,7 +12736,6 @@ "DISPOSE": "JETER", "DMR": "DMR", "DMRDescription": "La compétence en maniement des DMR améliore le maniement général, réduit le recul et le temps de rechargement des DMR.", - "DMRLevelingUpDescription": "The Designated Marksman Rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "DON'T TRY TO LEAVE": "N'ESSAYEZ PAS DE QUITTER", "DONTKNOW": "AUCUNE IDÉE", "DOWN": "À TERRE", @@ -12934,7 +12890,6 @@ "EAntialiasingMode/None": "Désactivé", "EAntialiasingMode/TAA_High": "TAA élevé", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", "EArenaPresetsType/Assault": "Assaut", "EArenaPresetsType/CQB": "CQB", "EArenaPresetsType/Marksman": "Tireur de précision", @@ -13142,7 +13097,6 @@ "EnduranceBuffRestorationTimeRed": "Réduit le temps de récupération de l'apnée de [{0:0%}]", "EnduranceDescription": "L'endurance influe sur la quantité d'endurance et la vitesse d'épuisement lors d'un sprint ou d'un saut, ainsi que sur la capacité à retenir et reprendre votre respiration.", "EnduranceHands": "Augmente l'endurance des bras", - "EnduranceLevelingUpDescription": "L'endurance est améliorée en courant sans être en surpoids et en s'entrainant dans la planque.", "EnergyExpensesUp {0}": "Perte d’énergie augmentée de {0}", "EnergyRate": "Récupération d'énergie", "Enter": "Entrer", @@ -13272,7 +13226,6 @@ "Friends": "Amis", "Friends invite is already sent": "Vous avez déjà envoyé une demande d'ami.", "Friends list": "Liste d'amis", - "FrostbiteBuff": "Morana's frostbite", "Full": "Plein", "Full Recovery Time": "Temps complet de récupération", "Fullscreen mode:": "Mode d'affichage : ", @@ -13341,7 +13294,6 @@ "HIT": "TOUCHÉ", "HMG": "Mitrailleuse", "HMGDescription": "La compétence en maniement des mitrailleuses améliore le maniement général, réduit le recul et le temps de rechargement des mitrailleuses .", - "HMGLevelingUpDescription": "La compétence en maniement des mitrailleuses est améliorée en tirant et en rechargeant des armes de la catégorie adéquate.", "HOLD FIRE": "NE TIREZ PAS", "HOLDFIRE": "NE TIREZ PAS", "HOLDPOSITION": "TENEZ LA POSE", @@ -13378,7 +13330,6 @@ "HealthElitePosion": "Niveau d’immunité au poison [({0})]", "HealthEnergy": "Réduit la consommation d'énergie de [{0:0%}]", "HealthHydration": "Réduit la vitesse de déshydratation de [{0:0%}]", - "HealthLevelingUpDescription": "La santé est améliorée indirectement améliorant la force, l'endurance et la vitalié.", "HealthOfflineRegenerationInc": "Augmente la régénération de PV hors-ligne de [{0:0%}]", "HealthRate": "Régénération de santé", "HealthTreatment/SkipHealthTreatmentDialogue": "Attention ! Votre santé est basse.\nPasser les soins et\nrevenir au MENU PRINCIPAL ?", @@ -13392,7 +13343,6 @@ "HeavyVestRepairDegradationReduction": "Réduit l'usure produite en utilisant un kit de réparation de [{0:0%}]", "HeavyVests": "Gilets pare-balles lourds", "HeavyVestsDescription": "La compétence en port des gilets pare-balles lourds réduit la quantité de dégât reçu suite à une pénétration, réduit les dégâts explosifs distribués au gilet ainsi qu'à son porteur et améliore la mobilité.", - "HeavyVestsLevelingUpDescription": "La compétence en gilets pare-balles lourds est améliorée en réparant des protections pare-balles lourdes avec des kits de réparation.", "Hideout/Craft/ToolMarkerTooltip": "Cet objet sera utilisé comme un outils auxiliaire. Il reviendra dans votre réserve à la fin de la production.", "Hideout/Handover window/Caption/All weapons": "Toutes armes", "Hideout/Handover window/Message/Items in stash selected:": "Objets sélectionnés dans la réserve : ", @@ -13405,9 +13355,8 @@ "HideoutExtraSlots": "+2 emplacements dans le générateur\n+2 emplacements de filtre à eau\n+2 emplacements de filtre à air\n+2 emplacements pour la limite de stockage de bitcoin", "HideoutInteractions/TransferItems": "Transférer les objets", "HideoutManagement": "Gestion de la planque", - "HideoutManagementLevelingUpDescription": "La compétence en gestion de la planque est améliorée en produisant des objets et en améliorant les modules de la planque.", - "HideoutResourceConsumption": "Réduit la consommation de carburant ainsi que l'usure des filtres à air et à eau de [{0:0.#%}]", - "HideoutZoneBonusBoost": "Augmente le pourcentage des bonus des modules de [{0:0.#}%]", + "HideoutResourceConsumption": "Réduit la consommation de carburant ainsi que l'usure des filtres à air et à eau de [{0:0%}]", + "HideoutZoneBonusBoost": "Augmente le pourcentage des bonus des modules de [{0:0}%]", "Hideout\\Craft\\ToolMarketTooltip": "", "Hideout_area_16_stage_3_description": "Une zone entièrement dédiée à l'entrepôt et l'exposition des objets de collection de valeur.", "Hiding objective {0:F1}": "Dissimulation de l'objectif {0:F1}", @@ -13444,7 +13393,6 @@ "Immunity": "Immunité", "ImmunityAvoidPoisonChance": "Augmente les chances d'éviter un empoisonnement de [{0:0%}]", "ImmunityDescription": "L'immunité affecte la susceptibilité aux maladies et l'efficacité de leur traitement.", - "ImmunityLevelingUpDescription": "L'immunité est améliorée en étant empoisonné ou sous les effets secondaires des stimulants.", "ImmunityMiscEffects": "Réduits les effets secondaires des stimulants, des boissons et de la nourriture de [{0:0%}]", "ImmunityMiscEffectsChance": "Chance d'être immunisé contre les effets secondaires des stimulants, boissons et de la nourriture jusqu'à [{0:0%}]", "ImmunityPainKiller": "Augmente le temps d'effet des antidouleurs de [{0:0%}]", @@ -13473,7 +13421,6 @@ "IntellectEliteContainerScope": "Devinez le contenu des conteneurs sans fouiller", "IntellectEliteNaturalLearner": "Vous n'avez pas besoin d'un manuel pour examiner l'objet", "IntellectLearningSpeed": "Augmente de vitesse d’examen de [{0:0%}]", - "IntellectLevelingUpDescription": "L'intelligence est améliorée en examinant des objets inconnus et en réparant des armes.", "IntellectRepairPointsCostReduction": "Réduit la consommation de points des kits de réparation de [{0:0%}]", "IntellectWeaponMaintance": "Augmente la qualité de réparation des armes de [{0:0%}]", "IntelligenceCenter": "CENTRE DE RENSEIGNEMENT", @@ -13645,7 +13592,6 @@ "LL": " NdL", "LMG": "Fusil-mitrailleur", "LMGDescription": "La compétence en maniement des fusils-mitrailleurs améliore le maniement général, réduit le recul et le temps de rechargement des fusils-mitrailleurs.", - "LMGLevelingUpDescription": "La compétence en maniement des fusils-mitrailleurs est améliorée en tirant et en rechargeant des armes de la catégorie adéquate.", "LOAD": "CHARGER", "LOAD FROM DIRECTORY...": "Charger depuis un dossier...", "LOAD FROM FILE...": "Charger depuis un fichier...", @@ -13667,7 +13613,6 @@ "LastHeroDescriptionShort": "Vous êtes seul", "Launcher": "Lance-roquettes", "LauncherDescription": "Compétence en manipulation des grenades", - "LauncherLevelingUpDescription": "La compétence en maniement des lance-grenades est améliorée en tirant et en rechargeant des armes de la catégorie adéquate.", "LeanLockLeft": "Se pencher à gauche", "LeanLockRight": "Se pencher à droite", "LeanX negative": "Se pencher à gauche progressivement", @@ -13704,7 +13649,6 @@ "LightVestRepairDegradationReduction": "Réduit l'usure produite en utilisant un kit de réparation de [{0:0%}]", "LightVests": "Gilets pare-balles légers", "LightVestsDescription": "La compétence en port des gilets pare-balles légers améliore la mobilité, réduit la quantité de dégât reçu suite à une pénétration ainsi qu'à une attaque de mêlée.", - "LightVestsLevelingUpDescription": "La compétence en gilets pare-balles légers est améliorée en réparant des protections pare-balles légères avec des kits de réparation.", "Lighthouse": "Phare", "Lighthouse_pass": "Sentier vers le phare", "Lighting quality:": "Qualité de l’éclairage\u00A0: ", @@ -13756,7 +13700,6 @@ "MAP": "CARTE", "MASTERING": "MAÎTRISE", "MATERIAL": "Matériau", - "MAX AMMO DAMAGE": "Dégâts", "MAXCOUNT": "CAPACITÉ MAX", "MAXIMUM THROW DAMAGE": "DÉGÂTS DE JET MAXIMUM", "MED USE TIME": "DURÉE D’UTILISATION DE MEDICAMENT", @@ -13805,12 +13748,11 @@ "MagDrills": "Entrainement chargeur", "MagDrillsDescription": "Compétence de manipulation des chargeurs, chargement et déchargement des munitions, vérification du nombre de cartouches restantes.", "MagDrillsInstantCheck": "Le chargeur est examiné instantanément quand vous le déplacez vers votre inventaire", - "MagDrillsInventoryCheckAccuracy": "Augmente la précision de la vérification des chargeurs en utilisant le menu contextuel ce [{0:0.#}%]", - "MagDrillsInventoryCheckSpeed": "Augmente la vitesse de la vérification des chargeurs en utilisant le menu contextuel de [{0:0.#}%]", - "MagDrillsLevelingUpDescription": "La compétence d'entrainement chargeur est améliorée en approvisionnant, en déchargeant et en vérifiant les chargeurs.", + "MagDrillsInventoryCheckAccuracy": "Augmente la précision de la vérification des chargeurs en utilisant le menu contextuel ce [({0}%]", + "MagDrillsInventoryCheckSpeed": "Augmente la vitesse de la vérification des chargeurs en utilisant le menu contextuel de [{0}%]", "MagDrillsLoadProgression": "Le remplissage des chargeurs s'accélère pour chaque munition chargée", - "MagDrillsLoadSpeed": "Augmente la vitesse de chargement des cartouches de [{0:0.#}%]", - "MagDrillsUnloadSpeed": "Augmente la vitesse de déchargement des cartouches de [{0:0.#}%]", + "MagDrillsLoadSpeed": "Augmente la vitesse de chargement des cartouches de [({0}%]", + "MagDrillsUnloadSpeed": "Augmente la vitesse de déchargement des cartouches de [({0}%]", "MagPreset/CaliberNotSelected": "Calibre non spécifié", "MagPreset/DiscardCahangesDescription": "Tout changement non sauvegardé sera perdu.\nContinuer ?", "MagPreset/Error/ContainsMissingItems": "Munition introuvable : ", @@ -13881,11 +13823,9 @@ "Meds": "Médocs", "Melee": "Arme de mêlée", "MeleeDescription": "Compétence en manipulation des armes de mêlée", - "MeleeLevelingUpDescription": "La compétence en maniement des armes de mêlée est améliorée en touchant des ennemis avec des armes de mêlée.", "Memory": "Mémoire", "MemoryDescription": "Les compétences entrainées durent plus longtemps avant qu'elles commencent à s'estomper", "MemoryEliteMentalNoDegradation": "Vous n'oubliez aucune compétence", - "MemoryLevelingUpDescription": "La mémoire est améliorée en", "MemoryMentalForget1": "Réduit la vitesse à laquelle vous oubliez les compétences de [{0:0%}]", "MemoryMentalForget2": "Réduit la perte des niveaux de compétence de [({0:0 %})]", "Mental": "Mental", @@ -13895,7 +13835,6 @@ "MetabolismEliteBuffNoDyhydration": "Vous ne subissez pas de dégâts dus à l'épuisement et à la déshydratation", "MetabolismEliteNoForget": "Vous n'oubliez aucune compétence physique", "MetabolismEnergyExpenses": "Réduit la vitesse de consommation d'énergie et de déshydratation de [({0:0 %})]", - "MetabolismLevelingUpDescription": "Le métabolisme est amélioré en consommant des sources d'énergie et d'hydratation.", "MetabolismMiscDebuffTime": "Réduits les effets secondaires des stimulants, des boissons et de la nourriture de [{0:0%}]", "MetabolismPhysicsForget": "Réduit la vitesse d'oubli des compétences physiques de [({0:0 %})]", "MetabolismPhysicsForget2": "Réduit l'échelle maximale de l'oublie de compétences physiques", @@ -14081,7 +14020,7 @@ "OfflineRaid/StartAsGroup": "Lancer en groupe", "OfflineRaid/startasgrouptooltip": "Avec cette option sélectionnée, les joueurs débutent le raid côte à côte", "OfflineRaidScreen/WarningHeader": "Attention\u00A0! Votre progression n’est pas sauvegardée en mode entrainement !", - "OfflineRaidScreen/WarningText": "Le mode co-op requiert une édition Edge of Darkness ou l'exepansion co-Op du jeu pour tous les joueurs du groupe.\nLe raid se déroulera sur des serveurs Escape from Tarkov dédiés.", + "OfflineRaidScreen/WarningText": "Le mode co-op requiert une édition Edge of Darkness du jeu pour tous les joueurs du groupe.\nLe raid se déroulera sur des serveurs Escape from Tarkov dédiés.", "Old Azs Gate": "Ancienne station-service", "Old Gas Station": "Ancienne station-service", "Old Road Gate": "Portail de la vieille route", @@ -14139,7 +14078,6 @@ "PerceptionDescription": "La maîtrise de la perception augmente la distance d'audition, améliore la concentration en visée et rend la détection du butin à proximité plus aisée.", "PerceptionFov": "Améliore la concentration de visée de [{0:0%}]", "PerceptionHearing": "Augmente la distance d'audition de [{0:0%}]", - "PerceptionLevelingUpDescription": "La perception est améliorée en trouvant et en ramassant n'importe quels objets.", "PerceptionLootDot": "Augmente le rayon de détection du butin de [{0:0%}]", "PerceptionmEliteNoIdea": "Notification de proximité de butin", "Perish": "Périmé", @@ -14148,7 +14086,6 @@ "Pistol": "Pistolet", "Pistol Mastering": "Pistolet", "PistolDescription": "La compétence en maniement des pistolets améliore le maniement général, réduit le recul et le temps de rechargement des pistolets.", - "PistolLevelingUpDescription": "La compétence en maniement des pistolets est améliorée en tirant et en rechargeant des armes de la catégorie adéquate.", "PlaceOfFame": "TEMPLE DE LA RENOMMÉE", "PlantLocationDescription": "La zone industrielle et les installations de l’usine chimique №16 furent louées illégalement à la société TerraGroup. Pendant les Contract Wars, cette usine est devenue la scène de nombreux affrontements entre l'USEC et le BEAR qui ont determinés le contrôle sur le quartier industriel de Tarkov. Plus tard, dans le sillage du chaos, les locaux de l’usine furent convertis en refuge pour les civils locaux, les scavs, ainsi que les quelques soldat de l'USEC et du BEAR occasionnellement.", "Player": "Joueur", @@ -14220,7 +14157,6 @@ "ProneMovement": "Mouvements allongés", "ProneMovementDescription": "La maitrise des mouvements allongés les rendent plus rapides et moins bruyants.", "ProneMovementElite": "Augmente la vitesse des mouvements en étant allongé de [{0:0%}]", - "ProneMovementLevelingUpDescription": "La compétence en mouvements allongés est améliorée en se déplaçant en étant allongé.", "ProneMovementSpeed": "Augmente la vitesse des mouvements en étant allongé [(+{0:0%})]", "ProneMovementVolume": "Réduit le son émis des mouvements en étant allongé [(-{0:0%})]", "Protect objective {0:F1}": "Protégez l'objectif {0:F1}", @@ -14412,7 +14348,6 @@ "RecoilControlDescription": "Un plus grand contrôle du recul réduit la dispersion horizontale, le rendant plus prévisible.", "RecoilControlElite": "Améliore le contrôle du recul de de [{0:0%}]", "RecoilControlImprove": "Améliore le contrôle du recul de de [{0:0%}]", - "RecoilControlLevelingUpDescription": "La compétence de contrôle du recul est améliorée en tirant de façon continue. Plus le recul de base de l'arme est grand, plus vite la compétence est améliorée.", "RecommendedVRAM:": "VRAM recommandée", "Reconnection is not available at this moment due to testing purposes": "La reconnexion n’est pas disponible en ce moment en raison de tests", "RedRebel_alp": "Parcours d'escalade", @@ -14442,7 +14377,6 @@ "Report game bug abuse": "Signaler un abus d'un bug", "Report offensive nickname": "Signaler un pseudonyme offensant", "Report suspected cheat use": "Signaler un tricheur potentiel", - "Report suspicious profile": "Report suspicious profile", "ReportAbuseBug": "Signaler l'abus d'un bug", "ReportAbuseVoip": "Signaler un abus de VoIP/radio", "ReportCheater": "Signaler un tricheur potentiel", @@ -14478,7 +14412,6 @@ "Revolver": "Revolver", "Revolver Mastering": "Revolver", "RevolverDescription": "Compétence en manipulation des revolvers.", - "RevolverLevelingUpDescription": "La compétence en maniement des revolvers est améliorée en tirant et en rechargeant des armes de la catégorie adéquate.", "RezervBase": "Base militaire", "Rig": "Gilet", "Right Arm": "BRAS DROIT", @@ -14528,7 +14461,6 @@ "SKILLS_SPEED_UP": "Augmentation de la vitesse de progression", "SMG": "Pistolet-mitrailleur", "SMGDescription": "La compétence en maniement des pistolets-mitrailleurs améliore le maniement général, réduit le recul et le temps de rechargement des pistolets mitrailleurs.", - "SMGLevelingUpDescription": "La compétence en maniement des pistolets-mitrailleurs est améliorée en tirant et en rechargeant des armes de la catégorie adéquate.", "SNIPERPHRASE": "SNIPER", "SO": "Fus", "SOUND": "SONS", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "Total des transactions avec {0} augmenté de {1}", "Sandbox": "Point zéro", "Sandbox_VExit": "Véhicule du cordon de police", - "Sandbox_high": "Point zéro", "Saturation:": "Saturation : ", "Savage matchmaker": "Entrez en raid en tant que scav, un bandit local avec un équipement aléatoire. Tarkov vous appartient, vous créez les règles !", "SavageBannerDescription": "Un raid en tant que scav est différent d'un raid en tant qu'opérateur d'une SMP. Les scavs joueurs apparaissent à un endroit et un moment aléatoire au cours d'un raid. La santé et l'équipement du scav seront aléatoires également. S'extraire en tant que scav vous donnera l'opportunité de transférer à votre opérateur SMP n'importe quels objets récupérés au cours du raid. Completer un raid en tant que scav ne transférera pas de points d'expérience à votre opérateur SMP. Mourir en tant que scav n'affectera d'aucune manière votre progression.", @@ -14585,7 +14516,6 @@ "Search": "Fouille", "SearchDescription": "La maitrise de la fouille vous permet de fouiller les corps et les conteneurs plus rapidement et efficacement.", "SearchDouble": "Fouillez 2 conteneurs à la fois", - "SearchLevelingUpDescription": "The Search skill is improved by searching containers.", "SecondPrimaryWeapon": "Dans le dos", "SecondaryWeapon": "Arme secondaire", "SecuredContainer": "Pochette", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "Certains paramètres ont été modifiés. Voulez-vous les sauvegarder ?", "Settings/Sound/BinauralSound": "Son binaural", "Settings/Sound/ChatVolume": "Volume du chat", - "Settings/Sound/CommentatorVolume": "Announcer volume:", "Settings/Sound/Device": "Périphérique audio", "Settings/Sound/HideoutVolume": "Volume de la planque", "Settings/Sound/InterfaceVolume": "Volume interface", "Settings/Sound/MusicOnRaidEnd": "Musique à la fin du raid", "Settings/Sound/MusicVolume": "Volume musique", "Settings/Sound/OverallVolume": "Volume général", - "Settings/Sound/ReadyToMatchSoundVolume": "Match accept screen volume:", "Settings/UnavailablePressType": "Indisponible", "SevereMusclePain": "Douleurs musculaires intenses", "Shack": "PC base militaire", @@ -14677,7 +14605,6 @@ "Shotgun": "Fusil", "Shotgun Mastering": "Fusil", "ShotgunDescription": "La compétence en maniement des fusils améliore le maniement général et réduit le recul des fusils.", - "ShotgunLevelingUpDescription": "La compétence en maniement des fusils est améliorée en tirant et en rechargeant des armes de la catégorie adéquate.", "Show icons": "Afficher les icônes", "Show:": "Afficher : ", "SightingRange": "Distance de réglage", @@ -14701,7 +14628,6 @@ "Sniper": "Fusil de précision", "Sniper Roadblock": "Barrage sniper", "SniperDescription": "La compétence en maniement des fusils de précision améliore le maniement général, réduit le recul et le temps de rechargement des fusils de précision.", - "SniperLevelingUpDescription": "La compétence en maniement des fusils de précision à verrou est améliorée en tirant et en rechargeant des armes de la catégorie adéquate.", "SniperRifle": "Fusil de précision", "SniperRifle Mastering": "Fusil de précision", "Sniper_exit": "Avenue Mira", @@ -14734,8 +14660,6 @@ "StartInGroup": "Ensemble", "StartLookingForGroup": "Rechercher un groupe", "StartNotInGroup": "Séparément", - "StashLinesExternalObtain": "Stash upgrade", - "StashLinesExternalObtain/Tooltip": "Stash upgrade is available for purchase on the website", "StatFoundMoneyEUR": "EUR trouvés", "StatFoundMoneyRUB": "RUB trouvés", "StatFoundMoneyUSD": "USD trouvés", @@ -14779,12 +14703,10 @@ "StrengthBuffSprintSpeedInc": "Augmente la vitesse de mouvement et de sprint de [{0:0%}]", "StrengthBuffThrowDistanceInc": "Augmente la distance de jet de [{0:0%}]", "StrengthDescription": "L'augmentation de la force permet de sauter plus haut, courir plus vite, frapper plus fort, jeter plus loin et de porter plus de poids.", - "StrengthLevelingUpDescription": "La force est améliorée en courant en étant en surpoids, en jetant des grenades, en utilisant des armes de mêlée et en s'entrainant dans la planque.", "StressBerserk": "Accès au mode Berserk", "StressPainChance": "Réduit les chances de choc dû à la douleur de [{0:0%}]", "StressResistance": "Résistance au stress", "StressResistanceDescription": "La résistance au stress augmente les chances de résister aux chocs causés par les blessures, atténue les douleurs et les tremblements.", - "StressResistanceLevelingUpDescription": "La résistance au stress est améliorée en subissant des dégâts. Avoir des douleurs sans être sous antidouleurs améliore également la compétence.", "StressTremor": "Réduit les tremblements de [{0:0%}]", "StringSeparator/Or": " ou ", "Stun": "Étourdi", @@ -14851,7 +14773,6 @@ "Summary": "Résumé", "Surgery": "Chirurgie", "SurgeryDescription": "La capacité à réaliser des opérations de chirurgie sur le terrain peut vous sauver la vie en situations critiques. Plus vous améliorez cette compétence, plus vous réaliserez rapidement et efficacement ces opérations.", - "SurgeryLevelingUpDescription": "La compétence en chirurgie est améliorée en utilisant des kits chirurgicaux.", "SurgeryReducePenalty": "Réduit la pénalité de PV de [{0:0%}]", "SurgerySpeed": "Augmente la vitesse de chirurgie de [{0:0%}]", "Survival Rate Short": "TS : {0}%", @@ -14915,8 +14836,8 @@ "The invitation has expired": "Le joueur {0} a échoué a accepter l'invitation de groupe", "The item has been sold": "L'objet a été vendu", "The items needed from your stash:": "Ces objets sont requis de votre réserve : ", - "The map is available to players from level": "La zone est accessible aux joueurs à partir du niveau {0}", - "The map is available to players up to level": "La zone est accessible aux joueurs jusqu'au niveau {0}", + "The map is available to players from level": "La zone est accesible aux joueurs à partir du niveau {0}", + "The map is available to players up to level": "La zone est accesible aux joueurs jusqu'au niveau {0}", "These items will be lost if you do not survive in the next raid. You can move them to a special stash for quest items.": "Vous pouvez déplacer ces objets dans une réserve spéciale pour les objets de quête. Ils seront perdus si vous ne survivez pas au raid.", "This is already equipped": "Objet déjà équipé", "This item is purchased in quantities of {0} pcs. (Max: {1}) limited for you in one restock": "Vous avez acheté cet article en quantité de {0} pièces.\nLa limite personnelle est de {1} au cours d'un re-stockage", @@ -14927,7 +14848,6 @@ "Throwing": "Arme de jet", "ThrowingDescription": "La compétence en maniement des armes de jet vous permet de jeter les grenades plus loin et en consommant moins d'énergie.", "ThrowingEnergyExpenses": "Réduit la consommation d'énergie par lancer de [{0:0%}]", - "ThrowingLevelingUpDescription": "La compétence en maniement des armes de jet est améliorée jetant des grenades.", "ThrowingStrengthBuff": "Augmente la force de lancer de [{0:0%}]", "ThrowingWeaponsBuffElite": "Les lancers ne demandent pas d'énergie et la fatigue n'affecte pas la précision", "Time flow": "Écoulement du temps", @@ -14976,11 +14896,11 @@ "Trading/Dialog/AvaliableServices": "Tu peux m'aider avec un truc ?", "Trading/Dialog/Btr/News": "Quoi de nouveau ?", "Trading/Dialog/Btr/News/Next": "D'autres nouvelles ?", - "Trading/Dialog/Btr/News1": "Il neige beaucoup depuis quelques temps ! On n'avait pas eu autant de neige depuis les Contract Wars. Dommage que tout ait fondu.", - "Trading/Dialog/Btr/News2": "Tu ne sors pas souvent de chez toi n'est-ce pas ? C'était grande une fête, toute la ville célébrait. Bonnes fêtes, au passage.", - "Trading/Dialog/Btr/News3": "Les boss ont foutu le bordel, n'est-ce pas ? À rester planter dans leur coin, à ne pas bouger, à ne laisser personne respirer.", - "Trading/Dialog/Btr/News4": "Ce mec chelou qui se déguise en Père Noël année après année, il parle maintenant ! Je pensais qu'il était muet.", - "Trading/Dialog/Btr/News5": "Les gens ont commencé à collecter les figurines des célébrités locales. Je me demande si mon BTR en sera une ou non.", + "Trading/Dialog/Btr/News1": "La plus grande nouveauté est le BTR ! Je l'ai réparé moi-même. Considère-le comme ma propre création. Maintenant je peux conduire les gens, peut-être que ça m'aidera à me payer les réparations.", + "Trading/Dialog/Btr/News2": "Quelqu'un organise des combats de gladiateurs dans Tarkov. Il se dit que beaucoup de personne y sont allée de leur plein gré. Il y a moyen de se faire pas mal d'argent, si tu survis évidemment !", + "Trading/Dialog/Btr/News3": "Il y a eu du grabuge dans tout Tarkov à propos de documents TerraGroup. Il semblerait qu'il y en a même qui les recherchent au-delà de la frontière, mais je n'y crois pas vraiment.", + "Trading/Dialog/Btr/News4": "Il y a quelques temps, la majorité des munitions perforantes avait disparu de l'inventaire des marchands. Les combattants comme toi ratissent tout Tarkov à la recherche des caches à munitions des autres gens. Mais tout est rétabli désormais.", + "Trading/Dialog/Btr/News5": "Sanitar a récemment tenté de renforcer son influence dans Tarkov. Il a mis au point une sorte d'antidote apparemment. Peu de temps avant ça, pas mal de personnes ont été empoisonnées, coïncidence ? Je ne crois pas.", "Trading/Dialog/Btr/NoNews": "Je pense que c'est toutes les nouvelles que j'ai en stock.", "Trading/Dialog/Btr/ServicePayoff{0}": "Ça me va. (Donner \"{0}\")", "Trading/Dialog/BtrBotCover/Description": "Pendant que tu es dans le BTR, nous ferons feu sur n'importe qui pointant le bout de son nez. On nettoiera aussi le point d'arrivée et nous te couvrirons pendant ta sortie, mais pas pour longtemps.", @@ -14999,34 +14919,18 @@ "Trading/Dialog/PlayerHandoveItem{0}": "J'ai trouvé ça. (Livrer \"{0}\")", "Trading/Dialog/PlayerTaxi/Description": "Voilà où je peux te déposer. Fais ton choix.", "Trading/Dialog/PlayerTaxi/Name": "Faire un tour", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Bien, destination le cinéma Rodina. Le prix te convient ?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Cinéma Rodina", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "En avant pour le tram. Tu as l'argent, n'est-ce pas ?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Tram", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "Bien, c'est parti pour le centre-ville. Tu as assez d'argent ?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "Centre-ville", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Je vais te conduire jusqu'à la grue effondrée. Le prix te va ?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Grue effondrée", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "On fait route vers l'ancien poste de contrôle scav. C'est bon pour le prix, hein ?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Ancien poste de contrôle scav", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "Je te dépose à l'hôtel Pinewood. Niveau prix ça dit quoi ? C'est bon pour toi ?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Hôtel Pinewood", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "On se rend au bunker scav. Le prix te convient ?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Bunker scav", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "Le village englouti, hein ? Je pense pouvoir y aller. Voilà le prix.", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Village englouti", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "Je peux t'emmener à la bifurcation, ouais. Tu as assez d'argent ?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Jonction", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "La scierie ? Pas de souci ! Voilà mon prix.", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Scierie", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "Le point de contrôle USEC, ça marche. Le voyage n'est pas gratuit, ceci dit.", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "Point de contrôle USEC", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "Le suis en train de regarder l'itinéraire pour aller à la base Emercom. Le prix te va ?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "Base Emercom", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "Okie-dokie, c'est parti pour l'ancienne scierie. Voilà le prix.", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Ancienne scierie", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "Tu veux que je te dépose au dépôt. Histoire que tu saches, tu ne pourras pas sortir de là sans moi. Pense à bien regarder l'heure une fois là-bas, ok ?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Dépôt ferroviaire", + "Trading/Dialog/PlayerTaxi/p1/Description": "Bien, destination le cinéma Rodina. Le prix te convient ?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Cinéma Rodina", + "Trading/Dialog/PlayerTaxi/p2/Description": "En avant pour le tram. Tu as l'argent, n'est-ce pas ?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Bien, c'est parti pour le centre-ville. Tu as assez d'argent ?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Centre-ville", + "Trading/Dialog/PlayerTaxi/p4/Description": "Je vais te conduire jusqu'à la grue effondrée. Le prix te va ?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Grue effondrée", + "Trading/Dialog/PlayerTaxi/p5/Description": "On fait route vers l'ancien poste de contrôle scav. C'est bon pour le prix, hein ?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Ancien poste de contrôle scav", + "Trading/Dialog/PlayerTaxi/p6/Description": "Je te dépose à l'hôtel Pinewood. Niveau prix ça dit quoi ? C'est bon pour toi ?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Hôtel Pinewood", "Trading/Dialog/Quit": "Partir", "Trading/Dialog/ServicePayoff{0}": "Bien, ça devrait le faire. (Donner \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Cacher l'historique", @@ -15069,7 +14973,6 @@ "TroubleFixingMagElite": "Réduit les chances d'incidents de tir causés par une cartouche défectueuse de 50% si vous venez de résoudre un incident de tir causé par la même raison", "TroubleShootingDescription": "La compétence en résolution d'incident facilite la résolution des incidents de tir.", "Troubleshooting": "Résolution d'incidents", - "TroubleshootingLevelingUpDescription": "La résolution des incidents de tir est améliorée en résolvant des incidents de tir.", "Try_keycard {0}": "Essayez {0}", "Tunnel": "Tunnel", "Tunnel_Shared": "Tunnel annexe (Co-op)", @@ -15152,11 +15055,6 @@ "UI/Arena/Place_7": "7e place", "UI/Arena/Place_8": "8e place", "UI/Arena/Place_9": "9e place", - "UI/ArmorPenetration/High": "Élevée", - "UI/ArmorPenetration/Low": "Faible", - "UI/ArmorPenetration/Medium": "Moyenne", - "UI/ArmorPenetration/VeryHigh": "Très élevée", - "UI/ArmorPenetration/VeryLow": "Très faible ", "UI/Charisma/Discount/Insurance": "Coût d'assurance", "UI/Charisma/Discount/PostRaidHealing": "Coût des soins", "UI/Charisma/Discount/ScavCase": "Coût de la boîte des scavs", @@ -15334,8 +15232,6 @@ "Very good standing": "très bonne", "Vest": "Gilet pare-balles", "Village": "Village", - "Violation/IntentionalTeamDamage/Warning": "Votre compte sera bloqué si vous continuez de tirer sur vos alliés", - "Violation/IntentionalTeamKill/Warning": "Votre compte sera bloqué si vous continuez de tuer vos alliés en début de manche", "Violation/TeamKill/Warning": "Votre compte sera bloqué si vous continuez de tuer vos alliés", "Vital mod weapon in hands": "Vous ne pouvez pas modifier une pièce vitale lorsque l’arme est dans vos mains.", "Vital parts": "Pièces vitales", @@ -15345,7 +15241,6 @@ "VitalityBuffRegeneration": "Augmente la régénération de santé en combat", "VitalityBuffSurviobilityInc": "Réduit le risque de mort suite à la perte d'un membre de [{0:0%}]", "VitalityDescription": "La vitalité améliore les chances de survie suite à une blessure en réduisant la probabilité d'hémorragie et de mort instantanée causée par des dégâts critiques sur une des parties du corps.", - "VitalityLevelingUpDescription": "La vitalité est améliorée en soignant diverses hémorragies et blessures.", "Voice": "Voix du personnage", "Voice 1": "Voix 1", "Voice 2": "Voix 2", @@ -15420,7 +15315,6 @@ "WeaponSwapBuff": "Augmente la vitesse de changement d'arme de [{0:0%}]", "WeaponTreatment": "Entretien des armes", "WeaponTreatmentDescription": "Compétence en entretien et maintenance des armes.", - "WeaponTreatmentLevelingUpDescription": "La compétence en entretien des armes est améliorée en réparant des armes à l'aide de kits de réparation.", "WearAmountRepairGunsReducePerLevel": "Réduit l'usure produite en utilisant un kit de réparation", "WearChanceRepairGunsReduceEliteLevel": "Réduit les probabilités d'usure en utilisant un kit de réparation de 50%", "Weather conditions": "Conditions météo", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "Taux de victoire (%)", "arena/career/teamFightStats/wins": "Victoires", "arena/career/teamFightStats/winsWithFavPreset": "Matchs gagnés avec l'équipement favoris", - "arena/customGames/create/samePresets": "Copier la configuration : ", - "arena/customGames/create/setSamePresets": "Autoriser les configurations en double", "arena/customGames/invite/message{0}": "INVITATION À UNE PARTIE PERSONNALISÉE DE {0}", "arena/customGames/notify/GameRemoved": "La salle a été dissoute", "arena/customgames/errors/notification/gamealreadystarted": "La partie a déjà commencé", @@ -15706,9 +15598,8 @@ "arena/tab/SCOUT": "ÉCLAIREUR", "arena/tab/SQB": "CQB", "arena/tooltip/OverallMatches": "Votre nombre total de matchs classés et non classés joués.", - "arena/tooltip/Presets": "Configurations", + "arena/tooltip/Presets": "Presets", "arena/tooltip/countGlp": "Votre total d'ARP (Arena Reputation Points). Cette statistique détermine votre rang obtenu en partie classée. L'ARP est utilisé pour trouver des parties avec des joueurs de compétence similaire, ainsi que pour obtenir de nouveaux rangs et configurations d'équipement.", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", "arena/tooltip/friends": "Amis", "arena/tooltip/kdRatio": "Votre ratio éliminations/morts général, calculé à partir de vos éliminations et vos morts en match classés et non classés. Seules les éliminations de joueurs comptent.", "arena/tooltip/leftGlp": "Quantité d'ARP nécessaire pour atteindre le rang suivant.", @@ -15716,7 +15607,6 @@ "arena/tooltip/moneyRubles": "Roubles. Utilisés pour acheter des configurations d'équipement et gagnés après une victoire dans l'Arène.", "arena/tooltip/ratingPlace": "Votre position dans le classement.", "arena/tooltip/settings": "Paramètres", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", "arena/tooltip/sourcesGlp": "Source des gains d'ARP :", "arena/tooltip/winMatches": "Votre nombre total de victoires en match classés et non-classés.", "arena/tooltip/winRate": "Votre ratio général, calculé à partir de vos victoires et défaites en match classées et non-classées.", @@ -16329,10 +16219,10 @@ "rank_07": "Vétéran", "rank_08": "Professionnel", "rank_09": "Élite", - "rank_10": "Faucheuse", - "rank_11": "En feu", + "rank_10": "Chuchoteur de mort", + "rank_11": "Guerrier tout feu tout flamme", "rank_12": "Big Boss", - "rank_13": "La Légende de l'Arène", + "rank_13": "La légende de l'Arène", "ratingExpPos": "Classe d'EXP", "readytoinstallupgrade": "Amélioration terminée", "receive": "RECEVOIR", @@ -16450,8 +16340,6 @@ "{0} GroupPlayerBlocking/MatchLeave": "Mode de jeu temporairement bloqué, car l'un des membres du groupe ({0}) est temporairement exclu de ce mode suite à l'abandon d'un match", "{0} GroupPlayerBlocking/NotAcceptedMatch": "Mode de jeu temporairement bloqué, car l'un des membres du groupe ({0}) est temporairement exclu de ce mode suite au refus d'un match", "{0} GroupPlayerBlocking/TeamKill": "Mode de jeu temporairement bloqué, car l'un des membres du groupe ({0}) est temporairement exclu de ce mode suite à des tirs alliés répétés", - "{0} Violation/IntentionalTeamDamage/Blocking": "Le joueur {0} a été exclu du match et a reçu une pénalité pour tirs alliés", - "{0} Violation/IntentionalTeamKill/Blocking": "Le joueur {0} a été exclu du match et a reçu une pénalité pour l'élimination d'un allié au début de la manche", "{0} Violation/TeamKill/Blocking": "Joueur {0} exclu du match et pénalisé pour tirs alliés", "{0} added you to the ignore list": "{0} ajouté à votre liste des personnes ignorées", "{0} ask to cooperate": "{0} vous salue", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "Ground Zero", "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "United Security", "5464e0404bdc2d2a708b4567 Description": "La société militaire privée USEC a été fondée en 1999 après la fusion de deux entités : KerniSEC et Safe Sea. En 2004, un agent de la TerraGroup International Holding prit contact avec l'USEC, essentiellement devenue par la suite l'armée privée de la holding, forte de plus de 7 500 employés et avec des établissements partout dans le monde.", "5464e0454bdc2d06708b4567 Name": "BEAR", @@ -18024,7 +17910,7 @@ "5a27bc8586f7741b543d8ea4 description": "Bonjour, mon cher ami. Il semble que nous soyons très près d'un deal intéressant. Sur cette clé nous avons découvert le plan partiel d'un moteur de missile qui sera particulièrement intéressant pour l'occident, car ils sont déployés sur les sous-marins de classe Typhons, qui soit disant, ne sont plus fonctionnels. Aussi, il y a un dossier assez détaillé sur un marin qui a servi dans la flotte Baltique, un vrai loup de mer, qui est maintenant perdu dans Tarkov, et on dirait qu'il a des liens avec la chaîne de commandement de la Marine. Nous avons besoin de lui. Selon mes infos, il traite parfois secrètement avec les scavs, et parvenir à lui ne sera pas facile. Tu devras travailler discrètement, via une embuscade. On n'a qu'une seule chance de réussir notre coup, et il est crucial que nous n'échouions pas pour le bien de nos intérêts communs. Mes mains tremblent un peu en pensant à tout ça. Tu n'as pas idée de l'importance de la tâche, l'échec n'est pas une option. Tu es un formidable combattant, mais je dois être sûr que tu es doué pour les opérations furtives. J'ai besoin d'un sniper, et un bon, donc reviens quand tu seras prêt.", "5a27bc8586f7741b543d8ea4 failMessageText": "", "5a27bc8586f7741b543d8ea4 successMessageText": "Avec tout le respect que je te dois, je ne pensais pas que tu t'en tirerais. On dirait que tu es mon tireur d'élite attitré désormais. Je te contacterai au besoin.", - "5a28235e86f7741da250b438": "Augmentez la compétence fusil de précision à verrou au niveau requis", + "5a28235e86f7741da250b438": "Augmentez la compétence fusil de précision au niveau requis", "5a27bc8586f7741b543d8ea4 acceptPlayerMessage": "", "5a27bc8586f7741b543d8ea4 declinePlayerMessage": "", "5a27bc8586f7741b543d8ea4 completePlayerMessage": "", @@ -18367,7 +18253,7 @@ "5ae448bf86f7744d733e55ee name": "Rendez au Ultra sa grandeur", "5ae448bf86f7744d733e55ee description": "Imagine combien de personnes traînaient autour de l'ULTRA, des mères avec leurs enfants, des couples, et j'en passe. Merde... c'était vraiment cool, peut-être que tu t'en souviens, tellement d'activités... Mais je refuse d'être nostalgique, nous n'avons pas le temps pour ça, on a du boulot. Ces temps-ci, l'ULTRA est rempli de scavs qui se servent comme ils veulent, tu vois. Rends un service à ce monde, dégage ces scavs de l'ULTRA, pour que je puisse y envoyer mes gars. J'aurai un cadeau pour toi si tu es partant.", "5ae448bf86f7744d733e55ee failMessageText": "", - "5ae448bf86f7744d733e55ee successMessageText": "Tu tires tel un sniper, c'est bon ça. Mes gars disent que l'échangeur est rempli de cadavres de scavs et que le centre-commercial est plus calme désormais donc voilà ta récompense, tu l'as mérité.", + "5ae448bf86f7744d733e55ee successMessageText": "Tu tires tel un sniper, c'es bon ça. Mes gars disent que l'échangeur est rempli de cadavres de scavs et que le centre-commercial est plus calme désormais donc voilà ta récompense, tu l'as mérité.", "5ae44ecd86f77414a13c970e": "Éliminez des scavs dans la zone de l'échangeur", "5af4154186f7745c2674236d": "", "5ae448bf86f7744d733e55ee acceptPlayerMessage": "", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "Éliminez des opérateurs d'une SMP d'un tir à la tête avec un fusil de précision à verrou dans la zone du phare", "63aec6f256503c322a190374": "Éliminez des opérateurs d'une SMP d'un tir à la tête avec un fusil de précision à verrou dans les rues de Tarkov", "64b694c8a857ea477002a408": "Éliminez des opérateurs d'une SMP d'un tir à la tête avec un fusil de précision à verrou dans l'échangeur", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18882,7 +18767,7 @@ "5c0be13186f7746f016734aa description": "Salutations, mercenaire. J'ai entendu dire que tu essayais de devenir un sniper ? Être dans le milieu des snipers demande de la ténacité, patience, et un sens du devoir, mais il y a d'autres facteurs importants. Tu sais ce que m'a dit Dima une fois ? \"Tout le monde peut tirer, mais seulement quelques-uns deviennent des vrais snipers\".", "5c0be13186f7746f016734aa failMessageText": "Un sniper expérimenté ne se laissera pas abattre comme ça. Reprends ton souffle et essaie encore.", "5c0be13186f7746f016734aa successMessageText": "Franchement, je n'étais pas sûr que tu puisses le faire. Mais il semble bien que tu ne viennes pas de la plèbe ordinaire.", - "5c0be2b486f7747bcb347d58": "Augmentez la compétence fusil de précision à verrou au niveau requis", + "5c0be2b486f7747bcb347d58": "Augmentez la compétence fusil de précision au niveau requis", "5c1fb5f086f7744a184fb3c5": "", "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Éliminez des opérateurs d'une SMP avec un fusil de précision à verrou sans mourir", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Tuez des scavs dans les rues de Tarkov en portant l'uniforme UN (casque UNTAR, gilet pare-balles UNTAR, Colt M4A1)", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "Survivez et quittez la base militaire avec le statut \"Survivant\"", "629f08e7d285f377953b2af1": "Survivez et quittez le phare avec le statut \"Survivant\"", "63aec66556503c322a190372": "Survivez et quittez les rues de Tarkov avec le statut \"Survivant\"", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Obtenez le niveau 4 de loyauté avec la Toubib", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -20314,8 +20195,6 @@ "60ec2b04bc9a8b34cd453b81": "Vous ne devez pas mourir ou quitter le raid tant que la quête est active (KIA ; Abandon ; MIA ; Touriste)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "Survivez et quittez les rues de Tarkov par le véhicule de l'avenue Primorsky", "6397a6942e519e69d2139b25": "Localisez et balisez le premier véhicule blindé Patrol-A dans les rues de Tarkov", "6397a7ce706b793c7d6094c9": "Localisez et balisez le second véhicule blindé Patrol-A dans les rues de Tarkov", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "J'ai réussi à contacter les chauffeurs. Ce n'était pas facile, mais j'ai découvert quelque chose d'intéressant.", @@ -21436,7 +21314,7 @@ "6396701b9113f06a7c3b2379 failMessageText": "", "6396701b9113f06a7c3b2379 successMessageText": "Nous t'avons observé. Mon tireur a donné le feu vert. C'est tout pour maintenant. Je te ferai savoir quand le temps viendra.", "6397ac912e519e69d2139b26": "Éliminez des scavs sniper à une distance d'au moins 350 mètres", - "639a169e6cd47c525121a116": "Augmentez la compétence fusil de précision à verrou au niveau requis", + "639a169e6cd47c525121a116": "Augmentez la compétence fusil de précision au niveau requis", "6396701b9113f06a7c3b2379 acceptPlayerMessage": "", "6396701b9113f06a7c3b2379 declinePlayerMessage": "", "6396701b9113f06a7c3b2379 completePlayerMessage": "Je suis un véritable sniper psychopathe désormais. C'est quoi la prochaine ?", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "Éliminez des scavs en utilisant des armes de mêlée dans l'échangeur", "63a9b5b2813bba58a50c9eeb": "Éliminez des scavs en utilisant des armes de mêlée dans les douanes", "63a9b5f064b9631d9178276b": "Éliminez des scavs en utilisant des armes de mêlée dans la base militaire", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21691,8 +21568,8 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "Une ordure de moins à se soucier. Tu as bien fait, gamin.", "64e7ba17220ee966bf425ecb": "Localisez et éliminez Kaban", "64e7ba4a6393886f74119f3d": "Éliminez les gardes de Kaban dans la concession automobile des rues de Tarkov", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", diff --git a/project/assets/database/locales/global/ge.json b/project/assets/database/locales/global/ge.json index 7a430923..8f4a7be2 100644 --- a/project/assets/database/locales/global/ge.json +++ b/project/assets/database/locales/global/ge.json @@ -2675,7 +2675,7 @@ "5a16b8a9fcdbcb00165aa6ca Name": "Norotos Titanium Advanced Tactical Mount", "5a16b8a9fcdbcb00165aa6ca ShortName": "TETHalt", "5a16b8a9fcdbcb00165aa6ca Description": "A lightweight titanium mount for installation on the Shroud connector on the helmet. It is necessary for further installation of the night vision goggles or other optical devices. Manufactured by Norotos Inc.", - "5a16b93dfcdbcbcae6687261 Name": "AN/PVS-14 Norotos Dual Dovetail Mount", + "5a16b93dfcdbcbcae6687261 Name": "AN/PVS-14 Dual Dovetail Mount", "5a16b93dfcdbcbcae6687261 ShortName": "DDH", "5a16b93dfcdbcbcae6687261 Description": "The Dual Dovetail Interface Arm mount for the AN/PVS-14 night vision monocular device.", "5a16b9fffcdbcb0176308b34 Name": "Ops-Core FAST RAC Kopfhörer", @@ -3465,7 +3465,7 @@ "5ae089fb5acfc408fb13989b ShortName": "Trophäe", "5ae089fb5acfc408fb13989b Description": "Trophäe", "5ae08f0a5acfc408fb1398a1 Name": "Mosin 7,62x54mm R Repetier-Scharfschützengewehr (Sniper-Version)", - "5ae08f0a5acfc408fb1398a1 ShortName": "Mosin SSG", + "5ae08f0a5acfc408fb1398a1 ShortName": "Mosin", "5ae08f0a5acfc408fb1398a1 Description": "Das Mosin-Nagant M91/30 PU ist die Scharfschützenvariante des berühmten, russischen Gewehrs, welches hauptsächlich von russischen Scharfschützen im zweiten Weltkrieg genutzt wurde.", "5ae096d95acfc400185c2c81 Name": "Mosin Rifle standard stock", "5ae096d95acfc400185c2c81 ShortName": "Mosin Holzstütze", @@ -3953,13 +3953,13 @@ "5ba26383d4351e00334c93d9 Name": "HK MP7A1 4,6x30mm Maschinenpistole", "5ba26383d4351e00334c93d9 ShortName": "MP7A1", "5ba26383d4351e00334c93d9 Description": "The HK MP7 submachine gun is extremely compact, lightweight, can be used in very confined spaces, and is practically recoil-free. It can be carried continuously, making it the ideal personal weapon for the soldier of today. Those who carry it will be suitably armed for the broadest range of operations. Manufactured by Heckler & Koch.", - "5ba264f6d4351e0034777d52 Name": "HK MP7 4,6x30mm 20-Schuss Magazin", + "5ba264f6d4351e0034777d52 Name": "HK MP7 4.6x30 20-round magazine", "5ba264f6d4351e0034777d52 ShortName": "MP7", "5ba264f6d4351e0034777d52 Description": "A standard 20-round 4.6x30 magazine for the MP7 SMGs, manufactured by Heckler & Koch.", - "5ba2657ed4351e0035628ff2 Name": "HK MP7 4,6x30mm 30-Schuss Magazin", + "5ba2657ed4351e0035628ff2 Name": "HK MP7 4.6x30 30-round magazine", "5ba2657ed4351e0035628ff2 ShortName": "MP7", "5ba2657ed4351e0035628ff2 Description": "A standard 30-round 4.6x30 magazine for the MP7 SMGs, manufactured by Heckler & Koch.", - "5ba26586d4351e44f824b340 Name": "HK MP7 4,6x30mm 40-Schuss Magazin", + "5ba26586d4351e44f824b340 Name": "HK MP7 4.6x30 40-round magazine", "5ba26586d4351e44f824b340 ShortName": "MP7", "5ba26586d4351e44f824b340 Description": "A standard 40-round 4.6x30 magazine for the MP7 SMGs, manufactured by Heckler & Koch.", "5ba2678ad4351e44f824b344 Name": "4,6x30mm FMJ SX", @@ -4188,7 +4188,7 @@ "5bf3f59f0db834001a6fa060 ShortName": "RPK-16 Kimme", "5bf3f59f0db834001a6fa060 Description": "A detachable Izhmash-manufactured rear sight. Standard-issue for the RPK-16 LMG.", "5bfd297f0db834001a669119 Name": "Mosin 7,62x54mm R Repetier-Scharfschützengewehr (Infanterie-Version)", - "5bfd297f0db834001a669119 ShortName": "Mosin Infantry", + "5bfd297f0db834001a669119 ShortName": "Mosin (Infantry)", "5bfd297f0db834001a669119 Description": "Mosin–Nagant is one of the most famous russian rifles, which was commonly used by Russian soldiers during WW2. Developed from 1882 to 1891, it was used by the armed forces of the Russian Empire, the Soviet Union and various other nations. It is one of the most mass-produced military bolt-action rifles in history with over 37 million units having been made since 1891. In spite of its age, it has been used in various conflicts around the world up to the present day.", "5bfd35380db83400232fe5cc Name": "Mosin Rifle Infantry stock", "5bfd35380db83400232fe5cc ShortName": "Mosin inf. stock", @@ -4577,7 +4577,7 @@ "5c10c8fd86f7743d7d706df3 Name": "Adrenalinspritze", "5c10c8fd86f7743d7d706df3 ShortName": "Adrenalin", "5c10c8fd86f7743d7d706df3 Description": "A sterile disposable syringe with a dose of adrenaline - the main hormone of the adrenal medulla. It is used to enhance the physiological response associated with the preparation of all muscles to increased activity. Temporarily boosts strength and endurance. Relieves the sensation of pain.", - "5c11046cd174af02a012e42b Name": "Wilcox-Adapter für das PVS-7", + "5c11046cd174af02a012e42b Name": "Wilcox Schnittstelle für das PVS-7", "5c11046cd174af02a012e42b ShortName": "W-PVS7", "5c11046cd174af02a012e42b Description": "Wilcox NSG Schnittstellen-Schuh für das AN/PVS-7B/7D wurde entwickelt, um den Kunststoff-Schuh zu ersetzen.", "5c110624d174af029e69734c Name": "T-7 Thermal Goggles with a Night Vision mount", @@ -4742,7 +4742,7 @@ "5c471c2d2e22164bef5d077f Name": "SVDS Oberband", "5c471c2d2e22164bef5d077f ShortName": "SVDS OB", "5c471c2d2e22164bef5d077f Description": "A standard upper band for SVDS sniper rifles and compatibles, allows installation of rear sights.", - "5c471c442e221602b542a6f8 Name": "SVD 7,62x54mm R 10-Schuss-Magazin", + "5c471c442e221602b542a6f8 Name": "SVD 7.62x54R 10-round magazine", "5c471c442e221602b542a6f8 ShortName": "SVD", "5c471c442e221602b542a6f8 Description": "A 10-round 7.62x54R steel Izhmash magazine for SVD-based rifles.", "5c471c6c2e221602b66cd9ae Name": "SVDS Polymer-Handschutz", @@ -4997,7 +4997,7 @@ "5c87ca002e221600114cb150 Name": "KAC vertical foregrip", "5c87ca002e221600114cb150 ShortName": "KAC VFG", "5c87ca002e221600114cb150 Description": "A vertical grip manufactured by Knight's Armament Company.", - "5c88f24b2e22160bc12c69a6 Name": "SVD 7,62x54mm R 20-Schuss-Magazin", + "5c88f24b2e22160bc12c69a6 Name": "SVD 7.62x54R 20-round magazine", "5c88f24b2e22160bc12c69a6 ShortName": "SVD", "5c88f24b2e22160bc12c69a6 Description": "A 20-round 7.62x54R steel Izhmash SVD magazine, for SVD-based rifles.", "5c90c3622e221601da359851 Name": "Zenit B-13V \"Klassika\" dovetail rail platform", @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "A compact tactical Laser Aiming Module with a blue dot. Mounts on any Picatinny/Weaver rail for precise target acquisition. Manufactured by NcSTAR.", "5cd945d71388ce000a659dfb Name": "BEAR Standard", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Combat shirt", "5cd946231388ce000d572fe3 Name": "BEAR Standard", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "ASh-12 vertical foregrip", "5cda9bcfd7f00c0c0b53e900 ShortName": "ASh-12 PG", "5cda9bcfd7f00c0c0b53e900 Description": "A vertical foregrip for the ASh-12 assault rifle.", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "USEC Standard", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", "5cde9ec17d6c8b04723cf479 Name": "USEC Standard", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Adik Jogginghose", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", "5cdea42e7d6c8b0474535dad Name": "Adik Trainingsanzug", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "M700 Magpul Pro 700 chassis", "5cdeac22d7f00c000f26168f ShortName": "Pro700", "5cdeac22d7f00c000f26168f Description": "Pro 700 is a lightweight ergonomic chassis designed for the Remington M700 sniper rifle. Manufactured by Magpul.", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "BEAR Black Lynx", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", "5d1f60ae86f7744bcc04998b Name": "BEAR Söldner T-Shirt", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "FSB Schnelleinsatzgruppe", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "BEAR Geisterschütze", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "BEAR Sommerfeld", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "USEC Angreifer TAC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "USEC Softshell Flexion", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "USEC Wald Infiltrator", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Combat shirt", "5d1f623886f7743014163027 Name": "USEC PCS MultiCam", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "USEC PCU Ironsight", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "FSB Taktisch-Urban", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "BEAR Gorka Kobra", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "BEAR Gorka SSO", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "BEAR Striker Infil Ops", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "BEAR Sommerfeld", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "USEC Gen.2 Khyber", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "USEC Wald Infiltrator", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "USEC Jeans Ranger", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "USEC Taclife Terrain", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "USEC TACRES", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "AR-10 Daniel Defense WAVE 7.62x51 muzzle brake", "5d1f819086f7744b355c219b ShortName": "WAVE 762", "5d1f819086f7744b355c219b Description": "The Daniel Defense WAVE muzzle brake is designed to securely mount the Daniel Defense WAVE suppressor to the host firearm, but also functions effectively without it. It's manufactured from aerospace 17-4 PH stainless steel and had a salt bath nitride finish for minimal corrosion.", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "USEC Commando", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "An upper receiver for the SR-25 rifle, manufactured by Knight's Armament Company.", "5df8e5c886f7744a122d6834 Name": "BEAR Zaslon", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "Meteor", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "BEAR Oldschool", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "USEC TIER2", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "Sklon", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "The first generation of the modified CPC plate carrier originally designed by Crye Precision and adapted by Ars Arma for use by special forces of the Russian Federation. This modular body armor is based on a polymer harness that fits the thorax, which avoids the plate carrier backlash during active movement and also contributes to a more even distribution of weight. Made in the assault configuration of pouches. Manufactured by Ars Arma.", "5e4bb08f86f774069619fbbc Name": "BEAR Telnik", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "USEC TIER2", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "BEAR TIGR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "USEC Commando", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "Russland-Jacke", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "BEAR TIGR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "USEC Urban Responder", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "BEAR Zaslon", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "USEC Deep Recon", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Tactical pants", "5e9dcf5986f7746c417435b3 Name": "LBT-8005A Day Pack Rucksack (MultiCam Schwarz)", "5e9dcf5986f7746c417435b3 ShortName": "Day Pack", "5e9dcf5986f7746c417435b3 Description": "A simple and reliable 14-liter backpack in MultiCam Black camouflage. Manufactured by London Bridge Trading.", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "The Thunderbolt fixed chest rig, containing all the basic utility pouches you'd need. Manufactured by Direct Action.", "5f5f45df0bc58666c37e7832 Name": "BEAR G99", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "USEC Night Patrol", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "BEAR G99", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "USEC Urban Responder", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Scav-Boot", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "BEAR SRVV", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "USEC TIER3", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": ".300 AAC Blackout AP", "5fd20ff893a8961fc660a954 ShortName": ".300 AP", "5fd20ff893a8961fc660a954 Description": "A .300 Blackout (7.62x35mm) AP cartridge loaded with an 8.4 gram armor-piercing bullet from a 7.62x51mm NATO M80A1 cartridge, composed of a steel penetrator tip over a copper alloy core with a copper semi-jacket in a brass case. Despite the bullet's own characteristics when used in a full-power cartridge, these are affected when transferred to an intermediate cartridge, however, the bullet continues to have capabilities to pierce basic and intermediate body ballistic protections, in addition to being able to cause substantial adverse effects on the target after impact. Its design also allows it to be used in STANAG 5.56x45mm NATO magazines without any issues.", "5fd3e77be504291efd0040ad Name": "USEC VEKTOR", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "BEAR Boreas", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "BEAR Grizzly", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "USEC Adaptive Combat", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "Einfaches Nylonlagersystem mit nicht entfernbaren Taschen. Erlaubt es eine beeindruckende Anzahl an Munition mit zu führen auf kosten der Bequemlichkeit.", "6038b228af2e28262649af14 Name": "BEAR Rashguard", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "USEC Sandstein", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", "6038b4b292ec1c3103795a0b Name": "LBT-6094A Slick Plate Carrier (Coyote Tan)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "A simple yet effective plate carrier by London Bridge Trading company. The most minimalistic design intended for use with chest rigs. Coyote Tan version.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "TP-200 ist zur Verwendung als Ladung bei der Herstellung von seismischen Vermessungen, als Zwischenzünder beim Auslösen von Sprengladungen im Bohrloch, zum Zerkleinern übergroßer Gegenstände und zur Durchführung spezieller Sprengvorgänge vorgesehen.", "603d01a1b41c9b37c6592047 Name": "BEAR VOIN", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "USEC Sage Warrior", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Azimut SS \"Zhuk\" chest harness (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Azitmut", "6040dd4ddcf9592f401632d2 Description": "A simple nylon bearing system with non-removable pouches. Allows you to carry a fairly impressive amount of ammunition at the expense of convenience. SURPAT camouflage version.", @@ -8239,10 +8239,10 @@ "619b69037b9de8162902673e Description": "Designed for both the civilian market and military use. The CQR47 stock can be easily mounted in place of the standard attachment of the AK/AKM non-folding stock. Manufactured by Hera Arms.", "619b99ad604fcc392676806c Name": "BEAR Recon", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "USEC K4", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", "619bc61e86e01e16f839a999 Name": "Alpha-Armband", "619bc61e86e01e16f839a999 ShortName": "Alpha", "619bc61e86e01e16f839a999 Description": "An armband for veterans who are still here from the Alpha times.", @@ -8275,10 +8275,10 @@ "619bdfd4c9546643a67df6fa Description": "An armband for hardcore USEC operators.", "619bf75264927e572d0d5853 Name": "BEAR Sumrak", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "Military corrugated tube", "619cbf476b8a1b37a54eebf8 ShortName": "MTube", "619cbf476b8a1b37a54eebf8 Description": "A military-issued corrugated tube for ventilation systems of military equipment or air purification systems.", @@ -8858,10 +8858,10 @@ "628cd624459354321c4b7fa2 Name": "Tasmanian Tiger SK plate carrier (MultiCam Black)", "628cd624459354321c4b7fa2 ShortName": "TT SK", "628cd624459354321c4b7fa2 Description": "The ultra-light and skeletal TT Plate Carrier SK vest is made primarily from lightweight, thin and durable TPU-laminated Cordura nylon material with a claimed density of at least 700 denier. The design of the vest provides two lightweight covers for plates, adjustable shoulder straps and a light waist jumper. Equipped with a front panel for 4 magazines.", - "628d0618d1ba6e4fa07ce5a4 Name": "NPP KlASS Bagariy Platten-Tragesystem (Digitalflora)", + "628d0618d1ba6e4fa07ce5a4 Name": "NPP KlASS Bagariy gepanzertes Tragesystem (Digitalflora)", "628d0618d1ba6e4fa07ce5a4 ShortName": "Bagariy", "628d0618d1ba6e4fa07ce5a4 Description": "In the second millennium, the equipment of a soldier received serious changes in view of new threats and tasks. A better level of protection was required, so the Russian army needed a reliable and functional body armor. In the mid-2000s, the MVD, which was later reorganized into the Russian Guard, received Bagariy bulletproof vests. Bagariy was used both by ordinary soldiers of the internal troops, and in special forces. Actively was used by PMC BEAR as the main heavy body armor.", - "628dc750b910320f4c27a732 Name": "ECLiPSE RBAV-AF Platten-Tragesystem (Rangergrün)", + "628dc750b910320f4c27a732 Name": "ECLiPSE RBAV-AF plate carrier (Ranger Green)", "628dc750b910320f4c27a732 ShortName": "RBAV-AF", "628dc750b910320f4c27a732 Description": "The BAE ECLiPSE RBAV (Releasable Body Armor Vest, Air Force) variant is designed specifically for the Guardian Angel Weapon System (USAF PJ) and contains several new features not found in other versions.", "628e1ffc83ec92260c0f437f Name": "Gruppa 99 T30 backpack (Black)", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "USEC Chameleon", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "BEAR VOLK", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "BEAR Coyote", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "USEC DesOps", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Death Knight mask", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "A unique mask of the commander of the Goons squad, former USEC operators who decided not to flee Tarkov, but to create their own order.", @@ -10004,10 +10004,10 @@ "64a436122d2c4e6e970f4117 Name": "", "64a436122d2c4e6e970f4117 ShortName": "", "64a436122d2c4e6e970f4117 Description": "", - "64a536392d2c4e6e970f4121 Name": "WARTECH TV-115 Platten-Tragesystem (Olivgrün)", + "64a536392d2c4e6e970f4121 Name": "WARTECH TV-115 plate carrier (Olive Drab)", "64a536392d2c4e6e970f4121 ShortName": "TV-115", "64a536392d2c4e6e970f4121 Description": "Operational armor system TV-115 with high-density polyethylene (class 3) plates, protecting only the chest and the back. Manufactured by WARTECH.", - "64a5366719bab53bd203bf33 Name": "Eagle Allied Industries MBSS Platten-Tragesystem (Kojotenbraun)", + "64a5366719bab53bd203bf33 Name": "Eagle Allied Industries MBSS plate carrier (Coyote Brown)", "64a5366719bab53bd203bf33 ShortName": "MBSS", "64a5366719bab53bd203bf33 Description": "The MBSS vest is part of the Maritime Ballistic Survivor System. The vest can be used with flotation inserts to provide buoyancy as it is not equipped with a quick release system. Manufactured by Eagle Allied Industries.", "64abd93857958b4249003418 Name": "Interceptor OTV body armor (UCP)", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "USEC Predator", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", "64f07f7726cfa02c506f8ac0 Name": "Tagebuch", "64f07f7726cfa02c506f8ac0 ShortName": "Tagebuch", "64f07f7726cfa02c506f8ac0 Description": "Ein Tagebuch von jemandem, der wirklich alles aus der Sowjetunion liebt.", @@ -11920,7 +11920,7 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "USEC Defender", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "USEC BOSS Delta", "657f8e9824d2053bb360b51d ShortName": "USEC BOSS Delta", "657f8e9824d2053bb360b51d Description": "USEC BOSS Delta", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "BEAR URON", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "BEAR OPS MGS", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Tactical jacket", "657f925dada5fadd1f07a57a Name": "Hybrid-Kompositmaterialien", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "Toter Zivilist", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", " V-ex_light": "Auto zur Straße der Militärbasis", " Voip/DisabledForOffline": "VoIP ist im Offline-Modus nicht verfügbar.", " kg": "Kg", @@ -12085,9 +12070,9 @@ "4:3 - Not wide": "4:3 - Vollbild", "4x supersampling": "4x Supersampling", "5070Kills": "Anzahl eliminierter Spieler der Stufe 51-70", - "65bd1875c443e7fffb006e83": "Klasse 1", - "65bd187e578fa4a9f503f003": "Klasse 2", - "65bd1882b7378d56ab0817c3": "Klasse 3", + "65bd1875c443e7fffb006e83": "Tier 1", + "65bd187e578fa4a9f503f003": "Tier 2", + "65bd1882b7378d56ab0817c3": "Tier 3", "7099Kills": "Anzahl eliminierter Spieler der Stufe 71-99", "ELITE Level": "ELITE Stufe", "A LOT": "VIELE", @@ -12102,8 +12087,6 @@ "AI amount": "KI Anzahl", "AI difficulty": "KI Schwierigkeit", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "Durchschlagskraft", - "AMMO PROJECTILE COUNT": "Projektile", "ARMOR CLASS": "RÜSTUNGSKLASSE", "ARMOR POINTS": "RÜSTUNGSPUNKTE", "ARMOR TYPE": "RÜSTUNGSTYP", @@ -12146,12 +12129,11 @@ "AheadOfTimeEnding": "BENÖTIGTE ZEIT", "Aim": "Zielen", "AimDrills": "Zielübung", - "AimDrillsLevelingUpDescription": "The Aim Drills skill is improved by hitting enemies while aiming.", "AimMaster": "Meisterschütze", "AimMasterDescription": "Die Fähigkeit „Meisterschütze“ reduziert die Zeit zum Anvisieren und das Schwanken der Mündung nach dem Anvisieren.", - "AimMasterElite": "Erhöht die Zielgeschwindigkeit um [{0:0.#%}]", - "AimMasterSpeed": "Erhöht die Zielgeschwindigkeit um [{0:0.#%}]", - "AimMasterWiggle": "Erhöht AimMasterWiggle um [{0:0.#%}]", + "AimMasterElite": "Erhöht die Zielgeschwindigkeit um [{0:0%}]", + "AimMasterSpeed": "Erhöht die Zielgeschwindigkeit um [{0:0%}]", + "AimMasterWiggle": "Erhöht AimMasterWiggle um [(+{0:0%})]", "Aiming deadzone:": "Toleranzbereich Zielen:", "AirFilteringUnit": "LUFTFILTERGERÄT", "AirplaneDelayMessage": "Warte auf die Ankunft! Der Luftraum ist besetzt.", @@ -12193,7 +12175,7 @@ "Are you sure you want to discard your changes?": "Du hast nicht gespeicherte Änderungen. Bist du sicher, dass du diese verwerfen möchtest?", "Are you sure you want to insure {0} items?": "Bist du sicher, dass du die ausgewählten Gegenstände versichern möchtest?", "Are you sure you want to report {0}?": "Bist du sicher, dass du {0} melden möchtest?", - "Arena welcome screen description": "Willkommen in der Arena!\n\nHier wird dein Charakter, ein PMC Operator, andere Kämpfer um Ruhm und Reichtum bekämpfen. \n\nAufgrund des chaotischen Konflikts sind Recht und Ordnung in der Stadt Tarkov (Region Norvinsk) in den Hintergrund getreten. Dies ist der Schauplatz, an dem reiche Auftraggeber Gefechte organisieren, in denen die PMCs bis zum letzten Überlebenden gegeneinander kämpfen oder als Team zusammenarbeiten, um ein bestimmtes Ziel zu erreichen - das ihnen natürlich von den Meistern vorgegeben wird. \n\nWenn du Escape From Tarkov noch nicht besitzt, kannst du das Spiel kaufen und deinen gesamten Fortschritt aus der Arena dorthin übertragen. \nWenn du bereits Escape From Tarkov besitzt, zählen alle in der Arena erzielten Fortschritte (Erfahrung und Fähigkeiten) auch für deinen Charakter in EFT und umgekehrt - Fortschritt in EFT zählt auch für Arena.", + "Arena welcome screen description": "Willkommen in der Arena!\n\nHier wird dein Charakter, ein PMC Operator, andere Kämpfer um Ruhm und Reichtum bekämpfen. \n\nAufgrund des chaotischen Konflikts sind Recht und Ordnung in der Stadt Tarkov (Region Norvinsk) in den Hintergrund getreten. Dies ist der Schauplatz, an dem reiche Auftraggeber Gefechte organisieren, in denen die PMCs bis zum letzen Überlebenden gegeneinander kämpfen oder als Team zusammenarbeiten, um ein bestimmtes Ziel zu erreichen - das ihnen natürlich von den Meistern vorgegeben wird. \n\nWenn du Escape From Tarkov noch nicht besitzt, kannst du das Spiel kaufen und deinen gesamten Fortschritt aus der Arena dorthin übertragen. \nWenn du bereits Escape From Tarkov besitzt, zählen alle in der Arena erzielten Fortschritte (Erfahrung und Fähigkeiten) auch für deinen Charakter in EFT und umgekehrt - Fortschritt in EFT zählt auch für Arena.", "Arena/CustomGame/Lobby/cancel invite to friends": "Freundanfrage abbrechen", "Arena/CustomGame/Lobby/cancel invite to group": "Gruppeneinladung abbrechen", "Arena/CustomGame/Lobby/invite to friends": "Freundanfrage schicken", @@ -12241,19 +12223,16 @@ "Arena/CustomGames/toggle/tournament": "Turnier", "Arena/EndMatchNotification": "Das Match wurde in deiner Abwesenheit beendet.", "Arena/Matching/CustomGames": "Individuelle Spiele", - "Arena/Notification/Selection/Blocked": "Preset-Kauf gesperrt", "Arena/OnCancelMatch": "Matching aufgrund von Ladeproblemen abgebrochen.", "Arena/OnCancelMatch/Group": "Matching aufgrund von Ladeproblemen der Gruppenmitglieder abgebrochen", "Arena/OnCancelMatch/NoServer": "Es konnte kein passender Server gefunden werden. Versuche es später nochmal.", - "Arena/Popups/TwitchDropsHeader": "Geschenk einlösen", - "Arena/Preset/Tooltip/Tab/6": "Eine Sammlung einzigartiger, sammelbarer Presets.", "Arena/Preset/Tooltip/Tab/Assault": "Assault ist die vielseitigste Klasse. Die Presets dieser Klasse haben eine abgestimmte Ausrüstung, die für die meisten Kampfsituationen geeignet ist.", "Arena/Preset/Tooltip/Tab/CQB": "CQB ist die am besten gepanzerte Klasse in der Arena. Die CQB-Presets zeichnen sich durch ihre Gesichtsschilde und eine größere Anzahl an Munition für die Hauptwaffen aus. Presets dieser Klasse eignen sich hervorragend für die Verteidigung von Positionen und längere Feuergefechte.", "Arena/Preset/Tooltip/Tab/Collection": "Presets für besondere Verdienste in der Arena.", "Arena/Preset/Tooltip/Tab/Favorite": "Deine als Favoriten markierten Presets.", - "Arena/Preset/Tooltip/Tab/Marksman": "Marksman ist die Klasse für den Kampf auf weite Entfernungen. Presets dieser Klasse haben oft starke Sekundärwaffen und eine mittelmäßige Schutzweste. Diese hochspezialisierte Klasse ist in Outdoor-Arenen unverzichtbar.", + "Arena/Preset/Tooltip/Tab/Marksman": "Marksman ist die Klasse für den Kampf auf weite Entfernungen. Presets dieser Klasse haben oft starke Sekundärwaffen und einen ausreichenden Rüstungsschutz. Diese hochspezialisierte Klasse ist in Outdoor-Arenen unverzichtbar.", "Arena/Preset/Tooltip/Tab/Rating": "Rang-Presets werden für das Erreichen eines bestimmten Ranges in der Arena vergeben.", - "Arena/Preset/Tooltip/Tab/Scout": "Die Scout-Klasse ist für die Spieler gedacht, die auf ein hohes Risk/Reward-Verhältnis aus sind. Die Presets dieser Klasse sind hauptsächlich mit kurzen SMGs und durchschlagskräftiger Munition bewaffnet, aber üblicherweise schwache Schutzwesten und Helme lassen keinen Spielraum für Fehler.", + "Arena/Preset/Tooltip/Tab/Scout": "Die Scout-Klasse ist für die Spieler gedacht, die auf ein hohes Risk/Reward-Verhältnis aus sind. Die Presets dieser Klasse sind hauptsächlich mit kurzen SMGs und durchschlagskräftiger Munition bewaffnet, aber üblicherweise schwachen Schutzwesten und Helme lassen keinen Spielraum für Fehler.", "Arena/Presets/Blocked": "Gesperrt", "Arena/Presets/Tooltips/Ammo": "Munition", "Arena/Presets/Tooltips/Armor": "Rüstung", @@ -12294,19 +12273,13 @@ "Arena/TeamColor/white_plural": "Weiß", "Arena/TeamColor/yellow": "Gelb", "Arena/TeamColor/yellow_plural": "Gelb", - "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Einer oder mehrere Gruppenmitglieder haben nicht genug Geld.", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Einer oder mehrere Gruppenmitglieder haben nicht genug Klassen-Presets freigeschaltet.", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Einer oder mehrere Gruppenmitglieder haben nicht genug {0}-Presets freigeschaltet.", - "Arena/Tiers/LockedBy/PovertyThreshold": "Du hast nicht genug Geld für die Klasse.", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "Du hast nicht genug Geld für {0}.", - "Arena/Tiers/LockedBy/PresetsUnlocked": "Du hast nicht genug Presets freigeschaltet.", - "Arena/Tiers/LockedBy/UnavailableTier": "Preset-Klasse ist für das Spiel nicht verfügbar.", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} ist zurzeit nicht für das Spiel verfügbar.", - "Arena/Tiers/RankingAvailable {0}": "Ranglistenspiel nicht verfügbar: {0} Presets freigeschaltet", - "Arena/Tiers/Unlocked {0} presets": "{0} Presets freigeschaltet", - "Arena/Tiers/UnlockedPresets": "Presets freigeschaltet", - "Arena/Tooltip/MapSelectedCounter": "Anzahl ausgewählter Orte", - "Arena/Tooltip/MinMapCount {0}": "Wähle mehrere Orte aus. Du musst mindestens {0} Ort(e) ausgewählt haben.", + "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", + "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", + "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", + "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", + "Arena/Tiers/UnlockedPresets": "Presets unlocked", "Arena/UI/Awaiting-Players": "Warte auf Spieler", "Arena/UI/Confirm-Match": "Bestätigen", "Arena/UI/CustomMode": "Individuell", @@ -12325,10 +12298,8 @@ "Arena/UI/Match_leaving_forbidden_body": "Das Spiel zu verlassen wird sich nachteilig auf deine Teammitglieder auswirken.
Du erhältst keine Belohnung bzw. Rating und erhältst unter Umständen einen temporären Bann.", "Arena/UI/Match_leaving_forbidden_header": "Achtung! Du verlässt das Spiel.", "Arena/UI/Match_leaving_permitted_header": "Du kannst das Spiel verlassen, ohne einen Nachteil zu erhalten.", - "Arena/UI/PresetResetToDefault": "Deine Einstellungen für die folgenden Presets wurden auf die Standardeinstellungen zurückgesetzt:", "Arena/UI/Return": "VERBINDEN", "Arena/UI/Return-to-match": "ZUM SPIEL ZURÜCKKEHREN", - "Arena/UI/Selection/Blocked": "Preset vergeben", "Arena/UI/Waiting": "Warten...", "Arena/Ui/ServerFounding": "Nach Server suchen...", "Arena/Widgets/Observer/capture point": "Nehme den Punkt ein", @@ -12383,16 +12354,9 @@ "ArenaUI/PresetView/FreePreset": "KOSTENLOS", "ArenaUI/PresetView/PresetPreview": "Preset-Vorschau", "ArenaUI/PresetView/ShopPrice": "Kosten", - "Arena_AirPit": "Air Pit", - "Arena_AutoService": "Chop Shop", - "Arena_Bay5": "Bay 5", - "Arena_Bowl": "Bowl", - "Arena_Yard": "Block", - "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Finale", "Arena_result_result": "Ergebnisse", "Arena_result_rounds": "Runde", - "Arena_saw": "Sawmill", "Armband": "Armband", "Armor": "Rüstung", "Armor Zone BackHead": "Nacken", @@ -12438,13 +12402,11 @@ "Assault": "Sturmgewehr", "AssaultCarbine Mastering": "Sturmkarabiner", "AssaultDescription": "Die Fähigkeit „Sturmgewehre“ verbessert die gesamte Handhabung, reduziert den Rückstoß und die Zeit zum Nachladen von Sturmgewehren.", - "AssaultLevelingUpDescription": "Die Fähigkeit „Sturmgewehre“ wird durch das Abfeuern und Nachladen des entsprechenden Waffentyps verbessert.", "AssaultRifle": "Sturmgewehre", "AssaultRifle Mastering": "Sturmgewehr", "AssortmentUnlockReward/Description": "Als Belohnung wirst du in der Lage sein, diesen Gegenstand von {0} zu kaufen.", "AttachedLauncher": "Unterlauf-Granatwerfer", - "AttachedLauncherDescription": "Die Fähigkeit „Unterlaufgranatenwerfer“ verbessert die gesamte Handhabung, reduziert den Rückstoß und die Zeit zum Nachladen von Unterlaufgranatenwerfern.", - "AttachedLauncherLevelingUpDescription": "The Underbarrel Launchers weapon skill is improved by firing and reloading the corresponding weapon type.", + "AttachedLauncherDescription": "Fähigkeit „Unterlaufgranatenwerfer-Handhabung“.", "Attention": "Sorgfältigkeit", "Attention!": "Achtung!", "Attention! All items, brought by you into the raid or found in it, have been lost.": "Achtung! Du hast alle mitgebrachten oder gefunden Gegenstände im Raid verloren.", @@ -12455,10 +12417,9 @@ "Attention! You’ve left the raid and lost everything you brought or found in it.": "Achtung! Du hast den Raid verlassen und alles was du mitgebracht und gefunden hast ist verloren.", "AttentionDescription": "Sorgfältigkeit erhöht die Loot-Geschwindigkeit verschiedener Behälter.", "AttentionEliteExtraLootExp": "Verdoppelt deine Erfahrung beim Looten", - "AttentionEliteLuckySearch": "Wahrscheinlichkeit, einen Behälter sofort vollständig zu durchsuchen [{0:0.#%}]", - "AttentionLevelingUpDescription": "The Attention skill is improved by searching containers and bodies.", - "AttentionLootSpeed": "Erhöht die Loot-Geschwindigkeit um [{0:0.#%}]", - "AttentionRareLoot": "Erhöht Item-Untersuchungsgeschwindigkeit um [{0:0.#%}]", + "AttentionEliteLuckySearch": "Wahrscheinlichkeit, einen Behälter sofort vollständig zu durchsuchen [({0})]", + "AttentionLootSpeed": "Erhöht die Loot-Geschwindigkeit um [{0:0%}]", + "AttentionRareLoot": "Erhöht Item-Untersuchungsgeschwindigkeit um [{0:0%}]", "Auctionsdescription": "Auktionen", "Authentic": "Authentisch", "Authorization": "AUTORISIERUNG", @@ -12512,7 +12473,6 @@ "Bloom": "Blendeffekt", "BodyTemperature": "Körpertemperatur", "Boiler Tanks": "Kesselwagen", - "BonfireBuff": "Wärme des Lagerfeuers", "BoozeGenerator": "DESTILLE", "Boss pick": "Boss-Auswahl", "BossType/AsOnline": "Wie in online", @@ -12613,17 +12573,16 @@ "Charge": "Verschluss", "Charisma": "Charisma", "CharismaAdditionalDailyQuests": "Fügt eine tägliche operative Aufgabe hinzu", - "CharismaBuff1": "Verringert Händlerpreise um [{0:0.#%}]", - "CharismaBuff2": "Erhöht die Händler-Loyalitätsrate um [{0:0.#%}]", - "CharismaDailyQuestsRerollDiscount": "Verringert Kosten für das Ersetzen Operativer Aufgaben um [{0:0.#%}]", + "CharismaBuff1": "Verringert Händlerpreise um [{0:0%}]", + "CharismaBuff2": "Erhöht die Händler-Loyalitätsrate um [{0:0%}]", + "CharismaDailyQuestsRerollDiscount": "Verringert Kosten für das Ersetzen Operativer Aufgaben um [{0:0%}]", "CharismaDescription": "Charismatisches Auftreten bietet die Möglichkeit, bei Händlern verschiedenste Rabatte auszuhandeln.", "CharismaEliteBuff1": "Du gehörst zu den Ersten, die die neuesten Handelsnachrichten erhalten", - "CharismaEliteBuff2": "Erhöht Profit jeder Transaktion um [{0:0.#%}]", - "CharismaExfiltrationDiscount": "Verringert Kosten für bezahlte Exfiltrationspunkte um [{0:0.#%}]", + "CharismaEliteBuff2": "Erhöht Profit jeder Transaktion um [{0:0%}]", + "CharismaExfiltrationDiscount": "Verringert Kosten für bezahlte Exfiltrationspunkte um [{0:0%}]", "CharismaFenceRepPenaltyReduction": "Reduziert die Ansehensstrafe bei Fence", - "CharismaHealingDiscount": "Verringert Kosten des Heilservices nach Raidende um [{0:0.#%}]", - "CharismaInsuranceDiscount": "Verringert Versicherungskosten um [{0:0.#%}]", - "CharismaLevelingUpDescription": "The Charisma skill is improved indirectly by leveling the Attention, Perception, and Intellect skills.", + "CharismaHealingDiscount": "Verringert Kosten des Heilservices nach Raidende um [{0:0%}]", + "CharismaInsuranceDiscount": "Verringert Versicherungskosten um [{0:0%}]", "CharismaScavCaseDiscount": "Rabatt auf den Preisen der Scav-Kiste", "ChatScreen/QuestItemsListHeader": "Die folgenden Gegenstände werden zum Speziallager für Quest Items im Versteck geschoben:", "ChatScreen/QuestItemsMoved": "Die Gegenstände wurden erfolgreich verschoben.", @@ -12651,19 +12610,19 @@ "Close the game": "Schließe das Spiel", "CloseBufferGates": "Schließe die Tür", "CloseDoor": "Schließen", - "ClothingItem/Equipped": "Ausgewählt", - "ClothingItem/Obtained": "Erhalten", - "ClothingItem/Preview": "Vorschau", - "ClothingItem/Purchase": "Verfügbar", - "ClothingItem/Unavailable": "Gesperrt", - "ClothingPanel/ExternalObtain": "Zum Kauf auf der Website verfügbar", - "ClothingPanel/InternalObtain": "Verkaufsbedingungen:", - "ClothingPanel/LoyaltyLevel": "Händler\nAnsehensstufe:", - "ClothingPanel/PlayerLevel": "Spieler\nStufe:", - "ClothingPanel/RequiredPayment": "Benötigtes\nGeld:", - "ClothingPanel/RequiredQuest": "Abgeschlossene\nAufgabe:", - "ClothingPanel/RequiredSkill": "Benötigte\nFähigkeitsstufe:", - "ClothingPanel/StandingLevel": "Händler\nAnsehen:", + "ClothingItem/Equipped": "Equipped", + "ClothingItem/Obtained": "Obtained", + "ClothingItem/Preview": "Preview", + "ClothingItem/Purchase": "Available", + "ClothingItem/Unavailable": "Unavailable", + "ClothingPanel/ExternalObtain": "Available for purchase on the website", + "ClothingPanel/InternalObtain": "Trader purchase conditions:", + "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", + "ClothingPanel/PlayerLevel": "Player\nLevel:", + "ClothingPanel/RequiredPayment": "Required\nPayment:", + "ClothingPanel/RequiredQuest": "Completed\ntask:", + "ClothingPanel/RequiredSkill": "Required\nSkill:", + "ClothingPanel/StandingLevel": "Trader\nStanding:", "CloudinessType/Clear": "Klar", "CloudinessType/Cloudy": "Wolkig", "CloudinessType/CloudyWithGaps": "Bewölkt mit Lichtungen", @@ -12740,17 +12699,15 @@ "CovertMovement": "Schleichen", "CovertMovementDescription": "Schleichen verringert die Lautstärke der Schritte und reduziert den Schallradius.", "CovertMovementElite": "Schleichen auf jeglicher Oberfläche ist gleich leise", - "CovertMovementEquipment": "Verringert Geräuschpegel von Waffen und Ausrüstung um [{0:0.#%}]", - "CovertMovementLevelingUpDescription": "The Covert Movement skill is improved by moving quietly.", - "CovertMovementLoud": "Verringert Geräuschpegel von Schritten auf seltenen Oberflächen um [{0:0.#%}]", - "CovertMovementSoundRadius": "Reduziert den Schallradius beim Schleichen um [{0:0.#%}]", - "CovertMovementSoundVolume": "Verringert Geräuschpegel von Schritten auf häufigen Oberflächen um [{0:0.#%}]", - "CovertMovementSpeed": "Erhöht Schleichgeschwindigkeit um [{0:0.#%}]", + "CovertMovementEquipment": "Verringert Geräuschpegel von Waffen und Ausrüstung um [{0:0%}]", + "CovertMovementLoud": "Verringert Geräuschpegel von Schritten auf seltenen Oberflächen um [{0:0%}]", + "CovertMovementSoundRadius": "Reduziert den Schallradius beim Schleichen um [{0:0%}]", + "CovertMovementSoundVolume": "Verringert Geräuschpegel von Schritten auf häufigen Oberflächen um [{0:0%}]", + "CovertMovementSpeed": "Erhöht Schleichgeschwindigkeit um [{0:0%}]", "Crafting": "Herstellung", - "CraftingContinueTimeReduce": "Reduziert die zyklische Produktionsdauer (außer der Bitcoin-Farm) um [{0:0.#%}]", + "CraftingContinueTimeReduce": "Reduziert die zyklische Produktionsdauer (außer der Bitcoin-Farm) um [{0:0.##%}]", "CraftingElite": "Möglichkeit, bis zu zwei verschiedene Gegenstände in einem Bereich gleichzeitig herzustellen", - "CraftingLevelingUpDescription": "The Crafting skill is improved by creating items in the Hideout.", - "CraftingSingleTimeReduce": "Reduziert die Produktionsdauer von Items um [{0:0.#%}]", + "CraftingSingleTimeReduce": "Reduziert die Produktionsdauer von Items um [{0:0.##%}]", "Craftingdescription": "Die Verbesserung der Herstellungsfertigkeit verkürzt die Produktionszeit von Gegenständen - auch von solchen, die zyklisch hergestellt werden.", "Create group dialog": "Gruppenchat erstellen", "CreateDialog": "{0} hat einen Gruppenchat erstellt!", @@ -12779,7 +12736,6 @@ "DISPOSE": "VERWERFEN", "DMR": "Präzisionsgewehre", "DMRDescription": "Die Fähigkeit „Präzisionsgewehre“ verbessert die gesamte Handhabung, reduziert den Rückstoß und die Zeit zum Nachladen von Präzisionsgewehren.", - "DMRLevelingUpDescription": "Die Fähigkeit „Präzisionsgewehre“ wird durch das Abfeuern und Nachladen des entsprechenden Waffentyps verbessert.", "DON'T TRY TO LEAVE": "VERSUCHE DAS SPIEL NICHT ZU VERLASSEN", "DONTKNOW": "KEINE AHNUNG", "DOWN": "RUNTER", @@ -12908,11 +12864,11 @@ "DrawElite": "Stabiles Zielen für die ersten 3 Sekunden bei jedem Ausdauer-Zustand", "DrawMaster": "Zugmeister", "DrawMasterDescription": "Die Fähigkeit „Waffe ziehen“ erhöht die Geschwindigkeit beim Wechseln der Waffe.", - "DrawMasterElite": "Erhöht die Geschwindigkeit des Waffenziehens um [{0:0.#%}]", - "DrawMasterSpeed": "Erhöht die Geschwindigkeit des Waffenziehens um [{0:0.#%}]", - "DrawSound": "Reduziert die Zielgeräuschlautstärke um [{0:0.#%}]", - "DrawSpeed": "Erhöht die Zielgeschwindigkeit um [{0:0.#%}]", - "DrawTremor": "Verringert den Handzittereffekt um [50%] für die ersten 2 Sekunden des Waffenzielens", + "DrawMasterElite": "Erhöht die Geschwindigkeit des Waffenziehens um [{0:0%}]", + "DrawMasterSpeed": "Erhöht die Geschwindigkeit des Waffenziehens um [{0:0%}]", + "DrawSound": "Reduziert die Zielgeräuschlautstärke um [{0:0%}]", + "DrawSpeed": "Erhöht die Zielgeschwindigkeit um [{0:0%}]", + "DrawTremor": "Verringert den Handzittereffekt um 50% für die ersten 2 Sekunden des Waffenzielens", "DropBackpack": "Rucksack fallen lassen", "DropItem": "Item wegwerfen", "Duck": "Hocken", @@ -12934,7 +12890,6 @@ "EAntialiasingMode/None": "Aus", "EAntialiasingMode/TAA_High": "TAA Hoch", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", "EArenaPresetsType/Assault": "Assault", "EArenaPresetsType/CQB": "CQB", "EArenaPresetsType/Marksman": "Marksman", @@ -13136,13 +13091,12 @@ "Enabled": "Aktiviert", "Endurance": "Ausdauer", "EnduranceBreathElite": "Atmung ist unabhängig von der Energie", - "EnduranceBuffBreathTimeInc": "Erhöht die Atemanhaltezeit um [{0:0.#%}]", - "EnduranceBuffEnduranceInc": "Erhöht die Ausdauer um [{0:0.#%}]", - "EnduranceBuffJumpCostRed": "Verringert den Ausdauerverlust beim Springen um [{0:0.#%}]", - "EnduranceBuffRestorationTimeRed": "Verkürzt die Atemerholungszeit um [{0:0.#%}]", + "EnduranceBuffBreathTimeInc": "Erhöht die Atemanhaltezeit um [{0:0%}]", + "EnduranceBuffEnduranceInc": "Erhöht die Ausdauer um [{0:0%}]", + "EnduranceBuffJumpCostRed": "Verringert den Ausdauerverlust beim Springen um [{0:0%}]", + "EnduranceBuffRestorationTimeRed": "Verkürzt die Atemerholungszeit um [{0:0%}]", "EnduranceDescription": "Ausdauer beeinflusst deine Kondition beim Rennen und Springen, wie lange du den Atem anhalten kannst und wie schnell du dich davon erholst.", "EnduranceHands": "Gesteigerte Ausdauer der Hände", - "EnduranceLevelingUpDescription": "The Endurance skill is improved by sprinting without the overweight status effect, and by working out in the Hideout gym.", "EnergyExpensesUp {0}": "Energieverbrauch erhöht um {0}", "EnergyRate": "Energieregeneration", "Enter": "Betreten", @@ -13272,7 +13226,6 @@ "Friends": "Freunde", "Friends invite is already sent": "Du hast bereits eine Freundschaftsanfrage gestellt.", "Friends list": "Freundesliste", - "FrostbiteBuff": "Moranas Frostbeulen", "Full": "Voll", "Full Recovery Time": "Vollständige Genesungszeit", "Fullscreen mode:": "Bildschirmmodus:", @@ -13341,7 +13294,6 @@ "HIT": "TREFFER", "HMG": "Schwere Maschinengewehre", "HMGDescription": "Die Fähigkeit „Schwere Maschinengewehre“ verbessert die gesamte Handhabung, reduziert den Rückstoß und die Zeit zum Nachladen von schweren Maschinengewehren.", - "HMGLevelingUpDescription": "The Heavy Machine Guns weapon skill is improved by firing and reloading the corresponding weapon type.", "HOLD FIRE": "NICHT FEUERN", "HOLDFIRE": "NICHT FEUERN", "HOLDPOSITION": "HALTE POSITION", @@ -13372,27 +13324,25 @@ "Health/ItemResourceDepleted": "Gegenstand wurde aufgebraucht", "Health/PlayerIsDead": "Charakter ist tot", "HealthAndPhysics": "Gesundheit und Körperbau", - "HealthBreakChanceRed": "Verringert die Frakturwahrscheinlichkeit um [{0:0.#%}]", + "HealthBreakChanceRed": "Verringert die Frakturwahrscheinlichkeit um [{0:0%}]", "HealthDescription": "Gute Gesundheit beschleunigt die Erholung von den erlittenen Schäden in den Raids, verringert die Wahrscheinlichkeit von Frakturen und senkt den Nahrungs- und Flüssigkeitsbedarf.", "HealthEliteAbsorbDamage": "Schadenabsorption", "HealthElitePosion": "Vergiftungsresistenz [({0} %)]", - "HealthEnergy": "Verringert Energieverbrauch um [{0:0.#%}]", - "HealthHydration": "Verringert Dehydrierrate um [{0:0.#%}]", - "HealthLevelingUpDescription": "The Health skill is improved indirectly by leveling the Strength, Endurance, and Vitality skills.", - "HealthOfflineRegenerationInc": "Erhöht Gesundheitsregeneration außerhalb eines Raids um [{0:0.#%}]", + "HealthEnergy": "Verringert Energieverbrauch um [{0:0%}]", + "HealthHydration": "Verringert Dehydrierrate um [{0:0%}]", + "HealthOfflineRegenerationInc": "Erhöht Gesundheitsregeneration außerhalb eines Raids um [{0:0%}]", "HealthRate": "Gesundheitsregeneration", "HealthTreatment/SkipHealthTreatmentDialogue": "Achtung! Deine Gesundheit ist niedrig.\nÜberspringe Gesundheitsversorgung und\nfahre zum HAUPTMENÜ fort?", "Heating": "HEIZUNG", "Heavy": "Schwer", "HeavyBleeding": "Starke Blutung", - "HeavyVestBluntThroughputDamageReduction": "Verringert stumpfen Schaden zu durch Schwere Rüstung geschützte Körperteile um [{0:0.#%}]", - "HeavyVestDeteriorationChanceOnRepairReduce": "Wahrscheinlichkeit keine Abnutzung während der Reparatur hinzuzufügen [50%]", - "HeavyVestMoveSpeedPenaltyReduction": "Verringert den Geschwindigkeitsnachteil beim Tragen schwerer Rüstung um [{0:0.#%}]", + "HeavyVestBluntThroughputDamageReduction": "Verringert stumpfen Schaden zu durch Schwere Rüstung geschützte Körperteile um [{0:0%}]", + "HeavyVestDeteriorationChanceOnRepairReduce": "Wahrscheinlichkeit keine Abnutzung während der Reparatur hinzuzufügen (50%)", + "HeavyVestMoveSpeedPenaltyReduction": "Verringert den Geschwindigkeitsnachteil beim Tragen schwerer Rüstung um [{0:0%}]", "HeavyVestNoBodyDamageDeflectChance": "Möglichkeit eine Kugel durch schwere Rüstung abzulenken", - "HeavyVestRepairDegradationReduction": "Verringert den Verschleiß beim Nutzen von Reparaturausrüstung um [{0:0.#%}]", + "HeavyVestRepairDegradationReduction": "Verringert den Verschleiß beim Nutzen von Reparaturausrüstung um [{0:0%}]", "HeavyVests": "Schwere Schutzwesten", "HeavyVestsDescription": "Die Fähigkeit „Schwere Schutzwesten“, reduziert den Projektil Penetrationsschaden, Explosivschaden an Panzerung und Körper und verbessert die Beweglichkeit.", - "HeavyVestsLevelingUpDescription": "The Heavy Vests skill is improved by repairing heavy body armor and ballistic plates with repair kits.", "Hideout/Craft/ToolMarkerTooltip": "Dieser Gegenstand wird als Hilfswerkzeug verwendet. Er wird nach der Produktion in dein Versteck zurückgelegt.", "Hideout/Handover window/Caption/All weapons": "Alle Waffen", "Hideout/Handover window/Message/Items in stash selected:": "Ausgewählte Gegenstände im Versteck:", @@ -13405,9 +13355,8 @@ "HideoutExtraSlots": "+2 Plätze für Treibstoffkanister\n+2 Plätze für Wasserfilter\n+2 Plätze für Luftfilter\n+2 Lagerplätze für Bitcoins in der Bitcoin-Farm", "HideoutInteractions/TransferItems": "Übertrage Gegenstände", "HideoutManagement": "Versteckverwaltung", - "HideoutManagementLevelingUpDescription": "The Hideout Management skill is improved by creating items and upgrading zones in the Hideout.", - "HideoutResourceConsumption": "Verringert Treibstoff, Luft- und Wasserfilter-Verbrauchsrate um [{0:0.#%}]", - "HideoutZoneBonusBoost": "Erhöht alle Prozent-Boni der Versteckzonen um [{0:0.#}%]", + "HideoutResourceConsumption": "Verringert Treibstoff, Luft- und Wasserfilter-Verbrauchsrate um [{0:0%}]", + "HideoutZoneBonusBoost": "Erhöht alle Prozent-Boni der Versteckzonen um [{0:0}%]", "Hideout\\Craft\\ToolMarketTooltip": "", "Hideout_area_16_stage_3_description": "Ein vollwertiger Bereich im Versteck, der der Aufbewahrung von Sammlerstücken gewidmet ist.", "Hiding objective {0:F1}": "Verstecke Gegenstand {0:F1}", @@ -13442,14 +13391,13 @@ "Identifier": "Quell-Zeichenfolge", "Illumination": "BELEUCHTUNG", "Immunity": "Immunität", - "ImmunityAvoidPoisonChance": "Erhöht die Chance der Vermeidung einer Vergiftung um [{0:0.#%}]", + "ImmunityAvoidPoisonChance": "Erhöht die Chance der Vermeidung einer Vergiftung um [{0:0%}]", "ImmunityDescription": "Immunität beeinflusst die Anfälligkeit für Krankheiten und die Effektivität ihrer Behandlung.", - "ImmunityLevelingUpDescription": "The Immunity skill is improved by being under the effects of poisoning and other negative effects of stimulants.", - "ImmunityMiscEffects": "Verringert den negativen Effekt von Stimulatoren, Nahrung und Wasser um [{0:0.#%}]", - "ImmunityMiscEffectsChance": "Wahrscheinlichkeit der Immunität gegenüber negativen Effekten von Stimulatoren, Nahrung oder Getränke von bis zu [{0:0.#%}]", - "ImmunityPainKiller": "Erhöht die Effektdauer von Schmerzmitteln um [{0:0.#%}]", - "ImmunityPoisonBuff": "Verringert die Stärke von Giften um [{0:0.#%}]", - "ImmunityPoisonChance": "Chance auf Immunität gegenüber Vergiftungen [{0:0.#%}]", + "ImmunityMiscEffects": "Verringert den negativen Effekt von Stimulatoren, Nahrung und Wasser um [{0:0%}]", + "ImmunityMiscEffectsChance": "Wahrscheinlichkeit der Immunität gegenüber negativen Effekten von Stimulatoren, Nahrung oder Wasser von bis zu [{0:0%}]", + "ImmunityPainKiller": "Erhöht die Effektdauer von Schmerzmitteln um [{0:0%}]", + "ImmunityPoisonBuff": "Verringert die Stärke von Giften um [{0:0%}]", + "ImmunityPoisonChance": "Chance auf Immunität gegenüber Vergiftungen [({0:0%})]", "In equipment": "BEREITS VORHANDEN", "InMenu": "Menü", "InRaid": "Raid", @@ -13472,10 +13420,9 @@ "IntellectEliteAmmoCounter": "Munitions-Zähler", "IntellectEliteContainerScope": "Rate den Behälterinhalt ohne ihn zu durchsuchen", "IntellectEliteNaturalLearner": "Du brauchst keine Anleitung für das Untersuchen von Gegenständen", - "IntellectLearningSpeed": "Erhöht Item-Untersuchungsgeschwindigkeit um [{0:0.#%}]", - "IntellectLevelingUpDescription": "The Intellect skill is improved by examining previously unidentified items and repairing weapons.", - "IntellectRepairPointsCostReduction": "Reduziert Menge der verwendeten Reparaturausrüstungs-Punkte um [{0:0.#%}]", - "IntellectWeaponMaintance": "Erhöht Effektivität der Waffenreparatur um [{0:0.#%}]", + "IntellectLearningSpeed": "Erhöht Item-Untersuchungsgeschwindigkeit um [{0:0%}]", + "IntellectRepairPointsCostReduction": "Reduziert Menge der verwendeten Reparaturausrüstungs-Punkte um [{0:0%}]", + "IntellectWeaponMaintance": "Erhöht Effektivität der Waffenreparatur um [{0:0%}]", "IntelligenceCenter": "INFORMATIONSZENTRUM", "Intensity:": "Intensität:", "Interact": "Benutzen", @@ -13645,7 +13592,6 @@ "LL": "AS", "LMG": "Leichte Maschinengewehre", "LMGDescription": "Die Fähigkeit „Leichte Maschinengewehre“ verbessert die gesamte Handhabung, reduziert den Rückstoß und die Zeit zum Nachladen von leichten Maschinengewehren.", - "LMGLevelingUpDescription": "The Light Machine Guns weapon skill is improved by firing and reloading the corresponding weapon type.", "LOAD": "LADEN", "LOAD FROM DIRECTORY...": "Aus Verzeichnis laden...", "LOAD FROM FILE...": "Aus Datei laden...", @@ -13665,9 +13611,8 @@ "LastHero": "LastHero", "LastHeroDescription": "Ein Kampf mit den Gegnern in einem endlosen Feuergefecht. Es wird nur einen Gewinner geben.", "LastHeroDescriptionShort": "Du bist auf dich allein gestellt", - "Launcher": "Granatenwerfer", - "LauncherDescription": "Die Fähigkeit „Granatenwerfer“ verbessert die gesamte Handhabung, reduziert den Rückstoß und die Zeit zum Nachladen von Granatenwerfern.", - "LauncherLevelingUpDescription": "The Grenade Launchers weapon skill is improved by firing and reloading the corresponding weapon type.", + "Launcher": "Raketenwerfer", + "LauncherDescription": "Fähigkeit „Granatenwerfer-Handhabung“.", "LeanLockLeft": "Nach links lehnen", "LeanLockRight": "Nach rechts lehnen", "LeanX negative": "Stufenlos nach links lehnen", @@ -13698,13 +13643,12 @@ "Light": "Leicht", "LightBleeding": "Leichte Blutung", "LightVestBleedingProtection": "Körperteile bedeckt durch leichte Rüstung sind immun gegen Blutungen", - "LightVestDeteriorationChanceOnRepairReduce": "Verringert Wahrscheinlichkeit der Abnutzung während der Reparatur um [50%]", - "LightVestMeleeWeaponDamageReduction": "Verringert Nahkampfschäden von durch leichte Rüstung geschützten Körperteilen um [{0:0.#%}]", - "LightVestMoveSpeedPenaltyReduction": "Verringert den Geschwindigkeitsnachteil beim Tragen leichter Rüstung um [{0:0.#%}]", - "LightVestRepairDegradationReduction": "Verringert den Verschleiß beim Nutzen von Reparaturausrüstung um [{0:0.#%}]", + "LightVestDeteriorationChanceOnRepairReduce": "Wahrscheinlichkeit keine Abnutzung während der Reparatur hinzuzufügen (50%)", + "LightVestMeleeWeaponDamageReduction": "Verringert Nahkampfschäden von durch leichte Rüstung geschützten Körperteilen um [{0:0%}]", + "LightVestMoveSpeedPenaltyReduction": "Verringert den Geschwindigkeitsnachteil beim Tragen leichter Rüstung um [{0:0%}]", + "LightVestRepairDegradationReduction": "Verringert den Verschleiß beim Nutzen von Reparaturausrüstung um [{0:0%}]", "LightVests": "Leichte Schutzwesten", "LightVestsDescription": "Die Fertigkeit „Leichte Schutzwesten“ verbessert die Beweglichkeit und reduziert die Anzahl erhaltener Penetrationen und den Schaden von Nahkampfangriffen.", - "LightVestsLevelingUpDescription": "The Light Vests skill is improved by repairing light body armor and ballistic plates with repair kits.", "Lighthouse": "Lighthouse", "Lighthouse_pass": "Weg nach Lighthouse", "Lighting quality:": "Beleuchtungsqualität:", @@ -13756,7 +13700,6 @@ "MAP": "KARTEN", "MASTERING": "MEISTERUNG", "MATERIAL": "Material", - "MAX AMMO DAMAGE": "Schaden", "MAXCOUNT": "MAXIMALKAPAZITÄT", "MAXIMUM THROW DAMAGE": "FRAGMENTHÖCHSTSCHADEN", "MED USE TIME": "MEDIZIN-ANWENDUNGSDAUER", @@ -13805,12 +13748,11 @@ "MagDrills": "Aufmunitionieren", "MagDrillsDescription": "Die Fähigkeit bezieht sich auf die Magazin-Handhabung – Laden und Entladen der Munition, Prüfen der verbleibenden Patronen.", "MagDrillsInstantCheck": "Fülle von Magazinen ist beim Bewegen in das eigene Inventar sofort erkennbar", - "MagDrillsInventoryCheckAccuracy": "Erhöht die Genauigkeit der Magazinschätzung beim Prüfen über das Kontextmenü um [{0:0.#}%]", - "MagDrillsInventoryCheckSpeed": "Erhöht die Geschwindigkeit der Magazinschätzung durch das Kontextmenü um [{0:0.#}%]", - "MagDrillsLevelingUpDescription": "The Mag Drills skill is improved by loading, unloading, and checking magazines.", + "MagDrillsInventoryCheckAccuracy": "Erhöht die Genauigkeit der Magazinschätzung beim Prüfen über das Kontextmenü um [{0}%]", + "MagDrillsInventoryCheckSpeed": "Erhöht die Geschwindigkeit der Magazinschätzung durch das Kontextmenü um [{0}%]", "MagDrillsLoadProgression": "Laden des Magazins beschleunigt sich mit jeder Patrone", - "MagDrillsLoadSpeed": "Erhöht die Geschwindigkeit des Magazinauffüllens um [{0:0.#}%]", - "MagDrillsUnloadSpeed": "Erhöht die Geschwindigkeit des Magazinentladens um [{0:0.#}%]", + "MagDrillsLoadSpeed": "Erhöht die Geschwindigkeit des Magazinauffüllens um [{0}%]", + "MagDrillsUnloadSpeed": "Erhöht die Geschwindigkeit des Magazinentladens um [{0}%]", "MagPreset/CaliberNotSelected": "Kein Kaliber ausgewählt", "MagPreset/DiscardCahangesDescription": "Du hast nicht gespeicherte Änderungen. Bist du sicher, dass du diese verwerfen möchtest?", "MagPreset/Error/ContainsMissingItems": "Munition fehlt:", @@ -13881,27 +13823,24 @@ "Meds": "Medizin", "Melee": "Nahkampf", "MeleeDescription": "Fähigkeit „Nahkampfwaffen-Handhabung“.", - "MeleeLevelingUpDescription": "The Melee skill is improved by striking enemies with melee weapons.", "Memory": "Erinnerungsvermögen", "MemoryDescription": "Antrainierte Fähigkeiten halten länger an, bevor sie wieder verlernt werden", "MemoryEliteMentalNoDegradation": "Du verlernst keine Fähigkeiten mehr", - "MemoryLevelingUpDescription": "The Memory skill is improved by", - "MemoryMentalForget1": "Verringert die Verlernrate der Skills um [{0:0.#%}]", - "MemoryMentalForget2": "Verringert den Rückschritt der Fähigkeitsstufen um [{0:0.#%}]", + "MemoryMentalForget1": "Verringert die Verlernrate der Skills um [{0:0%}]", + "MemoryMentalForget2": "Verringert den Rückschritt der Fähigkeitsstufen um [{0:0%}]", "Mental": "Psychisch", "Merchant": "Händler", "Metabolism": "Metabolismus", "MetabolismDescription": "Ein guter Stoffwechsel verbessert und erhöht die Wirksamkeit der Nahrungsaufnahme. Des Weiteren erhält er physische Fähigkeiten länger aufrecht.", "MetabolismEliteBuffNoDyhydration": "Du erhältst keinen Schaden durch Erschöpfung und Dehydration", "MetabolismEliteNoForget": "Du verlernst keine physischen Fähigkeiten mehr", - "MetabolismEnergyExpenses": "Verringert Energieverbrauch und Dehydrierrate um [{0:0.#%}]", - "MetabolismLevelingUpDescription": "The Metabolism skill is improved by consuming energy and water supplies.", - "MetabolismMiscDebuffTime": "Verringert Dauer der Nebenwirkungen von Stimulatoren, Essen und Trinken um [{0:0.#%}]", - "MetabolismPhysicsForget": "Verringert die Verlernrate der physischen Skills um [{0:0.#%}]", + "MetabolismEnergyExpenses": "Verringert Energieverbrauch und Dehydrierrate um [{0:0%}]", + "MetabolismMiscDebuffTime": "Verringert Dauer der Nebenwirkungen von Stimulatoren, Essen und Trinken um [{0:0%}]", + "MetabolismPhysicsForget": "Verringert die Verlernrate der physischen Skills um [{0:0%}]", "MetabolismPhysicsForget2": "Verringert maximale Verlernrate von physischen Fähigkeiten", "MetabolismPhysicsNoForget": "Physische Fähigkeiten können nicht länger vergessen werden", - "MetabolismPoisonTime": "Verringert die Effektdauer von Vergiftungen um [{0:0.#%}]", - "MetabolismRatioPlus": "Erhöht positive Effekte von Essen und Trinken um [{0:0.#%}]", + "MetabolismPoisonTime": "Verringert die Effektdauer von Vergiftungen um [{0:0%}]", + "MetabolismRatioPlus": "Erhöht positive Effekte von Essen und Trinken um [{0:0%}]", "Microphone sensitivity:": "Mikrofonempfindlichkeit:", "MildMusclePain": "Milde Muskelschmerzen", "Military Checkpoint": "Scav-Kontrollpunkt", @@ -14081,7 +14020,7 @@ "OfflineRaid/StartAsGroup": "Als Gruppe starten", "OfflineRaid/startasgrouptooltip": "Mit dieser Option ausgewählt, starten alle Spieler Seite an Seite", "OfflineRaidScreen/WarningHeader": "Achtung! Dein Fortschritt wird im Trainingsmodus nicht gespeichert!", - "OfflineRaidScreen/WarningText": "Der Co-Op-Modus benötigt die Edge of Darkness Spieledition oder die Co-Op-Erweiterung für alle Gruppenmitglieder.\nDas Spiel wird auf dedzierten Servern von Escape from Tarkov stattfinden.", + "OfflineRaidScreen/WarningText": "Das Co-Op-Spiel benötigt die Edge of Darkness Spielversion für alle Gruppenmitglieder.\nDas Spiel wird auf dedzierten Servern von Escape from Tarkov stattfinden.", "Old Azs Gate": "Tor der alten Tankstelle", "Old Gas Station": "Alte Tankstelle", "Old Road Gate": "Tor zur alten Straße", @@ -14136,11 +14075,10 @@ "Penalties": "Abzug für Fehlschläge", "Pending requests": "Offene Anfragen", "Perception": "Wahrnehmung", - "PerceptionDescription": "Das Meistern der Fähigkeit „Wahrnehmung“ vergrößert die Distanz, in der Geräusche wahrgenommen werden, verbessert die Zielgenauigkeit und erleichtert das Auffinden von nahegelegenem Loot.", - "PerceptionFov": "Erhöht Ziel-Konzentration um [{0:0.#%}]", - "PerceptionHearing": "Erhöht Wahrnehmungsradius von Geräuschen um [{0:0.#%}]", - "PerceptionLevelingUpDescription": "The Perception skill is improved by finding and picking up any items.", - "PerceptionLootDot": "Erhöht den Loot-Wahrnehmungsradius um [{0:0.#%}]", + "PerceptionDescription": "Das Meistern der Fähigkeit „Wahrnehmung“ vergrößert die Distanz, in der Geräusche wahrgenommen werden, verbessert die Zielgenauigkeit und erleichtert das Auffinden von nahegelegener Beute.", + "PerceptionFov": "Erhöht Ziel-Konzentration um [{0:0%}]", + "PerceptionHearing": "Erhöht Wahrnehmungsradius von Geräuschen um [{0:0%}]", + "PerceptionLootDot": "Erhöht den Loot-Wahrnehmungsradius um [{0:0%}]", "PerceptionmEliteNoIdea": "Lootnähe-Mitteilung", "Perish": "Umgekommen", "Physical": "Physisch", @@ -14148,7 +14086,6 @@ "Pistol": "Pistolen", "Pistol Mastering": "Pistole", "PistolDescription": "Die Fähigkeit „Pistolen“ verbessert die gesamte Handhabung, reduziert den Rückstoß und die Zeit zum Nachladen von Pistolen.", - "PistolLevelingUpDescription": "The Pistols weapon skill is improved by firing and reloading the corresponding weapon type.", "PlaceOfFame": "TROPHÄENSCHRANK", "PlantLocationDescription": "Das Gewerbegebiet und die Anlagen der Chemiefabrik Nr. 16 wurden illegal an die TerraGroup vermietet. Während den Auftragskriegen wurde das Gebiet zum Schauplatz vieler Gefechte zwischen USEC und BEAR, welche die Kontrolle über den Industriebezirk von Tarkov sichern sollten. Später dienten die Anlagen als Zufluchtsort für verbliebene Zivilisten, Scavs und verschiedene militärische Kräfte, einschließlich der zerstreuten Überreste von USEC und BEAR.", "Player": "Spieler", @@ -14219,10 +14156,9 @@ "Prone": "Hinlegen", "ProneMovement": "Liegende Bewegung", "ProneMovementDescription": "Das Meistern der Fähigkeit „Liegende Bewegung“ macht die Bewegung im Liegen schneller und leiser.", - "ProneMovementElite": "Erhöht die Kriechgeschwindigkeit um [{0:0.#%}]", - "ProneMovementLevelingUpDescription": "The Prone Movement skill is improved by moving while in a prone position.", - "ProneMovementSpeed": "Erhöht die Kriechgeschwindigkeit um [{0:0.#%}]", - "ProneMovementVolume": "Verringert Kriechgeräusche um [{0:0.#%}]", + "ProneMovementElite": "Erhöht die Kriechgeschwindigkeit um [{0:0%}]", + "ProneMovementSpeed": "Erhöht die Kriechgeschwindigkeit um [(+{0:0%})]", + "ProneMovementVolume": "Verringert Kriechgeräusche [(+{0:0 %})]", "Protect objective {0:F1}": "Schütze das Ziel {0:F1}", "QUEST ITEM": "QUEST ITEM", "QUEST ITEMS": "WICHT.ITEMS", @@ -14410,9 +14346,8 @@ "Recoil Up": "Vertikalrückstoß", "RecoilControl": "Rückstoßkontrolle", "RecoilControlDescription": "Eine bessere Kontrolle des Rückstoßes, reduziert die horizontale Streuung, wodurch der Rückstoß berechenbarer wird.", - "RecoilControlElite": "Erhöht Rückstoßkontrolle um [{0:0.#%}]", - "RecoilControlImprove": "Erhöht Rückstoßkontrolle um [{0:0.#%}]", - "RecoilControlLevelingUpDescription": "The Recoil Control skill is improved by continuous shooting. The higher the base recoil of the weapon, the faster the skill improves.", + "RecoilControlElite": "Erhöht Rückstoßkontrolle um [{0:0%}]", + "RecoilControlImprove": "Erhöht Rückstoßkontrolle um [{0:0%}]", "RecommendedVRAM:": "Empfohlener VRAM", "Reconnection is not available at this moment due to testing purposes": "Das Wiederverbinden ist aufgrund von Testzwecken nicht verfügbar", "RedRebel_alp": "Bergsteigerpfad", @@ -14442,7 +14377,6 @@ "Report game bug abuse": "Bug-Ausnutzung melden", "Report offensive nickname": "Benutzernamen melden", "Report suspected cheat use": "Mutmaßliche Cheat-Nutzung melden", - "Report suspicious profile": "Verdächtiges Profil melden", "ReportAbuseBug": "Bug-Ausnutzung melden", "ReportAbuseVoip": "VoIP- & Radio-Missbrauch melden", "ReportCheater": "Mutmaßliche Cheat-Nutzung melden", @@ -14455,9 +14389,9 @@ "Reports/Friends/UnBanMessage": "Du darfst deine Freundesliste wieder verwalten", "Reports/Online/BanMessage": "Du bist nicht mehr berechtigt, an Online-Raids teilzunehmen", "Reports/Online/UnBanMessage": "Du darfst wieder an Online-Raids teilnehmen", - "Reports/Ragfair/BanMessage": "Du bist vom Flohmarkt gebannt.", + "Reports/Ragfair/BanMessage": "Du bist vom Flohmarkt gebannt", "Reports/Ragfair/ReportOffer": "Verdächtiges Angebot melden", - "Reports/Ragfair/UnBanMessage": "Du bist nicht mehr vom Flohmarkt gebannt.", + "Reports/Ragfair/UnBanMessage": "Du bist nicht länger vom Flohmarkt gebannt", "Reports/Trading/BanMessage": "Du bist nicht mehr berechtigt zu handeln", "Reports/Trading/UnBanMessage": "Du darfst wieder handeln", "Reports/Voip/BanMessage": "Du wurdest vom VoIP gebannt", @@ -14477,8 +14411,7 @@ "Revert your settings to default?": "Bist du dir sicher, dass du deine Einstellungen auf die Standardwerte zurücksetzen möchtest?", "Revolver": "Revolver", "Revolver Mastering": "Revolver", - "RevolverDescription": "Die Fähigkeit „Revolver“ verbessert die gesamte Handhabung, reduziert den Rückstoß und die Zeit zum Nachladen von Revolvern.", - "RevolverLevelingUpDescription": "The Revolvers weapon skill is improved by firing and reloading the corresponding weapon type.", + "RevolverDescription": "Fähigkeit „Revolver-Handhabung“.", "RezervBase": "Reserve", "Rig": "Tragesystem", "Right Arm": "RECHTER ARM", @@ -14527,8 +14460,7 @@ "SKILLS_SPEED_DOWN": "Aufstiegsgeschwindigkeit verringert", "SKILLS_SPEED_UP": "Aufstiegsgeschwindigkeit erhöht", "SMG": "Maschinenpistolen", - "SMGDescription": "Die Fähigkeit „Maschinenpistolen“ verbessert die gesamte Handhabung, reduziert den Rückstoß und die Zeit zum Nachladen von Maschinenpistolen.", - "SMGLevelingUpDescription": "The Submachine guns weapon skill is improved by firing and reloading the corresponding weapon type.", + "SMGDescription": "Die Fähigkeit „MP“ verbessert die gesamte Handhabung, reduziert den Rückstoß und die Zeit zum Nachladen von Maschinenpistolen.", "SNIPERPHRASE": "SNIPER", "SO": "SO", "SOUND": "AUDIO", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "Verkaufssumme von {0} um {1} erhöht", "Sandbox": "Ground Zero", "Sandbox_VExit": "Auto bei der Polizeiabsperrung", - "Sandbox_high": "Ground Zero", "Saturation:": "Sättigung:", "Savage matchmaker": "Starte einen Raid als Scav, einem lokal ansässigen Banditen mit zufälliger Ausrüstung. Tarkov ist deine Heimat, du bestimmst die Regeln!", "SavageBannerDescription": "Ein Raid als Scav unterscheidet sich von einem Raid mit deinem PMC-Hauptcharakter. Spieler-Scavs erscheinen zu unterschiedlichen Zeitpunkten und an zufälligen Orten auf der Karte. Auch die Gesundheit und die Ausrüstung sind zufällig. Als Scav hast du die Möglichkeit deine gesammelte Beute in das Inventar deines PMC-Charakters zu transferieren. Erfahrungspunkte, die mit dem Scav gesammelt werden, werden nicht auf den PMC übertragen. Wirst du als Scav getötet, hat das keinen Einfluss auf deinen Fortschritt.", @@ -14585,7 +14516,6 @@ "Search": "Durchsuchen", "SearchDescription": "Das Meistern der Fähigkeit „Durchsuchen“ erlaubt es Körper und Behälter schneller und effizienter zu durchsuchen.", "SearchDouble": "Durchsuche zwei Container auf einmal", - "SearchLevelingUpDescription": "Die Fähigkeit „Suchen“ wird durch das Durchsuchen von Behältern verbessert.", "SecondPrimaryWeapon": "Auf dem Rücken", "SecondaryWeapon": "Holsterwaffe ausrüsten", "SecuredContainer": "Container", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "Einige Einstellungen wurden geändert. Möchtest du diese speichern?", "Settings/Sound/BinauralSound": "Binaurales Audio", "Settings/Sound/ChatVolume": "Lautstärke des Chats:", - "Settings/Sound/CommentatorVolume": "Kommentator-Lautstärke:", "Settings/Sound/Device": "Audiogerät", "Settings/Sound/HideoutVolume": "Lautstärke im Versteck:", "Settings/Sound/InterfaceVolume": "Interface-Lautstärke:", "Settings/Sound/MusicOnRaidEnd": "Musik am Raidende", "Settings/Sound/MusicVolume": "Musiklautstärke:", "Settings/Sound/OverallVolume": "Gesamtlautstärke:", - "Settings/Sound/ReadyToMatchSoundVolume": "Matchannahmebildschirm-Lautstärke:", "Settings/UnavailablePressType": "Nicht verfügbar", "SevereMusclePain": "Schwere Muskelschmerzen", "Shack": "Kontrollpunkt zur Militärbasis", @@ -14676,8 +14604,7 @@ "Shorl_free_scav": "Weg nach Shoreline", "Shotgun": "Schrotflinten", "Shotgun Mastering": "Schrotflinte", - "ShotgunDescription": "Die Fähigkeit „Schrotflinten“ verbessert die gesamte Handhabung, den Rückstoß und die Zeit zum Nachladen von Schrotflinten.", - "ShotgunLevelingUpDescription": "The Shotguns weapon skill is improved by firing and reloading the corresponding weapon type.", + "ShotgunDescription": "Die Fähigkeit „Schrotflinten“ verbessert die gesamte Handhabung und den Rückstoß von Schrotflinten.", "Show icons": "Zeige Symbole", "Show:": "Zeige: ", "SightingRange": "SICHTWEITE", @@ -14698,10 +14625,9 @@ "Smg Mastering": "Maschinenpistole", "Smuggler's Boat": "Schmugglerboot", "Smugglers_Trail_coop": "Schmugglerpfad (Co-Op)", - "Sniper": "Repetiergewehre", + "Sniper": "Scharfschützengewehre", "Sniper Roadblock": "Scharfschützen-Blockade", - "SniperDescription": "Die Fähigkeit „Repetiergewehre“ verbessert die gesamte Handhabung, reduziert den Rückstoß und die Zeit zum Nachladen von Repetiergewehren.", - "SniperLevelingUpDescription": "The Bolt-action rifles weapon skill is improved by firing and reloading the corresponding weapon type.", + "SniperDescription": "Die Fähigkeit „Scharfschützengewehr“ verbessert die gesamte Handhabung, reduziert den Rückstoß und die Zeit zu Nachladen von Scharfschützengewehren.", "SniperRifle": "Scharfschützengewehre", "SniperRifle Mastering": "Scharfsch.gewehr", "Sniper_exit": "Mira-Allee", @@ -14734,8 +14660,6 @@ "StartInGroup": "Zusammen", "StartLookingForGroup": "Starte Gruppensuche", "StartNotInGroup": "Getrennt", - "StashLinesExternalObtain": "Lagererweiterung", - "StashLinesExternalObtain/Tooltip": "Die Lagererweiterung kann auf der Webseite erworben werden.", "StatFoundMoneyEUR": "Gefundene Euro", "StatFoundMoneyRUB": "Gefundene Rubel", "StatFoundMoneyUSD": "Gefundene US Dollar", @@ -14770,22 +14694,20 @@ "StomachBloodloss": "Abdominale Blutung", "Stop looking for group": "Gruppensuche abbrechen", "Strength": "Stärke", - "StrengthBuffAim": "Verringert Ausdauerverbrauch des Zielens um [{0:0.#%}]", + "StrengthBuffAim": "Verringert Ausdauerverbrauch des Zielens um [{0:0%}]", "StrengthBuffElite": "Ausgerüstete Waffen zählen nicht zum Charaktergewicht (davon ausgenommen: Waffen im Rucksack)", - "StrengthBuffJumpHeightInc": "Erhöht die Sprunghöhe um [{0:0.#%}]", - "StrengthBuffLiftWeightInc": "Erhöht das Trage-Gewicht um [{0:0.#%}]", - "StrengthBuffMeleeCrits": "Wahrscheinlichkeit von kritischem Nahkampfschaden in Höhe von [{0:0.#%}]", - "StrengthBuffMeleePowerInc": "Erhöht die Nahkampfstärke um [{0:0.#%}]", - "StrengthBuffSprintSpeedInc": "Erhöht Bewegungs- und Sprintgeschwindigkeit um [{0:0.#%}]", - "StrengthBuffThrowDistanceInc": "Erhöht die Wurfweite um [{0:0.#%}]", + "StrengthBuffJumpHeightInc": "Erhöht die Sprunghöhe um [{0:0%}]", + "StrengthBuffLiftWeightInc": "Erhöht das Trage-Gewicht um [{0:0%}]", + "StrengthBuffMeleeCrits": "Chance kritischen Nahkampfschaden anzurichten [({0})]", + "StrengthBuffMeleePowerInc": "Erhöht die Nahkampfstärke um [{0:0%}]", + "StrengthBuffSprintSpeedInc": "Erhöht Bewegungs- und Sprintgeschwindigkeit um [{0:0%}]", + "StrengthBuffThrowDistanceInc": "Erhöht die Wurfweite um [{0:0%}]", "StrengthDescription": "Mehr Stärke erlaubt es dir höher zu springen, schneller zu sprinten, härter zuzuschlagen, weiter zu werfen und mehr zu tragen.", - "StrengthLevelingUpDescription": "The Strength skill is improved by sprinting with the overweight status effect, throwing grenades, using melee weapons, and by working out in the Hideout gym.", "StressBerserk": "Zugriff auf den Berserker-Modus", - "StressPainChance": "Verringert die Chance eines Schmerzschocks um [{0:0.#%}]", + "StressPainChance": "Verringert die Chance eines Schmerzschocks um [{0:0%}]", "StressResistance": "Stressresistenz", "StressResistanceDescription": "Stressresistenz erhöht die Chance einem durch Verletzung erlittenen Schock zu widerstehen und verringert das Zittern der Hände und des Körpers.", - "StressResistanceLevelingUpDescription": "The Stress Resistance skill is improved by receiving damage. Having the Pain status effect without using painkillers also improves this skill.", - "StressTremor": "Reduziert die Stärke des Handzitterns um [{0:0.#%}]", + "StressTremor": "Reduziert die Stärke des Handzitterns um [{0:0%}]", "StringSeparator/Or": " oder ", "Stun": "Betäubt", "Subtask completed:": "Teilauftrag abgeschlossen:", @@ -14851,9 +14773,8 @@ "Summary": "Zusammenfassung", "Surgery": "Chirurgie", "SurgeryDescription": "Die Fähigkeit Feld-Chirurgie in kritischen Situationen einsetzen zu können kann dein Leben retten. Um so besser du diese Fähigkeit beherrschst, desto schneller und besser kannst du Operationen durchführen.", - "SurgeryLevelingUpDescription": "The Surgery skill is improved by using surgical kits on injured body parts.", - "SurgeryReducePenalty": "Verringert den LP-Abzug bei Chirurgie um [{0:0.#%}]", - "SurgerySpeed": "Erhöht Chirurgie-Geschwindigkeit um [{0:0.#%}]", + "SurgeryReducePenalty": "Verringert den LP-Abzug bei Chirurgie um [{0:0%}]", + "SurgerySpeed": "Erhöht Chirurgie-Geschwindigkeit um [{0:0%}]", "Survival Rate Short": "ÜR: {0} %", "SurvivalRate": "Überlebensrate", "Survived": "Überlebt", @@ -14926,9 +14847,8 @@ "ThrowItem": "Wegwerfen", "Throwing": "Wurfwaffen", "ThrowingDescription": "Die Fähigkeit „Werfbares“ erlaubt es, Granaten weiter und mit weniger Energieverlust zu werfen.", - "ThrowingEnergyExpenses": "Verringert benötigte Energie zum Werfen um [{0:0.#%}]", - "ThrowingLevelingUpDescription": "The Throwables skill is improved by throwing grenades.", - "ThrowingStrengthBuff": "Erhöht Wurfstärke um [{0:0.#%}]", + "ThrowingEnergyExpenses": "Verringert benötigte Energie zum Werfen um [{0:0%}]", + "ThrowingStrengthBuff": "Erhöht Wurfstärke um [{0:0%}]", "ThrowingWeaponsBuffElite": "Wurfwaffen benötigen keine Ausdauer und Erschöpfung hat keinen Einfluss auf die Genauigkeit", "Time flow": "Zeitverlauf", "Time to reconnect left ({0})": "Verbleibende Zeit zur Wiederverbindung ({0})", @@ -14976,11 +14896,11 @@ "Trading/Dialog/AvaliableServices": "Kannst du mir mit etwas helfen?", "Trading/Dialog/Btr/News": "Was gibts Neues?", "Trading/Dialog/Btr/News/Next": "Sonst noch Neuigkeiten?", - "Trading/Dialog/Btr/News1": "Es schneit echt krass in letzter Zeit! Wir hatten seit den „Contract Wars“ nicht mehr soviel Schnee! Und das im hohen Norden. Eine Schande, dass alles geschmolzen ist.", - "Trading/Dialog/Btr/News2": "Du bist nicht so oft unterwegs, was? Es waren Feiertage, die ganze Stadt hat gefeiert! Frohe Feiertage übrigens!", - "Trading/Dialog/Btr/News3": "Die Bosse haben für ganz schön Unruhe gesorgt, was? Saßen die ganze Zeit an ihrem Ort, haben sich nicht bewegt und haben niemandem Luft zum Atmen gelassen!", - "Trading/Dialog/Btr/News4": "Der Freak, der sich jedes Jahr als Santa Claus verkleidet spricht inzwischen! Ich dachte, er wäre stumm!", - "Trading/Dialog/Btr/News5": "Die Leute haben angefangen, in der ganzen Stadt Figuren von den lokalen Helden zu sammeln. Ich frage mich, ob es irgendwann auch eine BTR-Figur geben wird!", + "Trading/Dialog/Btr/News1": "Die größte Neuigkeit ist der BTR! Ich habe ihn selber repariert. Meine eigene Kreation. Jetzt kann ich Leute herumfahren. Vielleicht hilft mir das, die Reparaturen zu bezahlen.", + "Trading/Dialog/Btr/News2": "Jemand organisiert Gladiatorenkämpfe in Tarkov. Angeblich sind viele Leute aus freien Stücken dort hingehen. Die Bezahlung ist ziemlich gut. Wenn man überlebt, natürlich!", + "Trading/Dialog/Btr/News3": "Es gab in ganz Tarkov einen Aufruhr wegen irgendwelcher TerraGroup-Dokumente. Sie haben sogar jenseits der Grenze gesucht, aber ich glaube das irgendwie nicht.", + "Trading/Dialog/Btr/News4": "Vor einiger Zeit verschwand die meiste AP-Munition aus den Vorräten der Händler. Kämpfer wie du rannten durch ganz Tarkov, um die Munitionsvorräte anderer Leute zu suchen. Jetzt ist aber alles in Ordnung.", + "Trading/Dialog/Btr/News5": "Sanitar hat kürzlich versucht, seinen Einfluss in Tarkov zu stärken. Er hatte anscheinend eine Art Gegengift. Nicht lange davor wurden viele Menschen vergiftet. Zufall? Ich glaube nicht.", "Trading/Dialog/Btr/NoNews": "Ich glaube, das sind alle Neuigkeiten, die ich habe.", "Trading/Dialog/Btr/ServicePayoff{0}": "Das passt, ja. (übergebe \"{0}\")", "Trading/Dialog/BtrBotCover/Description": "Während du im BTR bist, werden wir jeden erschießen, der seine Nase herausstreckt. Wir räumen auch die Ausstiegsstelle und geben dir Deckung, während du aussteigst, aber nicht lange.", @@ -14999,34 +14919,18 @@ "Trading/Dialog/PlayerHandoveItem{0}": "Das hab ich gefunden. (übergebe „{0}“)", "Trading/Dialog/PlayerTaxi/Description": "An diesen Orten kann ich dich absetzen. Such eine eins aus.", "Trading/Dialog/PlayerTaxi/Name": "Mitfahren", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Alles klar, Endstation - Rodina-Kino. Hast du das Geld dafür?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Rodina-Kino", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "Wir fahren zur Stadtbahn. Das Geld dafür hast du, oder?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Stadtbahn", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "Super, fahren wir direkt zum Stadtzentrum. Kannst dir sicher leisten.", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "Stadtzentrum", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Unser Ziel ist der kollabierte Kran. Passt dir der Preis?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Kollabierter Kran", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "Ah, der alte Scav-Kontrollpunkt. Machen wir. Gegen ein kleines Entgelt, versteht sich.", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Alter Scav-Kontrollpunkt", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "Pinewood-Hotel also... sollte möglich sein. Ist der Preis zufriedenstellend?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Pinewood-Hotel", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "Gonna head to the Scav bunker. Price alright?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Scav-Bunker", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "The sunken village, huh? I think we can make it. Here's the price.", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Versunkenes Dorf", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "Could drive you to the fork in the road, sure. You got enough cash?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Kreuzung", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "Sawmill? No problem! Here's my pricing.", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Sägewerk", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "To the USEC checkpoint, alright. Not driving for free, though.", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "USEC-Kontrollpunkt", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "I'm mapping out the route to the Emercom base. You cool price-wise?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "Emercom-Basis", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "Okie-dokie, old sawmill it is. Here's the price.", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Altes Sägewerk", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "You want me to drop you off at the depot? Just so you know, you can't get out of there without me. If the price is okay, you keep an eye on the time there, okay?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Zugdepot", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alles klar, Endstation - Rodina-Kino. Hast du das Geld dafür?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina-Kino", + "Trading/Dialog/PlayerTaxi/p2/Description": "Wir fahren zur Stadtbahn. Das Geld dafür hast du, oder?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Stadtbahn", + "Trading/Dialog/PlayerTaxi/p3/Description": "Super, fahren wir direkt zum Stadtzentrum. Kannst dir sicher leisten.", + "Trading/Dialog/PlayerTaxi/p3/Name": "Stadtzentrum", + "Trading/Dialog/PlayerTaxi/p4/Description": "Unser Ziel ist der kollabierte Kran. Passt dir der Preis?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Kollabierter Kran", + "Trading/Dialog/PlayerTaxi/p5/Description": "Ah, der alte Scav-Kontrollpunkt. Machen wir. Gegen ein kleines Entgelt, versteht sich.", + "Trading/Dialog/PlayerTaxi/p5/Name": "Alter Scav-Kontrollpunkt", + "Trading/Dialog/PlayerTaxi/p6/Description": "Pinewood-Hotel also... sollte möglich sein. Ist der Preis zufriedenstellend?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood-Hotel", "Trading/Dialog/Quit": "Gehen", "Trading/Dialog/ServicePayoff{0}": "Alles klar, das sollte so passen. (übergebe „{0}“)", "Trading/Dialog/ToggleHistoryOff": "Verstecke Historie", @@ -15062,14 +14966,13 @@ "TransferScreen/TransferFailed": "Kauf des Dienstes unmöglich", "TransferScreen/TransferSuccess": "Dienst gekauft!", "Tremor": "Zittern", - "TroubleFixing": "Erhöht die Geschwindigkeit der Beseitigung von Fehlfunktionen um [{0:0.#%}]", - "TroubleFixingAmmoElite": "Verringert die Wahrscheinlichkeit einer Munitions-Fehlfunktion nach dem Beheben einer Fehlfunktion der gleichen Art um [50%]", - "TroubleFixingDurElite": "Verringert die Wahrscheinlichkeit einer Waffenhaltbarkeits-Fehlfunktion nach dem Beheben einer Fehlfunktion der gleichen Art um [50%]", + "TroubleFixing": "Erhöht die Geschwindigkeit der Beseitigung von Fehlfunktionen um [{0:0%}]", + "TroubleFixingAmmoElite": "Verringert die Chance einer Fehlfunktion durch das Magazin um 50%, nachdem eine Magazin-Fehlfunktion behoben wurde", + "TroubleFixingDurElite": "Verringert die Chance einer Fehlfunktion auf Grund der Haltbarkeit der Waffe um 50%, nachdem eine Fehlfunktion durch diese behoben wurde", "TroubleFixingExamineMalfElite": "Identifizierung der Fehlfunktion erfordert keine Untersuchung der Waffe", - "TroubleFixingMagElite": "Verringert die Wahrscheinlichkeit einer Magazin-Fehlfunktion nach dem Beheben einer Fehlfunktion der gleichen Art um [50%]", + "TroubleFixingMagElite": "Verringert die Chance einer Fehlfunktion durch eine Patrone um 50%, nachdem eine Fehlfunktion durch diese behoben wurde", "TroubleShootingDescription": "Die Fähigkeit zur Fehlerbehebung erleichtert die Beseitigung von Waffenfehlfunktionen.", "Troubleshooting": "Fehlerbehebung", - "TroubleshootingLevelingUpDescription": "The Troubleshooting skill is improved by regularly fixing weapon malfunctions.", "Try_keycard {0}": "Probiere {0}", "Tunnel": "Tunnel", "Tunnel_Shared": "Seitentunnel (Co-Op)", @@ -15152,11 +15055,6 @@ "UI/Arena/Place_7": "7. Platz", "UI/Arena/Place_8": "8. Platz", "UI/Arena/Place_9": "9. Platz", - "UI/ArmorPenetration/High": "High", - "UI/ArmorPenetration/Low": "Low", - "UI/ArmorPenetration/Medium": "Medium", - "UI/ArmorPenetration/VeryHigh": "Very high", - "UI/ArmorPenetration/VeryLow": "Very low ", "UI/Charisma/Discount/Insurance": "Versicherungskosten", "UI/Charisma/Discount/PostRaidHealing": "Heilungskosten", "UI/Charisma/Discount/ScavCase": "Kosten der Scav-Kiste", @@ -15334,18 +15232,15 @@ "Very good standing": "sehr gut", "Vest": "Weste", "Village": "Dorf", - "Violation/IntentionalTeamDamage/Warning": "Dein Account wird gesperrt, wenn du weiter Teammitglieder abschießt.", - "Violation/IntentionalTeamKill/Warning": "Dein Account wird gesperrt, wenn du weiterhin zum Rundenstart Teammitglieder eliminierst.", "Violation/TeamKill/Warning": "Dein Account wird gesperrt, wenn du weiterhin Teammates tötest", "Vital mod weapon in hands": "Wichtige Teile können nicht geändert werden, während sich die Waffe in deinen Händen befindet.", "Vital parts": "Unverzichtbare Teile", "Vitality": "Vitalität", - "VitalityBuffBleedChanceRed": "Verringert Chance von Blutungen um [{0:0.#%}]", + "VitalityBuffBleedChanceRed": "Verringert Chance von Blutungen um [{0:0%}]", "VitalityBuffBleedStop": "Alle Blutungen halten von alleine an", "VitalityBuffRegeneration": "Erhöht Gesundheitsregenerierung im Kampf", - "VitalityBuffSurviobilityInc": "Verringert die Chance, an einem verlorenen Körperteil zu sterben um [{0:0.#%}]", + "VitalityBuffSurviobilityInc": "Verringert die Chance, an einem verlorenen Körperteil zu sterben um [{0:0%}]", "VitalityDescription": "Vitalität verbessert die Chance eine Verletzung zu überleben, indem die Wahrscheinlichkeit einer Blutung und der sofortige Tod durch erlittenen kritischen Schaden an einem Körperteil verringert wird.", - "VitalityLevelingUpDescription": "The Vitality skill is improved by sustaining various bleedings and injuries.", "Voice": "Charakter-Stimme", "Voice 1": "Stimme 1", "Voice 2": "Stimme 2", @@ -15402,27 +15297,26 @@ "WaterCollector": "WASSERSAMMLER", "Weapon": "Waffe", "Weapon has been built": "Waffe wurde zusammengestellt", - "WeaponAccBuff": "Erhöht die Waffengenauigkeit um [{0:0.#%}]", + "WeaponAccBuff": "Erhöht die Waffengenauigkeit um [{0:0%}]", "WeaponBroken": "WAFFENSTÖRUNG", "WeaponBuild/SetNameWindowCaption": "NAME DES PRESETS", "WeaponBuild/SetNameWindowPlaceholder": "Name des Presets eingeben", - "WeaponDeteriorationChanceReduce": "Verringert die Wahrscheinlichkeit von Abnutzungen durch Waffenreparaturen um [{0:0.#%}]", + "WeaponDeteriorationChanceReduce": "Verringert die Wahrscheinlichkeit von Abnutzungen durch Waffenreparaturen um [{0:0%}]", "WeaponDoubleMastering": "Doppelter Fortschritt der Waffenmeisterung", - "WeaponDurabilityLossOnShotReduce": "Verringert Waffenabnutzung durch Schießen um [{0:0.#%}]", - "WeaponErgonomicsBuff": "Erhöht Waffenergonomie um [{0:0.#%}]", + "WeaponDurabilityLossOnShotReduce": "Verringert Waffenabnutzung durch Schießen um [{0:0%}]", + "WeaponErgonomicsBuff": "Erhöht Waffenergonomie um [{0:0%}]", "WeaponJammed": "WAFFE BLOCKIERT", "WeaponModding": "Waffenmodifikation", "WeaponModdingDescription": "Die Fähigkeit „Waffenmodifikation im Einsatz“ erhöht die Modifikations-Ergonomie und reduziert die Schalldämpferabnutzung.", "WeaponPunch": "Schlag mit der Schulterstütze", - "WeaponRecoilBuff": "Verringert Waffenrückstoß um [{0:0.#%}]", - "WeaponReloadBuff": "Erhöht Nachladegeschwindigkeit um [{0:0.#%}]", - "WeaponStiffHands": "Erhöht die Waffen-Ergonomie um [{0:0.#%}]", - "WeaponSwapBuff": "Erhöht die Geschwindigkeit des Waffenwechsels um [{0:0.#%}]", + "WeaponRecoilBuff": "Verringert Waffenrückstoß um [{0:0%}]", + "WeaponReloadBuff": "Erhöht Nachladegeschwindigkeit um [{0:0%}]", + "WeaponStiffHands": "Erhöht die Waffen-Ergonomie um [{0:0%}]", + "WeaponSwapBuff": "Erhöht die Geschwindigkeit des Waffenwechsels um [{0:0%}]", "WeaponTreatment": "Waffenwartung", "WeaponTreatmentDescription": "Waffenwartungs- und -instandhaltungs-Fertigkeiten.", - "WeaponTreatmentLevelingUpDescription": "The Weapon Maintenance skill is improved by repairing weapons with repair kits.", "WearAmountRepairGunsReducePerLevel": "Reduziert Abnutzung beim Nutzen von Reparaturausrüstung", - "WearChanceRepairGunsReduceEliteLevel": "Verringert Wahrscheinlichkeit der Abnutzung während der Reparatur um [50%]", + "WearChanceRepairGunsReduceEliteLevel": "Verringert Abnutzungswahrscheinlichkeit bei der Nutzung von Reparaturausrüstungen um 50%", "Weather conditions": "Wetterbedingungen", "WeightLimit": "Gewichtsbegrenzung", "Welcome screen description": "Willkommen bei „Escape from Tarkov“!\nIn diesem Spiel, musst du um dein Leben kämpfen und die vielen Gefahren Tarkovs überleben, einer russischen Stadt in der Region Norvinsk, welche sich sich am Rande des Chaos befindet. Du bist ein unter Vertrag stehender Söldner eines privaten Militärunternehmens (PMC) und kämpfst in diesem zwielichtigen Szenario abseits der Zivilisation um dein Leben. Das gesamte Stadtgebiet ist abgeriegelt und alle PMCs sind im Strudel der Geschehnisse direkt nach den Auftragskriegen gefangen. Dein Einsatzkommando reagiert nicht mehr, ehemalige Einsatzziele sind verfallen! Nun ist jeder auf sich allein gestellt. Passe dich an um zu überleben, entkomme aus der Blockade und übernimm die Verantwortung für andere, um deren Leben zu retten.\n\nSei bereit, in jeder einzelnen Spielsitzung zu sterben und alle Gegenstände zu verlieren, die du mitgebracht oder gefunden hast. Beachte, dass jedes Verbindungs- oder Hardwareproblem dazu führen kann, dass du ungewollt das Spiel verlässt und dein Charakter dadurch stirbt.\n\nJa, du wirst sterben, wahrscheinlich sogar sehr oft, aber denke daran – es ist nur ein Spiel.\nViel Glück da draußen!", @@ -15452,9 +15346,9 @@ "YOUR MAIN CHARACTER": "DEIN HAUPTCHARAKTER", "Yas been transfered": "Wurde übertragen", "Yes": "Ja", - "You are banned": "Du bist von der Nutzung des Flohmarktes gebannt.", + "You are banned": "Du bist von der Nutzung des Flohmarktes gebannt", "You are no longer a leader of the group": "Du bist kein Gruppenführer mehr", - "You are no longer banned from ragfair": "Du bist nicht mehr vom Flohmarkt gebannt.", + "You are no longer banned from ragfair": "Du bist nicht länger vom Flohmarkt gebannt", "You are now the leader of the group": "Du bist jetzt Gruppenleiter.", "You can change your nickname only once": "Du kannst deinen Spielernamen nur einmal ändern", "You can recover your password using the website.": "Du kannst dein Passwort über die Website wiederherstellen.", @@ -15467,7 +15361,7 @@ "You can't enable {0} and {1} at the same time. Turn {1} off?": "{0} und {1} kann nicht zur gleichen Zeit aktiviert sein. Soll {1} deaktiviert werden?", "You can't examine two items at the same time": "Du kannst nur einen Gegenstand gleichzeitig untersuchen.", "You can't fold this item": "Gegenstand nicht faltbar", - "You can't open flea market": "Du kannst den Flohmarkt nicht öffnen.", + "You can't open flea market": "Du kannst den Flohmarkt nicht öffnen", "You can't plant a beacon while moving": "Du kannst nur etwas platzieren, wenn du dich nicht bewegst.", "You can't plant quest item while moving": "Du kannst einen Gegenstand nicht platzieren, während du dich bewegst.", "You can't send message to this user. He is in ignore list.": "Du kannst keine Nachrichten an diesen Nutzer schicken. Er ist auf deiner Ignorierliste.", @@ -15475,8 +15369,8 @@ "You can't send message to this user. You are in ignore list.": "Du wirst von diesem Spieler blockiert und kannst ihm keine Nachrichten senden.", "You can't unload ammo from equipped weapon": "Munition aus einer ausgerüsteten Waffe kann nicht entladen werden", "You can't unload from this item": "Du kannst diesen Gegenstand nicht entladen", - "You can't use flea market right now": "Du kannst den Flohmarkt aktuell nicht nutzen.", - "You can't use ragfair now": "Du kannst den Flohmarkt aktuell nicht nutzen.", + "You can't use flea market right now": "Du kannst den Flohmarkt aktuell nicht nutzen", + "You can't use ragfair now": "Du kannst den Flohmarkt aktuell nicht nutzen", "You can't use that symbol": "Du kannst dieses Zeichen nicht verwenden", "You cannot modify texture quality in raid.": "Die Texturqualität kann während des Raids nicht geändert werden.", "You cannot take off a dogtag from a friend or group member": "Du kannst Dogtags von Freunden oder Gruppenmitgliedern nicht an dich nehmen", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "Siegesrate in %", "arena/career/teamFightStats/wins": "Siege", "arena/career/teamFightStats/winsWithFavPreset": "Gewonnene Spiele mit Lieblings-Preset", - "arena/customGames/create/samePresets": "Doppelte Presets:", - "arena/customGames/create/setSamePresets": "Doppelte Presets erlauben", "arena/customGames/invite/message{0}": "EINLADUNG ZUR INDIVIDUELLEN LOBBY VON {0}", "arena/customGames/notify/GameRemoved": "Lobby wurde aufgelöst", "arena/customgames/errors/notification/gamealreadystarted": "Spiel hat bereits begonnen", @@ -15708,7 +15600,6 @@ "arena/tooltip/OverallMatches": "Anzahl aller gespielten Ranglisten- und unbewerteten Spiele.", "arena/tooltip/Presets": "Presets", "arena/tooltip/countGlp": "Deine ARP-Einstufung (Arena-Ranglistenpunkte). Diese Statistik bestimmt Ihre Bewertung in den Ranglisten-Spielmodi. Sie wird verwendet, um dich mit gleichstarken Spielern zu matchen und um neue Ränge und Presets freizuschalten.", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", "arena/tooltip/friends": "Freunde", "arena/tooltip/kdRatio": "Deine K/D-Rate, welche aus allen Eliminierungen und Tode in Ranglisten- und unbewerteten Spielen berechnet wird. Es zählen nur die Eliminierungen von anderen Spielern.", "arena/tooltip/leftGlp": "Menge an ARP, die benötigt wird, um im Rang aufzusteigen.", @@ -15716,8 +15607,7 @@ "arena/tooltip/moneyRubles": "Rubel. Wird benötigt, um die Presets zu kaufen und gibt es als Belohnung für Siege in der Arena.", "arena/tooltip/ratingPlace": "Deine Position in der Rangliste.", "arena/tooltip/settings": "Einstellungen", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", - "arena/tooltip/sourcesGlp": "Herkunft deiner ARP:", + "arena/tooltip/sourcesGlp": "Quellen deiner ARP:", "arena/tooltip/winMatches": "Summe aller Siege in Ranglisten- und unbewerteten Spielen.", "arena/tooltip/winRate": "Deine insgesamte Siegesrate, berechnet aus den Siegen und Niederlagen in Ranglisten- und unbewerteten Spielen.", "arenaui/presetview/lockedpreset": "Preset nicht verfügbar", @@ -15963,7 +15853,7 @@ "hideout_InsuranceReturnTime": "Zeit der Versicherungsrückerstattung", "hideout_MaximumEnergyReserve": "Maximale Energie Reserve", "hideout_QuestMoneyReward": "Erhöht Geldbelohnung von Aufgaben um", - "hideout_RagfairCommission": "Flohmarkt-Gebühr", + "hideout_RagfairCommission": "Flohmarkt Kommission", "hideout_ReceiveItemBonus": "Spezielle Lieferung", "hideout_RepairArmorBonus": "Reduziert Kosten von Rüstungsreparaturen mit Reparatur-Sets", "hideout_RepairWeaponBonus": "Reduziert Kosten von Waffenreparaturen mit Reparatur-Sets", @@ -15972,7 +15862,7 @@ "hideout_SkillLevelingBoost": "Boost des Aufbaus der Fähigkeitsstufen", "hideout_StashRows": "Inventar-Zeilen im Lager des Verstecks", "hideout_StashSize": "Größe des Lagers", - "hideout_UnlockAddOffer": "Schalte die Angebotsplatzierung auf dem Flohmarkt frei.", + "hideout_UnlockAddOffer": "Schalte die Angebotsplatzierung auf dem Flohmarkt frei", "hideout_UnlockArmorRepair": "Ermöglicht Rüstungsreparatur mit Reparatur-Sets", "hideout_UnlockItemCharge": "Schalte die Möglichkeit Batterien aufzuladen frei", "hideout_UnlockItemCraft": "Herstellen von Gegenständen freischalten", @@ -16235,7 +16125,7 @@ "ragfair/FILTERS": "FILTER", "ragfair/Fee": "Gebühren", "ragfair/FilterSearch": "Filter nach...", - "ragfair/Flea market is not available now": "Der Flohmarkt ist aktuell nicht verfügbar.", + "ragfair/Flea market is not available now": "Flohmarkt ist aktuell nicht verfügbar", "ragfair/HANDOVER": "ÜBERGEBEN", "ragfair/Handover ragfair": "Auf dem Flohmarkt anbieten", "ragfair/ID": "ID", @@ -16299,8 +16189,8 @@ "ragfair/Unable to sell the item that contains {0}": "Kein Verkauf des Gegenstands mit „{0}“ als Inhalt möglich", "ragfair/Unlocked at character LVL {0}": "Die Möglichkeit Angebote zu erstellen und von anderen Spielern Waren zu sehen kaufen zu können wird mit Stufe {0} freigeschaltet.", "ragfair/W-LIST": "W-LISTE", - "ragfair/You are temporarily banned from flea market": "Du bist vorübergehend vom Flohmarkt gebannt.", - "ragfair/You cannot place non-empty container at ragfair": "Du kannst nur leere Behälter auf dem Flohmarkt verkaufen.", + "ragfair/You are temporarily banned from flea market": "Du bist vorübergehend vom Flohmarkt gebannt", + "ragfair/You cannot place non-empty container at ragfair": "Du kannst nur leere Behälter auf dem Flohmarkt verkaufen", "ragfair/You've bought personal limit of this item, wait for restock": "Du hast dein persönliches Limit aufgekauft, warte auf die neue Lieferung", "ragfair/Your offer ({0}) is expired!": "Dein Angebot von ({0}) ist abgelaufen!", "ragfair/You’ve purchased the offer ({0}). Check your stash!": "Du hast das Angebot ({0}) gekauft. Schaue im Versteck nach!", @@ -16370,7 +16260,7 @@ "scav_e6": "Kellereingang", "scav_e7": "Parkplatz am Cardinal Wohnkomplex", "scav_e8": "Klimov-Einkaufszentrum", - "searchspeed": "Erhöht Suchgeschwindigkeit um [{0:0.#%}]", + "searchspeed": "Erhöht Suchgeschwindigkeit um [{0:0%}]", "sec": "Sek.", "select weapon body for the build": "WAFFENBASIS FÜR DAS PRESET WÄHLEN", "semiauto": "Halbautomatisch", @@ -16450,8 +16340,6 @@ "{0} GroupPlayerBlocking/MatchLeave": "Spielmodus ist vorübergehend blockiert, da einer der Gruppenmitglieder ({0}) für das vorzeitige Verlassen von Spielen bestraft wurde", "{0} GroupPlayerBlocking/NotAcceptedMatch": "Spielmodus ist vorübergehend blockiert, da einer der Gruppenmitglieder ({0}) für das versäumten Annehmen eines Spiels bestraft wurde", "{0} GroupPlayerBlocking/TeamKill": "Spielmodus ist vorübergehend blockiert, da einer der Gruppenmitglieder ({0}) für mehrfaches Teamkillen bestraft wurde", - "{0} Violation/IntentionalTeamDamage/Blocking": "Player {0} has been removed from the match and received a penalty for shooting teammates", - "{0} Violation/IntentionalTeamKill/Blocking": "Player {0} has been removed from the match and received a penalty for teamkilling at round start", "{0} Violation/TeamKill/Blocking": "{0} wurde vom Spiel entfernt und hat eine Bestrafung für das Teamkillen bekommen", "{0} added you to the ignore list": "{0} hat dich blockiert", "{0} ask to cooperate": "{0} grüßt dich", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "Ground Zero", "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "United Security", "5464e0404bdc2d2a708b4567 Description": "Das private Militärunternehmen USEC wurde 1999 durch die Fusion zweier Unternehmen gegründet: KerniSEC und Safe Sea. Im Jahr 2004 nahm ein Vertreter der TerraGroup International Holding Kontakt mit USEC auf, woraufhin USEC im Wesentlichen zu einer Privatarmee der Holding wurde, die über Niederlassungen in der ganzen Welt verfügt und über 7500 Mitarbeiter beschäftigt.", "5464e0454bdc2d06708b4567 Name": "BEAR", @@ -18024,7 +17910,7 @@ "5a27bc8586f7741b543d8ea4 description": "Hello, my dear friend, it looks like we are really close to an interesting deal. On that drive, we’ve discovered a partial blueprint of a missile engine that will be exceptionally interesting to the West, because it's deployed on the Typhoon class submarines -- which supposedly are not functional anymore. Also, there has been quite a detailed file on a sailor who served in the Baltic Fleet, a real salty dog, who is now in Tarkov somewhere, and it looks like he has connections to the Navy command. He’s the one we need to get. According to my intel, he sometimes secretly deals with the Scavs, and getting to him won’t be easy. You’ll have to work discreetly, from an ambush. There is only one chance of success, and it is very important not to fail and not to lose such a tidbit for our interests, my friend. My hands are even shaking a bit as we speak, you have no idea how important this is, and missing the shot is not an option. You're a great fighter, but I want to be sure that you are also good at covert operations. I need a sniper, and an experienced one, so come back when you’re ready.", "5a27bc8586f7741b543d8ea4 failMessageText": "", "5a27bc8586f7741b543d8ea4 successMessageText": "With all due respect, didn't believe that you’ll manage, mercenary. It seems you’re the \"sharpshooter\" for me now. I'll contact you when needed.", - "5a28235e86f7741da250b438": "Erreiche die benötigte Stufe der Fähigkeit „Repetiergewehre“", + "5a28235e86f7741da250b438": "Erreiche die benötigte Stufe der Fähigkeit „Scharfschützengewehre“", "5a27bc8586f7741b543d8ea4 acceptPlayerMessage": "", "5a27bc8586f7741b543d8ea4 declinePlayerMessage": "", "5a27bc8586f7741b543d8ea4 completePlayerMessage": "", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "Eliminiere PMCs durch Kopfschüsse mit einem Repetier-Scharfschützengewehr auf Lighthouse", "63aec6f256503c322a190374": "Eliminiere PMCs durch Kopfschüsse mit einem Repetier-Scharfschützengewehr in Streets of Tarkov", "64b694c8a857ea477002a408": "Eliminiere PMCs durch Kopfschüsse mit einem Repetier-Scharfschützengewehr auf Interchange", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18882,7 +18767,7 @@ "5c0be13186f7746f016734aa description": "Greetings, mercenary. I've heard you're trying to become a sniper. Being in sniper business surely takes tenacity, patience, and a sense of purpose, but there are a lot of other important factors too. You know what Dima told me once? \"Everyone can shoot, but only a few can become real Snipers\".", "5c0be13186f7746f016734aa failMessageText": "Ein erfahrener Scharfschütze lässt sich nicht so einfach aus der Ruhe bringen. Atme tief durch und versuche es nochmal.", "5c0be13186f7746f016734aa successMessageText": "Frankly speaking, i wasn't sure you could do it. But it sure seems that you're no regular pleb.", - "5c0be2b486f7747bcb347d58": "Erreiche die benötigte Stufe der Fähigkeit „Repetiergewehre“", + "5c0be2b486f7747bcb347d58": "Erreiche die benötigte Stufe der Fähigkeit „Scharfschützengewehre“", "5c1fb5f086f7744a184fb3c5": "", "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Eliminiere PMCs mit einem Repetier-Scharfschützengewehr ohne zu Sterben", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Trage die UN-Uniform (UNTAR Helm, UNTAR Schutzweste, M4A1-Gewehr) und eliminiere Scavs auf Streets of Tarkov", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "Überlebe und entkomme aus Reserve", "629f08e7d285f377953b2af1": "Überlebe und entkomme von Lighthouse", "63aec66556503c322a190372": "Überlebe und entkomme aus Streets of Tarkov", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Erreiche Ansehensstufe 4 bei Therapist", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -20314,8 +20195,6 @@ "60ec2b04bc9a8b34cd453b81": "Solange die Quest aktiv ist, darfst du weder sterben noch den Raid vorzeitig verlassen (Status: KIA, Desertiert, MIA und Vorzeitige Flucht sind nicht erlaubt)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", @@ -20641,7 +20520,7 @@ "6193850f60b34236ee0483de description": "Come here already. Alright, so along the entire coast of the cape, there is a road, you've probably seen it. My guys use this road to transport merchandise to and from me. Usually, they managed to avoid trouble or calm some particular morons down, but right now it's a damn rat nest there, probably found out about my convoys. They started attacking my guys with full power, can't get through them at all. Go there and lay those whack-jobs down, will you? I'll get something nice for you in return.", "6193850f60b34236ee0483de failMessageText": "", "6193850f60b34236ee0483de successMessageText": "Good shit, you fucked those morons up properly. Alright, mate, see ya.", - "6193dabd5f6468204470571f": "Eliminiere Scavs entlang der Hauptstraße und der Küste auf Lighthouse", + "6193dabd5f6468204470571f": "Eliminiere Scavs entlang der Hauptstraße auf Lighthouse", "6193850f60b34236ee0483de acceptPlayerMessage": "", "6193850f60b34236ee0483de declinePlayerMessage": "", "6193850f60b34236ee0483de completePlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "Überlebe und entkomme aus Streets of Tarkov mit dem Taxi in der Primorsky-Straße", "6397a6942e519e69d2139b25": "Markiere das erste gepanzerte Patrol-A Fahrzeug mit einem MS2000 Marker auf Streets of Tarkov", "6397a7ce706b793c7d6094c9": "Markiere das zweite gepanzerte Patrol-A Fahrzeug mit einem MS2000 Marker auf Streets of Tarkov", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "I managed to contact the drivers. This wasn't easy, but I did unearth something interesting.", @@ -21436,7 +21314,7 @@ "6396701b9113f06a7c3b2379 failMessageText": "", "6396701b9113f06a7c3b2379 successMessageText": "We've been watching you. My shooter gave the go-ahead. That's all for now. I'll let you know when the time comes.", "6397ac912e519e69d2139b26": "Eliminiere Scav-Scharfschützen aus über 350 Meter Entfernung", - "639a169e6cd47c525121a116": "Erreiche die benötigte Stufe der Fähigkeit „Repetiergewehre“", + "639a169e6cd47c525121a116": "Erreiche die benötigte Stufe der Fähigkeit „Scharfschützengewehre“", "6396701b9113f06a7c3b2379 acceptPlayerMessage": "", "6396701b9113f06a7c3b2379 declinePlayerMessage": "", "6396701b9113f06a7c3b2379 completePlayerMessage": "I'm a real psycho sniper now. So, what's next?", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "Eliminiere Scavs mit Nahkampfwaffen auf Interchange", "63a9b5b2813bba58a50c9eeb": "Eliminiere Scavs mit Nahkampfwaffen auf Customs", "63a9b5f064b9631d9178276b": "Eliminiere Scavs mit Nahkampfwaffen auf Reserve", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21691,8 +21568,8 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "Ein Drecksack weniger, um den man sich sorgen muss. Das hast du gut gemacht, Junge.", "64e7ba17220ee966bf425ecb": "Finde und eliminiere Kaban", "64e7ba4a6393886f74119f3d": "Eliminiere Kabans Wachen beim Autohändler in Streets of Tarkov", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", diff --git a/project/assets/database/locales/global/hu.json b/project/assets/database/locales/global/hu.json index 64fd9885..fe6144a9 100644 --- a/project/assets/database/locales/global/hu.json +++ b/project/assets/database/locales/global/hu.json @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "A compact tactical Laser Aiming Module with a blue dot. Mounts on any Picatinny/Weaver rail for precise target acquisition. Manufactured by NcSTAR.", "5cd945d71388ce000a659dfb Name": "BEAR szabvány felső", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Combat shirt", "5cd946231388ce000d572fe3 Name": "BEAR szabvány alsó", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "ASh-12 vertical foregrip", "5cda9bcfd7f00c0c0b53e900 ShortName": "ASh-12", "5cda9bcfd7f00c0c0b53e900 Description": "A vertical foregrip for the ASh-12 assault rifle.", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "USEC szabvány alsó", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", "5cde9ec17d6c8b04723cf479 Name": "USEC szabvány felső", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Abibas alsó", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", "5cdea42e7d6c8b0474535dad Name": "Abibas melegítő", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "M700 Magpul Pro 700 chassis", "5cdeac22d7f00c000f26168f ShortName": "Pro700", "5cdeac22d7f00c000f26168f Description": "Pro 700 is a lightweight ergonomic chassis designed for the Remington M700 sniper rifle. Manufactured by Magpul.", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "BEAR Black Lynx", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", "5d1f60ae86f7744bcc04998b Name": "BEAR contractor póló", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "FSB gyors reagálású", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "BEAR Ghost Marksman", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "BEAR Summer Field", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "USEC Agresszor TAC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "USEC Softshell Flexion", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "USEC Erdei Beszivárgó", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Combat shirt", "5d1f623886f7743014163027 Name": "USEC PCS Multicam", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "USEC PCU Ironsight", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "FSB Városi taktikus", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "BEAR Gorka Kobra", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "BEAR Gorka SSO", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "BEAR Striker Infil Ops", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "BEAR Summer Field", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "USEC Gen.2 Khyber", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "USEC Erdei Beszivárgó", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "USEC Ranger Farmer", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "USEC Taclife Terrain", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "USEC TACRES", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "AR-10 Daniel Defense WAVE 7.62x51 muzzle brake", "5d1f819086f7744b355c219b ShortName": "WAVE 762", "5d1f819086f7744b355c219b Description": "The Daniel Defense WAVE muzzle brake is designed to securely mount the Daniel Defense WAVE suppressor to the host firearm, but also functions effectively without it. It's manufactured from aerospace 17-4 PH stainless steel and had a salt bath nitride finish for minimal corrosion.", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "USEC Commando", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "An upper receiver for the SR-25 rifle, manufactured by Knight's Armament Company.", "5df8e5c886f7744a122d6834 Name": "BEAR Zaslon", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "Meteor", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "BEAR Oldschool", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "USEC TIER2", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "Sklon", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "The first generation of the modified CPC plate carrier originally designed by Crye Precision and adapted by Ars Arma for use by special forces of the Russian Federation. This modular body armor is based on a polymer harness that fits the body, which avoids the plate carrier backlash during active movement and also contributes to a more even distribution of weight. Made in the assault configuration of pouches and armor elements. Manufactured by Ars Arma.", "5e4bb08f86f774069619fbbc Name": "BEAR Telnik", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "USEC TIER2", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "BEAR TIGR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "USEC Commando", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "Oroszország kabát", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "BEAR TIGR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "USEC Urban Responder", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "BEAR Zaslon", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "USEC Deep Recon", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Tactical pants", "5e9dcf5986f7746c417435b3 Name": "LBT-8005A Day Pack hátizsák", "5e9dcf5986f7746c417435b3 ShortName": "Day Pack", "5e9dcf5986f7746c417435b3 Description": "A simple and reliable 14-liter backpack in Multicam Black camouflage. Manufactured by London Bridge Trading.", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "The Thunderbolt fixed chest rig, containing all the basic utility pouches you'd need. Manufactured by Direct Action.", "5f5f45df0bc58666c37e7832 Name": "BEAR G99", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "USEC Night Patrol", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "BEAR G99", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "USEC Urban Responder", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Scav bakancs", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "BEAR SRVV", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "USEC TIER3", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": ".300 AAC Blackout AP", "5fd20ff893a8961fc660a954 ShortName": "300 AP", "5fd20ff893a8961fc660a954 Description": "A .300 Blackout (7.62x35mm) AP cartridge loaded with an 8.4 gram armor-piercing bullet from a 7.62x51mm NATO M80A1 cartridge, composed of a steel penetrator tip over a copper alloy core with a copper semi-jacket in a brass case. Despite the bullet's own characteristics when used in a full-power cartridge, these are affected when transferred to an intermediate cartridge, however, the bullet continues to have capabilities to pierce basic and intermediate body ballistic protections, in addition to being able to cause substantial adverse effects on the target after impact. Its design also allows it to be used in STANAG 5.56x45mm NATO magazines without any issues.", "5fd3e77be504291efd0040ad Name": "USEC VEKTOR", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "BEAR Boreas", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "BEAR Grizzly", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "USEC Adaptive Combat", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "Egyszerű nejlon teherviselő rendszer nem eltávolítható zsebekkel. Lehetővé teszi hogy meglehetősen nagy mennyiségű lőszert vigyen magával a használója a kényelmet feláldozva.", "6038b228af2e28262649af14 Name": "BEAR Rash Guard", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "USEC Sandstone", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", "6038b4b292ec1c3103795a0b Name": "LBT-6094A Slick Plate Carrier (Tan)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "A simple yet effective plate carrier by London Bridge Trading company. The most minimalistic design intended for use with chest rigs. Tan version.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "A TP-200-at használják szeizmikus méréseknél, közbenső detonátorként töltetek berobbantáskor, túlméretes tárgyak összetöréséhez, és különleges robbantási műveletek elvégzéséhez.", "603d01a1b41c9b37c6592047 Name": "BEAR VOIN", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "USEC Sage Warrior", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Azimut SS \"Zhuk\" chest harness (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Azimut", "6040dd4ddcf9592f401632d2 Description": "A simple nylon bearing system with non-removable pouches. Allows you to carry a fairly impressive amount of ammunition at the expense of convenience. SURPAT camouflage version.", @@ -8239,10 +8239,10 @@ "619b69037b9de8162902673e Description": "Designed for both the civilian market and military use. The CQR47 stock can be easily mounted in place of the standard attachment of the AK/AKM non-folding stock. Manufactured by Hera Arms.", "619b99ad604fcc392676806c Name": "BEAR Recon", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "USEC K4", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", "619bc61e86e01e16f839a999 Name": "Alpha armband", "619bc61e86e01e16f839a999 ShortName": "Alpha", "619bc61e86e01e16f839a999 Description": "An armband for veterans who are still here from the Alpha times.", @@ -8275,10 +8275,10 @@ "619bdfd4c9546643a67df6fa Description": "An armband for hardcore USEC operators.", "619bf75264927e572d0d5853 Name": "BEAR Sumrak", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "Military corrugated tube", "619cbf476b8a1b37a54eebf8 ShortName": "MTube", "619cbf476b8a1b37a54eebf8 Description": "A military-issued corrugated tube for ventilation systems of military equipment or air purification systems.", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "USEC Chameleon", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "BEAR VOLK", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "BEAR Coyote", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "USEC DesOps", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Death Knight mask", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "A unique mask of the commander of the Goons squad, former USEC operators who decided not to flee Tarkov, but to create their own order.", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "USEC Predator", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", "64f07f7726cfa02c506f8ac0 Name": "Journal", "64f07f7726cfa02c506f8ac0 ShortName": "Journal", "64f07f7726cfa02c506f8ac0 Description": "A journal of someone who really loves everything Soviet.", @@ -11920,10 +11920,10 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "USEC Defender", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "USEC BOSS Delta", - "657f8e9824d2053bb360b51d ShortName": "USEC BOSS Delta", - "657f8e9824d2053bb360b51d Description": "USEC BOSS Delta", + "657f8e9824d2053bb360b51d ShortName": "", + "657f8e9824d2053bb360b51d Description": "Tactical shirt", "657f8ec5f4c82973640b234c Name": "Hybrid composite materials", "657f8ec5f4c82973640b234c ShortName": "", "657f8ec5f4c82973640b234c Description": "", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "BEAR URON", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "BEAR OPS MGS", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Tactical jacket", "657f925dada5fadd1f07a57a Name": "Hybrid composite materials", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "Dead civilian", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", " V-ex_light": "Road to Military Base V-Ex", " Voip/DisabledForOffline": "VOIP is unavailable in the offline mode", " kg": "Kg", @@ -12102,8 +12087,6 @@ "AI amount": "AI mennyisége", "AI difficulty": "AI nehézség", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "Penetration", - "AMMO PROJECTILE COUNT": "Projectile count", "ARMOR CLASS": "PÁNCÉL OSZTÁLYA", "ARMOR POINTS": "PÁNCÉL PONTOK", "ARMOR TYPE": "ARMOR TYPE", @@ -12146,7 +12129,6 @@ "AheadOfTimeEnding": "BEFEJEZÉSI IDŐ", "Aim": "Célzás", "AimDrills": "Célzási gyakorlatok", - "AimDrillsLevelingUpDescription": "The Aim Drills skill is improved by hitting enemies while aiming.", "AimMaster": "Lövész", "AimMasterDescription": "Mastering aim reduces aiming time and barrel sway immediately after aiming.", "AimMasterElite": "Increases aiming speed by [{0:0%}]", @@ -12241,12 +12223,9 @@ "Arena/CustomGames/toggle/tournament": "Tournament", "Arena/EndMatchNotification": "Match has ended while you were away", "Arena/Matching/CustomGames": "Custom games", - "Arena/Notification/Selection/Blocked": "Preset purchase blocked", "Arena/OnCancelMatch": "Matching canceled due to loading issues", "Arena/OnCancelMatch/Group": "Matching canceled due to group member having loading issues", "Arena/OnCancelMatch/NoServer": "Could not find an available server. Please try later.", - "Arena/Popups/TwitchDropsHeader": "Redeem gift", - "Arena/Preset/Tooltip/Tab/6": "Various unique collectible presets.", "Arena/Preset/Tooltip/Tab/Assault": "Assault is the most versatile class. Presets of this class have balanced equipment suitable for most combat situations.", "Arena/Preset/Tooltip/Tab/CQB": "CQB is the most heavily armored class in the Arena. CQBs are characterized by their face shields and increased ammunition for their main weapons. Presets of this class are excellent in defending positions and prolonged firefights.", "Arena/Preset/Tooltip/Tab/Collection": "Presets given for special achievements in the Arena.", @@ -12295,18 +12274,12 @@ "Arena/TeamColor/yellow": "Yellow", "Arena/TeamColor/yellow_plural": "Yellow", "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked Tier presets for one or more group members", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Not enough unlocked {0} presets for one or more group members", - "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the Tier", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "Not enough money for {0}", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} currently not available for the game", - "Arena/Tiers/RankingAvailable {0}": "Ranked game unavailable: {0} presets unlocked", "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", "Arena/Tiers/UnlockedPresets": "Presets unlocked", - "Arena/Tooltip/MapSelectedCounter": "Number of selected locations", - "Arena/Tooltip/MinMapCount {0}": "Select multiple locations. You need to select at least {0} location(s)", "Arena/UI/Awaiting-Players": "Waiting for players", "Arena/UI/Confirm-Match": "Confirm", "Arena/UI/CustomMode": "Custom", @@ -12325,10 +12298,8 @@ "Arena/UI/Match_leaving_forbidden_body": "If you leave this match you will put your comrades at disadvantage.
You'll lose your reward, rating, and will be eligible for a temporary ban.", "Arena/UI/Match_leaving_forbidden_header": "Warning! You are leaving the match.", "Arena/UI/Match_leaving_permitted_header": "You can leave this match without penalty.", - "Arena/UI/PresetResetToDefault": "Settings for the following presets have been reset to default:", "Arena/UI/Return": "RETURN", "Arena/UI/Return-to-match": "RETURN TO MATCH", - "Arena/UI/Selection/Blocked": "Preset taken", "Arena/UI/Waiting": "Waiting...", "Arena/Ui/ServerFounding": "Looking for server...", "Arena/Widgets/Observer/capture point": "Capture the objective", @@ -12383,16 +12354,9 @@ "ArenaUI/PresetView/FreePreset": "FREE", "ArenaUI/PresetView/PresetPreview": "Preset preview", "ArenaUI/PresetView/ShopPrice": "Shop price", - "Arena_AirPit": "Air Pit", - "Arena_AutoService": "Chop Shop", - "Arena_Bay5": "Bay 5", - "Arena_Bowl": "Bowl", - "Arena_Yard": "Block", - "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Final", "Arena_result_result": "Results", "Arena_result_rounds": "Round", - "Arena_saw": "Sawmill", "Armband": "Karszalag", "Armor": "Páncél", "Armor Zone BackHead": "Nape", @@ -12438,13 +12402,11 @@ "Assault": "Gépkarabély", "AssaultCarbine Mastering": "Assault carbine", "AssaultDescription": "Assault rifles handling skill improves the overall handling, reduces recoil and reload time of Assault rifles.", - "AssaultLevelingUpDescription": "The Assault Rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "AssaultRifle": "Gépkarabélyok ", "AssaultRifle Mastering": "Assault rifle", "AssortmentUnlockReward/Description": "Ezt a tárgyat {0}-tól veheted meg jútalomként", "AttachedLauncher": "Csőalatti gránátvető", "AttachedLauncherDescription": "Cső alatti gránátvető kezelési képességek", - "AttachedLauncherLevelingUpDescription": "The Underbarrel Launchers weapon skill is improved by firing and reloading the corresponding weapon type.", "Attention": "Figyelem", "Attention!": "Figyelem!", "Attention! All items, brought by you into the raid or found in it, have been lost.": "Attention! You have lost all items you brought and found during the raid.", @@ -12456,7 +12418,6 @@ "AttentionDescription": "Attention increases the looting speed of various containers.", "AttentionEliteExtraLootExp": "Megduplázza a fosztogatási TP-t", "AttentionEliteLuckySearch": "Chance to instantly find an item in a container [({0})]", - "AttentionLevelingUpDescription": "The Attention skill is improved by searching containers and bodies.", "AttentionLootSpeed": " Increases looting speed by [{0:0%}]", "AttentionRareLoot": "Increases item examination speed by [{0:0%}]", "Auctionsdescription": "Aukciók", @@ -12512,7 +12473,6 @@ "Bloom": "Bloom", "BodyTemperature": "Testhőmérséklet", "Boiler Tanks": "Boiler Tanks", - "BonfireBuff": "Bonfire's warmth", "BoozeGenerator": "PIA GENERÁTOR", "Boss pick": "Boss pick", "BossType/AsOnline": "As in online", @@ -12623,7 +12583,6 @@ "CharismaFenceRepPenaltyReduction": "Reduces Fence reputation penalty", "CharismaHealingDiscount": "Reduces after-raid healing services prices by [{0:0%}]", "CharismaInsuranceDiscount": "Reduces insurance services prices by [{0:0%}]", - "CharismaLevelingUpDescription": "The Charisma skill is improved indirectly by leveling the Attention, Perception, and Intellect skills.", "CharismaScavCaseDiscount": "Adds a discount to Scav Case prices", "ChatScreen/QuestItemsListHeader": "The following items will be moved to quest item stash:", "ChatScreen/QuestItemsMoved": "Items successfully moved to quest item stash", @@ -12741,7 +12700,6 @@ "CovertMovementDescription": "Covert movement makes your steps quieter and reduces the sound radius.", "CovertMovementElite": "Covert movement becomes equally quiet on all surfaces", "CovertMovementEquipment": "Reduces noise level of weapons and equipment by [{0:0%}]", - "CovertMovementLevelingUpDescription": "The Covert Movement skill is improved by moving quietly.", "CovertMovementLoud": "Reduces noise level of footsteps on uncommon surfaces by [{0:0%}]", "CovertMovementSoundRadius": "Reduces Covert Movement sound radius by [{0:0%}]", "CovertMovementSoundVolume": "Reduces noise level of footsteps on common surfaces by [{0:0%}]", @@ -12749,7 +12707,6 @@ "Crafting": "Tárgykészítés", "CraftingContinueTimeReduce": "Reduces all cyclic production time (except Bitcoin Farm) by [{0:0.##%}]", "CraftingElite": "Ability to craft up to two different items in a zone at once", - "CraftingLevelingUpDescription": "The Crafting skill is improved by creating items in the Hideout.", "CraftingSingleTimeReduce": "Reduces item crafting time by [{0:0.##%}]", "Craftingdescription": "Improving the crafting skill reduces the production time of items, including those produced cyclically.", "Create group dialog": "Csoportos beszélgetés létrehozása", @@ -12779,7 +12736,6 @@ "DISPOSE": "ELVETÉS", "DMR": "Távcsöves gépkarabély", "DMRDescription": "Designated Marksman Rifle handling skill improves the overall handling, reduces recoil and reload time of DMRs.", - "DMRLevelingUpDescription": "The Designated Marksman Rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "DON'T TRY TO LEAVE": "NE PRÓBÁLJ KILÉPNI", "DONTKNOW": "NEM TUDOM", "DOWN": "LE", @@ -12934,7 +12890,6 @@ "EAntialiasingMode/None": "Off", "EAntialiasingMode/TAA_High": "TAA High", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", "EArenaPresetsType/Assault": "Assault", "EArenaPresetsType/CQB": "CQB", "EArenaPresetsType/Marksman": "Marksman", @@ -13142,7 +13097,6 @@ "EnduranceBuffRestorationTimeRed": "Reduces breath recovery time by [{0:0%}]", "EnduranceDescription": "Endurance influences the amount of stamina and the rate of exhaustion while running or jumping, as well as holding and recovering breath.", "EnduranceHands": "Megnövelt kar állóképesség", - "EnduranceLevelingUpDescription": "The Endurance skill is improved by sprinting without the overweight status effect, and by working out in the Hideout gym.", "EnergyExpensesUp {0}": "Az energia fogyasztás {0} -el nő", "EnergyRate": "Energia visszanyerés", "Enter": "Belép", @@ -13272,7 +13226,6 @@ "Friends": "Barátok", "Friends invite is already sent": "Már küldtél egy barátnak jelölést.", "Friends list": "Barátlista", - "FrostbiteBuff": "Morana's frostbite", "Full": "Tele", "Full Recovery Time": "Teljes Felépülési Idő", "Fullscreen mode:": "Képernyő mód:", @@ -13341,7 +13294,6 @@ "HIT": "TALÁLAT", "HMG": "Nehézgéppuska", "HMGDescription": "Heavy machinegun handling skill improves the overall handling, reduces recoil and reload time of Heavy Machine Guns.", - "HMGLevelingUpDescription": "The Heavy Machine Guns weapon skill is improved by firing and reloading the corresponding weapon type.", "HOLD FIRE": "TÜZET SZÜNTESS", "HOLDFIRE": "TÜZET SZÜNTESS", "HOLDPOSITION": "TARTSD A POZÍCIÓT", @@ -13378,7 +13330,6 @@ "HealthElitePosion": "Méreg immunitás szintje [({0})]", "HealthEnergy": "Reduces energy consumption by [{0:0%}]", "HealthHydration": "Reduces dehydration rate by [{0:0%}]", - "HealthLevelingUpDescription": "The Health skill is improved indirectly by leveling the Strength, Endurance, and Vitality skills.", "HealthOfflineRegenerationInc": "Increases off-raid health regeneration by [{0:0%}]", "HealthRate": "Életerő regeneráció", "HealthTreatment/SkipHealthTreatmentDialogue": "Attention! Your health is low.\nSkip health treatment and\nproceed to the MAIN MENU?", @@ -13392,7 +13343,6 @@ "HeavyVestRepairDegradationReduction": "Reduces wear amount when using repair kits by [{0:0%}]", "HeavyVests": "Nehéz mellény", "HeavyVestsDescription": "A nehéz testpáncél viselési képesség csökkenti az elszenvedett átütő és robbanóanyag sebzés értékét az életerőre és a páncélra emellett javítja a mobilitást.", - "HeavyVestsLevelingUpDescription": "The Heavy Vests skill is improved by repairing heavy body armor and ballistic plates with repair kits.", "Hideout/Craft/ToolMarkerTooltip": "This item will be used as an auxiliary tool. It will return to your stash once production is complete.", "Hideout/Handover window/Caption/All weapons": "All weapons", "Hideout/Handover window/Message/Items in stash selected:": "Items in stash selected:", @@ -13405,7 +13355,6 @@ "HideoutExtraSlots": "+2 hely az üzemanyag kannáknak\n+2 hely a víz szűrőknek\n+2 hely a levegő szűrőknek\n+2 hely a bitcoin farm tárolási limitjéhez", "HideoutInteractions/TransferItems": "Transfer items", "HideoutManagement": "Rejtekhely kezelés", - "HideoutManagementLevelingUpDescription": "The Hideout Management skill is improved by creating items and upgrading zones in the Hideout.", "HideoutResourceConsumption": "Reduces fuel, air and water filters consumption rate by [{0:0%}]", "HideoutZoneBonusBoost": "Increases all percentage bonuses from Hideout zones by [{0:0}%] of their values", "Hideout\\Craft\\ToolMarketTooltip": "", @@ -13444,7 +13393,6 @@ "Immunity": "Immunitás", "ImmunityAvoidPoisonChance": "Increases chance to avoid a poison by [{0:0%}]", "ImmunityDescription": "Immunity affects the susceptibility to illnesses and the effectiveness of their treatment.", - "ImmunityLevelingUpDescription": "The Immunity skill is improved by being under the effects of poisoning and other negative effects of stimulants.", "ImmunityMiscEffects": "Reduces all negative effects from stimulants, food, water by [{0:0%}]", "ImmunityMiscEffectsChance": "Chance to gain immunity to negative effects from stimulants, food, water up to [{0:0%}]", "ImmunityPainKiller": "Increases painkiller action time by [{0:0%}]", @@ -13473,7 +13421,6 @@ "IntellectEliteContainerScope": "Guess container contents without searching", "IntellectEliteNaturalLearner": "You do not need a manual for item examination", "IntellectLearningSpeed": "Increases item examination speed by [{0:0%}]", - "IntellectLevelingUpDescription": "The Intellect skill is improved by examining previously unidentified items and repairing weapons.", "IntellectRepairPointsCostReduction": "Reduces repair kit point consumption by [{0:0%}]", "IntellectWeaponMaintance": "Increases weapon repair effectiveness by [{0:0%}]", "IntelligenceCenter": "ADATELEMZŐ KÖZPONT", @@ -13645,7 +13592,6 @@ "LL": "LL", "LMG": "Könnyű géppuska", "LMGDescription": "Light Machinegun handling skill improves the overall handling, reduces recoil and reload time of LMGs.", - "LMGLevelingUpDescription": "The Light Machine Guns weapon skill is improved by firing and reloading the corresponding weapon type.", "LOAD": "TÖLTÉS", "LOAD FROM DIRECTORY...": "Betöltés a könyvtárból...", "LOAD FROM FILE...": "Betöltés fájlból...", @@ -13667,7 +13613,6 @@ "LastHeroDescriptionShort": "You are on your own", "Launcher": "Rocket Launchers", "LauncherDescription": "Gránátvető kezelési képességek", - "LauncherLevelingUpDescription": "The Grenade Launchers weapon skill is improved by firing and reloading the corresponding weapon type.", "LeanLockLeft": "Balra hajlás", "LeanLockRight": "Jobbra hajlás", "LeanX negative": "Smoothly lean left", @@ -13704,7 +13649,6 @@ "LightVestRepairDegradationReduction": "Reduces wear amount when using repair kits by [{0:0%}]", "LightVests": "Könnyű mellény", "LightVestsDescription": "Light body armor wearing skill improves mobility and reduces the amount of received penetration and melee damage to your health.", - "LightVestsLevelingUpDescription": "The Light Vests skill is improved by repairing light body armor and ballistic plates with repair kits.", "Lighthouse": "Világítótorony", "Lighthouse_pass": "Path to Lighthouse", "Lighting quality:": "Megvilágítás minősége:", @@ -13756,7 +13700,6 @@ "MAP": "TÉRKÉP", "MASTERING": "TÖKÉLETESÍTÉS", "MATERIAL": "Anyag", - "MAX AMMO DAMAGE": "Damage", "MAXCOUNT": "MAX MENNYISÉG", "MAXIMUM THROW DAMAGE": "MAXIMÁLIS SEBZÉS REPESZENKÉNT", "MED USE TIME": "GYÓGY. HASZNÁLATI IDŐ", @@ -13807,7 +13750,6 @@ "MagDrillsInstantCheck": "Magazine is checked instantly when moved to your inventory", "MagDrillsInventoryCheckAccuracy": "Increases the accuracy of magazine check through the context menu by [{0}%]", "MagDrillsInventoryCheckSpeed": "Increases the speed of magazine check through the context menu by [{0}%]", - "MagDrillsLevelingUpDescription": "The Mag Drills skill is improved by loading, unloading, and checking magazines.", "MagDrillsLoadProgression": "A tár feltöltése minden egyes tölténnyel gyorsabb lesz", "MagDrillsLoadSpeed": "Increases ammo loading speed by [{0}%]", "MagDrillsUnloadSpeed": "Increases ammo unloading speed by [{0}%]", @@ -13881,11 +13823,9 @@ "Meds": "Gyógyszerek", "Melee": "Közelharci", "MeleeDescription": "Közelharci fegyverek kezelési képességek", - "MeleeLevelingUpDescription": "The Melee skill is improved by striking enemies with melee weapons.", "Memory": "Memória", "MemoryDescription": "A tanult képességeknek több idő kell hogy elfelejtődjenek", "MemoryEliteMentalNoDegradation": "You don't forget any skills", - "MemoryLevelingUpDescription": "The Memory skill is improved by", "MemoryMentalForget1": "Reduces the rate at which you forget skills by [{0:0%}]", "MemoryMentalForget2": "Reduces rollback of skill levels by [{0:0%}]", "Mental": "Mentális", @@ -13895,7 +13835,6 @@ "MetabolismEliteBuffNoDyhydration": "You don't receive damage from exhaustion and dehydration", "MetabolismEliteNoForget": "You don't forget any Physical skills", "MetabolismEnergyExpenses": "Reduces energy consumption and dehydration rate by [{0:0%}]", - "MetabolismLevelingUpDescription": "The Metabolism skill is improved by consuming energy and water supplies.", "MetabolismMiscDebuffTime": "Reduces negative effect time of stimulants, food, water by [{0:0%}]", "MetabolismPhysicsForget": "Reduces the rate of forgetting Physical skills by [{0:0%}]", "MetabolismPhysicsForget2": "Decreases maximum scale of forgetting Physical skills", @@ -14139,7 +14078,6 @@ "PerceptionDescription": "Mastering perception increases the hearing distance, improves aiming concentration and makes detection of nearby loot easier.", "PerceptionFov": "Increases aiming concentration by [{0:0%}]", "PerceptionHearing": "Increases hearing distance by [{0:0%}]", - "PerceptionLevelingUpDescription": "The Perception skill is improved by finding and picking up any items.", "PerceptionLootDot": "Increases loot detection radius by [{0:0%}]", "PerceptionmEliteNoIdea": "Zsákmány közelségi értesítés", "Perish": "Elpusztult", @@ -14148,7 +14086,6 @@ "Pistol": "Pisztoly", "Pistol Mastering": "Pistol", "PistolDescription": "Pistol handling skill improves the overall handling, reduces recoil and reload time of pistols.", - "PistolLevelingUpDescription": "The Pistols weapon skill is improved by firing and reloading the corresponding weapon type.", "PlaceOfFame": "RELIKVIÁK", "PlantLocationDescription": "A TerraGroup cégcsoportnak illegális bérleményébe tartozott a 16-os vegyi üzem és annak területe, valamint létesítményei. Az Egyezményes Háború ideje alatt a terület számos tűzharc központjává vált a USEC és a BEAR közötti hatalmi játékok miatt, amit Tarkov ipari területei fölött vívott dominancia tüzelt. Később; a káosz nyomában; az üzem területe átalakult óvóhelyé a megmaradt civilek, katonák, fegyveresek és egyéb vademberek számára. Köztük az USEC és BEAR megmaradt emberi számára is.", "Player": "Játékos", @@ -14220,7 +14157,6 @@ "ProneMovement": "Kúszás", "ProneMovementDescription": "Mastering the prone movement makes it faster and quieter.", "ProneMovementElite": "Increases prone movement speed by [{0:0%}]", - "ProneMovementLevelingUpDescription": "The Prone Movement skill is improved by moving while in a prone position.", "ProneMovementSpeed": "Increases Prone Movement Speed by [(+{0:0%})]", "ProneMovementVolume": "Csökkenti a kúszás mozgás hangját [(-{0:0%})]-al", "Protect objective {0:F1}": "Védd meg a célt {0:F1}", @@ -14412,7 +14348,6 @@ "RecoilControlDescription": "Greater control over recoil reduces horizontal spread, making the recoil more predictable.", "RecoilControlElite": "Improves recoil control by [{0:0%}]", "RecoilControlImprove": "Improves recoil control by [{0:0%}]", - "RecoilControlLevelingUpDescription": "The Recoil Control skill is improved by continuous shooting. The higher the base recoil of the weapon, the faster the skill improves.", "RecommendedVRAM:": "Recommended VRAM", "Reconnection is not available at this moment due to testing purposes": "Az újrakapcsolódás ebben a pillanatban nem lehetséges tesztelési okokból", "RedRebel_alp": "Climber's Trail", @@ -14442,7 +14377,6 @@ "Report game bug abuse": "Játék hiba kihasználás jelentése", "Report offensive nickname": "Sértő becenév jelentése", "Report suspected cheat use": "Feltételezett csalás használat jelentése", - "Report suspicious profile": "Report suspicious profile", "ReportAbuseBug": "Report bug abuse", "ReportAbuseVoip": "Report VoIP & Radio abuse", "ReportCheater": "Report suspected cheater", @@ -14478,7 +14412,6 @@ "Revolver": "Revolver", "Revolver Mastering": "Revolver", "RevolverDescription": "Revolver kezelési képesség.", - "RevolverLevelingUpDescription": "The Revolvers weapon skill is improved by firing and reloading the corresponding weapon type.", "RezervBase": "Reserve", "Rig": "Málhamellény", "Right Arm": "JOBB KAR", @@ -14528,7 +14461,6 @@ "SKILLS_SPEED_UP": "Nőtt a szinteződési sebesség", "SMG": "Géppisztoly", "SMGDescription": "Submachine Gun handling skill improves the overall handling, reduces recoil and reload time of SMGs.", - "SMGLevelingUpDescription": "The Submachine guns weapon skill is improved by firing and reloading the corresponding weapon type.", "SNIPERPHRASE": "MESTERLÖVÉSZ", "SO": "SO", "SOUND": "HANG", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "A kapcsolatod szintje {0} val nőtt {1}-t", "Sandbox": "Ground Zero", "Sandbox_VExit": "Police Cordon V-Ex", - "Sandbox_high": "Ground Zero", "Saturation:": "Telítettség:", "Savage matchmaker": "Begin a raid as a Scav, a local bandit with a random set of gear. Tarkov is your home, you make the rules!", "SavageBannerDescription": "A raid as a Scav is different from a raid as your main PMC character. Player Scavs will spawn at random locations and times during an ongoing raid. The Scav's health and equipment will also be random. Extracting as a Scav will give you the opportunity to transfer any loot obtained during the raid to your main PMC character's stash. Completing a raid as a Scav will not transfer experience to your PMC character. Dying as a Scav will not affect your progress in any way.", @@ -14585,7 +14516,6 @@ "Search": "Keresés", "SearchDescription": "The search skill mastering allows you to search bodies and containers faster and more efficiently.", "SearchDouble": "Két tároló keresése egy időben", - "SearchLevelingUpDescription": "The Search skill is improved by searching containers.", "SecondPrimaryWeapon": "Háton", "SecondaryWeapon": "Másodlagos fegyver", "SecuredContainer": "Erszény", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "Some settings have been changed. Do you wish to save them?", "Settings/Sound/BinauralSound": "Binaural audio", "Settings/Sound/ChatVolume": "Chat volume:", - "Settings/Sound/CommentatorVolume": "Announcer volume:", "Settings/Sound/Device": "Audio device", "Settings/Sound/HideoutVolume": "Hideout volume:", "Settings/Sound/InterfaceVolume": "Interface volume:", "Settings/Sound/MusicOnRaidEnd": "Music on raid end", "Settings/Sound/MusicVolume": "Music volume:", "Settings/Sound/OverallVolume": "Overall volume:", - "Settings/Sound/ReadyToMatchSoundVolume": "Match accept screen volume:", "Settings/UnavailablePressType": "Nem elérhető", "SevereMusclePain": "Severe muscle pain", "Shack": "Military Base ellenőrző pont", @@ -14677,7 +14605,6 @@ "Shotgun": "Sörétes puska", "Shotgun Mastering": "Shotgun", "ShotgunDescription": "Shotgun handling skill improves the overall handling and recoil of shotguns.", - "ShotgunLevelingUpDescription": "The Shotguns weapon skill is improved by firing and reloading the corresponding weapon type.", "Show icons": "Ikonok mutatása", "Show:": "Mutat:", "SightingRange": "SIGHTING RANGE", @@ -14701,7 +14628,6 @@ "Sniper": "Mesterlövész puska", "Sniper Roadblock": "Mesterlövész útzár", "SniperDescription": "Sniper rifle handling skill improves the overall handling, reduces recoil and reload time of Sniper rifles.", - "SniperLevelingUpDescription": "The Bolt-action rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "SniperRifle": "Mesterlövész puska", "SniperRifle Mastering": "Sniper rifle", "Sniper_exit": "Mira Ave", @@ -14734,8 +14660,6 @@ "StartInGroup": "Together", "StartLookingForGroup": "Csoport keresésének indítása", "StartNotInGroup": "Separately", - "StashLinesExternalObtain": "Stash upgrade", - "StashLinesExternalObtain/Tooltip": "Stash upgrade is available for purchase on the website", "StatFoundMoneyEUR": "Euró találva", "StatFoundMoneyRUB": "Rubel találva", "StatFoundMoneyUSD": "Dollár találva", @@ -14779,12 +14703,10 @@ "StrengthBuffSprintSpeedInc": "Increases movement and sprint speed by [{0:0%}]", "StrengthBuffThrowDistanceInc": "Increases throw distance by [{0:0%}]", "StrengthDescription": "Az erő növelésével magasabbra ugorhatsz, gyorsabban futhatsz, nagyobbat üthetsz, messzebbre dobhatsz, és ezen felül, nagyobb súlyt cipelhetsz.", - "StrengthLevelingUpDescription": "The Strength skill is improved by sprinting with the overweight status effect, throwing grenades, using melee weapons, and by working out in the Hideout gym.", "StressBerserk": "Berserk mód feloldása", "StressPainChance": "Reduces pain shock chance by [{0:0%}]", "StressResistance": "Stressz-tűrés", "StressResistanceDescription": "Stress resistance improves the chances of withstanding injury shock, shaking hands, and tremors.", - "StressResistanceLevelingUpDescription": "The Stress Resistance skill is improved by receiving damage. Having the Pain status effect without using painkillers also improves this skill.", "StressTremor": "Reduces tremor oscillation by [{0:0%}]", "StringSeparator/Or": " or ", "Stun": "Elkábulva", @@ -14851,7 +14773,6 @@ "Summary": "Összefoglaló", "Surgery": "Műtés", "SurgeryDescription": "A képesség lehetővé teszi a harctéri műtéteket, ami megmentheti az életed bizonyos szituációkban. Jobb, ha megtanulod ezt a képességet, mert így gyorsabban és jobban hajthatod végre ezeket a műveleteket.", - "SurgeryLevelingUpDescription": "The Surgery skill is improved by using surgical kits on injured body parts.", "SurgeryReducePenalty": "Reduces surgery HP penalty by [{0:0%}]", "SurgerySpeed": "Increases surgery speed by [{0:0%}]", "Survival Rate Short": "S/R: {0}%", @@ -14927,7 +14848,6 @@ "Throwing": "Dobó fegyverek", "ThrowingDescription": "The throwing weapons handling skills allow you to throw grenades farther and with less energy consumption.", "ThrowingEnergyExpenses": "Reduces required throw energy by [{0:0%}]", - "ThrowingLevelingUpDescription": "The Throwables skill is improved by throwing grenades.", "ThrowingStrengthBuff": "Increases throw strength by [{0:0%}]", "ThrowingWeaponsBuffElite": "Throwables don't require energy and fatigue does not affect their accuracy", "Time flow": "Time flow", @@ -14976,11 +14896,11 @@ "Trading/Dialog/AvaliableServices": "Can you help me with something?", "Trading/Dialog/Btr/News": "What's the news?", "Trading/Dialog/Btr/News/Next": "Any more news?", - "Trading/Dialog/Btr/News1": "It's been snowing so hard recently! We haven't had snow like this since the Contract Wars. It's like we don't live up north. Shame it's all melted now.", - "Trading/Dialog/Btr/News2": "You don't go out often, do you? There was a big holiday, the whole town celebrated! Happy holidays, by the way.", - "Trading/Dialog/Btr/News3": "Our kingpins made a big mess, didn't they? Sitting at their spots, not moving, not letting anyone breathe.", - "Trading/Dialog/Btr/News4": "This weirdo who dresses up as Santa Claus year after year, he's talking now! I thought he was mute.", - "Trading/Dialog/Btr/News5": "Folks started picking up figurines of local celebrities all over the city. I wonder if my BTR will turn out to be one or not.", + "Trading/Dialog/Btr/News1": "The biggest news is the BTR! I fixed it all myself. Consider it my own creation. Now I can drive people around. Maybe that'll help me pay for the repairs.", + "Trading/Dialog/Btr/News2": "Someone is organizing gladiatorial fights in Tarkov. They say a lot of people went there of their own free will. The money's pretty good. If you survive, obviously!", + "Trading/Dialog/Btr/News3": "There was an uproar all over Tarkov over some TerraGroup documents. They've even been looking beyond the border, but I kinda don't believe it.", + "Trading/Dialog/Btr/News4": "A while back, most of the AP ammo went missing from the traders' stocks. Fighters like you were running all over Tarkov, looking for other people's ammo stashes. Now everything's fine though.", + "Trading/Dialog/Btr/News5": "Sanitar tried to strengthen his influence in Tarkov recently. He had some kind of an antidote, apparently. Not long before that, a lot of people got poisoned. Coincidence? I think not.", "Trading/Dialog/Btr/NoNews": "I think that's all the news I have.", "Trading/Dialog/Btr/ServicePayoff{0}": "Works for me, yes. (hand over \"{0}\")", "Trading/Dialog/BtrBotCover/Description": "The whole time you're in the BTR, we'll shoot anyone who sticks their noses out. We'll also clear the drop zone and cover you while you get out, but not for long.", @@ -14999,34 +14919,18 @@ "Trading/Dialog/PlayerHandoveItem{0}": "Found this. (hand over \"{0}\")", "Trading/Dialog/PlayerTaxi/Description": "Here's where I can drop you off. Pick one.", "Trading/Dialog/PlayerTaxi/Name": "Take a ride", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Rodina Cinema", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "Driving to the tram. You got the cash, right?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Tram", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "Great, we're on course for city center. You got enough cash?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "City Center", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Collapsed Crane", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Old Scav Checkpoint", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Pinewood Hotel", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "Gonna head to the Scav bunker. Price alright?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Scav Bunker", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "The sunken village, huh? I think we can make it. Here's the price.", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Sunken Village", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "Could drive you to the fork in the road, sure. You got enough cash?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Junction", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "Sawmill? No problem! Here's my pricing.", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Sawmill", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "To the USEC checkpoint, alright. Not driving for free, though.", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "USEC Checkpoint", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "I'm mapping out the route to the Emercom base. You cool price-wise?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "Emercom Base", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "Okie-dokie, old sawmill it is. Here's the price.", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Old Sawmill", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "You want me to drop you off at the depot? Just so you know, you can't get out of there without me. If the price is okay, you keep an eye on the time there, okay?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Train Depot", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina Cinema", + "Trading/Dialog/PlayerTaxi/p2/Description": "Driving to the tram. You got the cash, right?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Great, we're on course for city center. You got enough cash?", + "Trading/Dialog/PlayerTaxi/p3/Name": "City Center", + "Trading/Dialog/PlayerTaxi/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Collapsed Crane", + "Trading/Dialog/PlayerTaxi/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Old Scav Checkpoint", + "Trading/Dialog/PlayerTaxi/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood Hotel", "Trading/Dialog/Quit": "Take your leave", "Trading/Dialog/ServicePayoff{0}": "Alright, this should be enough. (hand over \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Hide history", @@ -15069,7 +14973,6 @@ "TroubleFixingMagElite": "Csökkenti a meghibásodások esélyét a tölténytől 50%-al, miután javítva lett a hiba amit ugyan az a probléma okozott", "TroubleShootingDescription": "Troubleshooting skill facilitates rectification of weapon malfunctions.", "Troubleshooting": "Hibaelhárítás", - "TroubleshootingLevelingUpDescription": "The Troubleshooting skill is improved by regularly fixing weapon malfunctions.", "Try_keycard {0}": "Próbáld meg a {0} -t", "Tunnel": "Alagút", "Tunnel_Shared": "Side Tunnel (Co-Op)", @@ -15152,11 +15055,6 @@ "UI/Arena/Place_7": "7th place", "UI/Arena/Place_8": "8th place", "UI/Arena/Place_9": "9th place", - "UI/ArmorPenetration/High": "High", - "UI/ArmorPenetration/Low": "Low", - "UI/ArmorPenetration/Medium": "Medium", - "UI/ArmorPenetration/VeryHigh": "Very high", - "UI/ArmorPenetration/VeryLow": "Very low ", "UI/Charisma/Discount/Insurance": "Insurance cost", "UI/Charisma/Discount/PostRaidHealing": "Healing cost", "UI/Charisma/Discount/ScavCase": "Scav Case cost", @@ -15334,8 +15232,6 @@ "Very good standing": "nagyon jó", "Vest": "Mellény", "Village": "Village", - "Violation/IntentionalTeamDamage/Warning": "Your account will be blocked if you continue shooting your teammates", - "Violation/IntentionalTeamKill/Warning": "Your account will be blocked if you continue killing your teammates at round start", "Violation/TeamKill/Warning": "Your account will be blocked if you continue killing your teammates", "Vital mod weapon in hands": "Nem módosíthatod a fegyver létfontosságú részeit, amíg a kezedben van.", "Vital parts": "Létfontosságú részek", @@ -15345,7 +15241,6 @@ "VitalityBuffRegeneration": "Increases health regeneration in combat", "VitalityBuffSurviobilityInc": "Reduces chance of death from losing a limb by [{0:0%}]", "VitalityDescription": "Az életerő növeli az esélyt a sebek túléléséhez a vérzés és az egy testrészre irányuló kritikus sebzés általi azonnali halál csökkentésével.", - "VitalityLevelingUpDescription": "The Vitality skill is improved by sustaining various bleedings and injuries.", "Voice": "Character voice", "Voice 1": "Hang 1", "Voice 2": "Hang 2", @@ -15420,7 +15315,6 @@ "WeaponSwapBuff": "Increases weapon switching speed by [{0:0%}]", "WeaponTreatment": "Fegyver Karbantartás", "WeaponTreatmentDescription": "Weapon service and maintenance skills.", - "WeaponTreatmentLevelingUpDescription": "The Weapon Maintenance skill is improved by repairing weapons with repair kits.", "WearAmountRepairGunsReducePerLevel": "Reduces wear amount when using repair kits", "WearChanceRepairGunsReduceEliteLevel": "Reduces wear chance when using repair kits by 50%", "Weather conditions": "Weather conditions", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "Win rate, %", "arena/career/teamFightStats/wins": "Victories", "arena/career/teamFightStats/winsWithFavPreset": "Matches won with favorite preset", - "arena/customGames/create/samePresets": "Duplicate presets:", - "arena/customGames/create/setSamePresets": "Allow duplicate presets", "arena/customGames/invite/message{0}": "CUSTOM GAME INVITE FROM {0}", "arena/customGames/notify/GameRemoved": "Room has been disbanded", "arena/customgames/errors/notification/gamealreadystarted": "Game has already started", @@ -15708,7 +15600,6 @@ "arena/tooltip/OverallMatches": "Total number of ranked and unranked matches played.", "arena/tooltip/Presets": "Presets", "arena/tooltip/countGlp": "Your total ARP (Arena Reputation Points) rating. This is a statistic that determines your rating obtained in ranked game modes. It is used to match with players of equal skill, as well as to unlock new ranks and presets.", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", "arena/tooltip/friends": "Friends", "arena/tooltip/kdRatio": "Your overall Kill to Death ratio, calculated from all kills and deaths in ranked and unranked matches. Only the player kills are counted.", "arena/tooltip/leftGlp": "Amount of ARP rating required to reach the next rank.", @@ -15716,7 +15607,6 @@ "arena/tooltip/moneyRubles": "Roubles. Used to buy presets and are earned for victories in the Arena.", "arena/tooltip/ratingPlace": "Your position in the leaderboard.", "arena/tooltip/settings": "Settings", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", "arena/tooltip/sourcesGlp": "Earned ARP sources:", "arena/tooltip/winMatches": "Total number of wins in ranked and unranked matches.", "arena/tooltip/winRate": "Your overall win ratio, calculated from all wins and losses in ranked and unranked matches.", @@ -16330,9 +16220,9 @@ "rank_08": "Professional", "rank_09": "Elite", "rank_10": "Whisper of Death", - "rank_11": "Flame Warrior", + "rank_11": "Flame warrior", "rank_12": "Big Boss", - "rank_13": "Legend of the Arena", + "rank_13": "The Legend of the Arena", "ratingExpPos": "TP rang", "readytoinstallupgrade": "Fejlesztés kész", "receive": "ÁTVESZ", @@ -16450,8 +16340,6 @@ "{0} GroupPlayerBlocking/MatchLeave": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for quitting a game", "{0} GroupPlayerBlocking/NotAcceptedMatch": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for failing to accept a match", "{0} GroupPlayerBlocking/TeamKill": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for repeated teamkills", - "{0} Violation/IntentionalTeamDamage/Blocking": "Player {0} has been removed from the match and received a penalty for shooting teammates", - "{0} Violation/IntentionalTeamKill/Blocking": "Player {0} has been removed from the match and received a penalty for teamkilling at round start", "{0} Violation/TeamKill/Blocking": "Player {0} has been removed from the match and received a penalty for teamkilling", "{0} added you to the ignore list": "{0} hozzá lett adva a mellőzöttekhez", "{0} ask to cooperate": "{0} köszön neked", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "Ground Zero", "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "United Security", "5464e0404bdc2d2a708b4567 Description": "A USEC privát katonai vállalatot 1999-ben alapították miután a KerniSEC, és a Safe Sea egyesült. 2004-ben a Terra Group egyik ügynöke felvette a kapcsolatot a USEC-el, és ennek következtében vált magánhadsereggé, irodákkal világszerte, illetve 7500 fős személyzettel.", "5464e0454bdc2d06708b4567 Name": "BEAR", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Lighthouse ", "63aec6f256503c322a190374": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Streets of Tarkov", "64b694c8a857ea477002a408": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Interchange", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Streets of Tarkov", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "Survive and extract from Reserve with the \"Survived\" exit status", "629f08e7d285f377953b2af1": "Survive and extract from Lighthouse with the \"Survived\" exit status", "63aec66556503c322a190372": "Survive and extract from Streets of Tarkov with the \"Survived\" exit status", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Reach level 4 loyalty with Therapist", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -20314,8 +20195,6 @@ "60ec2b04bc9a8b34cd453b81": "You must not die or leave the raid while the task is active (Status: KIA, Left the Action, MIA, Ran Through)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "Survive and extract from Streets of Tarkov through Primorsky Ave Taxi V-Ex", "6397a6942e519e69d2139b25": "Locate and mark the first Patrol-A armored vehicle with an MS2000 Marker on Streets of Tarkov", "6397a7ce706b793c7d6094c9": "Locate and mark the second Patrol-A armored vehicle with an MS2000 Marker on Streets of Tarkov", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "I managed to contact the drivers. This wasn't easy, but I did unearth something interesting.", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "Eliminate Scavs while using melee weapons on Interchange", "63a9b5b2813bba58a50c9eeb": "Eliminate Scavs while using melee weapons on Customs", "63a9b5f064b9631d9178276b": "Eliminate Scavs while using melee weapons on Reserve", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21691,8 +21568,8 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "One less scumbag to worry about. You did well, kid.", "64e7ba17220ee966bf425ecb": "Locate and eliminate Kaban", "64e7ba4a6393886f74119f3d": "Eliminate Kaban's guards at the car dealership on Streets of Tarkov", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", diff --git a/project/assets/database/locales/global/it.json b/project/assets/database/locales/global/it.json index 793522f5..6199ff89 100644 --- a/project/assets/database/locales/global/it.json +++ b/project/assets/database/locales/global/it.json @@ -2675,7 +2675,7 @@ "5a16b8a9fcdbcb00165aa6ca Name": "Supporto Norotos Titanium Advanced Tactical", "5a16b8a9fcdbcb00165aa6ca ShortName": "TATM", "5a16b8a9fcdbcb00165aa6ca Description": "Un supporto in titanio leggero per l'installazione sul connettore Shroud sul casco. È necessario per l'ulteriore installazione dei visori per la visione notturna o altri dispositivi ottici. Prodotto dalla Norotos Inc.", - "5a16b93dfcdbcbcae6687261 Name": "Supporto a coda di rondine Dual AN/PVS-14", + "5a16b93dfcdbcbcae6687261 Name": "Supporto a coda di rondine AN/PVS-14 Dual", "5a16b93dfcdbcbcae6687261 ShortName": "DDT", "5a16b93dfcdbcbcae6687261 Description": "L'interfaccia a braccio doppia a coda di rondine per il dispositivo monoculare per la visione notturna AN/PVS-14.", "5a16b9fffcdbcb0176308b34 Name": "Cuffie per elmetto Ops-Core FAST RAC", @@ -3465,7 +3465,7 @@ "5ae089fb5acfc408fb13989b ShortName": "Trofeo", "5ae089fb5acfc408fb13989b Description": "Trofeo", "5ae08f0a5acfc408fb1398a1 Name": "Fucile a retrocarica Mosin 7.62x54R (Cecchino)", - "5ae08f0a5acfc408fb1398a1 ShortName": "Mosin da Cecchino", + "5ae08f0a5acfc408fb1398a1 ShortName": "Mosin", "5ae08f0a5acfc408fb1398a1 Description": "La M91/30 PU è la variante da cecchino del famoso fucile russo Mosin-Nagant, comunemente utilizzato da parte dei cecchini russi durante la Seconda Guerra Mondiale.", "5ae096d95acfc400185c2c81 Name": "Calcio standard del fucile Mosin", "5ae096d95acfc400185c2c81 ShortName": "Calcio Mosin", @@ -4188,7 +4188,7 @@ "5bf3f59f0db834001a6fa060 ShortName": "RPK-16 MP", "5bf3f59f0db834001a6fa060 Description": "Una tacca di mira staccabile prodotta dalla Izhmash. Edizione standard per l'RPK-16 LMG.", "5bfd297f0db834001a669119 Name": "Fucile a retrocarica Mosin 7.62x54R (Fanteria)", - "5bfd297f0db834001a669119 ShortName": "Mosin da Fanteria", + "5bfd297f0db834001a669119 ShortName": "Mosin (Fantería)", "5bfd297f0db834001a669119 Description": "Mosin–Nagant è uno dei fucili russi più famosi, comunemente usato dai soldati russi durante la seconda guerra mondiale. Sviluppato dal 1882 al 1891, fu utilizzato dalle forze armate dell'Impero russo, dell'Unione Sovietica e di varie altre nazioni. È uno dei fucili a retrocarica militari più prodotti in serie nella storia con oltre 37 milioni di unità prodotte dal 1891. Nonostante la sua età, è stato utilizzato in vari conflitti in tutto il mondo fino ai giorni nostri.", "5bfd35380db83400232fe5cc Name": "Calcio fucile di fanteria Mosin", "5bfd35380db83400232fe5cc ShortName": "Calcio crb. Mosin", @@ -4577,7 +4577,7 @@ "5c10c8fd86f7743d7d706df3 Name": "Iniettore di adrenalina", "5c10c8fd86f7743d7d706df3 ShortName": "Adrenalina", "5c10c8fd86f7743d7d706df3 Description": "Una siringa sterile monouso con una dose di adrenalina, principale ormone del midollo del surrene. Viene utilizzato per migliorare la risposta fisiologica associata con la preparazione muscolare all'incremento di attività. Potenzia temporaneamente forza e la resistenza. Allevia la sensazione di dolore.", - "5c11046cd174af02a012e42b Name": "Adattatore Wilcox per PVS-7", + "5c11046cd174af02a012e42b Name": "Interfaccia Wilcox per PVS-7", "5c11046cd174af02a012e42b ShortName": "W-PVS7", "5c11046cd174af02a012e42b Description": "L'interfaccia Wilcox per AN/PVS-7B/7D è progettata per sostituire i supporti in plastica forniti con una varietà di dispositivi per la visione notturna.", "5c110624d174af029e69734c Name": "Visore termico T-7 con supporto per visione notturna", @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "Un modulo di puntamento laser tattico compatto con un punto blu. Si monta su qualsiasi slitta Picatinny/Weaver per un'acquisizione precisa del bersaglio. Prodotto dalla Ncstar.", "5cd945d71388ce000a659dfb Name": "BEAR Giacca Standard", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Combat shirt", "5cd946231388ce000d572fe3 Name": "BEAR Pantaloni Standard", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "Impugnatura verticale ASh-12", "5cda9bcfd7f00c0c0b53e900 ShortName": "ASh-12", "5cda9bcfd7f00c0c0b53e900 Description": "Un'impugnatura verticale per il fucile d'assalto ASh-12.", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "USEC Pantaloni Standard", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", "5cde9ec17d6c8b04723cf479 Name": "USEC Giacca Standard", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Pantaloni tuta Adik", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", "5cdea42e7d6c8b0474535dad Name": "Tuta Adik", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "Telaio M700 Magpul Pro 700", "5cdeac22d7f00c000f26168f ShortName": "Pro700", "5cdeac22d7f00c000f26168f Description": "Pro 700 è un telaio ergonomico leggero progettato per il fucile da cecchino Remington M700. Prodotto dalla Magpul.", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "BEAR Black Lynx", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", "5d1f60ae86f7744bcc04998b Name": "BEAR Contractor T-Shirt", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "FSB Fast Response", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "BEAR Ghost Marksman", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "BEAR Summerfield", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "USEC Aggressor TAC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "USEC Softshell Flexion", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "USEC Woodland Infiltrator", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Combat shirt", "5d1f623886f7743014163027 Name": "USEC PCS Multicam", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "USEC PCU Ironsight", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "FSB Urban Tact", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "BEAR Gorka Kobra", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "BEAR Gorka SSO", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "BEAR Striker Infil Ops", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "BEAR Summer Field", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "USEC Gen.2 Khyber", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "USEC Woodland Infiltrator", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "USEC Ranger Jeans", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "USEC Taclife Terrain", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "USEC TACRES", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "Freno di bocca AR-10 Daniel Defense WAVE 7.62x51", "5d1f819086f7744b355c219b ShortName": "WAVE 762", "5d1f819086f7744b355c219b Description": "Il freno di bocca Daniel Defense WAVE è progettato per montare in modo sicuro il soppressore Daniel Defense WAVE sull'arma ospite, ma funziona anche in modo efficace senza di esso. È realizzato in acciaio inossidabile aerospaziale 17-4 PH e ha una finitura in nitruro di bagno di sale per avere la corrosione al minimo.", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "USEC Commando", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "Una culatta superiore per il fucile SR-25, prodotto dalla Knight's Armament Company.", "5df8e5c886f7744a122d6834 Name": "BEAR Zaslon", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "Meteor", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "BEAR Oldschool", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "USEC TIER2", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "Sklon", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "La prima generazione del porta piastre CPC modificato, originariamente progettato da Crye Precision e adattato da Ars Arma per l'uso da parte delle forze speciali della Federazione Russa. Questo giubbotto antiproiettile modulare si basa su un'imbracatura in polimero che si adatta al torace, che evita il gioco del platecarrier durante il movimento attivo e contribuisce anche a una distribuzione più uniforme del peso. Realizzato nella configurazione d'assalto delle buste. Prodotto dalla Ars Arma.", "5e4bb08f86f774069619fbbc Name": "BEAR Telnik", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "USEC TIER2", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "BEAR TIGR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "USEC Commando", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "Giubbotto Russia", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "BEAR TIGR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "USEC Urban Responder", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "BEAR Zaslon", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "USEC Deep Recon", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Tactical pants", "5e9dcf5986f7746c417435b3 Name": "Zaino LBT-8005A Day Pack (MultiCam Black)", "5e9dcf5986f7746c417435b3 ShortName": "Day Pack", "5e9dcf5986f7746c417435b3 Description": "Uno zaino da 14 litri semplice e affidabile in MultiCam mimetico Nero. Prodotto dalla London Bridge Trading.", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "Il gilet tattico fisso Thunderbolt, contenente tutte le tasche di utilità di base di cui avresti bisogno. Prodotto dalla Direct Action.", "5f5f45df0bc58666c37e7832 Name": "BEAR G99", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "USEC Night Patrol", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "BEAR G99", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "USEC Urban Responder", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Stivali Scav", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "BEAR SRVV", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "USEC TIER3", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": ".300 AAC Blackout AP", "5fd20ff893a8961fc660a954 ShortName": "300 AP", "5fd20ff893a8961fc660a954 Description": "Una cartuccia .300 AAC Blackout (7.62x35 mm) caricata con un proiettile perforante da 8.4 grammi proveniente da una cartuccia NATO M80A1 da 7.62x51 mm, composta da una punta penetrante in acciaio su un nucleo in lega di rame con una semi-rivestimento in rame in una custodia di ottone. Nonostante le caratteristiche proprie del proiettile quando utilizzato in una cartuccia a piena potenza, queste sono diverse quando trasferite in una cartuccia intermedia, tuttavia, il proiettile continua ad avere capacità di perforare le protezioni balistiche di base e intermedie, oltre a essere in grado di causare sostanziali effetti sul bersaglio dopo l'impatto. Il suo design gli consente anche di essere utilizzato senza problemi nei caricatori NATO STANAG 5.56x45mm.", "5fd3e77be504291efd0040ad Name": "USEC VEKTOR", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "BEAR Boreas", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "BEAR Grizzly", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "USEC Adaptive Combat", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "Semplice sistema di rotelle in nylon con tasche non rimovibili. Permette di portare una quantità molto elevata di munizioni a discapito della convenienza.", "6038b228af2e28262649af14 Name": "BEAR Rash Guard", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "USEC Sandstone", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", "6038b4b292ec1c3103795a0b Name": "Porta piastre LBT-6094A Slick (Coyote Tan)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "Un porta piastre semplice ma efficace della società London Bridge Trading. Il design più minimalista destinato all'uso con i gilet tattici. Versione Coyote Tan.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "Il TP-200 è desinato ad essere utilizzato come sistema di ricarica nella produzione di rilievi sismici e di detonatori intermedi quando si innescano cariche esplosive per fori di perforazione, schiacciando oggetti di modeste dimensioni ed eseguendo operazioni di detonazione speciali.", "603d01a1b41c9b37c6592047 Name": "BEAR VOIN", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "USEC Sage Warrior", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Imbracatura toracica Azimut SS \"Zhuk\" (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Azimut", "6040dd4ddcf9592f401632d2 Description": "Un semplice sistema portante in nylon con tasche non rimovibili. Ti consente di trasportare una quantità abbastanza impressionante di munizioni a scapito della comodità. Versione mimetica SURPAT.", @@ -8239,10 +8239,10 @@ "619b69037b9de8162902673e Description": "Progettato sia per il mercato civile che per uso militare. Il calcio CQR47 può essere facilmente montato al posto dell'attacco standard del calcio non pieghevole AK/AKM. Prodotto dalla Hera Arms.", "619b99ad604fcc392676806c Name": "BEAR Recon", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "USEC K4", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", "619bc61e86e01e16f839a999 Name": "Fascia da braccio (Alpha)", "619bc61e86e01e16f839a999 ShortName": "Alfa", "619bc61e86e01e16f839a999 Description": "Una fascia da braccio per veterani che si trovano su Tarkov dai tempi dell'Alpha.", @@ -8275,10 +8275,10 @@ "619bdfd4c9546643a67df6fa Description": "Una fascia da braccio per i più accaniti operatori USEC.", "619bf75264927e572d0d5853 Name": "BEAR Sumrak", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "Tubo corrugato militare", "619cbf476b8a1b37a54eebf8 ShortName": "TuboM", "619cbf476b8a1b37a54eebf8 Description": "Un tubo corrugato di origine militare per sistemi di ventilazione di attrezzature militari o sistemi di purificazione dell'aria.", @@ -8858,7 +8858,7 @@ "628cd624459354321c4b7fa2 Name": "Porta piastre Tasmanian Tiger SK (MultiCam Black)", "628cd624459354321c4b7fa2 ShortName": "TT SK", "628cd624459354321c4b7fa2 Description": "Il gilet ultraleggero e scheletrico TT Plate Carrier SK è realizzato principalmente in nylon Cordura laminato TPU leggero, sottile e resistente con una densità dichiarata di almeno 700 denari. Il design del gilet prevede due coperture leggere per i piatti, spallacci regolabili e un maglione leggero in vita. Dotato di pannello frontale per 4 caricatori.", - "628d0618d1ba6e4fa07ce5a4 Name": "Porta piastre NPP KlASS Bagariy (Digital Flora)", + "628d0618d1ba6e4fa07ce5a4 Name": "Impianto corazzato NPP KlASS Bagariy (Digital Flora)", "628d0618d1ba6e4fa07ce5a4 ShortName": "Bagariy", "628d0618d1ba6e4fa07ce5a4 Description": "Nel secondo millennio, l'equipaggiamento di un soldato ha subito seri cambiamenti in vista di nuove minacce e compiti. Era richiesto un migliore livello di protezione, quindi l'esercito russo aveva bisogno di un'armatura affidabile e funzionale. A metà degli anni 2000, l'MVD, successivamente riorganizzato nella Guardia Russa, ricevette giubbotti antiproiettile Bagariy. Bagariy era usato sia dai soldati ordinari delle truppe interne, sia nelle forze speciali. È stato utilizzato attivamente da PMC BEAR come principale armatura pesante.", "628dc750b910320f4c27a732 Name": "Porta piastre ECLiPSE RBAV-AF (Verde Ranger)", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "USEC Chameleon", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "BEAR VOLK", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "BEAR Coyote", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "USEC DesOps", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Maschera del Cavaliere della Morte", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "Una maschera unica del comandante della squadra Goons, ex operatore USEC che ha deciso di non fuggire da Tarkov, ma di creare un proprio ordine.", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "USEC Predator", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", "64f07f7726cfa02c506f8ac0 Name": "Diario", "64f07f7726cfa02c506f8ac0 ShortName": "Diario", "64f07f7726cfa02c506f8ac0 Description": "Il diario di qualcuno che ama davvero tutto ciò che è sovietico.", @@ -11920,7 +11920,7 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "USEC Defender", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "USEC BOSS Delta", "657f8e9824d2053bb360b51d ShortName": "USEC BOSS Delta", "657f8e9824d2053bb360b51d Description": "USEC BOSS Delta", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "BEAR URON", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "BEAR OPS MGS", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Tactical jacket", "657f925dada5fadd1f07a57a Name": "Materiali compositi ibridi", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "Civile morto", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", " V-ex_light": "Strada per la Base Militare V-Ex", " Voip/DisabledForOffline": "VoIP non è disponibile in modalità offline", " kg": "Kg", @@ -12102,8 +12087,6 @@ "AI amount": "Quantità IA", "AI difficulty": "Difficoltà IA", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "Penetrazione", - "AMMO PROJECTILE COUNT": "Numero dei Proiettili", "ARMOR CLASS": "CLASSE ARMATURA", "ARMOR POINTS": "PUNTI ARMATURA", "ARMOR TYPE": "TIPO DI ARMATURA", @@ -12146,12 +12129,11 @@ "AheadOfTimeEnding": "TEMPO DI COMPLETAMENTO", "Aim": "Mira", "AimDrills": "Mira allenata", - "AimDrillsLevelingUpDescription": "L'abilità Mira Migliorata aumenterà tutte le volte che colpirai un nemico mentre stai mirando.", "AimMaster": "Tiratore scelto", "AimMasterDescription": "Padroneggiare la mira riduce il tempo di puntamento e l'ondeggiamento subito dopo aver mirato.", - "AimMasterElite": "Aumenta la velocità di mira del [{0:0.#%}]", - "AimMasterSpeed": "Aumenta la velocità di mira del [{0:0.#%}]", - "AimMasterWiggle": "Aumenta il controllo sull'oscillazione mentre si mira del [{0:0.#%}]", + "AimMasterElite": "Aumenta la velocità di mira del [{0:0%}]", + "AimMasterSpeed": "Aumenta la velocità di mira del [{0:0%}]", + "AimMasterWiggle": "Aumenta il controllo dell'ondeggio in mira del [(+{0:0%})]", "Aiming deadzone:": "Angolo morto della mira:", "AirFilteringUnit": "UNITA DI FILTRAGGIO ARIA", "AirplaneDelayMessage": "Aspetta l'arrivo! Lo Spazio Aereo è congestionato", @@ -12241,12 +12223,9 @@ "Arena/CustomGames/toggle/tournament": "Torneo", "Arena/EndMatchNotification": "La partita è terminata mentre non eri via", "Arena/Matching/CustomGames": "Partite personalizzate", - "Arena/Notification/Selection/Blocked": "Acquisto predefinito bloccato", "Arena/OnCancelMatch": "Abbinamento annullato a causa di problemi di caricamento", "Arena/OnCancelMatch/Group": "Abbinamento annullato a causa di problemi di caricamento di un membro del gruppo", "Arena/OnCancelMatch/NoServer": "Impossibile trovare un server disponibile. Per favore, riprova più tardi.", - "Arena/Popups/TwitchDropsHeader": "Riscatta dono", - "Arena/Preset/Tooltip/Tab/6": "Vari preset unici collezionabili.", "Arena/Preset/Tooltip/Tab/Assault": "L'Assalto è la classe più versatile, i suoi presets hanno un equipaggiamento bilanciato adatto alla maggior parte delle situazioni in combattimento.", "Arena/Preset/Tooltip/Tab/CQB": "CQB è la classe più pesantemente corazzata nell'Arena. I CQB sono caratterizzati dalla loro visiera corazzata e dal numero maggiorato di munizioni per la loro arma principale. I presets di questa classe sono eccellenti nelle situazioni di difesa e negli scontri a fuoco prolungati.", "Arena/Preset/Tooltip/Tab/Collection": "Preset forniti per risultati speciali nell'Arena.", @@ -12294,19 +12273,13 @@ "Arena/TeamColor/white_plural": "Bianco", "Arena/TeamColor/yellow": "Giallo", "Arena/TeamColor/yellow_plural": "Giallo", - "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Non ci sono abbastanza soldi per uno o più membri del gruppo", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Non ci sono abbastanza Tier preset sbloccati per uno o più membri del gruppo", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Non ci sono preset sbloccati {0} per uno o più membri del gruppo", - "Arena/Tiers/LockedBy/PovertyThreshold": "Non ci sono abbastanza soldi per il Tier", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "Non ci abbastanza soldi per {0}", - "Arena/Tiers/LockedBy/PresetsUnlocked": "Non ci sono abbastanza preset sbloccati", - "Arena/Tiers/LockedBy/UnavailableTier": "Questo Tier non è disponibile per la partita", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} attualmente non è disponibile per la partita", - "Arena/Tiers/RankingAvailable {0}": "Partita Ranked non disponibile: {0} preset sbloccati", - "Arena/Tiers/Unlocked {0} presets": "Preset sbloccati {0}", - "Arena/Tiers/UnlockedPresets": "Preset sbloccati", - "Arena/Tooltip/MapSelectedCounter": "Numero di luoghi selezionati", - "Arena/Tooltip/MinMapCount {0}": "Seleziona più luoghi. Devi selezionare almeno {0} luogo/i", + "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", + "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", + "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", + "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", + "Arena/Tiers/UnlockedPresets": "Presets unlocked", "Arena/UI/Awaiting-Players": "In attesa dei giocatori", "Arena/UI/Confirm-Match": "Conferma", "Arena/UI/CustomMode": "Personalizzata", @@ -12325,10 +12298,8 @@ "Arena/UI/Match_leaving_forbidden_body": "Se abbandoni questa partita metterai in svantaggio i tuoi compagni.
perderai la tua ricompensa, valutazione e sarai idoneo a un ban temporaneo.", "Arena/UI/Match_leaving_forbidden_header": "Avvertimento! Stai abbandonando la partita.", "Arena/UI/Match_leaving_permitted_header": "Puoi abbandonare questa partita senza penalità.", - "Arena/UI/PresetResetToDefault": "Le impostazioni per i seguenti preset sono stati ripristinati ai valori predefiniti:", "Arena/UI/Return": "INDIETRO", "Arena/UI/Return-to-match": "RITORNA ALLA PARTITA", - "Arena/UI/Selection/Blocked": "Preset preso", "Arena/UI/Waiting": "In attesa...", "Arena/Ui/ServerFounding": "Alla ricerca del server...", "Arena/Widgets/Observer/capture point": "Cattura l'obiettivo", @@ -12383,16 +12354,9 @@ "ArenaUI/PresetView/FreePreset": "GRATUITO", "ArenaUI/PresetView/PresetPreview": "Anteprima preset", "ArenaUI/PresetView/ShopPrice": "Prezzo del negozio", - "Arena_AirPit": "Air Pit", - "Arena_AutoService": "Chop Shop", - "Arena_Bay5": "Bay 5", - "Arena_Bowl": "Bowl", - "Arena_Yard": "Block", - "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Finale", "Arena_result_result": "Risultato", "Arena_result_rounds": "Round", - "Arena_saw": "Segheria", "Armband": "Fascia", "Armor": "Armatura", "Armor Zone BackHead": "Nuca", @@ -12437,14 +12401,12 @@ "Aspect ratio:": "Proporzioni schermo:", "Assault": "Fucile d'assalto", "AssaultCarbine Mastering": "Carabina d'assalto", - "AssaultDescription": "L'abilità di maneggiare i Fucili d'Assalto, migliora la maneggevolezza complessiva, riduce il rinculo e il tempo di ricarica di quel tipo di arma.", - "AssaultLevelingUpDescription": "L'abilità Fucili d'Assalto aumenterà tutte le volte che sparerai o ricaricherai con il tipo d'arma corrispondente.", + "AssaultDescription": "L'abilità di maneggiare i fucili d'assalto, migliora la maneggevolezza complessiva, riduce il rinculo e il tempo di ricarica degli stessi.", "AssaultRifle": "Fucili d'assalto", "AssaultRifle Mastering": "Fucile d'assalto", "AssortmentUnlockReward/Description": "Sarai in grado di comprare questo oggetto da {0} come ricompensa", "AttachedLauncher": "Lanciagranate", - "AttachedLauncherDescription": "L'abilità di utilizzo del gestione del Lancia Granate sottocanna migliora la maneggevolezza generale, riduce il rinculo e il tempo di ricarica di questo tipo di arma.", - "AttachedLauncherLevelingUpDescription": "L'abilità Sparare dal Sottocanna aumenterà tutte le volte che si sparerà e si ricaricherà con il tipo d'arma corrispondente.", + "AttachedLauncherDescription": "Abilità di uso del lanciagranate sottocanna", "Attention": "Attenzione", "Attention!": "Attenzione!", "Attention! All items, brought by you into the raid or found in it, have been lost.": "Attenzione! Hai perso tutti gli oggetti che hai portato e trovato durante il raid.", @@ -12456,9 +12418,8 @@ "AttentionDescription": "L'attenzione aumenta la velocità di saccheggio di vari contenitori.", "AttentionEliteExtraLootExp": "Raddoppia l'ESP del saccheggio", "AttentionEliteLuckySearch": "Possibilità di trovare immediatamente un articolo in un contenitore [({0})]", - "AttentionLevelingUpDescription": "L'abilità Attento aumenterà tutte le volte che che si cercherà nei corpi e nei container.", - "AttentionLootSpeed": "Aumenta la velocità di saccheggio del [{0:0.#%}]", - "AttentionRareLoot": "Aumenta la velocità di esame degli oggetti del [{0:0.#%}]", + "AttentionLootSpeed": "Aumenta la velocità di saccheggio del [{0:0%}]", + "AttentionRareLoot": "Aumenta la velocità di esame degli oggetti del [{0:0%}]", "Auctionsdescription": "Aste", "Authentic": "Autentico", "Authorization": "AUTORIZZAZIONE", @@ -12512,7 +12473,6 @@ "Bloom": "Bloom", "BodyTemperature": "Temperatura del corpo", "Boiler Tanks": "Cisterne", - "BonfireBuff": "Il calore del falò", "BoozeGenerator": "DISTILLATORE", "Boss pick": "Scelta del Boss", "BossType/AsOnline": "Come per l'online", @@ -12613,17 +12573,16 @@ "Charge": "Otturatore", "Charisma": "Carisma", "CharismaAdditionalDailyQuests": "Aggiunge una ulteriore attività operativa giornaliera", - "CharismaBuff1": "Riduce i prezzi in contanti dei trader del [{0:0.#%}]", - "CharismaBuff2": "Aumenta il tasso di fedeltà dei mercanti del [{0:0%}]", - "CharismaDailyQuestsRerollDiscount": "Riduce il costo di sostituzione delle attività operative del [{0:0.#%}]", + "CharismaBuff1": "Riduce i prezzi in contanti dei trader del [{0:0%}]", + "CharismaBuff2": "Aumenta il tasso di fedeltà dei trader del [{0:0%}]", + "CharismaDailyQuestsRerollDiscount": "Riduce il costo di sostituzione delle attività operative del [{0:0%}]", "CharismaDescription": "Padroneggiare l'arte del carisma consente di ricevere sconti su vari servizi.", "CharismaEliteBuff1": "Sei il primo a conoscere le ultime notizie sugli scambi commerciali", - "CharismaEliteBuff2": "Aumenta il profitto da ogni transazione del [{0:0.#%}]", - "CharismaExfiltrationDiscount": "Riduce il costo di esfiltrazione del [{0:0.#%}]", + "CharismaEliteBuff2": "Aumenta il profitto da ogni transazione del [{0:0%}]", + "CharismaExfiltrationDiscount": "Riduce il costo di esfiltrazione del [{0:0%}]", "CharismaFenceRepPenaltyReduction": "Riduce la penalità sulla reputazione con Fence", - "CharismaHealingDiscount": "Riduce i prezzi dei servizi di guarigione post-raid del [{0:0.#%}]", - "CharismaInsuranceDiscount": "Riduce i prezzi dei servizi assicurativi del [{0:0.#%}]", - "CharismaLevelingUpDescription": "L'abilità Carisma aumenterà passivamente tutte le volte che verrà aumentato il livello in Attento, Percezione, e Intelletto.", + "CharismaHealingDiscount": "Riduce i prezzi dei servizi di guarigione post-incursione del [{0:0%}]", + "CharismaInsuranceDiscount": "Riduce i prezzi dei servizi assicurativi del [{0:0%}]", "CharismaScavCaseDiscount": "Aggiunge uno sconto ai prezzi della cassa degli Scav", "ChatScreen/QuestItemsListHeader": "I seguenti oggetti verranno spostati nella scorta degli oggetti missione:", "ChatScreen/QuestItemsMoved": "Gli oggetti sono stati spostati con successo nella scorta degli oggetti della missione", @@ -12651,19 +12610,19 @@ "Close the game": "Chiudi il gioco", "CloseBufferGates": "chiudi la porta", "CloseDoor": "Chiudi", - "ClothingItem/Equipped": "Equipaggiato", - "ClothingItem/Obtained": "Ottenuto", - "ClothingItem/Preview": "Anteprima", - "ClothingItem/Purchase": "Disponibile", - "ClothingItem/Unavailable": "Non disponibile", - "ClothingPanel/ExternalObtain": "Disponibile l'acquisto sul sito web", - "ClothingPanel/InternalObtain": "Condizioni di vendita del mercante:", - "ClothingPanel/LoyaltyLevel": "Livello Fedeltà\ndel Mercante:", - "ClothingPanel/PlayerLevel": "Livello\nGiocatore:", - "ClothingPanel/RequiredPayment": "Pagamento\nRichiesto:", - "ClothingPanel/RequiredQuest": "Task\ncompletata:", - "ClothingPanel/RequiredSkill": "Abilità\nRichiesta:", - "ClothingPanel/StandingLevel": "Reputazione\nMercante:", + "ClothingItem/Equipped": "Equipped", + "ClothingItem/Obtained": "Obtained", + "ClothingItem/Preview": "Preview", + "ClothingItem/Purchase": "Available", + "ClothingItem/Unavailable": "Unavailable", + "ClothingPanel/ExternalObtain": "Available for purchase on the website", + "ClothingPanel/InternalObtain": "Trader purchase conditions:", + "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", + "ClothingPanel/PlayerLevel": "Player\nLevel:", + "ClothingPanel/RequiredPayment": "Required\nPayment:", + "ClothingPanel/RequiredQuest": "Completed\ntask:", + "ClothingPanel/RequiredSkill": "Required\nSkill:", + "ClothingPanel/StandingLevel": "Trader\nStanding:", "CloudinessType/Clear": "Terso", "CloudinessType/Cloudy": "Nuvoloso", "CloudinessType/CloudyWithGaps": "Nuvoloso con schiarite", @@ -12740,17 +12699,15 @@ "CovertMovement": "Movimento furtivo", "CovertMovementDescription": "Il movimento furtivo rende i tuoi passi più silenziosi e riduce il raggio del suono.", "CovertMovementElite": "Il movimento furtivo diventa ugualmente silenzioso su tutte le superfici", - "CovertMovementEquipment": "Riduce il livello di rumore di armi ed equipaggiamento del [{0:0.#%}]", - "CovertMovementLevelingUpDescription": "L'abilità Movimento Accucciato aumenterà tutte le volte che ci si muoverà in silenzio.", - "CovertMovementLoud": "Riduce il livello di rumore dei passi su superfici insolite del [{0:0.#%}]", - "CovertMovementSoundRadius": "Riduce il raggio sonoro del movimento furtivo del [{0:0.#%}]", - "CovertMovementSoundVolume": "Riduce il livello di rumore dei passi su superfici comuni del [{0:0.#%}]", - "CovertMovementSpeed": "Aumenta la velocità di movimento furtivo del [{0:0.#%}]", + "CovertMovementEquipment": "Riduce il livello di rumore di armi ed equipaggiamento del [{0:0%}]", + "CovertMovementLoud": "Riduce il livello di rumore dei passi su superfici insolite del [{0:0%}]", + "CovertMovementSoundRadius": "Riduce il raggio sonoro del movimento furtivo del [{0:0%}]", + "CovertMovementSoundVolume": "Riduce il livello di rumore dei passi su superfici comuni del [{0:0%}]", + "CovertMovementSpeed": "Aumenta la velocità di movimento furtivo del [{0:0%}]", "Crafting": "Creazione", - "CraftingContinueTimeReduce": "Riduce tutti i tempi di produzione ciclici (eccetto Bitcoin Farm) del [{0:0.#%}]", + "CraftingContinueTimeReduce": "Riduce tutti i tempi di produzione ciclici (eccetto Bitcoin Farm) del [{0:0.##%}]", "CraftingElite": "Possibilità di creare fino a due oggetti diversi in una zona contemporaneamente", - "CraftingLevelingUpDescription": "L'abilità Artigianato aumenterà tutte le volte che si creeranno oggetti nel Nascondiglio.", - "CraftingSingleTimeReduce": "Riduce il tempo di creazione degli oggetti del [{0:0.#%}]", + "CraftingSingleTimeReduce": "Riduce il tempo di creazione degli oggetti del [{0:0.##%}]", "Craftingdescription": "Migliorare l'abilità di Crafting riduce il tempo di produzione degli oggetti, inclusi quelli prodotti ciclicamente.", "Create group dialog": "Crea una chat di gruppo", "CreateDialog": "{0} ha creato la chat di gruppo!", @@ -12778,8 +12735,7 @@ "DISCONNECT FROM GLOBAL CHAT": "DISCONNETTITI DALLA CHAT GLOBALE", "DISPOSE": "SCARTA", "DMR": "DMR", - "DMRDescription": "L'abilità di maneggiare il fucile da cecchino, migliora la maneggevolezza complessiva, riduce il rinculo e il tempo di ricarica di quel tipo di arma.", - "DMRLevelingUpDescription": "L'abilità Fucili da Cecchino aumenterà tutte le volte che sparerai o ricaricherai con il tipo d'arma corrispondente.", + "DMRDescription": "L'abilità di maneggiare i fucili DMR (Designated Marksman Rifle), migliora la maneggevolezza complessiva, riduce il rinculo e il tempo di ricarica degli stessi.", "DON'T TRY TO LEAVE": "NON PROVARE AD ABBANDONARE", "DONTKNOW": "NON LO SO", "DOWN": "GIÙ", @@ -12908,10 +12864,10 @@ "DrawElite": "Mira stabilizzata per i primi 3 secondi in qualsiasi situazione di resistenza", "DrawMaster": "Esperto in Estrazione", "DrawMasterDescription": "Padroneggiare l'estrazione rende più veloce il cambio arma.", - "DrawMasterElite": "Aumenta la velocità di estrazione dell'arma del [{0:0.#%}]", - "DrawMasterSpeed": "Aumenta la velocità di estrazione dell'arma del [{0:0.#%}]", - "DrawSound": "Riduce il suono mentre si mira del [{0:0.#%}]", - "DrawSpeed": "Aumenta la velocità di mira del [{0:0.#%}]", + "DrawMasterElite": "Aumenta la velocità di estrazione dell'arma del [{0:0%}]", + "DrawMasterSpeed": "Aumenta la velocità di estrazione dell'arma del [{0:0%}]", + "DrawSound": "Riduce il suono della mira del [{0:0%}]", + "DrawSpeed": "Aumenta la velocità di mira del [{0:0%}]", "DrawTremor": "Riduce l'effetto del tremore del 50% per i primi 2 secondi durante la mira", "DropBackpack": "Lascia lo zaino", "DropItem": "Butta l'oggetto", @@ -12934,7 +12890,6 @@ "EAntialiasingMode/None": "Spento", "EAntialiasingMode/TAA_High": "TAA Alto", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", "EArenaPresetsType/Assault": "Assalto", "EArenaPresetsType/CQB": "CQB", "EArenaPresetsType/Marksman": "Tiratore scelto", @@ -13136,13 +13091,12 @@ "Enabled": "Attivato", "Endurance": "Resistenza", "EnduranceBreathElite": "Respirare è indipendente dall'energia", - "EnduranceBuffBreathTimeInc": "Aumenta il tempo di apnea del [{0:0.#%}]", - "EnduranceBuffEnduranceInc": "Aumenta la resistenza del [{0:0.#%}]", - "EnduranceBuffJumpCostRed": "Riduce il consumo di resistenza mentre si salta del [{0:0.#%}]", - "EnduranceBuffRestorationTimeRed": "Riduce il tempo di recupero del fiato del [{0:0.#%}]", + "EnduranceBuffBreathTimeInc": "Aumenta il tempo di apnea del [{0:0%}]", + "EnduranceBuffEnduranceInc": "Aumenta la resistenza del [{0:0%}]", + "EnduranceBuffJumpCostRed": "Riduce il consumo di resistenza del salto del [{0:0%}]", + "EnduranceBuffRestorationTimeRed": "Riduce il tempo di recupero del respiro del [{0:0%}]", "EnduranceDescription": "La resistenza influenza la quantità di resistenza e il tasso di esaurimento durante la corsa o il salto, oltre a trattenere e recuperare il respiro.", "EnduranceHands": "Aumentata la resistenza alle braccia", - "EnduranceLevelingUpDescription": "L'abilità Resistenza aumenterà tutte le volte che si scatterà senza essere sovraccarichi, e dall'allenamento nella palestra del Nascondiglio.", "EnergyExpensesUp {0}": "Consumo di energia incrementato di {0}", "EnergyRate": "Recupero di energia", "Enter": "Entra", @@ -13272,7 +13226,6 @@ "Friends": "Amici", "Friends invite is already sent": "Hai già inviato la richiesta di amicizia.", "Friends list": "Lista amici", - "FrostbiteBuff": "Il congelamento di Morana", "Full": "Pieno", "Full Recovery Time": "Tempo di recupero totale", "Fullscreen mode:": "Modalità Schermo:", @@ -13339,9 +13292,8 @@ "HIDEOUT": "RIFUGIO", "HIGH_PACKETS_LOSS": "Alta perdita di pacchetti", "HIT": "COLPITO", - "HMG": "Mitragliatrice Pesante", - "HMGDescription": "L'abilità di maneggiare mitragliatrici pesanti migliora la maneggevolezza complessiva, riduce il rinculo e il tempo di ricarica di quel tipo di arma.", - "HMGLevelingUpDescription": "L'abilità Mitragliatrici Pesanti aumenterà tutte le volte che sparerai o ricaricherai con il tipo d'arma corrispondente.", + "HMG": "HMG", + "HMGDescription": "L'abilità di maneggiare mitragliatrici pesanti migliora la maneggevolezza complessiva, riduce il rinculo e il tempo di ricarica delle stesse.", "HOLD FIRE": "CESSATE IL FUOCO", "HOLDFIRE": "CESSATE IL FUOCO", "HOLDPOSITION": "TENERE POSIZIONE", @@ -13372,27 +13324,25 @@ "Health/ItemResourceDepleted": "L'oggetto è stato esaurito", "Health/PlayerIsDead": "Il personaggio è morto", "HealthAndPhysics": "Salute e fisico", - "HealthBreakChanceRed": "Riduce la probabilità di frattura dell'arto del [{0:0.#%}]", + "HealthBreakChanceRed": "Riduce la probabilità di frattura dell'arto del [{0:0%}]", "HealthDescription": "Una buona salute accelera il recupero dai danni subiti nei raid, diminuisce la probabilità di fratture e riduce il tasso di energia e disidratazione.", "HealthEliteAbsorbDamage": "Assorbimento dei danni", "HealthElitePosion": "Immunità al veleno livello [({0})]", - "HealthEnergy": "Riduce il consumo di energia del [{0:0.#%}]", - "HealthHydration": "Riduce il tasso di disidratazione del [{0:0.#%}]", - "HealthLevelingUpDescription": "L'abilità Guarigione aumenterà passivamente tutte le volte che verrà aumentato il livello in Forza, Resistenza e Salute.", - "HealthOfflineRegenerationInc": "Aumenta la rigenerazione della salute fuori dai raid del [{0:0.#%}]", + "HealthEnergy": "Riduce il consumo di energia del [{0:0%}]", + "HealthHydration": "Riduce il tasso di disidratazione del [{0:0%}]", + "HealthOfflineRegenerationInc": "Aumenta la rigenerazione della salute fuori dai raid del [{0:0%}]", "HealthRate": "Rigenerazione della salute", "HealthTreatment/SkipHealthTreatmentDialogue": "Attenzione! La tua salute è bassa.\nVuoi saltare i trattamenti medici e procedere al MENU PRINCIPALE?", "Heating": "RISCALDAMENTO", "Heavy": "Pesante", "HeavyBleeding": "Forte sanguinamento", - "HeavyVestBluntThroughputDamageReduction": "Riduce i danni contundenti alle parti del corpo coperte da armature pesanti del [{0:0.#%}]", + "HeavyVestBluntThroughputDamageReduction": "Riduce i danni contundenti alle parti del corpo coperte da armature pesanti del [{0:0%}]", "HeavyVestDeteriorationChanceOnRepairReduce": "Possibilità di non applicare l'usura durante la riparazione (50%)", - "HeavyVestMoveSpeedPenaltyReduction": "Riduce la penalità alla velocità di movimento mentre si indossa un'armatura pesante del [{0:0.#%}]", + "HeavyVestMoveSpeedPenaltyReduction": "Riduce la penalità alla velocità di movimento mentre si indossa un'armatura pesante del [{0:0%}]", "HeavyVestNoBodyDamageDeflectChance": "Possibilità di deviare un proiettile da un'armatura pesante", - "HeavyVestRepairDegradationReduction": "Riduce la quantità di usura quando si utilizzano i kit di riparazione del [{0:0.#%}]", + "HeavyVestRepairDegradationReduction": "Riduce la quantità di usura quando si utilizzano i kit di riparazione del [{0:0%}]", "HeavyVests": "Tattici pesanti", "HeavyVestsDescription": "Abilità per indossare armature pesanti, riduce la quantità di danni ricevuti dalla penetrazione, da danni da esplosivi e migliora la mobilità.", - "HeavyVestsLevelingUpDescription": "L'abilità Armatura Pesante aumenterà tutte le volte che riparerai le armature e le piastre con i kit di riparazione.", "Hideout/Craft/ToolMarkerTooltip": "Questo oggetto verrà usato come strumento ausiliario. Tornerà nella tua scorta una volta che la produzione è stata completata.", "Hideout/Handover window/Caption/All weapons": "Tutte le armi", "Hideout/Handover window/Message/Items in stash selected:": "Oggetti nella scorta selezionati:", @@ -13405,9 +13355,8 @@ "HideoutExtraSlots": "+2 slot per le taniche di carburante\n+2 slot per i filtri dell'acqua\n+2 slot per i filtri dell'aria\n+2 al limite di inventario delle monete della bitcoin farm", "HideoutInteractions/TransferItems": "Trasferisci oggetti", "HideoutManagement": "Gestione rifugio", - "HideoutManagementLevelingUpDescription": "L'abilità Gestione del Nascondiglio aumenterà tutte le volte che si creeranno oggetti e si migliorerà il Nascondiglio.", - "HideoutResourceConsumption": "Riduce il tasso di consumo dei filtri del carburante, dell'aria e dell'acqua del [{0:0.#%}]", - "HideoutZoneBonusBoost": "Aumenta tutti i bonus percentuali delle zone del rifugio del [{0:0.#%}] del loro valore", + "HideoutResourceConsumption": "Riduce il tasso di consumo dei filtri del carburante, dell'aria e dell'acqua del [{0:0%}]", + "HideoutZoneBonusBoost": "Aumenta tutti i bonus percentuali delle zone del rifugio del [{0:0}%] del loro valore", "Hideout\\Craft\\ToolMarketTooltip": "", "Hideout_area_16_stage_3_description": "Una vera e propria area nel rifugio dedicata alla conservazione di oggetti di valore collezionabile.", "Hiding objective {0:F1}": "Nascondendo l'obiettivo {0:F1}", @@ -13442,14 +13391,13 @@ "Identifier": "Stringa sorgente", "Illumination": "ILLUMINAZIONE", "Immunity": "Immunità", - "ImmunityAvoidPoisonChance": "Aumenta la possibilità di evitare l'avvelenamento del [{0:0.#%}]", + "ImmunityAvoidPoisonChance": "Aumenta la possibilità di evitare il veleno del [{0:0%}]", "ImmunityDescription": "L'immunità influisce sulla suscettibilità alle malattie e sull'efficacia del loro trattamento.", - "ImmunityLevelingUpDescription": "L'abilità Immune aumenterà tutte le volte che si sarà avvelenati e quando ci si troverà sotto l'effetto collaterali degli stimolanti.", - "ImmunityMiscEffects": "Riduce tutti gli effetti negativi di stimolanti, cibo, acqua del [{0:0.#%}]", - "ImmunityMiscEffectsChance": "Possibilità di ottenere l'immunità agli effetti negativi di stimolanti, cibo, acqua fino a [{0:0.#%}]", - "ImmunityPainKiller": "Aumenta il tempo di azione dell'antidolorifico del [{0:0.#%}]", - "ImmunityPoisonBuff": "Riduce la forza dell'effetto veleno del [{0:0.#%}]", - "ImmunityPoisonChance": "Possibilità di ottenere l'immunità ai veleni del [{0:0.#%}]", + "ImmunityMiscEffects": "Riduce tutti gli effetti negativi di stimolanti, cibo, acqua del [{0:0%}]", + "ImmunityMiscEffectsChance": "Possibilità di ottenere l'immunità agli effetti negativi di stimolanti, cibo, acqua fino a [{0:0%}]", + "ImmunityPainKiller": "Aumenta il tempo di azione dell'antidolorifico del [{0:0%}]", + "ImmunityPoisonBuff": "Riduce la forza dell'effetto veleno del [{0:0%}]", + "ImmunityPoisonChance": "Possibilità di ottenere l'immunità ai veleni [({0:0%})]", "In equipment": "IN EQUIPAGGIAMENTO", "InMenu": "Menù", "InRaid": "Raid", @@ -13472,10 +13420,9 @@ "IntellectEliteAmmoCounter": "Contatore di munizioni", "IntellectEliteContainerScope": "Indovina il contenuto del contenitore senza cercare", "IntellectEliteNaturalLearner": "Non hai bisogno di un manuale per esaminare l'oggetto", - "IntellectLearningSpeed": "Aumenta la velocità di esaminare gli oggetti del [{0:0.#%}]", - "IntellectLevelingUpDescription": "L'abilità Intelletto aumenterà tutte le volte che si esaminerà oggetti non identificati e nel momento in cui si riparerà le armi.", - "IntellectRepairPointsCostReduction": "Riduce il consumo di punti del kit di riparazione del [{0:0.#%}]", - "IntellectWeaponMaintance": "Aumenta l'efficacia della riparazione delle armi del [{0:0.#%}]", + "IntellectLearningSpeed": "Aumenta la velocità di esame degli oggetti del [{0:0%}]", + "IntellectRepairPointsCostReduction": "Riduce il consumo di punti del kit di riparazione del [{0:0%}]", + "IntellectWeaponMaintance": "Aumenta l'efficacia della riparazione delle armi del [{0:0%}]", "IntelligenceCenter": "CENTRO DELL'INTELLIGENCE", "Intensity:": "Intensità:", "Interact": "Interagisci", @@ -13643,9 +13590,8 @@ "LEVEL {0} UPGRADE REQUIREMENTS": "LIVELLO {0} - REQUISITI PER IL MIGLIORAMENTO", "LH": "LH", "LL": "LF", - "LMG": "Mitragliatrice Leggera", - "LMGDescription": "L'abilità di maneggiare le mitragliatrici leggere migliora la maneggevolezza complessiva, riduce il rinculo e il tempo di ricarica di quel tipo di arma.", - "LMGLevelingUpDescription": "L'abilità Mitragliatrici Leggere aumenterà tutte le volte che sparerai o ricaricherai con il tipo d'arma corrispondente.", + "LMG": "LMG", + "LMGDescription": "L'abilità di maneggiare le mitragliette leggere migliora la maneggevolezza complessiva e il rinculo delle stesse.", "LOAD": "CARICA", "LOAD FROM DIRECTORY...": "Carica dalla cartella...", "LOAD FROM FILE...": "Carica da file...", @@ -13665,9 +13611,8 @@ "LastHero": "LastHero", "LastHeroDescription": "Una lotta senza fine a colpi di arma da fuoco. Ci sarà un solo vincintore.", "LastHeroDescriptionShort": "Sei da solo", - "Launcher": "Lancia granate", - "LauncherDescription": "L'abilità di maneggiare il Lancia Granate migliora la maneggevolezza complessiva, riduce il rinculo e il tempo di ricarica di quel tipo di arma.", - "LauncherLevelingUpDescription": "L'abilità Lancia Granate aumenterà tutte le volte che si sparerà e si ricaricherà con il tipo d'arma corrispondente.", + "Launcher": "Lancia Missili", + "LauncherDescription": "Abilità nell'utilizzo dei lanciagranate", "LeanLockLeft": "Sporgiti a sinistra", "LeanLockRight": "Sporgiti a destra", "LeanX negative": "Piegati dolcemente a sinistra", @@ -13699,12 +13644,11 @@ "LightBleeding": "Sanguinamento leggero", "LightVestBleedingProtection": "Le parti del corpo coperte da armature leggere sono immuni al sanguinamento", "LightVestDeteriorationChanceOnRepairReduce": "Possibilità di non applicare l'usura durante la riparazione (50%)", - "LightVestMeleeWeaponDamageReduction": "Riduce i danni da mischia alle parti del corpo coperte da armature leggere del [{0:0.#%}]", - "LightVestMoveSpeedPenaltyReduction": "Riduce la penalità alla velocità di movimento mentre si indossa un'armatura leggera del [{0:0.#%}]", - "LightVestRepairDegradationReduction": "Riduce la quantità di usura quando si utilizzano i kit di riparazione del [{0:0.#%}]", + "LightVestMeleeWeaponDamageReduction": "Riduce i danni in mischia alle parti del corpo coperte da armature leggere del [{0:0%}]", + "LightVestMoveSpeedPenaltyReduction": "Riduce la penalità alla velocità di movimento mentre si indossa un'armatura leggera del [{0:0%}]", + "LightVestRepairDegradationReduction": "Riduce la quantità di usura quando si utilizzano i kit di riparazione del [{0:0%}]", "LightVests": "Gilet Tattici leggeri", "LightVestsDescription": "L'abilità, indossare armature leggere migliora la mobilità e riduce la quantità di danni ricevuti dalla penetrazione e quelli da corpo a corpo sulla tua salute.", - "LightVestsLevelingUpDescription": "L'abilità Armatura Leggera aumenterà tutte le volte che riparerai le armature leggere o le piastre con i kit di riparazione.", "Lighthouse": "Lighthouse", "Lighthouse_pass": "Sentiero per Lighthouse", "Lighting quality:": "Qualità Illuminazione:", @@ -13756,7 +13700,6 @@ "MAP": "MAPPA", "MASTERING": "PADRONANZA", "MATERIAL": "Materiale", - "MAX AMMO DAMAGE": "Danno", "MAXCOUNT": "CONTEGGIO MASSIMO", "MAXIMUM THROW DAMAGE": "DANNO MASSIMO PER FRAMMENTO", "MED USE TIME": "TEMPO DI APPLICAZIONE MEDIKIT", @@ -13805,12 +13748,11 @@ "MagDrills": "Maestria con il Caricatore", "MagDrillsDescription": "Utile abilità per la gestione del caricatore, caricare e scaricare le munizioni, controllare le cartucce rimaste.", "MagDrillsInstantCheck": "Il caricatore viene controllato istantaneamente quando viene spostato nel tuo inventario", - "MagDrillsInventoryCheckAccuracy": "Aumenta la precisione del controllo del caricatore tramite il menu contestuale del [{0:0.#%}]", - "MagDrillsInventoryCheckSpeed": "Aumenta la velocità di controllo del caricatore attraverso il menu contestuale del [{0:0.#%}]", - "MagDrillsLevelingUpDescription": "L'abilità Ricarica Rapida aumenterà tutte le volte che caricherai, scaricherai o controllerai i caricatori.", + "MagDrillsInventoryCheckAccuracy": "Aumenta la precisione del controllo del caricatore tramite il menu contestuale del [{0}%]", + "MagDrillsInventoryCheckSpeed": "Aumenta la velocità di controllo del caricatore attraverso il menu contestuale del [{0}%]", "MagDrillsLoadProgression": "Con ogni proiettile inserito, migliorerai la velocità con cui effettuerai tale ricarica", - "MagDrillsLoadSpeed": "Aumenta la velocità di caricamento delle munizioni del [{0:0.#%}]", - "MagDrillsUnloadSpeed": "Aumenta la velocità di scaricamento delle munizioni del [{0:0.#%}]", + "MagDrillsLoadSpeed": "Aumenta la velocità di caricamento delle munizioni del [{0}%]", + "MagDrillsUnloadSpeed": "Aumenta la velocità di scaricamento delle munizioni del [{0}%]", "MagPreset/CaliberNotSelected": "Calibro non specificato", "MagPreset/DiscardCahangesDescription": "Eventuali modifiche non salvate andranno perse.\nContinuare?", "MagPreset/Error/ContainsMissingItems": "Munizioni non trovate:", @@ -13881,27 +13823,24 @@ "Meds": "Medicinali", "Melee": "Corpo a corpo", "MeleeDescription": "Abilità nell'utilizzo delle armi corpo a corpo", - "MeleeLevelingUpDescription": "L'abilità Corpo a Corpo aumenterà tutte le volte che colpirai un nemico corpo a corpo.", "Memory": "Memoria", "MemoryDescription": "Le abilità allenate durano più a lungo prima di finire", "MemoryEliteMentalNoDegradation": "Non dimentichi nessuna abilità", - "MemoryLevelingUpDescription": "L'abilità Memoria è aumentata di", - "MemoryMentalForget1": "Riduce la frequenza con cui dimentichi le abilità del [{0:0.#%}]", - "MemoryMentalForget2": "Riduce il rollback dei livelli di abilità del [{0:0.#%}]", + "MemoryMentalForget1": "Riduce la frequenza con cui dimentichi le abilità del [{0:0%}]", + "MemoryMentalForget2": "Riduce il rollback dei livelli di abilità del [{0:0%}]", "Mental": "Mentale", "Merchant": "Mercante", "Metabolism": "Metabolismo", "MetabolismDescription": "Avere il metabolismo sano, migliora ed estende gli effetti del mangiare e del bere e sostiene le capacità fisiche più a lungo.", "MetabolismEliteBuffNoDyhydration": "Non si ricevono danni da sfinimento e disidratazione", "MetabolismEliteNoForget": "Non dimentichi nessuna abilità fisica", - "MetabolismEnergyExpenses": "Riduce il consumo di energia e il tasso di disidratazione del [{0:0.#%}]", - "MetabolismLevelingUpDescription": "L'abilità Matebolismo aumenterà tutte le volte che si consumerà energia e acqua.", - "MetabolismMiscDebuffTime": "Riduce il tempo dell'effetto negativo di stimolanti, cibo, acqua del [{0:0.#%}]", - "MetabolismPhysicsForget": "Riduce il tasso di dimenticanza delle abilità fisiche del [{0:0.#%}]", + "MetabolismEnergyExpenses": "Riduce il consumo di energia e il tasso di disidratazione del [{0:0%}]", + "MetabolismMiscDebuffTime": "Riduce il tempo dell'effetto negativo di stimolanti, cibo, acqua del [{0:0%}]", + "MetabolismPhysicsForget": "Riduce il tasso di dimenticanza delle abilità fisiche del [{0:0%}]", "MetabolismPhysicsForget2": "Diminuisce la scala massima di dimenticare le abilità fisiche", "MetabolismPhysicsNoForget": "Le abilità fisiche non possono più essere dimenticate", - "MetabolismPoisonTime": "Riduce il tempo di avvelenamento del [{0:0.#%}]", - "MetabolismRatioPlus": "Aumenta gli effetti positivi di cibi e bevande del [{0:0.#%}]", + "MetabolismPoisonTime": "Riduce il tempo dell'effetto veleno del [{0:0%}]", + "MetabolismRatioPlus": "Aumenta gli effetti positivi di cibi e bevande del [{0:0%}]", "Microphone sensitivity:": "Sensibilità del microfono:", "MildMusclePain": "Lieve dolore muscolare", "Military Checkpoint": "Punto di controllo Scav", @@ -14081,7 +14020,7 @@ "OfflineRaid/StartAsGroup": "Inizia come gruppo", "OfflineRaid/startasgrouptooltip": "Con questa opzione selezionata, i giocatori inizieranno il raid fianco a fianco", "OfflineRaidScreen/WarningHeader": "Attenzione! I tuoi progressi non saranno salvati quando sei in modalità pratica!", - "OfflineRaidScreen/WarningText": "La modalità Cooperativa richiede che tutti i giocatori posseggano la versione di gioco Edge of Darkness o l'espansione Co-op per tutti i membri del gruppo. Il gioco si svolgerà su server ufficiali di Escape from Tarkov.", + "OfflineRaidScreen/WarningText": "La modalità Cooperativa richiede che tutti i giocatori posseggano la versione di gioco Edge of Darkness. Il gioco si svolgerà su server ufficiali di Escape from Tarkov.", "Old Azs Gate": "Cancello vecchia stazione di servizio", "Old Gas Station": "Vecchia stazione di servizio", "Old Road Gate": "Cancello della Vecchia Strada", @@ -14136,19 +14075,17 @@ "Penalties": "Penalità per il fallimento", "Pending requests": "Richieste in sospeso", "Perception": "Percezione", - "PerceptionDescription": "Aumenta la distanza uditiva, migliora la concentrazione nella mira e facilita l'individuazione dei bottini vicini.", - "PerceptionFov": "Aumenta la concentrazione mentre si mira del [{0:0.#%}]", - "PerceptionHearing": "Aumenta il raggio di ascolto del [{0:0.#%}]", - "PerceptionLevelingUpDescription": "L'abilità Percezione aumenterà tutte le volte che che troverà o si raccoglierà qualsiasi oggetto.", - "PerceptionLootDot": "Aumenta il raggio di rilevamento del bottino del [{0:0.#%}]", + "PerceptionDescription": "Padroneggiare l'abilità percezione aumenta l'ascolto a distanza, migliora la concentrazione durante la mira e facilita l'identificazione di bottino nelle vicinanze.", + "PerceptionFov": "Aumenta la concentrazione del [{0:0%}]", + "PerceptionHearing": "Aumenta la distanza uditiva del [{0:0%}]", + "PerceptionLootDot": "Aumenta il raggio di rilevamento del bottino del [{0:0%}]", "PerceptionmEliteNoIdea": "Notifica di bottino nelle vicinanze", "Perish": "Deceduto", "Physical": "Fisico", "Pier Boat": "Barca sul Molo", "Pistol": "Pistola", "Pistol Mastering": "Pistola", - "PistolDescription": "L'abilità di maneggiare le pistole migliora la maneggevolezza complessiva, riduce il rinculo di quel tipo di arma.", - "PistolLevelingUpDescription": "L'abilità Pistole aumenterà tutte le volte che sparerai or ricaricherai con il tipo d'arma corrispondente.", + "PistolDescription": "L'abilità di maneggiare le pistole migliora la maneggevolezza complessiva e il rinculo delle pistole.", "PlaceOfFame": "LUOGO DELLA FAMA", "PlantLocationDescription": "La complesso industriale e gli impianti della fabbrica chimica #16 sono state affittate illegalmente alla compagnia TerraGroup. Durante le Contract Wars, questa fabbrica era un focolaio per numerosi scontri a fuoco tra USEC e operatori BEAR che determinarono il controllo dell'intero distretto industriale di Tarkov. Con il tempo, i locali della fabbrica sono stati convertiti in un rifugio per civili locali, Scavs, insieme agli occasionali operatori USEC o BEAR.", "Player": "Giocatore", @@ -14219,10 +14156,9 @@ "Prone": "Prono", "ProneMovement": "Movimento prono", "ProneMovementDescription": "Padroneggiare il movimento da prono ti rende più veloce e silenzioso.", - "ProneMovementElite": "Aumenta la velocità del movimento prono del [{0:0.#%}]", - "ProneMovementLevelingUpDescription": "L'abilità Movimento Prono aumenterà tutte le volte che ci si muoverà in posizione prona.", - "ProneMovementSpeed": "Aumenta la velocità di movimento da disteso del [{0:0.#%}]", - "ProneMovementVolume": "Riduce il rumore del movimento da disteso del [{0:0.#%}]", + "ProneMovementElite": "Aumenta la velocità del movimento prono del [{0:0%}]", + "ProneMovementSpeed": "Aumenta la velocità di movimento da disteso del [(+{0:0%})]", + "ProneMovementVolume": "Riduce il rumore del movimento da disteso del [(-{0:0%})]", "Protect objective {0:F1}": "Proteggi l'obiettivo {0:F1}", "QUEST ITEM": "OGGETTO DELLA MISSIONE", "QUEST ITEMS": "OGG. MISSIONE", @@ -14410,9 +14346,8 @@ "Recoil Up": "Rinculo verticale", "RecoilControl": "Controllo del rinculo", "RecoilControlDescription": "Migliore controllo sul rinculo, riduce lo spostamento orizzontale dell'arma, rendendolo più prevedibile.", - "RecoilControlElite": "Migliora il controllo del rinculo del [{0:0.#%}]", - "RecoilControlImprove": "Migliora il controllo del rinculo del [{0:0.#%}]", - "RecoilControlLevelingUpDescription": "L'Abilità del Controllo del Rinculo aumenta sparando più frequentemente. Più è alto il rinculo di base dell'arma, più velocemente migliora l'abilità.", + "RecoilControlElite": "Migliora il controllo del rinculo del [{0:0%}]", + "RecoilControlImprove": "Migliora il controllo del rinculo del [{0:0%}]", "RecommendedVRAM:": "VRAM Raccomandata", "Reconnection is not available at this moment due to testing purposes": "La riconnessione non è disponibile in questo momento a causa di test in corso", "RedRebel_alp": "Sentiero dello scalatore", @@ -14442,7 +14377,6 @@ "Report game bug abuse": "Segnala un abuso dei bug in gioco", "Report offensive nickname": "Segnala un nickname offensivo", "Report suspected cheat use": "Segnala un uso di cheat", - "Report suspicious profile": "Segnala un profilo sospetto", "ReportAbuseBug": "Segnala abusi di bug", "ReportAbuseVoip": "Segnala abusi VoIP e Radio", "ReportCheater": "Segnala un possibile cheater", @@ -14477,8 +14411,7 @@ "Revert your settings to default?": "Sei sicuro di voler ripristinare le tue impostazione al loro stato inziale?", "Revolver": "Revolver", "Revolver Mastering": "Revolver", - "RevolverDescription": "L'abilità di maneggiare i Revolver migliora la maneggevolezza complessiva, riduce il rinculo di quel tipo di arma.", - "RevolverLevelingUpDescription": "L'abilità Revolver aumenterà tutte le volte che sparerai or ricaricherai con il tipo d'arma corrispondente.", + "RevolverDescription": "Abilità nell'utilizzo dei revolver.", "RezervBase": "Reserve", "Rig": "Gilet Tattico", "Right Arm": "BRACCIO DESTRO", @@ -14526,9 +14459,8 @@ "SKILLS": "ABILITÀ", "SKILLS_SPEED_DOWN": "Velocità di livellamento diminuita", "SKILLS_SPEED_UP": "Velocità di livellamento aumentata", - "SMG": "Mitragliatrici", - "SMGDescription": "L'abilità maneggiare le mitragliatrici migliora la maneggevolezza generale, riduce il rinculo e il tempo di ricarica delle Smg.", - "SMGLevelingUpDescription": "L'abilità Mitragliatrici aumenterà tutte le volte che sparerai o ricaricherai con il tipo d'arma corrispondente.", + "SMG": "SMG", + "SMGDescription": "L'abilità di maneggio delle pistole mitragliatrici migliora la maneggevolezza generale, riduce il rinculo e il tempo di ricarica delle SMG.", "SNIPERPHRASE": "CECCHINO", "SO": "SO", "SOUND": "AUDIO", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "Totale valore vendite con {0} aumentato di {1}", "Sandbox": "Ground Zero", "Sandbox_VExit": "Cordone di polizia V-Ex", - "Sandbox_high": "Ground Zero", "Saturation:": "Saturazione:", "Savage matchmaker": "Inizia un raid come Scav, un bandito locale con un equipaggiamento casuale. Tarkov è la tua casa, sei tu a stabilire le regole!", "SavageBannerDescription": "Un raid come Scav è differente da un raid con il tuo personaggio PMC. Gli Scav iniziano il raid in zone casuali e in un tempo casuale. Anche la salute dello Scav e il suo equipaggiamento saranno casuali. Estrarre come Scav ti darà l'opportunità di trasferire tutto il bottino ottenuto durante il raid alla scorta del tuo personaggio PMC. Completare un raid come Scav non darà esperienza al tuo personaggio PMC. Morire come Scav non influenzerà in alcun modo i tuoi progressi.", @@ -14585,7 +14516,6 @@ "Search": "Cerca", "SearchDescription": "Padroneggiare l'abilità ricerca consente di cercare nei corpi e nei contenitori con più rapidità ed efficienza.", "SearchDouble": "Cerca due contenitori alla volta", - "SearchLevelingUpDescription": "L'abilità Cerca è aumentata cercando nei container.", "SecondPrimaryWeapon": "Schiena", "SecondaryWeapon": "Arma secondaria", "SecuredContainer": "Valigetta", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "Alcune impostazioni sono cambiate. Desideri salvarle?", "Settings/Sound/BinauralSound": "Audio Binaurale", "Settings/Sound/ChatVolume": "Volume chat:", - "Settings/Sound/CommentatorVolume": "Volume annunciatore:", "Settings/Sound/Device": "Dispositivo Audio", "Settings/Sound/HideoutVolume": "Volume del Rifugio:", "Settings/Sound/InterfaceVolume": "Volume Interfaccia:", "Settings/Sound/MusicOnRaidEnd": "Musica fine raid", "Settings/Sound/MusicVolume": "Volume Musica:", "Settings/Sound/OverallVolume": "Volume generale:", - "Settings/Sound/ReadyToMatchSoundVolume": "Volume audio della schermata conferma partita:", "Settings/UnavailablePressType": "Non disponibile", "SevereMusclePain": "Forte dolore muscolare", "Shack": "Base militare CP", @@ -14676,8 +14604,7 @@ "Shorl_free_scav": "Sentiero per Shoreline", "Shotgun": "Fucili a pompa", "Shotgun Mastering": "Fucile a pompa", - "ShotgunDescription": "L'abilità maneggiare i fucili a pompa migliora la maneggevolezza complessiva e il rinculo dei fucili e migliora il tempo di ricarica di quel tipo di armi.", - "ShotgunLevelingUpDescription": "L'abilità Fucili a Pompa aumenterà tutte le volte che sparerai o ricaricherai con il tipo d'arma corrispondente.", + "ShotgunDescription": "L'abilità di maneggiare il fucile a pompa migliora la maneggevolezza complessiva e il rinculo dei fucili.", "Show icons": "Mostra icone", "Show:": "Mostra:", "SightingRange": "GITTATA DI AVVISTAMENTO", @@ -14698,10 +14625,9 @@ "Smg Mastering": "Pistola mitragliatrice", "Smuggler's Boat": "Barca del Contrabbandiere", "Smugglers_Trail_coop": "Il Sentiero del Contrabbandiere (Co-op)", - "Sniper": "Fucili a retro-carica", + "Sniper": "Fucili di precisione", "Sniper Roadblock": "Blocco Stradale del Cecchino", - "SniperDescription": "L'abilità di maneggiare i fucili a retro carica, migliora la maneggevolezza complessiva, riduce il rinculo e il tempo di ricarica di quel tipo di armi.", - "SniperLevelingUpDescription": "L'abilità Fucili a Retro carica aumenterà tutte le volte che sparerai or ricaricherai con il tipo d'arma corrispondente.", + "SniperDescription": "L'abilità di maneggiare i fucili da cecchino, migliora la maneggevolezza complessiva, riduce il rinculo e il tempo di ricarica degli stessi.", "SniperRifle": "Fucili di precisione", "SniperRifle Mastering": "Fucile da cecchino", "Sniper_exit": "Viale Mira", @@ -14734,8 +14660,6 @@ "StartInGroup": "Insieme", "StartLookingForGroup": "Inizia la ricerca di un gruppo", "StartNotInGroup": "Separatamente", - "StashLinesExternalObtain": "Migloramento inventario", - "StashLinesExternalObtain/Tooltip": "Il miglioramento dell'inventario è diponibile a pagamento sul sito web", "StatFoundMoneyEUR": "EUR trovati", "StatFoundMoneyRUB": "RUB trovati", "StatFoundMoneyUSD": "USD trovati", @@ -14770,22 +14694,20 @@ "StomachBloodloss": "Sanguinamento addominale", "Stop looking for group": "Ferma la ricerca di gruppi", "Strength": "Forza", - "StrengthBuffAim": "Riduce il consumo di resistenza durante la mira del [{0:0.#%}]", + "StrengthBuffAim": "Riduce il consumo di resistenza durante la mira del [{0:0%}]", "StrengthBuffElite": "Le armi equipaggiate non si sommano al peso del tuo personaggio (escluse le armi negli zaini)", - "StrengthBuffJumpHeightInc": "Aumenta l'altezza del salto del [{0:0.#%}]", - "StrengthBuffLiftWeightInc": "Aumenta il peso trasportabile del [{0:0.#%}]", - "StrengthBuffMeleeCrits": "Possibilità di infliggere danni critici in mischia [{0:0.#%}]", - "StrengthBuffMeleePowerInc": "Aumenta la potenza dei colpi in mischia del [{0:0.#%}]", - "StrengthBuffSprintSpeedInc": "Aumenta la velocità di movimento e di scatto del [{0:0.#%}]", - "StrengthBuffThrowDistanceInc": "Aumenta la distanza di lancio del [{0:0.#%}]", + "StrengthBuffJumpHeightInc": "Aumenta l'altezza del salto del [{0:0%}]", + "StrengthBuffLiftWeightInc": "Aumenta il peso trasportabile del [{0:0%}]", + "StrengthBuffMeleeCrits": "Possibilità di infliggere danni critici in mischia [({0})]", + "StrengthBuffMeleePowerInc": "Aumenta la potenza dei colpi in mischia del [{0:0%}]", + "StrengthBuffSprintSpeedInc": "Aumenta la velocità di movimento e di scatto del [{0:0%}]", + "StrengthBuffThrowDistanceInc": "Aumenta la distanza di lancio del [{0:0%}]", "StrengthDescription": "Aumentare la forza consente di saltare più in alto, correre più veloce, colpire più forte, lanciare più lontano e portare più peso.", - "StrengthLevelingUpDescription": "L'abilità Forza aumenterà tutte le volte che si scatterà essendo sovraccarichi, lanciando granate, usando armi bianche e dall'allenamento nella palestra del Nascondiglio.", "StressBerserk": "Accesso in modalità berserk", - "StressPainChance": "Riduce la probabilità di shock da dolore del [{0:0.#%}]", + "StressPainChance": "Riduce la probabilità di shock da dolore del [{0:0%}]", "StressResistance": "Resistenza allo stress", "StressResistanceDescription": "La resistenza allo stress migliora le possibilità di resistere allo shock da infortunio, alle mani tremanti e ai tremori.", - "StressResistanceLevelingUpDescription": "L'abilità Resistenza allo Stress migliora ricevendo danni. Anche essere sotto l'effetto del Dolore senza usare anti dolorifici aumenta questa abilità.", - "StressTremor": "Riduce l'oscillazione da tremore del [{0:0.#%}]", + "StressTremor": "Riduce l'oscillazione del tremore del [{0:0%}]", "StringSeparator/Or": " o ", "Stun": "Stordito", "Subtask completed:": "Missione secondaria completata:", @@ -14851,9 +14773,8 @@ "Summary": "Sommario", "Surgery": "Chirurgia", "SurgeryDescription": "La possibilità di usufruire dell'abilità chirurgia ti può salvare la vita in situazioni critiche. Migliore è il grado in questa abilità, migliore e più veloce si potranno eseguire le operazioni.", - "SurgeryLevelingUpDescription": "L'abilità Chirurgia aumenterà tutte le volte che si userà un kit chirurgico su parti del corpo ferite.", - "SurgeryReducePenalty": "Riduce la penalità sui PF da operazione del [{0:0.#%}]", - "SurgerySpeed": "Aumenta la velocità dell'intervento medico del [{0:0.#%}]", + "SurgeryReducePenalty": "Riduce la penalità HP chirurgica di [{0:0%}]", + "SurgerySpeed": "Aumenta la velocità dell'intervento medico del [{0:0%}]", "Survival Rate Short": "S/R: {0}%", "SurvivalRate": "Rateo di Sopravvivenza", "Survived": "Sopravvissuto", @@ -14926,9 +14847,8 @@ "ThrowItem": "Scarta", "Throwing": "Lanciabili", "ThrowingDescription": "L'abilità di maneggiare le armi da lancio ti permette di lanciare granate più lontane e con meno dispendio di energia.", - "ThrowingEnergyExpenses": "Riduce l'energia di lancio richiesta del [{0:0.#%}]", - "ThrowingLevelingUpDescription": "L'abilità Lancio aumenterà tutte le volte che si lanceranno granate.", - "ThrowingStrengthBuff": "Aumenta la forza di lancio del [{0:0.#%}]", + "ThrowingEnergyExpenses": "Riduce l'energia di lancio richiesta del [{0:0%}]", + "ThrowingStrengthBuff": "Aumenta la forza di lancio del [{0:0%}]", "ThrowingWeaponsBuffElite": "Gli oggetti lanciati non richiedono energia e la fatica non influisce sulla loro precisione", "Time flow": "Flusso di tempo", "Time to reconnect left ({0})": "Tempo rimasto per riconnettersi ({0})", @@ -14976,11 +14896,11 @@ "Trading/Dialog/AvaliableServices": "Mi potresti aiutare con una cosa?", "Trading/Dialog/Btr/News": "Che novità ci sono?", "Trading/Dialog/Btr/News/Next": "Altre novità?", - "Trading/Dialog/Btr/News1": "Ha nevicato così tanto ultimamente. Non abbiamo mai avuto così tanta neve dalle Contract Wars. Come se non avessimo mai vissuto al nord. Peccato che adesso si è sciolta tutta.", - "Trading/Dialog/Btr/News2": "Non esci molto spesso vero? C'è stata grande festa in paese, tutti hanno festeggiato! E buona festa anche a te.", - "Trading/Dialog/Btr/News3": "I nostri reietti hanno fatto un gran bel casino vero? Seduti, senza battere ciglio, senza far respirare nessuno.", - "Trading/Dialog/Btr/News4": "Quello stramo che si veste come Babbo natale anno dopo anno, ora addirittura parla! Pensavo fosse muto.", - "Trading/Dialog/Btr/News5": "La gente ha iniziato a raccogliere figurine di celebrità locali in tutta la città. Mi chiedo se il mio BTR ne diventerà una o meno.", + "Trading/Dialog/Btr/News1": "La più grande notizia è il BTR! Ho riparato tutto da solo. Consideralo la mia creazione. Ora posso portare la gente in giro. Forse mi aiuterà a pagare le riparazioni.", + "Trading/Dialog/Btr/News2": "Qualcuno sta organizzando combattimenti di gladiatori a Tarkov. Dicono che molte persone ci sono andate di loro spontanea volontà. I soldi non sono male. Se sopravvivi, ovviamente!", + "Trading/Dialog/Btr/News3": "C'è stato un tumulto in tutta Tarkov per alcuni documenti TerraGroup. Sembra che qualcuno li stia cercando anche oltre il confine, ma non ci credo.", + "Trading/Dialog/Btr/News4": "In passato, un'enigmatica carenza ha colpito le riserve di munizioni AP presso i commercianti, costringendo combattenti come te a perlustrare freneticamente Tarkov alla ricerca di proiettili nelle scorte degli altri. Fortunatamente, la situazione si è ora risolta.", + "Trading/Dialog/Btr/News5": "Sanitar ha recentemente tentato di consolidare la propria influenza a Tarkov, sostenendo di possedere una sorta di antidoto. Ciò è avvenuto poco prima di un avvelenamento di massa che ha colpito numerose persone. Si tratta davvero solo di una coincidenza? Non credo.", "Trading/Dialog/Btr/NoNews": "Penso che quelle siano tutte le notizie che ho.", "Trading/Dialog/Btr/ServicePayoff{0}": "Va bene per me, sì. (consegna \"{0}\")", "Trading/Dialog/BtrBotCover/Description": "Per tutto il tempo che sarai nel BTR, spareremo a chiunque metta fuori il naso. Puliremo anche la zona d'arrivo e ti copriremo mentre scendi, ma non per molto.", @@ -14999,34 +14919,18 @@ "Trading/Dialog/PlayerHandoveItem{0}": "Trova questo. (consegna \"{0}\")", "Trading/Dialog/PlayerTaxi/Description": "Ecco dove posso lasciarti. Scegli un posto.", "Trading/Dialog/PlayerTaxi/Name": "Prendi il passaggio", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Va bene, destinazione: Cinema Rodina. Il prezzo va bene?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Cinema Rodina", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "Sto guidando per il tram. Hai i soldi, vero?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Tram", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "Perfetto, ci stiamo dirigendo verso il centro città. Hai abbastanza contanti?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "Centro città", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Andiamo alla gru crollata. Ti va bene il prezzo?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Gru crollata", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "Ti porterò al vecchio vecchio punto di controllo Scav. Il prezzo va bene, vero?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Vecchio punto di controllo Scav", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "Ti posso accompagnare al Pinewood hotel. Ti sta bene il prezzo?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Hotel Pinewood", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "Vado al bunker degli Scav. Il prezzo può andar bene?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Bunker Scav", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "Il villaggio sommerso dici? Penso che ce la possiamo fare. Questo è il prezzo.", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Villaggio sommerso", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "Potrei guidarti verso il bivio lungo la strada, certo. Hai abbastanza denaro con te?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Snodo", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "Segheria? Nessun problema. Ecco i miei prezzi.", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Segheria", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "Il checkpoint USEC, d'accordo. Comunque non lo farò gratuitamente.", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "Checkpoint USEC", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "Sto tracciando il percorso per la base Emercom. Ti va bene il prezzo?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "Base Emercom", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "Okie-dokie, e la vecchia segheria sia. Questo il prezzo.", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Vecchia Segheria", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "Vuoi che ti scorti fino al deposito? Solo per avvisarti che non ne caverai le gambe senza di me. Se il prezzo ti va bene, tieni d'occhio l'orario ok?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Deposito dei Treni", + "Trading/Dialog/PlayerTaxi/p1/Description": "Va bene, destinazione: Cinema Rodina. Il prezzo va bene?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Cinema Rodina", + "Trading/Dialog/PlayerTaxi/p2/Description": "Sto guidando per il tram. Hai i soldi, vero?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Perfetto, ci stiamo dirigendo verso il centro città. Hai abbastanza contanti?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Centro città", + "Trading/Dialog/PlayerTaxi/p4/Description": "Andiamo alla gru crollata. Ti va bene il prezzo?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Gru crollata", + "Trading/Dialog/PlayerTaxi/p5/Description": "Ti porterò al vecchio vecchio punto di controllo Scav. Il prezzo va bene, vero?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Vecchio punto di controllo Scav", + "Trading/Dialog/PlayerTaxi/p6/Description": "Ti posso accompagnare al Pinewood hotel. Ti sta bene il prezzo?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Hotel Pinewood", "Trading/Dialog/Quit": "Congedati", "Trading/Dialog/ServicePayoff{0}": "Va bene, questo dovrebbe essere sufficiente. (consegna \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Nascondi cronologia", @@ -15062,14 +14966,13 @@ "TransferScreen/TransferFailed": "Impossibile acquistare il servizio", "TransferScreen/TransferSuccess": "Servizio acquistato!", "Tremor": "Tremore", - "TroubleFixing": "Aumenta la velocità di risoluzione dei problemi del [{0:0.#%}]", + "TroubleFixing": "Aumenta la velocità di risoluzione dei problemi del [{0:0%}]", "TroubleFixingAmmoElite": "Riduce del 50% la possibilità di malfunzionamenti di un caricatore dopo aver risolto un malfunzionamento causato dallo stesso motivo", "TroubleFixingDurElite": "Riduce del 50% la probabilità di malfunzionamenti basati sulla resistenza delle armi dopo aver risolto un malfunzionamento causato dalla stessa ragione", "TroubleFixingExamineMalfElite": "L'identificazione del tipo di malfunzionamento non richiede l'esaminazione dell'arma", "TroubleFixingMagElite": "Riduce del 50% il rischio di malfunzionamenti di una cartuccia dopo aver risolto un malfunzionamento causato dalla stessa ragione", "TroubleShootingDescription": "L'abilità di risoluzione dei problemi facilita la rettifica delle armi malfunzionanti.", "Troubleshooting": "Risoluzione dei problemi", - "TroubleshootingLevelingUpDescription": "L'abilità risoluzione dei problemi aumenterà tutte le volte che riparerai problemi di malfunzionamento relative alle armi.", "Try_keycard {0}": "Prova {0}", "Tunnel": "Tunnel", "Tunnel_Shared": "Tunnel secondario", @@ -15152,11 +15055,6 @@ "UI/Arena/Place_7": "Settimo posto", "UI/Arena/Place_8": "Ottavo posto", "UI/Arena/Place_9": "Nono posto", - "UI/ArmorPenetration/High": "Alta", - "UI/ArmorPenetration/Low": "Bassa", - "UI/ArmorPenetration/Medium": "Media", - "UI/ArmorPenetration/VeryHigh": "Molto alta", - "UI/ArmorPenetration/VeryLow": "Molto bassa ", "UI/Charisma/Discount/Insurance": "Costi dell' assicurazione", "UI/Charisma/Discount/PostRaidHealing": "Costo di cura", "UI/Charisma/Discount/ScavCase": "Costo della Cassa degli Scav", @@ -15334,18 +15232,15 @@ "Very good standing": "molto bene", "Vest": "Gilè", "Village": "Villaggio", - "Violation/IntentionalTeamDamage/Warning": "Il tuo account verrà sospeso se continuerai ad uccidere i tuoi compagni", - "Violation/IntentionalTeamKill/Warning": "Il tuo account verrà sospeso se continuerai ad uccidere i tuoi compagni all'inizio del round", "Violation/TeamKill/Warning": "Il tuo account verrà sospeso se continui a uccidere i tuoi compagni", "Vital mod weapon in hands": "Non puoi modificare le parti fondamentali di un'arma quando è equipaggiata.", "Vital parts": "Parti vitali", "Vitality": "Vitalità", - "VitalityBuffBleedChanceRed": "Riduce la possibilità di sanguinamento del [{0:0.#%}]", + "VitalityBuffBleedChanceRed": "Riduce la possibilità di sanguinamento del [{0:0%}]", "VitalityBuffBleedStop": "Tutti i sanguinamenti si risolvono in autonomia", "VitalityBuffRegeneration": "Aumenta la rigenerazione della salute in combattimento", - "VitalityBuffSurviobilityInc": "Riduce la probabilità di morte per la perdita di un arto del [{0:0.#%}]", + "VitalityBuffSurviobilityInc": "Riduce la probabilità di morte per la perdita di un arto del [{0:0%}]", "VitalityDescription": "La vitalità migliora le tue possibilità di sopravvivere a una ferita diminuendo la possibilità di sanguinamento e morte istantanea attraverso il danno critico di una parte del corpo.", - "VitalityLevelingUpDescription": "L'abilità Salute aumenterà tutte le volte che ti curerai sanguinamenti o ferite.", "Voice": "Voce personaggio", "Voice 1": "Voce 1", "Voice 2": "Voce 2", @@ -15402,25 +15297,24 @@ "WaterCollector": "RACCOGLITORE DI ACQUA", "Weapon": "Arma", "Weapon has been built": "L'arma è stata assemblata", - "WeaponAccBuff": "Aumenta la precisione dell'arma del [{0:0.#%}]", + "WeaponAccBuff": "Aumenta la precisione dell'arma del [{0:0%}]", "WeaponBroken": "PROBLEMA ALL'ARMA", "WeaponBuild/SetNameWindowCaption": "NOME PRESET", "WeaponBuild/SetNameWindowPlaceholder": "immettere il nome del preset", - "WeaponDeteriorationChanceReduce": "Riduce la probabilità di usura durante la riparazione del [{0:0.#%}]", + "WeaponDeteriorationChanceReduce": "Riduce la probabilità di usura durante la riparazione del [{0:0%}]", "WeaponDoubleMastering": "Guadagni il doppio sulla maestria", - "WeaponDurabilityLossOnShotReduce": "Riduce l'usura della pistola mentre si spara del [{0:0.#%}]", - "WeaponErgonomicsBuff": "Migliora l'ergonomia delle armi del [{0:0.#%}]", + "WeaponDurabilityLossOnShotReduce": "Riduce l'usura della pistola durante le riprese del [{0:0%}]", + "WeaponErgonomicsBuff": "Migliora l'ergonomia delle armi del [{0:0%}]", "WeaponJammed": "ARMA INCEPPATA", "WeaponModding": "Modifica dell'arma", "WeaponModdingDescription": "Abilità base di modifica delle armi mentre si è in movimento, ne aumenta l'ergonomia e riduce l'usura del silenziatore.", "WeaponPunch": "Calcio con l'arma", - "WeaponRecoilBuff": "Riduce il rinculo dell'arma del [{0:0.#%}]", - "WeaponReloadBuff": "Aumenta la velocità di ricarica del [{0:0.#%}]", - "WeaponStiffHands": "Aumenta l'ergonomia dell'arma del [{0:0.#%}]", - "WeaponSwapBuff": "Aumenta velocità di cambio arma del [{0:0.#%}]", + "WeaponRecoilBuff": "Riduce il rinculo dell'arma del [{0:0%}]", + "WeaponReloadBuff": "Aumenta la velocità di ricarica del [{0:0%}]", + "WeaponStiffHands": "Aumenta l'ergonomia dell'arma di [{0:0%}]", + "WeaponSwapBuff": "Aumenta velocità di cambio arma di [{0:0%}]", "WeaponTreatment": "Manutenzione dell'arma", "WeaponTreatmentDescription": "Abilità di manutenzione e assistenza dell'arma.", - "WeaponTreatmentLevelingUpDescription": "L'abilità Manutenzione delle Armi aumenterà tutte le volte che riparerai le armi con i kit di riparazione.", "WearAmountRepairGunsReducePerLevel": "Riduce l'usura quando si usano i kit di riparazione", "WearChanceRepairGunsReduceEliteLevel": "Riduce la possibilità di usura quando si utilizzano i kit di riparazione del 50%.", "Weather conditions": "Condizioni meteo", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "Tasso di vittoria, %", "arena/career/teamFightStats/wins": "Vittorie", "arena/career/teamFightStats/winsWithFavPreset": "Partite vinte con preset preferito", - "arena/customGames/create/samePresets": "Duplicazione preset:", - "arena/customGames/create/setSamePresets": "Consenti preset duplicati", "arena/customGames/invite/message{0}": "INVITO PARTITA PERSONALIZZATA DA {0}", "arena/customGames/notify/GameRemoved": "La stanza è stata abbandonata", "arena/customgames/errors/notification/gamealreadystarted": "La partita è già iniziata", @@ -15706,9 +15598,8 @@ "arena/tab/SCOUT": "ESPLORATORE", "arena/tab/SQB": "CQB", "arena/tooltip/OverallMatches": "Numero totale di partite classificate e non classificate giocate.", - "arena/tooltip/Presets": "Preset", + "arena/tooltip/Presets": "Presets", "arena/tooltip/countGlp": "La tua valutazione ARP (punti reputazione Arena) totale. Questa è una statistica che determina la tua valutazione ottenuta nelle modalità di gioco classificate. Viene utilizzato per abbinarti a giocatori di pari abilità, nonché per sbloccare nuovi gradi e preset.", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", "arena/tooltip/friends": "Amici", "arena/tooltip/kdRatio": "Il tuo rapporto complessivo uccisioni/morti, calcolato da tutte le uccisioni e morti nelle partite classificate e non classificate. Vengono conteggiate solo le uccisioni del giocatore.", "arena/tooltip/leftGlp": "Quantità di valutazione ARP necessaria per raggiungere il grado successivo.", @@ -15716,7 +15607,6 @@ "arena/tooltip/moneyRubles": "Rubli. Utilizzato per acquistare preset e si guadagna con le vittorie nell'Arena.", "arena/tooltip/ratingPlace": "La tua posizione in classifica.", "arena/tooltip/settings": "Impostazioni", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", "arena/tooltip/sourcesGlp": "Sorgenti ARP guadagnate:", "arena/tooltip/winMatches": "Numero totale di vittorie nelle partite classificate e non classificate.", "arena/tooltip/winRate": "Il tuo rapporto vittoria complessivo, calcolato da tutte le vittorie e le sconfitte nelle partite classificate e non classificate.", @@ -16370,7 +16260,7 @@ "scav_e6": "Ingresso nel seminterrato", "scav_e7": "Parcheggio del complesso di appartamenti Cardinal", "scav_e8": "Estrazione centro commerciale Klimov", - "searchspeed": "Aumenta la velocità di cercare del [{0:0.#%}]", + "searchspeed": "Aumenta la velocità di ricerca di [{0:0%}]", "sec": "sec", "select weapon body for the build": "SELEZIONARE IL CORPO DELL'ARMA PER LO SCHEMA", "semiauto": "Semi automatica", @@ -16450,8 +16340,6 @@ "{0} GroupPlayerBlocking/MatchLeave": "Modalità di gioco temporaneamente bloccata a causa del blocco di uno dei membri del gruppo ({0}) per aver abbandonato una partita", "{0} GroupPlayerBlocking/NotAcceptedMatch": "Modalità di gioco temporaneamente bloccata a causa del blocco di uno dei membri del gruppo ({0}) per non aver accettato una partita", "{0} GroupPlayerBlocking/TeamKill": "Modalità di gioco temporaneamente bloccata a causa del blocco di uno dei membri del gruppo ({0}) per ripetute uccisioni di squadra", - "{0} Violation/IntentionalTeamDamage/Blocking": "Il giocatore {0} è stato rimosso dalla partita e ha ricevuto una penalità per aver ucciso i propri compagni di squadra", - "{0} Violation/IntentionalTeamKill/Blocking": "Il giocatore {0} è stato rimosso dalla partita e ha ricevuto una penalità per aver ucciso i propri compagni di squadra all'inizio del round", "{0} Violation/TeamKill/Blocking": "Il giocatore {0} è stato rimosso dalla partita e ha ricevuto una penalità per uccisioni di squadra", "{0} added you to the ignore list": "{0} aggiunto alla lista ignorati", "{0} ask to cooperate": "{0} ti saluta", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "Ground Zero", "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "Sicurezza Unita", "5464e0404bdc2d2a708b4567 Description": "La compagnia militare privata USEC è stata fondata nel 1999 dopo la fusione di due società: KerniSEC e Safe Sea. Nel 2004, un agente della TerraGroup International Holding ha preso contatto con gli USEC, che poi ha fatto degli USEC, essenzialmente, un esercito privato della holding, con uffici in tutto il mondo, e oltre 7500 personale forte.", "5464e0454bdc2d06708b4567 Name": "BEAR", @@ -18024,7 +17910,7 @@ "5a27bc8586f7741b543d8ea4 description": "Ciao, mio caro amico, a quanto pare siamo molto vicini ad un affare interessante. Su quel dispositivo abbiamo scoperto una parte del progetto del motore di un missile che sarà particolarmente interessante per gli occidentali, in quanto è installato su sottomarini di classe Typhoon -- che si suppone siano fuori uso. È stato inoltre trovato un file abbastanza dettagliato su un marinaio che ha prestato servizio presso la Flotta del Baltico, un vecchio lupo di mare, che si nasconde da qualche parte a Tarkov e sembra avere degli agganci con alti ranghi della marina. È lui l'uomo che ci serve. Secondo la mia fonte, in segreto stringe degli accordi con gli Scav, quindi avvicinarci a lui non sarà facile. Dovrai agire nell'ombra, e fai attenzione ad eventuali trappole. C'è solo una possibilità di successo, ed è molto importante non fallire e non perdere una così importante risorsa per i nostri interessi, vecchio mio. Le mie mani addirittura tremano quando parliamo, non hai idea di quanto importante questo sia, e mancare il bersaglio non è un opzione. Sei un abile combattente, ma voglio essere sicuro che tu sia abile anche in azioni sotto copertura. Ho bisogno di un cecchino, uno con esperienza, quindi torna da me quando sarai pronto.", "5a27bc8586f7741b543d8ea4 failMessageText": "", "5a27bc8586f7741b543d8ea4 successMessageText": "Con tutto il dovuto rispetto, non pensavo che ce l'avresti fatta. Adesso per me sei il \"fottuto cecchino\". Mi farò sentire, quando avrò bisogno.", - "5a28235e86f7741da250b438": "Raggiungi il livello richiesto nell'abilità Fucile a Retro Carica", + "5a28235e86f7741da250b438": "Raggiungi il livello richiesto nell'abilità Fucile da Cecchino", "5a27bc8586f7741b543d8ea4 acceptPlayerMessage": "", "5a27bc8586f7741b543d8ea4 declinePlayerMessage": "", "5a27bc8586f7741b543d8ea4 completePlayerMessage": "", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "Elimina gli agenti PMC operativi, con un colpo in testa mentre usi un fucile a retrocarica a Lighthouse ", "63aec6f256503c322a190374": "Elimina gli agenti PMC operativi, con un colpo in testa mentre usi un fucile a retrocarica a Streets of Tarkov", "64b694c8a857ea477002a408": "Elimina gli agenti PMC operativi, con un colpo in testa mentre usi un fucile a retrocarica a Interchange", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18882,7 +18767,7 @@ "5c0be13186f7746f016734aa description": "Saluti, mercenario. ho sentito che stai cercando di diventare un cecchino. Essere un buon cecchino sicuramente richiede tenacia, pazienza, e dare un senso a quello che si fa, poi ovviamente ci sono anche altri fattori. Sai cosa Dima mi ha detto una volta? \"Tutti sanno sparare, ma solo pochi possono essere dei veri e propri cecchini.\".", "5c0be13186f7746f016734aa failMessageText": "Un cecchino con la tua esperienza non si arrende al primo fallimento. Riprendi fiato e prova di nuovo.", "5c0be13186f7746f016734aa successMessageText": "Ad essere franco non ero così sicuro che ce l'avresti fatta. A quanto pare mi sbagliavo, non sei una persona qualunque.", - "5c0be2b486f7747bcb347d58": "Raggiungi il livello richiesto nell'abilità Fucile a Retro Carica", + "5c0be2b486f7747bcb347d58": "Raggiungi il livello richiesto nell'abilità fucile da cecchino", "5c1fb5f086f7744a184fb3c5": "", "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Elimina gli agenti PMC operativi senza morire mentre usi un fucile a retrocarica", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Elimina Scav a Customs mentre indossi un'uniforme ONU (Casco Onu, armatura MF-UNTAR, Fucile M4A1) su Streets of Tarkov", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "Sopravvivi ed estrai da Reserve con lo stato \"Sopravvissuto\"", "629f08e7d285f377953b2af1": "Sopravvivi ed estrai da Lighthouse con lo stato \"Sopravvissuto\"", "63aec66556503c322a190372": "Sopravvivi ed estrai da Streets of Tarkov con lo stato \"Sopravvissuto\"", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Raggiungi il livello 4 di lealtà con la Therapist", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -20314,8 +20195,6 @@ "60ec2b04bc9a8b34cd453b81": "Non devi morire o lasciare il raid quando la missione è ancora attiva. (Stato: KIA, Azione Abbandonata, MIA, Corso all'uscita)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", @@ -20641,7 +20520,7 @@ "6193850f60b34236ee0483de description": "Vieni già qui, soldato. Lungo tutta la costa del promontorio, c'è una strada, probabilmente l'hai vista. I miei uomini usano quella strada per trasportare merci da e verso di me. Solitamente, riuscivano ad evitare problemi o calmare qualche idiota, ma in questo momento è un dannato nido di topi lì. Hanno iniziato ad attaccare i miei ragazzi a tutta forza, stanno diventando troppi. Vai lì e abbatti quei pazzoidi, lo farai? Ti darò qualcosa di carino in cambio.", "6193850f60b34236ee0483de failMessageText": "", "6193850f60b34236ee0483de successMessageText": "Bella merda, li hai fottuti per bene. Ok, amico, ci vediamo.", - "6193dabd5f6468204470571f": "Elimina Scav lungo la costa e lungo la strada principale a Lighthouse", + "6193dabd5f6468204470571f": "Elimina Scav lungo la strada principale a Lighthouse", "6193850f60b34236ee0483de acceptPlayerMessage": "", "6193850f60b34236ee0483de declinePlayerMessage": "", "6193850f60b34236ee0483de completePlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "Sopravvivi ed estrai da Streets of Tarkov attraverso viale Primorsky Taxi V-Ex", "6397a6942e519e69d2139b25": "Individua e segnala il primo veicolo corazzato Patrol-A con un marcatore MS2000 a Streets of Tarkov", "6397a7ce706b793c7d6094c9": "Individua e segnala il secondo veicolo corazzato Patrol-A con un marcatore MS2000 a Streets of Tarkov", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "Sono riuscito a contattare gli autisti. Non è stato facile, ma ho portato alla luce qualcosa di interessante.", @@ -21436,7 +21314,7 @@ "6396701b9113f06a7c3b2379 failMessageText": "", "6396701b9113f06a7c3b2379 successMessageText": "Ti abbiamo osservato. Il mio tiratore ha dato il via libera. È tutto per ora. Ti farò sapere quando sarà il momento.", "6397ac912e519e69d2139b26": "Elimina Cecchini Scav da oltre 350 metri di distanza", - "639a169e6cd47c525121a116": "Raggiungi il livello richiesto nell'abilità Fucile a Retro Carica", + "639a169e6cd47c525121a116": "Raggiungi il livello richiesto nell'abilità fucile da cecchino", "6396701b9113f06a7c3b2379 acceptPlayerMessage": "", "6396701b9113f06a7c3b2379 declinePlayerMessage": "", "6396701b9113f06a7c3b2379 completePlayerMessage": "Sono un vero cecchino psicopatico ora. Allora, cosa facciamo adesso?", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "Elimina Scav mentre usi armi da mischia di giorno a Interchange", "63a9b5b2813bba58a50c9eeb": "Elimina Scav mentre usi armi da mischia di giorno a Customs", "63a9b5f064b9631d9178276b": "Elimina Scav mentre usi armi da mischia di giorno a Reserve", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21691,8 +21568,8 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "Un pezzo di merda in meno di cui preoccuparsi. Hai fatto bene, ragazzo.", "64e7ba17220ee966bf425ecb": "Individua ed elimina Kaban", "64e7ba4a6393886f74119f3d": "Elimina le guardie di Kaban presso il concessionario di automobili a Streets of Tarkov", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", diff --git a/project/assets/database/locales/global/jp.json b/project/assets/database/locales/global/jp.json index ed0ab3eb..2d5c9d20 100644 --- a/project/assets/database/locales/global/jp.json +++ b/project/assets/database/locales/global/jp.json @@ -1336,7 +1336,7 @@ "57acb6222459771ec34b5cb0 Description": "An aluminum sight support with a Picatinny rail mount for the installation of scopes and accessories.", "57ade1442459771557167e15 Name": "Armacon Baskak ストック", "57ade1442459771557167e15 ShortName": "Baskak", - "57ade1442459771557167e15 Description": "A Russian-made light tube stock of very spartan-like design for use with AK systems that can be installed both on Mil-Spec and Com-Spec M/AR standard receiver adapters.", + "57ade1442459771557167e15 Description": "A Russian-made light tube stock of very spartan-like design for use with AK systems that can be installed both on Mil-Spec and Com-Spec M/AR standard receiver adaptors. Not compatible with AR systems.", "57adff4f24597737f373b6e6 Name": "SIG Sauer BRAVO4 4x30 scope", "57adff4f24597737f373b6e6 ShortName": "BRAVO4", "57adff4f24597737f373b6e6 Description": "Designed by SIG Sauer, the BRAVO4 4x30 optical scope sight features the uniquely large FOV, 43% wider than closest competitors. It also has an extra rail mount on top of it that allows installation of a backup compact sight.", @@ -2675,7 +2675,7 @@ "5a16b8a9fcdbcb00165aa6ca Name": "Norotos Titanium Advanced Tactical Mount", "5a16b8a9fcdbcb00165aa6ca ShortName": "TATM", "5a16b8a9fcdbcb00165aa6ca Description": "A lightweight titanium mount for installation on the Shroud connector on the helmet. It is necessary for further installation of the night vision goggles or other optical devices. Manufactured by Norotos Inc.", - "5a16b93dfcdbcbcae6687261 Name": "AN/PVS-14 Norotos Dual Dovetail Mount", + "5a16b93dfcdbcbcae6687261 Name": "AN/PVS-14 Dual Dovetail Mount", "5a16b93dfcdbcbcae6687261 ShortName": "DDT", "5a16b93dfcdbcbcae6687261 Description": "The Dual Dovetail Interface Arm mount for the AN/PVS-14 night vision monocular device.", "5a16b9fffcdbcb0176308b34 Name": "Ops-Core FAST RAC ヘッドセット", @@ -3361,7 +3361,7 @@ "5ac78eaf5acfc4001926317a Description": "The lock is designed to install the PT-1 and PT-3 stocks to a weapon. This model is designed for installation on the AK-74M and AK-100-series assault rifles. Manufactured by Zenit.", "5ac8d6885acfc400180ae7b0 Name": "Ops-Core FAST MT Super High Cut helmet (Urban Tan)", "5ac8d6885acfc400180ae7b0 ShortName": "FAST MT", - "5ac8d6885acfc400180ae7b0 Description": "The Ops-Core FAST Maritime ballistic helmet is popular in special forces all around the world. Can be modified with different components. Urban Tan version.", + "5ac8d6885acfc400180ae7b0 Description": "The Ops-Core FAST ballistic helmet is popular in special forces all around the world. Can be modified with different components. Urban Tan version.", "5ad5ccd186f774446d5706e9 Name": "OLI 管理事務室の鍵", "5ad5ccd186f774446d5706e9 ShortName": "OLI Office", "5ad5ccd186f774446d5706e9 Description": "ショッピングモール \"ULTRA\" にある OLI の管理事務室の鍵。", @@ -3893,7 +3893,7 @@ "5b7c710788a4506dec015957 Name": "Lucky Scav ジャンクボックス", "5b7c710788a4506dec015957 ShortName": "Junk", "5b7c710788a4506dec015957 Description": "物々交換やハイドアウトの拡張、製作などに必要な戦利品を保管するための大容量のボックス。", - "5b7d37845acfc400170e2f87 Name": "SA-58/FAL/SLR 7.62x51 30-round magazine", + "5b7d37845acfc400170e2f87 Name": "SA-58/FAL 7.62x51 30-round magazine", "5b7d37845acfc400170e2f87 ShortName": "SLR 7.62", "5b7d37845acfc400170e2f87 Description": "A 30-round double-stack steel 7.62x51 magazine for L1A1 Self-Loading Rifle (SLR), a British version of FN FAL.", "5b7d63b75acfc400170e2f8a Name": "SA-58/FAL Magpul PRS 2 polymer stock", @@ -4530,7 +4530,7 @@ "5c0e5edb86f77461f55ed1f7 ShortName": "Zhuk", "5c0e5edb86f77461f55ed1f7 Description": "An armored vest for journalists working in combat zones.", "5c0e625a86f7742d77340f62 Name": "BNTI Zhuk body armor (Digital Flora)", - "5c0e625a86f7742d77340f62 ShortName": "Zhuk DFL", + "5c0e625a86f7742d77340f62 ShortName": "Zhuk EMR", "5c0e625a86f7742d77340f62 Description": "An armored vest designed for assault units. Based on the Gzhel armor, serving as its lightweight copy.", "5c0e655586f774045612eeb2 Name": "HighCom Trooper TFO body armor (MultiCam)", "5c0e655586f774045612eeb2 ShortName": "Trooper", @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "A compact tactical Laser Aiming Module with a blue dot. Mounts on any Picatinny/Weaver rail for precise target acquisition. Manufactured by NcSTAR.", "5cd945d71388ce000a659dfb Name": "BEAR ベース", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Combat shirt", "5cd946231388ce000d572fe3 Name": "BEAR ベース", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "ASh-12 vertical foregrip", "5cda9bcfd7f00c0c0b53e900 ShortName": "ASh-12", "5cda9bcfd7f00c0c0b53e900 Description": "A vertical foregrip for the ASh-12 assault rifle.", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "USEC ベース", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", "5cde9ec17d6c8b04723cf479 Name": "USEC ベース", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Abibas ジャージ", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", "5cdea42e7d6c8b0474535dad Name": "Adik トラックスーツ", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "M700 Magpul Pro 700 chassis", "5cdeac22d7f00c000f26168f ShortName": "Pro700", "5cdeac22d7f00c000f26168f Description": "Pro 700 is a lightweight ergonomic chassis designed for the Remington M700 sniper rifle. Manufactured by Magpul.", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "BEAR ブラックリンクス", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", "5d1f60ae86f7744bcc04998b Name": "BEAR コントラクター", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "FSB ファストレスポンス", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "BEAR ゴーストマークスマン", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "BEAR サマーフィールド", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "USEC アグレッサー TAC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "USEC ソフトシェル", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "USEC ウッドランド", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Combat shirt", "5d1f623886f7743014163027 Name": "USEC PCS マルチカム", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "USEC PCU アイアンサイト", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "FSB アーバンタクティカル", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "BEAR ゴルカ コブラ", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "BEAR ゴルカ SSO", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "BEAR ストライカー", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "BEAR サマーフィールド", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "USEC Gen.2 カイバル", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "USEC ウッドランド", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "USEC レンジャージーンズ", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "USEC タックライフ", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "USEC TACRES", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "AR-10 Daniel Defense WAVE 7.62x51 muzzle brake", "5d1f819086f7744b355c219b ShortName": "WAVE 762", "5d1f819086f7744b355c219b Description": "The Daniel Defense WAVE muzzle brake is designed to securely mount the Daniel Defense WAVE suppressor to the host firearm, but also functions effectively without it. It's manufactured from aerospace 17-4 PH stainless steel and had a salt bath nitride finish for minimal corrosion.", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "USEC Commando", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "An upper receiver for the SR-25 rifle, manufactured by Knight's Armament Company.", "5df8e5c886f7744a122d6834 Name": "BEAR ザスロン", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "メテオ", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "BEAR オールドスクール", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "USEC TIER2", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "スクロン", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "The first generation of the modified CPC plate carrier originally designed by Crye Precision and adapted by Ars Arma for use by special forces of the Russian Federation. This modular body armor is based on a polymer harness that fits the thorax, which avoids the plate carrier backlash during active movement and also contributes to a more even distribution of weight. Made in the assault configuration of pouches. Manufactured by Ars Arma.", "5e4bb08f86f774069619fbbc Name": "BEAR テルニク", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "USEC TIER2", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "BEAR TIGR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "USEC コマンドー", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "ロシアンジャケット", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "BEAR TIGR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "USEC アーバンリスポンダー", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "BEAR ザスロン", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "USEC ディープリコン", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Tactical pants", "5e9dcf5986f7746c417435b3 Name": "LBT-8005A デイパック", "5e9dcf5986f7746c417435b3 ShortName": "Day Pack", "5e9dcf5986f7746c417435b3 Description": "シンプルで信頼性の高い14Lのバックパック。ロンドンブリッジトレーディング製。マルチカムブラック迷彩版。", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "The Thunderbolt fixed chest rig, containing all the basic utility pouches you'd need. Manufactured by Direct Action.", "5f5f45df0bc58666c37e7832 Name": "BEAR G99", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "USEC ナイトパトロール", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "BEAR G99", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "USEC アーバンリスポンダー", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Scav ブーツ", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "BEAR SRVV", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "USEC TIER3", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": ".300 AAC Blackout AP", "5fd20ff893a8961fc660a954 ShortName": "AP", "5fd20ff893a8961fc660a954 Description": "A .300 Blackout (7.62x35mm) AP cartridge loaded with an 8.4 gram armor-piercing bullet from a 7.62x51mm NATO M80A1 cartridge, composed of a steel penetrator tip over a copper alloy core with a copper semi-jacket in a brass case. Despite the bullet's own characteristics when used in a full-power cartridge, these are affected when transferred to an intermediate cartridge, however, the bullet continues to have capabilities to pierce basic and intermediate body ballistic protections, in addition to being able to cause substantial adverse effects on the target after impact. Its design also allows it to be used in STANAG 5.56x45mm NATO magazines without any issues.", "5fd3e77be504291efd0040ad Name": "USEC VEKTOR", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "BEAR Boreas", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "BEAR Grizzly", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "USEC Adaptive Combat", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "取り外しできないポーチのついたシンプルなナイロン製のリグ。多くの弾薬を持ち運ぶことができ使いやすい。", "6038b228af2e28262649af14 Name": "BEAR Rash Guard", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "USEC Sandstone", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", "6038b4b292ec1c3103795a0b Name": "LBT-6094A Slick Plate Carrier (Coyote Tan)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "A simple yet effective plate carrier by London Bridge Trading company. The most minimalistic design intended for use with chest rigs. Coyote Tan version.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "TP-200 は、主に地質調査で用いられる爆薬だ。ボーリングの孔中発破の起爆や岩石などの破砕、特殊な掘削作業にも使用されている。", "603d01a1b41c9b37c6592047 Name": "BEAR VOIN", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "USEC Sage Warrior", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Azimut SS \"Zhuk\" chest harness (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Azimut", "6040dd4ddcf9592f401632d2 Description": "A simple nylon bearing system with non-removable pouches. Allows you to carry a fairly impressive amount of ammunition at the expense of convenience. SURPAT camouflage version.", @@ -7681,7 +7681,7 @@ "609a4b4fe2ff132951242d04 Description": "An aluminum mount for installing various sights and accessories on to the VPO-102 Vepr-Hunter carbine, manufactured by Arbalet.", "609a63b6e2ff132951242d09 Name": "Valday Krechet reflex sight", "609a63b6e2ff132951242d09 ShortName": "Krechet", - "609a63b6e2ff132951242d09 Description": "The Krechet reflex sight, designed for precision shooting at day and at night when used in combination with a night vision device.", + "609a63b6e2ff132951242d09 Description": "The Krechet reflex sight, designed for precision shooting at day and at night when used in combination with a night vision device. Manufactured by Valday.", "609b9e31506cf869cf3eaf41 Name": "VOMZ PILAD Target Ring リフレックスサイト", "609b9e31506cf869cf3eaf41 ShortName": "TargetRing", "609b9e31506cf869cf3eaf41 Description": "Designed for hunting birds or small game, for sport shooting at stationary or fast-moving targets. Ideal for this purpose, it creates a contrasting circle on the target, giving the shooter an opportunity to make the pre-direction and not to lose speed.\nIt is mounted only on smoothbore (shotgun) weapons.", @@ -8047,7 +8047,7 @@ "618405198004cc50514c3594 Description": "An upper receiver for the SCAR-L assault rifle, manufactured by Fabrique Nationale Herstal. Features a top rail for installation of additional equipment.", "6184055050224f204c1da540 Name": "SCAR-L 5.56x45 アサルトライフル", "6184055050224f204c1da540 ShortName": "Mk 16", - "6184055050224f204c1da540 Description": "FN SCAR-L(特殊部隊用戦闘アサルトライフル - ヘビー)は、5.56x45 NATO 弾を使用するアサルトライフルで、アメリカ特殊作戦軍(US SOCOM)で Mk 16 として採用された。折り畳み可能なストックと、フリーフローティングの硬クロムメッキ製 Mil-Spec バレルを特徴としている。両方の利き手操作に対応しており、SCARはあらゆる使用者や射撃姿勢に適応しやすい。レシーバーに統合された光学照準器用レールと、3つのアクセサリーレールにより、さまざまな光学照準器、ライト、およびレーザーを取り付けることができる。製造はファブリーク・ナシオナール・ハースタル(Fabrique Nationale Herstal)によって行われていて、フラットダークアース(Flat Dark Earth)バージョンもある。", + "6184055050224f204c1da540 Description": "FN SCAR-H(特殊部隊用戦闘アサルトライフル - ヘビー)は、5.56x45 NATO 弾を使用するアサルトライフルで、アメリカ特殊作戦軍(US SOCOM)で Mk 16 として採用された。折り畳み可能なストックと、フリーフローティングの硬クロムメッキ製 Mil-Spec バレルを特徴としている。両方の利き手操作に対応しており、SCARはあらゆる使用者や射撃姿勢に適応しやすい。レシーバーに統合された光学照準器用レールと、3つのアクセサリーレールにより、さまざまな光学照準器、ライト、およびレーザーを取り付けることができる。製造はファブリーク・ナシオナール・ハースタル(Fabrique Nationale Herstal)によって行われていて、フラットダークアース(Flat Dark Earth)バージョンもある。", "618407a850224f204c1da549 Name": "FN SCAR-L 5.56x45 flash hider", "618407a850224f204c1da549 ShortName": "Mk16 556", "618407a850224f204c1da549 Description": "A 3-prong flash hider designed specifically for the SCAR-series 5.56x45 assault rifles. Can be equipped with a proprietary suppressor. Manufactured by Fabrique Nationale Herstal.", @@ -8239,10 +8239,10 @@ "619b69037b9de8162902673e Description": "Designed for both the civilian market and military use. The CQR47 stock can be easily mounted in place of the standard attachment of the AK/AKM non-folding stock. Manufactured by Hera Arms.", "619b99ad604fcc392676806c Name": "BEAR Recon", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "USEC K4", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", "619bc61e86e01e16f839a999 Name": "Armband (Alpha)", "619bc61e86e01e16f839a999 ShortName": "Alpha", "619bc61e86e01e16f839a999 Description": "An armband for veterans who are still here from the Alpha times.", @@ -8275,10 +8275,10 @@ "619bdfd4c9546643a67df6fa Description": "An armband for hardcore USEC operators.", "619bf75264927e572d0d5853 Name": "BEAR Sumrak", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "軍用コルゲートチューブ", "619cbf476b8a1b37a54eebf8 ShortName": "MTube", "619cbf476b8a1b37a54eebf8 Description": "軍事施設内の換気装置や空気清浄機などに使用されているコルゲートチューブ。", @@ -8333,13 +8333,13 @@ "61a00bcb177fb945751bbe6a Name": "Stolen military documents", "61a00bcb177fb945751bbe6a ShortName": "Military documents", "61a00bcb177fb945751bbe6a Description": "Stolen military documents", - "61a49f549128666d8302b5f1 Name": "Raincoat", + "61a49f549128666d8302b5f1 Name": "SavageKitUpperYellowcoat", "61a49f549128666d8302b5f1 ShortName": "", "61a49f549128666d8302b5f1 Description": "", "61a4a06dba63c0388e05613e Name": "Roadside maniac", "61a4a06dba63c0388e05613e ShortName": "", "61a4a06dba63c0388e05613e Description": "", - "61a4a138ba63c0388e056140 Name": "Bomber", + "61a4a138ba63c0388e056140 Name": "SavageKitUpperBomber", "61a4a138ba63c0388e056140 ShortName": "", "61a4a138ba63c0388e056140 Description": "", "61a4a1c59128666d8302b5f3 Name": "Lower bomber", @@ -8858,7 +8858,7 @@ "628cd624459354321c4b7fa2 Name": "Tasmanian Tiger SK plate carrier (MultiCam Black)", "628cd624459354321c4b7fa2 ShortName": "TT SK", "628cd624459354321c4b7fa2 Description": "The ultra-light and skeletal TT Plate Carrier SK vest is made primarily from lightweight, thin and durable TPU-laminated Cordura nylon material with a claimed density of at least 700 denier. The design of the vest provides two lightweight covers for plates, adjustable shoulder straps and a light waist jumper. Equipped with a front panel for 4 magazines.", - "628d0618d1ba6e4fa07ce5a4 Name": "NPP KlASS Bagariy plate carrier (Digital Flora)", + "628d0618d1ba6e4fa07ce5a4 Name": "NPP KlASS Bagariy armored rig (Digital Flora)", "628d0618d1ba6e4fa07ce5a4 ShortName": "Bagariy", "628d0618d1ba6e4fa07ce5a4 Description": "In the second millennium, the equipment of a soldier received serious changes in view of new threats and tasks. A better level of protection was required, so the Russian army needed a reliable and functional body armor. In the mid-2000s, the MVD, which was later reorganized into the Russian Guard, received Bagariy bulletproof vests. Bagariy was used both by ordinary soldiers of the internal troops, and in special forces. Actively was used by PMC BEAR as the main heavy body armor.", "628dc750b910320f4c27a732 Name": "ECLiPSE RBAV-AF plate carrier (Ranger Green)", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "USEC Chameleon", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "BEAR VOLK", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "BEAR Coyote", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "USEC DesOps", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Death Knight mask", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "A unique mask of the commander of the Goons squad, former USEC operators who decided not to flee Tarkov, but to create their own order.", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "USEC Predator", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", "64f07f7726cfa02c506f8ac0 Name": "Journal", "64f07f7726cfa02c506f8ac0 ShortName": "Journal", "64f07f7726cfa02c506f8ac0 Description": "A journal of someone who really loves everything Soviet.", @@ -10430,8 +10430,8 @@ "654a4dea7c17dec2f50cc86a Name": "6B12 ballistic plates (Front)", "654a4dea7c17dec2f50cc86a ShortName": "6B12 Front", "654a4dea7c17dec2f50cc86a Description": "Armored steel plates for torso front pouches of Russian bulletproof vests.", - "654a4f8bc721968a4404ef18 Name": "Korund-VM ballistic plate (Side)", - "654a4f8bc721968a4404ef18 ShortName": "Korund-VM Side", + "654a4f8bc721968a4404ef18 Name": "Korund VM ballistic plate (Side)", + "654a4f8bc721968a4404ef18 ShortName": "Korund VM Side", "654a4f8bc721968a4404ef18 Description": "Steel ballistic plate for side pouches of Russian bulletproof vests.", "654a8976f414fcea4004d78b Name": "Aramid insert", "654a8976f414fcea4004d78b ShortName": "", @@ -10495,7 +10495,7 @@ "655c663a6689c676ce57af85 Description": "The Tarko collectible figure of a USEC PMC fighter. This USEC operative is tough, deadly, and doesn't really speak much Russian.", "655c669103999d3c810c025b Name": "Cultist figurine", "655c669103999d3c810c025b ShortName": "Cultist", - "655c669103999d3c810c025b Description": "The Tarko collectible figure of a local cultist. The craftsman has very meticulously portrayed these hooded unidentified individuals. Particular attention was paid to the unusual knife. Looks like the author had familiarized himself firsthand with the sharpness of its blade.", + "655c669103999d3c810c025b Description": "The Tarko collectible figure of a hooded cultist. The craftsman has very meticulously portrayed these hooded unidentified individuals. Particular attention was paid to the unusual blade. Looks like the author had familiarized himself firsthand with the sharpness of its blade.", "655c66e40b2de553b618d4b8 Name": "Politician Mutkevich figurine", "655c66e40b2de553b618d4b8 ShortName": "Mutkevich", "655c66e40b2de553b618d4b8 Description": "The Tarko collectible figure of a politician called Mutkevich. The unknown craftsman was impressed with how the former politician and current fighter of the Arena cleanup crew from is fighting for his life.", @@ -10528,7 +10528,7 @@ "6567e7681265c8a131069b0f Description": "The TANGO6T is a rugged and well-built low power variable optic. This model features a 1x to 6x magnification and a first focal plane reticle. This rifle scope is ideal for short and medium distances, as well as for backcountry hunting. Manufactured by SIG Sauer.", "656ddcf0f02d7bcea90bf395 Name": "Tehinkom RK-PT-25 patrol backpack (Digital Flora)", "656ddcf0f02d7bcea90bf395 ShortName": "RK-PT-25", - "656ddcf0f02d7bcea90bf395 Description": "This backpack is a multifunctional piece of equipment designed for transportation of various items of combat and marching equipment, additional weaponry, etc. It can be used both as part of the UMTBS transportation and gear system (ZhTU 6Sh112) and independently, as part of various sets of individual combat equipment.", + "656ddcf0f02d7bcea90bf395 Description": "This backpack is a multifunctional piece of equipment designed for transportation of various items of combat and marching equipment, additional weaponry, etc. It can be used both as a part of the UMTBS transport and unloading system (ZHTU 6Sh112) and independently, as a part of various sets of combat individual equipment. It can be used both as part of the UMTBS transportation and gear system (ZhTU 6Sh112) and independently, as part of various sets of individual combat equipment.", "656df4fec921ad01000481a2 Name": "Pack of instant noodles", "656df4fec921ad01000481a2 ShortName": "Noodles", "656df4fec921ad01000481a2 Description": "A pack of instant noodles. No hot water? Too bad. Eat it dry.", @@ -10556,11 +10556,11 @@ "656f63c027aed95beb08f62c Name": "Granit 4RS ballistic plate (Front)", "656f63c027aed95beb08f62c ShortName": "Granit 4RS Front", "656f63c027aed95beb08f62c Description": "A ceramic ballistic plate for torso front pouch of Zhuk, Gzhel, 6B13, 6B23-2 bulletproof vests.", - "656f664200d62bcd2e024077 Name": "Korund-VM ballistic plates (Front)", - "656f664200d62bcd2e024077 ShortName": "Korund-VM Front", + "656f664200d62bcd2e024077 Name": "Korund VM ballistic plates (Front)", + "656f664200d62bcd2e024077 ShortName": "Korund VM Front", "656f664200d62bcd2e024077 Description": "A combination of armored steel plates for torso front pouches of Russian bulletproof vests.", - "656f66b5c6baea13cd07e108 Name": "Korund-VM-K ballistic plates (Front)", - "656f66b5c6baea13cd07e108 ShortName": "Korund-VM-K Front", + "656f66b5c6baea13cd07e108 Name": "Korund VM-K ballistic plates (Front)", + "656f66b5c6baea13cd07e108 ShortName": "Korund VM-K Front", "656f66b5c6baea13cd07e108 Description": "A combination of a big ceramic plate and small armored steel plate for torso front pouches of Russian bulletproof vests.", "656f9d5900d62bcd2e02407c Name": "AR500 Legacy Plate ballistic plate", "656f9d5900d62bcd2e02407c ShortName": "AR500 LP", @@ -11920,7 +11920,7 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "USEC Defender", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "USEC BOSS Delta", "657f8e9824d2053bb360b51d ShortName": "USEC BOSS Delta", "657f8e9824d2053bb360b51d Description": "USEC BOSS Delta", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "BEAR URON", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "BEAR OPS MGS", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Tactical jacket", "657f925dada5fadd1f07a57a Name": "Hybrid composite materials", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12020,9 +12020,9 @@ "6582dbf0b8d7830efc45016f Name": "Relaxation room key", "6582dbf0b8d7830efc45016f ShortName": "Relax", "6582dbf0b8d7830efc45016f Description": "A key to the relaxation room inside one of the city offices.", - "6582dc4b6ba9e979af6b79f4 Name": "MVD academy entrance hall guard room key", + "6582dc4b6ba9e979af6b79f4 Name": "MVD academy entrance hall key", "6582dc4b6ba9e979af6b79f4 ShortName": "MVD", - "6582dc4b6ba9e979af6b79f4 Description": "A key to the guard room at the entrance hall inside the city MVD (Ministry of the Interior) academy.", + "6582dc4b6ba9e979af6b79f4 Description": "A key to the entrance hall inside the city MVD (Ministry of the Interior) academy.", "6582dc5740562727a654ebb1 Name": "Real estate agency office room key", "6582dc5740562727a654ebb1 ShortName": "REA", "6582dc5740562727a654ebb1 Description": "A key to the office inside the city real estate agency. ", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "Dead civilian", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", " V-ex_light": "Road to Military Base V-Ex", " Voip/DisabledForOffline": "オフラインモードではVOIPは無効です", " kg": "Kg", @@ -12102,8 +12087,6 @@ "AI amount": "AIの数", "AI difficulty": "AI の難易度", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "貫通力", - "AMMO PROJECTILE COUNT": "弾体数", "ARMOR CLASS": "アーマークラス", "ARMOR POINTS": "アーマーポイント", "ARMOR TYPE": "アーマーの種類", @@ -12129,11 +12112,11 @@ "Achievements/Tab/HiddenAchievementsLeft": "残る隠しアチーブメント数: {0}", "Achievements/Tab/LegendaryRarity": "レジェンダリー", "Achievements/Tab/NotReceivedYet": "未獲得", - "Achievements/Tab/Progress": "{0} 件中 {1} 件の実績を解除 ({2}%)", + "Achievements/Tab/Progress": "{0} out of {1} achievements earned ({2}%)", "Achievements/Tab/RareRarity": "レア", "Achievements/Tab/UnlockDate": "獲得した日時", "Achievements/Tab/YourAchievements": "アチーブメント", - "Achievements/Tooltip/Conditions": "目的", + "Achievements/Tooltip/Conditions": "Objectives", "Achievements/Tooltip/Task rewards": "報酬", "Acquire map to review infiltration areas and exfiltration points.": "マップがあると出撃地点と脱出箇所を確認できます", "Adaprive sharpen:": "Adaptive sharpen:", @@ -12146,7 +12129,6 @@ "AheadOfTimeEnding": "制限時間", "Aim": "エイム", "AimDrills": "エイミング", - "AimDrillsLevelingUpDescription": "The Aim Drills skill is improved by hitting enemies while aiming.", "AimMaster": "エイムマスター", "AimMasterDescription": "エイム技術の熟練によりエイムにかかる時間が減少しエイム直後のぶれが軽減される。", "AimMasterElite": "エイム速度が [{0:0%}] 上昇", @@ -12193,7 +12175,7 @@ "Are you sure you want to discard your changes?": "保存していない変更点があります。本当に破棄しますか?", "Are you sure you want to insure {0} items?": "選択したアイテムに保険を適用しますか?", "Are you sure you want to report {0}?": "本当に {0} を報告しますか?", - "Arena welcome screen description": "Arenaへようこそ!\n\nArenaでは、あなたが民間軍事会社 (PMC) のオペレーターとなり、栄光と賞金をかけて他のファイターと戦います。\n\n紛争の混乱によって、ノルヴィンスク州タルコフ市では法と秩序が失われています。ここは、金持ちのオブザーバーたちが戦いを組織するために選んだ場所であり、PMC達は最後の生き残りになるまで戦ったり、特定の目的を達成するためにチームで戦闘を行います。\n\n\nもしEscape from Tarkovを所有していない場合でも、購入後にArenaの進行状況を引き継ぐことが可能です。\n既に所有している場合、Arenaでのすべての進捗 (経験値やスキル) はEFTのあなたのキャラクターに共有されます。", + "Arena welcome screen description": "Welcome to Arena!\n\nThis is where your character, an operator of a private military company (PMC), will battle other fighters for glory and cash. \n\nDue to the chaos of the conflict, in the city of Tarkov, Norvinsk region, law and order have taken a back seat. This is the place where rich observers have chosen to organize battles where PMCs will fight each other to the last survivor or work as a team to complete a certain objective - which, of course, they will be set by the Masters. \n\nIf you don't own Escape From Tarkov yet, you can purchase the game and transfer all your progress from the Arena there. \nIf you already own Escape From Tarkov, all progress gained in the Arena (experience and skills) will also count for your character in EFT and vice versa - progress in EFT counts for Arena.", "Arena/CustomGame/Lobby/cancel invite to friends": "フレンドリストへの招待をキャンセル", "Arena/CustomGame/Lobby/cancel invite to group": "グループへの招待をキャンセル", "Arena/CustomGame/Lobby/invite to friends": "フレンドリストに招待", @@ -12241,19 +12223,16 @@ "Arena/CustomGames/toggle/tournament": "トーナメント", "Arena/EndMatchNotification": "離席中に試合が終了しました", "Arena/Matching/CustomGames": "カスタムゲーム", - "Arena/Notification/Selection/Blocked": "プリセットの購入が制限されました", "Arena/OnCancelMatch": "読み込みの問題によりマッチングはキャンセルされました", "Arena/OnCancelMatch/Group": "グループメンバーに読み込みの問題が発生したためマッチングはキャンセルされました", "Arena/OnCancelMatch/NoServer": "利用可能なサーバーが見つかりませんでした。時間をおいてから再度お試しください。", - "Arena/Popups/TwitchDropsHeader": "報酬を引き換える", - "Arena/Preset/Tooltip/Tab/6": "Various unique collectible presets.", - "Arena/Preset/Tooltip/Tab/Assault": "アサルトクラスは最も汎用性の高いクラスだ。様々な状況に適応できるような、バランスの取れた装備となっている。", - "Arena/Preset/Tooltip/Tab/CQB": "CQBクラスはArenaで最も装甲が厚めのクラスだ。このクラスの特徴はフェイスシールドが装備に加わっていること、メイン武器の弾薬が多いことである。これにより陣地防衛や長時間の戦闘に適している", - "Arena/Preset/Tooltip/Tab/Collection": "アリーナで特殊条件を満たすと与えられるプリセット", + "Arena/Preset/Tooltip/Tab/Assault": "Assault is the most versatile class. Presets of this class have balanced equipment suitable for most combat situations.", + "Arena/Preset/Tooltip/Tab/CQB": "CQB is the most heavily armored class in the Arena. CQBs are characterized by their face shields and increased ammunition for their main weapons. Presets of this class are excellent in defending positions and prolonged firefights.", + "Arena/Preset/Tooltip/Tab/Collection": "Presets given for special achievements in the Arena.", "Arena/Preset/Tooltip/Tab/Favorite": "お気に入りのプリセット", - "Arena/Preset/Tooltip/Tab/Marksman": "マークスマンは遠距離戦闘向けのクラスだ。プリセットには、強力なセカンダリと中程度のボディアーマーを装備していることが多い。屋外ステージにおいて、この専門的なクラスの存在は欠かせない。", - "Arena/Preset/Tooltip/Tab/Rating": "Rankedのプリセットは、アリーナで一定以上のランクになると解放される。", - "Arena/Preset/Tooltip/Tab/Scout": "Scoutはハイリスク・ハイリターンなプレイを好む人向けのクラスだ。このクラスは取り回しの良いSMGに高貫通の弾薬で武装しているが、防御力に乏しいため、些細なミスが命取りになる。", + "Arena/Preset/Tooltip/Tab/Marksman": "Marksman is a class for long-range combat. Presets of this class often have powerful secondary weapons and reasonable armor protection. This highly specialized class is indispensable in outdoor Arenas.", + "Arena/Preset/Tooltip/Tab/Rating": "Ranked presets are given out for achieving a certain rank in the Arena.", + "Arena/Preset/Tooltip/Tab/Scout": "Scout is a class for players who prefer high-risk, high-reward. Presets of this class are armed mainly with short-barreled SMGs with armor-piercing ammunition, but weak protection doesn't give you any room for a single mistake.", "Arena/Presets/Blocked": "ブロック", "Arena/Presets/Tooltips/Ammo": "弾薬", "Arena/Presets/Tooltips/Armor": "アーマー", @@ -12265,12 +12244,12 @@ "Arena/Presets/Tooltips/Bonus/Debuffs/Exp": "経験値ペナルティ", "Arena/Presets/Tooltips/Bonus/Debuffs/Rub": "マネーペナルティ", "Arena/Presets/Tooltips/BulletType/ArmorPiercing": "徹甲", - "Arena/Presets/Tooltips/BulletType/Expansive": "拡散", - "Arena/Presets/Tooltips/BulletType/Flash": "フラッシュ", + "Arena/Presets/Tooltips/BulletType/Expansive": "Expansive", + "Arena/Presets/Tooltips/BulletType/Flash": "Flash", "Arena/Presets/Tooltips/BulletType/HighExplosive": "High explosive", - "Arena/Presets/Tooltips/BulletType/Smoke": "スモーク", + "Arena/Presets/Tooltips/BulletType/Smoke": "Smoke", "Arena/Presets/Tooltips/BulletType/SoftTargets": "Soft targets", - "Arena/Presets/Tooltips/BulletType/Universal": "ユニバーサル", + "Arena/Presets/Tooltips/BulletType/Universal": "Universal", "Arena/Presets/Tooltips/BulletsType": "弾薬タイプ", "Arena/Presets/Tooltips/Damage": "ダメージ", "Arena/Presets/Tooltips/FragmentsCount": "破片数", @@ -12279,7 +12258,7 @@ "Arena/Presets/Tooltips/Other": "その他", "Arena/Presets/Tooltips/Weapon": "武器", "Arena/Rematching": "Returning to matching with high priority", - "Arena/Rematching/NoServer": "技術的な理由により、サーバーが見つかりませんでした。マッチング画面に戻ります。", + "Arena/Rematching/NoServer": "Due to technical reasons, the server has not been found. Returning to game search.", "Arena/TeamColor/azure": "アジュール", "Arena/TeamColor/azure_plural": "アジュール", "Arena/TeamColor/blue": "ブルー", @@ -12295,18 +12274,12 @@ "Arena/TeamColor/yellow": "イエロー", "Arena/TeamColor/yellow_plural": "イエロー", "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked Tier presets for one or more group members", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Not enough unlocked {0} presets for one or more group members", - "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the Tier", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "Not enough money for {0}", - "Arena/Tiers/LockedBy/PresetsUnlocked": "アンロックされたプリセットの数が足りません", - "Arena/Tiers/LockedBy/UnavailableTier": "この試合中では使用できないTierです。", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} currently not available for the game", - "Arena/Tiers/RankingAvailable {0}": "Ranked game unavailable: {0} presets unlocked", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", + "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", + "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", - "Arena/Tiers/UnlockedPresets": "プリセットがアンロックされました", - "Arena/Tooltip/MapSelectedCounter": "選択されたロケーションの数", - "Arena/Tooltip/MinMapCount {0}": "Select multiple locations. You need to select at least {0} location(s)", + "Arena/Tiers/UnlockedPresets": "Presets unlocked", "Arena/UI/Awaiting-Players": "他のプレイヤーを待っています", "Arena/UI/Confirm-Match": "確認", "Arena/UI/CustomMode": "カスタム", @@ -12320,15 +12293,13 @@ "Arena/UI/Leave-Tournament-Game/Title": "LEAVE TOURNAMENT GAME", "Arena/UI/Leave-a-match?": "Are you sure you want to leave the game early?", "Arena/UI/LoadMapResources": "マップリソースをロード中…", - "Arena/UI/Lose-you-reward": "- 報酬とレーティングを失い、一時的にBanされることがあります。", + "Arena/UI/Lose-you-reward": "- You will lose your reward and rating, and may also get a temporary ban", "Arena/UI/Match-Canceled": "マッチがキャンセルされました", - "Arena/UI/Match_leaving_forbidden_body": "この試合から離脱すると、仲間を不利な立場に追い込むことになります。
報酬とレーティングを失い、一時的にBanされることがあります。", + "Arena/UI/Match_leaving_forbidden_body": "If you leave this match you will put your comrades at disadvantage.
You'll lose your reward, rating, and will be eligible for a temporary ban.", "Arena/UI/Match_leaving_forbidden_header": "注意!マッチから離脱しようとしています", "Arena/UI/Match_leaving_permitted_header": "このマッチからはペナルティ無く離脱可能です", - "Arena/UI/PresetResetToDefault": "Settings for the following presets have been reset to default:", "Arena/UI/Return": "戻る", "Arena/UI/Return-to-match": "マッチに戻る", - "Arena/UI/Selection/Blocked": "Preset taken", "Arena/UI/Waiting": "待機中…", "Arena/Ui/ServerFounding": "サーバを検索中…", "Arena/Widgets/Observer/capture point": "目標を占有せよ", @@ -12344,7 +12315,7 @@ "Arena/Widgets/contesting point": "Objective contested", "Arena/Widgets/died": "died", "Arena/Widgets/draw": "引き分け", - "Arena/Widgets/eliminate team": "\"掃除屋\" が来るぞ!", + "Arena/Widgets/eliminate team": "Cleanup crew is coming!", "Arena/Widgets/end time": "Time is out", "Arena/Widgets/enemy captured point": "Enemy team captured the objective", "Arena/Widgets/enemy capturing point": "Enemy team is capturing the objective", @@ -12377,40 +12348,33 @@ "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Are you sure you want to leave the game early?", "ArenaUI/BattleMenu/FreeQuitWarning": "- You will leave the match without penalty", "ArenaUI/BattleMenu/MatchLeave": "LEAVE THE MATCH", - "ArenaUI/BattleMenu/PenaltyWarning": "- 報酬とレーティングを失い、一時的にBanされることがあります。", + "ArenaUI/BattleMenu/PenaltyWarning": "- You will lose your reward and rating, and may also get a temporary ban", "ArenaUI/BattleMenu/PermittedQuitWarning": "Are you sure you want to leave before the game ends?", "ArenaUI/BattleMenu/SquadLeaveWarning": "- You will be kicked from your squad", "ArenaUI/PresetView/FreePreset": "FREE", - "ArenaUI/PresetView/PresetPreview": "プリセットのプレビュー", - "ArenaUI/PresetView/ShopPrice": "価格", - "Arena_AirPit": "Air Pit", - "Arena_AutoService": "Chop Shop", - "Arena_Bay5": "Bay 5", - "Arena_Bowl": "Bowl", - "Arena_Yard": "Block", - "Arena_equator_TDM_02": "Equator", + "ArenaUI/PresetView/PresetPreview": "Preset preview", + "ArenaUI/PresetView/ShopPrice": "Shop price", "Arena_result_final": "Final", "Arena_result_result": "Results", "Arena_result_rounds": "ラウンド", - "Arena_saw": "Sawmill", "Armband": "アームバンド", "Armor": "アーマー", - "Armor Zone BackHead": "後頭部", - "Armor Zone Ears": "耳", - "Armor Zone Eyes": "目", - "Armor Zone HeadCommon": "顔", - "Armor Zone Jaw": "顎", - "Armor Zone LeftCalf": "左ふくらはぎ", - "Armor Zone LeftForearm": "左前腕", - "Armor Zone LeftSideChestDown": "左側", - "Armor Zone LeftSideChestUp": "左脇", - "Armor Zone LeftThigh": "左大腿", - "Armor Zone LeftUpperArm": "左肩", + "Armor Zone BackHead": "Nape", + "Armor Zone Ears": "Ears", + "Armor Zone Eyes": "Eyes", + "Armor Zone HeadCommon": "Face", + "Armor Zone Jaw": "Jaws", + "Armor Zone LeftCalf": "Left calf", + "Armor Zone LeftForearm": "Left forearm", + "Armor Zone LeftSideChestDown": "Left side", + "Armor Zone LeftSideChestUp": "Left armpit", + "Armor Zone LeftThigh": "Left thigh", + "Armor Zone LeftUpperArm": "Left shoulder", "Armor Zone NeckBack": "首", - "Armor Zone NeckFront": "喉", - "Armor Zone ParietalHead": "頭頂部", - "Armor Zone Pelvis": "股", - "Armor Zone PelvisBack": "臀部", + "Armor Zone NeckFront": "Throat", + "Armor Zone ParietalHead": "Head top", + "Armor Zone Pelvis": "Groin", + "Armor Zone PelvisBack": "Buttocks", "Armor Zone Plate_6B13_back": "BCK. PLATE", "Armor Zone Plate_Granit_SAPI_back": "BCK. PLATE", "Armor Zone Plate_Granit_SAPI_chest": "FR. PLATE", @@ -12423,28 +12387,26 @@ "Armor Zone Plate_Korund_side_left_low": "L. PLATE", "Armor Zone Plate_Korund_side_right_high": "R. PLATE", "Armor Zone Plate_Korund_side_right_low": "R. PLATE", - "Armor Zone RibcageLow": "腹部", - "Armor Zone RibcageUp": "胸部", - "Armor Zone RightCalf": "右ふくらはぎ", - "Armor Zone RightForearm": "右前腕", - "Armor Zone RightSideChestDown": "右側", - "Armor Zone RightSideChestUp": "右脇", - "Armor Zone RightThigh": "右大腿", - "Armor Zone RightUpperArm": "右肩", - "Armor Zone SpineDown": "腰部", - "Armor Zone SpineTop": "背中", + "Armor Zone RibcageLow": "Stomach", + "Armor Zone RibcageUp": "Thorax", + "Armor Zone RightCalf": "Right calf", + "Armor Zone RightForearm": "Right forearm", + "Armor Zone RightSideChestDown": "Right side", + "Armor Zone RightSideChestUp": "Right armpit", + "Armor Zone RightThigh": "Right thigh", + "Armor Zone RightUpperArm": "Right shoulder", + "Armor Zone SpineDown": "Lower back", + "Armor Zone SpineTop": "Upper back", "ArmorVest": "ボディアーマー\n", "Aspect ratio:": "アスペクト比:", "Assault": "アサルトライフル", "AssaultCarbine Mastering": "アサルトカービン", "AssaultDescription": "このスキルは、アサルトライフルの取り回しを向上させて、反動を軽減し、リロードにかかる時間を短縮する。", - "AssaultLevelingUpDescription": "The Assault Rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "AssaultRifle": "アサルトライフル", "AssaultRifle Mastering": "アサルトライフル", "AssortmentUnlockReward/Description": "報酬として {0} からこのアイテムを購入することができます", "AttachedLauncher": "アンダーバレルランチャー", "AttachedLauncherDescription": "アンダーバレルグレネードランチャーを扱うスキル", - "AttachedLauncherLevelingUpDescription": "The Underbarrel Launchers weapon skill is improved by firing and reloading the corresponding weapon type.", "Attention": "注意力", "Attention!": "注意!", "Attention! All items, brought by you into the raid or found in it, have been lost.": "レイドに持ち込んだ装備品と戦利品をすべて失ってしまいました", @@ -12456,7 +12418,6 @@ "AttentionDescription": "あらゆるコンテナを物色する速度が速まる", "AttentionEliteExtraLootExp": "ルート経験値を 2倍にする", "AttentionEliteLuckySearch": "コンテナ内のアイテムを即座に見分ける確率 [({0})]", - "AttentionLevelingUpDescription": "The Attention skill is improved by searching containers and bodies.", "AttentionLootSpeed": " 物色する速度が [{0:0%}] 上昇", "AttentionRareLoot": "アイテムを調べる速度が [{0:0%}] 上昇", "Auctionsdescription": "オークション", @@ -12512,7 +12473,6 @@ "Bloom": "ブルーム", "BodyTemperature": "体温", "Boiler Tanks": "ボイラータンク", - "BonfireBuff": "Bonfire's warmth", "BoozeGenerator": "醸造器", "Boss pick": "ボスを選択", "BossType/AsOnline": "オンライン同様", @@ -12534,7 +12494,7 @@ "Bring": "必要物", "BrokenBone": "骨折", "BrokenItem": "完全に壊れているため修理が必要だ", - "Btr/Interaction/Dialog": "ドライバーと話す", + "Btr/Interaction/Dialog": "Talk to the driver", "Btr/Interaction/GoIn": "Enter the BTR", "Btr/Interaction/GoOut": "Exit the BTR", "Btr/InteractionMessage": "Warning! {0}", @@ -12623,7 +12583,6 @@ "CharismaFenceRepPenaltyReduction": "Fenceの評判のペナルティを軽減", "CharismaHealingDiscount": "帰還後の治療サービスにかかる費用を [{0:0%}] 削減", "CharismaInsuranceDiscount": "保険のサービスにかかる費用を [{0:0%}] 削減", - "CharismaLevelingUpDescription": "The Charisma skill is improved indirectly by leveling the Attention, Perception, and Intellect skills.", "CharismaScavCaseDiscount": "Scavケースの費用に割引を適用", "ChatScreen/QuestItemsListHeader": "以下のアイテムをクエストアイテム用の保管場所に移動します:", "ChatScreen/QuestItemsMoved": "アイテムがクエストアイテム用の保管場所に移動しました", @@ -12694,7 +12653,7 @@ "Collider Type PelvisBack": "Stomach, Buttocks", "Collider Type Ribcage": "Ribcage", "Collider Type RibcageLow": "Stomach", - "Collider Type RibcageUp": "Thorax", + "Collider Type RibcageUp": "Chest", "Collider Type RightCalf": "Right leg, Calf", "Collider Type RightForearm": "Right arm, Forearm", "Collider Type RightSide": "Right side", @@ -12741,7 +12700,6 @@ "CovertMovementDescription": "隠密行動スキルにより、足音が減少し音が聞こえる範囲も小さくなる。", "CovertMovementElite": "隠密行動時の足音がどの場所でも静かになる", "CovertMovementEquipment": "武器や装備から発生する音量を [{0:0%}] 低減", - "CovertMovementLevelingUpDescription": "The Covert Movement skill is improved by moving quietly.", "CovertMovementLoud": "特殊な路面を歩く際の足音の音量を [{0:0%}] 低減", "CovertMovementSoundRadius": "隠密行動時に発した音が広がる範囲を [{0:0%}] 縮小", "CovertMovementSoundVolume": "一般的な路面を歩く際の足音の音量を [{0:0%}] 低減", @@ -12749,7 +12707,6 @@ "Crafting": "クラフティング", "CraftingContinueTimeReduce": "ビットコインファームを除くすべての繰返生産にかかる時間を [{0:0.##%}] 短縮", "CraftingElite": "ひとつの設備で最大2種類のアイテムを同時に製作できる", - "CraftingLevelingUpDescription": "The Crafting skill is improved by creating items in the Hideout.", "CraftingSingleTimeReduce": "アイテムの製作時間を [{0:0.##%}] 短縮", "Craftingdescription": "クラフティングスキルが上がることで、継続して製造されるものも含めアイテムの製造にかかる時間が短縮される.", "Create group dialog": "グループチャットを開始", @@ -12779,7 +12736,6 @@ "DISPOSE": "捨てる", "DMR": "DMR", "DMRDescription": "このスキルは、マークスマンライフルの取り回しを向上させて、反動を軽減し、リロードにかかる時間を短縮する。", - "DMRLevelingUpDescription": "The Designated Marksman Rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "DON'T TRY TO LEAVE": "離脱しようとしないでください", "DONTKNOW": "分からない", "DOWN": "仲間がやられた", @@ -12867,7 +12823,7 @@ "DeathInfo/RightSideChestUp": "Right armpit", "DeathInfo/RightThigh": "Right thigh", "DeathInfo/RightUpperArm": "Right shoulder", - "DeathInfo/ScavTeam": "掃除屋", + "DeathInfo/ScavTeam": "Cleanup crew", "DeathInfo/SpineDown": "Lower back", "DeathInfo/SpineTop": "Upper back", "DeathInfo/Stomach": "Stomach", @@ -12934,7 +12890,6 @@ "EAntialiasingMode/None": "オフ", "EAntialiasingMode/TAA_High": "TAA 高", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", "EArenaPresetsType/Assault": "Assault", "EArenaPresetsType/CQB": "CQB", "EArenaPresetsType/Marksman": "Marksman", @@ -13069,7 +13024,7 @@ "EStatQuestType/SurviveOnLocation": "特定地域からの脱出", "ETraderServiceType/BtrBotCover": "Cover fire", "ETraderServiceType/BtrItemsDelivery": "Move items to stash", - "ETraderServiceType/PlayerTaxi": "BTRで送ってもらう", + "ETraderServiceType/PlayerTaxi": "Take a ride", "EXAMINE": "調べる", "EXAMINE IN PROGRESS": "調査中", "EXAMINE: ": "調べる: ", @@ -13142,7 +13097,6 @@ "EnduranceBuffRestorationTimeRed": "息が整うまでにかかる時間が [{0:0%}] の減少", "EnduranceDescription": "持久力はスタミナの最大値を上げ、走ったりジャンプしたり、息を止める際にどの程度疲労するかに影響する", "EnduranceHands": "手振れするまでの持久力が上昇", - "EnduranceLevelingUpDescription": "The Endurance skill is improved by sprinting without the overweight status effect, and by working out in the Hideout gym.", "EnergyExpensesUp {0}": "エネルギー減少率が {0}増加", "EnergyRate": "エネルギー回復", "Enter": "入る", @@ -13272,7 +13226,6 @@ "Friends": "フレンド", "Friends invite is already sent": "フレンドリクエストは送信済みです。", "Friends list": "フレンドリスト", - "FrostbiteBuff": "Morana's frostbite", "Full": "フル装填", "Full Recovery Time": "回復までの時間", "Fullscreen mode:": "画面モード", @@ -13341,7 +13294,6 @@ "HIT": "被弾した", "HMG": "重機関銃", "HMGDescription": "ヘビーマシンガンスキルは、ヘビーマシンガン全体の操作性を向上させ、反動を減らし、リロード時間を短縮する。", - "HMGLevelingUpDescription": "The Heavy Machine Guns weapon skill is improved by firing and reloading the corresponding weapon type.", "HOLD FIRE": "撃つな", "HOLDFIRE": "撃つな", "HOLDPOSITION": "位置を保て", @@ -13378,7 +13330,6 @@ "HealthElitePosion": "毒免疫レベル [({0})]", "HealthEnergy": "エネルギーの消費量を [{0:0%}] 削減", "HealthHydration": "水分の消費量を [{0:0%}] 削減", - "HealthLevelingUpDescription": "The Health skill is improved indirectly by leveling the Strength, Endurance, and Vitality skills.", "HealthOfflineRegenerationInc": "レイド外での体力の回復量が [{0:0%}] 上昇", "HealthRate": "体力回復", "HealthTreatment/SkipHealthTreatmentDialogue": "警告!体力が残り僅かです。\n治療メニューをスキップして\nメインメニュに戻りますか?", @@ -13392,7 +13343,6 @@ "HeavyVestRepairDegradationReduction": "リペアキット使用時の耐久値の損耗を [{0:0%}] 低減", "HeavyVests": "ヘビーアーマー", "HeavyVestsDescription": "ヘビーアーマーのスキルによって機動性が向上する。またアーマー越しのダメージ及び爆発物によるダメージが軽減される。", - "HeavyVestsLevelingUpDescription": "The Heavy Vests skill is improved by repairing heavy body armor and ballistic plates with repair kits.", "Hideout/Craft/ToolMarkerTooltip": "このアイテムは補助道具として使用されます。生産が完了するとあなたのスタッシュに戻ります。", "Hideout/Handover window/Caption/All weapons": "すべての武器", "Hideout/Handover window/Message/Items in stash selected:": "スタッシュのアイテムを選択:", @@ -13405,9 +13355,8 @@ "HideoutExtraSlots": "+2 燃料缶スロット\n+2 水フィルタースロット\n+2 空調フィルタースロット\n+2 ビットコインファームの保管上限", "HideoutInteractions/TransferItems": "アイテムを移動", "HideoutManagement": "ハイドアウト管理", - "HideoutManagementLevelingUpDescription": "The Hideout Management skill is improved by creating items and upgrading zones in the Hideout.", - "HideoutResourceConsumption": "燃料、エアフィルター、ウォーターフィルターの消費率が [{0:0.#%}] 減少", - "HideoutZoneBonusBoost": "ハイドアウトの設備によるすべてのボーナスが [{0:0.#}%] 上昇", + "HideoutResourceConsumption": "燃料、エアフィルター、ウォーターフィルターの消費率が [{0:0%}] 減少", + "HideoutZoneBonusBoost": "ハイドアウトの設備によるすべてのボーナスが [{0:0}%] 上昇", "Hideout\\Craft\\ToolMarketTooltip": "", "Hideout_area_16_stage_3_description": "A full-fledged area in the Hideout dedicated to storing items of collectible value.", "Hiding objective {0:F1}": "アイテムを隠している {0:F1}", @@ -13444,7 +13393,6 @@ "Immunity": "免疫力", "ImmunityAvoidPoisonChance": "毒による影響を受けずに済む確率が [{0:0%}] 上昇", "ImmunityDescription": "免疫は病気のかかりやすさや治療の効果に影響する", - "ImmunityLevelingUpDescription": "The Immunity skill is improved by being under the effects of poisoning and other negative effects of stimulants.", "ImmunityMiscEffects": "精神刺激薬や飲食物などによる悪影響を [{0:0%}] 低減", "ImmunityMiscEffectsChance": "精神刺激薬や飲食物などの悪影響に対する免疫の獲得率が [{0:0%}] 上昇", "ImmunityPainKiller": "鎮痛効果の持続時間が [{0:0%}] 増加", @@ -13473,7 +13421,6 @@ "IntellectEliteContainerScope": "調べることなくコンテナの内容を推測する", "IntellectEliteNaturalLearner": "アイテムを手動で調査する必要がなくなる", "IntellectLearningSpeed": "アイテムを調べる速度が [{0:0%}] 上昇", - "IntellectLevelingUpDescription": "The Intellect skill is improved by examining previously unidentified items and repairing weapons.", "IntellectRepairPointsCostReduction": "リペアキットの消費ポイントが [{0:0%}] 減少", "IntellectWeaponMaintance": "武器の修理効率が [{0:0%}] 上昇", "IntelligenceCenter": "インテリジェンスセンター", @@ -13645,7 +13592,6 @@ "LL": "LL", "LMG": "軽機関銃", "LMGDescription": "このスキルは、ライトマシンガンの取り回しを向上させて、反動を軽減し、リロードにかかる時間を短縮する。", - "LMGLevelingUpDescription": "The Light Machine Guns weapon skill is improved by firing and reloading the corresponding weapon type.", "LOAD": "ロード", "LOAD FROM DIRECTORY...": "ディレクトリから読み込む…", "LOAD FROM FILE...": "ファイルから読み込む…", @@ -13667,7 +13613,6 @@ "LastHeroDescriptionShort": "You are on your own", "Launcher": "ロケットランチャー", "LauncherDescription": "グレネードランチャーを扱うスキル", - "LauncherLevelingUpDescription": "The Grenade Launchers weapon skill is improved by firing and reloading the corresponding weapon type.", "LeanLockLeft": "左リーン", "LeanLockRight": "右リーン", "LeanX negative": "左へスローリーン", @@ -13704,7 +13649,6 @@ "LightVestRepairDegradationReduction": "リペアキット使用時の耐久値の損耗を [{0:0%}] 低減", "LightVests": "ライトアーマー", "LightVestsDescription": "ライトアーマーのスキルによって機動性が向上する。またアーマー越しのダメージ及び近接攻撃によるダメージが軽減される。", - "LightVestsLevelingUpDescription": "The Light Vests skill is improved by repairing light body armor and ballistic plates with repair kits.", "Lighthouse": "Lighthouse", "Lighthouse_pass": "Path to Lighthouse", "Lighting quality:": "ライティングの品質:", @@ -13756,7 +13700,6 @@ "MAP": "マップ", "MASTERING": "熟練度", "MATERIAL": "素材", - "MAX AMMO DAMAGE": "Damage", "MAXCOUNT": "最大容量", "MAXIMUM THROW DAMAGE": "一破片あたりの最大ダメージ", "MED USE TIME": "治療時間", @@ -13805,18 +13748,17 @@ "MagDrills": "マガジン装填", "MagDrillsDescription": "弾薬の装填や排出、残弾数の確認といったマガジンの扱いに関係するスキル。", "MagDrillsInstantCheck": "インベントリにマガジンを移す際、即座に残弾数を確認できる", - "MagDrillsInventoryCheckAccuracy": "メニューから残弾数のチェックをする時の精度が [{0:0.#}%] 上昇", - "MagDrillsInventoryCheckSpeed": "メニューから残弾数のチェックをする時の速度が [{0:0.#}%] 上昇", - "MagDrillsLevelingUpDescription": "The Mag Drills skill is improved by loading, unloading, and checking magazines.", + "MagDrillsInventoryCheckAccuracy": "メニューから残弾数のチェックをする時の精度が [{0}%] 上昇", + "MagDrillsInventoryCheckSpeed": "メニューから残弾数のチェックをする時の速度が [{0}%] 上昇", "MagDrillsLoadProgression": "マガジンに弾薬をより早く装填できる", - "MagDrillsLoadSpeed": "弾薬を装填する速度が [{0:0.#}%] 上昇", - "MagDrillsUnloadSpeed": "弾薬を取り出す速度が [{0:0.#}%] 上昇", + "MagDrillsLoadSpeed": "弾薬を装填する速度が [{0}%] 上昇", + "MagDrillsUnloadSpeed": "弾薬を取り出す速度が [{0}%] 上昇", "MagPreset/CaliberNotSelected": "Caliber not specified", "MagPreset/DiscardCahangesDescription": "Any unsaved changes will be lost.\nContinue?", "MagPreset/Error/ContainsMissingItems": "Ammo not found:", "MagPreset/HasMissingItems": "Not enough ammo to load.", "MagPreset/InvalidName{0}": "Invalid preset name \"{0}\".", - "MagPreset/LoadingComplete": "Magazines have been loaded", + "MagPreset/LoadingComplete": "Magazines has been loaded", "MagPreset/PresetRemoved{0}": "Preset \"{0}\" was deleted.", "MagPreset/PresetRenamed{0}": "Preset was renamed \"{0}\".", "MagPreset/PresetSaved{0}": "Preset \"{0}\" was saved.", @@ -13869,7 +13811,7 @@ "MatGlass": "ガラス", "MatTitan": "チタン", "MatUHMWPE": "超高分子量ポリエチレン", - "Match canceled": "試合がキャンセルされました。自由にゲームからの離脱が行えます。装備にかかる費用は返金され、レーティングの差し引きも行われません。", + "Match canceled": "The match is canceled. You can leave the game freely. Money for the match will be refunded. Rating will not be deducted.", "MatchEndExpBonus": "Match results bonus", "Matchend/ErrorUpdatingDataForHealing": "データのロードに失敗しました、ネットワーク接続の状態を確認してください。再び設定画面に移動するか、スキップしてメインメニューへ移動しますか?", "Matching...": "マッチング中…", @@ -13881,11 +13823,9 @@ "Meds": "医薬品", "Melee": "近接", "MeleeDescription": "近接武器を扱うスキル", - "MeleeLevelingUpDescription": "The Melee skill is improved by striking enemies with melee weapons.", "Memory": "記憶力", "MemoryDescription": "訓練したスキルを忘れ始めるまでの時間が長くなる。", "MemoryEliteMentalNoDegradation": "どんなスキルも忘れなくなる", - "MemoryLevelingUpDescription": "The Memory skill is improved by", "MemoryMentalForget1": "スキルの忘却率を [{0:0%}] 軽減", "MemoryMentalForget2": "スキル レベルのロールバックが [{0:0%}] 減少", "Mental": "メンタル", @@ -13895,7 +13835,6 @@ "MetabolismEliteBuffNoDyhydration": "疲労、脱水状態によるダメージ無効化", "MetabolismEliteNoForget": "どのフィジカルスキルも忘れなくなる", "MetabolismEnergyExpenses": "エネルギーと水分の消費量を [{0:0%}] 低減", - "MetabolismLevelingUpDescription": "The Metabolism skill is improved by consuming energy and water supplies.", "MetabolismMiscDebuffTime": "精神刺激薬や飲食物などによるデバフの持続時間が [{0:0%}] 減少", "MetabolismPhysicsForget": "フィジカルスキルの忘却率が [{0:0%}] 低下", "MetabolismPhysicsForget2": "忘却によるフィジカルスキルの最大減少値を抑える", @@ -14139,7 +14078,6 @@ "PerceptionDescription": "可聴範囲の増加、エイム中の集中力を高めるほか、戦利品の発見を容易にする。", "PerceptionFov": "エイム時の集中力が [{0:0%}] 向上", "PerceptionHearing": "可聴範囲が [{0:0%}] 拡大", - "PerceptionLevelingUpDescription": "The Perception skill is improved by finding and picking up any items.", "PerceptionLootDot": "戦利品を感知する範囲が [{0:0%}] 拡大", "PerceptionmEliteNoIdea": "物色中の接近通知", "Perish": "死亡回数", @@ -14148,7 +14086,6 @@ "Pistol": "ハンドガン", "Pistol Mastering": "ピストル", "PistolDescription": "ピストルスキルは、ピストルの取り回しを向上させて、反動を軽減し、リロードにかかる時間を短縮する。", - "PistolLevelingUpDescription": "The Pistols weapon skill is improved by firing and reloading the corresponding weapon type.", "PlaceOfFame": "コレクション", "PlantLocationDescription": "TerraGroup社へ違法に貸し出されていた第16化学工場の工業団地およびその施設。契約戦争ではタルコフ工業地帯の支配権を巡ってUSECとBEARとの間で無数の銃撃戦が繰り広げられた。混乱の後、施設内は残存する民間人やScav、そして散り散りとなったUSECやBEARなどのオペレーターたちのシェルターとなった。", "Player": "プレイヤー", @@ -14220,7 +14157,6 @@ "ProneMovement": "匍匐移動", "ProneMovementDescription": "匍匐移動スキルの熟練により、より早く静かに匍匐移動できるようになる。", "ProneMovementElite": "匍匐時の移動速度が [{0:0%}] 上昇", - "ProneMovementLevelingUpDescription": "The Prone Movement skill is improved by moving while in a prone position.", "ProneMovementSpeed": "匍匐時の移動速度向上 [(+{0:0%})]", "ProneMovementVolume": "匍匐時の移動音減少 [(-{0:0%})]", "Protect objective {0:F1}": "目標を守れ {0:F1}", @@ -14412,7 +14348,6 @@ "RecoilControlDescription": "より優れた反動制御スキルは水平方向への弾の拡散を減らし弾着点を予測しやすくする。", "RecoilControlElite": "反動制御能力が [{0:0%}] 向上", "RecoilControlImprove": "反動制御能力が [{0:0%}] 向上", - "RecoilControlLevelingUpDescription": "The Recoil Control skill is improved by continuous shooting. The higher the base recoil of the weapon, the faster the skill improves.", "RecommendedVRAM:": "推奨 VRAM", "Reconnection is not available at this moment due to testing purposes": "現在テスト目的のため再接続は制限されています", "RedRebel_alp": "Climber's Trail", @@ -14442,7 +14377,6 @@ "Report game bug abuse": "バグの悪用を報告", "Report offensive nickname": "攻撃的なニックネームを報告", "Report suspected cheat use": "チート使用の疑いを報告", - "Report suspicious profile": "Report suspicious profile", "ReportAbuseBug": "Report bug abuse", "ReportAbuseVoip": "Report VoIP & Radio abuse", "ReportCheater": "Report suspected cheater", @@ -14478,7 +14412,6 @@ "Revolver": "リボルバー", "Revolver Mastering": "リボルバー", "RevolverDescription": "リボルバーを扱うスキル。", - "RevolverLevelingUpDescription": "The Revolvers weapon skill is improved by firing and reloading the corresponding weapon type.", "RezervBase": "Reserve", "Rig": "リグ", "Right Arm": "右腕", @@ -14528,7 +14461,6 @@ "SKILLS_SPEED_UP": "レベリングスピード上昇", "SMG": "サブマシンガン", "SMGDescription": "このスキルは、サブマシンガンの取り回しを向上させて、反動を軽減し、リロードにかかる時間を短縮する。", - "SMGLevelingUpDescription": "The Submachine guns weapon skill is improved by firing and reloading the corresponding weapon type.", "SNIPERPHRASE": "スナイパーだ", "SO": "SO", "SOUND": "サウンド", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "{0} との取引額が{1} 増加", "Sandbox": "Ground Zero", "Sandbox_VExit": "Police Cordon V-Ex", - "Sandbox_high": "Ground Zero", "Saturation:": "飽和度:", "Savage matchmaker": "ランダムな装備でScavとしてレイドに参加する。Tarkovはお前の庭だ、お前がルールを作れ!", "SavageBannerDescription": "Scav としてレイドに参加する場合、メインの PMC キャラクターとはゲーム内容が異なります。レイドの開始時間、スポーンする位置、初期装備、キャラクターの体力は全てランダムです。脱出に成功すれば手に入れた戦利品は全て PMC キャラクターのスタッシュに移すことができますが、Scav としてレイドを完了しても PMC キャラクターに経験値を引き継ぐことはできません。また同様にレイドで死亡してしまった場合でも、メインキャラクターの進行状況に影響はありません。", @@ -14585,7 +14516,6 @@ "Search": "サーチ", "SearchDescription": "探索スキルの熟練により死体やコンテナを素早く効率的に探ることができるようになる。", "SearchDouble": "同時に二つのコンテナを調べる", - "SearchLevelingUpDescription": "The Search skill is improved by searching containers.", "SecondPrimaryWeapon": "セカンダリ", "SecondaryWeapon": "サイドアーム", "SecuredContainer": "ポーチ", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "設定が変更されています。保存しますか?", "Settings/Sound/BinauralSound": "バイノーラルオーディオ", "Settings/Sound/ChatVolume": "チャットの音量:", - "Settings/Sound/CommentatorVolume": "Announcer volume:", "Settings/Sound/Device": "オーディオデバイス", "Settings/Sound/HideoutVolume": "ハイドアウトの音量:", "Settings/Sound/InterfaceVolume": "インターフェースの音量:", "Settings/Sound/MusicOnRaidEnd": "レイド終了時の音楽", "Settings/Sound/MusicVolume": "BGMの音量:", "Settings/Sound/OverallVolume": "全体の音量:", - "Settings/Sound/ReadyToMatchSoundVolume": "Match accept screen volume:", "Settings/UnavailablePressType": "利用不可", "SevereMusclePain": "重度の筋肉痛", "Shack": "Military Base CP", @@ -14677,7 +14605,6 @@ "Shotgun": "ショットガン", "Shotgun Mastering": "ショットガン", "ShotgunDescription": "ショットガンスキルは、ショットガンの取り回しを向上させて、反動を軽減する。", - "ShotgunLevelingUpDescription": "The Shotguns weapon skill is improved by firing and reloading the corresponding weapon type.", "Show icons": "アイコンを表示", "Show:": "Show:", "SightingRange": "照準距離", @@ -14701,7 +14628,6 @@ "Sniper": "スナイパーライフル", "Sniper Roadblock": "Sniper Roadblock", "SniperDescription": "このスキルは、スナイパーライフルの取り回しを向上させて、反動を軽減し、リロードにかかる時間を短縮する。", - "SniperLevelingUpDescription": "The Bolt-action rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "SniperRifle": "スナイパーライフル", "SniperRifle Mastering": "スナイパーライフル", "Sniper_exit": "Mira Ave", @@ -14734,8 +14660,6 @@ "StartInGroup": "一緒", "StartLookingForGroup": "グループへの参加を希望", "StartNotInGroup": "別々", - "StashLinesExternalObtain": "Stash upgrade", - "StashLinesExternalObtain/Tooltip": "Stash upgrade is available for purchase on the website", "StatFoundMoneyEUR": "発見したユーロ", "StatFoundMoneyRUB": "発見したルーブル", "StatFoundMoneyUSD": "発見したUSドル", @@ -14779,12 +14703,10 @@ "StrengthBuffSprintSpeedInc": "キャラクターの移動速度が [{0:0%}] 上昇", "StrengthBuffThrowDistanceInc": "投擲距離が [{0:0%}] 伸長", "StrengthDescription": "筋力を増加させることによって、より高くジャンプし、より速く走り、より強く打撃を与え、より遠くに物を投げ、より多くの物を持ち運べるようになる。", - "StrengthLevelingUpDescription": "The Strength skill is improved by sprinting with the overweight status effect, throwing grenades, using melee weapons, and by working out in the Hideout gym.", "StressBerserk": "バーサークモードを発動", "StressPainChance": "痛みによるショック症状を起こす確率が [{0:0%}] 減少", "StressResistance": "ストレス耐性", "StressResistanceDescription": "ストレス耐性はショック耐性を向上させ、手の揺れ、視界のぶれを抑えることができる。", - "StressResistanceLevelingUpDescription": "The Stress Resistance skill is improved by receiving damage. Having the Pain status effect without using painkillers also improves this skill.", "StressTremor": "震えによる振幅が [{0:0%}] 減少", "StringSeparator/Or": "または", "Stun": "スタン状態", @@ -14851,7 +14773,6 @@ "Summary": "概要", "Surgery": "手術", "SurgeryDescription": "野外で手術を行う能力は危機的な状況で命を救うものとなる。スキルが向上した分だけより早く効果的に手術を行うことができる。", - "SurgeryLevelingUpDescription": "The Surgery skill is improved by using surgical kits on injured body parts.", "SurgeryReducePenalty": "手術による最大HPの減少を [{0:0%}] 軽減", "SurgerySpeed": "手術の速度が [{0:0%}] 上昇", "Survival Rate Short": "生存率: {0}%", @@ -14927,7 +14848,6 @@ "Throwing": "投擲武器", "ThrowingDescription": "手投げ武器スキルにより、より遠くへ手榴弾を投げることができるようになりスタミナの消費が減少する。", "ThrowingEnergyExpenses": "投擲に必要なエネルギーを [{0:0%}] 軽減", - "ThrowingLevelingUpDescription": "The Throwables skill is improved by throwing grenades.", "ThrowingStrengthBuff": "投擲力が [{0:0%}] 増加", "ThrowingWeaponsBuffElite": "投擲でエネルギーを消費せず、疲労が命中率に影響することもなくなる", "Time flow": "時間経過", @@ -14966,67 +14886,51 @@ "Trading": "トレード", "Trading/AssortmentUpdated": "再入荷", "Trading/Bad standing": "評価が低いためトレーダーが買い取りを拒否しています", - "Trading/Btr/Dialog/AvailableServices/Description": "行きたい場所に連れていくこともできるし、誰かに追われているなら援護射撃もできる。お前の隠れ家に荷物を運ぶことも可能だ。それで、どうするんだ?", - "Trading/Btr/Dialog/AvaliableServices": "それで、何ができるんだ?", - "Trading/Btr/Dialog/Quit": "会話を終える", + "Trading/Btr/Dialog/AvailableServices/Description": "I can get you where you want to go, I can provide cover fire if you're being tailed. I can also move your stuff to the right place, to your hideout. So, what's it gonna be?", + "Trading/Btr/Dialog/AvaliableServices": "So what can you do?", + "Trading/Btr/Dialog/Quit": "End conversation", "Trading/Dialog/AskForNewQuests": "何か俺にできる仕事はないか?", - "Trading/Dialog/AvailableServices": "少し手伝ってくれないか?", + "Trading/Dialog/AvailableServices": "Can you help me with something?", "Trading/Dialog/AvailableServices/Description": "You want my services? Well, you've served your purpose already, so I'll help you if you have enough to cover the cost.", "Trading/Dialog/AvailableServices/Standing": "(Lightkeeper standing: {0:N2})", - "Trading/Dialog/AvaliableServices": "少し手伝ってくれないか?", - "Trading/Dialog/Btr/News": "ほかに情報は?", - "Trading/Dialog/Btr/News/Next": "ほかに情報は?", - "Trading/Dialog/Btr/News1": "最近は大雪が続いているな! こんなに降っているのは契約戦争以来だよ。初めて北に住んだかのような気分だ。だが溶けてしまったのが残念だな。", - "Trading/Dialog/Btr/News2": "あまり外に出かけていないんだろう?大きな祝日があってな、町全体でお祝いをしたのさ!あんたもいい祝日を。", - "Trading/Dialog/Btr/News3": "Our kingpins made a big mess, didn't they? Sitting at their spots, not moving, not letting anyone breathe.", - "Trading/Dialog/Btr/News4": "毎年サンタクロースのコスプレをする変人が、今になってしゃべった!無言だと思ってた。", - "Trading/Dialog/Btr/News5": "街のあちこちで地元の有名人のフィギュアが売られているな。俺のBTRもそうなるのだろうか。", - "Trading/Dialog/Btr/NoNews": "俺からの情報は以上だな。", - "Trading/Dialog/Btr/ServicePayoff{0}": "よし、それでいこう。 (\"{0}\" を手渡す)", - "Trading/Dialog/BtrBotCover/Description": "BTRの中にいる間は、少しでも誰かが見えたら撃とう。降りる場所も確保するし脱出するときも援護もするが、時間には限りがあるぞ。", - "Trading/Dialog/BtrBotCover/Name": "援護射撃を求める", - "Trading/Dialog/BtrItemsDelivery/Name": "アイテムをスタッシュに送る", - "Trading/Dialog/CultistAmulet/Description": "少しの間、カルトからお前を守ってくれる特別なアミュレットを提供できるぞ。ただ、奴らを刺激しないように気を付けろ。", - "Trading/Dialog/CultistAmulet/Name": "黒いコートを着た人たちがBTRを見つけ次第攻撃してくるんだ、これを止めてくれないか?", - "Trading/Dialog/CultistsAid/Description": "少しの間、奴らからお前を守ってくれる特別なアミュレットを提供できるぞ。ただ、刺激しないように気を付けろ。", - "Trading/Dialog/CultistsAid/Name": "黒いコートを着た人たちがBTRを見つけ次第攻撃してくるんだ、これを止めてくれないか?", - "Trading/Dialog/ExUsecLoyalty/Description": "Rogueたちが、お前がここから脱出するのを助けてくれるぞ。だがそんな余裕がお前にあるのか?", - "Trading/Dialog/ExUsecLoyalty/Name": "ローグと交渉を行いたい、手伝ってくれないか?", + "Trading/Dialog/AvaliableServices": "Can you help me with something?", + "Trading/Dialog/Btr/News": "What's the news?", + "Trading/Dialog/Btr/News/Next": "Any more news?", + "Trading/Dialog/Btr/News1": "The biggest news is the BTR! I fixed it all myself. Consider it my own creation. Now I can drive people around. Maybe that'll help me pay for the repairs.", + "Trading/Dialog/Btr/News2": "Someone is organizing gladiatorial fights in Tarkov. They say a lot of people went there of their own free will. The money's pretty good. If you survive, obviously!", + "Trading/Dialog/Btr/News3": "There was an uproar all over Tarkov over some TerraGroup documents. They've even been looking beyond the border, but I kinda don't believe it.", + "Trading/Dialog/Btr/News4": "A while back, most of the AP ammo went missing from the traders' stocks. Fighters like you were running all over Tarkov, looking for other people's ammo stashes. Now everything's fine though.", + "Trading/Dialog/Btr/News5": "Sanitar tried to strengthen his influence in Tarkov recently. He had some kind of an antidote, apparently. Not long before that, a lot of people got poisoned. Coincidence? I think not.", + "Trading/Dialog/Btr/NoNews": "I think that's all the news I have.", + "Trading/Dialog/Btr/ServicePayoff{0}": "Works for me, yes. (hand over \"{0}\")", + "Trading/Dialog/BtrBotCover/Description": "The whole time you're in the BTR, we'll shoot anyone who sticks their noses out. We'll also clear the drop zone and cover you while you get out, but not for long.", + "Trading/Dialog/BtrBotCover/Name": "Cover fire", + "Trading/Dialog/BtrItemsDelivery/Name": "Move items to stash", + "Trading/Dialog/CultistAmulet/Description": "I can offer you a special amulet that will keep you safe from the cultists for some time. Just make sure you don't upset them.", + "Trading/Dialog/CultistAmulet/Name": "Can you make those black coat people stop attacking me on sight?", + "Trading/Dialog/CultistsAid/Description": "I can offer you a special amulet that will keep you safe from them for some time. Just make sure you don't upset them.", + "Trading/Dialog/CultistsAid/Name": "Can you make those black coat people stop attacking me on sight?", + "Trading/Dialog/ExUsecLoyalty/Description": "The Rogues can help you leave this area alive. But can you afford it? \"{0}\"", + "Trading/Dialog/ExUsecLoyalty/Name": "Can you help me negotiate with the Rogues?", "Trading/Dialog/GoBackDefault": "戻る", "Trading/Dialog/PlayerAboutQuests": "タスクについて......", "Trading/Dialog/PlayerAcceptQuest{0}": "やってみよう。(accept task \"{0}\")", "Trading/Dialog/PlayerFinishQuest{0}": "完了だ。 (finish task \"{0}\")", "Trading/Dialog/PlayerHandoveItem{0}": "これを見つけた。 (hand over \"{0}\")", - "Trading/Dialog/PlayerTaxi/Description": "ここがお前を乗せていける場所だ。どこがいい?", - "Trading/Dialog/PlayerTaxi/Name": "BTRで送ってもらう", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Rodina Cinema", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "Tram まで乗せていこう。現金は持っているな?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Tram", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "よし、City Center に向かうぞ。現金は足りるな?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "City Center", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Collapsed Crane まで乗せていくぞ。この値段でいいか?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Collapsed Crane", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "Old Scav Checkpoint に移動しよう。料金はこれでいいな?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Old Scav Checkpoint", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "Pinewood Hotel まで送ろう。値段はこれで納得するか?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Pinewood Hotel", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "Gonna head to the Scav bunker. Price alright?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Scav Bunker", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "The sunken village, huh? I think we can make it. Here's the price.", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Sunken village", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "Could drive you to the fork in the road, sure. You got enough cash?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Junction", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "Sawmill? No problem! Here's my pricing.", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Sawmill", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "To the USEC checkpoint, alright. Not driving for free, though.", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "USEC Checkpoint", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "I'm mapping out the route to the Emercom base. You cool price-wise?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "Emercom Base", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "Okie-dokie, old sawmill it is. Here's the price.", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Old Sawmill", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "You want me to drop you off at the depot? Just so you know, you can't get out of there without me. If the price is okay, you keep an eye on the time there, okay?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Train Depot", + "Trading/Dialog/PlayerTaxi/Description": "Here's where I can drop you off. Pick one.", + "Trading/Dialog/PlayerTaxi/Name": "Take a ride", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina Cinema", + "Trading/Dialog/PlayerTaxi/p2/Description": "Driving to the tram. You got the cash, right?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Great, we're on course for city center. You got enough cash?", + "Trading/Dialog/PlayerTaxi/p3/Name": "City Center", + "Trading/Dialog/PlayerTaxi/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Collapsed Crane", + "Trading/Dialog/PlayerTaxi/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Old Scav Checkpoint", + "Trading/Dialog/PlayerTaxi/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood Hotel", "Trading/Dialog/Quit": "立ち去る", "Trading/Dialog/ServicePayoff{0}": "Alright, this should be enough. (hand over \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "履歴を非表示にする", @@ -15042,7 +14946,7 @@ "Trading/Dialog/WhoAreYouPlayerQuestion8": "\"蝕\"?…… \"再生\"?あんた一体何を言ってるんだ?", "Trading/Dialog/WhoAreYouPlayerQuestion9": "まあ、やってみるさ。本当はあんたに手伝ってもらうつもりだったんだけどな。", "Trading/Dialog/YouAreHere": "You are here", - "Trading/Dialog/ZryachiyAid/Description": "Zryachiy is one of the best snipers in the world. He'll have your back, kill anyone who crosses your path. But this kind of help comes at a price. You ready to shell out?", + "Trading/Dialog/ZryachiyAid/Description": "Zryachiy is one of the best snipers in the world. He'll have your back, kill anyone who crosses your path. But this kind of help comes at a price. You ready to shell out? \"{0}\"", "Trading/Dialog/ZryachiyAid/Name": "Listen, can your sniper friend help me get out of here?", "Trading/InsufficientNumberOfItemsInStock{}{}": "トレーダーの在庫が {0} 個に満たなかったため、{1} 個を購入しました。", "Trading/NoSelectedItems": "アイテム未選択", @@ -15069,7 +14973,6 @@ "TroubleFixingMagElite": "弾薬によって発生する動作不良に関し、一度対処した後に同じ動作不良が再発する確率を50%減少させる。", "TroubleShootingDescription": "トラブルシューティングスキルは武器に起きた問題への対応を容易にする。 ", "Troubleshooting": "トラブルシューティング", - "TroubleshootingLevelingUpDescription": "The Troubleshooting skill is improved by regularly fixing weapon malfunctions.", "Try_keycard {0}": "{0} を試す", "Tunnel": "Tunnel", "Tunnel_Shared": "Side Tunnel (Co-Op)", @@ -15152,11 +15055,6 @@ "UI/Arena/Place_7": "7th place", "UI/Arena/Place_8": "8th place", "UI/Arena/Place_9": "9th place", - "UI/ArmorPenetration/High": "High", - "UI/ArmorPenetration/Low": "Low", - "UI/ArmorPenetration/Medium": "Medium", - "UI/ArmorPenetration/VeryHigh": "Very high", - "UI/ArmorPenetration/VeryLow": "Very low ", "UI/Charisma/Discount/Insurance": "保険にかかる費用", "UI/Charisma/Discount/PostRaidHealing": "回復コスト", "UI/Charisma/Discount/ScavCase": "Scav ケースのコスト", @@ -15334,8 +15232,6 @@ "Very good standing": "非常に良好", "Vest": "ベスト", "Village": "Village", - "Violation/IntentionalTeamDamage/Warning": "Your account will be blocked if you continue shooting your teammates", - "Violation/IntentionalTeamKill/Warning": "Your account will be blocked if you continue killing your teammates at round start", "Violation/TeamKill/Warning": "Your account will be blocked if you continue killing your teammates", "Vital mod weapon in hands": "武器を手に持ったまま重要なパーツの改造はできない", "Vital parts": "機関部パーツ", @@ -15345,7 +15241,6 @@ "VitalityBuffRegeneration": "戦闘中の体力回復量が上昇", "VitalityBuffSurviobilityInc": "四肢の欠損により死亡する可能性が [{0:0%}] 減少", "VitalityDescription": "生命力により体の各部位に受けた致命的なダメージによる即死と出血の可能性が低下し、負傷から生き延びるチャンスが上がる。", - "VitalityLevelingUpDescription": "The Vitality skill is improved by sustaining various bleedings and injuries.", "Voice": "キャラクターボイス", "Voice 1": "ボイス 1", "Voice 2": "ボイス 2", @@ -15409,7 +15304,7 @@ "WeaponDeteriorationChanceReduce": "修理する際の損耗率を [{0:0%}] 軽減", "WeaponDoubleMastering": "マスタリング経験値2倍", "WeaponDurabilityLossOnShotReduce": "発砲による銃の損耗を [{0:0%}] 軽減", - "WeaponErgonomicsBuff": "武器のエルゴノミクスが [{0:0%}] 改善", + "WeaponErgonomicsBuff": "武器のエルゴノミクスが [{0:0%}] 向上", "WeaponJammed": "ジャム", "WeaponModding": "武器改造", "WeaponModdingDescription": "武器改造スキルは改造時のエルゴノミクスを向上させサイレンサーの消耗を抑える。", @@ -15420,7 +15315,6 @@ "WeaponSwapBuff": "武器の切り替え速度が [{0:0%}] 上昇", "WeaponTreatment": "武器メンテナンス", "WeaponTreatmentDescription": "武器の修理とメンテナンスの技術", - "WeaponTreatmentLevelingUpDescription": "The Weapon Maintenance skill is improved by repairing weapons with repair kits.", "WearAmountRepairGunsReducePerLevel": "リペアキット使用時の損耗量を低減", "WearChanceRepairGunsReduceEliteLevel": "リペアキット使用時の損耗量を 50% 低減", "Weather conditions": "天候", @@ -15539,7 +15433,7 @@ "arena/button/Career": "CAREER", "arena/button/Presets": "PRESETS", "arena/button/QuitGame": "QUIT GAME", - "arena/button/Rating": "レーティング", + "arena/button/Rating": "RATING", "arena/career/commonStats/avgGlpPerDay": "Avg ARP per day", "arena/career/commonStats/bestGlp": "Highest ARP", "arena/career/commonStats/bestMatchKillStreak": "Highest match kill streak", @@ -15579,7 +15473,7 @@ "arena/career/ranksHint/elite100": "Elite TOP-100", "arena/career/ranksHint/elite1000": "Elite TOP-1000", "arena/career/ranksHint/specialRanks": "Special ranks", - "arena/career/shootOutStats/assists": "Kill assists", + "arena/career/shootOutStats/assists": "Kill asssists", "arena/career/shootOutStats/avgKillsPerMatch": "Average kills per tournament", "arena/career/shootOutStats/avgLifeTime": "Average life time", "arena/career/shootOutStats/bestMatchKillStreak": "Highest tournament kill streak", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "Win rate, %", "arena/career/teamFightStats/wins": "Victories", "arena/career/teamFightStats/winsWithFavPreset": "Matches won with favorite preset", - "arena/customGames/create/samePresets": "Duplicate presets:", - "arena/customGames/create/setSamePresets": "Allow duplicate presets", "arena/customGames/invite/message{0}": "CUSTOM GAME INVITE FROM {0}", "arena/customGames/notify/GameRemoved": "Room has been disbanded", "arena/customgames/errors/notification/gamealreadystarted": "Game has already started", @@ -15657,7 +15549,7 @@ "arena/info/Matches": "MATCHES", "arena/info/Rank": "RANK", "arena/info/Rate": "ARP", - "arena/info/Rating": "レーティング #", + "arena/info/Rating": "RATING #", "arena/info/Rubles": "ROUBLES", "arena/info/Total GLP": "TOTAL ARP", "arena/info/Win Matches": "MATCHES WON", @@ -15702,13 +15594,12 @@ "arena/tab/COLLECTION": "COLLECTION", "arena/tab/FAVORITES": "FAVORITES", "arena/tab/MARKSMAN": "MARKSMAN", - "arena/tab/RATING": "レーティング", + "arena/tab/RATING": "RATING", "arena/tab/SCOUT": "SCOUT", "arena/tab/SQB": "CQB", "arena/tooltip/OverallMatches": "Total number of ranked and unranked matches played.", "arena/tooltip/Presets": "Presets", "arena/tooltip/countGlp": "Your total ARP (Arena Reputation Points) rating. This is a statistic that determines your rating obtained in ranked game modes. It is used to match with players of equal skill, as well as to unlock new ranks and presets.", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", "arena/tooltip/friends": "Friends", "arena/tooltip/kdRatio": "Your overall Kill to Death ratio, calculated from all kills and deaths in ranked and unranked matches. Only the player kills are counted.", "arena/tooltip/leftGlp": "Amount of ARP rating required to reach the next rank.", @@ -15716,7 +15607,6 @@ "arena/tooltip/moneyRubles": "Roubles. Used to buy presets and are earned for victories in the Arena.", "arena/tooltip/ratingPlace": "Your position in the leaderboard.", "arena/tooltip/settings": "Settings", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", "arena/tooltip/sourcesGlp": "Earned ARP sources:", "arena/tooltip/winMatches": "Total number of wins in ranked and unranked matches.", "arena/tooltip/winRate": "Your overall win ratio, calculated from all wins and losses in ranked and unranked matches.", @@ -15737,7 +15627,7 @@ "btr_generic_greetings_01": "You here for a chat, or are we going somewhere?", "btr_generic_greetings_02": "You bit your tongue? Tell me what's up.", "btr_generic_greetings_03": "Come on in, have a seat. Need a ride?", - "btr_generic_greetings_04": "Don't just sit there silently, you're creeping me out. You need a ride somewhere?", + "btr_generic_greetings_04": "Don't just stand there. You need a ride somewhere?", "buffer_zone_timer": "Lightkeeperの訪問時間は限られている", "burst": "バースト", "camora_000": "薬室 1", @@ -16376,8 +16266,8 @@ "semiauto": "セミオート", "shootingrange": "射撃場", "shotgunKills": "ショットガンキル", - "shoulder_l": "LFT. SHOULDER", - "shoulder_r": "RGT. SHOULDER", + "shoulder_l": "RGT. SHOULDER", + "shoulder_r": "LFT. SHOULDER", "single": "単発", "sk": "Slovenský", "slow": "遅い", @@ -16450,8 +16340,6 @@ "{0} GroupPlayerBlocking/MatchLeave": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for quitting a game", "{0} GroupPlayerBlocking/NotAcceptedMatch": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for failing to accept a match", "{0} GroupPlayerBlocking/TeamKill": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for repeated teamkills", - "{0} Violation/IntentionalTeamDamage/Blocking": "Player {0} has been removed from the match and received a penalty for shooting teammates", - "{0} Violation/IntentionalTeamKill/Blocking": "Player {0} has been removed from the match and received a penalty for teamkilling at round start", "{0} Violation/TeamKill/Blocking": "Player {0} has been removed from the match and received a penalty for teamkilling", "{0} added you to the ignore list": "{0} はあなたを無視リストに加えました", "{0} ask to cooperate": "{0} が挨拶した", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "Ground Zero", "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "United Security", "5464e0404bdc2d2a708b4567 Description": "USEC は KerniSEC と Safe Sea の企業合併によって1999年に誕生した民間軍事会社だ。2004年に Terra Group インターナショナル・ホールディングスの代理人と接触した後は事実上、彼らの私兵部隊となった。現在では世界各国に拠点を持っており7500人を超えるスタッフを有している。", "5464e0454bdc2d06708b4567 Name": "BEAR", @@ -17354,7 +17240,7 @@ "657faa0687e11c61f70bfae5": "", "657faa32e65c0122b70ffdc1": "", "5936d90786f7742b1420ba5b name": "Debut", - "5936d90786f7742b1420ba5b description": "Hello there, soldier. I got a job that's a little too easy for my guys. But you'll do fine. Hey, don't get pissy, I don't know you that well yet to give you a normal job!\n\nThere's a lot of bandit scum roaming the streets. They don't bother me much, but they're still a nuisance. Calm down, say, five of them, and get a couple of MP-133 shotguns off them. I think that'll be enough for you. Dismissed, soldier!", + "5936d90786f7742b1420ba5b description": "よお、兵士よ。何を探してるんだ……現金か?品物か?……ああ、仕事が欲しいのか。もちろんだ、そっちの斡旋もしてやれる。まあ、お前さんの正体と使い物になるか分かったらの話だがな。初対面でけちを付けたくはないが、どこの馬の骨かも分からん奴に重要な仕事を任せられんだろう。実際どれだけ出来るのか見せてくれ。そうすれば相応の金も払うし、品にも値段にも色を付けてやる。まあ、言いたいことは分かるよな。至極真っ当な話だろう?……よし、それじゃあ課題の内容を言おう。街中で大手を振るって歩き回っている \"ごろつき\" どもがいる。我々は奴らを \"Scav\" と呼んでいるんだが、そいつらを5人ばかり始末して MP-133 ショットガン を2丁奪ってきてくれ。……これがお前さんのデビュー戦というわけだな。さあ、兵士よ、仕事に取り掛かれ!話は終わりだ。", "5936d90786f7742b1420ba5b failMessageText": "", "5936d90786f7742b1420ba5b successMessageText": "それで、仕事は終わったのか。良くやった。大方、ショットガンは他の商人から安く買ったんだろう、なあ?……まあ、なんにせよ、まだ使えるなら構わんさ。お前さんがしくじるまでは手を取り合ってやっていこうじゃないか。", "5967379186f77463860dadd6": "タルコフ市内のいずれかで Scav を殺す", @@ -17362,10 +17248,10 @@ "5936d90786f7742b1420ba5b acceptPlayerMessage": "", "5936d90786f7742b1420ba5b declinePlayerMessage": "", "5936d90786f7742b1420ba5b completePlayerMessage": "", - "5936da9e86f7742d65037edf name": "Background Check", - "5936da9e86f7742d65037edf description": "How's it going, warrior? I have an errand for you. My comrade Arseny worked at the factory as a tanker driver. His family left during the evacuation while he stayed behind to make some extra money, and perished here. He lived in a three-story dormitory near Polikhim, I don't remember the room.\n\nAnyway, he had a chain watch, a family heirloom. Bragged about it to everyone. Find that watch and bring it to me, I want to send it to his kid. I want the kid to have something to remember his old man by. The watch must be either in his room or in the tanker truck somewhere at the construction site. Arseny always kept the keys in his jacket. Anyway, do the job. So long!", + "5936da9e86f7742d65037edf name": "Checking", + "5936da9e86f7742d65037edf description": "調子はどうだ、兵士よ。まだくたばっちゃいないか?そりゃあ良かった。……頼みたいことがあってな。お前さんがこれをやり遂げてくれるなら、信頼というやつについて、もっと話もできるんだが、興味はあるか?……よし、これを見てくれ。俺の仲間に工場でタンクローリーを運転していた奴がいてな。……奴は紛争の前になんとか家族を逃がすことはできたんだが、残りの荷物を取りに行ったまま、とうとう戻ってはこなかった。でかい方の寮に住んでいたんだがな……部屋の番号は覚えていない。一度だけ行ったことはあるが、その時は立ち上がれんほど飲んでいたからな。 確か壁に若い女のポスターが貼ってあったはずだが……あとは思い出せんな。……要点を言うと、あいつはチェーンのついた古いブロンズ製の懐中時計を持っていたんだ。家宝だとか言っていた。誰かに盗られてなけりゃあ、まだ部屋の中か、タンクローリーに残っているだろう。奴の子供のためにそいつを取り戻してやりたいんだ。あの子には自分の親父は間抜けなんかじゃない、立派な男だったと覚えておいて欲しいからな。", "5936da9e86f7742d65037edf failMessageText": "", - "5936da9e86f7742d65037edf successMessageText": "You know what? I didn't think you'd find it. But big thanks to you regardless. This was, you might say, a personal matter. Anyway, here's the reward.", + "5936da9e86f7742d65037edf successMessageText": "本当に見つけてくれたのか!恩に着るぞ。これが最も価値ある品だとは言わんが、とにかく感謝している。今回のことは商売とは関係なく、なんというか個人的なことでな。……ああ、分かってると思うが、俺は筋を通す男だ。今後のためにも心に留めておいてくれ。", "5967920f86f77468d219d632": "懐中時計 を渡す", "5968ec9986f7741ddd6c1012": "Customs で チェーンの付いた青銅の懐中時計 を手に入れる", "5975de1f86f7744ca53b7c82": "タンクローリー の鍵を手に入れる", @@ -17428,7 +17314,7 @@ "596760e186f7741e11214d58 description": "こんにちは。Praporから話は聞いたわ。あなたが消えた手紙を探し出して私達の間を取り持ってくれるんでしょう!期待しているわ。", "596760e186f7741e11214d58 failMessageText": "", "596760e186f7741e11214d58 successMessageText": "あら、ありがとう! Praporがあなたに信頼を寄せているのも頷けるわね。", - "5968975586f7740e7266d974": "Hand over the letter from Prapor's messenger", + "5968975586f7740e7266d974": "Hand over the letter from the messenger to Therapist", "596760e186f7741e11214d58 acceptPlayerMessage": "", "596760e186f7741e11214d58 declinePlayerMessage": "", "596760e186f7741e11214d58 completePlayerMessage": "", @@ -17444,9 +17330,9 @@ "5967725e86f774601a446662 declinePlayerMessage": "", "5967725e86f774601a446662 completePlayerMessage": "", "5967733e86f774602332fc84 name": "Shortage", - "5967733e86f774602332fc84 description": "Hello, mercenary. Are you interested in a little part-time work? It's not a difficult task, but it's quite lucrative. Don't forget, you can get both food and drink from me, as well as expert medical care. But first, let's talk about the job.\n\nI require three emergency medical kits. They're called Salewa - the red western ones. I need you to obtain them yourself, not buy them off someone else. Just to prove that we're serious about this. We may know each other, but not enough for me to trust you yet. Are you up for the job?", + "5967733e86f774602332fc84 description": "こんにちは、傭兵さん。ひょっとして仕事を探しているの?それは良かった。あなたは気骨もありそうだし、短絡的な行動をするタイプにも見えないから仕事を任せても良いわ。そうね、私は人が生きていくために必要な物を揃えられる。食料、水……それから、何よりも重要なのは、高度な医療支援ができるってことよ。例えあなたが死にかけだったとしても、私なら救えるでしょうね。それにもしあなたが私のビジネスに協力を惜しまない \"お得意様\" になってくれるなら、特別な商品やサービスも優遇した条件で提供するわよ。でも、それは将来の話。まずは、あなたが信頼に値する人物だと証明してほしい。とりあえずは簡単な仕事をお願いするわ。今は救急医療用のキットが不足してるの。Salewa と呼ばれている赤い医療用品のセットなんだけど知っているかしら?それを手に入れてきて。ただし、あなたの実力が分かるように、他人から購入したものじゃなく、あなた自身が手に入れたものを持ってきてちょうだい。頼れる人との仕事なら、いつだって歓迎するわよ。", "5967733e86f774602332fc84 failMessageText": "", - "5967733e86f774602332fc84 successMessageText": "Thank you, young man. The first aid kits will be put to good use. I won't tell you any more than that, though.", + "5967733e86f774602332fc84 successMessageText": "ありがとう、傭兵さん。なぜこれが必要なのかは言えないけれど、少なくとも自分の利益の為じゃない。信じてちょうだい。", "59689eb886f7740d137ebfc3": "Salewa を渡す", "5968edc086f77420d2328014": "Salewa ファーストエイドキット をレイド中に見つける", "6394af80e2cb1e6963235128": "Salewa を渡す", @@ -17553,7 +17439,7 @@ "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", "596b36c586f77450d6045ad2 name": "Supplier", - "596b36c586f77450d6045ad2 description": "What'chu want, merc? A job? Ha! Looking for a good net salary and a full social package? Alright then, I'll give you a job. \n\nI still barely know you, so let's see what you can do. I'll give you this: find me a white body armor, the one that looks like paper, and one Toz shotty. Gonna gear up my guys a little. But make sure to get the fresh ones, got it? Don't need no haggler shit.\n\nSo anyway, if you do fine, we can talk further about your employment, mister \"operator\".", + "596b36c586f77450d6045ad2 description": "誰だてめえは、傭兵か?何しにきやがった?……仕事だぁ!?ハッ!真っ当な給料と社会保障も付いた \"お仕事\" がここで見つかるとでも思ったか?仕事を探してる?笑わせるな!てめえのツラを見れば大した仕事なんざ出来ねえことくらい分かるんだよ!……いいか、それなら、紙っぺらみてえな白いボディアーマーとTOZのショーティをひとつずつ持って来い。うちのヤツらにくれてやる装備だ。分かってんのか?ちゃんと新品を持って来いよ。俺を誤魔化せると思うな。ともかくだ、それができたらお前を雇う話を進めようじゃねえか。なあ、\"オペレーター\" さんよ。", "596b36c586f77450d6045ad2 failMessageText": "……で、この馬鹿は仕事が欲しいんだとよ!クソの役にも立たねえ無能と手を組めるわけがねえだろう。さっさと失せろ。", "596b36c586f77450d6045ad2 successMessageText": "いいだろう、取引を続けようじゃねえか。これが報酬だ。お前のことは覚えたから、たまにはツラを出せ。ここには常に仕事が舞い込んでくるが、近ごろは人の賞味期限も切れるのが早くてな。", "597867e986f7741b265c6bd3": "レイド中に見つけた BNTI Module-3M ボディアーマー を渡す", @@ -17696,7 +17582,7 @@ "59c50c8886f7745fed3193bf failMessageText": "", "59c50c8886f7745fed3193bf successMessageText": "Nailed it, huh? Nice, grab your reward. I bet it's not the last job from my comrades, they really got interested in your Scav extermination.", "59c50f1686f77412ef2c01e7": "Hand over the half-masks", - "59624d5386f77446b872d5f7": "Eliminate Scavs while using a suppressed weapon on Reserve", + "59624d5386f77446b872d5f7": "Eliminate Scavs while using a suppressed weapon on Shoreline", "5ca5e54186f774456930b9a3": "Find Lower half-masks in raid", "5cb5e2ff86f7746ef64c979b": "Find Lower half-masks in raid", "59c50c8886f7745fed3193bf acceptPlayerMessage": "", @@ -17746,9 +17632,9 @@ "59ca264786f77445a80ed044 description": "Hey, your last Scav cutting was off the chain! People keep coming and asking what the heck is going on. Turns out that my friends somehow negotiated with the local authorities - what’s left of them anyway - to set up some kind of mercenary fights, like gladiator battles. Can you imagine that? We just keep falling back to the Middle Ages with all this shit! In short, for them you are, what’s it called... a game tester, sort of. Whatever they are coming up with, they reevaluate and adjust it according to your actions. Long story short, I don’t really understand shit, but they suggest we continue. This time you will have a way more serious enemy, they want you to decimate PMCs, but you should be kinda disguised as a Scav, so cover your face with a balaclava and put on their jacket, at least. And also, you are supposed to scare off the real Scavs - using a 12 gauge shotgun. It's almost as if they want to start WW3. Stirring shit up and making others turn on each other... Are you in?", "59ca264786f77445a80ed044 failMessageText": "", "59ca264786f77445a80ed044 successMessageText": "Mighty wicked, warrior. Grab your reward. Come back later, my friends have got some more work for you.", - "59ca27f786f77445aa0ddc14": "Eliminate PMC operatives while wearing a balaclava and Scav vest on Lighthouse", - "59674d5986f77446b872d5f7": "Eliminate Scavs while using a 12ga shotgun on Lighthouse", - "59ca293c86f91445a80ed047": "Find Bars A-2607 95Kh18 knives in raid", + "59ca27f786f77445aa0ddc14": "Eliminate PMC operatives while wearing a balaclava (any type) and Scav vest on Shoreline", + "59674d5986f77446b872d5f7": "Eliminate Scavs while using a 12ga shotgun on Woods", + "59ca293c86f91445a80ed047": "Find Bars A-2607 95H18 knives in raid", "59ca29ab86f77445ab431c86": "Hand over the knives", "59ca264786f77445a80ed044 acceptPlayerMessage": "", "59ca264786f77445a80ed044 declinePlayerMessage": "", @@ -18024,11 +17910,11 @@ "5a27bc8586f7741b543d8ea4 description": "Hello, my dear friend, it looks like we are really close to an interesting deal. On that drive, we’ve discovered a partial blueprint of a missile engine that will be exceptionally interesting to the West, because it's deployed on the Typhoon class submarines -- which supposedly are not functional anymore. Also, there has been quite a detailed file on a sailor who served in the Baltic Fleet, a real salty dog, who is now in Tarkov somewhere, and it looks like he has connections to the Navy command. He’s the one we need to get. According to my intel, he sometimes secretly deals with the Scavs, and getting to him won’t be easy. You’ll have to work discreetly, from an ambush. There is only one chance of success, and it is very important not to fail and not to lose such a tidbit for our interests, my friend. My hands are even shaking a bit as we speak, you have no idea how important this is, and missing the shot is not an option. You're a great fighter, but I want to be sure that you are also good at covert operations. I need a sniper, and an experienced one, so come back when you’re ready.", "5a27bc8586f7741b543d8ea4 failMessageText": "", "5a27bc8586f7741b543d8ea4 successMessageText": "With all due respect, didn't believe that you’ll manage, mercenary. It seems you’re the \"sharpshooter\" for me now. I'll contact you when needed.", - "5a28235e86f7741da250b438": "Reach the required Bolt-action Rifles skill level", + "5a28235e86f7741da250b438": "Reach the required Sniper Rifles skill level", "5a27bc8586f7741b543d8ea4 acceptPlayerMessage": "", "5a27bc8586f7741b543d8ea4 declinePlayerMessage": "", "5a27bc8586f7741b543d8ea4 completePlayerMessage": "", - "5a27c99a86f7747d2c6bdd8e name": "西側の友人 - パート 1", + "5a27c99a86f7747d2c6bdd8e name": "Friend from the West - Part 1", "5a27c99a86f7747d2c6bdd8e description": "ああ、お前か。本気で \"ビジネス\" をする覚悟があるのか?……そうかそうか、まったく恐ろしいヤツだよなあ、お前は。俺よりよほど裏の仕事に向いてるんじゃねえか?ハハッ……それじゃあ、手短に話すが、ここ最近は他所から来る \"お客さん\" たちがうっとうしくてな……どこにでも手を出してくるし、人の部下を好き放題殺しやがって。気に食わねえ。ヤツらを血祭りに上げてくれるなら、それに見合った金を出そう。", "5a27c99a86f7747d2c6bdd8e failMessageText": "", "5a27c99a86f7747d2c6bdd8e successMessageText": "いい仕事だな、ランボー。報酬を受け取れ。そうそう、お前がヤッた中には大物もいたらしいな。ヤツらクソ漏らしただろうよ。\n", @@ -18081,7 +17967,7 @@ "5a68665c86f774255929b4c7 description": "While you were searching the room, have you found anything unusual? Two bodies? Such an atrocity... It can’t be just a coincidence. No wonder, though, the documents that you’ve managed to find are dedicated to some serious research in the field of Immunology, and from what we can understand, they have made some significant progress in that direction. Judging by the signature on the documents, the research was supervised by the head of the Medical Service of the health resort. Quite an elderly person, I’ve met him a couple of times on Health Care Worker Day. Although he was a venerable scholar he preferred the repose of the countryside over the bustle of laboratories and often spent time in the Woods, driving around in a white minivan. Witnessing the success, I believe, could have motivated him to start experimenting on humans, the first one most likely being himself, according to medical tradition. Scientists are always like that. Find his vehicle, and, if you also happen to find his blood samples, that would be great.", "5a68665c86f774255929b4c7 failMessageText": "", "5a68665c86f774255929b4c7 successMessageText": "It pains me to think we’re following the blood trail here, but I’m sending it for analysis anyway. Thank you for your work.", - "5a68770f86f774747d4b0d8b": "Locate the van of the Health Resort medical services director on Woods", + "5a68770f86f774747d4b0d8b": "Locate the van that belonged to the head of the health resort Medical Services", "5a68776786f774759f1f55f6": "Take a sample of the blood", "5a68777586f774747d4b0d9e": "Hand over the blood sample", "5a68778c86f77423391f38f0": "Survive and extract from the location", @@ -18259,7 +18145,7 @@ "5ac346e886f7741d6118b99b description": "I've been thinking about that thing we discussed last time. Have people really become kinder with the development of civilization? Do they really go hand in hand? All this time, where we believe there is civilization, life has become more comfortable, easier. There were increasingly fewer worries about safety or getting something to eat. It's easy to be humane when nothing is threatening you. The answer to these questions was right before my eyes. The situation in Tarkov has shown us how much kinder we have become. Once the issues of survival came to the front, it turned out that decent people aren’t more common than maybe 500 years ago. There're probably even fewer of them now. What do you think, are you one of them? Okay, don’t overthink it. I need you to do something for me. However, you will need to remember quite a lot for this job. Practice memorizing large volumes of information, I’ll contact you later.", "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "Seventh digit after the decimal separator in the pi number? IIO? Okay, when the time comes, I'll contact you.", - "5ac5eb3286f7746e7a509a09": "Reach the required Attention skill level", + "5ac5eb3286f7746e7a509a09": "Reach the required Memory skill level", "5acf3b9986f77418403493b5": "", "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", @@ -18461,13 +18347,13 @@ "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", "5ae4496986f774459e77beb6 name": "Sew it Good - Part 3", - "5ae4496986f774459e77beb6 description": "Oh, brother, I’d be neck-deep in work without you. I'm doing it all so the city keeps on living, mind you, that’s why I do all the moves. Alright, I'll tell you about my secret affair, since it has been going so smoothly so far. I’m thinking of setting up garment manufacture, to sew and sell vests, holsters, armor. As in the best fashion houses in Europe, haha. This time I need to understand what exactly is inside the 6B13 armor, the green one, it's also heavy as shit, you probably know. I want to figure out how it breaks down, and what it’s based on. Just like the last time, bring me a couple of those, one totaled, and one a bit more pristine.", + "5ae4496986f774459e77beb6 description": "Oh, brother, I’d be neck-deep in work without you. I'm doing it all so the city keeps on living, mind you, that’s why I do all the moves. Alright, I'll tell you about my secret affair, since it has been going so smoothly so far. I’m thinking of setting up garment manufacture, to sew and sell vests, holsters, armor. As in the best fashion houses in Europe, haha. This time I need to understand what exactly is inside the 6B43 armor, the green one, it's also heavy as shit, you probably know. I want to figure out how it breaks down, and what it’s based on. Just like the last time, bring me a couple of those, one totaled, and one a bit more pristine.", "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Oh, you got them? Give 'em here, let's have a look. Whoa, why the fuck are they so heavy?! Alright, I'll check them later. Here, take this for the help.", - "5ae9bb6986f77415a869b40b": "Find a 6B13 assault armor in 0-50% durability in raid", - "5ae9bc6e86f7746e0026222c": "Hand over the found in raid 6B13 assault armor in 0-50% durability", - "5ae9be7f86f7746c6337153d": "Find a 6B13 assault armor in 50-100% durability in raid", - "5ae9bea886f77468ab400e64": "Hand over the found in raid 6B13 assault armor in 50-100% durability", + "5ae9bb6986f77415a869b40b": "Obtain 6B43 6A Zabralo-Sh body armor in 0-50% durability", + "5ae9bc6e86f7746e0026222c": "Hand over the armor", + "5ae9be7f86f7746c6337153d": "Obtain 6B43 6A Zabralo-Sh body armor in 50-100% durability", + "5ae9bea886f77468ab400e64": "Hand over the armor", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -18572,7 +18458,7 @@ "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", "5b477b6f86f7747290681823 name": "Gunsmith - Part 18", - "5b477b6f86f7747290681823 description": "I want to try teaching Lusya to tell if someone's lying, if the result will be at least 90% accurate, it will be interesting to listen to all those politicians and TerraGroup whales, who’ve been expatiating upon their ideals and noble goals just yesterday, assured of the benefits of our economic zone and a bright future ahead. How much of this was a concentrated lie? I think, all of it. There’s a request for a Magpul edition AKMN. I.e. the handguard, stock, and pistol grip have to be Magpul. All in black. Additionally, a Rotor 43 muzzle brake, black Magpul M-LOK AFG Tactical grip, and EOTech HHS-1 hybrid sight. Recoil sum lower than 350, ergonomics above 50, and weight of 5 kg or less with sighting range of 500.", + "5b477b6f86f7747290681823 description": "I want to try teaching Lusya to tell if someone's lying, if the result will be at least 90% accurate, it will be interesting to listen to all those politicians and TerraGroup whales, who’ve been expatiating upon their ideals and noble goals just yesterday, assured of the benefits of our economic zone and a bright future ahead. How much of this was a concentrated lie? I think, all of it. There’s a request for a Magpul edition AKMN. I.e. the handguard, stock, and pistol grip have to be Magpul. All in black. Additionally, a Rotor 43 muzzle brake and Magpul M-LOK AFG Tactical grip (Black) and EOTech HHS-1 hybrid sight, recoil sum lower than 350, ergonomics above 50, and weight of 5 kg or less with sighting range of 500.", "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Thanks, leave them somewhere here. I’m a bit busy right now, catch you later.", "5b477f1486f7743009493232": "Modify an AKMN to comply with the given specifications", @@ -18762,7 +18648,7 @@ "5bc480a686f7741af0342e29 description": "It's good that you're alive, tasks from Sniper are not easy. Let's wait for a little before the next test. There is going to be a lot more complicated sniper work from now on, so my advice is that you master your bolt-action rifle handling skills some more. Come back when you're ready.\n", "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "Ready? Then let’s get to work. Sniper took a big interest in you.", - "5bc4813886f774226045cb9a": "Eliminate PMC operatives from over 80 meters away while using a bolt-action rifle", + "5bc4813886f774226045cb9a": "Reach the required Sniper Rifles skill level", "5bdabf3386f7743e171249ae": "", "655c858c677faf40024130d7": "Kill PMCs using bolt rifles from a distance of at least 80m", "657b0567ec71635f16471dd2": "Eliminate PMC operatives from over 80 meters away while using a bolt-action rifle", @@ -18802,7 +18688,7 @@ "5bc4893c86f774626f5ebf3e successMessageText": "It seems that sometimes being smart isn’t enough to act smart. Well, a good old bolty can be of help with this. Sniper is silent for now, so let's wait for a little before your next tasks. I will let you know when there are new tests for you.", "5bc48aed86f77452c947ce67": "1回も死なずにボルトアクションライフルを使用してヘッドショットで PMC オペレーターを殺す", "5bdabf7186f7743e152e867d": "", - "64b6a5a525251516d7685428": "You cannot die or leave the raid until the quest is handed over to the customer (Status: Killed, Ran through, MIA)", + "64b6a5a525251516d7685428": "You must not die or leave the raid while the task is active (Status: KIA, Left the Action, MIA)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", "5bc4893c86f774626f5ebf3e completePlayerMessage": "", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "Lighthouse でボルトアクションライフルを使用してヘッドショットで PMC オペレーターを殺す ", "63aec6f256503c322a190374": "Streets of Tarkov でボルトアクションライフルを使用してヘッドショットで PMC オペレーターを殺す", "64b694c8a857ea477002a408": "Interchange でボルトアクションライフルを使用してヘッドショットで PMC オペレーターを殺す", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18882,7 +18767,7 @@ "5c0be13186f7746f016734aa description": "Greetings, mercenary. I've heard you're trying to become a sniper. Being in sniper business surely takes tenacity, patience, and a sense of purpose, but there are a lot of other important factors too. You know what Dima told me once? \"Everyone can shoot, but only a few can become real Snipers\".", "5c0be13186f7746f016734aa failMessageText": "経験豊富なスナイパーは、そのように自分の正体を晒すことはない。息を整えて、もう一度やってみよう。", "5c0be13186f7746f016734aa successMessageText": "Frankly speaking, i wasn't sure you could do it. But it sure seems that you're no regular pleb.", - "5c0be2b486f7747bcb347d58": "Reach the required Bolt-action Rifles skill level", + "5c0be2b486f7747bcb347d58": "Reach the required Sniper Rifles skill level", "5c1fb5f086f7744a184fb3c5": "", "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "1回も死なずにボルトアクションライフルを使用して PMC オペレーターを殺す", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Streets of Tarkov", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "Survive and extract from Reserve with the \"Survived\" exit status", "629f08e7d285f377953b2af1": "Survive and extract from Lighthouse with the \"Survived\" exit status", "63aec66556503c322a190372": "Survive and extract from Streets of Tarkov with the \"Survived\" exit status", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Reach level 4 loyalty with Therapist", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -19228,7 +19109,7 @@ "5d24b81486f77439c92d6ba8 failMessageText": "", "5d24b81486f77439c92d6ba8 successMessageText": "すまんな。今となっては食料の調達もままならんというのに、食わねば生きてはいけないのだから難儀なものだ。では、時間のあるときに改めて仕事の話をしよう。たまには顔を見せてくれよ、若人よ。", "5d24ba7886f77439c92d6baa": "レイド中に Iskra レーションパック を見つける", - "5d24bb4886f77439c92d6bad": "レイド中に インスタント ヌードル を見つける", + "5d24bb4886f77439c92d6bad": "レイド中に エメリャ ライ麦クルトン を見つける", "5d24bb7286f7741f7956be74": "レイド中に ビーフシチューの缶詰 (大) を見つける", "5d76276186f774454c5360bc": "", "5d77d51c86f7742fa65b6608": "", @@ -19481,7 +19362,7 @@ "5d25e4ad86f77443e625e387 failMessageText": "", "5d25e4ad86f77443e625e387 successMessageText": "There's no way you actually found it! Thank you so much! Wait. Here, take this. A few days ago I've picked up a badly wounded USEC in the forest. I bandaged him up, but the poor fella didn't make it. Before dying, he gave me a key, looks like it is from one of his stashes somewhere in the Health Resort area. I don't need it, but you might find it useful.", "5d27522686f774304e316405": "Hand over the photo album", - "5d357e0e86f7745b3f307c56": "Locate Jaeger's Health Resort room with a view of the bay on Shoreline", + "5d357e0e86f7745b3f307c56": "Locate Jaeger's room with a view of a bay in the Health Resort", "5d357e8786f7745b5e66a51a": "Obtain Jaeger's photo album", "5d778e6c86f77461b27a235d": "", "5d778e7c86f7742fa901bc7c": "", @@ -19904,7 +19785,7 @@ "5edab736cc183c769d778bc2 description": "Good afternoon. It is obvious that in the current difficult situation, everyone who has medical knowledge is worth gold, not to mention actual working doctors. And it looks like such a doctor has appeared. I was told that someone on the Shoreline is treating the locals and selling them medicine. I have hired several groups to go there. They had to find this doctor, enter into negotiations and offer the best terms. But today, none of the groups got in touch. We need these medications, I've got clients... ahem, people in need to worry about. Find my people and find out what happened.", "5edab736cc183c769d778bc2 failMessageText": "", "5edab736cc183c769d778bc2 successMessageText": "All three groups wiped out? I don't understand how this could happen. They were not supposed to attract attention and get involved in a fight. They were negotiators with a very lucrative trade offer. Looks like the negotiations went horribly wrong.", - "5edab7d3cc183c769d778bc5": "Locate the group that was sent to the Health Resort on Shoreline", + "5edab7d3cc183c769d778bc5": "Locate the group that was sent to the Health Resort", "5edab8890880da21347b3826": "埠頭に派遣されたグループを探す", "5edab8e216d985118871ba18": "コテージに派遣されたグループを探す", "5edababacecc0069284c0ec7": "", @@ -19919,9 +19800,9 @@ "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "Did you bring the tools? Put them in that box, I will need to clean them properly, it is unclear where they have been before. You can clearly see he is in a difficult situation, everything is covered in blood, clearly unsanitary conditions. Well, that's my business now. I'll give Sanitar his tools back along with the letter through the one local we bribed so that he understands what we want from him.", "5edabacabcf60e4a143cb29f": "", - "5edabb0b0c502106f869bc03": "Locate and obtain Sanitar's surgery kit marked with a blue symbol on Shoreline", + "5edabb0b0c502106f869bc03": "Obtain Sanitar's surgery kit marked with a blue symbol", "5edabb950c502106f869bc04": "Hand over Sanitar's surgery kit", - "5edabbff0880da21347b382b": "Locate and obtain Sanitar's ophthalmoscope on Shoreline", + "5edabbff0880da21347b382b": "Obtain Sanitar's ophthalmoscope", "5edabc2ca0055865214cb5a6": "Hand over Sanitar's ophthalmoscope", "5edaba7c0c502106f869bc02 acceptPlayerMessage": "", "5edaba7c0c502106f869bc02 declinePlayerMessage": "", @@ -20314,13 +20195,11 @@ "60ec2b04bc9a8b34cd453b81": "You must not die or leave the raid while the task is active (Status: KIA, Left the Action, MIA, Ran Through)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", "60e71b9bbd90872cb85440f3 name": "Capturing Outposts", - "60e71b9bbd90872cb85440f3 description": "Hey there, warrior. Listen, I have a mission for you. The other day I was informed that PMCs have captured several Scav bases in the region, and they say there are tons of goods there. Can you help the old soldier? Kill those PMCs so that my dogs could grab the loot without any issues. There are three bases in total: the big fortified construction site building on Customs, the former EMERCOM medical unit in Priozersky forest, and the Azure Coast health resort. Clear the places out and let me know when it's done.", + "60e71b9bbd90872cb85440f3 description": "Hey there, warrior. Listen, I have a mission for you. The other day I was informed that PMCs have captured several Scav bases in the region, and they say there are tons of goods there. Can you help the old soldier? Kill those PMCs so that my dogs could grab the loot without any issues. There are three bases in total: the big fortified building on the construction site on Customs, the former EMERCOM medical unit on Woods, and the health resort on Shoreline. Clear the places out and let me know when it's done.", "60e71b9bbd90872cb85440f3 failMessageText": "", "60e71b9bbd90872cb85440f3 successMessageText": "All clear now? Good job, warrior. I'll send my guys to get the stuff then.", "60ec18b73b5f7d790a7ad034": "Eliminate PMC operatives at the Scav base on Customs", @@ -20526,7 +20405,7 @@ "6179ad0a6e9dd54ac275e3f2 description": "Hey there, kid, I have bad news. Word reached me that a bunch of scum had settled somewhere on the coast beyond the collapsed tunnel. They do whatever the hell they want, harass the whole territory - like a pack of wild wolves. And it's not even some local bandits, but your former work colleagues. As I understand it, when the whole conflict began, their main base was somewhere on the cape. Unlike you, these do not want to return home, but to plunder our land to the last, those bastards! Get rid of them and be careful, soldier.", "6179ad0a6e9dd54ac275e3f2 failMessageText": "", "6179ad0a6e9dd54ac275e3f2 successMessageText": "Finally, you're back! I've started to worry. Come, let me at least get you something to eat.", - "617bf1e1d93d977d2452051f": "Eliminate Rogues on Lighthouse", + "617bf1e1d93d977d2452051f": "Eliminate Rogue USEC operatives", "6179ad0a6e9dd54ac275e3f2 acceptPlayerMessage": "", "6179ad0a6e9dd54ac275e3f2 declinePlayerMessage": "", "6179ad0a6e9dd54ac275e3f2 completePlayerMessage": "", @@ -20641,7 +20520,7 @@ "6193850f60b34236ee0483de description": "Come here already. Alright, so along the entire coast of the cape, there is a road, you've probably seen it. My guys use this road to transport merchandise to and from me. Usually, they managed to avoid trouble or calm some particular morons down, but right now it's a damn rat nest there, probably found out about my convoys. They started attacking my guys with full power, can't get through them at all. Go there and lay those whack-jobs down, will you? I'll get something nice for you in return.", "6193850f60b34236ee0483de failMessageText": "", "6193850f60b34236ee0483de successMessageText": "Good shit, you fucked those morons up properly. Alright, mate, see ya.", - "6193dabd5f6468204470571f": "Eliminate Scavs along the shore and the main road on Lighthouse", + "6193dabd5f6468204470571f": "Eliminate Scavs along the main road on Lighthouse", "6193850f60b34236ee0483de acceptPlayerMessage": "", "6193850f60b34236ee0483de declinePlayerMessage": "", "6193850f60b34236ee0483de completePlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "Survive and extract from Streets of Tarkov through Primorsky Ave Taxi V-Ex", "6397a6942e519e69d2139b25": "Locate and mark the first Patrol-A armored vehicle with an MS2000 Marker on Streets of Tarkov", "6397a7ce706b793c7d6094c9": "Locate and mark the second Patrol-A armored vehicle with an MS2000 Marker on Streets of Tarkov", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "I managed to contact the drivers. This wasn't easy, but I did unearth something interesting.", @@ -21436,7 +21314,7 @@ "6396701b9113f06a7c3b2379 failMessageText": "", "6396701b9113f06a7c3b2379 successMessageText": "We've been watching you. My shooter gave the go-ahead. That's all for now. I'll let you know when the time comes.", "6397ac912e519e69d2139b26": "Eliminate Sniper Scavs from over 350 meters away", - "639a169e6cd47c525121a116": "Reach the required Bolt-action Rifles skill level", + "639a169e6cd47c525121a116": "Reach the required Sniper Rifles skill level", "6396701b9113f06a7c3b2379 acceptPlayerMessage": "", "6396701b9113f06a7c3b2379 declinePlayerMessage": "", "6396701b9113f06a7c3b2379 completePlayerMessage": "I'm a real psycho sniper now. So, what's next?", @@ -21465,12 +21343,12 @@ "639872fa9b4fb827b200d8e5 description": "Oh, hey. There's an unusual matter that has come up. I don't often get orders for pistols, but this is a special occasion. We need a SIG P226R, Stainless Elite Wooden grip, Stainless Elite slide, extended magazine and a flashlight. Ergonomics not below 80, recoil sum not above 610. A weapon for true enthusiasts.", "639872fa9b4fb827b200d8e5 failMessageText": "", "639872fa9b4fb827b200d8e5 successMessageText": "All set? Thanks for your help. Boy, I wish I had one of those in my collection...", - "6398776f93ae507d5858c3a8": "Modify a P226R to comply with the given specifications", + "6398776f93ae507d5858c3a8": "Modify an P226R to comply with the given specifications", "639872fa9b4fb827b200d8e5 acceptPlayerMessage": "", "639872fa9b4fb827b200d8e5 declinePlayerMessage": "", "639872fa9b4fb827b200d8e5 completePlayerMessage": "", "639872fc93ae507d5858c3a6 name": "Gunsmith - Part 11", - "639872fc93ae507d5858c3a6 description": "Perfect timing, friend. If you have time, help me out with some gun customization. A major customer has placed an order for a KRISS Vector 9x19 submachine gun. He wants it to be equipped with an Mk.5 Modular Rail mount, Tactical Dynamics Skeletonized Foregrip, some iron sights or a scope with at least 300 meter sighting range, magazine with at least 33 rounds, and a silencer. Ergonomics over 50 and recoil under 230. Thanks!", + "639872fc93ae507d5858c3a6 description": "Perfect timing, friend. If you have time, help me out with some gun customization. A major customer has placed an order for a KRISS Vector 9x19 submachine gun. He wants it to be equipped with an Mk.5 Modular Rail mount, Tactical Dynamics Skeletonized Foregrip, a scope of your choice, magazine with at least 33 rounds, and a silencer. Ergonomics over 50 and recoil under 230. Thanks!", "639872fc93ae507d5858c3a6 failMessageText": "", "639872fc93ae507d5858c3a6 successMessageText": "You know, I prefer forty-five personally, but a Vector is a Vector! What a beautiful beast.", "63987860c8f8cc12a47b02a6": "Modify a KRISS Vector 9x19 to comply with the given specifications", @@ -21478,7 +21356,7 @@ "639872fc93ae507d5858c3a6 declinePlayerMessage": "", "639872fc93ae507d5858c3a6 completePlayerMessage": "", "639872fe8871e1272b10ccf6 name": "Gunsmith - Part 14", - "639872fe8871e1272b10ccf6 description": "Hello. There is a new order for a Western HK 416A5 rifle. Requires tan-colored attachments: SureFire SOCOM556-RC2 silencer, Magpul RVG tactical grip, EOTech EXPS3 holographic sight, Magpul MOE pistol grip, Magpul UBR GEN2 stock, LA-5B/PEQ tactical module, and a mag with at least 30 round capacity. Ergonomics over 60, recoil sum under 300, weight 4 kilos or lower. Just like in Special Forces, right? Oh, and try to find a rifle that isn't thrashed, technical condition must be at least 80%.", + "639872fe8871e1272b10ccf6 description": "Hello. There is a new order for a Western HK 416A5 rifle. Requires tan-colored attachments: SureFire SOCOM556-RC2 silencer, Magpul RVG tactical grip, EOTech EXPS3 holographic sight, Magpul MOE pistol grip, Magpul UBR GEN2 stock and LA-5B/PEQ tactical module. Ergonomics over 60, recoil sum under 300, weight 4 kilos or lower. Just like in Special Forces, right? Oh, and try to find a rifle that isn't thrashed, technical condition must be at least 80%.", "639872fe8871e1272b10ccf6 failMessageText": "", "639872fe8871e1272b10ccf6 successMessageText": "A real door kicker blaster! Thank you for the help, mercenary.", "639879addecada40426d3449": "Modify an HK 416A5 to comply with the given specifications", @@ -21560,7 +21438,7 @@ "63a9ae24009ffc6a551631a5 description": "All right, soldier! Listen up! No bitching. You know I don't want to risk the lives of soldiers whose families are waiting for them at home. And I don't want to ruin the statistics. So it's up to you, desperate one. I need to clear out a gang or two of marauders for my records. So be choosy with your tools, all right? Come on, come on, you won't be left short. Move it!", "63a9ae24009ffc6a551631a5 failMessageText": "", "63a9ae24009ffc6a551631a5 successMessageText": "Is it done? Great. Motherland won't forget this. Now take your reward and fuck off. I have a lot of work to do.", - "63a9ae63da7999196148ba5c": "Eliminate any enemy from over 100 meters away while using AK-74 series weapons", + "63a9ae63da7999196148ba5c": "Eliminate any hostile from over 100 meters away while using AK-74 series weapons", "63a9ae24009ffc6a551631a5 acceptPlayerMessage": "", "63a9ae24009ffc6a551631a5 declinePlayerMessage": "", "63a9ae24009ffc6a551631a5 completePlayerMessage": "", @@ -21568,7 +21446,7 @@ "63a9b229813bba58a50c9ee5 description": "Hello mercenary! You know, the job of a peacekeeper is a very difficult one. Peacekeepers are expected to strike a strict balance between the warring parties, and often we find ourselves in the worst kinds of situations. In general, the UN is as interested in a speedy resolution of the conflict as the local authorities. But the local criminal elements are making it difficult. So my superiors require me to achieve new results in the fight against the looters. But how can I do it without casualties among the UN forces? Do you see where I'm going with this?", "63a9b229813bba58a50c9ee5 failMessageText": "", "63a9b229813bba58a50c9ee5 successMessageText": "You did it? Well done! It's all about the greater good!", - "63a9b229813bba58a50c9ee6": "Eliminate any enemy from over 100 meters away while using AR-15 platform weapons", + "63a9b229813bba58a50c9ee6": "Eliminate any hostile from over 100 meters away while using AR-15 platform weapons", "63a9b229813bba58a50c9ee5 acceptPlayerMessage": "", "63a9b229813bba58a50c9ee5 declinePlayerMessage": "", "63a9b229813bba58a50c9ee5 completePlayerMessage": "", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "Eliminate Scavs while using melee weapons on Interchange", "63a9b5b2813bba58a50c9eeb": "Eliminate Scavs while using melee weapons on Customs", "63a9b5f064b9631d9178276b": "Eliminate Scavs while using melee weapons on Reserve", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21691,8 +21568,8 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "One less scumbag to worry about. You did well, kid.", "64e7ba17220ee966bf425ecb": "Locate and eliminate Kaban", "64e7ba4a6393886f74119f3d": "Eliminate Kaban's guards at the car dealership on Streets of Tarkov", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", @@ -21850,7 +21727,7 @@ "64f6aafd67e11a7c6206e0d0 acceptPlayerMessage": "", "64f6aafd67e11a7c6206e0d0 declinePlayerMessage": "", "64f6aafd67e11a7c6206e0d0 completePlayerMessage": "", - "64f731ab83cfca080a361e42 name": "Pets Won't Need It - Part 1", + "64f731ab83cfca080a361e42 name": "Pets Won't Need It", "64f731ab83cfca080a361e42 description": "It is very problematic to find the right drugs in these difficult times. As you know, there are skilled professionals in the region who can find a good solution to seemingly unsuitable drugs. Please scout the local vet clinic, maybe there are still some drugs left, I don't think they will be useful to anyone anymore. Also, check the place of work of the local x-ray technician, I heard he was engaged in some experiments before the conflict.", "64f731ab83cfca080a361e42 failMessageText": "", "64f731ab83cfca080a361e42 successMessageText": "Thanks for your help, young man. It's a pity that practically everything has been looted, apparently they were ahead of us and the drugs have already been taken, but I know whose doing it was... Anyway, I'll send men to transport the leftovers.", diff --git a/project/assets/database/locales/global/kr.json b/project/assets/database/locales/global/kr.json index 0e213f8f..0bec016d 100644 --- a/project/assets/database/locales/global/kr.json +++ b/project/assets/database/locales/global/kr.json @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "A compact tactical Laser Aiming Module with a blue dot. Mounts on any Picatinny/Weaver rail for precise target acquisition. Manufactured by NcSTAR.", "5cd945d71388ce000a659dfb Name": "BEAR 기본 상의", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Combat shirt", "5cd946231388ce000d572fe3 Name": "BEAR 기본 하의", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "ASh-12 수직 손잡이 ", "5cda9bcfd7f00c0c0b53e900 ShortName": "ASh-12", "5cda9bcfd7f00c0c0b53e900 Description": "ASh-12 돌격소총용 수직 손잡이입니다.", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "USEC 기본 하의", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", "5cde9ec17d6c8b04723cf479 Name": "USEC 기본 상의", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Adik sweatpants", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", "5cdea42e7d6c8b0474535dad Name": "Adik tracksuit", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "M700 Magpul Pro 700 섀시 ", "5cdeac22d7f00c000f26168f ShortName": "Pro700", "5cdeac22d7f00c000f26168f Description": "Magpul에서 제작한 Pro 700은 Remington M700 저격소총용 경량의 인체공학 섀시입니다.", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "BEAR Black Lynx", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", "5d1f60ae86f7744bcc04998b Name": "BEAR contractor t-shirt", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "FSB Fast Response", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "BEAR Ghost Marksman", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "BEAR Summer Field", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "USEC Aggressor TAC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "USEC Softshell Flexion", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "USEC Woodland Infiltrator", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Combat shirt", "5d1f623886f7743014163027 Name": "USEC PCS MultiCam", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "USEC PCU Ironsight", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "FSB Urban Tact", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "BEAR Gorka Kobra", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "BEAR Gorka SSO", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "BEAR Striker Infil Ops", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "BEAR Summer Field", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "USEC Gen.2 Khyber", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "USEC Woodland Infiltrator", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "USEC Ranger Jeans", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "USEC Taclife Terrain", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "USEC TACRES", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "AR-10 Daniel Defense WAVE 7.62x51 제퇴기 ", "5d1f819086f7744b355c219b ShortName": "WAVE 762", "5d1f819086f7744b355c219b Description": "The Daniel Defense WAVE muzzle brake is designed to securely mount the Daniel Defense WAVE suppressor to the host firearm, but also functions effectively without it. It's manufactured from aerospace 17-4 PH stainless steel and had a salt bath nitride finish for minimal corrosion.", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "USEC Commando", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "An upper receiver for the SR-25 rifle, manufactured by Knight's Armament Company.", "5df8e5c886f7744a122d6834 Name": "BEAR Zaslon", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "Meteor", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "BEAR Oldschool", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "USEC TIER2", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "Sklon", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "The second generation of the CPC body armor designed by Crye Precision and adapted by Ars Arma for use by special forces of the Russian Federation. This modular body armor is based on a polymer corset that fits the body, which avoids the backlash of the body arm during active movement and also contributes to a more even distribution of weight. Made in the assault configuration of pouches and armor elements. Manufactured in Ars Arma.", "5e4bb08f86f774069619fbbc Name": "BEAR Telnik", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "USEC TIER2", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "BEAR TIGR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "USEC Commando", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "러시아 재킷", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "BEAR TIGR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "USEC Urban Responder", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "BEAR Zaslon", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "USEC Deep Recon", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Tactical pants", "5e9dcf5986f7746c417435b3 Name": "LBT-8005A 1일 배낭 ", "5e9dcf5986f7746c417435b3 ShortName": "1일 배낭", "5e9dcf5986f7746c417435b3 Description": "A simple and reliable 14-liter backpack in MultiCam Black camouflage. Manufactured by London Bridge Trading.", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "The Thunderbolt fixed chest rig, containing all the basic utility pouches you'd need. Manufactured by Direct Action.", "5f5f45df0bc58666c37e7832 Name": "BEAR G99", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "USEC Night Patrol", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "BEAR G99", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "USEC Urban Responder", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Scav Boot", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "BEAR SRVV", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "USEC TIER3", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": ".300 Blackout AP", "5fd20ff893a8961fc660a954 ShortName": "AP", "5fd20ff893a8961fc660a954 Description": "A .300 Blackout (7.62x35mm) AP cartridge loaded with an 8.4 gram armor-piercing bullet from a 7.62x51mm NATO M80A1 cartridge, composed of a steel penetrator tip over a copper alloy core with a copper semi-jacket in a brass case. Despite the bullet's own characteristics when used in a full-power cartridge, these are affected when transferred to an intermediate cartridge, however, the bullet continues to have capabilities to pierce basic and intermediate body ballistic protections, in addition to being able to cause substantial adverse effects on the target after impact. Its design also allows it to be used in STANAG 5.56x45mm NATO magazines without any issues.", "5fd3e77be504291efd0040ad Name": "USEC VEKTOR", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "BEAR Boreas", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "BEAR Grizzly", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "USEC Adaptive Combat", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "탈부착 불가능한 파우치에 단순한 나일론 베어링 시스템이 적용된 하네스입니다. 편의성을 희생하면서 생각보다 많은 양의 탄약을 들고 다닐 수 있게 해줍니다.", "6038b228af2e28262649af14 Name": "BEAR Rash Guard", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "USEC Sandstone", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", "6038b4b292ec1c3103795a0b Name": "LBT-6094A Slick 플레이트 캐리어 (Tan)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "A simple yet effective plate carrier by London Bridge Trading company. The most minimalistic design intended for use with chest rigs. Coyote Tan version.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "[TP-200 TNT brick (TP-200)]\nTP-200은 탄성파 탐사, 시추작업, 대형 시설 및 물품 폭파 그리고 특수 폭파 작전에 사용하기 위해 제작되었습니다.", "603d01a1b41c9b37c6592047 Name": "BEAR VOIN", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "USEC Sage Warrior", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Azimut SS \"Zhuk\" 체스트 하네스 (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Azimut", "6040dd4ddcf9592f401632d2 Description": "A simple nylon bearing system with non-removable pouches. Allows you to carry a fairly impressive amount of ammunition at the expense of convenience. SURPAT camouflage version.", @@ -8239,10 +8239,10 @@ "619b69037b9de8162902673e Description": "Designed for both the civilian market and military use. The CQR stock can be easily mounted in place of the standard attachment of the AK/AKM non-folding stock. Manufactured by Hera Arms.", "619b99ad604fcc392676806c Name": "BEAR Recon", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "USEC K4", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", "619bc61e86e01e16f839a999 Name": "\"Alpha\" 완장 ", "619bc61e86e01e16f839a999 ShortName": "Alpha", "619bc61e86e01e16f839a999 Description": "[\"Alpha\" armband]\n알파테스트때 부터 지금까지 계속 타르코프를 플레이하고 있는 베테랑들을 위한 완장입니다.", @@ -8275,10 +8275,10 @@ "619bdfd4c9546643a67df6fa Description": "[\"USEC\" armband]\n강인한 USEC 요원들을 위한 완장입니다.", "619bf75264927e572d0d5853 Name": "BEAR Sumrak", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "Military tube 군용 주름진 튜브 ", "619cbf476b8a1b37a54eebf8 ShortName": "군용 튜브", "619cbf476b8a1b37a54eebf8 Description": "A military-issued corrugated tube for ventilation systems of military equipment or air purification systems.", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "USEC Chameleon", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "BEAR VOLK", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "BEAR Coyote", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "USEC DesOps", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Death Knight mask", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "A unique mask of the commander of the Goons squad, former USEC operators who decided not to flee Tarkov, but to create their own order.", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "USEC Predator", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", "64f07f7726cfa02c506f8ac0 Name": "Journal", "64f07f7726cfa02c506f8ac0 ShortName": "Journal", "64f07f7726cfa02c506f8ac0 Description": "A journal of someone who really loves everything Soviet.", @@ -11920,7 +11920,7 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "USEC Defender", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "USEC BOSS Delta", "657f8e9824d2053bb360b51d ShortName": "USEC BOSS Delta", "657f8e9824d2053bb360b51d Description": "USEC BOSS Delta", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "BEAR URON", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "BEAR OPS MGS", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Tactical jacket", "657f925dada5fadd1f07a57a Name": "Hybrid composite materials", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "Dead civilian", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", " V-ex_light": "Road to Military Base V-Ex", " Voip/DisabledForOffline": "오프라인 모드에서는 VOIP 사용이 불가능합니다", " kg": "Kg", @@ -12085,25 +12070,23 @@ "4:3 - Not wide": "4:3 - 전체화면", "4x supersampling": "4x 슈퍼 샘플링", "5070Kills": "사살한 플레이어 수 (레벨 51 ~ 70)", - "65bd1875c443e7fffb006e83": "티어 1", - "65bd187e578fa4a9f503f003": "티어 2", - "65bd1882b7378d56ab0817c3": "티어 3", + "65bd1875c443e7fffb006e83": "Tier 1", + "65bd187e578fa4a9f503f003": "Tier 2", + "65bd1882b7378d56ab0817c3": "Tier 3", "7099Kills": "사살한 플레이어 수 (레벨 71 ~ 99)", "ELITE Level": "최대 레벨", "A LOT": "재고 많음", "ACCEPT": "수락", - "ACCESS KEYCARD NEEDED": "아이템이 필요합니다", + "ACCESS KEYCARD NEEDED": "REQUIRED ITEMS NEEDED", "ACCURACY": "정확도", "ACTION": "액션", "ACTIVE TASKS": "활성화된 임무", "ADD NOTE": "메모 추가", "ADD/EDIT CONTAINER TAG": "이름표 추가/수정", - "ADDTOFAVORITES": "프로필에 표시", + "ADDTOFAVORITES": "Display in profile", "AI amount": "AI 숫자", "AI difficulty": "AI 난이도", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "관통력", - "AMMO PROJECTILE COUNT": "발사체 개수", "ARMOR CLASS": "방탄 등급", "ARMOR POINTS": "장갑 내구도", "ARMOR TYPE": "장갑 종류", @@ -12146,12 +12129,11 @@ "AheadOfTimeEnding": "완료 시간", "Aim": "조준", "AimDrills": "조준 훈련", - "AimDrillsLevelingUpDescription": "The Aim Drills skill is improved by hitting enemies while aiming.", "AimMaster": "조준 숙련", "AimMasterDescription": "조준 숙련 스킬은 조준 속도를 상승시켜주고 조준 흔들림을 줄여줍니다.", - "AimMasterElite": "정조준 속도 [{0:0.#%}] 증가", - "AimMasterSpeed": "정조준 속도 [{0:0.#%}] 증가", - "AimMasterWiggle": "AimMasterWiggle [{0:0.#%}] 증가", + "AimMasterElite": "정조준 속도 [{0:0%}] 증가", + "AimMasterSpeed": "정조준 속도 [{0:0%}] 증가", + "AimMasterWiggle": "조준 숙련도 상승 [(+{0:0%})]", "Aiming deadzone:": "조준 데드존:", "AirFilteringUnit": "공기 정화 시설", "AirplaneDelayMessage": "도착할 때까지 기다려 주세요! 공역이 혼잡합니다", @@ -12169,8 +12151,8 @@ "Always show interface elements": "인터페이스 요소 항상 표시하기", "Ammo": "탄약", "Ammo ({0}) is not compatible. Need: {1}": "{0} 탄약은 이 총기에 맞지 않습니다. {1} 탄약이 필요합니다.", - "AnimBlindFireAbove": "머리 위로 총만 내밀기", - "AnimBlindFireRight": "오른쪽으로 총만 내밀기", + "AnimBlindFireAbove": "Overhead blind fire", + "AnimBlindFireRight": "Right side blind fire", "Anisotropic Filtering:": "이방성 필터링:", "AnisotropicFiltering/Disable": "끄기", "AnisotropicFiltering/Enable": "텍스쳐 마다", @@ -12180,7 +12162,7 @@ "Antidote": "해독제", "Applies": "원인", "Apply all": "모두 적용", - "ApplyMagPreset": "프리셋 불러오기", + "ApplyMagPreset": "Load from preset", "Approx.": "대략.", "Aquire specific single use keycard to proceed to infiltration": "침투하려면 특정 아이템이 필요합니다", "Are you sure you want to buy selected items for {0}?": "선택된 물품을 {0}에 구매하시겠습니까?", @@ -12217,13 +12199,13 @@ "Arena/CustomGames/Lobby/Take": "Take", "Arena/CustomGames/No servers found": "방을 찾지 못했습니다", "Arena/CustomGames/Observers": "관전", - "Arena/CustomGames/Popup/Enter to server": "서버 들어가기", + "Arena/CustomGames/Popup/Enter to server": "Entering the server", "Arena/CustomGames/Settings": "설정", "Arena/CustomGames/Settings/disable": "비활성화", "Arena/CustomGames/Settings/enable": "활성화", "Arena/CustomGames/create/enter name": "이름 입력", "Arena/CustomGames/create/enter password": "비밀번호 입력", - "Arena/CustomGames/errors/notification/AttemptsCountExceeded": "최대 시도 횟수에 도달했습니다", + "Arena/CustomGames/errors/notification/AttemptsCountExceeded": "Exceeded maximum attempt count", "Arena/CustomGames/errors/notification/GameNotFound": "게임을 찾지 못했습니다", "Arena/CustomGames/errors/notification/InvalidPassword": "비밀번호가 일치하지 않습니다", "Arena/CustomGames/errors/notification/PlayersLimitReached": "방이 가득 찼습니다", @@ -12241,12 +12223,9 @@ "Arena/CustomGames/toggle/tournament": "토너먼트", "Arena/EndMatchNotification": "당신이 없는 동안 매치가 종료되었습니다", "Arena/Matching/CustomGames": "커스텀 게임", - "Arena/Notification/Selection/Blocked": "프리셋 구매가 막혀있습니다", - "Arena/OnCancelMatch": "로딩 문제로 인해 매칭이 취소되었습니다", + "Arena/OnCancelMatch": "Matching canceled due to loading issues", "Arena/OnCancelMatch/Group": "Matching canceled due to group member having loading issues", "Arena/OnCancelMatch/NoServer": "Could not find an available server. Please try later.", - "Arena/Popups/TwitchDropsHeader": "선물 코드 입력", - "Arena/Preset/Tooltip/Tab/6": "Various unique collectible presets.", "Arena/Preset/Tooltip/Tab/Assault": "Assault is the most versatile class. Presets of this class have balanced equipment suitable for most combat situations.", "Arena/Preset/Tooltip/Tab/CQB": "CQB is the most heavily armored class in the Arena. CQBs are characterized by their face shields and increased ammunition for their main weapons. Presets of this class are excellent in defending positions and prolonged firefights.", "Arena/Preset/Tooltip/Tab/Collection": "아레나에서 특별한 도전과제를 획득하면 제공되는 프리셋", @@ -12280,33 +12259,27 @@ "Arena/Presets/Tooltips/Weapon": "무기", "Arena/Rematching": "Returning to matching with high priority", "Arena/Rematching/NoServer": "Due to technical reasons, the server has not been found. Returning to game search.", - "Arena/TeamColor/azure": "아주르", - "Arena/TeamColor/azure_plural": "아주르", - "Arena/TeamColor/blue": "블루", - "Arena/TeamColor/blue_plural": "블루", - "Arena/TeamColor/fuchsia": "핑크", - "Arena/TeamColor/fuchsia_plural": "핑크", - "Arena/TeamColor/green": "그린", - "Arena/TeamColor/green_plural": "그린", - "Arena/TeamColor/red": "레드", - "Arena/TeamColor/red_plural": "레드", - "Arena/TeamColor/white": "화이트", - "Arena/TeamColor/white_plural": "화이트", - "Arena/TeamColor/yellow": "옐로우", - "Arena/TeamColor/yellow_plural": "옐로우", + "Arena/TeamColor/azure": "하늘", + "Arena/TeamColor/azure_plural": "하늘", + "Arena/TeamColor/blue": "파랑", + "Arena/TeamColor/blue_plural": "파랑", + "Arena/TeamColor/fuchsia": "분홍", + "Arena/TeamColor/fuchsia_plural": "분홍", + "Arena/TeamColor/green": "초록", + "Arena/TeamColor/green_plural": "초록", + "Arena/TeamColor/red": "빨강", + "Arena/TeamColor/red_plural": "빨강", + "Arena/TeamColor/white": "하양", + "Arena/TeamColor/white_plural": "하양", + "Arena/TeamColor/yellow": "노랑", + "Arena/TeamColor/yellow_plural": "노랑", "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked Tier presets for one or more group members", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Not enough unlocked {0} presets for one or more group members", - "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the Tier", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "Not enough money for {0}", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} currently not available for the game", - "Arena/Tiers/RankingAvailable {0}": "랭크 게임 이용불가능: {0} 프리셋 잠금 해제됨", - "Arena/Tiers/Unlocked {0} presets": "{0} 프리셋 잠금 해제됨", - "Arena/Tiers/UnlockedPresets": "프리셋 잠금 해제됨", - "Arena/Tooltip/MapSelectedCounter": "선택한 맵 수", - "Arena/Tooltip/MinMapCount {0}": "여러개의 맵을 선택하세요. 최소 {0} 개의 맵을 선택해야 합니다", + "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", + "Arena/Tiers/UnlockedPresets": "Presets unlocked", "Arena/UI/Awaiting-Players": "다른 플레이어를 기다리는 중", "Arena/UI/Confirm-Match": "확인", "Arena/UI/CustomMode": "커스텀", @@ -12314,21 +12287,19 @@ "Arena/UI/Excluded-from-tre-group": "- 파티에서 강퇴당했습니다", "Arena/UI/Game-Found": "게임 발견", "Arena/UI/Leave": "나가기", - "Arena/UI/Leave-Game/Text1": "정말로 게임에서 나가시겠습니까?", + "Arena/UI/Leave-Game/Text1": "Are you sure you want to leave the game?", "Arena/UI/Leave-Game/Text2": "Server will be disbanded", "Arena/UI/Leave-Game/Title": "게임 나가기", "Arena/UI/Leave-Tournament-Game/Title": "토너먼트 게임 나가기", - "Arena/UI/Leave-a-match?": "정말로 게임에서 일찍 나가시겠습니까?", - "Arena/UI/LoadMapResources": "맵 리소스 로딩 중...", - "Arena/UI/Lose-you-reward": "- 보상과 순위를 얻을 수 없고 일시적 밴을 당할 수 있습니다", - "Arena/UI/Match-Canceled": "매치 취소됨", + "Arena/UI/Leave-a-match?": "Are you sure you want to leave the game early?", + "Arena/UI/LoadMapResources": "Loading map resources...", + "Arena/UI/Lose-you-reward": "- You will lose your reward and rating, and may also get a temporary ban", + "Arena/UI/Match-Canceled": "Match canceled", "Arena/UI/Match_leaving_forbidden_body": "If you leave this match you will put your comrades at disadvantage.
You'll lose your reward, rating, and will be eligible for a temporary ban.", "Arena/UI/Match_leaving_forbidden_header": "Warning! You are leaving the match.", "Arena/UI/Match_leaving_permitted_header": "You can leave this match without penalty.", - "Arena/UI/PresetResetToDefault": "Settings for the following presets have been reset to default:", - "Arena/UI/Return": "돌아가기", - "Arena/UI/Return-to-match": "경기로 돌아가기", - "Arena/UI/Selection/Blocked": "Preset taken", + "Arena/UI/Return": "RETURN", + "Arena/UI/Return-to-match": "RETURN TO MATCH", "Arena/UI/Waiting": "대기 중...", "Arena/Ui/ServerFounding": "서버 찾는 중...", "Arena/Widgets/Observer/capture point": "목표 확보하기", @@ -12374,60 +12345,53 @@ "ArenaPresetViewScreen/need_unlock": "Preset unlock required", "ArenaPresetViewScreen/unlocked": "Requirements fulfilled", "ArenaRaidInviteDescription": "{0} 님이 당신을 전투에 초대했습니다", - "ArenaUI/BattleMenu/ForbiddenQuitWarning": "정말로 게임에서 일찍 나가시겠습니까?", - "ArenaUI/BattleMenu/FreeQuitWarning": "- 패널티 없이 매치에서 나갑니다", + "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Are you sure you want to leave the game early?", + "ArenaUI/BattleMenu/FreeQuitWarning": "- You will leave the match without penalty", "ArenaUI/BattleMenu/MatchLeave": "매치 나가기", - "ArenaUI/BattleMenu/PenaltyWarning": "- 보상과 순위를 얻을 수 없고 일시적 밴을 당할 수 있습니다", - "ArenaUI/BattleMenu/PermittedQuitWarning": "정말로 게임이 종료되기 전에 나가시겠습니까?", - "ArenaUI/BattleMenu/SquadLeaveWarning": "- 현재 파티에서 강퇴 당합니다", + "ArenaUI/BattleMenu/PenaltyWarning": "- You will lose your reward and rating, and may also get a temporary ban", + "ArenaUI/BattleMenu/PermittedQuitWarning": "Are you sure you want to leave before the game ends?", + "ArenaUI/BattleMenu/SquadLeaveWarning": "- You will be kicked from your squad", "ArenaUI/PresetView/FreePreset": "무료", "ArenaUI/PresetView/PresetPreview": "프리셋 미리보기", "ArenaUI/PresetView/ShopPrice": "상점 가격", - "Arena_AirPit": "격납고", - "Arena_AutoService": "카센터", - "Arena_Bay5": "5번 항만", - "Arena_Bowl": "경기장", - "Arena_Yard": "Block", - "Arena_equator_TDM_02": "이퀘이터", "Arena_result_final": "최종", "Arena_result_result": "결과", "Arena_result_rounds": "라운드", - "Arena_saw": "제재소", "Armband": "완장", "Armor": "보호구", - "Armor Zone BackHead": "뒷머리", + "Armor Zone BackHead": "뒤통수", "Armor Zone Ears": "귀", "Armor Zone Eyes": "눈", - "Armor Zone HeadCommon": "얼굴", + "Armor Zone HeadCommon": "Face", "Armor Zone Jaw": "턱", "Armor Zone LeftCalf": "왼쪽 종아리", - "Armor Zone LeftForearm": "왼팔 전완", + "Armor Zone LeftForearm": "왼팔 하박", "Armor Zone LeftSideChestDown": "왼쪽 옆구리", "Armor Zone LeftSideChestUp": "왼쪽 겨드랑이", "Armor Zone LeftThigh": "왼쪽 허벅지", "Armor Zone LeftUpperArm": "왼쪽 어깨", - "Armor Zone NeckBack": "목 뒤쪽", - "Armor Zone NeckFront": "목 앞쪽", + "Armor Zone NeckBack": "뒷목", + "Armor Zone NeckFront": "앞목", "Armor Zone ParietalHead": "정수리", "Armor Zone Pelvis": "사타구니", "Armor Zone PelvisBack": "엉덩이", - "Armor Zone Plate_6B13_back": "뒤쪽 방탄판", - "Armor Zone Plate_Granit_SAPI_back": "뒤쪽 방탄판", - "Armor Zone Plate_Granit_SAPI_chest": "앞쪽 방탄판", - "Armor Zone Plate_Granit_SSAPI_side_left_high": "왼쪽 방탄판", - "Armor Zone Plate_Granit_SSAPI_side_left_low": "왼쪽 방탄판", - "Armor Zone Plate_Granit_SSAPI_side_right_high": "오른쪽 방탄판", - "Armor Zone Plate_Granit_SSAPI_side_right_low": "오른쪽 방탄판", - "Armor Zone Plate_Korund_chest": "앞쪽 방탄판", - "Armor Zone Plate_Korund_side_left_high": "왼쪽 방탄판", - "Armor Zone Plate_Korund_side_left_low": "왼쪽 방탄판", - "Armor Zone Plate_Korund_side_right_high": "오른쪽 방탄판", - "Armor Zone Plate_Korund_side_right_low": "오른쪽 방탄판", + "Armor Zone Plate_6B13_back": "BCK. PLATE", + "Armor Zone Plate_Granit_SAPI_back": "BCK. PLATE", + "Armor Zone Plate_Granit_SAPI_chest": "FR. PLATE", + "Armor Zone Plate_Granit_SSAPI_side_left_high": "L. PLATE", + "Armor Zone Plate_Granit_SSAPI_side_left_low": "L. PLATE", + "Armor Zone Plate_Granit_SSAPI_side_right_high": "R. PLATE", + "Armor Zone Plate_Granit_SSAPI_side_right_low": "R. PLATE", + "Armor Zone Plate_Korund_chest": "F. PLATE", + "Armor Zone Plate_Korund_side_left_high": "L. PLATE", + "Armor Zone Plate_Korund_side_left_low": "L. PLATE", + "Armor Zone Plate_Korund_side_right_high": "R. PLATE", + "Armor Zone Plate_Korund_side_right_low": "R. PLATE", "Armor Zone RibcageLow": "복부", "Armor Zone RibcageUp": "흉부", "Armor Zone RightCalf": "오른쪽 종아리", - "Armor Zone RightForearm": "오른팔 전완", - "Armor Zone RightSideChestDown": "오른쪽 옆구리", + "Armor Zone RightForearm": "오른팔 하박", + "Armor Zone RightSideChestDown": "Right side", "Armor Zone RightSideChestUp": "오른쪽 겨드랑이", "Armor Zone RightThigh": "오른쪽 허벅지", "Armor Zone RightUpperArm": "오른쪽 어깨", @@ -12437,14 +12401,12 @@ "Aspect ratio:": "종횡비:", "Assault": "돌격소총", "AssaultCarbine Mastering": "돌격카빈", - "AssaultDescription": "[Assault Rifles]\n돌격소총을 다루는 능력, 반동을 제어하는 능력, 재장전 속도를 향상시켜줍니다.", - "AssaultLevelingUpDescription": "돌격소총을 발사하고, 재장전하면 스킬을 향상시킬 수 있습니다.", + "AssaultDescription": "[Assault Rifles]\n돌격소총 스킬은 돌격소총을 전반적으로 다루는 능력을 향상시켜주고, 반동을 줄여주고 재장전 속도를 빠르게 해줍니다.", "AssaultRifle": "돌격소총", "AssaultRifle Mastering": "돌격소총", "AssortmentUnlockReward/Description": "이 아이템은 {0}의 보상으로 구매할 수 있습니다.", "AttachedLauncher": "총열 하부 발사기", - "AttachedLauncherDescription": "[Underbarrel Launchers]\n총열 하부 유탄발사기를 다루는 능력, 반동을 제어하는 능력, 재장전 속도를 향상시켜줍니다.", - "AttachedLauncherLevelingUpDescription": "총열 하부 발사기를 발사하고, 재장전하면 스킬을 향상시킬 수 있습니다.", + "AttachedLauncherDescription": "[Underbarrel Launchers]\n총열 하부 유탄발사기를 다루는 기술", "Attention": "주의력", "Attention!": "주의!", "Attention! All items, brought by you into the raid or found in it, have been lost.": "주의! 소지하고 있던 모든 아이템을 잃었습니다.", @@ -12455,10 +12417,9 @@ "Attention! You’ve left the raid and lost everything you brought or found in it.": "주의! 레이드에서 이탈하여 소지한 아이템을 모두 잃었습니다.", "AttentionDescription": "Attention increases the looting speed of various containers.", "AttentionEliteExtraLootExp": "전리품 획득 경험치를 두 배로 받습니다", - "AttentionEliteLuckySearch": "전리품이 담긴 보관함을 확인할 때 보관함 안에 어떤 전리품이 있는지 즉시 확인할 수 있는 확률 [{0:0.#%}] 증가", - "AttentionLevelingUpDescription": "The Attention skill is improved by searching containers and bodies.", - "AttentionLootSpeed": "전리품 확인 속도 [{0:0.#%}] 증가", - "AttentionRareLoot": "아이템 조사 속도 [{0:0.#%}] 증가", + "AttentionEliteLuckySearch": "전리품이 담긴 보관함을 확인할 때 보관함 안에 어떤 전리품이 있는지 즉시 확인할 수 있는 확률 [({0})]", + "AttentionLootSpeed": "전리품 확인 속도 [{0:0%}] 증가", + "AttentionRareLoot": "아이템 조사 속도 [{0:0%}] 증가", "Auctionsdescription": "[AUCTIONS]\n경매장", "Authentic": "인증된", "Authorization": "인증", @@ -12512,7 +12473,6 @@ "Bloom": "블룸효과", "BodyTemperature": "체온", "Boiler Tanks": "Boiler Tanks", - "BonfireBuff": "모닥불의 온기", "BoozeGenerator": "양조 시설", "Boss pick": "Boss pick", "BossType/AsOnline": "온라인과 같게", @@ -12613,17 +12573,16 @@ "Charge": "노리쇠", "Charisma": "카리스마", "CharismaAdditionalDailyQuests": "일일/주간 임무 1개 추가", - "CharismaBuff1": "상인에게 환전 시 가격 [{0:0.#%}] 할인", - "CharismaBuff2": "상인 우호도 획득량 [{0:0.#%}] 증가", - "CharismaDailyQuestsRerollDiscount": "일일/주간 퀘스트 새로고침 비용 [{0:0.#%}] 감소", + "CharismaBuff1": "상인에게 환전 시 가격 [{0:0%}] 할인", + "CharismaBuff2": "상인 우호도 획득량 [{0:0%}] 증가", + "CharismaDailyQuestsRerollDiscount": "일일/주간 퀘스트 새로고침 비용 [{0:0%}] 감소", "CharismaDescription": "[Charisma]\n카리스마가 오를수록 다양한 서비스들을 할인받을 수 있습니다.", "CharismaEliteBuff1": "최신 거래 소식을 가장 먼저 접할 수 있습니다.", - "CharismaEliteBuff2": "모든 거래에서 이익 [{0:0.#%}] 증가", - "CharismaExfiltrationDiscount": "유료 탈출구 비용 [{0:0.#%}] 감소", + "CharismaEliteBuff2": "모든 거래에서 이익 [{0:0%}] 증가", + "CharismaExfiltrationDiscount": "유료 탈출구 비용 [{0:0%}] 감소", "CharismaFenceRepPenaltyReduction": "상인 펜스 우호도 페널티 감소", - "CharismaHealingDiscount": "레이드 후 치료 서비스 비용 [{0:0.#%}] 감소", - "CharismaInsuranceDiscount": "보험료 [{0:0.#%}] 감소", - "CharismaLevelingUpDescription": "The Charisma skill is improved indirectly by leveling the Attention, Perception, and Intellect skills.", + "CharismaHealingDiscount": "레이드 후 치료 서비스 비용 [{0:0%}] 감소", + "CharismaInsuranceDiscount": "보험 서비스 비용 [{0:0%}] 감소", "CharismaScavCaseDiscount": "은신처의 스캐브 케이스 비용 할인", "ChatScreen/QuestItemsListHeader": "The following items will be moved to quest item stash:", "ChatScreen/QuestItemsMoved": "Items successfully moved to quest item stash", @@ -12651,19 +12610,19 @@ "Close the game": "게임 종료", "CloseBufferGates": "문 닫기", "CloseDoor": "닫기", - "ClothingItem/Equipped": "착용중", - "ClothingItem/Obtained": "구매함", - "ClothingItem/Preview": "미리보기", - "ClothingItem/Purchase": "구매 가능", - "ClothingItem/Unavailable": "구매 불가능", - "ClothingPanel/ExternalObtain": "웹사이트에서 구매 가능", + "ClothingItem/Equipped": "Equipped", + "ClothingItem/Obtained": "Obtained", + "ClothingItem/Preview": "Preview", + "ClothingItem/Purchase": "Available", + "ClothingItem/Unavailable": "Unavailable", + "ClothingPanel/ExternalObtain": "Available for purchase on the website", "ClothingPanel/InternalObtain": "Trader purchase conditions:", - "ClothingPanel/LoyaltyLevel": "상인\n우호도 레벨:", - "ClothingPanel/PlayerLevel": "플레이어\n레벨:", - "ClothingPanel/RequiredPayment": "필요한\n금액:", - "ClothingPanel/RequiredQuest": "완료해야 하는\n임무:", - "ClothingPanel/RequiredSkill": "필요한\n스킬:", - "ClothingPanel/StandingLevel": "상인\n평판:", + "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", + "ClothingPanel/PlayerLevel": "Player\nLevel:", + "ClothingPanel/RequiredPayment": "Required\nPayment:", + "ClothingPanel/RequiredQuest": "Completed\ntask:", + "ClothingPanel/RequiredSkill": "Required\nSkill:", + "ClothingPanel/StandingLevel": "Trader\nStanding:", "CloudinessType/Clear": "맑음", "CloudinessType/Cloudy": "흐림", "CloudinessType/CloudyWithGaps": "구름 보통", @@ -12672,39 +12631,39 @@ "CloudinessType/Thundercloud": "뇌운", "Co-op mode settings": "연습 모드 설정", "Coastal_South_road": "Southern Road", - "Collider Type Back": "흉부, 등쪽", - "Collider Type BackHead": "머리, 뒷머리", - "Collider Type Ears": "머리, 귀", - "Collider Type Eyes": "머리, 눈", - "Collider Type Groin": "복부, 사타구니", - "Collider Type HeadCommon": "머리, 얼굴", - "Collider Type Jaw": "머리, 턱", - "Collider Type LeftCalf": "왼다리, 종아리", - "Collider Type LeftForearm": "왼팔, 전완", - "Collider Type LeftSide": "왼쪽 옆구리", - "Collider Type LeftSideChestDown": "복부, 왼쪽 옆구리", - "Collider Type LeftSideChestUp": "흉부, 왼쪽 겨드랑이", - "Collider Type LeftThigh": "왼다리, 허벅지", - "Collider Type LeftUpperArm": "왼팔, 어깨", - "Collider Type LowerBack": "복부, 아래쪽 등", - "Collider Type NeckBack": "머리, 목 뒤쪽", - "Collider Type NeckFront": "머리, 목 앞쪽", - "Collider Type ParietalHead": "머리, 윗머리", - "Collider Type Pelvis": "복부, 골반", - "Collider Type PelvisBack": "복부, 엉덩이", - "Collider Type Ribcage": "흉곽", - "Collider Type RibcageLow": "복부", - "Collider Type RibcageUp": "흉부", - "Collider Type RightCalf": "오른다리, 종아리", - "Collider Type RightForearm": "오른팔, 전완", - "Collider Type RightSide": "오른쪽 옆구리", - "Collider Type RightSideChestDown": "복부, 오른쪽 옆구리", - "Collider Type RightSideChestUp": "흉부, 오른쪽 겨드랑이", - "Collider Type RightThigh": "오른다리, 허벅지", - "Collider Type RightUpperArm": "오른팔, 어깨", - "Collider Type SpineDown": "복부, 아래쪽 등", - "Collider Type SpineTop": "흉부, 위쪽 등", - "Collider Type Stomach": "복부", + "Collider Type Back": "Thorax, Back", + "Collider Type BackHead": "Head, Nape", + "Collider Type Ears": "Head, Ears", + "Collider Type Eyes": "Head, Eyes", + "Collider Type Groin": "Stomach, Groin", + "Collider Type HeadCommon": "Head, Face", + "Collider Type Jaw": "Head, Jaws", + "Collider Type LeftCalf": "Left leg, Calf", + "Collider Type LeftForearm": "Left arm, Forearm", + "Collider Type LeftSide": "Left side", + "Collider Type LeftSideChestDown": "Stomach, Left Side", + "Collider Type LeftSideChestUp": "Thorax, Left Armpit", + "Collider Type LeftThigh": "Left leg, Thigh", + "Collider Type LeftUpperArm": "Left arm, Shoulder", + "Collider Type LowerBack": "Stomach, Lower back", + "Collider Type NeckBack": "Head, Neck", + "Collider Type NeckFront": "Head, Throat", + "Collider Type ParietalHead": "Head, Top of the head", + "Collider Type Pelvis": "Stomach, Groin", + "Collider Type PelvisBack": "Stomach, Buttocks", + "Collider Type Ribcage": "Ribcage", + "Collider Type RibcageLow": "Stomach", + "Collider Type RibcageUp": "Thorax", + "Collider Type RightCalf": "Right leg, Calf", + "Collider Type RightForearm": "Right arm, Forearm", + "Collider Type RightSide": "Right side", + "Collider Type RightSideChestDown": "Stomach, Right Side", + "Collider Type RightSideChestUp": "Thorax, Right Armpit", + "Collider Type RightThigh": "Right leg, Thigh", + "Collider Type RightUpperArm": "Right arm, Shoulder", + "Collider Type SpineDown": "Stomach, Lower back", + "Collider Type SpineTop": "Thorax, Upper back", + "Collider Type Stomach": "Stomach", "Color grading": "색상 보정:", "Color grading:": "색상 보정:", "Colorblind": "색맹", @@ -12730,7 +12689,7 @@ "Coop game mode": "협동 모드", "Coop/InviteMessage": "파티에서 당신을 초대하려고 합니다. 시작까지: {0}.\n수락하시겠습니까?", "CoopDescription": "Team up against AI enemies.", - "CoopDescriptionShort": "AI와 전투", + "CoopDescriptionShort": "Fight against AI", "CoopMode/HighServerLoadAcceptScreen": "연습모드 서버의 부하가 높은 상태입니다", "CoopMode/HighServerLoadTimeHasCome": "모든 연습모드 서버들이 가득 찼습니다. 서버를 기다리는 중...", "Copy to clipboard": "클립보드로 복사", @@ -12740,17 +12699,15 @@ "CovertMovement": "은밀한 움직임", "CovertMovementDescription": "[Covert Movement]\n\"은밀한 움직임\" 기술은 발소리를 더 조용하게 만들어주고 소리가 퍼져나가는 반경을 줄여줍니다.", "CovertMovementElite": "은밀하게 움직일 때 바닥의 재질과 상관없이 조용하게 움직입니다", - "CovertMovementEquipment": "무기와 장비에서 나는 소음 [{0:0.#%}] 감소", - "CovertMovementLevelingUpDescription": "The Covert Movement skill is improved by moving quietly.", - "CovertMovementLoud": "일반적이지 않은 바닥 위를 걸을 때 발소리 [{0:0.#%}] 감소", - "CovertMovementSoundRadius": "은밀하게 움직일 때 소리가 퍼져나가는 반경이 [{0:0.#%}] 줄어듭니다", - "CovertMovementSoundVolume": "일반적인 바닥 위를 걸을 때 발소리 [{0:0.#%}] 감소", - "CovertMovementSpeed": "은밀하게 움직이는 속도 [{0:0.#%}] 증가", + "CovertMovementEquipment": "무기와 장비에서 나는 소음 [{0:0%}] 감소", + "CovertMovementLoud": "일반적이지 않은 바닥 위를 걸을 때 발소리 [{0:0%}] 감소", + "CovertMovementSoundRadius": "은밀하게 움직일 때 소리가 퍼져나가는 반경이 [{0:0%}] 줄어듭니다", + "CovertMovementSoundVolume": "일반적인 바닥 위를 걸을 때 발소리 [{0:0%}] 감소", + "CovertMovementSpeed": "은밀하게 움직이는 속도 [{0:0%}] 증가", "Crafting": "제작", - "CraftingContinueTimeReduce": "모든 반복 생산품들(비트코인 제외)의 생산 소요시간 [{0:0.#%}] 감소", + "CraftingContinueTimeReduce": "모든 반복 생산품들(비트코인 제외)의 생산 소요시간 [{0:0.##%}] 감소", "CraftingElite": "한 번에 서로 다른 두 물품을 제작할 수 있습니다", - "CraftingLevelingUpDescription": "The Crafting skill is improved by creating items in the Hideout.", - "CraftingSingleTimeReduce": "아이템 생산 시간 [{0:0.#%}] 단축", + "CraftingSingleTimeReduce": "아이템 생산 시간 [{0:0.##%}] 단축", "Craftingdescription": "[Crafting]\n제작 스킬을 올릴수록 물건 생산 시간을 단축합니다. 반복 생산 물건들도 포함됩니다.", "Create group dialog": "파티 대화방 생성", "CreateDialog": "{0} 님이 파티 대화방을 생성했습니다!", @@ -12778,8 +12735,7 @@ "DISCONNECT FROM GLOBAL CHAT": "글로벌 채팅과 연결 끊기", "DISPOSE": "버리기", "DMR": "지정사수소총", - "DMRDescription": "[DMRs]\n지정사수소총을 다루는 능력, 반동을 제어하는 능력, 재장전 속도를 향상시켜줍니다.", - "DMRLevelingUpDescription": "The Designated Marksman Rifles weapon skill is improved by firing and reloading the corresponding weapon type.", + "DMRDescription": "[DMRs]\n지정사수소총 스킬은 지정사수소총을 전반적으로 다루는 능력을 향상시켜주고, 반동을 줄여주고 재장전 속도를 빠르게 해줍니다.", "DON'T TRY TO LEAVE": "이탈하려 하지 마세요", "DONTKNOW": "알 수 없음", "DOWN": "DOWN", @@ -12812,7 +12768,7 @@ "DamageType_Barbed": "철조망", "DamageType_Bloodloss": "출혈", "DamageType_Blunt": "충격(Blunt) 피해", - "DamageType_Btr": "BTR에 치임", + "DamageType_Btr": "Ran over by BTR", "DamageType_Bullet": "총상", "DamageType_Dehydration": "탈수", "DamageType_Exhaustion": "탈진", @@ -12833,43 +12789,43 @@ "Day": "일", "Dead": "사망", "Dead Man's Place": "Dead Man's Place", - "DeathInfo/BackHead": "뒷머리", + "DeathInfo/BackHead": "Nape", "DeathInfo/Chest": "흉부", "DeathInfo/DamageToEnemy": "적에게 준 피해량:", "DeathInfo/DamageToYou": "내가 받은 피해량:", - "DeathInfo/Ears": "귀", - "DeathInfo/Eyes": "눈", + "DeathInfo/Ears": "Ears", + "DeathInfo/Eyes": "Eyes", "DeathInfo/FourHits{0}": "{0} hits", - "DeathInfo/HeadCommon": "머리", - "DeathInfo/Jaw": "턱", - "DeathInfo/LeftArm": "왼팔", - "DeathInfo/LeftCalf": "왼쪽 종아리", - "DeathInfo/LeftForearm": "왼팔 전완", - "DeathInfo/LeftLeg": "왼다리", - "DeathInfo/LeftSideChestDown": "왼쪽 옆구리", - "DeathInfo/LeftSideChestUp": "왼쪽 겨드랑이", - "DeathInfo/LeftThigh": "왼쪽 허벅지", - "DeathInfo/LeftUpperArm": "왼쪽 어깨", + "DeathInfo/HeadCommon": "Head", + "DeathInfo/Jaw": "Jaw", + "DeathInfo/LeftArm": "Left arm", + "DeathInfo/LeftCalf": "Left calf", + "DeathInfo/LeftForearm": "Left forearm", + "DeathInfo/LeftLeg": "Left leg", + "DeathInfo/LeftSideChestDown": "Left side", + "DeathInfo/LeftSideChestUp": "Left armpit", + "DeathInfo/LeftThigh": "Left thigh", + "DeathInfo/LeftUpperArm": "Left shoulder", "DeathInfo/ManyHits{0}": "{0} hits", - "DeathInfo/NeckBack": "목 뒤쪽", - "DeathInfo/NeckFront": "목 앞쪽", + "DeathInfo/NeckBack": "Back neck", + "DeathInfo/NeckFront": "Throat", "DeathInfo/OneHit{0}": "{0} hit", - "DeathInfo/ParietalHead": "윗머리", - "DeathInfo/Pelvis": "골반", - "DeathInfo/PelvisBack": "엉덩이", - "DeathInfo/RibcageLow": "복부", - "DeathInfo/RibcageUp": "흉부", + "DeathInfo/ParietalHead": "Top of the head", + "DeathInfo/Pelvis": "Pelvis", + "DeathInfo/PelvisBack": "Buttocks", + "DeathInfo/RibcageLow": "Stomach", + "DeathInfo/RibcageUp": "Thorax", "DeathInfo/RightArm": "오른팔", - "DeathInfo/RightCalf": "오른쪽 종아리", - "DeathInfo/RightForearm": "오른팔 전완", + "DeathInfo/RightCalf": "Right calf", + "DeathInfo/RightForearm": "Right forearm", "DeathInfo/RightLeg": "오른다리", - "DeathInfo/RightSideChestDown": "오른쪽 옆구리", - "DeathInfo/RightSideChestUp": "오른쪽 겨드랑이", - "DeathInfo/RightThigh": "오른쪽 허벅지", - "DeathInfo/RightUpperArm": "오른쪽 어깨", + "DeathInfo/RightSideChestDown": "Right side", + "DeathInfo/RightSideChestUp": "Right armpit", + "DeathInfo/RightThigh": "Right thigh", + "DeathInfo/RightUpperArm": "Right shoulder", "DeathInfo/ScavTeam": "청소부", - "DeathInfo/SpineDown": "등 아래쪽", - "DeathInfo/SpineTop": "등 위쪽", + "DeathInfo/SpineDown": "Lower back", + "DeathInfo/SpineTop": "Upper back", "DeathInfo/Stomach": "복부", "DeclineFriendsRequest": "친구 요청 거절", "DeclineInvitation": "초대 거절", @@ -12908,11 +12864,11 @@ "DrawElite": "스태미나 상태와 관계없이 처음 3초 동안 안정적으로 조준 가능", "DrawMaster": "총기 전환 숙련", "DrawMasterDescription": "총기 전환 숙련 기술은 무기 전환 속도를 빠르게 합니다.", - "DrawMasterElite": "무기 꺼내는 속도 [{0:0.#%}] 증가", - "DrawMasterSpeed": "무기 꺼내는 속도 [{0:0.#%}] 증가", - "DrawSound": "정조준할 때 발생하는 소리 [{0:0.#%}] 감소", - "DrawSpeed": "정조준 속도 [{0:0.#%}] 증가", - "DrawTremor": "정조준 후 처음 2초 동안 떨림 효과 [50%] 감소", + "DrawMasterElite": "무기 꺼내는 속도 [{0:0%}] 증가", + "DrawMasterSpeed": "무기 꺼내는 속도 [{0:0%}] 증가", + "DrawSound": "정조준할 때 발생하는 소리 [{0:0%}] 감소", + "DrawSpeed": "정조준 속도 [{0:0%}] 증가", + "DrawTremor": "정조준 후 처음 2초 동안 떨림 효과 50% 감소", "DropBackpack": "배낭 내려놓기", "DropItem": "아이템 떨어뜨리기", "Duck": "앉기", @@ -12934,20 +12890,19 @@ "EAntialiasingMode/None": "끄기", "EAntialiasingMode/TAA_High": "TTA 높음", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", - "EArenaPresetsType/Assault": "돌격", + "EArenaPresetsType/Assault": "Assault", "EArenaPresetsType/CQB": "CQB", - "EArenaPresetsType/Marksman": "지정사수", - "EArenaPresetsType/Scout": "정찰", - "EAutoVaultingUseMode/Automatic": "자동", + "EArenaPresetsType/Marksman": "Marksman", + "EArenaPresetsType/Scout": "Scout", + "EAutoVaultingUseMode/Automatic": "Auto", "EAutoVaultingUseMode/Hotkey": "단축키", "EBackendErrorCode/CantChangeReadyState": "준비 상태를 변경하는 도중 오류가 발생했습니다", "EBackendErrorCode/GroupFull": "파티가 가득 찬 상태입니다", - "EBackendErrorCode/GroupMembersNotReady": "파티원이 준비되지 않았습니다", + "EBackendErrorCode/GroupMembersNotReady": "Group member is not ready", "EBackendErrorCode/GroupRequestNotFound": "초대 요청을 찾지 못했습니다", "EBackendErrorCode/GroupSendInviteError": "파티 초대를 보내는 도중 오류가 발생했습니다", "EBackendErrorCode/ItemHasBeenSold": "이미 판매된 아이템입니다", - "EBackendErrorCode/LimitForPresetsReached": "장비 프리셋의 개수가 최대치에 도달했습니다", + "EBackendErrorCode/LimitForPresetsReached": "장비 프리셋이 생성할 수 있는 최대치에 도달했습니다", "EBackendErrorCode/OfferSold": "이미 판매된 매물입니다", "EBackendErrorCode/PlayerAlreadyInGroup": "플레이어가 이미 파티에 들어와있습니다", "EBackendErrorCode/PlayerAlreadyLookingForGame": "플레이어가 매칭 중입니다", @@ -12957,15 +12912,15 @@ "EBackendErrorCode/PlayerIsOffline": "플레이어가 오프라인 상태입니다", "EBackendErrorCode/PlayerNotInGroup": "플레이어가 파티에 없습니다", "EBackendErrorCode/PlayerNotLeader": "플레이어가 파티장이 아닙니다", - "EBackendErrorCode/PlayerProfileNotFound": "플레이어 프로필을 찾을 수 없습니다", - "EBackendErrorCode/TooManyInviteRequests": "한 플레이어에게 보낼 수 있는 초대 회수가 최대치에 도달했습니다. {0} 초 후에 다시 시도해주세요.", - "EBtrInteractionStatus/Blacklisted": "당신은 BTR과 상호작용 할 수 없습니다!", - "EBtrInteractionStatus/BusyDoor": "문이 사용 중입니다!", - "EBtrInteractionStatus/BusySide": "옆이 가득 찼습니다!", - "EBtrInteractionStatus/BusySlot": "좌석이 가득 찼습니다!", - "EBtrState/Running": "이동중", - "EBtrState/Stop": "결제 대기 중", - "EBtrState/StopPaid": "출발 대기 중", + "EBackendErrorCode/PlayerProfileNotFound": "Player profile not found", + "EBackendErrorCode/TooManyInviteRequests": "Exceeded the limit of invites sent to one player. Try again in {0} sec.", + "EBtrInteractionStatus/Blacklisted": "You are not allowed access to the BTR!", + "EBtrInteractionStatus/BusyDoor": "Door is in use!", + "EBtrInteractionStatus/BusySide": "Side is occupied!", + "EBtrInteractionStatus/BusySlot": "Seat is occupied!", + "EBtrState/Running": "en route", + "EBtrState/Stop": "awaiting payment", + "EBtrState/StopPaid": "awaiting departure", "ECompareMethod/Less": "미만", "ECompareMethod/More": "초과", "EConnectionType/Default": "기본", @@ -12981,9 +12936,9 @@ "EDLSSMode/Performance": "성능 우선", "EDLSSMode/Quality": "화질 우선", "EDLSSMode/UltraPerformance": "U\bltra\u00A0성능 우선", - "EEventState/SummonFailed": "실패함", - "EEventState/SummonStart": "처리 중", - "EEventState/SummonSuccess": "성공", + "EEventState/SummonFailed": "failed", + "EEventState/SummonStart": "in process", + "EEventState/SummonSuccess": "success", "EFFECTIVE DISTANCE": "유효 사거리", "EFSR2Mode/Balanced": "밸런스", "EFSR2Mode/Off": "끄기", @@ -13011,9 +12966,9 @@ "EItemAttributeId/MalfFeedChance": "급탄 불량 확률", "EItemAttributeId/MalfMisfireChance": "불발 확률", "EItemAttributeId/PyrotechnicDelay": "충격 신관 작동 지연시간", - "EItemQuickUseMode/Disabled": "취소됨", - "EItemQuickUseMode/InRaidAndInLobby": "레이드에서 발견 또는 창고", - "EItemQuickUseMode/InRaidOnly": "레이드에서 발견한 것만", + "EItemQuickUseMode/Disabled": "Disabled", + "EItemQuickUseMode/InRaidAndInLobby": "In raid and stash", + "EItemQuickUseMode/InRaidOnly": "In raid only", "EMPTY_SLOT": "없음", "EMalfunctionState/Feed": "급탄 불량", "EMalfunctionState/HardSlide": "노리쇠 걸림", @@ -13067,9 +13022,9 @@ "EStatQuestType/BringItemToTrader": "물건 전달 임무", "EStatQuestType/Eliminate": "사살하기", "EStatQuestType/SurviveOnLocation": "지역 탈출 임무", - "ETraderServiceType/BtrBotCover": "엄호 사격", - "ETraderServiceType/BtrItemsDelivery": "창고로 아이템 옮기기", - "ETraderServiceType/PlayerTaxi": "택시", + "ETraderServiceType/BtrBotCover": "Cover fire", + "ETraderServiceType/BtrItemsDelivery": "Move items to stash", + "ETraderServiceType/PlayerTaxi": "Take a ride", "EXAMINE": "조사", "EXAMINE IN PROGRESS": "조사하는 중", "EXAMINE: ": "조사: ", @@ -13105,7 +13060,7 @@ "EXFIL_button_gates": "게이트 열기", "EXFIL_button_pump": "펌프 작동시키기", "EXFIL_elevator_call": "엘리베이터 부르기", - "EXFIL_elevator_floor": "버튼을 누르세요", + "EXFIL_elevator_floor": "원하는 층의 버튼을 누르세요", "EXFIL_elevator_power": "엘리베이터 전력 복구하기", "EXFIL_elevator_wait": "엘리베이터 기다리기", "EXFIL_gates_open": "게이트 열기", @@ -13136,13 +13091,12 @@ "Enabled": "활성화", "Endurance": "지구력", "EnduranceBreathElite": "숨참기가 에너지의 영향을 받지 않습니다", - "EnduranceBuffBreathTimeInc": "숨참기 시간 [{0:0.#%}] 증가", - "EnduranceBuffEnduranceInc": "스태미나 [{0:0.#%}] 증가", - "EnduranceBuffJumpCostRed": "점프할 때 소모되는 스태미나량 [{0:0.#%}] 감소", - "EnduranceBuffRestorationTimeRed": "호흡 회복 소요시간 [{0:0.#%}] 감소", + "EnduranceBuffBreathTimeInc": "숨참기 시간 [{0:0%}] 증가", + "EnduranceBuffEnduranceInc": "스태미나 [{0:0%}] 증가", + "EnduranceBuffJumpCostRed": "점프할 때 소모되는 스태미나량 [{0:0%}] 감소", + "EnduranceBuffRestorationTimeRed": "호흡 회복 소요시간 [{0:0%}] 감소", "EnduranceDescription": "[Endurance]\n지구력은 스태미나의 최대량과 달리기 및 점프 동작 시 스태미나 소모량, 그리고 숨을 참거나 회복하는 속도에 영향을 미칩니다.", "EnduranceHands": "팔 지구력 향상", - "EnduranceLevelingUpDescription": "The Endurance skill is improved by sprinting without the overweight status effect, and by working out in the Hideout gym.", "EnergyExpensesUp {0}": "에너지 소모량 {0} 만큼 증가", "EnergyRate": "에너지 회복", "Enter": "들어가기", @@ -13162,7 +13116,7 @@ "EquipmentBuild/SetNameWindowPlaceholder": "enter kit name", "EquipmentBuilds/ContainsMissingItems": "Contains missing items:", "EquipmentBuilds/MissingItemTooltip": "The item is missing from the stash", - "EquipmentBuilds/OpenBuilds": "장비 프리셋 목록", + "EquipmentBuilds/OpenBuilds": "프리셋 목록", "EquipmentBuilds/PresetEquip": "프리셋이 착용되었습니다", "EquipmentBuilds/PresetRemoved": "프리셋이 삭제되었습니다", "EquipmentBuilds/PresetRenamed": "프리셋의 이름이 변경되었습니다", @@ -13272,7 +13226,6 @@ "Friends": "친구", "Friends invite is already sent": "이미 친구 요청을 보냈습니다.", "Friends list": "친구 목록", - "FrostbiteBuff": "모라나의 동상", "Full": "가득 참", "Full Recovery Time": "최대 회복 시간", "Fullscreen mode:": "화면 모드:", @@ -13283,7 +13236,7 @@ "GAME CONDITIONS": "게임 이용 약관", "GEAR": "장비", "GET": "받기", - "GET READY!": "GET READY", + "GET READY!": "GET READY!", "GETBACK": "GET BACK", "GETINCOVER": "TAKE COVER", "GOFORWARD": "GO FORWARD", @@ -13321,12 +13274,12 @@ "Group max count reached!": "파티가 가득 찼습니다!", "Group member level above": "파티원 중 한 명의 레벨이 {0} 이상입니다", "Group member level below": "파티원 중 한 명의 레벨이 {0} 미만입니다", - "Group too big": "파티가 가득 찼습니다", + "Group too big": "Group max member count exceeded", "GroupCoopUnavailable": "현재 파티는 협동(Co-op) 모드를 플레이할 수 없습니다", "GroupDecline": "거절", "GroupInviteDescription": "{0} 플레이어가 당신을 파티에 초대했습니다", "GroupInviteHeader": "파티 초대", - "GroupPlayerBlocking/NotReady": "파티가 준비되지 않았습니다", + "GroupPlayerBlocking/NotReady": "Group is not ready", "GroupStatus/NotReady": "준비되지 않음", "HANDBOOK": "도감", "HANDBROKEN": "팔이 부러짐", @@ -13340,8 +13293,7 @@ "HIGH_PACKETS_LOSS": "높은 패킷 손실", "HIT": "HIT", "HMG": "중기관총", - "HMGDescription": "[HMGs]\n중기관총을 다루는 능력, 반동을 제어하는 능력, 재장전 속도를 향상시켜줍니다.", - "HMGLevelingUpDescription": "중기관총을 발사하고, 재장전하면 스킬을 향상시킬 수 있습니다.", + "HMGDescription": "[HMGs]\n중기관총 스킬은 중기관총을 전반적으로 다루는 능력을 향상시켜주고, 반동을 줄여주고 재장전 속도를 빠르게 해줍니다.", "HOLD FIRE": "사격 중지", "HOLDFIRE": "HOLD FIRE", "HOLDPOSITION": "HOLD POSITION", @@ -13358,7 +13310,7 @@ "HeadSegment/Ears": "귀", "HeadSegment/Eyes": "눈", "HeadSegment/Jaws": "턱", - "HeadSegment/Nape": "뒷머리", + "HeadSegment/Nape": "뒤통수", "HeadSegment/Top": "윗머리", "HeadSegment/lowernape": "목덜미", "Headbobbing:": "머리 흔들림 효과:", @@ -13372,42 +13324,39 @@ "Health/ItemResourceDepleted": "아이템이 고갈되었습니다", "Health/PlayerIsDead": "캐릭터 사망", "HealthAndPhysics": "건강 및 체격", - "HealthBreakChanceRed": "팔다리 골절 확률 [{0:0.#%}] 감소", + "HealthBreakChanceRed": "팔다리 골절 확률 [{0:0%}] 감소", "HealthDescription": "[Health]\n체력이 높을 경우 레이드에서 받은 피해를 빠르게 회복할 수 있으며 골절 확률과 에너지 및 수분 대사량이 줄어듭니다.", "HealthEliteAbsorbDamage": "대미지 흡수", "HealthElitePosion": "독 저항 레벨 [({0})]", - "HealthEnergy": "에너지 소모량 [{0:0.#%}] 감소", - "HealthHydration": "수분 소모율 [{0:0.#%}] 감소", - "HealthLevelingUpDescription": "The Health skill is improved indirectly by leveling the Strength, Endurance, and Vitality skills.", - "HealthOfflineRegenerationInc": "레이드에 참여 중이지 않을 때 체력 회복량 [{0:0.#%}] 증가", + "HealthEnergy": "에너지 소모량 [{0:0%}] 감소", + "HealthHydration": "수분 소모율 [{0:0%}] 감소", + "HealthOfflineRegenerationInc": "레이드에 참여 중이지 않을 때 체력 회복량 [{0:0%}] 증가", "HealthRate": "체력 재생", "HealthTreatment/SkipHealthTreatmentDialogue": "주의! 당신의 체력이 낮습니다.\n체력 회복을 건너뛰고\n메인메뉴로 나가시겠습니까?", "Heating": "난방 시설", "Heavy": "중갑", "HeavyBleeding": "과다 출혈", - "HeavyVestBluntThroughputDamageReduction": "중갑 방탄복으로 보호받는 신체 부위의 충격 피해량 [{0:0.#%}] 감소", - "HeavyVestDeteriorationChanceOnRepairReduce": "수리할 때 최대 내구도가 감소할 확률 [50%] 감소", - "HeavyVestMoveSpeedPenaltyReduction": "중갑 방탄복 착용으로 인한 이동속도 페널티 [{0:0.#%}] 감소", + "HeavyVestBluntThroughputDamageReduction": "중갑 방탄복으로 보호받는 신체 부위의 충격 피해량 [{0:0%}] 감소", + "HeavyVestDeteriorationChanceOnRepairReduce": "수리할 때 최대 내구도가 감소하지 않을 확률 (50%)", + "HeavyVestMoveSpeedPenaltyReduction": "중갑 방탄복 착용으로 인한 이동속도 페널티 [{0:0%}] 감소", "HeavyVestNoBodyDamageDeflectChance": "중갑 방탄복이 총알을 튕겨낼 확률", - "HeavyVestRepairDegradationReduction": "수리 키트를 사용할 때 최대 내구도 감소량이 [{0:0.#%}] 줄어듭니다", + "HeavyVestRepairDegradationReduction": "수리 키트를 사용할 때 최대 내구도 감소량이 [{0:0%}] 줄어듭니다", "HeavyVests": "중장갑", "HeavyVestsDescription": "[Heavy Vests]\n중 방탄복 착용 스킬은 관통과 폭발로 인한 피해를 줄여주며, 기동력을 향상시켜 줍니다.", - "HeavyVestsLevelingUpDescription": "The Heavy Vests skill is improved by repairing heavy body armor and ballistic plates with repair kits.", "Hideout/Craft/ToolMarkerTooltip": "이 아이템은 보조 도구로 사용됩니다. 제작이 완료될 때 마다 창고로 반환됩니다.", "Hideout/Handover window/Caption/All weapons": "모든 무기", "Hideout/Handover window/Message/Items in stash selected:": "창고에서 선택된 아이템", "Hideout/WeaponStand": "무기 거치대", - "Hideout/handover window/Caption/All items": "모든 아이템", - "Hideout/placeoffame": "진열장", - "Hideout/placeoffame/bigtrophies": "큰 전리품", - "Hideout/placeoffame/dogtags": "인식표", - "Hideout/placeoffame/smalltrophies": "작은 전리품", + "Hideout/handover window/Caption/All items": "All items", + "Hideout/placeoffame": "Hall of Fame", + "Hideout/placeoffame/bigtrophies": "Large trophies", + "Hideout/placeoffame/dogtags": "Dogtags", + "Hideout/placeoffame/smalltrophies": "Small trophies", "HideoutExtraSlots": "+2 발전기 연료통 슬롯\n+2 물 필터 슬롯\n+2 공기 필터 슬롯\n+2 비트코인 최대 저장 개수", "HideoutInteractions/TransferItems": "아이템 옮기기", "HideoutManagement": "은신처 관리", - "HideoutManagementLevelingUpDescription": "The Hideout Management skill is improved by creating items and upgrading zones in the Hideout.", - "HideoutResourceConsumption": "연료, 공기필터, 물필터의 소모율 [{0:0.#%}] 감소", - "HideoutZoneBonusBoost": "은신처 시설의 모든 보너스 비율을 각 보너스 수치의 [{0:0.#}%] 만큼 증가", + "HideoutResourceConsumption": "연료, 공기필터, 물필터의 소모율 [{0:0%}] 감소", + "HideoutZoneBonusBoost": "은신처 시설의 모든 보너스 비율을 각 보너스 수치의 [{0:0}%] 만큼 증가", "Hideout\\Craft\\ToolMarketTooltip": "", "Hideout_area_16_stage_3_description": "A full-fledged area in the Hideout dedicated to storing items of collectible value.", "Hiding objective {0:F1}": "목표물 숨기는 중 {0:F1}", @@ -13442,14 +13391,13 @@ "Identifier": "식별자", "Illumination": "조명 시설", "Immunity": "면역력", - "ImmunityAvoidPoisonChance": "중독되지 않을 확률 [{0:0.#%}] 증가", + "ImmunityAvoidPoisonChance": "중독되지 않을 확률 [{0:0%}] 증가", "ImmunityDescription": "[Immunity]\n질병에 대한 면역력과 질병 치료의 효과에 영향을 줍니다.", - "ImmunityLevelingUpDescription": "The Immunity skill is improved by being under the effects of poisoning and other negative effects of stimulants.", - "ImmunityMiscEffects": "자극제, 음식, 음료의 모든 부작용 [{0:0.#%}] 감소", - "ImmunityMiscEffectsChance": "자극제, 음식, 음료의 부작용에 대한 내성이 생길 확률 최대 [{0:0.#%}]", - "ImmunityPainKiller": "진통제 작용 시간 [{0:0.#%}] 증가", - "ImmunityPoisonBuff": "중독 효과의 강도 [{0:0.#%}] 감소", - "ImmunityPoisonChance": "독에 대한 내성이 생길 확률 [{0:0.#%}]", + "ImmunityMiscEffects": "자극제, 음식, 음료의 모든 부작용 [{0:0%}] 감소", + "ImmunityMiscEffectsChance": "자극제, 음식, 음료의 부작용에 대한 내성이 생길 확률 [{0:0%}]", + "ImmunityPainKiller": "진통제 작용 시간 [{0:0%}] 증가", + "ImmunityPoisonBuff": "중독 효과의 강도 [{0:0%}] 감소", + "ImmunityPoisonChance": "독에 대한 내성이 생길 확률 [({0:0%})]", "In equipment": "장착 중인 장비", "InMenu": "메뉴", "InRaid": "레이드", @@ -13472,10 +13420,9 @@ "IntellectEliteAmmoCounter": "탄약 카운터", "IntellectEliteContainerScope": "확인하지 않고 컨테이너 내용물을 추측", "IntellectEliteNaturalLearner": "아이템 조사를 할 때 매뉴얼이 필요하지 않습니다", - "IntellectLearningSpeed": "아이템 확인 속도 [{0:0.#%}] 증가", - "IntellectLevelingUpDescription": "The Intellect skill is improved by examining previously unidentified items and repairing weapons.", - "IntellectRepairPointsCostReduction": "수리 키트 소모량 [{0:0.#%}] 감소", - "IntellectWeaponMaintance": "무기 수리 효율 [{0:0.#%}] 증가", + "IntellectLearningSpeed": "아이템 확인 속도 [{0:0%}] 증가", + "IntellectRepairPointsCostReduction": "수리 키트 소모량 [{0:0%}] 감소", + "IntellectWeaponMaintance": "무기 수리 효율 [{0:0%}] 증가", "IntelligenceCenter": "정보 시설", "Intensity:": "강도:", "Interact": "상호 작용", @@ -13644,8 +13591,7 @@ "LH": "LH", "LL": "LL", "LMG": "경기관총", - "LMGDescription": "[LMGs]\n경기관총을 다루는 능력, 반동을 제어하는 능력, 재장전 속도를 향상시켜줍니다.", - "LMGLevelingUpDescription": "The Light Machine Guns weapon skill is improved by firing and reloading the corresponding weapon type.", + "LMGDescription": "[LMGs]\n경기관총 스킬은 경기관총을 전반적으로 다루는 능력을 향상시켜주고, 반동을 줄여주고 재장전 속도를 빠르게 해줍니다.", "LOAD": "탄창 결합", "LOAD FROM DIRECTORY...": "경로에서 불러오기", "LOAD FROM FILE...": "파일 불러오기", @@ -13666,8 +13612,7 @@ "LastHeroDescription": "A fight with the opponents in endless gunfight. There will be only one winner.", "LastHeroDescriptionShort": "You are on your own", "Launcher": "로켓 발사기", - "LauncherDescription": "[Rocket Launchers]\n로켓 발사기를 다루는 능력, 반동을 제어하는 능력, 재장전 속도를 향상시켜줍니다.", - "LauncherLevelingUpDescription": "유탄 발사기를 발사하고, 재장전하면 스킬을 향상시킬 수 있습니다.", + "LauncherDescription": "[Rocket Launchers]\n로켓 발사기를 다루는 기술", "LeanLockLeft": "왼쪽으로 기울이기", "LeanLockRight": "오른쪽으로 기울이기", "LeanX negative": "왼쪽으로 부드럽게 기울이기", @@ -13686,7 +13631,7 @@ "Left the Action": "작전 중 이탈", "LeftAlt": "왼쪽 Alt", "LeftArm": "왼팔", - "LeftStance": "숄더 트랜지션", + "LeftStance": "Shoulder transition", "Less than 5": "5발 미만", "Less than half": "절반 미만", "Level ": "레벨:", @@ -13698,13 +13643,12 @@ "Light": "경갑", "LightBleeding": "가벼운 출혈", "LightVestBleedingProtection": "경 방탄복으로 보호받는 신체 부위는 출혈 면역이 됩니다", - "LightVestDeteriorationChanceOnRepairReduce": "수리할 때 최대 내구도가 감소할 확률 [50%] 감소", - "LightVestMeleeWeaponDamageReduction": "경 방탄복으로 보호받는 신체 부위의 근접 공격 피해량 [{0:0.#%}] 감소", - "LightVestMoveSpeedPenaltyReduction": "경 방탄복 착용으로 인한 이동속도 페널티 [{0:0.#%}] 감소", - "LightVestRepairDegradationReduction": "수리 키트를 사용할 때 최대 내구도 감소량이 [{0:0.#%}] 줄어듭니다", + "LightVestDeteriorationChanceOnRepairReduce": "수리할 때 최대 내구도가 감소하지 않을 확률 (50%)", + "LightVestMeleeWeaponDamageReduction": "경 방탄복으로 보호받는 신체 부위의 근접 공격 피해량 [{0:0%}] 감소", + "LightVestMoveSpeedPenaltyReduction": "경 방탄복 착용으로 인한 이동속도 페널티 [{0:0%}] 감소", + "LightVestRepairDegradationReduction": "수리 키트를 사용할 때 최대 내구도 감소량이 [{0:0%}] 줄어듭니다", "LightVests": "경장갑", "LightVestsDescription": "[Light Vests]\n경 방탄복 착용 기술은 기동성을 향상시키고 몸에 가해지는 관통상과 근접 무기 피해를 줄입니다", - "LightVestsLevelingUpDescription": "The Light Vests skill is improved by repairing light body armor and ballistic plates with repair kits.", "Lighthouse": "등대", "Lighthouse_pass": "Path to Lighthouse", "Lighting quality:": "조명 품질:", @@ -13742,7 +13686,7 @@ "LootGeneric": "LOOT GENERIC", "Looting": "파밍.", "LootingCategory": "파밍", - "Lose": "패배", + "Lose": "Defeat", "Lower body": "하의", "Loyalty level (LL)": "우호도 레벨 (LL)", "Luma sharpen:": "Luma sharpen(선명도):", @@ -13756,7 +13700,6 @@ "MAP": "지도", "MASTERING": "숙련도", "MATERIAL": "재질", - "MAX AMMO DAMAGE": "피해량", "MAXCOUNT": "장탄 수", "MAXIMUM THROW DAMAGE": "파편 당 최대 피해량", "MED USE TIME": "의약품 사용시간", @@ -13805,31 +13748,30 @@ "MagDrills": "탄창 훈련", "MagDrillsDescription": "[Mag Drills]\n탄창을 다루는 기술 - 삽탄, 탄약 빼내기, 남은 탄약 확인.", "MagDrillsInstantCheck": "탄창이 인벤토리로 들어왔을 때 즉시 탄약이 얼마나 들어있는지 확인됩니다", - "MagDrillsInventoryCheckAccuracy": "인벤토리에서 탄창 잔량 확인 시 정확도 [{0:0.#}%] 증가", - "MagDrillsInventoryCheckSpeed": "인벤토리에서 탄창 잔량 확인 속도 [{0:0.#}%] 증가", - "MagDrillsLevelingUpDescription": "The Mag Drills skill is improved by loading, unloading, and checking magazines.", + "MagDrillsInventoryCheckAccuracy": "인벤토리에서 탄창 잔량 확인 시 정확도 [{0}%] 증가", + "MagDrillsInventoryCheckSpeed": "인벤토리에서 탄창 잔량 확인 속도 [{0}%] 증가", "MagDrillsLoadProgression": "삽탄 속도가 더 빨라짐", - "MagDrillsLoadSpeed": "삽탄 속도 [{0:0.#}%] 증가", - "MagDrillsUnloadSpeed": "탄창에서 탄약 빼는 속도 [{0:0.#}%] 증가", - "MagPreset/CaliberNotSelected": "구경이 선택되지 않았습니다", - "MagPreset/DiscardCahangesDescription": "저장하지 않은 변경사항은 반영되지 않습니다.\n계속 하시겠습니까?", - "MagPreset/Error/ContainsMissingItems": "탄약을 찾을 수 없습니다:", - "MagPreset/HasMissingItems": "탄약이 부족합니다.", - "MagPreset/InvalidName{0}": "올바르지 않은 프리셋 이름입니다 \"{0}\".", - "MagPreset/LoadingComplete": "탄창이 장전되었습니다", - "MagPreset/PresetRemoved{0}": "\"{0}\" 프리셋이 삭제되었습니다", - "MagPreset/PresetRenamed{0}": "프리셋 이름이 \"{0}\" 로 변경되었습니다", - "MagPreset/PresetSaved{0}": "\"{0}\" 프리셋이 저장되었습니다.", - "MagPreset/RemoveCaption": "프리셋 삭제", - "MagPreset/RemoveMessage{0}": "정말 \"{0}\" 프리셋을 삭제하시겠습니까?", - "MagPreset/ReplaceMessage": "동일한 이름의 프리셋이 있습니다.\n덮어씌우시겠습니까?", - "MagPreset/SetNameWindowCaption": "프리셋 이름 변경", - "MagPreset/SetNameWindowPlaceholder": "프리셋 이름을 입력하세요", + "MagDrillsLoadSpeed": "삽탄 속도 [{0}%] 증가", + "MagDrillsUnloadSpeed": "탄창에서 탄약 빼는 속도 [{0}%] 증가", + "MagPreset/CaliberNotSelected": "Caliber not specified", + "MagPreset/DiscardCahangesDescription": "Any unsaved changes will be lost.\nContinue?", + "MagPreset/Error/ContainsMissingItems": "Ammo not found:", + "MagPreset/HasMissingItems": "Not enough ammo to load.", + "MagPreset/InvalidName{0}": "Invalid preset name \"{0}\".", + "MagPreset/LoadingComplete": "Magazines have been loaded", + "MagPreset/PresetRemoved{0}": "Preset \"{0}\" was deleted.", + "MagPreset/PresetRenamed{0}": "Preset was renamed \"{0}\".", + "MagPreset/PresetSaved{0}": "Preset \"{0}\" was saved.", + "MagPreset/RemoveCaption": "Delete preset", + "MagPreset/RemoveMessage{0}": "Are you sure you want to delete preset \"{0}\"?", + "MagPreset/ReplaceMessage": "Preset with the same name already exists.\nReplace it?", + "MagPreset/SetNameWindowCaption": "Rename preset", + "MagPreset/SetNameWindowPlaceholder": "Enter preset name", "MagPreset/Tooltip/CaliberLimitReached": "Can't save more presets of the same caliber", - "MagPreset/Tooltip/HasNoChanges": "변경된 것이 없습니다", - "MagPreset/Tooltip/IncompatibleAmmo": "호환되지 않는 탄약입니다", + "MagPreset/Tooltip/HasNoChanges": "No changes to save", + "MagPreset/Tooltip/IncompatibleAmmo": "Incompatible ammo", "MagPreset/Tooltip/LoopAmmoRequired": "Must have ammo in the loop", - "MagPreset/Tooltip/NoMagsSelected": "탄창이 선택되지 않았습니다", + "MagPreset/Tooltip/NoMagsSelected": "No selected magazines", "MagPreset/Tooltip/TotalLimitReached": "Maximum number of presets reached", "Magazine": "탄창", "Magazine checked: ": "탄창 확인: ", @@ -13870,7 +13812,7 @@ "MatTitan": "티타늄", "MatUHMWPE": "초고분자량 폴리에틸렌", "Match canceled": "The match is canceled. You can leave the game freely. Money for the match will be refunded. Rating will not be deducted.", - "MatchEndExpBonus": "매치 결과 보너스", + "MatchEndExpBonus": "Match results bonus", "Matchend/ErrorUpdatingDataForHealing": "데이터를 불러오지 못했습니다. 네트워크 상태를 점검해 보세요. 치료 화면으로 다시 돌아가시겠습니까? 아니면 메인화면으로 가시겠습니까?", "Matching...": "매칭 중...", "Max S in a row": "연속 생존 횟수", @@ -13881,41 +13823,38 @@ "Meds": "의약품", "Melee": "근접무기", "MeleeDescription": "[Melee]\n근접무기를 다루는 기술", - "MeleeLevelingUpDescription": "The Melee skill is improved by striking enemies with melee weapons.", "Memory": "기억력", "MemoryDescription": "[Memory]\n한번 훈련된 스킬은 쉽게 잊어버리지 않습니다", "MemoryEliteMentalNoDegradation": "어떠한 스킬도 잊어버리지 않습니다", - "MemoryLevelingUpDescription": "The Memory skill is improved by", - "MemoryMentalForget1": "스킬 잊어버리는 비율 [{0:0.#%}] 감소", - "MemoryMentalForget2": "스킬 레벨 롤백 [{0:0.#%}] 감소", + "MemoryMentalForget1": "스킬 잊어버리는 비율 [{0:0%}] 감소", + "MemoryMentalForget2": "스킬 레벨 롤백 [{0:0%}] 감소", "Mental": "정신", "Merchant": "상인", "Metabolism": "신진대사", "MetabolismDescription": "[Metabolism]\n건강한 신진대사는 식품과 음료의 효과가 더 오래 지속되도록 해 주며 육체적 능력을 오랫동안 유지시킬 수 있도록 도와줍니다.", "MetabolismEliteBuffNoDyhydration": "[Metabolism]\n탈진(exhaustion)과 탈수(dehydration) 상태로 인한 피해를 받지 않습니다", "MetabolismEliteNoForget": "모든 육체 스킬들을 잊어버리지 않습니다", - "MetabolismEnergyExpenses": "에너지 및 수분 소모율 [{0:0.#%}] 감소", - "MetabolismLevelingUpDescription": "The Metabolism skill is improved by consuming energy and water supplies.", - "MetabolismMiscDebuffTime": "자극제, 음식, 음료의 부작용 지속시간 [{0:0.#%}] 감소", - "MetabolismPhysicsForget": "육체 스킬을 잊을 때 줄어드는 비율 [{0:0.#%}] 감소", + "MetabolismEnergyExpenses": "에너지 및 수분 소모모량 감소 [{0:0%}]", + "MetabolismMiscDebuffTime": "자극제, 음식, 음료의 부작용 지속시간 [{0:0%}] 감소", + "MetabolismPhysicsForget": "육체 스킬을 잊을 때 줄어드는 비율 [{0:0%}] 감소", "MetabolismPhysicsForget2": "Decreases maximum scale of forgetting Physical skills", "MetabolismPhysicsNoForget": "더 이상 육체 스킬들을 잊어버리지 않습니다", - "MetabolismPoisonTime": "중독 효과 지속시간 [{0:0.#%}] 감소", - "MetabolismRatioPlus": "음식과 음료의 긍정적 효과 [{0:0.#%}] 증가", + "MetabolismPoisonTime": "중독 효과 지속시간 [{0:0%}] 감소", + "MetabolismRatioPlus": "음식과 음료의 긍정적 효과 [{0:0%}] 증가", "Microphone sensitivity:": "마이크 감도:", "MildMusclePain": "가벼운 근육통", "Military Checkpoint": "Scav checkpoint", "Min": "분", "Min payment:": "최소 지불 금액:", "MinCheckLevel": "최소 확인 레벨", - "MinutesShort": "분", + "MinutesShort": "MIN", "MipStreamingBufferSize:": "Mip Streaming 버퍼 크기", "Misc": "기타", "MiscDescription": "기타 무기들을 다루는 기술", "MisfireEffect": "Panic attack", "Missed in Action": "작전 중 실종", "Mod": "부품", - "ModeUnavailable": "사용할 수 없는 모드", + "ModeUnavailable": "Mode unavailable", "Monitor parameters": "모니터 설정값", "Most leveled": "높은 레벨 순", "Most recent": "최근 습득 순", @@ -13937,7 +13876,7 @@ "MumbleQuick": "빠른 음성 명령 사용", "Mute": "음소거", "Mute other players": "다른 플레이어의 음성 채팅 음소거", - "MuteVoip": "음성채팅 및 라디오 음소거하기", + "MuteVoip": "Mute VoIP & Radio", "NDA Policy warning": "현재 플레이하시는 베타 버전은 최종 완성물이 아니며, 연관된 자료 (영상, 스트리밍, 또는 스크린샷) 를 공개하는 것은 NDA 방침에 의해 엄격히 금지되어 있습니다. 이해해 주시고 지원해 주셔서 정말 감사드립니다!", "NDA free warning": "현재 플레이하시는 베타 버전은 최종 완성물이 아닙니다. 이해해 주시고 지원해 주셔서 정말 감사드립니다.", "NEEDAMMO": "NEED AMMO", @@ -13970,7 +13909,7 @@ "NVidia Reflex settings will be applied after restart.": "NVIDIA Reflex 설정은 게임 재시작 후에 적용됩니다.", "NW Exfil": "Railway Exfil", "Nakatani_stairs_free_exit": "Nakatani Basement Stairs", - "Nape": "뒷머리", + "Nape": "뒤통수", "NeededSearch": "[필요 검색]", "NetworkError/SessionLostErrorMessage": "세션 만료. 다시 로그인하셔야 합니다.", "NetworkError/TooManyFriendRequestsHeader": "요청이 너무 많습니다", @@ -14008,11 +13947,11 @@ "NoFutureUpgrades": "다음 단계 없음", "NoSignal": "신호 없음", "Noise": "노이즈", - "NoiseSuppressionLevels/Disabled": "끄기", - "NoiseSuppressionLevels/High": "높음", - "NoiseSuppressionLevels/Low": "낮음", - "NoiseSuppressionLevels/Moderate": "보통", - "NoiseSuppressionLevels/VeryHigh": "매우 높음", + "NoiseSuppressionLevels/Disabled": "Disabled", + "NoiseSuppressionLevels/High": "High", + "NoiseSuppressionLevels/Low": "Low", + "NoiseSuppressionLevels/Moderate": "Moderate", + "NoiseSuppressionLevels/VeryHigh": "Very high", "Non-authentic": "인증되지 않음", "Not available in alpha": "현재 베타 버전에서는 이용할 수 없습니다.", "Not available in raid": "레이드 도중에는 할 수 없음", @@ -14081,7 +14020,7 @@ "OfflineRaid/StartAsGroup": "파티와 함께 시작", "OfflineRaid/startasgrouptooltip": "이 옵션을 선택하면 모든 플레이어가 같은 장소에서 시작합니다", "OfflineRaidScreen/WarningHeader": "주의! 연습 모드에서 플레이한 내용은 저장되지 않습니다!", - "OfflineRaidScreen/WarningText": "협동 플레이를 하려면 모든 파티원들이 Edge of Darkness 에디션 또는 Co-op 확장팩을 구입한 상태여야 합니다.\n협동 모드는 Escape from Tarkov 서버 내에서 진행됩니다.", + "OfflineRaidScreen/WarningText": "협동 플레이를 하려면 모든 파티원들이 Edge of Darkness 에디션을 구입한 상태여야 합니다.\n협동 모드는 Escape from Tarkov 서버 내에서 진행됩니다.", "Old Azs Gate": "Old Gas Station Gate", "Old Gas Station": "Old Gas Station", "Old Road Gate": "Old Road Gate", @@ -14102,12 +14041,12 @@ "OpticCalibrationSwitchUp": "영점 조절 거리 올리기", "Other": "기타", "OtherPlayerProfile/AchievementGlobalProgressTooltip": "{0}%의 플레이어가 도전과제를 획득함", - "OtherPlayerProfile/FavoriteItems": "선호하는 아이템", - "OtherPlayerProfile/FavoriteWeapons": "선호하는 무기", + "OtherPlayerProfile/FavoriteItems": "Favorite items", + "OtherPlayerProfile/FavoriteWeapons": "Favorite weapons", "OtherPlayerProfile/NpcProfileError": "{0} profile hidden", "OtherPlayerProfile/PlaceholderAchievements": "획득하지 못한 도전과제", - "OtherPlayerProfile/PlaceholderItems": "선호하는 아이템 없음", - "OtherPlayerProfile/PlaceholderWeapons": "선호하는 무기 없음", + "OtherPlayerProfile/PlaceholderItems": "No favorite items", + "OtherPlayerProfile/PlaceholderWeapons": "No favorite weapons", "OtherPlayerProfile/RareAchievements": "희귀 도전과제", "Out of Stock": "매진", "Outskirts": "Outskirts", @@ -14137,18 +14076,16 @@ "Pending requests": "보류 중인 요청", "Perception": "인지능력", "PerceptionDescription": "[Perception]\n소리를 들을 수 있는 거리를 증가시켜주고, 조준 집중력을 향상시켜 주며, 가까이 있는 물건을 더 쉽게 발견하게 해 줍니다.", - "PerceptionFov": "정조준 집중력 [{0:0.#%}] 증가", - "PerceptionHearing": "가청거리 [{0:0.#%}] 증가", - "PerceptionLevelingUpDescription": "The Perception skill is improved by finding and picking up any items.", - "PerceptionLootDot": "아이템 감지 범위 [{0:0.#%}] 증가", + "PerceptionFov": "정조준 집중력 [{0:0%}] 증가", + "PerceptionHearing": "가청거리 [{0:0%}] 증가", + "PerceptionLootDot": "아이템 감지 범위 [{0:0%}] 증가", "PerceptionmEliteNoIdea": "근접한 아이템 표시", "Perish": "매우 추운", "Physical": "육체", "Pier Boat": "Pier Boat", "Pistol": "권총", "Pistol Mastering": "권총", - "PistolDescription": "[Pistols]\n권총을 다루는 능력, 반동을 제어하는 능력, 재장전 속도를 향상시켜줍니다.", - "PistolLevelingUpDescription": "권총을 발사하고, 재장전하면 스킬을 향상시킬 수 있습니다.", + "PistolDescription": "[Pistols]\n권총 스킬은 권총을 전반적으로 다루는 능력을 향상시켜주고, 반동을 줄여주고 재장전 속도를 빠르게 해줍니다.", "PlaceOfFame": "진열장", "PlantLocationDescription": "[Factory, 팩토리]\n16번 화학공장의 산업 단지 및 설비는 테라그룹(TerraGroup)이 불법으로 임대했던 장소입니다. Contract Wars 기간 동안에 USEC과 BEAR는 타르코프 산업단지의 통제권을 얻고자 했었고, 공장 부지에서 수많은 총격전을 벌였습니다.\n시간이 지남에 따라 이 공장 부지는 민간인과 스캐브의 은신처로 사용되었고, 때때로 USEC과 BEAR의 요원들도 이 지역에 머무르기도 했습니다.", "Player": "플레이어", @@ -14219,10 +14156,9 @@ "Prone": "엎드리기", "ProneMovement": "포복 기동", "ProneMovementDescription": "[Prone Movement]\n포복 기동은 포복 시 움직임을 더 빠르고 조용하게 해줍니다.", - "ProneMovementElite": "포복 이동 속도 [{0:0.#%}] 증가", - "ProneMovementLevelingUpDescription": "The Prone Movement skill is improved by moving while in a prone position.", - "ProneMovementSpeed": "포복 이동 속도 [{0:0.#%}] 증가", - "ProneMovementVolume": "포복 이동 시 소리 [{0:0.#%}] 감소", + "ProneMovementElite": "포복 이동 속도 증가 [{0:0%}]", + "ProneMovementSpeed": "포복 이동 속도 증가 [(+{0:0%})]", + "ProneMovementVolume": "포복 이동 시 소리 감소[(+{0:0%})]", "Protect objective {0:F1}": "목표물 보호 중 {0:F1}", "QUEST ITEM": "퀘스트 아이템", "QUEST ITEMS": "퀘스트 아이템", @@ -14410,9 +14346,8 @@ "Recoil Up": "수직 반동", "RecoilControl": "반동 제어", "RecoilControlDescription": "[Recoil Control]\n반동 제어는 수평 반동을 줄이며, 반동을 더욱 일정하게 만듭니다.", - "RecoilControlElite": "반동 제어 [{0:0.#%}] 향상", - "RecoilControlImprove": "반동 제어 [{0:0.#%}] 향상", - "RecoilControlLevelingUpDescription": "The Recoil Control skill is improved by continuous shooting. The higher the base recoil of the weapon, the faster the skill improves.", + "RecoilControlElite": "반동 제어 향상 [{0:0%}]", + "RecoilControlImprove": "반동 제어 향상 [{0:0%}]", "RecommendedVRAM:": "권장하는 VRAM", "Reconnection is not available at this moment due to testing purposes": "테스트를 위해 재접속이 불가능합니다.", "RedRebel_alp": "Climber's Trail", @@ -14442,10 +14377,9 @@ "Report game bug abuse": "게임 버그 악용 신고", "Report offensive nickname": "닉네임 신고", "Report suspected cheat use": "치트 사용 의심 신고", - "Report suspicious profile": "의심되는 프로필 신고", - "ReportAbuseBug": "버그 악용 신고", - "ReportAbuseVoip": "음성채팅 및 라디오 남용 신고", - "ReportCheater": "치트 사용 의심 신고", + "ReportAbuseBug": "Report bug abuse", + "ReportAbuseVoip": "Report VoIP & Radio abuse", + "ReportCheater": "Report suspected cheater", "ReportNickname": "닉네임 신고", "Reports/ChangeNickname/BanMessage": "You are banned from changing your nickname", "Reports/ChangeNickname/UnBanMessage": "You are no longer banned from changing your nickname", @@ -14477,8 +14411,7 @@ "Revert your settings to default?": "정말로 설정을 기본값으로 되돌리시겠습니까?", "Revolver": "리볼버", "Revolver Mastering": "리볼버", - "RevolverDescription": "[Revolvers]\n리볼버를 다루는 능력, 반동을 제어하는 능력, 재장전 속도를 향상시켜줍니다.", - "RevolverLevelingUpDescription": "리볼버를 발사하고, 재장전하면 스킬을 향상시킬 수 있습니다.", + "RevolverDescription": "[Revolvers]\n리볼버 조작 기술.", "RezervBase": "리저브", "Rig": "리그", "Right Arm": "오른쪽 팔", @@ -14499,7 +14432,7 @@ "SCAV_FREE4ALL": "Path to Shoreline", "SCAV_Industrial_Zone": "Industrial Zone Gates", "SCAV_Underboat_Hideout": "Hideout Under the Landing Stage", - "SD Tarkov Streets": "타르코프 시내 낮은 텍스처 해상도 모드", + "SD Tarkov Streets": "Streets of Tarkov Lower Texture Resolution Mode", "SE Exfil": "Emercom Checkpoint", "SEARCHING...": "확인중", "SECURED": "확보함", @@ -14527,8 +14460,7 @@ "SKILLS_SPEED_DOWN": "레벨링 속도 감소", "SKILLS_SPEED_UP": "레벨링 속도 증가", "SMG": "기관단총", - "SMGDescription": "[SMGs]\n기관단총을 다루는 능력, 반동을 제어하는 능력, 재장전 속도를 향상시켜줍니다.", - "SMGLevelingUpDescription": "기관단총을 발사하고, 재장전하면 스킬을 향상시킬 수 있습니다.", + "SMGDescription": "[SMGs]\n기관단총 스킬은 기관단총을 전반적으로 다루는 능력을 향상시켜주고, 반동을 줄여주고 재장전 속도를 빠르게 해줍니다.", "SNIPERPHRASE": "SNIPER", "SO": "SO", "SOUND": "음향", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "평판({0})이 {1} 만큼 증가했습니다", "Sandbox": "그라운드 제로", "Sandbox_VExit": "Police Cordon V-Ex", - "Sandbox_high": "그라운드 제로", "Saturation:": "채도:", "Savage matchmaker": "무작위로 설정된 장비를 가진 현지 약탈자, 스캐브로 레이드에 참가합니다. 타르코프는 당신의 고향이며 타르코프의 법은 당신이 정합니다!", "SavageBannerDescription": "스캐브(Scav)로서 진행하는 레이드는 PMC로 진행하는 레이드와 다릅니다. 유저 스캐브는 레이드 도중 임의의 위치에 무작위로 배치받으며, 해당 스캐브의 체력과 장비 또한 무작위로 결정됩니다. 스캐브(Scav)로 탈출하는 데 성공할 경우, 해당 스캐브가 가지고 있던 장비를 창고로 옮길 수 있게 됩니다. 스캐브(Scav)로 레이드에 성공하여 얻는 경험치는 PMC와 호환되지 않으며, 스캐브(Scav)로 사망하는 것 또한 본 캐릭터에게 아무런 영향을 주지 않습니다.", @@ -14585,7 +14516,6 @@ "Search": "확인", "SearchDescription": "[Search]\n확인 스킬이 오를수록 시체나 보관함을 확인하는 속도와 능률이 증가합니다", "SearchDouble": "동시에 두 개를 확인할 수 있습니다", - "SearchLevelingUpDescription": "The Search skill is improved by searching containers.", "SecondPrimaryWeapon": "주무기 2", "SecondaryWeapon": "보조 무기(권총집)", "SecuredContainer": "파우치", @@ -14596,11 +14526,11 @@ "Select friends to add:": "추가할 친구 선택:", "Select pre-saved weapon build": "저장된 무기 프리셋 선택", "Select to auto fill requirements": "요구사항 자동 선택", - "SelectedPreset": "선택된 프리셋", + "SelectedPreset": "Selected preset", "SelectedQuest": "선택한 임무", "Sells:": "판매:", "SendFriendsRequest": "친구 요청 보내기", - "SendReports": "신고하기", + "SendReports": "Report", "Server shutdown in {0} min!": "서버가 {0} 분 이내로 닫힙니다!", "Services:": "서비스:", "Session Search": "세션 검색", @@ -14619,7 +14549,7 @@ "Settings/Graphics/FSR2ModeTooltip": "AMD FidelityFX Super Resolution 2.2 (FSR)는 해상도를 일부러 낮게 렌더링 한 후 원래 해상도로 화면을 늘리고 화면을 다듬어서 보여주는 기술로 게임의 프레임을 상승시켜주지만 화면 품질이 조금 낮아질 수 있습니다.", "Settings/Graphics/FSRLockThis": "FSR 켜짐", "Settings/Graphics/FSRModeTooltip": "AMD FidelityFX Super Resolution (FSR)는 해상도를 일부러 낮게 렌더링 한 후 원래 해상도로 화면을 늘리고 화면을 다듬어서 보여주는 기술로 게임의 프레임을 상승시켜주지만 화면 품질이 조금 낮아질 수 있습니다.", - "Settings/Graphics/FSRTooLowResolution": "이 옵션을 사용하기에 해상도가 너무 낮습니다", + "Settings/Graphics/FSRTooLowResolution": "Screen resolution is too low for this setting", "Settings/Graphics/High": "높음", "Settings/Graphics/Low": "낮음", "Settings/Graphics/Medium": "보통", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "일부 설정이 변경되었습니다. 변경된 내용을 저장하겠습니까?", "Settings/Sound/BinauralSound": "방향감 개선(Binaural audio)", "Settings/Sound/ChatVolume": "채팅 음량:", - "Settings/Sound/CommentatorVolume": "아나운서 소리:", "Settings/Sound/Device": "오디오 장치", "Settings/Sound/HideoutVolume": "은신처 음량:", "Settings/Sound/InterfaceVolume": "인터페이스 음량:", "Settings/Sound/MusicOnRaidEnd": "레이드 종료 시 배경음악 재생", "Settings/Sound/MusicVolume": "음악 음량:", "Settings/Sound/OverallVolume": "전체 음량:", - "Settings/Sound/ReadyToMatchSoundVolume": "매치 수락 화면 소리:", "Settings/UnavailablePressType": "비활성화됨", "SevereMusclePain": "극심한 근육통", "Shack": "Military Base CP", @@ -14676,8 +14604,7 @@ "Shorl_free_scav": "Path to Shoreline", "Shotgun": "산탄총", "Shotgun Mastering": "산탄총", - "ShotgunDescription": "[Shotguns]\n산탄총을 다루는 능력, 반동을 제어하는 능력, 재장전 속도를 향상시켜줍니다.", - "ShotgunLevelingUpDescription": "산탄총을 발사하고, 재장전하면 스킬을 향상시킬 수 있습니다.", + "ShotgunDescription": "[Shotguns]\n산탄총 스킬은 산탄총을 전반적으로 다루는 능력을 향상시켜주고, 반동을 줄여줍니다.", "Show icons": "아이콘 표시", "Show:": "보기:", "SightingRange": "조준 거리", @@ -14698,10 +14625,9 @@ "Smg Mastering": "기관단총", "Smuggler's Boat": "Smuggler's Boat", "Smugglers_Trail_coop": "Smuggler's Path (Co-op)", - "Sniper": "볼트액션 소총", + "Sniper": "저격소총", "Sniper Roadblock": "Sniper Roadblock", - "SniperDescription": "[Bolt-action Rifles]\n볼트액션 소총을 다루는 능력, 반동을 제어하는 능력, 재장전 속도를 향상시켜줍니다.", - "SniperLevelingUpDescription": "볼트액션 소총들을 발사하고, 재장전하면 스킬을 향상시킬 수 있습니다.", + "SniperDescription": "[Sniper]\n저격소총 스킬은 저격소총을 전반적으로 다루는 능력을 향상시켜주고, 반동을 줄여주고 재장전 속도를 빠르게 해줍니다.", "SniperRifle": "저격소총", "SniperRifle Mastering": "저격소총", "Sniper_exit": "Mira Ave", @@ -14734,8 +14660,6 @@ "StartInGroup": "함께 시작", "StartLookingForGroup": "파티 찾기 시작", "StartNotInGroup": "따로 시작", - "StashLinesExternalObtain": "창고 업그레이드", - "StashLinesExternalObtain/Tooltip": "창고 업그레이드는 웹사이트에서 구매할 수 있습니다", "StatFoundMoneyEUR": "발견한 유로", "StatFoundMoneyRUB": "발견한 루블", "StatFoundMoneyUSD": "발견한 달러", @@ -14770,22 +14694,20 @@ "StomachBloodloss": "복부 출혈", "Stop looking for group": "파티 찾기 중단", "Strength": "근력", - "StrengthBuffAim": "정조준을 유지할 때 소모되는 스태미나량 [{0:0.#%}] 감소", + "StrengthBuffAim": "정조준을 유지할 때 소모되는 스태미나량 [{0:0%}] 감소", "StrengthBuffElite": "장비하고 있는 무기의 무게가 캐릭터 전체 무게에서 제외됩니다 (배낭 속에 들어있는 무기는 이 효과를 받지 않습니다)", - "StrengthBuffJumpHeightInc": "점프 높이 [{0:0.#%}] 증가", - "StrengthBuffLiftWeightInc": "들 수 있는 무게 [{0:0.#%}] 증가", - "StrengthBuffMeleeCrits": "근접무기로 치명타를 입힐 확률 [{0:0.#%}] 증가", - "StrengthBuffMeleePowerInc": "근접 공격 위력 [{0:0.#%}] 증가", - "StrengthBuffSprintSpeedInc": "이동속도 및 전력질주 속도 [{0:0.#%}] 증가", - "StrengthBuffThrowDistanceInc": "투척 거리 [{0:0.#%}] 증가", + "StrengthBuffJumpHeightInc": "점프 높이 [{0:0%}] 증가", + "StrengthBuffLiftWeightInc": "들 수 있는 무게 [{0:0%}] 증가", + "StrengthBuffMeleeCrits": "근접무기로 치명타를 입힐 확률 [({0})]", + "StrengthBuffMeleePowerInc": "근접 공격 위력 [{0:0%}] 증가", + "StrengthBuffSprintSpeedInc": "움직임과 전력질주 속도 [{0:0%}] 증가", + "StrengthBuffThrowDistanceInc": "투척류 던지는 거리 [{0:0%}] 증가", "StrengthDescription": "[Strength]\n힘이 증가하게 되면 더 높이 뛰고, 더 빠르게 달리고, 더 강하게 때리고, 더욱 멀리 던질 수 있게 됩니다. 무엇보다 더 많은 무게를 짊어질 수 있게 됩니다.", - "StrengthLevelingUpDescription": "The Strength skill is improved by sprinting with the overweight status effect, throwing grenades, using melee weapons, and by working out in the Hideout gym.", "StressBerserk": "버서커 모드 활성화", - "StressPainChance": "통증쇼크 확률 [{0:0.#%}] 감소", + "StressPainChance": "통증쇼크 확률 [{0:0%}] 감소", "StressResistance": "스트레스 저항력", "StressResistanceDescription": "[Stress Resistance]\n스트레스 저항은 부상으로 인한 쇼크 발생 확률을 줄이고 고통으로 인한 떨림을 완화시켜 줍니다.", - "StressResistanceLevelingUpDescription": "The Stress Resistance skill is improved by receiving damage. Having the Pain status effect without using painkillers also improves this skill.", - "StressTremor": "떨림 효과 [{0:0.#%}] 감소", + "StressTremor": "떨림 [{0:0%}] 감소", "StringSeparator/Or": " 또는 ", "Stun": "기절", "Subtask completed:": "부가 목표 달성:", @@ -14797,35 +14719,35 @@ "Subtitles/keeper_buy_07": "[{\"s\":0,\"e\":1,\"t\":\"알겠네.\"}]", "Subtitles/keeper_buy_08": "[{\"s\":0,\"e\":1,\"t\":\"돌아갈 때는 눈 크게 뜨고 항상 조심하게.\"}]", "Subtitles/keeper_buy_09": "[{\"s\":0,\"e\":1,\"t\":\"이거 구하기 힘든 물건이야.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_01": "[{\"s\":0,\"e\":3,\"t\":\"내가 누군지는 중요하지 않네.\"},{\"s\":3.1,\"e\":5,\"t\":\"자네가 누군지, 왜 여기 왔는지가 중요하지.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_02": "[{\"s\":0,\"e\":6,\"t\":\"나는 등대지기라네. 나는 모든 것과 모든 이를 지켜보지, 그래고 모두가 내 빛을 볼 수 있다네.\"},{\"s\":6.1,\"e\":12,\"t\":\"불안정한 시기에, 필요한 정보를 확보하는 건 필수라네.\"},{\"s\":12.1,\"e\":18,\"t\":\"정보는 연결을 만들어내고, 연결은 곧 기회가 되지.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_03": "[{\"s\":0,\"e\":6,\"t\":\"그래. 주변 환경을 변화시키고 결과적으로 현실을 바꿀 수 있는 기회.\"},{\"s\":6.1,\"e\":10,\"t\":\"이런 환경에서 인간에게 필요한 기본적인 것이 바로 생존이라네.\"},{\"s\":10.1,\"e\":15,\"t\":\"나는 단순히 생존하는 것에서 멈추고 싶지 않네, 나는 생존을 통제하고 싶어.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_04": "[{\"s\":0,\"e\":6,\"t\":\"생존자에게는 그렇겠지. 생존을 보장해 주는 사람에겐 모든 것이 다르다네.\"},{\"s\":6.1,\"e\":14,\"t\":\"우리는 이유가 있기에 만났지. 모든 사건에는 의미가 있으며, 우연은 없다네.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_05": "[{\"s\":0,\"e\":4,\"t\":\"자네가 먼저 날 찾았네, 안 그런가? 그 이유를 스스로에게 물어본 적 없는가?\"}]", - "Subtitles/keeper_dialog_option_who_are_you_06": "[{\"s\":0,\"e\":4,\"t\":\"Being close to the one for whom the collapse is the beginning of the new.\"},{\"s\":6.1,\"e\":10,\"t\":\"자네는 단순히 살아남는 걸 원하는 게 아니라 통제하고 싶은 거겠지.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_07": "[{\"s\":0,\"e\":8,\"t\":\"타르코프는 바로 너 자신이라네. 나 자신에게서 탈출할 수는 없지 않은가. 나 역시 탈출하지 못한 것처럼 말이네.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_08": "[{\"s\":0,\"e\":14,\"t\":\"이 세계는 끝을 향하고 있네, 거센 바다 한가운데서 녹아내리는 얼음 덩어리를 붙잡으려는 이 한심한 시도들, 이 모든 전투, 상인들의 위선, 선동, 폭력이 폭력을 부르는 것.\"},{\"s\":14.1,\"e\":22,\"t\":\"이 모든 것들은 아주 구체적인 결과로 이어진다네. 식(Eclipse)은 없을 걸세, 대신 부활이 있겠지.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_09": "[{\"s\":0,\"e\":5,\"t\":\"자네는 타르코프를 탈출할 수 없을 거야.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_10": "[{\"s\":0,\"e\":5,\"t\":\"이해를 못 했군, 하지만 다들 그렇지.\"},{\"s\":5.1,\"e\":10,\"t\":\"나도 처음엔 그들이 내게 손 내밀기 전까진 이해하지 못했어.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_11": "[{\"s\":0,\"e\":6,\"t\":\"우리가 더 이상 이야기 할 건 없다네. 시간이 흐르면서 얽힌 것들을 풀어나가면 스스로 알아낼 수 있을 걸세.\"}]", - "Subtitles/keeper_end_of_time_01": "[{\"s\":0,\"e\":1,\"t\":\"시간이 얼마 남지 않았네.\"}]", - "Subtitles/keeper_end_of_time_02": "[{\"s\":0,\"e\":2,\"t\":\"우리가 만날 수 있는 시간이 얼마 남지 않았네.\"}]", - "Subtitles/keeper_end_of_time_03": "[{\"s\":0,\"e\":1,\"t\":\"시간은 멈추지 않아. 시간이 거의 다 되었네.\"}]", - "Subtitles/keeper_end_of_time_04": "[{\"s\":0,\"e\":1,\"t\":\"시간이 되었네, 제군!\"}]", - "Subtitles/keeper_end_of_time_farewell_01": "[{\"s\":0,\"e\":2,\"t\":\"시간이 다 되었네. 나가는 문은 이쪽일세.\"}]", - "Subtitles/keeper_end_of_time_farewell_02": "[{\"s\":0,\"e\":2,\"t\":\"시간이 다 되었네. 몸조리 잘하게.\"}]", - "Subtitles/keeper_end_of_time_farewell_03": "[{\"s\":0,\"e\":1,\"t\":\"자네에게 주어진 시간이 끝났네.\"}]", - "Subtitles/keeper_end_of_time_farewell_04": "[{\"s\":0,\"e\":2,\"t\":\"이제 여기서 나가주게. 시간이 다 되었네.\"}]", - "Subtitles/keeper_end_of_time_farewell_05": "[{\"s\":0,\"e\":3,\"t\":\"자네는 시간을 소중히 여기지 않았지. 나가게.\"}]", - "Subtitles/keeper_end_of_time_farewell_06": "[{\"s\":0,\"e\":2,\"t\":\"우리는 여기까지 하지 - 시간이 다 되었네.\"}]", - "Subtitles/keeper_first_greeting_01": "[{\"s\":3,\"e\":10,\"t\":\"자넨가? 맞아, 또 누가 있겠나. 그래, 내 테스트를 모두 통과했다고?\"},{\"s\":10.1,\"e\":18,\"t\":\"나는 등대지기라네. 아마 나에 대해 들어봤겠지. 많은 사람들이 나와 함께 일하고 싶어 하지만, 아무나 나와 함께할 순 없다네.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_01": "[{\"s\":0,\"e\":3,\"t\":\"Who I am is not important at all at the moment.\"},{\"s\":3.1,\"e\":5,\"t\":\"What matters is who you are and why you are here.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_02": "[{\"s\":0,\"e\":6,\"t\":\"I am Lightkeeper. I watch over everything and everyone, and all can see my light.\"},{\"s\":6.1,\"e\":12,\"t\":\"In our restless time, it's critical to have the necessary information.\"},{\"s\":12.1,\"e\":18,\"t\":\"Information creates connections, connections yield opportunities.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_03": "[{\"s\":0,\"e\":6,\"t\":\"Yes. The opportunity to change the surroundings and, as a consequence, the reality.\"},{\"s\":6.1,\"e\":10,\"t\":\"In this kind of environment, the basic necessity for human beings is survival.\"},{\"s\":10.1,\"e\":15,\"t\":\"I don't want to simply survive, I want to control the survival.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_04": "[{\"s\":0,\"e\":6,\"t\":\"It does, for the survivor. For someone who ensures survival, everything is different.\"},{\"s\":6.1,\"e\":14,\"t\":\"We met for a reason. All events have a meaning, there are no accidents.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_05": "[{\"s\":0,\"e\":4,\"t\":\"But it was you who was looking for me, wasn’t it? Did you ask yourself why?\"}]", + "Subtitles/keeper_dialog_option_who_are_you_06": "[{\"s\":0,\"e\":4,\"t\":\"Being close to the one for whom the collapse is the beginning of the new.\"},{\"s\":6.1,\"e\":10,\"t\":\"You don’t want to simply survive, you want to be in control.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_07": "[{\"s\":0,\"e\":8,\"t\":\"Tarkov is who you are. You cannot escape from yourself. Just as I could not escape from myself.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_08": "[{\"s\":0,\"e\":14,\"t\":\"This world is ending, all these pathetic attempts to hold on to a melting ice floe in the middle of a raging ocean - all these local fights, the hypocrisy of the traders, the instigation, violence multiplied by violence.\"},{\"s\":14.1,\"e\":22,\"t\":\"All this leads to a very specific result. There will be no eclipse, there will be rebirth.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_09": "[{\"s\":0,\"e\":5,\"t\":\"You will not escape from Tarkov.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_10": "[{\"s\":0,\"e\":5,\"t\":\"You don’t understand, but this is natural.\"},{\"s\":5.1,\"e\":10,\"t\":\"I didn't understand it at first either, when they reached out to me.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_11": "[{\"s\":0,\"e\":6,\"t\":\"There's nothing more for us to talk about. In time, you'll figure it out for yourself, as you unravel the tangle.\"}]", + "Subtitles/keeper_end_of_time_01": "[{\"s\":0,\"e\":1,\"t\":\"Time is running out.\"}]", + "Subtitles/keeper_end_of_time_02": "[{\"s\":0,\"e\":2,\"t\":\"Our time is running out.\"}]", + "Subtitles/keeper_end_of_time_03": "[{\"s\":0,\"e\":1,\"t\":\"Clock’s ticking. Time is almost up.\"}]", + "Subtitles/keeper_end_of_time_04": "[{\"s\":0,\"e\":1,\"t\":\"Your time, soldier!\"}]", + "Subtitles/keeper_end_of_time_farewell_01": "[{\"s\":0,\"e\":2,\"t\":\"Time’s up. The door is this way.\"}]", + "Subtitles/keeper_end_of_time_farewell_02": "[{\"s\":0,\"e\":2,\"t\":\"Time is over. Take care.\"}]", + "Subtitles/keeper_end_of_time_farewell_03": "[{\"s\":0,\"e\":1,\"t\":\"Your time is up.\"}]", + "Subtitles/keeper_end_of_time_farewell_04": "[{\"s\":0,\"e\":2,\"t\":\"Please leave the premises. Time’s up.\"}]", + "Subtitles/keeper_end_of_time_farewell_05": "[{\"s\":0,\"e\":3,\"t\":\"You don't appreciate time at all. Out.\"}]", + "Subtitles/keeper_end_of_time_farewell_06": "[{\"s\":0,\"e\":2,\"t\":\"We’re done here - your time ran out.\"}]", + "Subtitles/keeper_first_greeting_01": "[{\"s\":3,\"e\":10,\"t\":\"Is that you? Right, who else would it be. So, you’ve passed all my tests?\"},{\"s\":10.1,\"e\":18,\"t\":\"I am Lightkeeper. Guess you’ve heard about me. Everyone wants to do business with me, but not everyone can.\"}]", "Subtitles/keeper_generic_farewell_01": "[{\"s\":0,\"e\":1,\"t\":\"조만간 다시 보지.\"}]", "Subtitles/keeper_generic_farewell_02": "[{\"s\":0,\"e\":1,\"t\":\"그럼 이만.\"}]", "Subtitles/keeper_generic_farewell_03": "[{\"s\":0,\"e\":1,\"t\":\"이게 전부라네. 좋은 하루 되길 바라지.\"}]", "Subtitles/keeper_generic_farewell_04": "[{\"s\":0,\"e\":1,\"t\":\"행운을 빌겠네.\"}]", "Subtitles/keeper_generic_farewell_05": "[{\"s\":0,\"e\":2,\"t\":\"필요한 게 있으면 언제든지 오게, 나는 여기 있을테니까.\"}]", "Subtitles/keeper_generic_farewell_06": "[{\"s\":0,\"e\":1,\"t\":\"시간 날 때 들리게.\"}]", - "Subtitles/keeper_generic_farewell_07": "[{\"s\":0,\"e\":2,\"t\":\"행운을 빌지. 즈랴치를 화나게 하진 말게.\"}]", + "Subtitles/keeper_generic_farewell_07": "[{\"s\":0,\"e\":2,\"t\":\"행운을 빌지. 지랴치를 화나게 하진 말게.\"}]", "Subtitles/keeper_generic_greetings_01": "[{\"s\":0,\"e\":1,\"t\":\"반갑네.\"}]", "Subtitles/keeper_generic_greetings_02": "[{\"s\":0,\"e\":1,\"t\":\"아... 또 왔군.\"}]", "Subtitles/keeper_generic_greetings_03": "[{\"s\":0,\"e\":1,\"t\":\"중요한 용건이길 바라지.\"}]", @@ -14834,26 +14756,25 @@ "Subtitles/keeper_generic_greetings_07": "[{\"s\":0,\"e\":1,\"t\":\"원하는 게 있나?\"}]", "Subtitles/keeper_generic_greetings_08": "[{\"s\":0,\"e\":1,\"t\":\"자네가 들어올 때부터 내 귀는 열고 있었네.\"}]", "Subtitles/keeper_generic_greetings_09": "[{\"s\":0,\"e\":2,\"t\":\"자네가 돌아오는 걸 봤지.\"}]", - "Subtitles/keeper_outdoor_player_death_01": "[{\"s\":0,\"e\":4,\"t\":\"즈랴치, 이 총소리는 뭔가? 우린 끝이야, 당장 여기서 나가게!\"}]", - "Subtitles/keeper_outdoor_player_death_02": "[{\"s\":0,\"e\":4,\"t\":\"싸움을 정리하게 즈랴치! 자네, 나가게, 당장!\"}]", - "Subtitles/keeper_outdoor_player_death_03": "[{\"s\":0,\"e\":4,\"t\":\"즈랴치, 들어와. 대화는 여기까지, 나가게, 당장!\"}]", - "Subtitles/keeper_sniper_death_01": "[{\"s\":0,\"e\":4,\"t\":\"즈랴치, 듣고 있나? 즈랴치! 여기서 당장 나가게, 당장!\"}]", - "Subtitles/keeper_sniper_death_02": "[{\"s\":0,\"e\":5,\"t\":\"즈랴치, 여기는 등대지기! 즈랴치, 응답하라! 대화는 여기까지라네, 당장 나가게!\"}]", - "Subtitles/keeper_sniper_death_03": "[{\"s\":0,\"e\":4,\"t\":\"대체 무슨 일인가, 즈랴치? 대답해! 우린 끝일세. 꺼져!\"}]", - "Subtitles/keeper_trade_02": "[{\"s\":0,\"e\":2,\"t\":\"글쎄, 흥미로운 물건이 조금 있긴 해.\"}]", - "Subtitles/keeper_trade_05": "[{\"s\":0,\"e\":2,\"t\":\"여기, 내 시간을 낭비시키지 말게.\"}]", - "Subtitles/keeper_trade_08": "[{\"s\":0,\"e\":1,\"t\":\"몇 가지 선택지가 있지.\"}]", - "Subtitles/keeper_trade_09": "[{\"s\":0,\"e\":1,\"t\":\"나는 언제나 가지고 있는 게 있지.\"}]", - "Subtitles/keeper_want_work_reaction_01": "[{\"s\":0,\"e\":3,\"t\":\"지금은 아니네. 곧 때가 될 걸세.\"}]", - "Subtitles/keeper_want_work_reaction_02": "[{\"s\":0,\"e\":2,\"t\":\"우린 이제 막 안면을 튼 사이라네. 결국 때가 올 걸세.\"}]", - "Subtitles/keeper_want_work_reaction_03": "[{\"s\":0,\"e\":3,\"t\":\"나는 지금 하고 있는 일이 있다네. 너무 앞서나가지 말게나.\"}]", - "Subtitles/keeper_want_work_reaction_04": "[{\"s\":0,\"e\":2,\"t\":\"곧, 때가 되면 자네에게 알려주지.\"}]", + "Subtitles/keeper_outdoor_player_death_01": "[{\"s\":0,\"e\":4,\"t\":\"Zryachiy, what's with that shootout? That’s it, we’re done, get out of here!\"}]", + "Subtitles/keeper_outdoor_player_death_02": "[{\"s\":0,\"e\":4,\"t\":\"Handle this gunfight, Zryachiy! You, leave, now!\"}]", + "Subtitles/keeper_outdoor_player_death_03": "[{\"s\":0,\"e\":4,\"t\":\"Zryachiy, come in. Deal with this! The meeting is over, leave, now!\"}]", + "Subtitles/keeper_sniper_death_01": "[{\"s\":0,\"e\":4,\"t\":\"Zryachiy, do you copy? Zryachiy! Alright, you get out of here, now!\"}]", + "Subtitles/keeper_sniper_death_02": "[{\"s\":0,\"e\":5,\"t\":\"Zryachiy, this is Lightkeeper! Zryachiy, come in! That’s it, our meeting is over, go away!\"}]", + "Subtitles/keeper_sniper_death_03": "[{\"s\":0,\"e\":4,\"t\":\"What’s going on, Zryachiy? Answer me! We’re done. Out!\"}]", + "Subtitles/keeper_trade_02": "[{\"s\":0,\"e\":2,\"t\":\"Well, I do have something interesting.\"}]", + "Subtitles/keeper_trade_05": "[{\"s\":0,\"e\":2,\"t\":\"Here, just don’t waste my time.\"}]", + "Subtitles/keeper_trade_08": "[{\"s\":0,\"e\":1,\"t\":\"There are several options.\"}]", + "Subtitles/keeper_trade_09": "[{\"s\":0,\"e\":1,\"t\":\"I always have something.\"}]", + "Subtitles/keeper_want_work_reaction_01": "[{\"s\":0,\"e\":3,\"t\":\"Not now. The time will come.\"}]", + "Subtitles/keeper_want_work_reaction_02": "[{\"s\":0,\"e\":2,\"t\":\"We had only just got acquainted. Eventually, the time will come.\"}]", + "Subtitles/keeper_want_work_reaction_03": "[{\"s\":0,\"e\":3,\"t\":\"I'm working on something. Don't get ahead of yourself.\"}]", + "Subtitles/keeper_want_work_reaction_04": "[{\"s\":0,\"e\":2,\"t\":\"Any hour now. I’ll let you know when.\"}]", "Summary": "요약", "Surgery": "수술", "SurgeryDescription": "전장에서 응급처치하는 능력은 위급한 상황에서의 목숨을 구할 수 있습니다. 이 기술이 높을수록 작업을 더 빠르고 잘 수행 할 수 있습니다.", - "SurgeryLevelingUpDescription": "The Surgery skill is improved by using surgical kits on injured body parts.", - "SurgeryReducePenalty": "수술 후 HP 페널티 [{0:0.#%}] 감소", - "SurgerySpeed": "수술 속도 [{0:0.#%}] 증가", + "SurgeryReducePenalty": "수술 후 HP 페널티 [{0:0%}] 감소", + "SurgerySpeed": "수술 속도 [{0:0%}] 증가", "Survival Rate Short": "S/R: {0}%", "SurvivalRate": "생존율", "Survived": "생존", @@ -14861,7 +14782,7 @@ "Survivor class": "생존 등급", "Svetliy Dead End": "Svetliy Dead End", "Switch to ({0})": "({0}) 로 변경", - "SwitchHeadLight": "헬멧 전술 장치 모드 변경", + "SwitchHeadLight": "Switch helmet tactical device mode", "SwitchHeadLight:": "", "SymbolUsage": "글자 수: {0}/{1}", "Synchronizing with other players": "다른 플레이어와 동기화 중...", @@ -14926,9 +14847,8 @@ "ThrowItem": "버리기", "Throwing": "투척무기", "ThrowingDescription": "[Throwables]\n투척 무기 기술은 수류탄을 더 적은 힘으로 더 멀리 던질 수 있게 해 줍니다.", - "ThrowingEnergyExpenses": "투척 시 필요한 에너지양 [{0:0.#%}] 감소", - "ThrowingLevelingUpDescription": "The Throwables skill is improved by throwing grenades.", - "ThrowingStrengthBuff": "던지는 힘 [{0:0.#%}] 증가", + "ThrowingEnergyExpenses": "투척 시 필요한 에너지양 [{0:0%}] 감소", + "ThrowingStrengthBuff": "던지는 힘 [{0:0%}] 증가", "ThrowingWeaponsBuffElite": "더 이상 투척 시 에너지를 소모하지 않으며, 탈진한 상태에서도 정확하게 투척합니다", "Time flow": "시간 흐름", "Time to reconnect left ({0})": "재접속할 수 있는 남은 시간 ({0})", @@ -14968,19 +14888,19 @@ "Trading/Bad standing": "우호도가 낮아서 상인이 당신의 물건을 매입하지 않으려고 합니다.", "Trading/Btr/Dialog/AvailableServices/Description": "I can get you where you want to go, I can provide cover fire if you're being tailed. I can also move your stuff to the right place, to your hideout. So, what's it gonna be?", "Trading/Btr/Dialog/AvaliableServices": "So what can you do?", - "Trading/Btr/Dialog/Quit": "대화 종료", + "Trading/Btr/Dialog/Quit": "End conversation", "Trading/Dialog/AskForNewQuests": "혹시 내게 줄 만한 일거리가 있나?", "Trading/Dialog/AvailableServices": "Can you help me with something?", "Trading/Dialog/AvailableServices/Description": "You want my services? Well, you've served your purpose already, so I'll help you if you have enough to cover the cost.", - "Trading/Dialog/AvailableServices/Standing": "(등대지기 평판: {0:N2})", + "Trading/Dialog/AvailableServices/Standing": "(Lightkeeper standing: {0:N2})", "Trading/Dialog/AvaliableServices": "Can you help me with something?", - "Trading/Dialog/Btr/News": "새로운 소식 없나?", - "Trading/Dialog/Btr/News/Next": "다른 소식은?", - "Trading/Dialog/Btr/News1": "It's been snowing so hard recently! We haven't had snow like this since the Contract Wars. It's like we don't live up north. Shame it's all melted now.", - "Trading/Dialog/Btr/News2": "You don't go out often, do you? There was a big holiday, the whole town celebrated! Happy holidays, by the way.", - "Trading/Dialog/Btr/News3": "Our kingpins made a big mess, didn't they? Sitting at their spots, not moving, not letting anyone breathe.", - "Trading/Dialog/Btr/News4": "This weirdo who dresses up as Santa Claus year after year, he's talking now! I thought he was mute.", - "Trading/Dialog/Btr/News5": "Folks started picking up figurines of local celebrities all over the city. I wonder if my BTR will turn out to be one or not.", + "Trading/Dialog/Btr/News": "What's the news?", + "Trading/Dialog/Btr/News/Next": "Any more news?", + "Trading/Dialog/Btr/News1": "The biggest news is the BTR! I fixed it all myself. Consider it my own creation. Now I can drive people around. Maybe that'll help me pay for the repairs.", + "Trading/Dialog/Btr/News2": "Someone is organizing gladiatorial fights in Tarkov. They say a lot of people went there of their own free will. The money's pretty good. If you survive, obviously!", + "Trading/Dialog/Btr/News3": "There was an uproar all over Tarkov over some TerraGroup documents. They've even been looking beyond the border, but I kinda don't believe it.", + "Trading/Dialog/Btr/News4": "A while back, most of the AP ammo went missing from the traders' stocks. Fighters like you were running all over Tarkov, looking for other people's ammo stashes. Now everything's fine though.", + "Trading/Dialog/Btr/News5": "Sanitar tried to strengthen his influence in Tarkov recently. He had some kind of an antidote, apparently. Not long before that, a lot of people got poisoned. Coincidence? I think not.", "Trading/Dialog/Btr/NoNews": "I think that's all the news I have.", "Trading/Dialog/Btr/ServicePayoff{0}": "Works for me, yes. (hand over \"{0}\")", "Trading/Dialog/BtrBotCover/Description": "The whole time you're in the BTR, we'll shoot anyone who sticks their noses out. We'll also clear the drop zone and cover you while you get out, but not for long.", @@ -14998,37 +14918,21 @@ "Trading/Dialog/PlayerFinishQuest{0}": "끝냈어. (\"{0}\" 임무 완료)", "Trading/Dialog/PlayerHandoveItem{0}": "이걸 찾았어. (\"{0}\" 건네주기)", "Trading/Dialog/PlayerTaxi/Description": "Here's where I can drop you off. Pick one.", - "Trading/Dialog/PlayerTaxi/Name": "택시", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "좋아, 목적지 - Rodina cinema. 가격은 적당해?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Rodina Cinema", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "Tram으로 갑니다. 돈은 챙겨왔지?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Tram", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "좋아, City Center로 출발합니다. 돈은 충분히 가져왔지?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "City Center", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Collapsed Crane으로 갑니다. 요금은 괜찮아?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Collapsed Crane", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "Old Scav Checkpoint로 데려다 줄게. 요금은 괜찮지?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Old Scav Checkpoint", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "Pinewood Hotel으로 갈게. 요금은 적당한 것 같아?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Pinewood Hotel", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "(Scav \bBunker) 스캐브 벙커로 출발할 거야. 가격은 괜찮아?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Scav Bunker", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "(Sunken village) 물에 잠긴 마을? 가능 할 것 같아. 이정도 요금이 필요해.", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Sunken village", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "(Junction) 삼거리로 태워 주는 건 가능하지. 돈은 충분히 가져왔어?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Junction", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "(Sawmill) 제재소? 문제 없지! 요금은 이정도야.", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Sawmill", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "(USEC Checkpoint) USEC 검문소라, 좋아, \b너도 알겠지만 공짜는 아니야.", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "USEC Checkpoint", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "(EMERCOM Base) EMERCOM 기지로 가려고 계획중이야. 가격 괜찮은 것 같아?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "EMERCOM Base", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "(Old Sawmill) 오키도키, 옛 제재소로 갑니다. 여기 요금이야.", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Old Sawmill", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "(Train Depot) 기차역으로 태워달라고? 참고로 내가 없으면 거기서 빠져나올 수 없을거야. 가격만 괜찮으면 태워줄게, 대신 거기서 시간 확인 하는 거 잊지 말라고, 알겠지?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Train Depot", + "Trading/Dialog/PlayerTaxi/Name": "Take a ride", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina Cinema", + "Trading/Dialog/PlayerTaxi/p2/Description": "Driving to the tram. You got the cash, right?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Great, we're on course for city center. You got enough cash?", + "Trading/Dialog/PlayerTaxi/p3/Name": "City Center", + "Trading/Dialog/PlayerTaxi/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Collapsed Crane", + "Trading/Dialog/PlayerTaxi/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Old Scav Checkpoint", + "Trading/Dialog/PlayerTaxi/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood Hotel", "Trading/Dialog/Quit": "떠나기", - "Trading/Dialog/ServicePayoff{0}": "좋아, 이 정도면 괜찮지. (건네주기 \"{0}\")", + "Trading/Dialog/ServicePayoff{0}": "Alright, this should be enough. (hand over \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "대화내역 숨기기", "Trading/Dialog/ToggleHistoryOn": "대화내역 보기", "Trading/Dialog/WhoAreYouPlayerQuestion1": "당신은 누구지?", @@ -15039,9 +14943,9 @@ "Trading/Dialog/WhoAreYouPlayerQuestion5": "나도 모르겠어... 당신처럼 무언갈 아는 사람이 내게 알려줄 거라 생각했지.", "Trading/Dialog/WhoAreYouPlayerQuestion6": "타르코프를 탈출하고 싶어.", "Trading/Dialog/WhoAreYouPlayerQuestion7": "…", - "Trading/Dialog/WhoAreYouPlayerQuestion8": "부활? 식(Eclipse)? 도대체 무슨 소리를 지껄이는 거야?", + "Trading/Dialog/WhoAreYouPlayerQuestion8": "환생? Eclipse? 도대체 무슨 소리를 지껄이는 거야?", "Trading/Dialog/WhoAreYouPlayerQuestion9": "뭐, 당신이 도와주길 바랐지만, 어찌 됐든 나는 시도해 볼 거야.", - "Trading/Dialog/YouAreHere": "현재 위치", + "Trading/Dialog/YouAreHere": "You are here", "Trading/Dialog/ZryachiyAid/Description": "Zryachiy is one of the best snipers in the world. He'll have your back, kill anyone who crosses your path. But this kind of help comes at a price. You ready to shell out?", "Trading/Dialog/ZryachiyAid/Name": "Listen, can your sniper friend help me get out of here?", "Trading/InsufficientNumberOfItemsInStock{}{}": "상인이 가지고 있는 아이템 수량이 {0} 개 보다 적습니다. 남아있는 재고 {1} 개를 구입했습니다.", @@ -15049,7 +14953,7 @@ "Trailer Park": "Trailer Park", "Trailer Park Workers Shack": "Trailer Park Workers' Shack", "Transfer": "옮기기", - "TransferItemsScreen/BtrContainerName": "BTR-82A 트렁크", + "TransferItemsScreen/BtrContainerName": "BTR-82A TRUNK", "TransferLeadership": "리더 권한 넘겨주기", "TransferLeadership message": "정말 리더 권한을 넘겨주겠습니까?", "TransferScreen/BtrCaution": "The BTR will leave soon! Unpaid items will be lost!", @@ -15058,18 +14962,17 @@ "TransferScreen/NotEnoughMoney": "Not enough money", "TransferScreen/NothingToRemove": "Trunk is empty", "TransferScreen/NothingToTransfer": "Trunk is empty", - "TransferScreen/PriceMessage": "배송 요금:", - "TransferScreen/TransferFailed": "서비스 결제 실패", - "TransferScreen/TransferSuccess": "서비스 구매완료!", + "TransferScreen/PriceMessage": "Delivery will cost:", + "TransferScreen/TransferFailed": "Failed to purchase service", + "TransferScreen/TransferSuccess": "Service purchased!", "Tremor": "떨림", - "TroubleFixing": "기능 고장 처치 속도 [{0:0.#%}] 증가", - "TroubleFixingAmmoElite": "탄창으로 인해 발생한 기능고장을 고치고 나면, 탄창에 의해 오작동이 발생할 확률 [50%] 감소", - "TroubleFixingDurElite": "무기 내구도로 인해 발생한 기능고장을 고치고 나면, 무기 내구도에 의해 오작동이 발생할 확률 [50%] 감소", + "TroubleFixing": "기능 고장 처치 속도 [{0:0%}] 증가", + "TroubleFixingAmmoElite": "탄창으로 인해 발생한 기능고장을 고치고 나면, 탄창에 의해 오작동이 발생할 확률 50% 감소", + "TroubleFixingDurElite": "무기 내구도로 인해 발생한 기능고장을 고치고 나면, 무기 내구도에 의해 오작동이 발생할 확률 50% 감소", "TroubleFixingExamineMalfElite": "기능고장 시 무기를 점검하지 않아도 원인을 알 수 있습니다", - "TroubleFixingMagElite": "탄약으로 인해 발생한 기능고장을 고치고 나면, 탄약에 의해 오작동이 발생할 확률 [50%] 감소", + "TroubleFixingMagElite": "탄약으로 인해 발생한 기능고장을 고치고 나면, 탄약에 의해 오작동이 발생할 확률 50% 감소", "TroubleShootingDescription": "[Troubleshooting]\n문제해결 기술은 무기 기능고장을 처리하는 데 도움을 줍니다.", "Troubleshooting": "문제 해결", - "TroubleshootingLevelingUpDescription": "The Troubleshooting skill is improved by regularly fixing weapon malfunctions.", "Try_keycard {0}": "{0}", "Tunnel": "Tunnel", "Tunnel_Shared": "Side Tunnel (Co-Op)", @@ -15132,31 +15035,26 @@ "Tutorial_TabTrade_Description": "여기에서 상인 목록을 볼 수 있습니다. 그들 모두는 당신과 마찬가지로 타르코프에 기반을두고 있으며, 그들 자신의 이익을 가지고 있습니다. 그들 모두는 구입하거나 판매 할 품목의 범위 내에서 각자의 요구사항과 특성을 가지고 있습니다. \\n\\n 상인은 여러 수준의 우호도를 가지고 , 모든 다음 단계의 우호도는 신제품에 대한 액세스를 제공합니다. 친밀도는 상인과의 평판, 레벨 및 지출 된 금액에 따라 다릅니다.\\n\\n 한 예로, 프라퍼(Prapor) 가 있습니다.", "Tutorial_TabTrade_Title": "상인", "Type": "종류", - "UI/Arena/Place_1": "1등", - "UI/Arena/Place_10": "10등", - "UI/Arena/Place_11": "11등", - "UI/Arena/Place_12": "12등", - "UI/Arena/Place_13": "13등", - "UI/Arena/Place_14": "14등", - "UI/Arena/Place_15": "15등", - "UI/Arena/Place_16": "16등", - "UI/Arena/Place_17": "17등", - "UI/Arena/Place_18": "18등", - "UI/Arena/Place_19": "19등", - "UI/Arena/Place_2": "2등", - "UI/Arena/Place_20": "20등", - "UI/Arena/Place_3": "3등", - "UI/Arena/Place_4": "4등", - "UI/Arena/Place_5": "5등", - "UI/Arena/Place_6": "6등", - "UI/Arena/Place_7": "7등", - "UI/Arena/Place_8": "8등", - "UI/Arena/Place_9": "9등", - "UI/ArmorPenetration/High": "높음", - "UI/ArmorPenetration/Low": "낮음", - "UI/ArmorPenetration/Medium": "보통", - "UI/ArmorPenetration/VeryHigh": "매우 높음", - "UI/ArmorPenetration/VeryLow": "매우 낮음 ", + "UI/Arena/Place_1": "1st place", + "UI/Arena/Place_10": "10th place", + "UI/Arena/Place_11": "11th place", + "UI/Arena/Place_12": "12th place", + "UI/Arena/Place_13": "13th place", + "UI/Arena/Place_14": "14th place", + "UI/Arena/Place_15": "15th place", + "UI/Arena/Place_16": "16th place", + "UI/Arena/Place_17": "17th place", + "UI/Arena/Place_18": "18th place", + "UI/Arena/Place_19": "19th place", + "UI/Arena/Place_2": "2nd place", + "UI/Arena/Place_20": "20th place", + "UI/Arena/Place_3": "3rd place", + "UI/Arena/Place_4": "4th place", + "UI/Arena/Place_5": "5th place", + "UI/Arena/Place_6": "6th place", + "UI/Arena/Place_7": "7th place", + "UI/Arena/Place_8": "8th place", + "UI/Arena/Place_9": "9th place", "UI/Charisma/Discount/Insurance": "보험 비용", "UI/Charisma/Discount/PostRaidHealing": "치료 비용", "UI/Charisma/Discount/ScavCase": "스캐브 케이스 비용", @@ -15175,7 +15073,7 @@ "UI/Generator is working": "발전기가 켜져 있습니다!", "UI/HealthPanel/LethalDamage": "사망원인", "UI/HealthPanel/NonTreatedDamage": "치료되지 않은 피해", - "UI/HealthTreatmentAction_ArenaIntoxication": "치명적인 독 치료하기", + "UI/HealthTreatmentAction_ArenaIntoxication": "treat Strong Poison", "UI/HealthTreatmentAction_Bloodloss": "치료", "UI/HealthTreatmentAction_BreakPart": "치료", "UI/HealthTreatmentAction_Energy": "보충", @@ -15185,7 +15083,7 @@ "UI/HealthTreatmentAction_Hydration": "보충", "UI/HealthTreatmentAction_Intoxication": "치료", "UI/HealthTreatmentAction_LightBleeding": "가벼운 출혈 치료", - "UI/HealthTreatmentName_ArenaIntoxication": "치명적인 독에 중독됨", + "UI/HealthTreatmentName_ArenaIntoxication": "Poisoning by Strong Poison", "UI/HealthTreatmentName_Bloodloss": "출혈", "UI/HealthTreatmentName_BreakPart": "골절", "UI/HealthTreatmentName_Energy": "에너지", @@ -15216,10 +15114,10 @@ "UI/MagPreset/EmptyLoop": "Loop / ammo required\nWill be loaded last\nMust have at least 1 round selected", "UI/MagPreset/Load": "Load magazines", "UI/MagPreset/LoopAmmo": "Loop\nWill be loaded last\nMust have al least 1 round selected", - "UI/MagPreset/New": "새로운 프리셋", - "UI/MagPreset/PresetListCaption": "프리셋 선택", - "UI/MagPreset/Save": "저장", - "UI/MagPreset/SearchPlaceholder": "프리셋 검색", + "UI/MagPreset/New": "New preset", + "UI/MagPreset/PresetListCaption": "Preset selection", + "UI/MagPreset/Save": "Save", + "UI/MagPreset/SearchPlaceholder": "Preset search", "UI/MagPreset/TopAmmo": "Top\nWill be loaded second", "UI/MagPreset/WindowCaption": "Magazines loadout", "UI/Messaging/applied_profile_changes": "적용된 프로필 변경:", @@ -15228,26 +15126,26 @@ "UI/OldPrice:": "이전 가격:", "UI/ProfileStats/Liters": "리터", "UI/ProfileStats/Meters": "m", - "UI/Quest/Reward/AdditionalStashRowsCaption": "창고 가로줄 수", + "UI/Quest/Reward/AdditionalStashRowsCaption": "Inventory slot lines in stash", "UI/Quest/Reward/AdditionalStashRowsTooltip": "Your stash will be expanded by the addition of new inventory slot lines.\nThese changes will be applied later on (check our website for details).", - "UI/Settings/ArenaWatchTimerAndExits": "목표와 시간 확인", - "UI/Settings/Armory": "무장", - "UI/Settings/Armory/Ammo": "탄약", - "UI/Settings/Armory/Interactions": "무기 상호작용", - "UI/Settings/Armory/Other": "기타 장비", - "UI/Settings/Armory/Weapons": "무기", + "UI/Settings/ArenaWatchTimerAndExits": "Check time and objectives", + "UI/Settings/Armory": "Armory", + "UI/Settings/Armory/Ammo": "Ammo", + "UI/Settings/Armory/Interactions": "Weapon interactions", + "UI/Settings/Armory/Other": "Other equipment", + "UI/Settings/Armory/Weapons": "Weapons", "UI/Settings/Control/MouseAndKeys": "키보드와 마우스", "UI/Settings/Control/Phrases": "음성 명령", - "UI/Settings/Interface": "인터페이스", + "UI/Settings/Interface": "Interface", "UI/Settings/ItemQuickUse": "더블 클릭으로 아이템 사용하기", - "UI/Settings/Movement": "움직임", + "UI/Settings/Movement": "Movement", "UI/Settings/NVidiaReflexMode/Off": "끄기", "UI/Settings/NVidiaReflexMode/On": "켜기", "UI/Settings/NVidiaReflexMode/OnAndBoost": "켜기 & 부스트", "UI/Settings/NotificationType/Default": "기본", "UI/Settings/NotificationType/WebSocket": "웹 소켓", - "UI/Settings/OtherActions": "기타 동작", - "UI/Settings/Rest": "기타", + "UI/Settings/OtherActions": "Other actions", + "UI/Settings/Rest": "Other", "UI/Skills/Charisma/CharismaDiscount": "카리스마 스킬 할인", "UI/Standing:": "상인 우호도:", "UI/TransferScreen/ExpirationWarning": "물품 만료 기간:", @@ -15268,7 +15166,7 @@ "USEC": "USEC", "USEC Matchmaker": "당신의 메인 캐릭터, 전직 USEC PMC 요원으로 레이드를 시작합니다. 어떠한 수를 써서라도 타르코프에서 무사히 탈출하십시오.", "USING": "사용중", - "Ui/Settings/AutoVaultingMode": "중간 크기 장애물 넘어가기:", + "Ui/Settings/AutoVaultingMode": "Vaulting over medium obstacles", "Ui/Settings/BlockGroupInvites": "파티 초대 차단하기", "Ui/Settings/CantModifyWhenMipStreamingIsOff": "Mip Streaming 옵션이 꺼진 상태에서는 변경할 수 없습니다", "Ui/Settings/ColorScheme/GreenToRed": "컬러(초록-빨강)", @@ -15298,7 +15196,7 @@ "UndefinedDescription": "Undefined", "UndefinedDescriptionShort": "Undefined", "Unit is ready to be installed": "시설 업그레이드가 완료되었습니다.", - "Unity_free_exit": "EMERCOM Checkpoint", + "Unity_free_exit": "Emercom Checkpoint", "Unknown": "알 수 없음", "Unknown item": "알 수 없는 아이템", "Unknown reward": "알 수 없는 보상", @@ -15311,7 +15209,7 @@ "Unlocked": "잠금 해제됨", "UnlocksOn": "레벨 {0} 에 해금됨", "Unmute": "음소거 해제", - "UnmuteVoip": "음성채팅 및 라디오 음소거 해제", + "UnmuteVoip": "Unmute VoIP & Radio", "Unranked": "UNRANKED", "Unranked/Description": "Unranked Game\nUnranked games include all modes for which it is difficult to determine personal or team ranking, as well as PvE modes and modes in which players simply fight to the death.", "UnremovableItem/Attributes/CannotDroppedInRaid": "레이드에서 버릴 수 없음", @@ -15327,32 +15225,29 @@ "VISUALIZE": "미리보기", "VSync": "수직 동기화", "VSync is on. Turn it off to change this parameter.": "수직동기화가 켜져 있습니다. 이 수치를 바꾸려면 수직동기화를 끄세요.", - "Vaulting": "장애물 넘기", + "Vaulting": "Vaulting", "Vegetation visibility:": "식생 가시거리:", "Vents": "환기 시설", "Very bad standing": "매우 나쁨", "Very good standing": "매우 좋음", "Vest": "조끼", "Village": "Village", - "Violation/IntentionalTeamDamage/Warning": "팀원을 계속 공격할 경우 계정이 차단될 수 있습니다.", - "Violation/IntentionalTeamKill/Warning": "경기 시작 직후 팀원을 계속 죽일 경우 계정이 차단될 수 있습니다.", "Violation/TeamKill/Warning": "Your account will be blocked if you continue killing your teammates", "Vital mod weapon in hands": "손에 들고 있는 무기의 핵심 부품은 개조할 수 없습니다.", "Vital parts": "핵심 부품", "Vitality": "활력", - "VitalityBuffBleedChanceRed": "출혈 발생 확률 [{0:0.#%}] 감소", + "VitalityBuffBleedChanceRed": "출혈 발생 확률 [{0:0%}] 감소", "VitalityBuffBleedStop": "모든 출혈이 스스로 멈춥니다", "VitalityBuffRegeneration": "전투 중 체력 회복량 증가", - "VitalityBuffSurviobilityInc": "팔다리를 잃을 때 사망할 확률 [{0:0.#%}] 감소", + "VitalityBuffSurviobilityInc": "팔다리를 잃을 때 사망할 확률 [{0:0%}] 감소", "VitalityDescription": "[Vitality]\n활력은 출혈이 발생할 확률을 낮추고 신체 부위에 치명상을 입었을 때 즉사할 확률을 낮춤으로써 생존 확률을 높여 줍니다.", - "VitalityLevelingUpDescription": "The Vitality skill is improved by sustaining various bleedings and injuries.", "Voice": "캐릭터 목소리", "Voice 1": "음성 1", "Voice 2": "음성 2", "Voice volume:": "음성 음량:", "Voip/AutoBlockNotification": "말하기 버튼을 지나치게 많이 누르면 VOIP 사용이 제한될 수 있습니다", "Voip/BlockedMessage": "VOIP 남용으로 차단당한 상태입니다", - "Voip/DenoiseAmount": "잡음 감소:", + "Voip/DenoiseAmount": "Noise reduction", "Voip/Device": "장치", "Voip/DeviceSensitivity": "마이크 감도", "Voip/DisabledForOffline": "오프라인 모드에서는 VOIP 사용이 불가능합니다", @@ -15367,16 +15262,16 @@ "Voip/FirstTimeMessageHeader": "VOIP 사용 규칙", "Voip/InitializationFailed": "마이크 초기화 실패", "Voip/InitializationFailedTooltip": "초기화 작업 실패", - "Voip/MicrophoneSensitivity": "마이크 감도:", + "Voip/MicrophoneSensitivity": "Microphone sensitivity", "Voip/PlayersReported": "신고가 접수되었습니다", - "Voip/VoiceActivationEnable": "라디오 음성 켜기", - "Voip/WalkieTalkieVolume": "라디오 볼륨:", + "Voip/VoiceActivationEnable": "Radio voice activation", + "Voip/WalkieTalkieVolume": "Radio volume", "Voip/YouAreReported": "VOIP 남용으로 신고당하셨습니다", "WATCHLIST": "찜 목록", "WEAPON BUILDS": "무기 프리셋", "WEAPON MASTERING (01)": "무기 숙련도 (01)", "WEAPON MASTERING (02)": "무기 숙련도 (02)", - "WEAPON MASTERING (03)": "무기 숙련도 (03)", + "WEAPON MASTERING (03)": "WEAPON MASTERING (03)", "WEAPON MODDING": "무기 개조", "WEAPON SPREAD COMMON BUFF": "탄퍼짐 감소 (일반)", "WEAPON SPREAD RARE BUFF": "탄퍼짐 감소 (희귀)", @@ -15385,7 +15280,7 @@ "WEAR": "착용", "WEIGHT": "무게", "Walk": "걷기", - "WalkieTalkiePushToTalk": "라디오 사용", + "WalkieTalkiePushToTalk": "Use radio", "Warehouse 17": "Warehouse 17", "Warehouse 4": "Warehouse 4", "Warning! You don’t have TerraGroup Labs access keycard!": "경고! 테라그룹 연구소 키카드를 가지고 있지 않습니다!", @@ -15402,27 +15297,26 @@ "WaterCollector": "물 공급 시설", "Weapon": "무기", "Weapon has been built": "무기가 제작되었습니다", - "WeaponAccBuff": "무기 정확도 [{0:0.#%}] 증가", + "WeaponAccBuff": "무기 정확도 [{0:0%}] 증가", "WeaponBroken": "총기 문제발생", - "WeaponBuild/SetNameWindowCaption": "프리셋 이름", - "WeaponBuild/SetNameWindowPlaceholder": "프리셋 이름 입력", - "WeaponDeteriorationChanceReduce": "수리할 때 최대 내구도가 감소할 확률 [{0:0.#%}] 감소", + "WeaponBuild/SetNameWindowCaption": "PRESET NAME", + "WeaponBuild/SetNameWindowPlaceholder": "enter preset name", + "WeaponDeteriorationChanceReduce": "수리할 때 최대 내구도가 감소할 확률 [{0:0%}] 감소", "WeaponDoubleMastering": "숙련도를 두 배로 획득", - "WeaponDurabilityLossOnShotReduce": "사격할 때 감소하는 총기 내구도량 [{0:0.#%}] 감소", - "WeaponErgonomicsBuff": "무기 인체공학 [{0:0.#%}] 상승", + "WeaponDurabilityLossOnShotReduce": "사격할 때 감소하는 총기 내구도량 [{0:0%}] 감소", + "WeaponErgonomicsBuff": "무기 인체공학 [{0:0%}] 향상", "WeaponJammed": "총기 기능고장", "WeaponModding": "무기 개조", "WeaponModdingDescription": "[Weapon Modding]\n무기 개조 스킬은 부품의 인체공학 수치를 올려주고 소음기의 손상을 줄여줍니다.", "WeaponPunch": "개머리판으로 공격", - "WeaponRecoilBuff": "총기 반동 [{0:0.#%}] 감소", - "WeaponReloadBuff": "재장전속도 [{0:0.#%}] 상승", - "WeaponStiffHands": "무기 인체공학 [{0:0.#%}] 상승", - "WeaponSwapBuff": "무기 전환 속도 [{0:0.#%}] 상승", + "WeaponRecoilBuff": "총기 반동 [{0:0%}] 감소", + "WeaponReloadBuff": "재장전속도 [{0:0%}] 상승", + "WeaponStiffHands": "무기 인체공학 [{0:0%}] 증가", + "WeaponSwapBuff": "무기 전환 속도 [{0:0%}] 증가", "WeaponTreatment": "무기 유지보수", "WeaponTreatmentDescription": "[Weapon Maintenance]\n무기 관리 및 유지 보수 기술.", - "WeaponTreatmentLevelingUpDescription": "The Weapon Maintenance skill is improved by repairing weapons with repair kits.", "WearAmountRepairGunsReducePerLevel": "수리 키트를 사용하면 내구도 감소량이 줄어듭니다", - "WearChanceRepairGunsReduceEliteLevel": "수리 키트를 사용할 때 최대 내구도 감소 확률이 [50%] 낮아집니다", + "WearChanceRepairGunsReduceEliteLevel": "수리 키트를 사용할 때 최대 내구도 감소 확률이 50% 낮아집니다", "Weather conditions": "날씨 상태", "WeightLimit": "무게 제한", "Welcome screen description": "Escape from Tarkov에 오신 걸 환영합니다!\n이 게임에서 당신은 혼돈에 싸여 망해가는 러시아 노르빈스크 지역의 도시, 타르코프에서 생존을 위한 처절한 사투를 벌이게 될 것입니다. 당신의 캐릭터는 Contract Wars에 같이 휘말려 싸웠던 민간군사기업의 용병이지만 지역은 봉쇄되었고 본부는 응답조차도 없으며 그동안 주어진 모든 임무들이 무용지물이 되었습니다. 모두 각자의 목표가 있겠지만 적자생존을 따르거나, 봉쇄를 뚫고 탈출하거나 다른 이들을 도와주는 것은 모두 당신의 선택에 달려있습니다.\n\n매 레이드마다 죽거나 모든 것을 잃을 준비를 하십시오.\n모종의 이유로 인터넷이 끊기거나, 인터넷 장비에 문제가 생겨 연결이 끊긴다면 게임과의 연결 또한 끊기므로 이 점 염두해 주십시오. 게임과 연결이 끊길 시 캐릭터는 곧 사망하며 레이드를 위해 가져왔던 물건 및 획득했던 전리품들을 다 잃어버립니다. \n\n죽고 또 죽고 또 죽겠지만 잘 기억하세요 – 이것은 단순한 게임일 뿐이라는 것을! 그럼 행운을 빕니다!", @@ -15432,7 +15326,7 @@ "When you leave the raid you don’t get anything and also recieve Left the Action exit status.": "레이드에서 이탈할 경우 아이템을 얻을 수 없으며, 레이드 통계에 \"작전 중 이탈\"로 기록됩니다.", "When you leave the raid you don’t get anything and also recieve the Left the Action exit status.": "레이드에서 이탈할 경우 아이템을 얻을 수 없으며, 레이드 통계에 \"작전 중 이탈\"로 기록됩니다.", "Will be bought": "Will be bought", - "Win": "승리", + "Win": "Victory", "WindSpeed/Hurricane": "허리케인", "WindSpeed/Light": "약한 바람", "WindSpeed/Moderate": "보통 바람", @@ -15515,16 +15409,16 @@ "apply": "적용", "arena/AssistShort": "A", "arena/DeathShort": "D", - "arena/Exp": "경험치", + "arena/Exp": "Exp", "arena/KillShort": "K", "arena/Leaderboard/Common": "Common", "arena/Leaderboard/KillToDeath": "General", "arena/Leaderboard/Matches": "Matches", - "arena/Leaderboard/Modes": "게임 모드", - "arena/Leaderboard/PlayTime": "플레이 시간", - "arena/Leaderboard/Player": "플레이어", - "arena/Leaderboard/Rank": "랭크", - "arena/Leaderboard/RefreshHint{0}": "{0} 시간 마다 갱신됨", + "arena/Leaderboard/Modes": "Game modes", + "arena/Leaderboard/PlayTime": "Play time", + "arena/Leaderboard/Player": "Player", + "arena/Leaderboard/Rank": "Rank", + "arena/Leaderboard/RefreshHint{0}": "Refreshed every {0} hours.", "arena/Leaderboard/Title": "Leaderboard", "arena/Leaderboard/Wins": "Wins", "arena/Leaderboard/d": "d", @@ -15552,12 +15446,12 @@ "arena/career/commonStats/favPreset": "Favorite preset", "arena/career/commonStats/lastSession": "Last Arena session", "arena/career/commonStats/moneyEarned": "Money earned", - "arena/career/commonStats/moneySpent": "사용한 돈", + "arena/career/commonStats/moneySpent": "Money spent", "arena/career/commonStats/startDate": "Registration date", "arena/career/commonStats/title": "Overall statistics", - "arena/career/commonStats/xpHeal": "치료 경험치", - "arena/career/commonStats/xpKills": "킬 경험치", - "arena/career/commonStats/xpWin": "승리 경험치", + "arena/career/commonStats/xpHeal": "Healing XP", + "arena/career/commonStats/xpKills": "Kill XP", + "arena/career/commonStats/xpWin": "Victory XP", "arena/career/dashboard/avgGlpPerDay": "Avg ARP per day", "arena/career/dashboard/deaths": "Deaths", "arena/career/dashboard/headshots": "Headshot kills", @@ -15579,30 +15473,30 @@ "arena/career/ranksHint/elite100": "Elite TOP-100", "arena/career/ranksHint/elite1000": "Elite TOP-1000", "arena/career/ranksHint/specialRanks": "Special ranks", - "arena/career/shootOutStats/assists": "킬 도움", - "arena/career/shootOutStats/avgKillsPerMatch": "토너먼트 당 평균 킬 수", - "arena/career/shootOutStats/avgLifeTime": "평균 생존 시간", - "arena/career/shootOutStats/bestMatchKillStreak": "토너먼트 최다 연속 킬 횟수", + "arena/career/shootOutStats/assists": "Kill assists", + "arena/career/shootOutStats/avgKillsPerMatch": "Average kills per tournament", + "arena/career/shootOutStats/avgLifeTime": "Average life time", + "arena/career/shootOutStats/bestMatchKillStreak": "Highest tournament kill streak", "arena/career/shootOutStats/bestWinStreak": "Highest win streak", "arena/career/shootOutStats/capturedPoints": "Objectives captured", "arena/career/shootOutStats/deaths": "Deaths", "arena/career/shootOutStats/doubleKills": "Double kills", - "arena/career/shootOutStats/favPreset": "선호하는 프리셋", - "arena/career/shootOutStats/flawlessWins": "완벽한 승리 횟수", - "arena/career/shootOutStats/grenadeKills": "수류탄 킬", - "arena/career/shootOutStats/headshots": "헤드샷 킬", - "arena/career/shootOutStats/headshotsCoef": "헤드샷 비율, %", - "arena/career/shootOutStats/hpRestoredTotal": "회복한 체력 총량", + "arena/career/shootOutStats/favPreset": "Favorite preset", + "arena/career/shootOutStats/flawlessWins": "Flawless victories", + "arena/career/shootOutStats/grenadeKills": "Grenade kills", + "arena/career/shootOutStats/headshots": "Headshot kills", + "arena/career/shootOutStats/headshotsCoef": "Headshot kill rate, %", + "arena/career/shootOutStats/hpRestoredTotal": "Total HP restored", "arena/career/shootOutStats/kd": "K/D", - "arena/career/shootOutStats/kills": "플레이어 킬", - "arena/career/shootOutStats/killsPerMinCoef": "분당 킬 수, %", - "arena/career/shootOutStats/killsWithFavPreset": "선호하는 프리셋 킬 수", - "arena/career/shootOutStats/knifeKills": "근접무기 킬", + "arena/career/shootOutStats/kills": "Player kills", + "arena/career/shootOutStats/killsPerMinCoef": "Kills per minute rate, %", + "arena/career/shootOutStats/killsWithFavPreset": "Kills with favorite preset", + "arena/career/shootOutStats/knifeKills": "Melee weapon kills", "arena/career/shootOutStats/leaves": "Tournaments quit", "arena/career/shootOutStats/matches": "Tournaments played", "arena/career/shootOutStats/maxMatchXp": "Highest tournament XP", - "arena/career/shootOutStats/moneyEarned": "획득한 돈", - "arena/career/shootOutStats/moneySpent": "사용한 돈", + "arena/career/shootOutStats/moneyEarned": "Money earned", + "arena/career/shootOutStats/moneySpent": "Money spent", "arena/career/shootOutStats/overKills": "Overkills", "arena/career/shootOutStats/reachFinalBattleCoef": "Final Battle reach rate, %", "arena/career/shootOutStats/title1": "ShootOut 1vs1 statistics", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "Win rate, %", "arena/career/teamFightStats/wins": "Victories", "arena/career/teamFightStats/winsWithFavPreset": "Matches won with favorite preset", - "arena/customGames/create/samePresets": "프리셋 복제:", - "arena/customGames/create/setSamePresets": "Allow duplicate presets", "arena/customGames/invite/message{0}": "CUSTOM GAME INVITE FROM {0}", "arena/customGames/notify/GameRemoved": "Room has been disbanded", "arena/customgames/errors/notification/gamealreadystarted": "Game has already started", @@ -15697,26 +15589,24 @@ "arena/postmatch/preset_match_exp": "Match preset", "arena/postmatch/preset_modificator": "Modifier", "arena/postmatch/ranked_preset_unlock": "Ranked preset unlocked", - "arena/postmatch/reward_panel": "보상", - "arena/tab/ASSAULT": "돌격", + "arena/postmatch/reward_panel": "Reward", + "arena/tab/ASSAULT": "ASSAULT", "arena/tab/COLLECTION": "COLLECTION", - "arena/tab/FAVORITES": "즐겨찾기", - "arena/tab/MARKSMAN": "지정사수", + "arena/tab/FAVORITES": "FAVORITES", + "arena/tab/MARKSMAN": "MARKSMAN", "arena/tab/RATING": "RATING", - "arena/tab/SCOUT": "정찰", + "arena/tab/SCOUT": "SCOUT", "arena/tab/SQB": "CQB", "arena/tooltip/OverallMatches": "Total number of ranked and unranked matches played.", - "arena/tooltip/Presets": "프리셋", + "arena/tooltip/Presets": "Presets", "arena/tooltip/countGlp": "Your total ARP (Arena Reputation Points) rating. This is a statistic that determines your rating obtained in ranked game modes. It is used to match with players of equal skill, as well as to unlock new ranks and presets.", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", - "arena/tooltip/friends": "친구", + "arena/tooltip/friends": "Friends", "arena/tooltip/kdRatio": "Your overall Kill to Death ratio, calculated from all kills and deaths in ranked and unranked matches. Only the player kills are counted.", "arena/tooltip/leftGlp": "Amount of ARP rating required to reach the next rank.", "arena/tooltip/mainMenu": "메인 메뉴", "arena/tooltip/moneyRubles": "Roubles. Used to buy presets and are earned for victories in the Arena.", "arena/tooltip/ratingPlace": "Your position in the leaderboard.", - "arena/tooltip/settings": "설정", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", + "arena/tooltip/settings": "Settings", "arena/tooltip/sourcesGlp": "Earned ARP sources:", "arena/tooltip/winMatches": "Total number of wins in ranked and unranked matches.", "arena/tooltip/winRate": "Your overall win ratio, calculated from all wins and losses in ranked and unranked matches.", @@ -15731,7 +15621,7 @@ "bloodLost": "손실한 혈액", "bodiesLooted": "약탈한 시체", "bodypartsLost": "사지 손실 횟수", - "bonus/unlockweaponmodification_required": "은신처에서 무기 개조 기능을 잠금 해제해야 합니다.", + "bonus/unlockweaponmodification_required": "은신처에서 무기 개조 보너스를 잠금 해제해야 합니다.", "bossKills": "보스 사살 횟수", "btr_buy_01": "Transaction successful! Anything else?", "btr_generic_greetings_01": "You here for a chat, or are we going somewhere?", @@ -15757,7 +15647,7 @@ "choose face and voice": "얼굴과 목소리를 선택하세요", "close": "닫기", "collapse": "collapse", - "collar": "목", + "collar": "NECK", "colorblind/Deuteranopia": "제2색맹", "colorblind/None": "없음", "colorblind/Protanopia": "제1색맹", @@ -15869,8 +15759,8 @@ "glKills": "사살한 횟수 : 유탄발사기", "good": "좋음", "grenadeKills": "사살한 횟수 : 수류탄", - "groin": "사타구니", - "groin_back": "사타구니 (뒤쪽)", + "groin": "GROIN", + "groin_back": "GROIN (REAR)", "gym": "헬스장", "h": "시간", "handbook/Categories": "카테고리", @@ -15883,12 +15773,12 @@ "headshots": "헤드샷 횟수", "healall": "모두 치료하기", "heavybleedingdelta": "과다 출혈 발생 확률", - "helmet_back": "뒷머리", - "helmet_ears": "귀", - "helmet_eyes": "눈", - "helmet_jaw": "턱", - "helmet_neck": "목", - "helmet_top": "윗머리", + "helmet_back": "NAPE", + "helmet_ears": "EARS", + "helmet_eyes": "EYES", + "helmet_jaw": "JAW", + "helmet_neck": "NECK", + "helmet_top": "TOP", "hideout/Are you sure you want to leave the Hideout?": "정말 은신처를 나가겠습니까?", "hideout/Collecting": "수집 중", "hideout/Disable all light": "조명 끄기", @@ -15929,7 +15819,7 @@ "hideout/Unfold poppers": "Unfold poppers", "hideout/Welcome": "환영합니다!\n당신의 은신처에 오신 것을 환영합니다. 지금은 쓰레기나 잔뜩 쌓인 구닥다리 방공호이지만, 노력하는 만큼 당신의 안락한 삶을 보장하는 지하 기지로 탈바꿈할 수 있습니다. \n\n레이드에서 구해오거나 구입한 재료들을 사용해서 은신처의 각종 시설들을 건설하거나 개선할 수 있으며, 이런 시설들로부터 레이드 후 체력, 에너지, 수분 재생률 향상, 스킬 레벨업 속도 증폭, 다양한 아이템 제작 능력 등을 얻을 수 있습니다.\n\n타르코프에서 탈출하는 것은 생각보다 오래 걸릴지도 모릅니다. 그렇기 때문에 당신에게는 재정비를 하고 다시 힘을 모을 수 있는 장소가 필요합니다. 그러기 위해 가장 적합한 장소는 바로 이곳, 당신의 은신처입니다.\n\n행운을 빕니다!", "hideout/Welcome title": "은신처에 오신것을 환영합니다.", - "hideout/allweapons": "모든 무기", + "hideout/allweapons": "All weapons", "hideout/bonus_is_inactive_due_to_energy": "발전기가 꺼져있으면 보너스가 비활성화됩니다", "hideout/bonus_is_inactive_due_to_production_state": "제작 상태로 인해 보너스가 비활성 되었습니다.", "hideout/cannot start production without the fuel in generator": "발전기에 연료가 없는 상태에서는 제작할 수 없습니다.", @@ -15939,20 +15829,20 @@ "hideout_5d6282d64e7f7ccdcb940567": "돈만 제대로 쥐여 준다면 스캐브들이 각종 물건들을 찾아올 것입니다.", "hideout_5d78c1461d79cb822a38b5f7": "무기 개조 기능 잠금 해제", "hideout_5d836517a57db3778f31fde7": "정제수 생산", - "hideout_5d8b82b854358e8b7383cf4f": "밀주 제작", + "hideout_5d8b82b854358e8b7383cf4f": "moonshine(밀주) 제작", "hideout_5d8b8310270eff88e1f47beb": "비트코인 채굴", "hideout_5d8b89addfc57a648453e89d": "약품 제작", - "hideout_6242ae6af8a4ecb3a94f7350": "수리 키트로 무기 수리", - "hideout_6242aef167801cf6ebb6f601": "수리 키트로 방어구 수리", - "hideout_6548afcae28f7800b02d2004": "PMC 인식표", - "hideout_6548afd9eb937c71d7776652": "작은 전리품", - "hideout_6548afe3e7726b6d1b4317d5": "큰 전리품", - "hideout_6549f1926b29cf3df65ea139": "PMC 인식표", - "hideout_6549f19ae28f7800b02d204f": "작은 전리품", - "hideout_6549f1a284d9162bba1fbbb1": "큰 전리품", - "hideout_6549f1c405b256642e3e9131": "PMC 인식표", - "hideout_6549f1cdde376a2fc737e8a8": "작은 전리품", - "hideout_6549f1d37d6e4756c83afa77": "큰 전리품", + "hideout_6242ae6af8a4ecb3a94f7350": "수리 키트로 무기 수리하기", + "hideout_6242aef167801cf6ebb6f601": "수리 키트로 방어구 수리하기", + "hideout_6548afcae28f7800b02d2004": "PMC dogtags", + "hideout_6548afd9eb937c71d7776652": "Small trophies", + "hideout_6548afe3e7726b6d1b4317d5": "Large trophies", + "hideout_6549f1926b29cf3df65ea139": "PMC dogtags", + "hideout_6549f19ae28f7800b02d204f": "Small trophies", + "hideout_6549f1a284d9162bba1fbbb1": "Large trophies", + "hideout_6549f1c405b256642e3e9131": "PMC dogtags", + "hideout_6549f1cdde376a2fc737e8a8": "Small trophies", + "hideout_6549f1d37d6e4756c83afa77": "Large trophies", "hideout_AdditionalSlots": "추가 슬롯", "hideout_DebuffEndDelay": "부정적인 효과 제거율", "hideout_EnergyRegeneration": "에너지 회복 속도", @@ -15970,7 +15860,7 @@ "hideout_ScavCooldownTimer": "스캐브 쿨타임", "hideout_SkillGroupLevelingBoost": "스킬 그룹 경험치 부스트", "hideout_SkillLevelingBoost": "스킬 경험치 획득량 증가", - "hideout_StashRows": "창고 가로줄 수", + "hideout_StashRows": "Inventory lines in the stash", "hideout_StashSize": "창고 크기", "hideout_UnlockAddOffer": "플리마켓 아이템 판매 기능 잠금 해제", "hideout_UnlockArmorRepair": "수리 키트를 통해 방어구 수리 잠금 해제", @@ -16008,7 +15898,7 @@ "hideout_area_15_stage_3_description": "형광등이 설치된 조명시설입니다. 가장 고르고 밝은 빛을 냅니다.", "hideout_area_16_name": "진열장", "hideout_area_16_stage_0_description": "This wall would be perfect to house a grandma's sideboard of collectibles.", - "hideout_area_16_stage_1_description": "각종 트로피나 수집품들을 진열하는 특별한 진열장입니다.", + "hideout_area_16_stage_1_description": "각종 트로피나 수집품들을 전열하는 특별한 진열장입니다.", "hideout_area_16_stage_2_description": "A great rack from IDEA that can very nicely hold all the figurines found in raids and several dogtags taken from PMCs.", "hideout_area_17_name": "공기 정화 시설", "hideout_area_17_stage_1_description": "환기 시설과 연결된 공기 정화 시설입니다. 공기 중의 해로운 물질을 걸러내어 깨끗한 공기를 제공해 줍니다.", @@ -16038,7 +15928,7 @@ "hideout_area_23_stage_0_description": "A space equipped for a makeshift gym.", "hideout_area_23_stage_1_description": "A well-equipped gym to keep your body in good physical shape.", "hideout_area_24_name": "무기 거치대", - "hideout_area_24_stage_0_description": "무기 거치대를 설치하기에 아주 좋은 장소입니다.", + "hideout_area_24_stage_0_description": "무기를 거치하기에 아주 좋은 시설입니다.", "hideout_area_24_stage_1_description": "A small weapon rack. Simplifies firearm storage and allows to display weapons in a fancy way.", "hideout_area_24_stage_2_description": "A medium-sized weapon rack. Simplifies firearm storage and allows to display weapons in a fancy way.", "hideout_area_24_stage_3_description": "A large weapon rack. Simplifies firearm storage and allows to display weapons in a fancy way.", @@ -16094,18 +15984,18 @@ "keeper_buy_07": "좋군.", "keeper_buy_08": "돌아갈 때는 눈 크게 뜨고 항상 조심하게.", "keeper_buy_09": "이거 구하기 힘든 물건이야.", - "keeper_dialog_option_who_are_you_01": "내가 누군지는 중요하지 않네. 자네가 누군지, 왜 여기 왔는지가 중요하지.", - "keeper_dialog_option_who_are_you_02": "나는 등대지기라네. 나는 모든 것과 모든 이를 지켜보지, 그래고 모두가 내 빛을 볼 수 있다네. 불안정한 시기에, 필요한 정보를 확보하는 건 필수라네. 정보는 연결을 만들어내고, 연결은 곧 기회가 되지.", - "keeper_dialog_option_who_are_you_03": "그래. 주변 환경을 변화시키고 결과적으로 현실을 바꿀 수 있는 기회. 이런 환경에서 인간에게 필요한 기본적인 것이 바로 생존이라네. 나는 단순히 생존하는 것에서 멈추고 싶지 않네, 나는 생존을 통제하고 싶어.", - "keeper_dialog_option_who_are_you_04": "생존자에게는 그렇겠지. 생존을 보장해 주는 사람에겐 모든 것이 다르다네. 우리는 이유가 있기에 만났지. 모든 사건에는 의미가 있으며, 우연은 없다네.", - "keeper_dialog_option_who_are_you_05": "자네가 먼저 날 찾았네, 안 그런가? 그 이유를 스스로에게 물어본 적 없는가?", - "keeper_dialog_option_who_are_you_06": "Being close to the one for whom the collapse is the beginning of the new. 자네는 단순히 살아남는 걸 원하는 게 아니라 통제하고 싶은 거겠지.", - "keeper_dialog_option_who_are_you_07": "타르코프는 바로 너 자신이라네. 나 자신에게서 탈출할 수는 없지 않은가. 나 역시 탈출하지 못한 것처럼 말이네.", - "keeper_dialog_option_who_are_you_08": "이 세계는 끝을 향하고 있네, 거센 바다 한가운데서 녹아내리는 얼음 덩어리를 붙잡으려는 이 한심한 시도들, 이 모든 전투, 상인들의 위선, 선동, 폭력이 폭력을 부르는 것. 이 모든 것들은 아주 구체적인 결과로 이어진다네. 식(Eclipse)은 없을 걸세, 대신 부활이 있겠지.", - "keeper_dialog_option_who_are_you_09": "자네는 타르코프를 탈출할 수 없을 거야.", - "keeper_dialog_option_who_are_you_10": "이해를 못 했군, 하지만 다들 그렇지. 나도 처음엔 그들이 내게 손 내밀기 전까진 이해하지 못했어.", - "keeper_dialog_option_who_are_you_11": "우리가 더 이상 이야기 할 건 없다네. 시간이 흐르면서 얽힌 것들을 풀어나가면 스스로 알아낼 수 있을 걸세.", - "keeper_first_greeting_01": "자넨가? 맞아, 또 누가 있겠나. 그래, 내 테스트를 모두 통과했다고? 나는 등대지기라네. 아마 나에 대해 들어봤겠지. 많은 사람들이 나와 함께 일하고 싶어 하지만, 아무나 나와 함께할 순 없다네.", + "keeper_dialog_option_who_are_you_01": "Who I am is not important at all at the moment. What matters is who you are and why you are here.", + "keeper_dialog_option_who_are_you_02": "I am Lightkeeper. I watch over everything and everyone, and all can see my light. In our restless time, it's critical to have the necessary information. Information creates connections, connections yield opportunities.", + "keeper_dialog_option_who_are_you_03": "Yes. The opportunity to change the surroundings and, as a consequence, the reality. In this kind of environment, the basic necessity for human beings is survival. I don't want to simply survive, I want to control the survival.", + "keeper_dialog_option_who_are_you_04": "It does, for the survivor. For someone who ensures survival, everything is different. We met for a reason. All events have a meaning, there are no accidents.", + "keeper_dialog_option_who_are_you_05": "But it was you who was looking for me, wasn’t it? Did you ask yourself why?", + "keeper_dialog_option_who_are_you_06": "Being close to the one for whom the collapse is the beginning of the new. You don’t want to simply survive, you want to be in control.", + "keeper_dialog_option_who_are_you_07": "Tarkov is who you are. You cannot escape from yourself. Just as I could not escape from myself.", + "keeper_dialog_option_who_are_you_08": "This world is ending, all these pathetic attempts to hold on to a melting ice floe in the middle of a raging ocean - all these local fights, the hypocrisy of the traders, the instigation, violence multiplied by violence. All this leads to a very specific result. There will be no eclipse, there will be rebirth.", + "keeper_dialog_option_who_are_you_09": "You will not escape from Tarkov.", + "keeper_dialog_option_who_are_you_10": "You don’t understand, but this is natural. I didn't understand it at first either, when they reached out to me.", + "keeper_dialog_option_who_are_you_11": "There's nothing more for us to talk about. In time, you'll figure it out for yourself, as you unravel the tangle.", + "keeper_first_greeting_01": "Is that you? Right, who else would it be. So, you’ve passed all my tests? I am Lightkeeper. Guess you’ve heard about me. Everyone wants to do business with me, but not everyone can.", "keeper_generic_farewell_01": "조만간 다시 보지.", "keeper_generic_farewell_02": "그럼 이만.", "keeper_generic_farewell_03": "이게 전부라네. 좋은 하루 되길 바라지.", @@ -16151,13 +16041,13 @@ "lab_Vent": "Ventilation shaft", "lastSession": "마지막으로 플레이한 날짜", "leader": "리더", - "left_side_plate": "왼쪽 방탄판", + "left_side_plate": "L. PLATE", "leftleg": "왼다리", - "leftside": "왼쪽 옆구리", - "leftupperarm": "왼쪽 어깨", + "leftside": "Left side", + "leftupperarm": "Left shoulder", "lessDamagedPart": "가장 적게 다친 부위", "lightbleedingdelta": "가벼운 출혈 발생 확률", - "longshotDist": "최장 명중 거리", + "longshotDist": "가장 먼 사살 거리", "longshots": "장거리 헤드샷 횟수", "looking for group": "파티 찾는 중", "loudness": "음량", @@ -16176,8 +16066,8 @@ "moa": "MOA", "mod_pistolgrip_000": "권총 손잡이", "modsFound": "발견한 부품", - "neckback": "목 뒤쪽", - "neckfront": "목", + "neckback": "Back neck", + "neckfront": "Neck", "next level": "벽 부수기", "no available item": "이용 불가능한 아이템", "no_free_slot": "빈 슬롯이 없습니다", @@ -16351,15 +16241,15 @@ "repairability/Very good": "매우 좋음", "rest space": "휴식 공간", "restart_quest": "재시작", - "ribcage": "흉부", - "right_side_plate": "오른쪽 방탄판", + "ribcage": "Chest", + "right_side_plate": "R. PLATE", "rightleg": "오른다리", - "rightside": "오른쪽 옆구리", - "rightupperarm": "오른쪽 어깨", + "rightside": "Right side", + "rightupperarm": "Right shoulder", "ro": "Română", "rpm": "rpm", "ru": "Русский", - "rub": "루블", + "rub": "rub", "savageKills": "스캐브 사살 횟수", "scav_NW": "Railway Exfil", "scav_e1": "Basement Descent", @@ -16370,36 +16260,36 @@ "scav_e6": "Basement Entrance", "scav_e7": "Cardinal Apartment Complex Parking", "scav_e8": "Klimov Shopping Mall Exfil", - "searchspeed": "확인 속도 [{0:0.#%}] 증가", + "searchspeed": "확인 속도 [{0:0%}] 증가", "sec": "초", "select weapon body for the build": "조립하려는 무기를 선택해 주세요", "semiauto": "반 자동", "shootingrange": "사격장", "shotgunKills": "사살한 횟수 : 산탄총", - "shoulder_l": "왼쪽 어깨", - "shoulder_r": "오른쪽 어깨", + "shoulder_l": "LFT. SHOULDER", + "shoulder_r": "RGT. SHOULDER", "single": "단발", "sk": "Slovenský", "slow": "느림", "smgKills": "사살한 횟수 : 기관단총", - "sniperKills": "사살한 횟수 : 볼트액션 소총", - "soft_armor_back": "등", - "soft_armor_front": "흉부", - "soft_armor_left": "왼쪽 옆구리", - "soft_armor_left_arm": "왼쪽 어깨", - "soft_armor_right": "오른쪽 옆구리", - "soft_armor_right_arm": "오른쪽 어깨", - "soft_armor_stomach": "복부", + "sniperKills": "사살한 횟수 : 저격총", + "soft_armor_back": "BACK", + "soft_armor_front": "CHEST", + "soft_armor_left": "LFT. SIDE", + "soft_armor_left_arm": "LFT. SHOULDER", + "soft_armor_right": "RGT. SIDE", + "soft_armor_right_arm": "RGT. SHOULDER", + "soft_armor_stomach": "STOMACH", "sorting table": "정렬 테이블", "specFound": "발견한 특수무기", "specKills": "사살한 횟수 : 특수무기", - "spectator_azure_team": "아주르 팀", - "spectator_blue_team": "블루 팀", - "spectator_fuchsia_team": "핑크 팀", - "spectator_green_team": "그린 팀", - "spectator_red_team": "레드 팀", - "spectator_white_team": "화이트 팀", - "spectator_yellow_team": "옐로우 팀", + "spectator_azure_team": "하늘 팀", + "spectator_blue_team": "파랑 팀", + "spectator_fuchsia_team": "분홍 팀", + "spectator_green_team": "초록 팀", + "spectator_red_team": "빨강 팀", + "spectator_white_team": "하양 팀", + "spectator_yellow_team": "노랑 팀", "starvDeaths": "아사 횟수", "stationHeals": "치료 서비스 이용 횟수", "suicides": "자살 횟수", @@ -16450,13 +16340,11 @@ "{0} GroupPlayerBlocking/MatchLeave": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for quitting a game", "{0} GroupPlayerBlocking/NotAcceptedMatch": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for failing to accept a match", "{0} GroupPlayerBlocking/TeamKill": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for repeated teamkills", - "{0} Violation/IntentionalTeamDamage/Blocking": "{0} 플레이어가 지속적인 팀원 공격으로 인해 처벌을 받고 경기에서 퇴장당했습니다", - "{0} Violation/IntentionalTeamKill/Blocking": "{0} 플레이어가 경기 시작 직후 팀원을 사살 하여 처벌을 받고 경기에서 퇴장당했습니다", - "{0} Violation/TeamKill/Blocking": "{0} 플레이어가 팀원을 사살 하여 처벌을 받고 경기에서 퇴장당했습니다", + "{0} Violation/TeamKill/Blocking": "Player {0} has been removed from the match and received a penalty for teamkilling", "{0} added you to the ignore list": "{0} 님이 당신을 무시 목록에 추가하였습니다", "{0} ask to cooperate": "{0}님이 인사합니다", - "{0} canceled friend request": "{0} 플레이어가 친구 요청을 취소했습니다", - "{0} disconnected notification": "{0} 님이 연결이 끊어졌습니다", + "{0} canceled friend request": "Player {0} has cancelled the friend request", + "{0} disconnected notification": "{0} lost connection", "{0} ep/hr ({1} ep/hr in total)": "{0} EP/h (최종 : {1} EP/h)", "{0} has accepted your friends request": "{0} 님이 친구 요청을 수락하였습니다", "{0} has been insured": "{0} 은 보험 처리되었습니다", @@ -16469,10 +16357,10 @@ "{0} items has been insured": "{0} 물건들은 보험 처리되었습니다", "{0} items insured": "{0} 개의 아이템이 등록됨", "{0} items to insure": "{0} 개의 아이템이 선택됨", - "{0} left notification": "{0} 님이 게임을 나갔습니다", + "{0} left notification": "{0} left the game", "{0} pts/hr ({1} pts/hr in total)": "시간당 {0} 포인트 ({1} 총 시간당 포인트)", - "{0} reconnected notification": "{0} 님이 재접속함", - "{0} reconnecting notification": "{0} 님이 재접속중", + "{0} reconnected notification": "{0} reconnected", + "{0} reconnecting notification": "{0} is reconnecting", "{0} removed you from friends list": "{0} 님이 당신을 친구 목록에서 제거했습니다", "{0} removed you from the ignore list": "{0} 무시 목록에서 제거", "{0} seconds left": "{0} 초 남음", @@ -16662,77 +16550,77 @@ "5c518ec986f7743b68682ce2": "기계식 열쇠", "5c518ed586f774119a772aee": "전자식 열쇠", "6564b96a189fe36f356d177c": "", - "58fe0e2d86f774720e7a498d 0": "안녕하신가, 제군? 혹시 {date} {time} 때 {location} 에서 물건 잃어버리지 않았나? 맘 바뀌기 전에 빨리 가져가게나.", - "58fe0e2d86f774720e7a498d 1": "물건을 잃어버렸나 총잡이? 풉, 가져가게 람보. {date} {time} 이 때 {location} 으로 가면서 자네가 보험 들어놨던 물건이네.", - "58fe0e2d86f774720e7a498d 2": "{date} 이 날에 {location} 에서 전투가 잘 안됐나 보구만? 그렇지? 내 부하들이 자네 물건을 수거해왔기에 물어봤다네. 가져갈 건가 말 건가?", - "58fe0e2d86f774720e7a498d 3": "기운 내게, 제군! 자네가 든 보험 덕에 {date} {time} 때 {location} 에서 잃어버렸던 물품이 회수됐다네. 날이면 날마다 오는 행운이 아니야!", - "58fe0e2d86f774720e7a498d 4": "어이, 물총잡이 양반! 그래, 자네. {date} 날에 {location} 에서 레이드 하려다 찜찜한 기분 들었지? 그때 보험 들길 잘 했군. 물건들 가져가고 여기 점선 따라 서명하게나.", - "58fe0e3486f77471f772c3f2 0": "{date} {time} 때 {location} 으로 들어가기 전, 보험을 들어 두지 않았나요? 여기 받으세요.", - "58fe0e3486f77471f772c3f2 1": "저는 이런 장비들을 다룰 줄 아는 전문가는 아니지만, 이 물건이 당신 것이라는 건 알 수 있어요. {date} {time} 에 보험 든 물건을 {location} 에서 회수해왔어요.", - "58fe0e3486f77471f772c3f2 2": "잘 왔어요. 이런 건 제 전문 분야가 아니지만, 당신이 {date} 날짜에 계약했던 보험에 따라 몇 가지 물품을 {location} 에서 찾아왔어요. 어서 받아 가세요.", - "58fe0e3486f77471f772c3f2 3": "{date} {time} 에 보험 들었던 물건을 찾고 있나요? 가능한 빨리 가져가세요.", - "58fe0e3486f77471f772c3f2 4": "당신을 한 조각으로 다시 볼 수 있어서 다행이에요. {date} 때 보험 든 장비를 {location} 지역에서 다시 가져왔어요. 수령해가시겠어요?", - "58fe0e3a86f774725a56b846 0": "아마 이게 자네 물건인 것 같은데, 내 부하들이 {date} 에 {location} 에서 발견했다네.", - "58fe0e4586f774728248ca13 0": "어이 당신! 내가 당신이 {date} {time} 에 보험들어놨다가 {location} 에서 잃어버린 물품들을 갖고 있는데 말야. 명심해, 난 최대 24시간 이상 맡아두지 않아!", - "58fe0e4586f774728248ca13 1": "{location} 에서 내 부하들이 물건을 꽤나 주워왔네. {date} 날 {time} 시간쯤 잃어 버린 물건 없는가?", - "58fe0e4586f774728248ca13 2": "자네 {date} - {time} 날짜에 {location} 에서 무슨 일이 일어났는지 알고 있나? 아니면 자네도 혹시 거기 같이 있었나? 어쨌든, 거기서 흥미로운 물건을 잔뜩 발견했다네. 자네 물건이 있을 수 있으니 한번 보게나. 만약 없다면 내가 팔아치울 걸세.", - "58fe0e4586f774728248ca13 3": "아마 이게 자네 물건인 것 같은데, 내 부하들이 {date} 에 {location} 에서 발견했다네.", - "58fe0e4586f774728248ca13 4": "{date} 때 {location} 에서 운이 좀 안 좋았나보군? 다행히도 내 부하들이 자네 장비를 좀 가져왔다네.", - "59008bca86f7745cb11ae67b 0": "{date} {time} 에 들었던 보험 완료. 다음에 보자고.", + "58fe0e2d86f774720e7a498d 0": "안녕하신가, 제군? 혹시 {time} {date} 때 {location} 에서 물건 잃어버리지 않았나? 맘 바뀌기 전에 빨리 가져가게나", + "58fe0e2d86f774720e7a498d 1": "자네 {date} 날짜 {time} 시간 {location} 지역에 들어갈 때 보험 들었었나? 장비 잃어버렸었고? 받아 가게나 람보 양반, 자네 물품이라네.", + "58fe0e2d86f774720e7a498d 2": "{location} 지역 {date} 전투가 잘 안됐나 보구만? 그렇지? 아아, 자네 물품이 여기 있기에 물어봤다네. 가져갈 거야 말 거야?", + "58fe0e2d86f774720e7a498d 3": "기운 내게, 제군! 자네가 든 보험 덕에 {date} {time} 때 {location} 지역에서 잃어버렸던 물품이 회수됐다네. 날이면 날마다 오는 행운이 아니야!", + "58fe0e2d86f774720e7a498d 4": "어이, 물총잡이 양반! 그래, 자네. {location} 지역에서 {date} 때 레이드 하려다 찜찜한 기분 들었지? 그때 보험 들길 잘 했군. 물건들 가져가고 여기 점선 따라 서명하게나.", + "58fe0e3486f77471f772c3f2 0": "{date} {time} 때 {location} 지역으로 들어가기 전, 보험을 들어 두지 않았나요? 여기 받으세요.", + "58fe0e3486f77471f772c3f2 1": "젊은 양반. 내가 이런 물건들을 잘 아는 건 아니지만, 이 물건들은 다신 것으로 보이네요. {date} {time} 에 보험 든 물건들이고 {location} 에서 회수해왔어요.", + "58fe0e3486f77471f772c3f2 2": "잘 왔어요. 이런 건 제 전문 분야가 아니지만, 당신의 {date} 보험 계약건에 따라 몇 가지 물품을 {location}에서 찾아왔어요. 어서 받아 가세요.", + "58fe0e3486f77471f772c3f2 3": "{date} {time} 에 보험 들었던 자네 소지품을 찾고 있나? 가능한 빨리 가져가도록 하게나.", + "58fe0e3486f77471f772c3f2 4": "건강하게 다시 만나 반갑네, {date} 때 보험 든 자네 장구를 {location} 지역에서 다시 가져왔지. 가져가겠나?", + "58fe0e3a86f774725a56b846 0": "아마 이게 자네 물건인 것 같은데, 내 부하들이 {date} 에 {location} 맵에서 발견했다네.", + "58fe0e4586f774728248ca13 0": "어이 당신! 내가 당신이 {date} 일 {time}시 에 보험들어놨다가 {location} 에서 잃어버린 물품들을 갖고 있는데 말야. 명심해, 난 최대 24시간 이상 맡아두지 않아!", + "58fe0e4586f774728248ca13 1": "내가 물건 한두 가지 주워둔 게 있다만. 혹시 자네가 {date} {time} 에 {location} 지역에서 잃어버린 물건 있나?", + "58fe0e4586f774728248ca13 2": "혹시 {date} {time} 에 {location} 지역에서 일어났던 대규모 총격전 소식 들었나요? 당신도 있었으려나요? 아무튼 거기서 흥미로운 물건들 여러 가지를 수거해왔어요. 한번 살펴보세요. 혹시 당신 게 섞여있을지 누가 알아요? 없다면 나머지는 처분할 거예요.", + "58fe0e4586f774728248ca13 3": "{date} 에 {location} 지역에서 보험 들어놨다가 잃어버린 이 물건들, 당신 거죠?", + "58fe0e4586f774728248ca13 4": "보아하니, {date} 에 {location} 지역에서 보험을 들었었지 않나? 운도 좋지, 당신 물품은 회수됐소.", + "59008bca86f7745cb11ae67b 0": "{date} {time} 에 들었던 보험 계약 완료. 다음에 다시 봐요.", "59008bca86f7745cb11ae67b 1": "이제 됐지? 그럼 나중에 보자고. 일하러 가 봐야 하니까.", "59008bca86f7745cb11ae67b 2": "{date} {time} 에 들었던 보험 건은 완료된 걸로 하지. 별 탈 없이 만수무강하게나, 자네.", - "59008bca86f7745cb11ae67b 3": "자네 오늘 운이 좋구먼, 자네 물건을 보험든 건 탁월한 선택이었네. 여기 가져가게나 그리고 또 봅세.", - "59008bca86f7745cb11ae67b 4": "자네 스스로의 감을 믿고 내게 보험을 맡긴 건 정말 좋은 선택이었어. \b자넬 위해 이렇게 준비했지. 이번 보험은 완료되었네.", - "59008bd186f77459395f4d63 0": "좋아요. {date} {time} 에 들어놨던 보험 건은 이걸로 마무리하도록 하죠. \b잃어버렸던 물건을 전부 되찾았길 바라요.", - "59008bd186f77459395f4d63 1": "Well, that is it for now then. Feel free to use my insurance services any time you need.", - "59008bd186f77459395f4d63 2": "I'm closing the insurance case that happened on {date} at {time}. Goodbye.", - "59008bd186f77459395f4d63 3": "Insurance case complete. See you next time.", - "59008bd186f77459395f4d63 4": "Your insurance worked out well this time. Make sure to get another one.", - "59008bd986f7745c295b5fae 0": "{date} {time} 에 들었던 보험이 완료되었네. 다음에 보자고.", + "59008bca86f7745cb11ae67b 3": "보험 한번 제대로 들어놨구만. 오늘은 재수가 좋은가 보군. 또 보자고.", + "59008bca86f7745cb11ae67b 4": "이것 보게, 적절한 시기에 보험에 가입되어 있구만. 보험 건은 마무리하지.", + "59008bd186f77459395f4d63 0": "좋네! {date} {time} 에 들어놨던 보험 건은 이걸로 마무리하지. 잃어버린 것 하나 없이 다 있길 바라네.", + "59008bd186f77459395f4d63 1": "좋아, 다 됐네. 보험들고 싶으면 언제든지 말만 하라고.", + "59008bd186f77459395f4d63 2": "{date} 일 {time} 에 맺은 보험 건은 끝내겠습니다. 수고하세요.", + "59008bd186f77459395f4d63 3": "보험 계약 완료. 나중에 보자고.", + "59008bd186f77459395f4d63 4": "이번엔 보험이 잘 됐군. 다음엔 서둘러.", + "59008bd986f7745c295b5fae 0": "{date} 일 {time} 보험 완료", "59008be186f7745bf8452551 0": "좋네! 이 보험 건은 마무리하도록 하지.", - "59008be186f7745bf8452551 1": "내가 보기에 모든 게 잘 풀린 것 같네만, 다음엔 더 조심하도록 하게. {date} {time} 보험 건은 이만 마무리 하겠네.", - "59008be186f7745bf8452551 2": "좋아, 이 보험 건은 마무리하겠네. 필요한 게 있으시면 언제든지 또 와주게, 돈 챙겨오는 건 잊지 말고.", - "59008be186f7745bf8452551 3": "자네 물건은 다 온전하군, 이 보험 건은 이만 마무리 하겠네. 혹시 다른 보험이 더 필요한가?", + "59008be186f7745bf8452551 1": "모두 잘 마무리된 것 같네요. {date}일 {time}시 에 맺었던 보험계약은 끝내겠습니다. 다음부턴 조심하도록 해요.", + "59008be186f7745bf8452551 2": "좋아요, 이 보험 건은 마무리하겠습니다. 필요한 게 있으시면 언제든지 오세요. 돈 챙겨오시는 거 잊지 말고요.", + "59008be186f7745bf8452551 3": "물건 가져가시고, 계약도 끝났고, 깔끔하군. 재계약하실거요?", "5900a71886f7742d9a47454c 0": "이봐! 자네 물건을 오래 보관해 줄 수는 없다고 말했지 않는가! 이미 처분해버렸네!", - "5900a71886f7742d9a47454c 1": "뭐? 자네 물건? 이제 더이상 자네 것이 아니네. 영원히 기다려 줄 순 없어. 나는 엄연히 사업을 하고 있다는 걸 잊지 말게.", - "5900a71886f7742d9a47454c 2": "자네 어디 가 있었나? 오랜 기간 자네 물건을 보관했지만 시간이 다 되어 다 판매해 버렸네. 유감이군.", - "5900a71886f7742d9a47454c 3": "자네 일진이 좀 안 좋은 날이군, 보관 기간이 만료되었네. 다음엔 더 일찍 물건을 찾아가게나.", - "5900a72286f7742daa4835d6 0": "Young man, I'm not a warehouse keeper and I can't hold your returned items forever. I'm afraid that these items are gone.", - "5900a72286f7742daa4835d6 1": "What are you trying to say? You should have come and gotten your returned items earlier - now they are gone.", - "5900a72286f7742daa4835d6 2": "Yes, good afternoon. I am afraid it is impossible to get your insured items because the storage time has expired. Goodbye.", - "5900a72a86f7742d9d0593c3 0": "Sorry, the {date} insurance during {time} has already expired. Should've been quicker.", - "5900a73486f7742ad17008c5 0": "미안하지만 물건 보관 기간이 훨씬 지나버렸네. 유감이지만 자네에게 줄 물건은 없어.", - "5900a73486f7742ad17008c5 1": "대체 어디에 있었나? 자네가 죽은 줄 알고 전부 팔아버렸지. 여기가 공짜 저장고인 줄 아는가? 말도 안되는 생각 하지 말게.", - "5900a73486f7742ad17008c5 2": "24시간 하루 종일 자네 물건을 보관해 주고 있었어! 이젠 없지만 말이야. 다음엔 더 일찍 가져가게.", - "5914450f86f7744bb83be8a2 0": "좋아, 내 부하들이 네 물품을 되찾으러 갔어. 기다려보게나, 제군.", - "5914450f86f7744bb83be8a2 1": "내 부하들이 자네 물건을 찾으러 {location} 으로 갔네. 조금만 기다리면 회수해 올 걸세.", + "5900a71886f7742d9a47454c 1": "뭐? 자네 물건 말야? 이제 없어. 그러게 좀 빨리 오지 그랬나. 다음번엔 조심하도록 해.", + "5900a71886f7742d9a47454c 2": "도대체 어디 있었나? 자네가 물건을 너무 오랫동안 찾아가지 않아서 팔아버렸다네. 미안하군", + "5900a71886f7742d9a47454c 3": "자네 오늘은 날이 아닌가 보구만. 보관 기간이 만료됐네.", + "5900a72286f7742daa4835d6 0": "젊은 양반, 내 직업은 창고지기가 아니에요. 당신 물건들을 영원히 보관해 줄 순 없어요. 안타깝지만 물건 들을 처분했답니다.", + "5900a72286f7742daa4835d6 1": "뭐 불만이라도 있어? 일찍 와서 회수된 물품을 가져갔어야지 - 찾으려 해도 이미 없어!", + "5900a72286f7742daa4835d6 2": "좋은 날이군요. 안타깝게도 오랫동안 찾아가지 않으셨기 때문에 이 물품은 가져가실 수 없습니다. 그럼 좋은 하루 보내세요.", + "5900a72a86f7742d9d0593c3 0": "{date} (time} 에 들어둔 보험이 실패했습니다.", + "5900a73486f7742ad17008c5 0": "미안하지만 보관 기간이 지난지 오래라 보험처리된 물건들을 돌려드릴 수 없어요. 유감스럽네요.", + "5900a73486f7742ad17008c5 1": "대체 어디에 있었어요? 당신 물건들을 온종일 지켜도 안 나타나길래 죽을 줄 알고 벌써 다 팔아버렸어요. 여기가 무료 저장고라도 되는 줄 알아요? 참나!", + "5900a73486f7742ad17008c5 2": "당신 물건을 24시간 동안 보관해 놓고 있었어요! 하루 종일 말이에요! 이젠 없어진 지 오래죠.", + "5914450f86f7744bb83be8a2 0": "좋아, 내 부하들이 네 물품을 되찾으러 갔어. 기다려보라고 예쁜이.", + "5914450f86f7744bb83be8a2 1": "내 부하들이 자네 물건 찾으러 ({location}) 으로 떠났어. 누가 가져가지만 않았다면 찾을 수 있을 거야.", "5914450f86f7744bb83be8a2 2": "방금 내 부하들이 도착하여 자네 물건을 찾고 있다는 연락을 받았다네. 찾을 수 있는 건 전부 돌려줄 터니 걱정 말고 안심하게나.", "5914451a86f7744c2d7102f9 0": "내 부하들이 당신 물건들을 회수하러 갔어요. 조금 기다려주셔야 할 거예요.", - "5914451a86f7744c2d7102f9 1": "So, my people are already on {location} and have started their search process. If your things are still there, they'll find them and bring them back to you.", - "5914451a86f7744c2d7102f9 2": "{location} 에서 물건 잃어버렸죠? 이미 회수하러 보냈으니까 걱정 마세요.", - "5914452286f77449d8414ec3 0": "자네 물건을 회수하기 위해 부하들을 보냈네.", - "5914452d86f7744e917870c7 0": "내 부하들이 자네 물건을 찾으러 갔네. 일단 기다려 보게.", - "5914452d86f7744e917870c7 1": "내 부하들이 자네 물건을 회수하기 위해 {location} 로 출발했네. 자네 물건을 누가 주워가지 않았길 바라지.", - "5914452d86f7744e917870c7 2": "내 부하들이 자네 물건을 찾으러 갔다네. 조금만 기다려보게나.", - "595f995d86f77476b51172ee 0": "자네 오늘 운이 좀 안 좋구먼. 우리가 도착 하기 전에 누군가 자네 물건을 들고 갔어, 내가 더 할 수 있는 건 없으니 아무 말 말게!", - "595f995d86f77476b51172ee 1": "미안하지만 보험은 실패했다네. 내 부하들이 최대한 찾아봤지만 흔적도 없이 사라졌더군.", - "595f996586f774767d03cbea 0": "\b이런 말을 하게 되어 유감스럽지만, 제 부하들이 당신이 보험든 물건을 찾지 못했어요.", - "595f996586f774767d03cbea 1": "슬프게도 보험든 물건을 찾지 못했어요.", + "5914451a86f7744c2d7102f9 1": "그래, 내 친구들이 {location} 지역으로 당신이 잃어버린 물건들을 찾으러 갔어. 누가 가져가지만 않았다면 당신한테 제대로 돌려줄 수 있을 거야.", + "5914451a86f7744c2d7102f9 2": "{location} 지역에서 물건 잃어버렸죠? 이미 회수하러 보냈으니까 걱정 마세요.", + "5914452286f77449d8414ec3 0": "내 부하들이 자네 물품을 회수하러 갔어.", + "5914452d86f7744e917870c7 0": "내 부하들이 당신 물품들을 회수하러 갔어요. 그러니 안심하세요.", + "5914452d86f7744e917870c7 1": "내 부하들이 물건을 회수하려 {location} 지역으로 떠났어요. 당신 물건이 약탈당하지 않도록 빌어보죠.", + "5914452d86f7744e917870c7 2": "내 부하가 당신이 잃어버린 물건들을 찾으러 갔어요. 기다려봐요.", + "595f995d86f77476b51172ee 0": "자네, 오늘 운수 없는 날인가 보구만. 누군가 우리보다 먼저 물건들을 잽싸게 훔쳐가 버렸다네. 우릴 탓하진 말게나.", + "595f995d86f77476b51172ee 1": "미안하지만 자네 보험 건은 성사하지 못했다네. 부하들이 샅샅이 뒤져보았지만 나온 건 없다더군.", + "595f996586f774767d03cbea 0": "안타깝지만 당신이 보험처리한 물건은 찾을 수가 없더군요. 유감이에요.", + "595f996586f774767d03cbea 1": "안타깝게도 발견된 건 없었어요.", "595f997086f77476ca48057e 0": "미안하지만 보험은 실패했다네. 내 부하들이 최대한 찾아봤지만 흔적도 없이 사라졌더군.", - "5a2d28f786f77436023be4a5 0": "자네가 끔찍한 재정난에 허덕이는 걸 보고, 우리의 밝은 미래를 위한 투자로써, 소소한 생필품을 보내기로 결정했다네.", - "5b55a1f786f77469803bca61 0": "{buyerNickname} 이 당신의 물건을 구입했습니다", - "5bdabfb886f7743e152e867e 0": "당신이 등록한 {soldItem} 아이템 {itemCount} 개를 {buyerNickname} 님이 구입했습니다.", - "5bdabfe486f7743e1665df6e 0": "당신의 아이템이 판매되지 않았습니다.", - "5c1a3e0686f77445b95c29b3 0": "도대체 어디서 물건을 잃어버린 건가? 부하들이 샅샅이 뒤져보았지만, 자네가 잡동사니를 잃어버렸다는 {location} 지역에 먼지 한 톨 없었다고 하더군.", - "5c1a3e0686f77445b95c29b3 1": "내 부하들을 {location} 에 보냈지만 그 누구도 돌아오지 않았네 마치 증발한 것처럼 말일세.", + "5a2d28f786f77436023be4a5 0": "당신이 끔찍한 재정난에 허덕이는 걸 보고, 우리의 밝은 미래를 위한 투자로써, 당신에게 소소한 생필품을 보내기로 결정 \n 했다네.", + "5b55a1f786f77469803bca61 0": "Your offer was sold {buyerNickname}", + "5bdabfb886f7743e152e867e 0": "당신이 플리마켓에 등록한 {soldItem} {itemCount} 물품을 {buyerNickname} 님이 구입했습니다.", + "5bdabfe486f7743e1665df6e 0": "아이템이 판매되지 않았습니다", + "5c1a3e0686f77445b95c29b3 0": "도대체 어디서 물건을 잃어버린 건가? 부하들이 샅샅이 뒤져보았지만, 자네가 잡동사니를 잃어버렸다는{location} 지역에 먼지 한 톨 없었다고 하더군.", + "5c1a3e0686f77445b95c29b3 1": "내 부하들을 {location} 지역에 보냈다만 그 누구도 돌아오지 않았네 마치 증발한 것처럼 말일세.", "5c1a3e0686f77445b95c29b3 2": "그래, 내가 보기에 자네는 테라그룹의 봉쇄된 지역에서 장구들을 잃어버린 것 같군. 내 부하들은 일반적으로 그곳에 가려 하지 않으니 자네 장구는 분실처리된 것으로 받아들이게.", "5c1a3e1886f77445b74fb8b0 0": "젊은 양반, 혹시 {location} 지역에 가신 건 아니시죠? 그쪽은 제한구역인데다 아직도 위험해요. 무엇을 두고 오셨든 간에 빨리 잊으시는 게 좋을 거예요.", - "5c1a3e1886f77445b74fb8b0 1": "{location} 에서 당신이 장비를 잃어버려서 내 부하들에게 장비를 찾아달라 부탁했는데, 부하들은 연락이 두절되고 끝내 돌아오지 못했어요.", + "5c1a3e1886f77445b74fb8b0 1": "{location} 지역에서 당신이 장비를 잃어버려서 내 부하들에게 장비를 찾아달라 부탁했는데, 부하들은 연락이 두절되고 끝내 돌아오지 못했어요.", "5c1a3e1886f77445b74fb8b0 2": "테라그룹 지역에서 잃어버린 모든 것은 사라진 것으로 간주해요. 그래도 당신이 크게 다친 것 같진 않아서 다행이네요.", - "5c1a3e2a86f77476ad6d23b0 0": "I’ve sent my fellas to search in {location}, but no one came back. Looks like they’re gone.", - "5d7133aa86f7745201428fb4 0": "Your game package has been upgraded!\nWe thank you for your support of the project and have sent you additional equipment!", - "5da89b1886f77439d7741002 0": "I've heard that you helped one of my men get out alive. A noble act! Here, take this as a sign of my respect and gratitude.", - "5da89b3a86f7742f9026cb83 0": "Nice job on smoothing it out and getting out without any bloodshed. I've sent you an appreciation gift. My respect.", + "5c1a3e2a86f77476ad6d23b0 0": "내 부하들을 {location} 지역에 보냈지만 그 누구도 돌아오지 않았네 마치 증발한 것처럼 말일세.", + "5d7133aa86f7745201428fb4 0": "패키지가 업그레이드 되었습니다!\n프로젝트 지원에 감사드리고, 추가 장비들을 보내드렸습니다!", + "5da89b1886f77439d7741002 0": "네가 내 부하가 살아남는 데 도움을 줬다고 들었어. 완전 노벨상감이네! 여기, 감사와 존경의 표시로 준비한 거야 받아.", + "5da89b3a86f7742f9026cb83 0": "서로 유혈 없이 나가다니 존나 끝내주는군. 여기, 보상과 내 존경심을 받아 가.", "5e0653ba86f774478f700632 0": "전사여, 여전히 주시하며 경험을 얻고 있는가? 난 그런 태도를 존경한다네! 여기 약간의 보상이 있다네!", "5e0653ba86f774478f700632 1": "그래 전사여, 새로운 걸 좀 배웠는가? 이번 경험은 확실히 전투에서 유용할걸세, 노병인 내 말을 믿게나. 자네를 보면 내 옛날 시절이 생각나서 행복해지는군. 자, 선물을 받게.", "5e0653ba86f774478f700632 2": "주의를 기울이고 있는가? 그렇지, 그러면 자네는 다른 사람들의 실수를 반복하지 않을 것이네. 내가 보장하지. 받게나, 자네가 하는 일에 유용하게 쓰일걸세.", @@ -16743,7 +16631,7 @@ "5fd4c8d49e4b2a58b34bbd29 0": "그래, 이제 뭐가 뭔지 좀 알겠나? 받게나 작은 선물일세, 레이드를 갈 때는 항상 눈 크게 뜨고 조심하는 것 잊지 말게나. 혹시 물건을 구하거나 팔고 싶다면, 나를 찾아오게.", "61111d298ed2a0258e30f655 0": "Don't have time for long talks. I need my people to hang out with others freely for some time. If you cooperate with them, you'll have much more of my respect than usual. Let's leave everything you've done in the past and start from scratch regarding your extracts. Keep in touch.", "6114dbf05266c33358334348 0": "The recent business is done. Evacuated everything we needed without any issues, my respect to you for that. There were some morons who tried playing tough guys, but they didn't cause much trouble. A pity we couldn't interrogate them. If you know anything about them - let me know. And thanks again for the cooperation and all that, now we're back to the usual respect you get for helping my people.", - "61332c7ed908cc4b2928cb0d 0": "So listen up, I'm only telling you this because we got along well, the past places with the stuff are no more relevant. My people removed and stashed almost all the valuables. So keep in mind, look for it elsewhere on the locations.", + "61332c7ed908cc4b2928cb0d 0": "So listen up, I'm only telling you this because we got along well, the past places with the stuff - are no more relevant. My people removed and stashed almost all the valuables. So keep in mind, look for it elsewhere on the locations.", "613f1c2af217a644d378ad31 0": "We’ve settled our business. Punished all the worthless ones. Now everyone will know what’ll happen if you shoot at my men. Big achievements require a proper team, not a bunch or rats. I might order my close contacts to investigate further on if the business has stabilized. And you have my gratitude for not interfering too much.", "6149dc63b099526ca907837d 0": "Young man, how are you feeling? Recently, we received a huge number of victims with severe alcohol poisoning, not all of them made a full recovery. So many people died, and not even because of the bullets! In our hard times, you have to prioritize your well-being, not where to find cheaper booze. In any case, today there are noticeably fewer patients, so I suppose they have already finished all the bad alcohol. No more harm from it for good people. I wonder where they got all this vodka...", "615594cc65c019623e6df5d0 0": "Hello, warrior! I've got some info for you: the local brass are celebrating something today. I won't reveal all cards, but there is someone very interested in all this chaos in Tarkov, well, you get me. And so this brass decided to share some goodies with you for more fun. Here, take it, you'll need it. Enjoy!", @@ -16753,22 +16641,22 @@ "6176f84b5aa04931e03c8401 0": "어서오게 형제여! 지난번에 직물 원단류 부족에 대해 이야기했던 것 기억하나? 이젠 지나간 일이 되었다네. 드디어 공급이 안정화되고 가격이 내려갔지. 자네가 구입할 수 있는 물건들이 넘쳐나고 있어! (팔짱을 끼며 진지하게 이야기한다) : 자네의 형제 아르샤비르와 좋은 관계를 유지한다면, 결코 이런 혼란 속에 빠지지 않을 걸세. \n그럼, 다음에 보세!", "618d196e7a507329860ffe1e 0": "셰르파님 반갑습니다! 정말 많은 신입들을 돕고 있다고 들었습니다. 정말 위험한 일이지만 그만큼 가치 있는 일이죠. 근처에서 도움 될 만한 물건들을 가져와봤습니다. 여기 받아요. 좋은 사람을 돕는 일은 언제나 즐겁죠. 당신의 레이드에 행운이 함께하길 바라겠습니다!", "618d19edee326b436e35b96e 0": "셰르파님 안녕하세요! 사람들이 말하길 당신이 이 분야에서 최고라고 들었습니다. 제가 물어봤던 모든 사람들이 칭찬을 하더군요. 여기, 감사의 의미로 선물을 준비했습니다. 다른 사람들이 당신을 우러러볼 수 있게 계속 정진해 주세요. 당신의 레이드에 행운이 함께하길 바라겠습니다!", - "61d70e9e6a1ff147937986a3 0": "친애하는 Moderator님께, 커뮤니티와 Battlestate Games를 위해 해주시는 모든 것에 대해 진심 어린 감사를 표하고 싶습니다. 외부에 알려지진 않았지만 개의치 않고 연휴 및 이벤트 기간 동안 플레이어들을 돕기 위해 노력해 주셔서 정말 감사드립니다. 소셜 미디어 채널의 보안을 유지하느라 바쁘실 텐데, 인게임에서 편하게 즐기실 수 있도록 작은 선물을 보내드립니다. 감사합니다!", + "61d70e9e6a1ff147937986a3 0": "친애하는 Moderator님께,\n\n커뮤니티와 Battlestate Games를 위해 해주시는 모든 것에 대해 진심 어린 감사를 표하고 싶습니다. 외부에 알려지진 않았지만 개의치 않고 연휴 및 이벤트 기간 동안 플레이어들을 돕기 위해 노력해 주셔서 정말 감사드립니다. 소셜 미디어 채널의 보안을 유지하느라 바쁘실 텐데, 인게임에서 편하게 즐기실 수 있도록 작은 선물을 보내드립니다.\n\n감사합니다!", "624eb4edaf89482aee0b74ff 0": "친애하는 셰르파님께, BSG의 모든 사람들을 대신하여 당신의 생일을 진심으로 축하합니다! Escape from Tarkov 커뮤니티의 발전에 기여해 주신 것에 대한 감사의 표시로 선물을 준비했습니다. 다시 한번 진심으로 생일 축하드리며, 당신의 레이드에 행운이 함께하길 바라겠습니다!", "624eb5019888f142bb21ca70 0": "친애하는 특사님께, BSG의 모든 사람들을 대신하여 당신의 생일을 진심으로 축하합니다! Escape from Tarkov 커뮤니티의 발전에 기여해 주신 것에 대한 감사의 표시로 선물을 준비했습니다. 다시 한번 진심으로 생일 축하드리며, 당신의 레이드에 행운이 함께하길 바라겠습니다!", - "626e5d63bc92c87fd22a943f 0": "Battlestate Games 팀에서 Escape from Tarkov 커뮤니티의 발전을 위해 많은 도움을 주신 당신께 진심으로 감사의 메시지를 보냅니다. 작지만 감사의 표시로 선물을 준비해 봤습니다. 행복한 하루 보내시길 바라겠습니다!", + "626e5d63bc92c87fd22a943f 0": " Battlestate Games 팀에서 Escape from Tarkov 커뮤니티의 발전을 위해 많은 도움을 주신 당신께 진심으로 감사의 메시지를 보냅니다. 작지만 감사의 표시로 선물을 준비해 봤습니다. 행복한 하루 보내시길 바라겠습니다!", "629621bf38e6083cd5070a3e 0": "친애하는 Moderator님께, BSG의 모든 사람들을 대신하여 당신의 생일을 진심으로 축하합니다! Escape from Tarkov 커뮤니티의 발전에 기여해 주신 것에 대한 감사의 표시로 선물을 준비했습니다. 다시 한번 진심으로 생일 축하드리며, 당신의 레이드에 행운이 함께하길 바라겠습니다!", - "63d52237c3151eb8a501371a 0": "작은 친구가 제게 당신이 광고와 홍보 분야의 전문가 라고 알려줬습니다. 이 재난이 일어나기 전에 당신은 매우 유능했겠군요. 물론, 요즘 시기에도 당신의 창의력을 발휘할 곳을 찾을 수 있을지도 모릅니다. 여기 당신을 위한 작은 감사의 선물이 있습니다.", - "63d5250c9ff8e108b303b48d 0": "작은 친구가 제게 당신이 광고와 홍보 분야의 전문가 라고 알려줬습니다. 이 재난이 일어나기 전에 당신은 매우 유능했겠군요. 물론, 요즘 시기에도 당신의 창의력을 발휘할 곳을 찾을 수 있을지도 모릅니다. 여기 당신을 위한 작은 감사의 선물이 있습니다.", - "64105d5be67f01be21059dc7 0": "당신이 {date} 때 신고해 주신 플레이어들이 치터로 밝혀졌습니다. 이 플레이어들은 영구 차단 되었습니다.", - "64105d6b460c57e74b0b5e86 0": "당\u001D신이\n{date}\n때 신고해주신 건과 다른 {time} 건의 신고들에서\n해당 플레이어들이 치터로 밝혀졌습니다. 이 플레이어들은 영구 차단 되었습니다.", - "64648f64063abf54100f587b 0": "물건은 잘 받았어. 여기 네 몫이야. 다음에 또 보지.", + "63d52237c3151eb8a501371a 0": "A little birdie whispered to me that you're an expert in advertising and promotion. You'd be very useful before this whole disaster. Although, maybe I can find a place to incorporate your creativity even these days. Here's a little something for you, an appreciation gift.", + "63d5250c9ff8e108b303b48d 0": "A little birdie whispered to me that you're an expert in advertising and promotion. You'd be very useful before this whole disaster. Although, maybe I can find a place to incorporate your creativity even these days. Here's a little something for you, an appreciation gift.", + "64105d5be67f01be21059dc7 0": "Your recent reports from the {date} raid(s) helped identify the cheaters. These players have been banned.", + "64105d6b460c57e74b0b5e86 0": "Your recent reports from the raid(s) on\n{date}\nand other {time} reports\nhelped identify the cheaters. These players have been banned.", + "64648f64063abf54100f587b 0": "Got your junk. Here's your cut. Till next time.", "6469df44bd5626e8bc0f64f1 0": "Too much blood has been spilled. We don't want this to keep happening in Tarkov. We are reverting to old rules, and temporarily retreating into the shadows.", - "655c87f240fbb95cd9090420 0": "삭제", + "655c87f240fbb95cd9090420 0": "Delete", "655c887cfeab348e7e09b69c 0": "On behalf of Battlestate Games, today we congratulate all Sherpas on the anniversary and thank them for their hard work. Thank you, Sherpas. Happy Anniversary!", - "657399489b19e826a721d75c 0": "걱정 마세요. 당신 물건은 잘 배송했습니다.", - "657399489b19e826a721d75c 1": "말해준 곳에 물건을 잘 배송했습니다.", - "657399489b19e826a721d75c 2": "기지에 당신 물건을 보내놨습니다.", + "657399489b19e826a721d75c 0": "Your stuff's been dropped off. Don't worry, everything's accounted for.", + "657399489b19e826a721d75c 1": "I moved the stuff where we agreed.", + "657399489b19e826a721d75c 2": "Your stuff is at the base.", "6582beba471fa54463010b16 0": "Fighter!\nTravel safely, the Scav bosses and those hooded creeps have crawled out of their holes and are always in their positions. It has happened before, I'm sure you remember. ", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "Ground Zero", "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "United Security", "5464e0404bdc2d2a708b4567 Description": "민간군사기업 USEC은 1999년 KerniSEC사와 Safe Sea사의 인수 합병으로 탄생하였습니다. 2004년에 국제지주회사 테라그룹이 USEC과 계약하였고, 이후 전 세계에 지부를 가지고 7500명 이상의 직원을 거느린 USEC은 사실상 테라 그룹의 사병 부대가 되었습니다.", "5464e0454bdc2d06708b4567 Name": "BEAR", @@ -17356,7 +17242,7 @@ "5936d90786f7742b1420ba5b name": "데뷔", "5936d90786f7742b1420ba5b description": "Hello there, soldier. I got a job that's a little too easy for my guys. But you'll do fine. Hey, don't get pissy, I don't know you that well yet to give you a normal job!\n\nThere's a lot of bandit scum roaming the streets. They don't bother me much, but they're still a nuisance. Calm down, say, five of them, and get a couple of MP-133 shotguns off them. I think that'll be enough for you. Dismissed, soldier!", "5936d90786f7742b1420ba5b failMessageText": "", - "5936d90786f7742b1420ba5b successMessageText": "[Debut, 성공]\n그래, 일은 잘 마쳤군, 좋아. 아마 상인들한테 떨이로 사서 가져온 거일 테지만 말이야, 안 그래? 뭐 어찌 됐든, 상관없어. 물건을 잘 가져왔다는 것 그게 중요 한 거지.", + "5936d90786f7742b1420ba5b successMessageText": "[Debut, 성공]\n어떤가, 제군? 그 쓰레기 새끼들을 정말 처리한 건가? 혹시 다른 상인들이 떨이로 파는 걸 가져온 건 아니겠지? 아니라고? 알았네, 화내지 말게나. 일을 망치지만 않는다면 믿어주겠네.", "5967379186f77463860dadd6": "타르코프의 모든 지역에서 스캐브 사살하기", "596737cb86f77463a8115efd": "[MP-133 산탄총]을 구해서 건네주기", "5936d90786f7742b1420ba5b acceptPlayerMessage": "", @@ -17554,17 +17440,17 @@ "596a218586f77420d232807c completePlayerMessage": "", "596b36c586f77450d6045ad2 name": "공급자", "596b36c586f77450d6045ad2 description": "What'chu want, merc? A job? Ha! Looking for a good net salary and a full social package? Alright then, I'll give you a job. \n\nI still barely know you, so let's see what you can do. I'll give you this: find me a white body armor, the one that looks like paper, and one Toz shotty. Gonna gear up my guys a little. But make sure to get the fresh ones, got it? Don't need no haggler shit.\n\nSo anyway, if you do fine, we can talk further about your employment, mister \"operator\".", - "596b36c586f77450d6045ad2 failMessageText": "[공급자(Supplier), 실패]\n참나 이런 병신이 일자리를 구한다니. 아무것도 못하는 병신이랑은 더 할 말 없어. 어서 꺼져.", - "596b36c586f77450d6045ad2 successMessageText": "[공급자(Supplier), 성공]\n꽤 하는데? 같이 일해볼 만하겠어. 여기 보상이야. 기억하고 있을 테니 가끔 들러. 항상 다양한 종류의 일거리가 올라오는데, 요즘 사람들이 워낙 많이 죽어나가서 말이야.", + "596b36c586f77450d6045ad2 failMessageText": "참나 이런 병신이 일자리를 구한다니. 아무것도 못하는 병신이랑은 더 할 이야기가 없어. 어서 꺼져.", + "596b36c586f77450d6045ad2 successMessageText": "꽤 하는데? 같이 일해볼 만하겠어. 여기 보상이야. 기억하고 있을 테니 가끔 들러. 항상 다양한 종류의 일거리가 올라오는데, 요즘 사람들이 워낙 많이 죽어나가서 말이야.", "597867e986f7741b265c6bd3": "레이드에서 발견한 [Module-3M 방탄복] 건네주기", "5ab8d44c86f7745b2325bd0c": "레이드에서 발견한 [TOZ-106 산탄총] 건네주기", "596b36c586f77450d6045ad2 acceptPlayerMessage": "", "596b36c586f77450d6045ad2 declinePlayerMessage": "", "596b36c586f77450d6045ad2 completePlayerMessage": "", "596b43fb86f77457ca186186 name": "약탈자", - "596b43fb86f77457ca186186 description": "[The Extortionist]\n지금은 좀 바빠! 잘 들어, 시급한 일이 생겼어. 1시간 전쯤 강 건너 차고 쪽에서 총격전이 일어났어. 내가 막 한 놈을 심부름 보냈던 곳이지. 그로 말하자면, 아주 멍청한 얼간이 같은 놈이었지. 하지만 그 얼간이 같은 놈이 열쇠를 하나 가지고 있었거든. 도대체 어디에 맞는지 모르겠는 열쇠 하나를 말이야. 그 광대 같은 놈이 나한테 엄청나게 값진 물건 하나를 배달하기로 했었어. 그런데 이 빌어먹을 새끼가 그 미지의 빌어먹을 열쇠로 어딘가에 물건을 처박아놓고, 나한테 가격 협상을 하러 오더라고. 개자식이 따로 없지. 그래서 수수료를 좀 올려줬더니, 이 병신 새끼가 그 물건이 어디 있는지는 안 씨부리고 지가 물건을 가지러 갔어. 숙소에 대해서 뭐라고 이야기했었는데 내 생각엔 자기 숙소에 숨겨놓은 것 같아. 문제는 세관에 컨테이너로 된 숙소가 더럽게 많다는 거지. 어쨌든 이 놈은 RUAF roadblock 근처에 있는 창고에서 죽었을 거라고 확신해. 그러니 네가 열쇠를 찾아서 이 항구의 모든 문짝에 그 열쇠를 쑤셔서라도 물건을 찾아와.", + "596b43fb86f77457ca186186 description": "[The Extortionist]\n안녕 못하군! 잘 들어, 시급한 일이 생겼어. 1시간 전쯤 강 건너 차고 쪽에서 총격전이 일어났어. 내가 막 한 놈을 심부름 보냈던 곳이지. 그로 말하자면, 아주 멍청한 얼간이 같은 놈이었지. 하지만 그 얼간이 같은 놈이 열쇠를 하나 가지고 있었거든. 도대체 어디에 맞는지 모르겠는 열쇠 하나를 말이야. 그 광대 같은 놈이 나한테 엄청나게 값진 물건 하나를 배달하기로 했었어. 그런데 이 빌어먹을 새끼가 그 미지의 빌어먹을 열쇠로 어딘가에 물건을 처박아놓고, 나한테 가격 협상을 하러 오더라고. 개자식이 따로 없지. 그래서 수수료를 좀 올려줬더니, 이 병신 새끼가 그 물건이 어디 있는지는 안 씨부리고 지가 물건을 가지러 갔어. 그리고 내가 봤을 때는 아까 그 총격전에서 그 새끼는 명을 다한 거 같더라고. 그러니 네가 열쇠를 찾아서 이 항구의 모든 문짝에 그 열쇠를 쑤셔서라도 물건을 찾아와.", "596b43fb86f77457ca186186 failMessageText": "", - "596b43fb86f77457ca186186 successMessageText": "[약탈자(The Extortionist), 성공]\n명탐정이 따로 없군! 정말 많은 도움이 됐어! 그래서 그 병신은 찾았나? 그래, 잘 뒈졌군. 자네도 그런 꼴 당하지 않게 허튼짓하지 않는 게 좋을 거야. 그럼 이제 조용히 하고 가, 나는 아직 할 일이 남아있어.", + "596b43fb86f77457ca186186 successMessageText": "명탐정이 따로 없군! 정말 많은 도움이 됐어!", "596b44b686f77457cb50ecca": "세관(Customs)에서 [보안 케이스 0048] 획득하기", "596b450986f7745a7e510b54": "회수한 물건 건네주기", "5a3fbab086f77421593d9bf0": "배달부가 숨겨둔 물건의 위치 찾기", @@ -17573,17 +17459,17 @@ "596b43fb86f77457ca186186 declinePlayerMessage": "", "596b43fb86f77457ca186186 completePlayerMessage": "", "596b455186f77457cb50eccb name": "소동", - "596b455186f77457cb50eccb description": "[Stirrup]\n아, 또 왔구나. 이제 나만 믿고 일하기로 한 거야? 응? 진짜 대박이군. 난 우리 구역을 좀 휘저어 놔야겠어. 온갖 외부세력이 기어 와서 내 사업에 간섭하고, 총질하고, 내 부하들을 두들겨 패고 약탈하고. 이것들은 굉장히 내 신경에 거슬리거든. 말하자면, 내 사업 컨셉 하고는 안 맞는다는 말이지. 이왕이면 권총만 쓰면 좋겠군. 마치 그들이 프로를 상대하는 기분을 느낄 수 있도록. 그럼, 가서 맘껏 쓸어 담아 보라고. 마릿수대로 돈은 쳐주고, 더 얹어줄 수도 있고. 힘든 시기니, 어떻게든 생계는 꾸려나가야 하지 않겠어? 좋은 게 좋은 거지.", + "596b455186f77457cb50eccb description": "[Stirrup]\n아, 또 왔구나. 이제 나만 믿고 일하기로 한 거야? 응? 진짜 대박이군. 난 우리 구역을 좀 휘저어 놔야겠어. 온갖 외부세력이 기어 와서 내 사업에 간섭하고, 총질하고, 내 부하들을 두드려 패고 약탈하고. 이것들은 굉장히 내 신경에 거슬리거든. 말하자면, 내 사업 컨셉 하고는 안 맞는다는 말이지. 이왕이면 권총만 쓰면 좋겠군. 마치 그들이 프로를 상대하는 기분을 느낄 수 있도록. 그럼, 가서 맘껏 쓸어 담아 보라고. 마릿수대로 돈은 쳐주고, 더 얹어줄 수도 있고. 힘든 시기니, 어떻게든 생계는 꾸려나가야 하지 않겠어? 좋은 게 좋은 거지.", "596b455186f77457cb50eccb failMessageText": "", - "596b455186f77457cb50eccb successMessageText": "[소동(Stirrup), 성공]\n하하! 내가 본 것 중 가장 성대하게 소란을 피웠군! 웬 악마가 사람들을 쓸어 담으며 활개치고 다닌다는 소문이 여기저기서 들리더라고. 자, 여기 보수야, 쩔어줬다고 아주.", + "596b455186f77457cb50eccb successMessageText": "하하! 내가 본 것 중 가장 성대하게 소란을 피웠군! 웬 악마가 사람들을 쓸어 담으며 활개치고 다닌다는 소문이 여기저기서 들리더라고. 자, 여기 보수야, 쩔어줬다고 아주.", "5c9b5e3f86f7744aab7329b5": "권총을 사용해서 PMC 사살하기", "596b455186f77457cb50eccb acceptPlayerMessage": "", "596b455186f77457cb50eccb declinePlayerMessage": "", "596b455186f77457cb50eccb completePlayerMessage": "", "5979ed3886f77431307dc512 name": "USB에는 무엇이 들어 있을까?", - "5979ed3886f77431307dc512 description": "[What’s on the Flash Drive?]\n이봐 거기 이리 와봐. 내가 사짜 놈을 하나 알고 있거든. 왜, 내 말투가 맘에 안 드나? 큰집 갔다 온 놈 처음 봐? 뭘 그런 눈으로 봐? 딱 두 번이었어, 청소년 때 한번, 난동 좀 피웠다가 재사회화 시설 같은 곳에 2년 묵은 거 한번. 더 말 안 해도 되지? 좋아! 이제 좀 병신 같은 예의범절 좀 안 차려도 되겠군! 그래서, 그 사기꾼 놈에 대한 얘기야. 확실한 정보는 아니어도, 제법 구미가 당기는 얘기지. 한 꽐라 놈이 씨부린 말에 따르면 지가 Contract Wars 당시에 우리 쪽 군인들이나 짭새들을 못 믿던 VIP 몇 명을 호위해 줬다 하더라고. 군인은 모르겠고, 짭새들을 못 믿는다는 점은 동의해. 그 집 지키는 개들하고는 거래할만하거든. 정상인들도 많고. 그러나 짭새 놈들하고 엮이면 영 좋을 게 없더라고. 뭐, 아무튼 그런 일들을 하면서, 이 멍청한 새끼가 틈날 때마다 돈 될만한 물건들을 훔칠 정신은 남아있었나 봐. 그가 하도 걸어대서 허벌년이 돼버린 지 애미를 걸고 맹세하기를, 가장 최근에는 플래시 드라이브 2개를 훔쳤다 하더군. 안에 뭐가 들었는지는 전혀 모른다더라. 그리고 이 얘기를 하는 내내 똥 씹은 표정을 짓고 있더라고. 장소도, 표시도, 아무것도 기억 안 난다면서. 아무튼, 그 USB는 몇몇 고위급 덩치들이 지키고 있었다 했으니, 분명히 비쌀 거란 말이지. 가서 모든 텐트장을 뒤져봐. 그래, 그쪽 길을 사람들이 수도 없이 지나다녔다는 건 알지만, 그래도 혹시 모르잖아?", + "5979ed3886f77431307dc512 description": "[What’s on the Flash Drive?]\n이봐 거기 이리와봐. 내가 사짜 놈을 하나 알고 있거든. 왜, 내 말투가 맘에 안 드나? 큰집 갔다온 놈 처음 봐? 뭘 그런 눈으로 봐? 딱 두 번이었어, 청소년 때 한번, 난동 좀 피웠다가 재사회화 시설 같은 곳에 2년 묵은 거 한번. 더 말 안 해도 되지? 좋아! 이제 좀 병신 같은 예의범절 좀 안 차려도 되겠군! 그래서, 그 사기꾼 놈에 대한 얘기야. 확실한 정보는 아니어도, 제법 구미가 당기는 얘기지. 한 꽐라놈이 씨부린 말에 따르면 지가 Contract Wars 당시에 우리 쪽 군인들이나 짭새들을 못 믿던 VIP 몇 명을 호위해 줬다 하더라고. 군인은 모르겠고, 짭새들을 못 믿는다는 점은 동의해. 그 집 지키는 개들하고는 거래할만하거든. 정상인들도 많고. 그러나 짭새 놈들하고 엮이면 영 좋을 게 없더라고. 뭐, 아무튼 그런 일들을 하면서, 이 멍청한 새끼가 틈날 때마다 돈 될만한 물건들을 훔칠 정신은 남아있었나 봐. 그가 하도 걸어대서 허벌년이 돼버린 지 애미를 걸고 맹세하기를, 가장 최근에는 플래시 드라이브 2개를 훔쳤다 하더군. 안에 뭐가 들었는지는 전혀 모른다더라. 그리고 이 얘기를 하는 내내 똥 씹은 표정을 짓고 있더라고. 장소도, 표시도, 아무것도 기억 안 난다면서. 아무튼, 그 USB는 몇몇 고위급 덩치들이 지키고 있었다 했으니, 분명히 비쌀 거란 말이지. 가서 모든 텐트장을 뒤져봐. 그래, 그쪽 길을 사람들이 수도 없이 지나다녔다는 건 알지만, 그래도 혹시 모르잖아?", "5979ed3886f77431307dc512 failMessageText": "", - "5979ed3886f77431307dc512 successMessageText": "[USB에는 무엇이 들어 있을까? (What’s on the Flash Drive?)]\n아무것도 없을 거라며! 뭐, 내용물은 비어있을 수도 있지만. 확인해 봐야겠어. 어느 쪽이든, 약속대로 보수는 지급하지.", + "5979ed3886f77431307dc512 successMessageText": "아무것도 없을 거라며! 뭐, 내용물은 비어있을 수도 있지만. 확인해 봐야겠어. 어느 쪽이든, 약속대로 보수는 지급하지.", "5979ee2986f7743ec214c7a4": "레이드에서 [USB 보안 플래시 드라이브] 획득하기", "5979ee4586f7743ec214c7a5": "[USB 보안 플래시 드라이브] 건네주기", "59819f0986f7744e6d0b7520": "", @@ -17593,7 +17479,7 @@ "5979eee086f774311955e614 name": "황금빛 스웩", "5979eee086f774311955e614 description": "[Golden Swag]\n너도 일하면서 부업에 손대고 있나? 하, 아주 위선자들의 세상이라니까! 나도 예전에 깡패 몇 놈 손 좀 봐주다가 큰집에 신세 좀 졌었는데, 거기서 사람을 아무렇지도 않게 썰어버리던 백정 같은 머저리 새끼가 내 말투 가지고 개 쪽을 주더라고. 정의는 어디 갔냐고? 맞아. 날 집어처넣었던 그 검사 놈이 말했지. 벽 너머 어딘가에 있을 거라고. 그리고 우리가 모두 지금 그 벽 너머에 있지. 큰 프라이팬 위에 올려진 것 마냥. 아무튼, 이야기가 샜군. 뭐, 목표는 간단해. 한 무리의 스캐브들이 공장을 좀먹고 있어. 그리고 그 녀석들 중 하나가 우루과이 쪽에 연줄이 있나 보더군. 참 동맹을 골라도 그런 등신 같은 동맹을 고를 수가 있나. 그딴 얼간이 새끼들을 낳고 좋다고 돌잔치나 벌였을 머저리 같은 년들을 생각하니 내가 다 부끄럽네. 목표는 이 지구에서 그놈의 자취를 지워버리는 거지. 하지만 그것만으로는 절반밖에 안돼. 그놈은 부적인 마냥 항상 지뽀 라이터 하나를 들고 손가락으로 돌리면서 싸돌아다니거든. 분명 저번에 내 구역에 왔을 때도, 신명나게 딸칵 거리고 있었지. 그리고 그 녀석은 기숙사 303호에 살고 있지. 뭘 하려는지 알겠지? 그 라이터를 조심스럽게 훔쳐서, 내가 알려주는 안전 가옥에 가져다 놔. 그리고 걸려든 놈을 잡아내면, 단서를 얻을 수 있겠지. 무슨 말인지 알겠지? 그 안전 가옥은 세관 트레일러 주차장 옆의 닫힌 컨테이너 집에 있어. 자 열쇠, 행운을 빌어.", "5979eee086f774311955e614 failMessageText": "", - "5979eee086f774311955e614 successMessageText": "[황금빛 스웩 (Golden Swag), 성공]\n일이 성공적으로 끝나면, 보상을 받아 가도록 해. 일이 어떻게 될지 한번 보자고.", + "5979eee086f774311955e614 successMessageText": "일이 성공적으로 끝나면, 보상을 받아 가도록 해. 일이 어떻게 될지 한번 보자고.", "5979ef4586f77431307dc513": "세관(Customs)에서 [황금 지뽀 라이터] 획득하기", "5979ef7986f77431307dc514": "세관(Customs)의 트레일러 주차장 입구에 있는 컨테이너 내부에 라이터 갖다 두기", "5979eee086f774311955e614 acceptPlayerMessage": "", @@ -17609,9 +17495,9 @@ "5979f8bb86f7743ec214c7a6 declinePlayerMessage": "", "5979f8bb86f7743ec214c7a6 completePlayerMessage": "", "5979f9ba86f7740f6c3fe9f2 name": "화학 - 파트 1", - "5979f9ba86f7740f6c3fe9f2 description": "[Chemical - Part 1]\n그래, 셜록, 수수께끼 하나 내줄까? 너라면 수수께끼 따위는 죄다 풀어버리잖아, 안 그래? 자, 봐봐. 웬 노숙자 한 마리가 이 근방으로 왔었어. 돌아버린 건지, 정신병자인지, 알 게 뭐야. 머리부터 발끝까지 걸레 같은 걸 둘둘 감고 다니고, 그리고 그놈의 악취는 무슨 걸어 다니는 화학 무기인 줄 알았다니까! 이 새끼를 미사일에 묶어서 길거리로 날리면, 아마 거리에 있는 사람들이 싸그리 뒤졌을 거야. 아, 젠장, 눈물 나게 웃기네. 아무튼, 처음에는 그 썩은 내 좀 안 맡으려고 그놈을 멀리 쫓아내려고 했는데, 내 똘마니 중 하나가 이놈이 예전에 뭐 하는 놈인지 알더라고. 상상해 봐! 이 끔찍한 일들이 벌어지면서 멀쩡한 사람이 그런 쓰레기가 돼버리고 있다니까! 하지만 그게 중요한 게 아니야. 그 거지를 알아본 부하 놈의 말에 따르면, 그 거지가 보통 거지가 아니라, 폴리킴에 있는 엄청나게 중요한 감시 구역 두 곳의 보안책임자 나으리였다는 거지! 그 거지 놈이 길거리에서 콧물이나 쭐쭐 빨아먹으며 미친놈처럼 중얼거리지 않고 자기 이름이라도 똑바로 기억했다면, 얼마나 쓸만한 정보통이 됐겠어? 정말 쪽팔리는군! 그놈이 무슨 일을 당해서 그 꼴이 된 건진 몰라도, 내 계획은 이래. 그 거지 놈도 어딘가 자기 매트리스에서 오줌 지리면서 잤을 거 아니야? 맞아! 그곳을 찾아보도록 해. 방호복 하나 줄까? 하하, 농담이야. 하지만 저놈이 진짜 걸어 다니는 화학무기 급이라면, 농담이 아니라 진짜 방호복을 빌려줄 수도 있다고.", + "5979f9ba86f7740f6c3fe9f2 description": "[Chemical - Part 1]\n그래, 셜록, 수수께끼 하나 내줄까? 너라면 수수께끼 따위는 죄다 풀어버리잖아, 안 그래? 자, 봐봐. 웬 노숙자 한 마리가 이 근방으로 왔었어. 돌아버린 건지, 정신병자인지, 알게 뭐야. 머리부터 발끝까지 걸레 같은 걸 둘둘 감고 다니고, 그리고 그놈의 악취는 무슨 걸어 다니는 화학 무기인 줄 알았다니까! 이 새끼를 미사일에 묶어서 길거리로 날리면, 아마 거리에 있는 사람들이 싸그리 뒤졌을 거야. 아, 젠장, 눈물 나게 웃기네. 아무튼, 처음에는 그 썩은내 좀 안 맡으려고 그놈을 멀리 쫓아내려고 했는데, 내 똘마니 중 하나가 이놈이 예전에 뭐하는 놈인지 알더라고. 상상해봐! 이 끔찍한 일들이 벌어지면서 멀쩡한 사람이 그런 쓰레기가 돼버리고 있다니까! 하지만 그게 중요한 게 아니야. 그 거지를 알아본 부하 놈의 말에 따르면, 그 거지가 보통 거지가 아니라, 폴리킴에 있는 엄청나게 중요한 감시 구역 두 곳의 보안책임자 나으리였다는 거지! 그 거지놈이 길거리에서 콧물이나 쭐쭐 빨아먹으며 미친놈처럼 중얼거리지 않고 자기 이름이라도 똑바로 기억했다면, 얼마나 쓸만한 정보통이 됐겠어? 정말 쪽팔리는군! 그놈이 무슨 일을 당해서 그 꼴이 된 건진 몰라도, 내 계획은 이래. 그 거지놈도 어딘가 자기 매트리스에서 오줌 지리면서 잤을 거 아니야? 맞아! 그곳을 찾아보도록 해. 방호복 하나 줄까? 하하, 농담이야. 하지만 저놈이 진짜 걸어 다니는 화학무기 급이라면, 농담이 아니라 진짜 방호복을 빌려줄 수도 있다고.", "5979f9ba86f7740f6c3fe9f2 failMessageText": "", - "5979f9ba86f7740f6c3fe9f2 successMessageText": "[화학 - 파트 1 (Chemical - Part 1), 성공]\n내가 계속 궁금했던 건데, 걔는 도대체 어떻게 지금까지 살아있던 걸까? 단어 두 개를 붙여서 말하지도 못하는 놈인데! 아무튼, 이것들을 먼저 소독하고 향수에 몇 번 담갔다 뺀 다음에, 열어서 내용물을 확인해 보자고.", + "5979f9ba86f7740f6c3fe9f2 successMessageText": "내가 계속 궁금했던 건데, 걔는 도대체 어떻게 지금까지 살아있던 걸까? 단어 두 개를 붙여서 말하지도 못하는 놈인데! 아무튼, 이것들을 먼저 소독하고 향수에 몇 번 담갔다 뺀 다음에, 열어서 내용물을 확인해 보자고.", "5979fc2686f77426d702a0f2": "세관(Customs)에서 보안 부장의 과거 시절에 대한 정보 찾기", "5979fc5386f77426d702a0f3": "수사에 도움 될만한 물건 찾기", "5979fc7e86f77426d702a0f4": "정보 건네주기", @@ -17623,7 +17509,7 @@ "597a0b2986f77426d66c0633 name": "화학 - 파트 2", "597a0b2986f77426d66c0633 description": "[Chemical - Part 2]\n널 기다리느라 눈 빠지는 줄 알았어. 네가 그 유사 인류 놈 서식지에서 가져온 그 문서 말이야, 제법 중요한 내용이더라고. 근데 엄청나게, 존나 엄청나게 위험한 내용이야. 너무 위험해서 어떤 놈한테 팔아치워야 할지도 모르겠더라고. 그리고 이걸 글러 먹은 놈한테 팔아넘기면, 어마 무시하게 위험한 일이 생길 수도 있어서, 이익계산도 어렵더라고. 자, 여기 네가 가져온 열쇠가 있어. 이걸 가져가서, 좀 더 조사해 보라고. 내 부하들이 기숙사 열쇠라 하더군. 그리고 그 서류 뭉텅이들을 조사해 보니, 우리의 보안책임자 나으리께서는 3층짜리 기숙사 건물의 2층에서 살았었다고 하더군. 그 방에서 어떤 정보를 주워오든, 엄청난 값어치가 있을 것이고, 보상은 어마 무시하겠지.", "597a0b2986f77426d66c0633 failMessageText": "", - "597a0b2986f77426d66c0633 successMessageText": "[화학 - 파트 2 (Chemical - Part 2), 성공]\n보아하니, 문제가 해결되기는커녕 훨씬 더 복잡해졌군. 뭐 어때, 올 테면 와보라지.", + "597a0b2986f77426d66c0633 successMessageText": "보아하니, 문제가 해결되기는커녕 훨씬 더 복잡해졌군. 뭐 어때, 올 테면 와보라지.", "597a0bb486f77426d66c0634": "세관(Customs)에서 조사에 도움 될만한 정보 찾기", "597a0bdb86f7742717106d12": "정보 건네주기", "597a0be986f774273b74f673": "세관(Customs)에서 조사에 도움 될만한 증거 찾기", @@ -17632,9 +17518,9 @@ "597a0b2986f77426d66c0633 declinePlayerMessage": "", "597a0b2986f77426d66c0633 completePlayerMessage": "", "597a0e5786f77426d66c0636 name": "화학 - 파트 3", - "597a0e5786f77426d66c0636 description": "[Chemical - Part 3]\n네가 그 방에서 찾아온 봉투 속에는 웬 화학식이 적혀있었어. 그리고 USB에는 그 반응 과정이 들어있었고. 내가 화학 좀 했다는 친구한테 그 화학식에 대해 물어봤지. 그가 말하기를, 폴리킴에서 그들이 무슨 시퍼런 용액에 뭔가를 섞고 흔들어 재끼고 한 모양이야. 뭐, 내가 학교 다닐 때 화학에 관심이 없었단 말이지. 그놈의 화학물질들과 약품들, 약품들끼리 서로 물고 빨고. 어오, 생각만 해도 또 열받네. 그래도 내가 단어 몇 개는 기억하는 걸 봐서는 선생들이 헛짓거리 한 건 아닌가 보네. 아무튼, 중요한 건 그놈이 묘사한 그 실험이 뭔지 직접 가서 확인해 보는 거지. 그러면 지금까지 골칫덩이였던 문제가 우리 앞길을 밝게 비춰주겠지. 이 파란 똥 찌꺼기 같은 게 깡통들에 그득히 담겨서 온 지역에 뿌려져 있는데, 아무도 그 정체를 모르고, 알아내려 할 만큼 열정 넘치는 놈도 없단 말이지. 그러니 우리가 이게 뭔지 한번 알아내서, 한탕 땡겨보자고. 하지만 그러려면 한 가지 더 필요한 게 있는데, 그게 공장(Factory) 안 어딘가에 있을 거야. 과거엔 연구실이었던, 지금은 그냥 쓰레기가 가득 차 있는 방이 있을 거야. 거기서 밝은 노란색으로 채워져 있는 주사기를 찾아봐. 볼펜같이 생긴 건데 모르핀 주사기랑 비슷해. 뭐 말하는 건지 알겠지?", + "597a0e5786f77426d66c0636 description": "[Chemical - Part 3]\n네가 그 방에서 찾아온 봉투 속에는 웬 화학식이 적혀있었어. 그리고 USB에는 그 반응 과정이 들어있었고. 내가 화학 좀 했다는 친구한테 그 화학식에 대해 물어봤지. 그가 말하기를, 폴리킴에서 그들이 무슨 시퍼런 용액에 뭔가를 섞고 흔들어 재끼고 한 모양이야. 뭐, 내가 학교 다닐 때 화학에 관심이 없었단 말이지. 그놈의 화학물질들과 약품들, 약품들끼리 서로 물고 빨고. 어오, 생각만 해도 또 열 받네. 그래도 내가 단어 몇 개는 기억하는 걸 봐서는 선생들이 헛짓거리 한 건 아닌가 보네. 아무튼, 중요한 건 그놈이 묘사한 그 실험이 뭔지 직접 가서 확인해 보는 거지. 그러면 지금까지 골칫덩이였던 문제가 우리 앞길을 밝게 비춰주겠지. 이 파란 똥 찌꺼기 같은 게 깡통들에 그득히 담겨서 온 지역에 뿌려져 있는데, 아무도 그 정체를 모르고, 알아내려 할 만큼 열정 넘치는 놈도 없단 말이지. 그러니 우리가 이게 뭔지 한번 알아내서, 한탕 땡겨보자고. 하지만 그러려면 한 가지 더 필요한 게 있는데, 그게 공장(Factory) 안 어딘가에 있을 거야. 과거엔 연구실이었던, 지금은 그냥 쓰레기가 가득 차 있는 방이 있을 거야. 거기서 밝은 노란색으로 채워져 있는 주사기를 찾아봐. 볼펜같이 생긴 건데 모르핀 주사기랑 비슷해. 뭐 말하는 건지 알겠지?", "597a0e5786f77426d66c0636 failMessageText": "", - "597a0e5786f77426d66c0636 successMessageText": "[화학 - 파트 3 (Chemical - Part 3), 성공]\n오, 훌륭해. 이제 얘네가 실험하는 동안, 최대한 멀리 떨어져 있자고. 결과는 나중에 보고.", + "597a0e5786f77426d66c0636 successMessageText": "오, 훌륭해. 이제 얘네가 실험하는 동안, 최대한 멀리 떨어져 있자고. 결과는 나중에 보고.", "597a15b386f774799e5cd152": "공장(Factory)에서 화학물질이 든 주사기 획득하기", "597a15c386f77405ba6887d2": "화학물질이 든 주사기 건네주기", "597a0e5786f77426d66c0636 acceptPlayerMessage": "", @@ -17642,8 +17528,8 @@ "597a0e5786f77426d66c0636 completePlayerMessage": "", "597a0f5686f774273b74f676 name": "화학 - 파트 4", "597a0f5686f774273b74f676 description": "[Chemical - Part 4]\n자, 여기가 제일 중요해. 이 화학물 거래는 엄청 순탄하게 잘되고 있어. 누구한테 팔아치워야 할지도 벌써 다 정해놨고, 그 화학물질을 수거해갈 사람들도 준비됐지. 딱 하나 부족한 게 남았지. 그 노란 화학물질을 더 찾아와. 걱정 마, 이미 반은 해치웠다고. 누군가가 우리보다 먼저 걔네를 팔아치우려고 시도한 거 같더라고. 뭐, 팔아치우려고 한 건지는 잘 모르겠지만. 하지만 너가 찾은 서류의 내용이 사실이라면, 그 화학물질이 잔뜩 담긴 상자가 이미 한번 공장(Factory)에서 반출되려 한 적이 있더라고. 그런데 화물이 도착했을만한 목적지들에는 도착 기록이 하나도 없는걸 봐서는, 세관(Customs) 어딘가에 아직 처박혀 있나 봐. 그걸 수송하려고 했다면, 자동차 중에서 밴 종류를 사용했을 거야. 찌질하게 주사기 한두 개가 아니라, 상자 채로 말이야. 상자가 있을 것 같은 곳에 표시를 해둬. 아 그리고 하나 더. 내 친애하는 친구들인 프라퍼와 테라피스트도 어디선가 튀어나와서 이걸 찾고 있다는 말을 들었어. 무슨 말인지 알지? 우리 서로 배신하지 말자고. 조금만 더 노력하면, 모든 게 우리 차지가 된다고. 행운을 빌어줄게. 잘 챙겨오기만 한다면, 내가 래그맨에게 너한테 끝내주는 헬멧들을 팔아달라고 요청해 주겠어. 진짜 끝내주는 뚝배기로 말이야.", - "597a0f5686f774273b74f676 failMessageText": "[화학 - 파트 4 (Chemical - Part 4), 실패]\n아, 이런 빌어먹을 개자식 같으니라고! 지금까지 준비한 게 싹 다 증발했잖아! 지금까지 한 노력이 물거품이 되어버렸어! 도대체 뭐가 문제야? 그래, 네가 똑똑하고 아주 잘난 새끼지. 하, 빌어먹을 쌍놈 같으니라고, 이런 잭팟을 한 번에 날려 먹다니! 저리 꺼져, 앞으로 너 같은 놈한테 일거리를 맡길 일은 없을 거다.", - "597a0f5686f774273b74f676 successMessageText": "[화학 - 파트 4 (Chemical - Part 4), 성공]\n바로 이거야! 이제 우리 사이가 좀 가까워진 거 같군, 친구. 마지막 순간에 꽁무니를 빼지 않은 건 정말 굉장했다고. 이제 슬슬 진짜 중요한 일거리들을 맡겨볼 수 있겠군.", + "597a0f5686f774273b74f676 failMessageText": "아, 이런 빌어먹을 개자식 같으니라고! 지금까지 준비한 게 싹 다 증발했잖아! 지금까지 한 노력이 물거품이 되어버렸어! 도대체 뭐가 문제야? 그래, 네가 똑똑하고 아주 잘난 새끼지. 하, 빌어먹을 쌍놈 같으니라고, 이런 잭팟을 한 번에 날려 먹다니! 저리 꺼져, 앞으로 너 같은 놈한테 일거리를 맡길 일은 없을 거다.", + "597a0f5686f774273b74f676 successMessageText": "바로 이거야! 이제 우리 사이가 좀 가까워진 거 같군, 친구. 마지막 순간에 꽁무니를 빼지 않은 건 정말 굉장했다고. 이제 슬슬 진짜 중요한 일거리들을 맡겨볼 수 있겠군.", "59b242ea86f7741e6e0e7a86": "화학물질 수송 차량에 MS2000 마커 설치하기", "59b95de686f77418457056ef": "세관(Customs)에서 살아서 탈출하기", "5a3fbc9586f77459d52a16c4": "세관(Customs)에서 화학물질을 싣고 있는 차량 찾기", @@ -17728,7 +17614,7 @@ "59c93e8e86f7742a406989c4 name": "돈으로 이어진 관계", "59c93e8e86f7742a406989c4 description": "[Loyalty Buyout]\n그래, 그래, 안녕하신가 쥐새끼 양반. 저번에는 아주 훌륭하게 나를 엿 먹이셨더니만. 우리 잘나신 용병님의 모가지에 현상금을 걸어버려야 하나 생각마저 했으니, 말 다 했지. 뭐, 직접 제 발로 기어 온 걸 보아하니, 너의 죄라도 사해 달라 이런 건가? 다행히 나한테만큼은 애새끼한테 사탕을 뺏는 것만큼이나 쉬운 일이지. 내 신뢰는 돈으로 살 수 있거든. 백만 루블 - 백만 루블이면 과거에 있던 오해들을 다 없던 일로 해주지.", "59c93e8e86f7742a406989c4 failMessageText": "", - "59c93e8e86f7742a406989c4 successMessageText": "[돈으로 이어진 관계 (Loyalty Buyout), 성공]\n뭐, 이전 일은 다 깔끔하게 잊자고, 친구. 자, 그럼 다음에 또 보자고.", + "59c93e8e86f7742a406989c4 successMessageText": "뭐, 이전 일은 다 깔끔하게 잊자고, 친구. 자, 그럼 다음에 또 보자고.", "596a10d886f7741ddf11dbf0": "루블 건네주기", "59c93e8e86f7742a406989c4 acceptPlayerMessage": "", "59c93e8e86f7742a406989c4 declinePlayerMessage": "", @@ -17925,9 +17811,9 @@ "5a27ba1c86f77461ea5a3c56 declinePlayerMessage": "", "5a27ba1c86f77461ea5a3c56 completePlayerMessage": "", "5a27ba9586f7741b543d8e85 name": "스파 관광 - 파트 6", - "5a27ba9586f7741b543d8e85 description": "[스파 관광 - 파트 6 (Spa Tour - Part 6)]\n우리의 협력관계가 슬슬 열매를 맺어가는 것 같소. 아주 좋은 일이지. 그래서 당신에게 더 큰 부탁을 하고 싶소. 결국, 신뢰할 수 있는 사람은 모두 소중한 거 아니겠소? 이제 당신이 이 리조트에서 진행되는 작전에 참여할 시간이 된 것 같소. 하지만 먼저 자네의 충성심을 시험해보고 싶으니, 적들의 귀로 만든 목걸이를 하나 가져오시오. 하하, 농담이니 걱정하지 마시오. 하지만 충성심을 시험해보고 싶다는 것은 사실이니, 당신이 이 작전에 참여하고 싶다는 성의를 보여주시오. 피는 굳이 보고 싶지 않으니 다른 것으로 보여줬으면 좋겠소. 내가 무엇을 원하는 것인지 알 거라 믿소.", + "5a27ba9586f7741b543d8e85 description": "[스파 관광 - 파트 6(Spa Tour - Part 6)]\n우리의 협력관계가 슬슬 열매를 맺어가는 것 같소. 아주 좋은 일이지. 그래서 당신에게 더 큰 부탁을 하고 싶소. 결국, 신뢰할 수 있는 사람은 모두 소중한 거 아니겠소? 이제 당신이 이 리조트에서 진행되는 작전에 참여할 시간이 된 것 같소. 하지만 먼저 자네의 충성심을 시험해보고 싶으니, 적들의 귀로 만든 목걸이를 하나 가져오시오. 하하, 농담이니 걱정하지 마시오. 하지만 충성심을 시험해보고 싶다는 것은 사실이니, 당신이 이 작전에 참여하고 싶다는 성의를 보여주시오. 피는 굳이 보고 싶지 않으니 다른 것으로 보여줬으면 좋겠소. 내가 무엇을 원하는 것인지 알 거라 믿소.", "5a27ba9586f7741b543d8e85 failMessageText": "", - "5a27ba9586f7741b543d8e85 successMessageText": "[스파 관광 - 파트 6 (Spa Tour - Part 6), 성공]\n역시, 당신은 타고난 사업가가 분명하오. 이제 현장 업무뿐만 아니라 재정적인 부분에서도 도움을 청할 수 있겠소, 하하하!", + "5a27ba9586f7741b543d8e85 successMessageText": "[스파 관광 - 파트 6(Spa Tour - Part 6), 성공]\n역시, 당신은 타고난 사업가가 분명하오. 이제 현장 업무뿐만 아니라 재정적인 부분에서도 도움을 청할 수 있겠소, 하하하!", "5a28127b86f7743808504ecc": "달러 건네주기", "5a27ba9586f7741b543d8e85 acceptPlayerMessage": "", "5a27ba9586f7741b543d8e85 declinePlayerMessage": "", @@ -18024,14 +17910,14 @@ "5a27bc8586f7741b543d8ea4 description": "[청부살인 - 파트 6(Wet Job - Part 6)]\n반갑소, 내 친우여. 이제 이 흥미로운 일의 내막에 거의 다 와 가는 것 같소. 당신이 가져온 하드디스크 드라이브에는 미사일 엔진의 부분 설계도가 들어있었소. 이미 제 기능을 못한다 여겨지던 타이푼급 잠수함에 배치되어 있던 미사일 엔진은 우리 서구권에서 눈이 돌아갈 정도로 흥미를 느낄 정보지. 거기다 지금은 타르코프 어딘가에 있을 진짜 물개들만 간다는 발트 함대 출신 선원의 신상정보도 있었소. 그 친구는 해군 사령부와도 연줄이 있는 것 같았소. 우리가 원하는 자가 바로 그 친구지. 내 정보원이 말해주길 가끔 스캐브와 암거래를 하며 만만한 놈이 아니라고 했소. 아주 신중하게 일을 진행해야 하오. 오직 한 번의 기회뿐이며 한 치의 오차도 없이, 실패 없이 진행해야만 하는 일이오. 이런, 내 손이 다 떨리는군. 지금까지 잘해왔으니 잘하리라 믿어 의심치 않소. 그렇지만 나는 지금의 당신보다 더 훌륭하고 경험 많은 저격수가 필요하니 준비가 되거든 다시 찾아오시오.", "5a27bc8586f7741b543d8ea4 failMessageText": "", "5a27bc8586f7741b543d8ea4 successMessageText": "[청부살인 - 파트 6(Wet Job - Part 6), 성공]\n외람된 말이지만, 당신이 해낼 수 없을 거라 생각했는데, 내가 잘못 생각했소. 이제 당신이 타르코프 최고의 명사수요. 나중에 다시 연락하겠소.", - "5a28235e86f7741da250b438": "[볼트액션 소총] 스킬 레벨 올리기", + "5a28235e86f7741da250b438": "[저격소총] 스킬 레벨 올리기", "5a27bc8586f7741b543d8ea4 acceptPlayerMessage": "", "5a27bc8586f7741b543d8ea4 declinePlayerMessage": "", "5a27bc8586f7741b543d8ea4 completePlayerMessage": "", "5a27c99a86f7747d2c6bdd8e name": "서쪽에서 온 친구 - 파트 1", "5a27c99a86f7747d2c6bdd8e description": "[Friend from the West - Part 1]\n아, 너야? 슬슬 진짜 일을 해볼 준비가 됐나? 그래, 그래, 나보다 살벌한 놈이구먼. 본론만 말하자면, 요즘 관광객 놈들이 날 귀찮게 한단 말이지. 여기저기 들쑤시고, 집적거리고, 내 사람들을 다치게 하고. 난 그 꼬락서니가 맘에 들지 않아. 그놈들한테 지옥을 선사해 준다면, 보수는 두둑하게 쳐주도록 하지.", "5a27c99a86f7747d2c6bdd8e failMessageText": "", - "5a27c99a86f7747d2c6bdd8e successMessageText": "[서쪽에서 온 친구 - 파트 1 (Friend from the West - Part 1), 성공]\n잘 해냈어 람보. 그런데 네가 몇몇 외국 장교 놈들도 같이 죽여버린 거 같더라고. 쟤들 바지에 좀 지렸겠어.", + "5a27c99a86f7747d2c6bdd8e successMessageText": "잘 해냈어 람보. 그런데 네가 몇몇 외국 장교 놈들도 같이 죽여버린 거 같더라고. 쟤들 바지에 좀 지렸겠어.\n", "5be0198686f774595412d9c4": "USEC PMC 사살하기", "5ec137962d5b8510d548aef1": "USEC PMC 인식표 획득하기", "5ec137dcc367fc6781104613": "인식표 건네주기", @@ -18039,9 +17925,9 @@ "5a27c99a86f7747d2c6bdd8e declinePlayerMessage": "", "5a27c99a86f7747d2c6bdd8e completePlayerMessage": "", "5a27d2af86f7744e1115b323 name": "서쪽에서 온 친구 - 파트 2", - "5a27d2af86f7744e1115b323 description": "[Friend From the West - Part 2]\n음, 이제 우리 서로 최고의 친구잖아? 내 생각에는 이제 너도 진짜배기들이 하는 그런 진짜 사업에 끼어들 때인 거 같아. 저번에 했던 부탁은 한 친구의 요청이었어. 피스키퍼라는 사람인데, 너도 누군지 알 거 같은데. 그 양반은 유엔 평화유지군 소속으로, 이 지역의 폭력사태를 막고 평화를 가져오기 위해 왔지. 하 참, 웃기지도 않아서! 나는 여기가 이 꼬라지가 난 순간부터 그 사람과 같이 일해왔어. 같이 일하고, 장사도하고, 이것저것 막 휘젓고, 가끔 시체도 한두 구쯤 만들고. 본론으로 돌아가자면, 그는 일거리가 너무 많아 파묻힐 지경이고, 자기를 도와줄 만한 거칠고 믿을만한 사람을 찾고 있지. 딱 너 얘기 아니야? 물론, 나도 나만의 조건이 있지. 그리고 당연하게도, 그런 쩔어주는 사람하고 직접 일할 기회를 주는 건 공짜가 아니야. 그래 그래, 그 똥 씹은 듯한 표정은 집어치우고, 나한테 달러를 조금 넘겨줘. 그러면 서구 문명의 모든 혜택을 누리며 일할 기회를 주지.", + "5a27d2af86f7744e1115b323 description": "[Friend from the West - Part 2]\n음, 이제 우리 서로 최고의 친구잖아? 내 생각에는 이제 너도 진짜배기들이 하는 그런 진짜 사업에 끼어들 때인 거 같아. 저번에 했던 부탁은 한 친구의 요청이었어. 피스키퍼라는 사람인데, 너도 누군지 알 거 같은데. 그 양반은 유엔 평화유지군 소속으로, 이 지역의 폭력사태를 막고 평화를 가져오기 위해 왔지. 하 참, 웃기지도 않아서! 나는 여기가 이 꼬라지가 난 순간부터 그 사람과 같이 일해왔어. 같이 일하고, 장사도 하고, 이것저것 막 휘젓고, 가끔 시체도 한두 구쯤 만들고. 본론으로 돌아가자면, 그는 일거리가 너무 많아 파묻힐 지경이고, 자기를 도와줄 만한 거칠고 믿을만한 사람을 찾고 있지. 딱 너 얘기 아니야? 물론, 나도 나만의 조건이 있지. 그리고 당연하게도, 그런 쩔어주는 사람하고 직접 일할 기회를 주는 건 공짜가 아니야. 그래 그래, 그 똥 씹은 듯한 표정은 집어치우고, 나한테 달러를 조금 넘겨줘. 그러면 서구 문명의 모든 혜택을 누리며 일할 기회를 주지.", "5a27d2af86f7744e1115b323 failMessageText": "", - "5a27d2af86f7744e1115b323 successMessageText": "[서쪽에서 온 친구 - 파트 2 (Friend From the West - Part 2), 성공]\n이제야 말이 좀 통하네! 루블은 떡락하고, 이 녹색 쪼가리들은 길거리 창녀들의 빵댕이만큼이나 떡상할 거야. 이제 출세가도의 표본 같은 피스키퍼의 연락만 기다리라고.", + "5a27d2af86f7744e1115b323 successMessageText": "이제야 말이 좀 통하네! 루블은 떡락 하고, 이 녹색 쪼가리들은 길거리 창녀들의 빵댕이 만큼이나 떡상할 거야. 이제 출세가도의 표본 같은 피스키퍼의 연락만 기다리라고.", "5a27d34586f7744e1115b327": "달러 건네주기", "5a27d2af86f7744e1115b323 acceptPlayerMessage": "", "5a27d2af86f7744e1115b323 declinePlayerMessage": "", @@ -18125,7 +18011,7 @@ "5ac2426c86f774138762edfe declinePlayerMessage": "", "5ac2426c86f774138762edfe completePlayerMessage": "", "5ac2428686f77412450b42bf name": "건스미스 - 파트 3", - "5ac2428686f77412450b42bf description": "[건스미스 - 파트 3(Gunsmith - Part 3)]\n내가 어렸을 때, 사람들은 나에게 목적지가 중요한 게 아니라, 목적지까지의 과정이 중요한 것이라고 했지. 하지만 만약 그 목적지가 나 자신이라면? 예를 들면 나의 반사 신경이 얼마나 빠른지, 그리고 탄창 안에 몇 발이 남았는지를 아는 능력이라면? 이런 느낌은 자네가 세상에 이빨만으로 매달려야만 하는, 살아남아야만 하는 상황에서 특히 더 잘 느껴지지. MP5 한정이 필요해. 그리고 목적지까지의 과정이 중요한지, 목적지가 중요한지 한번 스스로 답을 생각해 보게.\n\n소음기, 전술 장치, 50발 확장 탄창 장착.\n\n인체공학 45 이상, 수직/수평 반동의 합 210 이하, 무게 4kg 이하, 조준 거리 200m 이상.", + "5ac2428686f77412450b42bf description": "[건스미스 - 파트 3(Gunsmith - Part 3)]\n내가 어렸을 때, 사람들은 나에게 목적지가 중요한 게 아니라, 목적지까지의 과정이 중요한 것이라고 했지. 하지만 만약 그 목적지가 나 자신이라면? 예를 들면 나의 반사 신경이 얼마나 빠른지, 그리고 탄창 안에 몇 발이 남았는지를 아는 능력이라면? 이런 느낌은 자네가 세상에 이빨만으로 매달려야만 하는, 살아남아야만 하는 상황에서 특히 더 잘 느껴지지. MP5 한정이 필요해. 그리고 목적지까지의 과정이 중요한지, 목적지가 중요한지 한번 스스로 답을 생각해 보게.\n\n소음기, 전술 장치, 50발 확장 탄창 장착.\n\n인체공학 45 이상, 수직/수평 반동의 합 200 이하, 무게 4kg 이하, 조준 거리 200m 이상.", "5ac2428686f77412450b42bf failMessageText": "", "5ac2428686f77412450b42bf successMessageText": "[건스미스 - 파트 3(Gunsmith - Part 3), 성공]\nCQB에 딱 좋고 조용하기까지... 훌륭해, 고객도 만족하실 것 같네.", "5accde3686f7740cea1b7ec2": "MP5를 요구 사항에 맞게 개조하기", @@ -18135,7 +18021,7 @@ "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", "5ac242ab86f77412464f68b4 name": "건스미스 - 파트 16", - "5ac242ab86f77412464f68b4 description": "[건스미스 - 파트 16 (Gunsmith - Part 16)]\n지난번엔 너무 열심히 떠들었군. 오랫동안 홀로 생각과 싸우다 보면 종종 일어나는 일이지. 작업 중에 이런저런 생각이 들어서 말이야. 솔직히 그 M4는 너무 잘 개조했어. 금방 떠나보냈다니 아쉽기만 하군. 최근에 BEAR 소속 PMC가 한 명 왔었는데, 스나이퍼인지 뭔지 하는 이름을 대면서 DVL-10 저격 소총이 필요하다더군. 이 사람 진지하게 주문하는 거니 자네도 최선을 다해 만들어와 줬으면 좋겠어.\n\n조준경, 레이저 표적 지시기 장착.\n\n인체공학 수치 40 이상, 수직/수평 반동의 합은 450 이하, 조준 거리 2000m 이상, 무게 6.7kg 이하. ", + "5ac242ab86f77412464f68b4 description": "[건스미스 - 파트 16(Gunsmith - Part 16)]\n지난번엔 너무 열심히 떠들었군. 오랫동안 홀로 생각과 싸우다 보면 종종 일어나는 일이지. 작업 중에 이런저런 생각이 들어서 말이야. 솔직히 그 M4는 너무 잘 개조했어. 금방 떠나보냈다니 아쉽기만 하군. 최근에 BEAR 소속 PMC가 한 명 왔었는데, 스나이퍼인지 뭔지 하는 이름을 대면서 DVL-10 저격 소총이 필요하다더군. 이 사람 진지하게 주문하는 거니 자네도 최선을 다해 만들어와 줬으면 좋겠어.\n\n조준경, 레이저 표적 지시기 장착.\n\n인체공학 수치 40 이상, 수직/수평 반동의 합은 400 이하, 조준 거리 2000m 이상, 무게 6.7kg 이하. ", "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "[건스미스 - 파트 16(Gunsmith - Part 16), 성공]\n고마워, 총은 거기 테이블 위에 올려둬, 디ㅁ... 크흠, 스나이퍼 친구에게 전해주도록 하지.", "5acce08b86f7745f8521fa64": "DVL-10을 요구 사항에 맞게 개조하기", @@ -18308,16 +18194,16 @@ "5ae3267986f7742a413592fe name": "건스미스 - 파트 5", "5ae3267986f7742a413592fe description": "[건스미스 - 파트 5(Gunsmith - Part 5)]\n내가 겨우 안정적인 인터넷과 전력을 확보하자마자, 정부에서 타르코프시로 흘러들어오는 데이터를 받아주는 IP 절반을 차단해버렸지. 이게 다 테라그룹이 \"Ebambium\" 이라는 ISP를 써서 타르코프를 불안정하게 하고 혼돈을 일으킨다는 소문 때문인 것 같은데, 내게는 광신도 놈들이 라그나로크가 온다 주장하는 개소리처럼 들리더군. 어떻게 생각하나? 그건 그렇고, 개소리 하니까 무기가 생각나는군. 이번에는 얼굴에 번개 문신을 한 이상한 친구의 Remington 870 산탄총 개조 주문이군.\n\nMagpul MOE 총열 덮개, 전술 장비(레이저 같은 것), 전술 전방 손잡이 장착.\n\n인체공학 수치 60 이상, 수직/수평 반동의 합 500 이하.", "5ae3267986f7742a413592fe failMessageText": "", - "5ae3267986f7742a413592fe successMessageText": "[건스미스 - 파트 5 (Gunsmith - Part 5), 성공]\n좋은 총이군. 아주 잘 만들었네.", + "5ae3267986f7742a413592fe successMessageText": "[건스미스 - 파트 5(Gunsmith - Part 5), 성공]\n좋은 총이군. 아주 잘 만들었네.", "5ae34b8b86f7741e5b1e5d48": "Remington Model 870을 요구 사항에 맞게 개조하기", "5af4134a86f7742574673cc5": "", "5ae3267986f7742a413592fe acceptPlayerMessage": "", "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", "5ae3270f86f77445ba41d4dd name": "건스미스 - 파트 6", - "5ae3270f86f77445ba41d4dd description": "[건스미스 - 파트 6 (Gunsmith - Part 6)]\n이 상황에 대해서 어떻게 생각하나? 이 도시의 주민한테 닥친 이 고통이 다 사회적 행동이나 통제된 결과물이고, 이건 시작에 불과하다 생각하나? 그 번개 문신을 한 친구가 다녀간 이후로 이것에 대해 계속 생각해 봤네. 보이지 않는 손의 영향이든 뭐든 난 이 사회가 자초했다 생각해. 우리 행동들이, 비록 운동화나 사탕 무 샐러드를 사 먹는 보잘것없는 행위라도 그들이 실험실을 세우고 사업을 하는 데 이바지했다는 거야. 결국, 우리의 손으로 이 지경을 만들어냈다는 말이지. 이런, 또 나 혼자 떠들고 있군. 이번 주문은 AKM이네.\n\n소음기, Fortis Shift 손잡이, 30발 Magpul 탄창 장착.\n\n인체공학 수치 40 이상, 수직/수평 반동의 합 400 이하, 조준 거리 800미터 이상.", + "5ae3270f86f77445ba41d4dd description": "[건스미스 - 파트 6(Gunsmith - Part 6)]\n이 상황에 대해서 어떻게 생각하나? 이 도시의 주민한테 닥친 이 고통이 다 사회적 행동이나 통제된 결과물이고, 이건 시작에 불과하다 생각하나? 그 번개 문신을 한 친구가 다녀간 이후로 이것에 대해 계속 생각해 봤네. 보이지 않는 손의 영향이든 뭐든 난 이 사회가 자초했다 생각해. 우리 행동들이, 비록 운동화나 사탕 무 샐러드를 사 먹는 보잘것없는 행위라도 그들이 실험실을 세우고 사업을 하는 데 이바지했다는 거야. 결국, 우리의 손으로 이 지경을 만들어냈다는 말이지. 이런, 또 나 혼자 떠들고 있군. 이번 주문은 AKM이네.\n\n소음기, Fortis Shift 손잡이, 30발 Magpul 탄창 장착.\n\n인체공학 수치 40 이상, 수직/수평 반동의 합 350 이하, 조준 거리 800미터 이상.", "5ae3270f86f77445ba41d4dd failMessageText": "", - "5ae3270f86f77445ba41d4dd successMessageText": "[건스미스 - 파트 6 (Gunsmith - Part 6), 성공]\n흠잡을 곳 없이 훌륭하게 완성된 총이군, 고맙네. 고객에게 주문한 총이 준비되었다고 알려줘야겠어. 지금은 일감이 없다네, 내일 다시 와보게나.", + "5ae3270f86f77445ba41d4dd successMessageText": "[건스미스 - 파트 6(Gunsmith - Part 6), 성공]\n흠잡을 곳 없이 훌륭하게 완성된 총이군, 고맙네. 고객에게 주문한 총이 준비되었다고 알려줘야겠어. 지금은 일감이 없다네, 내일 다시 와보게나.", "5ae3550b86f7741cf44fc799": "AKM을 요구 사항에 맞게 개조하기", "5af4136586f774551341dc75": "", "5af4139286f774522e34389b": "", @@ -18325,7 +18211,7 @@ "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", "5ae3277186f7745973054106 name": "건스미스 - 파트 8", - "5ae3277186f7745973054106 description": "[건스미스 - 파트 8 (Gunsmith - Part 8)]\n내가 지금 두 개의 AI 네트워크를 가지고 있는데, 하나는 데이터베이스를 통한 카메라 얼굴 인식 기능이고, 다른 하나는 암호 화폐 거래를 모니터링하고 반응하는 기능이지. 오늘부터 내 작업장의 온도, 습도, 압력 같은 수치를 모니터링하는 프로그램을 만들 계획일세. 그리고 그중에 가장 중요한 내 기분 또한 모니터링해서 반응하는 기능도 어떨지는 끝나고 한번 보자고. Zenit 부품으로 개조된 AKS-74N 주문이네. 아마도 전에 상트페테르부르크에 살던 사람한테 선물이라도 하려나 보지.\n\nB-30 + B-31S 총열덮개, RK-0 전방 손잡이, AK-12 탄창, Klesch-2IKS 전술장치, DTK-1 제퇴기 장착.\n\n인체공학 수치 65 이상, 수직/수평 반동의 합 275 이하, 부피 10칸 이하.", + "5ae3277186f7745973054106 description": "[건스미스 - 파트 8(Gunsmith - Part 8)]\n내가 지금 두 개의 AI 네트워크를 가지고 있는데, 하나는 데이터베이스를 통한 카메라 얼굴 인식 기능이고, 다른 하나는 암호 화폐 거래를 모니터링하고 반응하는 기능이지. 오늘부터 내 작업장의 온도, 습도, 압력 같은 수치를 모니터링하는 프로그램을 만들 계획일세. 그리고 그중에 가장 중요한 내 기분 또한 모니터링해서 반응하는 기능도 어떨지는 끝나고 한번 보자고. Zenit 부품으로 개조된 AKS-74N 주문이네. 아마도 전에 상트페테르부르크에 살던 사람한테 선물이라도 하려나 보지.\n\nDTK-1 제퇴기, B-33 먼지덮개, RK-3 권총손잡이, PT-3 개머리판 장착.\n\n인체공학 수치 65 이상, 수직/수평 반동의 합 250 이하, 부피 8칸 이하.", "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "[건스미스 - 파트 8(Gunsmith - Part 8), 성공]\nZenit AK는 준비되었나? 좋아, 저 상자에 놔두면 된다네, 고마워. 다음 주문은 내일 다시 오면 된다네, 물론 자네가 원한다면 말이지.", "5ae3570b86f7746efa6b4494": "AKS-74N을 요구 사항에 맞게 개조하기", @@ -18345,7 +18231,7 @@ "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", "5ae3280386f7742a41359364 name": "건스미스 - 파트 15", - "5ae3280386f7742a41359364 description": "[건스미스 - 파트 15 (Gunsmith - Part 15)]\nAI 프로그램 작업을 하는데 그런 생각이 들더군. 우리랑 별반 차이가 없는 것 같은데 언젠가는 우리의 뇌세포도 이런 시스템으로 교체할 수 있게 되지 않을까? 자네는 어떻게 생각하나? 난 조만간 그런 시대가 올 것 같군. 오직 주입되는 신호와 그에 따른 반응만 확인할 수 있지, 내부에서 어떤 과정이 일어나는지는 모른단 말이네. 아마 자체적인 내부 규칙에 따라 신경 링크 같은 것들이 서로 연결되겠지. 그게 우리랑 다를 게 뭔가? 자네는 자신의 정신과 상상만이 행동을 제재할 수 있는 그런 세계에서 살아보고 싶나? 목표가 없다면 지금 우리의 삶과 다를 바는 없겠지. 게다가 영원히 살 수 있는데 그런 끝없는 목표는 어디서 얻겠나? 이번엔 AS VAL 주문이네.\n\nNSPU-M 야간 투시 조준경, AN/PEQ-15 전술 장치, 30발 탄창, GL-SHOCK 개머리판 장착.\n\n인체공학 수치 33 이상, 수직/수평 반동의 합 220 이하.", + "5ae3280386f7742a41359364 description": "[건스미스 - 파트 15(Gunsmith - Part 15)]\nAI 프로그램 작업을 하는데 그런 생각이 들더군. 우리랑 별반 차이가 없는 것 같은데 언젠가는 우리의 뇌세포도 이런 시스템으로 교체할 수 있게 되지 않을까? 자네는 어떻게 생각하나? 난 조만간 그런 시대가 올 것 같군. 오직 주입되는 신호와 그에 따른 반응만 확인할 수 있지, 내부에서 어떤 과정이 일어나는지는 모른단 말이네. 아마 자체적인 내부 규칙에 따라 신경 링크 같은 것들이 서로 연결되겠지. 그게 우리랑 다를 게 뭔가? 자네는 자신의 정신과 상상만이 행동을 제재할 수 있는 그런 세계에서 살아보고 싶나? 목표가 없다면 지금 우리의 삶과 다를 바는 없겠지. 게다가 영원히 살 수 있는데 그런 끝없는 목표는 어디서 얻겠나? 이번엔 AS VAL 주문이네.\n\nNSPU-M 야간 투시 조준경, AN/PEQ-15 전술 장치, 30발 탄창, GL-SHOCK 개머리판 장착.\n\n인체공학 수치 33 이상, 수직/수평 반동의 합 200 이하.", "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "[건스미스 - 파트 15 (Gunsmith - Part 15)]\n소총은 완성했나? 좋아, 이리 줘보게. 내가 흥미로운 열쇠를 하나 주지, 자네가 쓰기에 유용할 거야. ULTRA 쇼핑몰에 있는 KIBA 상점 열쇠인데, 그 상점에 훌륭한 부품이 많다고 하더군. 총기 개조할 때 유용하게 쓸 수 있을 걸세.", "5ae4479686f7744f6c79b7b3": "AS VAL을 요구 사항에 맞게 개조하기", @@ -18461,13 +18347,13 @@ "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", "5ae4496986f774459e77beb6 name": "솜씨 좋은 바느질 - 파트 3", - "5ae4496986f774459e77beb6 description": "[솜씨 좋은 바느질 - 파트 3 (Sew it Good - Part 3)]\n어휴, 네가 없었다면 난 지금쯤 일거리에 파묻혀 죽어버렸을지도 몰라. 난 그저 이 도시가 제대로 굴러갔으면 하는 마음에 정신없이 뛰어다닐 뿐이야. 좋아, 지금까지 비밀로 진행해오고 있던 내 일에 대해 알려줄게. 나는 방탄복이나 홀스터, 방탄복같은 의류 제작 사업에도 손을 대볼까 생각 중이야. 유럽 제일의 옷 가게로서 말이지, 하하. 그러기 위해서 6B13 방탄복 안감이나 구조 같은 걸 공부하려고 해. 그 초록색 방탄복 말이야, 당신도 알고 있지? 저번과 똑같이 개박살 난 거 하나, 좀 상태 좋은 거 하나로 두 벌 구해다 줘.", + "5ae4496986f774459e77beb6 description": "[솜씨 좋은 바느질 - 파트 3 (Sew it Good - Part 3)]\n어휴, 네가 없었다면 난 지금쯤 일거리에 파묻혀 죽어버렸을지도 몰라. 난 그저 이 도시가 제대로 굴러갔으면 하는 마음에 정신없이 뛰어다닐 뿐이야. 좋아, 지금까지 비밀로 진행해오고 있던 내 일에 대해 알려줄게. 나는 방탄복이나 홀스터, 방탄복같은 의류 제작 사업에도 손을 대볼까 생각 중이야. 유럽 제일의 옷 가게로서 말이지, 하하. 그러기 위해서 6B43 방탄복 안감이나 구조 같은 걸 공부하려고 해. 그 초록색 방탄복 말이야, 당신도 알고 있지? 저번과 똑같이 개박살 난 거 하나, 좀 상태 좋은 거 하나로 두 벌 구해다 줘.", "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "[솜씨 좋은 바느질 - 파트 3 (Sew it Good - Part 3), 성공]\n전부 가져왔어? 한번 확인해 보게 이리 줘봐. 이런 씨벌! 뭐가 이렇게 미친 듯이 무거운 거지?! 나중에 따로 확인해야겠네. 여기, 도와준 대가로 사례를 준비했어.", "5ae9bb6986f77415a869b40b": "레이드에서 내구도가 0% ~ 50% 상태인 [6B13 방탄복] 획득하기", - "5ae9bc6e86f7746e0026222c": "레이드에서 획득한 내구도 0% ~ 50% 상태인 [6B13 방탄복] 건네주기", + "5ae9bc6e86f7746e0026222c": "방탄복 건네주기", "5ae9be7f86f7746c6337153d": "레이드에서 내구도가 50% ~ 100% 상태인 [6B13 방탄복] 획득하기", - "5ae9bea886f77468ab400e64": "레이드에서 획득한 내구도 50% ~ 100% 상태인 [6B13 방탄복] 건네주기", + "5ae9bea886f77468ab400e64": "방탄복 건네주기", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -18552,7 +18438,7 @@ "5ae449d986f774453a54a7e1 declinePlayerMessage": "", "5ae449d986f774453a54a7e1 completePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 name": "건스미스 - 파트 17", - "5b47749f86f7746c5d6a5fd4 description": "[건스미스 - 파트 17 (Gunsmith - Part 17)]\n예전에 KIBA 총포상 주인을 만난 적이 있는데, 별로 좋아하지도 않는 사우나까지 따라가게 되었지. 부둣가에서 다이빙한답시고 다리까지 부러뜨린 놈이었어. 그 유쾌한 친구는 여기 타르코프에 에어소프트 서바이벌장 하나 차리는 게 꿈이었다고 말하더군. 이 도시가 세계에서 제일가는 전장으로 변했으니 그 친구의 소원대로 이루어진 셈 치자고. 그 꿈과 다른 점은 날아온 총알이 머리를 꿰뚫을 수 있냐 없냐 정도의 사소한 차이겠지. 자, AK-102 개조 주문이네.\n\nZenit Klesch-2U 전술 조명, RPK-16 완충튜브, Ferfrans CRD Concussion Reduction Device, Magpul AFG OD 전술 손잡이 (Olive Drab), Circle 10 탄창 장착.\n\n인체공학 수치 70 이상, 수직/수평 반동의 합 250 이하, 조준 거리 800미터 이상, 부피 8칸 이하.", + "5b47749f86f7746c5d6a5fd4 description": "[건스미스 - 파트 17(Gunsmith - Part 17)]\n예전에 KIBA 총포상 주인을 만난 적이 있는데, 별로 좋아하지도 않는 사우나까지 따라가게 되었지. 부둣가에서 다이빙한답시고 다리까지 부러뜨린 놈이었어. 그 유쾌한 친구는 여기 타르코프에 에어소프트 서바이벌장 하나 차리는 게 꿈이었다고 말하더군. 이 도시가 세계에서 제일가는 전장으로 변했으니 그 친구의 소원대로 이루어진 셈 치자고. 그 꿈과 다른 점은 날아온 총알이 머리를 꿰뚫을 수 있냐 없냐 정도의 사소한 차이겠지. 자, AK-102 개조 주문이네.\n\nZenit Klesch-2U 전술 조명, RPK-16 완충튜브, Ferfrans CRD Concussion Reduction Device, Magpul AFG OD 전술 손잡이 (Olive Drab), Circle 10 탄창 장착.\n\n인체공학 수치 70 이상, 수직/수평 반동의 합 210 이하, 조준 거리 800미터 이상, 부피 8칸 이하.", "5b47749f86f7746c5d6a5fd4 failMessageText": "", "5b47749f86f7746c5d6a5fd4 successMessageText": "[건스미스 - 파트 17(Gunsmith - Part 17), 성공]\n하루 종일 눈이 먼 상태로 있고 싶지 않으면 전술 조명은 켜지 말게! 아무튼, 잘했어, 상자 위에 올려두게.", "5b47796686f774374f4a8bb1": "AK-102를 요구 사항에 맞게 개조하기", @@ -18562,7 +18448,7 @@ "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 name": "건스미스 - 파트 12", - "5b47799d86f7746c5d6a5fd8 description": "[건스미스 - 파트 12 (Gunsmith - Part 12)]\n좋아, 급한 주문이 하나 들어왔어. 어떤 사람이 잠깐 들러서 공장에서 사람들을 데려와 기숙사 근처에 자리를 잡은 르샬라와의 문제를 해결하고 싶다고 했네. 그에게 MPX를 한 자루 만들어 줘야 해. 그 누구에게도 자네가 이게 필요한 이유를 말하지 말게. 르샬라의 귀에 들어가기라도 하면 그리 썩 좋진 않겠지. 게다가 공장에서 일하기 전에는 군인이었던 그의 부하들은 성격이 엄청나게 더럽거든.\n\nAnnihilator 소염기, Steiner LAS/TAC 2 전술 조명, AR-15 Tactical Dynamics Skeletonized 권총 손잡이 장착.\n\n인체공학 수치 52 이상, 수직/수평 반동의 합은 225 이하, 조준 거리 300미터 이상, 무게 4kg 이하.", + "5b47799d86f7746c5d6a5fd8 description": "[건스미스 - 파트 12(Gunsmith - Part 12)]\n좋아, 급한 주문이 하나 들어왔어. 어떤 사람이 잠깐 들러서 공장에서 사람들을 데려와 기숙사 근처에 자리를 잡은 르샬라와의 문제를 해결하고 싶다고 했네. 그에게 MPX를 한 자루 만들어 줘야 해. 그 누구에게도 자네가 이게 필요한 이유를 말하지 말게. 르샬라의 귀에 들어가기라도 하면 그리 썩 좋진 않겠지. 게다가 공장에서 일하기 전에는 군인이었던 그의 부하들은 성격이 엄청나게 더럽거든.\n\nAnnihilator 소염기, Steiner LAS/TAC 2 전술 조명, AR-15 Tactical Dynamics Skeletonized 권총 손잡이 장착.\n\n인체공학 수치 52 이상, 수직/수평 반동의 합은 180 이하, 조준 거리 300미터 이상, 무게 4kg 이하.", "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "[건스미스 - 파트 12(Gunsmith - Part 12), 성공]\n어서, 이리 줘 봐. 고객한테 최대한 빨리 넘겨야 하네. 자네가 이 MPX를 만드는 이유를 아무에게도 말하지 않았을 거라 믿지. 그래, 이제 고객에게 행운이나 빌어줘야겠어.", "5b477b3b86f77401da02e6c4": "SIG MPX를 요구 사항에 맞게 개조하기", @@ -18572,7 +18458,7 @@ "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", "5b477b6f86f7747290681823 name": "건스미스 - 파트 18", - "5b477b6f86f7747290681823 description": "[건스미스 - 파트 18 (Gunsmith - Part 18)]\n루샤가 거짓말을 탐지할 수 있게 만들고 싶은데, 못해도 90%의 정확도만 나와준다면, 바로 어제 우리 경제특구의 이익과 밝은 미래를 확신하는 자신들의 이상과 숭고한 목표를 상세히 말하던 그 모든 정치인과 테라 그룹 거물들의 이야기를 듣는 게 흥미로웠을 걸세. 그중 얼마가 잘 포장된 거짓말이었을까? 내 생각엔... 전부인 것 같네. 이번에는 AKMN 소총 MOE 에디션 주문이 들어왔네. 전부 검은색으로 조립해야 해.\n\nRotor 43 제퇴기, MOE 총열 덮개(검은색), MOE 권총 손잡이(검은색), Magpul M-LOK AFG 전술 손잡이(검은색), Magpul PMAG 30 GEN M3 탄창(검은색), MOE 개머리판(검은색) 장착.\n\n인체공학 수치 50 이상, 수직/수평 반동의 합 350 이하, 조준 거리 500미터 이상, 무게 5kg 이하.", + "5b477b6f86f7747290681823 description": "[건스미스 - 파트 18(Gunsmith - Part 18)]\n루샤가 거짓말을 탐지할 수 있게 만들고 싶은데, 못해도 90%의 정확도만 나와준다면, 바로 어제 우리 경제특구의 이익과 밝은 미래를 확신하는 자신들의 이상과 숭고한 목표를 상세히 말하던 그 모든 정치인과 테라 그룹 거물들의 이야기를 듣는 게 흥미로웠을 걸세. 그중 얼마가 잘 포장된 거짓말이었을까? 내 생각엔... 전부인 것 같네. 이번에는 AKMN 소총 MOE 에디션 주문이 들어왔네. 전부 검은색으로 조립해야 해.\n\nRotor 43 제퇴기, MOE 총열 덮개(검은색), MOE 권총 손잡이(검은색), Magpul M-LOK AFG 전술 손잡이(검은색), Magpul PMAG 30 GEN M3 탄창(검은색), MOE 개머리판(검은색) 장착.\n\n인체공학 수치 50 이상, 수직/수평 반동의 합 300 이하, 조준 거리 500미터 이상, 무게 5kg 이하.", "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "[건스미스 - 파트 18(Gunsmith - Part 18), 성공]\n고맙네. 아무 곳에나 놓으면 돼. 지금은 좀 바쁘니 나중에 보자고.", "5b477f1486f7743009493232": "AKMN을 요구 사항에 맞게 개조하기", @@ -18582,7 +18468,7 @@ "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", "5b477f7686f7744d1b23c4d2 name": "건스미스 - 파트 20", - "5b477f7686f7744d1b23c4d2 description": "[건스미스 - 파트 20 (Gunsmith - Part 20)]\n이번 주문은 스나이퍼를 위한 거라네. 그가 MRE, 부싯돌, 배터리와 물이 들은 가방을 챙긴 걸로 보아 그가 한 주간 삼림(Woods) 어딘가에서 악당 사냥을 할 것 같이 보이더군. 지금은 내 은신처에 뒀지만 말이야. 아무튼, 이번에는 M1A가 필요하다고 했네.\n\nNightforce ATACR 7-35x56 조준경, Micro T-1 반사 조준경, Ultimak M8 마운트, Holosun LS321 전술 장치, 20발 탄창 장착.\n\n인체공학 수치 20 이상, 수직/수평 반동의 합 400 이하, 무게 7.3kg 이하.", + "5b477f7686f7744d1b23c4d2 description": "[건스미스 - 파트 20(Gunsmith - Part 20)]\n이번 주문은 스나이퍼를 위한 거라네. 그가 MRE, 부싯돌, 배터리와 물이 들은 가방을 챙긴 걸로 보아 그가 한 주간 삼림(Woods) 어딘가에서 악당 사냥을 할 것 같이 보이더군. 지금은 내 은신처에 뒀지만 말이야. 아무튼, 이번에는 M1A가 필요하다고 했네.\n\nNightforce ATACR 7-35x56 조준경, Micro T-1 반사 조준경, Ultimak M8 마운트, Holosun LS321 전술 장치 장착.\n\n인체공학 수치 20 이상, 수직/수평 반동의 합 400 이하, 무게 7.3kg 이하.", "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "[건스미스 - 파트 20(Gunsmith - Part 20), 성공]\n소총은 준비됐나? 좋아. 내 생각엔 자네가 스나이퍼의 진짜 이름이 디마라는 걸 이미 알아차린 것 같은데 맞나? 내가 저번에 실수로 흠흠... 아무튼, 그에 대해선 다른 사람들에게 절대 말하면 안 된다네. 무슨 말인지 이해했을 거라 믿고 있겠네.", "5b47824386f7744d190d8dd1": "M1A를 요구 사항에 맞게 개조하기", @@ -18592,7 +18478,7 @@ "5b477f7686f7744d1b23c4d2 declinePlayerMessage": "", "5b477f7686f7744d1b23c4d2 completePlayerMessage": "", "5b47825886f77468074618d3 name": "건스미스 - 파트 22", - "5b47825886f77468074618d3 description": "[건스미스 - 파트 22 (Gunsmith - Part 22)]\n인간의 생명의 가치란 얼마인가 - 자네는 어떻게 생각하나? 내 생각에 그리 비싸지는 않은 것 같군. 하지만 나에게 있어서 더욱 놀라운 것은 바로 현대 미술 시장이라네. 저명한 예술가들의 작품의 가치는 매년 커지지. 확실히 그들은 재능이 있지만, 보면 볼수록 무엇이든지 예술이 될 수 있는 것만 같다네. Rothko의 작품이나, 잘못 설치된 소변기, 아니면 쓰레기 더미 같은 것들 말이야. 그러나 내 생각에 가장 놀라운 예술품은 바로 무기들이라네. 많은 박물관에서 찾을 수 있을 정도로 널리 알려진 근접 무기부터 시작해서 AK나 M4까지, 그 자체로 아름다운 예술품들이지. 그러나 무기는 쓰는 방법을 알고, 자신에 필요에 맞춰 개조할 수 있는 사람의 손에서 최고의 박물관들에 전시될만한 가치가 있는 유일무이하고 독창적인 진정한 예술작품으로 승화된다네. 나에게 그런 걸작을 하나 가져다주게. M4A1가 적당할 것 같군.\n\nREAP-IR 열화상 스코프, KAC QDSS NT-4 5.56x45 소음기 (FDE), AR-15 Alexander Arms MK10 소총 길이 총열덮개, 60발 탄창 장착.\n\n인체공학 수치 40 이상, 수직/수평 반동의 합 270 이하, 무게 5kg 이하.", + "5b47825886f77468074618d3 description": "[건스미스 - 파트 22(Gunsmith - Part 22)]\n인간의 생명의 가치란 얼마인가 - 자네는 어떻게 생각하나? 내 생각에 그리 비싸지는 않은 것 같군. 하지만 나에게 있어서 더욱 놀라운 것은 바로 현대 미술 시장이라네. 저명한 예술가들의 작품의 가치는 매년 커지지. 확실히 그들은 재능이 있지만, 보면 볼수록 무엇이든지 예술이 될 수 있는 것만 같다네. Rothko의 작품이나, 잘못 설치된 소변기, 아니면 쓰레기 더미 같은 것들 말이야. 그러나 내 생각에 가장 놀라운 예술품은 바로 무기들이라네. 많은 박물관에서 찾을 수 있을 정도로 널리 알려진 근접 무기부터 시작해서 AK나 M4까지, 그 자체로 아름다운 예술품들이지. 그러나 무기는 쓰는 방법을 알고, 자신에 필요에 맞춰 개조할 수 있는 사람의 손에서 최고의 박물관들에 전시될만한 가치가 있는 유일무이하고 독창적인 진정한 예술작품으로 승화된다네. 나에게 그런 걸작을 하나 가져다주게. M4A1가 적당할 것 같군.\n\nREAP-IR 열화상 스코프, KAC QDSS NT-4 5.56x45 소음기 (FDE), AR-15 Alexander Arms MK10 소총 길이 총열덮개, 60발 탄창 장착.\n\n인체공학 수치 40 이상, 수직/수평 반동의 합 250 이하, 무게 5kg 이하.", "5b47825886f77468074618d3 failMessageText": "", "5b47825886f77468074618d3 successMessageText": "[건스미스 - 파트 22(Gunsmith - Part 22), 성공]\n전시장에 넣고 싶을 정도로 훌륭하군! 정말 걸작이 탄생했어.", "5b4783ba86f7744d1c353185": "M4A1을 요구 사항에 맞게 개조하기", @@ -18659,9 +18545,9 @@ "5b478d0f86f7744d190d91b5 declinePlayerMessage": "", "5b478d0f86f7744d190d91b5 completePlayerMessage": "", "5b478eca86f7744642012254 name": "비타민 - 파트 1", - "5b478eca86f7744642012254 description": "[비타민 - 파트 1 (Vitamins - Part 1)]\n아아, 너로군. 한동안 안 보여서 죽은 줄만 알았는데, 마치 다이하드의 주인공 마냥 버젓이 다시 나타났군. 아무튼, 살아있으면 된 거지. 자, 들어봐. 사람들이 암시장에 새 물건들이 돌고 있다 하더군. 화려하게 생긴 화학 상자 안에 들어있던 거라는데, 마치 네 새끈하게 잘빠진 소음기처럼, 그런데 조금 더 스케일이 큰 거지. 그 안에 뭐 신종 마약이 들어있는지 비타민 B가 들어있는지, 알 방법이 없더라고. 그래서 우리가 그걸 찾아보자고. 내 감으로는 그 폴리킴에서 굴러 나온 그 파란 깡통들이 관련이 있는 거 같은데, 어디까지나 감일 뿐이지. 리조트에서도 그 통들을 본 적 있고, 그리고 내 똘마니 중 하나가 말하기를 인터체인지(Interchange)에 있는 EMERCOM에서도 하나 봤다고 하더군. 근데 그놈이 약에 취해 있었으니, 잘못 봤을지도 모르지. 자, 얘기가 너무 길어졌네. 나한테 그 통 몇 개만 가져와 봐. 그 안에 뭐가 들어있는지 알아낼 똑똑한 샌님들도 몇 명 대려다 놨으니까.", + "5b478eca86f7744642012254 description": "[Vitamins - Part 1]\n아아, 너로군. 한동안 안 보여서 죽은 줄만 알았는데, 마치 다이하드의 주인공 마냥 버젓이 다시 나타났군. 아무튼, 살아있으면 된 거지. 자, 들어봐. 사람들이 암시장에 새 물건들이 돌고 있다 하더군. 화려하게 생긴 화학 상자 안에 들어있던 거라는데, 마치 네 새끈하게 잘빠진 소음기처럼, 그런데 조금 더 스케일이 큰 거지. 그 안에 뭐 신종 마약이 들어있는지 비타민 B가 들어있는지, 알 방법이 없더라고. 그래서 우리가 그걸 찾아보자고. 내 감으로는 그 폴리킴에서 굴러 나온 그 파란 깡통들이 관련이 있는 거 같은데, 어디까지나 감일 뿐이지. 리조트에서도 그 통들을 본 적 있고, 그리고 내 똘마니 중 하나가 말하기를 인터체인지(Interchange)에 있는 EMERCOM에서도 하나 봤다고 하더군. 근데 그놈이 약에 취해 있었으니, 잘못 봤을지도 모르지. 자, 얘기가 너무 길어졌네. 나한테 그 통 몇 개만 가져와 봐. 그 안에 뭐가 들어있는지 알아낼 똑똑한 샌님들도 몇 명 대려다 놨으니까.", "5b478eca86f7744642012254 failMessageText": "", - "5b478eca86f7744642012254 successMessageText": "[비타민 - 파트 1 (Vitamins - Part 1), 성공]\n오 가져왔어? 끝내주는군! 이 모든 화학약품을 만지고도 손이 멀쩡하던가? 아무튼, 이제 범생이 놈들이 일할 차례네.", + "5b478eca86f7744642012254 successMessageText": "오 가져왔어? 끝내주는군! 이 모든 화학약품을 만지고도 손이 멀쩡하던가? 아무튼, 이제 범생이 놈들이 일할 차례네.", "5b478f6886f774464201225a": "해안선(Shoreline)에서 첫 번째 [화학 약품 보관함] 획득하기", "5b478f8886f7744d1b23c622": "첫 번째 화학 약품 보관함 건네주기", "5b4c826b86f7743cc87bcee4": "인터체인지(Interchange)에서 두 번째 [화학 약품 보관함] 획득하기", @@ -18674,9 +18560,9 @@ "5b478eca86f7744642012254 declinePlayerMessage": "", "5b478eca86f7744642012254 completePlayerMessage": "", "5b478ff486f7744d184ecbbf name": "비타민 - 파트 2", - "5b478ff486f7744d184ecbbf description": "[비타민 - 파트 2 (Vitamins - Part 2)]\n왔으면 빨리 들어와, 지금 문제가 생겼어. 네가 가져온 상자들 안에 있는 게 체리 콜라라도 되는 줄 알았는지, 내 부하 몇 명이 뜯어보려고 하다가 그걸 들이마시고 뿅 가버려서 이 똥통 같은 세상하고 하직하기 직전이야. 이건 존나 심각한 문제야. 게다가 난 아직도 이 거지 같은 물건이 무슨 용도인지를 모르겠다고! 아무튼, 난 보호 장비가 필요해. 뭐라 부르더라, 방똥면인가 뭔가 하는 거 있잖아, 그 주둥아리에 뒤집어씌워서 시체로 만들만한 물질들로부터 보호하는 거. 물론 그 방 뭐시기는 누군가가 직접 검증을 해봐야 하지만, 내가 그 위험을 감수할 수는 없으니, 대충 그걸 쓰고 다니는 멍청이들로부터 뺏어오라고. 타르코프에 이 난리가 터졌을 때, 스캐브들이 창고를 털어서 그것들을 왕창 챙긴 다음, 머저리처럼 그거를 쓰고 다니거든. 방탄이라도 되는 줄 아나 보지, 돌대가리들 같으니라고. 아 맞아! 그것들을 찾으면서, 채혈 세트들도 좀 같이 찾아봐. 저 들이마시고 뿅 간 놈들을 빨리 조치 하지 않으면, 진짜로 가버리게 생겼거든.", + "5b478ff486f7744d184ecbbf description": "[Vitamins - Part 2]\n왔으면 빨리 들어와, 지금 문제가 생겼어. 네가 가져온 상자들 안에 있는 게 체리 콜라라도 되는 줄 알았는지, 내 부하 몇 명이 뜯어보려고 하다가 그걸 들이마시고 뿅 가버려서 이 똥통 같은 세상하고 하직하기 직전이야. 이건 존나 심각한 문제야. 게다가 난 아직도 이 거지 같은 물건이 무슨 용도인지를 모르겠다고! 아무튼, 난 보호 장비가 필요해. 뭐라 부르더라, 방똥면인가 뭔가 하는 거 있잖아, 그 주둥아리에 뒤집어씌워서 시체로 만들만한 물질들로부터 보호하는 거. 물론 그 방 뭐시기는 누군가가 직접 검증을 해봐야 하지만, 내가 그 위험을 감수할 수는 없으니, 대충 그걸 쓰고 다니는 멍청이들로부터 뺏어오라고. 타르코프에 이 난리가 터졌을 때, 스캐브들이 창고를 털어서 그것들을 왕창 챙긴 다음, 머저리처럼 그거를 쓰고 다니거든. 방탄이라도 되는 줄 아나 보지, 돌대가리들 같으니라고. 아 맞아! 그것들을 찾으면서, 채혈 세트들도 좀 같이 찾아봐. 저 들이마시고 뿅 간 놈들을 빨리 조치 하지 않으면, 진짜로 가버리게 생겼거든.", "5b478ff486f7744d184ecbbf failMessageText": "", - "5b478ff486f7744d184ecbbf successMessageText": "[비타민 - 파트 2 (Vitamins - Part 2), 성공]\n좋아, 시작하자고! 내 똘마니들이 저 채혈팩 쪼가리에 들어있는 유전자 조각들로 회복되면 좋겠다만, 선택의 여지가 없군.", + "5b478ff486f7744d184ecbbf successMessageText": "좋아, 시작하자고! 내 똘마니들이 저 채혈팩 쪼가리에 들어있는 유전자 조각들로 회복되면 좋겠다만, 선택의 여지가 없군.", "5b47905886f7746807461fe2": "[2M 방독면] 건네주기", "5b4790a886f774563c7a489f": "[의료 채혈세트] 건네주기", "5b4f0b1f86f7746c9e27e9ea": "", @@ -18686,9 +18572,9 @@ "5b478ff486f7744d184ecbbf declinePlayerMessage": "", "5b478ff486f7744d184ecbbf completePlayerMessage": "", "5b47926a86f7747ccc057c15 name": "아는 것이 힘이다", - "5b47926a86f7747ccc057c15 description": "[아는 것이 힘이다 (Informed Means Armed)]\n여, 안녕! 밥은 먹었냐? 뭐 하나 말해줄게. 내가 이쪽 구역에 잘 정착해서 살고 있는데, 요즘 좀 이상한 기분이 든단 말이지. 내 말은, 당장 내일 여기서 무슨 일이 터져도 이상하지 않잖아? 됐다, 못 들은 걸로 하자. 내가 뭐 요즘 우울증이라도 걸린 것인지... 아무튼, 요점은 내 주변에서 무슨 일이 일어나는지 좀 더 잘 파악해야 할 필요성을 느꼈단 말이지. 내가 카메라를 숨길 만한 사각지대 몇 곳을 알려줄게. 이런 기계 쪽은 내가 잘 모르니, 내 부하들한테 자세한 설명은 들으라고. 카메라들은 메카닉한테서 살 수 있을 거야. 그 사람이 파는 걸 여러 번 봤거든. 당연하지만, 걔한테 무슨 용도 인지는 입도 뻥긋하지 마.", + "5b47926a86f7747ccc057c15 description": "[Informed Means Armed]\n여, 안녕! 밥은 먹었냐? 뭐 하나 말해줄게. 내가 이쪽 구역에 잘 정착해서 살고 있는데, 요즘 좀 이상한 기분이 든단 말이지. 내 말은, 당장 내일 여기서 무슨 일이 터져도 이상하지 않잖아? 됐다, 못 들은 걸로 하자. 내가 뭐 요즘 우울증이라도 걸린 것인지... 아무튼, 요점은 내 주변에서 무슨 일이 일어나는지 좀 더 잘 파악해야 할 필요성을 느꼈단 말이지. 내가 카메라를 숨길 만한 사각지대 몇 곳을 알려줄게. 이런 기계 쪽은 내가 잘 모르니, 내 부하들한테 자세한 설명은 들으라고. 카메라들은 메카닉한테서 살 수 있을 거야. 그 사람이 파는 걸 여러 번 봤거든. 당연하지만, 걔한테 무슨 용도 인지는 입도 뻥긋하지 마.", "5b47926a86f7747ccc057c15 failMessageText": "", - "5b47926a86f7747ccc057c15 successMessageText": "[아는 것이 힘이다 (Informed Means Armed), 성공]\n이 기술들은 분명히 나 같은 사람들이 쓰라고 만든 게 아닐 거야. 화질도 거지 같고, 신호는 구더기 같지만, 그래도 카메라를 설치해 준 덕분에 몇몇 탐스러운 '뚠뚠이'들을 찾았다고. 좋아, 큰 도움이 됐어!", + "5b47926a86f7747ccc057c15 successMessageText": "이 기술들은 분명히 나 같은 사람들이 쓰라고 만든 게 아닐 거야. 화질도 거지 같고, 신호는 구더기 같지만, 그래도 카메라를 설치해 준 덕분에 몇몇 탐스러운 '뚠뚠이'들을 찾았다고. 좋아, 큰 도움이 됐어!", "5b47932586f7747cc908b5dd": "삼림(Woods)에서 제재소 부두를 감시하기 위한 [WI-FI 카메라] 설치하기", "5b47936686f77427fd044025": "세관(Customs)에서 항구로 가는 길(Road to the port)을 감시하기 위한 [WI-FI 카메라] 설치하기", "5b47938086f7747ccc057c22": "인터체인지(Interchange)에 있는 Kiba Arms 상점의 입구를 감시하기 위한 [WI-FI 카메라] 설치하기", @@ -18700,7 +18586,7 @@ "5b4794cb86f774598100d5d4 name": "무기 대여 - 파트 1", "5b4794cb86f774598100d5d4 description": "[Lend lease - Part 1]\n야야, 빨리 와봐, 큰 건수 하나 물었다고! 이쪽 근방에 외국 드론 몇 대가 추락했다는 건 들었지? 맘씨 좋은 양반들이 나보고 거기서 부품 몇 개를 수거해 달라 하더라고, 제어기였나 뭐였나. 난 그게 뭔지도 모르고, 솔직히 말하면 좆도 신경 쓰지 않아. 내가 유일하게 아는 건 그걸 구해오기만 하면 그 사람들이 빳빳한 지폐 다발로 보상해 준다는 것과, 그 사람들이 우리가 그걸 뜯어서 기술을 캐 가는 것 따위는 원하지 않는다는 것뿐이지. 그 드론들이 아마 추락하며 이미 다 조각났을 것 같지만, 조사해 볼 만한 가치는 있지. 명심해, 지휘부랑 연락이 끊기기 전에는, 그쪽은 USEC들이 러시아 기체들에서 자이로 센서들을 수거해 오라고 명령을 받던 구역이야. 즉 네가 수색해야 하는 곳은 예전에 그놈들 앞마당이었던 곳이지. 자본주의자 새끼들이랑 일하는 건 영 아니꼽지만, 뭐 애국심이 밥 먹여 주나? 아무튼, 내가 알기로는 USEC들이 자주 보이던 곳이 해안선(Shoreline) 쪽이랑 삼림(Woods)인데, 이곳을 먼저 확인해 보는 게 좋을 거야.", "5b4794cb86f774598100d5d4 failMessageText": "", - "5b4794cb86f774598100d5d4 successMessageText": "[무기 대여 - 파트 1 (Lend-Lease - Part 1)]\n마침내 가져왔군! 좋아, 나도 네가 실망하지 않을 만큼 보상해 줘야겠군. 자동차 주변에 USEC들은 안 보이던가? 뭐, 상관없겠지.", + "5b4794cb86f774598100d5d4 successMessageText": "마침내 가져왔군! 좋아, 나도 네가 실망하지 않을 만큼 보상해 줘야겠군. 자동차 주변에 USEC들은 안 보이던가? 뭐, 상관없겠지.", "5b47952c86f774598100d5dc": "삼림(Woods)에서 첫 번째 [모터 컨트롤러] 획득하기", "5b47958e86f774598100d5e2": "삼림(Woods)에서 첫 번째 [단일 축 광섬유 자이로스코프] 획득하기", "5b4795a586f774587a39506d": "첫 번째 [단일 축 광섬유 자이로스코프] 건네주기", @@ -18717,9 +18603,9 @@ "5b4794cb86f774598100d5d4 declinePlayerMessage": "", "5b4794cb86f774598100d5d4 completePlayerMessage": "", "5b4795fb86f7745876267770 name": "떡밥 뿌리기", - "5b4795fb86f7745876267770 description": "[떡밥 뿌리기 (Chumming)]\n일거리 하나 하고 싶으면 빨리 들어와! 네가 심어놨던 그 카메라들 말이야, 드디어 밥값을 했다고. 스캐브 놈들과는 우호적인 관계를 유지하면서, 목표로 했던 놈은 찾았으니까.\n\n음, 내 생각에는 가장 평화롭게 끝내는 방법은 그놈들한테 먹잇감을 좀 주는 게 좋을 거 같아. 왜냐면 최근에 그녀석들이 완전히 미쳐버린 것 같거든. 그 버러지 같은 놈들이 아무나 막 쏴 재끼고 다니니까 내 고객들마저 겁먹고 떨어져 나더라고, 썅. 그런데 웃긴 게 뭐냐면, 그 도둑질이나 하고 다니는 버러지들이 다 다른 갱단 소속이라, 다 따로 접근해야 한다는 점이지. 그래서 일단 금목걸이를 3개씩 쥐여 주고, 얘기를 좀 해보려고. 그런데 목걸이가 부족하더라고. 그래서 일 처리가 깔끔한 너를 불렀지. 너라면 아무렇지 않게 구해다 줄 수 있잖아? 내가 어디다가 놓을지 알려 줄게. 그리고 인터체인지(Interchange) 쪽에 PMC들이 싸돌아다니지 못하게 해, 왜냐하면 목표물들이 금목걸이를 찾기도 전에 뒤져버리면 곤란하잖아.", + "5b4795fb86f7745876267770 description": "[Chumming]\n일거리 하나 하고 싶으면 빨리 들어와! 네가 심어놨던 그 카메라들 말이야, 드디어 밥값을 했다고. 스캐브 놈들과는 우호적인 관계를 유지하면서, 목표로 했던 놈은 찾았으니까. 음, 내 생각에는 가장 평화롭게 끝내는 방법은 그놈들한테 먹잇감을 좀 주는 게 좋을 거 같아. 지금은 그 쓰레기들이 미쳐 날뛰고 있어. 그 버러지 같은 놈들이 아무나 막 쏴 재끼고 다니니까 내 고객들마저 겁먹고 떨어져 나더라고, 썅. 그런데 웃긴 게 뭐냐면, 그 도둑질이나 하고 다니는 버러지들이 다 다른 갱단 소속이라, 다 따로 접근해야 한다는 점이지. 그래서 일단 금목걸이를 3개씩 쥐여 주고, 얘기를 좀 해보려고. 그런데 목걸이가 부족하더라고. 그래서 일 처리가 깔끔한 너를 불렀지. 너라면 아무렇지 않게 구해다 줄 수 있잖아? 내가 어디다가 놓을지 알려 줄게. 그리고 인터체인지(Interchange) 쪽에 PMC들이 싸돌아다니지 못하게 해, 왜냐하면 목표물들이 금목걸이를 찾기도 전에 뒤져버리면 곤란하잖아.", "5b4795fb86f7745876267770 failMessageText": "", - "5b4795fb86f7745876267770 successMessageText": "[떡밥 뿌리기 (Chumming)]\n스캐브들이 좀 얌전해졌어. 갑자기 놀부가 빙의해서 더 내놓으라고 하지만 않으면 좋겠네. 하지만 그래도 내 손실이지, 네 손실이 아니잖아? 잘했어!", + "5b4795fb86f7745876267770 successMessageText": "스캐브들이 좀 얌전해졌어. 갑자기 놀부가 빙의해서 더 내놓으라고 하지만 않으면 좋겠네. 하지만 그래도 내 손실이지, 네 손실이 아니잖아? 잘했어!", "5b47968e86f7745877352c28": "인터체인지(Interchange)의 Generic 상점, BTR-82A 장갑차 옆에 있는 침대 매트리스 아래에 [금목걸이] 3개 놓기", "5b4796c086f7745877352c2c": "세관(Customs) 기숙사 3층에 있는 전자레인지 안에 [금목걸이] 3개 놓기", "5b47971086f774587877ad34": "삼림(Woods) 제재소에서 나란히 놓여있는 3개의 숙소 중, 중간 숙소에 [금목걸이] 3개 놓기", @@ -18807,9 +18693,9 @@ "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", "5bc4893c86f774626f5ebf3e completePlayerMessage": "", "5c0bbaa886f7746941031d82 name": "개소리", - "5c0bbaa886f7746941031d82 description": "[개소리 (Bullshit)]\n그래, 이번일 때문에 널 불렀어. 내 부하들 속에서 끄나풀 한 마리를 찾았거든. 이 개새끼가 내 쪽의 보급망과 사업 아이템들을 몽땅 유출하고 있더라고. 그래서 난 이게 무슨 씨발 같은 일인지 알아봤지.\n\n내 부하중 하나가 뒷조사한 바로는 그 새끼가 세관(Customs) 기숙사 쪽에 자리 잡은 놈들과 한패라 하더군. 내 계획은 바로 걔네한테 개소리를 넘기는 거지, 내 \"다음 상품\"에 대한 개소리를 말이야. 그리고 그 새끼들이 보기 좋게 낚이는 순간, 내 부하들이 기습해서 다 닦아내는 거지. 중요한 건 이 정보를 슬쩍 흘리러 갈 때, 등신마냥 \"내가 첩자요\" 하고 나불대지 말고 그놈들로 위장해서 조용히 놓고 와야 해, 알겠지? 다리 근처에 불탄 빨간 자동차에 낚시용 고급 정보를 듬뿍 담아둔 플래시 드라이브가 하나 있을 거야. 얼간이 같은 부하 놈들이 쫄아서 그쪽에 놓고 냅다 줄행랑을 쳤거든. 그걸 주워다가, 그 새끼들이 낚이기 좋게 SV-98과 롤러 시계 한 개를 함께 숨겨둬. 그리고 스캐브들은 건들지 말고, 일이 끝나면 조용히 빠져나와.", - "5c0bbaa886f7746941031d82 failMessageText": "[개소리 (Bullshit), 실패]\n이런 씨발, 목 위에 달아둔 건 장식이야? 도대체 왜 총을 쏴 재낀 거야? 분명 그 새끼들이 우리를 기숙사 근처에 얼씬도 못하게 할 거야. 꽤 오랜 시간 동안 경계병력을 배치해둘게 분명해... 대체 씨발 이제 어떻게 거짓 정보를 흘릴 거냐고? 무슨 소리야? 무슨 빌어먹을 \"송신기\"를 말하는거야? 당장 꺼져!", - "5c0bbaa886f7746941031d82 successMessageText": "[개소리 (Bullshit), 성공]\n전부 끝내주게 준비된 것 같군! 내 친구들은 이미 잠복 중이고, 그 약탈꾼 놈들에게는 최고이자 최후의 선물이 될거야. 도와줘서 고마워.", + "5c0bbaa886f7746941031d82 description": "[Bullshit]\n그래, 이번일 때문에 널 불렀어. 내 부하들 속에서 끄나풀 한 마리를 찾았거든. 이 개새끼가 내 쪽의 보급망과 사업 아이템들을 몽땅 유출하고 있더라고. 그래서 난 이게 무슨 씨발 같은 일인지 알아봤지. 내 부하중 하나가 뒷조사한 바로는 그 새끼가 세관(Customs) 기숙사 쪽에 자리 잡은 놈들과 한패라 하더군. 내 계획은 바로 걔네한테 개소리를 넘기는 거지, 내 \"다음 상품\"에 대한 개소리를 말이야. 그리고 그 새끼들이 보기 좋게 낚이는 순간, 내 부하들이 기습해서 다 닦아내는 거지. 중요한 건 이 정보를 슬쩍 흘리러 갈 때, 등신마냥 \"내가 첩자요\" 하고 나불대지 말고 그놈들로 위장해서 조용히 놓고 와야 해, 알겠지? 다리 근처에 불탄 빨간 자동차에 낚시용 고급 정보를 듬뿍 담아둔 플래시 드라이브가 하나 있을 거야. 얼간이 같은 부하 놈들이 쫄아서 그쪽에 놓고 냅다 줄행랑을 쳤거든. 그걸 주워다가, 그 새끼들이 낚이기 좋게 SV-98과 롤러 시계를 함께 숨겨둬. 그리고 스캐브들은 건들지 말고, 일이 끝나면 조용히 빠져나와.", + "5c0bbaa886f7746941031d82 failMessageText": "이런 씨발, 목 위에 달아둔 건 장식이야? 도대체 왜 총을 쏴 재낀 거야? 분명 그 새끼들이 우리를 기숙사 근처에 얼씬도 못하게 할 거야. 꽤 오랜 시간 동안 경계병력을 배치해둘게 분명해... 대체 씨발 이제 어떻게 거짓 정보를 흘릴 거냐고, 어?", + "5c0bbaa886f7746941031d82 successMessageText": "전부 끝내주게 준비된 것 같군! 내 친구들은 이미 잠복 중이고, 그 약탈꾼 놈들에게는 최고이자 최후의 선물이 될거야. 도와줘서 고마워.", "5c0bc32986f7743e4d1002d2": "기숙사 3층 중앙 계단 맞은편 쓰레기 더미에 [SV-98 저격소총] 숨겨두기", "5c0bc43e86f7744794440ba5": "기숙사 3층 중앙 계단 맞은편 쓰레기 더미에 [롤러 서브마리너 골드 손목시계] 숨겨두기", "5c12320586f77437e44bcb15": "기숙사 3층 중앙 계단 맞은편 쓰레기 더미에 [가짜 정보가 들어있는 USB] 숨겨두기", @@ -18821,9 +18707,9 @@ "5c0bbaa886f7746941031d82 declinePlayerMessage": "", "5c0bbaa886f7746941031d82 completePlayerMessage": "", "5c0bc91486f7746ab41857a2 name": "소음기 사용법", - "5c0bc91486f7746ab41857a2 description": "[소음기 사용법 (Silent Caliber)]\n어이, 안녕하신가? 그 있잖아, 가끔은 누군가를 조용히 효율적으로 쏴 재껴야 할 때가 있잖아, 특히 CQC 상황에서. 난 그럴 때마다 12 게이지를 항상 애용하지. 난 도대체 왜 BEAR랑 USEC 놈들이 이걸 안 쓰는 것인지 모르겠네. 완전 새끈하게 잘빠진 놈인데 말이야. 너도 그렇게 생각하지? 소음기 하나 달고 가까이 가서 목표물에 한방 맥이면! 크으! 옆방에 있던 놈은 무슨 일이 일어난 것인지도 모를걸? 엄청나게 은밀하고 강력하게 한방 꽂아 넣는다고.\n\n내가 네 \"재능\"을 어디다 활용해야 잘 활용했다 칭찬받을지 고민할 동안, 넌 이 무기를 마스터하고 있어봐.", + "5c0bc91486f7746ab41857a2 description": "[Silent Caliber]\n어이, 안녕하신가? 그 있잖아, 가끔은 누군가를 조용히 효율적으로 쏴 재껴야 할 때가 있잖아, 특히 CQC 상황에서. 난 그럴 때마다 12 게이지를 항상 애용하지. 난 도대체 왜 BEAR랑 USEC 놈들이 이걸 안 쓰는 것인지 모르겠네. 완전 새끈하게 잘빠진 놈인데 말이야. 너도 그렇게 생각하지? 소음기 하나 달고 가까이 가서 목표물에 한방 맥이면! 크으! 옆방에 있던 놈은 무슨 일이 일어난 것인지도 모를걸? 엄청나게 은밀하고 강력하게 한방 꽂아 넣는다고. 내가 네 \"재능\"을 어디다 활용해야 잘 활용했다 칭찬받을지 고민할 동안, 넌 이 무기를 마스터하고 있어봐.", "5c0bc91486f7746ab41857a2 failMessageText": "", - "5c0bc91486f7746ab41857a2 successMessageText": "[소음기 사용법 (Silent Caliber), 성공]\n정말 잘해줬어! 진심으로 존경스럽군! 재밌는 일거리가 생긴다면, 널 최우선으로 불러주지.", + "5c0bc91486f7746ab41857a2 successMessageText": "정말 잘해줬어! 진심으로 존경스럽군! 재밌는 일거리가 생긴다면, 널 최우선으로 불러주지.", "5c0bc95086f7746e784f39ec": "소음기가 장착된 12게이지 산탄총을 사용하여 스캐브 사살하기", "5c0bcc9c86f7746fe16dbba9": "소음기가 장착된 12게이지 산탄총을 사용하여 PMC 사살하기", "5c1ea18b86f77461d75caa21": "", @@ -18852,9 +18738,9 @@ "5c0bd94186f7747a727f09b2 declinePlayerMessage": "", "5c0bd94186f7747a727f09b2 completePlayerMessage": "", "5c0bdb5286f774166e38eed4 name": "부싯돌", - "5c0bdb5286f774166e38eed4 description": "[부싯돌 (Flint)]\n잠깐 시간 괜찮아? 너도 보다시피 너의 동료 PMC들은 참 힘든 시간을 보내고 있는 거 같구먼, 약한 놈들은 살아남기 힘들지. 하나 더 말해주자면, 사실 강한 놈들도 진짜 좆같은 상황에 빠지면 파리처럼 죽어나가지. 공황 상태에 빠지거나, 아니면 손발이 막 벌벌 떨리거나, 알게 뭐야. 그 꼬락서니면 결과는 뻔하지. 내가 너랑 같이 일하고 있긴 하지만, 네 뒷바라지까지 하게 만들지 말라고.", + "5c0bdb5286f774166e38eed4 description": "[Flint]\n잠깐 시간 괜찮아? 너도 보다시피 너의 동료 PMC들은 참 힘든 시간을 보내고 있는 거 같구먼, 약한 놈들은 살아남기 힘들지. 하나 더 말해주자면, 사실 강한 놈들도 진짜 좆같은 상황에 빠지면 파리처럼 죽어나가지. 공황 상태에 빠지거나, 아니면 손발이 막 벌벌 떨리거나, 알게 뭐야. 그 꼬락서니면 결과는 뻔하지. 내가 너랑 같이 일하고 있긴 하지만, 네 뒷바라지까지 하게 만들지 말라고.", "5c0bdb5286f774166e38eed4 failMessageText": "", - "5c0bdb5286f774166e38eed4 successMessageText": "[부싯돌 (Flint)]\n바로 그거야! 이제 어떠한 거지 같은 상황이 오더라도 바지에 오줌을 지리진 않겠군.", + "5c0bdb5286f774166e38eed4 successMessageText": "바로 그거야! 이제 어떠한 거지 같은 상황이 오더라도 바지에 오줌을 지리진 않겠군.", "5c0bdbb586f774166e38eed5": "[스트레스 저항력] 스킬 레벨 올리기", "5c1faac086f7740ebd348c76": "", "5c1faac986f77410894b63f5": "", @@ -18862,31 +18748,30 @@ "5c0bdb5286f774166e38eed4 declinePlayerMessage": "", "5c0bdb5286f774166e38eed4 completePlayerMessage": "", "5c0bde0986f77479cf22c2f8 name": "천국에서 태어난 저격수", - "5c0bde0986f77479cf22c2f8 description": "[천국에서 태어난 저격수 (A Shooter Born in Heaven)]\n전문가와 아마추어의 차이점이 뭔지 아나? 업무에 적절한 방식으로 접근하는 능력일세. 예를 들면, 일반적이지 않은 방법으로 능력 있는 전사들을 처치하는 것 같은... 무기와 부품을 고르는 것뿐만 아니라 다른 요소들도 중요하지. 그래서, 디마와 난 자네가 정말 전문가인지 확인하고 싶다네.", + "5c0bde0986f77479cf22c2f8 description": "[천국에서 태어난 저격수(A Shooter Born in Heaven)]\n전문가와 아마추어의 차이점이 뭔지 아나? 업무에 적절한 방식으로 접근하는 능력일세. 예를 들면, 엄청난 거리에서, 일반적이지 않은 방법으로 능력 있는 전사들을 처치하는 것 같은... 무기와 부품을 고르는 것뿐만 아니라 다른 요소들도 중요하지. 그래서, 디마와 난 자네가 정말 전문가인지 확인하고 싶다네.", "5c0bde0986f77479cf22c2f8 failMessageText": "", "5c0bde0986f77479cf22c2f8 successMessageText": "[천국에서 태어난 저격수(A Shooter Born in Heaven), 성공]\n인정하지, 정말 놀랐네. 처음 일을 맡길 때부터 똑똑하다고 생각은 했었는데, 역시였군.", - "5c0bdf2c86f7746f016734a8": "삼림(Woods)에서 볼트액션 소총을 사용하여 헤드샷으로 PMC 사살하기", - "5c137b8886f7747ae3220ff4": "리저브(Reserve)에서 볼트액션 소총을 사용하여 헤드샷으로 PMC 사살하기", - "5c137ef386f7747ae10a821e": "해안선(Shoreline)에서 볼트액션 소총을 사용하여 헤드샷으로 PMC 사살하기", - "5c137f5286f7747ae267d8a3": "세관(Customs)에서 볼트액션 소총을 사용하여 헤드샷으로 PMC 사살하기", + "5c0bdf2c86f7746f016734a8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Woods", + "5c137b8886f7747ae3220ff4": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Reserve", + "5c137ef386f7747ae10a821e": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Shoreline", + "5c137f5286f7747ae267d8a3": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Customs", "5c20007986f7743c7b263515": "", "5c20009b86f7742b3c0a8fd9": "", - "629f10b114061f3074380298": "등대(Lighthouse)에서 볼트액션 소총을 사용하여 헤드샷으로 PMC 사살하기", - "63aec6f256503c322a190374": "타르코프 시내(Streets of Tarkov)에서 볼트액션 소총을 사용하여 헤드샷으로 PMC 사살하기", - "64b694c8a857ea477002a408": "인터체인지(Interchange)에서 볼트액션 소총을 사용하여 헤드샷으로 PMC 사살하기", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", + "629f10b114061f3074380298": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Lighthouse ", + "63aec6f256503c322a190374": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Streets of Tarkov", + "64b694c8a857ea477002a408": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Interchange", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", "5c0be13186f7746f016734aa name": "사이코 저격수", "5c0be13186f7746f016734aa description": "[사이코 저격수(Psycho Sniper)]\n잘 지냈나? 전해 듣기로는 자네가 저격수가 되기로 마음먹었다던데. 저격수로서 일하는 데에는 끈기와 인내심, 그리고 목표 의식을 필요로 한다네. 하지만 다른 중요한 요소들 또한 많이 존재하지. 한 번은 디마가 나에게 뭐라고 한지 알고 있나? \"아무나 총을 쏠 수는 있지만, 극히 일부만이 진짜 저격수가 된다\"라고 했다네.", - "5c0be13186f7746f016734aa failMessageText": "[사이코 저격수 (Psycho Sniper)]\n숙련된 저격수는 그렇게 스스로 포기하지 않아. 호흡을 잘 조절해서 다시 시도해보게.", + "5c0be13186f7746f016734aa failMessageText": "An experienced sniper will not give himself away like that. Catch your breath and try again.", "5c0be13186f7746f016734aa successMessageText": "[사이코 저격수(Psycho Sniper), 성공]\n솔직히 말해서, 자네가 성공할 거라고 확신하지 못했네. 자네는 확실히 평범한 사람들과는 다른 것 같아.", - "5c0be2b486f7747bcb347d58": "[볼트액션 소총] 스킬 레벨 올리기", + "5c0be2b486f7747bcb347d58": "[저격소총] 스킬 레벨 올리기", "5c1fb5f086f7744a184fb3c5": "", "5c1fb5f986f7744a1929a527": "", - "64b67c6358b5637e2d71a655": "볼트액션 소총을 사용하여 죽지 않고 PMC 사살하기", - "64b67fcd3e349c7dbd06bd16": "퀘스트가 진행되는 도중에 죽거나 레이드에서 나가면 안됩니다 (상태: 사망(KIA), 탈주(Left the Action), 실종(MIA))", + "64b67c6358b5637e2d71a655": "Eliminate PMC operatives without dying while using a bolt-action rifle", + "64b67fcd3e349c7dbd06bd16": "You must not die or leave the raid while the task is active (Status: KIA, Left the Action, MIA)", "5c0be13186f7746f016734aa acceptPlayerMessage": "", "5c0be13186f7746f016734aa declinePlayerMessage": "", "5c0be13186f7746f016734aa completePlayerMessage": "", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Streets of Tarkov", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "리저브(Reserve)에서 \"생존(Survived)\" 상태로 탈출하기", "629f08e7d285f377953b2af1": "등대(Lighthouse)에서 \"생존(Survived)\" 상태로 탈출하기", "63aec66556503c322a190372": "Survive and extract from Streets of Tarkov with the \"Survived\" exit status", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19035,9 +18917,9 @@ "5c1141f386f77430ff393792 declinePlayerMessage": "", "5c1141f386f77430ff393792 completePlayerMessage": "", "5c1234c286f77406fa13baeb name": "준비작업", - "5c1234c286f77406fa13baeb description": "[준비작업 (Setup)]\n거짓 정보가 보기 좋게 먹혔군! 그들은 우리 거래를 습격하려다가, 오히려 걔네가 뒤통수를 얻어맞았지. 낄낄. 그런데 이제 그 벌레들이 우리 쪽으로 막 쳐들어오려 하더라고. 그 갱단 놈들은 옷도 깔맞춤 했더라고, 우샨카에, 스캐브 조끼에, MP 산탄총으로 말이야. 무슨 어중이떠중이 피에로 집단도 아니고, 안 그래? 그러니, 그걸 안 써먹을 이유가 뭐겠어? 너도 그들인 양 위장을 하고 (스캐브 조끼, 우샨카, MP 시리즈 산탄총) PMC들을 족치고 다녀봐. USEC 나 BEAR 어느 쪽을 족쳐도 상관없어. 그 PMC들이 빡돌아서 걔네를 족쳐버린다면, 우리에겐 어부지리지.", + "5c1234c286f77406fa13baeb description": "[Setup]\n거짓 정보가 보기 좋게 먹혔군! 그들은 우리 거래를 습격하려다가, 오히려 걔네가 뒤통수를 얻어맞았지. 낄낄. 그런데 이제 그 벌레들이 우리 쪽으로 막 쳐들어오려 하더라고. 그 갱단 놈들은 옷도 깔맞춤 했더라고, 우샨카에, 스캐브 조끼에, MP 산탄총으로 말이야. 무슨 어중이떠중이 피에로 집단도 아니고, 안 그래? 그러니, 그걸 안 써먹을 이유가 뭐겠어? 너도 그들인 양 위장을 하고 (스캐브 조끼, 우샨카, MP 시리즈 산탄총) PMC들을 족치고 다녀봐. USEC 나 BEAR 어느 쪽을 족쳐도 상관없어. 그 PMC들이 빡돌아서 걔네를 족쳐버린다면, 우리에겐 어부지리지.", "5c1234c286f77406fa13baeb failMessageText": "", - "5c1234c286f77406fa13baeb successMessageText": "[준비작업 (Setup), 성공]\n내 부하들이 말하길, 세관(Customs)에서 3차 세계대전이 벌어지고 있다더군! BEAR랑 USEC들이 스캐브들을 보이는 족족 도축해버리고 있어! 아주 훌륭한 작품이야. 여기 약속했던 보상 받아가.", + "5c1234c286f77406fa13baeb successMessageText": "내 부하들이 말하길, 세관(Customs)에서 3차 세계대전이 벌어지고 있다더군! BEAR랑 USEC들이 스캐브들을 보이는 족족 도축해버리고 있어! 아주 훌륭한 작품이야. 여기 약속했던 보상 받아가.", "5c1fa9c986f7740de474cb3d": "세관(Customs)에서 요구 사항에 맞게 장비를 착용하고 PMC 사살하기", "5c1faa0d86f77410894b63ef": "", "5c1faa1986f7740ebd348c71": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "테라피스트와의 우호도 4레벨 달성하기", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -19074,9 +18955,9 @@ "5c139eb686f7747878361a6f declinePlayerMessage": "", "5c139eb686f7747878361a6f completePlayerMessage": "", "5c51aac186f77432ea65c552 name": "수집가", - "5c51aac186f77432ea65c552 description": "[수집가 (Collector)]\n아, 너로군. 동네에 소문난 말썽꾸러기. 그래, 난 너에 대해서 잘 알고 있지. 그리고 한 가지 배워 두는 게 좋을 거야. 너만이 유일한 사람일 거라 착각하지 마. 세상에는 너 말고도 사람들이 많고, 어쩌면 너보다 훨씬 실력 있을지도 모르지. 그들은 어디든 돌아다니고, 자신들의 거래만을 신경 쓰고, 몇몇 물건들을 남기고 가지. 그리고 중요한 점은, 내가 그 물건들을 원한다는 거지. 찾기 힘들겠지만, 찾아만 온다면 만족스럽게 보상해 주지. 단, 모든 물건은 네가 직접 레이드에서 찾은 물건이어야 해. 다른 상인들에게서 구하지 않은 걸로 말이야. 걱정 마, 난 사람들이 거짓말을 하고 있는 건지 아닌지 알 수 있어.", + "5c51aac186f77432ea65c552 description": "[Collector]\n아, 너로군. 동네에 소문난 말썽꾸러기. 그래, 난 너에 대해서 잘 알고 있지. 그리고 한 가지 배워 두는 게 좋을 거야. 너만이 유일한 사람일 거라 착각하지 마. 세상에는 너 말고도 사람들이 많고, 어쩌면 너보다 훨씬 실력 있을지도 모르지. 그들은 어디든 돌아다니고, 자신들의 거래만을 신경 쓰고, 몇몇 물건들을 남기고 가지. 그리고 중요한 점은, 내가 그 물건들을 원한다는 거지. 찾기 힘들겠지만, 찾아만 온다면 만족스럽게 보상해 주지. 단, 모든 물건은 네가 직접 레이드에서 찾은 물건이어야 해. 다른 상인들에게서 구하지 않은 걸로 말이야. 걱정 마, 난 사람들이 거짓말을 하고 있는 건지 아닌지 알 수 있어.", "5c51aac186f77432ea65c552 failMessageText": "", - "5c51aac186f77432ea65c552 successMessageText": "[수집가 (Collector), 성공]\n다 찾아왔나? 좋아. 정말로 너 자신이 쓸모 있다는 걸 증명했군. 약속한 대로, 보상을 가져가.", + "5c51aac186f77432ea65c552 successMessageText": "다 찾아왔나? 좋아. 정말로 너 자신이 쓸모 있다는 걸 증명했군. 약속한 대로, 보상을 가져가.", "5c51aea486f774423e5e36e3": "", "5c51aebf86f774423b4767d2": "", "5c51aee886f774423d3f9072": "", @@ -19207,7 +19088,7 @@ "62a6ffaa7230237f257cac2c": "레이드에서 발견한 [기자 출입증 (NoiceGuy)] 건네주기", "62a6ffb4a9a0ea77981b57d5": "레이드에서 발견한 [Axel 앵무새 조각상] 건네주기", "62a6ffbcec21e50cad3b6708": "레이드에서 발견한 [BEAR Buddy 인형] 건네주기", - "65b10c6a8511b7ef8694e060": "레이드에서 발견한 [Glorious E 경량 방탄 마스크] 건네주기", + "65b10c6a8511b7ef8694e060": "Hand over the found in raid item: Glorious E lightweight armored mask", "5c51aac186f77432ea65c552 acceptPlayerMessage": "", "5c51aac186f77432ea65c552 declinePlayerMessage": "", "5c51aac186f77432ea65c552 completePlayerMessage": "", @@ -19301,9 +19182,9 @@ "5d25d2c186f77443e35162e5 declinePlayerMessage": "", "5d25d2c186f77443e35162e5 completePlayerMessage": "", "5d25dae186f77443e55d2f78 name": "생존가의 길 - 자토이치", - "5d25dae186f77443e55d2f78 description": "[생존가의 길 - 자토이치 (The survivalist path - Zatoichi)]\n내가 하나 알려주겠네. 만약 상대의 눈이 멀었다면, 그가 자네에게 할 수 있는 것은 아무것도 없다네. 그가 얼마나 좋은 무장을 갖췄던지 말일세. 이건 자네에게도 똑같이 적용되네. 오직 숙련된 기술과 자신감만이 이런 상황을 헤쳐나가게 해주지. 자넨 어떤가? 앞이 보이지 않는 상황에서도 침착함을 유지할 수 있겠나?", + "5d25dae186f77443e55d2f78 description": "[The survivalist path - Zatoichi]\n내가 하나 알려주겠네. 만약 상대의 눈이 멀었다면, 그가 자네에게 할 수 있는 것은 아무것도 없다네. 그가 얼마나 좋은 무장을 갖췄던지 말일세. 이건 자네에게도 똑같이 적용되네. 오직 숙련된 기술과 자신감만이 이런 상황을 헤쳐나가게 해주지. 자넨 어떤가? 앞이 보이지 않는 상황에서도 침착함을 유지할 수 있겠나?", "5d25dae186f77443e55d2f78 failMessageText": "", - "5d25dae186f77443e55d2f78 successMessageText": "[생존가의 길 - 자토이치 (The survivalist path - Zatoichi), 성공]\n살아남았군? 누구도 예측하지 못했을 걸세.", + "5d25dae186f77443e55d2f78 successMessageText": "살아남았군? 누구도 예측하지 못했을 걸세.", "5d25dc2286f77443e7549028": "섬광 수류탄에 의해 눈이 먼 상황에서 PMC 사살하기", "5d76332c86f774454e50d063": "", "5d77cdc286f7742fa65b6603": "", @@ -19331,9 +19212,9 @@ "5d25e2a986f77409dd5cdf2a declinePlayerMessage": "", "5d25e2a986f77409dd5cdf2a completePlayerMessage": "", "5d25e2b486f77409de05bba0 name": "사냥꾼의 길 - 구역 확보", - "5d25e2b486f77409de05bba0 description": "[사냥꾼의 길 - 구역 확보 (The Huntsman Path - Secured Perimeter)]\n이제 타르코프 시에서 쓰레기들을 청소할 시간이네. 자네와 나는 긴 시간을 함께 보내왔지만, 아직 배워야 할 것이 많네. 우선, 화학 공장 구역부터 시작하세. 그곳에서는 유용한 물건들이 많이 생산되곤 했었지. 나는 테라그룹이 인수하기 전 반년간 그곳에서 보안 책임자로 근무했었네. 하지만 테라그룹이 공장을 인수한 뒤로, 무언가 뒤가 구린 일들이 일어나기 시작했지. 그들은 그동안 생산하던 것들을 중단하고, 무언가 훨씬 어두운 것들을 생산하기 시작했지. 그리고 무정부 시대가 오면서, 그들이 떠나고, 약탈자들이 공장(Factory)을 집어삼키기 시작했지. 난 그곳에서 일어난 모든 것을 다 기억하고 있지. 간단히 말하자면, 그 약탈자 놈들에게 교훈을 새겨주고 오게나. 그리고 사무 구역에는 쓸만한 것들이 남아 있을 것이네. 그러니 약탈자 놈들이 그쪽으로 가는 길을 잠시라도 잃도록, 확실히 교육해 주도록 하세.", + "5d25e2b486f77409de05bba0 description": "[The Huntsman Path - Secured Perimeter]\n이제 타르코프 시에서 쓰레기들을 청소할 시간이네. 자네와 나는 긴 시간을 함께 보내왔지만, 아직 배워야 할 것이 많네. 우선, 화학 공장 구역부터 시작하세. 그곳에서는 유용한 물건들이 많이 생산되곤 했었지. 나는 테라그룹이 인수하기 전 반년간 그곳에서 보안 책임자로 근무했었네. 하지만 테라그룹이 공장을 인수한 뒤로, 무언가 뒤가 구린 일들이 일어나기 시작했지. 그들은 그동안 생산하던 것들을 중단하고, 무언가 훨씬 어두운 것들을 생산하기 시작했지. 그리고 무정부 시대가 오면서, 그들이 떠나고, 약탈자들이 공장(Factory)을 집어삼키기 시작했지. 난 그곳에서 일어난 모든 것을 다 기억하고 있지. 간단히 말하자면, 그 약탈자 놈들에게 교훈을 새겨주고 오게나. 그리고 사무 구역에는 쓸만한 것들이 남아 있을 것이네. 그러니 약탈자 놈들이 그쪽으로 가는 길을 잠시라도 잃도록, 확실히 교육해 주도록 하세.", "5d25e2b486f77409de05bba0 failMessageText": "", - "5d25e2b486f77409de05bba0 successMessageText": "[사냥꾼의 길 - 구역 확보 (The Huntsman Path - Secured Perimeter)]\n잘했네! 분명 나머지들이 다시 오겠지만, 그래도 이전처럼 약탈하기 전에 다시 한번 생각해 보게 되겠지.", + "5d25e2b486f77409de05bba0 successMessageText": "잘했네! 분명 나머지들이 다시 오겠지만, 그래도 이전처럼 약탈하기 전에 다시 한번 생각해 보게 되겠지.", "5d26143c86f77469ef0f894c": "공장(Factory) 사무실 구역에서 PMC 처치하기 (층수 상관없이 가능)", "5d763d7c86f774452073df77": "", "5d77cc4886f7742fa732bf14": "", @@ -19927,9 +19808,9 @@ "5edaba7c0c502106f869bc02 declinePlayerMessage": "", "5edaba7c0c502106f869bc02 completePlayerMessage": "", "5edabd13218d181e29451442 name": "조작된 게임", - "5edabd13218d181e29451442 description": "[조작된 게임 (Rigged Game)]\n어이, 너! 잠깐 여기로 와봐, 너만을 위한 일거리가 있어. 프라퍼가 의사 양반한테서 약물 몇 개를 가져오라 시켰다며? 자자, 벌써부터 인상 구기지 마! 그 약물들한테는 개똥만큼도 관심 없어. 프라퍼가 약물들을 가져가서 지 엉덩이에나 몇 방 놓도록 내버려 두자고. 그리고 너도 이미 프라퍼한테 그 일은 보상을 받았을 거야, 그렇지? 넌 그냥 이 똑똑이들을 세니타의 물건들 사이에 슬쩍 끼워두기만 하면 돼. 프라퍼는 절대 눈치 못 챌 테니, 이건 그냥 몇 분 만에 공짜로 빵빵한 보상을 챙길 수 있는 절호의 찬스라고. 물건을 옮기기 전에 잽싸게 처리해 줘.", + "5edabd13218d181e29451442 description": "[Rigged Game]\n어이, 너! 잠깐 여기로 와봐, 너만을 위한 일거리가 있어. 프라퍼가 의사 양반한테서 약물 몇 개를 가져오라 시켰다며? 자자, 벌써부터 인상 구기지 마! 그 약물들한테는 개똥만큼도 관심 없어. 프라퍼가 약물들을 가져가서 지 엉덩이에나 몇 방 놓도록 내버려 두자고. 그리고 너도 이미 프라퍼한테 그 일은 보상을 받았을 거야, 그렇지? 넌 그냥 이 똑똑이들을 세니타의 물건들 사이에 슬쩍 끼워두기만 하면 돼. 프라퍼는 절대 눈치 못 챌 테니, 이건 그냥 몇 분 만에 공짜로 빵빵한 보상을 챙길 수 있는 절호의 찬스라고. 물건을 옮기기 전에 잽싸게 처리해 줘.", "5edabd13218d181e29451442 failMessageText": "", - "5edabd13218d181e29451442 successMessageText": "[조작된 게임 (Rigged Game), 성공]\n그래, 그래, 씨발 바로 이거지! 드디어 프라퍼가 자기 물건들을 꿍쳐놓는 곳을 털 수 있겠군. 분명 거기는 총이나 탄약, 음식 등 온갖 것들이 산더미만큼 쌓여있을 거야. 존나 훌륭해! 이제 이건 네가 도와주지 않아도 될 것 같아. 우리가 알아서 할게. 고마워.", + "5edabd13218d181e29451442 successMessageText": "그래, 그래, 씨발 바로 이거지! 드디어 프라퍼가 자기 물건들을 꿍쳐놓는 곳을 털 수 있겠군. 분명 거기는 총이나 탄약, 음식 등 온갖 것들이 산더미만큼 쌓여있을 거야. 존나 훌륭해! 이제 이건 네가 도와주지 않아도 될 것 같아. 우리가 알아서 할게. 고마워.", "5edabdea60bdcc7ff3558119": "", "5edabe120880da21347b382d": "", "5edabed50880da21347b382e": "", @@ -20242,9 +20123,9 @@ "6089736efa70fc097863b8f6 declinePlayerMessage": "", "6089736efa70fc097863b8f6 completePlayerMessage": "", "6089743983426423753cd58a name": "안전한 통로", - "6089743983426423753cd58a description": "[안전한 통로 (Safe Corridor)]\n오 마침 잘 와줬군! 자네 도움이 필요해. 내 부하들이 리저브(Reserve) 기지 창고에서 보급품을 좀 빌리려고 했는데 운이 없었나 봐. 웬 진지한 놈들이 눌러앉아 있는데, 그저 똑똑한 게 아니라 지랄맞게 터프한 놈들이었어. 내 생각에 네가 그놈들을 조져버리지 않는 한, 우리 애들은 그곳에서 아무것도 못 가져올 것 같아... 기지 전체는 내 알 바 아니야, 지하 창고, 좋은 물건은 거기에 다 쌓여있어. 우리 도와줄 거지? 좋아, 우리 애들이 창고를 수색할 동안 뒤를 좀 봐줘.", + "6089743983426423753cd58a description": "[Safe Corridor]\n오 마침 잘 와줬군! 자네 도움이 필요해. 내 부하들이 리저브(Reserve) 기지 창고에서 보급품을 좀 빌리려고 했는데 운이 없었나 봐. 웬 진지한 놈들이 눌러앉아 있는데, 그저 똑똑한 게 아니라 지랄맞게 터프한 놈들이었어. 내 생각에 네가 그놈들을 조져버리지 않는 한, 우리 애들은 그곳에서 아무것도 못 가져올 것 같아... 기지 전체는 내 알 바 아니야, 지하 창고, 좋은 물건은 거기에 다 쌓여있어. 우리 도와줄 거지? 좋아, 우리 애들이 창고를 수색할 동안 뒤를 좀 봐줘.", "6089743983426423753cd58a failMessageText": "", - "6089743983426423753cd58a successMessageText": "[안전한 통로 (Safe Corridor), 성공]\n정말 끝내주는군! 우리 애들이 상처 하나 없이 무사히 돌아왔어. 여기 보상이야!", + "6089743983426423753cd58a successMessageText": "정말 끝내주는군! 우리 애들이 상처 하나 없이 무사히 돌아왔어. 여기 보상이야!", "608ab22755f4ac386d7e7fdc": "리저브(Reserve)맵에 위치한 지하 창고에 있는 스캐브 처치하기", "60bf72dda2ae0728ec716f32": "", "60bf72e04c8a3800da06e716": "", @@ -20289,9 +20170,9 @@ "608a768d82e40b3c727fd17d declinePlayerMessage": "", "608a768d82e40b3c727fd17d completePlayerMessage": "", "60c0c018f7afb4354815096a name": "사냥꾼의 길 - 공장장", - "60c0c018f7afb4354815096a description": "[사냥꾼의 길 - 공장장 (The Huntsman Path - Factory Chief)]\n잘 지냈는가? 오래된 화학 공장(Factory)에 위험한 놈이 새로 나타났다네. 약탈자들은 이 싸이코를 타길라라고 부르고 있지. 사실 과거에 내가 그곳에서 일하던 시절 그를 알고 있었어. 그때 들은 이야기가 있는데, 타길라는 공장에서 일을 했었고 항상 형의 발자취를 따르려고 노력했고, 모든 부분에서 형을 능가하길 원했지. 그가 사용하는 헬멧도 형의 아이디어를 빌렸다고 하는데, 전문가들에게 마스크를 방탄으로 만들어달라고 했지. 그런데, 듣자 하니 총알이 그의 뇌를 손상시켰다고 하더군. 그래서 그런 건지, 슬레지해머를 들고 공장 주변을 뛰어다니며 무차별적으로 사람들을 천국으로 보내버리고 있어. 좋은 일 한다는 생각으로, 그를 고통에서 구원해 주게, 그 만이 아닌 모두를 구하는 일일세. 이 세상은 그와 같은 사람들을 위한 장소가 아니야. 타길라를 구해주고 증거로, 그가 가지고 있는 빨간 야구모자를 가져오게. 무슨 일을 해야 할지 자네 스스로 잘 알 거야.", + "60c0c018f7afb4354815096a description": "[The Huntsman Path - Factory Chief]\n잘 지냈는가? 오래된 화학 공장(Factory)에 위험한 놈이 새로 나타났다네. 약탈자들은 이 싸이코를 타길라라고 부르고 있지. 사실 과거에 내가 그곳에서 일하던 시절 그를 알고 있었어. 그때 들은 이야기가 있는데, 타길라는 공장에서 일을 했었고 항상 형의 발자취를 따르려고 노력했고, 모든 부분에서 형을 능가하길 원했지. 그가 사용하는 헬멧도 형의 아이디어를 빌렸다고 하는데, 전문가들에게 마스크를 방탄으로 만들어달라고 했지. 그런데, 듣자 하니 총알이 그의 뇌를 손상시켰다고 하더군. 그래서 그런 건지, 슬레지해머를 들고 공장 주변을 뛰어다니며 무차별적으로 사람들을 천국으로 보내버리고 있어. 좋은 일 한다는 생각으로, 그를 고통에서 구원해 주게, 그 만이 아닌 모두를 구하는 일일세. 이 세상은 그와 같은 사람들을 위한 장소가 아니야. 타길라를 구해주고 증거로, 그가 가지고 있는 빨간 야구모자를 가져오게. 무슨 일을 해야 할지 자네 스스로 잘 알 거야.", "60c0c018f7afb4354815096a failMessageText": "", - "60c0c018f7afb4354815096a successMessageText": "[사냥꾼의 길 - 공장장 (The Huntsman Path - Factory Chief), 성공]\n정말 좋은 소식이군. 세상이 보다 더 깨끗해질 거야. 그 미친놈이 망치로 자네를 때려잡지 않아서 다행일세.", + "60c0c018f7afb4354815096a successMessageText": "정말 좋은 소식이군. 세상이 보다 더 깨끗해질 거야. 그 미친놈이 망치로 자네를 때려잡지 않아서 다행일세.", "60c0d187938d68438757cda2": "타길라 처치하기", "60cfa4cd646f74055e276545": "", "60cfa4ee1bdece56c249cbf5": "", @@ -20314,18 +20195,16 @@ "60ec2b04bc9a8b34cd453b81": "퀘스트가 진행되는 도중에 죽거나 레이드에서 탈주하면 안 됩니다 (상태: 사망(KIA), 탈주(Left the Action), 실종(MIA), 도망(Run Through))", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", "60e71b9bbd90872cb85440f3 name": "요충지 탈환", - "60e71b9bbd90872cb85440f3 description": "[요충지 탈환 (Capturing Outposts)]\n자 제군, 들어보게나. 자네를 위한 임무가 있네. 요전에 PMC들이 여러 스캐브 기지를 점령했고, 그곳에 수많은 물품을 쌓아놓고 있다는 소식을 들었네. 이 노병을 도와줄 수 있겠나? 내 부하들이 무사히 그 물품들을 빼 올 수 있게 PMC들을 처리해 주게. 총 3개의 기지가 있다네. 세관(Customs)의 건설현장에 있는 요새화된 건물, 프리오제르스키 숲의 구 EMERCOM 의료 시설, 마지막으로 \bAzure Coast 헬스 리조트라네. 정리가 끝나면 알려주게나.", + "60e71b9bbd90872cb85440f3 description": "[요충지 탈환(Capturing Outposts)]\n자 제군, 들어보게나. 자네를 위한 임무가 있네. 요전에 PMC들이 여러 스캐브 기지를 점령했고, 그곳에 수많은 물품을 쌓아놓고 있다는 소식을 들었네. 이 노병을 도와줄 수 있겠나? 내 부하들이 무사히 그 물품들을 빼 올 수 있게 PMC들을 처리해 주게. 총 3개의 기지가 있다네. 세관(Customs)의 건설현장에 있는 거대한 요새 건물, 삼림(Woods)의 구 EMERCOM 의료 시설, 그리고 해안선(Shoreline)의 부두지. 정리가 끝나면 알려주게나.", "60e71b9bbd90872cb85440f3 failMessageText": "", "60e71b9bbd90872cb85440f3 successMessageText": "[요충지 탈환(Capturing Outposts), 성공]\n다 처리했나? 잘했네, 제군. 내 부하들을 보내서 챙기도록 하겠네.", "60ec18b73b5f7d790a7ad034": "세관(Customs)의 스캐브 기지에서 PMC 사살하기", "60ec1e72d7b7cb55e94c1764": "삼림(Woods)의 스캐브 기지에서 PMC 사살하기", - "60ec2229fd1bf4491c4e4552": "해안선(Shoreline)의 헬스 리조트에서 PMC 사살하기", + "60ec2229fd1bf4491c4e4552": "Eliminate PMC operatives at the Health Resort on Shoreline", "6101458b43d55d251d68e4fa": "", "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", @@ -20344,7 +20223,7 @@ "60e71c11d54b755a3b53eb65 name": "야간 작전", "60e71c11d54b755a3b53eb65 description": "[야간 작전 (Night Sweep)]\n어이, 이리 와봐, 이야기할 게 있어. 자넬 위한 일거리가 하나 있어. 내 부하들이 최근 야간에 전리품을 찾으러 돌아다니고 있었는데 어떤 후드를 쓴 또라이를 만났어, 그리고 나선 상황이 좆같아졌지. 결국 부하들은 후퇴를 했고 그놈들은 거의 12명 가까이 죽었어. 뭐 이게 요점은 아니고, 우리랑 마주친 그 미친놈들 중에 하나가 이상한 단검 같은 걸 가지고 있더라고. 그런데 어떤 사람들이 그 단검을 아주 비싸게 구입하고 있다는 걸 알게 되었지. 어쨌든, 그 단검을 구해와줘.", "60e71c11d54b755a3b53eb65 failMessageText": "", - "60e71c11d54b755a3b53eb65 successMessageText": "[야간 작전 (Night Sweep), 성공]\n빌어먹을... 전부 직접 구한 거야? 자네 배짱 한번 두둑하군. 그 정신병자들 뭔가 잘못된 것 같던데, 아무튼 조심해...", + "60e71c11d54b755a3b53eb65 successMessageText": "[야간 작전 (Night Sweep)]\n빌어먹을... 전부 직접 구한 거야? 자네 배짱 한번 두둑하군. 그 정신병자들 뭔가 잘못된 것 같던데, 아무튼 조심해...", "60e82c12fd1bf4491c4e4547": "레이드에서 [Cultist 광신도의 칼] 획득하기", "60e82c5926b88043510e0ad7": "[Cultist 광신도의 칼] 건네주기", "6101464accda1c5f7b1dd08f": "", @@ -20443,9 +20322,9 @@ "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", "60e71dc67fcf9c556f325056 name": "술", - "60e71dc67fcf9c556f325056 description": "[술 (Booze)]\n어서 오게 형제여! 자네는 술에 대해 어떻게 생각하나? 나는 술을 한번 모아보려고 생각하고 있네. 부하들이 사방팔방 찾아봤지만 술은 흔적도 못 찾았다네. 하지만, 자네는 내가 필요했던 모든 걸 찾아줬었지. 미다스의 손을 가진 자네라면, 왠지 금방 찾아올 것 같다는 생각이 들었네. 혹시 술을 구해다 줄 수 있겠나? 찾아오기만 한다면 기념으로 한잔하고 싶다네! 우선은 보드카랑 위스키부터 시작해 보세.", + "60e71dc67fcf9c556f325056 description": "[Booze]\n어서 오게 형제여! 자네는 술에 대해 어떻게 생각하나? 나는 술을 한번 모아보려고 생각하고 있네. 부하들이 사방팔방 찾아봤지만 술은 흔적도 못 찾았다네. 하지만, 자네는 내가 필요했던 모든 걸 찾아줬었지. 미다스의 손을 가진 자네라면, 왠지 금방 찾아올 것 같다는 생각이 들었네. 혹시 술을 구해다 줄 수 있겠나? 찾아오기만 한다면 기념으로 한잔하고 싶다네! 우선은 보드카랑 위스키부터 시작해 보세.", "60e71dc67fcf9c556f325056 failMessageText": "", - "60e71dc67fcf9c556f325056 successMessageText": "[술 (Booze), 성공]\n캬~ 물건 좋구먼! 얼른 이리 앉게 형제여, 언제까지 어깨 춤을 추게 할 건가!", + "60e71dc67fcf9c556f325056 successMessageText": "캬~ 물건 좋구먼! 얼른 이리 앉게 형제여, 언제까지 어깨 춤을 추게 할 건가!", "60e73333465ea8368012cc5b": "레이드에서 [Vodka 타르코프스카야 보드카] 찾기", "60e733590367e10a450f7805": "레이드에서 [Whiskey 댄 잭키엘 위스키] 획득하기", "60e73397479eef59b01b0bd5": "보드카 건네주기", @@ -20460,7 +20339,7 @@ "60e71dc67fcf9c556f325056 declinePlayerMessage": "", "60e71dc67fcf9c556f325056 completePlayerMessage": "", "60e71e8ed54b755a3b53eb67 name": "사냥꾼의 길 - 가차없는", - "60e71e8ed54b755a3b53eb67 description": "[사냥꾼의 길 - 가차없는 (The Huntsman Path - Relentless)]\n어서 오게. 흥미로운 이야깃거리 없나? 아, 아닐세, 자네의 전쟁에 대해 듣고 싶진 않거든. 여기 일만 해도 차고 넘쳐. 이제 더 이상 자네에게 가르쳐줄 게 없네. 자넨 이제 이 타르코프에서 홀로 설 수 있는 방법을 알고 있지 않은가. 정의란 무엇인가에 대해서도 잘 알고 있지. 타르코프의 보스들도 한 번씩 만나봤지? 그런데 혹시 이 녀석들을 한 번에 다 처리해 본 적 있나? 그래, 이번 임무는 바로 그거라네. 절대 쉽지 않을 거야. 하지만 그만큼 가치 있을 걸세. 우리가 어떤 흔적을 남겨놓는지가 가장 중요한 것이라네.", + "60e71e8ed54b755a3b53eb67 description": "[The Huntsman Path - Relentless]\n어서 오게. 흥미로운 이야깃거리 없나? 아, 아닐세, 자네의 전쟁에 대해 듣고 싶진 않거든. 여기 일만 해도 차고 넘쳐. 이제 더 이상 자네에게 가르쳐줄 게 없네. 자넨 이제 이 타르코프에서 홀로 설 수 있는 방법을 알고 있지 않은가. 정의란 무엇인가에 대해서도 잘 알고 있지. 타르코프의 보스들도 한 번씩 만나봤지? 그런데 혹시 이 녀석들을 한 번에 다 처리해 본 적 있나? 그래, 이번 임무는 바로 그거라네. 절대 쉽지 않을 거야. 하지만 그만큼 가치 있을 걸세. 우리가 어떤 흔적을 남겨놓는지가 가장 중요한 것이라네.", "60e71e8ed54b755a3b53eb67 failMessageText": "[사냥꾼의 길 - 가차없는 (The Huntsman Path - Relentless), 실패]\n해내지 못했군. 걱정 말게, 자넬 탓하는 게 아니라네. 쉽지 않은 임무라는 걸 알거든. 그러니 다시 회복한 후에 돌아오게.", "60e71e8ed54b755a3b53eb67 successMessageText": "[사냥꾼의 길 - 가차없는 (The Huntsman Path - Relentless), 성공]\n벌써 전해 들었네. 훌륭하게 해냈다지. 진심으로 고맙네.", "60e7249bd1a062318d3d2244": "퀘스트가 진행되는 도중에 죽거나 레이드에서 탈주하면 안 됩니다 (상태: 사망(KIA), 탈주(Left the Action), 실종(MIA), 도망(Run Through))", @@ -20486,9 +20365,9 @@ "60e729cf5698ee7b05057439 declinePlayerMessage": "", "60e729cf5698ee7b05057439 completePlayerMessage": "", "60effd818b669d08a35bfad5 name": "선택", - "60effd818b669d08a35bfad5 description": "[선택 (The Choice)]\n반갑네. 내가 보기에, 자넨 시간을 낭비하지 않고 자네만의 방법으로 많은 것을 성취했더군. 자네도 알겠지만, 살면서 때때로는 더 큰 것을 위해 잃는 것도 있기 마련이지. 하지만 모두가 잃을 준비를 하고 있진 않는다네. 대다수의 사람들은 평생 위험을 감수하지 않고, 두려워하며, 스스로를 믿지 않지. 자네는 어떤가? 자네는 더 큰 목표를 달성하기 위해 무언가를 희생할 준비가 되어있는가?", + "60effd818b669d08a35bfad5 description": "[The Choice]\n반갑네. 내가 보기에, 자넨 시간을 낭비하지 않고 자네만의 방법으로 많은 것을 성취했더군. 자네도 알겠지만, 살면서 때때로는 더 큰 것을 위해 잃는 것도 있기 마련이지. 하지만 모두가 잃을 준비를 하고 있진 않는다네. 대다수의 사람들은 평생 위험을 감수하지 않고, 두려워하며, 스스로를 믿지 않지. 자네는 어떤가? 자네는 더 큰 목표를 달성하기 위해 무언가를 희생할 준비가 되어있는가?", "60effd818b669d08a35bfad5 failMessageText": "", - "60effd818b669d08a35bfad5 successMessageText": "[선택 (The Choice), 성공]\n용감한 선택이었네.", + "60effd818b669d08a35bfad5 successMessageText": "용감한 선택이었네.", "60effdac12fec20321367038": "[보안 컨테이너 엡실론] 건네주기", "61014aa1e10c48364e47a913": "", "610152752b0c65522065ea3b": "", @@ -20558,10 +20437,10 @@ "6179afd0bca27a099552e040 acceptPlayerMessage": "", "6179afd0bca27a099552e040 declinePlayerMessage": "", "6179afd0bca27a099552e040 completePlayerMessage": "", - "6179aff8f57fb279792c60a1 name": "인구과잉", - "6179aff8f57fb279792c60a1 description": "[인구과잉, (Overpopulation)]\n당신을 위한 일이 있소. 우리 정보에 따르면 최초 충돌 이후 달니 곶의 오두막 지역에 있던 당신의 USEC 동지들의 구 기지가 우리 파란 헬멧들에게 도움이 될만한 귀중한 장비와 정보들을 가진 채 버려졌다 하오. 유일한 문제는 그 지역이 스캐브가 점령하고 있다는 거고, 그래서 그들을 쓸어버리거나 최소한 겁을 줘서 모두 내쫓아 내 사람들이 필요한 자원들을 전투 없이 가져올 수 있게 하고 싶소. 이게 당신의 임무요. 당연히, 당신이 방금 들은 건 모두 우리 둘만 아는 일이오. 보고를 기다리겠소.", + "6179aff8f57fb279792c60a1 name": "Overpopulation", + "6179aff8f57fb279792c60a1 description": "당신을 위한 일이 있소. 우리 정보에 따르면 최초 충돌 이후 달니 곶의 오두막 지역에 있던 당신의 USEC 동지들의 구 기지가 우리 파란 헬멧들에게 도움이 될만한 귀중한 장비와 정보들을 가진 채 버려졌다 하오. 유일한 문제는 그 지역이 스캐브가 점령하고 있다는 거고, 그래서 그들을 쓸어버리거나 최소한 겁을 줘서 모두 내쫓아 내 사람들이 필요한 자원들을 전투 없이 가져올 수 있게 하고 싶소. 이게 당신의 임무요. 당연히, 당신이 방금 들은 건 모두 우리 둘만 아는 일이오. 보고를 기다리겠소.", "6179aff8f57fb279792c60a1 failMessageText": "", - "6179aff8f57fb279792c60a1 successMessageText": "[인구과잉, (Overpopulation), 성공]\n내 정찰대가 이미 당신이 성공했다고 보고했소. 충분한 보상을 받을 자격이 있소. 이제 돌아가 보시오.", + "6179aff8f57fb279792c60a1 successMessageText": "내 정찰대가 이미 당신이 성공했다고 보고했소. 충분한 보상을 받을 자격이 있소. 이제 돌아가 보시오.", "617bf4e152e86c73d372a95d": "등대(Lighthouse)의 오두막(cottage) 지역의 스캐브 사살하기", "6179aff8f57fb279792c60a1 acceptPlayerMessage": "", "6179aff8f57fb279792c60a1 declinePlayerMessage": "", @@ -20618,10 +20497,10 @@ "6179b5b06e9dd54ac275e409 acceptPlayerMessage": "", "6179b5b06e9dd54ac275e409 declinePlayerMessage": "", "6179b5b06e9dd54ac275e409 completePlayerMessage": "", - "6179b5eabca27a099552e052 name": "방해", - "6179b5eabca27a099552e052 description": "[방해 (Counteraction)]\n진지한 일을 해볼 준비가 되었소 용병? 이번에는 꽤나 중요한 사안이라 철저한 사전 준비가 필요하오. 자, BEAR PMC 요원이 최근 등대 근처 해안에서 우리의 작전을 방해하고 있소. 아마 당신도 근처에서 그들을 만나며 그들의 활동량이 늘어났다는 것을 눈치챘을 것이오. 당신의 임무는 우리가 이 도시에서 UN의 위치를 공고히 하도록 도와주는 것이오... 준비되었소? BEAR를 제거하는 것은 동네 불량배들을 겁줘서 쫓아내는 것과는 차원이 다를 것이오.", + "6179b5eabca27a099552e052 name": "Counteraction", + "6179b5eabca27a099552e052 description": "진지한 일을 해볼 준비가 되었소 용병? 이번에는 꽤나 중요한 사안이라 철저한 사전 준비가 필요하오. 자, BEAR PMC 요원이 최근 등대 근처 해안에서 우리의 작전을 방해하고 있소. 아마 당신도 근처에서 그들을 만나며 그들의 활동량이 늘어났다는 것을 눈치챘을 것이오. 당신의 임무는 우리가 이 도시에서 UN의 위치를 공고히 하도록 도와주는 것이오... 준비되었소? BEAR를 제거하는 것은 동네 불량배들을 겁줘서 쫓아내는 것과는 차원이 다를 것이오.", "6179b5eabca27a099552e052 failMessageText": "", - "6179b5eabca27a099552e052 successMessageText": "[방해 (Counteraction), 성공]\n이런 임무가 아무에게나 주어지는 것이 아님을 주지하시오. 그러나 보상은 충분할 거요. 자, 여기 당신 몫이요.", + "6179b5eabca27a099552e052 successMessageText": "이런 임무가 아무에게나 주어지는 것이 아님을 주지하시오. 그러나 보상은 충분할 거요. 자, 여기 당신 몫이요.", "617fc08b30ccff6c7c37fcd3": "레이드에서 발견한 [BEAR PMC 인식표] 건네주기", "61a61c085d06a344766f3a29": "등대(Lighthouse) 전 지역에서 BEAR PMC 사살하기", "6179b5eabca27a099552e052 acceptPlayerMessage": "", @@ -20640,7 +20519,7 @@ "6193850f60b34236ee0483de name": "긴 도로", "6193850f60b34236ee0483de description": "[긴 도로 (Long Road)]\n벌써 와있었군. 좋아, 곶의 해안 전체를 따라 도로가 하나 나있어, 자네도 아마 본 적 있을 거야. 내 부하들이 이 도로를 물건 운송용으로 사용하고 있었지. 보통은, 문제를 잘 피하거나 몇몇 멍청이들을 진정시키며 관리했었는데, 하필 지금 그 도로에 쥐새끼들이 둥지를 틀었어. 아마도 우리 호송대를 발견한 거겠지. 그 새끼들이 내 부하들을 전력으로 공격하기 시작했고, 결국 그놈들을 뚫지 못했어. 그 새끼들을 찾아서 전부 처리해 줘. 답례로 좋은 걸 구해줄게.", "6193850f60b34236ee0483de failMessageText": "", - "6193850f60b34236ee0483de successMessageText": "[긴 도로 (Long Road), 성공]\n좋았어, 멍청한 새끼들을 아주 적절하게 족쳐줬군. 좋아, 친구, 다음에 또 보자고.", + "6193850f60b34236ee0483de successMessageText": "[긴 도로 (Long Road)]\n좋았어, 멍청한 새끼들을 아주 적절하게 족쳐줬군. 좋아, 친구, 다음에 또 보자고.", "6193dabd5f6468204470571f": "등대(Lighthouse) 지역에서 큰 도로 근처를 돌아다니는 스캐브 사살하기", "6193850f60b34236ee0483de acceptPlayerMessage": "", "6193850f60b34236ee0483de declinePlayerMessage": "", @@ -20655,7 +20534,7 @@ "61958c366726521dd96828ec declinePlayerMessage": "", "61958c366726521dd96828ec completePlayerMessage": "", "61bb468b8d7cac1532300ccc name": "파티 준비", - "61bb468b8d7cac1532300ccc description": "[파티 준비 (Party Preparations)]\nWanna hear something hilarious? People suddenly became interested in all this Christmas stuff now: hats, white beards, all that. Who the hell would need that in war times? Next will be Scavs dancing and singing around campfires, and Killa with Glukhar collecting gifts from under the tree like good children they are! Hahaha! Well, anyway, I don't really care why everyone needs all that stuff. If people buy it - we make money on it. Bring me anything you find, and I'll give you some Christmas presents in return.", + "61bb468b8d7cac1532300ccc description": "[Party Preparations]\nWanna hear something hilarious? People suddenly became interested in all this Christmas stuff now: hats, white beards, all that. Who the hell would need that in war times? Next will be Scavs dancing and singing around campfires, and Killa with Glukhar collecting gifts from under the tree like good children they are! Hahaha! Well, anyway, I don't really care why everyone needs all that stuff. If people buy it - we make money on it. Bring me anything you find, and I'll give you some Christmas presents in return.", "61bb468b8d7cac1532300ccc failMessageText": "", "61bb468b8d7cac1532300ccc successMessageText": "Awesome, awesome. Let's dress some people up, here.", "61bb68ba67f83663e155e26e": "레이드에서 발견한 [산타 모자] 건네주기", @@ -20759,43 +20638,43 @@ "61bfa784f4378605ca5598e1 declinePlayerMessage": "", "61bfa784f4378605ca5598e1 completePlayerMessage": "", "61e6e5e0f5b9633f6719ed95 name": "손해배상 - 신뢰", - "61e6e5e0f5b9633f6719ed95 description": "[손해배상 - 신뢰 (Compensation for Damage - Trust)]\n그거 아나? 자네 정말 좆됐다는거 말이야. 사람들이 자넬 신뢰할 수 없는, 믿을 수 없는 사람이라고 말하고 있어. 쉽게 말하자면, 자네가 아무 생각 없이 움직이는 모든 걸 쏴대는 병신이라고 소문이 퍼져있지. 물론, 우리 모두가 성인군자가 될 순 없잖아? 그 점을 이용해서 자네의 평판을 다시 향상시켜 줄 수 있어. 억지로 스캐브들을 도우려고 할 필요는 없고, PMC들을 죽이고 인식표를 가져온다면 새로운 소문을 퍼뜨려 주지. 이전보다 더 흥미로운 소문으로 말이야.", + "61e6e5e0f5b9633f6719ed95 description": "[Compensation for Damage - Trust]\n그거 아나? 자네 정말 좆됐다는거 말이야. 사람들이 자넬 신뢰할 수 없는, 믿을 수 없는 사람이라고 말하고 있어. 쉽게 말하자면, 자네가 아무 생각 없이 움직이는 모든 걸 쏴대는 병신이라고 소문이 퍼져있지. 물론, 우리 모두가 성인군자가 될 순 없잖아? 그 점을 이용해서 자네의 평판을 다시 향상시켜 줄 수 있어. 억지로 스캐브들을 도우려고 할 필요는 없고, PMC들을 죽이고 인식표를 가져온다면 새로운 소문을 퍼뜨려 주지. 이전보다 더 흥미로운 소문으로 말이야.", "61e6e5e0f5b9633f6719ed95 failMessageText": "", - "61e6e5e0f5b9633f6719ed95 successMessageText": "[손해배상 - 신뢰 (Compensation for Damage - Trust), 성공]\n어서와! 인식표는 가져 왔어? 좋아, 아주 적절하게 사용할 수 있을거야.", + "61e6e5e0f5b9633f6719ed95 successMessageText": "[Compensation for Damage - Trust, 성공]\n어서와! 인식표는 가져 왔어? 좋아, 아주 적절하게 사용할 수 있을거야.", "61e6e679b350e406c823a205": "레이드에서 발견한 [BEAR PMC 인식표] 건네주기", "61e6e68db2728a406f4ad009": "레이드에서 발견한 [USEC PMC 인식표] 건네주기", "61e6e5e0f5b9633f6719ed95 acceptPlayerMessage": "", "61e6e5e0f5b9633f6719ed95 declinePlayerMessage": "", "61e6e5e0f5b9633f6719ed95 completePlayerMessage": "", "61e6e60223374d168a4576a6 name": "손해배상 - 내기", - "61e6e60223374d168a4576a6 description": "[손해배상 - 내기 (Compensation for Damage - Wager)]\n그래, 자네의 형편없는 평판을 개선하고 싶다고? 영향력 있는 두 사람이 자넬 두고 내기를 시작했네. 특정 무기를 사용해서 움직이는 모든 걸 맞출 수 있겠나? 자네에게 다행이라고 생각할 수 있을만한 무기가 선정되었네 바로 칼라시니코프 소총이지. 솔직히 자네가 칼을 들고 뛰어다니며 만신창이가 되는 모습을 보고 싶었는데 아쉽군. 무기가 AK로 선정되어서 나도 자네에게 배팅을 했다네. 성공하는 쪽으로 말이지. 자네의 목표는 이리저리 떠돌며 환영받지 못하는 용병들이라네. 이번엔 망치지 않도록 조심하게.", + "61e6e60223374d168a4576a6 description": "[Compensation for Damage - Wager]\n그래, 자네의 형편없는 평판을 개선하고 싶다고? 영향력 있는 두 사람이 자넬 두고 내기를 시작했네. 특정 무기를 사용해서 움직이는 모든 걸 맞출 수 있겠나? 자네에게 다행이라고 생각할 수 있을만한 무기가 선정되었네 바로 칼라시니코프 소총이지. 솔직히 자네가 칼을 들고 뛰어다니며 만신창이가 되는 모습을 보고 싶었는데 아쉽군. 무기가 AK로 선정되어서 나도 자네에게 배팅을 했다네. 성공하는 쪽으로 말이지. 자네의 목표는 이리저리 떠돌며 환영받지 못하는 용병들이라네. 이번엔 망치지 않도록 조심하게.", "61e6e60223374d168a4576a6 failMessageText": "", - "61e6e60223374d168a4576a6 successMessageText": "[손해배상 - 내기 (Compensation for Damage - Wager), 성공]\n자네가 내 친구들을 기쁘게 해줬어. 성공한 걸 축하하네!", + "61e6e60223374d168a4576a6 successMessageText": "[손해배상 - 내기(Compensation for Damage - Wager)]\n자네가 내 친구들을 기쁘게 해줬어. 성공한 걸 축하하네!", "61e6ed30d007ca50d54baae5": "AK 시리즈 돌격소총을 사용하여 PMC 사살하기", "61e6e60223374d168a4576a6 acceptPlayerMessage": "", "61e6e60223374d168a4576a6 declinePlayerMessage": "", "61e6e60223374d168a4576a6 completePlayerMessage": "", "61e6e60c5ca3b3783662be27 name": "손해배상 - 배상금", - "61e6e60c5ca3b3783662be27 description": "[손해배상 - 배상금 (Compensation for Damage - Wergild)]\n자네도 알겠지만, 하루 종일 심부름만 해서는 자네의 처참한 상황을 개선하기 힘들다네. 더 쉬운 방법이 있는데 한번 들어보겠나? 적절한 사람들에게 뇌물을 조금 쥐여주면 자네가 얼마나 대단한 사람인지 노래를 부르며 찬양하고 다닌다네. 예를 들어, 자네가 뇌 질환을 앓았었고 그 도중에 죽였던 사람들의 친구들에게 보상을 해준다던가 말이야. 마치 중세 시대 때의 배상금(wergild) 같이 말일세.", + "61e6e60c5ca3b3783662be27 description": "[손해배상 - 배상금(Compensation for Damage - Wergild)]\n자네도 알겠지만, 하루 종일 심부름만 해서는 자네의 처참한 상황을 개선하기 힘들다네. 더 쉬운 방법이 있는데 한번 들어보겠나? 적절한 사람들에게 뇌물을 조금 쥐여주면 자네가 얼마나 대단한 사람인지 노래를 부르며 찬양하고 다닌다네. 예를 들어, 자네가 뇌 질환을 앓았었고 그 도중에 죽였던 사람들의 친구들에게 보상을 해준다던가 말이야. 마치 중세 시대 때의 배상금(wergild) 같이 말일세.", "61e6e60c5ca3b3783662be27 failMessageText": "", - "61e6e60c5ca3b3783662be27 successMessageText": "[손해배상 - 배상금 (Compensation for Damage - Wergild), 성공]\n훌륭해. 보상의 일부는 필요한 곳에 사용될 예정이고 남은 일부분은 내가 가지고 있을 계획이라네. 우리의 협력을 유지하기 위한 거라고 생각하게나.", + "61e6e60c5ca3b3783662be27 successMessageText": "[손해배상 - 배상금(Compensation for Damage - Wergild)]\n훌륭해. 보상의 일부는 필요한 곳에 사용될 예정이고 남은 일부분은 내가 가지고 있을 계획이라네. 우리의 협력을 유지하기 위한 거라고 생각하게나.", "61e6f5a1eea2935bc018a2c7": "루블 건네주기", "61e6e60c5ca3b3783662be27 acceptPlayerMessage": "", "61e6e60c5ca3b3783662be27 declinePlayerMessage": "", "61e6e60c5ca3b3783662be27 completePlayerMessage": "", "61e6e615eea2935bc018a2c5 name": "손해배상 - 바텐더", - "61e6e615eea2935bc018a2c5 description": "[손해배상 - 바텐더 (Compensation for Damage - Barkeep)]\n사람들이 자네에 대해 “좋게” 생각 하기를 바라나? 자네는 스스로에 대해 어떻게 생각하고 있나? 아마 스스로 훌륭한 사람이라고 생각하고 있겠지, 타르코프의 전설적인 인물 이라던가 영웅 같은? 그런데 지금 자네가 내게 머리를 조아리며 도움을 요청하러 왔다는 뜻은 자네가 그저 심부름꾼에 불과하다는 뜻이지… 농담이 아니야 자넨 돈, 총, 평판 같은 것들을 위해 시키는 모든 일을 하고 있지… 이곳에서 구할 수 있는 가장 끝내주는 총을 보상으로 걸고 자네에게 내 부하들의 엉덩이를 닦으라고 하면 어떨까? 잘 들어, 오늘 내가 기분이 좋으니 자네에게 한 가지 부탁을 하지. 쿠바 리브레 칵테일을 가져와. 자네가 혹시 머리를 너무 많이 부딪혀 까먹었을 수 있으니 칵테일 재료를 알려주지. 럼, 콜라, 라임 그리고 얼음이 필요해. 근데… 그래, 이대로 보냈다간 라임 찾는데만 10년은 더 걸리겠지. 앞에 말한 건 잊어. 좀 더 쉽게 숙제를 내주지. Dan Jackiel whiskey와 타르콜라를 가져와.", + "61e6e615eea2935bc018a2c5 description": "[Compensation for Damage - Barkeep]\n사람들이 자네에 대해 “좋게” 생각 하기를 바라나? 자네는 스스로에 대해 어떻게 생각하고 있나? 아마 스스로 훌륭한 사람이라고 생각하고 있겠지, 타르코프의 전설적인 인물 이라던가 영웅 같은? 그런데 지금 자네가 내게 머리를 조아리며 도움을 요청하러 왔다는 뜻은 자네가 그저 심부름꾼에 불과하다는 뜻이지… 농담이 아니야 자넨 돈, 총, 평판 같은 것들을 위해 시키는 모든 일을 하고 있지… 이곳에서 구할 수 있는 가장 끝내주는 총을 보상으로 걸고 자네에게 내 부하들의 엉덩이를 닦으라고 하면 어떨까? 잘 들어, 오늘 내가 기분이 좋으니 자네에게 한 가지 부탁을 하지. 쿠바 리브레 칵테일을 가져와. 자네가 혹시 머리를 너무 많이 부딪혀 까먹었을 수 있으니 칵테일 재료를 알려주지. 럼, 콜라, 라임 그리고 얼음이 필요해. 근데… 그래, 이대로 보냈다간 라임 찾는데만 10년은 더 걸리겠지. 앞에 말한 건 잊어. 좀 더 쉽게 숙제를 내주지. Dan Jackiel whiskey와 타르콜라를 가져와.", "61e6e615eea2935bc018a2c5 failMessageText": "", - "61e6e615eea2935bc018a2c5 successMessageText": "[손해배상 - 바텐더 (Compensation for Damage - Barkeep), 성공]\n이게 바로 힘들었던 하루를 마무리하는 가장 좋은 방법 아닐까? 뜸 들이지 말고 어서 열어봐.", + "61e6e615eea2935bc018a2c5 successMessageText": "[Compensation for Damage - Barkeep, 성공]\n이게 바로 힘들었던 하루를 마무리하는 가장 좋은 방법 아닐까? 뜸 들이지 말고 어서 열어봐.", "61e703205ca3b3783662be2b": "레이드에서 발견한 [댄 잭키엘 위스키] 건네주기", "61e7034b95a8910716185486": "레이드에서 발견한 [타르콜라] 건네주기", "61e6e615eea2935bc018a2c5 acceptPlayerMessage": "", "61e6e615eea2935bc018a2c5 declinePlayerMessage": "", "61e6e615eea2935bc018a2c5 completePlayerMessage": "", "61e6e621bfeab00251576265 name": "손해배상 - 수집가", - "61e6e621bfeab00251576265 description": "[손해배상 - 수집가 (Compensation for Damage - Collection)]\n뭐, 죄책감에 고해성사라도 하려고 왔어? 이봐, 난 네 전담 이미지 메이커나 매니저가 아니야… 그래도 자넬 도와줄 수 있을 만한 일거리가 하나 있어. 내 고객 중 한 명이 미제 무기를 수집하는 큰손이거든. 맞아, 공장에서 막 생산한 따끈따끈한 물건을 주문할 수도 있을 텐데 화약 냄새로 잘 훈연 된, 적당히 숙성된 상태의 중고품을 원하고 있어. 이런 취향 덕분에 이 큰손이 소장하는 물건은 전부 분쟁지역에서 구해온 물건이라고 하더군. 아프가니스탄, 이라크, …타르코프 뭐 자네도 잘 아는 그런 곳 말이야. 큰손에게 M4 몇 자루를 선물하고 싶은데 어떻게 알아보는 건지 직접 구한 물건만 취급한다고 하더라고. 날 도와주면 나도 자넬 도와줄게. 자네의 손에 스캐브들의 피가 묻어있었다는 걸 사람들이 잊게 만들어 주지.", + "61e6e621bfeab00251576265 description": "[Compensation for Damage - Collection]\n뭐, 죄책감에 고해성사라도 하려고 왔어? 이봐, 난 네 전담 이미지 메이커나 매니저가 아니야… 그래도 자넬 도와줄 수 있을 만한 일거리가 하나 있어. 내 고객 중 한 명이 미제 무기를 수집하는 큰손이거든. 맞아, 공장에서 막 생산한 따끈따끈한 물건을 주문할 수도 있을 텐데 화약 냄새로 잘 훈연 된, 적당히 숙성된 상태의 중고품을 원하고 있어. 이런 취향 덕분에 이 큰손이 소장하는 물건은 전부 분쟁지역에서 구해온 물건이라고 하더군. 아프가니스탄, 이라크, …타르코프 뭐 자네도 잘 아는 그런 곳 말이야. 큰손에게 M4 몇 자루를 선물하고 싶은데 어떻게 알아보는 건지 직접 구한 물건만 취급한다고 하더라고. 날 도와주면 나도 자넬 도와줄게. 자네의 손에 스캐브들의 피가 묻어있었다는 걸 사람들이 잊게 만들어 주지.", "61e6e621bfeab00251576265 failMessageText": "", - "61e6e621bfeab00251576265 successMessageText": "[손해배상 - 수집가 (Compensation for Damage - Collection), 성공]\n자 그럼, 주문하신 \"프로 스캐브 청소기 모델 60\" 전용 먼지 필터가 도착했습니다. 깨끗하게 다시 시작하는 새 인생이니 이전처럼 또다시 망치지 마.", + "61e6e621bfeab00251576265 successMessageText": "[Compensation for Damage - Collection, 성공]\n자 그럼, 주문하신 \"프로 스캐브 청소기 모델 60\" 전용 먼지 필터가 도착했습니다. 깨끗하게 다시 시작하는 새 인생이니 이전처럼 또다시 망치지 마.", "61e704a123374d168a4576a8": "레이드에서 발견한 [Colt M4A1 돌격소총] 건네주기", "61e6e621bfeab00251576265 acceptPlayerMessage": "", "61e6e621bfeab00251576265 declinePlayerMessage": "", @@ -20955,11 +20834,11 @@ "6261483dc4874104f230c0cd declinePlayerMessage": "", "6261483dc4874104f230c0cd completePlayerMessage": "", "626bd75b05f287031503c7f6 name": "마약 밀매", - "626bd75b05f287031503c7f6 description": "[마약 밀매 (Drug Trafficking)]\n어서 와요. 최근 타르코프에 누군가가 새로운 마약 유통망을 깔았거나 마약 연구소를 연 것 같다는 의심을 하고 있었어요. 어떻게 그런 걸 알 수 있냐고요? 우선, 최근에 익숙한 증상을 가진 사람들을 많이 치료했어요. 동공확장, 떨림, 혼란 같은 증상들이죠. 두 번째로는 도시에서 피난민들을 대피시키던 저희 쪽 사람들이 등대 지역에 있는 컨테이너 근처에서 수상한 사람들을 발견했다는 보고를 했어요. 제 부하 한 명이 조사하려고 하다가 거의 죽을 뻔했죠. 분명히 그 수상한 사람들은 그곳을 지키고 있는 거예요. 혹시 그곳을 감시할 수 있을만한 장소를 찾아 카메라를 설치해 줄 수 있나요? 그곳을 철거하거나 그 사람들을 죽여서 요리하라는 게 아니에요. 제 말 이해하시겠죠? 아무것도 아닌 것에 목숨을 걸진 마세요. 일단 지금은 그곳을 감시할 수 있는 카메라가 필요할 뿐이에요.", + "626bd75b05f287031503c7f6 description": "[마약 밀매(Drug Trafficking)]\n어서 와요. 최근 타르코프에 누군가가 새로운 마약 유통망을 깔았거나 마약 연구소를 연 것 같다는 의심을 하고 있었어요. 어떻게 그런 걸 알 수 있냐고요? 우선, 최근에 익숙한 증상을 가진 사람들을 많이 치료했어요. 동공확장, 떨림, 혼란 같은 증상들이죠. 두 번째로는 도시에서 피난민들을 대피시키던 저희 쪽 사람들이 등대 지역에 있는 컨테이너 근처에서 수상한 사람들을 발견했다는 보고를 했어요. 제 부하 한 명이 조사하려고 하다가 거의 죽을 뻔했죠. 분명히 그 수상한 사람들은 그곳을 지키고 있는 거예요. 혹시 그곳을 감시할 수 있을만한 장소를 찾아 카메라를 설치해 줄 수 있나요? 그곳을 철거하거나 그 사람들을 죽여서 요리하라는 게 아니에요. 제 말 이해하시겠죠? 아무것도 아닌 것에 목숨을 걸진 마세요. 일단 지금은 그곳을 감시할 수 있는 카메라가 필요할 뿐이에요.", "626bd75b05f287031503c7f6 failMessageText": "", - "626bd75b05f287031503c7f6 successMessageText": "[마약 밀매 (Drug Trafficking)]\n설치했나요? 고마워요. 하지만 미안하게도 지금은 이 영상을 가지고 무엇을 할지 당신에게 알려드릴 수 없어요. 아무튼, 영상 업로드 버튼이 뭐라고 했었죠?", + "626bd75b05f287031503c7f6 successMessageText": "[마약 밀매(Drug Trafficking)]\n설치했나요? 고마워요. 하지만 미안하게도 지금은 이 영상을 가지고 무엇을 할지 당신에게 알려드릴 수 없어요. 아무튼, 영상 업로드 버튼이 뭐라고 했었죠?", "626c3010a371ee3a7a3514cb": "마약 연구소에 WI-FI 카메라 설치하기", - "63ac210b1287ef0b827d0cb8": "등대(Lighthouse) 지역에서 숨겨진 마약 연구소 찾기", + "63ac210b1287ef0b827d0cb8": "Locate the hidden drug lab on Lighthouse", "626bd75b05f287031503c7f6 acceptPlayerMessage": "", "626bd75b05f287031503c7f6 declinePlayerMessage": "", "626bd75b05f287031503c7f6 completePlayerMessage": "", @@ -20987,12 +20866,12 @@ "626bd75d5bef5d7d590bd415 acceptPlayerMessage": "", "626bd75d5bef5d7d590bd415 declinePlayerMessage": "", "626bd75d5bef5d7d590bd415 completePlayerMessage": "", - "626bd75e47ea7f506e5493c5 name": "방송 - 파트 1", + "626bd75e47ea7f506e5493c5 name": "Broadcast - Part 1", "626bd75e47ea7f506e5493c5 description": "[방송 (Broadcast)]\n어서 오게. 잠깐 생각을 좀 하고 있었어. 내가 내 인생에서 정말 그 무엇도 이해하지 못하는 것처럼 보이기 시작했어. 이리 앉아봐... 사람들이 도시 어디에선가 생방송이 진행 중이라고 하더군. 그 방송에는 누군가 수술을 하는 걸 실시간으로 촬영한다고 하더라고. 나는 그게 실제로 어떤 착한 의사가 사람들을 돕는 거였다면 이해했을 거야. 심지어는 역겹더라도 장기 거래를 하는 거였다고 해도 이해했을 거야. 대체 왜 이런 걸 방송하는 건지 내게 알려줄 수 있나? 이상 성욕을 가진 뒤틀린 황천의 러시아 신흥 재벌들을 위한 방송인가? 정말 모르겠어. 하지만 그 방송은 반드시 중단되어야 한다는 건 알겠더군. 혹시 전파 교란기를 그 근처에 설치해 줄 수 있나?", "626bd75e47ea7f506e5493c5 failMessageText": "", - "626bd75e47ea7f506e5493c5 successMessageText": "[방송 - 파트 1 (Broadcast - Part 1)]\n시체 가방에 내장이 든 상자까지? 으웩... 비록 뿌리뽑지는 못했지만 이걸 멈춰서 다행이야. 누가 범인인지는 조사해서 나중에 알려주겠네.", + "626bd75e47ea7f506e5493c5 successMessageText": "시체 가방에 내장이 든 상자까지? 으웩... 비록 뿌리뽑지는 못했지만 이걸 멈춰서 다행이야. 누가 범인인지는 조사해서 나중에 알려주겠네.", "626c3158a371ee3a7a3514cc": "스튜디오 내부에 전파 교란기 설치하기", - "63ac232087413d64ae0ac23c": "등대(Lighthouse) 지역에서 숨겨진 촬영 스튜디오 찾기", + "63ac232087413d64ae0ac23c": "Locate the hidden recording studio on Lighthouse", "626bd75e47ea7f506e5493c5 acceptPlayerMessage": "", "626bd75e47ea7f506e5493c5 declinePlayerMessage": "", "626bd75e47ea7f506e5493c5 completePlayerMessage": "", @@ -21086,7 +20965,7 @@ "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", "639135a7e705511c8a4a1b78 declinePlayerMessage": "", "639135a7e705511c8a4a1b78 completePlayerMessage": "", - "639135b04ed9512be67647d7 name": "소련공산당에 영광을 - 파트 1", + "639135b04ed9512be67647d7 name": "소련공산당에 영광을", "639135b04ed9512be67647d7 description": "[소련공산당에 영광을 (Glory to CPSU)]\n안녕하신가, 전사여. 또 다른 개인적인 문제가 있다네. 마을에 올렉이라는 친구가 한 명 있네. 그는 은퇴한 선장인데, 정말 대단한 사람이야! 진정한 전사지, 자네나 나는 그의 위대함에 발끝만큼도 미치지 못할걸세. 그리고 그 엄청난 애국심! 문제는 한동안 그의 소식을 듣지 못했다는 점이지. 그가 걱정되기 시작하는군. 확인해 줄 수 있나?", "639135b04ed9512be67647d7 failMessageText": "", "639135b04ed9512be67647d7 successMessageText": "[소련공산당에 영광을 (Glory to CPSU), 성공]\n아파트에는 아무도 없었고 바닥에 피가 묻어있었다고? 피는 그의 것이 아닐 수도 있는데... 그의 소지품들이 아직 거기 있었나? 이런, 그는 그 휘장들을 남겨둘 사람이 아닌데. 그가 그것들을 얼마나 신경 썼는데. 그는 떠난 게 분명하군. 잠시 명복을 빌어주게.", @@ -21105,7 +20984,7 @@ "639135bbc115f907b14700a6 acceptPlayerMessage": "", "639135bbc115f907b14700a6 declinePlayerMessage": "", "639135bbc115f907b14700a6 completePlayerMessage": "", - "639135c3744e452011470807 name": "House Arrest - Part 1", + "639135c3744e452011470807 name": "가택 연금 - 파트 1", "639135c3744e452011470807 description": "Come here, my dear employee. Everything okay in the city? I got a few teams of mine missing. At first I thought, why the fuck would someone be so cocky, trying to shut my business down? Unless they're messing with me or something. I assumed it was that punk from the Lighthouse at first. But then I get a message from Seva Shket. He wrote that they were kept in some private prison. Have you heard about it? It's hidden somewhere in the old apartment buildings. Suits would dump their rivals there and whoever's easier to keep locked up than kept loose. I'd just kill them if that was such a problem, honestly. But it looks like someone would rather keep them in jail than just pop the cunts bothering them... Here's the deal: Shket was the only one in the group who escaped, but now he's on the run, hasn't contacted us since that message he sent. Didn't even tell us where to find the guys, this rat-faced fuck. The guys themselves are to blame for being caught like some bitches, and I would have just told them to fuck off for such a screwup. But the fact that someone's trying to fuck me over is outrageous. All right, enough of this bullshit. Find out where they keep my boys.", "639135c3744e452011470807 failMessageText": "", "639135c3744e452011470807 successMessageText": "Fucking hell. Why would someone keep them there? I'd understand if they sent me a letter saying they'd kill my people if I didn't pay up and shit. A serial killer or something? Anyway, come around in a little while, I'll find out what's going on.", @@ -21115,7 +20994,7 @@ "639135c3744e452011470807 acceptPlayerMessage": "", "639135c3744e452011470807 declinePlayerMessage": "", "639135c3744e452011470807 completePlayerMessage": "", - "639135cd8ba6894d155e77cb name": "House Arrest - Part 2", + "639135cd8ba6894d155e77cb name": "가택 연금 - 파트 2", "639135cd8ba6894d155e77cb description": "I made some background checks on the guy who runs the place. The warden's condo is in the same house. That's where he was supposed to take all the loot. You know, the payment for keeping people locked up. I'd be looking for a way into the apartment straight from the jail. So go check it out again. I'm guessing the motherfucker's still in there hiding. Okay, you know what to do with him. Anything you find in the crib is all yours. Deal?", "639135cd8ba6894d155e77cb failMessageText": "", "639135cd8ba6894d155e77cb successMessageText": "His crib is smashed to bits, huh. So I wasn't the only one who had a grudge against him. You say there's a body in there? Maybe that's him? Can't be sure, but I'll have the boys check it out.", @@ -21157,10 +21036,10 @@ "639135f286e646067c176a87 description": "[개정 작업 - 타르코프 시내 (Revision - Streets of Tarkov)]\n좋은 아침이오! 군용 차량들을 찾느라 고생 많았소. 내 정보원들에 따르면, 도시에 적어도 3대의 스트라이커가 있다 하오. 당신도 알다시피, 요즘 같은 시기에 그런 장비를 방치해두는건 좋은 선택이 아니오. 그것들을 챙겨와야겠소. 뭘 해야 할지 알 거라 믿소.", "639135f286e646067c176a87 failMessageText": "", "639135f286e646067c176a87 successMessageText": "[개정 작업 - 타르코프 시내 (Revision - Streets of Tarkov), 성공]\n훌륭하게 해냈소, 용병! 차량 상태는 어떻소? 분명히 우리가 고칠 수 있을 거라 생각하오, 그러면 당신도 조만간 도시에서 더 많은 스트라이커를 볼 수 있게 될 것이오! ...뭐라고 했소? 물론, 나도 그런 일이 안 생기면 좋겠소!", - "63927f14744e452011470816": "타르코프 시내(Streets of Tarkov) 지역에서 첫 번째 LAV III를 찾아 MS2000 마커 설치하기", - "63927f2d8ba6894d155e77e6": "타르코프 시내(Streets of Tarkov) 지역에서 Stryker 장갑차를 찾아 MS2000 마커 설치하기", - "63927f349444fb141f4e6f24": "타르코프 시내(Streets of Tarkov) 지역에서 두 번째 LAV III를 찾아 MS2000 마커 설치하기", - "639cebb78fe84d33a25a142b": "살아서 탈출하기", + "63927f14744e452011470816": "Locate and mark the first LAV III with an MS2000 Marker on Streets of Tarkov", + "63927f2d8ba6894d155e77e6": "Locate and mark the Stryker with an MS2000 Marker on Streets of Tarkov", + "63927f349444fb141f4e6f24": "Locate and mark the second LAV III with an MS2000 Marker on Streets of Tarkov", + "639cebb78fe84d33a25a142b": "Survive and extract from the location", "639135f286e646067c176a87 acceptPlayerMessage": "", "639135f286e646067c176a87 declinePlayerMessage": "", "639135f286e646067c176a87 completePlayerMessage": "", @@ -21175,9 +21054,9 @@ "639136d68ba6894d155e77cf description": "[안전한 통로 (Green Corridor)]\n저 빌어먹을 양놈들! 그들이 원하는 건 모두를 쏴 재끼는 것 뿐이군! 이미 협상이 끝났고, 심지어 통행료까지 지급했는데! 하지만 그 망할 놈들은 우리의 피를 더 원하나 보군! 좋네, 제군. 이리 와서 들어보게. 호송대가 마을을 지나고 있었다네. 중요한, 그것도 엄청나게 중요한 화물을 가지고 말일세. 심지어 나조차도 그 안에 뭐가 들었는지 몰라. 누군가가 호송대의 안전한 이동을 위한 요금을 가져갔고, 호송대가 통째로 사라져버렸다고. 생각해봐. 이 개자식들이! 무슨 일이 일어나고 있는지, 그리고 혹시나 건질게 남아있는지 찾아보게. 그리고 어디서 저놈들이 총격을 가했는지도 찾아보게나...", "639136d68ba6894d155e77cf failMessageText": "", "639136d68ba6894d155e77cf successMessageText": "The convoy was swept clean, huh? So it was all planned from the beginning... But the main vehicle wasn't breached, that's the main thing. The shooting started from the car dealership? So it was Kaban... Oh, sorry, I'm just thinking out loud, I'll have to think it over. Thank you. Come back later.", - "639cee16f5765f47cc7f0ea1": "살아서 탈출하기", - "63a7d53904d3dc28a52a2100": "타르코프 시내(Streets of Tarkov)에서 화물 수송대 찾기", - "63a7d58004d3dc28a52a2102": "매복 지점 찾기", + "639cee16f5765f47cc7f0ea1": "Survive and extract from the location", + "63a7d53904d3dc28a52a2100": "Locate the cargo convoy on Streets of Tarkov", + "63a7d58004d3dc28a52a2102": "Determine the ambush spot", "639136d68ba6894d155e77cf acceptPlayerMessage": "", "639136d68ba6894d155e77cf declinePlayerMessage": "", "639136d68ba6894d155e77cf completePlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "Survive and extract from Streets of Tarkov through Primorsky Ave Taxi V-Ex", "6397a6942e519e69d2139b25": "Locate and mark the first Patrol-A armored vehicle with an MS2000 Marker on Streets of Tarkov", "6397a7ce706b793c7d6094c9": "Locate and mark the second Patrol-A armored vehicle with an MS2000 Marker on Streets of Tarkov", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "I managed to contact the drivers. This wasn't easy, but I did unearth something interesting.", @@ -21436,7 +21314,7 @@ "6396701b9113f06a7c3b2379 failMessageText": "", "6396701b9113f06a7c3b2379 successMessageText": "We've been watching you. My shooter gave the go-ahead. That's all for now. I'll let you know when the time comes.", "6397ac912e519e69d2139b26": "Eliminate Sniper Scavs from over 350 meters away", - "639a169e6cd47c525121a116": "Reach the required Bolt-action Rifles skill level", + "639a169e6cd47c525121a116": "Reach the required Sniper Rifles skill level", "6396701b9113f06a7c3b2379 acceptPlayerMessage": "", "6396701b9113f06a7c3b2379 declinePlayerMessage": "", "6396701b9113f06a7c3b2379 completePlayerMessage": "I'm a real psycho sniper now. So, what's next?", @@ -21470,23 +21348,23 @@ "639872fa9b4fb827b200d8e5 declinePlayerMessage": "", "639872fa9b4fb827b200d8e5 completePlayerMessage": "", "639872fc93ae507d5858c3a6 name": "건스미스 - 파트 11", - "639872fc93ae507d5858c3a6 description": "[건스미스 - 파트 11 (Gunsmith - Part 11)]\n완벽한 타이밍에 와줬군! 혹시 바쁘지 않으면 손 좀 빌려줄 수 있겠나? 단골 고객이 KRISS Vector 9x19 기관단총을 의뢰해 왔어.\n\n기계식 조준기 또는 조준거리 300미터 이상의 조준경, 소음기, Mk.5 모듈러 레일, Tactical Dynamics 스켈레톤 전방 손잡이, 33발 이상 용량의 탄창 장착.\n\n인체공학 수치 50 이상, 수직/수평 반동의 합 230 이하.", + "639872fc93ae507d5858c3a6 description": "[건스미스 - 파트 11(Gunsmith - Part 11)]\n완벽한 타이밍에 와줬군! 혹시 바쁘지 않으면 손 좀 빌려줄 수 있겠나? 단골 고객이 KRISS Vector 9x19 기관단총을 의뢰해 왔어.\n\n조준경, 소음기, Mk.5 모듈러 레일, Tactical Dynamics 스켈레톤 전방 손잡이, 33발 이상 용량의 탄창 장착.\n\n인체공학 수치 50 이상, 수직/수평 반동의 합 200 이하.", "639872fc93ae507d5858c3a6 failMessageText": "", - "639872fc93ae507d5858c3a6 successMessageText": "[건스미스 - 파트 11 (Gunsmith - Part 11), 성공]\n자네도 알겠지만, 나는 45구경을 좋아하는데, 그래도 역시 벡터는 벡터구먼! 정말 아름답네.", + "639872fc93ae507d5858c3a6 successMessageText": "[건스미스 - 파트 11(Gunsmith - Part 11), 성공]\n자네도 알겠지만, 나는 45구경을 좋아하는데, 그래도 역시 벡터는 벡터구먼! 정말 아름답네.", "63987860c8f8cc12a47b02a6": "KRISS Vector 9x19를 요구 사항에 맞게 개조하기", "639872fc93ae507d5858c3a6 acceptPlayerMessage": "", "639872fc93ae507d5858c3a6 declinePlayerMessage": "", "639872fc93ae507d5858c3a6 completePlayerMessage": "", "639872fe8871e1272b10ccf6 name": "건스미스 - 파트 14", - "639872fe8871e1272b10ccf6 description": "[건스미스 - 파트 14 (Gunsmith - Part 14)]\n어서 오게. 새로운 주문이 들어왔어. 바로 HK 416A5 소총이야. 부품은 전부 Tan 색 또는 FDE 색으로 부탁해. 마치 특수부대처럼 알겠지? 아, 그리고 쓰레기 같은 상태의 소총에 조립하면 안 돼. 80% 이상의 내구도를 가진 총기로 부탁해.\n\nEOTech EXPS3 홀로그래픽 조준경 (Tan), SureFire SOCOM556-RC2 소음기, LA-5B/PEQ 전술 장치, Magpul RVG 손잡이 (FDE), AR-15 Magpul MOE 권총 손잡이 (FDE), Magpul UBR GEN2 개머리판 (FDE), 30발 이상 용량의 탄창 장착.\n\n인체공학 수치 60 이상, 수직/수평 반동의 합 300 이하, 무게 4 kg 이하.", + "639872fe8871e1272b10ccf6 description": "[건스미스 - 파트 14(Gunsmith - Part 14)]\n어서 오게. 새로운 주문이 들어왔어. 바로 HK 416A5 소총이야. 부품은 전부 Tan 색 또는 FDE 색으로 부탁해. 마치 특수부대처럼 알겠지? 아, 그리고 쓰레기 같은 상태의 소총에 조립하면 안 돼. 80% 이상의 내구도를 가진 총기로 부탁해.\n\nEOTech EXPS3 홀로그래픽 조준경 (Tan), SureFire SOCOM556-RC2 소음기, LA-5B/PEQ 전술 장치, Magpul RVG 손잡이 (FDE), AR-15 Magpul MOE 권총 손잡이 (FDE), Magpul UBR GEN2 개머리판 (FDE) 장착.\n\n인체공학 수치 60 이상, 수직/수평 반동의 합 250 이하, 무게 4 kg 이하.", "639872fe8871e1272b10ccf6 failMessageText": "", - "639872fe8871e1272b10ccf6 successMessageText": "[건스미스 - 파트 14 (Gunsmith - Part 14), 성공]\n진짜 특수부대 총기 그 자체로군! 도와줘서 정말 고마워.", + "639872fe8871e1272b10ccf6 successMessageText": "[건스미스 - 파트 14(Gunsmith - Part 14), 성공]\n진짜 특수부대 총기 그 자체로군! 도와줘서 정말 고마워.", "639879addecada40426d3449": "HK 416A5를 요구 사항에 맞게 개조하기", "639872fe8871e1272b10ccf6 acceptPlayerMessage": "", "639872fe8871e1272b10ccf6 declinePlayerMessage": "", "639872fe8871e1272b10ccf6 completePlayerMessage": "", "639873003693c63d86328f25 name": "건스미스 - 파트 19", - "639873003693c63d86328f25 description": "[건스미스 - 파트 19 (Gunsmith - Part 19)]\n어서 오게, 일거리가 하나 있어. SVDS 주문일세.\n\nMarch Tactical 3-24x42 FFP 조준경, 소음기, SAG MK1 섀시, Magpul MOE 권총 손잡이 (검은색), Magpul UBR GEN2 개머리판 (검은색) 장착.\n\n인체공학 수치 15 이상, 수직/수평 반동의 합 500 이하. ", + "639873003693c63d86328f25 description": "[건스미스 - 파트 19(Gunsmith - Part 19)]\n어서 오게, 일거리가 하나 있어. SVDS 주문일세.\n\nMarch Tactical 3-24x42 FFP 조준경, 소음기, SAG MK1 섀시, Magpul MOE 권총 손잡이 (검은색), Magpul UBR GEN2 개머리판 (검은색) 장착.\n\n인체공학 수치 15 이상, 수직/수평 반동의 합 400 이하.", "639873003693c63d86328f25 failMessageText": "", "639873003693c63d86328f25 successMessageText": "[건스미스 - 파트 19(Gunsmith - Part 19), 성공]\n다 만들었나? 정말 훌륭하군. 내 옆에 테이블에 올려둬, 지금은 좀 바빠서 말이야...", "63987a4e3693c63d86328f27": "SVDS를 요구 사항에 맞게 개조하기", @@ -21494,7 +21372,7 @@ "639873003693c63d86328f25 declinePlayerMessage": "", "639873003693c63d86328f25 completePlayerMessage": "", "63987301e11ec11ff5504036 name": "건스미스 - 파트 21", - "63987301e11ec11ff5504036 description": "[건스미스 - 파트 21 (Gunsmith - Part 21)]\n흥미로운 주문이 들어왔네. 이번엔 2자루를 한 번에 만들어 달라는 주문인데, 자네라면 충분히 할 수 있을 걸세.\n\n1. Remington Model 700 저격소총\nM700용 AB Arms 부품을 풀세트로 장착, 조준경, 소음기 장착. 무게는 최대한 가볍게, 작은 용량의 탄창 장착.\n인체공학 수치 35 이상, 수직/수평 반동의 합 500 이하.\n\n2. Colt M1911 권총\nAnarchy Outdoors 제퇴기, 손전등, Pachmayr 손잡이 장착.", + "63987301e11ec11ff5504036 description": "[건스미스 - 파트 21(Gunsmith - Part 21)]\n흥미로운 주문이 들어왔네. 이번엔 2자루를 한 번에 만들어 달라는 주문인데, 자네라면 충분히 할 수 있을 걸세.\n\n1. Remington Model 700 저격소총\nM700용 AB Arms 부품을 풀세트로 장착, 조준경, 소음기 장착. 최대한 가볍게, 작은 용량의 탄창 장착.\n인체공학 수치 35 이상, 수직/수평 반동의 합 400 이하.\n\n2. Colt M1911 권총\nAnarchy Outdoors 제퇴기, 손전등, Pachmayr 손잡이 장착.", "63987301e11ec11ff5504036 failMessageText": "", "63987301e11ec11ff5504036 successMessageText": "[건스미스 - 파트 21(Gunsmith - Part 21), 성공]\n좋아, 볼티는 거기 보이고, 권총은 어디 갔나? 거기 있었구나! 오구오구 이쁜 내 새끼. 정말 잘했네 친구. 다음 주문은 내일 들어올 거야. 그때까지 다른 볼 일 있으면 보고 오면 되네.", "63987b49cd51826f7a069b85": "M700을 요구 사항에 맞게 개조하기", @@ -21524,7 +21402,7 @@ "63a5cf262964a7488f5243ce description": "[시범운용 - 파트 2 (Test Drive - Part 2)]\n반갑네! 자, 시작하겠네. 기대되는가? 이번 일은 꽤나 구체적인데, 러시아제 장난감 하나를 근접전에서 사용해봐야 하네. 그래야 실제 도시 환경에서 사용할 수 있다는 믿음을 줄 수 있기 때문이지. 이 장난감의 효과를 의심하는 고객들이 몇몇 있는데... 자네가 그들의 마음을 돌릴 수 있겠나?", "63a5cf262964a7488f5243ce failMessageText": "", "63a5cf262964a7488f5243ce successMessageText": "[시범운용 - 파트 2 (Test Drive - Part 2)]\n어떤가? 잘 작동하던가? 도심에서의 근접 전투에 사용할만 한가?", - "63a5cf262964a7488f5243d1": "타르코프 시내(Streets of Tarkov) 에서 소음기와 KP-SR2 반사 조준기를 장착한 SR-2M \"Veresk\"를 사용하여 PMC 사살하기", + "63a5cf262964a7488f5243d1": "Eliminate PMC operatives while using an SR-2M \"Veresk\" with a suppressor and KP-SR2 reflex sight on Streets of Tarkov", "63a5cf262964a7488f5243cf": "", "63a5cf262964a7488f5243d0": "", "63a5cf262964a7488f5243ce acceptPlayerMessage": "", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "Eliminate Scavs while using melee weapons on Interchange", "63a9b5b2813bba58a50c9eeb": "Eliminate Scavs while using melee weapons on Customs", "63a9b5f064b9631d9178276b": "Eliminate Scavs while using melee weapons on Reserve", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21691,8 +21568,8 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "One less scumbag to worry about. You did well, kid.", "64e7ba17220ee966bf425ecb": "Locate and eliminate Kaban", "64e7ba4a6393886f74119f3d": "Eliminate Kaban's guards at the car dealership on Streets of Tarkov", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", @@ -21925,7 +21802,7 @@ "657315ddab5a49b71f098853 failMessageText": "I see you are already experienced enough for more complex matters. Leave this one to the rookies then.", "657315ddab5a49b71f098853 successMessageText": "Mission accomplished? That's great news, thank you. I hope that our cooperation will be equally productive in the future.", "657320308c789bb102d2cde8": "Найти пункт МЧС", - "65732ac3c67dcd96adffa3c7": "그라운드 제로 에서 EMERCOM station 찾기", + "65732ac3c67dcd96adffa3c7": "Locate the Emercom station on Ground Zero", "657330fc0c93c8c281b2b6b4": "Передать 3 медицинских предмета", "65817bf31404f3565aef9fec": "Hand over any medicine items", "657315ddab5a49b71f098853 acceptPlayerMessage": "", @@ -22137,7 +22014,7 @@ "61604635c725987e815b1a46 startedMessageText 5c0647fdd443bc2504c2d371 0": " ", "61604635c725987e815b1a46 failMessageText 5c0647fdd443bc2504c2d371 0": " ", "61604635c725987e815b1a46 successMessageText 5c0647fdd443bc2504c2d371 0": "Thank you, kid, good job. Here, that’s for the trouble.", - "61604635c725987e815b1a46 description 5c0647fdd443bc2504c2d371 0": "Hey there, kid. I'm running low on some of the supplies, some for my store, some for me. Can you help me out? Wait here, I'll make a list. Thank you.", + "61604635c725987e815b1a46 description 5c0647fdd443bc2504c2d371 0": " Hey there, kid. I'm running low on some of the supplies, some for my store, some for me. Can you help me out? Wait here, I'll make a list. Thank you.", "61604635c725987e815b1a46 changeQuestMessageText 5c0647fdd443bc2504c2d371 0": "사실, 내가 상황을 설명하는 동안 자네의 눈을 보니 이 일을 맡을지 말지 고민하고 있다는 걸 눈치챘다네. 정말 귀찮지만, 이 일을 맡아줄 다른 사람을 찾아야겠군.", "61604635c725987e815b1a46 startedMessageText 5a7c2eca46aef81a7ca2145d 0": " ", "61604635c725987e815b1a46 failMessageText 5a7c2eca46aef81a7ca2145d 0": " ", @@ -22539,148 +22416,148 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "좋아.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "모든 물건은 목록에 적어놨어. 물건을 획득한 후 투입 지점으로 가져와.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "내 인내심이 그만큼 줄어들겠지만, 다른 임무로 바꿔줄 수도 있어.", - "6512ea46f7a078264a4376e4 name": "PMC의 가장 친한 친구", - "6512ea46f7a078264a4376e4 description": "PMC로 플레이 하며 인터체인지(Interchange)에서 Scav 협동 탈출구로 살아서 탈출하기", - "6512eb3ddfb0ae1ee75a0376 name": "여행자", - "6512eb3ddfb0ae1ee75a0376 description": "PMC로 플레이하며 타르코프의 모든 맵에서 살아서 탈출하기", - "6512eb68f6c95fe8862e384d": "삼림(Woods)에서 살아서 탈출하기", - "6512eb9a12da627da04880b3": "타르코프 시내(Streets of Tarkov)에서 살아서 탈출하기", - "6512efeca198eb75ff9ca1c7": "세관(Custons)에서 살아서 탈출하기", - "6512f0166a9637a1cb352507": "공장(Factory)에서 살아서 탈출하기", - "6512f09316440cb67572c0fa": "인터체인지(Interchange)에서 살아서 탈출하기", - "6512f4a0df345dd5029b586a": "등대(Lighthouse)에서 살아서 탈출하기", - "6512f4fb1ea20e8cd761de2a": "해안선(Shoreline)에서 살아서 탈출하기", - "6512f819fddeee167c2518e3": "연구소(The Lab)에서 살아서 탈출하기", - "6512f83596d92e790ada99b0": "리저브(Reserve)에서 살아서 탈출하기", - "657b1feef3231fc23e3ccdf7": "그라운드 제로(Ground Zero)에서 살아서 탈출하기", - "6512f16bde333c33d5127cbc name": "킬러들의 킬러", - "6512f16bde333c33d5127cbc description": "PMC로 플레이하며 밤중에 나타나 후드를 쓰고 특이한 칼을 휘두르는 사람을 사살하기", - "6512f1e3be73cc7f07358ed5 name": "스타일의 예술", - "6512f1e3be73cc7f07358ed5 description": "PMC로 플레이하며 처음으로 킬라 사살하기", - "6513eb6e0dc723592b0f9095 name": "형이나 불러와", - "6513eb6e0dc723592b0f9095 description": "PMC로 플레이하며 처음으로 타길라 사살하기", - "6513ed89cf2f1c285e606068 name": "제재소의 침묵", - "6513ed89cf2f1c285e606068 description": "PMC로 플레이하며 처음으로 슈트르만 사살하기", - "6513ee11a3dd9b6aa7159b4a name": "거래 성사", - "6513ee11a3dd9b6aa7159b4a description": "PMC로 플레이하며 처음으로 르샬라 사살하기", - "6513eec00dc723592b0f90cc name": "꿩 사냥", - "6513eec00dc723592b0f90cc description": "PMC로 플레이하며 처음으로 글루하 사살하기", - "6513efa1b49e3253755f47eb name": "요양원", - "6513efa1b49e3253755f47eb description": "PMC로 플레이하며 처음으로 세니타 사살하기", - "6513f0a10dc723592b0f90cf name": "웃기는 묘지기", - "6513f0a10dc723592b0f90cf description": "PMC로 플레이하며 처음으로 카반 사살하기", - "6513f1feec10ff011f17c7ea name": "이제 세 명 남았다!", - "6513f1feec10ff011f17c7ea description": "PMC로 플레이하며 한 번의 레이드 동안 나이트, 버드아이, 빅파이프를 사살하기", - "6513f28cb49e3253755f47f3 name": "눈먼 감시자", - "6513f28cb49e3253755f47f3 description": "PMC로 플레이하며 처음으로 즈랴치 사살하기", - "65140ab8ec10ff011f17cc10 name": "입으면 안되는 것", - "65140ab8ec10ff011f17cc10 description": "PMC로 플레이하며 킬라 15번 사살하기", - "65140b55cf2f1c285e606414 name": "망치와 낫", - "65140b55cf2f1c285e606414 description": "PMC로 플레이하며 타길라 15번 사살하기", - "65140bbec31fcb0e163577b9 name": "제재소의 왕", - "65140bbec31fcb0e163577b9 description": "PMC로 플레이하며 슈트르만 15번 사살하기", - "65140c00b1c08b0feb216d50 name": "타르코프 마지막 결전", - "65140c00b1c08b0feb216d50 description": "PMC로 플레이하며 르샬라 15번 사살하기", - "65141032a3dd9b6aa7159ed3 name": "또 다른 미제사건", - "65141032a3dd9b6aa7159ed3 description": "PMC로 플레이하며 글루하 15번 사살하기", - "651411f1cf2f1c285e606423 name": "의사 부른 사람?", - "651411f1cf2f1c285e606423 description": "PMC로 플레이하며 세니타 15번 사살하기", - "651412b8c31fcb0e163577c5 name": "늙은 개와 오래된 재주", - "651412b8c31fcb0e163577c5 description": "PMC로 플레이하며 카반 15번 사살하기", - "6514134eec10ff011f17cc26 name": "나는 어둠의 목소리를 듣는다", - "6514134eec10ff011f17cc26 description": "PMC로 플레이하며 나이트 15번 사살하기", + "6512ea46f7a078264a4376e4 name": "PMC's Best Friend", + "6512ea46f7a078264a4376e4 description": "Survive and extract from Interchange through the Scav Co-Op extraction while playing as a PMC", + "6512eb3ddfb0ae1ee75a0376 name": "Traveler", + "6512eb3ddfb0ae1ee75a0376 description": "Survive and extract from every location in Tarkov while playing as a PMC ", + "6512eb68f6c95fe8862e384d": "Survive and extract from Woods", + "6512eb9a12da627da04880b3": "Survive and extract from Streets of Tarkov", + "6512efeca198eb75ff9ca1c7": "Survive and extract from Customs", + "6512f0166a9637a1cb352507": "Survive and extract from Factory", + "6512f09316440cb67572c0fa": "Survive and extract from Interchange", + "6512f4a0df345dd5029b586a": "Survive and extract from Lighthouse", + "6512f4fb1ea20e8cd761de2a": "Survive and extract from Shoreline", + "6512f819fddeee167c2518e3": "Survive and extract from The Lab", + "6512f83596d92e790ada99b0": "Survive and extract from Reserve", + "657b1feef3231fc23e3ccdf7": "Survive and extract from Ground Zero", + "6512f16bde333c33d5127cbc name": "Killer of Killers", + "6512f16bde333c33d5127cbc description": "Eliminate one of the hooded men with their own knife at night time while playing as a PMC", + "6512f1e3be73cc7f07358ed5 name": "Art of Style", + "6512f1e3be73cc7f07358ed5 description": "Eliminate Killa for the first time while playing as a PMC", + "6513eb6e0dc723592b0f9095 name": "Call Your Brother", + "6513eb6e0dc723592b0f9095 description": "Eliminate Tagilla for the first time while playing as a PMC", + "6513ed89cf2f1c285e606068 name": "Silence of the Sawmill", + "6513ed89cf2f1c285e606068 description": "Eliminate Shturman for the first time while playing as a PMC", + "6513ee11a3dd9b6aa7159b4a name": "Deal to Make", + "6513ee11a3dd9b6aa7159b4a description": "Eliminate Reshala for the first time while playing as a PMC", + "6513eec00dc723592b0f90cc name": "Grouse Hunting", + "6513eec00dc723592b0f90cc description": "Eliminate Glukhar for the first time while playing as a PMC", + "6513efa1b49e3253755f47eb name": "Sanatorium Orderly", + "6513efa1b49e3253755f47eb description": "Eliminate Sanitar for the first time while playing as a PMC", + "6513f0a10dc723592b0f90cf name": "Funny Graveyard Keeper", + "6513f0a10dc723592b0f90cf description": "Eliminate Kaban for the first time while playing as a PMC", + "6513f1feec10ff011f17c7ea name": "Now There Are Three of Them!", + "6513f1feec10ff011f17c7ea description": "Eliminate Knight, Birdeye, and Big Pipe in a single raid for the first time while playing as a PMC", + "6513f28cb49e3253755f47f3 name": "The Blind Watcher", + "6513f28cb49e3253755f47f3 description": "Eliminate Zryachiy for the first time while playing as a PMC", + "65140ab8ec10ff011f17cc10 name": "What Not To Wear", + "65140ab8ec10ff011f17cc10 description": "Eliminate Killa 15 times while playing as a PMC", + "65140b55cf2f1c285e606414 name": "Hammer and Scythe", + "65140b55cf2f1c285e606414 description": "Eliminate Tagilla 15 times while playing as a PMC", + "65140bbec31fcb0e163577b9 name": "King of the Sawmill", + "65140bbec31fcb0e163577b9 description": "Eliminate Shturman 15 times while playing as a PMC", + "65140c00b1c08b0feb216d50 name": "This Is a Tarkov Showdown", + "65140c00b1c08b0feb216d50 description": "Eliminate Reshala 15 times while playing as a PMC", + "65141032a3dd9b6aa7159ed3 name": "Another Cold Case", + "65141032a3dd9b6aa7159ed3 description": "Eliminate Glukhar 15 times while playing as a PMC", + "651411f1cf2f1c285e606423 name": "Who Called the Doctor?", + "651411f1cf2f1c285e606423 description": "Eliminate Sanitar 15 times while playing as a PMC", + "651412b8c31fcb0e163577c5 name": "Old Dog With Old tricks", + "651412b8c31fcb0e163577c5 description": "Eliminate Kaban 15 times while playing as a PMC", + "6514134eec10ff011f17cc26 name": "I Hear the Voice of Darkness", + "6514134eec10ff011f17cc26 description": "Eliminate Knight 15 times while playing as a PMC", "651412ef0afef6dad1a21477": "", "65142ceb93d02c082b8e4cc9": "", "65142d0701e02ae1f559d606": "", - "651413e9c31fcb0e163577c9 name": "훌륭한 사격 솜씨", - "651413e9c31fcb0e163577c9 description": "PMC로 플레이하며 즈랴치 15번 사살하기", - "6514143d59647d2cb3213c93 name": "ULTRA의 지배자", - "6514143d59647d2cb3213c93 description": "PMC로 플레이하며 킬라 100번 사살하기", - "651415feb49e3253755f4b68 name": "만수무강 하시옵소서!", - "651415feb49e3253755f4b68 description": "PMC로 플레이하며 보든 보스 한 번씩 사살하기", - "651414b741f4ad07ba7d55f9": "카반 사살하기", - "651414eb3ec86f33dd54d978": "르샬라 사살하기", - "651415067c262d47d685c6d9": "글루하 사살하기", - "6514151b2e8590fc2ac1d859": "킬라 사살하기", - "6514151da13f174e3f52bc6e": "나이트 사살하기", - "65141520143ef6349ad5f071": "슈트르만 사살하기", - "6514156e21e1d85a7d029f8a": "세니타 처치하기", - "65141570b18e12f60ba2e450": "타길라 사살하기", - "65141571dbcb26761524e977": "즈랴치 사살하기", - "651415cfe97ba875119ef01c": "빅 파이프 사살하기", - "651415d13c02ff4aa9e9a426": "버드아이 사살하기", - "657b1f2e057c1607e83c2c26": "콜론타이 사살하기", - "657b21a3564a9197c2778f5a": "콜론타이 사살하기", - "6514174fb1c08b0feb216d73 name": "크리스의 후계자", - "6514174fb1c08b0feb216d73 description": "PMC로 플레이하며 500미터 이상 거리에 있는 PMC를 헤드샷으로 사살하기", - "651417d6ec10ff011f17cc31 name": "존의 후계자", - "651417d6ec10ff011f17cc31 description": "PMC로 플레이하며 한 번의 레이드 동안 권총으로 4명의 PMC를 헤드샷으로 사살하기", - "6514184ec31fcb0e163577d2 name": "킬러7", - "6514184ec31fcb0e163577d2 description": "PMC로 플레이하며 한 번의 레이드 동안 7명의 PMC 사살하기", - "651419eea3dd9b6aa7159ee5 name": "블라인드 퓨리", - "651419eea3dd9b6aa7159ee5 description": "PMC로 플레이하며 섬광 효과를 받고있는 아무 적 사살하기", - "65141a3059647d2cb3213c9e name": "조각가", - "65141a3059647d2cb3213c9e description": "PMC로 플레이하며 근접무기로 30명의 PMC 사살하기", - "65141ab70dc723592b0f9482 name": "취권", - "65141ab70dc723592b0f9482 description": "PMC로 플레이하며 알코올에 취한 상태로 PMC를 헤드샷으로 사살하기", + "651413e9c31fcb0e163577c9 name": "Now That's a Good Shot", + "651413e9c31fcb0e163577c9 description": "Eliminate Zryachiy 15 times while playing as a PMC", + "6514143d59647d2cb3213c93 name": "Master of ULTRA", + "6514143d59647d2cb3213c93 description": "Eliminate Killa 100 times while playing as a PMC", + "651415feb49e3253755f4b68 name": "Long Live the King!", + "651415feb49e3253755f4b68 description": "Eliminate every Boss once while playing as a PMC", + "651414b741f4ad07ba7d55f9": "Locate and eliminate Kaban", + "651414eb3ec86f33dd54d978": "Locate and eliminate Reshala", + "651415067c262d47d685c6d9": "Locate and eliminate Glukhar", + "6514151b2e8590fc2ac1d859": "Locate and eliminate Killa", + "6514151da13f174e3f52bc6e": "Locate and eliminate Knight", + "65141520143ef6349ad5f071": "Locate and eliminate Shturman", + "6514156e21e1d85a7d029f8a": "Locate and eliminate Sanitar", + "65141570b18e12f60ba2e450": "Locate and eliminate Tagilla", + "65141571dbcb26761524e977": "Locate and eliminate Zryachiy", + "651415cfe97ba875119ef01c": "Locate and eliminate Big Pipe", + "651415d13c02ff4aa9e9a426": "Locate and eliminate Birdeye", + "657b1f2e057c1607e83c2c26": " Locate and eliminate Kollontai", + "657b21a3564a9197c2778f5a": "Locate and eliminate Kollontai", + "6514174fb1c08b0feb216d73 name": "Chris's Heir", + "6514174fb1c08b0feb216d73 description": "Eliminate a PMC operative with a headshot from over 500 meters away while playing as a PMC", + "651417d6ec10ff011f17cc31 name": "John's Heir", + "651417d6ec10ff011f17cc31 description": "Eliminate 4 PMC operatives with a headshot while using a pistol in a single raid while playing as a PMC", + "6514184ec31fcb0e163577d2 name": "Killer7", + "6514184ec31fcb0e163577d2 description": "Eliminate 7 PMC operatives in a single raid while playing as a PMC", + "651419eea3dd9b6aa7159ee5 name": "Blind Fury", + "651419eea3dd9b6aa7159ee5 description": "Eliminate any enemy while suffering from the Flash effect while playing as a PMC", + "65141a3059647d2cb3213c9e name": "Make a Notch", + "65141a3059647d2cb3213c9e description": "Eliminate 30 PMC operators with a melee weapon while playing as a PMC", + "65141ab70dc723592b0f9482 name": "Drunken Master", + "65141ab70dc723592b0f9482 description": "Eliminate a PMC operative with a headshot while under the alcohol effect while playing as a PMC", "65141b9859647d2cb3213ca2 name": "U-SUCC", - "65141b9859647d2cb3213ca2 description": "USEC PMC 50명 사살하기", - "65141bdfcf2f1c285e606446 name": "곰과 함께", - "65141bdfcf2f1c285e606446 description": "BEAR PMC 50명 사살하기", - "65141c30ec10ff011f17cc3b name": "타르코프에 오신 것을 환영합니다", - "65141c30ec10ff011f17cc3b description": "처음으로 타르코프에서 사망하기", - "65141c80ec10ff011f17cc3e name": "언제나 처음은 아프지", - "65141c80ec10ff011f17cc3e description": "도주하지 않고 생존 상태로 레이드에서 탈출하기", - "65141cd2cf2f1c285e606449 name": "시켜만 주십시오", - "65141cd2cf2f1c285e606449 description": "PMC로 플레이하며 10번 연속 생존 상태로 탈출하기", + "65141b9859647d2cb3213ca2 description": "Eliminate 50 USEC PMC operators", + "65141bdfcf2f1c285e606446 name": "BEAR With Me", + "65141bdfcf2f1c285e606446 description": "Eliminate 50 BEAR PMC operators", + "65141c30ec10ff011f17cc3b name": "Welcome to Tarkov", + "65141c30ec10ff011f17cc3b description": "Die in Tarkov for the first time", + "65141c80ec10ff011f17cc3e name": "First Time Always Hurts", + "65141c80ec10ff011f17cc3e description": "Survive a raid without the Run-through status for the first time", + "65141cd2cf2f1c285e606449 name": "Ready for Anything", + "65141cd2cf2f1c285e606449 description": "Survive 10 consecutive raids while playing as a PMC", "65141dd6303df252af1c72c9 name": "PMC", - "65141dd6303df252af1c72c9 description": "PMC로 플레이하며 생존 상태로 300번 탈출하기", + "65141dd6303df252af1c72c9 description": "Survive 300 raids while playing as a PMC", "65141e37cf2f1c285e606361 name": "That's What She Said", - "65141e37cf2f1c285e606361 description": "PMC로 플레이하며 공장(Factory) 사무실에서 파밍하기", + "65141e37cf2f1c285e606361 description": "Search the office in Factory while playing as a PMC", "65141eb5c31fcb0e163577dd name": "Lost", - "65141eb5c31fcb0e163577dd description": "PMC로 플레이하며 삼림(Woods)에서 추락한 비행기 발견하기", - "65141f80a3dd9b6aa7159ef0 name": "생존자", - "65141f80a3dd9b6aa7159ef0 description": "PMC로 플레이하며 안 좋은 효과들을 각각 또는 동시에 적용된 상황에서 생존 상태로 탈출하기", - "65141fb6ed5340c843c5dcb8": "타박상을 입은 상태에서 탈출하기", - "65141ff769b11104777a6197": "탈수 상태에서 탈출하기", - "651420b3c6c7ce8343cc8976": "출혈이 있는 상태에서 탈출하기", - "65142168f401d144e9f3e2ac": "떨림 효과가 있는 상태에서 탈출하기", - "651421ff151e86f67ca3c3ea": "통증 효과가 있는 상태에서 탈출하기", - "65145d0d1d3ff24a185abbb0": "탈진 효과가 있는 상태에서 탈출하기", - "651433702d8de66f60699f98": "금방 생긴 상처가 있는 상태에서 탈출하기", - "651433371dab0f7e105828ff": "섬광탄 효과가 있는 상태에서 탈출하기", - "65143313b1a83e60ef15a45b": "기절 효과가 있는 상태에서 탈출하기", - "651432b59bf826df60b20d89": "골절한 상태로 탈출하기", - "65145e2fd9f595730e564291": "터널시야 효과가 있는 상태에서 탈출하기", - "65145f005e81cb4466a82e04": "중독된 상태로 탈출하기", - "6514321bec10ff011f17ccac name": "반딧불이", - "6514321bec10ff011f17ccac description": "PMC로 플레이하며 등대지기 만나기", - "65145cbc303df252af1c73d5 name": "뭔가 잊은 거 없어?", - "65145cbc303df252af1c73d5 description": "아무런 무기 없이 레이드에 들어가기", - "6527d2e2c656a951ad1528c3 name": "평화의 담뱃대", - "6527d2e2c656a951ad1528c3 description": "PMC로 플레이하며 빅 파이프 15번 사살하기", - "6527d3aac656a951ad1528ce name": "빨간 책", - "6527d3aac656a951ad1528ce description": "PMC로 플레이하며 버드아이 15번 사살하기", - "6527ee4a647c29201011defe name": "넌 내 형제가 아니야", - "6527ee4a647c29201011defe description": "스캐브로 플레이하며 스캐브 사살하기", - "6529097eccf6aa5f8737b3d0 name": "스노우볼", - "6529097eccf6aa5f8737b3d0 description": "PMC로 플레이하며 죽지 않고 보든 보스 한 번씩 사살하기", - "652909ac342bdd14e0bcb1bb": "카반 사살하기", - "652909cd3f9e480e9d1a3489": "르샬라 사살하기", - "652909ef8cb2a699ccbc2cf0": "글루하 사살하기", - "65290de6e76953256668112c": "킬라 사살하기", - "65290e22f16e69470b5d6145": "나이트 사살하기", - "65290e51fee42b19970ccbfd": "슈트르만 사살하기", - "65290e8d6193b1a4e12a7967": "세니타 사살하기", - "65290f50897943fb9bf8955d": "버드아이 사살하기", - "65290f3fd7c6005f6d78f453": "빅 파이프 사살하기", - "65290f1579363c7810e7233d": "즈랴치 사살하기", - "65290ed47ef294bc6eb7ee85": "타길라 사살하기", - "657b1e91958145eb193f9a40": "콜론타이 사살하기", - "655b49bc91aa9e07687ae47c name": "정의", - "655b49bc91aa9e07687ae47c description": "PMC로 플레이하며 처음으로 콜론타이 사살하기", - "655b4a576689c676ce57acb6 name": "진짜 범죄", - "655b4a576689c676ce57acb6 description": "PMC로 플레이하며 콜론타이 15번 사살하기", + "65141eb5c31fcb0e163577dd description": "Locate the crashed plane on Woods while playing as a PMC", + "65141f80a3dd9b6aa7159ef0 name": "Survivor", + "65141f80a3dd9b6aa7159ef0 description": "Survive and extract from any location with each of the possible negative effects either separately or combined while playing as a PMC ", + "65141fb6ed5340c843c5dcb8": "Survive and extract from any location with the Concussion effect", + "65141ff769b11104777a6197": "Survive and extract from any location with the Dehydration effect", + "651420b3c6c7ce8343cc8976": "Survive and extract from any location with the Bleeding effect", + "65142168f401d144e9f3e2ac": "Survive and extract from any location with the Tremor effect", + "651421ff151e86f67ca3c3ea": "Survive and extract from any location with the Pain effect", + "65145d0d1d3ff24a185abbb0": "Survive and extract from any location with the Fatigue effect", + "651433702d8de66f60699f98": "Survive and extract from any location with the Fresh wound effect", + "651433371dab0f7e105828ff": "Survive and extract from any location with the Flash effect", + "65143313b1a83e60ef15a45b": "Survive and extract from any location with the Stun effect", + "651432b59bf826df60b20d89": "Survive and extract from any location with the Fracture effect", + "65145e2fd9f595730e564291": "Survive and extract from any location with the Tunnel vision effect", + "65145f005e81cb4466a82e04": "Survive and extract from any location with the Toxin effect", + "6514321bec10ff011f17ccac name": "Firefly", + "6514321bec10ff011f17ccac description": "Meet Lightkeeper for the first time while playing as a PMC", + "65145cbc303df252af1c73d5 name": "Missing Something?", + "65145cbc303df252af1c73d5 description": "Start a raid without any weapon", + "6527d2e2c656a951ad1528c3 name": "Smoke the Peace Pipe", + "6527d2e2c656a951ad1528c3 description": "Eliminate Big Pipe 15 times while playing as a PMC", + "6527d3aac656a951ad1528ce name": "The Red Book", + "6527d3aac656a951ad1528ce description": "Eliminate Birdeye 15 times while playing as a PMC", + "6527ee4a647c29201011defe name": "You Are Not My Brother", + "6527ee4a647c29201011defe description": "Eliminate a Scav while playing as a Scav", + "6529097eccf6aa5f8737b3d0 name": "Snowball", + "6529097eccf6aa5f8737b3d0 description": "Eliminate every Boss without dying while playing as a PMC", + "652909ac342bdd14e0bcb1bb": "Locate and eliminate Kaban", + "652909cd3f9e480e9d1a3489": "Locate and eliminate Reshala", + "652909ef8cb2a699ccbc2cf0": "Locate and eliminate Glukhar", + "65290de6e76953256668112c": "Locate and eliminate Killa", + "65290e22f16e69470b5d6145": "Locate and eliminate Knight", + "65290e51fee42b19970ccbfd": "Locate and eliminate Shturman", + "65290e8d6193b1a4e12a7967": "Locate and eliminate Sanitar", + "65290f50897943fb9bf8955d": "Locate and eliminate Birdeye", + "65290f3fd7c6005f6d78f453": "Locate and eliminate Big Pipe", + "65290f1579363c7810e7233d": "Locate and eliminate Zryachiy", + "65290ed47ef294bc6eb7ee85": "Locate and eliminate Tagilla", + "657b1e91958145eb193f9a40": "Locate and eliminate Kollontai", + "655b49bc91aa9e07687ae47c name": "Justice", + "655b49bc91aa9e07687ae47c description": "Eliminate Kollontay for the first time while playing as a PMC", + "655b4a576689c676ce57acb6 name": "True Crime", + "655b4a576689c676ce57acb6 description": "Eliminate Kollontay 15 times while playing as a PMC", "65606e084c9e9c2c190bd25f name": "", "65606e084c9e9c2c190bd25f description": "" } \ No newline at end of file diff --git a/project/assets/database/locales/global/pl.json b/project/assets/database/locales/global/pl.json index e939bee7..2efa5fe2 100644 --- a/project/assets/database/locales/global/pl.json +++ b/project/assets/database/locales/global/pl.json @@ -2675,7 +2675,7 @@ "5a16b8a9fcdbcb00165aa6ca Name": "Montaż Norotos Titanium Advanced Tactical Mount", "5a16b8a9fcdbcb00165aa6ca ShortName": "TATM", "5a16b8a9fcdbcb00165aa6ca Description": "Lekkie tytanowe mocowanie do montażu na złączu Shroud na kasku. Jest niezbędne do dalszego montażu gogli noktowizyjnych lub innych urządzeń optycznych. Wyprodukowany przez firmę Norotos Inc.", - "5a16b93dfcdbcbcae6687261 Name": "Montaż AN/PVS-14 Norotos Dual Dovetail", + "5a16b93dfcdbcbcae6687261 Name": "Montaż AN/PVS-14 Dual Dovetail", "5a16b93dfcdbcbcae6687261 ShortName": "DDT", "5a16b93dfcdbcbcae6687261 Description": "Montaż Dual Dovetail Interface Arm do noktowizora AN/PVS-14.", "5a16b9fffcdbcb0176308b34 Name": "Zestaw słuchawkowy Ops-Core FAST RAC", @@ -3465,7 +3465,7 @@ "5ae089fb5acfc408fb13989b ShortName": "Trofeum", "5ae089fb5acfc408fb13989b Description": "Trofeum", "5ae08f0a5acfc408fb1398a1 Name": "Karabin powtarzalny Mosina 7,62 x 54 R (snajperski)", - "5ae08f0a5acfc408fb1398a1 ShortName": "Mosin snajperski", + "5ae08f0a5acfc408fb1398a1 ShortName": "Mosin (snajperski)", "5ae08f0a5acfc408fb1398a1 Description": "Mosin-Nagant M91/30 PU jest to wariant snajperski słynnego rosyjskiego karabinu, który był powszechnie używany przez rosyjskich snajperów w trakcie II wojny światowej.", "5ae096d95acfc400185c2c81 Name": "Łoże do karabinu Mosina, standardowe", "5ae096d95acfc400185c2c81 ShortName": "Łoże Mosina", @@ -4188,7 +4188,7 @@ "5bf3f59f0db834001a6fa060 ShortName": "Sz. RPK-16", "5bf3f59f0db834001a6fa060 Description": "Odczepiana szczerbinka. Wyprodukowana przez zakłady Iżmasz. Standard do ręcznego karabinu maszynowego RPK-16.", "5bfd297f0db834001a669119 Name": "Karabin powtarzalny Mosina 7,62 x 54 R (piechoty)", - "5bfd297f0db834001a669119 ShortName": "Mosin piechoty", + "5bfd297f0db834001a669119 ShortName": "Mosin (piechoty)", "5bfd297f0db834001a669119 Description": "Karabin Mosina to jeden z najbardziej znanych rosyjskich karabinów, który był powszechnie używany przez rosyjskich żołnierzy podczas II wojny światowej. Opracowany w latach 1882-1891, był używany przez siły zbrojne Imperium Rosyjskiego, Związku Radzieckiego i różnych innych narodów. Jest to jeden z najbardziej masowo produkowanych wojskowych karabinów powtarzalnych w historii – od 1891 roku wyprodukowano ponad 37 milionów sztuk. Pomimo swojego wieku, jest on używany w różnych konfliktach na całym świecie aż do dnia dzisiejszego.", "5bfd35380db83400232fe5cc Name": "Łoże do karabinu Mosina, piechoty", "5bfd35380db83400232fe5cc ShortName": "Łoże Mosina, piech.", @@ -4577,7 +4577,7 @@ "5c10c8fd86f7743d7d706df3 Name": "Wstrzykiwacz adrenaliny", "5c10c8fd86f7743d7d706df3 ShortName": "Adrenalina", "5c10c8fd86f7743d7d706df3 Description": "Jednorazowa strzykawka z dawką adrenaliny – głównym hormonem rdzenia nadnercza. Stosowana w celu zwiększenia wytrzymałości fizycznej, poprzez przygotowanie wszystkich mięśni do zwiększonej aktywności. Chwilowo wzmacnia siłę i kondycję. Łagodzi odczuwany ból.", - "5c11046cd174af02a012e42b Name": "Adapter Wilcox do PVS-7", + "5c11046cd174af02a012e42b Name": "Interfejs Wilcox do PVS-7", "5c11046cd174af02a012e42b ShortName": "W-PVS7", "5c11046cd174af02a012e42b Description": "Złącze Wilcox NVG do AN/PVS-7B/7D zostało zaprojektowane, aby zastąpić ten plastikowy dołączany do wielu noktowizorów.", "5c110624d174af029e69734c Name": "Gogle termowizyjne T-7 z montażem na noktowizor", @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "Kompaktowy taktyczny laserowy moduł celowania z niebieską kropką. Mocowany na dowolnej szynie Picatinny/Weaver dla precyzyjnego namierzania celu. Produkowany przez NcSTAR.", "5cd945d71388ce000a659dfb Name": "BEAR podstawowa góra", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Combat shirt", "5cd946231388ce000d572fe3 Name": "BEAR podstawowy dół", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "Pionowy chwyt przedni do ASz-12", "5cda9bcfd7f00c0c0b53e900 ShortName": "ASz-12", "5cda9bcfd7f00c0c0b53e900 Description": "Pionowy chwyt przedni do karabinka automatycznego ASz-12.", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "USEC podstawowy dół", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", "5cde9ec17d6c8b04723cf479 Name": "USEC podstawowa góra", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Spodnie dresowe Adik", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", "5cdea42e7d6c8b0474535dad Name": "Dres Adik", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "Korpus do M700 Magpul Pro 700", "5cdeac22d7f00c000f26168f ShortName": "Pro700", "5cdeac22d7f00c000f26168f Description": "Lekkie ergonomiczne łoże zaprojektowane do powtarzalnego karabinu wyborowego Remington Model 700. Wyprodukowane przez firmę Magpul.", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "BEAR Black Lynx", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", "5d1f60ae86f7744bcc04998b Name": "BEAR koszulka kontraktora", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "FSB szybkie reagowanie", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "BEAR Ghost Marksman", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "BEAR Summer Field", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "USEC Aggressor TAC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "USEC Softshell Flexion", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "USEC Woodland Infiltrator", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Combat shirt", "5d1f623886f7743014163027 Name": "USEC PCS MultiCam", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "USEC PCU Ironsight", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "FSB Urban Tact", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "BEAR Gorka Kobra", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "BEAR Gorka SSO", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "BEAR Striker Infil Ops", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "BEAR Summer Field", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "USEC Gen.2 Khyber", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "USEC Woodland Infiltrator", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "USEC Ranger Jeans", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "USEC Taclife Terrain", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "USEC TACRES", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "Hamulec wylotowy do AR-10 Daniel Defense WAVE 7,62 x 51", "5d1f819086f7744b355c219b ShortName": "WAVE 762", "5d1f819086f7744b355c219b Description": "Hamulec wylotowy WAVE zaprojektowany, by bezpiecznie mocować\u00A0tłumik dźwięku do broni palnej, ale działa też\u00A0dobrze bez niego. Wyprodukowany ze stali nierdzewnej 17-4 PH stosowanej w przemyśle powietrznym i pod koniec azotowany w kąpieli solnej dla zminimalizowania korozji. Wyprodukowany przez firmę Daniel Defense.", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "USEC Commando", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "Komora zamkowa do karabinu wyborowego SR-25. Wyprodukowana przez firmę Knight’s Armament Company.", "5df8e5c886f7744a122d6834 Name": "BEAR Zasłon", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "Meteor", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "BEAR Oldschool", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "USEC TIER2", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "Skłon", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "Pierwsza generacja zmodyfikowanego plate carriera CPC zaprojektowanego przez Crye Precision i dostosowanego przez Ars Arma do użytku przez siły specjalne Federacji Rosyjskiej. Ten modułowy pancerz oparty jest na polimerowej uprzęży dopasowanej do tułowia, co pozwala uniknąć uderzeń place carriera podczas aktywnego ruchu, a także przyczynia się do bardziej równomiernego rozłożenia ciężaru. Wykonany w szturmowej konfiguracji ładownic. Wyprodukowany przez firmę Ars Arma.", "5e4bb08f86f774069619fbbc Name": "Tielniaszka BEAR", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "USEC TIER2", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "BEAR TIGR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "USEC Commando", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "Kurtka rosyjska", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "BEAR TIGR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "USEC Urban Responder", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "BEAR Zasłon", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "USEC Deep Recon", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Tactical pants", "5e9dcf5986f7746c417435b3 Name": "Plecak jednodniowy LBT-8005A (MultiCam Black)", "5e9dcf5986f7746c417435b3 ShortName": "Jednodniowy", "5e9dcf5986f7746c417435b3 Description": "Prosty i niezawodny 14-litrowy plecak w kamuflażu MultiCam Black. Wyprodukowany przez firmę London Bridge Trading.", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "Kamizelka taktyczna typu chest rig Thunderbolt, zawierająca wszystkie podstawowe ładownice, jakie mogą\u00A0być\u00A0potrzebne. Wyprodukowana przez firmę Direct Action.", "5f5f45df0bc58666c37e7832 Name": "BEAR G99", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "USEC Night Patrol", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "BEAR G99", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "USEC Urban Responder", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Scav But", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "BEAR SRVV", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "USEC TIER3", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": ".300 Blackout AP", "5fd20ff893a8961fc660a954 ShortName": "AP", "5fd20ff893a8961fc660a954 Description": "Nabój .300 Blackout (7,62 × 35 mm) AP z przeciwpancernym pociskiem o masie 8,4 grama z naboju 7,62 × 51 mm NATO M80A1, składającym się ze stalowego penetratora w części wierzchołkowej, ołowianego rdzeniu i miedzianego półpłaszcza w mosiężnej łusce. Pomimo własnych właściwości pocisku w przypadku zastosowania w naboju o pełnej mocy, ulegają one pogorszeniu po przeniesieniu na nabój pośredni, jednakże pocisk ten nadal posiada zdolności do przebijania podstawowych i pośrednich ochron balistycznych ciała, dodatkowo jest w stanie wywołać znaczne obrażenia w celu po uderzeniu. Jego konstrukcja pozwala również na bezproblemowe stosowanie go w magazynkach STANAG 5,56 × 45 mm NATO.", "5fd3e77be504291efd0040ad Name": "USEC VEKTOR", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "BEAR Boreas", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "BEAR Grizzly", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "USEC Adaptive Combat", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "Prosty nylonowy system przenoszenia z niewyjmowanymi ładownicami. Pozwala na przenoszenie dość imponującej ilości amunicji kosztem wygody. Wersja czarna.", "6038b228af2e28262649af14 Name": "BEAR Rash Guard", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "USEC Sandstone", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", "6038b4b292ec1c3103795a0b Name": "Plate carrier LBT-6094A Slick (Coyote Tan)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "Prosty, a zarazem skuteczny plate carrier, najbardziej minimalistyczna konstrukcja przeznaczona do stosowania z kamizelkami taktycznymi typu chest rig. Wyprodukowany przez firmę London Bridge Trading. Wersja Coyote Tan.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "TP-200 używa się jako ładunki przy wykonywaniu wykopów sejsmicznych, detonatory pośrednie przy inicjowaniu ładunków wybuchowych w otworach wiertniczych, do kruszenia przedmiotów ponadgabarytowych oraz do wykonywania specjalnych robót wyburzających.", "603d01a1b41c9b37c6592047 Name": "BEAR VOIN", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "USEC Sage Warrior", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Kamizelka taktyczna Azimut SS „Żuk” (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Azimut", "6040dd4ddcf9592f401632d2 Description": "Prosty nylonowy system przenoszenia z niewyjmowanymi ładownicami. Pozwala na przenoszenie dość imponującej ilości amunicji kosztem wygody. Wersja z kamuflażem SURPAT.", @@ -8239,10 +8239,10 @@ "619b69037b9de8162902673e Description": "Zaprojektowana zarówno na rynek cywilny jak i do użytku wojskowego. Kolba CQR47 może być łatwo zamontowana w miejsce standardowego mocowania stałych kolb AK/AKM. Wyprodukowana przez firmę Hera Arms.", "619b99ad604fcc392676806c Name": "BEAR Recon", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "USEC K4", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", "619bc61e86e01e16f839a999 Name": "Opaska (Alfa)", "619bc61e86e01e16f839a999 ShortName": "Alfa", "619bc61e86e01e16f839a999 Description": "Opaska dla weteranów, którzy wciąż tu są\u00A0od czasów alfy.", @@ -8275,10 +8275,10 @@ "619bdfd4c9546643a67df6fa Description": "Opaska dla hardkorowych operatorów USEC.", "619bf75264927e572d0d5853 Name": "BEAR Sumrak", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "Wojskowa rura karbowana", "619cbf476b8a1b37a54eebf8 ShortName": "Rura", "619cbf476b8a1b37a54eebf8 Description": "Wojskowa karbowana rura przeznaczona do systemów wentylacyjnych sprzętu wojskowego lub systemów oczyszczania powietrza.", @@ -8858,7 +8858,7 @@ "628cd624459354321c4b7fa2 Name": "Plate carrier Tasmanian Tiger SK (MultiCam Black)", "628cd624459354321c4b7fa2 ShortName": "TT SK", "628cd624459354321c4b7fa2 Description": "Ultralekka i szkieletowa kamizelka TT Plate Carrier SK wykonana jest przede wszystkim z lekkiego, cienkiego i wytrzymałego laminowanego TPU materiału nylonowego Cordura o deklarowanej gęstości co najmniej 700 den. Konstrukcja kamizelki zapewnia dwie lekkie osłony na płyty, regulowane pasy naramienne oraz lekkie pokrycie w pasie. Wyposażona w przedni panel na 4 magazynki.", - "628d0618d1ba6e4fa07ce5a4 Name": "Plater carrier NPP KIASS Bagarij (Digital Flora)", + "628d0618d1ba6e4fa07ce5a4 Name": "Wzmocniona kamizelka taktyczna NPP KIASS Bagarij (Digital Flora)", "628d0618d1ba6e4fa07ce5a4 ShortName": "Bagarij", "628d0618d1ba6e4fa07ce5a4 Description": "W drugim tysiącleciu wyposażenie żołnierza otrzymało poważne zmiany w obliczu nowych zagrożeń i zadań. Wymagany był lepszy poziom ochrony, więc rosyjska armia potrzebowała niezawodnego i funkcjonalnego pancerza. W połowie lat 2000, MSW, które później zostało zreorganizowane w Gwardię Narodową Rosji, otrzymało kamizelki kuloodporne Bagarij. Bagarij był używany zarówno przez zwykłych żołnierzy wojsk wewnętrznych, jak i w siłach specjalnych. Aktywnie był używany przez PMC BEAR jako główny ciężki pancerz.", "628dc750b910320f4c27a732 Name": "Plate carrier ECLiPSE RBAV-AF", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "USEC Kameleon", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "BEAR VOLK", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "BEAR Kojot", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "USEC DesOps", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Maska Death Knighta", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "Unikalna maska dowódcy oddziału Goons, byłych operatorów USEC, którzy postanowili nie uciekać z Tarkowa, lecz stworzyć własny ład.", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "USEC Predator", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", "64f07f7726cfa02c506f8ac0 Name": "Dziennik", "64f07f7726cfa02c506f8ac0 ShortName": "Dziennik", "64f07f7726cfa02c506f8ac0 Description": "Dziennik kogoś, kto naprawdę kocha wszystko, co radzieckie.", @@ -11920,7 +11920,7 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "USEC Defender", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "USEC BOSS Delta", "657f8e9824d2053bb360b51d ShortName": "USEC BOSS Delta", "657f8e9824d2053bb360b51d Description": "USEC BOSS Delta", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "BEAR URON", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "BEAR OPS MGS", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Tactical jacket", "657f925dada5fadd1f07a57a Name": "Hybrydowe materiały kompozytowe", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "Martwy cywil", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", " V-ex_light": "Droga do bazy wojskowej: wyjazd", " Voip/DisabledForOffline": "VOIP jest niedostępny w trybie offline", " kg": " kg", @@ -12085,9 +12070,9 @@ "4:3 - Not wide": "4:3 – pełny ekran", "4x supersampling": "supersampling 4 ×", "5070Kills": "Zabici gracze poziomu 51-70", - "65bd1875c443e7fffb006e83": "Poziom 1", - "65bd187e578fa4a9f503f003": "Poziom 2", - "65bd1882b7378d56ab0817c3": "Poziom 3", + "65bd1875c443e7fffb006e83": "Tier 1", + "65bd187e578fa4a9f503f003": "Tier 2", + "65bd1882b7378d56ab0817c3": "Tier 3", "7099Kills": "Zabici gracze poziomu 71-99", "ELITE Level": "Poziom ELITARNY", "A LOT": "DUŻO", @@ -12102,8 +12087,6 @@ "AI amount": "Ilość SI", "AI difficulty": "Trudność SI", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "Penetracja", - "AMMO PROJECTILE COUNT": "Liczba pocisków", "ARMOR CLASS": "KLASA OPANCERZENIA", "ARMOR POINTS": "PUNKTY PANCERZA", "ARMOR TYPE": "TYP PANCERZA", @@ -12146,12 +12129,11 @@ "AheadOfTimeEnding": "CZAS UKOŃCZENIA", "Aim": "Celowanie", "AimDrills": "Celowanie", - "AimDrillsLevelingUpDescription": "Umiejętność celowania jest ulepszana poprzez trafianie wrogów podczas celowania.", "AimMaster": "Mistrz celności", "AimMasterDescription": "Opanowanie celowania zmniejsza czas celowania jak i zmniejsza kołysanie się lufy tuż po celowania.", - "AimMasterElite": "Zwiększa szybkość celowania o [{0:0.#%}]", - "AimMasterSpeed": "Zwiększa szybkość celowania o [{0:0.#%}]", - "AimMasterWiggle": "Zwiększa AimMasterWiggle o [{0:0.#%}]", + "AimMasterElite": "Zwiększa szybkość celowania o [{0:0%}]", + "AimMasterSpeed": "Zwiększa szybkość celowania o [{0:0%}]", + "AimMasterWiggle": "Zwiększa AimMasterWiggle o [{0:0%}]", "Aiming deadzone:": "Martwa strefa celowania:", "AirFilteringUnit": "JEDNOSTKA FILTRACJI POWIETRZA", "AirplaneDelayMessage": "Czekaj na przylot! Przestrzeń powietrzna jest zatłoczona", @@ -12241,12 +12223,9 @@ "Arena/CustomGames/toggle/tournament": "Turniej", "Arena/EndMatchNotification": "Mecz zakończył się podczas twojej nieobecności", "Arena/Matching/CustomGames": "Niestandardowe gry", - "Arena/Notification/Selection/Blocked": "Kupno konfiguracji zablokowane", "Arena/OnCancelMatch": "Dopasowanie anulowane z powodu problemów z załadowaniem", "Arena/OnCancelMatch/Group": "Dopasowanie zostało anulowane z powodu problemów z ładowaniem członka grupy", "Arena/OnCancelMatch/NoServer": "Nie można znaleźć dostępnego serwera. Spróbuj później.", - "Arena/Popups/TwitchDropsHeader": "Odbierz prezent", - "Arena/Preset/Tooltip/Tab/6": "Różne unikatowe kolekcjonerskie konfiguracje.", "Arena/Preset/Tooltip/Tab/Assault": "Szturm to najbardziej wszechstronna klasa. Konfiguracje tej klasy mają zbalansowany ekwipunek odpowiedni do większości sytuacji bojowych.", "Arena/Preset/Tooltip/Tab/CQB": "CQB to najsilniej opancerzona klasa na Arenie. CQB charakteryzują się osłonami twarzy i zwiększoną amunicją do broni głównej. Postacie tej klasy doskonale sprawdzają się w obronie pozycji i długotrwałych walkach.", "Arena/Preset/Tooltip/Tab/Collection": "Konfiguracje przyznawane za specjalne osiągnięcia na Arenie.", @@ -12294,19 +12273,13 @@ "Arena/TeamColor/white_plural": "Biali", "Arena/TeamColor/yellow": "Żółty", "Arena/TeamColor/yellow_plural": "Żółci", - "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Za mało pieniędzy na jednego lub więcej członków grupy", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Za mało odblokowanych konfiguracji poziomu dla jednego lub więcej członków grupy", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Za mało odblokowanych konfiguracji {0} dla jednego lub więcej członków grupy", - "Arena/Tiers/LockedBy/PovertyThreshold": "Za mało pieniędzy na poziom", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "Za mało pieniędzy na {0}", - "Arena/Tiers/LockedBy/PresetsUnlocked": "Za mało odblokowanych konfiguracji", - "Arena/Tiers/LockedBy/UnavailableTier": "Poziom niedostępny dla gry", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} obecnie niedostępne dla gry", - "Arena/Tiers/RankingAvailable {0}": "Gra rankingowa niedostępna: {0} konfiguracje odblokowane", - "Arena/Tiers/Unlocked {0} presets": "{0} konfiguracji odblokowano", - "Arena/Tiers/UnlockedPresets": "Konfiguracji odblokowano", - "Arena/Tooltip/MapSelectedCounter": "Liczba wybranych lokalizacji", - "Arena/Tooltip/MinMapCount {0}": "Wybierz wiele lokalizacji. Musisz wybrać\u00A0przynajmniej {0} lokalizacji", + "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", + "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", + "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", + "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", + "Arena/Tiers/UnlockedPresets": "Presets unlocked", "Arena/UI/Awaiting-Players": "Oczekiwanie na graczy", "Arena/UI/Confirm-Match": "Potwierdź", "Arena/UI/CustomMode": "Niestandardowy", @@ -12325,10 +12298,8 @@ "Arena/UI/Match_leaving_forbidden_body": "Jeśli opuścisz ten mecz, zostawisz swoich towarzyszy w niekorzystnej sytuacji.
Stracisz swoją nagrodę, rangę i będziesz zakwalifikowany do tymczasowego bana.", "Arena/UI/Match_leaving_forbidden_header": "Uwaga! Opuszczasz mecz.", "Arena/UI/Match_leaving_permitted_header": "Możesz opuścić ten mecz bez kary.", - "Arena/UI/PresetResetToDefault": "Wartości następujących ustawień zostały przywrócone do domyślnych:", "Arena/UI/Return": "POWRÓT", "Arena/UI/Return-to-match": "POWRÓT DO MECZU", - "Arena/UI/Selection/Blocked": "Zabrane konfiguracje", "Arena/UI/Waiting": "Oczekiwanie…", "Arena/Ui/ServerFounding": "Szukanie serwera…", "Arena/Widgets/Observer/capture point": "Zdobądź cel", @@ -12383,16 +12354,9 @@ "ArenaUI/PresetView/FreePreset": "DARMOWE", "ArenaUI/PresetView/PresetPreview": "Podgląd konfiguracji", "ArenaUI/PresetView/ShopPrice": "Cena sklepu", - "Arena_AirPit": "Hangar", - "Arena_AutoService": "Dziupla", - "Arena_Bay5": "Dok 5", - "Arena_Bowl": "Stadion", - "Arena_Yard": "Blok", - "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Ostatnia", "Arena_result_result": "Wyniki", "Arena_result_rounds": "Runda", - "Arena_saw": "Tartak", "Armband": "Opaska", "Armor": "Pancerz", "Armor Zone BackHead": "Kark", @@ -12437,14 +12401,12 @@ "Aspect ratio:": "Proporcje ekranu:", "Assault": "Karabin. automatyczne", "AssaultCarbine Mastering": "Karabinek automatyczny", - "AssaultDescription": "Umiejętność obsługi karabin. automatycznych poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania tego typu broni.", - "AssaultLevelingUpDescription": "Umiejętność karabin. automatyczne jest ulepszana poprzez strzelanie i przeładowywanie odpowiadającego typu broni.", + "AssaultDescription": "Umiejętność obsługi karabin. automatycznych poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania karabin. automatycznych.", "AssaultRifle": "Karabin. automatyczne", "AssaultRifle Mastering": "Karabinek automatyczny", "AssortmentUnlockReward/Description": "Będziesz móc kupić ten przedmiot od handlarza {0} jako nagrodę.", "AttachedLauncher": "Granatniki podwieszane", - "AttachedLauncherDescription": "Umiejętność obsługi granatników podwieszanych poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania tego typu broni.", - "AttachedLauncherLevelingUpDescription": "Umiejętność granatniki podwieszane jest ulepszana poprzez strzelanie i przeładowywanie odpowiadającego typu broni.", + "AttachedLauncherDescription": "Posługiwanie się granatnikiem podwieszanym.", "Attention": "Uwaga", "Attention!": "Uwaga", "Attention! All items, brought by you into the raid or found in it, have been lost.": "Uwaga! Utraciłeś wszystkie przedmioty, które przyniosłeś\u00A0i znalazłeś podczas rajdu.", @@ -12455,10 +12417,9 @@ "Attention! You’ve left the raid and lost everything you brought or found in it.": "Uwaga! Opuściłeś rajd i straciłeś wszystko, co zabrałeś ze sobą lub znalazłeś.", "AttentionDescription": "Uwaga zwiększa szybkość przeszukiwania różnych pojemników.", "AttentionEliteExtraLootExp": "Podwaja doświadczenie za przeszukiwanie", - "AttentionEliteLuckySearch": "Szansa na natychmiastowe znalezienie przedmiotu w pojemniku [{0:0.#%}]", - "AttentionLevelingUpDescription": "Umiejętność uwaga jest ulepszana poprzez przeszukiwanie pojemników i ciał.", - "AttentionLootSpeed": "Zwiększa szybkość przeszukiwania o [{0:0.#%}]", - "AttentionRareLoot": "Zwiększa szybkość badania przedmiotu o [{0:0.#%}]", + "AttentionEliteLuckySearch": "Szansa na natychmiastowe znalezienie przedmiotu w pojemniku [({0})]", + "AttentionLootSpeed": " Zwiększa szybkość przeszukiwania o [{0:0%}]", + "AttentionRareLoot": "Zwiększa szybkość badania przedmiotu o [{0:0%}]", "Auctionsdescription": "Aukcje", "Authentic": "Autentyczne", "Authorization": "AUTORYZACJA", @@ -12512,7 +12473,6 @@ "Bloom": "Bloom", "BodyTemperature": "Temperatura ciała", "Boiler Tanks": "Boilery", - "BonfireBuff": "Ciepło ogniska", "BoozeGenerator": "BIMBROWNIK", "Boss pick": "Wybór bossa", "BossType/AsOnline": "Jak online", @@ -12613,17 +12573,16 @@ "Charge": "Zamek", "Charisma": "Charyzma", "CharismaAdditionalDailyQuests": "Dodaje jedno dodatkowe dzienne zadanie operacyjne", - "CharismaBuff1": "Zmniejsza ceny gotówkowe u handlarzy o [{0:0.#%}]", - "CharismaBuff2": "Zwiększa lojalność handlarzy o [{0:0.#%}]", - "CharismaDailyQuestsRerollDiscount": "Zmniejsza koszt zastąpienia zadania operacyjnego o [{0:0.#%}]", + "CharismaBuff1": "Zmniejsza ceny gotówkowe u handlarzy o [{0:0%}]", + "CharismaBuff2": "Zwiększa lojalność handlarzy o [{0:0%}]", + "CharismaDailyQuestsRerollDiscount": "Zmniejsza koszt zastąpienia zadania operacyjnego o [{0:0%}]", "CharismaDescription": "Opanowanie sztuki charyzmy pozwala na otrzymanie rabatów na różne usługi.", "CharismaEliteBuff1": "Jesteś pierwszym, który zna najnowsze nowinki od handlarzy", - "CharismaEliteBuff2": "Zwiększa zysk z każdej transakcji o [{0:0.#%}]", - "CharismaExfiltrationDiscount": "Zmniejsza ceny płatnego wyjścia o [{0:0.#%}]", + "CharismaEliteBuff2": "Zwiększa zysk z każdej transakcji o [{0:0%}]", + "CharismaExfiltrationDiscount": "Zmniejsza ceny płatnego wyjścia o [{0:0%}]", "CharismaFenceRepPenaltyReduction": "Zmniejsza karę za reputację Pasera", - "CharismaHealingDiscount": "Zmniejsza ceny usług leczenia po rajdzie o [{0:0.#%}]", - "CharismaInsuranceDiscount": "Zmniejsza ceny usług ubezpieczenia o [{0:0.#%}]", - "CharismaLevelingUpDescription": "Umiejętność charyzma jest ulepszana pośrednio poprzez zdobywanie poziomów umiejętności uwaga, postrzeganie i intelekt.", + "CharismaHealingDiscount": "Zmniejsza ceny usług leczenia po rajdzie o [{0:0%}]", + "CharismaInsuranceDiscount": "Zmniejsza ceny usług ubezpieczenia o [{0:0%}]", "CharismaScavCaseDiscount": "Dodaje zniżkę na ceny skrytki Scava", "ChatScreen/QuestItemsListHeader": "Następujące przedmioty zostaną przeniesione do schowka na przedmioty fabularne:", "ChatScreen/QuestItemsMoved": "Przedmioty pomyślnie przeniesiono do schowka na przedmioty fabularne", @@ -12651,19 +12610,19 @@ "Close the game": "Zamknij grę", "CloseBufferGates": "zamknij drzwi", "CloseDoor": "Zamknij", - "ClothingItem/Equipped": "Wyposażone", - "ClothingItem/Obtained": "Uzyskane", - "ClothingItem/Preview": "Podgląd", - "ClothingItem/Purchase": "Dostępne", - "ClothingItem/Unavailable": "Niedostępne", - "ClothingPanel/ExternalObtain": "Dostępne do kupienia na stronie", - "ClothingPanel/InternalObtain": "Warunki zakupu u handlarza:", - "ClothingPanel/LoyaltyLevel": "Poziom lojalności\nhandlarza:", - "ClothingPanel/PlayerLevel": "Poziom\ngracza:", - "ClothingPanel/RequiredPayment": "Wymagana\npłatność:", - "ClothingPanel/RequiredQuest": "Ukończone\nzadanie:", - "ClothingPanel/RequiredSkill": "Wymagana\numiejętność:", - "ClothingPanel/StandingLevel": "Reputacja\nhandlarza:", + "ClothingItem/Equipped": "Equipped", + "ClothingItem/Obtained": "Obtained", + "ClothingItem/Preview": "Preview", + "ClothingItem/Purchase": "Available", + "ClothingItem/Unavailable": "Unavailable", + "ClothingPanel/ExternalObtain": "Available for purchase on the website", + "ClothingPanel/InternalObtain": "Trader purchase conditions:", + "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", + "ClothingPanel/PlayerLevel": "Player\nLevel:", + "ClothingPanel/RequiredPayment": "Required\nPayment:", + "ClothingPanel/RequiredQuest": "Completed\ntask:", + "ClothingPanel/RequiredSkill": "Required\nSkill:", + "ClothingPanel/StandingLevel": "Trader\nStanding:", "CloudinessType/Clear": "Jasno", "CloudinessType/Cloudy": "Pochmurno", "CloudinessType/CloudyWithGaps": "Pochmurno z przejaśnieniami", @@ -12740,17 +12699,15 @@ "CovertMovement": "Skradanie", "CovertMovementDescription": "Skradanie sprawia, że twoje kroki są cichsze i zmniejsza zasięg ich dźwięku.", "CovertMovementElite": "Skradanie staje się równie ciche na wszystkich powierzchniach", - "CovertMovementEquipment": "Zmniejsza poziom hałasu broni i wyposażenia o [{0:0.#%}]", - "CovertMovementLevelingUpDescription": "Umiejętność skradanie jest ulepszana poprzez poruszanie się cicho.", - "CovertMovementLoud": "Zmniejsza poziom hałasu kroków na nietypowych powierzchniach o [{0:0.#%}]", - "CovertMovementSoundRadius": "Zmniejsza zasięg dźwięku skradania o [{0:0.#%}]", - "CovertMovementSoundVolume": "Zmniejsza poziom hałasu kroków na typowych powierzchniach o [{0:0.#%}]", - "CovertMovementSpeed": "Zwiększa prędkość skradania się o [{0:0.#%}]", + "CovertMovementEquipment": "Zmniejsza poziom hałasu broni i wyposażenia o [{0:0%}]", + "CovertMovementLoud": "Zmniejsza poziom hałasu kroków na nietypowych powierzchniach o [{0:0%}]", + "CovertMovementSoundRadius": "Zmniejsza zasięg dźwięku skradania o [{0:0%}]", + "CovertMovementSoundVolume": "Zmniejsza poziom hałasu kroków na typowych powierzchniach o [{0:0%}]", + "CovertMovementSpeed": "Zwiększa prędkość skradania się o [{0:0%}]", "Crafting": "Wytwarzanie", - "CraftingContinueTimeReduce": "Zmniejsza czas cyklicznych produkcji (poza farmą Bitcoinów) o [{0:0.#%}]", + "CraftingContinueTimeReduce": "Zmniejsza czas cyklicznych produkcji (poza farmą Bitcoinów) o [{0:0.##%}]", "CraftingElite": "Możliwość wytwarzania do dwóch różnych przedmiotów w strefie jednocześnie", - "CraftingLevelingUpDescription": "Umiejętność wytwarzanie jest ulepszana poprzez tworzenie przedmiotów w kryjówce.", - "CraftingSingleTimeReduce": "Zmniejsza czas wytwarzania o [{0:0.#%}]", + "CraftingSingleTimeReduce": "Zmniejsza czas wytwarzania o [{0:0.##%}]", "Craftingdescription": "Zwiększenie umiejętności wytwarzania zmniejsza czas produkcji przedmiotów, w tym tych wytwarzanych cyklicznie.", "Create group dialog": "Stwórz czat grupowy", "CreateDialog": "{0} utworzył czat grupowy!", @@ -12778,8 +12735,7 @@ "DISCONNECT FROM GLOBAL CHAT": "ROZŁĄCZ Z GLOBALNYM CZATEM", "DISPOSE": "WYRZUĆ", "DMR": "Samopowtarzalne karabiny wyborowe", - "DMRDescription": "Umiejętność obsługi samopowtarzalnych karabinów wyborowych poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania tego typu broni.", - "DMRLevelingUpDescription": "Umiejętność samopowtarzalne karabiny wyborowe jest ulepszana poprzez strzelanie i przeładowywanie odpowiadającego typu broni.", + "DMRDescription": "Umiejętność obsługi samopowtarzalnych karabinów wyborowych poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania samopowtarzalnych karabinów wyborowych.", "DON'T TRY TO LEAVE": "NIE PRÓBUJ WYCHODZIĆ", "DONTKNOW": "NIE WIEM", "DOWN": "PADNIJ", @@ -12908,11 +12864,11 @@ "DrawElite": "Utrzymaj cel przez pierwsze 3 sekundy z dowolnym stanem wytrzymałości", "DrawMaster": "Mistrz dobycia", "DrawMasterDescription": "Opanowanie dobycia powoduje, że przełączanie broni jest szybsze.", - "DrawMasterElite": "Zwiększa szybkość dobywania broni o [{0:0.#%}]", - "DrawMasterSpeed": "Zwiększa szybkość dobywania broni o [{0:0.#%}]", - "DrawSound": "Zmniejsza głośność celowania o [{0:0.#%}]", - "DrawSpeed": "Zwiększa szybkość celowania o [{0:0.#%}]", - "DrawTremor": "Zmniejsza efekt drżenia przez pierwsze 2 sekundy po celowaniu o [50%]", + "DrawMasterElite": "Zwiększa szybkość dobywania broni o [{0:0%}]", + "DrawMasterSpeed": "Zwiększa szybkość dobywania broni o [{0:0%}]", + "DrawSound": "Zmniejsza głośność celowania o [{0:0%}]", + "DrawSpeed": "Zwiększa szybkość celowania o [{0:0%}]", + "DrawTremor": "Zmniejsza efekt drżenia o 50% przez pierwsze 2 sekundy po celowaniu", "DropBackpack": "Upuszczenie plecaka", "DropItem": "Upuść przedmiot", "Duck": "Kucanie", @@ -12934,7 +12890,6 @@ "EAntialiasingMode/None": "wyłączony", "EAntialiasingMode/TAA_High": "TAA wysokie", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", "EArenaPresetsType/Assault": "Szturm", "EArenaPresetsType/CQB": "CQB", "EArenaPresetsType/Marksman": "Snajper", @@ -13021,7 +12976,7 @@ "EMalfunctionState/Misfire": "Niewypał", "EMalfunctionState/SoftSlide": "Zacięcie zamka", "EMatchingStatus/GroupPlayer": "Tylko dowódca może rozpocząć grę", - "EMatchingStatus/NotEnoughPlayers": "Za mało graczy, by zacząć", + "EMatchingStatus/NotEnoughPlayers": "Niewystarczająco graczy, by zacząć", "EMatchingStatus/NotReady": "Nie wszyscy gracze są gotowi do rozpoczęcia rajdu", "ENEMY": "WRÓG", "ENEMYDOWN": "WRÓG ZABITY", @@ -13136,13 +13091,12 @@ "Enabled": "Włączone", "Endurance": "Kondycja", "EnduranceBreathElite": "Oddychanie jest niezależne od energii", - "EnduranceBuffBreathTimeInc": "Zwiększa czas wstrzymywania oddechu o [{0:0.#%}]", - "EnduranceBuffEnduranceInc": "Zwiększa wytrzymałość o [{0:0.#%}]", - "EnduranceBuffJumpCostRed": "Zmniejsza zużycie wytrzymałości podczas skakania o [{0:0.#%}]", - "EnduranceBuffRestorationTimeRed": "Zmniejsza czas odnawiania oddechu o [{0:0.#%}]", + "EnduranceBuffBreathTimeInc": "Zwiększa czas wstrzymania oddechu o [{0:0%}]", + "EnduranceBuffEnduranceInc": "Zwiększa wytrzymałość o [{0:0%}]", + "EnduranceBuffJumpCostRed": "Zmniejsza zużycie wytrzymałości podczas skakania o [{0:0%}]", + "EnduranceBuffRestorationTimeRed": "Zmniejsza czas odnawiania oddechu o [{0:0%}]", "EnduranceDescription": "Kondycja wpływa na ilość wytrzymałości oraz szybkości męczenia się podczas biegu lub skakania, także na wstrzymywanie i odzyskiwanie oddechu.", "EnduranceHands": "Zwiększona kondycja\u00A0rąk", - "EnduranceLevelingUpDescription": "Umiejętność wytrzymałość jest ulepszana przez sprintowanie bez efektu przeciążenia oraz przez trening na siłowni w kryjówce.", "EnergyExpensesUp {0}": "Zużycie energii zwiększone o {0}", "EnergyRate": "Odzyskiwanie energii", "Enter": "Wejdź", @@ -13272,7 +13226,6 @@ "Friends": "Znajomi", "Friends invite is already sent": "Już wysłałeś zaproszenie do znajomych.", "Friends list": "Lista znajomych", - "FrostbiteBuff": "Mróz Morany", "Full": "Pełny", "Full Recovery Time": "Czas do pełnego wyzdrowienia", "Fullscreen mode:": "Tryb ekranu:", @@ -13339,9 +13292,8 @@ "HIDEOUT": "KRYJÓWKA", "HIGH_PACKETS_LOSS": "Duża utrata pakietów", "HIT": "TRAFIENIE", - "HMG": "Ciężkie karabiny maszynowe", - "HMGDescription": "Umiejętność obsługi ciężkich karabinów maszynowych poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania tego typu broni.", - "HMGLevelingUpDescription": "Umiejętność ciężkie karabiny maszynowe jest ulepszana poprzez strzelanie i przeładowywanie odpowiadającego typu broni.", + "HMG": "CKM-y", + "HMGDescription": "Umiejętność obsługi ciężkich karabinów maszynowych poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania ciężkich karabinów maszynowych.", "HOLD FIRE": "WSTRZY. OGIEŃ", "HOLDFIRE": "WSTRZY. OGIEŃ", "HOLDPOSITION": "UTRZ. POZYCJĘ", @@ -13372,27 +13324,25 @@ "Health/ItemResourceDepleted": "Przedmiot został zużyty", "Health/PlayerIsDead": "Postać\u00A0jest martwa", "HealthAndPhysics": "Zdrowie i budowa ciała", - "HealthBreakChanceRed": "Zmniejsza szansę na złamanie kończyny o [{0:0.#%}]", + "HealthBreakChanceRed": "Zmniejsza szansę na złamanie kończyny o [{0:0%}]", "HealthDescription": "Dobre zdrowie przyspiesza gojenie się ran po rajdach, zmniejsza prawdopodobieństwo wystąpienia złamań i opóźnia proces odwodnienia oraz wyczerpania.", "HealthEliteAbsorbDamage": "Absorpcja obrażeń", "HealthElitePosion": "Poziom odporności na truciznę [({0})]", - "HealthEnergy": "Zmniejsza zużycie energii o [{0:0.#%}]", - "HealthHydration": "Zmniejsza szybkość odwodnienia o [{0:0.#%}]", - "HealthLevelingUpDescription": "Umiejętność zdrowie jest ulepszana pośrednio poprzez zdobywanie poziomów umiejętności siła, kondycja i witalność.", - "HealthOfflineRegenerationInc": "Zwiększa odzyskiwanie zdrowia poza rajdem o [{0:0.#%}]", + "HealthEnergy": "Zmniejsza zużycie energii o [{0:0%}]", + "HealthHydration": "Zmniejsza szybkość odwodnienia o [{0:0%}]", + "HealthOfflineRegenerationInc": "Zwiększa odzyskiwanie zdrowia poza rajdem o [{0:0%}]", "HealthRate": "Regeneracja zdrowia", "HealthTreatment/SkipHealthTreatmentDialogue": "Uwaga! Twoje zdrowie jest niskie.\nPomiąć\u00A0leczenie i\nprzejść do MENU GŁÓWNEGO?", "Heating": "OGRZEWANIE", "Heavy": "Ciężki", "HeavyBleeding": "Ciężkie krwawienie", - "HeavyVestBluntThroughputDamageReduction": "Zmniejsza obrażenia obuchowe na części ciała pod ciężkim pancerzem\u00A0o [{0:0.#%}]", - "HeavyVestDeteriorationChanceOnRepairReduce": "Zmniejsza szansę na zużycie podczas naprawy o [50%]", - "HeavyVestMoveSpeedPenaltyReduction": "Zmniejsza karę\u00A0do szybkości podczas noszenia ciężkiego pancerza o [{0:0.#%}]", + "HeavyVestBluntThroughputDamageReduction": "Zmniejsza obrażenia obuchowe na części ciała pod ciężkim pancerzem\u00A0o [{0:0%}]", + "HeavyVestDeteriorationChanceOnRepairReduce": "Szansa na brak zużycia podczas naprawy (50%)", + "HeavyVestMoveSpeedPenaltyReduction": "Zmniejsza karę\u00A0do szybkości podczas noszenia ciężkiego pancerza o [{0:0%}]", "HeavyVestNoBodyDamageDeflectChance": "Szansa na odbicie pocisku od ciężkiego pancerza", - "HeavyVestRepairDegradationReduction": "Zmniejsza zużycie podczas stosowania zestawów naprawczych o [{0:0.#%}]", + "HeavyVestRepairDegradationReduction": "Zmniejsza zużycie podczas stosowania zestawów naprawczych o [{0:0%}]", "HeavyVests": "Ciężkie pancerze", "HeavyVestsDescription": "Umiejętność noszenia ciężkich pancerzy zmniejsza wielkość otrzymanych obrażeń od penetracji, obrażeń ciała i uszkodzeń kamizelki od eksplozji oraz polepsza mobilność podczas ich noszenia.", - "HeavyVestsLevelingUpDescription": "Umiejętność ciężkie pancerze jest ulepszana poprzez naprawianie ciężkich pancerzy i płyt balistycznych za pomocą zestawów naprawczych.", "Hideout/Craft/ToolMarkerTooltip": "Ten przedmiot zostanie użyty jako zewnętrzne narzędzie. Wróci do twojego schowka jak produkcja się\u00A0skończy.", "Hideout/Handover window/Caption/All weapons": "Wszystkie bronie", "Hideout/Handover window/Message/Items in stash selected:": "Wybrane przedmioty w schowku:", @@ -13405,9 +13355,8 @@ "HideoutExtraSlots": "+2 miejsca na kanister na paliwo\n+2 miejsca na filtry wody\n+2 miejsca na filtry powietrza\n+2 do limitu miejsca monet na farmie Bitcoinów", "HideoutInteractions/TransferItems": "Przenieś przedmioty", "HideoutManagement": "Zarządzanie kryjówką", - "HideoutManagementLevelingUpDescription": "Umiejętność zarządzanie kryjówką jest ulepszana poprzez tworzenie przedmiotów i ulepszanie stref w kryjówce.", - "HideoutResourceConsumption": "Zmniejsza zużycie paliwa oraz filtrów wody i powietrza o [{0:0.#%}]", - "HideoutZoneBonusBoost": "Zwiększa wszystkie procentowe bonusy ze stref w kryjówce o [{0:0.#}%]", + "HideoutResourceConsumption": "Zmniejsza zużycie paliwa oraz filtrów wody i powietrza o [{0:0%}]", + "HideoutZoneBonusBoost": "Zwiększa wszystkie procentowe bonusy ze stref w kryjówce o [{0:0}%]", "Hideout\\Craft\\ToolMarketTooltip": "", "Hideout_area_16_stage_3_description": "Pełnoprawny obszar w kryjówce przeznaczony do przechowywania przedmiotów o wartości kolekcjonerskiej.", "Hiding objective {0:F1}": "Ukrywanie celu {0:F1}", @@ -13442,14 +13391,13 @@ "Identifier": "Ciąg źródłowy", "Illumination": "OŚWIETLENIE", "Immunity": "Odporność", - "ImmunityAvoidPoisonChance": "Zwiększa szansę na uniknięcie trucizny o [{0:0.#%}]", + "ImmunityAvoidPoisonChance": "Zwiększa szansę na uniknięcie trucizny o [{0:0%}]", "ImmunityDescription": "Odporność wpływa na podatność na choroby i skuteczność ich leczenia.", - "ImmunityLevelingUpDescription": "Umiejętność odporność jest ulepszana przez bycie pod wpływem zatrucia i innych negatywnych efektów stymulantów.", - "ImmunityMiscEffects": "Zmniejsza wszystkie negatywne efekty stymulantów, jedzenia, wody o [{0:0.#%}]", - "ImmunityMiscEffectsChance": "Szansa na nabycie odporności na negatywne efekty stymulantów, jedzenia, wody do [{0:0.#%}]", - "ImmunityPainKiller": "Zwiększa czas działania leków przeciwbólowych o [{0:0.#%}]", - "ImmunityPoisonBuff": "Zmniejsza siłę efektu trucizny o [{0:0.#%}]", - "ImmunityPoisonChance": "Zwiększa szansę nabycia odporności na trucizny o [{0:0.#%}]", + "ImmunityMiscEffects": "Zmniejsza wszystkie negatywne efekty stymulantów, jedzenia, wody o [{0:0%}]", + "ImmunityMiscEffectsChance": "Szansa na nabycie odporności na negatywne efekty stymulantów, jedzenia, wody do [{0:0%}]", + "ImmunityPainKiller": "Zwiększa czas działania leków przeciwbólowych o [{0:0%}]", + "ImmunityPoisonBuff": "Zmniejsza siłę efektu trucizny o [{0:0%}]", + "ImmunityPoisonChance": "Szansa na nabycie odporności na trucizny [({0:0%})]", "In equipment": "W EKWIPUNKU", "InMenu": "Menu", "InRaid": "Rajd", @@ -13472,10 +13420,9 @@ "IntellectEliteAmmoCounter": "Licznik amunicji", "IntellectEliteContainerScope": "Oszacuj zawartość pojemnika bez przeszukiwania", "IntellectEliteNaturalLearner": "Nie potrzebujesz instrukcji do badania przedmiotów", - "IntellectLearningSpeed": "Zwiększa szybkość badania przedmiotu o [{0:0.#%}]", - "IntellectLevelingUpDescription": "Umiejętność intelekt jest ulepszana poprzez badanie wcześniej niezidentyfikowanych przedmiotów i naprawianie broni.", - "IntellectRepairPointsCostReduction": "Zmniejsza zużycie punktów zestawu naprawczego o [{0:0.#%}]", - "IntellectWeaponMaintance": "Zwiększa skuteczność naprawy broni o [{0:0.#%}]", + "IntellectLearningSpeed": "Zwiększa szybkość badania przedmiotu o [{0:0%}]", + "IntellectRepairPointsCostReduction": "Zmniejsza zużycie punktów zestawu naprawczego o [{0:0%}]", + "IntellectWeaponMaintance": "Zwiększa skuteczność naprawy broni o [{0:0%}]", "IntelligenceCenter": "CENTRUM WYWIADOWCZE", "Intensity:": "Intensywność:", "Interact": "Interakcja", @@ -13492,7 +13439,7 @@ "Inventory Errors/Cannot load attached magazine": "Nie można załadować\u00A0amunicji do podpiętego magazynka.", "Inventory Errors/Cannot move item during the raid": "Nie można przenieść przedmiotu w trakcie rajdu.", "Inventory Errors/Cannot put item to safe container": "Nie można umieścić przedmiotów w zabezpieczonym pojemniku.", - "Inventory Errors/Cannot resize": "Nie można zainstalować: za mało miejsca na zmianę rozmiaru przedmiotu.", + "Inventory Errors/Cannot resize": "Nie można zainstalować: za mało miejsca.", "Inventory Errors/Cannot resize {0} {1}": "Nie można dodać {0} do {1}. Zmodyfikowana broń będzie zajmować więcej miejsca, niż jest dostępne. Spróbuj przenieść broń w inne miejsce schowka.", "Inventory Errors/Conflicting Items": "Nie można jednocześnie zainstalować {0} i {1}.", "Inventory Errors/Conflicting slot": "Kolidujące miejsce {0}", @@ -13643,9 +13590,8 @@ "LEVEL {0} UPGRADE REQUIREMENTS": "WYMAGANIA ULEPSZENIA {0} POZIOMU", "LH": "LH", "LL": "PL", - "LMG": "Ręczne karabiny maszynowe", - "LMGDescription": "Umiejętność obsługi ręcznych karabinów maszynowych poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania tego typu broni.", - "LMGLevelingUpDescription": "Umiejętność ręczne karabiny maszynowe jest ulepszana poprzez strzelanie i przeładowywanie odpowiadającego typu broni.", + "LMG": "RKM-y", + "LMGDescription": "Umiejętność obsługi ręcznych karabinów maszynowych poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania ręcznych karabinów maszynowych.", "LOAD": "ZAŁADUJ", "LOAD FROM DIRECTORY...": "Wczytaj z katalogu…", "LOAD FROM FILE...": "Wczytaj z pliku…", @@ -13665,9 +13611,8 @@ "LastHero": "LastHero", "LastHeroDescription": "Walka z przeciwnikami w niekończącej się strzelaninie. Będzie tylko jeden zwycięzca.", "LastHeroDescriptionShort": "Jesteś zdany na siebie", - "Launcher": "Granatniki", - "LauncherDescription": "Umiejętność obsługi granatników poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania tego typu broni.", - "LauncherLevelingUpDescription": "Umiejętność granatniki jest ulepszana poprzez strzelanie i przeładowywanie odpowiadającego typu broni.", + "Launcher": "Wyrzutnie rakiet", + "LauncherDescription": "Posługiwanie się granatnikiem.", "LeanLockLeft": "Wychylenie w lewo", "LeanLockRight": "Wychylenie w prawo", "LeanX negative": "Płynne wychylenie w lewo", @@ -13698,13 +13643,12 @@ "Light": "Lekki", "LightBleeding": "Lekkie krwawienie", "LightVestBleedingProtection": "Części ciała osłonięte przez lekki pancerz są odporne na krwawienie", - "LightVestDeteriorationChanceOnRepairReduce": "Zmniejsza szansa na zużycie podczas używania zestawów naprawczych o [50%]", - "LightVestMeleeWeaponDamageReduction": "Zmniejsza obrażenia z broni białej na części ciała pod ciężkim pancerzem\u00A0o [{0:0.#%}]", - "LightVestMoveSpeedPenaltyReduction": "Zmniejsza karę\u00A0do szybkości podczas noszenia lekkiego pancerza o [{0:0.#%}]", - "LightVestRepairDegradationReduction": "Zmniejsza zużycie podczas stosowania zestawów naprawczych o [{0:0.#%}]", + "LightVestDeteriorationChanceOnRepairReduce": "Szansa na brak zużycia podczas naprawy (50%)", + "LightVestMeleeWeaponDamageReduction": "Zmniejsza obrażenia z broni białej na części ciała pod ciężkim pancerzem\u00A0o [{0:0%}]", + "LightVestMoveSpeedPenaltyReduction": "Zmniejsza karę\u00A0do szybkości podczas noszenia lekkiego pancerza o [{0:0%}]", + "LightVestRepairDegradationReduction": "Zmniejsza zużycie podczas stosowania zestawów naprawczych o [{0:0%}]", "LightVests": "Lekkie pancerze", "LightVestsDescription": "Umiejętność noszenia lekkich kamizelek kuloodpornych poprawia mobilność i redukuje penetrację pocisków oraz obrażenia otrzymywane z broni białej.", - "LightVestsLevelingUpDescription": "Umiejętność lekkie pancerze jest ulepszana poprzez naprawianie lekkich pancerzy i płyt balistycznych za pomocą zestawów naprawczych.", "Lighthouse": "Latarnia morska", "Lighthouse_pass": "Droga do latarni", "Lighting quality:": "Jakość oświetlenia:", @@ -13756,7 +13700,6 @@ "MAP": "MAPA", "MASTERING": "OPANOWANIE", "MATERIAL": "Materiał", - "MAX AMMO DAMAGE": "Obrażenia", "MAXCOUNT": "MAKSYMALNA ILOŚĆ", "MAXIMUM THROW DAMAGE": "MAKSYMALNE OBRAŻENIA POJEDYNCZEGO FRAGMENTU", "MED USE TIME": "CZAS UŻYCIA MEDYKAMENTU", @@ -13805,12 +13748,11 @@ "MagDrills": "Obsługa magazynków", "MagDrillsDescription": "Umiejętność obsługi magazynków – ładowania i rozładowywania amunicji, sprawdzania ilości pozostałych nabojów.", "MagDrillsInstantCheck": "Magazynek jest sprawdzony natychmiast po przeniesieniu do twojego ekwipunku", - "MagDrillsInventoryCheckAccuracy": "Zwiększa dokładność sprawdzania magazynku poprzez menu kontekstowe o [{0:0.#}%]", - "MagDrillsInventoryCheckSpeed": "Zwiększa szybkość sprawdzania magazynku poprzez menu kontekstowe o [{0:0.#}%]", - "MagDrillsLevelingUpDescription": "Umiejętność obsługa magazynków jest ulepszana poprzez ładowanie, rozładowywanie i sprawdzanie magazynków.", + "MagDrillsInventoryCheckAccuracy": "Zwiększa dokładność sprawdzania magazynku poprzez menu kontekstowe o [{0}%]", + "MagDrillsInventoryCheckSpeed": "Zwiększa szybkość sprawdzania magazynku poprzez menu kontekstowe o [{0}%]", "MagDrillsLoadProgression": "Ładowanie magazynków jest szybsze z każdym załadowanym nabojem", - "MagDrillsLoadSpeed": "Zwiększa szybkość ładowania amunicji o [{0:0.#}%]", - "MagDrillsUnloadSpeed": "Zwiększa szybkość rozładowania amunicji o [{0:0.#}%]", + "MagDrillsLoadSpeed": "Zwiększa szybkość ładowania amunicji o [{0}%]", + "MagDrillsUnloadSpeed": "Zwiększa szybkość rozładowania amunicji o [{0}%]", "MagPreset/CaliberNotSelected": "Nie określono kalibru", "MagPreset/DiscardCahangesDescription": "Wszelkie niezapisane zmiany zostaną utracone.\nKontynuować?", "MagPreset/Error/ContainsMissingItems": "Nie znaleziono amunicji:", @@ -13881,27 +13823,24 @@ "Meds": "Medykamenty", "Melee": "Broń\u00A0biała", "MeleeDescription": "Posługiwanie się bronią białą.", - "MeleeLevelingUpDescription": "Umiejętność broń biała jest ulepszana poprzez uderzanie wrogów bronią białą.", "Memory": "Pamięć", "MemoryDescription": "Wytrenowana umiejętności utrzymuje się dłużej zanim zacznie być zapominana.", "MemoryEliteMentalNoDegradation": "Nie zapominasz żadnych umiejętności", - "MemoryLevelingUpDescription": "Umiejętność pamięć jest ulepszana przez", - "MemoryMentalForget1": "Zmniejsza szybkość, w jakiej zapominasz umiejętności o [{0:0.#%}]", - "MemoryMentalForget2": "Zmniejsza cofanie poziomów umiejętności o [{0:0.#%}]", + "MemoryMentalForget1": "Zmniejsza szybkość, w jakiej zapominasz umiejętności o [{0:0%}]", + "MemoryMentalForget2": "Zmniejsza cofanie poziomów umiejętności o [{0:0%}]", "Mental": "Mentalne", "Merchant": "Handlarz", "Metabolism": "Metabolizm", "MetabolismDescription": "Zdrowy metabolizm poprawia i zwiększa efektywność jedzenia i picia, jak i opóźnia zapominanie umiejętności fizycznych.", "MetabolismEliteBuffNoDyhydration": "Nie odnosisz obrażeń z powodu wyczerpania i odwodnienia", "MetabolismEliteNoForget": "Nie zapominasz żadnych umiejętności fizycznych", - "MetabolismEnergyExpenses": "Zmniejsza zużycie energii i odwodnienie o [{0:0.#%}]", - "MetabolismLevelingUpDescription": "Umiejętność metabolizm jest ulepszana poprzez zużywanie zapasów energii i wody.", - "MetabolismMiscDebuffTime": "Zmniejsza negatywny czas efektów stymulantów, jedzenia, wody o [{0:0.#%}]", - "MetabolismPhysicsForget": "Zmniejsza szybkość, w jakiej zapominasz umiejętności fizyczne o [{0:0.#%}]", + "MetabolismEnergyExpenses": "Zmniejsza zużycie energii i odwodnienie o [{0:0%}]", + "MetabolismMiscDebuffTime": "Zmniejsza negatywny czas efektów stymulantów, jedzenia, wody o [{0:0%}]", + "MetabolismPhysicsForget": "Zmniejsza szybkość, w jakiej zapominasz umiejętności fizycznych o [{0:0%}]", "MetabolismPhysicsForget2": "Zmniejsza maksymalną skalę zanikania umiejętności fizycznych", "MetabolismPhysicsNoForget": "Od teraz umiejętności fizyczne nie są zapominane", - "MetabolismPoisonTime": "Zmniejsza czas efektu trucizny o [{0:0.#%}]", - "MetabolismRatioPlus": "Zwiększa pozytywne efekty jedzenia i picia o [{0:0.#%}]", + "MetabolismPoisonTime": "Zmniejsza czas efektu trucizny o [{0:0%}]", + "MetabolismRatioPlus": "Zwiększa pozytywne efekty jedzenia i picia o [{0:0%}]", "Microphone sensitivity:": "Czułość mikrofonu:", "MildMusclePain": "Lekki ból mięśni", "Military Checkpoint": "Punkt kontrolny Scavów", @@ -14017,7 +13956,7 @@ "Not available in alpha": "Niedostępne w obecnej wersji beta.", "Not available in raid": "Niedostępne podczas rajdu.", "Not enough experience gained. Therefore, you have received the Ran Through exit status.": "Nie zdobyłeś wystarczająco dużo doświadczenia. W związku z tym otrzymałeś status „Przebiegnięcie”.", - "Not enough place for item": "Za mało miejsca na przedmiot", + "Not enough place for item": "Brak miejsca na przedmiot", "Not implemented yet": "Jeszcze niezaimplementowane", "NotEnoughMoney": "Za mało pieniędzy", "NotEnoughRepairPoints": "Niewystarczająco punktów naprawy", @@ -14081,7 +14020,7 @@ "OfflineRaid/StartAsGroup": "Zacznij jako grupa", "OfflineRaid/startasgrouptooltip": "Po wybraniu tej opcji gracze rozpoczynają rajd obok siebie.", "OfflineRaidScreen/WarningHeader": "Uwaga! Twój postęp nie jest zapisywany w trybie ćwiczebnym!", - "OfflineRaidScreen/WarningText": "Gra w kooperacji wymaga wersji gry Edge of Darkness albo rozszerzenie współpracy dla wszystkich członków grupy.\nGra będzie odbywać\u00A0się na dedykowanych serwerach Escape from Tarkov.", + "OfflineRaidScreen/WarningText": "Gra w kooperacji wymaga wersji gry Edge of Darkness dla wszystkich członków grupy.\nGra będzie odbywać\u00A0się na dedykowanych serwerach Escape from Tarkov.", "Old Azs Gate": "Brama starej stacji paliw", "Old Gas Station": "Stara stacja paliw", "Old Road Gate": "Stara brama drogowa", @@ -14136,19 +14075,17 @@ "Penalties": "Kary za porażkę", "Pending requests": "Oczekujące zaproszenia", "Perception": "Postrzeganie", - "PerceptionDescription": "Zwiększa odległość słyszenia, poprawia skupienie celowania i ułatwia wykrywanie pobliskich łupów.", - "PerceptionFov": "Zwiększa koncentracja podczas celowania o [{0:0.#%}]", - "PerceptionHearing": "Zwiększa zasięg słyszenia o [{0:0.#%}]", - "PerceptionLevelingUpDescription": "Umiejętność postrzeganie jest ulepszana poprzez znajdowanie i podnoszenie dowolnych przedmiotów.", - "PerceptionLootDot": "Zwiększa odległość wykrywania łupów o [{0:0.#%}]", + "PerceptionDescription": "Opanowanie postrzegania zwiększa zasięg słyszenia, poprawia skupienie przy celowaniu i ułatwia wykrywanie łupu.", + "PerceptionFov": "Zwiększa koncentracja podczas celowania o [{0:0%}]", + "PerceptionHearing": "Zwiększa zasięg słyszenia o [{0:0%}]", + "PerceptionLootDot": "Zwiększa odległość wykrywania łupów o [{0:0%}]", "PerceptionmEliteNoIdea": "Powiadomienie o pobliskich łupach", "Perish": "Poległ", "Physical": "Fizyczne", "Pier Boat": "Łódź przy molo", "Pistol": "Pistolety", "Pistol Mastering": "Pistolet", - "PistolDescription": "Umiejętność obsługi pistoletów poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania tego typu broni.", - "PistolLevelingUpDescription": "Umiejętność pistolety jest ulepszana poprzez strzelanie i przeładowywanie odpowiadającego typu broni.", + "PistolDescription": "Umiejętność obsługi pistoletów poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania pistoletów.", "PlaceOfFame": "MIEJSCE CHWAŁY", "PlantLocationDescription": "Placówka przemysłowa i obiekty zakładu chemicznego nr 16 zostały nielegalnie wynajęte korporacji TerraGroup. W trakcie Wojen Kontraktowych owa fabryka była miejscem licznych potyczek między operatorami BEAR i USEC, co determinowało kontrolę nad całą przemysłową dzielnicą Tarkowa. Z czasem fabryka stała się schronieniem dla cywilów, Scavów i sporadycznie operatorów USEC lub BEAR.", "Player": "Gracz", @@ -14219,10 +14156,9 @@ "Prone": "Czołganie", "ProneMovement": "Czołganie", "ProneMovementDescription": "Opanowanie czołgania się sprawia, że jest szybsze i cichsze.", - "ProneMovementElite": "Zwiększa prędkość czołgania o [{0:0.#%}]", - "ProneMovementLevelingUpDescription": "Umiejętność czołganie jest ulepszana poprzez poruszanie się w pozycji leżącej.", - "ProneMovementSpeed": "Zwiększa prędkość czołgania się o [{0:0.#%}]", - "ProneMovementVolume": "Zmniejsza głośność czołgania się o [{0:0.#%}]", + "ProneMovementElite": "Zwiększa prędkość czołgania o [{0:0%}]", + "ProneMovementSpeed": "Zwiększa prędkość czołgania się o [{0:0%}]", + "ProneMovementVolume": "Zmniejsza głośność czołgania się o [{0:0%}]", "Protect objective {0:F1}": "Chroń cel {0:F1}", "QUEST ITEM": "PRZEDMIOT FABULARNY", "QUEST ITEMS": "P. FABULARNE", @@ -14410,9 +14346,8 @@ "Recoil Up": "Odrzut pionowy", "RecoilControl": "Kontrola odrzutu", "RecoilControlDescription": "Lepsza kontrola odrzutu zmniejsza rozrzut poziomy, czyniąc odrzut bardziej przewidywanym.", - "RecoilControlElite": "Zwiększa kontrolę odrzutu o [{0:0.#%}]", - "RecoilControlImprove": "Zwiększa kontrolę odrzutu o [{0:0.#%}]", - "RecoilControlLevelingUpDescription": "Umiejętność kontrola odrzutu jest ulepszana przez strzelanie serią. Im wyższy podstawowy odrzut broni, tym szybciej ulepsza się ta umiejętność.", + "RecoilControlElite": "Zwiększa kontrolę odrzutu o [{0:0%}]", + "RecoilControlImprove": "Zwiększa kontrolę odrzutu o [{0:0%}]", "RecommendedVRAM:": "Polecany VRAM", "Reconnection is not available at this moment due to testing purposes": "Ze względu na trwające testy, ponowne połączenie nie jest w tej chwili możliwe", "RedRebel_alp": "Szlak wspinaczkowy", @@ -14442,7 +14377,6 @@ "Report game bug abuse": "Zgłoś nadużywanie błędu gry", "Report offensive nickname": "Zgłoś obraźliwy pseudonim", "Report suspected cheat use": "Zgłoś\u00A0podejrzenie użycia cheatów", - "Report suspicious profile": "Zgłoś podejrzany profil", "ReportAbuseBug": "Zgłoś nadużycie błędu", "ReportAbuseVoip": "Zgłoś nadużycie VoIP i radia", "ReportCheater": "Zgłoś podejrzanego oszusta", @@ -14477,8 +14411,7 @@ "Revert your settings to default?": "Czy na pewno chcesz przywrócić swoje ustawienia do ich domyślnych wartości?", "Revolver": "Rewolwery", "Revolver Mastering": "Rewolwer", - "RevolverDescription": "Umiejętność obsługi rewolwerów poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania tego typu broni.", - "RevolverLevelingUpDescription": "Umiejętność rewolwery jest ulepszana poprzez strzelanie i przeładowywanie odpowiadającego typu broni.", + "RevolverDescription": "Umiejętność obsługi rewolwerów poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania rewolwerów.", "RezervBase": "Rezerwy", "Rig": "Oporządzenie", "Right Arm": "PRAWA RĘKA", @@ -14500,7 +14433,7 @@ "SCAV_Industrial_Zone": "Bramy strefy przemysłowej", "SCAV_Underboat_Hideout": "Kryjówka pod lądowiskiem", "SD Tarkov Streets": "Tryb niższej rozdzielczości tekstur ulic Tarkowa", - "SE Exfil": "Punkt kontrolny EMERCOM", + "SE Exfil": "Punkt kontrolny Emercom", "SEARCHING...": "SZUKANIE", "SECURED": "ZABEZPIECZONE", "SELECT": "WYBIERZ", @@ -14526,9 +14459,8 @@ "SKILLS": "UMIEJĘTNOŚCI", "SKILLS_SPEED_DOWN": "Zmniejszone\u00A0zdobywanie doświadczenia", "SKILLS_SPEED_UP": "Zwiększone zdobywanie doświadczenia", - "SMG": "Pistolety maszynowe", - "SMGDescription": "Umiejętność obsługi pistoletów maszynowych poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania tego typu broni.", - "SMGLevelingUpDescription": "Umiejętność pistolety maszynowe jest ulepszana poprzez strzelanie i przeładowywanie odpowiadającego typu broni.", + "SMG": "PM-y", + "SMGDescription": "Umiejętność obsługi pistoletów maszynowych poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania pistoletów maszynowych.", "SNIPERPHRASE": "SNAJPER", "SO": "SO", "SOUND": "DŹWIĘK", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "Kwota sprzedaży z {0} wzrosła o {1}", "Sandbox": "Strefa zero", "Sandbox_VExit": "Kordon policyjny: wyjazd", - "Sandbox_high": "Strefa zero", "Saturation:": "Nasycenie:", "Savage matchmaker": "Rozpocznij grę jako Scav, lokalny bandyta z losowym wyposażeniem. Tarkow to twój dom, ty ustalasz zasady!", "SavageBannerDescription": "Rajd jako Scav różni się od gry twoją główną postacią PMC. Gracze Scavy pojawiają się w losowych miejscach i w losowym momencie rajdu. Poziom zdrowia oraz ekwipunek Scava również są losowe. Ucieczka jako Scav umożliwi ci przeniesienie uzyskanych w trakcie rajdu łupów do schowka twojej głównej postaci PMC. Ukończenie rajdu jako Scav nie przeniesie doświadczenia na twoją postać PMC. Śmierć jako Scav nie wpłynie na twój postęp w żaden sposób.", @@ -14585,7 +14516,6 @@ "Search": "Przeszukiwanie", "SearchDescription": "Opanowanie umiejętności przeszukiwania pozwala ci przeszukiwać\u00A0ciała i pojemniki szybciej i bardziej efektywnie.", "SearchDouble": "Przeszukaj dwa pojemniki naraz", - "SearchLevelingUpDescription": "Umiejętność przeszukiwanie jest ulepszana poprzez przeszukiwanie kontenerów.", "SecondPrimaryWeapon": "Na plecach", "SecondaryWeapon": "Broń boczna", "SecuredContainer": "Sakwa", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "Niektóre ustawienia zostały zmienione. Czy chcesz je zapisać?", "Settings/Sound/BinauralSound": "Dźwięk binauralny", "Settings/Sound/ChatVolume": "Głośność czatu:", - "Settings/Sound/CommentatorVolume": "Głośność spikera:", "Settings/Sound/Device": "Urządzenie audio", "Settings/Sound/HideoutVolume": "Głośność kryjówki:", "Settings/Sound/InterfaceVolume": "Głośność interfejsu:", "Settings/Sound/MusicOnRaidEnd": "Muzyka po zakończeniu rajdu", "Settings/Sound/MusicVolume": "Głośność muzyki:", "Settings/Sound/OverallVolume": "Głośność ogólna:", - "Settings/Sound/ReadyToMatchSoundVolume": "Głośność ekranu akceptowania meczu:", "Settings/UnavailablePressType": "Niedostępny", "SevereMusclePain": "Silny ból mięśni", "Shack": "Punkt kontrolny bazy wojskowej", @@ -14676,8 +14604,7 @@ "Shorl_free_scav": "Droga do wybrzeża", "Shotgun": "Strzelby", "Shotgun Mastering": "Strzelba", - "ShotgunDescription": "Umiejętność obsługi strzelb poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania tego typu broni.", - "ShotgunLevelingUpDescription": "Umiejętność strzelby jest ulepszana poprzez strzelanie i przeładowywanie odpowiadającego typu broni.", + "ShotgunDescription": "Umiejętność obsługi strzelb poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania strzelb.", "Show icons": "Pokaż ikony", "Show:": "Pokaż:", "SightingRange": "ZASIĘG CELOWANIA", @@ -14698,10 +14625,9 @@ "Smg Mastering": "PM", "Smuggler's Boat": "Łódź przemytnika", "Smugglers_Trail_coop": "Ścieżka przemytnika (współpraca)", - "Sniper": "Karabiny powtarzalne", + "Sniper": "Karabiny wyborowe", "Sniper Roadblock": "Blokada snajperska", - "SniperDescription": "Umiejętność obsługi karabinów powtarzalnych poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania tego typu broni.", - "SniperLevelingUpDescription": "Umiejętność karabiny powtarzalne jest ulepszana poprzez strzelanie i przeładowywanie odpowiadającego typu broni.", + "SniperDescription": "Umiejętność obsługi karabinów wyborowych poprawia ogólną obsługę, zmniejsza odrzut i czas przeładowania karabinów wyborowych.", "SniperRifle": "Karabiny wyborowe", "SniperRifle Mastering": "Karabin wyborowy", "Sniper_exit": "Aleja Mira", @@ -14734,8 +14660,6 @@ "StartInGroup": "Razem", "StartLookingForGroup": "Zacznij szukać grupy", "StartNotInGroup": "Osobno", - "StashLinesExternalObtain": "Ulepszenie schowka", - "StashLinesExternalObtain/Tooltip": "Ulepszenie schowka jest dostępne do zakupu na stronie internetowej", "StatFoundMoneyEUR": "Znalezione EUR", "StatFoundMoneyRUB": "Znalezione RUB", "StatFoundMoneyUSD": "Znalezione USD", @@ -14770,22 +14694,20 @@ "StomachBloodloss": "Krwawienie z jamy brzusznej", "Stop looking for group": "Anulowanie szukania grupy", "Strength": "Siła", - "StrengthBuffAim": "Zmniejsza zużycie wytrzymałości podczas celowania o [{0:0.#%}]", + "StrengthBuffAim": "Zmniejsza zużycie wytrzymałości podczas celowania o [{0:0%}]", "StrengthBuffElite": "Wyposażona broń nie dodaje się do wagi twojej postaci (nie licząc broni w plecakach)", - "StrengthBuffJumpHeightInc": "Zwiększa wysokość skoku o [{0:0.#%}]", - "StrengthBuffLiftWeightInc": "Zwiększa udźwig o [{0:0.#%}]", - "StrengthBuffMeleeCrits": "Zwiększa szansę na zadanie krytycznych obrażeń bronią białą o [{0:0.#%}]", - "StrengthBuffMeleePowerInc": "Zwiększa siłę uderzenia bronią\u00A0białą o [{0:0.#%}]", - "StrengthBuffSprintSpeedInc": "Zwiększa prędkość poruszania się\u00A0i sprintu o [{0:0.#%}]", - "StrengthBuffThrowDistanceInc": "Zwiększa zasięg rzutu o [{0:0.#%}]", + "StrengthBuffJumpHeightInc": "Zwiększa wysokość skoku o [{0:0%}]", + "StrengthBuffLiftWeightInc": "Zwiększa udźwig o [{0:0%}]", + "StrengthBuffMeleeCrits": "Szansa na zadanie krytycznych obrażeń bronią białą [({0})]", + "StrengthBuffMeleePowerInc": "Zwiększa siłę uderzenia bronią\u00A0białą o [{0:0%}]", + "StrengthBuffSprintSpeedInc": "Zwiększa prędkość poruszania się\u00A0i sprintu o [{0:0%}]", + "StrengthBuffThrowDistanceInc": "Zwiększa zasięg rzutu o [{0:0%}]", "StrengthDescription": "Zwiększenie siły pozwoli ci na wyższy skok, szybszy sprint, uderzanie mocniej bronią białą, rzucanie dalej, a także na noszenie większej wagi.", - "StrengthLevelingUpDescription": "Umiejętność siła jest ulepszana poprzez sprintowanie z efektem przeciążenia, rzucanie granatami, używanie broni białej oraz przez trening na siłowni w kryjówce.", "StressBerserk": "Dostęp do trybu Berserka", - "StressPainChance": "Zmniejsza szansę na szok z bólu o [{0:0.#%}]", + "StressPainChance": "Zmniejsza szansę na szok z bólu o [{0:0%}]", "StressResistance": "Odporność na stres", "StressResistanceDescription": "Odporność na stres zwiększa szansę wytrzymania szoku pourazowego, zmniejsza drżenie rąk i drgawki.", - "StressResistanceLevelingUpDescription": "Umiejętność odporności na stres jest ulepszana przez otrzymywanie obrażeń. Posiadanie efektu statusu ból bez użycia środków przeciwbólowych również ulepsza tę umiejętność.", - "StressTremor": "Zmniejsza drżenie o [{0:0.#%}]", + "StressTremor": "Zmniejsza drżenie o [{0:0%}]", "StringSeparator/Or": " lub ", "Stun": "Oszołomiony", "Subtask completed:": "Cel podrzędny wykonany:", @@ -14851,9 +14773,8 @@ "Summary": "Podsumowanie", "Surgery": "Chirurgia", "SurgeryDescription": "Umiejętność przeprowadzania operacji w terenie może uratować ci życie w krytycznych sytuacjach. Im lepiej opanujesz tę umiejętność, tym szybciej i lepiej będziesz przeprowadzać operacje.", - "SurgeryLevelingUpDescription": "Umiejętność chirurgia jest ulepszana poprzez używanie zestawów chirurgicznych na zranionych częściach ciała.", - "SurgeryReducePenalty": "Zmniejsza karę\u00A0PŻ chirurgii o [{0:0.#%}]", - "SurgerySpeed": "Zwiększa szybkość chirurgii o [{0:0.#%}]", + "SurgeryReducePenalty": "Zmniejsza karę\u00A0PŻ chirurgii o [{0:0%}]", + "SurgerySpeed": "Zwiększa szybkość chirurgii o [{0:0%}]", "Survival Rate Short": "WP: {0}%", "SurvivalRate": "Współczynnik przetrwania", "Survived": "Przetrwano", @@ -14926,9 +14847,8 @@ "ThrowItem": "Wyrzucenie przedmiotu", "Throwing": "Miotane", "ThrowingDescription": "Umiejętność posługiwania się bronią miotaną pozwala rzucać granaty dalej i z mniejszym zużyciem energii.", - "ThrowingEnergyExpenses": "Zmniejsza wymaganą\u00A0energię\u00A0rzutu o [{0:0.#%}]", - "ThrowingLevelingUpDescription": "Umiejętność miotane jest ulepszana poprzez rzucanie granatami.", - "ThrowingStrengthBuff": "Zwiększa siłę rzutu o [{0:0.#%}]", + "ThrowingEnergyExpenses": "Zmniejsza wymaganą\u00A0energię\u00A0rzutu o [{0:0%}]", + "ThrowingStrengthBuff": "Zwiększa siłę rzutu o [{0:0%}]", "ThrowingWeaponsBuffElite": "Broń miotana nie wymaga energii i zmęczenie nie wpływa na ich celność", "Time flow": "Upływ czasu", "Time to reconnect left ({0})": "Czas pozostały do ponownego dołączenia ({0})", @@ -14976,11 +14896,11 @@ "Trading/Dialog/AvaliableServices": "Możesz mi w czymś pomóc?", "Trading/Dialog/Btr/News": "Co nowego?", "Trading/Dialog/Btr/News/Next": "Jakieś nowe wiadomości?", - "Trading/Dialog/Btr/News1": "Ostatnio bardzo mocno śnieżyło! Nie mieliśmy takiego śniegu od czasów Wojen Kontraktowych. Jakbyśmy nie mieszkali na północy. Szkoda, że już wszystko stopniało.", - "Trading/Dialog/Btr/News2": "Rzadko wychodzisz, prawda? Było wielkie święto, całe miasto świętowało! Przy okazji, wesołych świąt.", - "Trading/Dialog/Btr/News3": "Nasi szefowie narobili niezłego bałaganu, co? Siedząc na swoich miejscach, nie ruszając się, nie pozwalając nikomu odetchnąć.", - "Trading/Dialog/Btr/News4": "Ten dziwak, który rok w rok przebiera się za Świętego Mikołaja, teraz gada! Myślałem, że jest niemy.", - "Trading/Dialog/Btr/News5": "Ludzie zaczęli zbierać figurki lokalnych celebrytów w całym mieście. Zastanawiam się, czy mój BTR okaże się jedną z nich.", + "Trading/Dialog/Btr/News1": "Największą nowością jest BTR! Wszystko naprawiłem sam. To moje własne dzieło. Teraz mogę wozić ludzi. Może to pomoże mi zapłacić za naprawę.", + "Trading/Dialog/Btr/News2": "Ktoś organizuje walki gladiatorów w Tarkowie. Podobno wiele osób pojechało tam z własnej woli. Pieniądze są całkiem niezłe. Jeśli przeżyjesz, oczywiście!", + "Trading/Dialog/Btr/News3": "W całym Tarkovie zawrzało z powodu pewnych dokumentów TerraGroup. Szukano ich nawet za granicą, ale jakoś w to nie wierzę.", + "Trading/Dialog/Btr/News4": "Jakiś czas temu większość amunicji AP zniknęła z zapasów handlarzy. Wojownicy tacy jak ty biegali po całym Tarkowie, szukając zapasów amunicji innych ludzi. Teraz jednak wszystko jest w porządku.", + "Trading/Dialog/Btr/News5": "Sanitar próbował ostatnio wzmocnić swoje wpływy w Tarkowie. Podobno miał jakieś antidotum. Niedługo wcześniej wiele osób zostało otrutych. Przypadek? Myślę, że nie.", "Trading/Dialog/Btr/NoNews": "To chyba wszystkie wiadomości, jakie mam.", "Trading/Dialog/Btr/ServicePayoff{0}": "OK, może być. (przekaż „{0}”)", "Trading/Dialog/BtrBotCover/Description": "Przez cały czas przebywania w BTR będziemy strzelać do każdego, kto wystawi nos. Oczyścimy też strefę zrzutu i będziemy cię osłaniać, gdy będziesz wysiadał, ale nie na długo.", @@ -14999,34 +14919,18 @@ "Trading/Dialog/PlayerHandoveItem{0}": "Znalazłem to. (przekaż „{0}”)", "Trading/Dialog/PlayerTaxi/Description": "W te miejsca mogę cię podrzucić. Wybierz jedno.", "Trading/Dialog/PlayerTaxi/Name": "Przejedź się", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "W porządku, miejsce docelowe – kino Rodina. Cena dla ciebie w porządku?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Kino Rodina", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "Jedziemy do tramwaju. Masz gotówkę, tak?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Tramwaj", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "Świetnie, jesteśmy na drodze do centrum miasta. Masz wystarczająco gotówki?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "Centrum miasta", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Pojadę do zawalonego dźwigu. Cena ci odpowiada?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Zawalony żuraw", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "Zabiorę cię do starego punktu kontrolnego Scavów. Cena jest w porządku, tak?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Stary punkt kontrolny Scavów", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "Zawiozę cię do hotelu Pinewood. Jak cena, wszystko odpowiada?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Hotel Pinewood", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "Kierunek na bunkier Scava. Cena w porządku?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Bunkier Scava", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "Zatopiona wioska, co? Myślę, że damy radę. Oto cena.", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Zatopiona wioska", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "Mogę doprowadzić cię do rozdroża. Masz wystarczająco dużo gotówki?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Rozdroża", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "Tartak? Nie ma problemu! Oto moja cena.", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Tartak", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "W porządku, do punktu kontrolnego USEC. Ale nie za darmo.", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "Punkt kontrolny USEC", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "Wyznaczam trasę do bazy EMERCOM. Cena pasuje?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "Baza EMERCOM", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "Wporząsiu, kierunek stary tartak. Tu masz cenę.", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Stary tartak", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "Podrzucić cię do zajezdni? Ale żebyś wiedział, beze mnie się stamtąd nie wydostaniesz. Jeśli cena jest w porządku, pilnuj tam czasu, ok?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Zajezdnia kolejowa", + "Trading/Dialog/PlayerTaxi/p1/Description": "W porządku, miejsce docelowe – kino Rodina. Cena dla ciebie w porządku?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Kino Rodina", + "Trading/Dialog/PlayerTaxi/p2/Description": "Jedziemy do tramwaju. Masz gotówkę, tak?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tramwaj", + "Trading/Dialog/PlayerTaxi/p3/Description": "Świetnie, jesteśmy na drodze do centrum miasta. Masz wystarczająco gotówki?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Centrum miasta", + "Trading/Dialog/PlayerTaxi/p4/Description": "Pojadę do zawalonego dźwigu. Cena ci odpowiada?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Zawalony żuraw", + "Trading/Dialog/PlayerTaxi/p5/Description": "Zabiorę cię do starego punktu kontrolnego Scavów. Cena jest w porządku, tak?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Stary punkt kontrolny Scavów", + "Trading/Dialog/PlayerTaxi/p6/Description": "Zawiozę cię do hotelu Pinewood. Jak cena, wszystko odpowiada?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Hotel Pinewood", "Trading/Dialog/Quit": "Odejdź", "Trading/Dialog/ServicePayoff{0}": "W porządku, to powinno wystarczyć. (przekaż „{0}”)", "Trading/Dialog/ToggleHistoryOff": "Ukryj historię", @@ -15062,14 +14966,13 @@ "TransferScreen/TransferFailed": "Nie udało się kupić usługi", "TransferScreen/TransferSuccess": "Usługa kupiona!", "Tremor": "Drżenie", - "TroubleFixing": "Zwiększa szybkość rozwiązywania problemów o [{0:0.#%}]", - "TroubleFixingAmmoElite": "Zmniejsza szansę na zacięcia przez magazynek po naprawieniu zacięcia z tego samego powodu o [50%]", - "TroubleFixingDurElite": "Zmniejsza szansę\u00A0zacięć\u00A0bazującą na wytrzymałości broni po naprawieniu zacięcia z tego samego powodu o [50%]", + "TroubleFixing": "Zwiększa szybkość rozwiązywania problemów o [{0:0%}]", + "TroubleFixingAmmoElite": "Zmniejsza szansę na zacięcia przez magazynek o 50% po naprawieniu zacięcia z tego samego powodu", + "TroubleFixingDurElite": "Zmniejsza szansę\u00A0zacięć\u00A0bazującą na wytrzymałości broni o 50% po naprawieniu zacięcia z tego samego powodu", "TroubleFixingExamineMalfElite": "Rozpoznanie rodzaju zacięcia nie wymaga badania broni", - "TroubleFixingMagElite": "Zmniejsza szansę\u00A0zacięć od naboju po naprawieniu zacięcia z tego samego powodu o [50%]", + "TroubleFixingMagElite": "Zmniejsza szansę\u00A0zacięć od naboju o 50% po naprawieniu zacięcia z tego samego powodu", "TroubleShootingDescription": "Umiejętność rozwiązywania problemów ułatwia naprawianie zacięć broni.", "Troubleshooting": "Rozwiązywanie problemów", - "TroubleshootingLevelingUpDescription": "Umiejętność rozwiązywanie problemów jest ulepszana poprzez regularne naprawianie usterek broni.", "Try_keycard {0}": "Spróbuj {0}", "Tunnel": "Tunel", "Tunnel_Shared": "Boczny tunel (współpraca)", @@ -15152,11 +15055,6 @@ "UI/Arena/Place_7": "7. miejsce", "UI/Arena/Place_8": "8. miejsce", "UI/Arena/Place_9": "9. miejsce", - "UI/ArmorPenetration/High": "Wysoka", - "UI/ArmorPenetration/Low": "Niska", - "UI/ArmorPenetration/Medium": "Średnia", - "UI/ArmorPenetration/VeryHigh": "Bardzo wysoka", - "UI/ArmorPenetration/VeryLow": "Bardzo niska ", "UI/Charisma/Discount/Insurance": "Koszt ubezpieczenia", "UI/Charisma/Discount/PostRaidHealing": "Koszt leczenia", "UI/Charisma/Discount/ScavCase": "Koszt skrytki Scava", @@ -15298,7 +15196,7 @@ "UndefinedDescription": "Niezdefiniowano", "UndefinedDescriptionShort": "Niezdefiniowano", "Unit is ready to be installed": "Moduł jest gotowy do instalacji", - "Unity_free_exit": "Punkt kontrolny EMERCOM", + "Unity_free_exit": "Punkt Kontrolny Emercom", "Unknown": "nieznane", "Unknown item": "Nieznany przedmiot", "Unknown reward": "Nieznana nagroda", @@ -15334,18 +15232,15 @@ "Very good standing": "bardzo dobra", "Vest": "Kamizelki", "Village": "Wioska", - "Violation/IntentionalTeamDamage/Warning": "Twoje konto zostanie zablokowane, jeśli nadal będziesz strzelać do członków swojej drużyny", - "Violation/IntentionalTeamKill/Warning": "Twoje konto zostanie zablokowane, jeśli będziesz kontynuować zabijanie członków swojej drużyny na początku rundy", "Violation/TeamKill/Warning": "Twoje konto zostało zablokowane, jeżeli dalej będziesz zabijać członków swojej drużyny", "Vital mod weapon in hands": "Nie możesz modyfikować niezbędnych części, kiedy broń znajduje się w twoich rękach.", "Vital parts": "Niezbędne części", "Vitality": "Witalność", - "VitalityBuffBleedChanceRed": "Zmniejsza szansę na krwawienie o [{0:0.#%}]", + "VitalityBuffBleedChanceRed": "Zmniejsza szansę na krwawienie o [{0:0%}]", "VitalityBuffBleedStop": "Wszelkie krwawienie ustępuje samo z siebie", "VitalityBuffRegeneration": "Zwiększa regenerację zdrowia w walce", - "VitalityBuffSurviobilityInc": "Zmniejsza szansę na śmierć poprzez utratę kończyny o [{0:0.#%}]", + "VitalityBuffSurviobilityInc": "Zmniejsza szansę na śmierć poprzez utratę kończyny o [{0:0%}]", "VitalityDescription": "Witalność zwiększa twoją szansę na przetrwanie rany poprzez zmniejszenie prawdopodobieństwa wystąpienia krwawienia oraz natychmiastowej śmierci przez krytyczne zranienie części ciała.", - "VitalityLevelingUpDescription": "Umiejętność witalność jest ulepszana poprzez otrzymywanie różnych krwawień i obrażeń.", "Voice": "Głos postaci", "Voice 1": "Głos 1", "Voice 2": "Głos 2", @@ -15393,7 +15288,7 @@ "Warning! You have missing parts required for assemble!": "Uwaga! Brakuje niektórych części wymaganych do złożenia!", "Warning! You tried to leave this raid by disconnecting, either accidentally or on purpose. ": "Uwaga! Próbujesz opuścić ten rajd przez rozłączenie, przypadkowo lub celowo.", "Warnings/Inventory/ExaminationFailed": "Badanie przedmiotu nie udało się.", - "Warnings/Inventory/NotEnoughSpaceInStash": "Za mało miejsca w schowku", + "Warnings/Inventory/NotEnoughSpaceInStash": "Zbyt mało miejsca w schowku", "Watch Intro": "obejrzyj intro", "WatchProfile": "Zobacz profil użytkownika", "WatchTime": "Sprawdzenie czasu", @@ -15402,27 +15297,26 @@ "WaterCollector": "KOLEKTOR WODY", "Weapon": "Broń", "Weapon has been built": "Broń została złożona", - "WeaponAccBuff": "Zwiększa celność\u00A0broni o [{0:0.#%}]", + "WeaponAccBuff": "Zwiększa celność\u00A0broni o [{0:0%}]", "WeaponBroken": "PROBLEM Z BRONIĄ", "WeaponBuild/SetNameWindowCaption": "NAZWA KONFIGURACJI", "WeaponBuild/SetNameWindowPlaceholder": "wprowadź nazwę konfiguracji", - "WeaponDeteriorationChanceReduce": "Zmniejsza szansę\u00A0na zużycie podczas naprawy o [{0:0.#%}]", + "WeaponDeteriorationChanceReduce": "Zmniejsza szansę\u00A0na zużycie podczas naprawy o [{0:0%}]", "WeaponDoubleMastering": "Podwaja uzyskiwanie opanowania", - "WeaponDurabilityLossOnShotReduce": "Zmniejsza zużycie broni podczas strzelania o [{0:0.#%}]", - "WeaponErgonomicsBuff": "Poprawia ergonomię broni o [{0:0.#%}]", + "WeaponDurabilityLossOnShotReduce": "Zmniejsza zużycie broni podczas strzelania o [{0:0%}]", + "WeaponErgonomicsBuff": "Poprawia ergonomię broni o [{0:0%}]", "WeaponJammed": "ZACIĘTA BROŃ", "WeaponModding": "Modyfikowanie broni", "WeaponModdingDescription": "Umiejętność podstawowej modyfikacji broni zwiększa ergonomię modyfikacji i spowalnia zużywanie się tłumików dźwięku.", "WeaponPunch": "Uderzenie kolbą", - "WeaponRecoilBuff": "Zmniejsza odrzut broni o [{0:0.#%}]", - "WeaponReloadBuff": "Zwiększa szybkość przeładowania o [{0:0.#%}]", - "WeaponStiffHands": "Zwiększa ergonomię broni o [{0:0.#%}]", - "WeaponSwapBuff": "Zwiększa szybkość przełączania broni o [{0:0.#%}]", + "WeaponRecoilBuff": "Zmniejsza odrzut broni o [{0:0%}]", + "WeaponReloadBuff": "Zwiększa szybkość przeładowania o [{0:0%}]", + "WeaponStiffHands": "Zwiększa ergonomię broni o [{0:0%}]", + "WeaponSwapBuff": "Zwiększa szybkość przełączania broni o [{0:0%}]", "WeaponTreatment": "Konserwacja broni", "WeaponTreatmentDescription": "Umiejętności naprawy broni i jej konserwacji.", - "WeaponTreatmentLevelingUpDescription": "Umiejętność konserwacja broni jest ulepszana poprzez naprawianie broni za pomocą zestawów naprawczych.", "WearAmountRepairGunsReducePerLevel": "Zmniejsza zużycie podczas stosowania zestawów naprawczych", - "WearChanceRepairGunsReduceEliteLevel": "Zmniejsza szansę\u00A0na zużycie podczas używania zestawów naprawczych o [50%]", + "WearChanceRepairGunsReduceEliteLevel": "Zmniejsza szansę\u00A0na zużycie podczas używania zestawów naprawczych o 50%", "Weather conditions": "Warunki pogodowe", "WeightLimit": "Limit wagi", "Welcome screen description": "Witaj w Escape from Tarkov! \nW tej grze będziesz musiał walczyć o swoje życie i przetrwać w Tarkowie, rosyjskim mieście w obwodzie norwińskim, które jest na skraju chaosu i upadku. Twoja postać to operator prywatnej firmy wojskowej (PMC), wciągnięty mimowolnie w wir wydarzeń tuż po Wojnie Kontraktowej. Obszar jest odcięty od świata, twoje dowództwo nie odpowiada; dawne cele zadań straciły swój sens. Każdy ma teraz własne cele: dostosować się i przetrwać, uciec z miasta lub próbować uratować innych.\n\nW każdym rajdzie bądź przygotowany na śmierć i utratę swojego ekwipunku. Pamiętaj, że jakikolwiek problem z połączeniem może prowadzić do rozłączenia z grą i śmiercią twojej postaci oraz startą ekwipunku, jaki posiadałeś lub znalazłeś na rajdzie.\n\nTak, na pewno umrzesz i to najprawdopodobniej bardzo często, ale pamiętaj – to tylko gra! Powodzenia!", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "Współczynnik zwycięstw, %", "arena/career/teamFightStats/wins": "Zwycięstwa", "arena/career/teamFightStats/winsWithFavPreset": "Wygrane mecze z ulubioną\u00A0konfiguracją", - "arena/customGames/create/samePresets": "Powielone konfiguracje:", - "arena/customGames/create/setSamePresets": "Pozwól na powielone konfiguracje", "arena/customGames/invite/message{0}": "ZAPROSZENIE DO NIESTANDARDOWEJ GRY OD {0}", "arena/customGames/notify/GameRemoved": "Pokój został zamknięty", "arena/customgames/errors/notification/gamealreadystarted": "Gra już się rozpoczęła", @@ -15706,9 +15598,8 @@ "arena/tab/SCOUT": "ZWIADOWCA", "arena/tab/SQB": "CQB", "arena/tooltip/OverallMatches": "Łączna liczba zagranych meczów rankingowych i nierankingowych.", - "arena/tooltip/Presets": "Konfiguracje", + "arena/tooltip/Presets": "Presets", "arena/tooltip/countGlp": "Twoja liczba PRA (Punktów Reputacji Areny). Jest to statystyka, która określa twoją ocenę uzyskaną w rankingowych trybach gry. Służy do dobierania graczy o równych umiejętnościach, a także do odblokowywania nowych rang i ustawień wstępnych.", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", "arena/tooltip/friends": "Znajomi", "arena/tooltip/kdRatio": "Twój ogólny stosunek zabójstw do śmierci, obliczany na podstawie wszystkich zabójstw i śmierci w meczach rankingowych i nierankingowych. Liczone są tylko zabójstwa graczy.", "arena/tooltip/leftGlp": "Liczba PRA wymagana do osiągnięcia następnej rangi.", @@ -15716,7 +15607,6 @@ "arena/tooltip/moneyRubles": "Ruble. Służą do kupowania konfiguracji i są zdobywane za zwycięstwa na arenie.", "arena/tooltip/ratingPlace": "Twoja pozycja w tabeli wyników.", "arena/tooltip/settings": "Ustawienia", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", "arena/tooltip/sourcesGlp": "Źródła zarobionych PRA:", "arena/tooltip/winMatches": "Łączna liczba zwycięstw w meczach rankingowych i nierankingowych.", "arena/tooltip/winRate": "Twój ogólny współczynnik zwycięstw, obliczony na podstawie wszystkich zwycięstw i porażek w meczach rankingowych i nierankingowych.", @@ -16181,7 +16071,7 @@ "next level": "Rozbierz ścianę", "no available item": "Brak dostępnego przedmiotu", "no_free_slot": "Brak wolnego miejsca na ten przedmiot", - "no_free_space_message": "Za mało miejsca w schowku, aby przenieść przedmioty.", + "no_free_space_message": "Brak miejsca w schowku, aby przenieść przedmioty.", "no_free_space_title": "BRAK MIEJSCA", "normal": "normalnie", "notification/unremovableItem": "Przedmiot nie może zostać usunięty", @@ -16370,7 +16260,7 @@ "scav_e6": "Wejście do piwnicy", "scav_e7": "Parking Cardinal Apartment Complex", "scav_e8": "Wyjście centrum handlowego Klimowa", - "searchspeed": "Zwiększa szybkość przeszukiwania o [{0:0.#%}]", + "searchspeed": "Zwiększa szybkość przeszukiwania o [{0:0%}]", "sec": " s", "select weapon body for the build": "WYBIERZ PODSTAWĘ BRONI DO KONFIGURACJI", "semiauto": "Półautomatyczny", @@ -16450,8 +16340,6 @@ "{0} GroupPlayerBlocking/MatchLeave": "Tryb gry został tymczasowo zablokowany, ponieważ jeden z członków grupy ({0}) został zablokowany z powodu opuszczenia gry", "{0} GroupPlayerBlocking/NotAcceptedMatch": "Tryb gry został tymczasowo zablokowany, ponieważ jeden z członków grupy ({0}) nie zaakceptował meczu", "{0} GroupPlayerBlocking/TeamKill": "Tryb gry został tymczasowo zablokowany, ponieważ jeden z członków grupy ({0}) został zablokowany za powtarzające się zabójstwa drużynowe", - "{0} Violation/IntentionalTeamDamage/Blocking": "Gracz {0} został usunięty z meczu i otrzymał karę za strzelanie do członków swojej drużyny", - "{0} Violation/IntentionalTeamKill/Blocking": "Gracz {0} został usunięty z meczu i otrzymał karę za zabójstwo drużynowe na początku rundy", "{0} Violation/TeamKill/Blocking": "Gracz {0} został usunięty z meczu i otrzymał karę za zabójstwo drużynowe", "{0} added you to the ignore list": "{0} dodał cię do listy ignorowanych", "{0} ask to cooperate": "{0} wita cię", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "Strefa zero", "653e6760052c01c1c805532f Description": "Centrum biznesowe Tarkowa. W tym miejscu TerraGroup miało swoją siedzibę. To tutaj wszystko się zaczęło.", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "United Security", "5464e0404bdc2d2a708b4567 Description": "Prywatna firma wojskowa USEC została założona w 1999 roku, po fuzji dwóch organizacji: KerniSEC i Safe Sea. W 2004 roku agent międzynarodowego holdingu TerraGroup skontaktował się z USEC, co w następstwie sprawiło, że USEC stało się prywatną armią holdingu, z biurami na całym świecie i z personelem liczącym 7500 osób.", "5464e0454bdc2d06708b4567 Name": "Battle Encounter Assault Regiment", @@ -18024,7 +17910,7 @@ "5a27bc8586f7741b543d8ea4 description": "Witaj, mój drogi przyjacielu, wygląda na to, że jesteśmy blisko ciekawego biznesu. Na dysku znaleźliśmy część projektu silnika rakietowego, którym zachód będzie wyjątkowo zainteresowany, bo jest on używany w okrętach podwodnych projektu 941, które ponoć już nie są w użytku. Oprócz tego znaleźliśmy również szczegółową kartotekę pewnego marynarza służącego kiedyś we Flocie Bałtyckiej, prawdziwy wilk morski, który jest teraz gdzieś w Tarkowie i wygląda na to, że ma powiązania z dowództwem marynarki. Właśnie jego musimy dorwać. Według moich źródeł spotyka się po kryjomu ze Scavami i ciężko będzie go schwytać. Będziesz musiał działać dyskretnie, z ukrycia. Masz tylko jedną szansę i nie możesz jej spartolić, nie chcemy stracić tak łakomego kąska, mój przyjacielu. Moje ręce aż się trzęsą już przy samej rozmowie o tym, nie masz pojęcia jakie to ważne, porażka nie wchodzi w grę. Jesteś świetnym wojownikiem, ale muszę być pewny, że z ukrycia też sobie poradzisz. Potrzebuję snajpera, doświadczonego, więc wróć do mnie, gdy będziesz gotowy.", "5a27bc8586f7741b543d8ea4 failMessageText": "", "5a27bc8586f7741b543d8ea4 successMessageText": "Bez urazy, ale nie wierzyłem, że dasz radę, najemniku. Wygląda na to, że od teraz będziesz moim „snajperem”. Skontaktuję się z tobą, gdy zajdzie potrzeba.", - "5a28235e86f7741da250b438": "Osiągnij wymagany poziom umiejętności „Karabiny powtarzalne”", + "5a28235e86f7741da250b438": "Osiągnij wymagany poziom umiejętności „Karabiny wyborowe”", "5a27bc8586f7741b543d8ea4 acceptPlayerMessage": "", "5a27bc8586f7741b543d8ea4 declinePlayerMessage": "", "5a27bc8586f7741b543d8ea4 completePlayerMessage": "", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "Zlikwiduj operatorów PMC trafieniem w głowę używając karabinów powtarzalnych na latarni morskiej", "63aec6f256503c322a190374": "Zlikwiduj operatorów PMC trafieniem w głowę używając karabinów powtarzalnych na ulicach Tarkowa", "64b694c8a857ea477002a408": "Zlikwiduj operatorów PMC trafieniem w głowę używając karabinów powtarzalnych na węźle transportowym", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18882,7 +18767,7 @@ "5c0be13186f7746f016734aa description": "Witaj, najemniku. Słyszałem, że próbujesz zostać snajperem. Bycie w biznesie snajperskim na pewno wymaga wytrwałości, cierpliwości i poczucia celu, ale są też inne ważne czynniki. Wiesz co kiedyś powiedział mi Dima? „Każdy może strzelać, ale tylko kilku zostanie prawdziwymi Snajperami”.", "5c0be13186f7746f016734aa failMessageText": "Doświadczony snajper nie zdradzi się w ten sposób. Złap oddech i spróbuj ponownie.", "5c0be13186f7746f016734aa successMessageText": "Szczerze mówiąc, nie byłem pewny, czy dasz radę. Ale wygląda na to, że nie jesteś zwykłym plebsem.", - "5c0be2b486f7747bcb347d58": "Osiągnij wymagany poziom umiejętności „Karabiny powtarzalne”", + "5c0be2b486f7747bcb347d58": "Osiągnij wymagany poziom umiejętności „Karabiny wyborowe”", "5c1fb5f086f7744a184fb3c5": "", "5c1fb5f986f7744a1929a527": "", "64b67c6358b5637e2d71a655": "Zlikwiduj operatorów PMC używając karabinów powtarzalnych bez umierania", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Zlikwiduj Scavy nosząc mundur ONZ (hełm UNTAR, kamizelka kuloodporna MF-UNTAR, karabinek M4A1) na ulicach Tarkowa", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "Przetrwaj i ewakuuj się z rezerw ze statusem wyjścia „przetrwano”", "629f08e7d285f377953b2af1": "Przetrwaj i ewakuuj się z latarni morskiej ze statusem wyjścia „przetrwano”", "63aec66556503c322a190372": "Przetrwaj i ewakuuj się z ulic Tarkowa ze statusem wyjścia „przetrwano”", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Osiągnij 4. poziom lojalności u Terapeutki", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -20314,8 +20195,6 @@ "60ec2b04bc9a8b34cd453b81": "Nie możesz zginąć lub opuścić rajdu, kiedy zadanie jest aktywne (status: zabity w akcji (KIA), dezerter, zaginiony w akcji (MIA), przebiegnięcie)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", @@ -20641,7 +20520,7 @@ "6193850f60b34236ee0483de description": "Chodź tutaj. Dobra, wzdłuż całego wybrzeża przylądka biegnie droga, pewnie już ją widziałeś. Moi ludzie używają tej drogi do transportu towarów do mnie i ode mnie. Zazwyczaj udawało im się uniknąć kłopotów lub uspokoić niektórych kretynów, ale teraz jest tam cholerne gniazdo szczurów, które pewnie dowiedziały się o moich konwojach. Zaczęli atakować moich ludzi z pełną mocą, nie mogą się przez nich przebić. Pojedź tam i załatw tych cwaniaków, dobrze? Dostaniesz w zamian coś miłego.", "6193850f60b34236ee0483de failMessageText": "", "6193850f60b34236ee0483de successMessageText": "Dobrze, ładnie rozpieprzyłeś tych kretynów. Dobra, stary, do zobaczenia.", - "6193dabd5f6468204470571f": "Zlikwiduj Scavy wzdłuż wybrzeża i głównej drogi na latarni morskiej", + "6193dabd5f6468204470571f": "Zlikwiduj Scavy wzdłuż głównej drogi na latarni morskiej", "6193850f60b34236ee0483de acceptPlayerMessage": "", "6193850f60b34236ee0483de declinePlayerMessage": "", "6193850f60b34236ee0483de completePlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "Przetrwaj i ewakuuj się z ulic Tarkowa przez wyjazd – taksówka przy alei Primorskiej", "6397a6942e519e69d2139b25": "Zlokalizuj i oznacz pierwszy pojazd opancerzony Patrol-A nadajnikiem MS2000 na ulicach Tarkowa", "6397a7ce706b793c7d6094c9": "Zlokalizuj i oznacz drugi pojazd opancerzony Patrol-A nadajnikiem MS2000 na ulicach Tarkowa", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "Udało mi się skontaktować z kierowcami. Nie było to łatwe, ale udało mi się odkryć coś ciekawego.", @@ -21436,7 +21314,7 @@ "6396701b9113f06a7c3b2379 failMessageText": "", "6396701b9113f06a7c3b2379 successMessageText": "Obserwowaliśmy cię. Mój strzelec dał zgodę. To wszystko na razie. Dam ci znać, gdy przyjdzie czas.", "6397ac912e519e69d2139b26": "Zlikwiduj snajperów Scavów z odległości ponad 350 metrów", - "639a169e6cd47c525121a116": "Osiągnij wymagany poziom umiejętności „Karabiny powtarzalne”", + "639a169e6cd47c525121a116": "Osiągnij wymagany poziom umiejętności „Karabiny wyborowe”", "6396701b9113f06a7c3b2379 acceptPlayerMessage": "", "6396701b9113f06a7c3b2379 declinePlayerMessage": "", "6396701b9113f06a7c3b2379 completePlayerMessage": "Jestem teraz prawdziwym psycho-snajperem. No i co dalej?", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "Zlikwiduj Scavy używając broni białych na węźle transportowym", "63a9b5b2813bba58a50c9eeb": "Zlikwiduj Scavy używając broni białych w składzie celnym", "63a9b5f064b9631d9178276b": "Zlikwiduj Scavy używając broni białych na rezerwach", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21691,8 +21568,8 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "Jedna szumowina mniej do zmartwień. Dobrze się spisałeś, dzieciaku.", "64e7ba17220ee966bf425ecb": "Zlokalizuj i zlikwiduj Kabana", "64e7ba4a6393886f74119f3d": "Zlikwiduj ochroniarzy Kabana w salonie samochodowym na ulicach Tarkowa", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", @@ -21921,11 +21798,11 @@ "6572e876dc0d635f633a5714 declinePlayerMessage": "", "6572e876dc0d635f633a5714 completePlayerMessage": "", "657315ddab5a49b71f098853 name": "Pierwszy w kolejce", - "657315ddab5a49b71f098853 description": "Witaj, młody człowieku. Jeszcze się nie znamy. Wszyscy w Tarkowie nazywają mnie Terapeutką. Myślę, że po moim pseudonimie można się domyślić, czym się tutaj zajmuję. Powiedziano mi, że chcesz nawiązać kontakty. Musisz wykonać dla mnie szybkie zadanie, a potem będziemy mogli współpracować.\n\nW mieście wciąż są cywile i chcą je opuścić. Najlepiej zorganizować ewakuację z punktu kontrolnego EMERCOM: mają zarówno transport, jak i niezbędny sprzęt. Przynajmniej mam taką nadzieję. Jednak rzadko bywam w tej części miasta, nie wiem, gdzie dokładnie znajduje się stacja. Musisz ją znaleźć. Potem wyślę moich ludzi, by sprawdzili okolicę.\n\nAha, jeszcze jedna przysługa. Potrzebuję środków medycznych dla mojej służby medycznej. Nie mogę ich już importować do Tarkowa, więc muszę ich szukać tutaj. Nie ma znaczenia, co przyniesiesz, zapasy, leki, stymulanty. Wszystko się nada. Będę czekać.", + "657315ddab5a49b71f098853 description": "Witaj, młody człowieku. Jeszcze się nie znamy. Wszyscy w Tarkowie nazywają mnie Terapeutką. Myślę, że po moim pseudonimie można się domyślić, czym się tutaj zajmuję. Powiedziano mi, że chcesz nawiązać kontakty. Musisz wykonać dla mnie szybkie zadanie, a potem będziemy mogli współpracować.\n\nW mieście wciąż są cywile i chcą je opuścić. Najlepiej zorganizować ewakuację z punktu kontrolnego Emercom: mają zarówno transport, jak i niezbędny sprzęt. Przynajmniej mam taką nadzieję. Jednak rzadko bywam w tej części miasta, nie wiem, gdzie dokładnie znajduje się stacja. Musisz ją znaleźć. Potem wyślę moich ludzi, by sprawdzili okolicę.\n\nAha, jeszcze jedna przysługa. Potrzebuję środków medycznych dla mojej służby medycznej. Nie mogę ich już importować do Tarkowa, więc muszę ich szukać tutaj. Nie ma znaczenia, co przyniesiesz, zapasy, leki, stymulanty. Wszystko się nada. Będę czekać.", "657315ddab5a49b71f098853 failMessageText": "Widzę, że jesteś już wystarczająco doświadczony, by zajmować się bardziej zaawansowanymi sprawami. W takim razie zostawmy to nowym.", "657315ddab5a49b71f098853 successMessageText": "Misja zakończona? To świetna wiadomość, dziękuję. Mam nadzieję, że nasza współpraca będzie równie owocna w przyszłości.", "657320308c789bb102d2cde8": "Znajdź izbę przyjęć", - "65732ac3c67dcd96adffa3c7": "Zlokalizuj stację EMERCOM w strefie zero", + "65732ac3c67dcd96adffa3c7": "Zlokalizuj stację Emercom w strefie zero", "657330fc0c93c8c281b2b6b4": "Przekaż 3 przedmioty medyczne", "65817bf31404f3565aef9fec": "Przekaż dowolne przedmioty medyczne", "657315ddab5a49b71f098853 acceptPlayerMessage": "", diff --git a/project/assets/database/locales/global/po.json b/project/assets/database/locales/global/po.json index 069c53ba..38294a66 100644 --- a/project/assets/database/locales/global/po.json +++ b/project/assets/database/locales/global/po.json @@ -25,7 +25,7 @@ "543be6674bdc2df1348b4569 Description": "Item", "5447a9cd4bdc2dbd208b4567 Name": "Rifle de Assalto Colt M4A1 5.56x45", "5447a9cd4bdc2dbd208b4567 ShortName": "M4A1", - "5447a9cd4bdc2dbd208b4567 Description": "A carabina Colt M4A1 é uma variante totalmente automática da carabina M4 básica e foi projetada principalmente para uso em operações especiais.\nNo entanto, o Comando de Operações Especiais dos EUA (USSOCOM) logo adotaria o M4A1 para quase todas as unidades de operações especiais, seguido mais tarde pela introdução geral do M4A1 em serviço no Exército e no Corpo de Fuzileiros Navais dos EUA.", + "5447a9cd4bdc2dbd208b4567 Description": "Colt M4A1 - um rifle de assalto (carabina) projetado nos EUA com base na plataforma AR-15 para utilizar cartuchos 5.56x45 NATO. Desenvolvido principalmente para uso por operadores de veículos e equipes de combate, que exigiam uma arma mais compacta e leve do que um rifle de assalto padrão, porem com o mesmo poder de fogo. No entanto, SOCOM US (comando de operações especiais dos Estados Unidos) logo adotou o M4A1 para todas as unidades subordinadas, seguida pela introdução geral do M4A1 em serviço no exército dos EUA e corpo de fuzileiros navais.", "5447ac644bdc2d6c208b4567 Name": "Pacote de munições 5.56x45mm M855 (50 un)", "5447ac644bdc2d6c208b4567 ShortName": "M855", "5447ac644bdc2d6c208b4567 Description": "Um pacote de munição 5.56x45 mm M855, 50 munições.", @@ -2675,7 +2675,7 @@ "5a16b8a9fcdbcb00165aa6ca Name": "Suporte tático avançado de titânio Norotos ", "5a16b8a9fcdbcb00165aa6ca ShortName": "TATM", "5a16b8a9fcdbcb00165aa6ca Description": "Suporte leve de titânio para instalar no conector do capacete. É necessário para poder instalar a Visão Noturna ou outro dispositivo óptico.", - "5a16b93dfcdbcbcae6687261 Name": "Suporte duplo para o monóculo Norotos AN/PVS-14", + "5a16b93dfcdbcbcae6687261 Name": "Trilho duplo de suporte para o monóculo PVS-14", "5a16b93dfcdbcbcae6687261 ShortName": "DDT", "5a16b93dfcdbcbcae6687261 Description": "Braço de interface dupla Dovetail para o dispositivo de visão noturna AN/PVS-14.", "5a16b9fffcdbcb0176308b34 Name": "Fone de ouvido Ops-core FAST RAC", @@ -3465,7 +3465,7 @@ "5ae089fb5acfc408fb13989b ShortName": "Troféu", "5ae089fb5acfc408fb13989b Description": "Troféu", "5ae08f0a5acfc408fb1398a1 Name": "Rifle de ferrolho Mosin (Sniper)", - "5ae08f0a5acfc408fb1398a1 ShortName": "Mosin Sniper", + "5ae08f0a5acfc408fb1398a1 ShortName": "Mosin", "5ae08f0a5acfc408fb1398a1 Description": "Mosin-Nagant M91/30 PU é uma variação do famoso fuzil de precisão russo, que foi usado pelos francos atiradores russos durante a Segunda Guerra Mundial.", "5ae096d95acfc400185c2c81 Name": "Coronha Padrão do Rifle Mosin", "5ae096d95acfc400185c2c81 ShortName": "Coronha Mosin", @@ -4188,7 +4188,7 @@ "5bf3f59f0db834001a6fa060 ShortName": "RPK-16 MT", "5bf3f59f0db834001a6fa060 Description": "Alça de mira removível Izhmash. Padrão para RPK-16.", "5bfd297f0db834001a669119 Name": "Rifle de ferrolho Mosin (Infantaria)", - "5bfd297f0db834001a669119 ShortName": "Mosin Infantaria", + "5bfd297f0db834001a669119 ShortName": "Mosin Inf.", "5bfd297f0db834001a669119 Description": "Mosin–Nagant é um famoso rifle russo, que era comumente usado durante a 2ª guerra mundial.", "5bfd35380db83400232fe5cc Name": "Coronha do Rifle Mosin Infantaria", "5bfd35380db83400232fe5cc ShortName": "Cor.Mosin Infantaria", @@ -4577,7 +4577,7 @@ "5c10c8fd86f7743d7d706df3 Name": "Caneta adrenalina auto-injetável", "5c10c8fd86f7743d7d706df3 ShortName": "Adrenalina", "5c10c8fd86f7743d7d706df3 Description": "Seringa estéril com uma dose de adrenalina - o principal hormônio da medula supra-renal. Utilizado para melhorar a resposta fisiológica associada com a disposição muscular em atividades intensas. Temporariamente aumenta força e resistência. Também alivia a dor.", - "5c11046cd174af02a012e42b Name": "Adaptador Wilcox para PVS-7", + "5c11046cd174af02a012e42b Name": "Interface Wilcox para PVS-7", "5c11046cd174af02a012e42b ShortName": "W-PVS7", "5c11046cd174af02a012e42b Description": "Interface base Wilcox NVG para AN/PVS-7B/7D é projetado para adaptar a base plastica que vem em uma variedade de dispositivos de visão noturna.", "5c110624d174af029e69734c Name": "Binóculo de visão térmica T-7 com suporte de óculos de visão noturna", @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "Laser tático compacto com módulo de mira e blue dot produzida pelo NcSTAR.", "5cd945d71388ce000a659dfb Name": "Upper base BEAR", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Combat shirt", "5cd946231388ce000d572fe3 Name": "BEAR base lower", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "Empunhadura vertical ASh-12", "5cda9bcfd7f00c0c0b53e900 ShortName": "ASh-12", "5cda9bcfd7f00c0c0b53e900 Description": "Empunhadura vertical ASh-12.", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "USEC base lower", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", "5cde9ec17d6c8b04723cf479 Name": "Upper base USEC", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Calca de moletom Adik", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", "5cdea42e7d6c8b0474535dad Name": "Abrigo Adik", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "Chassi Magpul PRO 700", "5cdeac22d7f00c000f26168f ShortName": "Pro700", "5cdeac22d7f00c000f26168f Description": "PRO 700 é um chassi leve e ergonômico da Magpul projetado para a Remington Modelo 700.", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "BEAR Black Lynx", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", "5d1f60ae86f7744bcc04998b Name": "BEAR contractor t-shirt", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "Resposta Rápida FSB", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "BEAR Ghost Marksman", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "BEAR Summerfield", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "USEC Aggressor TAC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "USEC Softshell Flexion", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "USEC Woodland Infiltrator", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Combat shirt", "5d1f623886f7743014163027 Name": "USEC PCS Multicam", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "USEC PCU Ironsight", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "FSB Urban Tact", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "URSO Gorka Kobra", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "BEAR Gorka SSO", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "BEAR Striker Infil Ops", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "BEAR Summerfield", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "US Ger.2 Khyber", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "USEC Woodland Infiltrator", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "USEC Ranger Jeans", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "USEC Taclife Terrain", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "USEC TACRES", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "Quebra chamas Daniel Defense Wave 7.62x51", "5d1f819086f7744b355c219b ShortName": "Wave MB", "5d1f819086f7744b355c219b Description": "O quebra chamas Daniel Defense Wave serve como uma plataforma para instalação de um supressor QD Wave.", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "USEC Commando", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6053,11 +6053,11 @@ "5d7b6bafa4b93652786f4c76 Name": "Suporte FN RMR para 5-7 Mk.2", "5d7b6bafa4b93652786f4c76 ShortName": "Supor 57 RMR", "5d7b6bafa4b93652786f4c76 Description": "Suporte Trijicon RMR Fabrique Nationale Herstal, também compatível com Holosun HS507C.", - "5d80c60f86f77440373c4ece Name": "Chave RB-BK marcada", - "5d80c60f86f77440373c4ece ShortName": "RB-BK mar", + "5d80c60f86f77440373c4ece Name": "Chave RB-BK", + "5d80c60f86f77440373c4ece ShortName": "RB-BK", "5d80c60f86f77440373c4ece Description": "Chave da base militar", - "5d80c62a86f7744036212b3f Name": "Chave RB-VO marcada", - "5d80c62a86f7744036212b3f ShortName": "RB-VO mar", + "5d80c62a86f7744036212b3f Name": "Chave RB-VO", + "5d80c62a86f7744036212b3f ShortName": "RB-VO", "5d80c62a86f7744036212b3f Description": "Chave da base militar", "5d80c66d86f774405611c7d6 Name": "Chave RB-AO", "5d80c66d86f774405611c7d6 ShortName": "RB-AO", @@ -6092,8 +6092,8 @@ "5d80cb3886f77440556dbf09 Name": "Chave RB-PSP1", "5d80cb3886f77440556dbf09 ShortName": "RB-PSP1", "5d80cb3886f77440556dbf09 Description": "Chave da base militar", - "5d80cb5686f77440545d1286 Name": "Chave RB-PSV1", - "5d80cb5686f77440545d1286 ShortName": "RB-PSV1", + "5d80cb5686f77440545d1286 Name": "Chave RB-PS81", + "5d80cb5686f77440545d1286 ShortName": "RB-PS81", "5d80cb5686f77440545d1286 Description": "Chave da base militar", "5d80cb8786f774405611c7d9 Name": "Chave RB-PP", "5d80cb8786f774405611c7d9 ShortName": "RB-PP", @@ -6128,8 +6128,8 @@ "5d947d4e86f774447b415895 Name": "Chave RB-KSM", "5d947d4e86f774447b415895 ShortName": "RB-KSM", "5d947d4e86f774447b415895 Description": "Chave da base militar", - "5d95d6be86f77424444eb3a7 Name": "Chave RB-PSV2", - "5d95d6be86f77424444eb3a7 ShortName": "RB-PSV2", + "5d95d6be86f77424444eb3a7 Name": "Chave RB-PS82", + "5d95d6be86f77424444eb3a7 ShortName": "RB-PS82", "5d95d6be86f77424444eb3a7 Description": "Chave da base militar", "5d95d6fa86f77424484aa5e9 Name": "Chave RB-PSP2", "5d95d6fa86f77424484aa5e9 ShortName": "RB-PSP2", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "Upper receiver para o rifle SR-25 fabricado pela empresa Knight's Armament.", "5df8e5c886f7744a122d6834 Name": "BEAR Zaslon", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "Meteor", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "BEAR Oldschool", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "USEC TIER2", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "Sklon", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "A primeira geração de modificações da armadura CPC projetada pela Crye Precision e adaptada pela Ars Arms para uso pelas forças especiais da federação Russa. Esta armadura modular é baseada em um espartilho que encaixa no corpo, o que evita o balanço da armadura durante movimentos bruscos e também contribui para uma distribuição de peso uniforme. Feito na configuração de assalto de bolsos e elementos blindados.", "5e4bb08f86f774069619fbbc Name": "BEAR Telnik", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "USEC TIER2", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "BEAR TIGR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "USEC Commando", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "Jaqueta Russia", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "BEAR TIGR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "USEC Urban Responder", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "BEAR Zaslon", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "USEC Deep Recon", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Tactical pants", "5e9dcf5986f7746c417435b3 Name": "Mochila LBT-8005A Day Pack (MultiCam Preto)", "5e9dcf5986f7746c417435b3 ShortName": "Day Pack", "5e9dcf5986f7746c417435b3 Description": "Mochila Multicam Black camuflada, simples e confiável com 14 litros de espaço. Fabricado pela London Bridge Trading.", @@ -6803,10 +6803,10 @@ "5ede475b549eed7c6d5c18fb Name": "40x46mm M386(HE)", "5ede475b549eed7c6d5c18fb ShortName": "M386", "5ede475b549eed7c6d5c18fb Description": "Capsula 40-mm M386 com granada de fragmentação equipada com fusível instantâneo, que é armado antes de atirar, com distância de até 15-30 metros.", - "5ede7a8229445733cb4c18e2 Name": "Chave RB-PKPM marcada", - "5ede7a8229445733cb4c18e2 ShortName": "RB-PKPM mar", + "5ede7a8229445733cb4c18e2 Name": "Chave RB-PKPM", + "5ede7a8229445733cb4c18e2 ShortName": "RB-PKPM", "5ede7a8229445733cb4c18e2 Description": "Chave da base militar", - "5ede7b0c6d23e5473e6e8c66 Name": "Chave RB-RLSA", + "5ede7b0c6d23e5473e6e8c66 Name": "Chave RB-RLSSA", "5ede7b0c6d23e5473e6e8c66 ShortName": "RB-RLSA", "5ede7b0c6d23e5473e6e8c66 Description": "Chave da base militar", "5eea21647547d6330471b3c9 Name": "Guarda-mão MOE M590", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "Um colete tático ajustado Direct Action, que possui todos os bolsos e porta carregadores básicos que possa precisar.", "5f5f45df0bc58666c37e7832 Name": "BEAR G99", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "USEC Night Patrol", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "BEAR G99", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "USEC Urban Responder", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Scav Boot", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "BEAR SRVV", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "USEC TIER3", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": ".300 Blackout AP", "5fd20ff893a8961fc660a954 ShortName": "300 AP", "5fd20ff893a8961fc660a954 Description": "Um cartucho AP .300 Blackout (7.62x35mm) carregado com uma bala perfurante de 8,4 gramas de um cartucho OTAN M80A1 de 7.62x51mm, composto por uma ponta penetradora de aço sobre um núcleo de liga de cobre com uma semi-revestimento de cobre em uma caixa de latão. Apesar das características próprias do projétil quando utilizado em um cartucho de potência total, estes são afetados quando transferidos para um cartucho intermediário, porém, o projétil continua tendo capacidade de perfurar proteções balísticas básicas e intermediárias do corpo, além de poder causar efeitos adversos substanciais. efeitos no alvo após o impacto. Seu design também permite que seja usado em revistas da OTAN STANAG 5.56x45mm sem problemas.", "5fd3e77be504291efd0040ad Name": "USEC VEKTOR", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "BEAR Boreas", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "BEAR Grizzly", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "USEC Adaptive Combat", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "Dispositivo de nylon simples com bolsos não removíveis. Permite que você carregue uma quantidade bastante impressionante de munição à custa da conveniência.", "6038b228af2e28262649af14 Name": "BEAR Rash Guard", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "USEC Sandstone", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", "6038b4b292ec1c3103795a0b Name": "Plate carrier liso LBT-6094A (Coyote Tan)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "Plate carrier simples da empresa London Bridge Trading. O design mais minimalista, feito para usar com veste tática. Versão Coyote Tan.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "TP-200 é destinado ao uso como explosivo na produção de pesquisas sísmicas, detonadores intermediários e ao iniciar cargas explosivas em poços, destruindo objetos superdimensionados executando operações especiais de detonação.", "603d01a1b41c9b37c6592047 Name": "BEAR VOIN", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "USEC Sage Warrior", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Colete tático Azimut SS Jhuk (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Azimut", "6040dd4ddcf9592f401632d2 Description": "Dispositivo de nylon simples com bolsos não removíveis. Permite que você carregue uma quantidade bastante impressionante de munição à custa da conveniência.", @@ -8239,10 +8239,10 @@ "619b69037b9de8162902673e Description": "Projetado para o mercado civil e uso militar. O estoque CQR pode ser facilmente montado no lugar do acessório padrão do estoque não dobrável AK / AKM. Fabricado pela Hera Arms.", "619b99ad604fcc392676806c Name": "BEAR Recon", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "USEC K4", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", "619bc61e86e01e16f839a999 Name": "Braçadeira (Alpha)", "619bc61e86e01e16f839a999 ShortName": "Alpha", "619bc61e86e01e16f839a999 Description": "Uma braçadeira para veteranos que ainda estão aqui dês dos tempos do Alpha.", @@ -8275,10 +8275,10 @@ "619bdfd4c9546643a67df6fa Description": "Uma braçadeira para operadores USEC Hardcore.", "619bf75264927e572d0d5853 Name": "BEAR Sumrak", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "Tubo corrugado militar", "619cbf476b8a1b37a54eebf8 ShortName": "TuboM", "619cbf476b8a1b37a54eebf8 Description": "Tubo corrugado militar", @@ -8858,7 +8858,7 @@ "628cd624459354321c4b7fa2 Name": "Plate carrier Tasmanian Tiger SK (Multicam Preto)", "628cd624459354321c4b7fa2 ShortName": "TT SK", "628cd624459354321c4b7fa2 Description": "O colete TT Plate Carrier SK ultraleve e esquelético é feito principalmente de material de nylon Cordura laminado em TPU leve, fino e durável com uma densidade reivindicada de pelo menos 700 denier. O design do colete oferece duas capas leves para placas, alças ajustáveis e um suéter de cintura leve. Equipado com um painel frontal para 4 carregadores.", - "628d0618d1ba6e4fa07ce5a4 Name": "Plate Carrier NPP KlASS Bagariy (Digital Flora)", + "628d0618d1ba6e4fa07ce5a4 Name": "Colete blindado NPP KlASS \"Bagariy\" (Digital Flora)", "628d0618d1ba6e4fa07ce5a4 ShortName": "Bagariy", "628d0618d1ba6e4fa07ce5a4 Description": "No segundo milênio, o equipamento de um soldado recebeu sérias mudanças diante de novas ameaças e tarefas. Um melhor nível de proteção era necessário, então o exército russo precisava de uma armadura confiável e funcional. Em meados dos anos 2000, o MVD, que mais tarde foi reorganizado na Guarda Russa, recebeu coletes à prova de balas Bagariy.\n\n\"Bagariy\" foi usado tanto por soldados comuns das tropas internas quanto em forças especiais. Ativamente foi usado pelo PMC BEAR como a principal armadura pesada.", "628dc750b910320f4c27a732 Name": "Plate carrier ECLiPSE \"RBAV-AF\" (Verde Ranger)", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "USEC Camaleão", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "BEAR VOLK", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "BEAR Coiote", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "USEC DesOps", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Máscara do Death Knight", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "Uma máscara única do comandante do esquadrão Goons, ex-operadores do USEC que decidiram não fugir de Tarkov, mas criar sua própria ordem.", @@ -9203,9 +9203,9 @@ "6357c98711fb55120211f7e1 Name": "Lançador de granadas M203 40mm sob o cano", "6357c98711fb55120211f7e1 ShortName": "M203", "6357c98711fb55120211f7e1 Description": "Um lançador de granadas de 40mm de tiro único, projetado para instalação em fuzis de assalto M16 e M4.", - "635a758bfefc88a93f021b8a Name": "Linguiça Salty Dog", + "635a758bfefc88a93f021b8a Name": "Salame Salty Dog", "635a758bfefc88a93f021b8a ShortName": "Salame", - "635a758bfefc88a93f021b8a Description": "A lendária e rara linguiça defumada \"Salty Dog\". Não é feita de cachorro, é só o nome.", + "635a758bfefc88a93f021b8a Description": "O lendário e raro salame defumado \"Salty Dog\". Não é feito de cachorro, é só o nome.", "63611865ba5b90db0c0399d1 Name": "Colete tático Azimut SS \"Khamelion\" (Oliva)", "63611865ba5b90db0c0399d1 ShortName": "Khamelion", "63611865ba5b90db0c0399d1 Description": "Um sistema de colete simples com bolsas não removíveis projetadas para granadas e carregadores de rifle de precisão SVD. Fabricado por Azimut SpetsSnaryazheniye. Versão Verde Oliva.", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "USEC Predator", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", "64f07f7726cfa02c506f8ac0 Name": "Diário", "64f07f7726cfa02c506f8ac0 ShortName": "Diário", "64f07f7726cfa02c506f8ac0 Description": "Um diário de alguém que realmente ama tudo o que é soviético.", @@ -11920,7 +11920,7 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "USEC Defender", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "USEC BOSS Delta", "657f8e9824d2053bb360b51d ShortName": "USEC BOSS Delta", "657f8e9824d2053bb360b51d Description": "USEC BOSS Delta", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "BEAR URON", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "BEAR OPS MGS", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Tactical jacket", "657f925dada5fadd1f07a57a Name": "Materiais híbridos compostos", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "Civil morto", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", " V-ex_light": "Road to Military Base V-Ex", " Voip/DisabledForOffline": "VOIP está desativado no modo offline", " kg": "Kg", @@ -12102,8 +12087,6 @@ "AI amount": "Quantidade de IA", "AI difficulty": "Dificuldade da IA", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "Penetração", - "AMMO PROJECTILE COUNT": "Contagem de projéteis", "ARMOR CLASS": "CLASSE DE ARMADURA", "ARMOR POINTS": "PONTOS DE ARMADURA", "ARMOR TYPE": "ARMOR TYPE", @@ -12146,7 +12129,6 @@ "AheadOfTimeEnding": "Tempo de Conclusão", "Aim": "Mira", "AimDrills": "Pratica de mira", - "AimDrillsLevelingUpDescription": "A habilidade de Exercícios de Mira é melhorada ao acertar inimigos enquanto mira.", "AimMaster": "Mestre na Mira", "AimMasterDescription": "Domínio de mira reduz o tempo e balanço de cano imediatamente após o tiro.", "AimMasterElite": "Aumenta a velocidade de mira em [{0:0%}]", @@ -12241,12 +12223,9 @@ "Arena/CustomGames/toggle/tournament": "Torneio", "Arena/EndMatchNotification": "Partida terminou enquanto você estava ausente", "Arena/Matching/CustomGames": "Jogos customizados", - "Arena/Notification/Selection/Blocked": "Compra de Preset bloqueada", "Arena/OnCancelMatch": "Partida cancelada devido a problemas no carregamento", "Arena/OnCancelMatch/Group": "Partida cancelada devido a um membro do grupo com problemas no carregamento", "Arena/OnCancelMatch/NoServer": "Não foi possível encontrar um servidor disponível. Por favor tente novamente.", - "Arena/Popups/TwitchDropsHeader": "Resgatar presente", - "Arena/Preset/Tooltip/Tab/6": "Vários Presets colecionáveis exclusivos.", "Arena/Preset/Tooltip/Tab/Assault": "Assalto é a classe mais versátil. As predefinições desta classe possuem equipamentos balanceados adequados para a maioria das situações de combate.", "Arena/Preset/Tooltip/Tab/CQB": "CQB é a classe com maior blindagem da Arena. Os CQBs são caracterizados por seus escudos faciais e maior munição para suas armas principais. As predefinições desta classe são excelentes na defesa de posições e tiroteios prolongados.", "Arena/Preset/Tooltip/Tab/Collection": "Kits dados para conquistas especiais na Arena.", @@ -12294,19 +12273,13 @@ "Arena/TeamColor/white_plural": "Branco", "Arena/TeamColor/yellow": "Amarelo", "Arena/TeamColor/yellow_plural": "Amarelo", - "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Não há dinheiro suficiente para um ou mais membros do grupo", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Não há presets de nível desbloqueadas suficientes para um ou mais membros do grupo", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Não há presets {0} desbloqueadas suficientes para um ou mais membros do grupo", - "Arena/Tiers/LockedBy/PovertyThreshold": "Não há dinheiro suficiente para o Tier", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "Não há dinheiro suficiente para {0}", - "Arena/Tiers/LockedBy/PresetsUnlocked": "Não há presets desbloqueados suficientes", - "Arena/Tiers/LockedBy/UnavailableTier": "Tier não disponível para o jogo", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} atualmente não disponível para o jogo", - "Arena/Tiers/RankingAvailable {0}": "Partida ranqueada indisponível: {0} presets desbloqueados", - "Arena/Tiers/Unlocked {0} presets": "{0} presets desbloqueados", - "Arena/Tiers/UnlockedPresets": "Presets desbloqueados", - "Arena/Tooltip/MapSelectedCounter": "Número de locais selecionados", - "Arena/Tooltip/MinMapCount {0}": "Selecione vários locais. Você precisa selecionar pelo menos {0} local(is)", + "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", + "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", + "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", + "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", + "Arena/Tiers/UnlockedPresets": "Presets unlocked", "Arena/UI/Awaiting-Players": "Aguardando jogadores", "Arena/UI/Confirm-Match": "Confirmar", "Arena/UI/CustomMode": "Customizado", @@ -12325,10 +12298,8 @@ "Arena/UI/Match_leaving_forbidden_body": "Se você sair desta partida você colocará seus companheiros em desvantagem.
Você perderá as recompensas, classificação e poderá sofrer um banimento temporário.", "Arena/UI/Match_leaving_forbidden_header": "Aviso! Você está deixando a partida.", "Arena/UI/Match_leaving_permitted_header": "Você pode deixar a partida sem penalidades.", - "Arena/UI/PresetResetToDefault": "As configurações das seguintes predefinições foram redefinidas para o padrão:", "Arena/UI/Return": "VOLTAR", "Arena/UI/Return-to-match": "VOLTAR A PARTIDA", - "Arena/UI/Selection/Blocked": "Preset ocupado", "Arena/UI/Waiting": "Aguardando...", "Arena/Ui/ServerFounding": "Procurando servidor...", "Arena/Widgets/Observer/capture point": "Capture o objetivo", @@ -12383,16 +12354,9 @@ "ArenaUI/PresetView/FreePreset": "LIVRE", "ArenaUI/PresetView/PresetPreview": "Pré-visualização de kit", "ArenaUI/PresetView/ShopPrice": "Preço de loja", - "Arena_AirPit": "Air Pit", - "Arena_AutoService": "Chop Shop", - "Arena_Bay5": "Bay 5", - "Arena_Bowl": "Bowl", - "Arena_Yard": "Block", - "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Final", "Arena_result_result": "Resultado", "Arena_result_rounds": "Rodada", - "Arena_saw": "Sawmill", "Armband": "Braçadeira", "Armor": "Armadura", "Armor Zone BackHead": "Nuca", @@ -12438,13 +12402,11 @@ "Assault": "Rifle de assalto", "AssaultCarbine Mastering": "Carabina de assalto", "AssaultDescription": "Habilidade de controle de Rifles de Assalto.", - "AssaultLevelingUpDescription": "The Assault Rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "AssaultRifle": "Rifles de assalto", "AssaultRifle Mastering": "Rifle de assalto", "AssortmentUnlockReward/Description": "Você poderá comprar este item {0} como recompensa", "AttachedLauncher": "Lançador sob-cano", "AttachedLauncherDescription": "Habilidade com lança granada sob-cano", - "AttachedLauncherLevelingUpDescription": "The Underbarrel Launchers weapon skill is improved by firing and reloading the corresponding weapon type.", "Attention": "Atenção", "Attention!": "Atenção!", "Attention! All items, brought by you into the raid or found in it, have been lost.": "Atenção! Você perdeu todos os itens recebidos e ganhos durante a incursão.", @@ -12456,7 +12418,6 @@ "AttentionDescription": "A atenção aumenta a velocidade de saque de vários recipientes.", "AttentionEliteExtraLootExp": "Duplica seu EXP de pilhagem", "AttentionEliteLuckySearch": "Chance de encontrar instantaneamente um item em um recipiente [({0})]", - "AttentionLevelingUpDescription": "The Attention skill is improved by searching containers and bodies.", "AttentionLootSpeed": "Aumenta a velocidade de saque em [{0:0%}]", "AttentionRareLoot": "Aumenta a velocidade de exame de itens em [{0:0%}]", "Auctionsdescription": "Leilões", @@ -12512,7 +12473,6 @@ "Bloom": "Bloom", "BodyTemperature": "Temperatura corporal", "Boiler Tanks": "Caldeiras", - "BonfireBuff": "Calor da fogueira", "BoozeGenerator": "ALAMBIQUE", "Boss pick": "Boss pick", "BossType/AsOnline": "Como no online", @@ -12623,7 +12583,6 @@ "CharismaFenceRepPenaltyReduction": "Reduz a penalidade a reputação do Fence", "CharismaHealingDiscount": "Reduz os preços dos serviços de cura pós-incursão em [{0:0%}]", "CharismaInsuranceDiscount": "Reduz os preços dos serviços de seguro em [{0:0%}]", - "CharismaLevelingUpDescription": "A habilidade de Carisma é melhorada indiretamente ao evoluir as habilidades de Atenção, Percepção e Intelecto.", "CharismaScavCaseDiscount": "Adiciona um desconto aos preços da Caixa Scav", "ChatScreen/QuestItemsListHeader": "Os seguintes itens serão transferidos para o estoque de itens de missão:", "ChatScreen/QuestItemsMoved": "Itens transferidos com sucesso para o estoque de itens de missão", @@ -12651,19 +12610,19 @@ "Close the game": "Feche o jogo", "CloseBufferGates": "fechar a porta", "CloseDoor": "Fechar", - "ClothingItem/Equipped": "Equipado", - "ClothingItem/Obtained": "Obtido", + "ClothingItem/Equipped": "Equipped", + "ClothingItem/Obtained": "Obtained", "ClothingItem/Preview": "Preview", - "ClothingItem/Purchase": "Disponível", - "ClothingItem/Unavailable": "Indisponível", - "ClothingPanel/ExternalObtain": "Disponível para compra no website", - "ClothingPanel/InternalObtain": "Condições de compra do comerciante:", - "ClothingPanel/LoyaltyLevel": "Comerciante\n\nNível de Reputação:", - "ClothingPanel/PlayerLevel": "Jogador\n\nNível:", - "ClothingPanel/RequiredPayment": "Obrigatório\n\nPagamento:", - "ClothingPanel/RequiredQuest": "Concluído\n\nTarefa:", - "ClothingPanel/RequiredSkill": "Obrigatório\n\nHabilidade:", - "ClothingPanel/StandingLevel": "Trader\n\nReputação:", + "ClothingItem/Purchase": "Available", + "ClothingItem/Unavailable": "Unavailable", + "ClothingPanel/ExternalObtain": "Available for purchase on the website", + "ClothingPanel/InternalObtain": "Trader purchase conditions:", + "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", + "ClothingPanel/PlayerLevel": "Player\nLevel:", + "ClothingPanel/RequiredPayment": "Required\nPayment:", + "ClothingPanel/RequiredQuest": "Completed\ntask:", + "ClothingPanel/RequiredSkill": "Required\nSkill:", + "ClothingPanel/StandingLevel": "Trader\nStanding:", "CloudinessType/Clear": "Limpo", "CloudinessType/Cloudy": "Nublado", "CloudinessType/CloudyWithGaps": "Nuvens esparsas", @@ -12741,7 +12700,6 @@ "CovertMovementDescription": "Movimento silencioso faz seus passos menos barulhentos e reduz a distância que podem ser ouvidos.", "CovertMovementElite": "O movimento furtivo se torna igualmente silencioso em todas as superfícies", "CovertMovementEquipment": "Reduz o nível de ruído de armas e equipamentos em [{0:0%}]", - "CovertMovementLevelingUpDescription": "A habilidade de Movimento Furtivo é melhorada ao se mover silenciosamente.", "CovertMovementLoud": "Reduz o nível de ruído dos passos em superfícies incomuns em [{0:0%}]", "CovertMovementSoundRadius": "Reduz o raio de som do Movimento Furtivo em [{0:0%}]", "CovertMovementSoundVolume": "Reduz o nível de ruído dos passos em superfícies comuns em [{0:0%}]", @@ -12749,7 +12707,6 @@ "Crafting": "Produção", "CraftingContinueTimeReduce": "Reduz todo o tempo de produção cíclico (exceto a Fazenda de Bitcoins) em [{0:0.##%}]", "CraftingElite": "A habilidade de produzir até dois objetos na mesma área ao mesmo tempo", - "CraftingLevelingUpDescription": "The Crafting skill is improved by creating items in the Hideout.", "CraftingSingleTimeReduce": "Reduz o tempo de crafting de itens em [{0:0.##%}]", "Craftingdescription": "Melhorar a habilidade de construção, reduz o tempo de produção de itens incluindo produções cíclicas", "Create group dialog": "Criar grupo de conversa", @@ -12759,7 +12716,7 @@ "Critical error": "Erro crítico", "Crossroads": "Crossroads", "Currency/Any": "Qualquer", - "Current attitude:": "Reputação atual:", + "Current attitude:": "Atitude atual:", "Current location:": "Localização atual:", "Custom/Description": "Jogo personalizado\nNeste modo, você pode criar uma partida de acordo com suas próprias regras ou ingressar em uma sala existente.\nO progresso feito neste modo de jogo não é salvo!", "Customs": "Customs", @@ -12779,7 +12736,6 @@ "DISPOSE": "DESCARTAR", "DMR": "DMR", "DMRDescription": "Habilidades de manipulação com rifles para atiradores designados (DMR)", - "DMRLevelingUpDescription": "A habilidade de arma de Fuzis de Atirador Designado é melhorada ao disparar e recarregar o tipo de arma correspondente.", "DON'T TRY TO LEAVE": "NÃO TENTE SAIR", "DONTKNOW": "NÃO SEI", "DOWN": "ABAIXO", @@ -12934,7 +12890,6 @@ "EAntialiasingMode/None": "desligado", "EAntialiasingMode/TAA_High": "TAA Alto", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", "EArenaPresetsType/Assault": "Assalto", "EArenaPresetsType/CQB": "CQB", "EArenaPresetsType/Marksman": "Atirador", @@ -13142,7 +13097,6 @@ "EnduranceBuffRestorationTimeRed": "Diminui o tempo de recuperação da respiração em [{0:0%}]", "EnduranceDescription": "Resistência influencia a quantidade de resistência e a taxa de exaustão ao correr ou pular, bem como prender e recuperar o fôlego.", "EnduranceHands": "Maior resistência nos braços", - "EnduranceLevelingUpDescription": "A habilidade de Resistência é melhorada ao correr sem o efeito de status de sobrepeso e ao se exercitar na academia do Esconderijo.", "EnergyExpensesUp {0}": "Esgotamento de energia aumentou {0}", "EnergyRate": "Recuperação de energia", "Enter": "Entrar", @@ -13185,7 +13139,7 @@ "Exceptions:": "Exceções:", "Exhaustion": "Fadiga", "Exhibition/BlockedMessage": "Não disponível para a conta atual", - "Exit": "SAIR", + "Exit": "SAÍDA", "Exit1": "Hole in the fence by the mountains", "Exit2": "The heating pipe", "Exit3": "Depot hermetic door", @@ -13272,7 +13226,6 @@ "Friends": "Amigos", "Friends invite is already sent": "Você já enviou um pedido de amizade.", "Friends list": "Lista de amigos", - "FrostbiteBuff": "Morana's frostbite", "Full": "Cheio", "Full Recovery Time": "Tempo de recuperação completa", "Fullscreen mode:": "Modo de tela:", @@ -13341,7 +13294,6 @@ "HIT": "ATINGIDO", "HMG": "Metralhadora Pesada", "HMGDescription": "Habilidade de controle de Metralhadora Automática Pesada", - "HMGLevelingUpDescription": "The Heavy Machine Guns weapon skill is improved by firing and reloading the corresponding weapon type.", "HOLD FIRE": "CESSAR FOGO", "HOLDFIRE": "CESSAR FOGO", "HOLDPOSITION": "MANTENHA A POSIÇÃO", @@ -13378,7 +13330,6 @@ "HealthElitePosion": "Nível de imunidade de veneno [({0})]", "HealthEnergy": "Diminui o consumo de energia em [{0:0%}]", "HealthHydration": "Diminui a taxa de desidratação em [{0:0%}]", - "HealthLevelingUpDescription": "The Health skill is improved indirectly by leveling the Strength, Endurance, and Vitality skills.", "HealthOfflineRegenerationInc": "Aumenta a recuperação off-line em [{0:0%}]", "HealthRate": "Recuperação da saúde", "HealthTreatment/SkipHealthTreatmentDialogue": "Atenção! Sua vida está baixa.\nPular tratamento médico e\ncontinuar para o MENU PRINCIPAL?", @@ -13392,7 +13343,6 @@ "HeavyVestRepairDegradationReduction": "Reduz o desgaste ao usar os kits de reparo em [{0:0%}]", "HeavyVests": "Coletes Pesados", "HeavyVestsDescription": "Habilidade em Armaduras Pesadas melhora a mobilidade e reduz a quantidade de dano penetrado e explosivo a saúde.", - "HeavyVestsLevelingUpDescription": "The Heavy Vests skill is improved by repairing heavy body armor and ballistic plates with repair kits.", "Hideout/Craft/ToolMarkerTooltip": "Este item será usado como uma ferramenta auxiliar. Ele retornará ao seu estoque assim que a produção for concluída.", "Hideout/Handover window/Caption/All weapons": "Todas as armas", "Hideout/Handover window/Message/Items in stash selected:": "Itens no estoque selecionados:", @@ -13405,9 +13355,8 @@ "HideoutExtraSlots": "+2 espaços para galões de combustíveis\n+2 espaços para filtro de água\n+2 espaços para filtros de ar\n+2 para o limite de bitcoins armazenados", "HideoutInteractions/TransferItems": "Tranferir itens", "HideoutManagement": "Gerenciamento do esconderijo", - "HideoutManagementLevelingUpDescription": "The Hideout Management skill is improved by creating items and upgrading zones in the Hideout.", - "HideoutResourceConsumption": "Diminui o consumo de combustível, filtro de ar e água em [{0:0.#%}]", - "HideoutZoneBonusBoost": "Aumenta porcentagens de bônus em todas as zonas em [{0:0.#}%]", + "HideoutResourceConsumption": "Diminui o consumo de combustível, filtro de ar e água em [{0:0%}]", + "HideoutZoneBonusBoost": "Aumenta porcentagens de bônus em todas as zonas em [{0:0}%]", "Hideout\\Craft\\ToolMarketTooltip": "", "Hideout_area_16_stage_3_description": "Uma área completa no Esconderijo dedicada ao armazenamento de itens de valor colecionável.", "Hiding objective {0:F1}": "Escondendo objetivo {0:F1}", @@ -13444,7 +13393,6 @@ "Immunity": "Imunidade", "ImmunityAvoidPoisonChance": "Aumenta as chances de evitar envenenamento em [{0:0}%]", "ImmunityDescription": "Imunidade afeta a vulnerabilidade a doenças e a eficácia de seu tratamento.", - "ImmunityLevelingUpDescription": "A habilidade de Imunidade é melhorada ao estar sob os efeitos de envenenamento e outros efeitos negativos de estimulantes.", "ImmunityMiscEffects": "Reduz todos os efeitos negativos de estimulantes, comida e água em [{0:0%}]", "ImmunityMiscEffectsChance": "Chance de ganhar imunidade aos efeitos negativos de estimulantes, comida, água até [{0:0%}]", "ImmunityPainKiller": "Aumenta a duração dos efeitos analgésicos em [{0:0%}]", @@ -13473,7 +13421,6 @@ "IntellectEliteContainerScope": "Adivinha o conteúdo do contêiner sem pesquisar", "IntellectEliteNaturalLearner": "Você não precisa de um manual para examinar esse item", "IntellectLearningSpeed": "Aumenta a velocidade de exame de itens em [{0:0%}]", - "IntellectLevelingUpDescription": "The Intellect skill is improved by examining previously unidentified items and repairing weapons.", "IntellectRepairPointsCostReduction": "Reduz o consumo dos kits de reparo em [{0:0%}]", "IntellectWeaponMaintance": "Aumenta a efetividade do reparo de armas em [{0:0%}]", "IntelligenceCenter": "CENTRO DE INTELIGÊNCIA", @@ -13645,7 +13592,6 @@ "LL": "LL", "LMG": "Metralhadora Leve", "LMGDescription": "Habilidade de controle de Metralhadora Automática Leve", - "LMGLevelingUpDescription": "The Light Machine Guns weapon skill is improved by firing and reloading the corresponding weapon type.", "LOAD": "CARREGAR", "LOAD FROM DIRECTORY...": "Carregar do diretório...", "LOAD FROM FILE...": "Carregar arquivo...", @@ -13667,7 +13613,6 @@ "LastHeroDescriptionShort": "Cada um por sí", "Launcher": "Lançador", "LauncherDescription": "Habilidade de manipulação com Lança Granadas", - "LauncherLevelingUpDescription": "The Grenade Launchers weapon skill is improved by firing and reloading the corresponding weapon type.", "LeanLockLeft": "Inclinar para a esquerda", "LeanLockRight": "Inclinar para a direita", "LeanX negative": "Inclinar levemente à esquerda", @@ -13704,7 +13649,6 @@ "LightVestRepairDegradationReduction": "Reduz o desgaste ao usar os kits de reparo em [{0:0%}]", "LightVests": "Coletes Leves", "LightVestsDescription": "Habilidade em Armaduras leves melhora a mobilidade e reduz a quantidade de dano penetrado ou corpo a corpo.", - "LightVestsLevelingUpDescription": "The Light Vests skill is improved by repairing light body armor and ballistic plates with repair kits.", "Lighthouse": "Lighthouse", "Lighthouse_pass": "Path to Lighthouse", "Lighting quality:": "Qualidade de iluminação:", @@ -13756,7 +13700,6 @@ "MAP": "MAPA", "MASTERING": "MASTERIZAÇÃO", "MATERIAL": "Material", - "MAX AMMO DAMAGE": "Dano", "MAXCOUNT": "CONTAGEM MÁXIMA", "MAXIMUM THROW DAMAGE": "Dano máximo de arremesso", "MED USE TIME": "TEMPO DE USO DO MEDICAMENTO", @@ -13805,12 +13748,11 @@ "MagDrills": "Manuseio do carregador", "MagDrillsDescription": "Habilidade destinada ao manuseio do carregador - carregamento e descarregamento de munição, e verificar munição restante.", "MagDrillsInstantCheck": "Carregador inspeccionado automaticamente quando movido para o teu inventário", - "MagDrillsInventoryCheckAccuracy": "Aumenta a precisão de checagem do carregador usando o menu de contexto em [{0:0.#}%]", - "MagDrillsInventoryCheckSpeed": "Aumenta a velocidade de checagem do carregador usando o menu de contexto em [{0:0.#}%]", - "MagDrillsLevelingUpDescription": "The Mag Drills skill is improved by loading, unloading, and checking magazines.", + "MagDrillsInventoryCheckAccuracy": "Aumenta a precisão de checagem do carregador usando o menu de contexto em [{0}%]", + "MagDrillsInventoryCheckSpeed": "Aumenta a velocidade de checagem do carregador usando o menu de contexto em [{0}%]", "MagDrillsLoadProgression": "A performance do municiamento aumenta a cada munição carregada", - "MagDrillsLoadSpeed": "Aumenta a velocidade de carregamento da munição em [{0:0.#}%]", - "MagDrillsUnloadSpeed": "Aumenta a velocidade de descarregamento da munição em [{0:0.#}%]", + "MagDrillsLoadSpeed": "Aumenta a velocidade de carregamento da munição em [{0}%]", + "MagDrillsUnloadSpeed": "Aumenta a velocidade de descarregamento da munição em [{0}%]", "MagPreset/CaliberNotSelected": "Calibre não especificado", "MagPreset/DiscardCahangesDescription": "Quaisquer alterações não salvas serão perdidas.\nContinuar?", "MagPreset/Error/ContainsMissingItems": "Munição não encontrada:", @@ -13881,11 +13823,9 @@ "Meds": "Medicamentos", "Melee": "Corpo a corpo", "MeleeDescription": "Habilidades de manipulação armas corpo a corpo", - "MeleeLevelingUpDescription": "The Melee skill is improved by striking enemies with melee weapons.", "Memory": "Memória", "MemoryDescription": "Habilidades treinadas duram mais antes de começarem a ser esquecidas", "MemoryEliteMentalNoDegradation": "Você não esquece nenhuma habilidade", - "MemoryLevelingUpDescription": "A habilidade da memória é melhorada por", "MemoryMentalForget1": "Diminui a taxa na qual faz você esquece habilidades [{0:0%}]", "MemoryMentalForget2": "Diminui a reversão dos níveis de habilidade em [{0:0%}]", "Mental": "Mental", @@ -13895,7 +13835,6 @@ "MetabolismEliteBuffNoDyhydration": "Você não recebe danos por exaustão e desidratação", "MetabolismEliteNoForget": "Você não esquece nenhuma habilidade física", "MetabolismEnergyExpenses": "Diminui a taxa de consumo de energia e desidratação [{0:0%}]", - "MetabolismLevelingUpDescription": "The Metabolism skill is improved by consuming energy and water supplies.", "MetabolismMiscDebuffTime": "Reduz o tempo de efeitos negativos de estimulantes, comida e água em [{0:0%}]", "MetabolismPhysicsForget": "Diminui a taxa de esquecer habilidades físicas em [{0:0%}]", "MetabolismPhysicsForget2": "Diminui a escala máxima de esquecimento de habilidades físicas", @@ -14081,7 +14020,7 @@ "OfflineRaid/StartAsGroup": "Iniciar como grupo", "OfflineRaid/startasgrouptooltip": "Com esta opção selecionada, os jogadores começam a incursão lado a lado", "OfflineRaidScreen/WarningHeader": "Atenção! Seu progresso não será salvo no modo praticar!", - "OfflineRaidScreen/WarningText": "O jogo cooperativo requer a versão do jogo Edge of Darkness ou a expansão cooperativa para todos os membros do grupo.\nO jogo acontecerá em servidores dedicados de Escape from Tarkov.", + "OfflineRaidScreen/WarningText": "O jogo cooperativo requer a versão do jogo Edge of Darkness para todos os membros do grupo.\nO jogo acontecerá em servidores dedicados Escape from Tarkov.", "Old Azs Gate": "Old Gas Station", "Old Gas Station": "Old Gas Station", "Old Road Gate": "Old Road Gate", @@ -14139,7 +14078,6 @@ "PerceptionDescription": "Aumenta a distância de audição, melhora a concentração de mira e facilita a detecção de saque.", "PerceptionFov": "Aumenta a concentração de mira em [{0:0%}]", "PerceptionHearing": "Aumenta a distância de audição em [{0:0%}]", - "PerceptionLevelingUpDescription": "The Perception skill is improved by finding and picking up any items.", "PerceptionLootDot": "Aumenta o raio de detecção de itens em [{0:0%}]", "PerceptionmEliteNoIdea": "Notificação de proximidade de itens", "Perish": "Pereceu", @@ -14148,7 +14086,6 @@ "Pistol": "Pistola", "Pistol Mastering": "Pistola", "PistolDescription": "Habilidade de controle de pistola.", - "PistolLevelingUpDescription": "The Pistols weapon skill is improved by firing and reloading the corresponding weapon type.", "PlaceOfFame": "HALL DA FAMA", "PlantLocationDescription": "A propriedade industrial e as instalações da fábrica química # 16 foram alugadas ilegalmente para a empresa TerraGroup. Durante as Guerras Contratuais, esta fábrica foi alvo de inúmeros tiroteios entre os agentes do USEC e do BEAR que determinaram o controle sobre todo o distrito industrial de Tarkov. Com o tempo, as instalações da fábrica foram convertidas em abrigo para civis locais, Scavs, juntamente com os ocasionais operadores do USEC ou BEAR.", "Player": "Jogador", @@ -14220,7 +14157,6 @@ "ProneMovement": "Movimento deitado", "ProneMovementDescription": "Movimentação deitado fica mais rápida e silenciosa com experiência.", "ProneMovementElite": "Aumenta a velocidade de movimento deitado em [{0:0%}]", - "ProneMovementLevelingUpDescription": "The Prone Movement skill is improved by moving while in a prone position.", "ProneMovementSpeed": "Aumenta a velocidade de movimento deitado em [(+ {0:0 %})]", "ProneMovementVolume": "Abaixa o volume do movimento deitado[(-{0:0%})]", "Protect objective {0:F1}": "Proteger o objetivo {0:F1}", @@ -14412,7 +14348,6 @@ "RecoilControlDescription": "Maior controle de recuo reduz a propagação horizontal, fazendo ser mais previsível.", "RecoilControlElite": "Aprimora o controle de recuo em [{0:0%}]", "RecoilControlImprove": "Aprimora o controle de recuo em [{0:0%}]", - "RecoilControlLevelingUpDescription": "A habilidade de Controle de Recuo é melhorada por tiros contínuos. Quanto maior o recuo base da arma, mais rápido a habilidade melhora.", "RecommendedVRAM:": "VRAM Recomendada", "Reconnection is not available at this moment due to testing purposes": "Reconexão não está disponível neste momento devido a testes", "RedRebel_alp": "Climber's Trail", @@ -14442,7 +14377,6 @@ "Report game bug abuse": "Reportar abuso de bug em jogo", "Report offensive nickname": "Reportar apelido ofensivo", "Report suspected cheat use": "Reportar suspeito de cheat", - "Report suspicious profile": "Reportar perfil suspeito", "ReportAbuseBug": "Reportar abuso de bug", "ReportAbuseVoip": "Reportar abuso de VoIP & Radio", "ReportCheater": "Reportar suspeito de cheat", @@ -14478,7 +14412,6 @@ "Revolver": "Revólver", "Revolver Mastering": "Revólver", "RevolverDescription": "Habilidade de controle de revolver.", - "RevolverLevelingUpDescription": "The Revolvers weapon skill is improved by firing and reloading the corresponding weapon type.", "RezervBase": "Reserve", "Rig": "Veste tática", "Right Arm": "BRAÇO DIREITO", @@ -14528,7 +14461,6 @@ "SKILLS_SPEED_UP": "Velocidade de progressão de nível aumentada", "SMG": "SMG", "SMGDescription": "Habilidade de controle de SMG.", - "SMGLevelingUpDescription": "The Submachine guns weapon skill is improved by firing and reloading the corresponding weapon type.", "SNIPERPHRASE": "SNIPER", "SO": "SO", "SOUND": "SOM", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "Vendas com {0} aumentado para {1}", "Sandbox": "Ground Zero", "Sandbox_VExit": "Police Cordon V-Ex", - "Sandbox_high": "Ground Zero", "Saturation:": "Saturação:", "Savage matchmaker": "Começar incursão como um Scav, um bandido local com um conjunto de equipamentos aleatório. Tarkov é sua casa, você faz as regras!", "SavageBannerDescription": "Uma incursão como Scav é diferente de uma incursão com seu personagem principal. Player Scavs irão entrar em locais e tempos aleatórios durante a incursão. A saúde e equipamentos Scav também serão aleatórios. Extrair como Scav lhe dará a oportunidade de transferir qualquer saque obtido durante a incursão para o seu personagem principal. Morrer como Scav não afetará o seu progresso de maneira nenhuma.", @@ -14585,7 +14516,6 @@ "Search": "Procurar", "SearchDescription": "Habilidade de busca rápida e eficaz em corpos", "SearchDouble": "Pesquisa de dois contêineres simultâneos", - "SearchLevelingUpDescription": "The Search skill is improved by searching containers.", "SecondPrimaryWeapon": "Nas Costas", "SecondaryWeapon": "Arma secundária", "SecuredContainer": "Contêiner", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "As configurações foram alteradas. Salvar?", "Settings/Sound/BinauralSound": "Som Binaural", "Settings/Sound/ChatVolume": "Volume do Bate-Papo:", - "Settings/Sound/CommentatorVolume": "Volume do locutor:", "Settings/Sound/Device": "Dispositivo de audio", "Settings/Sound/HideoutVolume": "Volume do esconderijo:", "Settings/Sound/InterfaceVolume": "Volume da interface:", "Settings/Sound/MusicOnRaidEnd": "Musica no final da Incursão", "Settings/Sound/MusicVolume": "Volume de música:", "Settings/Sound/OverallVolume": "Volume total:", - "Settings/Sound/ReadyToMatchSoundVolume": "Volume da tela partida aceita:", "Settings/UnavailablePressType": "Não disponível", "SevereMusclePain": "Dor muscular severa", "Shack": "Military Base CP", @@ -14677,7 +14605,6 @@ "Shotgun": "Escopetas", "Shotgun Mastering": "Escopeta", "ShotgunDescription": "Habilidade de controle de escopeta.", - "ShotgunLevelingUpDescription": "The Shotguns weapon skill is improved by firing and reloading the corresponding weapon type.", "Show icons": "Exibir ícones", "Show:": "Mostrar:", "SightingRange": "Alcance efetivo", @@ -14701,7 +14628,6 @@ "Sniper": "Rifle Sniper", "Sniper Roadblock": "Sniper Roadblock", "SniperDescription": "Habilidade de controle de Rifle de Precisão.", - "SniperLevelingUpDescription": "The Bolt-action rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "SniperRifle": "Rifle de Precisão", "SniperRifle Mastering": "Rifle Sniper", "Sniper_exit": "Mira Ave", @@ -14734,8 +14660,6 @@ "StartInGroup": "Juntos", "StartLookingForGroup": "Começar a procurar por grupo", "StartNotInGroup": "Separadamente", - "StashLinesExternalObtain": "Stash upgrade", - "StashLinesExternalObtain/Tooltip": "Stash upgrade disponível pelo site", "StatFoundMoneyEUR": "EUR encontrado", "StatFoundMoneyRUB": "RUB encontrado", "StatFoundMoneyUSD": "USD encontrado", @@ -14779,12 +14703,10 @@ "StrengthBuffSprintSpeedInc": "Aumenta a velocidade do movimento e corrida em [{0:0%}]", "StrengthBuffThrowDistanceInc": "Aumenta a distancia de arremesso em [{0:0%}]", "StrengthDescription": "O aumento da força permite que você pule mais alto, corra mais rápido, bata com mais força, arremesse mais longe e carregue mais peso.", - "StrengthLevelingUpDescription": "A habilidade de Força é melhorada ao correr com o efeito de status de sobrepeso, lançando granadas, usando armas corpo a corpo e ao se exercitar na academia do Esconderijo.", "StressBerserk": "Acesso ao modo Berserker", "StressPainChance": "Reduz a chance de dor intensa em [{0:0%}]", "StressResistance": "Resistência ao estresse", "StressResistanceDescription": "Resistência ao estresse aumenta as chances de resistir ao choque da lesão, apertar as mãos e tremores.", - "StressResistanceLevelingUpDescription": "A habilidade de Resistência ao Estresse é melhorada ao receber dano. Ter o efeito de status de Dor sem usar analgésicos também melhora esta habilidade.", "StressTremor": "Reduz a oscilação de tremor em [{0:0%}]", "StringSeparator/Or": " ou ", "Stun": "Atordoado", @@ -14851,7 +14773,6 @@ "Summary": "Resumo", "Surgery": "Cirurgia", "SurgeryDescription": "A habilidade de realizar cirurgias em campo de batalha pode salvar sua vida em situações críticas. Quanto mais você aprimorar essa habilidade, melhor e mais rápido você irá realizar essas operações.", - "SurgeryLevelingUpDescription": "The Surgery skill is improved by using surgical kits on injured body parts.", "SurgeryReducePenalty": "Reduz a penalidade de vida em cirurgia em [{0:0%}]", "SurgerySpeed": "Aumenta a velocidade de cirurgia em [{0:0%}]", "Survival Rate Short": "FS: {0}%", @@ -14927,7 +14848,6 @@ "Throwing": "Arremessáveis", "ThrowingDescription": "Habilidades de manuseio com armas de arremesso", "ThrowingEnergyExpenses": "Reduz a energia necessária para arremessar em [{0:0%}]", - "ThrowingLevelingUpDescription": "The Throwables skill is improved by throwing grenades.", "ThrowingStrengthBuff": "Aumenta a força de arremesso em [{0:0%}]", "ThrowingWeaponsBuffElite": "Arremessáveis não necessitam de energia e fadiga não afeta sua precisão", "Time flow": "Time flow", @@ -14976,11 +14896,11 @@ "Trading/Dialog/AvaliableServices": "Você pode me ajudar com uma coisa?", "Trading/Dialog/Btr/News": "Qual é a boa?", "Trading/Dialog/Btr/News/Next": "Novidades?", - "Trading/Dialog/Btr/News1": "Tem nevado muito recentemente! Não nevamos assim desde as Guerras Contratuais. É como se não morássemos no norte. Pena que agora está tudo derretido.", - "Trading/Dialog/Btr/News2": "Você não sai com frequência, não é? Houve um grande feriado, toda a cidade comemorou! A propósito, boas festas.", - "Trading/Dialog/Btr/News3": "Nossos chefões fizeram uma grande bagunça, não foi? Sentados em seus lugares, sem se mover, sem deixar ninguém respirar.", - "Trading/Dialog/Btr/News4": "Esse esquisito que se veste de Papai Noel ano após ano, ele está falando agora! Achei que ele era mudo.", - "Trading/Dialog/Btr/News5": "As pessoas começaram a comprar bonecos de celebridades locais por toda a cidade. Eu me pergunto se meu veículo blindado será um ou não.", + "Trading/Dialog/Btr/News1": "A maior novidade é o BTR! Eu consertei tudo sozinho. Considere isso minha própria criação. Agora posso levar as pessoas por aí. Talvez isso me ajude a pagar os reparos.", + "Trading/Dialog/Btr/News2": "Alguém está organizando lutas de gladiadores em Tarkov. Dizem que muitas pessoas foram para lá por vontade própria. O dinheiro é muito bom. Se você sobreviver, obviamente!", + "Trading/Dialog/Btr/News3": "Houve um alvoroço em Tarkov por causa de alguns documentos do TerraGroup. Eles até olharam além da fronteira, mas eu meio que não acredito.", + "Trading/Dialog/Btr/News4": "Há algum tempo, a maior parte da munição perfurante desapareceu dos depósitos dos comerciantes. Lutadores como você estavam correndo por Tarkov, procurando por estoques de munição de outras pessoas. Agora está tudo bem.", + "Trading/Dialog/Btr/News5": "Sanitar tentou recentemente fortalecer sua influência em Tarkov. Ele tinha algum tipo de antídoto, aparentemente. Não muito antes disso, muitas pessoas foram envenenadas. Coincidência? Eu acho que não.", "Trading/Dialog/Btr/NoNews": "Eu acho que estas são todas as informações que eu tenho.", "Trading/Dialog/Btr/ServicePayoff{0}": "Pra mim está bom, sim. (entregar \"{0}\")", "Trading/Dialog/BtrBotCover/Description": "Enquanto você estiver no BTR, atiraremos em qualquer um que colocar o nariz para fora. Também limparemos a zona de desembarque e daremos cobertura enquanto você sair, mas não por muito tempo.", @@ -14999,34 +14919,18 @@ "Trading/Dialog/PlayerHandoveItem{0}": "Encontrei isso. (entregar \"{0}\")", "Trading/Dialog/PlayerTaxi/Description": "Aqui é onde eu posso te deixar. Escolha um.", "Trading/Dialog/PlayerTaxi/Name": "Entra ai", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Certo, destino - Cinema Rodina. O preço está bom pra você?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Cinema Rodina", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "Deslocando para o bonde. Você tem o dinheiro, né?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Bonde", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "Ótimo, nós estamos a caminho do centro da cidade. Você tem dinheiro suficiente?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "Centro da cidade", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Vamos nos deslocar para o guindaste caído. De acordo com o preço?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Guindaste caído", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "Vou te levar para o antigo posto de verificação scav. O preço está bom né?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Antigo posto de verificação scav", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "Vamos para o Hotel Pinewood. Como está o preço, tudo satisfatório?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Hotel Pinewood", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "Gonna head to the Scav bunker. Price alright?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Scav bunker", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "The sunken village, huh? I think we can make it. Here's the price.", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Sunken village", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "Posso te levar até a bifurcação na estrada, claro. Você tem dinheiro suficiente?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Junction", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "Serralheria? Sem problemas! Aqui meu preço.", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Sawmill", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "To the USEC checkpoint, alright. Not driving for free, though.", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "USEC Checkpoint", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "Estou traçando a rota para a base da Emercom. O preço está bom para você?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "Base Emercom", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "Belezinha, será na serralheria velha então. Aqui o valor.", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Old Sawmill", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "Você quer que eu te deixe no depósito? Só para você saber, você não pode sair de lá sem mim. Se o preço estiver bom, você fica de olho no tempo lá, tá bom?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Train Depot", + "Trading/Dialog/PlayerTaxi/p1/Description": "Certo, destino - Cinema Rodina. O preço está bom pra você?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Cinema Rodina", + "Trading/Dialog/PlayerTaxi/p2/Description": "Deslocando para o bonde. Você tem o dinheiro, né?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Bonde", + "Trading/Dialog/PlayerTaxi/p3/Description": "Ótimo, nós estamos a caminho do centro da cidade. Você tem dinheiro suficiente?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Centro da cidade", + "Trading/Dialog/PlayerTaxi/p4/Description": "Vamos nos deslocar para o guindaste caído. De acordo com o preço?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Guindaste caído", + "Trading/Dialog/PlayerTaxi/p5/Description": "Vou te levar para o antigo posto de verificação scav. O preço está bom né?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Antigo posto de verificação scav", + "Trading/Dialog/PlayerTaxi/p6/Description": "Vamos para o Hotel Pinewood. Como está o preço, tudo satisfatório?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Hotel Pinewood", "Trading/Dialog/Quit": "Vá embora", "Trading/Dialog/ServicePayoff{0}": "Ta certo, isso deve ser suficiente. (entregue \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Esconder histórico", @@ -15069,7 +14973,6 @@ "TroubleFixingMagElite": "Reduz a chance de mau funcionamento de uma munição em 50% depois de resolver mau funcionamento pela mesma razão", "TroubleShootingDescription": "Habilidade de solucionar problemas facilita correção de falhas em armas. ", "Troubleshooting": "Solução de problemas", - "TroubleshootingLevelingUpDescription": "The Troubleshooting skill is improved by regularly fixing weapon malfunctions.", "Try_keycard {0}": "Usar {0}", "Tunnel": "Tunnel", "Tunnel_Shared": "Side tunnel", @@ -15152,11 +15055,6 @@ "UI/Arena/Place_7": "7º Lugar", "UI/Arena/Place_8": "8º Lugar", "UI/Arena/Place_9": "9º Lugar", - "UI/ArmorPenetration/High": "Alta", - "UI/ArmorPenetration/Low": "Baixa", - "UI/ArmorPenetration/Medium": "Média", - "UI/ArmorPenetration/VeryHigh": "Muito alto", - "UI/ArmorPenetration/VeryLow": "Muito baixo ", "UI/Charisma/Discount/Insurance": "Custos de seguros", "UI/Charisma/Discount/PostRaidHealing": "Custo de cura", "UI/Charisma/Discount/ScavCase": "Custo da Caixa Scav", @@ -15252,7 +15150,7 @@ "UI/Standing:": "Reputação com vendedor:", "UI/TransferScreen/ExpirationWarning": "Pacote expira em:", "UI/TransferScreen/PackageHasExpired": "O pacote expirou.", - "UI/leave_game_confirmation_caption": "SAIR", + "UI/leave_game_confirmation_caption": "SAÍDA", "UI/leave_game_confirmation_text": "Você tem certeza que deseja sair?", "UN Roadblock": "UN Roadblock", "UNAVAILABLE": "NÃO DISPONÍVEL", @@ -15334,8 +15232,6 @@ "Very good standing": "muito bom", "Vest": "Colete", "Village": "Vilarejo", - "Violation/IntentionalTeamDamage/Warning": "Sua conta será bloqueada se você continuar atirando em seus companheiros de equipe", - "Violation/IntentionalTeamKill/Warning": "Sua conta será bloqueada se você continuar matando seus companheiros de equipe no inicio da rodada", "Violation/TeamKill/Warning": "Sua conta será bloqueada se você continuar matando seus companheiros de equipe", "Vital mod weapon in hands": "Você não pode modificar uma parte vital enquanto a arma está em suas mãos.", "Vital parts": "Partes vitais", @@ -15345,7 +15241,6 @@ "VitalityBuffRegeneration": "Aumenta a regeneração de saúde em combate", "VitalityBuffSurviobilityInc": "Diminui a chance de morte por perder um membro em [{0:0%}]", "VitalityDescription": "A vitalidade melhora suas chances de sobreviver a uma ferida, diminuindo a possibilidade de sangramento e morte instantânea por danos críticos de uma parte do corpo.", - "VitalityLevelingUpDescription": "The Vitality skill is improved by sustaining various bleedings and injuries.", "Voice": "Voz", "Voice 1": "Voz 1", "Voice 2": "Voz 2", @@ -15420,7 +15315,6 @@ "WeaponSwapBuff": "Aumenta a velocidade de troca de arma em [{0:0%}]", "WeaponTreatment": "Manutenção de Armas", "WeaponTreatmentDescription": "Habilidade de manutenção e funcionamento de armas.", - "WeaponTreatmentLevelingUpDescription": "The Weapon Maintenance skill is improved by repairing weapons with repair kits.", "WearAmountRepairGunsReducePerLevel": "Reduz o desgaste ao usar os kits de reparo", "WearChanceRepairGunsReduceEliteLevel": "Reduz a chance de desgate utilizando kits de reparo em 50%", "Weather conditions": "Condições climáticas", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "Taxa de vitória, %", "arena/career/teamFightStats/wins": "Vitórias", "arena/career/teamFightStats/winsWithFavPreset": "Partidas vencidas com o kit preferido", - "arena/customGames/create/samePresets": "Presets duplicados:", - "arena/customGames/create/setSamePresets": "Permitir presets duplicados", "arena/customGames/invite/message{0}": "CONVITE PARA JOGO CUSTOMIZADO DE {0}", "arena/customGames/notify/GameRemoved": "A sala foi desfeita", "arena/customgames/errors/notification/gamealreadystarted": "O jogo já começou", @@ -15708,7 +15600,6 @@ "arena/tooltip/OverallMatches": "Total de partidas ranqueadas e não ranqueadas jogadas.", "arena/tooltip/Presets": "Presets", "arena/tooltip/countGlp": "Sua classificação total de ARP (Pontos de Reputação de Arena). Esta é uma estatística que determina sua classificação obtida nos modos de jogo ranqueados. É usado para combinar com jogadores de igual habilidade, bem como para desbloquear novas classificações e predefinições.", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", "arena/tooltip/friends": "Amigos", "arena/tooltip/kdRatio": "Sua proporção entre eliminações e mortes, calculada a partir de todas as eliminações e mortes em partidas ranqueadas e não ranqueadas. Apenas as eliminações de jogadores são contadas.", "arena/tooltip/leftGlp": "Quantia de ARP necessária para o próximo rank.", @@ -15716,7 +15607,6 @@ "arena/tooltip/moneyRubles": "Rublos. São utilizados para comprar kits e obtidos a cada vitória na Arena.", "arena/tooltip/ratingPlace": "Sua posição na classificação.", "arena/tooltip/settings": "Configurações", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", "arena/tooltip/sourcesGlp": "Fontes de ganho de ARP:", "arena/tooltip/winMatches": "Total de vitórias em partidas ranqueadas e não ranqueadas.", "arena/tooltip/winRate": "Sua média de vitória, calculada de todas as vitórias e derrotas em partidas ranqueadas e não ranqueadas.", @@ -16264,7 +16154,7 @@ "ragfair/OnlyFunctional": "Apenas operacionais", "ragfair/OnlyPrioritized": "Apenas prioridade de ofertas", "ragfair/PLACE OFFER": "COLOCAR OFERTA", - "ragfair/PURCHASE": "COMPRAR", + "ragfair/PURCHASE": "COMPRA", "ragfair/PackWarning": "Você irá pôr o pacote de itens no mercado. Tem certeza disto?", "ragfair/Price": "Preço", "ragfair/PriceFrom": "Preço min.", @@ -16450,8 +16340,6 @@ "{0} GroupPlayerBlocking/MatchLeave": "Modo de jogo bloqueado temporariamente porque um dos membros do grupo ({0}) foi bloqueado por sair do jogo", "{0} GroupPlayerBlocking/NotAcceptedMatch": "Modo de jogo bloqueado temporariamente porque um dos membros do grupo ({0}) foi bloqueado por não aceitar a partida", "{0} GroupPlayerBlocking/TeamKill": "Modo de jogo bloqueado temporariamente porque um dos membros do grupo ({0}) foi bloqueado por matar muitos aliados", - "{0} Violation/IntentionalTeamDamage/Blocking": "Jogador {0} foi removido da partida e recebeu uma punição por atirar em aliados", - "{0} Violation/IntentionalTeamKill/Blocking": "Jogador {0} foi removido da partida e recebeu uma punição por matar aliados no inicio da rodada", "{0} Violation/TeamKill/Blocking": "Jogador {0} foi removido da partida e recebeu uma punição por matar aliados", "{0} added you to the ignore list": "{0} adicionado à lista de ignorados.", "{0} ask to cooperate": "{0} cumprimenta você", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "Ground Zero", "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "United Security", "5464e0404bdc2d2a708b4567 Description": "A empresa militar privada USEC foi criada em 1999 após a fusão de duas empresas: KerniSEC e Safe Sea. Em 2004, um agente da holding internacional Terra Group entrou em contato com a USEC, que se tornaram consecutivamente, essencialmente, um exército privado da holding, com escritórios em todo o mundo e mais de 7500 funcionários.", "5464e0454bdc2d06708b4567 Name": "BEAR", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "Mate operadores PMCs com rifle de ferrolho com tiros na cabeça na Lighthouse", "63aec6f256503c322a190374": "Mate operadores PMCs com rifle de ferrolho com tiros na cabeça na Streets of Tarkov", "64b694c8a857ea477002a408": "Mate operadores PMCs com rifle de ferrolho com tiros na cabeça na Interchange", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Mate Scavs na Streets vestindo o uniforme da ONU (Capacete UNTAR, Colete Balístico MF-UNTAR e Colt M4A1)", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "Sobreviva na base Reserve (Situação: Sobreviveu)", "629f08e7d285f377953b2af1": "Sobreviva na Lighthouse (Situação: Sobreviveu)", "63aec66556503c322a190372": "Sobreviva na Streets (Situação: Sobreviveu)", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Conquiste lealdade nível 4 com Therapist", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -19455,13 +19336,13 @@ "5d25e48186f77443e625e386 description": "Você conhece a área do sanatório, não é? Primeiro, os trabalhadores da factory estavam se tratando lá, e então os empregados da Terragroup trouxeram seu pessoal. Eu estive nesses lugares há muito tempo atrás, Meus colegas viviam lá. O Padre, seu nome era Peter. Misha, o pescador. E Stepan o presidente local. Verifique suas casas, se estiverem lá ainda.", "5d25e48186f77443e625e386 failMessageText": "", "5d25e48186f77443e625e386 successMessageText": "Então você viu a casa do presidente intacta? mas não viu ele? Espero que ele tenha conseguido...", - "5d357b6c86f774588d4d7e25": "Localize a casa do presidente na vila abandonada na Shoreline", - "5d357b9586f7745b422d653f": "Localize a casa do pescador na vila abandonada na Shoreline", + "5d357b6c86f774588d4d7e25": "Encontre a casa do presidente", + "5d357b9586f7745b422d653f": "Encontre a casa do presidente", "5d357bb786f774588d4d7e27": "Localize a casa do padre na vila abandonada em Shoreline", "5d7784cc86f7742fa5005cba": "", "5d77854786f7745041358b36": "", "5d77a36086f77461b27a236a": "", - "629f4f080f57046e362e6e9e": "Sobreviva e extraia na Shoreline com o status de saída \"Sobreviveu\"", + "629f4f080f57046e362e6e9e": "Sobreviva na Shoreline (Situação: Sobreviveu)", "5d25e48186f77443e625e386 acceptPlayerMessage": "", "5d25e48186f77443e625e386 declinePlayerMessage": "", "5d25e48186f77443e625e386 completePlayerMessage": "", @@ -19502,7 +19383,7 @@ "5d25e4b786f77408251c4bfc declinePlayerMessage": "", "5d25e4b786f77408251c4bfc completePlayerMessage": "", "5d25e4ca86f77409dd5cdf2c name": "Caçada", - "5d25e4ca86f77409dd5cdf2c description": "Entre. Quer um chá? Muito bem, o negócio é o seguinte. Em breve eu vou estar recebendo alguns amigos meus. Eu quero ir caçar com eles, mas sem chance de eu levar eles pra caçar com estas escopetas MP. Eu quero que você nos consiga uns rifles bons. Rifles que eu possa incluir na minha coleção pessoal depois dessa caçada. Você deve amar atirar a longa distância. Mas primeiro, tenha certeza que estejam calibrados. Temos o cliente pra isso, seu nome é Shturman. O desgraçado fica se movendo pela madeireira. Não se preocupe com a recompensa, não ira te desapontar. Eu vou te escrever um bilhete com os requerimentos dos rifles. (Remington M700 com luneta FullField TAC30 1-4x24)", + "5d25e4ca86f77409dd5cdf2c description": "Entre. Quer um chá? Muito bem, o negócio é o seguinte. Em breve eu vou estar recebendo alguns amigos meus. Eu quero ir caçar com eles, mas sem chance de eu levar eles pra caçar com estas escopetas MP. Eu quero que você nos consiga uns rifles bons. Rifles que eu possa incluir na minha coleção pessoal depois dessa caçada. Você deve amar atirar a longa distância. Mas primeiro, tenha certeza que estejam calibrados. Temos o cliente pra isso, seu nome é Shturman. O desgraçado fica se movendo pela madeireira. Não se preocupe com a recompensa, não ira te desapontar. Eu vou te escrever um bilhete com os requerimentos dos rifles. (Remington M700 com luneta March Tactical 3-24x42 FFP)", "5d25e4ca86f77409dd5cdf2c failMessageText": "", "5d25e4ca86f77409dd5cdf2c successMessageText": "Esses são ótimos rifles! Bom trabalho! Sabe, acho que posso me dedicar a ser armeiro, gostei bastante dessa coisa. Então, sobre a recompensa: confira as coisinhas que encontrei, você pode precisar delas.", "5d7793fa86f7742fa901bc80": "", @@ -20314,8 +20195,6 @@ "60ec2b04bc9a8b34cd453b81": "Você não deve morrer e não deve extrair da incursão enquanto a tarefa estiver ativa (Situação: Morto, Abandonado, Desaparecido)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "Sobreviva e extraia da Streets of Tarkov através da Primorsky Ave Taxi V-Ex", "6397a6942e519e69d2139b25": "Localize e marque o primeiro veículo blindado Patrol-A com um marcador MS2000 na Streets of Tarkov", "6397a7ce706b793c7d6094c9": "Localize e marque o segundo veículo blindado Patrol-A com um marcador MS2000 na Streets of Tarkov", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "Consegui entrar em contato com os motoristas. Não foi fácil, mas descobri algo interessante.", @@ -21530,15 +21408,15 @@ "63a5cf262964a7488f5243ce acceptPlayerMessage": "", "63a5cf262964a7488f5243ce declinePlayerMessage": "", "63a5cf262964a7488f5243ce completePlayerMessage": "", - "63a88045abf76d719f42d715 name": "Delícia de Linguiça", + "63a88045abf76d719f42d715 name": "O Salame Delicioso", "63a88045abf76d719f42d715 description": "Оh! Entre, tenho um trabalho para você! Ouça, há quanto tempo você está na cidade? Bem, eu tenho um trabalho para você. Percorra os supermercados, veja se foram saqueados. E faça um favor ao velho e procure o salame Salt Dog ou algo assim. o mecânico gentilmente me apresentou, e agora estou desejando. Está me matando!", "63a88045abf76d719f42d715 failMessageText": "", - "63a88045abf76d719f42d715 successMessageText": "Então, como está a situação por aí? Não sobrou nada? Malditos saqueadores! Mas você encontrou a linguiça? Haha lá ele, que milagre! Mas e a data de validade?", + "63a88045abf76d719f42d715 successMessageText": "Então, como está a situação por aí? Não sobrou nada? Malditos saqueadores! Mas você encontrou o salame? Haha, que milagre! Mas e a data de validade?", "63a98cfbc31b00242d28a95b": "Explore a loja Shestyorochka na rua Nikitskaya", "63a98d24655ec5555b4aa9e7": "Explore a loja Sparja na avenida Primorsky", "63a98d39da7999196148ba3a": "Explore a loja Sparja no hotel Pinewood", "63a98d60c0f61a5d8731cd9f": "Explorar a loja Goshan na Concordia", - "63a98cdf655ec5555b4aa9e6": "Entregue a linguiça Salty Dog encontrada em incursão", + "63a98cdf655ec5555b4aa9e6": "Entregue o salame Salty Dog encontrado em incursão", "63a88045abf76d719f42d715 acceptPlayerMessage": "", "63a88045abf76d719f42d715 declinePlayerMessage": "", "63a88045abf76d719f42d715 completePlayerMessage": "", @@ -21578,13 +21456,12 @@ "63a9b36cc31b00242d28a99f successMessageText": "Por que diabos você não se limpou antes de aparecer aqui? Aqui, pegue sua recompensa e vá embora. Jesus Cristo, o que há com as crianças hoje em dia. Tome seus banhos!", "63a9b3d7813bba58a50c9ee9": "Elimine Scavs enquanto usa armas corpo a corpo durante o dia na Factory", "63a9b41dad5cc12f22162022": "Elimine Scavs enquanto usa armas corpo a corpo na Streets of Tarkov", - "63a9b45bda7999196148ba5f": "Elimine Scavs enquanto usa armas corpo a corpo na Lighthouse", + "63a9b45bda7999196148ba5f": "Elimine Scavs enquanto usa armas corpo a corpo na Streets of Tarkov", "63a9b52b009ffc6a551631a7": "Elimine Scavs enquanto usa armas corpo a corpo na Woods", "63a9b557da7999196148ba61": "Elimine Scavs enquanto usa armas corpo a corpo na Shoreline", "63a9b591da7999196148ba63": "Elimine Scavs enquanto usa armas corpo a corpo na Interchange", "63a9b5b2813bba58a50c9eeb": "Elimine Scavs enquanto usa armas corpo a corpo na Customs", "63a9b5f064b9631d9178276b": "Elimine Scavs enquanto usa armas corpo a corpo na Reserve", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21691,8 +21568,8 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "Um canalha a menos para se preocupar. Você fez um bom trabalho, garoto.", "64e7ba17220ee966bf425ecb": "Localize e elimine Kaban", "64e7ba4a6393886f74119f3d": "Elimine os guardas de Kaban na concessionária na Streets of Tarkov", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", diff --git a/project/assets/database/locales/global/ro.json b/project/assets/database/locales/global/ro.json index f613e22a..309756d9 100644 --- a/project/assets/database/locales/global/ro.json +++ b/project/assets/database/locales/global/ro.json @@ -25,10 +25,10 @@ "543be6674bdc2df1348b4569 Description": "Articol", "5447a9cd4bdc2dbd208b4567 Name": "Colt M4A1 5.56x45", "5447a9cd4bdc2dbd208b4567 ShortName": "M4A1", - "5447a9cd4bdc2dbd208b4567 Description": "Carabina M4A1 este varianta automată a carabinei M4 și a fost concepută pentru utilizarea în operațiuni speciale.\nComandamentul pentru Operațiuni Speciale a Statelor Unite (USSOCOM) a adoptat imediat carabină M4A1 în toate unitățile din subordine. Ulterior această armă a fost adoptată și de către Armata Statelor Unite și de către corpul de desant marin (Marine Corps).", - "5447ac644bdc2d6c208b4567 Name": "5.56x45mm M855 cutie (30 buc.)", + "5447a9cd4bdc2dbd208b4567 Description": "Carabină M4A1 este varianta automată a carabinei M4 și a fost concepută pentru utilizarea în operațiuni speciale.\nComandamentul pentru Operațiuni Speciale a Statelor Unite (USSOCOM) a adoptat imediat carabină M4A1 în toate unitățile din subordine. Ulterior această armă a fost adoptată și de către Armata Statelor Unite și de către corpul de desant marin (Marine Corps).", + "5447ac644bdc2d6c208b4567 Name": "5.54x45mm M855 cutie (50 buc.)", "5447ac644bdc2d6c208b4567 ShortName": "M855", - "5447ac644bdc2d6c208b4567 Description": "Pachet de muniție 5.56x45 mm M855, 30 cartușe.", + "5447ac644bdc2d6c208b4567 Description": "Pachet de muniție 5.56x45 mm M855, 50 cartușe.", "5447b5cf4bdc2d65278b4567 Name": "Pistol", "5447b5cf4bdc2d65278b4567 ShortName": "Pistol", "5447b5cf4bdc2d65278b4567 Description": "Pistolet", @@ -173,10 +173,10 @@ "544a3f024bdc2d1d388b4568 Name": "ELCAN Specter OS4x lunetă de asalt", "544a3f024bdc2d1d388b4568 ShortName": "OS4x", "544a3f024bdc2d1d388b4568 Description": "Luneta Specter OS4x produsă de ELCAN este proiectată pentru arme de calibru 5.56 NATO (M4, SA80, C7). Are un grosisment fix de 4x și un câmp vizual de 6 grade.", - "544a5caa4bdc2d1a388b4568 Name": "Sistem tactic cu plăci Crye Precision AVS (Ranger Green)", + "544a5caa4bdc2d1a388b4568 Name": "Sistem tactic Crye Precision AVS", "544a5caa4bdc2d1a388b4568 ShortName": "AVS", "544a5caa4bdc2d1a388b4568 Description": "Sistemul tactic Crye Precision AVS este echipat cu plăci de blindaj ușor din materiale combinate (clasa 4 de protecție GOST). Este o vestă comodă, una dintre cele mai confortabile de purtat.", - "544a5cde4bdc2d39388b456b Name": "Rucsac Flyye MBSS (UCP)", + "544a5cde4bdc2d39388b456b Name": "Rucsac Flyye MBSS", "544a5cde4bdc2d39388b456b ShortName": "MBSS", "544a5cde4bdc2d39388b456b Description": "Rucsac extra rezistent fabricat din fibre Cordura 1000D cu buzunar separat pentru rezervor de apă și sistem de prindere MOLLE pe laterale.", "544fb25a4bdc2dfb738b4567 Name": "Pansament steril", @@ -209,12 +209,12 @@ "54527ac44bdc2d36668b4567 Name": "5.56x45mm M855A1", "54527ac44bdc2d36668b4567 ShortName": "M855A1", "54527ac44bdc2d36668b4567 Description": "5.56x45mm NATO M855A1 este un cartuș cu glonț de 4 grame penetrant cu vârf penetrant din oțel peste un miez de aliaj din cupru cu semi-cămașă de cupru și tubul de alamă. Acest cartuș a fost dezvoltat pentru a îmbunătății capacitatea de penetrare a calibrului 5.56x45mm NATO folosit de Armata SUA. Este capabil să penetreze protecții balistice simple și intermediare, dar are totuși o șansă crescută de a ricoșa din diferite suprafețe.", - "545cdae64bdc2d39198b4568 Name": "Camelbak Tri-Zip rucsac tactic (Foliage)", + "545cdae64bdc2d39198b4568 Name": "Camelbak Tri-Zip rucsac tactic", "545cdae64bdc2d39198b4568 ShortName": "Tri-Zip", "545cdae64bdc2d39198b4568 Description": "Un rucsac mediu de atac versatil. Spațios, robust și confortabil, acest rucsac este iubit atât de militari, cât și de excursioniștii din întreaga lume. Volumul de 34L, sistemul de hidratare, accesul ușor la buzunarele laterale, suspensia perfectă și sistemul de atașamente MOLLE îl fac o alegere excelentă pentru drumeții autonome de până la 72 de ore... sau cu o încărcătură bună de pradă.", - "545cdb794bdc2d3a198b456a Name": "6B43 6 Zabralo-Sh armură (Digital Flora)", - "545cdb794bdc2d3a198b456a ShortName": "6B43", - "545cdb794bdc2d3a198b456a Description": "Vesta antiglonț 6B43 este concepută pentru a proteja împotriva gloanțelor de calibru mic, inclusiv cele penetrante BP si PP, schije de grenade, mine, și arme albe, precum și reducerea riscului de efecte nocive post-penetrare în situațiile de luptă.", + "545cdb794bdc2d3a198b456a Name": "6B43 6A Zabralo-Sh armură", + "545cdb794bdc2d3a198b456a ShortName": "6B43 6A", + "545cdb794bdc2d3a198b456a Description": "Vesta antiglonț 6B43 din clasa de protecție 6A (aproximativ echivalentă cu clasa IIIA) este concepută pentru a proteja împotriva gloanțelor de calibru mic, inclusiv cele penetrante BP si PP, shcije de grenade, mine, și arme albe, precum și reducerea riscului de efecte nocive post-penetrare în situațiile de luptă.", "5485a8684bdc2da71d8b4567 Name": "Muniție", "5485a8684bdc2da71d8b4567 ShortName": "Muniție", "5485a8684bdc2da71d8b4567 Description": "Muniție", @@ -404,7 +404,7 @@ "55d48ebc4bdc2d8c2f8b456c Name": "Delta-Tek Sprut șină pentru pușcă cu pompă", "55d48ebc4bdc2d8c2f8b456c ShortName": "Sprut", "55d48ebc4bdc2d8c2f8b456c Description": "Suportul Delta-Tek Sprut este conceput pentru a fi instalat pe încărcătoarele tip tub ale puștilor cu alice cum ar fi МP-133, МP-153, МP-135, Benelli M2, Winchester 1300 și așa mai departe. Prevăzut cu 3 șine Weaver pentru atașarea dispozitivelor suplimentare.", - "55d4ae6c4bdc2d8b2f8b456e Name": "High Standard M4SS pat AR-15", + "55d4ae6c4bdc2d8b2f8b456e Name": "High Standard M4SS pat", "55d4ae6c4bdc2d8b2f8b456e ShortName": "M4SS", "55d4ae6c4bdc2d8b2f8b456e Description": "Patul telescopic High Standard M4SS este similar cu patul clasic M4A1, cu excepția câtorva detalii de geometrie.", "55d4af3a4bdc2d972f8b456f Name": "AR-15 Leapers UTG Low Profile A2 cătare față", @@ -503,15 +503,15 @@ "5645bcb74bdc2ded0b8b4578 Name": "Căști", "5645bcb74bdc2ded0b8b4578 ShortName": "Articol", "5645bcb74bdc2ded0b8b4578 Description": "Articol", - "5645bcc04bdc2d363b8b4572 Name": "Peltor ComTac 2 căști (OD Green)", + "5645bcc04bdc2d363b8b4572 Name": "Peltor ComTac 2 cască", "5645bcc04bdc2d363b8b4572 ShortName": "ComTac 2", "5645bcc04bdc2d363b8b4572 Description": "ComTac 2 amplifică sunetele joase și oferă protecție împotriva zgomotelor bruște de impulsuri puternice. Rezistent la apă pentru utilizare în aer liber. Produs de Peltor.", - "5648a69d4bdc2ded0b8b457b Name": "BlackRock ham tactic (Gray)", + "5648a69d4bdc2ded0b8b457b Name": "BlackRock ham tactic", "5648a69d4bdc2ded0b8b457b ShortName": "BlackRock", "5648a69d4bdc2ded0b8b457b Description": "Ham tactic artizanal, creat la comandă pentru a putea fi purtat peste armură în timpul operațiunilor din zone urbane. Robust și versatil, prezintă accesorii de tip MOLLE și ALICE.", "5648a7494bdc2d9d488b4583 Name": "PACA Armură Ușoară", "5648a7494bdc2d9d488b4583 ShortName": "PACA", - "5648a7494bdc2d9d488b4583 Description": "Armură de corp ușoară, durabilă și fiabilă, care protejează numai zonele vitale.", + "5648a7494bdc2d9d488b4583 Description": "Armură de corp ușoară, durabilă și fiabilă, care protejează numai zonele vitale, prevăzută cu plăci blindate de clasa a 2-a(standard GOST Rusia).", "5648ac824bdc2ded0b8b457d Name": "AK Zenit RP-1 mâner încărcare", "5648ac824bdc2ded0b8b457d ShortName": "RP-1", "5648ac824bdc2ded0b8b457d Description": "Mâner de încărcare RP-1 fabricat de Zenit fabricat prin frezare dintr-un aliaj de aluminiu de tip D16T învelit într-o manta neagră. Compatibil cu toate modelele bazate pe platforma AK. RP-1 este mai mare și mai confortabil de folosit decât mânerul standard, fiind o îmbunătățire a ergonomiei armei făcând utilizarea mai confortabilă. RP-1 se instalează peste mânerul standard cu ajutorul unui sistem închis de șuruburi. © Zenit", @@ -566,7 +566,7 @@ "5649b2314bdc2d79388b4576 Name": "AKM/AK-74 ME4 adaptor tub tampon", "5649b2314bdc2d79388b4576 ShortName": "ME4", "5649b2314bdc2d79388b4576 Description": "Adaptor pentru instalarea tubului tampon telescopic pe sisteme AK cu paturi fixe.", - "5649be884bdc2d79388b4577 Name": "Colt Carbine tub tampon AR-15", + "5649be884bdc2d79388b4577 Name": "Colt Carbine tub tampon", "5649be884bdc2d79388b4577 ShortName": "Carabină", "5649be884bdc2d79388b4577 Description": "Tubul tampon cu 4 poziții Colt Receiver Extension, cu diametru Mil-Spec se potrivește pe orice pușcă sau carabină construită pe platforma AR-15.", "5649d9a14bdc2d79388b4580 Name": "AK Taktika Tula TT01 șină înălțător", @@ -770,7 +770,7 @@ "56eabcd4d2720b66698b4574 Name": "AR-15 Daniel Defense MK12 tub gaze profil redus", "56eabcd4d2720b66698b4574 ShortName": "MK12", "56eabcd4d2720b66698b4574 Description": "Tub de gaze pentru pușca cu destinație specială MK12, poate fi instalat pe aproape orice țeavă compatibilă cu platforma AR-15. Fabricat de Daniel Defense.", - "56eabf3bd2720b75698b4569 Name": "Magpul MOE Carbine pat AR-15 (Negru)", + "56eabf3bd2720b75698b4569 Name": "Magpul MOE Carbine pat (Negru)", "56eabf3bd2720b75698b4569 ShortName": "MOE", "56eabf3bd2720b75698b4569 Description": "Pat înlocuitor pentru carabinele AR-15/M16 fabricat de Magpul Original Equipment. Utilizat pe tuburile tampon dimensiune Mil-Spec. Profilul cadrului nu permite manetei de încărcare să se agațe și nici să se activeze accidental. Prevăzut din fabrică cu sprijin-umăr de 0.3 țoli care previne alunecarea chiar și atunci când operatorul este echipat cu armură sau echipament modular. Versiunea pe negru.", "570fd6c2d2720bc6458b457f Name": "EOTech 553 colimator holografic", @@ -1109,7 +1109,7 @@ "57486e672459770abd687134 Name": "OKP-7 colimator reflex (coadă de porumbel)", "57486e672459770abd687134 ShortName": "OKP-7 CR", "57486e672459770abd687134 Description": "Modelul original al colimatoarelor OKP permite tragerea din poziții instabile în împrejurări care se afla în continuă schimbare, reduce oboseala operatorului și, dacă este necesar, permite nestingherit utilizarea cătărilor de bază. Caracteristica cheie a acestui vizor este un adaos reflectorizant fără ramă care nu blocheaza nici o secțiune din câmpul de tragere; în schimb, reflectorul este protejat de un vizor subțire și durabil care este aproape insesizabil în momentul tragerii. Această variantă se instalează pe montajul tip coadă de rândunică.", - "574d967124597745970e7c94 Name": "Carabină TOZ Simonov SKS 7.62x39", + "574d967124597745970e7c94 Name": "Simonov SKS 7.62x39 carabină", "574d967124597745970e7c94 ShortName": "SKS", "574d967124597745970e7c94 Description": "Carabina sovietică semiautomată concepută de Sergei Simonov pentru cartușele 7.62x39 cunoscută în străinătate ca și SKS-45. Extrem de populara atât în țările CIS cât și în Occident, această armă este încă utilizată în unele tari în forma de copii si modificări variate. Acest model anume provine din depozitele Uzinei de Armament TULA și înca nu a urmat procedura de adaptare pentru uz civil.", "574dad8024597745964bf05c Name": "SKS TOZ pat lemn (56-A-231 Sb.5)", @@ -1163,9 +1163,9 @@ "5755383e24597772cb798966 Name": "Vaselină balsam", "5755383e24597772cb798966 ShortName": "Vaselină", "5755383e24597772cb798966 Description": "Vaselina este un unguent versatil folosit pentru o serie de scopuri în care proprietățile de izolare anti-apă si lubrifiere sunt necesare, de exemplu, tratarea unor mici tăieturi și arsuri, ungerea obiectelor predispuse la coroziune, sau lubrifierea uneltelor care necesită lubrifianţi non-acizi.", - "576165642459773c7a400233 Name": "Saiga cal 12 ver.10 12/76 pușcă de vânătoare semiautomată", - "576165642459773c7a400233 ShortName": "Saiga-12K", - "576165642459773c7a400233 Description": "Pușcă de vânătoare calibrul 12 semi-automată cu pat pliabil prevăzut cu mecanism de siguranță care nu permite tragerea cu patul în poziția pliată. Are țeavă scurtă de 430mm.", + "576165642459773c7a400233 Name": "Saiga cal 12 ver.10 12/76 pușcă de vânătoare", + "576165642459773c7a400233 ShortName": "Saiga-12 v.10", + "576165642459773c7a400233 Description": "Pușcă de vânătoare calibrul 12 semi-automată cu pat pliabil, prevăzută cu mecanism de siguranță care nu permite foc cu patul în poziția pliată. Are țeavă scurtă de 430mm.", "576167ab2459773cad038c43 Name": "SOK-12 tub protecție filet", "576167ab2459773cad038c43 ShortName": "SOK-12 fil.", "576167ab2459773cad038c43 Description": "Tub standard de protecție filet pentru SOK-12.", @@ -1334,9 +1334,9 @@ "57acb6222459771ec34b5cb0 Name": "VOMZ Pilad 043-02 șină coadă-de-rândunică", "57acb6222459771ec34b5cb0 ShortName": "043-02 CR", "57acb6222459771ec34b5cb0 Description": "Suport adaptor din aluminiu ce oferă o șină de montaj Picatinny pentru instalarea de lunete si accesorii tactice.", - "57ade1442459771557167e15 Name": "Pat Armacon Baskak", + "57ade1442459771557167e15 Name": "Armacon Baskak pat", "57ade1442459771557167e15 ShortName": "Baskak", - "57ade1442459771557167e15 Description": "Pat tubular ușor produs în Rusia cu un design simplist pentru sistemele AK. Poate fi instalat utilizând un adaptor pat-cutie Mil-Spec sau Com-Spec M/AR.", + "57ade1442459771557167e15 Description": "Pat tubular ușor produs în Rusia cu un design simplist pentru sistemele AK. Poate fi instalat utilizând un adaptor pat-cutie Mil-Spec sau Com-Spec M/AR. Nu este compatibil cu sistemele AR.", "57adff4f24597737f373b6e6 Name": "SIG Sauer BRAVO4 lunetă 4x30", "57adff4f24597737f373b6e6 ShortName": "BRAVO4", "57adff4f24597737f373b6e6 Description": "Conceputa de Sig Sauer, luneta Bravo4 4x30 are o raza de viziune extinsă, cu 43% mai mare decât orice alt model de lunetă din aceeași gamă. Este prevăzută cu o șină în partea superioară ce oferă posibilitatea de a instala un dispozitiv optic compact de rezervă.", @@ -1553,12 +1553,12 @@ "587df3a12459772c28142567 Name": "SKS 7.62x39 10-cartușe magazie internă", "587df3a12459772c28142567 ShortName": "SKS int.", "587df3a12459772c28142567 Description": "Încărcător standard 10 cartușe 7.62x39 pentru carabina SKS. Încărcătorul este tip magazie internă și nu poate fi detașat fără a desface arma, așa ca nu este recomandat să intrați în raid cu mai multe.", - "587df583245977373c4f1129 Name": "SKS 7.62x39 TAPCO 6610 20-cartușe", - "587df583245977373c4f1129 ShortName": "6610", + "587df583245977373c4f1129 Name": "SKS 7.62x39 ProMag SKS-A5 20-cartușe", + "587df583245977373c4f1129 ShortName": "SKS-A5", "587df583245977373c4f1129 Description": "Încărcător detașabil din polimer de 20 cartușe 7.62x39 pentru SKS.", - "587e02ff24597743df3deaeb Name": "Carabină Molot Arms Simonov OP-SKS 7.62x39", + "587e02ff24597743df3deaeb Name": "Simonov OP-SKS 7.62x39 carabină (Vânătoare)", "587e02ff24597743df3deaeb ShortName": "OP-SKS", - "587e02ff24597743df3deaeb Description": "Carabina OP-SKS Molot este proiectată pentru calibrul 7,62 ×39, cea mai raspândită muniţie. Greutatea și dimensiunile fac din această armă o carabină ergonomică pentru trăgători de orice vârstă şi înălţime. A fost folosita pentru toate tipurile de vânat din Rusia de mai bine de 50 de ani. Testată pe animalele de pradă din Africa, Asia de Sud-Est, America centrala, Orientul Mijlociu.", + "587e02ff24597743df3deaeb Description": "Carabina OP-SKS Molot este proiectată pentru calibrul 7,62 ×39, cea mai raspândit muniţie. Greutatea și dimensiunile fac din această armă o carabină ergonomică pentru trăgători de orice vârstă şi înălţime. A fost folosita pentru toate tipurile de vânat din Rusia de mai bine de 50 de ani. Testată pe animalele de pradă din Africa, Asia de Sud-Est, America centrala, Orientul Mijlociu.", "587e0531245977466077a0f7 Name": "OP-SKS pat lemn", "587e0531245977466077a0f7 ShortName": "OP-SKS Lemn", "587e0531245977466077a0f7 Description": "Pat din lemn standard pentru carabina OP-SKS, fabricat de Molot Arms.", @@ -1628,7 +1628,7 @@ "58889c7324597754281f9439 Name": "DVL-10 7.62x51 dispozitiv țeavă", "58889c7324597754281f9439 ShortName": "DVL-10 MD", "58889c7324597754281f9439 Description": "Atenuator de recul standard pentru pușca cu lunetă DVL-10, produs de Lobaev Arms.", - "58889d0c2459775bc215d981 Name": "Pat DVL-10 Lobaev Arms", + "58889d0c2459775bc215d981 Name": "Lobaev Arms pat", "58889d0c2459775bc215d981 ShortName": "Lobaev", "58889d0c2459775bc215d981 Description": "Pat standard universal pentru puști cu lunetă fabricate de Lobaev Arms.", "588b56d02459771481110ae2 Name": "AR-15 Daniel Defense RIS II 9.5 uluc (Negru)", @@ -1676,7 +1676,7 @@ "58a5c12e86f7745d585a2b9e Name": "MPX GEN1 șină 4 țoli", "58a5c12e86f7745d585a2b9e ShortName": "MPX 4\"", "58a5c12e86f7745d585a2b9e Description": "Adaptor șină de 4 țoli SIG Sauer GEN1 care permite instalarea echipamentelor adiționale pe mânerul uluc din prima generație SIG MPX.", - "58ac1bf086f77420ed183f9f Name": "Adaptor pat telescopic MPX/MCX", + "58ac1bf086f77420ed183f9f Name": "MPX/MCX adaptor pat telescopic", "58ac1bf086f77420ed183f9f ShortName": "MPX/MCX", "58ac1bf086f77420ed183f9f Description": "Adaptor pentru atașarea patului cu tub telescopic pe șină, fabricat de SIG Sauer.", "58ac60eb86f77401897560ff Name": "Balaclava_dev", @@ -1691,9 +1691,9 @@ "58c157be86f77403c74b2bb6 Name": "TangoDown Stubby BGV-MK46K mâner vertical (FDE)", "58c157be86f77403c74b2bb6 ShortName": "BGV-MK46K FDE", "58c157be86f77403c74b2bb6 Description": "Tango Down Stubby BGV-MK46K este un mâner tactic scurt ideal pentru arme adaptate pentru lupta în spații foarte restrânse și restrânse. Ideal pentru puști lise de asalt. Conține un compartiment pentru baterii, sau piese de schimb, unelte și accesorii. Versiunea FDE - Pământiu Mat Închis.", - "58c157c886f774032749fb06 Name": "TangoDown Stubby BGV-MK46K mâner vertical(Stealth Gray)", + "58c157c886f774032749fb06 Name": "TangoDown Stubby BGV-MK46K mâner față (Stealth Gray)", "58c157c886f774032749fb06 ShortName": "BGV-MK46K SG", - "58c157c886f774032749fb06 Description": "Tango Down Stubby BGV-MK46K este un mâner tactic scurt ideal pentru arme adaptate pentru lupta în spații foarte restrânse și restrânse. Ideal pentru puști lise. Conține un compartiment pentru baterii, sau piese de schimb, unelte și accesorii. Versiunea Stealth Gray.", + "58c157c886f774032749fb06 Description": "Tango Down Stubby BGV-MK46K este un mâner tactic scurt ideal pentru arme adaptate pentru lupta în spații foarte restrânse și restrânse. Ideal pentru puști lise de asalt. Conține un compartiment pentru baterii, sau piese de schimb, unelte și accesorii. Versiunea Stealth Gray.", "58d2664f86f7747fec5834f6 Name": "DeltaPoint Cross Slot suport montaj", "58d2664f86f7747fec5834f6 ShortName": "DPCSM", "58d2664f86f7747fec5834f6 Description": "Suport universal pentru montarea colimatoarelor compacte Leupold DeltaPoint pe șină tip Weaver.", @@ -1703,16 +1703,16 @@ "58d2912286f7744e27117493 Name": "Magpul MOE Carbine sprijin cauciuc", "58d2912286f7744e27117493 ShortName": "MOE RBP", "58d2912286f7744e27117493 Description": "Protecție cauciucată standard Magpul pentru paturi de carabine MOE. Poate fi instalată și pe alte modele din această gamă de arme.", - "58d2946386f774496974c37e Name": "Pat Magpul MOE Carbine (FDE)", + "58d2946386f774496974c37e Name": "Magpul MOE Carbine pat (FDE)", "58d2946386f774496974c37e ShortName": "MOE FDE", "58d2946386f774496974c37e Description": "Pat înlocuitor pentru carabinele AR-15/M16 fabricat de Magpul Original Equipment. Utilizat pe tuburile tampon dimensiune Mil-Spec. Profilul cadrului nu permite manetei de încărcare să se agațe și nici să se activeze accidental. Prevăzut din fabrică cu sprijin-umăr de 0.3 țoli care previne alunecarea chiar și atunci când operatorul este echipat cu armură sau echipament modular. Versiunea FDE - Pământiu Mat Închis.", - "58d2946c86f7744e271174b5 Name": "Pat Magpul MOE Carbine (Verde Frunziș)", + "58d2946c86f7744e271174b5 Name": "Magpul MOE Carbine pat (Verde Frunziș)", "58d2946c86f7744e271174b5 ShortName": "MOE FG", "58d2946c86f7744e271174b5 Description": "Pat înlocuitor pentru carabinele AR-15/M16 fabricat de Magpul Original Equipment. Utilizat pe tuburile tampon dimensiune Mil-Spec. Profilul cadrului nu permite manetei de încărcare să se agațe și nici să se activeze accidental. Prevăzut din fabrică cu sprijin-umăr de 0.3 țoli care previne alunecarea chiar și atunci când operatorul este echipat cu armură sau echipament modular. Versiunea Verde Frunziș.", - "58d2947686f774485c6a1ee5 Name": "Pat Magpul MOE Carbine (Măsliniu)", + "58d2947686f774485c6a1ee5 Name": "Magpul MOE Carbine pat (Măsliniu)", "58d2947686f774485c6a1ee5 ShortName": "MOE OD", "58d2947686f774485c6a1ee5 Description": "Pat înlocuitor pentru carabinele AR-15/M16 fabricat de Magpul Original Equipment. Utilizat pe tuburile tampon dimensiune Mil-Spec. Profilul cadrului nu permite manetei de încărcare să se agațe și nici să se activeze accidental. Prevăzut din fabrică cu sprijin-umăr de 0.3 țoli care previne alunecarea chiar și atunci când operatorul este echipat cu armură sau echipament modular. Versiunea kaki (OD).", - "58d2947e86f77447aa070d53 Name": "Pat Magpul MOE Carbine (Stealth Gray)", + "58d2947e86f77447aa070d53 Name": "Magpul MOE Carbine pat (Stealth Gray)", "58d2947e86f77447aa070d53 ShortName": "MOE SG", "58d2947e86f77447aa070d53 Description": "Pat înlocuitor pentru carabinele AR-15/M16 fabricat de Magpul Original Equipment. Utilizat pe tuburile tampon dimensiune Mil-Spec. Profilul cadrului nu permite manetei de încărcare să se agațe și nici să se activeze accidental. Prevăzut din fabrică cu sprijin-umăr de 0.3 țoli care previne alunecarea chiar și atunci când operatorul este echipat cu armură sau echipament modular. Versiunea Stealth Gray.", "58d399e486f77442e0016fe7 Name": "Colimator reflex Aimpoint Micro T-1", @@ -1943,10 +1943,10 @@ "591ae8f986f77406f854be45 Name": "Yotota cheie", "591ae8f986f77406f854be45 ShortName": "Yotota", "591ae8f986f77406f854be45 Description": "Cheie de Yotota cu închidere la buton.", - "591aef7986f774139d495f03 Name": "Pat TROY M7A1 PDW (Negru)", + "591aef7986f774139d495f03 Name": "TROY M7A1 PDW pat (Negru)", "591aef7986f774139d495f03 ShortName": "M7A1PDW", "591aef7986f774139d495f03 Description": "TROY M7A1 PDW Stock kit este un pat retractabil produs pentru a îmbunătății carabinele 5.56, făcându-le mai compacte, cu 3 țoli mai scurte decât paturile tradiționale de carabină. Reduce dimensiunea armei și tubul tampon. Versiunea pe negru.", - "591af10186f774139d495f0e Name": "Pat TROY M7A1 PDW (FDE)", + "591af10186f774139d495f0e Name": "TROY M7A1 PDW pat (FDE)", "591af10186f774139d495f0e ShortName": "M7A1PDW", "591af10186f774139d495f0e Description": "TROY M7A1 PDW Stock kit este un pat retractabil produs pentru a îmbunătății carabinele 5.56, făcându-le mai compacte, cu 3 țoli mai scurte decât paturile tradiționale de carabină. Reduce dimensiunea armei și tubul tampon. Versiunea FDE - Pământiu Mat Închis.", "591af28e86f77414a27a9e1d Name": "Viking Tactics UVG mâner tactic", @@ -2003,10 +2003,10 @@ "5926f34786f77469195bfe92 Name": "HK MP5SD uluc polimer", "5926f34786f77469195bfe92 ShortName": "MP5SD UP", "5926f34786f77469195bfe92 Description": "Uluc din polimer pentru pistol-mitralieră MP5SD, fabricat de Heckler & Koch.", - "5929a2a086f7744f4b234d43 Name": "Ham tactic UMTBS 6sh112 Scout-Sniper (Digital Flora)", + "5929a2a086f7744f4b234d43 Name": "UMTBS 6sh112 Scout-Sniper", "5929a2a086f7744f4b234d43 ShortName": "6sh112 S-S", "5929a2a086f7744f4b234d43 Description": "Universal Modular transport-combat system (UMTBS) \"Scout-sniper\" face parte din echipamentul forțelor armate ale Federației Ruse. Vesta este concepută cu variante modulare ce pot fi adaptate misiunilor specifice de luptă. Sistemul include baza hamului cu saci și buzunare cu diferite destinații. Din cauză că vesta e bazată pe sistemul MOLLE, poate fi folosită și cu buzunare adiționale în afară de cele incluse în kit. Sistemul de curele are zone de întindere, iar interiorul este făcut din material care respiră.", - "592c2d1a86f7746dbe2af32a Name": "Ham tactic ANA Tactical Alpha (Olive Drab)", + "592c2d1a86f7746dbe2af32a Name": "ANA Tactical Alpha ham tactic", "592c2d1a86f7746dbe2af32a ShortName": "Alpha", "592c2d1a86f7746dbe2af32a Description": "Ham de calitate \"Alpha\". Satisface pe deplin standardele militare de fiabilitate și funcționalitate. Combinația de buzunare integrate cu prinderile MOLLE oferă mijlocul pentru a transporta un număr mare de echipamente necesare. Vesta este concepută ca un ham tactic clasic. În acest tip de ham tot echipamentul se află în părțile din față și laterale, în timp ce în partea din spate se află curelele și centurile ajustabile.", "5937ee6486f77408994ba448 Name": "Cheie camion", @@ -2090,16 +2090,16 @@ "5943eeeb86f77412d6384f6b Name": "AK-74 PWS CQB 74 5.45x39 atenuator", "5943eeeb86f77412d6384f6b ShortName": "PWS CQB 74", "5943eeeb86f77412d6384f6b Description": "Atenuatorul de recul PWS CQB 74 5.45x39mm este conceput special pentru arme compacte și utilizare în spații restrânse Această versiune este destinată pentru arme din seria AK.", - "5947c73886f7747701588af5 Name": "Pat AR-15 MFT BUS", + "5947c73886f7747701588af5 Name": "MFT BUS pat", "5947c73886f7747701588af5 ShortName": "BUS", "5947c73886f7747701588af5 Description": "BATTLELINK Utility Stock pat din polimer fabricat de Mission First Tactical. Poate fi adaptat și modificat în funcție de mediul de utilizare și necesitățile operaționale. Prevăzut cu compartiment pentru stocarea uneltelor și dispozitivelor și capacitatea de utilizare a șinelor specializate.", "5947db3f86f77447880cf76f Name": "Axion Kobra EKP-8-02 colimator reflex (coadă-de-rândunică)", "5947db3f86f77447880cf76f ShortName": "EKP-8-02 CR", "5947db3f86f77447880cf76f Description": "Kobra e o serie de colimatoare foarte populară printre agențiile de pază si trăgători civili. A fost concepută pentru forțele armate din Federația Rusă, dar nu a fost niciodată adoptată. Această versiune este destinată instalării pe o șină tip coadă-de-rândunică. Fabricat de Axion.", - "5947e98b86f774778f1448bc Name": "Pat Magpul UBR GEN2 (Negru)", + "5947e98b86f774778f1448bc Name": "Magpul UBR GEN2 pat (Negru)", "5947e98b86f774778f1448bc ShortName": "UBR GEN2", "5947e98b86f774778f1448bc Description": "Pat telescopic UBR GEN2 fabricat de Magpul. Versiunea pe neagră.", - "5947eab886f77475961d96c5 Name": "Pat Magpul UBR GEN2 (FDE)", + "5947eab886f77475961d96c5 Name": "Magpul UBR GEN2 pat (FDE)", "5947eab886f77475961d96c5 ShortName": "UBR GEN2", "5947eab886f77475961d96c5 Description": "Pat telescopic UBR GEN2 fabricat de Magpul. Versiunea FDE - Pământiu Mat Închis.", "5947f92f86f77427344a76b1 Name": "AK TAPCO SAW-Style mâner pistol (Negru)", @@ -2312,10 +2312,10 @@ "59e5d83b86f7745aed03d262 Name": "AK 7.62x39 10-cartușe tablă ondulată", "59e5d83b86f7745aed03d262 ShortName": "AK ondulat", "59e5d83b86f7745aed03d262 Description": "Încărcător 10 cartușe 7.62x39mm din tablă ondulată tăiată la dimensiune pentru sisteme AK. Făcut prin tăierea unui încărcător standard pentru a se conforma cu legile Federației Ruse pentru a putea fi utilizat cu armele de foc civile. De asemenea poate fi folosit cu muniție de tip .366 TKM corespunzătoare a sistemelor de arme compatibile AK.", - "59e5f5a486f7746c530b3ce2 Name": "Încărcător AK 7.62x39 Molot Arms 40-cartușe (6P2.Sb-11)", + "59e5f5a486f7746c530b3ce2 Name": "AK 7.62x39 Molot 40-cartușe încărcător (6P2.Sb-11)", "59e5f5a486f7746c530b3ce2 ShortName": "6P2 Sb-11", "59e5f5a486f7746c530b3ce2 Description": "6P2 Sb-11 încărcător standard 40-cartușe 7.62x39 pentru mitraliera RPK începând cu anul 1961, se potrivește pe orice armă AK compatibilă. Poate fi încărcat de asemenea cu muniție .366 TKM pentru armele AK de calibrul respectiv.", - "59e6152586f77473dc057aa1 Name": "Carabină Molot Arms VPO-136 \"Vepr-KM\" 7.62x39", + "59e6152586f77473dc057aa1 Name": "Molot VPO-136 \"Vepr-KM\" 7.62x39 carabină", "59e6152586f77473dc057aa1 ShortName": "VPO-136 \"Vepr-KM\"", "59e6152586f77473dc057aa1 Description": "Molot Vepr-KM/VPO-136 carabină bazată pe platforma Kalashnikov (AKM) și este identică cu acesta în aparență, greutate și dimensiuni. A fost concepută pentru vânători profesioniști și amatori pentru vânat mediu și mare, dar și pentru utilizare în competiții sportive.", "59e61eb386f77440d64f5daf Name": "VPO-136 \"Vepr-KM\" 7.62x39 atenuator-compensator", @@ -2333,10 +2333,10 @@ "59e6318286f77444dd62c4cc Name": "AK mâner pistol bachelită", "59e6318286f77444dd62c4cc ShortName": "Molot bak.", "59e6318286f77444dd62c4cc Description": "Mâner pistol din bachelită pentru puștile de asalt din seria AK și sisteme compatibile, fabricat de Molot Arms.", - "59e6449086f7746c9f75e822 Name": "Molot Arms capac închizător tip AKM", + "59e6449086f7746c9f75e822 Name": "Molot capac închizător tip AKM", "59e6449086f7746c9f75e822 ShortName": "Molot", "59e6449086f7746c9f75e822 Description": "Capac închizător standard pentru carabinele Vepr tip AKM, fabricat de Molot Arms.", - "59e649f986f77411d949b246 Name": "Molot Arms tub de gaze tip AKM", + "59e649f986f77411d949b246 Name": "Molot tub de gaze tip AKM", "59e649f986f77411d949b246 ShortName": "Molot gaze", "59e649f986f77411d949b246 Description": "Tub de gaze pentru pușca automată AKM și carabina Vepr, fabricat de Molot Arms. Tubul canalizează gazele în direcția de mișcare a pistonului.", "59e6542b86f77411dc52a77a Name": ".366 TKM FMJ", @@ -2375,7 +2375,7 @@ "59e763f286f7742ee57895da Name": "Pilgrim rucsac turistic", "59e763f286f7742ee57895da ShortName": "Pelerin", "59e763f286f7742ee57895da Description": "Rucsac turistic mare și încăpător colorat strident, perfect pentru un turist în raid.", - "59e7643b86f7742cbf2c109a Name": "Ham Tactic WARTECH TV-109 + TV-106 (A-TACS FG)", + "59e7643b86f7742cbf2c109a Name": "WARTECH TV-109 + TV-106 ham tactic", "59e7643b86f7742cbf2c109a ShortName": "TV-106 + TV-109", "59e7643b86f7742cbf2c109a Description": "WARTECH sistem de ham format din TV-106 Battle Belt și sistemul de centuri grele TV-109. Curelele de umăr sunt prevăzute cu spumă și cu legături MOLLE, iar TV-109 combinat cu TV-106 oferă un ham tactic complet.", "59e7708286f7742cbd762753 Name": "Ushanka cușmă", @@ -2507,7 +2507,7 @@ "5a0abb6e1526d8000a025282 Name": "AK 7.62x39 Taktika Tula adaptor țeavă", "5a0abb6e1526d8000a025282 ShortName": "TT AK", "5a0abb6e1526d8000a025282 Description": "Taktika Tula adaptor de țeavă. Oferă un mijloc prin care se pot monta dispozitive moderne pentru țeava pe AK și AKM.", - "5a0c27731526d80618476ac4 Name": "Zarya grenadă paralizantă", + "5a0c27731526d80618476ac4 Name": "\"Zarya\" grenadă paralizantă", "5a0c27731526d80618476ac4 ShortName": "Zarya", "5a0c27731526d80618476ac4 Description": "Concepută pentru a suprima stabilitate mentală prin crearea bruscă a unui zgomot și a unei lumini puternice. Utilizat în operațiuni speciale pentru prinderea infractorilor și de suprimare a violențelor.", "5a0c59791526d8dba737bba7 Name": "AK GP-25 sprijin-umăr din kit de accesorii", @@ -2675,7 +2675,7 @@ "5a16b8a9fcdbcb00165aa6ca Name": "Norotos Titanium Advanced Tactical Mount", "5a16b8a9fcdbcb00165aa6ca ShortName": "TATM", "5a16b8a9fcdbcb00165aa6ca Description": "Suport de titan ușor pentru instalarea conectorului Shroud pe cască. Este necesar pentru instalarea vederilor de noapte sau a altor aparate optice.", - "5a16b93dfcdbcbcae6687261 Name": "AN/PVS-14 Norotos șină dublă coadă-de-rândunică", + "5a16b93dfcdbcbcae6687261 Name": "AN/PVS-14 șină dublă coadă-de-rândunică", "5a16b93dfcdbcbcae6687261 ShortName": "SDCR", "5a16b93dfcdbcbcae6687261 Description": "Braț cu șină interfață coadă de rândunică dublă pentru dispozitivul monocular de viziune pe timp de noapte AN/PVS-14.", "5a16b9fffcdbcb0176308b34 Name": "Ops-Core FAST RAC Headset", @@ -2689,7 +2689,7 @@ "5a16badafcdbcb001865f72d Description": "Modul blindat adițional pentru casca Ops-Core FAST, care protejează urechile de șrapnel și ricoșeuri de calibru mic.", "5a16bb52fcdbcb001a3b00dc Name": "Wilcox Skull Lock montură de cap", "5a16bb52fcdbcb001a3b00dc ShortName": "Skull Lock", - "5a16bb52fcdbcb001a3b00dc Description": "Suportul pentru cap Skull Lock Head Mount-Lite este un sistem de fixare ușor, cu profil redus, pentru vedere de noapte sau alte instrumente optice, fabricat complet din textile, prezintă confort sporit și versatilitate în utilizare și depozitare. Sistemul permite montarea mai multor atașamente fără a fi necesară utilizarea unei caști balistice grele.", + "5a16bb52fcdbcb001a3b00dc Description": "Suportul pentru cap Wilcox Skull Lock este un sistem de fixare ușor, pentru vedere de noapte sau alte instrumente optice, fabricat complet din textile, prezintă confort sporit și versatilitate în utilizare și depozitare. Sistemul permite montarea mai multor atașamente fără a fi necesară utilizarea unei caști balistice grele.", "5a17f98cfcdbcb0980087290 Name": "Stechkin APS 9x18PM pistol automat", "5a17f98cfcdbcb0980087290 ShortName": "APS", "5a17f98cfcdbcb0980087290 Description": "APS (Avtomatícheskiy Pistolét Stéchkina - \"Stechkin Automatic Pistol\", GAU Index - 56-A-126) este un pistol automat Sovietic de calibru 9x18 PM, dezvoltat la sfârșitul anilor 40 de către Igor Stechkin. APS este conceput pentru înarmarea ofițerilor implicați direct în teatrele de operațiuni, dar și pentru soldații și subofițerii unor unități speciale.", @@ -2783,7 +2783,7 @@ "5a33ca0fc4a282000d72292f Name": "AR-15 Colt A2 tub tampon", "5a33ca0fc4a282000d72292f ShortName": "Colt A2", "5a33ca0fc4a282000d72292f Description": "Tubul tampon Colt Receiver Extension, cu diametru Mil-Spec se potrivește pe orice pușcă sau carabină AR-15.", - "5a33cae9c4a28232980eb086 Name": "Pat AR-15 Magpul PRS GEN2 (FDE)", + "5a33cae9c4a28232980eb086 Name": "Magpul PRS GEN2 pat (FDE)", "5a33cae9c4a28232980eb086 ShortName": "PRS GEN2", "5a33cae9c4a28232980eb086 Description": "Pat PRS GEN2 fabricat de Magpul. Versiunea FDE - Pământiu Mat Închis.", "5a33e75ac4a2826c6e06d759 Name": "AR-15 Hera Arms CQR mâner pistol/pat armă", @@ -2900,7 +2900,7 @@ "5a6f5d528dc32e00094b97d9 Name": "Glock cătare spate", "5a6f5d528dc32e00094b97d9 ShortName": "Glock CS", "5a6f5d528dc32e00094b97d9 Description": "Cătare spate standard pentru pistolul Glock.", - "5a6f5e048dc32e00094b97da Name": "Manșon Glock 17", + "5a6f5e048dc32e00094b97da Name": "Glock 17 9x19 manșon", "5a6f5e048dc32e00094b97da ShortName": "G17", "5a6f5e048dc32e00094b97da Description": "Manșon standard pentru pistoalele Glock 17 9x19.", "5a6f5f078dc32e00094b97dd Name": "Glock Viper Cut manșon", @@ -3038,10 +3038,10 @@ "5a7c147ce899ef00150bd8b8 Name": "AR-15 Vendetta Precision VP-09 Interceptor 5.56x45 atenuator", "5a7c147ce899ef00150bd8b8 ShortName": "VP-09", "5a7c147ce899ef00150bd8b8 Description": "Atenuator de recul produs de Vendetta Precision special pentru piața civilă. Fabricat din titan rezistent la coroziune și protejat de un înveliș Altin PVD. VP-09 Interceptor este combinația perfectă dintre aspect și fiabilitate.", - "5a7c4850e899ef00150be885 Name": "Cască 6B47 Ratnik-BȘ (Olive Drab)", + "5a7c4850e899ef00150be885 Name": "6B47 Ratnik-BSh cască", "5a7c4850e899ef00150be885 ShortName": "6B47", "5a7c4850e899ef00150be885 Description": "6B47 este o cască din aramidă de origine Rusească. Dezvoltată în programul Ratnik, ea este acum în echipamentul standard al forțelor armate din Federația Rusă. 6B47 este similară cu generațiile anterioare, cum ar fi 6B7-1M și 6B27. Are protecție similară dar cântărește mai puțin, plutește în apă, și are suport pentru montajul echipamentelor, frontalelor, și dispozitivelor de vedere pe timp de noapte. Casca poate fi modificată cu o varietate de învelișuri pentru camuflaj în diferite medii.", - "5a7c74b3e899ef0014332c29 Name": "NSPU-M 3.5x vizor de noapte coadă-de-rândunică", + "5a7c74b3e899ef0014332c29 Name": "NSPU-M vizor de noapte", "5a7c74b3e899ef0014332c29 ShortName": "NSPU-M", "5a7c74b3e899ef0014332c29 Description": "NSPU-M (Nochnoy Strelkovyy Pritsel Unifitsirovannyy Modernizirovannyy - \"Night Rifle Scope Unified Modernized\"), GRAU Index - 1PN58. Un vizor vechi pentru timp de noapte de pe seria de puști AK, cu montaj pe șină coadă-de-rândunică.", "5a7d90eb159bd400165484f1 Name": "Glock Dead Ringer Snake Eye cătare față", @@ -3080,7 +3080,7 @@ "5a966f51a2750c00156aacf6 Name": "SOK-12 12/76 SAI-02 10-cartușe", "5a966f51a2750c00156aacf6 ShortName": "SAI-02", "5a966f51a2750c00156aacf6 Description": "Încărcător SAI-02 din polimer cu capacitatea de 10 cartușe 12x76 sau 12x70 pentru arme compatibile cu SOK-12. Produs de ProMag.", - "5a9685b1a2750c0032157104 Name": "Manșon Glock Moto Cut", + "5a9685b1a2750c0032157104 Name": "Glock 9x19 Moto Cut manșon", "5a9685b1a2750c0032157104 ShortName": "G MotoCut", "5a9685b1a2750c0032157104 Description": "Manșon ușor pentru pistoalele Glock 9x19.", "5a9d56c8a2750c0032157146 Name": "AK Strike Industries TRAX 1 uluc", @@ -3104,7 +3104,7 @@ "5a9ea27ca2750c00137fa672 Name": "AK Spikes Tactical Dynacomp 7.62x39 atenuator-compensator", "5a9ea27ca2750c00137fa672 ShortName": "Dynacomp AK", "5a9ea27ca2750c00137fa672 Description": "Dynacomp atenuator de recul și compensator este conceput pentru montajul pe sistemele AK de calibrul 7.62x39mm. Reduce reculul și împiedică urcarea țevii. Fabricat de Spikes Tactical.", - "5a9eb32da2750c00171b3f9c Name": "Pat AR-15 FAB Defense GL-SHOCK", + "5a9eb32da2750c00171b3f9c Name": "FAB Defense GL-SHOCK pat", "5a9eb32da2750c00171b3f9c ShortName": "GL-SHOCK", "5a9eb32da2750c00171b3f9c Description": "Kit de pat telescopic cu obrăzar ajustabil, fabricat de FAB Defense.", "5a9fb739a2750c003215717f Name": "Rotor 43 9x19 atenuator-compensator", @@ -3122,12 +3122,12 @@ "5a9fc7e6a2750c0032157184 Name": "VSS/VAL Zenit B-3 șină combo", "5a9fc7e6a2750c0032157184 ShortName": "B-3", "5a9fc7e6a2750c0032157184 Description": "B-3 suport combo este un inel cu șină fixat pe amortizorul de la VSS sau VAL cu o șină Picatinny pentru instalarea de echipament adițional. Fabricat de Zenit.", - "5aa2a7e8e5b5b00016327c16 Name": "USEC șapcă baseball (Coyote)", + "5aa2a7e8e5b5b00016327c16 Name": "USEC șapcă baseball (Tan)", "5aa2a7e8e5b5b00016327c16 ShortName": "USEC", - "5aa2a7e8e5b5b00016327c16 Description": "Șapcă de baseball tactică USEC PMC. Versiunea Coyote.", - "5aa2b87de5b5b00016327c25 Name": "BEAR șapcă baseball (Olive Drab)", + "5aa2a7e8e5b5b00016327c16 Description": "Șapcă de baseball tactică USEC PMC. Culoare Tan.", + "5aa2b87de5b5b00016327c25 Name": "BEAR șapcă baseball (Verde)", "5aa2b87de5b5b00016327c25 ShortName": "BEAR", - "5aa2b87de5b5b00016327c25 Description": "Șapcă de baseball tactică BEAR PMC. Versiunea Olive Drab.", + "5aa2b87de5b5b00016327c25 Description": "Șapcă de baseball tactică BEAR PMC. Culoare verde.", "5aa2b89be5b5b0001569311f Name": "EMERCOM chipiu", "5aa2b89be5b5b0001569311f ShortName": "EMERCOM", "5aa2b89be5b5b0001569311f Description": "Chipiu pentru membrii Comitetului de Urgență (EMERCOM al Federației Ruse), în mod normal purtată de unitățile de patrulare.", @@ -3146,7 +3146,7 @@ "5aa2b9ede5b5b000137b758b Name": "Pălărie aproape cowboy", "5aa2b9ede5b5b000137b758b ShortName": "Cowboy", "5aa2b9ede5b5b000137b758b Description": "Yeeeeeeee-haaaaaaaaaaaaw! Sau poate că nu...", - "5aa2ba19e5b5b00014028f4e Name": "Fes tactic din lână (Maro)", + "5aa2ba19e5b5b00014028f4e Name": "Fes tactic lână", "5aa2ba19e5b5b00014028f4e ShortName": "Lână", "5aa2ba19e5b5b00014028f4e Description": "Operează corect doar în căciula tactică de lână. Este tactică.", "5aa2ba46e5b5b000137b758d Name": "UX PRO fes", @@ -3173,7 +3173,7 @@ "5aa7d193e5b5b000171d063f Name": "SSSh-94 SFERA-S cască", "5aa7d193e5b5b000171d063f ShortName": "SFERA-S", "5aa7d193e5b5b000171d063f Description": "SSSh-94 \"SFERA-S\" (\"Special Steel Helmet 94 Sphere-S\") cască specială cu protecție modulară fabricată din oțel blindat gros. Folosită de forțele speciale ale Ministerului Afacerilor Interne al Federației Ruse.", - "5aa7e276e5b5b000171d0647 Name": "Altyn cască blindată (Olive Drab)", + "5aa7e276e5b5b000171d0647 Name": "Altyn cască blindată", "5aa7e276e5b5b000171d0647 ShortName": "Altyn", "5aa7e276e5b5b000171d0647 Description": "\"Altyn\" a trecut testele de luptă reală în Afganistan și Cecenia și este încă în serviciul Ministerului Afacerilor Interne al Federației Ruse și forțele speciale ale armatei. Instalarea unui vizor blindat este posibilă.", "5aa7e373e5b5b000137b76f0 Name": "Altyn vizor blindat", @@ -3233,28 +3233,28 @@ "5ab626e4d8ce87272e4c6e43 Name": "AKS-74 pat metalic sârmă (6P21 Sb.5)", "5ab626e4d8ce87272e4c6e43 ShortName": "6P21 Sb.5", "5ab626e4d8ce87272e4c6e43 Description": "Pat metalic din sârmă pentru pușca automată AKS-74, fabricat de Izhmash.", - "5ab8dab586f77441cd04f2a2 Name": "Ham tactic WARTECH MK3 TV-104 (MultiCam)", + "5ab8dab586f77441cd04f2a2 Name": "WARTECH MK3 TV-104 ham tactic", "5ab8dab586f77441cd04f2a2 ShortName": "MK3 TV-104", "5ab8dab586f77441cd04f2a2 Description": "Hamul tactic este o platformă concepută pentru a purta echipamente în zona pieptului sau abdomenului, cu partea din spate deschisă. Buzunarele sunt concepute pentru a purta 8 încărcătoare. Poate fi utilizată separat sau deasupra unei armuri tip vestă. Fabricată de WARTECH.", - "5ab8dced86f774646209ec87 Name": "Purtători de plăci ANA Tactical M2 (Digital Flora)", + "5ab8dced86f774646209ec87 Name": "ANA Tactical M2 ham blindaj", "5ab8dced86f774646209ec87 ShortName": "ANA M2", - "5ab8dced86f774646209ec87 Description": "Vesta M2 a fost creată utilizând experiența trupelor speciale ruse. Versatilitatea sistemului face posibilă utilizarea atât în operațiuni urbane cât și pe teren accidentat. Posedă buzunare adiționale pentru 8 încărcătoare. Fabricat de ANA Tactical. Prevăzută cu buzunare suplimentare pentru 8 încărcătoare. Fabricat ANA Tactical.", + "5ab8dced86f774646209ec87 Description": "Ham tactic cu plăci adiționale de blindaj clasa 4 (sistem GOST). Vesta a fost creată utilizând experiența trupelor speciale ruse. Versatilitatea sistemului face posibilă utilizarea atât în operațiuni urbane cât și pe teren accidentat. Posedă buzunare adiționale pentru 8 încărcătoare. Fabricat de ANA Tactical.", "5ab8e4ed86f7742d8e50c7fa Name": "MF-UNTAR armură", "5ab8e4ed86f7742d8e50c7fa ShortName": "MF-ONU", "5ab8e4ed86f7742d8e50c7fa Description": "Armură clasa 3 folosită de soldații ONU în timpul misiunii UNTAR din Tarkov.", "5ab8e79e86f7742d8b372e78 Name": "BNTI Gzhel-K armură", "5ab8e79e86f7742d8b372e78 ShortName": "Gzhel-K", - "5ab8e79e86f7742d8b372e78 Description": "Vesta de asalt anti-glonț Gzhel a fost dezvoltată pentru unitățile de asalt ale Ministerului Afacerilor Interne și alte agenții de protecție civilă.", + "5ab8e79e86f7742d8b372e78 Description": "Vesta de asalt anti-glonț Gzhel a fost dezvoltată pentru unitățile de asalt ale Ministerului Afacerilor Interne și alte agenții de protecție civilă. O variantă specială a armurii Gzhel-K este echipată cu panouri blindate din ceramică bazate pe corindon. (clasa 5 de protecție GOST).", "5ab8e9fcd8ce870019439434 Name": "Kalashnikov AKS-74N 5.45x39 pușcă asalt", "5ab8e9fcd8ce870019439434 ShortName": "AKS-74N", "5ab8e9fcd8ce870019439434 Description": "AKS-74N (Avtomat Kalashnikova Skladnoy 74 Nochnoy - \"Kalashnikov's Automatic rifle 74 Night with foldable stock\") 5.45x39mm pușcă de asalt cu pat metalic retractabil destinată special pentru trupele de desant aerian. Diferența majoră față de AKS-74 este șina tip coadă-de-rândunică pentru montarea lunetelor sau a dispozitivelor de vedere pe timp de noapte.", - "5ab8ebf186f7742d8b372e80 Name": "SSO Attack 2 rucsac raid (Khaki)", + "5ab8ebf186f7742d8b372e80 Name": "SSO Attack 2 rucsac raid", "5ab8ebf186f7742d8b372e80 ShortName": "Attack 2", - "5ab8ebf186f7742d8b372e80 Description": "Rucsac de raid \"Attack 2\" (Ataka 2) cu capacitate de 60 de litri, este conceput pentru a transporta echipament și obiecte personale în condițiile de luptă.", + "5ab8ebf186f7742d8b372e80 Description": "Rucsac de raid \"Attack 2\" cu capacitate de 60 de litri, este conceput pentru a transporta echipament și obiecte personale în condițiile de luptă.", "5ab8ee7786f7742d8f33f0b9 Name": "VKBO sac militar", "5ab8ee7786f7742d8f33f0b9 ShortName": "VKBO", "5ab8ee7786f7742d8f33f0b9 Description": "Inclusă în echipamentul de baza all-season (VKBO) destinat pentru transportul și depozitarea obiectelor personale ale soldaților.", - "5ab8f04f86f774585f4237d8 Name": "Sac tactic cu bretea (Khaki)", + "5ab8f04f86f774585f4237d8 Name": "Sac tactic cu bretea", "5ab8f04f86f774585f4237d8 ShortName": "SacT", "5ab8f04f86f774585f4237d8 Description": "Sac tactic cu bretea original pentru purtare zilnică și odihnă activă.", "5ab8f20c86f7745cdb629fb2 Name": "Cagulă de schior", @@ -3359,9 +3359,9 @@ "5ac78eaf5acfc4001926317a Name": "AK-74M/AK-100 Zenit PT adaptor", "5ac78eaf5acfc4001926317a ShortName": "PT 74M/100", "5ac78eaf5acfc4001926317a Description": "Adaptor de pat cu sistem de blocare, proiectat pentru a instala pe armă paturile de armă PT-1 și PT-3. Acest model este potrivit pentru instalarea pe AK-74M și AK-100. Produs de Zenit.", - "5ac8d6885acfc400180ae7b0 Name": "Ops-Core FAST MT Super High Cut cască (Urban Tan)", + "5ac8d6885acfc400180ae7b0 Name": "Ops-Core FAST MT Super High Cut cască (Tan)", "5ac8d6885acfc400180ae7b0 ShortName": "FAST MT", - "5ac8d6885acfc400180ae7b0 Description": "Casca balistică Ops-Core FAST este populară printre forțele speciale din jurul lumii. Poate fi modificată cu diferite componente. Versiunea Urban Tan.", + "5ac8d6885acfc400180ae7b0 Description": "Casca balistică Ops-Core FAST este populară printre forțele speciale din jurul lumii. Poate fi modificată cu diferite componente. Culoare TAN.", "5ad5ccd186f774446d5706e9 Name": "OLI cheie birou administrativ", "5ad5ccd186f774446d5706e9 ShortName": "OLI birou", "5ad5ccd186f774446d5706e9 Description": "Cheie de biroul administrativ OLI din complexul comercial ULTRA.", @@ -3451,7 +3451,7 @@ "5addc7db5acfc4001669f279 Description": "M14ALCS (MOD-0) mâner pistol pentru puștile M14 din kitul Enhanced Battle Rifle (EBR), fabricat de SAGE International.", "5addcce35acfc4001a5fc635 Name": "M14 7.62x51 30-cartușe", "5addcce35acfc4001a5fc635 ShortName": "M14", - "5addcce35acfc4001a5fc635 Description": "Încărcător cu stivă dublă de 30 de cartușe 7.62x51 NATO pentru pușca M1, produs de Triple K.", + "5addcce35acfc4001a5fc635 Description": "Încărcător cu stivă dublă de 30 de cartușe 7.62x51 NATO pentru pușca M1 produs de Triple K.", "5addccf45acfc400185c2989 Name": "M14 7.62x51 X Products X-14 50-cartușe butoi", "5addccf45acfc400185c2989 ShortName": "X-14 7.62", "5addccf45acfc400185c2989 Description": "Încărcător tip tambur 50 de cartușe 7.62x51 NATO pentru M14. Produs de X-Products.", @@ -3465,7 +3465,7 @@ "5ae089fb5acfc408fb13989b ShortName": "Trofeu", "5ae089fb5acfc408fb13989b Description": "Trofeu", "5ae08f0a5acfc408fb1398a1 Name": "Mosin 7.62x54R pușcă cu zăvor (Lunetiști)", - "5ae08f0a5acfc408fb1398a1 ShortName": "Mosin cu Lunetă", + "5ae08f0a5acfc408fb1398a1 ShortName": "Mosin (Lunetă)", "5ae08f0a5acfc408fb1398a1 Description": "Mosin–Nagant M91/30 PU este varianta pentru lunetiști a faimoasei puști rusești, utilizată de lunetiștii ruși în Al Doilea Război Mondial.", "5ae096d95acfc400185c2c81 Name": "Mosin Rifle pat standard", "5ae096d95acfc400185c2c81 ShortName": "Mosin pat", @@ -3485,11 +3485,11 @@ "5ae30bad5acfc400185c2dc4 Name": "AR-15 mâner-înălțător", "5ae30bad5acfc400185c2dc4 ShortName": "Manetă", "5ae30bad5acfc400185c2dc4 Description": "Mâner detașabil cu înălțător pentru AR-15. Echipat standard pe pușca de asalt M4A1.", - "5ae30c9a5acfc408fb139a03 Name": "Pat AR-15 LMT SOPMOD", + "5ae30c9a5acfc408fb139a03 Name": "LMT SOPMOD pat", "5ae30c9a5acfc408fb139a03 ShortName": "SOPMOD", "5ae30c9a5acfc408fb139a03 Description": "Pat telescopic produs de LMT Defense. Face parte din setul SOPMOD Block 0.", "5ae30db85acfc408fb139a05 Name": "AR-15 Colt M4 uluc lungime carabină", - "5ae30db85acfc408fb139a05 ShortName": "Carabină M4", + "5ae30db85acfc408fb139a05 ShortName": "M4 carabină", "5ae30db85acfc408fb139a05 Description": "Uluc pe lungimea carabinei fabricat de Colt, echipat standard pe pușca de asalt M4A1.", "5ae30e795acfc408fb139a0b Name": "M4A1 tub de gaze cu cătare", "5ae30e795acfc408fb139a0b ShortName": "M4A1", @@ -3526,10 +3526,10 @@ "5af04b6486f774195a3ebb49 Description": "Unealtă de cea mai bună calitate pentru prinderea, îndoirea și tăierea sârmei.", "5af04c0b86f774138708f78e Name": "Controler Motor #1", "5af04c0b86f774138708f78e ShortName": "Controler #1", - "5af04c0b86f774138708f78e Description": "Bloc de control configurabil pentru motoare utilizat în tancuri principale de luptă și alte sistem de arme.", + "5af04c0b86f774138708f78e Description": "Controlerele de motor au fost dezvoltate pentru sisteme de armament sau tancuri de luptă. Alimentarea, interfața, performanța și ansamblul au fost concepute luând în calcul cele mai exigente asteptări în privința condițiilor de luptă și de precizie. Controlerul de motor include filtru puls-EM, electronică de mare putere, software embedded, algoritmi de control, o unealtă pentru întreținere și interfețele electronice necesare.", "5af04e0a86f7743a532b79e2 Name": "Giroscop Fibră Optică Mono-axă #1", "5af04e0a86f7743a532b79e2 ShortName": "GFO #1", - "5af04e0a86f7743a532b79e2 Description": "Giroscop mono-axă extrem de fiabil dezvoltat pentru aplicațiile militare în medii adverse. Folosit pentru navigație în vehicule și sisteme de arme.", + "5af04e0a86f7743a532b79e2 Description": "Giroscoapele cu fibră optică(FOG) mono-axă sau cu două axe au fost dezvoltate pentru aplicații militare de înaltă performanță și sunt de cea mai bună calitate. FOG-urile oferă rate compensate de înclinare senzorilor sincronizați prin Integrated Bus for Intelligent Sensors(IBIS) sau cu ajutorul interfeței asincron RS-422. Dezvoltat pentru a fi utilizat in medii neprimitoare, giroscoapele pot rezista șocurilor și vibrațiilor extreme în concordanță cu MIL-STD-810 utilizare la sol, sunt complet digitalizate, includ BIT online și nu au piese în mișcare.", "5af0534a86f7743b6f354284 Name": "Oftalmoscop", "5af0534a86f7743b6f354284 ShortName": "OScop", "5af0534a86f7743b6f354284 Description": "Dispozitiv medical pentru examinarea ochilor.", @@ -3548,7 +3548,7 @@ "5afd7e095acfc40017541f61 Name": "SKS TAPCO Intrafuse tub tampon", "5afd7e095acfc40017541f61 ShortName": "SKS TAPCO", "5afd7e095acfc40017541f61 Description": "Tub tampon stil AR-15 Mil-Spec conceput pentru sistemul de pat Intrafuse SKS, fabricat de TAPCO.", - "5afd7e445acfc4001637e35a Name": "Mâner pistol SKS TAPCO Intrafuse kit SAW-Style", + "5afd7e445acfc4001637e35a Name": "SKS TAPCO Intrafuse kit SAW-Style mâner pistol", "5afd7e445acfc4001637e35a ShortName": "SAW SKS", "5afd7e445acfc4001637e35a Description": "Mâner pistol cu formă anatomică inspirat de mânerul armei M249 SAW LMG. Conceput pentru sistemul de pat Intrafuse SKS. Fabricat de TAPCO.", "5b04473a5acfc40018632f70 Name": "AKM/AK-74 FAB Defense UAS pat", @@ -3563,7 +3563,7 @@ "5b07dd285acfc4001754240d Name": "Steiner LAS/TAC 2 lanternă tactică", "5b07dd285acfc4001754240d ShortName": "LAS/TAC 2", "5b07dd285acfc4001754240d Description": "Lanternă tactică LED produsă de Steiner.", - "5b0800175acfc400153aebd4 Name": "Pat AR-15 ERGO F93 PRO", + "5b0800175acfc400153aebd4 Name": "ERGO F93 PRO pat", "5b0800175acfc400153aebd4 ShortName": "F93 PRO", "5b0800175acfc400153aebd4 Description": "F93 PRO pat telescopic, produs de ERGO.", "5b099a765acfc47a8607efe3 Name": "SA-58 7.62x51 țeavă 11 țoli", @@ -3594,7 +3594,7 @@ "5b0bc22d5acfc47a8607f085 ShortName": "SA58Hol", "5b0bc22d5acfc47a8607f085 Description": "Înălțător Holland Type pușca de asalt SA-58, fabricat de DS Arms.", "5b0e794b5acfc47a877359b2 Name": "AKM/AK-74 Magpul Zhukov-S pat", - "5b0e794b5acfc47a877359b2 ShortName": "Zhukov-S", + "5b0e794b5acfc47a877359b2 ShortName": "Zhukov-S AK", "5b0e794b5acfc47a877359b2 Description": "Zhukov-S pat armă destinat instalării pe puștile de asalt cu pat fix din familia AKM/AK-74. Fabricat de Magpul.", "5b1fa9b25acfc40018633c01 Name": "Glock 18C 9x19 pistol automat", "5b1fa9b25acfc40018633c01 ShortName": "Glock 18C", @@ -3602,7 +3602,7 @@ "5b1fa9ea5acfc40018633c0a Name": "Glock 18C 9x19mm țeavă cu compensator", "5b1fa9ea5acfc40018633c0a ShortName": "G18C comp", "5b1fa9ea5acfc40018633c0a Description": "Țeavă de 114mm cu compensator integrat pentru pistolul automat Glock 18C.", - "5b1faa0f5acfc40dc528aeb5 Name": "Manșon Glock 18C", + "5b1faa0f5acfc40dc528aeb5 Name": "Glock 18C 9x19 manșon", "5b1faa0f5acfc40dc528aeb5 ShortName": "G18C", "5b1faa0f5acfc40dc528aeb5 Description": "Manșon standard pentru pistoalele Glock 18C 9x19.", "5b1fb3e15acfc4001637f068 Name": "AK 7.62x39 bachelită 40-cartușe", @@ -3659,7 +3659,7 @@ "5b363e1b5acfc4771e1c5e80 Name": "SilencerCo Salvo 12 adaptor filet", "5b363e1b5acfc4771e1c5e80 ShortName": "fil.cal12", "5b363e1b5acfc4771e1c5e80 Description": "SilencerCo adaptor cu filet pentru amortizoarele Salvo cal 12.", - "5b39f8db5acfc40016387a1b Name": "Pat AR-15 Vltor EMOD", + "5b39f8db5acfc40016387a1b Name": "Vltor EMOD pat", "5b39f8db5acfc40016387a1b ShortName": "EMOD", "5b39f8db5acfc40016387a1b Description": "Patul de armă EMOD pentru sistemele AR-15. Fabricat de Vltor.", "5b39ffbd5acfc47a8773fb06 Name": "P226 Hogue Rubberized crose cauciuc", @@ -3776,7 +3776,7 @@ "5b432c305acfc40019478128 Name": "GP-5 mască gaze", "5b432c305acfc40019478128 ShortName": "GP-5", "5b432c305acfc40019478128 Description": "Masca de gaze civilă model 5 sau GP-5 este un agent de filtrare pentru protecția individuală a organelor respiratorii, a ochilor și a feței purtătorului.", - "5b432d215acfc4771e1c6624 Name": "LShZ cască ușoară (Olive Drab)", + "5b432d215acfc4771e1c6624 Name": "LShZ cască ușoară", "5b432d215acfc4771e1c6624 ShortName": "LShZ", "5b432d215acfc4771e1c6624 Description": "Cască ușoară de protecție fabricata în Rusia. De fapt o copie a caștii Ops-Core Fast, dar cu protecție mai scăzută.", "5b432f3d5acfc4704b4a1dfb Name": "Momex cagulă", @@ -3791,22 +3791,22 @@ "5b4391a586f7745321235ab2 Name": "Cameră WI-FI", "5b4391a586f7745321235ab2 ShortName": "Cameră", "5b4391a586f7745321235ab2 Description": "Cameră WI-FI controlată de la distanță.", - "5b44c6ae86f7742d1627baea Name": "ANA Tactical Beta 2 Battle rucsac (Olive Drab)", + "5b44c6ae86f7742d1627baea Name": "ANA Tactical Beta 2 Battle rucsac", "5b44c6ae86f7742d1627baea ShortName": "Beta 2", "5b44c6ae86f7742d1627baea Description": "Rucsac ușor și încăpător de la Ana Tactical. Conceput special pentru utilizare pe teren accidental și pe orice condiții.", "5b44c8ea86f7742d1627baf1 Name": "BlackHawk! Commando ham tactic (Desert Tan)", "5b44c8ea86f7742d1627baf1 ShortName": "Comando", "5b44c8ea86f7742d1627baf1 Description": "Conceput pentru confort și acces rapid, acest ham oferă o mulțime de încărcătoare adiționale la vârful degetelor tale. Fabricat de BlackHawk. Varianta de culoare Desert Tan.", - "5b44cad286f77402a54ae7e5 Name": "Ham cu plăci 5.11 Tactical TacTec (Ranger Green)", + "5b44cad286f77402a54ae7e5 Name": "5.11 Tactical TacTec ham blindaj", "5b44cad286f77402a54ae7e5 ShortName": "TacTec", - "5b44cad286f77402a54ae7e5 Description": "Vestă cu ham pentru purtarea plăcilor blindate. Fabricată de 5.11 Tactical.", - "5b44cd8b86f774503d30cba2 Name": "IOTV Gen4 armură (Kit Protecție Completă, MultiCam)", + "5b44cad286f77402a54ae7e5 Description": "Vestă cu ham pentru purtarea plăcilor de blindaj fabricate din polietilenă clasa a-5a de protecție (sistem GOST) și un set de buzunare pentru operațiuni cu puștile de asalt. Fabricat de 5.11 Tactical.", + "5b44cd8b86f774503d30cba2 Name": "IOTV Gen4 armură (Kit Protecție Complet)", "5b44cd8b86f774503d30cba2 ShortName": "Gen4 Full", "5b44cd8b86f774503d30cba2 Description": "Improved Outer Tactical Vest (IOTV) Gen IV este concepută să permită libertatea de mișcare maximă necesară pentru a lua pozițiile de tragere corecte cu agilitatea necesară pentru a executa ordine de manevră. Caracteristicile optime de design asigură cea mai bună distribuție a greutății corpului de protecție balistică dar și a echipamentelor adiționale, oferind astfel confort, durată de purtare și mobilitate sporită. Kitul cu protecție completă.", - "5b44cf1486f77431723e3d05 Name": "IOTV Gen4 armură (Kit Asalt, MultiCam)", + "5b44cf1486f77431723e3d05 Name": "IOTV Gen4 armură (Kit Asalt)", "5b44cf1486f77431723e3d05 ShortName": "Gen4 Asalt", "5b44cf1486f77431723e3d05 Description": "Improved Outer Tactical Vest (IOTV) Gen IV este concepută să permită libertatea de mișcare maximă necesară pentru a lua pozițiile de tragere corecte cu agilitatea necesară pentru a executa ordine de manevră. Caracteristicile optime de design asigură cea mai bună distribuție a greutății corpului de protecție balistică dar și a echipamentelor adiționale, oferind astfel confort, durată de purtare și mobilitate sporită. Kitul ergonomic pentru asalt.", - "5b44d0de86f774503d30cba8 Name": "IOTV Gen4 armură (Kit Mobilitate, MultiCam)", + "5b44d0de86f774503d30cba8 Name": "IOTV Gen4 armură (Kit Mobilitate)", "5b44d0de86f774503d30cba8 ShortName": "Gen4 Mobil", "5b44d0de86f774503d30cba8 Description": "Improved Outer Tactical Vest (IOTV) Gen IV este concepută să permită libertatea de mișcare maximă necesară pentru a lua pozițiile de tragere corecte cu agilitatea necesară pentru a executa ordine de manevră. Caracteristicile optime de design asigură cea mai bună distribuție a greutății corpului de protecție balistică dar și a echipamentelor adiționale, oferind astfel confort, durată de purtare și mobilitate sporită. Kitul cu protecție completă. Kitul cu mobilitate și confort crescut.", "5b44d22286f774172b0c9de8 Name": "BNTI Kirasa-N vestă anti-glonț", @@ -3823,13 +3823,13 @@ "5b4736b986f77405cb415c10 Description": "TROY QARS șină de montaj lungime 4.2 țoli permite instalarea echipamentului adițional pe mânerele uluc combinate cu tub de gaze TROY \"Full Length Rail\" AK.", "5b4c72b386f7745b453af9c0 Name": "Controler Motor #2", "5b4c72b386f7745b453af9c0 ShortName": "Controler #2", - "5b4c72b386f7745b453af9c0 Description": "Bloc de control configurabil pentru motoare utilizat în tancuri principale de luptă și alte sistem de arme.", + "5b4c72b386f7745b453af9c0 Description": "Controlerele de motor au fost dezvoltate pentru sisteme de armament sau tancuri de luptă. Alimentarea, interfața, performanța și ansamblul au fost concepute luând în calcul cele mai exigente asteptări în privința condițiilor de luptă și de precizie. Controlerul de motor include filtru puls-EM, electronică de mare putere, software embedded, algoritmi de control, o unealtă pentru întreținere și interfețele electronice necesare.", "5b4c72c686f77462ac37e907 Name": "Controler Motor #3", "5b4c72c686f77462ac37e907 ShortName": "Controler #3", - "5b4c72c686f77462ac37e907 Description": "Bloc de control configurabil pentru motoare utilizat în tancuri principale de luptă și alte sistem de arme.", + "5b4c72c686f77462ac37e907 Description": "Controlerele de motor au fost dezvoltate pentru sisteme de armament sau tancuri de luptă. Alimentarea, interfața, performanța și ansamblul au fost concepute luând în calcul cele mai exigente asteptări în privința condițiilor de luptă și de precizie. Controlerul de motor include filtru puls-EM, electronică de mare putere, software embedded, algoritmi de control, o unealtă pentru întreținere și interfețele electronice necesare.", "5b4c72fb86f7745cef1cffc5 Name": "Giroscop Fibră Optică Mono-axă #2", "5b4c72fb86f7745cef1cffc5 ShortName": "GFO #2", - "5b4c72fb86f7745cef1cffc5 Description": "Giroscop mono-axă extrem de fiabil dezvoltat pentru aplicațiile militare în medii adverse. Folosit pentru navigație în vehicule și sisteme de arme.", + "5b4c72fb86f7745cef1cffc5 Description": "Giroscoapele cu fibră optică(FOG) mono-axă sau cu două axe au fost dezvoltate pentru aplicații militare de înaltă performanță și sunt de cea mai bună calitate. FOG-urile oferă rate compensate de înclinare senzorilor sincronizați prin Integrated Bus for Intelligent Sensors(IBIS) sau cu ajutorul interfeței asincron RS-422. Dezvoltat pentru a fi utilizat in medii neprimitoare, giroscoapele pot rezista șocurilor și vibrațiilor extreme în concordanță cu MIL-STD-810 utilizare la sol, sunt complet digitalizate, includ BIT online și nu au piese în mișcare.", "5b4c81a086f77417d26be63f Name": "Recipient chimic #2", "5b4c81a086f77417d26be63f ShortName": "Chimic", "5b4c81a086f77417d26be63f Description": "Recipient cu închidere ermetică pentru substanțe chimice.", @@ -3893,7 +3893,7 @@ "5b7c710788a4506dec015957 Name": "Scavul Gospodar Container Chestii", "5b7c710788a4506dec015957 ShortName": "Chestii", "5b7c710788a4506dec015957 Description": "Cutie mare pentru depozitarea diferitelor obiecte și bunuri de care aveți nevoie pentru schimburi.", - "5b7d37845acfc400170e2f87 Name": "SA-58/FAL/SLR 7.62x51 30-cartușe", + "5b7d37845acfc400170e2f87 Name": "SA-58/FAL 7.62x51 30-cartușe", "5b7d37845acfc400170e2f87 ShortName": "L1A1", "5b7d37845acfc400170e2f87 Description": "Încărcător din oțel cu stivă dublă de 30 de cartușe 7.62x51 NATO pentru L1A1 Self-Loading Rifle (SLR), versiunea britanică de FN FAL.", "5b7d63b75acfc400170e2f8a Name": "SA-58/FAL Magpul PRS 2 pat polimer", @@ -4050,8 +4050,8 @@ "5bbdb83fd4351e44f824c44b ShortName": "Mosin Tanker", "5bbdb83fd4351e44f824c44b Description": "Atenuator recul stil Tanker pentru pușca Mosin. Produs de TacFire.", "5bbdb870d4351e00367fb67d Name": "Mosin Rifle ATI Monte Carlo șasiu", - "5bbdb870d4351e00367fb67d ShortName": "Mosin MC", - "5bbdb870d4351e00367fb67d Description": "Șasiu stil Monte Carlo pentru pușca Mosin, transformă arma în ceva ce arată mai modern. Fabricat de ATI outdoors.", + "5bbdb870d4351e00367fb67d ShortName": "Mosin MonteCarlo", + "5bbdb870d4351e00367fb67d Description": "Șasiu stil Monte Carlo pentru pușca Mosin, transformă arma în ceva ce arată modern. Fabricat de ATI.", "5bbdb8bdd4351e4502011460 Name": "AR-10 Odin Works ATLAS-7 7.62x51 atenuator", "5bbdb8bdd4351e4502011460 ShortName": "ATLAS-7", "5bbdb8bdd4351e4502011460 Description": "ATLAS-7 atenuator recul pentru sistemele AR-10 și compatibile. Fabricat de Odin Works.", @@ -4188,7 +4188,7 @@ "5bf3f59f0db834001a6fa060 ShortName": "RPK-16 CS", "5bf3f59f0db834001a6fa060 Description": "Înălțător detașabil Izhmash. Echipat standard pe RPK-16.", "5bfd297f0db834001a669119 Name": "Mosin 7.62x54R pușcă cu zăvor (Infanterie)", - "5bfd297f0db834001a669119 ShortName": "Mosin Infanterie", + "5bfd297f0db834001a669119 ShortName": "Mosin (Infanterie)", "5bfd297f0db834001a669119 Description": "Mosin–Nagant este una dintre cele mai faimoase puști rusești, a fost utilizată de soldații ruși în al Doilea Război Mondial. Dezvoltată între 1882 și 1891 a fost utilizată de armatele Imperiului Rus, URSS și diferite alte țări. Este una dintre cele mai produse arme cu zăvor din istorie cu peste 37 milioane de unități produse din 1891 și până azi. În ciuda vârstei, este încă utilizată în conflictele din toată lumea chiar și în ziua de azi.", "5bfd35380db83400232fe5cc Name": "Mosin Rifle Infantry pat", "5bfd35380db83400232fe5cc ShortName": "Mosin inf. pat", @@ -4226,7 +4226,7 @@ "5bfe86bd0db83400232fe959 Name": "FAB Defense capac pentru AGR-870", "5bfe86bd0db83400232fe959 ShortName": "AGR-870 cap", "5bfe86bd0db83400232fe959 Description": "Capac protecție FAB Defense pentru mânerul pistol AGR-870.", - "5bfe86df0db834001b734685 Name": "Pat AR-15 FAB Defense GLR-16-S", + "5bfe86df0db834001b734685 Name": "FAB Defense GLR-16-S pat", "5bfe86df0db834001b734685 ShortName": "GLR-16-S", "5bfe86df0db834001b734685 Description": "Patul telescopic GLR-16-S. Fabricat de FAB Defense.", "5bfe89510db834001808a127 Name": "FAB Defense tub tampon pentru AGR-870", @@ -4394,7 +4394,7 @@ "5c0696830db834001d23f5da Name": "PNV-10T Vedere de Noapte", "5c0696830db834001d23f5da ShortName": "PNV-10T", "5c0696830db834001d23f5da Description": "PNV-10T Dispozitiv de viziune de noapte pseudo-binocular din a doua generație. Dispozitiv popular, cu un preț redus, întâlnit pe scară largă între vânători și fanii jocurilor tactice militare.", - "5c06c6a80db834001b735491 Name": "SSh-68 cască oțel (Olive Drab)", + "5c06c6a80db834001b735491 Name": "SSh-68 cască oțel", "5c06c6a80db834001b735491 ShortName": "SSh-68", "5c06c6a80db834001b735491 Description": "Casca SSh-68 a înlocuit casca de armată SSh-60. Diferențele față de predecesor sunt durabilitatea crescută, o înclinație mare în partea din față și panouri laterale scurte.", "5c079ec50db834001966a706 Name": "TT Razor Arms crosă", @@ -4415,7 +4415,7 @@ "5c07c5ed0db834001b73571c Name": "HK MP5 Noveske-style 9x19 atenuator-compensator", "5c07c5ed0db834001b73571c ShortName": "MP5 Noveske", "5c07c5ed0db834001b73571c Description": "Atenuator recul - compensator stil Noveske pentru pistolul-mitralieră MP5. Produs de Heckler & Koch.", - "5c07c60e0db834002330051f Name": "Carabină ADAR 2-15 5.56x45", + "5c07c60e0db834002330051f Name": "ADAR 2-15 5.56x45 carabină", "5c07c60e0db834002330051f ShortName": "ADAR 2-15", "5c07c60e0db834002330051f Description": "Carabina rusească ADAR 2-15 cu destinație civilă este bazată pe platforma AR-15. Carabina este produsă în St. Petersburk utilizând componente israeliene și țevi cromate fabricate de Molot Arms.", "5c07c9660db834001a66b588 Name": "HK MP5 capac pat", @@ -4478,7 +4478,7 @@ "5c0d688c86f77413ae3407b2 Name": "9x39mm BP gs", "5c0d688c86f77413ae3407b2 ShortName": "BP", "5c0d688c86f77413ae3407b2 Description": "9x39mm BP gs (GRAU Index - 7N12) cartuș special cu glonț subsonic penetrant de 15.5 grame cu miez din oțel-carbon călit cu semi-cămașă în două straturi, interior din plumb și exterior bimetalic, în tub de oțel. Acest cartuș (Bronebóynaya Púlya - \"Armor-piercing Bullet\") a fost dezvoltat în anii 2000 pe baza cartușului 9x39mm SP-6 pentru a îmbunătății capacitățile penetrante. Este capabil să neutralizeze personalul inamic echipat cu protecții balistice specializate oferind putere foarte mare de oprire, dar cu șansă mare de ricoșeu la impactul cu o suprafață dură.", - "5c0e2f26d174af02a9625114 Name": "Cutie superioară AR-15 ADAR 2-15 5.56x45", + "5c0e2f26d174af02a9625114 Name": "ADAR 2-15 5.56x45 cutie superioară", "5c0e2f26d174af02a9625114 ShortName": "ADAR", "5c0e2f26d174af02a9625114 Description": "Cutia superioară a închizătorului pentru carabina ADAR 2-15 produsă de ADAR. Prevăzut cu un suport pentru montajul unor dispozitive suplimentare.", "5c0e2f5cd174af02a012cfc9 Name": "AR-15 ADAR 2-15 uluc lemn", @@ -4490,10 +4490,10 @@ "5c0e2ff6d174af02a1659d4a Name": "AR-15 ADAR 2-15 pat lemn", "5c0e2ff6d174af02a1659d4a ShortName": "ADAR lemn", "5c0e2ff6d174af02a1659d4a Description": "Pat din lemn stil SVD pentru carabina ADAR 2-15.", - "5c0e3eb886f7742015526062 Name": "6B5-16 Zh-86 Uley vestă anti-glonț (Khaki)", + "5c0e3eb886f7742015526062 Name": "6B5-16 Zh-86 Uley vestă anti-glonț", "5c0e3eb886f7742015526062 ShortName": "6B5-16", "5c0e3eb886f7742015526062 Description": "Vesta anti-glonț 6B5 a fost adoptată de către forțele armate ale URSS în 1986. Opțiunea 6B5-16 este concepută pentru a proteja împotriva fragmentelor și gloanțelor (protecție clasa 3, titan). Are, de asemenea, mai multe buzunare pentru încărcătoare și alte echipamente.", - "5c0e446786f7742013381639 Name": "6B5-15 Zh-86 Uley vestă anti-glonț (Flora)", + "5c0e446786f7742013381639 Name": "6B5-15 Zh-86 Uley vestă anti-glonț", "5c0e446786f7742013381639 ShortName": "6B5-15", "5c0e446786f7742013381639 Description": "Vesta anti-glonț 6B5 a fost adoptată de către forțele armate ale URSS în 1986. Opțiunea 6B5-15 este concepută pentru trupele de asalt (protecție clasa 4, carbură boraxată). Are mai multe buzunare pentru încărcătoare și alte echipamente.", "5c0e51be86f774598e797894 Name": "6B13 vestă blindată (Flora)", @@ -4517,47 +4517,47 @@ "5c0e53c886f7747fa54205c7 Name": "6B13 vestă blindată (Digital Flora)", "5c0e53c886f7747fa54205c7 ShortName": "6B13 DFL", "5c0e53c886f7747fa54205c7 Description": "Principala vestă blindată pentru personalul din unitățile de luptă ale forțelor terestre, aeriene, trupele de pușcași marini, etc. Vesta este proiectată pentru a proteja organele vitale de lovituri de arme de foc, schije, mine, grenade și arme albe, reducând severitatea leziunilor prin contuzie atunci când se efectuează misiuni de luptă. Versiunea cu camuflaj Digital Flora.", - "5c0e541586f7747fa54205c9 Name": "6B13 M vestă blindată modificată (Killa Edition)", - "5c0e541586f7747fa54205c9 ShortName": "6B13 KE", - "5c0e541586f7747fa54205c9 Description": "Vestă blindată 6B13 modificată personal de Killa având un design trendy și revoluționar.", + "5c0e541586f7747fa54205c9 Name": "6B13 M vestă blindată modificată (Tan)", + "5c0e541586f7747fa54205c9 ShortName": "6B13 M", + "5c0e541586f7747fa54205c9 Description": "6B13 vestă blindată care a avut plăcile blindate ceramice înlocuite cu plăci ușoare din polietilenă. Clasă de protecție mai mare, greutate mai mică. Acest model a fost modificat personal de către Killa.", "5c0e57ba86f7747fa141986d Name": "6B23-2 vestă blindată (Mountain Flora)", "5c0e57ba86f7747fa141986d ShortName": "6B23-2 MF", "5c0e57ba86f7747fa141986d Description": "Zabralo-8 este principala vestă blindată pentru personalul din unitățile de luptă ale forțelor terestre, aeriene, trupele de pușcași marini, etc. Vesta este proiectată pentru a proteja organele vitale de lovituri de arme de foc, schije, mine, grenade și arme albe, reducând severitatea leziunilor prin contuzie atunci când se efectuează misiuni de luptă.", "5c0e5bab86f77461f55ed1f3 Name": "6B23-1 vestă blindată (Digital Flora)", - "5c0e5bab86f77461f55ed1f3 ShortName": "6B23-1 DFL", + "5c0e5bab86f77461f55ed1f3 ShortName": "6B23-1", "5c0e5bab86f77461f55ed1f3 Description": "Zabralo-8 este principala vestă blindată pentru personalul din unitățile de luptă ale forțelor terestre, aeriene, trupele de pușcași marini, etc. Vesta este proiectată pentru a proteja organele vitale de lovituri de arme de foc, schije, mine, grenade și arme albe, reducând severitatea leziunilor prin contuzie atunci când se efectuează misiuni de luptă.", - "5c0e5edb86f77461f55ed1f7 Name": "BNTI Zhuk vestă anti-glonț (Presă)", - "5c0e5edb86f77461f55ed1f7 ShortName": "Zhuk", - "5c0e5edb86f77461f55ed1f7 Description": "Vestă anti-glonț folosită de jurnaliștii care lucrează în zonele de conflict.", - "5c0e625a86f7742d77340f62 Name": "BNTI Zhuk armură (Digital Flora)", - "5c0e625a86f7742d77340f62 ShortName": "Zhuk DFL", - "5c0e625a86f7742d77340f62 Description": "Vestă blindată de protecție concepută pentru unitățile de asalt. Se bazează pe armura Gzhel, fiind o copie mai ușoară.", - "5c0e655586f774045612eeb2 Name": "HighCom Trooper TFO vestă blindată (MultiCam)", + "5c0e5edb86f77461f55ed1f7 Name": "BNTI Zhuk-3 vestă anti-glonț (Presă)", + "5c0e5edb86f77461f55ed1f7 ShortName": "Zhuk-3", + "5c0e5edb86f77461f55ed1f7 Description": "Vestă anti-glonț cu protecție clasa 3 (sistem GOST), folosită de jurnaliștii care lucrează în zonele de conflict.", + "5c0e625a86f7742d77340f62 Name": "BNTI Zhuk-6a armură", + "5c0e625a86f7742d77340f62 ShortName": "Zhuk-6a", + "5c0e625a86f7742d77340f62 Description": "Vestă blindată clasa a 6-a (sistem GOST) de protecție concepută pentru unitățile de asalt. Se bazează pe armura Gzhel, fiind o copie mai ușoară.", + "5c0e655586f774045612eeb2 Name": "HighCom Trooper TFO vestă blindată (Multicam)", "5c0e655586f774045612eeb2 ShortName": "Trooper", - "5c0e655586f774045612eeb2 Description": "Vestă cu placi blindate de la HichCom, populară printre PMC USEC. Versiunea camuflaj MultiCam.", + "5c0e655586f774045612eeb2 Description": "Vestă cu placi blindate de la HichCom, populară printre PMC USEC. Plăcile de blindaj ușoare AR5000 clasa 4 (sistem GOST) acoperă pieptul și spatele. Versiunea camuflaj multicam.", "5c0e66e2d174af02a96252f4 Name": "Ops-Core SLAAP placă blindată pt. cască (Tan)", "5c0e66e2d174af02a96252f4 ShortName": "SLAAP", "5c0e66e2d174af02a96252f4 Description": "Blindaj adițional pentru casca Ops-Core FAST, dintr-o placă specială de polietilenă (clasa a 5-a de protecție sistem GOST).", - "5c0e6a1586f77404597b4965 Name": "Poyas-A + Poyas-B ham tactic", - "5c0e6a1586f77404597b4965 ShortName": "Poyas combo", - "5c0e6a1586f77404597b4965 Description": "Centura-A (Poyas-A) este hamul legendar din timpul războiului din Afganistan. Hamul a fost adoptat in 1989, și a fost folosit de trupele speciale GRU până la începutul anilor 2000, împreună cu Centura-B cu 10 buzunare pentru grenadele VOG.", - "5c0e722886f7740458316a57 Name": "ANA Tactical M1 ham blindaj (Olive Drab)", + "5c0e6a1586f77404597b4965 Name": "Belt-A + Belt-B ham tactic", + "5c0e6a1586f77404597b4965 ShortName": "Belt combo", + "5c0e6a1586f77404597b4965 Description": "Centura-A este hamul legendar din timpul războiului din Afganistan. Hamul a fost adoptat in 1989, și a fost folosit de trupele speciale GRU până la începutul anilor 2000, împreună cu Centura-B cu 10 buzunare pentru grenadele VOG.", + "5c0e722886f7740458316a57 Name": "ANA Tactical M1 ham blindaj", "5c0e722886f7740458316a57 ShortName": "ANA M1", - "5c0e722886f7740458316a57 Description": "Vesta M1 a fost creată utilizând experiența trupelor speciale ruse. Versatilitatea sistemului face posibilă utilizarea atât în operațiuni urbane cât și pe teren accidentat. Posedă buzunare adiționale. Fabricat de ANA Tactical.", - "5c0e746986f7741453628fe5 Name": "WARTECH TV-110 purtător de plăci (Coyote)", + "5c0e722886f7740458316a57 Description": "Ham tactic cu plăci adiționale de blindaj clasa 4 (sistem GOST). Vesta a fost creată utilizând experiența trupelor speciale ruse. Versatilitatea sistemului face posibilă utilizarea atât în operațiuni urbane cât și pe teren accidentat. Posedă buzunare adiționale pentru 8 încărcătoare. Fabricat de ANA Tactical.", + "5c0e746986f7741453628fe5 Name": "WARTECH TV-110 ham blindaj", "5c0e746986f7741453628fe5 ShortName": "TV-110", - "5c0e746986f7741453628fe5 Description": "LBS TV-110 purtător de plăci blindate echipat și cu un set de buzunare. Fabricat de WARTECH.", - "5c0e774286f77468413cc5b2 Name": "Rucsac Mystery Ranch Blackjack 50 (MultiCam)", + "5c0e746986f7741453628fe5 Description": "Ham purtarea plăcilor blindate (clasa a-4a de protecție) cu protecție a zonei pieptului și spatelui. Echipată și cu un set de buzunare. Fabricat de WARTECH.", + "5c0e774286f77468413cc5b2 Name": "Rucsac Mystery Ranch Blackjack 50 (multicam)", "5c0e774286f77468413cc5b2 ShortName": "Blackjack 50", "5c0e774286f77468413cc5b2 Description": "Rucsac pentru raiduri lungi, îndepărtate și de succes, de la Mystery Ranch.", - "5c0e805e86f774683f3dd637 Name": "Rucsac tactic 3V G Paratus 3-Day Operator (Foliage Grey)", + "5c0e805e86f774683f3dd637 Name": "Rucsac tactic 3V G Paratus 3-Day Operator", "5c0e805e86f774683f3dd637 ShortName": "Paratus", "5c0e805e86f774683f3dd637 Description": "Rucsac modular din poliester, cu întărituri din PVC pentru operatorii PMC care vor să traverseze terenul accidentat din regiunea Norvinsk.", - "5c0e842486f77443a74d2976 Name": "Maska-1SCh vizor blindat (Killa Edition)", + "5c0e842486f77443a74d2976 Name": "Maska-1SCh vizor blindat (Killa)", "5c0e842486f77443a74d2976 ShortName": "1SCh SB", "5c0e842486f77443a74d2976 Description": "Vizor blindaj anti-glonț pentru față special pentru casca Maska-1SCh (\"Mask-1 Shield\"). Acest model este vizorul blindat a lui Killa, vopsit în negru cu trei dungi verticale elegante.", - "5c0e874186f7745dc7616606 Name": "Maska-1SCh cască blindată (Killa Edition)", - "5c0e874186f7745dc7616606 ShortName": "Maska-1SCh KE", + "5c0e874186f7745dc7616606 Name": "Maska-1SCh cască blindată (Killa)", + "5c0e874186f7745dc7616606 ShortName": "Maska-1SCh (Killa)", "5c0e874186f7745dc7616606 Description": "Maska-1 cască blindată de protecție a fost introdusă în serviciu în 1991 pentru a înlocui casca ”Sfera”, utilizată de soldații Armatei Federației Ruse și de către forțele de intervenție din cadrul Ministerului Afacerilor Interne. Maska-1SCh (\"Mask-1 Shield\") este un accesoriu ce oferă o vizor blindat cu protecție anti-glonț ce protejează fața purtătorului. Acest model este casca personală a lui Killa, vopsită în negru cu trei dungi verticale elegante.", "5c0e9f2c86f77432297fe0a3 Name": "BlackHawk! Commando ham tactic (Negru)", "5c0e9f2c86f77432297fe0a3 ShortName": "Commando", @@ -4715,9 +4715,9 @@ "5c1f79a086f7746ed066fb8f Name": "TerraGroup Labs cheie arsenal", "5c1f79a086f7746ed066fb8f ShortName": "TGL ARS", "5c1f79a086f7746ed066fb8f Description": "Cheia de la camera arsenalului TerraGroup Labs.", - "5c3df7d588a4501f290594e5 Name": "9x19mm Trasor Verde", + "5c3df7d588a4501f290594e5 Name": "9x19mm Green Tracer", "5c3df7d588a4501f290594e5 ShortName": "GT", - "5c3df7d588a4501f290594e5 Description": "9x19mm Parabellum cartuș Trasor Verde. Destinat ajustării focului în luptă (Culoare Trasor: Verde) având un miez de oțel, dar în pofida acestui miez, glonțul are dificultăți în a penetra protecții balistice simple, dar, este capabil să ofere putere semnificativă de oprire a țintei.", + "5c3df7d588a4501f290594e5 Description": "9x19mm Parabellum Green Tracer cartuș trasor. Destinat ajustării focului în luptă (Culoare Trasor: Verde) având un miez de oțel, dar în pofida acestui miez, glonțul are dificultăți în a penetra protecții balistice simple, dar, este capabil să ofere putere semnificativă de oprire a țintei.", "5c46fbd72e2216398b5a8c9c Name": "SVDS 7.62x54R pușcă lunetist", "5c46fbd72e2216398b5a8c9c ShortName": "SVDS", "5c46fbd72e2216398b5a8c9c Description": "SVDS (Snáyperskaya Vintóvka Dragunóva Skladnáya - \"Dragunov Pușcă Lunetist cu Pat Pliabil\") pușcă lunetist a fost concepută special pentru trupele aeropurtate și forțele speciale din Rusia. Are un pat tubular pliabil lateral pe dreapta cutiei mecanismelor prevăzut cu sprijin-umăr din material sintetic și obrăzar fix. Arma are un mâner pistol din material sintetic iar țeava are un profil greu. Cutia mecanismelor este de asemenea ranforsată iar tubul de gaze a fost îmbunătățit. De asemenea un ascunzător de flacără scurt de formă conică prevăzut cu porturi a fost adoptat. Calibrul este de 7.62x54R.", @@ -4781,7 +4781,7 @@ "5c4eecde2e221602b3140418 Name": "SV-98 scut termic amortizor", "5c4eecde2e221602b3140418 ShortName": "SV-98 ST", "5c4eecde2e221602b3140418 Description": "Scut termic standard pentru amortizorul de sunet SV-98.", - "5c501a4d2e221602b412b540 Name": "Carabină Molot VPO-101 \"Vepr-Hunter\" 7.62x51", + "5c501a4d2e221602b412b540 Name": "Molot VPO-101 \"Vepr-Hunter\" 7.62x51 carabină", "5c501a4d2e221602b412b540 ShortName": "VPO-101 \"Vepr-Hunter\"", "5c501a4d2e221602b412b540 Description": "Carabină semiautomată de vânătoare calibrul 7.62x51 mm. Modelul este bazat pe mitraliera Kalashnikov (RPK) și este identic cu acesta în aparență, greutate și dimensiuni. A fost conceput pentru vânători profesioniști și amatori pentru vânat mediu și mare, dar și pentru utilizare în sport.", "5c5039be2e221602b177c9ff Name": "VPO-101 \"Vepr-Hunter\" tub gaze", @@ -4937,13 +4937,13 @@ "5c791e872e2216001219c40a Name": "Strike Industries Cobra Tactical mâner vertical", "5c791e872e2216001219c40a ShortName": "SI Cobra", "5c791e872e2216001219c40a Description": "Mânerulvertical Cobra Tactical integrează forma cu funcționalitatea. Designul hibrid al formei îi permite sa functioneze atat ca și prindere verticală cât și ca opritor pentru mână când se utilizeaza metoda degetului mare peste. Mânerul îți permite să manevrezi arma cu incredere iar designul organic permite operatorului să manipuleze pușca confortabil în orice moment.", - "5c793fb92e221644f31bfb64 Name": "Tub Tampon AR-15 Strike Industries Advanced Receiver Extension", + "5c793fb92e221644f31bfb64 Name": "Strike Industries Advanced tub tampon", "5c793fb92e221644f31bfb64 ShortName": "ARE", "5c793fb92e221644f31bfb64 Description": "Tubul tampon Advanced Receiver Extension, cu diametru Mil-Spec se potrivește pe orice pușcă sau carabină AR-15. Tubul tampon are indentații distinctive care reduc frecarea cu patul și reduc greutatea menținând totodată rezistența tubului în zonele de oboseală maximă. Fabricat de Strike Industries.", - "5c793fc42e221600114ca25d Name": "Tub Tampon AR-15 Strike Industries Advanced Receiver Extension (Roșu Metalizat)", + "5c793fc42e221600114ca25d Name": "Strike Industries Advanced tub tampon (Roșu Metalizat)", "5c793fc42e221600114ca25d ShortName": "ARE", "5c793fc42e221600114ca25d Description": "Tubul tampon Advanced Receiver Extension, cu diametru Mil-Spec se potrivește pe orice pușcă sau carabină AR-15. Tubul tampon are indentații distinctive care reduc frecarea cu patul și reduc greutatea menținând totodată rezistența tubului în zonele de oboseală maximă. Fabricat de Strike Industries. Versiunea Roșu Metalizat.", - "5c793fde2e221601da358614 Name": "Pat AR-15 Strike Industries Viper Mod 1", + "5c793fde2e221601da358614 Name": "Strike Industries Viper Mod 1 pat", "5c793fde2e221601da358614 ShortName": "Viper Mod1", "5c793fde2e221601da358614 Description": "Viper Mod 1 pat telescopic conceput și produs de Strike Industries. Patul este destinat platformei AR-15 și se potrivește pe toate dimensiunile de tub Mil-Spec. Patul a fost conceput pentru a fi mai ușor și mai compact.", "5c7951452e221644f31bfd5c Name": "AK Venom Tactical Antidote 7.62x39 atenuator-compensator", @@ -5030,13 +5030,13 @@ "5c9a26332e2216001219ea70 Name": "AR-15 Daniel Defense RIS II FSP 9.5 uluc (Coyote Brown)", "5c9a26332e2216001219ea70 ShortName": "RIS II FSP 9.5 CB", "5c9a26332e2216001219ea70 Description": "Daniel Defence RIS II FSP 9.5 uluc, este o parte a programului SOPMOD Block II de înlocuire a mânerelor uluc standard de tip M4CQBR sau Mk18 aflate în serviciul SOCOM în SUA. Construit dintr-un aliaj de aluminiu folosit la construcția avioanelor fiind un material ușor dar foarte rezistent. Echipat cu 4 baze de montare pentru instalarea unor accesorii suplimentare. Acest mâner nu este compatibil cu aruncătorul de grenade М203 UBGL.", - "5ca20abf86f77418567a43f2 Name": "Ham tactic Dynaforce Triton M43-A (Negru)", + "5ca20abf86f77418567a43f2 Name": "Ham TacticTriton M43-A", "5ca20abf86f77418567a43f2 ShortName": "Triton", "5ca20abf86f77418567a43f2 Description": "Triton M43-A ham tactic de asalt conceput pentru a stoca și purta muniție și echipament în climate moderate și calde. Fabricat de Dynaforce.", - "5ca20d5986f774331e7c9602 Name": "Rucsac WARTECH Berkut BB-102 (A-TACS FG)", + "5ca20d5986f774331e7c9602 Name": "WARTECH Berkut BB-102 rucsac", "5ca20d5986f774331e7c9602 ShortName": "Berkut", "5ca20d5986f774331e7c9602 Description": "Rucsac tactic cu încărcare frontală. Potrivit pentru utilizarea de către armată, forțele de securitate sau pentru jocuri militare tactice. Fabricat de WARTECH.", - "5ca20ee186f774799474abc2 Name": "Vulkan-5 LShZ-5 cască anti-glonț (Neagră)", + "5ca20ee186f774799474abc2 Name": "Vulkan-5 (LShZ-5) cască anti-glonț", "5ca20ee186f774799474abc2 ShortName": "Vulkan-5", "5ca20ee186f774799474abc2 Description": "Cască grea, cu un nivel ridicat de protecție \"Vulkan-5\" este destinată utilizării într-un set de echipamente de luptă clasa 6 (sistem GOST) de protecție a capului. Oferă protecție circulară în jurul capului în fața proiectilelor medii și grele.", "5ca2113f86f7740b2547e1d2 Name": "Vulkan-5 vizor blindat", @@ -5045,9 +5045,9 @@ "5ca2151486f774244a3b8d30 Name": "FORT Redut-M armură", "5ca2151486f774244a3b8d30 ShortName": "Redut-M", "5ca2151486f774244a3b8d30 Description": "“Redut M” este versiunea modificată a armurii bine dovedite Redut, care se află în serviciul unitaților speciale ale FSB. Vesta este bazată pe tehnologii avansate din câmpul armurilor individuale. Datorită formei optimizate a elementelor de blindaj și invelișul exterior prevăzut cu sistem de ventilație special, vesta blindată Redut M are calități funcționale excelente, care facilitează acțiunile inclusiv cele asociate cu spațiile inchise sau condusul vehiculelor.", - "5ca21c6986f77479963115a7 Name": "FORT Redut-T5 armură (Smog)", + "5ca21c6986f77479963115a7 Name": "FORT Redut-T5 armură", "5ca21c6986f77479963115a7 ShortName": "Redut-T5", - "5ca21c6986f77479963115a7 Description": "FORT \"Redut T5\" este o variantă de vestă blindată ranforsată din seria Redut de armuri, concepută în contul anilor de experiență în operațiuni contra-teroriste pe teritoriul Federației Ruse. Versiunea cu camuflaj Smog.", + "5ca21c6986f77479963115a7 Description": "FORT \"Redut T5\" este o variantă de vestă blindată ranforsată din seria Redut de armuri, concepută în contul anilor de experiență în operațiuni contra-teroriste pe teritoriul Federației Ruse.", "5cadc190ae921500103bb3b6 Name": "Beretta M9A3 9x19 pistol", "5cadc190ae921500103bb3b6 ShortName": "M9A3", "5cadc190ae921500103bb3b6 Description": "Beretta M9A3 este ultima variantă din seria M9 de pistoale, concepută pentru forțele militare și de ordine publică, dar și pentru utilizare în tir sportiv și protecție personală. Caracteristicile principale a generației A3 sunt ergonomia îmbunătățită și acoperirea mai rezistentă tip FDE.", @@ -5063,7 +5063,7 @@ "5cadc431ae921500113bb8d5 Name": "M9A3 crose polimer", "5cadc431ae921500113bb8d5 ShortName": "M9A3", "5cadc431ae921500113bb8d5 Description": "Crosă pistol standard din polimer pentru pistolul Beretta M9A3.", - "5cadc55cae921500103bb3be Name": "Manșon M9A3", + "5cadc55cae921500103bb3be Name": "M9A3 9x19 manșon", "5cadc55cae921500103bb3be ShortName": "M9A3", "5cadc55cae921500103bb3be Description": "Manșon standard pentru pistoalele Beretta M9A3 9x19.", "5cadd919ae921500126a77f3 Name": "M9A3 cătare față", @@ -5117,7 +5117,7 @@ "5cbdb1b0ae9215000d50e105 Name": "AK-74 \"Plum\" pat polimer (6P20 Sb.7)", "5cbdb1b0ae9215000d50e105 ShortName": "6P20 Sb.7", "5cbdb1b0ae9215000d50e105 Description": "Pat din polimer pentru pușca automată AK-74, produs de Izhmash. Fabricat din polimer violet, supranumit ”Sliva”(”Prună”).", - "5cbdc23eae9215001136a407 Name": "Butoi AK 7.62x39 Molot Arms 75-cartușe", + "5cbdc23eae9215001136a407 Name": "AK 7.62x39 Molot 75-cartușe butoi", "5cbdc23eae9215001136a407 ShortName": "Molot", "5cbdc23eae9215001136a407 Description": "Încărcător tip butoi din metal, capacitate 75 cartușe 7.62x39 pentru mitraliera RPK. Se potrivește pe orice armă AK compatibilă. Poate fi încărcat de asemenea cu muniție .366 TKM pentru armele AK de calibrul respectiv.", "5cc0858d14c02e000c6bea66 Name": "BEAR standard upper", @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "Laser Aiming Module cu punctator albastru produs de NcStar. Se montează pe orice șină Picatinny/Weaver pentru achiziționarea precisă a țintei.", "5cd945d71388ce000a659dfb Name": "BEAR base upper", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Combat shirt", "5cd946231388ce000d572fe3 Name": "BEAR base lower", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "ASh-12 mâner vertical", "5cda9bcfd7f00c0c0b53e900 ShortName": "ASh-12", "5cda9bcfd7f00c0c0b53e900 Description": "Mâner vertical pentru pușca de asalt ASh-12.", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "USEC base lower", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", "5cde9ec17d6c8b04723cf479 Name": "USEC base upper", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5267,12 +5267,12 @@ "5cdea3197d6c8b20b577f017 Name": "Worn windbreaker", "5cdea3197d6c8b20b577f017 ShortName": "", "5cdea3197d6c8b20b577f017 Description": "", - "5cdea3f87d6c8b647a3769b2 Name": "Adik pantaloni trening", + "5cdea3f87d6c8b647a3769b2 Name": "Abibas lower", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", - "5cdea42e7d6c8b0474535dad Name": "Adik hanorac trening", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", + "5cdea42e7d6c8b0474535dad Name": "Adik Tracksuit", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "M700 Magpul Pro 700 șasiu", "5cdeac22d7f00c000f26168f ShortName": "Pro700", "5cdeac22d7f00c000f26168f Description": "PRO 700 este un șasiu ușor și ergonomic conceput pentru Remington Model 700. Fabricat de Magpul.", @@ -5513,10 +5513,10 @@ "5d1340cad7ad1a0b0b249869 Name": "5.56x45 Magpul PMAG 30 GEN M3 W STANAG 30-cartușe (FDE)", "5d1340cad7ad1a0b0b249869 ShortName": "GEN M3", "5d1340cad7ad1a0b0b249869 Description": "Încărcător din polimer 30 cartușe cu fantă de observație Magpul PMAG GEN M3, pentru calibrul 5.56х45. Versiunea FDE - Pământiu Mat Închis.", - "5d135e83d7ad1a21b83f42d8 Name": "Pat AR-15 Magpul CTR Carbine(Negru)", + "5d135e83d7ad1a21b83f42d8 Name": "Magpul CTR Carbine pat (Negru)", "5d135e83d7ad1a21b83f42d8 ShortName": "CTR", "5d135e83d7ad1a21b83f42d8 Description": "Pat înlocuitor pentru carabinele AR-15/M16 fabricat de Magpul Original Equipment. Utilizat pe tuburile tampon dimensiune Mil-Spec. Profilul cadrului nu permite manetei de încărcare să se agațe și nici să se activeze accidental. Prevăzut din fabrică cu sprijin-umăr de 0.3 țoli care previne alunecarea chiar și atunci când operatorul este echipat cu armură sau echipament modular. Versiunea pe negru.", - "5d135ecbd7ad1a21c176542e Name": "Pat AR-15 Magpul CTR Carbine (FDE)", + "5d135ecbd7ad1a21c176542e Name": "Magpul CTR Carbine pat (FDE)", "5d135ecbd7ad1a21c176542e ShortName": "CTR FDE", "5d135ecbd7ad1a21c176542e Description": "Pat înlocuitor pentru carabinele AR-15/M16 fabricat de Magpul Original Equipment. Utilizat pe tuburile tampon dimensiune Mil-Spec. Profilul cadrului nu permite manetei de încărcare să se agațe și nici să se activeze accidental. Prevăzut din fabrică cu sprijin-umăr de 0.3 țoli care previne alunecarea chiar și atunci când operatorul este echipat cu armură sau echipament modular. Versiunea FDE - Pământiu Mat Închis.", "5d15ce51d7ad1a1eff619092 Name": "AKS-74U Alfa Arms Goliaf uluc", @@ -5627,7 +5627,7 @@ "5d1f56f186f7744bcb0acd1a Name": "USEC Woodland Infiltrator", "5d1f56f186f7744bcb0acd1a ShortName": "", "5d1f56f186f7744bcb0acd1a Description": "", - "5d1f56ff86f7743f8362bcd7 Name": "USEC PCS MultiCam", + "5d1f56ff86f7743f8362bcd7 Name": "USEC PCS Multicam", "5d1f56ff86f7743f8362bcd7 ShortName": "", "5d1f56ff86f7743f8362bcd7 Description": "", "5d1f588e86f7744bcc048753 Name": "BEAR Summerfield", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "BEAR Black Lynx", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", "5d1f60ae86f7744bcc04998b Name": "BEAR contractor t-shirt", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "FSB Fast Response", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "BEAR Ghost Marksman", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "BEAR Summer Field", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "USEC Aggressor TAC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "USEC Softshell Flexion", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "USEC Woodland Infiltrator", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", - "5d1f623886f7743014163027 Name": "USEC PCS MultiCam", + "5d1f623386f7744bcd135833 Description": "Combat shirt", + "5d1f623886f7743014163027 Name": "USEC PCS Multicam", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "USEC PCU Ironsight", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "FSB Urban Tact", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "BEAR Gorka Kobra", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "BEAR Gorka SSO", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "BEAR Striker Infil Ops", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "BEAR Summer Field", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "USEC Gen.2 Khyber", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "USEC Woodland Infiltrator", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "USEC Ranger Jeans", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "USEC Taclife Terrain", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "USEC TACRES", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "AR-10 Daniel Defense WAVE 7.62x51 atenuator", "5d1f819086f7744b355c219b ShortName": "WAVE 762", "5d1f819086f7744b355c219b Description": "Daniel Defense WAVE este un atenuator conceput pentru montajul fix a amortizororului Daniel Defense WAVE pe arma receptoare, dar care poate funcționa și independent de acesta. Este fabricat din oțel inoxidabil 17-4 PH folosit în industria aerospațială cu finisajul în baie de sare de azot pentru protecție maximă la coroziune.", @@ -5873,10 +5873,10 @@ "5d44064fa4b9361e4f6eb8b5 Name": "Thunder Beast Arms Ultra 5 Amortizor de Sunet", "5d44064fa4b9361e4f6eb8b5 ShortName": "Ultra 5", "5d44064fa4b9361e4f6eb8b5 Description": "Amortizorul de sunet Ultra 5 este conceput pentru calibrul 7.62x51 NATO, dar funcționează excelent ca și amortizor pentru mai multe calibre pe multiple platforme, oferă performanță excelentă pe calibrele 7.62 NATO,. 300 AAC, 6.8 SPC, 6.5, și 5.56mm NATO. Poate fi instalat doar pe sistemele cu dispozitivele de țeavă compatibile fabricate de Thunder Beast.", - "5d44069ca4b9361ebd26fc37 Name": "Pat AR-15 Magpul PRS GEN3 (Negru)", + "5d44069ca4b9361ebd26fc37 Name": "Magpul PRS GEN3 pat (Negru)", "5d44069ca4b9361ebd26fc37 ShortName": "PRS GEN3", "5d44069ca4b9361ebd26fc37 Description": "Magpul Precision Rifle/Sniper GEN3 este un pat pentru precizie pentru platformele AR-15/M16 și AR-10/SR-25. Oferă sprijin-umăr ajustabil fără unelte, obrăzar ajustabil cu buton de blocare din aluminiu, astfel patul PRS GEN3 oferă o interfață stabilă pentru foc semi-automat de lunetist sau pentru puști mai ușoare. Versiunea pe negru.", - "5d4406a8a4b9361e4f6eb8b7 Name": "Pat AR-15 Magpul PRS GEN3 (Gri)", + "5d4406a8a4b9361e4f6eb8b7 Name": "Magpul PRS GEN3 pat (Gri)", "5d4406a8a4b9361e4f6eb8b7 ShortName": "PRS GEN3", "5d4406a8a4b9361e4f6eb8b7 Description": "Magpul Precision Rifle/Sniper GEN3 este un pat pentru precizie pentru platformele AR-15/M16 și AR-10/SR-25. Oferă sprijin-umăr ajustabil fără unelte, obrăzar ajustabil cu buton de blocare din aluminiu, astfel patul PRS GEN3 oferă o interfață stabilă pentru foc semi-automat de lunetist sau pentru puști mai ușoare. Versiunea pe gri.", "5d440b93a4b9364276578d4b Name": "AR-15 5.56x45 țeavă 18 țoli", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "USEC Commando", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -5918,25 +5918,25 @@ "5d53f4b7a4b936793d58c780 Name": "PAG-17 vizor", "5d53f4b7a4b936793d58c780 ShortName": "PAG 17", "5d53f4b7a4b936793d58c780 Description": "Vizor de rază medie pentru aruncătorul de grenade AGS-30 pentru luarea precisă a țintei.", - "5d5d646386f7742797261fd9 Name": "6B3TM-01M vestă blindată (Khaki)", - "5d5d646386f7742797261fd9 ShortName": "6B3TM-01", - "5d5d646386f7742797261fd9 Description": "Vesta blindată modificată pentru uz militar 6B3 cu indexul 6B3TM-01. Utilizată în timpul războiului din Afganistan. Are protecție completă din titan clasa 4 GOST și un set de buzunare pentru încărcătoare și grenade.", - "5d5d85c586f774279a21cbdb Name": "Ham Tactic Haley Strategic D3CRX (Ranger Green)", + "5d5d646386f7742797261fd9 Name": "6B3TM-01M vestă blindată", + "5d5d646386f7742797261fd9 ShortName": "6B3TM-01M", + "5d5d646386f7742797261fd9 Description": "Vesta blindată modificată pentru uz militar 6B3 cu indexul 6B3TM-01M. Utilizată în timpul războiului din Afganistan. Are protecție completă din titan clasa 4 GOST și un set de buzunare pentru încărcătoare și grenade.", + "5d5d85c586f774279a21cbdb Name": "Haley Strategic D3CRX Ham tactic", "5d5d85c586f774279a21cbdb ShortName": "D3CRX", "5d5d85c586f774279a21cbdb Description": "Haley Strategice D3CRX ham tactic de luptă este una dintre cele mai respectate hamuri pentru PMC. Confortul și ușurința de utilizare sunt completate de un număr optim de buzunare.", - "5d5d87f786f77427997cfaef Name": "Purtător plăci Ars Arma A18 Skanda (MultiCam)", - "5d5d87f786f77427997cfaef ShortName": "A18 Skanda", - "5d5d87f786f77427997cfaef Description": "Purtător de plăci echipat cu buzunare în configurație de asalt. Fabricat de Ars Arma.", - "5d5d8ca986f7742798716522 Name": "SOE Micro Rig (MultiCam)", + "5d5d87f786f77427997cfaef Name": "Ars Arma A18 Skanda ham blindaje", + "5d5d87f786f77427997cfaef ShortName": "A18", + "5d5d87f786f77427997cfaef Description": "Ham purtarea plăcilor blindate (clasa a-4a de protecție) cu protecție a zonei pieptului și spatelui. Echipată și cu un set de buzunare.", + "5d5d8ca986f7742798716522 Name": "SOE ham micro", "5d5d8ca986f7742798716522 ShortName": "Ham micro", "5d5d8ca986f7742798716522 Description": "Ham mic și ușor prevăzut cu minimul necesar de buzunare. Fabricat de SOE Gear.", "5d5d940f86f7742797262046 Name": "Rucsac rezistent Oakley Mechanism (Negru)", "5d5d940f86f7742797262046 ShortName": "Mechanism", "5d5d940f86f7742797262046 Description": "Rucsacul Mechanism oferă versatilitate și durabilitate și este potrivit pentru orice aventură. Este prevăzut cu catarame, fermoare și închideri velcro rezistente la uzură care împreună creează siguranță în stocare, iar deschiderea cu clapa oferă spațiu pentru căratul articolelor voluminoase. Oferă o varietate de buzunare pentru organizare în stil militar și cu acces facil în timp ce bretelele căptușite ajustabile oferă confort în orice excursie.", - "5d5e7d28a4b936645d161203 Name": "Cască MSA ACH TC-2001 MICH Series (Olive Drab)", + "5d5e7d28a4b936645d161203 Name": "MSA ACH TC-2001 MICH Series cască", "5d5e7d28a4b936645d161203 ShortName": "TC-2001", "5d5e7d28a4b936645d161203 Description": "Cască MSA Advanced Combat (ACH) oferă protecție avansată balistică, de fragmentație și de impact în zona capului, cu confort sporit pentru utilizare îndelungată. Designul cu profil jos al căștii reduce riscul interferentelor în fixarea țintelor și asigură compatibilitate cu caști și dispozitive infraroșii.", - "5d5e9c74a4b9364855191c40 Name": "Cască MSA ACH TC-2002 MICH Series (Olive Drab)", + "5d5e9c74a4b9364855191c40 Name": "MSA ACH TC-2002 MICH Series cască", "5d5e9c74a4b9364855191c40 ShortName": "TC-2002", "5d5e9c74a4b9364855191c40 Description": "Cască MSA Advanced Combat (ACH) oferă protecție avansată balistică, de fragmentație și de impact în zona capului, cu confort sporit pentru utilizare îndelungată. Designul cu profil jos al căștii reduce riscul interferentelor în fixarea țintelor și asigură compatibilitate cu caști și dispozitive infraroșii.", "5d5fca1ea4b93635fd598c07 Name": "Ochelari tactici Crossbow", @@ -5960,7 +5960,7 @@ "5d6d2ef3a4b93618084f58bd Name": "Ochelari RayBench Aviator", "5d6d2ef3a4b93618084f58bd ShortName": "Aviator", "5d6d2ef3a4b93618084f58bd Description": "Ochelari legendari ai mercenarilor din întreaga lume. Poartă-i daca vrei să fii cool, ca și Vovan din cartier.", - "5d6d3716a4b9361bc8618872 Name": "Cască BNTI LȘZ-2DTM (Neagră)", + "5d6d3716a4b9361bc8618872 Name": "BNTI LShZ-2DTM cască", "5d6d3716a4b9361bc8618872 ShortName": "LShZ-2DTM", "5d6d3716a4b9361bc8618872 Description": "Casca \"LSHZ-2DTM” este destinată utilizării periodice cu scopul protecției față de gloanțele de calibrul mic la nivelul capului purtătorului, dar și pentru protecția față de aceleași proiectile la nivelul feței și gâtului atunci când casca este echipată cu vizor sau camail.", "5d6d3829a4b9361bc8618943 Name": "LShZ-2DTM vizor blindat", @@ -6164,7 +6164,7 @@ "5dcbe965e4ed22586443a79d Name": "Desert Tech 7.62x51 ascunzător flamă", "5dcbe965e4ed22586443a79d ShortName": "MDR 762", "5dcbe965e4ed22586443a79d Description": "Ascunzător de flamă produs de Desert Tech, special pentru pușca de asalt MDR 7.62x51 (.308).", - "5de652c31b7e3716273428be Name": "Molot Arms VPO-215 \"Gornostay\" .366 TKM pușcă cu zăvor", + "5de652c31b7e3716273428be Name": "Molot VPO-215 \"Gornostay\" .366 TKM pușcă cu zăvor", "5de652c31b7e3716273428be ShortName": "VPO-215 \"Gornostay\"", "5de652c31b7e3716273428be Description": "VPO-215 \"Gornostay\" (\"Hermelină\") este o pușcă rusească cu zăvor pentru vânătoare și tir sportiv, fabricată de Molot Arms. Calibrul este .366 TKM.", "5de653abf76fdc1ce94a5a2a Name": "VPO-215 \"Gornostay\" .366 TKM 4-cartușe", @@ -6272,10 +6272,10 @@ "5df8a2ca86f7740bfe6df777 Name": "6B2 vestă blindată (Flora)", "5df8a2ca86f7740bfe6df777 ShortName": "6B2", "5df8a2ca86f7740bfe6df777 Description": "Protecție individuală blindată veche din vremea războiului din Afghanistan, concepută pentru protecție împotriva gloanțelor de pistol și a schijelor. Și-a făcut misiune și apoi a fost înlocuită de o vestă cu protecție mai bună.", - "5df8a42886f77412640e2e75 Name": "Velocity Systems MPPV Multi-Purpose Patrol Vest (Wolf Grey)", + "5df8a42886f77412640e2e75 Name": "Velocity Systems MPPV Multi-Purpose Patrol Vest", "5df8a42886f77412640e2e75 ShortName": "MPPV", "5df8a42886f77412640e2e75 Description": "Multi-Purpose Patrol Vest este concepută pentru patrule unde nu este necesară armura. Un ham ușor cu multe buzunare. Fabricat de Velocity Systems.", - "5df8a4d786f77412672a1e3b Name": "6Sh118 rucsac raid (Digital Flora)", + "5df8a4d786f77412672a1e3b Name": "6Sh118 rucsac raid", "5df8a4d786f77412672a1e3b ShortName": "6Sh118", "5df8a4d786f77412672a1e3b Description": "6Sh118 rucsac de raid, face parte din a doua generație de echipament de luptă ”Ratnik”. Rucsacul tactic militar 6Sh118 este versiunea modernizată a rucsacului de raid 6B38 Permyachka și este conceput pentru a purta echipament de suport, arme, muniții, echipament montan și articole personale ale soldaților. Rucsacul poate fi folosit în operațiuni militare, raiduri și călătorii.", "5df8a58286f77412631087ed Name": "TSh-4M-L cască de tanchist", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "Cutie superioară pentru pușca SR-25, produs de Knight's Armament Company.", "5df8e5c886f7744a122d6834 Name": "BEAR Zaslon", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "Meteor", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "BEAR Oldschool", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "USEC TIER2", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "Sklon", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6359,7 +6359,7 @@ "5dfe6104585a0c3e995c7b82 Name": "NcSTAR ADO P4 Sniper 3-9x42 lunetă", "5dfe6104585a0c3e995c7b82 ShortName": "ADO P4", "5dfe6104585a0c3e995c7b82 Description": "Advance Dual Optic (ADO) 3X-9X lunetă cu grosisment variabil și lentilă obiectiv de 42mm. ADO Scope oferă un vizor reflex tip punct optic montat deasupra lunetei. Fabricat de NcSTAR.", - "5dff772da3651922b360bf91 Name": "VOMZ Pilad 4x32 25.4mm lunetă", + "5dff772da3651922b360bf91 Name": "VOMZ Pilad 4x32 24.5mm lunetă", "5dff772da3651922b360bf91 ShortName": "Pilad 4x32", "5dff772da3651922b360bf91 Description": "Pentru trageri la distanțe mici și medii. Luneta este utilizabilă pentru țintele mobile până la o distanță de 150m.", "5dff77c759400025ea5150cf Name": "Leapers UTG 25mm suport inelar lunetă", @@ -6491,24 +6491,24 @@ "5e42c83786f7742a021fdf3c Name": "Object #21WS cartelă", "5e42c83786f7742a021fdf3c ShortName": "#21WS", "5e42c83786f7742a021fdf3c Description": "Cartelă electronică de acces cu utilizare limitată cu sigla TerraGroup.", - "5e4abb5086f77406975c9342 Name": "LBT-6094A Slick vestă blindată (Neagră)", + "5e4abb5086f77406975c9342 Name": "LBT-6094A Slick vestă blindată", "5e4abb5086f77406975c9342 ShortName": "Slick", "5e4abb5086f77406975c9342 Description": "Purtător de plăci blindate de la compania London Bridge Trading. Cel mai minimalist concept destinat utilizării împreună cu hamurile tactice. Versiunea pe negru.", - "5e4abc1f86f774069619fbaa Name": "Spiritus Systems Bank Robber ham tactic (MultiCam Negru)", + "5e4abc1f86f774069619fbaa Name": "Spiritus Systems Bank Robber ham tactic", "5e4abc1f86f774069619fbaa ShortName": "Bank Robber", "5e4abc1f86f774069619fbaa Description": "Ham tactic ultra compact și ușor pentru mobilitate și confort. Fabricat de Spiritus Systems.", - "5e4abc6786f77406812bd572 Name": "LBT-2670 Slim Field Med Pack (Negru)", + "5e4abc6786f77406812bd572 Name": "LBT-2670 Slim Field Med Pack", "5e4abc6786f77406812bd572 ShortName": "SFMP", "5e4abc6786f77406812bd572 Description": "Rucsac medical cu profil redus, menit pentru a căra cantități mari de echipamente specializate medicale și consumabile. Fabricat de London Bridge Trading.", - "5e4abfed86f77406a2713cf7 Name": "Splav Tarzan M22 ham tactic (Smog)", + "5e4abfed86f77406a2713cf7 Name": "Splav Tarzan M22 ham tactic", "5e4abfed86f77406a2713cf7 ShortName": "Tarzan", - "5e4abfed86f77406a2713cf7 Description": "Ham tactic simplu și practic din 2002. Este utilizat de forțele de paza și poliție dar și de trăgătorii civili în Rusia. Versiunea cu camuflaj Smog.", - "5e4ac41886f77406a511c9a8 Name": "Ars Arma CPC MOD.1 vestă blindată (A-TACS FG)", + "5e4abfed86f77406a2713cf7 Description": "Ham tactic simplu și practic din 2002. Este utilizat de forțele de paza și poliție dar și de trăgătorii civili în Rusia.", + "5e4ac41886f77406a511c9a8 Name": "Ars Arma CPC MOD.1 vestă blindată", "5e4ac41886f77406a511c9a8 ShortName": "CPC MOD.1", - "5e4ac41886f77406a511c9a8 Description": "Prima generație de modificări ale vestei blindate CPC conceput original de Crye Precision și adaptat de Ars Arma pentru trupele speciale ale Federației Ruse. Această armură modulară e bazata pe un ham din polimer fixat pe corp ce previne deplasarea sau întoarcerea plăcilor blindate în timpul mișcării corpului ajutând de asemenea la distribuția egală a greutății. Configurația de buzunare este destinată misiunilor de asalt. Fabricat de Ars Arma.", + "5e4ac41886f77406a511c9a8 Description": "Prima generație de modificări ale vestei blindate CPC conceput original de Crye Precision și adaptat de Ars Arma pentru trupele speciale ale Federației Ruse. Această armură modulară e bazata pe un ham din polimer fixat pe corp ce previne deplasarea sau întoarcerea plăcilor blindate în timpul mișcării corpului ajutând de asemenea la distribuția egală a greutății. Configurația de buzunare și placaje blindate este destinată misiunilor de asalt. Fabricat de Ars Arma.", "5e4bb08f86f774069619fbbc Name": "BEAR Telnik", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,17 +6523,17 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "USEC TIER2", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "BEAR TIGR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "USEC Commando", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "Russia jacket", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", - "5e4bfc1586f774264f7582d3 Name": "MSA Gallet TC 800 High Cut cască blindată (Negru)", + "5e4bfc1586f774264f7582d3 Name": "MSA Gallet TC 800 High Cut cască blindată", "5e4bfc1586f774264f7582d3 ShortName": "TC 800", "5e4bfc1586f774264f7582d3 Description": "MSA TC 800 cască balistică dedicată trupelor tactice ale forțelor de intervenție, operațiunilor de luptă și cercetare. Poate fi modificată cu diverse componente.", "5e4d34ca86f774264f758330 Name": "Walker's Razor Digital căști", @@ -6599,7 +6599,7 @@ "5e81ebcd8e146c7080625e15 Name": "FN40GL Mk2 40mm aruncător de grenade", "5e81ebcd8e146c7080625e15 ShortName": "FN40GL", "5e81ebcd8e146c7080625e15 Description": "Ansamblu independent din pat de armă cu un aruncător de grenade FN40GL Mk2 atașat. Este compatibil cu întreaga gamă de grenade NATO standard de 40mm. Fabricat de Fabrique Nationale Herstal.", - "5e81edc13397a21db957f6a1 Name": "Manșon M1911A1", + "5e81edc13397a21db957f6a1 Name": "M1911A1 .45 ACP manșon", "5e81edc13397a21db957f6a1 ShortName": "1911 manșon", "5e81edc13397a21db957f6a1 Description": "Manșon standard pentru pistolul M1911A1, fabricat de Colt.", "5e81ee213397a21db957f6a6 Name": "M1911A1 cătare față", @@ -6638,13 +6638,13 @@ "5e848dc4e4dbc5266a4ec63d Name": "KS-23M pat sârmă", "5e848dc4e4dbc5266a4ec63d ShortName": "KS23M oțel", "5e848dc4e4dbc5266a4ec63d Description": "Pat metalic din sârmă pentru pușca de vânătoare KS-23M, fabricat de TOZ.", - "5e85a9a6eacf8c039e4e2ac1 Name": "23x75mm Shrapnel-10 alice", + "5e85a9a6eacf8c039e4e2ac1 Name": "23x75mm \"Shrapnel-10\" alice", "5e85a9a6eacf8c039e4e2ac1 ShortName": "Shrap-10", "5e85a9a6eacf8c039e4e2ac1 Description": "23x75mmR \"Shrapnel-10\" cartuș cu alice cu distanța maximă de bătaie de 10 metri.", - "5e85a9f4add9fe03027d9bf1 Name": "23x75mm Zvezda cartuș paralizant", + "5e85a9f4add9fe03027d9bf1 Name": "23x75mm \"Zvezda\" cartuș paralizant", "5e85a9f4add9fe03027d9bf1 ShortName": "Stea", "5e85a9f4add9fe03027d9bf1 Description": "23x75 mmR \"Zvezda\" (\"Stea\") grenadă paralizantă produsă pentru efectul psihologic paralizat pe care-l are împotriva inamicului.", - "5e85aa1a988a8701445df1f5 Name": "23x75mm Barrikada proiectil", + "5e85aa1a988a8701445df1f5 Name": "23x75mm \"Barrikada\" proiectil", "5e85aa1a988a8701445df1f5 ShortName": "Baricadă", "5e85aa1a988a8701445df1f5 Description": "A 23x75mmR \"Barrikada\" (\"Baricadă\") cartuș cu proiectil de oțel ce e capabil să distrugă blocul motor al unei mașini de la o distanță de 100 de metri.", "5e870397991fd70db46995c8 Name": "Mossberg 590A1 cal. 12 pușca de vânătoare cu pompă", @@ -6692,7 +6692,7 @@ "5e9dacf986f774054d6b89f4 Name": "FORT Defender-2 armură", "5e9dacf986f774054d6b89f4 ShortName": "Defender-2", "5e9dacf986f774054d6b89f4 Description": "FORT OK \"Defender-2\" kit operațional, un sistem bazat pe armura individuală FORT \"Defender\" concepută pentru VIP și trupe din operațiuni de luptă. Kitul utilizează la maxim modularitatea folosind o sumedenie de plăci blindate.", - "5e9db13186f7742f845ee9d3 Name": "LBT-1961A Load Bearing Ham Tactic (MAS Grey)", + "5e9db13186f7742f845ee9d3 Name": "LBT-1961A Load Bearing Ham Tactic", "5e9db13186f7742f845ee9d3 ShortName": "LBCR", "5e9db13186f7742f845ee9d3 Description": "Sistem tactic de purtare a greutăților conceput pentru încărcătoare, grenade, și echipament special, peste o vestă anti-glonț cu profil redus. Fabricat de London Bridge Trading.", "5e9dc97c86f774054c19ac9a Name": "bear_lower_tacliteTDU", @@ -6703,17 +6703,17 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "BEAR TIGR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "USEC Urban Responder", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "BEAR Zaslon", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "USEC Deep Recon", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", - "5e9dcf5986f7746c417435b3 Name": "Rucsac LBT-8005A Day Pack (MultiCam Negru)", + "5e9dccd686f774343b592592 Description": "Tactical pants", + "5e9dcf5986f7746c417435b3 Name": "LBT-8005A Day Pack rucsac", "5e9dcf5986f7746c417435b3 ShortName": "Day Pack", "5e9dcf5986f7746c417435b3 Description": "Rucsac simplu și fiabil de 14 litri în camuflaj Multicam Negru. Fabricat de London Bridge Trading.", "5e9de109f6164249e54453d2 Name": "Motocross jacket", @@ -6743,22 +6743,22 @@ "5ea05cf85ad9772e6624305d Name": "Tac-Kek FAST MT cască (Replică)", "5ea05cf85ad9772e6624305d ShortName": "TK FAST MT", "5ea05cf85ad9772e6624305d Description": "Cască cu protecție redusă, o replică a Ops-Core FAST MT Super High Cut Helmet de la Tac-Kek. Dispune de șine Ops-Core ARC pentru atașarea diferitelor componente.", - "5ea16acdfadf1d18c87b0784 Name": "AR-15 Geissele SMR MK16 uluc 9.5 țoli M-LOK (DDC)", + "5ea16acdfadf1d18c87b0784 Name": "AR-15 Geissele SMR MK16 uluc 9.5 țoli M-LOK", "5ea16acdfadf1d18c87b0784 ShortName": "SMR MK16 9.5\"", - "5ea16acdfadf1d18c87b0784 Description": "Geissele SMR uluc 9.5 țoli M-LOK pentru AR-15 echipat cu interfață M-LOK pentru instalarea dispozitivelor și accesoriilor. Versiunea Desert Dirt Color.", - "5ea16ada09aa976f2e7a51be Name": "AR-15 Geissele SMR MK16 uluc 13.5 țoli M-LOK (DDC)", + "5ea16acdfadf1d18c87b0784 Description": "Geissele SMR uluc 9.5 țoli M-LOK pentru AR-15 echipat cu interfață M-LOK pentru instalrea dispozitivelor și accesoriilor.", + "5ea16ada09aa976f2e7a51be Name": "AR-15 Geissele SMR MK16 uluc 13.5 țoli M-LOK", "5ea16ada09aa976f2e7a51be ShortName": "SMR MK16 13.5\"", - "5ea16ada09aa976f2e7a51be Description": "Geissele SMR uluc 13.5 țoli M-LOK pentru AR-15 echipat cu interfață M-LOK pentru instalarea dispozitivelor și accesoriilor. Versiunea Desert Dirt Color.", - "5ea16d4d5aad6446a939753d Name": "AR-15 Geissele SCH manetă încărcare (DDC)", + "5ea16ada09aa976f2e7a51be Description": "Geissele SMR uluc 13.5 țoli M-LOK pentru AR-15 echipat cu interfață M-LOK pentru instalrea dispozitivelor și accesoriilor.", + "5ea16d4d5aad6446a939753d Name": "AR-15 Geissele SCH manetă încărcare", "5ea16d4d5aad6446a939753d ShortName": "ACH", - "5ea16d4d5aad6446a939753d Description": "Manetă de încărcare Airborne Charging Handle pentru AR-15 și sisteme compatibile, produs de Geissele. Versiunea Desert Dirt Color.", - "5ea172e498dacb342978818e Name": "AR-15 SureFire SF4P 5.56x45 ascunzător flamă", - "5ea172e498dacb342978818e ShortName": "SF4P-556", + "5ea16d4d5aad6446a939753d Description": "Manetă de încărcare Airborne Charging Handle pentru AR-15 și sisteme compatibile, produs de Geissele.", + "5ea172e498dacb342978818e Name": "AR-15 SureFire SF4P FH556RC 5.56x45 ascunzător flamă", + "5ea172e498dacb342978818e ShortName": "FH556RC", "5ea172e498dacb342978818e Description": "Ascunzătorul de flamă avansat SureFire FH556RC-556, care se potrivește pe variantele M4/M16, oferă o reducere substanțială a flăcării la țeavă. Permite instalarea amortizoarelor SOCOM556 Quick Detach.", "5ea17bbc09aa976f2e7a51cd Name": "SureFire SOCOM556-RC2 5.56x45 amoritzor", "5ea17bbc09aa976f2e7a51cd ShortName": "556-RC2", "5ea17bbc09aa976f2e7a51cd Description": "Amortizor Surefire SOCOM556-RC2 calibrul 5.56х45 si .223. Poate fi instalat doar pe adaptoare cu filet compatibil produselor Surefire.", - "5ea17ca01412a1425304d1c0 Name": "Cască Diamond Age Bastion (Neagră)", + "5ea17ca01412a1425304d1c0 Name": "Diamond Age Bastion cască blindată", "5ea17ca01412a1425304d1c0 ShortName": "Bastion", "5ea17ca01412a1425304d1c0 Description": "Conform producătorului - casca Bastion este prima cască de luptă ce poate rezista unui foc de pușcă, chiar unui glonț penetrant la viteză de ieșire de pe țeavă.", "5ea18c84ecf1982c7712d9a2 Name": "Diamond Age Bastion placă blindată cască", @@ -6944,7 +6944,7 @@ "5f3e7801153b8571434a924c Name": "M1911A1 .45 ACP țeavă competiție National", "5f3e7801153b8571434a924c ShortName": "1911 NM", "5f3e7801153b8571434a924c Description": "Țeavă National Match competitivă pentru pistolul M1911A1 de calibru .45 ACP, fabricată de Colt.", - "5f3e7823ddc4f03b010e2045 Name": "Manșon M45A1", + "5f3e7823ddc4f03b010e2045 Name": "M45A1 .45 ACP manșon", "5f3e7823ddc4f03b010e2045 ShortName": "M45A1 manșon", "5f3e7823ddc4f03b010e2045 Description": "Manșon standard pentru pistolul M45A1, fabricat de Colt.", "5f3e7897ddc4f03b010e204a Name": "M45A1 Novak Lomount cătare spate", @@ -6977,24 +6977,24 @@ "5f5e46b96bdad616ad46d613 Name": "Eberlestock F4 Terminator rucsac portant (Tiger Stripe)", "5f5e46b96bdad616ad46d613 ShortName": "F4 Terminator", "5f5e46b96bdad616ad46d613 Description": "Rucsac de uz militar extrem de versatil cu capacitate mare. Fabricat de Eberlestock.", - "5f5f41476bdad616ad46d631 Name": "NPP KlASS Korund-VM vestă blindată (Neagră)", + "5f5f41476bdad616ad46d631 Name": "NPP KlASS Korund-VM vestă blindată", "5f5f41476bdad616ad46d631 ShortName": "Korund-VM", - "5f5f41476bdad616ad46d631 Description": "Vesta grea blindată anti-glonț NPP KlASS Korund-VM este concepută pentru unitățile Ministerului Afacerilor Interne.", - "5f5f41f56760b4138443b352 Name": "Direct Action Thunderbolt ham compact (Shadow Grey)", + "5f5f41476bdad616ad46d631 Description": "Vesta grea blindată anti-glonț NPP KlASS Korund-VM este concepută pentru unitățile Ministerului Afacerilor Oferă protecție sporită împotriva gloanțelor și schijelor. (clasa 5 de protecție GOST).", + "5f5f41f56760b4138443b352 Name": "Direct Action Thunderbolt ham compact", "5f5f41f56760b4138443b352 ShortName": "Thunderbolt", "5f5f41f56760b4138443b352 Description": "Thunderbolt ham tactic fixat pe piept, conține toate buzunarele utilitare de care poți avea nevoie. Fabricat de Direct Action.", "5f5f45df0bc58666c37e7832 Name": "BEAR G99", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "USEC Night Patrol", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "BEAR G99", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "USEC Urban Responder", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Scav Boot", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7004,7 +7004,7 @@ "5f5f653179db6e3f0e19b762 Name": "Scav Drystch", "5f5f653179db6e3f0e19b762 ShortName": "", "5f5f653179db6e3f0e19b762 Description": "", - "5f60b34a41e30a4ab12a6947 Name": "Cască Galvion Caiman Hybrid (Gri)", + "5f60b34a41e30a4ab12a6947 Name": "Galvion Caiman Hybrid cască", "5f60b34a41e30a4ab12a6947 ShortName": "Caiman", "5f60b34a41e30a4ab12a6947 Description": "Caiman Hybrid cască tactică ușoară de generație nouă pentru forțele speciale. Casca poate fi îmbunătățită cu ajutorul mai multor accesorii modulare ce pot să ofere protecție maximă a capului care este în același timp confortabilă și ușoară. Produs de Galvion.", "5f60b85bbdb8e27dee3dc985 Name": "Galvion Caiman Hybrid Ballistic Applique", @@ -7016,7 +7016,7 @@ "5f60c076f2bcbb675b00dac2 Name": "Galvion Caiman Hybrid Ballistic Mandible Guard", "5f60c076f2bcbb675b00dac2 ShortName": "Caiman BMG", "5f60c076f2bcbb675b00dac2 Description": "Modul special de protecție balistică pentru casca Caiman Hybrid, cu montaj pe șinele laterale. Fabricat de Galvion.", - "5f60c74e3b85f6263c145586 Name": "Rys-T cască blindată (Neagră)", + "5f60c74e3b85f6263c145586 Name": "Rys-T cască blindată", "5f60c74e3b85f6263c145586 ShortName": "Rys-T", "5f60c74e3b85f6263c145586 Description": "\"Rys-T\" (\"Lynx-T\") cască blindată, o versiune a faimoasei căști \"Altyn\" îmbunătățită și cu greutate redusă. Este casca de serviciu din dotarea trupelor de asalt ale Ministerului Afacerilor Interne al Rusiei. Poate fi echipată cu un vizor special blindat.", "5f60c85b58eff926626a60f7 Name": "Rys-T vizor blindat", @@ -7031,7 +7031,7 @@ "5f60e7788adaa7100c3adb49 Name": "Beretă (Albastră)", "5f60e7788adaa7100c3adb49 ShortName": "Beretă", "5f60e7788adaa7100c3adb49 Description": "Beretă albastră normală. Daca ar avea o emblemă atunci ar fi emblema de soldat VDV (Forțele Rusesti Aeropurtate). Dar aceasta este doar o beretă albastră.", - "5f60e784f2bcbb675b00dac7 Name": "Beretă (Olive Drab)", + "5f60e784f2bcbb675b00dac7 Name": "Beretă (Măslinie)", "5f60e784f2bcbb675b00dac7 ShortName": "Beretă", "5f60e784f2bcbb675b00dac7 Description": "Poți să zici că e o beretă verde dar defapt e una măslinie.", "5f6331e097199b7db2128dc2 Name": "AK TDI X47 sistem uluc tactic cu șine", @@ -7073,7 +7073,7 @@ "5f647d9f8499b57dc40ddb93 Name": "KS-23M 23x75 3-cartușe magazie", "5f647d9f8499b57dc40ddb93 ShortName": "KS-23Mx3", "5f647d9f8499b57dc40ddb93 Description": "Magazie 3 cartușe pentru KS-23M 23x75mm.", - "5f647f31b6238e5dd066e196 Name": "23x75mm Shrapnel-25 alice", + "5f647f31b6238e5dd066e196 Name": "23x75mm \"Shrapnel-25\" alice", "5f647f31b6238e5dd066e196 ShortName": "Shrap-25", "5f647f31b6238e5dd066e196 Description": "23x75mmR \"Shrapnel-25\" cartuș cu alice cu distanța maximă de bătaie de 25 metri.", "5f68c4c217d579077152a252 Name": "", @@ -7133,7 +7133,7 @@ "5fbb978207e8a97d1f0902d3 Name": "KRISS Vector Mk.5 șină modulară", "5fbb978207e8a97d1f0902d3 ShortName": "Mk.5", "5fbb978207e8a97d1f0902d3 Description": "Mk.5 sistem modular ce permite instalarea echipamentelor adiționale pe uluc.", - "5fbbaa86f9986c4cff3fe5f6 Name": "Pat AR-15 KRISS Defiance DS150 (Negru)", + "5fbbaa86f9986c4cff3fe5f6 Name": "KRISS Defiance DS150 pat (Negru)", "5fbbaa86f9986c4cff3fe5f6 ShortName": "DS150", "5fbbaa86f9986c4cff3fe5f6 Description": "Pat înlocuitor pentru carabinele AR-15/M16. Utilizat pe tuburile tampon dimensiune Mil-Spec. Profilul cadrului nu permite manetei de încărcare să se agațe și nici să se activeze accidental. Prevăzut din fabrică cu sprijin-umăr de 0.3 țoli care previne alunecarea chiar și atunci când operatorul este echipat cu armură sau echipament modular. Versiunea pe negru.", "5fbbc3324e8a554c40648348 Name": "KRISS Vector 9x19 ascunzător flamă", @@ -7298,7 +7298,7 @@ "5fce0f9b55375d18a253eff2 Name": "KRISS Vector șină laterală", "5fce0f9b55375d18a253eff2 ShortName": "Vector lat.", "5fce0f9b55375d18a253eff2 Description": "Șină laterală pentru pistolul-mitralieră KRISS Vector, permite instalarea dispozitivelor tactice.", - "5fce16961f152d4312622bc9 Name": "Pat AR-15 KRISS Defiance DS150 (FDE)", + "5fce16961f152d4312622bc9 Name": "KRISS Defiance DS150 pat (FDE)", "5fce16961f152d4312622bc9 ShortName": "DS150 FDE", "5fce16961f152d4312622bc9 Description": "Pat înlocuitor pentru carabinele AR-15/M16. Utilizat pe tuburile tampon dimensiune Mil-Spec. Profilul cadrului nu permite manetei de încărcare să se agațe și nici să se activeze accidental. Prevăzut din fabrică cu sprijin-umăr de 0.3 țoli care previne alunecarea chiar și atunci când operatorul este echipat cu armură sau echipament modular. Versiunea FDE - Pământiu Mat Închis.", "5fce3e0cfe40296c1d5fd782 Name": "bear_tshirt_termo", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "BEAR SRVV", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "USEC TIER3", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": ".300 Blackout AP", "5fd20ff893a8961fc660a954 ShortName": "AP", "5fd20ff893a8961fc660a954 Description": ".300 Blackout (7.62x35mm) cartuș cu glonț penetrat de 8.4 grame fabricat dintr-un cartuș 7.62x51mm NATO M80A1 având vârful penetrant din oțel peste un miez din aliaj de cupru și semi-cămașă din cupru, în tub de alamă. Acest glonț are anumite caracteristici când este tras din cartușul mai puternic și aceleași caracteresitici puțin afectate când este transferat într-un cartuș intermediar, rezultând un cartuș care poate penetra protecții balistice simple și intermediare oferind o putere de oprie considerabilă, și efecte substanțiale de distrugere a țintei lovite. Poate fi folosit cu încărcătoare STANAG 5.56x45mm NATO fără probleme.", "5fd3e77be504291efd0040ad Name": "USEC VEKTOR", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "BEAR Boreas", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "BEAR Grizzly", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "USEC Adaptive Combat", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7349,13 +7349,13 @@ "5fd4c5477a8d854fa0105061 Name": "Vestă pază", "5fd4c5477a8d854fa0105061 ShortName": "Paznic", "5fd4c5477a8d854fa0105061 Description": "Cea mai simplă și uzată vestă de paznici.", - "5fd4c60f875c30179f5d04c2 Name": "Gear Craft GC-BSS-MK1 ham tactic (A-TACS FG)", + "5fd4c60f875c30179f5d04c2 Name": "Gear Craft GC-BSS-MK1 ham tactic", "5fd4c60f875c30179f5d04c2 ShortName": "BSS-MK1", "5fd4c60f875c30179f5d04c2 Description": "Noua generație de hamuri cu sisteme de curele pe umeri, făcut pentru misiuni de patrulare și asalt.", - "5fd7910ae3bfcf6cab4c9f55 Name": "Scurtă impermeabilă", + "5fd7910ae3bfcf6cab4c9f55 Name": "Russia jacket", "5fd7910ae3bfcf6cab4c9f55 ShortName": "", "5fd7910ae3bfcf6cab4c9f55 Description": "", - "5fd791b71189a17bcc172f16 Name": "Turist", + "5fd791b71189a17bcc172f16 Name": "Russia jacket", "5fd791b71189a17bcc172f16 ShortName": "", "5fd791b71189a17bcc172f16 Description": "", "5fd8d28367cb5e077335170f Name": "Cagulă Smoke", @@ -7415,10 +7415,10 @@ "602a9740da11d6478d5a06dc Name": "Lebedev PL-15 9x19 pistol", "602a9740da11d6478d5a06dc ShortName": "PL-15", "602a9740da11d6478d5a06dc Description": "Pistol rusesc cu autoîncărcare de calibrul 9x19mm, dezvoltat de o echipă de ingineri din cadrul concernului Kalashnikov sub conducerea lui Dmitry Lebedev pentru a echipa forțele de ordine din Rusia.", - "602e3f1254072b51b239f713 Name": "AR-15 Soyuz-TM tub tampon", + "602e3f1254072b51b239f713 Name": "Soyuz-TM tub tampon", "602e3f1254072b51b239f713 ShortName": "STM tub", "602e3f1254072b51b239f713 Description": "Tubul tampon cu 4 poziții STM Arms Receiver Extension, diametru Com-Spec se potrivește pe orice carabină construită pe platforma AR-15.", - "602e620f9b513876d4338d9a Name": "Pat AR-15 FAB Defense GL-CORE", + "602e620f9b513876d4338d9a Name": "FAB Defense GL-CORE pat", "602e620f9b513876d4338d9a ShortName": "GL-CORE", "602e620f9b513876d4338d9a Description": "Pat telescopic, fabricat de FAB Defense. Are obrăzar integrat și adaptor de tub universal pentru tuburi tampon Mil-Spec și Com-Spec. Oferă eficiență și confort prin amortizorul de pat cauciucat integrat pentru schimbarea rapidă a poziției armei și manevrare ușoară.", "602e63fb6335467b0c5ac94d Name": "STM-9 9x19 cutie superioară", @@ -7475,10 +7475,10 @@ "603409c80ca681766b6a0fb2 Name": "NPP KlASS Condor ochelari", "603409c80ca681766b6a0fb2 ShortName": "Condor", "603409c80ca681766b6a0fb2 Description": "Ochelari foarte rezistenți balistici cu lentile rezistente la impact.", - "6034cf5fffd42c541047f72e Name": "Umka M33-SET1 vestă de vânătoare (Olive Drab)", + "6034cf5fffd42c541047f72e Name": "Umka M33-SET1 vestă de vânătoare", "6034cf5fffd42c541047f72e ShortName": "Umka", "6034cf5fffd42c541047f72e Description": "Umka M33-SET1 este o vestă concepută pentru vânători, călători, pădurari și ofițeri de poliție.", - "6034d0230ca681766b6a0fb5 Name": "CSA ham tactic (Negru)", + "6034d0230ca681766b6a0fb5 Name": "CSA ham tactic", "6034d0230ca681766b6a0fb5 ShortName": "CSA", "6034d0230ca681766b6a0fb5 Description": "Cel mai simplu ham, cusut rapid din materiale găsite. Pentru airsoft, uzul militar este posibil dar nu este recomandat.", "6034d103ca006d2dca39b3f0 Name": "Hazard 4 Takedown rucsac (Negru)", @@ -7519,19 +7519,19 @@ "603648ff5a45383c122086ac Description": "Sistem simplu din nylon cu buzunare cusute. Permite transportul unei cantități impresionate de muniție cu costul confortului.", "6038b228af2e28262649af14 Name": "BEAR Rash Guard", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "USEC Sandstone", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", - "6038b4b292ec1c3103795a0b Name": "LBT-6094A Slick vestă blindată (Coyote Tan)", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", + "6038b4b292ec1c3103795a0b Name": "LBT-6094A Slick vestă blindată (Tan)", "6038b4b292ec1c3103795a0b ShortName": "Slick", - "6038b4b292ec1c3103795a0b Description": "Purtător de plăci blindate de la compania London Bridge Trading. Cel mai minimalist concept destinat utilizării împreună cu hamurile tactice. Versiunea Coyote Tan.", + "6038b4b292ec1c3103795a0b Description": "Purtător de plăci blindate de la compania London Bridge Trading. Cel mai minimalist concept destinat utilizării împreună cu hamurile tactice. Versiunea maro.", "6038b4ca92ec1c3103795a0d Name": "LBT-6094A Slick vestă blindată (Olive Drab)", "6038b4ca92ec1c3103795a0d ShortName": "Slick", "6038b4ca92ec1c3103795a0d Description": "Purtător de plăci blindate de la compania London Bridge Trading. Cel mai minimalist concept destinat utilizării împreună cu hamurile tactice. Versiunea pe măsliniu.", - "6038d614d10cbf667352dd44 Name": "Hazard 4 Takedown rucsac (MultiCam)", + "6038d614d10cbf667352dd44 Name": "Hazard 4 Takedown rucsac (Multicam)", "6038d614d10cbf667352dd44 ShortName": "Takedown", - "6038d614d10cbf667352dd44 Description": "Rucsac cu o singură bretea conceput pentru transportul armelor cu țeavă lungă. Buzunarele suplimentare sunt destinate transportului de încărcătoare, truselor de curățare, sau a pieselor de schimb. Fabricat de Hazard 4. Versiunea camuflaj MultiCam.", + "6038d614d10cbf667352dd44 Description": "Rucsac single-strap conceput pentru transportul armelor cu țeavă lungă. Buzunarele suplimentare sunt destinate transportului de încărcătoare, truselor de curățare, sau a pieselor de schimb. Fabricat de Hazard 4. Versiunea camuflaj multicam.", "60391a8b3364dc22b04d0ce5 Name": "Borcan cu termit", "60391a8b3364dc22b04d0ce5 ShortName": "Termit", "60391a8b3364dc22b04d0ce5 Description": "Termitul este un amestec incendiar de pudră de aluminiu cu oxid de fier. Acești compuși au o temperatură de ardere foarte ridicată și pot să ardă fără alimentare cu oxinge. Termitul arde foarte puternic și este aproape imposibil de stins.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "TP-200 este o încărcătura explozivă utilizată în sondajele seismice, ca și detonator intermediar în declanșarea explozibilului minier, demolarea construcțiilor sau operațiuni speciale ce necesită detonări.", "603d01a1b41c9b37c6592047 Name": "BEAR VOIN", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "USEC Sage Warrior", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Azimut SS \"Zhuk\" vestă tactică (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Zhuk", "6040dd4ddcf9592f401632d2 Description": "Sistem simplu din nylon cu buzunare cusute. Permite transportul unei cantități impresionate de muniție cu costul confortului. Versiunea camuflaj SURPAT.", @@ -7568,7 +7568,7 @@ "606587bd6d0bd7580617bacc Name": "Mk47 manetă încărcare ambidextră", "606587bd6d0bd7580617bacc ShortName": "Mk47 Ambi", "606587bd6d0bd7580617bacc Description": "Manetă de încărcare pentru pușca de asalt Mk47 Mutant. Zăvoarele ambidextre permit operarea ușoară a armei indiferend de mâna folosită pentru armare. Fabricat de CMMG.", - "606587d11246154cad35d635 Name": "Pat AR-15 CMMG RipStock", + "606587d11246154cad35d635 Name": "CMMG RipStock pat", "606587d11246154cad35d635 ShortName": "RipStock", "606587d11246154cad35d635 Description": "RipStock este un pat minimalist telescopic proiectat pentru ajustare extrem de rapidă la nevoia utilizatorului. Fabricat de CMMG.", "606587e18900dc2d9a55b65f Name": "CMMG tub tampon", @@ -7681,7 +7681,7 @@ "609a4b4fe2ff132951242d04 Description": "Suport de aluminiu pentru instalarea colimatoarelor și a unor diverse accesorii, poate fi găsit în VPO-102 Vepr-Hunter. Fabricat de Arbalet.", "609a63b6e2ff132951242d09 Name": "Valday Krechet vizor reflex", "609a63b6e2ff132951242d09 ShortName": "Krechet", - "609a63b6e2ff132951242d09 Description": "Krechet vizor reflex conceput pentru tragere de precizie pe zi sau pe noapte atunci când este utilizat în combinație cu o vedere pe timp de noapte.", + "609a63b6e2ff132951242d09 Description": "Krechet vizor reflex conceput pentru tragere de precizie pe zi sau pe noapte atunci când este utilizat în combinație cu o vedere pe timp de noapte. Fabricat de Valday.", "609b9e31506cf869cf3eaf41 Name": "VOMZ Pilad TargetRing colimator reflex", "609b9e31506cf869cf3eaf41 ShortName": "TargetRing", "609b9e31506cf869cf3eaf41 Description": "Special conceput pentru vânatul păsărilor și a animalelor mici, pentru trageri de antrenament la ținte fixe sau mobile. Pentru acest scop, creează un cerc de contrast pe țintă oferind trăgătorului ocazia de a conduce ținta fără să piardă viteză. Se montează doar pe puști cu țeavă lisă.", @@ -7693,14 +7693,14 @@ "609e8540d5c319764c2bc2e9 Description": "THOR Concealable Reinforced Vest este o vestă blindată potrivită pentru purtarea ascunsă a unei protecții de 360 grade împotriva schijelor și a gloanțelor de calibru mic. Adăugarea de placi blindate permite protecție împotriva munițiilor de calibru mare pentru organele vitale. Forma ergonomică a plăcilor de blindaj și pozitia plăcii posterioare combinată cu suportul lombar ar curelei oferă confort și stabilitate aproape de centrul de masă al corpului. Fabricată de NFM.", "609e860ebd219504d8507525 Name": "Crye Precision AVS vestă cu blindaj (Tagilla Edition)", "609e860ebd219504d8507525 ShortName": "AVS TE", - "609e860ebd219504d8507525 Description": "Vesta blindată a lui Tagilla, foarte uzată, este bazată pe sistemul AVS modul de la Crye Precision. Are un panou frontal cu trei buzunare pentru 3 încărcătoare. Și cam atât. Nu mai mult, nu mai puțin.", + "609e860ebd219504d8507525 Description": "Vesta blindată a lui Tagilla este bazată pe sistemul AVS modul de la Crye Precision. Are un panou frontal cu trei buzunare atașate. Și cam atât. Nu mai mult, nu mai puțin.", "60a23797a37c940de7062d02 Name": "SIG Sauer ROMEO8T vizor cu reflexie", "60a23797a37c940de7062d02 ShortName": "ROMEO8T", "60a23797a37c940de7062d02 Description": "ROMEO8T vizor reflex conceput pentru tragere de precizie cu puști moderne de competiție și de vânătoare. Fabricat de SIG Sauer.", "60a272cc93ef783291411d8e Name": "Hazard 4 Drawbridge rucsac (Coyote Tan)", "60a272cc93ef783291411d8e ShortName": "Drawbridge", "60a272cc93ef783291411d8e Description": "Drawbridge este un rucsac ergonomic de mărime medie, de 25 litri cu un număr impresionant de buzunare și legături modulare. Fabricat de Hazard 4.", - "60a2828e8689911a226117f9 Name": "Rucsac Hazard 4 Pillbox (Negru)", + "60a2828e8689911a226117f9 Name": "Hazard 4 Pillbox rucsac", "60a2828e8689911a226117f9 ShortName": "Pillbox", "60a2828e8689911a226117f9 Description": "Rucsac compact pentru stocarea în siguranță a obiectelor fragile, electronice și altele. Sistemul MOLLE este regăsit prin laterale, curele și interior, iar împreună cu legăturile tip velcro oferă posibilitatea de atașare a buzunarelor și a altor sisteme. Produs de Hazard 4.", "60a283193cb70855c43a381d Name": "NFM THOR Integrated Carrier armură", @@ -7717,10 +7717,10 @@ "60a3b65c27adf161da7b6e14 Description": "Dosar cu documente militare și hărți. Extrem de valoroase pentru interesele străine.", "60a3c68c37ea821725773ef5 Name": "CQC Osprey MK4A vestă cu blindaj (Protection, MTP)", "60a3c68c37ea821725773ef5 ShortName": "Osprey MK4A (P)", - "60a3c68c37ea821725773ef5 Description": "Osprey vestă cu blindaj utilizată de armata și specialiștii britanici. Configurația aceasta: Protection este dotată cu un număr optim de buzunare pentru muniție, grenade și echipamente speciale.", + "60a3c68c37ea821725773ef5 Description": "Osprey vestă cu blindaj utilizată de armata și specialiștii britanici. Configurația aceasta: Protection este dotată cu plăci blindate grele și un număr optim de buzunare pentru muniție, grenade și echipamente speciale.", "60a3c70cde5f453f634816a3 Name": "CQC Osprey MK4A vestă cu blindaj (Assalut, MTP)", "60a3c70cde5f453f634816a3 ShortName": "Osprey MK4A (A)", - "60a3c70cde5f453f634816a3 Description": "Osprey vestă cu plăci blindate utilizată de armata și specialiștii britanici. Configurația aceasta: Assault este dotată cu un număr mare de buzunare pentru muniție, grenade și echipamente speciale.", + "60a3c70cde5f453f634816a3 Description": "Osprey vestă cu blindaj utilizată de armata și specialiștii britanici. Configurația aceasta: Assault este dotată cu plăci blindate grele și numărul maxim de buzunare pentru muniție, grenade și echipamente speciale.", "60a621c49c197e4e8c4455e6 Name": "Stich Profi Chest Rig MK2 (Assault, A-TACS FG)", "60a621c49c197e4e8c4455e6 ShortName": "CR MK2 (A)", "60a621c49c197e4e8c4455e6 Description": "\"Chest-Rig\" este un sistem tactic ce poate fi folosit independent sau ca și blindaj suplimentar fără sistemul MOLLE. Ideal pentru instructorii militari și unitățile speciale. Acesta este configurat pentru asalt cu camuflaj A-TACS. Fabricat de Stich Profi.", @@ -7754,7 +7754,7 @@ "60b0f93284c20f0feb453da7 Name": "Doză de RatCola", "60b0f93284c20f0feb453da7 ShortName": "RatCola", "60b0f93284c20f0feb453da7 Description": "RatCola este o băutură în ediție limitată de la firma General Sam. Rețeta secretă a acestei băuturi încă rămâne un mister.", - "60b0f988c4449e4cb624c1da Name": "Banderolă (Evasion)", + "60b0f988c4449e4cb624c1da Name": "Banderolă Evasion", "60b0f988c4449e4cb624c1da ShortName": "Evasion", "60b0f988c4449e4cb624c1da Description": "Banderolă specială de identificare de la Evasion, un turneu local de sporturi electronice al Sigma.", "60b52e5bc7d8103275739d67 Name": "Stich Profi Chimera Pălărie", @@ -7765,7 +7765,7 @@ "60bf74184a63fc79b60c57f6 Description": "Simbolul hearldic al bădăranilor urbani. Trebuie purtat corect, altfel, proprietățile magice ale căciulii beanie nu vor avea efect.", "60c080eb991ac167ad1c3ad4 Name": "Sistem de Navigație Integrat MBT", "60c080eb991ac167ad1c3ad4 ShortName": "MBT NC", - "60c080eb991ac167ad1c3ad4 Description": "Blocul de control central pentru complexul de navigație GALS-D3 de pe tancurile T-72 și T-90.", + "60c080eb991ac167ad1c3ad4 Description": "Blocul de control central pentru complexul de navigație GALS-DZ de pe tancurile T-72 și T-90.", "60c7272c204bc17802313365 Name": "Pockets 1x3", "60c7272c204bc17802313365 ShortName": "Pockets 1x3", "60c7272c204bc17802313365 Description": "Pockets 1x3", @@ -7841,7 +7841,7 @@ "615d8da4d3a39d50044c10e8 Name": "Glock TangoDown AAM-01 ACRO suport montaj", "615d8da4d3a39d50044c10e8 ShortName": "G TD", "615d8da4d3a39d50044c10e8 Description": "TangoDown suport montaj pentru colimatorul reflex Aimpoint ACRO pe manșonul Glock MOS pentru a îmbunătății caracteristicile armei.", - "615d8dbd290d254f5e6b2ed6 Name": "Manșon Glock 17 MOS", + "615d8dbd290d254f5e6b2ed6 Name": "Glock 17 9x19 MOS manșon", "615d8dbd290d254f5e6b2ed6 ShortName": "G MOS", "615d8dbd290d254f5e6b2ed6 Description": "MOS (Modular Optic System) manșon pentru pistolul Glock 9x19, produs de Glock.", "615d8df08004cc50514c3236 Name": "HK MP5 B&T QD 9x19 atenuator recul", @@ -7955,7 +7955,7 @@ "617154aa1cb55961fa0fdb3b Name": "HK417 E2 pat", "617154aa1cb55961fa0fdb3b ShortName": "HK E2", "617154aa1cb55961fa0fdb3b Description": "Patul telescopic E2 este conceput pentru a înlocui paturile standard HK417. Produs din fibră de nylon de calitate cu un amortizor de pat cauciucat detașabil și inel de curea ambidextru. Poate fi instalat pe tuburile tampon HK417/G28. Fabricat de Heckler & Koch.", - "617155ee50224f204c1da3cd Name": "Pat ajustabil HK417", + "617155ee50224f204c1da3cd Name": "HK pat ajustabil", "617155ee50224f204c1da3cd ShortName": "HK Aj.", "617155ee50224f204c1da3cd Description": "Pat ajustabil conceput și fabricat de Heckler & Koch. Acest pat este complet ajustabil pe lungime dar și pe înălțimea obrăzarului. Prevăzut cu suport special pentru obrăzar.", "61715e7e67085e45ef140b33 Name": "HK obrăzar ajustabil", @@ -8102,9 +8102,9 @@ "618bab21526131765025ab3f Name": "Geissele Super Precision 30mm suport lunetă inelar (DDC)", "618bab21526131765025ab3f ShortName": "Geis 30mm", "618bab21526131765025ab3f Description": "Suport de lunetă universal de 30mm pentru instalarea pe șine Picatinny. Fabricat de Geissele. Versiunea Desert Dirt Color.", - "618bb76513f5097c8d5aa2d5 Name": "Gruppa 99 T20 rucsac (Umber Brown)", + "618bb76513f5097c8d5aa2d5 Name": "Gruppa 99 T20 rucsac", "618bb76513f5097c8d5aa2d5 ShortName": "T20", - "618bb76513f5097c8d5aa2d5 Description": "Rucsac cu volum de 22 de litri și ham ergonomic pentru misiuni pe timp scurt. Rucsacul poate fi folosit atât pentru operațiuni cât și pentru uz urban. Cu împachetare corectă, volumul interior al rucsacului poate ajunge la 25-27 litri. Conceptul minimalist și funcționalitatea militară sunt utile în mediul urban. Fabricat de Gruppa 99. Versiunea Umber Brown.", + "618bb76513f5097c8d5aa2d5 Description": "Rucsac cu volum de 22 de litri și ham ergonomic pentru misiuni pe timp scurt. Rucsacul poate fi folosit atât pentru operațiuni cât și pentru uz urban. Cu împachetare corectă, volumul interior al rucsacului poate ajunge la 25-27 litri. Conceptul minimalist și funcționalitatea militară sunt utile în mediul urban. Fabricat de Gruppa 99.", "618cfae774bb2d036a049e7c Name": "LBT-1476A 3Day Pack (Woodland)", "618cfae774bb2d036a049e7c ShortName": "LBT-1476A", "618cfae774bb2d036a049e7c Description": "Rucsac de mărime medie tip 3-day conceput pentru uz militar și civil. Fabricat de London Bridge Trading.", @@ -8239,46 +8239,46 @@ "619b69037b9de8162902673e Description": "Destinat civililor și militarilor de asemenea. Patul CQR47 poate fi montat cu ușurință în locul patului standard fix de la AK/AKM. Fabricat de Hera Arms.", "619b99ad604fcc392676806c Name": "BEAR Recon", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "USEC K4", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", - "619bc61e86e01e16f839a999 Name": "Banderolă (Alpha)", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", + "619bc61e86e01e16f839a999 Name": "Banderolă Alpha", "619bc61e86e01e16f839a999 ShortName": "Alpha", "619bc61e86e01e16f839a999 Description": "Banderolă pentru veteranii care sunt aici din vremea Alpha.", - "619bdd8886e01e16f839a99c Name": "Banderolă (BEAR)", + "619bdd8886e01e16f839a99c Name": "Banderolă BEAR", "619bdd8886e01e16f839a99c ShortName": "BEAR", "619bdd8886e01e16f839a99c Description": "Banderolă pentru operatorii înrăiți BEAR.", - "619bddc6c9546643a67df6ee Name": "Banderolă (DEADSKUL)", + "619bddc6c9546643a67df6ee Name": "Banderolă DEADSKUL", "619bddc6c9546643a67df6ee ShortName": "DEADSKUL", "619bddc6c9546643a67df6ee Description": "Banderolă de la Amanet, doar pentru colecționarii adevărați.", - "619bddffc9546643a67df6f0 Name": "Banderolă (Train Hard)", + "619bddffc9546643a67df6f0 Name": "Banderolă Antrenament Dificil", "619bddffc9546643a67df6f0 ShortName": "THGP", "619bddffc9546643a67df6f0 Description": "Banderolă de la Pădurar. ”Pică de 715 ori și ridică-te de 716 ori.”", - "619bde3dc9546643a67df6f2 Name": "Banderolă (Kiba Arms)", + "619bde3dc9546643a67df6f2 Name": "Banderolă Kiba Arms", "619bde3dc9546643a67df6f2 ShortName": "Kiba", "619bde3dc9546643a67df6f2 Description": "Banderolă pentru angajații Kiba Arms.", - "619bde7fc9546643a67df6f4 Name": "Banderolă (Labs)", + "619bde7fc9546643a67df6f4 Name": "Banderolă Labs", "619bde7fc9546643a67df6f4 ShortName": "Labs", "619bde7fc9546643a67df6f4 Description": "Banderolă pentru angajații din Laboratoarele TerraGroup.", - "619bdeb986e01e16f839a99e Name": "Banderolă (RFARMY)", + "619bdeb986e01e16f839a99e Name": "Banderolă RFARMY", "619bdeb986e01e16f839a99e ShortName": "RFARMY", "619bdeb986e01e16f839a99e Description": "Banderolă cu drapelul rusesc. Utilizată de contingentul Forțelor Armate ale Federației Ruse pe teritoriul orașului Tarkov și împrejurimi.", - "619bdef8c9546643a67df6f6 Name": "Banderolă (TerraGroup)", + "619bdef8c9546643a67df6f6 Name": "Banderolă TerraGroup", "619bdef8c9546643a67df6f6 ShortName": "TG", "619bdef8c9546643a67df6f6 Description": "Banderolă pentru membrii pazei TerraGroup.", - "619bdf9cc9546643a67df6f8 Name": "Banderolă (UNTAR)", + "619bdf9cc9546643a67df6f8 Name": "Banderolă UNTAR", "619bdf9cc9546643a67df6f8 ShortName": "UNTAR", "619bdf9cc9546643a67df6f8 Description": "Banderolă pentru trupele ONU în Tarkov.", - "619bdfd4c9546643a67df6fa Name": "Banderolă (USEC)", + "619bdfd4c9546643a67df6fa Name": "Banderolă USEC", "619bdfd4c9546643a67df6fa ShortName": "USEC", "619bdfd4c9546643a67df6fa Description": "Banderolă pentru operatorii înrăiți USEC.", "619bf75264927e572d0d5853 Name": "BEAR Sumrak", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "Furtun ondulat Militar", "619cbf476b8a1b37a54eebf8 ShortName": "FurtunM", "619cbf476b8a1b37a54eebf8 Description": "Furtun ondulat militar pentru sistemele de ventilație din vehiculele de armată și pentru sistemele de purificare a aerului.", @@ -8297,9 +8297,9 @@ "619cc01e0a7c3a1a2731940c Name": "Instrumente medicale", "619cc01e0a7c3a1a2731940c ShortName": "InstMed", "619cc01e0a7c3a1a2731940c Description": "Set medical care conține instrumente necesare unei operații chirurgicale.", - "619cf0335771dd3c390269ae Name": "Gruppa 99 T20 rucsac (MultiCam)", + "619cf0335771dd3c390269ae Name": "Gruppa 99 T20 rucsac (Multicam)", "619cf0335771dd3c390269ae ShortName": "T20", - "619cf0335771dd3c390269ae Description": "Rucsac cu volum de 22 de litri și ham ergonomic pentru misiuni pe timp scurt. Rucsacul poate fi folosit atât pentru operațiuni cât și pentru uz urban. Cu împachetare corectă, volumul interior al rucsacului poate ajunge la 25-27 litri. Conceptul minimalist și funcționalitatea militară sunt utile în mediul urban. Fabricat de Gruppa 99. Versiunea cu camuflaj MultiCam.", + "619cf0335771dd3c390269ae Description": "Rucsac cu volum de 22 de litri și ham ergonomic pentru misiuni pe timp scurt. Rucsacul poate fi folosit atât pentru operațiuni cât și pentru uz urban. Cu împachetare corectă, volumul interior al rucsacului poate ajunge la 25-27 litri. Conceptul minimalist și funcționalitatea militară sunt utile în mediul urban. Fabricat de Gruppa 99. Versiunea cu camuflaj multicam.", "619d36da53b4d42ee724fae4 Name": "MTs-255-12 cal 12 șoc", "619d36da53b4d42ee724fae4 ShortName": "MTs șoc", "619d36da53b4d42ee724fae4 Description": "Șoc dintr-un tub alezat destinat puștilor MTs-255. Fabricat de TsKIB.", @@ -8315,12 +8315,12 @@ "619f4d304c58466fe1228437 Name": "Chiappa Rhino cătare față", "619f4d304c58466fe1228437 ShortName": "CR CF", "619f4d304c58466fe1228437 Description": "Cătare standard față pentru revolverul Rhino, produs de Chiappa Firearms.", - "619f4f8c4c58466fe1228439 Name": "Chiappa Rhino Red Fiber Optic cătare spate", - "619f4f8c4c58466fe1228439 ShortName": "CR RFS", - "619f4f8c4c58466fe1228439 Description": "Cătare spate Red Fiber tritium pentru revolverul Rhino, produs de Chiappa Firearms.", - "619f52454c58466fe122843b Name": "Chiappa Rhino Red Fiber Optic cătare față", - "619f52454c58466fe122843b ShortName": "CR RFF", - "619f52454c58466fe122843b Description": "Cătare față Red Fiber tritium pentru revolverul Rhino, produs de Chiappa Firearms.", + "619f4f8c4c58466fe1228439 Name": "Chiappa Rhino Green Fiber Optic cătare spate", + "619f4f8c4c58466fe1228439 ShortName": "CR GF", + "619f4f8c4c58466fe1228439 Description": "Cătare spate Green Fiber tritium pentru revolverul Rhino, produs de Chiappa Firearms.", + "619f52454c58466fe122843b Name": "Chiappa Rhino Green Fiber Optic cătare față", + "619f52454c58466fe122843b ShortName": "CR GF", + "619f52454c58466fe122843b Description": "Cătare față Green Fiber tritium pentru revolverul Rhino, produs de Chiappa Firearms.", "619f54a1d25cbd424731fb99 Name": "Chiappa Rhino .357 butoiaș 6-cartușe", "619f54a1d25cbd424731fb99 ShortName": "CR but.", "619f54a1d25cbd424731fb99 Description": "Butoiaș de 6 cartușe .357 pentru revolverul Chiappa Rhino.", @@ -8333,13 +8333,13 @@ "61a00bcb177fb945751bbe6a Name": "Documente militare furate", "61a00bcb177fb945751bbe6a ShortName": "Documente militare", "61a00bcb177fb945751bbe6a Description": "Documente militare furate", - "61a49f549128666d8302b5f1 Name": "Raincoat", + "61a49f549128666d8302b5f1 Name": "SavageKitUpperYellowcoat", "61a49f549128666d8302b5f1 ShortName": "", "61a49f549128666d8302b5f1 Description": "", "61a4a06dba63c0388e05613e Name": "Roadside maniac", "61a4a06dba63c0388e05613e ShortName": "", "61a4a06dba63c0388e05613e Description": "", - "61a4a138ba63c0388e056140 Name": "Bomber", + "61a4a138ba63c0388e056140 Name": "SavageKitUpperBomber", "61a4a138ba63c0388e056140 ShortName": "", "61a4a138ba63c0388e056140 Description": "", "61a4a1c59128666d8302b5f3 Name": "Lower bomber", @@ -8384,7 +8384,7 @@ "61bc85697113f767765c7fe7 Name": "Vestă cu blindaj MMAC Eagle Industries (Ranger Green)", "61bc85697113f767765c7fe7 ShortName": "MMAC", "61bc85697113f767765c7fe7 Description": "Eagle Industries Multi-Mission Tactical Vest (MMAC) este o vestă cu profil tradițional ce oferă modularitate și scalabilitate. Vesta tactică este produsă cu nylon MIL-SPEC 500 și are legături compatibile MOLLE/PALS. Prezintă căptușeală pe umeri cu curele detașabile, atașament push-to-talk (PTT) pe stânga și pe dreapta sus a pieptului, precum și alte caracteristici.", - "61bca7cda0eae612383adf57 Name": "NFM HJELM cască (Hellhound Grey)", + "61bca7cda0eae612383adf57 Name": "NFM HJELM cască", "61bca7cda0eae612383adf57 ShortName": "HJELM", "61bca7cda0eae612383adf57 Description": "Noul sistem HJELM aplică noi idei pentru modularitatea atașamentelor și electronicelor fără greutatea și grosimea generațiilor anterioare. Fabricat de NFM.", "61bcc89aef0f505f0c6cd0fc Name": "FirstSpear Strandhogg vestă cu blindaj (Ranger Green)", @@ -8395,7 +8395,7 @@ "61bf7b6302b3924be92fa8c3 Description": "Diverse piese tehnice metalice, distanțiere, cleme, etc. Foarte utile pentru reparații ale angrenajelor și ansamblurilor mecanice.", "61bf7c024770ee6f9c6b8b53 Name": "Caseta cu bandă magnetică antișoc", "61bf7c024770ee6f9c6b8b53 ShortName": "SMT", - "61bf7c024770ee6f9c6b8b53 Description": "Casetă cu bandă magnetică special securizată SMT. Conține informații importante. Mediile de stocare magnetice sunt încă apreciate în tehnologia informației, mai ales din cauza fiabilității datelor stocate analogic.", + "61bf7c024770ee6f9c6b8b53 Description": "Casetă cu bandă magnetică special securizată SMT. Conține informații de valoare cu certitudine. Mediile de stocare magnetice sunt încă apreciate în tehnologia informație, mai ales în cauza fiabilității datelor stocate analogic.", "61bf83814088ec1a363d7097 Name": "Trusă cusut", "61bf83814088ec1a363d7097 ShortName": "Krasavchik", "61bf83814088ec1a363d7097 Description": "\"Krasavchik\" trusă simplă de cusut pentru peticirea hainelor sau chiar pentru a deveni un creator de modă.", @@ -8434,13 +8434,13 @@ "620109578d82e67e7911abf2 Description": "Pistol cu țeavă lisă destinat lansării rachetelor de semnalizare cu diferite culori. Fabricat de V.A. Degtyarev Plant.", "6217726288ed9f0845317459 Name": "RSP-30 cartuș reactiv de semnalizare (Verde)", "6217726288ed9f0845317459 ShortName": "Verde", - "6217726288ed9f0845317459 Description": "RSP-30 este un cartuș reactiv de semnalizare pentru controlul unităților și menținerea interacțiunilor între detașamente. Cartușele de tip stea sunt folosite pentru semnalizare luminoasă.", + "6217726288ed9f0845317459 Description": "RSP-30 este un cartuș reactiv de semnalizare pentru controlarea unităților și menținerea interacțiunii lor. Cartușele de tip stea sunt folosite pentru semnalizare luminoasă.", "62178be9d0050232da3485d9 Name": "ROP-30 cartuș reactiv de semnalizare (Alb)", "62178be9d0050232da3485d9 ShortName": "Semnal.", "62178be9d0050232da3485d9 Description": "ROP-30 este un cartuș reactiv de semnalizare destinat luminării zonelor fără vizibilitate pe timp de noapte.", "62178c4d4ecf221597654e3d Name": "RSP-30 cartuș reactiv de semnalizare (Roșu)", "62178c4d4ecf221597654e3d ShortName": "Roșu", - "62178c4d4ecf221597654e3d Description": "RSP-30 este un cartuș reactiv de semnalizare pentru controlul unităților și menținerea interacțiunilor între detașamente. Cartușele de tip stea sunt folosite pentru semnalizare luminoasă.", + "62178c4d4ecf221597654e3d Description": "RSP-30 este un cartuș reactiv de semnalizare pentru controlarea unităților și menținerea interacțiunii lor. Cartușele de tip stea sunt folosite pentru semnalizare luminoasă.", "6223349b3136504a544d1608 Name": "Ladă desantată cu provizii uzuale", "6223349b3136504a544d1608 ShortName": "Ladă desantată cu provizii uzuale", "6223349b3136504a544d1608 Description": "Ladă desantată cu provizii uzuale", @@ -8596,7 +8596,7 @@ "624c09e49b98e019a3315b66 Description": "Rachetă semnalizare (Galbenă)", "624c0b3340357b5f566e8766 Name": "RSP-30 cartuș reactiv de semnalizare (Galben)", "624c0b3340357b5f566e8766 ShortName": "Galben", - "624c0b3340357b5f566e8766 Description": "RSP-30 este un cartuș reactiv de semnalizare pentru controlul unităților și menținerea interacțiunilor între detașamente. Cartușele de tip stea sunt folosite pentru semnalizare luminoasă.", + "624c0b3340357b5f566e8766 Description": "RSP-30 este un cartuș reactiv de semnalizare pentru controlarea unităților și menținerea interacțiunii lor. Cartușele de tip stea sunt folosite pentru semnalizare luminoasă.", "624c29ce09cd027dff2f8cd7 Name": "CNC Guns OV-SV98 M12B pat", "624c29ce09cd027dff2f8cd7 ShortName": "M12B", "624c29ce09cd027dff2f8cd7 Description": "Pat universal de la CNC Guns pentru kitul OV-SV98.", @@ -8687,7 +8687,7 @@ "6272379924e29f06af4d5ecb Name": "Olight Baldr Pro lanternă tactică cu laser (Tan)", "6272379924e29f06af4d5ecb ShortName": "BaldrPro", "6272379924e29f06af4d5ecb Description": "Lanterna Baldr Pro de la Olight este concepută pentru a se potrivi pe aproape orice pistol sau pușcă cu șină de montaj. Îmbină un punctator laser cu o lanternă. Versiunea maro (tan).", - "627254cc9c563e6e442c398f Name": "Pat AR-15 Strike Industries Viper PDW", + "627254cc9c563e6e442c398f Name": "Strike Industries Viper PDW pat", "627254cc9c563e6e442c398f ShortName": "Viper PDW", "627254cc9c563e6e442c398f Description": "Viper PDW kit pat de la Strike Industries este un pat rabatabil pentru sistemele AR-15. Reduce mărimea armei și a tamponului de recul.", "6272874a6c47bd74f92e2087 Name": "AK 7.62x39 FAB Defense Ultimag 30R 30-cartușe", @@ -8813,7 +8813,7 @@ "628a83c29179c324ed269508 Name": "RD-704 SLR ION Lite + Railed Gas Tube mâner uluc combinat cu tub de gaze", "628a83c29179c324ed269508 ShortName": "ION Lite 9\"", "628a83c29179c324ed269508 Description": "Kit combinat format din ulucul ION Lite 9 și tubul de gaze Railed Gas Tube, poate fi instalat pe pușca de asalt RD-704 calibrul. Fabricat de SLR.", - "628a85ee6b1d481ff772e9d5 Name": "Pat AR-15 SB Tactical SBA3", + "628a85ee6b1d481ff772e9d5 Name": "SB Tactical SBA3 pat", "628a85ee6b1d481ff772e9d5 ShortName": "SBA3", "628a85ee6b1d481ff772e9d5 Description": "SBA3 Pat stabilizant pentru pistol, conceput și fabricat de SB Tactical. Instalat pe sistemele AR-15.", "628b5638ad252a16da6dd245 Name": "SAG AK-545 5.45x39 carabină", @@ -8833,7 +8833,7 @@ "628b9471078f94059a4b9bfb Description": "Înălțător standard pentru carabina AK-545, fabricat de Sureshot Armament Group.", "628b9784bcf6e2659e09b8a2 Name": "S&S Precision PlateFrame vestă cu blindaj (Goons Edition)", "628b9784bcf6e2659e09b8a2 ShortName": "PlateFrame GE", - "628b9784bcf6e2659e09b8a2 Description": "Purtător de plăci minimalist, ușor, din plastic semi rigid, modificat de Big Pipe - un membru al grupului Goons. Fabricat de S&S Precision.", + "628b9784bcf6e2659e09b8a2 Description": "Minimalist, ușor, model cu plastic semi rigid ce oferă o platformă de montaj deosebită de orice vestă cu blindaj de pe piață. Cadrul permite operatorului să modifice capacitatea de încărcare în funcție de cerințele operaționale. PlateFrame permite montarea ușoară a buzunarelor de accesorii și este compatibilă cu buzunarele MOLLE/PALS.", "628b9a40717774443b15e9f2 Name": "AK-545 SAG tub tampon", "628b9a40717774443b15e9f2 ShortName": "SAG tub", "628b9a40717774443b15e9f2 Description": "Tubul tampon cu 6 poziții Sureshot Armament Group Receiver Extension, cu diametru Mil-Spec conceput special pentru AK-545.", @@ -8845,32 +8845,32 @@ "628b9c37a733087d0d7fe84b Description": "Versiunea scurtă a carabinei Sureshot Armament Group AK-545 bazată pe platforma modernă de AK.", "628b9c7d45122232a872358f Name": "Crye Precision CPC vestă cu blindaj (Goons Edition)", "628b9c7d45122232a872358f ShortName": "CPC GE", - "628b9c7d45122232a872358f Description": "CAGE PLATE CARRIER (CPC) oferă confort de invidiat și susținere de încărcătură într-o configurație de vestă cu blindaj cu profil redus. Sistemul suport o mulțime de buzunare. În acest caz, configurația a fost pregătită de liderul trupei Goons, pe nume Knight, pentru operațiuni de asalt cu mobilitate crescută.", + "628b9c7d45122232a872358f Description": "CAGE PLATE CARRIER (CPC) oferă confort de invidiat și susținere de încărcătură într-o configurație de vestă cu blindaj cu profil redus. Sistemul suport o mulțime de buzunare. În acest caz, configurația a fost pregătită pentru operațiuni de asalt cu mobilitate crescută.", "628baf0b967de16aab5a4f36 Name": "LBT-1961A Load Bearing Ham Tactic (Goons Edition)", "628baf0b967de16aab5a4f36 ShortName": "LBCR GE", "628baf0b967de16aab5a4f36 Description": "Sistem tactic de purtare a greutăților conceput pentru încărcătoare, grenade, și echipament special, peste o vestă anti-glonț cu profil redus. Fabricat de London Bridge Trading. Configurație specială pentru Birdeye, membru al trupei Goons.", - "628bc7fb408e2b2e9c0801b1 Name": "Mystery Ranch NICE COMM 3 BVS sistem cu cadru (Coyote)", + "628bc7fb408e2b2e9c0801b1 Name": "Mystery Ranch NICE COMM 3 BVS sistem cu cadru", "628bc7fb408e2b2e9c0801b1 ShortName": "COMM 3", "628bc7fb408e2b2e9c0801b1 Description": "NICE Frame sistem special pentru purtarea încărcăturilor supradimensionate sau grele cu un rucsac adițional pentru purtarea echipamentelor radio. COMM 3 are o deschidere principală pentru radiourile PRC117F sau G, PRC119F, 152, sau ASIP. Inchiderile Hitchhiker și Daypack oferă posibilitatea de a purta echipamente separate la nevoie. Sistemul modular NICE COMM 3 este pregătit pentru a fi adaptat la orice misiune. Un articol extrem de rar, la mare căutare în Tarkov.", "628c9ab845c59e5b80768a81 Name": "AK TangoDown Battle Grip mâner pistol (FDE)", "628c9ab845c59e5b80768a81 ShortName": "TD BG", "628c9ab845c59e5b80768a81 Description": "Mâner pistol ușor pentru puștile de asalt AK, fabricat de TangoDown. Versiunea FDE - Pământiu Mat Închis.", - "628cd624459354321c4b7fa2 Name": "Tasmanian Tiger SK plate carrier (MultiCam Black)", + "628cd624459354321c4b7fa2 Name": "Tasmanian Tiger SK plate carrier (Multicam Black)", "628cd624459354321c4b7fa2 ShortName": "TT SK", "628cd624459354321c4b7fa2 Description": "TT Plate Carrier SK este o vestă cu blindaj ultra-ușoară cu multe decupaje, produsă din nylon Cordura laminat cu TPU, cu densitate denier de 700. Vesta este proiectată cu două capace pentru plăci blindate, ham ajustabil pe umeri și curea de brâu. Dispune de 4 buzunare frontale pentru încărcătoare.", - "628d0618d1ba6e4fa07ce5a4 Name": "NPP KlASS Bagariy ham blindat (Digital Flora)", + "628d0618d1ba6e4fa07ce5a4 Name": "NPP KlASS Bagariy ham blindat", "628d0618d1ba6e4fa07ce5a4 ShortName": "Bagariy", "628d0618d1ba6e4fa07ce5a4 Description": "În al doilea mileniu, echipamentul soldatului s-a schimbat în mod radical împreună cu noile amenințări și misiuni. Un nivel mai bun de protecție a fost necesar, astfel Armată Rusă a cerut un sistem fiabil și funcțional de blindaj individual. În mijlocul anilor 2000, MVD, ulterior organizat în Garda Rusiei, a primit vestele blindate Bagariy. Bagariy este un sistem folosit atat de trupele de rând cât și de forțele speciale. Utilizat de PMC BEAR ca și principalul blindaj individual greu.", "628dc750b910320f4c27a732 Name": "ECLiPSE RBAV-AF vestă cu blindaj (Ranger Green)", "628dc750b910320f4c27a732 ShortName": "RBAV-AF", - "628dc750b910320f4c27a732 Description": "BAE ECLiPSE RBAV (Releasable Body Armor Vest, Air Force) este o variantă specială pentru sistemul Guardian Angel Weapon System (USAF PJ) și prezintă multe specificații noi care nu sunt regăsite în alte versiune.", - "628e1ffc83ec92260c0f437f Name": "Gruppa 99 T30 rucsac (Negru)", + "628dc750b910320f4c27a732 Description": "BAE ECLiPSE RBAV (Releasable Body Armor Vest, Air Force) este o variantă specială pentru sistemul Guardian Angel Weapon System (USAF PJ) și prezintă multe specificații noi care nu sunt regăsite în alte versiune. Configurația actuală de buzunare este pentru misiune de asalt cu protecție adițională.", + "628e1ffc83ec92260c0f437f Name": "Gruppa 99 T30 rucsac", "628e1ffc83ec92260c0f437f ShortName": "T30", - "628e1ffc83ec92260c0f437f Description": "Rucsac de 30 de litri de la Gruppa 99. O soluție de calitate pentru executarea raidurilor speciale. Versiunea neagră.", + "628e1ffc83ec92260c0f437f Description": "Rucsac de 30 de litri de la Gruppa 99. O soluție de calitate pentru executarea raidurilor speciale.", "628e4dd1f477aa12234918aa Name": "Bandană Big Pipe", "628e4dd1f477aa12234918aa ShortName": "Big Pipe B", "628e4dd1f477aa12234918aa Description": "Bandana personală a lui Big Pipe. O bandană neagră cu simbolul de identificare a trupei Goons.", - "628e4e576d783146b124c64d Name": "Peltor ComTac 4 Hybrid căști (Coyote Brown)", + "628e4e576d783146b124c64d Name": "Peltor ComTac 4 Hybrid căști", "628e4e576d783146b124c64d ShortName": "ComTac 4", "628e4e576d783146b124c64d Description": "ComTac IV Hybrid Communication Căști construite pentru a reduce expunerea la nivele periculoase de zgomot, pentru a îmbunătăți percepția situației în același timp oferind comunicație radio bidirecțională în medii zgomotoase. Componentele electronice sunt ascunse în carcasa căștilor, eliminând astfel nevoia unei cutii mari și grele pentru controlul radio. Banda de pe cap stabilizează mecanic căștile și previne mișcarea lor de pe urechi în timpul mișcarii corpului chiar și atunci când sunt agățate cablurile. Pot fi folosite confortabil împreună cu o cască balistică.", "6295e63de08ed747e64ae991 Name": "bear_lower_tactical_long", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "USEC Chameleon", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "BEAR VOLK", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "BEAR Coyote", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "USEC DesOps", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Death Knight mască", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "Masca unică ce aparține comandantului trupei Goons, foști operatori USEC care s-au decis să nu fugă din Tarkov, ci să-și creeze propriile reguli.", @@ -8948,9 +8948,9 @@ "62a09e974f842e1bd12da3f0 Name": "Casetă video cu filmul Cyborg Killer", "62a09e974f842e1bd12da3f0 ShortName": "VHS", "62a09e974f842e1bd12da3f0 Description": "Casetă video VHS cu filmul de acțiune din 1990 despre un cyborg ucigaș din viitor.", - "62a09ec84f842e1bd12da3f2 Name": "Cheie stivuitor Missam", + "62a09ec84f842e1bd12da3f2 Name": "Cheie transpalet Missam", "62a09ec84f842e1bd12da3f2 ShortName": "Danex", - "62a09ec84f842e1bd12da3f2 Description": "Cheie stivuitor Missam. Numele fostului proprietar se află pe panglică.", + "62a09ec84f842e1bd12da3f2 Description": "Cheie transpalet Missam. Numele fostului proprietar se află pe panglică.", "62a09ee4cf4a99369e262453 Name": "Cutie cu sare albă", "62a09ee4cf4a99369e262453 ShortName": "Sare", "62a09ee4cf4a99369e262453 Description": "Sare simplă pentru gătit.", @@ -8972,16 +8972,16 @@ "62a0a16d0b9d3c46de5b6e97 Name": "Stick USB Militar", "62a0a16d0b9d3c46de5b6e97 ShortName": "MFD", "62a0a16d0b9d3c46de5b6e97 Description": "USB criptat militar. Este un mediu de stocare a datelor care pe lângă criptare oferă și protecție antișoc.", - "62a1b7fbc30cfa1d366af586 Name": "Gruppa 99 T30 rucsac (MultiCam)", + "62a1b7fbc30cfa1d366af586 Name": "Gruppa 99 T30 rucsac (Multicam)", "62a1b7fbc30cfa1d366af586 ShortName": "T30", - "62a1b7fbc30cfa1d366af586 Description": "Rucsac de 30 de litri de la Gruppa 99. O soluție de calitate pentru executarea raidurilor speciale. Versiunea camuflaj MultiCam.", - "62a5c2c98ec41a51b34739c0 Name": "Mască de hockey (Captain)", + "62a1b7fbc30cfa1d366af586 Description": "Rucsac de 30 de litri de la Gruppa 99. O soluție de calitate pentru executarea raidurilor speciale. Versiunea camuflaj multicam.", + "62a5c2c98ec41a51b34739c0 Name": "Hockey mască \"Captain\"", "62a5c2c98ec41a51b34739c0 ShortName": "Captain", "62a5c2c98ec41a51b34739c0 Description": "Mască înfricoșătoare dintr-un desen pentru copii despre hockey.", - "62a5c333ec21e50cad3b5dc6 Name": "Mască de hockey (Brawler)", + "62a5c333ec21e50cad3b5dc6 Name": "Hockey mască \"Brawler\"", "62a5c333ec21e50cad3b5dc6 ShortName": "Brawler", "62a5c333ec21e50cad3b5dc6 Description": "Mască înfricoșătoare dintr-un desen pentru copii despre hockey.", - "62a5c41e8ec41a51b34739c3 Name": "Mască de hockey (Brawler)", + "62a5c41e8ec41a51b34739c3 Name": "Hockey mască \"Quiet\"", "62a5c41e8ec41a51b34739c3 ShortName": "Quiet", "62a5c41e8ec41a51b34739c3 Description": "Mască înfricoșătoare dintr-un desen pentru copii despre hockey.", "62a61bbf8ec41a51b34758d2 Name": "Pipă de fumat Big Pipe", @@ -9014,10 +9014,10 @@ "62e281349ecd3f493f6df954 Name": "SR-2M B-17 șină", "62e281349ecd3f493f6df954 ShortName": "B-17", "62e281349ecd3f493f6df954 Description": "B-17 suport fixat pe șina tip coadă-de-rândunică al SR-2M și oferă o șină Picatinny pentru instalarea de echipament adițional. Fabricat de Zenit.", - "62e292e7b6c0ee2f230cee00 Name": "SR-2M pat pliabil deasupra", + "62e292e7b6c0ee2f230cee00 Name": "SR-2M pat pliabil", "62e292e7b6c0ee2f230cee00 ShortName": "SR-2M", "62e292e7b6c0ee2f230cee00 Description": "Pat rabatabil pentru pistolul-mitralieră SR-2M, fabricat de TsNIItochMash. Patul are un sprijin-umăr cu arc care ajută și reduce timpul necesar pentru a ridica arma în poziția de tragere.", - "62e2969582ebf260c20539c2 Name": "SR-2MP pat pliabil deasupra", + "62e2969582ebf260c20539c2 Name": "SR-2M pat pliabil", "62e2969582ebf260c20539c2 ShortName": "SR-2MP", "62e2969582ebf260c20539c2 Description": "Pat rabatabil pentru pistolul-mitralieră SR-2MP, fabricat de TsNIItochMash. Patul are un sprijin-umăr cu arc care ajută și reduce timpul necesar pentru a ridica arma în poziția de tragere.", "62e2a7138e1ac9380579c122 Name": "SR-2M 9x21 amortizor (SV-1381)", @@ -9077,7 +9077,7 @@ "62ff9faffe938a24c90c10df Name": "KP-SR2 protecție raze", "62ff9faffe938a24c90c10df ShortName": "KP-SR2", "62ff9faffe938a24c90c10df Description": "Protecție ocular pentru colimator reflex KP-SR2. Protejează lentila împotriva impacturilor mecanice și minimizează strălucirea. Fabricat de TsNIItochmash.", - "63075cc5962d0247b029dc2a Name": "Manșon Glock 19X", + "63075cc5962d0247b029dc2a Name": "Glock 19X 9x19 manșon", "63075cc5962d0247b029dc2a ShortName": "G19X", "63075cc5962d0247b029dc2a Description": "Manșon standard pentru pistolul Glock 19X 9x19. Suprafața manșonului este tratată cu un înveliș nPVD ce protejează oțelul de agenți corozivi, substanțe chimice sau condiții de mediu dificile.", "630764fea987397c0816d219 Name": "Glock 19X 9x19 țeavă", @@ -9161,36 +9161,36 @@ "634eba08f69c710e0108d386 Name": "Steyr AUG Ase Utra S Series SL7i 5.56x45 amortizor", "634eba08f69c710e0108d386 ShortName": "SL7i 5.56", "634eba08f69c710e0108d386 Description": "S Series SL7i amortizor pentru pușca Steyr AUG 5.56x45. Fabricat de Ase Ultra.", - "634eff66517ccc8a960fc735 Name": "Țeavă 520mm OP-SKS 7.62x39", + "634eff66517ccc8a960fc735 Name": "OP-SKS 7.62x39 520mm barrel", "634eff66517ccc8a960fc735 ShortName": "OP-SKS 520mm", - "634eff66517ccc8a960fc735 Description": "Țeavă standard de 520mm pentru carabina OP-SKS, fabricat de Molot Arms.", - "634f02331f9f536910079b51 Name": "Țeavă 520mm SKS 7.62x39", + "634eff66517ccc8a960fc735 Description": "A standard-issue 520mm barrel for the OP-SKS carbine. Manufactured by Molot Arms.", + "634f02331f9f536910079b51 Name": "SKS 7.62x39 520mm barrel", "634f02331f9f536910079b51 ShortName": "SKS 520mm", - "634f02331f9f536910079b51 Description": "Țeavă standard de 520mm pentru carabina SKS, fabricat de TOZ.", - "634f02d7517ccc8a960fc744 Name": "Tub de gaz SKS", - "634f02d7517ccc8a960fc744 ShortName": "SKS gaz", - "634f02d7517ccc8a960fc744 Description": "Tub de gaze standard pe carabina SKS, fabricat de TOZ. Tubul canalizează gazele în direcția de mișcare a pistonului.", - "634f036a517ccc8a960fc746 Name": "Tub de gaz OP-SKS", - "634f036a517ccc8a960fc746 ShortName": "OP-SKS gaz", - "634f036a517ccc8a960fc746 Description": "Tub de gaze standard pe carabina OP-SKS, fabricat de Molot Arms. Tubul canalizează gazele în direcția de mișcare a pistonului.", - "634f03d40384a3ba4f06f874 Name": "Capac gaz OP-SKS", - "634f03d40384a3ba4f06f874 ShortName": "OP-SKS capac", - "634f03d40384a3ba4f06f874 Description": "Apărătoare standard din lemn peste tubul de gaz pentru carabina OP-SKS, fabricat de Molot Arms.", - "634f04d82e5def262d0b30c6 Name": "SKS bandă", - "634f04d82e5def262d0b30c6 ShortName": "SKS B", - "634f04d82e5def262d0b30c6 Description": "Banda superioară standard pentru carabina SKS, fabricat de TOZ, permite instalarea unui înălțător.", - "634f05a21f9f536910079b56 Name": "OP-SKS bandă", - "634f05a21f9f536910079b56 ShortName": "OP-SKS B", - "634f05a21f9f536910079b56 Description": "Bandă superioară standard pentru carabina OP-SKS, fabricată de Molot Arms, permite instalarea unui înălțător.", - "634f05ca517ccc8a960fc748 Name": "SKS capac închizător", - "634f05ca517ccc8a960fc748 ShortName": "SKS CÎ", - "634f05ca517ccc8a960fc748 Description": "Capacul închizător standard pentru carabina SKS, fabricat de TOZ.", - "634f06262e5def262d0b30ca Name": "OP-SKS capac închizător", - "634f06262e5def262d0b30ca ShortName": "OP-SKS CÎ", - "634f06262e5def262d0b30ca Description": "Capac închizător standard pentru carabina OP-SKS, fabricat de Molot Arms.", - "634f08a21f9f536910079b5a Name": "Capac gaz SKS", - "634f08a21f9f536910079b5a ShortName": "SKS capac", - "634f08a21f9f536910079b5a Description": "Apărătoare standard din lemn peste tubul de gaz pentru carabina SKS, fabricat de TOZ.", + "634f02331f9f536910079b51 Description": "A standard-issue 520mm barrel for the SKS carbine. Manufactured by TOZ.", + "634f02d7517ccc8a960fc744 Name": "SKS gas tube", + "634f02d7517ccc8a960fc744 ShortName": "SKS gas", + "634f02d7517ccc8a960fc744 Description": "A standard gas tube for the SKS carbine manufactured by TOZ. Gas tubes channel the travel direction of gas piston.", + "634f036a517ccc8a960fc746 Name": "OP-SKS gas tube", + "634f036a517ccc8a960fc746 ShortName": "OP-SKS gas", + "634f036a517ccc8a960fc746 Description": "A standard gas tube for the OP-SKS carbine manufactured by Molot Arms. Gas tubes channel the travel direction of gas piston.", + "634f03d40384a3ba4f06f874 Name": "OP-SKS gas tube cover", + "634f03d40384a3ba4f06f874 ShortName": "OP-SKS cover", + "634f03d40384a3ba4f06f874 Description": "A standard wooden gas tube cover for the OP-SKS carbine, manufactured by Molot Arms.", + "634f04d82e5def262d0b30c6 Name": "SKS upper band", + "634f04d82e5def262d0b30c6 ShortName": "SKS UB", + "634f04d82e5def262d0b30c6 Description": "A standard upper band for SKS manufactured by TOZ, allows installation of rear sights.", + "634f05a21f9f536910079b56 Name": "OP-SKS upper band", + "634f05a21f9f536910079b56 ShortName": "OP-SKS UB", + "634f05a21f9f536910079b56 Description": "A standard upper band for the OP-SKS carbine manufactured by Molot Arms, allows installation of rear sights.", + "634f05ca517ccc8a960fc748 Name": "SKS dust cover", + "634f05ca517ccc8a960fc748 ShortName": "SKS DC", + "634f05ca517ccc8a960fc748 Description": "A standard-issue dust cover for the SKS carbine, manufactured by TOZ.", + "634f06262e5def262d0b30ca Name": "OP-SKS dust cover", + "634f06262e5def262d0b30ca ShortName": "OP-SKS DC", + "634f06262e5def262d0b30ca Description": "A standard-issue dust cover for the OP-SKS carbine, manufactued by Molot Arms.", + "634f08a21f9f536910079b5a Name": "SKS gas tube cover", + "634f08a21f9f536910079b5a ShortName": "SKS cover", + "634f08a21f9f536910079b5a Description": "A standard wooden gas tube cover for the SKS carbine, manufactured by Tula Arms.", "635267ab3c89e2112001f826 Name": "Mască înfricoșătoare cu craniu", "635267ab3c89e2112001f826 ShortName": "Craniu", "635267ab3c89e2112001f826 Description": "Mască foarte înfricoșătoare purtată doar de către ce mai de speriat operatori.", @@ -9215,9 +9215,9 @@ "636270263f2495c26f00b007 Name": "Cagula lui Zryachiy (cap)", "636270263f2495c26f00b007 ShortName": "Zryachiy", "636270263f2495c26f00b007 Description": "Cagulă intimidantă cu imprimeu de craniu, purtată de Zryachiy. Purtată pe cap.", - "63737f448b28897f2802b874 Name": "Hexatac HPC Purtători Plăci (MultiCam Negru)", + "63737f448b28897f2802b874 Name": "Hexatac HPC Plate Carrier (Multicam Black)", "63737f448b28897f2802b874 ShortName": "HPC", - "63737f448b28897f2802b874 Description": "Purtător de plăci blindate de la Hexatac. Versiune minimalistă pentru utilizarea cu un ham tactic, MultiCam negru.", + "63737f448b28897f2802b874 Description": "Ham blindaje de la Hexatac. Versiune minimalistă pentru utilizarea cu un ham tactic. Versiunea Multicam Neagră.", "6374a7e7417239a7bf00f042 Name": "PM crose laterale bachelită", "6374a7e7417239a7bf00f042 ShortName": "PM bache.", "6374a7e7417239a7bf00f042 Description": "Crose pistol standard din bachelită pentru pistolul PM.", @@ -9273,7 +9273,7 @@ "637df28ac22da5bb8d046935 ShortName": "", "637df28ac22da5bb8d046935 Description": "", "637f57a68d137b27f70c4968 Name": "AR-15 Colt M4 uluc inferior lungime carabină", - "637f57a68d137b27f70c4968 ShortName": "Carabină M4", + "637f57a68d137b27f70c4968 ShortName": "M4 carabină", "637f57a68d137b27f70c4968 Description": "Uluc inferior pe lungimea carabinei fabricat de Colt, echipat standard pe pușca de asalt M4A1.", "637f57b78d137b27f70c496a Name": "AR-15 KAC RIS uluc inferior", "637f57b78d137b27f70c496a ShortName": "KAC RIS", @@ -9326,9 +9326,9 @@ "6389c7f115805221fb410466 Name": "GPS Signal Amplifier Unit", "6389c7f115805221fb410466 ShortName": "GPSA", "6389c7f115805221fb410466 Description": "Modul de amplificare GPS cu zgomot redus și pre-filtrare ce poate fi alimentat cu o gamă variată de tensiuni de intrare.", - "6389c85357baa773a825b356 Name": "Transformator avansat de curent", + "6389c85357baa773a825b356 Name": "Far-forward modul DC-DC", "6389c85357baa773a825b356 ShortName": "MCC", - "6389c85357baa773a825b356 Description": "Modul de transformare DC-DC care oferă tensiune stabilă de curent continuu. Folosind module de transformare se pot elimina anumite defecțiuni din sistemele electrice. Acest transformator prezintă rezistență fizică ridicată și componente de înaltă calitate, ceea ce îi permite să fie utilizat în sisteme cu încărcare mare și cu risc de impact fizic.", + "6389c85357baa773a825b356 Description": "Modul de transformare DC-DC care oferă tensiune stabilă de curent continuu. Folosind module de transformare se pot elimina anumite defecțiuni din sistemele electrice. Far-forward este un modul de transformare de calitate mare și cu protecție la impact. Aceasta îi permite să fie utilizat în sisteme cu încărcare mare și cu risc de impact fizic.", "6389c8c5dbfd5e4b95197e6b Name": "TerraGroup \"Blue Folders\"", "6389c8c5dbfd5e4b95197e6b ShortName": "Blue Folders", "6389c8c5dbfd5e4b95197e6b Description": "Documente TerraGroup în dosare albastre. Extrem de valoroase pe piața neagră.", @@ -9391,8 +9391,8 @@ "6393262086e646067c176aa2 Description": "Fișă cu informații medicale. Conține descrierea unor simptome variate ale pacienților aflați sub influența unor substanțe necunoscute.", "639343fce101f4caa40a4ef3 Name": "Shellback Tactical Banshee vestă cu blindaj (A-TACS AU)", "639343fce101f4caa40a4ef3 ShortName": "Banshee", - "639343fce101f4caa40a4ef3 Description": "Banshee Rifle Plate Carrier este conceput să atingă și să depășească nevoile trupelor de poliție, militare, sau a operatorilor tactici. Această vestă cu blindaj este ultra-ușoară, are profil redus, de bună calitate și cu o capacitate foarte bună de încărcare.", - "639346cc1c8f182ad90c8972 Name": "Tasmanian Tiger Trooper 35 rucsac (Khaki)", + "639343fce101f4caa40a4ef3 Description": "Banshee Rifle Plate Carrier este conceput să atingă și să depășească nevoile trupelor de poliție, militare, sau a operatorilor tactici. Această vestă cu blindaj este ultra-ușoară, are profil redus, de bună calitate și cu o capacitate foarte bună de încărcare. Este ideală pentru operațiuni de intervenție ale poliției, contra terorism direct și operațiuni de multi asalt contra teroriste (MACTAC).", + "639346cc1c8f182ad90c8972 Name": "Tasmanian Tiger Trooper 35 rucsac", "639346cc1c8f182ad90c8972 ShortName": "Trooper 35", "639346cc1c8f182ad90c8972 Description": "TT Trooper Light Pack 35 este un rucsac ușor de 35 de litri de la Tasmanian Tiger cu sistem de suspensie confortabil și ergonomic PaddenBack și cu bretele anatomice.", "63969c9019971040b005049b Name": "AR-15 Strike Industries Viper mâner uluc inferior M-LOK pe lungimea carabinei (FDE)", @@ -9454,22 +9454,22 @@ "63a39ce4cd6db0635c1975fa Description": "Cheia de la unul dintre birourile din clădirea \"Aspect\" LLC.", "63a39df18a56922e82001f25 Name": "Zmeisky 5 cheie apartamentul 20", "63a39df18a56922e82001f25 ShortName": "Zm apt. 20", - "63a39df18a56922e82001f25 Description": "Cheia de la unul dintre apartamentele din Aleea Zmeisky 5.", + "63a39df18a56922e82001f25 Description": "Cheia de la unul dintre apartamentele de la Zmeisky 5.", "63a39dfe3901f439517cafba Name": "Zmeisky 3 cheie apartamentul 8", "63a39dfe3901f439517cafba ShortName": "Zm apt. 8", - "63a39dfe3901f439517cafba Description": "Cheia de la unul dintre apartamentele din Aleea Zmeisky 3.", + "63a39dfe3901f439517cafba Description": "Cheia de la unul dintre apartamentele de la Zmeisky 3.", "63a39e1d234195315d4020bd Name": "Primorsky 48 cheie punte aeriană", "63a39e1d234195315d4020bd ShortName": "Skybridge 46-48", "63a39e1d234195315d4020bd Description": "Cheia de la puntea aeriană ce leagă Primorsky 46 de 48 și permite accesul la apartamentul instructorului de dans.", "63a39e49cd6db0635c1975fc Name": "Cheia de la arhivă", "63a39e49cd6db0635c1975fc ShortName": "Arhivă", "63a39e49cd6db0635c1975fc Description": "Cheia de la arhiva aflată într-una dintre clădirile din centrul orașului.", - "63a39f08cd6db0635c197600 Name": "Hotel Pinewood cheie camera 215", + "63a39f08cd6db0635c197600 Name": "Hotel camera 215", "63a39f08cd6db0635c197600 ShortName": "Pnwd 215", - "63a39f08cd6db0635c197600 Description": "Cheia de la una dintre camerele din hotelul Pinewood.", - "63a39f18c2d53c2c6839c1d3 Name": "Hotel Pinewood cheie camera 206", + "63a39f08cd6db0635c197600 Description": "Hotel Pinewood - cheia de la camera 215.", + "63a39f18c2d53c2c6839c1d3 Name": "Hotel camera 206", "63a39f18c2d53c2c6839c1d3 ShortName": "Pnwd 206", - "63a39f18c2d53c2c6839c1d3 Description": "Cheia de la una dintre camerele din hotelul Pinewood.", + "63a39f18c2d53c2c6839c1d3 Description": "Hotel Pinewood - cheia de la camera 206.", "63a39f6e64283b5e9c56b289 Name": "Cheia de la poartă", "63a39f6e64283b5e9c56b289 ShortName": "Poartă", "63a39f6e64283b5e9c56b289 Description": "Cheia de la o poartă de fier necunoscută.", @@ -9563,8 +9563,8 @@ "63fc449f5bd61c6cf3784a88 Name": "Bază universală Armasight Zeus", "63fc449f5bd61c6cf3784a88 ShortName": "Zeus", "63fc449f5bd61c6cf3784a88 Description": "Suport universal pentru montarea seriei de lunete Zeus de la Armasight.", - "63fc44e2429a8a166c7f61e6 Name": "Armasight Zeus-Pro 640 2-8x50 30Hz lunetă termoviziune", - "63fc44e2429a8a166c7f61e6 ShortName": "Zeus-Pro 640", + "63fc44e2429a8a166c7f61e6 Name": "Armasight Zeus-Pro 640 2-16x50 lunetă termoviziune", + "63fc44e2429a8a166c7f61e6 ShortName": "ZeusPro 640", "63fc44e2429a8a166c7f61e6 Description": "Zeus-Pro 640 este o lunetă cu termoviziune, grosisment de 2x și 8x produs de Armasight.", "63fc4533b10b17385349b565 Name": "Armasight Zeus Pro protecție ocular", "63fc4533b10b17385349b565 ShortName": "ZeusPro", @@ -9602,12 +9602,12 @@ "64119d90dcf48d656f0aa275 Name": "SVT-40 înălțător", "64119d90dcf48d656f0aa275 ShortName": "SVT CS", "64119d90dcf48d656f0aa275 Description": "Înălțător standard pentru pușca SVT.", - "6415c694da439c6a97048b56 Name": "SKS Leapers UTG SOCOM șină pe cutia închizătoare", + "6415c694da439c6a97048b56 Name": "SKS Leapers UTG PRO MTU017 receiver cover mount", "6415c694da439c6a97048b56 ShortName": "MTU017", - "6415c694da439c6a97048b56 Description": "Suport tip șină Picatinny pentru carabina SKS, se montează pe cutia mecanismelor. Fabricat de Leapers Inc.", - "6415d33eda439c6a97048b5b Name": "SKS CHOATE suport lunetă", + "6415c694da439c6a97048b56 Description": "A Picatinny rail mount for the SKS carbine, installed on the receiver cover. Manufactured by Leapers Inc.", + "6415d33eda439c6a97048b5b Name": "SKS CHOATE scope mount", "6415d33eda439c6a97048b5b ShortName": "CHOATE", - "6415d33eda439c6a97048b5b Description": "Suport pentru montarea dispozitivelor optice pentru carabina SKS, fabricat de CHOATE.", + "6415d33eda439c6a97048b5b Description": "A mount for installing various sights on the SKS carbine. Manufactured by CHOATE.", "641dc35e19604f20c800be18 Name": "SVT-40 Tokarev PU suport", "641dc35e19604f20c800be18 ShortName": "Tokarev", "641dc35e19604f20c800be18 Description": "Conceput special pentru pușca SVT, sistemul de montaj Tokarev permite instalarea lunetei PU 3.5 pe pușcă.", @@ -9623,45 +9623,45 @@ "643ea5b23db6f9f57107d9fd Name": "Tokarev SVT-40 7.62x54R pușcă", "643ea5b23db6f9f57107d9fd ShortName": "SVT-40", "643ea5b23db6f9f57107d9fd Description": "SVT-40 a fost singura armă produsă în masă în primii ani ai celui de-Al Doilea Război Mondial, înaintea producției în masă a pistoalelor mitralieră. Soldații au poreclit-o afectiv „Sveta”. Când „Sveta” a ajuns prima oară pe mâinile soldaților, s-a dovedit ca nu toți soldații Armatei Roșii pot să o utilizeze eficent. SVT a fost folosită cu succes de unitățile marine și de lunetiști. Producția SVT-40 a continuat până la sfârșitul războiului și a avut o contribuție semnificativă pentru victoria finală.", - "644674a13d52156624001fbc Name": "KBP 9A-91 9x39 pușcă de asalt compactă", + "644674a13d52156624001fbc Name": "KBP 9A-91 9x39 compact assault rifle", "644674a13d52156624001fbc ShortName": "9A-91", - "644674a13d52156624001fbc Description": "9A-91 este o pușcă de asalt pe calibrul 9x39mm concepută pentru a depăși în caracteristici pușca SR-3 \"Vikhr\" pentru același rol. Fabricată de Tula KBP Instrument Design Bureau.", - "644675573d52156624001fc9 Name": "uluc 9A-91", + "644674a13d52156624001fbc Description": "The 9A-91 is a compact 9x39mm caliber assault rifle designed as a more technologically advanced analog and competitor of the SR-3 \"Vikhr\" assault rifle. Manufactured by Tula KBP Instrument Design Bureau.", + "644675573d52156624001fc9 Name": "9A-91 handguard", "644675573d52156624001fc9 ShortName": "9A-91", - "644675573d52156624001fc9 Description": "Uluc standard pentru pușca 9a-91. Fabricat de Tula KPB Instrument Design Bureau.", - "6448f2f6d4928d46d30be3f6 Name": "Uluc VKS-94", + "644675573d52156624001fc9 Description": "A standard-issue handguard for the 9A-91 assault rifle. Manufactured by Tula KPB Instrument Design Bureau.", + "6448f2f6d4928d46d30be3f6 Name": "VSK-94 handguard", "6448f2f6d4928d46d30be3f6 ShortName": "VSK-94", - "6448f2f6d4928d46d30be3f6 Description": "Uluc standard pentru pușca DMR VSK-94. Fabricat de Tula KPB Instrument Design Bureau.", + "6448f2f6d4928d46d30be3f6 Description": "A standard-issue handguard for the VSK-94 marksman rifle. Manufactured by Tula KPB Instrument Design Bureau.", "644a3df63b0b6f03e101e065 Name": "MAWL-C1+ dispozitiv tactic", "644a3df63b0b6f03e101e065 ShortName": "MAWL-C1+", "644a3df63b0b6f03e101e065 Description": "Modular Advanced Weapon Laser C1+ (MAWL-C1+) produs de B.E. Meyers este un dispozitiv rezistent, dovedit în luptă pentru achiziția rapidă a țintei folosind punctatoare lasere integrate în spectrul IR și vizibil precum și un iluminator IR.", - "6450ec2e7da7133e5a09ca96 Name": "9A-91 9x39 20 cartușe", + "6450ec2e7da7133e5a09ca96 Name": "9A-91 9x39 20-round magazine", "6450ec2e7da7133e5a09ca96 ShortName": "9A-91", - "6450ec2e7da7133e5a09ca96 Description": "Încărcător standard de 20 de cartușe pentru pușca de asalt 9A-91 și pentru pușca de lunetist VSK-94. Fabricat de Tula KPB Instrument Design Bureau.", - "6450f21a3d52156624001fcf Name": "9A-91 mâner pistol", - "6450f21a3d52156624001fcf ShortName": "9A-91 MP", - "6450f21a3d52156624001fcf Description": "Mâner pistol standard pentru pușca 9A-91. Fabricat de Tula KPB Instrument Design Bureau.", - "6451167ad4928d46d30be3fd Name": "9A-91 pat pliabil deasupra", + "6450ec2e7da7133e5a09ca96 Description": "A standard-issue 20-round magazine for the 9A-91 assault rifle and VSK-94 marksman rifle. Manufactured by Tula KPB Instrument Design Bureau.", + "6450f21a3d52156624001fcf Name": "9A-91 pistol grip", + "6450f21a3d52156624001fcf ShortName": "9A-91 PG", + "6450f21a3d52156624001fcf Description": "A standard-issue pistol grip for the 9A-91 assault rifle. Manufactured by Tula KPB Instrument Design Bureau.", + "6451167ad4928d46d30be3fd Name": "9A-91 top-folding stock", "6451167ad4928d46d30be3fd ShortName": "9A-91", - "6451167ad4928d46d30be3fd Description": "Pat standard pliabil deasupra pentru pușca de asalt 9A-91. Fabricat de Tula KPB Instrument Design Bureau.", - "645122f6d4928d46d30be3ff Name": "Țeavă 9A-91 180mm", - "645122f6d4928d46d30be3ff ShortName": "9A-91 180", - "645122f6d4928d46d30be3ff Description": "Țeavă standard de 180mm pentru pușca 9A-91. Fabricat de Tula KPB Instrument Design Bureau.", - "645123013d52156624001fd1 Name": "Țeavă VSK-94 180mm", - "645123013d52156624001fd1 ShortName": "VSK-94 180", - "645123013d52156624001fd1 Description": "Țeavă standard de 180mm pentru pușca VSK-94. Fabricat de Tula KPB Instrument Design Bureau.", - "6452519e3d52156624001fd5 Name": "Pat VSK-94", + "6451167ad4928d46d30be3fd Description": "A standard-issue top-folding stock for the 9A-91 assault rifle. Manufactured by Tula KPB Instrument Design Bureau.", + "645122f6d4928d46d30be3ff Name": "9A-91 9x39 barrel", + "645122f6d4928d46d30be3ff ShortName": "9A-91", + "645122f6d4928d46d30be3ff Description": "A standard-issue 180mm barrel for the 9A-91 assault rifle. Manufactured by Tula KPB Instrument Design Bureau.", + "645123013d52156624001fd1 Name": "VSK-94 9x39 barrel", + "645123013d52156624001fd1 ShortName": "VSK-94", + "645123013d52156624001fd1 Description": "A standard-issue 180mm barrel for the VSK-94 marksman rifle. Manufactured by Tula KPB Instrument Design Bureau.", + "6452519e3d52156624001fd5 Name": "VSK-94 stock", "6452519e3d52156624001fd5 ShortName": "VSK-94", - "6452519e3d52156624001fd5 Description": "Pat standard pentru pușca de lunetist VSK-94. Fabricat de Tula KPB Instrument Design Bureau.", - "64527a263d52156624001fd7 Name": "9A-91 inel uluc", + "6452519e3d52156624001fd5 Description": "A standard-issue stock for the VSK-94 marksman rifle. Manufactured by Tula KPB Instrument Design Bureau.", + "64527a263d52156624001fd7 Name": "9A-91 handguard retainer", "64527a263d52156624001fd7 ShortName": "9A-91", - "64527a263d52156624001fd7 Description": "Inelul pentru uluc standard de la pușca de asalt compactă 9A-91. Fabricat de Tula KPB Instrument Design Bureau.", - "64527a3a7da7133e5a09ca99 Name": "9A-91 9x39 amortizor de sunet", + "64527a263d52156624001fd7 Description": "A standard-issue handguard retainer for the 9A-91 compact assault rifle and compatible models. Manufactured by Tula KPB Instrument Design Bureau.", + "64527a3a7da7133e5a09ca99 Name": "9A-91 9x39 sound suppressor", "64527a3a7da7133e5a09ca99 ShortName": "9A-91", - "64527a3a7da7133e5a09ca99 Description": "Amortizor de sunet detașabil pentru pușca compactă de asalt 9A-91 și alte modele compatibile. Fabricat de Tula KPB Instrument Design Bureau.", - "645e0c6b3b381ede770e1cc9 Name": "KBP VSK-94 9x39", + "64527a3a7da7133e5a09ca99 Description": "A detachable sound suppressor for the 9A-91 compact assault rifle and compatible models. Manufactured by Tula KPB Instrument Design Bureau.", + "645e0c6b3b381ede770e1cc9 Name": "KBP VSK-94 9x39 rifle", "645e0c6b3b381ede770e1cc9 ShortName": "VSK-94", - "645e0c6b3b381ede770e1cc9 Description": "VSK-94 (Voyskovoy Snayperskiy Kompleks - \"Military Sniper Complex\") este o pușcă tip DMR (pușcă pentru lunetist) bazată pe pușca de asalt 9A-91 ca alternativă mai ieftină pentru VSS \"Vintorez\". Amortizorul, spre deosebire de cel de VSS, nu este integral, asta permițând armei să fie folosită fără amortizor. Fabricat de Tula KBP Instrument Design Bureau.", + "645e0c6b3b381ede770e1cc9 Description": "The VSK-94 (Voyskovoy Snayperskiy Kompleks - \"Military Sniper Complex\") is a marksman rifle designed on the base of the 9A-91 assault rifle as a cheaper alternative to the VSS \"Vintorez\". The silencer, unlike the VSS, is not integrated, which allows the rifle to be used without it if needed. Manufactured by Tula KBP Instrument Design Bureau.", "64637076203536ad5600c990 Name": "Kalashnikov PKM 7.62x54R mitralieră", "64637076203536ad5600c990 ShortName": "PKM", "64637076203536ad5600c990 Description": "PKM (Pulemyot Kalashnikova Modernizirovanny - \"Kalashnikov's Machine Gun Modernized\") este versiunea modernizată a mitralierei Kalashnikov PK ce utilizează muniție 7.62x54R. PKM s-a dovedit a fi puternică, simplă, fiabilă și eficientă. Cererea a fost mare pentru multe decenii începând de la finalul anilor 60 și până în prezent. Fabricată de V.A. Degtyarev Plant.", @@ -9683,19 +9683,19 @@ "6464d870bb2c580352070cc4 Name": "PK crăcan", "6464d870bb2c580352070cc4 ShortName": "PK crăcan", "6464d870bb2c580352070cc4 Description": "Crăcan echipat standard pe Mitraliera Kalashnikov, fabricat de V.A. Degtyarev Plant.", - "646f62fee779812413011ab7 Name": "Zenit 2D lanternă", + "646f62fee779812413011ab7 Name": "Zenit 2D flashlight", "646f62fee779812413011ab7 ShortName": "2D", - "646f62fee779812413011ab7 Description": "Zenit 2D lanternă tactică cu montaj pe suport special. Fabricată de Zenit.", - "646f6322f43d0c5d62063715 Name": "Zenit KR-2 suport clasic", + "646f62fee779812413011ab7 Description": "The 2D tactical flashlight, installed on a special mount. Manufactured by Zenit.", + "646f6322f43d0c5d62063715 Name": "Zenit KR-2 old gen mount", "646f6322f43d0c5d62063715 ShortName": "KR-2", - "646f6322f43d0c5d62063715 Description": "Suportul KR-2 permite montarea dispozitivelor tactice de iluminat pe șine Weaver. Fabricat de Zenit.", + "646f6322f43d0c5d62063715 Description": "The KR-2 mount designed for installing various tactical illumination devices on Weaver type rails. Manufactured by Zenit.", "64748cb8de82c85eaf0a273a Name": "MP-43 pușcă scurtată cal. 12 țevi juxtapuse", "64748cb8de82c85eaf0a273a ShortName": "Scurtată", "64748cb8de82c85eaf0a273a Description": "Pușca calibrul 12, scurtată, cu țevi juxtapuse, clasică. Arma personală a lui Ryzhy.", "64748d02d1c009260702b526 Name": "MP-43 țeavă scurtată 310mm calibrul 12", "64748d02d1c009260702b526 ShortName": "MP-43 310mm", "64748d02d1c009260702b526 Description": "Țeavă calibrul 12, scurtată, de 310mm pentru pușca cu țevi juxtapuse MP-43.", - "6477772ea8a38bb2050ed4db Name": "SIG Sauer ROMEO7 1x30mm vizor cu reflexie (prototip)", + "6477772ea8a38bb2050ed4db Name": "SIG Sauer ROMEO8 1x30mm vizor cu reflexie (prototip)", "6477772ea8a38bb2050ed4db ShortName": "ROMEO7", "6477772ea8a38bb2050ed4db Description": "Prototip timpuriu al vizorului cu reflexie ROMEO7 1x30. Fabricat de SIG Sauer.", "64785e7c19d732620e045e15 Name": "ELCAN Specter vizor holografic HCO", @@ -9704,30 +9704,30 @@ "6478641c19d732620e045e17 Name": "SIG Sauer ECHO1 1-2x30mm 30Hz termoviziune reflexivă", "6478641c19d732620e045e17 ShortName": "ECHO1", "6478641c19d732620e045e17 Description": "ECHO1 lunetă cu termoviziune cu reflexie, are avantaje și aplicații multiple. Fabricat de SIG Sauer.", - "647db1eca8d3399c380d195c Name": "Uluc AKS-74U Alfa Arms Goliaf M-LOK", + "647db1eca8d3399c380d195c Name": "AKS-74U Alfa Arms Goliaf M-LOK handguard", "647db1eca8d3399c380d195c ShortName": "Goliaf MLOK", - "647db1eca8d3399c380d195c Description": "Uluc prelucrat integral prin frezare care poate fi instalat în locul ulucului standard de pe AKS-74U. Prevăzut cu șine M-LOK pe 3 laturi care permit instalarea echipamentelor adiționale cum ar fi mânere tactice, lanterne și punctatoare laser.", - "647dba3142c479dde701b654 Name": "Uluc AK AKdemia Dominator", + "647db1eca8d3399c380d195c Description": "This integrally machined handguard can be installed instead of the standard-issue foregrip on the AKS-74U. It comes fitted with place for M-LOK rail mounts on three sides, allowing for the installation of additional equipment such as tactical foregrips, flashlights, and laser designators.", + "647dba3142c479dde701b654 Name": "AK AKdemia Dominator handguard", "647dba3142c479dde701b654 ShortName": "Dominator", - "647dba3142c479dde701b654 Description": "Ulucul AK AKdemia Dominator crește controlul armei și îmbunătățește prinderea. Șina integrată Picattiny permite modificări adiționale.", - "647dd2b8a12ebf96c3031655 Name": "Uluc AK Alfa Arms ASPID", + "647dba3142c479dde701b654 Description": "The AKdemia Dominator handguard optimizes weapon grip and improves weapon control. The Picattiny rail integrated into the handguard allows for additional weapon tuning.", + "647dd2b8a12ebf96c3031655 Name": "AK Alfa Arms ASPID handguard", "647dd2b8a12ebf96c3031655 ShortName": "Aspid", - "647dd2b8a12ebf96c3031655 Description": "Ulucul AK Alfa Arms ASPID este fabricat din aliaj de aluminiu B95T cu strat DuraCoat. Înlocuiește ulucul standard pe sistemele AK. Fabricat de Alfa Arms.", - "647de824196bf69818044c93 Name": "Uluc AR-15 AB Arms MOD1", + "647dd2b8a12ebf96c3031655 Description": "The ASPID handguard is made of B95T aluminum alloy with a DuraCoat finish, it is intended for installing on the AK assault rifles replacing the standard handguard. Manufactured by Alfa Arms.", + "647de824196bf69818044c93 Name": "AR-15 AB Arms MOD1 handguard", "647de824196bf69818044c93 ShortName": "ABA M1", - "647de824196bf69818044c93 Description": "Ulucul AR-15 AB Arms MOD1 pentru platforma AR-15 vine echipat cu suport superior pentru echipamente și vizoare adiționale.", - "647def638295ebcb5b02f05b Name": "Uluc inferior AR-15 AB Arms MOD1", + "647de824196bf69818044c93 Description": "The AB Arms MOD1 handguard is designed for AR-15 platform weapons. It comes equipped with top mount for attaching additional equipment and sights.", + "647def638295ebcb5b02f05b Name": "AR-15 AB Arms MOD1 lower handguard", "647def638295ebcb5b02f05b ShortName": "ABA M1", - "647def638295ebcb5b02f05b Description": "Uluc inferior AR-15 AB Arms MOD1 pentru sistemele AR-15.", - "648067db042be0705c0b3009 Name": "RTM Pillau mâner tactic (Sand)", + "647def638295ebcb5b02f05b Description": "AB Arms MOD1 lower handguard for the AR-15 rifle.", + "648067db042be0705c0b3009 Name": "RTM Pillau tactical foregrip (Sand)", "648067db042be0705c0b3009 ShortName": "Pillau", - "648067db042be0705c0b3009 Description": "Mâner vertical ușor din aluminiu produs de RDM. Versiunea Sand.", - "64806bdd26c80811d408d37a Name": "RTM Osovets P-2 mâner tactic", + "648067db042be0705c0b3009 Description": "A lightweight aluminum tactical grip manufactured by RTM. Sand version.", + "64806bdd26c80811d408d37a Name": "RTM Osovets P-2 tactical foregrip", "64806bdd26c80811d408d37a ShortName": "Osovets", - "64806bdd26c80811d408d37a Description": "Mâner vertical din aluminiu produs de RTM.", - "64807a29e5ffe165600abc97 Name": "RTM Osovets P-2 mâner tactic (Khaki)", + "64806bdd26c80811d408d37a Description": "An aluminum tactical grip manufactured by RTM.", + "64807a29e5ffe165600abc97 Name": "RTM Osovets P-2 tactical foregrip (Khaki)", "64807a29e5ffe165600abc97 ShortName": "Osovets", - "64807a29e5ffe165600abc97 Description": "Mâner vertical din aluminiu produs de RTM. Versiunea Khaki.", + "64807a29e5ffe165600abc97 Description": "An aluminum tactical grip manufactured by RTM. Khaki version.", "64897ffc3656831810043165 Name": "Cutie rastel sigilată", "64897ffc3656831810043165 ShortName": "Rastel (sigilat)", "64897ffc3656831810043165 Description": "Cutie rastel sigilată", @@ -9923,9 +9923,9 @@ "6489d89debac5a4a1b73caf7 Name": "Cutie rastel sigilată", "6489d89debac5a4a1b73caf7 ShortName": "Rastel (sigilat)", "6489d89debac5a4a1b73caf7 Description": "Cutie rastel sigilată", - "648ae3e356c6310a830fc291 Name": "AK CG101 AR-type adaptor mâner pistol", + "648ae3e356c6310a830fc291 Name": "AK CG101 AR-type pistol grip adapter", "648ae3e356c6310a830fc291 ShortName": "CG101", - "648ae3e356c6310a830fc291 Description": "Adaptor care permite instalarea mânerelor pistol compatibile AR pe puștile AK.", + "648ae3e356c6310a830fc291 Description": "An adapter that allows AR-type pistol grips installation on the AK rifles.", "648afce7ec6bb25b2608defb Name": "PM FAB Defense mâner pistol (Olive Drab)", "648afce7ec6bb25b2608defb ShortName": "FAB OD", "648afce7ec6bb25b2608defb Description": "PM mâner pistol de la FAB Defense cu buton de detașare încărcător care transformă clasicul pistol Sovietic într-un pistol modern și util îmbunătățindu-i foarte mult ergonomia. Versiunea Olive Drab.", @@ -9959,15 +9959,15 @@ "6492fb8253acae0af00a29b6 Name": "PK înălțător", "6492fb8253acae0af00a29b6 ShortName": "PK CS", "6492fb8253acae0af00a29b6 Description": "Înălțător standard pentru mitraliera Kalashnikov, fabricat de V.A. Degtyarev Plant.", - "6494094948796d891603e59f Name": "AK Custom Arms ST-EF 74 extensie pat scheletic", + "6494094948796d891603e59f Name": "AK Custom Arms ST-EF 74 skeleton stock extension", "6494094948796d891603e59f ShortName": "ST-EF", - "6494094948796d891603e59f Description": "Extensie de pat care mărește lungimea standard a cadrului de metal rabatabil de pe platforma AK. Avantajul acestei extensii este că lățimea sprijin-umărului devine egală cu cea a paturile de plastic din seria AK-100. Această extensie adaugă confort la tragere și reduce efectul reculului. Fabricat de Custom Arms.", - "64942bfc6ee699f6890dff95 Name": "AK Vector VR-05T 7.62x39 atenuator", + "6494094948796d891603e59f Description": "A buttpad that extends the length of the standard metal frame folding buttstock of the AK-platform weapons. The advantage of this extension is that the width of the pad is equal to the width of the AK-100 series plastic pad. The buttpad adds comfort when shooting and reduces the recoil effect. Manufactured by Custom Arms.", + "64942bfc6ee699f6890dff95 Name": "AK Vector VR-05T 7.62x39 muzzle brake", "64942bfc6ee699f6890dff95 ShortName": "VR05T", - "64942bfc6ee699f6890dff95 Description": "Atenuator recul pentru pușca AK 7.62x39. Produs de Vector 7.62.", - "64943b74e9998d641b0412ed Name": "AR-15 WDR NERO 556 5.56x45 atenuator recul", + "64942bfc6ee699f6890dff95 Description": "A muzzle brake for AK 7.62x39 assault rifles and compatibles. Manufactured by Vector 7.62.", + "64943b74e9998d641b0412ed Name": "AR-15 WDR NERO 556 5.56x45 muzzle brake", "64943b74e9998d641b0412ed ShortName": "NERO 556", - "64943b74e9998d641b0412ed Description": "NERO 556 5.56x45 atenuator de la Walker Defense Research reduce reculul și deplasarea țevii prin direcționarea gazelor în sus și lateral.", + "64943b74e9998d641b0412ed Description": "The NERO 556 5.56x45 Muzzle Brake from Walker Defense Research reduces recoil and muzzle flip by directing gases upward and to the side.", "6499849fc93611967b034949 Name": "Kalashnikov AK-12 5.45x39 pușcă asalt", "6499849fc93611967b034949 ShortName": "AK-12", "6499849fc93611967b034949 Description": "Kalashnikov AK-12 5.45 este modelul principal de armă din dotarea unităților motorizate ale armatei ruse. AK-12 face parte din sistemul de echipament Ratnik.", @@ -10004,12 +10004,12 @@ "64a436122d2c4e6e970f4117 Name": "", "64a436122d2c4e6e970f4117 ShortName": "", "64a436122d2c4e6e970f4117 Description": "", - "64a536392d2c4e6e970f4121 Name": "WARTECH TV-115 ham blindaj (Olive Drab)", + "64a536392d2c4e6e970f4121 Name": "WARTECH TV-115 ham blindaj", "64a536392d2c4e6e970f4121 ShortName": "TV-115", "64a536392d2c4e6e970f4121 Description": "Sistem de blindaj operațional TV-115 cu plăci din polietilenă densă (clasa 3) ce oferă protecție doar spatelui și pieptului. Fabricat de WARTECH.", - "64a5366719bab53bd203bf33 Name": "Eagle Allied Industries MBSS vestă purtătoare de plăci blindate (Coyote Brown)", + "64a5366719bab53bd203bf33 Name": "Eagle Allied Industries MBSS vestă cu blindaj", "64a5366719bab53bd203bf33 ShortName": "MBSS", - "64a5366719bab53bd203bf33 Description": "Vesta MBSS face parte din sistemul Maritime Ballistic Survivor System. Vesta poate fi folosită cu inserții plutitoare deoarece nu folosește un sistem cu detașare rapidă. Fabricat de Eagle Allied Industries.", + "64a5366719bab53bd203bf33 Description": "MBSS vestă cu plăci din polietilenă densă (clasa 3) ce face parte din sistemul Maritime Ballistic Survivor System. Vesta poate fi folosită cu inserții plutitoare deoarece nu folosește un sistem cu detașare rapidă. Fabricat de Eagle Allied Industries.", "64abd93857958b4249003418 Name": "Interceptor OTV armură (UCP)", "64abd93857958b4249003418 ShortName": "OTV", "64abd93857958b4249003418 Description": "Vesta Interceptor este compusă dintr-un Outer Tactical Vest (OTV) din material textil cu buzunare dorsale și toracice și cu două buzunare pentru inserția plăcilor de blindaj din compozit ceramic de tip SAPI sau ESAPI. Outer Tactical Vest (OTV) este o vestă simplă echipată cu buzunare din tesătură de aramid care protejează împotriva schijelor și a gloanțelor de calibru de pistol.", @@ -10052,46 +10052,46 @@ "64acee6903378853630da544 Name": "7.62x54mm R HP BT cutie muniție (20 buc)", "64acee6903378853630da544 ShortName": "HP BT", "64acee6903378853630da544 Description": "Pachet de muniție 20 bucăți 7.62x54R HP BT.", - "64ad2d8d7e2fcecf0305533f Name": "Inserție de Aramidă", + "64ad2d8d7e2fcecf0305533f Name": "Aramid insert", "64ad2d8d7e2fcecf0305533f ShortName": "", "64ad2d8d7e2fcecf0305533f Description": "", - "64ad2dac6f9247c2f4012439 Name": "Inserție de Aramidă", + "64ad2dac6f9247c2f4012439 Name": "Aramid insert", "64ad2dac6f9247c2f4012439 ShortName": "", "64ad2dac6f9247c2f4012439 Description": "", - "64ad2dba0b9840e4c80c2485 Name": "Inserție de Aramidă", + "64ad2dba0b9840e4c80c2485 Name": "Aramid insert", "64ad2dba0b9840e4c80c2485 ShortName": "", "64ad2dba0b9840e4c80c2485 Description": "", - "64ad2dc66f9247c2f401243d Name": "Inserție de Aramidă", + "64ad2dc66f9247c2f401243d Name": "Aramid insert", "64ad2dc66f9247c2f401243d ShortName": "", "64ad2dc66f9247c2f401243d Description": "", - "64ad2dd30b9840e4c80c2489 Name": "Inserție de Aramidă", + "64ad2dd30b9840e4c80c2489 Name": "Aramid insert", "64ad2dd30b9840e4c80c2489 ShortName": "", "64ad2dd30b9840e4c80c2489 Description": "", "64ad4da55a592f21980c4723 Name": "", "64ad4da55a592f21980c4723 ShortName": "", "64ad4da55a592f21980c4723 Description": "", - "64afc71497cf3a403c01ff38 Name": "Placă balistică Granit Br5", + "64afc71497cf3a403c01ff38 Name": "Granit Br5 ballistic plate", "64afc71497cf3a403c01ff38 ShortName": "Granit Br5", - "64afc71497cf3a403c01ff38 Description": "Plăcile balistice Granit Br5 sunt universale pentru secțiunile frontale și anterioare ale armurii de corp. Au caracteristici ergonomice îmbunătățite oferite de forma anatomică și secționarea în două panouri pentru potrivire optimă pe corp, crescând confortul utilizării.", - "64afd81707e2cf40e903a316 Name": "Placă balistică Granit (Lateral)", - "64afd81707e2cf40e903a316 ShortName": "Granit Lat", - "64afd81707e2cf40e903a316 Description": "Placă balistică Granit Lateral din ceramică pentru buzunarele laterale a toracelui ale vestelor purtătoare de plăci blindate rusești.", - "64afdb577bb3bfe8fe03fd1d Name": "Placă balistică ESBI nivel IV (Lateral)", - "64afdb577bb3bfe8fe03fd1d ShortName": "ESBI IV Lat", - "64afdb577bb3bfe8fe03fd1d Description": "Inserția balistică laterală îmbunătățită (ESBI) este o plăcuță balistică din ceramică pentru buzunarele laterale.", - "64afdcb83efdfea28601d041 Name": "Placă balistică ESAPI nivel IV", + "64afc71497cf3a403c01ff38 Description": "Granit Br5 ballistic plates are unified for use in both chest and back sections of the body armor. Features improved ergonomic characteristics: anatomical shape and division into two panels provides an optimal fit to the user's figure, increasing the comfort of use.", + "64afd81707e2cf40e903a316 Name": "Granit ballistic plate (Side)", + "64afd81707e2cf40e903a316 ShortName": "Granit Side", + "64afd81707e2cf40e903a316 Description": "Granit Side is a ceramic ballistic plate for torso side pouches of Russian bulletproof vests and plate carriers.", + "64afdb577bb3bfe8fe03fd1d Name": "ESBI level IV ballistic plate (Side)", + "64afdb577bb3bfe8fe03fd1d ShortName": "ESBI IV Side", + "64afdb577bb3bfe8fe03fd1d Description": "Enhanced Side Ballistic Inserts (ESBI) is a ceramic ballistic plate for torso side plate pouches.", + "64afdcb83efdfea28601d041 Name": "ESAPI level IV ballistic plate", "64afdcb83efdfea28601d041 ShortName": "ESAPI IV", - "64afdcb83efdfea28601d041 Description": "Inserția blindată protectivă îmbunătățită contra calibrelor ușoare (ESAPI) este o placă balistică din ceramică pentru buzunarele toracice față și spate ale vestei purtătoare de plăci.", - "64afee8e9f589807e30dc68a Name": "Inserție de Aramidă", + "64afdcb83efdfea28601d041 Description": "Enhanced Small Arms Protective Insert (ESAPI) is a ceramic ballistic plate for torso front and back pouches of plate carrier.", + "64afee8e9f589807e30dc68a Name": "Aramid insert", "64afee8e9f589807e30dc68a ShortName": "", "64afee8e9f589807e30dc68a Description": "", - "64afeecb977493a0ee026213 Name": "Inserție de Aramidă", + "64afeecb977493a0ee026213 Name": "Aramid insert", "64afeecb977493a0ee026213 ShortName": "", "64afeecb977493a0ee026213 Description": "", - "64afef49977493a0ee026217 Name": "Inserție de Aramidă", + "64afef49977493a0ee026217 Name": "Aramid insert", "64afef49977493a0ee026217 ShortName": "", "64afef49977493a0ee026217 Description": "", - "64b111fe1be308f1800688c1 Name": "Inserție de Aramidă", + "64b111fe1be308f1800688c1 Name": "Aramid insert", "64b111fe1be308f1800688c1 ShortName": "", "64b111fe1be308f1800688c1 Description": "", "64b11c08506a73f6a10f9364 Name": "", @@ -10136,13 +10136,13 @@ "64b9e265c94d0d15c5027e35 Name": "AK-74 \"Saiga 545\" 5.45x39 20-cartușe", "64b9e265c94d0d15c5027e35 ShortName": "Saiga 545", "64b9e265c94d0d15c5027e35 Description": "Încărcător din polimer Delta-Tech 20 cartușe 5.45x39 Saiga 545, pentru platforma civilă AK cu același nume.", - "64be7095047e826eae02b0c1 Name": "Zulu Nylon Gear M4 Reduced Signature Chest Rig (Ranger Green)", + "64be7095047e826eae02b0c1 Name": "Zulu Nylon Gear M4 Reduced Signature Chest Rig", "64be7095047e826eae02b0c1 ShortName": "M4 RSCR", "64be7095047e826eae02b0c1 Description": "M4 RSCR sistem de ham conceput pentru a fi ușor și minimalist cu utilitate în purtarea articolelor esențiale. Fabricat de Zulu Nylon Gear.", "64be7110bf597ba84a0a41ea Name": "Type 56 Chicom ham", "64be7110bf597ba84a0a41ea ShortName": "Type 56 Chicom", "64be7110bf597ba84a0a41ea Description": "Type 56 Chicom este strămoșul vestelor moderne tactice cu ham. Type 56 este o vestă purtătoare de încărcătoare dezvoltata de armata chineză în anii 50 și a văzut utilizare extinsă în conflictele din secolul 20. La începutul anilor 80 acest ham a ajuns în Afghanistan, unde a fost utilizat de trupele sovietice ca și trofee Chicom. Nu se știe daca Chicom a influențat hamul sovietic Belt-A sau nu.", - "64be79c487d1510151095552 Name": "NPP KlASS Kora-Kulon vestă blindată (Neagră)", + "64be79c487d1510151095552 Name": "NPP KlASS Kora-Kulon vestă blindată", "64be79c487d1510151095552 ShortName": "Kora-Kulon", "64be79c487d1510151095552 Description": "Kora-Kulton vestă anti-glonț este un mijloc de protecție personală ce poate fi purtată pe termen lung destinată tuturor activităților personalului Ministerului Afacerilor Interne și Ministerului Apărării. Aceste veste pot fi purtate sub haine. Făcute pentru a proteja purtătorul de arme de foc și arme albe. Versiunea pe negru.", "64be79e2bf8412471d0d9bcc Name": "NPP KlASS Kora-Kulon vestă blindată (Digital Flora)", @@ -10190,56 +10190,56 @@ "64ccc268c41e91416064ebc7 Name": "Cheie birou profesor Ed. Fiz.", "64ccc268c41e91416064ebc7 ShortName": "PE", "64ccc268c41e91416064ebc7 Description": "Cheia de la biroul profesorului de educație fizică din incinta Școlii nr. 30.", - "64ce572331dd890873175115 Name": "Cheie birou Aspect", + "64ce572331dd890873175115 Name": "Cheie birou \"Aspect\"", "64ce572331dd890873175115 ShortName": "Aspect", "64ce572331dd890873175115 Description": "Cheia de la intrarea în biroul Aspect LLC de la Primorsky Prospekt nr. 56.", - "64d0b40fbe2eed70e254e2d4 Name": "Amuletă Sfințită", - "64d0b40fbe2eed70e254e2d4 ShortName": "Amuletă", - "64d0b40fbe2eed70e254e2d4 Description": "Amuletă misterioasă primita de la Paznicul de Far. Scopul ei este de a-i aminti purtătorului de rolul important pe care l-a jucat în istoria Tarkovului. Foarte fragilă.", + "64d0b40fbe2eed70e254e2d4 Name": "Sacred Amulet", + "64d0b40fbe2eed70e254e2d4 ShortName": "Amulet", + "64d0b40fbe2eed70e254e2d4 Description": "A mysterious amulet given to you by Lightkeeper. Serves as a reminder of the wearer's important role in Tarkov's history. Very fragile.", "64d116f41a9c6143a956127d Name": "Casă de marcat bancară", "64d116f41a9c6143a956127d ShortName": "Casă de marcat bancară", "64d116f41a9c6143a956127d Description": "Casă de marcat bancară", "64d11702dd0cd96ab82c3280 Name": "Seif bancă", "64d11702dd0cd96ab82c3280 ShortName": "Seif bancă", "64d11702dd0cd96ab82c3280 Description": "Seif bancă", - "64d4b23dc1b37504b41ac2b6 Name": "Cheie Sângeroasă Ruginită", - "64d4b23dc1b37504b41ac2b6 ShortName": "Ruginit", - "64d4b23dc1b37504b41ac2b6 Description": "Cheie ruginită cu urme de sânge. Poartă inscripția „Rătăcit pentru eternitate este posesorul acestei chei”.", - "64e73909cd54ef0580746af3 Name": "Pictura #1", - "64e73909cd54ef0580746af3 ShortName": "Pictura #1", + "64d4b23dc1b37504b41ac2b6 Name": "Rusted bloody key", + "64d4b23dc1b37504b41ac2b6 ShortName": "Rusted", + "64d4b23dc1b37504b41ac2b6 Description": "A rusted and bloody key. Has \"The holder of this key will wander for eternity\" inscribed on it.", + "64e73909cd54ef0580746af3 Name": "Picture 1", + "64e73909cd54ef0580746af3 ShortName": "Picture 1", "64e73909cd54ef0580746af3 Description": "", - "64e74a186393886f74114a96 Name": "Pictura #2", - "64e74a186393886f74114a96 ShortName": "Pictura #2", + "64e74a186393886f74114a96 Name": "Picture 2", + "64e74a186393886f74114a96 ShortName": "Picture 2", "64e74a186393886f74114a96 Description": "", - "64e74a1faac4cd0a7264ecd9 Name": "Pictura #3", - "64e74a1faac4cd0a7264ecd9 ShortName": "Pictura #3", + "64e74a1faac4cd0a7264ecd9 Name": "Picture 3", + "64e74a1faac4cd0a7264ecd9 ShortName": "Picture 3", "64e74a1faac4cd0a7264ecd9 Description": "", - "64e74a274d49d23b2c39d317 Name": "Pictura #4", - "64e74a274d49d23b2c39d317 ShortName": "Pictura #4", + "64e74a274d49d23b2c39d317 Name": "Picture 4", + "64e74a274d49d23b2c39d317 ShortName": "Picture 4", "64e74a274d49d23b2c39d317 Description": "", - "64e74a2fc2b4f829615ec332 Name": "Pictura #5", - "64e74a2fc2b4f829615ec332 ShortName": "Pictura #5", + "64e74a2fc2b4f829615ec332 Name": "Picture 5", + "64e74a2fc2b4f829615ec332 ShortName": "Picture 5", "64e74a2fc2b4f829615ec332 Description": "", - "64e74a35aac4cd0a7264ecdb Name": "Pictura #6", - "64e74a35aac4cd0a7264ecdb ShortName": "Pictura #6", + "64e74a35aac4cd0a7264ecdb Name": "Picture 6", + "64e74a35aac4cd0a7264ecdb ShortName": "Picture 6", "64e74a35aac4cd0a7264ecdb Description": "", - "64e74a3d4d49d23b2c39d319 Name": "Pictura #7", - "64e74a3d4d49d23b2c39d319 ShortName": "Pictura #7", + "64e74a3d4d49d23b2c39d319 Name": "Picture 7", + "64e74a3d4d49d23b2c39d319 ShortName": "Picture 7", "64e74a3d4d49d23b2c39d319 Description": "", - "64e74a44c2b4f829615ec334 Name": "Pictura #8", - "64e74a44c2b4f829615ec334 ShortName": "Pictura #8", + "64e74a44c2b4f829615ec334 Name": "Picture 8", + "64e74a44c2b4f829615ec334 ShortName": "Picture 8", "64e74a44c2b4f829615ec334 Description": "", - "64e74a4baac4cd0a7264ecdd Name": "Pictura #9", - "64e74a4baac4cd0a7264ecdd ShortName": "Pictura #9", + "64e74a4baac4cd0a7264ecdd Name": "Picture 9", + "64e74a4baac4cd0a7264ecdd ShortName": "Picture 9", "64e74a4baac4cd0a7264ecdd Description": "", - "64e74a534d49d23b2c39d31b Name": "Pictura #10", - "64e74a534d49d23b2c39d31b ShortName": "Pictura #10", + "64e74a534d49d23b2c39d31b Name": "Picture 10", + "64e74a534d49d23b2c39d31b ShortName": "Picture 10", "64e74a534d49d23b2c39d31b Description": "", - "64e74a5ac2b4f829615ec336 Name": "Pictura #11", - "64e74a5ac2b4f829615ec336 ShortName": "Pictura #11", + "64e74a5ac2b4f829615ec336 Name": "Picture 11", + "64e74a5ac2b4f829615ec336 ShortName": "Picture 11", "64e74a5ac2b4f829615ec336 Description": "", - "64e74a64aac4cd0a7264ecdf Name": "Pictura #12", - "64e74a64aac4cd0a7264ecdf ShortName": "Pictura #12", + "64e74a64aac4cd0a7264ecdf Name": "Picture 12", + "64e74a64aac4cd0a7264ecdf ShortName": "Picture 12", "64e74a64aac4cd0a7264ecdf Description": "", "64ef3efdb63b74469b6c1499 Name": "USEC Predator", "64ef3efdb63b74469b6c1499 ShortName": "", @@ -10249,1211 +10249,1211 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "USEC Predator", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", - "64f07f7726cfa02c506f8ac0 Name": "Jurnal", - "64f07f7726cfa02c506f8ac0 ShortName": "Jurnal", - "64f07f7726cfa02c506f8ac0 Description": "Jurnalul unei persoane care iubește perioada Sovietică.", - "64f09c02b63b74469b6c149f Name": "GPhone X Paramedic", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", + "64f07f7726cfa02c506f8ac0 Name": "Journal", + "64f07f7726cfa02c506f8ac0 ShortName": "Journal", + "64f07f7726cfa02c506f8ac0 Description": "A journal of someone who really loves everything Soviet.", + "64f09c02b63b74469b6c149f Name": "Paramedic's GPhone X", "64f09c02b63b74469b6c149f ShortName": "GPX", - "64f09c02b63b74469b6c149f Description": "Telefon cu informații importante, aparține paramedicului.", - "64f5b4f71a5f313cb144c06c Name": "Ingredientul secret", - "64f5b4f71a5f313cb144c06c ShortName": "Eprubetă", - "64f5b4f71a5f313cb144c06c Description": "Eprubetă cu ingredientul secret pentru mâncarea cea mai delicioasă. Te poate face să accepți oferte ridicole și să spui toate secretele.", - "64f69b4267e11a7c6206e010 Name": "Jurnal bucătar", - "64f69b4267e11a7c6206e010 ShortName": "Jurnal", - "64f69b4267e11a7c6206e010 Description": "Jurnalul bucătarului șef de la restaurantul Beluga.", - "64f6f4c5911bcdfe8b03b0dc Name": "Casetă de valori pentru Turneu", - "64f6f4c5911bcdfe8b03b0dc ShortName": "Turneu", - "64f6f4c5911bcdfe8b03b0dc Description": "Invenție secretă TerraGroup - caseta de valori securizată Turneu.", - "6513ef33e06849f06c0957ca Name": "Degtyarev RPD 7.62x39", + "64f09c02b63b74469b6c149f Description": "A smartphone with valuable data belonging to the ambulance paramedic.", + "64f5b4f71a5f313cb144c06c Name": "Secret component", + "64f5b4f71a5f313cb144c06c ShortName": "Vial", + "64f5b4f71a5f313cb144c06c Description": "A vial with a secret component used to make the most delicious food. May also make you agree to ridiculous deals and tell all your company secrets.", + "64f69b4267e11a7c6206e010 Name": "Chef's diary", + "64f69b4267e11a7c6206e010 ShortName": "Diary", + "64f69b4267e11a7c6206e010 Description": "A diary containing valuable data belonging to a chef from the Beluga restaurant.", + "64f6f4c5911bcdfe8b03b0dc Name": "Tournament secured container", + "64f6f4c5911bcdfe8b03b0dc ShortName": "Tournament", + "64f6f4c5911bcdfe8b03b0dc Description": "A secret TerraGroup invention - the tournament secured container.", + "6513ef33e06849f06c0957ca Name": "Degtyarev RPD 7.62x39 machine gun", "6513ef33e06849f06c0957ca ShortName": "RPD", - "6513ef33e06849f06c0957ca Description": "Mitraliera de companie Degtyarev RPD calibrul 7.62x39 a fost adoptată de Armata Sovietică și a fost folosită de trupele de infanterie intre anii 40 și 60. RPD are un concept elegant fiind o armă de suport puternică, fiabilă și compactă. Fabricată de V.A. Degtyarev Plant.", - "6513eff1e06849f06c0957d4 Name": "Țeavă RPD 7.62x39 520mm", + "6513ef33e06849f06c0957ca Description": "The Degtyarev hand-held machine gun chambered in 7.62x39 caliber. This machine gun was adopted by the Soviet Army and was used as a means of reinforcing infantry squads and platoons from the late forties to the early sixties. The RPD is elegantly designed, resulting in a compact, reliable and quite powerful fire support weapon. Manufactured by V.A. Degtyarev Plant.", + "6513eff1e06849f06c0957d4 Name": "RPD 7.62x39 520mm barrel", "6513eff1e06849f06c0957d4 ShortName": "RPD 520mm", - "6513eff1e06849f06c0957d4 Description": "Țeavă standard de 520mm pentru mitraliera RPD, fabricat de V.A. Degtyarev Plant.", - "6513f037e06849f06c0957d7 Name": "RPD crăcan", + "6513eff1e06849f06c0957d4 Description": "A standard-issue 520mm barrel for the RPD machine gun. Manufactured by V.A. Degtyarev Plant.", + "6513f037e06849f06c0957d7 Name": "RPD bipod", "6513f037e06849f06c0957d7 ShortName": "RPD", - "6513f037e06849f06c0957d7 Description": "Crăcan standard pentru mitraliera RPD, fabricat de V.A. Degtyarev Plant.", - "6513f05a94c72326990a3866 Name": "RPD uluc lemn", - "6513f05a94c72326990a3866 ShortName": "RPD lemn", - "6513f05a94c72326990a3866 Description": "Uluc din lemn standard pentru mitraliera RPD, fabricat de V.A. Degtyarev Plant.", - "6513f0a194c72326990a3868 Name": "RPD 7.62x39 \"Buben\" cutie 100-cartușe", - "6513f0a194c72326990a3868 ShortName": "RPD 100", - "6513f0a194c72326990a3868 Description": "Încărcător standard tip cutie 100 de cartușe pentru mitraliera RPD, fabricat de V.A. Degtyarev Plant.", - "6513f0f5e63f29908d0ffab8 Name": "RPD protecție filet", - "6513f0f5e63f29908d0ffab8 ShortName": "RPD fil.", - "6513f0f5e63f29908d0ffab8 Description": "Protecție filet de țeavă standard pentru mitraliera RPD. Fabricat de V.A. Degtyarev Plant.", - "6513f13a8cb24472490ee32f Name": "RPD mâner pistol lemn", - "6513f13a8cb24472490ee32f ShortName": "RPD MP", - "6513f13a8cb24472490ee32f Description": "Mâner pistol din lemn standard pentru mitraliera RPD, fabricat de V.A. Degtyarev Plant.", - "6513f153e63f29908d0ffaba Name": "RPD înălțător", - "6513f153e63f29908d0ffaba ShortName": "RPD Î", - "6513f153e63f29908d0ffaba Description": "Înălțător standard pentru mitraliera RPD, fabricat de V.A. Degtyarev Plant.", - "6513f1798cb24472490ee331 Name": "RPD pat lemn", - "6513f1798cb24472490ee331 ShortName": "RPD lemn", - "6513f1798cb24472490ee331 Description": "Pat din lemn standard pentru mitraliera RPD, fabricat de V.A. Degtyarev Plant.", - "651580dc71a4f10aec4b6056 Name": "Mâner Pistol AK PUFGUN SG-M2", + "6513f037e06849f06c0957d7 Description": "A standard-issue bipod for the RPD machine gun. Manufactured by V.A. Degtyarev Plant.", + "6513f05a94c72326990a3866 Name": "RPD wooden handguard", + "6513f05a94c72326990a3866 ShortName": "RPD wood", + "6513f05a94c72326990a3866 Description": "A standard-issue wooden handguard for the RPD machine gun. Manufactured by V.A. Degtyarev Plant.", + "6513f0a194c72326990a3868 Name": "RPD 7.62x39 \"Buben\" 100-round box", + "6513f0a194c72326990a3868 ShortName": "Buben", + "6513f0a194c72326990a3868 Description": "A standard-issue 100-round box for the RPD machine gun nicknamed \"Buben\" for its round shape. Manufactured by V.A. Degtyarev Plant.", + "6513f0f5e63f29908d0ffab8 Name": "RPD barrel thread protector", + "6513f0f5e63f29908d0ffab8 ShortName": "RPD thr.", + "6513f0f5e63f29908d0ffab8 Description": "A standard-issue barrel thread protector for the RPD machine gun. Manufactured by V.A. Degtyarev Plant.", + "6513f13a8cb24472490ee32f Name": "RPD wooden pistol grip", + "6513f13a8cb24472490ee32f ShortName": "RPD PG", + "6513f13a8cb24472490ee32f Description": "A standard-issue wooden pistol grip for the RPD machine gun. Manufactured by V.A. Degtyarev Plant.", + "6513f153e63f29908d0ffaba Name": "RPD rear sight", + "6513f153e63f29908d0ffaba ShortName": "RPD RS", + "6513f153e63f29908d0ffaba Description": "A standard-issue rear sight for the RPD machine gun. Manufactured by V.A. Degtyarev Plant.", + "6513f1798cb24472490ee331 Name": "RPD wooden stock", + "6513f1798cb24472490ee331 ShortName": "RPD wood", + "6513f1798cb24472490ee331 Description": "A standard-issue wooden stock for the RPD machine gun. Manufactured by V.A. Degtyarev Plant.", + "651580dc71a4f10aec4b6056 Name": "AK PUFGUN SG-M2 pistol grip", "651580dc71a4f10aec4b6056 ShortName": "SG-M2", - "651580dc71a4f10aec4b6056 Description": "Mâner Pistol AK PUFGUN SG-M2 pentru platformele compatibile AK. Fabricat de PUFGUN.", - "65169d5b30425317755f8e25 Name": "RTM Pillau P-2 mâner tactic (Roșu)", + "651580dc71a4f10aec4b6056 Description": "The SG-M2 pistol grip for AK and compatible rifles. Manufactured by PUFGUN.", + "65169d5b30425317755f8e25 Name": "RTM Pillau P-2 tactical foregrip (Red)", "65169d5b30425317755f8e25 ShortName": "P-2", - "65169d5b30425317755f8e25 Description": "Mâner vertical ușor din aluminiu din a doua generație, produs de RDM. Versiunea roșie.", - "6516b129609aaf354b34b3a8 Name": "SVDS Lynx Arms AK-series adaptor mâner pistol", + "65169d5b30425317755f8e25 Description": "The Pillau second generation lightweight aluminum tactical grip. Manufactured by RTM. Red color version.", + "6516b129609aaf354b34b3a8 Name": "SVDS Lynx Arms AK-series pistol grip adapter", "6516b129609aaf354b34b3a8 ShortName": "P-SVD-S", - "6516b129609aaf354b34b3a8 Description": "Adaptor pentru instalarea mânerelor pistol din familia AK pe pușca SVDS. Fabricat de Lynx Arms.", - "6516e91f609aaf354b34b3e2 Name": "Pat telescopic AR-15 Daniel Defense Enhanced (Negru)", + "6516b129609aaf354b34b3a8 Description": "An adapter that allows installation of AK-series pistol grips on SVDS. Manufactured by Lynx Arms.", + "6516e91f609aaf354b34b3e2 Name": "AR-15 Daniel Defense Enhanced Collapsible Buttstock (Black)", "6516e91f609aaf354b34b3e2 ShortName": "DD ECB", - "6516e91f609aaf354b34b3e2 Description": "Pat cu detașare rapidă pentru carabina AR-15. Fabricat de Daniel Defense. Versiunea neagră.", - "6516e971a3d4c6497930b450 Name": "Pat telescopic AR-15 Daniel Defense Enhanced (FDE)", + "6516e91f609aaf354b34b3e2 Description": "A quick detach buttstock for AR-15 carbines. Manufactured by Daniel Defense. Black version.", + "6516e971a3d4c6497930b450 Name": "AR-15 Daniel Defense Enhanced Collapsible Buttstock (FDE)", "6516e971a3d4c6497930b450 ShortName": "DD ECB", - "6516e971a3d4c6497930b450 Description": "Pat cu detașare rapidă pentru carabina AR-15. Fabricat de Daniel Defense. Versiunea FDE.", - "6516e9bc5901745209404287 Name": "Sprijin-umăr Daniel Defense TCS 12mm", + "6516e971a3d4c6497930b450 Description": "A quick detach buttstock for AR-15 carbines. Manufactured by Daniel Defense. Flat Dark Earth version.", + "6516e9bc5901745209404287 Name": "Daniel Defense TCS 12mm Buttpad ", "6516e9bc5901745209404287 ShortName": "TCS 12", - "6516e9bc5901745209404287 Description": "Sprijin-umăr de formă convexă cu grosime de 12 mm pentru paturile Daniel Defense.", - "6516e9d7e239bd0c487e3766 Name": "Sprijin-umăr Daniel Defense TCS 20mm", + "6516e9bc5901745209404287 Description": "The 12mm Thicker Convex Shape Buttpad for Daniel Defense buttstocks. Manufactured by Daniel Defense.", + "6516e9d7e239bd0c487e3766 Name": "Daniel Defense TCS 20mm Buttpad ", "6516e9d7e239bd0c487e3766 ShortName": "TCS 20", - "6516e9d7e239bd0c487e3766 Description": "Sprijin-umăr de formă convexă cu grosime de 20 mm pentru paturile Daniel Defense.", - "651a8bf3a8520e48047bf708 Name": "Daniel Defense Enhanced M-LOK mâner tactic (Negru)", + "6516e9d7e239bd0c487e3766 Description": "The 20mm Thicker Convex Shape Buttpad for Daniel Defense buttstocks. Manufactured by Daniel Defense.", + "651a8bf3a8520e48047bf708 Name": "Daniel Defense Enhanced M-LOK Vertical Foregrip (Black)", "651a8bf3a8520e48047bf708 ShortName": "DD M-LOK", - "651a8bf3a8520e48047bf708 Description": "Mânerul Tactic Vertical Enhanced M-LOK, se montează pe uluce cu interfață M-LOK. Fabricat de Daniel Defense. Versiune neagră.", - "651a8e529829226ceb67c319 Name": "Daniel Defense Enhanced M-LOK mâner tactic (Coyote Brown)", + "651a8bf3a8520e48047bf708 Description": "The Enhanced M-LOK Vertical Foregrip, installed on M-LOK interface handguards. Manufactured by Daniel Defense. Black version.", + "651a8e529829226ceb67c319 Name": "Daniel Defense Enhanced M-LOK Vertical Foregrip (Coyote Brown)", "651a8e529829226ceb67c319 ShortName": "DD M-LOK", - "651a8e529829226ceb67c319 Description": "Mânerul Tactic Vertical Enhanced M-LOK, se montează pe uluce cu interfață M-LOK. Fabricat de Daniel Defense. Versiune Coyote Brown.", - "651bf5617b3b552ef6712cb7 Name": "AR-15 Daniel Defense GRIP-N-RIP manetă încărcare", + "651a8e529829226ceb67c319 Description": "The Enhanced M-LOK Vertical Foregrip, installed on M-LOK interface handguards. Manufactured by Daniel Defense. Coyote Brown version.", + "651bf5617b3b552ef6712cb7 Name": "AR-15 Daniel Defense GRIP-N-RIP charging handle", "651bf5617b3b552ef6712cb7 ShortName": "GNR", - "651bf5617b3b552ef6712cb7 Description": "Manetă de încărcare GRIP-N-RIP pentru sistemul AR-15. Fabricat de Daniel Defense.", - "651bfe4d1065f87f082e7209 Name": "Uluc Saiga-9 Hartman Gyurza", + "651bf5617b3b552ef6712cb7 Description": "The GRIP-N-RIP charging handle for AR-15 style weapons. Manufactured by Daniel Defense.", + "651bfe4d1065f87f082e7209 Name": "Saiga-9 Hartman Gyurza handguard", "651bfe4d1065f87f082e7209 ShortName": "Gyurza-9", - "651bfe4d1065f87f082e7209 Description": "Uluc tubular pentru carabina Saiga-9. Fabricat de Hartman.", - "65266fd43341ed9aa903dd56 Name": "RPD 7.62x39 țeavă scurtată de 350mm", + "651bfe4d1065f87f082e7209 Description": "A tubular handguard for the Saiga-9 carbine. Manufactured by Hartman.", + "65266fd43341ed9aa903dd56 Name": "RPD 7.62x39 sawed-off 350mm barrel", "65266fd43341ed9aa903dd56 ShortName": "RPD 350mm", - "65266fd43341ed9aa903dd56 Description": "Țeavă scurtată artizanal de 350mm pentru mitraliera RPD.", - "65268d8ecb944ff1e90ea385 Name": "Mitralieră Degtyarev RPDN 7.62x39", + "65266fd43341ed9aa903dd56 Description": "A 350mm barrel shortened by an unknown artisan for the RPD machine gun.", + "65268d8ecb944ff1e90ea385 Name": "Degtyarev RPDN 7.62x39 machine gun", "65268d8ecb944ff1e90ea385 ShortName": "RPDN", - "65268d8ecb944ff1e90ea385 Description": "Mitraliera de companie Degtyarev RPD calibrul 7.62x39 a fost adoptată de Armata Sovietică și a fost folosită de trupele de infanterie intre anii 40 și 60. RPD are un concept elegant fiind o armă de suport puternică, fiabilă și compactă. Varianta RPDN este prevăzută cu o șină de montaj tip coadă-de-rândunică pentru dispozitive optice. Fabricată de V.A. Degtyarev Plant.", - "65290f395ae2ae97b80fdf2d Name": "SIG MCX SPEAR 6.8x51 Blackout pușcă asalt", + "65268d8ecb944ff1e90ea385 Description": "The Degtyarev hand-held machine gun chambered in 7.62x39 caliber. This machine gun was adopted by the Soviet Army and was used as a means of reinforcing infantry squads and platoons from the late forties to the early sixties. The RPD is elegantly designed, resulting in a compact, reliable and quite powerful fire support weapon. The RPDN variant is equipped with a hinged dovetail mount for installing optics. Manufactured by V.A. Degtyarev Plant.", + "65290f395ae2ae97b80fdf2d Name": "SIG MCX SPEAR 6.8x51 assault rifle", "65290f395ae2ae97b80fdf2d ShortName": "SPEAR 6.8", - "65290f395ae2ae97b80fdf2d Description": "MCX SPEAR este o pușcă de asalt multi-calibru dezvoltată si fabricată de SIG Sauer pe baza puștii de asalt MCX. Configurația predominantă este în noul calibru 6.8x51mm (.277 FURY). Concepută special pentru înlocuirea carabinei M4 pentru Armata SUA.", - "652910565ae2ae97b80fdf35 Name": "Țeavă MCX SPEAR 6.8x51 330mm", + "65290f395ae2ae97b80fdf2d Description": "The MCX SPEAR is a multi-caliber assault rifle designed and manufactured by SIG Sauer based on the MCX assault rifle. Primarily chambered in the new 6.8x51mm (.277 FURY) ammunition. Designed specifically for the US Military to replace the M4 carbine.", + "652910565ae2ae97b80fdf35 Name": "MCX SPEAR 6.8x51 330mm barrel", "652910565ae2ae97b80fdf35 ShortName": "SPEAR 330mm", - "652910565ae2ae97b80fdf35 Description": "Țeavă de 13 țoli (330mm) pentru pușca de asalt MCX SPEAR calibrul 6.8x51 (.277 FURY). Fabricată de SIG Sauer.", - "6529109524cbe3c74a05e5b7 Name": "MCX SPEAR manetă încărcare", + "652910565ae2ae97b80fdf35 Description": "A 13 inch (330mm) barrel for the MCX SPEAR assault rifle chambered in 6.8x51 (.277 FURY) ammo. Manufactured by SIG Sauer.", + "6529109524cbe3c74a05e5b7 Name": "MCX SPEAR charging handle", "6529109524cbe3c74a05e5b7 ShortName": "SPEAR", - "6529109524cbe3c74a05e5b7 Description": "Manetă ambidextră standard de încărcare pentru pușca MCX SPEAR. Fabricată de SIG Sauer.", - "652910bc24cbe3c74a05e5b9 Name": "MCX SPEAR Piston Gaze Ajustabil", - "652910bc24cbe3c74a05e5b9 ShortName": "SPEAR gaz", - "652910bc24cbe3c74a05e5b9 Description": "Piston de gaze pentru pușca MCX SPEAR. Fabricat de SIG Sauer.", - "652910ef50dc782999054b97 Name": "Uluc MCX SPEAR 11” M-LOK", + "6529109524cbe3c74a05e5b7 Description": "A standard-issue ambidextrous charging handle for the MCX SPEAR assault rifle. Manufactured by SIG Sauer.", + "652910bc24cbe3c74a05e5b9 Name": "MCX SPEAR Adjustable Gas Piston", + "652910bc24cbe3c74a05e5b9 ShortName": "SPEAR gas", + "652910bc24cbe3c74a05e5b9 Description": "A gas piston for the MCX SPEAR assault rifle. Manufactured by SIG Sauer.", + "652910ef50dc782999054b97 Name": "MCX SPEAR 11 inch M-LOK handguard", "652910ef50dc782999054b97 ShortName": "SPEAR 11\"", - "652910ef50dc782999054b97 Description": "Uluc de 11 țoli pentru pușca MCX SPEAR echipat cu interfață M-LOK pentru instalarea dispozitivelor și accesoriilor adiționale. Fabricat de SIG Sauer.", + "652910ef50dc782999054b97 Description": "An 11 inch handguard for the MCX SPEAR assault rifle equipped with an M-LOK interface for installation of additional devices and accessories. Manufactured by SIG Sauer.", "6529113b5ae2ae97b80fdf39 Name": "MCX SPEAR Clutch-Lok QD 6.8x51 Shouldered Flash Hider", "6529113b5ae2ae97b80fdf39 ShortName": "CLQD", - "6529113b5ae2ae97b80fdf39 Description": "MCX SPEAR Clutch-Lok QD 6.8x51 Shouldered Flash Hider este un ascunzător de flamă eficient și servește ca și suport pentru montarea unui amortizor de sunet SLX/SLH. Fabricat de SIG Sauer.", + "6529113b5ae2ae97b80fdf39 Description": "The SPEAR Clutch-Lok Shouldered Flash Hider is an effective flash suppressor that also serves as an attachment platform for the SLX/SLH sound suppressor. Manufactured by SIG Sauer.", "652911675ae2ae97b80fdf3c Name": "AR-15 SIG M400 Reduced Angle Pistol Grip (Coyote Tan)", "652911675ae2ae97b80fdf3c ShortName": "M400", - "652911675ae2ae97b80fdf3c Description": "Mânerul pistol din polimer M400 Reduced Angle se poate monta pe orice armă bazată pe AR-15. Fabricat de SIG Sauer. Versiune Coyote Tan.", - "6529119424cbe3c74a05e5bb Name": "MCX SPEAR 6.8x51 cutie superioară", + "652911675ae2ae97b80fdf3c Description": "The polymer M400 Reduced Angle Pistol Grip fits any weapon compatible with AR-15 system. Manufactured by SIG Sauer. Coyote Tan version.", + "6529119424cbe3c74a05e5bb Name": "MCX SPEAR 6.8x51 upper receiver", "6529119424cbe3c74a05e5bb ShortName": "SPEAR 6.8", - "6529119424cbe3c74a05e5bb Description": "Cutia superioară standard pentru pușca de asalt MCX SPEAR, calibrul6.8x51mm (.277 FURY). Prevăzut cu un suport pentru montajul unor dispozitive suplimentare. Fabricat de SIG Sauer.", - "652911e650dc782999054b9d Name": "MCX SPEAR SLX68-MG-QD 6.8x51 amortizor", + "6529119424cbe3c74a05e5bb Description": "A standard-issue upper receiver for the MCX SPEAR assault rifle, chambered in 6.8x51mm (.277 FURY). Equipped with a mount for attaching additional devices. Manufactured by SIG Sauer.", + "652911e650dc782999054b9d Name": "MCX SPEAR SLX68-MG-QD 6.8x51 sound suppressor", "652911e650dc782999054b9d ShortName": "SLX68", - "652911e650dc782999054b9d Description": "Amortizorul de sunet MCX SPEAR SLX68-MG-QD 6.8x51 este destinat utilizării cu cartușul de calibrul 6.8x51 (.277 FURY). Poate fi montat pe ascunzătoarele de flamă Clutch-Lok. Fabricat de SIG Sauer.", + "652911e650dc782999054b9d Description": "The SLX68-MG-QD suppressor is designed for use with the 6.8x51 (.277 FURY) caliber cartridge. Can only be mounted on Clutch-Lok flash hiders. Manufactured by SIG Sauer.", "6529243824cbe3c74a05e5c1 Name": "6.8x51mm SIG Hybrid", "6529243824cbe3c74a05e5c1 ShortName": "Hybrid", - "6529243824cbe3c74a05e5c1 Description": "Cartuș 6.8x51mm (.277 FURY) cu jachetă bimetal (bază din oțel inoxidabil și corp de alamă), fabricat de SIG Sauer. Oferă viteză de plecare sporită, mai multă energie transferată la impact și un cartuș mai ușor decât 5.56x45, dar care lovește mai puternic decât 7.62x51, având de asemenea capacitate penetrantă sporită.", + "6529243824cbe3c74a05e5c1 Description": "A mil-spec 6.8x51mm (.277 FURY) rifle round with bi-metallic case (stainless steel base coupled to a brass body), manufactured by SIG Sauer. Provides a higher velocity, more energy hitting being transferred to the target, and a lighter cartridge than 5.56x45, and hits harder than 7.62x51, while also having a great penetration power against modern body armor.", "6529302b8c26af6326029fb7 Name": "6.8x51mm SIG FMJ", "6529302b8c26af6326029fb7 ShortName": "FMJ", - "6529302b8c26af6326029fb7 Description": "Cartuș cu destinație civilă 6.8x51mm SIG FMJ încărcătura de 135 de măsuri, fabricat de SIG Sauer.", - "6529348224cbe3c74a05e5c4 Name": "Adaptor cu balama MCX/MPX", + "6529302b8c26af6326029fb7 Description": "A civilian 6.8x51mm (.277 FURY) Elite Ball FMJ (Full Metal Jacket) 135 grain rifle round, manufactured by SIG Sauer.", + "6529348224cbe3c74a05e5c4 Name": "MCX/MPX Stock Locking Hinge Assembly", "6529348224cbe3c74a05e5c4 ShortName": "MCX/MPX", - "6529348224cbe3c74a05e5c4 Description": "Adaptor pentru paturi rabatabile pentru puști și pistoale mitralieră SIG. Fabricat de SIG Sauer.", - "6529366450dc782999054ba0 Name": "Adaptor tub tampon rabatabil MCX/MPX (Coyote Tan)", + "6529348224cbe3c74a05e5c4 Description": "A folding stock adapter for SIG rifles and SMGs. Manufactured by SIG Sauer.", + "6529366450dc782999054ba0 Name": "MCX/MPX folding stock adapter buffer tube (Coyote Tan)", "6529366450dc782999054ba0 ShortName": "MCX/MPX", - "6529366450dc782999054ba0 Description": "Tub tampon pentru adaptorul pentru paturi rabatabile la puștile AR și pistoalele mitralieră SIG. Fabricat de SIG Sauer. Versiunea Coyote Tan.", - "6529370c405a5f51dd023db8 Name": "Pat AR-15 MOE SL-K (Coyote Tan)", + "6529366450dc782999054ba0 Description": "A buffer tube for the folding stock adapter for SIG AR platform rifles and SMGs. Manufactured by SIG Sauer. Coyote Tan version.", + "6529370c405a5f51dd023db8 Name": "AR-15 Magpul MOE SL-K buttstock (Coyote Tan)", "6529370c405a5f51dd023db8 ShortName": "MOE SL-K", - "6529370c405a5f51dd023db8 Description": "Pat cu detașare rapidă pentru carabina AR-15. Fabricat de Magpul Original Equipment. Versiunea Coyote Tan.", - "65293c38fc460e50a509cb25 Name": "Încărcător AR-10 7.62x51 Lancer L7AWM 20-cartușe", + "6529370c405a5f51dd023db8 Description": "A quick-detach buttstock for AR-15/M16 rifles with mil-spec buffer tube. Manufactured by Magpul Original Equipment. Coyote Tan version.", + "65293c38fc460e50a509cb25 Name": "AR-10 7.62x51 Lancer L7AWM 20-round magazine", "65293c38fc460e50a509cb25 ShortName": "L7AWM", - "65293c38fc460e50a509cb25 Description": "Încărcător cu stivă dublă de 20 de cartușe 7.62x51 NATO. Fabricat de Lancer Systems.", - "65293c7a17e14363030ad308 Name": "Încărcător AR-10 7.62x51 Lancer L7AWM 25-cartușe", + "65293c38fc460e50a509cb25 Description": "A 20-round double-stack L7AWM 20 magazine for 7.62x51 NATO ammunition. Manufactured by Lancer Systems.", + "65293c7a17e14363030ad308 Name": "AR-10 7.62x51 Lancer L7AWM 25-round magazine", "65293c7a17e14363030ad308 ShortName": "L7AWM", - "65293c7a17e14363030ad308 Description": "Încărcător cu stivă dublă de 25 de cartușe 7.62x51 NATO. Fabricat de Lancer Systems.", - "6530e8587cbfc1e309011e37 Name": "Cagula lui Zryachiy Răzbunătorul", - "6530e8587cbfc1e309011e37 ShortName": "Răzbunător", - "6530e8587cbfc1e309011e37 Description": "Cagulă intimidantă roșie, purtată de Zryachiy răzbunătorul.", - "6531119b9afebff7ff0a1769 Name": "Cagula lui Zryachiy Răzbunătorul (împăturată)", - "6531119b9afebff7ff0a1769 ShortName": "Răzbunător", - "6531119b9afebff7ff0a1769 Description": "Cagulă intimidantă roșie, purtată de Zryachiy. Purtată pe cap.", - "65392f611406374f82152ba5 Name": "GBRS Aimpoint Hydra kit suport (Negru)", + "65293c7a17e14363030ad308 Description": "A 25-round double-stack L7AWM 25 magazine for 7.62x51 NATO ammunition. Manufactured by Lancer Systems.", + "6530e8587cbfc1e309011e37 Name": "Vengeful Zryachiy's balaclava", + "6530e8587cbfc1e309011e37 ShortName": "Vengeful", + "6530e8587cbfc1e309011e37 Description": "An intimidating red face mask, worn by vengeful Zryachiy.", + "6531119b9afebff7ff0a1769 Name": "Vengeful Zryachiy's balaclava (folded)", + "6531119b9afebff7ff0a1769 ShortName": "Vengeful", + "6531119b9afebff7ff0a1769 Description": "An intimidating red face mask, worn by Zryachiy. Folded to be worn as a hat.", + "65392f611406374f82152ba5 Name": "GBRS Aimpoint Hydra Mount Kit (Black)", "65392f611406374f82152ba5 ShortName": "Hydra", - "65392f611406374f82152ba5 Description": "Kitul de montaj Hydra pentru seria de dispozitive optice și tactice Aimpoint Micro T-1 și H-1. Fabricat de GBRS Group.", - "653931da5db71d30ab1d6296 Name": "GBRS Aimpoint Hydra kit suport (FDE)", + "65392f611406374f82152ba5 Description": "The Hydra Mount Kit for Aimpoint Micro T-1 and H-1 series sights and tactical equipment. Manufactured by GBRS Group.", + "653931da5db71d30ab1d6296 Name": "GBRS Aimpoint Hydra Mount Kit (FDE)", "653931da5db71d30ab1d6296 ShortName": "Hydra", - "653931da5db71d30ab1d6296 Description": "Kitul de montaj Hydra pentru seria de dispozitive optice și tactice Aimpoint Micro T-1 și H-1. Fabricat de GBRS Group. Versiunea FDE.", - "653ecc425a1690d9d90491e4 Name": "Capac gaz SKS ATI Monte Carlo", + "653931da5db71d30ab1d6296 Description": "The Hydra Mount Kit for Aimpoint Micro T-1 and H-1 series sights and tactical equipment. Manufactured by GBRS Group. Flat Dark Earth version.", + "653ecc425a1690d9d90491e4 Name": "SKS ATI Monte Carlo gas tube cover", "653ecc425a1690d9d90491e4 ShortName": "SKS MC", - "653ecc425a1690d9d90491e4 Description": "Capac pentru tubul de gaz de la carabina SKS. Fabricat de ATI Outdoors.", - "653ecd065a1690d9d90491e6 Name": "Capac gaz cu șină SKS TAPCO", + "653ecc425a1690d9d90491e4 Description": "A cover for the SKS carbine gas tube. Manufactured by ATI Outdoors.", + "653ecd065a1690d9d90491e6 Name": "SKS TAPCO railed gas tube cover", "653ecd065a1690d9d90491e6 ShortName": "SKS TAPCO", - "653ecd065a1690d9d90491e6 Description": "Capac cu șină pentru tubul de gaz/ulucul de la carabina SKS. Fabricat de TAPCO.", - "653ece125a1690d9d90491e8 Name": "Capac gaz SKS FAB Defense UAS", + "653ecd065a1690d9d90491e6 Description": "A railed gas tube cover/handguard for the SKS carbine. Manufactured by TAPCO.", + "653ece125a1690d9d90491e8 Name": "SKS FAB Defense UAS gas tube cover", "653ece125a1690d9d90491e8 ShortName": "SKS UAS", - "653ece125a1690d9d90491e8 Description": "Capac pentru tubul de gaz de la carabina SKS. Fabricat de FAB Defense.", - "653ecef836fae5a82f02b869 Name": "Pat SKS ATI Monte Carlo", + "653ece125a1690d9d90491e8 Description": "A cover for the SKS carbine gas tube. Manufactured by FAB Defense.", + "653ecef836fae5a82f02b869 Name": "SKS ATI Monte Carlo chassis", "653ecef836fae5a82f02b869 ShortName": "SKS MC", - "653ecef836fae5a82f02b869 Description": "Pat ușor în stilul Monte Carlo pentru carabina SKS, pentru sport și vânătoare. Fabricat de ATI Outdoors.", - "653ed132896b99b40a0292e6 Name": "Pat SKS FAB Defense UAS", + "653ecef836fae5a82f02b869 Description": "A lightweight Monte Carlo-style stock for the SKS carbine, designed for sport shooting and hunting. Manufactured by ATI outdoors.", + "653ed132896b99b40a0292e6 Name": "SKS FAB Defense UAS buttstock", "653ed132896b99b40a0292e6 ShortName": "UAS SKS", - "653ed132896b99b40a0292e6 Description": "Patul rabatabil din polimer ușor pentru carabina SKS, fabricat de FAB Defense.", - "653ed19d22e1ef3d9002c328 Name": "SKS TAPCO Intrafuse șină inferioară șasiu", + "653ed132896b99b40a0292e6 Description": "A lightweight polymer folding buttstock for the SKS carbine. Manufactured by FAB Defense.", + "653ed19d22e1ef3d9002c328 Name": "SKS TAPCO Intrafuse chassis lower rail", "653ed19d22e1ef3d9002c328 ShortName": "TAPCO Intrafuse", - "653ed19d22e1ef3d9002c328 Description": "Șină inferioară scurtă Weaver/Picatinny ce permite instalarea mânerelor verticale pe șasiul Intrafuse. Fabricat de TAPCO.", - "6540d2162ae6d96b540afcaf Name": "PR-Taran pulan", + "653ed19d22e1ef3d9002c328 Description": "A short Weaver/Picatinny type rail for installation of tactical foregrips on the Intrafuse chassis. Manufactured by TAPCO.", + "6540d2162ae6d96b540afcaf Name": "PR-Taran police baton", "6540d2162ae6d96b540afcaf ShortName": "PR-Taran", - "6540d2162ae6d96b540afcaf Description": "Bastonul PR-Taran cu mâner este folosit de poliție și jandarmerie pentru protecție si controlul mulțimilor.", + "6540d2162ae6d96b540afcaf Description": "The PR-Taran baton with side handle is used by law enforcement agencies for protection and crowd control.", "65424185a57eea37ed6562e9 Name": "", "65424185a57eea37ed6562e9 ShortName": "", "65424185a57eea37ed6562e9 Description": "", "6542435ea57eea37ed6562f0 Name": "", "6542435ea57eea37ed6562f0 ShortName": "", "6542435ea57eea37ed6562f0 Description": "", - "65434a4e4e3a01736a6c9706 Name": "Șină Hartman Lenok 70mm", + "65434a4e4e3a01736a6c9706 Name": "Hartman Lenok 70mm rail", "65434a4e4e3a01736a6c9706 ShortName": "Lenok", - "65434a4e4e3a01736a6c9706 Description": "Șina tip Weaver ”Lenok” permite instalarea echipamentelor adiționale pe ulucul tubular Hartman.", - "6544d4187c5457729210d277 Name": "Axion Kobra EKP-1S-03 colimator reflex (coadă-de-rândunică)", + "65434a4e4e3a01736a6c9706 Description": "The \"Lenok\" Weaver rail allows installation of additional equipment on Hartman tubular handguards.", + "6544d4187c5457729210d277 Name": "Axion Kobra EKP-1S-03 reflex sight (Dovetail)", "6544d4187c5457729210d277 ShortName": "EKP-1S-03", - "6544d4187c5457729210d277 Description": "Kobra este o serie de colimatoare tip red dot foarte populară printre agențiile de pază si trăgători civili. A fost concepută pentru forțele armate din Federația Rusă, dar nu a fost niciodată adoptată. Această versiune este destinată instalării pe o șină tip coadă-de-rândunică. Fabricat de Axion.", - "654a4a964b446df1ad03f192 Name": "Placă balistică Granit 4RS (Anterior)", - "654a4a964b446df1ad03f192 ShortName": "Granit 4RS Ante", - "654a4a964b446df1ad03f192 Description": "Două plăci blindate pentru secțiunea anterioară a vestei blindate 6B13. Au caracteristici ergonomice îmbunătățite oferite de forma anatomică și secționarea în două panouri pentru potrivire optimă pe corp, crescând confortul utilizării.", - "654a4dea7c17dec2f50cc86a Name": "Placă balistică 6B12 (Frontal)", + "6544d4187c5457729210d277 Description": "Kobra is a highly popular red dot sight among law enforcement agencies and civilian shooters. It was developed for the Armed Forces of the Russian Federation. EKP-1S-03 has earned a reputation of reliable, fail-safe in the harshest field conditions among hunters, sports shooters, soldiers and collectors. This sight is designed for installation on the Dovetail type mounts. Manufactured by Axion.", + "654a4a964b446df1ad03f192 Name": "Granit 4RS ballistic plates (Back)", + "654a4a964b446df1ad03f192 ShortName": "Granit 4RS Back", + "654a4a964b446df1ad03f192 Description": "Two armor plates for the back section of 6B13 body armor. Features improved ergonomic characteristics: anatomical shape and division into two panels provides an optimal fit to the user's figure, increasing the comfort of use.", + "654a4dea7c17dec2f50cc86a Name": "6B12 ballistic plates (Front)", "654a4dea7c17dec2f50cc86a ShortName": "6B12 Front", - "654a4dea7c17dec2f50cc86a Description": "Plăcuțe balistice din oțel călit pentru buzunarul frontal a toracelui ale vestelor purtătoare de plăci blindate rusești.", - "654a4f8bc721968a4404ef18 Name": "Placă balistică Korund-VM (Lateral)", - "654a4f8bc721968a4404ef18 ShortName": "Korund-VM Lat", - "654a4f8bc721968a4404ef18 Description": "Placă din oțel călit pentru buzunarele laterale ale vestelor blindate rusești.", - "654a8976f414fcea4004d78b Name": "Inserție de Aramidă", + "654a4dea7c17dec2f50cc86a Description": "Armored steel plates for torso front pouches of Russian bulletproof vests.", + "654a4f8bc721968a4404ef18 Name": "Korund-VM ballistic plate (Side)", + "654a4f8bc721968a4404ef18 ShortName": "Korund-VM Side", + "654a4f8bc721968a4404ef18 Description": "Steel ballistic plate for side pouches of Russian bulletproof vests.", + "654a8976f414fcea4004d78b Name": "Aramid insert", "654a8976f414fcea4004d78b ShortName": "", "654a8976f414fcea4004d78b Description": "", - "654a8ae00337d53f9102c2aa Name": "Inserție de Aramidă", + "654a8ae00337d53f9102c2aa Name": "Aramid insert", "654a8ae00337d53f9102c2aa ShortName": "", "654a8ae00337d53f9102c2aa Description": "", - "654a8b0b0337d53f9102c2ae Name": "Inserție de Aramidă", + "654a8b0b0337d53f9102c2ae Name": "Aramid insert", "654a8b0b0337d53f9102c2ae ShortName": "", "654a8b0b0337d53f9102c2ae Description": "", - "654a8b3df414fcea4004d78f Name": "Inserție de Aramidă", + "654a8b3df414fcea4004d78f Name": "Aramid insert", "654a8b3df414fcea4004d78f ShortName": "", "654a8b3df414fcea4004d78f Description": "", - "654a8b60f414fcea4004d793 Name": "Inserție de Aramidă", + "654a8b60f414fcea4004d793 Name": "Aramid insert", "654a8b60f414fcea4004d793 ShortName": "", "654a8b60f414fcea4004d793 Description": "", - "654a8b80f414fcea4004d797 Name": "Inserție de Aramidă", + "654a8b80f414fcea4004d797 Name": "Aramid insert", "654a8b80f414fcea4004d797 ShortName": "", "654a8b80f414fcea4004d797 Description": "", - "654a8ba90337d53f9102c2b2 Name": "Inserție de Aramidă", + "654a8ba90337d53f9102c2b2 Name": "Aramid insert", "654a8ba90337d53f9102c2b2 ShortName": "", "654a8ba90337d53f9102c2b2 Description": "", - "654a8bc5f414fcea4004d79b Name": "Inserție de Aramidă", + "654a8bc5f414fcea4004d79b Name": "Aramid insert", "654a8bc5f414fcea4004d79b ShortName": "", "654a8bc5f414fcea4004d79b Description": "", - "654a90aff4f81a421b0a7c86 Name": "Fibre de aramidă în straturi", + "654a90aff4f81a421b0a7c86 Name": "Layers of aramid fiber", "654a90aff4f81a421b0a7c86 ShortName": "", "654a90aff4f81a421b0a7c86 Description": "", - "654a91068e1ce698150fd1e2 Name": "Fibre de aramidă în straturi", + "654a91068e1ce698150fd1e2 Name": "Layers of aramid fiber", "654a91068e1ce698150fd1e2 ShortName": "", "654a91068e1ce698150fd1e2 Description": "", - "654a9189bcc67a392b056c79 Name": "Fibre de aramidă în straturi", + "654a9189bcc67a392b056c79 Name": "Layers of aramid fiber", "654a9189bcc67a392b056c79 ShortName": "", "654a9189bcc67a392b056c79 Description": "", - "6551fec55d0cf82e51014288 Name": "Hibrid din materiale compozite", + "6551fec55d0cf82e51014288 Name": "Hybrid composite materials", "6551fec55d0cf82e51014288 ShortName": "", "6551fec55d0cf82e51014288 Description": "", - "655200ba0ef76cf7be09d528 Name": "Hibrid din materiale compozite", + "655200ba0ef76cf7be09d528 Name": "Hybrid composite materials", "655200ba0ef76cf7be09d528 ShortName": "", "655200ba0ef76cf7be09d528 Description": "", - "65573fa5655447403702a816 Name": "Placă balistică Granit Br4", + "65573fa5655447403702a816 Name": "Granit Br4 ballistic plate", "65573fa5655447403702a816 ShortName": "Granit Br4", - "65573fa5655447403702a816 Description": "Plăcile balistice Granit Br4 sunt universale pentru secțiunile frontale și anterioare ale armurii de corp. Au caracteristici ergonomice îmbunătățite oferite de forma anatomică și secționarea în două panouri pentru potrivire optimă pe corp, crescând confortul utilizării.", - "6557458f83942d705f0c4962 Name": "Placă balistică ESBI nivel III+ (Lateral)", - "6557458f83942d705f0c4962 ShortName": "SSAPI III+ Lateral", - "6557458f83942d705f0c4962 Description": "Inserția balistică laterală îmbunătățită (SSAPI) este o plăcuță balistică din ceramică pentru buzunarele laterale.", - "655746010177119f4a097ff7 Name": "Placă balistică SAPI nivel III+", + "65573fa5655447403702a816 Description": "Granit Br4 ballistic plates are unified for use in both chest and back sections of the body armor. Features improved ergonomic characteristics: anatomical shape and division into two panels provides an optimal fit to the user's figure, increasing the comfort of use.", + "6557458f83942d705f0c4962 Name": "SSAPI level III+ ballistic plate (Side)", + "6557458f83942d705f0c4962 ShortName": "SSAPI III+ Side", + "6557458f83942d705f0c4962 Description": "Side Small Arms Protective Insert (SSAPI) is a ceramic ballistic plate for torso side plate pouches.", + "655746010177119f4a097ff7 Name": "SAPI level III+ ballistic plate", "655746010177119f4a097ff7 ShortName": "SAPI III+", - "655746010177119f4a097ff7 Description": "Inserția blindată protectivă contra calibrelor ușoare (SAPI) este o placă balistică din ceramică pentru buzunarele toracice față și spate ale vestei purtătoare de plăci.", - "6557519ac9b1d9bdcb0777e1 Name": "Inserție de Aramidă", + "655746010177119f4a097ff7 Description": "Small Arms Protective Insert (SAPI) is a ceramic ballistic plate for torso front and back pouches of plate carrier.", + "6557519ac9b1d9bdcb0777e1 Name": "Aramid insert", "6557519ac9b1d9bdcb0777e1 ShortName": "", "6557519ac9b1d9bdcb0777e1 Description": "", - "655751db58aa1b6dbd0cc295 Name": "Inserție de Aramidă", + "655751db58aa1b6dbd0cc295 Name": "Aramid insert", "655751db58aa1b6dbd0cc295 ShortName": "", "655751db58aa1b6dbd0cc295 Description": "", - "655c652d60d0ac437100fed7 Name": "BEAR figurină operator", + "655c652d60d0ac437100fed7 Name": "BEAR operative figurine", "655c652d60d0ac437100fed7 ShortName": "BEAR", - "655c652d60d0ac437100fed7 Description": "Figurină de colecție Tarko a unui luptător PMC BEAR. Imaginea pentru colecționari prezintă un soldat cu o pușcă MP-155 Ultima care exprimă spiritul și voința operatorilor BEAR de a lupta până la capăt.", - "655c663a6689c676ce57af85 Name": "USEC figurină operator", + "655c652d60d0ac437100fed7 Description": "The Tarko collectible figure of a BEAR PMC fighter. This collectible image of a soldier with an MP-155 Ultima perfectly conveys the spirit and willingness of Bears to fight to the end.", + "655c663a6689c676ce57af85 Name": "USEC operative figurine", "655c663a6689c676ce57af85 ShortName": "USEC", - "655c663a6689c676ce57af85 Description": "Figurină de colecție Tarko a unui luptător PMC USEC. Operatorul USEC este dur și periculos, și nu prea vorbește rusă.", - "655c669103999d3c810c025b Name": "Figurină cultist", + "655c663a6689c676ce57af85 Description": "The Tarko collectible figure of a USEC PMC fighter. This USEC operative is tough, deadly, and doesn't really speak much Russian.", + "655c669103999d3c810c025b Name": "Cultist figurine", "655c669103999d3c810c025b ShortName": "Cultist", - "655c669103999d3c810c025b Description": "Figurină de colecție Tarko a unui cultist. Artistul portretizează meticulos acest individ necunoscut ascuns de glugă. Se poate vedea atenția la detalii când vine vorba de cuțitul neobișnuit. Ai putea crede că artistul însuși e familiar cu lama acestei arme.", - "655c66e40b2de553b618d4b8 Name": "Figurina politicianului Mutkevich", + "655c669103999d3c810c025b Description": "The Tarko collectible figure of a local cultist. The craftsman has very meticulously portrayed these hooded unidentified individuals. Particular attention was paid to the unusual knife. Looks like the author had familiarized himself firsthand with the sharpness of its blade.", + "655c66e40b2de553b618d4b8 Name": "Politician Mutkevich figurine", "655c66e40b2de553b618d4b8 ShortName": "Mutkevich", - "655c66e40b2de553b618d4b8 Description": "Figurină de colecție Tarko a politicianului pe nume Mutkevich. Artistul necunoscut a fost impresionat de fostul politician care acum luptă pentru propria viață in echipa de curățenie a Arenei.", - "655c673673a43e23e857aebd Name": "Figurină Scav", + "655c66e40b2de553b618d4b8 Description": "The Tarko collectible figure of a politician called Mutkevich. The unknown craftsman was impressed with how the former politician and current fighter of the Arena cleanup crew from is fighting for his life.", + "655c673673a43e23e857aebd Name": "Scav figurine", "655c673673a43e23e857aebd ShortName": "Scav", - "655c673673a43e23e857aebd Description": "Figurină de colecție Tarko a unui Scav. Artistul necunoscut a decis să portretizeze imaginea unui Scav de rând de pe Străzile din Tarkov. Nu e clar ce anume l-a impresionat mai mult pe artist: șapca sau cât de sârguincios a fost Scavul încercând să ochească.", - "655c67782a1356436041c9c5 Name": "Figurină Ryzhy", + "655c673673a43e23e857aebd Description": "The Tarko collectible figure of a Scav. An unknown craftsman decided to portray a regular representative of the Scavs on Streets of Tarkov. It is unclear what impressed the author more: the memorable hat or how diligently the Scav tried to aim.", + "655c67782a1356436041c9c5 Name": "Ryzhy figurine", "655c67782a1356436041c9c5 ShortName": "Ryzhy", - "655c67782a1356436041c9c5 Description": "Figurină de colecție Tarkov a unui Scav pe nume Ryzhy. Auzind de aventurile lui Ryzhy, un Scav binecunoscut în anumite cercuri, artistul a creat această figurină.", - "655c67ab0d37ca5135388f4b Name": "Figurină Moș Gerilă", - "655c67ab0d37ca5135388f4b ShortName": "Moș Gerilă", - "655c67ab0d37ca5135388f4b Description": "Figurină de colecție Tarko a lui Moș Gerilă. De această dată, artizanul a portretizat imaginea unuia dintre Scavi care se costumează de Crăciun și Anul Nou și împarte prin oraș cadouri prădate de-a lungul anului. Conform tradiției, luptătorii PMC și Scavii nu-l atacă pe acest ciudat.", - "655cb6b5d680a544f30607fa Name": "AKS-74U Legal Arsenal Piligrim capac închizător cu șină", + "655c67782a1356436041c9c5 Description": "The Tarko collectible figure of a Scav called Ryzhy. Having heard of the adventures of the well-known in certain circles Ryzhy, an unknown craftsman created this figurine.", + "655c67ab0d37ca5135388f4b Name": "Ded Moroz figurine", + "655c67ab0d37ca5135388f4b ShortName": "Ded Moroz", + "655c67ab0d37ca5135388f4b Description": "The Tarko collectible figure of a Ded Moroz. This time, the craftsman portrayed a collective image of one of the Scavs who changes his clothes every Christmas and New Year and gives everyone in the city gifts that he managed to loot during the year. Traditionally, PMC fighters and Scavs do not attack this oddball.", + "655cb6b5d680a544f30607fa Name": "AKS-74U Legal Arsenal Piligrim railed dust cover", "655cb6b5d680a544f30607fa ShortName": "Piligrim", - "655cb6b5d680a544f30607fa Description": "Capac închizător ”Piligrim” cu șină Picatinny integrată pentru AKS-74U. Permite montajul dispozitivelor optice. Fabricat de Legal Arsenal.", - "655dccfdbdcc6b5df71382b6 Name": "Strike Industries Cobra Tactical mâner vertica (FDE)", + "655cb6b5d680a544f30607fa Description": "The \"Piligrim\" receiver dust cover with integrated Picatinny rail for AKS-74U. Allows installation of reflex sights and optics. Manufactured by Legal Arsenal.", + "655dccfdbdcc6b5df71382b6 Name": "Strike Industries Cobra Tactical foregrip (FDE)", "655dccfdbdcc6b5df71382b6 ShortName": "SI Cobra", - "655dccfdbdcc6b5df71382b6 Description": "Mânerulvertical Cobra Tactical integrează forma cu funcționalitatea. Designul hibrid al formei îi permite sa functioneze atat ca și prindere verticală cât și ca opritor pentru mână când se utilizeaza metoda degetului mare peste. Mânerul îți permite să manevrezi arma cu incredere iar designul organic permite operatorului să manipuleze pușca confortabil în orice moment. Versiune Flat Dark Earth.", - "655df24fdf80b12750626d0a Name": "Stark SE-5 Express Forward mâner vertical (FDE)", + "655dccfdbdcc6b5df71382b6 Description": "The Cobra Tactical foregrip integrates the form with functionality. Its hybrid-designed shape works both as a regular foregrip and as a comfortable hand stop when going with the thumb over bore method. The grip allows you to handle the weapon with confidence and the organic design enables the operator to manipulate the rifle in a way that’s most comfortable at any given moment. Flat Dark Earth version.", + "655df24fdf80b12750626d0a Name": "Stark SE-5 Express Forward foregrip (FDE)", "655df24fdf80b12750626d0a ShortName": "SE-5", - "655df24fdf80b12750626d0a Description": "Mânerul tactic STARK SE-5 Express Forward permite o prindere mai naturală pe axa țevii. Mulțumită acesteia, reculul este redus iar controlul armei este îmbunătățit. Versiunea Flat Dark Earth.", - "655f13e0a246670fb0373245 Name": "Colimator reflex Wilcox BOSS Xe", + "655df24fdf80b12750626d0a Description": "The Stark SE-5 Express Forward tactical grip enables a more natural grip against the barrel axis. Thanks to that, it reduces recoil and improves the weapon control. Flat Dark Earth version.", + "655f13e0a246670fb0373245 Name": "Wilcox BOSS Xe reflex sight", "655f13e0a246670fb0373245 ShortName": "BOSS Xe", - "655f13e0a246670fb0373245 Description": "Sistemul De Ochire Optimizată Balistic este un vizor cu reflexie ce îmbină funcțiile unui colimator cu punct roșu, dispozitiv tactic și cătărilor metalice. Fabricat de Wilcox.", - "6567e751a715f85433025998 Name": "SIG ALPHA4 30mm suport inel lunetă", + "655f13e0a246670fb0373245 Description": "The Ballistically Optimized Sighting System reflex sight that combines the functions of a red dot, tactical block and iron sights. Manufactured by Wilcox.", + "6567e751a715f85433025998 Name": "SIG ALPHA4 30mm ring scope mount", "6567e751a715f85433025998 ShortName": "ALPHA4", - "6567e751a715f85433025998 Description": "Suport pentru lunetă de 30mm, instalat pe șine Weaver/Picatinny. Fabricat de SIG Sauer.", - "6567e7681265c8a131069b0f Name": "SIG TANGO6T 1-6x24 30mm lunetă", + "6567e751a715f85433025998 Description": "A mount for 30mm riflescopes, installed on Weaver/Picatinny type rails. Manufactured by SIG Sauer.", + "6567e7681265c8a131069b0f Name": "SIG TANGO6T 1-6x24 30mm riflescope", "6567e7681265c8a131069b0f ShortName": "TANGO6T", - "6567e7681265c8a131069b0f Description": "TANGO6T este o lunetă de putere mică, fiabilă și bine construită. Acest model este prevăzut cu grosismente de 1x și 6x și un reticul de prim plan. Această lunetă este ideală pentru distanțe mici și medii, și la vânătoare. Fabricată de SIG Sauer.", - "656ddcf0f02d7bcea90bf395 Name": "Rucsac de patrulă Tehinkom RK-PT-25 (Digital Flora)", + "6567e7681265c8a131069b0f Description": "The TANGO6T is a rugged and well-built low power variable optic. This model features a 1x to 6x magnification and a first focal plane reticle. This rifle scope is ideal for short and medium distances, as well as for backcountry hunting. Manufactured by SIG Sauer.", + "656ddcf0f02d7bcea90bf395 Name": "Tehinkom RK-PT-25 patrol backpack (Digital Flora)", "656ddcf0f02d7bcea90bf395 ShortName": "RK-PT-25", - "656ddcf0f02d7bcea90bf395 Description": "Rucsacul este un echipament multifuncțional destinat transportului echipamentelor de luptă, de marș, a armelor adiționale, etc. Poate fi folosit ca parte din sistemul purtător UMTBS (ZhTU 6Sh112) sau independent, împreună cu alte seturi de echipamente de luptă.", - "656df4fec921ad01000481a2 Name": "Tăieței instant", - "656df4fec921ad01000481a2 ShortName": "Tăieței", - "656df4fec921ad01000481a2 Description": "Pungă cu supă de tăieței instantă. N-ai apă fierbinte? Nu-i bai. Se mănâncă și așa.", + "656ddcf0f02d7bcea90bf395 Description": "This backpack is a multifunctional piece of equipment designed for transportation of various items of combat and marching equipment, additional weaponry, etc. It can be used both as part of the UMTBS transportation and gear system (ZhTU 6Sh112) and independently, as part of various sets of individual combat equipment.", + "656df4fec921ad01000481a2 Name": "Pack of instant noodles", + "656df4fec921ad01000481a2 ShortName": "Noodles", + "656df4fec921ad01000481a2 Description": "A pack of instant noodles. No hot water? Too bad. Eat it dry.", "656e0436d44a1bb4220303a0 Name": "Mystery Ranch SATL Bridger Assault Pack (Foliage)", "656e0436d44a1bb4220303a0 ShortName": "SATL", - "656e0436d44a1bb4220303a0 Description": "Rucsacul de asalt Mystery Ranch SATL Bridger face parte din echipamentul standard pentru operațiuni de asalt SOCOM de aproape zece ani. Este prevăzut cu sistem detașabil BVS și o curea peste talie pentru o mai bună distribuție a greutății chiar și atunci când este purtat peste o vestă blindată.", - "656efaf54772930db4031ff5 Name": "Placă balistică Granit 4 (Anterior)", - "656efaf54772930db4031ff5 ShortName": "Granit 4 Ante", - "656efaf54772930db4031ff5 Description": "Două plăci blindate Granit 4RS pentru secțiunea anterioară a vestei blindate 6B13. Au caracteristici ergonomice îmbunătățite oferite de forma anatomică și secționarea în două panouri pentru potrivire optimă pe corp, crescând confortul utilizării.", - "656efd66034e8e01c407f35c Name": "Placă balistică modificată 6B13 (Anterior)", - "656efd66034e8e01c407f35c ShortName": "6B13 Ante", - "656efd66034e8e01c407f35c Description": "Placă balistică artizanală pentru vesta blindată 6B13.", - "656f198fb27298d6fd005466 Name": "Rucsac Direct Action Dragon Egg Mark II (Negru)", + "656e0436d44a1bb4220303a0 Description": "The Mystery Ranch SATL assault backpack has been the standard gear for SOCOM assault operations for nearly a decade. It now features a removable BVS system and a redirect waist belt for effective weight distribution, even when the backpack is worn over body armor.", + "656efaf54772930db4031ff5 Name": "Granit 4 ballistic plates (Back)", + "656efaf54772930db4031ff5 ShortName": "Granit 4 Back", + "656efaf54772930db4031ff5 Description": "Two Granit 4RS armor plates for the back section of 6B13 body armor. Features improved ergonomic characteristics: anatomical shape and division into two panels provides an optimal fit to the user's figure, increasing the comfort of use.", + "656efd66034e8e01c407f35c Name": "6B13 custom ballistic plates (Back)", + "656efd66034e8e01c407f35c ShortName": "6B13 Back", + "656efd66034e8e01c407f35c Description": "Custom homespun ballistic plates for the 6B13 bulletproof vest.", + "656f198fb27298d6fd005466 Name": "Direct Action Dragon Egg Mark II backpack (Black)", "656f198fb27298d6fd005466 ShortName": "Dragon Egg MKII", - "656f198fb27298d6fd005466 Description": "Rucsac ușor și versatil cu volum de peste 25 de litri. Conceput pentru uzul militar și protecție civilă.", - "656f57dc27aed95beb08f628 Name": "Placă balistică Zhuk-3 (Frontal)", + "656f198fb27298d6fd005466 Description": "A lightweight and versatile backpack with a volume of over 25 liters, designed for military and law enforcement personnel. ", + "656f57dc27aed95beb08f628 Name": "Zhuk-3 ballistic plate (Front)", "656f57dc27aed95beb08f628 ShortName": "Zhuk-3 Front", - "656f57dc27aed95beb08f628 Description": "Placă balistică din UHMWPE pentru buzunarul frontal a toracelui ale vestelor purtătoare de plăci blindate Zhuk, Gzhel, 6B13, 6B23-2.", - "656f603f94b480b8a500c0d6 Name": "Placă balistică 6B33 (Frontal)", + "656f57dc27aed95beb08f628 Description": "A UHMWPE plate for torso front pouch of Zhuk, Gzhel, 6B13, 6B23-2 bulletproof vests.", + "656f603f94b480b8a500c0d6 Name": "6B33 ballistic plate (Front)", "656f603f94b480b8a500c0d6 ShortName": "6B33 Front", - "656f603f94b480b8a500c0d6 Description": "Placă balistică din oțel călit pentru buzunarul frontal a toracelui ale vestelor purtătoare de plăci blindate Zhuk, Gzhel, 6B13, 6B23-2.", - "656f611f94b480b8a500c0db Name": "Placă balistică Granit 4 (Frontal)", + "656f603f94b480b8a500c0d6 Description": "An armored steel plate for torso front pouch of Zhuk, Gzhel, 6B13, 6B23-2 bulletproof vests.", + "656f611f94b480b8a500c0db Name": "Granit 4 ballistic plate (Front)", "656f611f94b480b8a500c0db ShortName": "Granit 4 Front", - "656f611f94b480b8a500c0db Description": "Placă balistică ceramică pentru buzunarul frontal a toracelui ale vestelor purtătoare de plăci blindate Zhuk, Gzhel, 6B13, 6B23-2.", - "656f63c027aed95beb08f62c Name": "Placă balistică Granit 4RS (Frontal)", + "656f611f94b480b8a500c0db Description": "A ceramic ballistic plate for torso front pouch of Zhuk, Gzhel, 6B13, 6B23-2 bulletproof vests.", + "656f63c027aed95beb08f62c Name": "Granit 4RS ballistic plate (Front)", "656f63c027aed95beb08f62c ShortName": "Granit 4RS Front", - "656f63c027aed95beb08f62c Description": "Placă balistică ceramică pentru buzunarul frontal a toracelui ale vestelor purtătoare de plăci blindate Zhuk, Gzhel, 6B13, 6B23-2.", - "656f664200d62bcd2e024077 Name": "Plăci balistice Korund-VM (Frontale)", - "656f664200d62bcd2e024077 ShortName": "Korund-VM Frontal", - "656f664200d62bcd2e024077 Description": "Combinație de plăci din oțel călit pentru buzunarele ce acoperă partea frontală a toracelui ale vestelor anti-glonț rusești.", - "656f66b5c6baea13cd07e108 Name": "Plăci balistice Korund-VM-K (Frontale)", - "656f66b5c6baea13cd07e108 ShortName": "Korund-VM-K Frontal", - "656f66b5c6baea13cd07e108 Description": "Combinație de plăci ceramice și plăcuțe din oțel călit pentru buzunarele ce acoperă partea frontală a toracelui ale vestelor anti-glonț rusești.", - "656f9d5900d62bcd2e02407c Name": "Placă balistică AR500 Legacy Plate", + "656f63c027aed95beb08f62c Description": "A ceramic ballistic plate for torso front pouch of Zhuk, Gzhel, 6B13, 6B23-2 bulletproof vests.", + "656f664200d62bcd2e024077 Name": "Korund-VM ballistic plates (Front)", + "656f664200d62bcd2e024077 ShortName": "Korund-VM Front", + "656f664200d62bcd2e024077 Description": "A combination of armored steel plates for torso front pouches of Russian bulletproof vests.", + "656f66b5c6baea13cd07e108 Name": "Korund-VM-K ballistic plates (Front)", + "656f66b5c6baea13cd07e108 ShortName": "Korund-VM-K Front", + "656f66b5c6baea13cd07e108 Description": "A combination of a big ceramic plate and small armored steel plate for torso front pouches of Russian bulletproof vests.", + "656f9d5900d62bcd2e02407c Name": "AR500 Legacy Plate ballistic plate", "656f9d5900d62bcd2e02407c ShortName": "AR500 LP", - "656f9d5900d62bcd2e02407c Description": "Placă balistică din materiale combinate pentru buzunarele frontale și anterioare a toracelui ale vestei purtătoare de plăci blindate.", - "656f9fa0498d1b7e3e071d98 Name": "Placă balistică SPRTN Omega", + "656f9d5900d62bcd2e02407c Description": "A combined materials ballistic plate for torso front and back pouches of plate carrier.", + "656f9fa0498d1b7e3e071d98 Name": "SPRTN Omega ballistic plate", "656f9fa0498d1b7e3e071d98 ShortName": "SPRTN Omega", - "656f9fa0498d1b7e3e071d98 Description": "Placă balistică din materiale combinate pentru buzunarele frontale și anterioare a toracelui ale vestei purtătoare de plăci blindate.", - "656fa0fb498d1b7e3e071d9c Name": "Placă balistică Global Armor’s Steel", + "656f9fa0498d1b7e3e071d98 Description": "A combined materials ballistic plate for torso front and back pouches of plate carrier.", + "656fa0fb498d1b7e3e071d9c Name": "Global Armor’s Steel ballistic plate", "656fa0fb498d1b7e3e071d9c ShortName": "GA Steel", - "656fa0fb498d1b7e3e071d9c Description": "Placă balistică din oțel călit pentru buzunarele frontale și anterioare a toracelui ale vestei purtătoare de plăci blindate.", - "656fa25e94b480b8a500c0e0 Name": "Placă balistică Kiba Arms Titan", + "656fa0fb498d1b7e3e071d9c Description": "An armored steel plate for torso front and back pouches of plate carrier.", + "656fa25e94b480b8a500c0e0 Name": "Kiba Arms Titan ballistic plate", "656fa25e94b480b8a500c0e0 ShortName": "KA Titan", - "656fa25e94b480b8a500c0e0 Description": "Placă balistică din titan pentru buzunarele frontale și anterioare a vestei purtătoare de plăci blindate.", - "656fa53d94b480b8a500c0e4 Name": "Placă balistică TallCom Guardian", + "656fa25e94b480b8a500c0e0 Description": "A titanium plate for torso front and back pouches of plate carrier.", + "656fa53d94b480b8a500c0e4 Name": "TallCom Guardian ballistic plate", "656fa53d94b480b8a500c0e4 ShortName": "TC Guardian", - "656fa53d94b480b8a500c0e4 Description": "Placă balistică din materiale combinate pentru buzunarele frontale și anterioare a toracelui ale vestei purtătoare de plăci blindate.", - "656fa61e94b480b8a500c0e8 Name": "Placă balistică NESCO 4400-SA-MC", + "656fa53d94b480b8a500c0e4 Description": "A combined materials ballistic plate for torso front and back pouches of plate carrier.", + "656fa61e94b480b8a500c0e8 Name": "NESCO 4400-SA-MC ballistic plate", "656fa61e94b480b8a500c0e8 ShortName": "NESCO 4400", - "656fa61e94b480b8a500c0e8 Description": "Placă balistică din materiale combinate pentru buzunarele frontale și anterioare a toracelui ale vestei purtătoare de plăci blindate.", - "656fa76500d62bcd2e024080 Name": "Placă balistică Kiba Arms Steel", + "656fa61e94b480b8a500c0e8 Description": "A combined materials ballistic plate for torso front and back pouches of plate carrier.", + "656fa76500d62bcd2e024080 Name": "Kiba Arms Steel ballistic plate", "656fa76500d62bcd2e024080 ShortName": "KA Steel", - "656fa76500d62bcd2e024080 Description": "Placă balistică din oțel călit pentru buzunarele frontale și anterioare a toracelui ale vestei purtătoare de plăci blindate.", - "656fa8d700d62bcd2e024084 Name": "Placă balistică Cult Locust", + "656fa76500d62bcd2e024080 Description": "An armored steel plate for torso front and back pouches of plate carrier.", + "656fa8d700d62bcd2e024084 Name": "Cult Locust ballistic plate", "656fa8d700d62bcd2e024084 ShortName": "Cult Locust", - "656fa8d700d62bcd2e024084 Description": "Placă balistică din titan pentru buzunarele frontale și anterioare a vestei purtătoare de plăci blindate.", - "656fa99800d62bcd2e024088 Name": "Placă balistică Cult Termite", + "656fa8d700d62bcd2e024084 Description": "A titanium plate for torso front and back pouches of plate carrier.", + "656fa99800d62bcd2e024088 Name": "Cult Termite ballistic plate", "656fa99800d62bcd2e024088 ShortName": "Cult Termite", - "656fa99800d62bcd2e024088 Description": "Placă balistică din titan pentru buzunarele frontale și anterioare a vestei purtătoare de plăci blindate.", - "656fac30c6baea13cd07e10c Name": "Placă balistică PRTCTR Lightweight", + "656fa99800d62bcd2e024088 Description": "A titanium plate for torso front and back pouches of plate carrier.", + "656fac30c6baea13cd07e10c Name": "PRTCTR Lightweight ballistic plate", "656fac30c6baea13cd07e10c ShortName": "PRTCTR Light", - "656fac30c6baea13cd07e10c Description": "Placă balistică din UHMWPE pentru buzunarele frontale și anterioare a vestei purtătoare de plăci blindate.", - "656fad8c498d1b7e3e071da0 Name": "Placă balistică Monoclete nivel III PE", + "656fac30c6baea13cd07e10c Description": "A UHMWPE plate for torso front and back pouches of plate carrier.", + "656fad8c498d1b7e3e071da0 Name": "Monoclete level III PE ballistic plate", "656fad8c498d1b7e3e071da0 ShortName": "Monoclete PE", - "656fad8c498d1b7e3e071da0 Description": "Placă balistică din UHMWPE pentru buzunarele frontale și anterioare a vestei purtătoare de plăci blindate.", - "656fae5f7c2d57afe200c0d7 Name": "Placă balistică GAC 3s15m", + "656fad8c498d1b7e3e071da0 Description": "A UHMWPE plate for torso front and back pouches of plate carrier.", + "656fae5f7c2d57afe200c0d7 Name": "GAC 3s15m ballistic plate", "656fae5f7c2d57afe200c0d7 ShortName": "GAC 3s15m", - "656fae5f7c2d57afe200c0d7 Description": "Placă balistică din UHMWPE pentru buzunarele frontale și anterioare a vestei purtătoare de plăci blindate.", - "656faf0ca0dce000a2020f77 Name": "Placă balistică GAC 4sss2", + "656fae5f7c2d57afe200c0d7 Description": "A UHMWPE plate for torso front and back pouches of plate carrier.", + "656faf0ca0dce000a2020f77 Name": "GAC 4sss2 ballistic plate", "656faf0ca0dce000a2020f77 ShortName": "GAC 4sss2", - "656faf0ca0dce000a2020f77 Description": "Placă balistică din UHMWPE pentru buzunarele frontale și anterioare a vestei purtătoare de plăci blindate.", - "656fafe3498d1b7e3e071da4 Name": "Placă balistică KITECO SC-IV SA", + "656faf0ca0dce000a2020f77 Description": "A UHMWPE plate for torso front and back pouches of plate carrier.", + "656fafe3498d1b7e3e071da4 Name": "KITECO SC-IV SA ballistic plate", "656fafe3498d1b7e3e071da4 ShortName": "KITECO SC", - "656fafe3498d1b7e3e071da4 Description": "Placă balistică din UHMWPE pentru buzunarele frontale și anterioare a vestei purtătoare de plăci blindate.", - "656fb0bd7c2d57afe200c0dc Name": "Placă balistică SPRTN Elaphros", + "656fafe3498d1b7e3e071da4 Description": "A UHMWPE plate for torso front and back pouches of plate carrier.", + "656fb0bd7c2d57afe200c0dc Name": "SPRTN Elaphros ballistic plate", "656fb0bd7c2d57afe200c0dc ShortName": "SPRTN Elaphros", - "656fb0bd7c2d57afe200c0dc Description": "Placă balistică ceramică pentru buzunarele frontale și anterioare a toracelui ale vestei purtătoare de plăci blindate.", - "656fb21fa0dce000a2020f7c Name": "Placă balistică NewSphereTech nivel III", - "656fb21fa0dce000a2020f7c ShortName": "NST nivel III", - "656fb21fa0dce000a2020f7c Description": "Placă balistică AlOx (oxid de aluminiu) pentru buzunarele frontale și anterioare a toracelui ale vestei purtătoare de plăci blindate.", - "656fd7c32668ef0402028fb9 Name": "Inserție de aramidă și plăcuțe de titan de 1.25 mm", + "656fb0bd7c2d57afe200c0dc Description": "A ceramic ballistic plate for torso front and back pouches of plate carrier.", + "656fb21fa0dce000a2020f7c Name": "NewSphereTech level III ballistic plate", + "656fb21fa0dce000a2020f7c ShortName": "NST level III", + "656fb21fa0dce000a2020f7c Description": "An Aluminum Oxide ballistic plate for torso front and back pouches of plate carrier.", + "656fd7c32668ef0402028fb9 Name": "1.25 mm aramid insert and titanium plates", "656fd7c32668ef0402028fb9 ShortName": "", "656fd7c32668ef0402028fb9 Description": "", - "656fd89bf5a9631d4e042575 Name": "Inserție de aramidă și plăcuțe de titan de 1.25 mm", + "656fd89bf5a9631d4e042575 Name": "1.25 mm aramid insert and titanium plates", "656fd89bf5a9631d4e042575 ShortName": "", "656fd89bf5a9631d4e042575 Description": "", - "657023a9126cc4a57d0e17a6 Name": ".300 Blackout CBJ pachet muniție (50 buc)", + "657023a9126cc4a57d0e17a6 Name": ".300 Blackout CBJ ammo pack (50 pcs)", "657023a9126cc4a57d0e17a6 ShortName": "CBJ", - "657023a9126cc4a57d0e17a6 Description": "Cutie cu muniție .300 Blackout CBJ, 50 bucăți.", - "657023b1cfc010a0f50069e5 Name": ".300 Blackout M62 Trasor pachet muniție (50 buc)", + "657023a9126cc4a57d0e17a6 Description": "A box of .300 Blackout CBJ cartridges, 50 pieces.", + "657023b1cfc010a0f50069e5 Name": ".300 Blackout M62 Tracer ammo pack (50 pcs)", "657023b1cfc010a0f50069e5 ShortName": "M62", - "657023b1cfc010a0f50069e5 Description": "Cutie cu muniție .300 Blackout M62 Trasor, 50 bucăți.", - "657023b71419851aef03e6e8 Name": ".300 Blackout V-Max pachet muniție (50 buc)", + "657023b1cfc010a0f50069e5 Description": "A box of .300 Blackout M62 Tracer cartridges, 50 pieces.", + "657023b71419851aef03e6e8 Name": ".300 Blackout V-Max ammo pack (50 pcs)", "657023b71419851aef03e6e8 ShortName": "V-Max", - "657023b71419851aef03e6e8 Description": "Cutie cu muniție .300 Blackout V-Max, 50 bucăți.", - "657023bebfc87b3a34093207 Name": ".300 Blackout BCP FMJ pachet muniție (50 buc)", + "657023b71419851aef03e6e8 Description": "A box of .300 Blackout V-Max cartridges, 50 pieces.", + "657023bebfc87b3a34093207 Name": ".300 Blackout BCP FMJ ammo pack (50 pcs)", "657023bebfc87b3a34093207 ShortName": "FMJ", - "657023bebfc87b3a34093207 Description": "Cutie cu muniție .300 Blackout BCP FMJ, 50 bucăți.", - "657023c61419851aef03e6eb Name": ".300 Whisper pachet muniție (50 buc)", + "657023bebfc87b3a34093207 Description": "A box of .300 Blackout BCP FMJ cartridges, 50 pieces.", + "657023c61419851aef03e6eb Name": ".300 Whisper ammo pack (50 pcs)", "657023c61419851aef03e6eb ShortName": "Whisper", - "657023c61419851aef03e6eb Description": "Cutie cu muniție .300 Whisper, 50 bucăți.", - "657023ccbfc87b3a3409320a Name": ".338 Lapua Magnum FMJ cutie muniție (20 buc)", + "657023c61419851aef03e6eb Description": "A box of .300 Whisper cartridges, 50 pieces.", + "657023ccbfc87b3a3409320a Name": ".338 Lapua Magnum FMJ ammo pack (20 pcs)", "657023ccbfc87b3a3409320a ShortName": "FMJ", - "657023ccbfc87b3a3409320a Description": "Cutie cu muniție .338 Lapua Magnum FMJ, 20 bucăți.", - "657023d6cfc010a0f50069e9 Name": ".338 Lapua Magnum TAC-X cutie muniție (20 buc)", + "657023ccbfc87b3a3409320a Description": "A box of .338 Lapua Magnum FMJ cartridges, 20 pieces.", + "657023d6cfc010a0f50069e9 Name": ".338 Lapua Magnum TAC-X ammo pack (20 pcs)", "657023d6cfc010a0f50069e9 ShortName": "TAC-X", - "657023d6cfc010a0f50069e9 Description": "Cutie cu muniție .338 Lapua Magnum TAC-X, 20 bucăți.", - "657023dabfc87b3a3409320d Name": ".338 Lapua Magnum UCW cutie muniție (20 buc)", + "657023d6cfc010a0f50069e9 Description": "A box of .338 Lapua Magnum TAC-X cartridges, 20 pieces.", + "657023dabfc87b3a3409320d Name": ".338 Lapua Magnum UCW ammo pack (20 pcs)", "657023dabfc87b3a3409320d ShortName": "UCW", - "657023dabfc87b3a3409320d Description": "Cutie cu muniție .338 Lapua Magnum UCW, 20 bucăți.", - "657023decfc010a0f50069ec Name": ".357 Magnum FMJ pachet muniție (25 buc)", + "657023dabfc87b3a3409320d Description": "A box of .338 Lapua Magnum UCW cartridges, 20 pieces.", + "657023decfc010a0f50069ec Name": ".357 Magnum FMJ ammo pack (25 pcs)", "657023decfc010a0f50069ec ShortName": "FMJ", - "657023decfc010a0f50069ec Description": "Cutie cu muniție .357 Magnum FMJ, 25 bucăți.", - "657023e31419851aef03e6ee Name": ".357 Magnum HP pachet muniție (25 buc)", + "657023decfc010a0f50069ec Description": "A box of .357 Magnum FMJ cartridges, 25 pieces.", + "657023e31419851aef03e6ee Name": ".357 Magnum HP ammo pack (25 pcs)", "657023e31419851aef03e6ee ShortName": "HP", - "657023e31419851aef03e6ee Description": "Cutie cu muniție .357 Magnum HP, 25 bucăți.", - "657023e7c5d7d4cb4d078552 Name": ".357 Magnum JHP pachet muniție (25 buc)", + "657023e31419851aef03e6ee Description": "A box of .357 Magnum HP cartridges, 25 pieces.", + "657023e7c5d7d4cb4d078552 Name": ".357 Magnum JHP ammo pack (25 pcs)", "657023e7c5d7d4cb4d078552 ShortName": "JHP", - "657023e7c5d7d4cb4d078552 Description": "Cutie cu muniție .357 Magnum JHP, 25 bucăți.", - "657023eccfc010a0f50069ef Name": ".357 Magnum SP pachet muniție (25 buc)", + "657023e7c5d7d4cb4d078552 Description": "A box of .357 Magnum JHP cartridges, 25 pieces.", + "657023eccfc010a0f50069ef Name": ".357 Magnum SP ammo pack (25 pcs)", "657023eccfc010a0f50069ef ShortName": "SP", - "657023eccfc010a0f50069ef Description": "Cutie cu muniție .357 Magnum SP, 25 bucăți.", - "657023f1bfc87b3a34093210 Name": ".366 TKM FMJ pachet muniție (20 buc)", + "657023eccfc010a0f50069ef Description": "A box of .357 Magnum SP cartridges, 25 pieces.", + "657023f1bfc87b3a34093210 Name": ".366 TKM FMJ ammo pack (20 pcs)", "657023f1bfc87b3a34093210 ShortName": "FMJ", - "657023f1bfc87b3a34093210 Description": "Cutie cu muniție .366 TKM FMJ, 20 bucăți.", - "657023f81419851aef03e6f1 Name": ".366 TKM AP-M pachet muniție (20 buc)", + "657023f1bfc87b3a34093210 Description": "A box of .366 TKM FMJ cartridges, 20 pieces.", + "657023f81419851aef03e6f1 Name": ".366 TKM AP-M ammo pack (20 pcs)", "657023f81419851aef03e6f1 ShortName": "AP-M", - "657023f81419851aef03e6f1 Description": "Cutie cu muniție .366 TKM AP-M, 20 bucăți.", - "657023fcbfc87b3a34093213 Name": ".366 TKM Geksa pachet muniție (20 buc)", + "657023f81419851aef03e6f1 Description": "A box of .366 TKM AP-M cartridges, 20 pieces.", + "657023fcbfc87b3a34093213 Name": ".366 TKM Geksa ammo pack (20 pcs)", "657023fcbfc87b3a34093213 ShortName": "Geksa", - "657023fcbfc87b3a34093213 Description": "Cutie cu muniție .366 TKM Geksa, 20 bucăți.", - "657024011419851aef03e6f4 Name": ".366 TKM EKO pachet muniție (20 buc)", + "657023fcbfc87b3a34093213 Description": "A box of .366 TKM Geksa cartridges, 20 pieces.", + "657024011419851aef03e6f4 Name": ".366 TKM EKO ammo pack (20 pcs)", "657024011419851aef03e6f4 ShortName": "EKO", - "657024011419851aef03e6f4 Description": "Cutie cu muniție .366 TKM EKO, 20 bucăți.", - "65702406bfc87b3a34093216 Name": ".45 ACP Hydra-Shok pachet muniție (50 buc)", + "657024011419851aef03e6f4 Description": "A box of .366 TKM EKO cartridges, 20 pieces.", + "65702406bfc87b3a34093216 Name": ".45 ACP Hydra-Shok ammo pack (50 pcs)", "65702406bfc87b3a34093216 ShortName": "H-Shock", - "65702406bfc87b3a34093216 Description": "Cutie cu muniție .45 ACP Hydra-Shok, 50 bucăți.", - "6570240a1419851aef03e6f7 Name": ".45 ACP Lasermatch FMJ pachet muniție (50 buc)", + "65702406bfc87b3a34093216 Description": "A box of .45 ACP Hydra-Shok cartridges, 50 pieces.", + "6570240a1419851aef03e6f7 Name": ".45 ACP Lasermatch FMJ ammo pack (50 pcs)", "6570240a1419851aef03e6f7 ShortName": "Laser-FMJ", - "6570240a1419851aef03e6f7 Description": "Cutie cu muniție .45 ACP Lasermatch FMJ, 50 bucăți.", - "6570240ecfc010a0f50069f2 Name": ".45 ACP Match FMJ pachet muniție (50 buc)", + "6570240a1419851aef03e6f7 Description": "A box of .45 ACP Lasermatch FMJ cartridges, 50 pieces.", + "6570240ecfc010a0f50069f2 Name": ".45 ACP Match FMJ ammo pack (50 pcs)", "6570240ecfc010a0f50069f2 ShortName": "FMJ", - "6570240ecfc010a0f50069f2 Description": "Cutie cu muniție .45 ACP Match FMJ, 50 bucăți.", - "65702414c5d7d4cb4d078555 Name": ".45 ACP RIP pachet muniție (50 buc)", + "6570240ecfc010a0f50069f2 Description": "A box of .45 ACP Match FMJ cartridges, 50 pieces.", + "65702414c5d7d4cb4d078555 Name": ".45 ACP RIP ammo pack (50 pcs)", "65702414c5d7d4cb4d078555 ShortName": "RIP", - "65702414c5d7d4cb4d078555 Description": "Cutie cu muniție .45 ACP RIP, 50 bucăți.", - "6570241bcfc010a0f50069f5 Name": "12.7x55mm PS12 cutie (10 buc.)", + "65702414c5d7d4cb4d078555 Description": "A box of .45 ACP RIP cartridges, 50 pieces.", + "6570241bcfc010a0f50069f5 Name": "12.7x55mm PS12 ammo pack (10 pcs)", "6570241bcfc010a0f50069f5 ShortName": "PS12", - "6570241bcfc010a0f50069f5 Description": "Cutie cu muniție 12.7x55mm PS12, 10 bucăți.", - "65702420bfc87b3a34093219 Name": "12.7x55mm PS12A cutie (10 buc.)", + "6570241bcfc010a0f50069f5 Description": "A box of 12.7x55mm PS12 cartridges, 10 pieces.", + "65702420bfc87b3a34093219 Name": "12.7x55mm PS12A ammo pack (10 pcs)", "65702420bfc87b3a34093219 ShortName": "PS12A", - "65702420bfc87b3a34093219 Description": "Cutie cu muniție 12.7x55mm PS12A, 10 bucăți.", - "65702426cfc010a0f50069f8 Name": "12/70 alice 5.25mm cutie muniție (25 buc)", + "65702420bfc87b3a34093219 Description": "A box of 12.7x55mm PS12A cartridges, 10 pieces.", + "65702426cfc010a0f50069f8 Name": "12/70 5.25mm buckshot ammo pack (25 pcs)", "65702426cfc010a0f50069f8 ShortName": "5.25mm", - "65702426cfc010a0f50069f8 Description": "Cutie cu muniție 12/70 alice 5.25mm, 25 bucăți.", - "65702432bfc87b3a3409321c Name": "12/70 alice 6.5mm Express cutie muniție (25 buc)", + "65702426cfc010a0f50069f8 Description": "A box of 12/70 5.25mm buckshot cartridges, 25 pieces.", + "65702432bfc87b3a3409321c Name": "12/70 6.5mm Express buckshot ammo pack (25 pcs)", "65702432bfc87b3a3409321c ShortName": "Express", - "65702432bfc87b3a3409321c Description": "Cutie cu muniție 12/70 alice 6.5mm Express, 25 bucăți.", - "657024361419851aef03e6fa Name": "12/70 alice 7mm cutie muniție (25 buc)", + "65702432bfc87b3a3409321c Description": "A box of 12/70 6.5mm Express buckshot cartridges, 25 pieces.", + "657024361419851aef03e6fa Name": "12/70 7mm buckshot ammo pack (25 pcs)", "657024361419851aef03e6fa ShortName": "7mm", - "657024361419851aef03e6fa Description": "Cutie cu muniție 12/70 alice 7mm, 25 bucăți.", - "6570243bbfc87b3a3409321f Name": "12/70 alice 8.5mm Magnum cutie muniție (25 buc)", + "657024361419851aef03e6fa Description": "A box of 12/70 7mm buckshot cartridges, 25 pieces.", + "6570243bbfc87b3a3409321f Name": "12/70 8.5mm Magnum buckshot ammo pack (25 pcs)", "6570243bbfc87b3a3409321f ShortName": "Magnum", - "6570243bbfc87b3a3409321f Description": "Cutie cu muniție 12/70 alice 8.5mm Magnum, 25 bucăți.", - "6570243fcfc010a0f50069fb Name": "12/70 proiectil Dual Sabot cutie muniție (25 buc)", + "6570243bbfc87b3a3409321f Description": "A box of 12/70 8.5mm Magnum buckshot cartridges, 25 pieces.", + "6570243fcfc010a0f50069fb Name": "12/70 Dual Sabot slug ammo pack (25 pcs)", "6570243fcfc010a0f50069fb ShortName": "DualSabot", - "6570243fcfc010a0f50069fb Description": "Cutie cu muniție 12/70 proiectil Dual Sabot, 25 bucăți.", - "657024431419851aef03e6fd Name": "12/70 Piranha cutie muniție (20 buc)", + "6570243fcfc010a0f50069fb Description": "A box of 12/70 Dual Sabot slug cartridges, 25 pieces.", + "657024431419851aef03e6fd Name": "12/70 Piranha ammo pack (25 pcs)", "657024431419851aef03e6fd ShortName": "Piranha", - "657024431419851aef03e6fd Description": "Cutie cu muniție 12/70 Piranha, 25 bucăți.", - "65702449bfc87b3a34093223 Name": "12/70 proiectil FTX Custom Lite cutie muniție (25 buc)", + "657024431419851aef03e6fd Description": "A box of 12/70 Piranha cartridges, 25 pieces.", + "65702449bfc87b3a34093223 Name": "12/70 FTX Custom Lite slug ammo pack (25 pcs)", "65702449bfc87b3a34093223 ShortName": "FTX", - "65702449bfc87b3a34093223 Description": "Cutie cu muniție 12/70 proiectil FTX Custom Lite, 25 bucăți.", - "6570244ec5d7d4cb4d078558 Name": "12/70 proiectil Grizzly 40 cutie muniție (25 buc)", + "65702449bfc87b3a34093223 Description": "A box of 12/70 FTX Custom Lite slug cartridges, 25 pieces.", + "6570244ec5d7d4cb4d078558 Name": "12/70 Grizzly 40 slug ammo pack (25 pcs)", "6570244ec5d7d4cb4d078558 ShortName": "Grizzly 40", - "6570244ec5d7d4cb4d078558 Description": "Cutie cu muniție 12/70 proiectil Grizzly 40, 25 bucăți.", - "65702452cfc010a0f50069fe Name": "12/70 proiectil Poleva-3 cutie muniție (25 buc)", + "6570244ec5d7d4cb4d078558 Description": "A box of 12/70 Grizzly 40 slug cartridges, 25 pieces.", + "65702452cfc010a0f50069fe Name": "12/70 \"Poleva-3\" slug ammo pack (25 pcs)", "65702452cfc010a0f50069fe ShortName": "Poleva-3", - "65702452cfc010a0f50069fe Description": "Cutie cu muniție 12/70 proiectil Poleva-3, 25 bucăți.", - "657024581419851aef03e700 Name": "12/70 proiectil Poleva-6u cutie muniție (25 buc)", + "65702452cfc010a0f50069fe Description": "A box of 12/70 \"Poleva-3\" slug cartridges, 25 pieces.", + "657024581419851aef03e700 Name": "12/70 \"Poleva-6u\" slug ammo pack (25 pcs)", "657024581419851aef03e700 ShortName": "Poleva-6u", - "657024581419851aef03e700 Description": "Cutie cu muniție 12/70 proiectil Poleva-6u, 25 bucăți.", - "65702469c5d7d4cb4d07855b Name": "12/70 proiectil .50 BMG artizanal cutie muniție (25 buc)", + "657024581419851aef03e700 Description": "A box of 12/70 \"Poleva-6u\" slug cartridges, 25 pieces.", + "65702469c5d7d4cb4d07855b Name": "12/70 makeshift .50 BMG slug ammo pack (25 pcs)", "65702469c5d7d4cb4d07855b ShortName": ".50 BMG", - "65702469c5d7d4cb4d07855b Description": "Cutie cu muniție 12/70 proiectil .50 BMD artizanal, 25 bucăți.", - "6570246fcfc010a0f5006a01 Name": "12/70 proiectil plumb cutie muniție (25 buc)", - "6570246fcfc010a0f5006a01 ShortName": "Plumb", - "6570246fcfc010a0f5006a01 Description": "Cutie cu muniție 12/70 proiectil plumb, 25 bucăți.", - "65702474bfc87b3a34093226 Name": "12/70 flechette cutie muniție (25 buc)", + "65702469c5d7d4cb4d07855b Description": "A box of 12/70 makeshift .50 BMG slug cartridges, 25 pieces.", + "6570246fcfc010a0f5006a01 Name": "12/70 lead slug ammo pack (25 pcs)", + "6570246fcfc010a0f5006a01 ShortName": "Slug", + "6570246fcfc010a0f5006a01 Description": "A box of 12/70 lead slug cartridges, 25 pieces.", + "65702474bfc87b3a34093226 Name": "12/70 flechette ammo pack (25 pcs)", "65702474bfc87b3a34093226 ShortName": "Flechette", - "65702474bfc87b3a34093226 Description": "Cutie cu muniție 12/70 flechette, 25 bucăți.", - "65702479c5d7d4cb4d07855e Name": "12/70 proiectil Copper Sabot Premier HP cutie muniție (25 buc)", + "65702474bfc87b3a34093226 Description": "A box of 12/70 flechette cartridges, 25 pieces.", + "65702479c5d7d4cb4d07855e Name": "12/70 Copper Sabot Premier HP slug ammo pack (25 pcs)", "65702479c5d7d4cb4d07855e ShortName": "CSP", - "65702479c5d7d4cb4d07855e Description": "Cutie cu muniție 12/70 proiectil Copper Sabot Premier HP, 25 bucăți.", - "6570247ebfc87b3a34093229 Name": "12/70 proiectil SuperFormance HP cutie muniție (25 buc)", + "65702479c5d7d4cb4d07855e Description": "A box of 12/70 Copper Sabot Premier HP slug cartridges, 25 pieces.", + "6570247ebfc87b3a34093229 Name": "12/70 SuperFormance HP slug ammo pack (25 pcs)", "6570247ebfc87b3a34093229 ShortName": "SFormance", - "6570247ebfc87b3a34093229 Description": "Cutie cu muniție 12/70 proiectil SuperFormance HP, 25 bucăți.", - "657024831419851aef03e703 Name": "20/70 alice 5.6mm cutie muniție (25 buc)", + "6570247ebfc87b3a34093229 Description": "A box of 12/70 SuperFormance HP slug cartridges, 25 pieces.", + "657024831419851aef03e703 Name": "20/70 5.6mm buckshot ammo pack (25 pcs)", "657024831419851aef03e703 ShortName": "5.6mm", - "657024831419851aef03e703 Description": "Cutie cu muniție 20/70 alice 5.6mm, 25 bucăți.", - "6570248dcfc010a0f5006a04 Name": "20/70 alice 6.2mm cutie muniție (25 buc)", + "657024831419851aef03e703 Description": "A box of 20/70 5.6mm buckshot cartridges, 25 pieces.", + "6570248dcfc010a0f5006a04 Name": "20/70 6.2mm buckshot ammo pack (25 pcs)", "6570248dcfc010a0f5006a04 ShortName": "6.2mm", - "6570248dcfc010a0f5006a04 Description": "Cutie cu muniție 20/70 alice 6.2mm, 25 bucăți.", - "657024921419851aef03e706 Name": "20/70 alice 7.3mm cutie muniție (25 buc)", + "6570248dcfc010a0f5006a04 Description": "A box of 20/70 6.2mm buckshot cartridges, 25 pieces.", + "657024921419851aef03e706 Name": "20/70 7.3mm buckshot ammo pack (25 pcs)", "657024921419851aef03e706 ShortName": "7.3mm", - "657024921419851aef03e706 Description": "Cutie cu muniție 20/70 alice 7.3mm, 25 bucăți.", - "65702495c5d7d4cb4d078561 Name": "20/70 alice 7.5mm cutie muniție (25 buc)", + "657024921419851aef03e706 Description": "A box of 20/70 7.3mm buckshot cartridges, 25 pieces.", + "65702495c5d7d4cb4d078561 Name": "20/70 7.5mm buckshot ammo pack (25 pcs)", "65702495c5d7d4cb4d078561 ShortName": "7.5mm", - "65702495c5d7d4cb4d078561 Description": "Cutie cu muniție 20/70 alice 7.5mm, 25 bucăți.", - "6570249bcfc010a0f5006a07 Name": "20/70 proiectil Devastator cutie muniție (25 buc)", + "65702495c5d7d4cb4d078561 Description": "A box of 20/70 7.5mm buckshot cartridges, 25 pieces.", + "6570249bcfc010a0f5006a07 Name": "20/70 Devastator slug ammo pack (25 pcs)", "6570249bcfc010a0f5006a07 ShortName": "Devastator", - "6570249bcfc010a0f5006a07 Description": "Cutie cu muniție 20/70 proiectil Devastator, 25 bucăți.", - "6570249f1419851aef03e709 Name": "20/70 proiectil Star cutie muniție (25 buc)", + "6570249bcfc010a0f5006a07 Description": "A box of 20/70 Devastator slug cartridges, 25 pieces.", + "6570249f1419851aef03e709 Name": "20/70 Star slug ammo pack (25 pcs)", "6570249f1419851aef03e709 ShortName": "Star", - "6570249f1419851aef03e709 Description": "Cutie cu muniție 20/70 proiectil Star, 25 bucăți.", - "657024a4bfc87b3a3409322c Name": "20/70 proiectil Poleva-3 cutie muniție (25 buc)", + "6570249f1419851aef03e709 Description": "A box of 20/70 Star slug cartridges, 25 pieces.", + "657024a4bfc87b3a3409322c Name": "20/70 \"Poleva-3\" slug ammo pack (25 pcs)", "657024a4bfc87b3a3409322c ShortName": "Poleva-3", - "657024a4bfc87b3a3409322c Description": "Cutie cu muniție 20/70 proiectil Poleva-3, 25 bucăți.", - "657024a91419851aef03e70c Name": "20/70 proiectil Poleva-6u cutie muniție (25 buc)", + "657024a4bfc87b3a3409322c Description": "A box of 20/70 \"Poleva-3\" slug cartridges, 25 pieces.", + "657024a91419851aef03e70c Name": "20/70 \"Poleva-6u\" slug ammo pack (25 pcs)", "657024a91419851aef03e70c ShortName": "Poleva-6u", - "657024a91419851aef03e70c Description": "Cutie cu muniție 20/70 proiectil Poleva-6u, 25 bucăți.", - "657024aebfc87b3a3409322f Name": "20/70 alice Șrapnel-10 cutie muniție (5 buc)", - "657024aebfc87b3a3409322f ShortName": "Șrap-10", - "657024aebfc87b3a3409322f Description": "Cutie cu muniție 20/70 alice Șrapnel-10, 5 bucăți.", - "657024b31419851aef03e70f Name": "23x75mm alice Șrapnel-25 cutie muniție (5 buc)", - "657024b31419851aef03e70f ShortName": "Șrap-25", - "657024b31419851aef03e70f Description": "Cutie cu muniție 23x75mm alice Șrapnel-25, 5 bucăți.", - "657024b8bfc87b3a34093232 Name": "23x75mm proiectil Barrikada cutie muniție (5 buc)", + "657024a91419851aef03e70c Description": "A box of 20/70 \"Poleva-6u\" slug cartridges, 25 pieces.", + "657024aebfc87b3a3409322f Name": "23x75mm Shrapnel-10 buckshot ammo pack (5 pcs)", + "657024aebfc87b3a3409322f ShortName": "Shrap-10", + "657024aebfc87b3a3409322f Description": "A box of 23x75mm Shrapnel-10 buckshot cartridges, 5 pieces.", + "657024b31419851aef03e70f Name": "23x75mm Shrapnel-25 buckshot ammo pack (5 pcs)", + "657024b31419851aef03e70f ShortName": "Shrap-25", + "657024b31419851aef03e70f Description": "A box of 23x75mm Shrapnel-25 buckshot cartridges, 5 pieces.", + "657024b8bfc87b3a34093232 Name": "23x75mm Barrikada slug ammo pack (5 pcs)", "657024b8bfc87b3a34093232 ShortName": "Barrikada", - "657024b8bfc87b3a34093232 Description": "Cutie cu muniție 23x75mm proiectil Barrikada, 5 bucăți.", - "657024bdc5d7d4cb4d078564 Name": "23x75mm Zvezda pachet cartușe paralizante (5 buc)", + "657024b8bfc87b3a34093232 Description": "A box of 23x75mm Barrikada slug cartridges, 5 pieces.", + "657024bdc5d7d4cb4d078564 Name": "23x75mm Zvezda flashbang round ammo pack (5 pcs)", "657024bdc5d7d4cb4d078564 ShortName": "Zvezda", - "657024bdc5d7d4cb4d078564 Description": "Cutie cu muniție 23x75mm Zvezda paralizant, 5 bucăți.", - "657024c81419851aef03e712 Name": "4.6x30mm Action SX pachet muniție (40 buc)", + "657024bdc5d7d4cb4d078564 Description": "A box of 23x75mm Zvezda flashbang round cartridges, 5 pieces.", + "657024c81419851aef03e712 Name": "4.6x30mm Action SX ammo pack (40 pcs)", "657024c81419851aef03e712 ShortName": "Action SX", - "657024c81419851aef03e712 Description": "Cutie cu muniție 4.6x30mm Action SX, 40 bucăți.", - "657024cecfc010a0f5006a0a Name": "4.6x30mm FMJ SX pachet muniție (40 buc)", + "657024c81419851aef03e712 Description": "A box of 4.6x30mm Action SX cartridges, 40 pieces.", + "657024cecfc010a0f5006a0a Name": "4.6x30mm FMJ SX ammo pack (40 pcs)", "657024cecfc010a0f5006a0a ShortName": "FMJ SX", - "657024cecfc010a0f5006a0a Description": "Cutie cu muniție 4.6x30mm FMJ SX, 40 bucăți.", - "657024d2bfc87b3a34093235 Name": "4.6x30mm Subsonic SX pachet muniție (40 buc)", + "657024cecfc010a0f5006a0a Description": "A box of 4.6x30mm FMJ SX cartridges, 40 pieces.", + "657024d2bfc87b3a34093235 Name": "4.6x30mm Subsonic SX ammo pack (40 pcs)", "657024d2bfc87b3a34093235 ShortName": "Subsonic SX", - "657024d2bfc87b3a34093235 Description": "Cutie cu muniție 4.6x30mm Subsonic SX, 40 bucăți.", - "657024d8c5d7d4cb4d078567 Name": "5.56x45mm FMJ cutie (50 buc)", + "657024d2bfc87b3a34093235 Description": "A box of 4.6x30mm Subsonic SX cartridges, 40 pieces.", + "657024d8c5d7d4cb4d078567 Name": "5.56x45mm FMJ ammo pack (50 pcs)", "657024d8c5d7d4cb4d078567 ShortName": "FMJ", - "657024d8c5d7d4cb4d078567 Description": "Cutie cu muniție 5.56x45mm FMJ, 50 bucăți.", - "657024debfc87b3a34093238 Name": "5.56x45mm HP cutie (50 buc)", + "657024d8c5d7d4cb4d078567 Description": "A box of 5.56x45mm FMJ cartridges, 50 pieces.", + "657024debfc87b3a34093238 Name": "5.56x45mm HP ammo pack (50 pcs)", "657024debfc87b3a34093238 ShortName": "HP", - "657024debfc87b3a34093238 Description": "Cutie cu muniție 5.56x45mm HP, 50 bucăți.", - "657024e3c5d7d4cb4d07856a Name": "5.56x45mm M855A1 cutie (50 buc)", + "657024debfc87b3a34093238 Description": "A box of 5.56x45mm HP cartridges, 50 pieces.", + "657024e3c5d7d4cb4d07856a Name": "5.56x45mm M855A1 ammo pack (50 pcs)", "657024e3c5d7d4cb4d07856a ShortName": "M855A1", - "657024e3c5d7d4cb4d07856a Description": "Cutie cu muniție 5.56x45mm M855A1, 50 bucăți.", - "657024e8cfc010a0f5006a0d Name": "5.56x45mm M856 cutie (30 buc.)", + "657024e3c5d7d4cb4d07856a Description": "A box of 5.56x45mm M855A1 cartridges, 50 pieces.", + "657024e8cfc010a0f5006a0d Name": "5.56x45mm M856 ammo pack (50 pcs)", "657024e8cfc010a0f5006a0d ShortName": "M856", - "657024e8cfc010a0f5006a0d Description": "Cutie cu muniție 5.56x45mm M856, 50 bucăți.", - "657024ecc5d7d4cb4d07856d Name": "5.56x45mm M856A1 cutie (50 buc)", + "657024e8cfc010a0f5006a0d Description": "A box of 5.56x45mm M856 cartridges, 50 pieces.", + "657024ecc5d7d4cb4d07856d Name": "5.56x45mm M856A1 ammo pack (50 pcs)", "657024ecc5d7d4cb4d07856d ShortName": "M856A1", - "657024ecc5d7d4cb4d07856d Description": "Cutie cu muniție 5.56x45mm M856A1, 50 bucăți.", - "657024f01419851aef03e715 Name": "5.56x45mm M995 cutie (50 buc.)", + "657024ecc5d7d4cb4d07856d Description": "A box of 5.56x45mm M856A1 cartridges, 50 pieces.", + "657024f01419851aef03e715 Name": "5.56x45mm M995 ammo pack (50 pcs)", "657024f01419851aef03e715 ShortName": "M995", - "657024f01419851aef03e715 Description": "Cutie cu muniție 5.56x45mm M995, 50 bucăți.", - "657024f5cfc010a0f5006a10 Name": "5.56x45mm MK 255 Mod 0 (RRLP) cutie (50 buc)", + "657024f01419851aef03e715 Description": "A box of 5.56x45mm M995 cartridges, 50 pieces.", + "657024f5cfc010a0f5006a10 Name": "5.56x45mm MK 255 Mod 0 (RRLP) ammo pack (50 pcs)", "657024f5cfc010a0f5006a10 ShortName": "RRLP", - "657024f5cfc010a0f5006a10 Description": "Cutie cu muniție 5.56x45mm MK 255 Mod 0 (RRLP), 50 bucăți.", - "657024f9bfc87b3a3409323b Name": "5.56x45mm MK 318 Mod 0 (SOST) cutie (50 buc)", + "657024f5cfc010a0f5006a10 Description": "A box of 5.56x45mm MK 255 Mod 0 (RRLP) cartridges, 50 pieces.", + "657024f9bfc87b3a3409323b Name": "5.56x45mm MK 318 Mod 0 (SOST) ammo pack (50 pcs)", "657024f9bfc87b3a3409323b ShortName": "SOST", - "657024f9bfc87b3a3409323b Description": "Cutie cu muniție 5.56x45mm MK 318 Mod 0 (SOST), 50 bucăți.", - "657025161419851aef03e718 Name": "5.7x28mm L191 cutie (50 buc)", + "657024f9bfc87b3a3409323b Description": "A box of 5.56x45mm MK 318 Mod 0 (SOST) cartridges, 50 pieces.", + "657025161419851aef03e718 Name": "5.7x28mm L191 ammo pack (50 pcs)", "657025161419851aef03e718 ShortName": "L191", - "657025161419851aef03e718 Description": "Cutie cu muniție 5.7x28mm L191, 50 bucăți.", - "6570251ccfc010a0f5006a13 Name": "5.7x28mm R37.F cutie (50 buc)", + "657025161419851aef03e718 Description": "A box of 5.7x28mm L191 cartridges, 50 pieces.", + "6570251ccfc010a0f5006a13 Name": "5.7x28mm R37.F ammo pack (50 pcs)", "6570251ccfc010a0f5006a13 ShortName": "R37.F", - "6570251ccfc010a0f5006a13 Description": "Cutie cu muniție 5.7x28mm R37.F, 50 bucăți.", - "65702520bfc87b3a3409323e Name": "5.7x28mm R37.X cutie (50 buc)", + "6570251ccfc010a0f5006a13 Description": "A box of 5.7x28mm R37.F cartridges, 50 pieces.", + "65702520bfc87b3a3409323e Name": "5.7x28mm R37.X ammo pack (50 pcs)", "65702520bfc87b3a3409323e ShortName": "R37.X", - "65702520bfc87b3a3409323e Description": "Cutie cu muniție 5.7x28mm R37.X, 50 bucăți.", - "65702524cfc010a0f5006a16 Name": "5.7x28mm SB193 cutie (50 buc.)", + "65702520bfc87b3a3409323e Description": "A box of 5.7x28mm R37.X cartridges, 50 pieces.", + "65702524cfc010a0f5006a16 Name": "5.7x28mm SB193 ammo pack (50 pcs)", "65702524cfc010a0f5006a16 ShortName": "SB193", - "65702524cfc010a0f5006a16 Description": "Cutie cu muniție 5.7x28mm SB193, 50 bucăți.", - "657025281419851aef03e71b Name": "5.7x28mm SS197SR cutie (50 buc)", + "65702524cfc010a0f5006a16 Description": "A box of 5.7x28mm SB193 cartridges, 50 pieces.", + "657025281419851aef03e71b Name": "5.7x28mm SS197SR ammo pack (50 pcs)", "657025281419851aef03e71b ShortName": "SS197SR", - "657025281419851aef03e71b Description": "Cutie cu muniție 5.7x28mm SS197SR, 50 bucăți.", - "6570252dbfc87b3a34093241 Name": "5.7x28mm SS198LF cutie (50 buc)", + "657025281419851aef03e71b Description": "A box of 5.7x28mm SS197SR cartridges, 50 pieces.", + "6570252dbfc87b3a34093241 Name": "5.7x28mm SS198LF ammo pack (50 pcs)", "6570252dbfc87b3a34093241 ShortName": "SS198LF", - "6570252dbfc87b3a34093241 Description": "Cutie cu muniție 5.7x28mm SS198LF, 50 bucăți.", - "65702532cfc010a0f5006a19 Name": "7.62x25mm ТТ FMJ43 cutie muniție (25 buc)", + "6570252dbfc87b3a34093241 Description": "A box of 5.7x28mm SS198LF cartridges, 50 pieces.", + "65702532cfc010a0f5006a19 Name": "7.62x25mm ТТ FMJ43 ammo pack (25 pcs)", "65702532cfc010a0f5006a19 ShortName": "FMJ43", - "65702532cfc010a0f5006a19 Description": "Cutie cu muniție 7.62x25mm ТТ FMJ43, 25 bucăți.", - "65702536c5d7d4cb4d078570 Name": "7.62x25mm ТТ LRN cutie muniție (25 buc)", + "65702532cfc010a0f5006a19 Description": "A box of 7.62x25mm ТТ FMJ43 cartridges, 25 pieces.", + "65702536c5d7d4cb4d078570 Name": "7.62x25mm ТТ LRN ammo pack (25 pcs)", "65702536c5d7d4cb4d078570 ShortName": "LRN", - "65702536c5d7d4cb4d078570 Description": "Cutie cu muniție 7.62x25mm ТТ LRN, 25 bucăți.", - "6570253acfc010a0f5006a1c Name": "7.62x25mm ТТ LRNPC cutie muniție (25 buc)", + "65702536c5d7d4cb4d078570 Description": "A box of 7.62x25mm ТТ LRN cartridges, 25 pieces.", + "6570253acfc010a0f5006a1c Name": "7.62x25mm ТТ LRNPC ammo pack (25 pcs)", "6570253acfc010a0f5006a1c ShortName": "LRNPC", - "6570253acfc010a0f5006a1c Description": "Cutie cu muniție 7.62x25mm ТТ LRNPC, 25 bucăți.", - "6570253ec5d7d4cb4d078573 Name": "7.62x25mm ТТ AKBS cutie muniție (25 buc)", + "6570253acfc010a0f5006a1c Description": "A box of 7.62x25mm ТТ LRNPC cartridges, 25 pieces.", + "6570253ec5d7d4cb4d078573 Name": "7.62x25mm TT AKBS ammo pack (25 pcs)", "6570253ec5d7d4cb4d078573 ShortName": "AKBS", - "6570253ec5d7d4cb4d078573 Description": "Cutie cu muniție 7.62x25mm ТТ AKBS, 25 bucăți.", - "657025421419851aef03e71e Name": "7.62x25mm ТТ P gl cutie muniție (25 buc)", + "6570253ec5d7d4cb4d078573 Description": "A box of 7.62x25mm TT AKBS cartridges, 25 pieces.", + "657025421419851aef03e71e Name": "7.62x25mm TT P gl ammo pack (25 pcs)", "657025421419851aef03e71e ShortName": "P", - "657025421419851aef03e71e Description": "Cutie cu muniție 7.62x25mm ТТ P gl, 25 bucăți.", - "65702546cfc010a0f5006a1f Name": "7.62x25mm ТТ Pst gj cutie muniție (25 buc)", + "657025421419851aef03e71e Description": "A box of 7.62x25mm TT P gl cartridges, 25 pieces.", + "65702546cfc010a0f5006a1f Name": "7.62x25mm TT Pst gzh ammo pack (25 pcs)", "65702546cfc010a0f5006a1f ShortName": "Pst", - "65702546cfc010a0f5006a1f Description": "Cutie cu muniție 7.62x25mm ТТ Pst gj, 25 bucăți.", - "6570254abfc87b3a34093244 Name": "7.62x25mm ТТ PT gj cutie muniție (25 buc)", + "65702546cfc010a0f5006a1f Description": "A box of 7.62x25mm TT Pst gzh cartridges, 25 pieces.", + "6570254abfc87b3a34093244 Name": "7.62x25mm TT PT gzh ammo pack (25 pcs)", "6570254abfc87b3a34093244 ShortName": "PT", - "6570254abfc87b3a34093244 Description": "Cutie cu muniție 7.62x25mm ТТ PT gj, 25 bucăți.", - "6570254fcfc010a0f5006a22 Name": "7.62x51mm M61 cutie (20 buc.)", + "6570254abfc87b3a34093244 Description": "A box of 7.62x25mm TT PT gzh cartridges, 25 pieces.", + "6570254fcfc010a0f5006a22 Name": "7.62x51mm M61 ammo pack (20 pcs)", "6570254fcfc010a0f5006a22 ShortName": "M61", - "6570254fcfc010a0f5006a22 Description": "Cutie cu muniție 7.62x51mm M61, 20 bucăți.", - "65702554bfc87b3a34093247 Name": "7.62x51mm M62 Trasor cutie (20 buc.)", + "6570254fcfc010a0f5006a22 Description": "A box of 7.62x51mm M61 cartridges, 20 pieces.", + "65702554bfc87b3a34093247 Name": "7.62x51mm M62 Tracer ammo pack (20 pcs)", "65702554bfc87b3a34093247 ShortName": "M62", - "65702554bfc87b3a34093247 Description": "Cutie cu muniție 7.62x51mm M62 Trasor, 20 bucăți.", - "65702558cfc010a0f5006a25 Name": "7.62x51mm M80 cutie (20 buc.)", + "65702554bfc87b3a34093247 Description": "A box of 7.62x51mm M62 Tracer cartridges, 20 pieces.", + "65702558cfc010a0f5006a25 Name": "7.62x51mm M80 ammo pack (20 pcs)", "65702558cfc010a0f5006a25 ShortName": "M80", - "65702558cfc010a0f5006a25 Description": "Cutie cu muniție 7.62x51mm M80, 20 bucăți.", - "6570255dbfc87b3a3409324a Name": "7.62x51mm Ultra Nosler cutie (20 buc.)", + "65702558cfc010a0f5006a25 Description": "A box of 7.62x51mm M80 cartridges, 20 pieces.", + "6570255dbfc87b3a3409324a Name": "7.62x51mm Ultra Nosler ammo pack (20 pcs)", "6570255dbfc87b3a3409324a ShortName": "Ultra Nosler", - "6570255dbfc87b3a3409324a Description": "Cutie cu muniție 7.62x51mm Ultra Nosler, 20 bucăți.", - "65702561cfc010a0f5006a28 Name": "7.62x51mm BCP FMJ cutie muniție (20 buc)", + "6570255dbfc87b3a3409324a Description": "A box of 7.62x51mm Ultra Nosler cartridges, 20 pieces.", + "65702561cfc010a0f5006a28 Name": "7.62x51mm BCP FMJ ammo pack (20 pcs)", "65702561cfc010a0f5006a28 ShortName": "BCP FMJ", - "65702561cfc010a0f5006a28 Description": "Cutie cu muniție 7.62x51mm BCP FMJ, 20 bucăți.", - "65702566bfc87b3a3409324d Name": "7.62x51mm TCW SP cutie muniție (20 buc)", + "65702561cfc010a0f5006a28 Description": "A box of 7.62x51mm BCP FMJ cartridges, 20 pieces.", + "65702566bfc87b3a3409324d Name": "7.62x51mm TCW SP ammo pack (20 pcs)", "65702566bfc87b3a3409324d ShortName": "TCW SP", - "65702566bfc87b3a3409324d Description": "Cutie cu muniție 7.62x51mm TCW SP, 20 bucăți.", - "65702572c5d7d4cb4d078576 Name": "7.62x54mm R BT gj cutie muniție (20 buc)", + "65702566bfc87b3a3409324d Description": "A box of 7.62x51mm TCW SP cartridges, 20 pieces.", + "65702572c5d7d4cb4d078576 Name": "7.62x54mm R BT gzh ammo pack (20 pcs)", "65702572c5d7d4cb4d078576 ShortName": "BT", - "65702572c5d7d4cb4d078576 Description": "Cutie cu muniție 7.62x54mm R BT gj, 20 bucăți.", - "65702577cfc010a0f5006a2c Name": "7.62x54mm R LPS gj cutie muniție (20 buc)", + "65702572c5d7d4cb4d078576 Description": "A box of 7.62x54mm R BT gzh cartridges, 20 pieces.", + "65702577cfc010a0f5006a2c Name": "7.62x54mm R LPS gzh ammo pack (20 pcs)", "65702577cfc010a0f5006a2c ShortName": "LPS", - "65702577cfc010a0f5006a2c Description": "Cutie cu muniție 7.62x54mm R LPS gj, 20 bucăți.", - "6570257cc5d7d4cb4d078579 Name": "7.62x54mm R PS gj cutie muniție (20 buc)", + "65702577cfc010a0f5006a2c Description": "A box of 7.62x54mm R LPS gzh cartridges, 20 pieces.", + "6570257cc5d7d4cb4d078579 Name": "7.62x54mm R PS gzh ammo pack (20 pcs)", "6570257cc5d7d4cb4d078579 ShortName": "PS", - "6570257cc5d7d4cb4d078579 Description": "Cutie cu muniție 7.62x54mm R PS gj, 20 bucăți.", - "65702584cfc010a0f5006a2f Name": "7.62x54mm R T-46M gj cutie muniție (20 buc)", + "6570257cc5d7d4cb4d078579 Description": "A box of 7.62x54mm R PS gzh cartridges, 20 pieces.", + "65702584cfc010a0f5006a2f Name": "7.62x54mm R T-46M gzh ammo pack (20 pcs)", "65702584cfc010a0f5006a2f ShortName": "T-46M", - "65702584cfc010a0f5006a2f Description": "Cutie cu muniție 7.62x54mm R T-46M gj, 20 bucăți.", - "65702591c5d7d4cb4d07857c Name": "9x19mm AP 6.3 cutie muniție (50 buc)", + "65702584cfc010a0f5006a2f Description": "A box of 7.62x54mm R T-46M gzh cartridges, 20 pieces.", + "65702591c5d7d4cb4d07857c Name": "9x19mm AP 6.3 ammo pack (50 pcs)", "65702591c5d7d4cb4d07857c ShortName": "AP 6.3", - "65702591c5d7d4cb4d07857c Description": "Cutie cu muniție 9x19mm AP 6.3, 50 bucăți.", - "657025961419851aef03e721 Name": "9x19mm Trasor Verde cutie muniție (50 buc)", - "657025961419851aef03e721 ShortName": "TV", - "657025961419851aef03e721 Description": "Cutie cu muniție 9x19mm Trasor Verde, 50 bucăți.", - "6570259bc5d7d4cb4d07857f Name": "9x19mm Luger CCI cutie muniție (50 buc)", + "65702591c5d7d4cb4d07857c Description": "A box of 9x19mm AP 6.3 cartridges, 50 pieces.", + "657025961419851aef03e721 Name": "9x19mm Green Tracer ammo pack (50 pcs)", + "657025961419851aef03e721 ShortName": "GT", + "657025961419851aef03e721 Description": "A box of 9x19mm Green Tracer cartridges, 50 pieces.", + "6570259bc5d7d4cb4d07857f Name": "9x19mm Luger CCI ammo pack (50 pcs)", "6570259bc5d7d4cb4d07857f ShortName": "Luger CCI", - "6570259bc5d7d4cb4d07857f Description": "Cutie cu muniție 9x19mm Luger CCI, 50 bucăți.", - "6570259fcfc010a0f5006a32 Name": "9x19mm QuakeMaker cutie muniție (50 buc)", + "6570259bc5d7d4cb4d07857f Description": "A box of 9x19mm Luger CCI cartridges, 50 pieces.", + "6570259fcfc010a0f5006a32 Name": "9x19mm QuakeMaker ammo pack (50 pcs)", "6570259fcfc010a0f5006a32 ShortName": "QuakeMaker", - "6570259fcfc010a0f5006a32 Description": "Cutie cu muniție 9x19mm QuakeMaker, 50 bucăți.", - "657025a4bfc87b3a34093250 Name": "9x19mm PSO gj pachet muniție (50 buc)", + "6570259fcfc010a0f5006a32 Description": "A box of 9x19mm QuakeMaker cartridges, 50 pieces.", + "657025a4bfc87b3a34093250 Name": "9x19mm PSO gzh ammo pack (50 pcs)", "657025a4bfc87b3a34093250 ShortName": "PSO", - "657025a4bfc87b3a34093250 Description": "Cutie cu muniție 9x19mm PSO gj, 50 bucăți.", - "657025a81419851aef03e724 Name": "9x19mm Pst gj pachet muniție (50 buc)", + "657025a4bfc87b3a34093250 Description": "A box of 9x19mm PSO gzh cartridges, 50 pieces.", + "657025a81419851aef03e724 Name": "9x19mm Pst gzh ammo pack (50 pcs)", "657025a81419851aef03e724 ShortName": "Pst", - "657025a81419851aef03e724 Description": "Cutie cu muniție 9x19mm Pst gj, 50 bucăți.", - "657025bbcfc010a0f5006a35 Name": "9x21mm P gj pachet muniție (30 buc)", + "657025a81419851aef03e724 Description": "A box of 9x19mm Pst gzh cartridges, 50 pieces.", + "657025bbcfc010a0f5006a35 Name": "9x21mm P gzh ammo pack (30 pcs)", "657025bbcfc010a0f5006a35 ShortName": "P", - "657025bbcfc010a0f5006a35 Description": "Cutie cu muniție 9x21mm P gj, 30 bucăți.", - "657025c4c5d7d4cb4d078582 Name": "9x21mm PS gj pachet muniție (30 buc)", + "657025bbcfc010a0f5006a35 Description": "A box of 9x21mm P gzh cartridges, 30 pieces.", + "657025c4c5d7d4cb4d078582 Name": "9x21mm PS gzh ammo pack (30 pcs)", "657025c4c5d7d4cb4d078582 ShortName": "PS", - "657025c4c5d7d4cb4d078582 Description": "Cutie cu muniție 9x21mm PS gj, 30 bucăți.", - "657025c9cfc010a0f5006a38 Name": "9x21mm PE gj pachet muniție (30 buc)", + "657025c4c5d7d4cb4d078582 Description": "A box of 9x21mm PS gzh cartridges, 30 pieces.", + "657025c9cfc010a0f5006a38 Name": "9x21mm PE gzh ammo pack (30 pcs)", "657025c9cfc010a0f5006a38 ShortName": "PE", - "657025c9cfc010a0f5006a38 Description": "Cutie cu muniție 9x21mm PE gj, 30 bucăți.", - "657025cfbfc87b3a34093253 Name": "9x39mm PAB-9 gs cutie muniție (20 buc)", + "657025c9cfc010a0f5006a38 Description": "A box of 9x21mm PE gzh cartridges, 30 pieces.", + "657025cfbfc87b3a34093253 Name": "9x39mm PAB-9 gs ammo pack (20 pcs)", "657025cfbfc87b3a34093253 ShortName": "PAB-9", - "657025cfbfc87b3a34093253 Description": "Cutie cu muniție 9x39mm PAB-9 gs, 20 bucăți.", - "657025d4c5d7d4cb4d078585 Name": "9x39mm SP-5 gs cutie muniție (20 buc)", + "657025cfbfc87b3a34093253 Description": "A box of 9x39mm PAB-9 gs cartridges, 20 pieces.", + "657025d4c5d7d4cb4d078585 Name": "9x39mm SP-5 gs ammo pack (20 pcs)", "657025d4c5d7d4cb4d078585 ShortName": "SP-5", - "657025d4c5d7d4cb4d078585 Description": "Cutie cu muniție 9x39mm SP-5 gs, 20 bucăți.", - "657025dabfc87b3a34093256 Name": "9x39mm SP-6 gs cutie muniție (20 buc)", + "657025d4c5d7d4cb4d078585 Description": "A box of 9x39mm SP-5 gs cartridges, 20 pieces.", + "657025dabfc87b3a34093256 Name": "9x39mm SP-6 gs ammo pack (20 pcs)", "657025dabfc87b3a34093256 ShortName": "SP-6", - "657025dabfc87b3a34093256 Description": "Cutie cu muniție 9x39mm SP-6 gs, 20 bucăți.", - "657025dfcfc010a0f5006a3b Name": "9x39mm SPP gs cutie muniție (20 buc)", + "657025dabfc87b3a34093256 Description": "A box of 9x39mm SP-6 gs cartridges, 20 pieces.", + "657025dfcfc010a0f5006a3b Name": "9x39mm SPP gs ammo pack (20 pcs)", "657025dfcfc010a0f5006a3b ShortName": "SPP", - "657025dfcfc010a0f5006a3b Description": "Cutie cu muniție 9x39mm SPP gs, 20 bucăți.", - "657025ebc5d7d4cb4d078588 Name": "5.45x39mm PPBS gs \"Igolnik\" pachet muniție (120 buc)", + "657025dfcfc010a0f5006a3b Description": "A box of 9x39mm SPP gs cartridges, 20 pieces.", + "657025ebc5d7d4cb4d078588 Name": "5.45x39mm PPBS gs \"Igolnik\" ammo pack (120 pcs)", "657025ebc5d7d4cb4d078588 ShortName": "PPBS", - "657025ebc5d7d4cb4d078588 Description": "Cutie cu muniție 5.45x39 PPBS gs \"Igolnik\" 120 bucăți.", - "65702606cfc010a0f5006a3e Name": "9x18mm PM BJT gj pachet muniție (50 buc)", - "65702606cfc010a0f5006a3e ShortName": "BJT", - "65702606cfc010a0f5006a3e Description": "Cutie cu muniție 9x18mm PM BJT gj, 50 bucăți.", - "6570260c1419851aef03e727 Name": "9x18mm PM P gj pachet muniție (50 buc)", + "657025ebc5d7d4cb4d078588 Description": "A box of 5.45x39mm PPBS gs \"Igolnik\" cartridges, 120 pieces.", + "65702606cfc010a0f5006a3e Name": "9x18mm PM BZhT gzh ammo pack (50 pcs)", + "65702606cfc010a0f5006a3e ShortName": "BZhT", + "65702606cfc010a0f5006a3e Description": "A box of 9x18mm PM BZhT gzh cartridges, 50 pieces.", + "6570260c1419851aef03e727 Name": "9x18mm PM P gzh ammo pack (50 pcs)", "6570260c1419851aef03e727 ShortName": "P", - "6570260c1419851aef03e727 Description": "Cutie cu muniție 9x18mm PM P gj, 50 bucăți.", - "65702610cfc010a0f5006a41 Name": "9x18mm PM PBM gj pachet muniție (50 buc)", + "6570260c1419851aef03e727 Description": "A box of 9x18mm PM P gzh cartridges, 50 pieces.", + "65702610cfc010a0f5006a41 Name": "9x18mm PM PBM gzh ammo pack (50 pcs)", "65702610cfc010a0f5006a41 ShortName": "PBM", - "65702610cfc010a0f5006a41 Description": "Cutie cu muniție 9x18mm PM PBM gj, 50 bucăți.", - "65702614c5d7d4cb4d07858b Name": "9x18mm PM PPT gj pachet muniție (50 buc)", + "65702610cfc010a0f5006a41 Description": "A box of 9x18mm PM PBM gzh cartridges, 50 pieces.", + "65702614c5d7d4cb4d07858b Name": "9x18mm PM PPT gzh ammo pack (50 pcs)", "65702614c5d7d4cb4d07858b ShortName": "PPT", - "65702614c5d7d4cb4d07858b Description": "Cutie cu muniție 9x18mm PM PPT gj, 50 bucăți.", - "65702619bfc87b3a34093259 Name": "9x18mm PM PPe gj pachet muniție (50 buc)", + "65702614c5d7d4cb4d07858b Description": "A box of 9x18mm PM PPT gzh cartridges, 50 pieces.", + "65702619bfc87b3a34093259 Name": "9x18mm PM PPe gzh ammo pack (50 pcs)", "65702619bfc87b3a34093259 ShortName": "PPe", - "65702619bfc87b3a34093259 Description": "Cutie cu muniție 9x18mm PM PPe gj, 50 bucăți.", - "6570261dc5d7d4cb4d07858e Name": "9x18mm PM PRS gs pachet muniție (50 buc)", + "65702619bfc87b3a34093259 Description": "A box of 9x18mm PM PPe gzh cartridges, 50 pieces.", + "6570261dc5d7d4cb4d07858e Name": "9x18mm PM PRS gs ammo pack (50 pcs)", "6570261dc5d7d4cb4d07858e ShortName": "PRS", - "6570261dc5d7d4cb4d07858e Description": "Cutie cu muniție 9x18mm PM PRS gs, 50 bucăți.", - "65702621cfc010a0f5006a44 Name": "9x18mm PM PS gs PPO pachet muniție (50 buc)", + "6570261dc5d7d4cb4d07858e Description": "A box of 9x18mm PM PRS gs cartridges, 50 pieces.", + "65702621cfc010a0f5006a44 Name": "9x18mm PM PS gs PPO ammo pack (50 pcs)", "65702621cfc010a0f5006a44 ShortName": "PS PPO", - "65702621cfc010a0f5006a44 Description": "Cutie cu muniție 9x18mm PM PS gs PPO, 50 bucăți.", - "657026251419851aef03e72a Name": "9x18mm PM PSV pachet muniție (50 buc)", + "65702621cfc010a0f5006a44 Description": "A box of 9x18mm PM PS gs PPO cartridges, 50 pieces.", + "657026251419851aef03e72a Name": "9x18mm PM PSV ammo pack (50 pcs)", "657026251419851aef03e72a ShortName": "PSV", - "657026251419851aef03e72a Description": "Cutie cu muniție 9x18mm PM PSV, 50 bucăți.", - "65702629cfc010a0f5006a47 Name": "9x18mm PM PSO gj pachet muniție (50 buc)", + "657026251419851aef03e72a Description": "A box of 9x18mm PM PSV cartridges, 50 pieces.", + "65702629cfc010a0f5006a47 Name": "9x18mm PM PSO gzh ammo pack (50 pcs)", "65702629cfc010a0f5006a47 ShortName": "PSO", - "65702629cfc010a0f5006a47 Description": "Cutie cu muniție 9x18mm PM PSO gj, 50 bucăți.", - "6570262d1419851aef03e72d Name": "9x18mm PM Pst gj pachet muniție (50 buc)", + "65702629cfc010a0f5006a47 Description": "A box of 9x18mm PM PSO gzh cartridges, 50 pieces.", + "6570262d1419851aef03e72d Name": "9x18mm PM Pst gzh ammo pack (50 pcs)", "6570262d1419851aef03e72d ShortName": "Pst", - "6570262d1419851aef03e72d Description": "Cutie cu muniție 9x18mm PM Pst gj, 50 bucăți.", - "65702630cfc010a0f5006a4a Name": "9x18mm PM RG028 gj pachet muniție (50 buc)", + "6570262d1419851aef03e72d Description": "A box of 9x18mm PM Pst gzh cartridges, 50 pieces.", + "65702630cfc010a0f5006a4a Name": "9x18mm PM RG028 gzh ammo pack (50 pcs)", "65702630cfc010a0f5006a4a ShortName": "RG028", - "65702630cfc010a0f5006a4a Description": "Cutie cu muniție 9x18mm PM RG028 gj, 50 bucăți.", - "657026341419851aef03e730 Name": "9x18mm PM SP7 gj pachet muniție (50 buc)", + "65702630cfc010a0f5006a4a Description": "A box of 9x18mm PM RG028 gzh cartridges, 50 pieces.", + "657026341419851aef03e730 Name": "9x18mm PM SP7 gzh ammo pack (50 pcs)", "657026341419851aef03e730 ShortName": "SP7", - "657026341419851aef03e730 Description": "Cutie cu muniție 9x18mm PM SP7 gj, 50 bucăți.", - "65702639bfc87b3a3409325c Name": "9x18mm PM SP8 gj pachet muniție (50 buc)", + "657026341419851aef03e730 Description": "A box of 9x18mm PM SP7 gzh cartridges, 50 pieces.", + "65702639bfc87b3a3409325c Name": "9x18mm PM SP8 gzh ammo pack (50 pcs)", "65702639bfc87b3a3409325c ShortName": "SP8", - "65702639bfc87b3a3409325c Description": "Cutie cu muniție 9x18mm PM SP8 gj, 50 bucăți.", - "65702640cfc010a0f5006a4d Name": "9x18mm PM PstM gj pachet muniție (50 buc)", + "65702639bfc87b3a3409325c Description": "A box of 9x18mm PM SP8 gzh cartridges, 50 pieces.", + "65702640cfc010a0f5006a4d Name": "9x18mm PMM PstM gzh ammo pack (50 pcs)", "65702640cfc010a0f5006a4d ShortName": "PstM", - "65702640cfc010a0f5006a4d Description": "Cutie cu muniție 9x18mm PMM PstM gj, 50 bucăți.", - "657026451419851aef03e733 Name": "5.56x45mm FMJ cutie (100 buc)", + "65702640cfc010a0f5006a4d Description": "A box of 9x18mm PMM PstM gzh cartridges, 50 pieces.", + "657026451419851aef03e733 Name": "5.56x45mm FMJ ammo pack (100 pcs)", "657026451419851aef03e733 ShortName": "FMJ", - "657026451419851aef03e733 Description": "Cutie cu muniție 5.56x45mm FMJ, 100 bucăți.", - "6570264acfc010a0f5006a50 Name": "5.56x45mm HP cutie (100 buc)", + "657026451419851aef03e733 Description": "A box of 5.56x45mm FMJ cartridges, 100 pieces.", + "6570264acfc010a0f5006a50 Name": "5.56x45mm HP ammo pack (100 pcs)", "6570264acfc010a0f5006a50 ShortName": "HP", - "6570264acfc010a0f5006a50 Description": "Cutie cu muniție 5.56x45mm HP, 100 bucăți.", - "6570264d1419851aef03e736 Name": "5.56x45mm M855 cutie (100 buc.)", + "6570264acfc010a0f5006a50 Description": "A box of 5.56x45mm HP cartridges, 100 pieces.", + "6570264d1419851aef03e736 Name": "5.56x45mm M855 ammo pack (100 pcs)", "6570264d1419851aef03e736 ShortName": "M855", - "6570264d1419851aef03e736 Description": "Cutie cu muniție 5.56x45mm M855, 100 bucăți.", - "65702652cfc010a0f5006a53 Name": "5.56x45mm M855A1 cutie (100 buc)", + "6570264d1419851aef03e736 Description": "A box of 5.56x45mm M855 cartridges, 100 pieces.", + "65702652cfc010a0f5006a53 Name": "5.56x45mm M855A1 ammo pack (100 pcs)", "65702652cfc010a0f5006a53 ShortName": "M855A1", - "65702652cfc010a0f5006a53 Description": "Cutie cu muniție 5.56x45mm M855A1, 100 bucăți.", - "65702656c5d7d4cb4d078591 Name": "5.56x45mm M856 cutie (100 buc.)", + "65702652cfc010a0f5006a53 Description": "A box of 5.56x45mm M855A1 cartridges, 100 pieces.", + "65702656c5d7d4cb4d078591 Name": "5.56x45mm M856 ammo pack (100 pcs)", "65702656c5d7d4cb4d078591 ShortName": "M856", - "65702656c5d7d4cb4d078591 Description": "Cutie cu muniție 5.56x45mm M856, 100 bucăți.", - "6570265bcfc010a0f5006a56 Name": "5.56x45mm M856A1 cutie (100 buc)", + "65702656c5d7d4cb4d078591 Description": "A box of 5.56x45mm M856 cartridges, 100 pieces.", + "6570265bcfc010a0f5006a56 Name": "5.56x45mm M856A1 ammo pack (100 pcs)", "6570265bcfc010a0f5006a56 ShortName": "M856A1", - "6570265bcfc010a0f5006a56 Description": "Cutie cu muniție 5.56x45mm M856A1, 100 bucăți.", - "6570265f1419851aef03e739 Name": "5.56x45mm M995 cutie (100 buc.)", + "6570265bcfc010a0f5006a56 Description": "A box of 5.56x45mm M856A1 cartridges, 100 pieces.", + "6570265f1419851aef03e739 Name": "5.56x45mm M995 ammo pack (100 pcs)", "6570265f1419851aef03e739 ShortName": "M995", - "6570265f1419851aef03e739 Description": "Cutie cu muniție 5.56x45mm M995, 100 bucăți.", - "65702664cfc010a0f5006a59 Name": "5.56x45mm MK 255 Mod 0 (RRLP) cutie (100 buc)", + "6570265f1419851aef03e739 Description": "A box of 5.56x45mm M995 cartridges, 100 pieces.", + "65702664cfc010a0f5006a59 Name": "5.56x45mm MK 255 Mod 0 (RRLP) ammo pack (100 pcs)", "65702664cfc010a0f5006a59 ShortName": "RRLP", - "65702664cfc010a0f5006a59 Description": "Cutie cu muniție 5.56x45mm MK 255 Mod 0 (RRLP), 100 bucăți.", - "6570266bc5d7d4cb4d078594 Name": "5.56x45mm MK 318 Mod 0 (SOST) cutie (100 buc)", + "65702664cfc010a0f5006a59 Description": "A box of 5.56x45mm MK 255 Mod 0 (RRLP) cartridges, 100 pieces.", + "6570266bc5d7d4cb4d078594 Name": "5.56x45mm MK 318 Mod 0 (SOST) ammo pack (100 pcs)", "6570266bc5d7d4cb4d078594 ShortName": "SOST", - "6570266bc5d7d4cb4d078594 Description": "Cutie cu muniție 5.56x45mm MK 318 Mod 0 (SOST), 100 bucăți.", - "65702681bfc87b3a3409325f Name": "5.56x45mm SSA AP cutie (100 buc.)", + "6570266bc5d7d4cb4d078594 Description": "A box of 5.56x45mm MK 318 Mod 0 (SOST) cartridges, 100 pieces.", + "65702681bfc87b3a3409325f Name": "5.56x45mm SSA AP ammo pack (100 pcs)", "65702681bfc87b3a3409325f ShortName": "SSA AP", - "65702681bfc87b3a3409325f Description": "Cutie cu muniție 5.56x45mm SSA AP, 100 bucăți.", - "65702f87722744627e05cdb8 Name": "Inserție de Aramidă", + "65702681bfc87b3a3409325f Description": "A box of 5.56x45mm SSA AP cartridges, 100 pieces.", + "65702f87722744627e05cdb8 Name": "Aramid insert", "65702f87722744627e05cdb8 ShortName": "", "65702f87722744627e05cdb8 Description": "", - "65702fe593b7ea9c330f4ce8 Name": "Inserție de Aramidă", + "65702fe593b7ea9c330f4ce8 Name": "Aramid insert", "65702fe593b7ea9c330f4ce8 ShortName": "", "65702fe593b7ea9c330f4ce8 Description": "", - "6570305d93b7ea9c330f4ced Name": "Inserție de Aramidă", + "6570305d93b7ea9c330f4ced Name": "Aramid insert", "6570305d93b7ea9c330f4ced ShortName": "", "6570305d93b7ea9c330f4ced Description": "", - "65703472c9030b928a0a8a78 Name": "Inserție de Aramidă", + "65703472c9030b928a0a8a78 Name": "Aramid insert", "65703472c9030b928a0a8a78 ShortName": "", "65703472c9030b928a0a8a78 Description": "", - "65703d866584602f7d057a8a Name": "Inserție de Aramidă", + "65703d866584602f7d057a8a Name": "Aramid insert", "65703d866584602f7d057a8a ShortName": "", "65703d866584602f7d057a8a Description": "", - "65703fa06584602f7d057a8e Name": "Inserție de Aramidă", + "65703fa06584602f7d057a8e Name": "Aramid insert", "65703fa06584602f7d057a8e ShortName": "", "65703fa06584602f7d057a8e Description": "", - "65703fe46a912c8b5c03468b Name": "Inserție de Aramidă", + "65703fe46a912c8b5c03468b Name": "Aramid insert", "65703fe46a912c8b5c03468b ShortName": "", "65703fe46a912c8b5c03468b Description": "", - "657040374e67e8ec7a0d261c Name": "Inserție de Aramidă", + "657040374e67e8ec7a0d261c Name": "Aramid insert", "657040374e67e8ec7a0d261c ShortName": "", "657040374e67e8ec7a0d261c Description": "", - "657044e971369562b300ce9b Name": "Inserție din Aluminiu", + "657044e971369562b300ce9b Name": "Aluminum insert", "657044e971369562b300ce9b ShortName": "", "657044e971369562b300ce9b Description": "", - "657045741bd9beedc40b7299 Name": "Inserție din Aluminiu", + "657045741bd9beedc40b7299 Name": "Aluminum insert", "657045741bd9beedc40b7299 ShortName": "", "657045741bd9beedc40b7299 Description": "", - "657045b97e80617cee095bda Name": "Inserție din Aluminiu", + "657045b97e80617cee095bda Name": "Aluminum insert", "657045b97e80617cee095bda ShortName": "", "657045b97e80617cee095bda Description": "", - "6570460471369562b300ce9f Name": "Inserție din Aluminiu", + "6570460471369562b300ce9f Name": "Aluminum insert", "6570460471369562b300ce9f ShortName": "", "6570460471369562b300ce9f Description": "", - "6570495b45d573133d0d6adb Name": "Inserție din oțel călit", + "6570495b45d573133d0d6adb Name": "Armor steel insert", "6570495b45d573133d0d6adb ShortName": "", "6570495b45d573133d0d6adb Description": "", - "657049d23425b19bbc0502f0 Name": "Inserție din oțel călit", + "657049d23425b19bbc0502f0 Name": "Armor steel insert", "657049d23425b19bbc0502f0 ShortName": "", "657049d23425b19bbc0502f0 Description": "", - "65704de13e7bba58ea0285c8 Name": "Inserție de Aramidă", + "65704de13e7bba58ea0285c8 Name": "Aramid insert", "65704de13e7bba58ea0285c8 ShortName": "", "65704de13e7bba58ea0285c8 Description": "", "657058fddf9b3231400e9188 Name": "BEAR OPS MGS", "657058fddf9b3231400e9188 ShortName": "", "657058fddf9b3231400e9188 Description": "", - "65705c3c14f2ed6d7d0b7738 Name": "Inserție de Aramidă", + "65705c3c14f2ed6d7d0b7738 Name": "Aramid insert", "65705c3c14f2ed6d7d0b7738 ShortName": "", "65705c3c14f2ed6d7d0b7738 Description": "", - "65705c777260e1139e091408 Name": "Inserție de Aramidă", + "65705c777260e1139e091408 Name": "Aramid insert", "65705c777260e1139e091408 ShortName": "", "65705c777260e1139e091408 Description": "", - "65705cb314f2ed6d7d0b773c Name": "Inserție de Aramidă", + "65705cb314f2ed6d7d0b773c Name": "Aramid insert", "65705cb314f2ed6d7d0b773c ShortName": "", "65705cb314f2ed6d7d0b773c Description": "", - "65705cea4916448ae1050897 Name": "Inserție de Aramidă", + "65705cea4916448ae1050897 Name": "Aramid insert", "65705cea4916448ae1050897 ShortName": "", "65705cea4916448ae1050897 Description": "", - "6570653e89fd4926380b733e Name": "Inserție de Aramidă", + "6570653e89fd4926380b733e Name": "Aramid insert", "6570653e89fd4926380b733e ShortName": "", "6570653e89fd4926380b733e Description": "", - "6570658a89fd4926380b7346 Name": "Inserție de Aramidă", + "6570658a89fd4926380b7346 Name": "Aramid insert", "6570658a89fd4926380b7346 ShortName": "", "6570658a89fd4926380b7346 Description": "", "65707a89f5a6f1412f0c5f7b Name": "BEAR URON", "65707a89f5a6f1412f0c5f7b ShortName": "", "65707a89f5a6f1412f0c5f7b Description": "", - "65707fc348c7a887f2010432 Name": "Inserție de Aramidă", + "65707fc348c7a887f2010432 Name": "Aramid insert", "65707fc348c7a887f2010432 ShortName": "", "65707fc348c7a887f2010432 Description": "", - "6570800612755ae0d907acf8 Name": "Inserție de Aramidă", + "6570800612755ae0d907acf8 Name": "Aramid insert", "6570800612755ae0d907acf8 ShortName": "", "6570800612755ae0d907acf8 Description": "", - "65708070f65e2491bf00972c Name": "Inserție de Aramidă", + "65708070f65e2491bf00972c Name": "Aramid insert", "65708070f65e2491bf00972c ShortName": "", "65708070f65e2491bf00972c Description": "", - "657080a212755ae0d907ad04 Name": "Inserție de Aramidă", + "657080a212755ae0d907ad04 Name": "Aramid insert", "657080a212755ae0d907ad04 ShortName": "", "657080a212755ae0d907ad04 Description": "", - "657080ca12755ae0d907ad5e Name": "Inserție de Aramidă", + "657080ca12755ae0d907ad5e Name": "Aramid insert", "657080ca12755ae0d907ad5e ShortName": "", "657080ca12755ae0d907ad5e Description": "", - "65708122f65e2491bf009755 Name": "Inserție de Aramidă", + "65708122f65e2491bf009755 Name": "Aramid insert", "65708122f65e2491bf009755 ShortName": "", "65708122f65e2491bf009755 Description": "", - "65708165696fe382cf073255 Name": "Inserție de Aramidă", + "65708165696fe382cf073255 Name": "Aramid insert", "65708165696fe382cf073255 ShortName": "", "65708165696fe382cf073255 Description": "", - "657087577f6d4590ac0d2109 Name": "Inserție de aramidă și plăcuțe de ceramică de 13 mm", + "657087577f6d4590ac0d2109 Name": "13 mm aramid insert and ceramic plates", "657087577f6d4590ac0d2109 ShortName": "", "657087577f6d4590ac0d2109 Description": "", - "6570880f4a747dbb63005ee5 Name": "Inserție de aramidă și plăcuțe de ceramică de 13 mm", + "6570880f4a747dbb63005ee5 Name": "13 mm aramid insert and ceramic plates", "6570880f4a747dbb63005ee5 ShortName": "", "6570880f4a747dbb63005ee5 Description": "", - "657089638db3adca1009f4ca Name": "Mască Balistică Atomic Defense CQCM (Neagră)", + "657089638db3adca1009f4ca Name": "Atomic Defense CQCM ballistic mask (Black)", "657089638db3adca1009f4ca ShortName": "CQCM", - "657089638db3adca1009f4ca Description": "Mască Balistică Atomic Defense CQCM oferă protecție împotriva pistoalelor, puștilor de vânătoare și armelor albe. Această mască ranforsată acoperă fața complet. Prevăzută cu căptușeală ce se extinde în lateralele capului pentru protecție sporită. Masca este prevăzută cu bretele ajustabile în 5 puncte pentru confort și potrivire perfectă.", - "65708afe4a747dbb63005eee Name": "Inserție de Aramidă", + "657089638db3adca1009f4ca Description": "Atomic Defense's CQCM ballistic mask provides protection against short-range weapons including pistols, shotguns and knives. This heavyweight reinforced mask covers the wearer's face completely. It features an inner lining and wraps slightly around the sides of the head for added protection. The mask also features five-point adjustable straps to ensure a comfortable and precise fit.", + "65708afe4a747dbb63005eee Name": "Aramid insert", "65708afe4a747dbb63005eee ShortName": "", "65708afe4a747dbb63005eee Description": "", - "65708b4c4a747dbb63005ef3 Name": "Inserție de aramidă și plăcuțe de ceramică de 13 mm", + "65708b4c4a747dbb63005ef3 Name": "13 mm aramid insert and ceramic plates", "65708b4c4a747dbb63005ef3 ShortName": "", "65708b4c4a747dbb63005ef3 Description": "", - "6570900858b315e8b70a8a98 Name": "5.45x39mm 7N40 pachet muniție (120 buc)", + "6570900858b315e8b70a8a98 Name": "5.45x39mm 7N40 ammo pack (120 pcs)", "6570900858b315e8b70a8a98 ShortName": "7N40", - "6570900858b315e8b70a8a98 Description": "Cutie cu muniție 5.45x39mm 7N40, 120 bucăți.", - "65709d2d21b9f815e208ff95 Name": "Cască Diamond Age NeoSteel High Cut (Neagră)", + "6570900858b315e8b70a8a98 Description": "A box of 5.45x39mm 7N40 cartridges, 120 pieces.", + "65709d2d21b9f815e208ff95 Name": "Diamond Age NeoSteel High Cut helmet (Black)", "65709d2d21b9f815e208ff95 ShortName": "NeoSteel", - "65709d2d21b9f815e208ff95 Description": "Casca Diamond Age NeoSteel High Cut are un design unic care combină oțelul înalt aliat cu materiale compozite pentru a oferi protecție avansată balistică. Este conceput pentru a rezista impactului proiectilelor de mare viteză și poate proteja purtătorul de majoritatea amenințărilor.", - "6570a88c8f221f3b210353b7 Name": "Mandibulă balistică Diamond Age NeoSteel", + "65709d2d21b9f815e208ff95 Description": "The Diamond Age NeoSteel helmet features a unique design that combines high-strength steel with composite materials to provide advanced protection against ballistic and impact threats. It is designed to withstand high velocity impacts and can provide protection against a variety of threats.", + "6570a88c8f221f3b210353b7 Name": "Diamond Age NeoSteel helmet ballistic mandible", "6570a88c8f221f3b210353b7 ShortName": "NeoSteel", - "6570a88c8f221f3b210353b7 Description": "Protecție balistică opțională pentru casca Diamond Age NeoSteel.", - "6570aead4d84f81fd002a033 Name": "Death Shadow mască blindată ușoară", + "6570a88c8f221f3b210353b7 Description": "An extra ballistic protection with a special design for the Diamond Age NeoSteel helmet.", + "6570aead4d84f81fd002a033 Name": "Death Shadow lightweight armored mask", "6570aead4d84f81fd002a033 ShortName": "Death Shadow", - "6570aead4d84f81fd002a033 Description": "Mască Death Shadow pentru protecția feței, ranforsată cu fibre de aramidă.", - "6570df294cc0d2ab1e05ed74 Name": "Inserție de Aramidă", + "6570aead4d84f81fd002a033 Description": "The \"Death Shadow\" mask for face protection, reinforced with aramid fibers.", + "6570df294cc0d2ab1e05ed74 Name": "Aramid insert", "6570df294cc0d2ab1e05ed74 ShortName": "", "6570df294cc0d2ab1e05ed74 Description": "", - "6570df9c615f54368b04fca9 Name": "Inserție de Aramidă", + "6570df9c615f54368b04fca9 Name": "Aramid insert", "6570df9c615f54368b04fca9 ShortName": "", "6570df9c615f54368b04fca9 Description": "", - "6570e025615f54368b04fcb0 Name": "Inserție de Aramidă", + "6570e025615f54368b04fcb0 Name": "Aramid insert", "6570e025615f54368b04fcb0 ShortName": "", "6570e025615f54368b04fcb0 Description": "", - "6570e0610b57c03ec90b96ef Name": "Inserție de Aramidă", + "6570e0610b57c03ec90b96ef Name": "Aramid insert", "6570e0610b57c03ec90b96ef ShortName": "", "6570e0610b57c03ec90b96ef Description": "", - "6570e479a6560e4ee50c2b02 Name": "Inserție de Aramidă", + "6570e479a6560e4ee50c2b02 Name": "Aramid insert", "6570e479a6560e4ee50c2b02 ShortName": "", "6570e479a6560e4ee50c2b02 Description": "", - "6570e5100b57c03ec90b970a Name": "Inserție de Aramidă", + "6570e5100b57c03ec90b970a Name": "Aramid insert", "6570e5100b57c03ec90b970a ShortName": "", "6570e5100b57c03ec90b970a Description": "", - "6570e5674cc0d2ab1e05edbb Name": "Inserție de Aramidă", + "6570e5674cc0d2ab1e05edbb Name": "Aramid insert", "6570e5674cc0d2ab1e05edbb ShortName": "", "6570e5674cc0d2ab1e05edbb Description": "", - "6570e59b0b57c03ec90b970e Name": "Inserție de Aramidă", + "6570e59b0b57c03ec90b970e Name": "Aramid insert", "6570e59b0b57c03ec90b970e ShortName": "", "6570e59b0b57c03ec90b970e Description": "", - "6570e83223c1f638ef0b0ede Name": "Inserție de Aramidă", + "6570e83223c1f638ef0b0ede Name": "Aramid insert", "6570e83223c1f638ef0b0ede ShortName": "", "6570e83223c1f638ef0b0ede Description": "", - "6570e87c23c1f638ef0b0ee2 Name": "Inserție de Aramidă", + "6570e87c23c1f638ef0b0ee2 Name": "Aramid insert", "6570e87c23c1f638ef0b0ee2 ShortName": "", "6570e87c23c1f638ef0b0ee2 Description": "", - "6570e8a623c1f638ef0b0ee6 Name": "Inserție de Aramidă", + "6570e8a623c1f638ef0b0ee6 Name": "Aramid insert", "6570e8a623c1f638ef0b0ee6 ShortName": "", "6570e8a623c1f638ef0b0ee6 Description": "", - "6570e8e7ab49e964120b4563 Name": "Inserție de Aramidă", + "6570e8e7ab49e964120b4563 Name": "Aramid insert", "6570e8e7ab49e964120b4563 ShortName": "", "6570e8e7ab49e964120b4563 Description": "", - "6570e90b3a5689d85f08db97 Name": "Inserție de Aramidă", + "6570e90b3a5689d85f08db97 Name": "Aramid insert", "6570e90b3a5689d85f08db97 ShortName": "", "6570e90b3a5689d85f08db97 Description": "", - "6570f30b0921c914bf07964c Name": "Inserție de Aramidă", + "6570f30b0921c914bf07964c Name": "Aramid insert", "6570f30b0921c914bf07964c ShortName": "", "6570f30b0921c914bf07964c Description": "", - "6570f35cd67d0309980a7acb Name": "Inserție de Aramidă", + "6570f35cd67d0309980a7acb Name": "Aramid insert", "6570f35cd67d0309980a7acb ShortName": "", "6570f35cd67d0309980a7acb Description": "", - "6570f3890b4ae5847f060dad Name": "Inserție de Aramidă", + "6570f3890b4ae5847f060dad Name": "Aramid insert", "6570f3890b4ae5847f060dad ShortName": "", "6570f3890b4ae5847f060dad Description": "", - "6570f3bb0b4ae5847f060db2 Name": "Inserție de Aramidă", + "6570f3bb0b4ae5847f060db2 Name": "Aramid insert", "6570f3bb0b4ae5847f060db2 ShortName": "", "6570f3bb0b4ae5847f060db2 Description": "", - "6570f6e774d84423df065f21 Name": "Inserție de Aramidă", + "6570f6e774d84423df065f21 Name": "Aramid insert", "6570f6e774d84423df065f21 ShortName": "", "6570f6e774d84423df065f21 Description": "", - "6570f71dd67d0309980a7af8 Name": "Inserție de Aramidă", + "6570f71dd67d0309980a7af8 Name": "Aramid insert", "6570f71dd67d0309980a7af8 ShortName": "", "6570f71dd67d0309980a7af8 Description": "", - "6570f74774d84423df065f25 Name": "Inserție de Aramidă", + "6570f74774d84423df065f25 Name": "Aramid insert", "6570f74774d84423df065f25 ShortName": "", "6570f74774d84423df065f25 Description": "", - "6570f79c4c65ab77a6015121 Name": "Inserție de Aramidă", + "6570f79c4c65ab77a6015121 Name": "Aramid insert", "6570f79c4c65ab77a6015121 ShortName": "", "6570f79c4c65ab77a6015121 Description": "", - "6570fa1f4c65ab77a601512f Name": "Inserție de Aramidă", + "6570fa1f4c65ab77a601512f Name": "Aramid insert", "6570fa1f4c65ab77a601512f ShortName": "", "6570fa1f4c65ab77a601512f Description": "", - "6570fae34c65ab77a6015146 Name": "Inserție de Aramidă", + "6570fae34c65ab77a6015146 Name": "Aramid insert", "6570fae34c65ab77a6015146 ShortName": "", "6570fae34c65ab77a6015146 Description": "", - "6570fb22584a51c23e03251f Name": "Inserție de Aramidă", + "6570fb22584a51c23e03251f Name": "Aramid insert", "6570fb22584a51c23e03251f ShortName": "", "6570fb22584a51c23e03251f Description": "", - "6570fb6ad3eefd23430f8c7c Name": "Inserție de Aramidă", + "6570fb6ad3eefd23430f8c7c Name": "Aramid insert", "6570fb6ad3eefd23430f8c7c ShortName": "", "6570fb6ad3eefd23430f8c7c Description": "", - "6570fb8f4c65ab77a601514d Name": "Inserție de Aramidă", + "6570fb8f4c65ab77a601514d Name": "Aramid insert", "6570fb8f4c65ab77a601514d ShortName": "", "6570fb8f4c65ab77a601514d Description": "", - "6570fbdd74d84423df065f60 Name": "Inserție de Aramidă", + "6570fbdd74d84423df065f60 Name": "Aramid insert", "6570fbdd74d84423df065f60 ShortName": "", "6570fbdd74d84423df065f60 Description": "", - "6570fc41d3eefd23430f8c83 Name": "Inserție de Aramidă", + "6570fc41d3eefd23430f8c83 Name": "Aramid insert", "6570fc41d3eefd23430f8c83 ShortName": "", "6570fc41d3eefd23430f8c83 Description": "", - "657112234269e9a568089eac Name": "Strat de UHMWPE", + "657112234269e9a568089eac Name": "Layer of UHMWPE", "657112234269e9a568089eac ShortName": "", "657112234269e9a568089eac Description": "", - "657112a4818110db4600aa66 Name": "Strat de UHMWPE", + "657112a4818110db4600aa66 Name": "Layer of UHMWPE", "657112a4818110db4600aa66 ShortName": "", "657112a4818110db4600aa66 Description": "", - "657112ce22996eaf110881fb Name": "Strat de UHMWPE", + "657112ce22996eaf110881fb Name": "Layer of UHMWPE", "657112ce22996eaf110881fb ShortName": "", "657112ce22996eaf110881fb Description": "", - "657112fa818110db4600aa6b Name": "Oțel călit", + "657112fa818110db4600aa6b Name": "Armor steel", "657112fa818110db4600aa6b ShortName": "", "657112fa818110db4600aa6b Description": "", - "6571133d22996eaf11088200 Name": "Oțel călit", + "6571133d22996eaf11088200 Name": "Armor steel", "6571133d22996eaf11088200 ShortName": "", "6571133d22996eaf11088200 Description": "", - "6571138e818110db4600aa71 Name": "Oțel călit", + "6571138e818110db4600aa71 Name": "Armor steel", "6571138e818110db4600aa71 ShortName": "", "6571138e818110db4600aa71 Description": "", - "6571199565daf6aa960c9b10 Name": "Oțel călit", + "6571199565daf6aa960c9b10 Name": "Armor steel", "6571199565daf6aa960c9b10 ShortName": "", "6571199565daf6aa960c9b10 Description": "", - "657119d49eb8c145180dbb95 Name": "Oțel călit", + "657119d49eb8c145180dbb95 Name": "Armor steel", "657119d49eb8c145180dbb95 ShortName": "", "657119d49eb8c145180dbb95 Description": "", - "657119fea330b8c9060f7afc Name": "Oțel călit", + "657119fea330b8c9060f7afc Name": "Armor steel", "657119fea330b8c9060f7afc ShortName": "", "657119fea330b8c9060f7afc Description": "", - "65711b07a330b8c9060f7b01 Name": "Fibre de aramidă în straturi", + "65711b07a330b8c9060f7b01 Name": "Layers of aramid fiber", "65711b07a330b8c9060f7b01 ShortName": "", "65711b07a330b8c9060f7b01 Description": "", - "65711b489eb8c145180dbb9d Name": "Fibre de aramidă în straturi", + "65711b489eb8c145180dbb9d Name": "Layers of aramid fiber", "65711b489eb8c145180dbb9d ShortName": "", "65711b489eb8c145180dbb9d Description": "", - "65711b706d197c216005b31c Name": "Fibre de aramidă în straturi", + "65711b706d197c216005b31c Name": "Layers of aramid fiber", "65711b706d197c216005b31c ShortName": "", "65711b706d197c216005b31c Description": "", - "65711b9b65daf6aa960c9b1b Name": "Fibre de aramidă în straturi", + "65711b9b65daf6aa960c9b1b Name": "Layers of aramid fiber", "65711b9b65daf6aa960c9b1b ShortName": "", "65711b9b65daf6aa960c9b1b Description": "", - "65711bc79eb8c145180dbba1 Name": "Fibre de aramidă în straturi", + "65711bc79eb8c145180dbba1 Name": "Layers of aramid fiber", "65711bc79eb8c145180dbba1 ShortName": "", "65711bc79eb8c145180dbba1 Description": "", - "65719f0775149d62ce0a670b Name": "Cască NPP KlASS Tor-2 (Olive Drab)", + "65719f0775149d62ce0a670b Name": "NPP KlASS Tor-2 helmet (Olive Drab)", "65719f0775149d62ce0a670b ShortName": "Tor-2", - "65719f0775149d62ce0a670b Description": "NPP KlASS Tor-2 Este o cască balistică pentru misiune de asalt cu vizor blindat detașabil și sistem integrat pentru montarea echipamentelor adiționale (viziune de noapte, căști, lumini, camere, stroboscop IR, etc).", - "65719f9ef392ad76c50a2ec8 Name": "Vizor blindat NPP KlASS Tor-2", - "65719f9ef392ad76c50a2ec8 ShortName": "Tor-2 VB", - "65719f9ef392ad76c50a2ec8 Description": "Vizor blindat pentru casca blindată NPP KlASS Tor-2, făcută dintr-o sticlă foarte rezistentă.", - "6571b27a6d84a2b8b6007f92 Name": "Inserție de Aramidă", + "65719f0775149d62ce0a670b Description": "NPP KlASS Tor-2 is an assault protective helmet with a removable bullet-resistant visor and an integrated system for installing additional equipment (NVG, headsets, tactical lights, cameras, IR strobe lights, etc.).", + "65719f9ef392ad76c50a2ec8 Name": "NPP KlASS Tor-2 helmet face shield", + "65719f9ef392ad76c50a2ec8 ShortName": "Tor-2 FS", + "65719f9ef392ad76c50a2ec8 Description": "A special visor for the NPP KlASS Tor-2 helmet, made of heavy-duty glass.", + "6571b27a6d84a2b8b6007f92 Name": "Aramid insert", "6571b27a6d84a2b8b6007f92 ShortName": "", "6571b27a6d84a2b8b6007f92 Description": "", - "6571baa74cb80d995d0a1490 Name": "Inserție de Aramidă", + "6571baa74cb80d995d0a1490 Name": "Aramid insert", "6571baa74cb80d995d0a1490 ShortName": "", "6571baa74cb80d995d0a1490 Description": "", - "6571baac6d84a2b8b6007fa3 Name": "Inserție de Aramidă", + "6571baac6d84a2b8b6007fa3 Name": "Aramid insert", "6571baac6d84a2b8b6007fa3 ShortName": "", "6571baac6d84a2b8b6007fa3 Description": "", - "6571bab0f41985531a038091 Name": "Inserție de Aramidă", + "6571bab0f41985531a038091 Name": "Aramid insert", "6571bab0f41985531a038091 ShortName": "", "6571bab0f41985531a038091 Description": "", - "6571babb4076795e5e07383f Name": "Inserție de Aramidă", + "6571babb4076795e5e07383f Name": "Aramid insert", "6571babb4076795e5e07383f ShortName": "", "6571babb4076795e5e07383f Description": "", - "6571babf4cb80d995d0a1494 Name": "Inserție de Aramidă", + "6571babf4cb80d995d0a1494 Name": "Aramid insert", "6571babf4cb80d995d0a1494 ShortName": "", "6571babf4cb80d995d0a1494 Description": "", - "6571bac34076795e5e073843 Name": "Inserție de Aramidă", + "6571bac34076795e5e073843 Name": "Aramid insert", "6571bac34076795e5e073843 ShortName": "", "6571bac34076795e5e073843 Description": "", - "6571bde39837cc51b800c212 Name": "Mască Ghost", + "6571bde39837cc51b800c212 Name": "Ghost half-mask", "6571bde39837cc51b800c212 ShortName": "Ghost", - "6571bde39837cc51b800c212 Description": "Mască pentru nas și gură cu imprimeu de craniu.", + "6571bde39837cc51b800c212 Description": "A half-mask with a skull print.", "6571cad4c8673f00290f5657 Name": "USEC Defender", "6571cad4c8673f00290f5657 ShortName": "", "6571cad4c8673f00290f5657 Description": "", "6571cb0923aa6d72760a7f8f Name": "USEC BOSS Delta", "6571cb0923aa6d72760a7f8f ShortName": "", "6571cb0923aa6d72760a7f8f Description": "", - "6571dbd388ead79fcf091d71 Name": "Inserție de Aramidă", + "6571dbd388ead79fcf091d71 Name": "Aramid insert", "6571dbd388ead79fcf091d71 ShortName": "", "6571dbd388ead79fcf091d71 Description": "", - "6571dbda88ead79fcf091d75 Name": "Inserție de Aramidă", + "6571dbda88ead79fcf091d75 Name": "Aramid insert", "6571dbda88ead79fcf091d75 ShortName": "", "6571dbda88ead79fcf091d75 Description": "", - "6571dbe07c02ae206002502e Name": "Inserție de Aramidă", + "6571dbe07c02ae206002502e Name": "Aramid insert", "6571dbe07c02ae206002502e ShortName": "", "6571dbe07c02ae206002502e Description": "", - "6571dbeaee8ec43d520cf89e Name": "Inserție de Aramidă", + "6571dbeaee8ec43d520cf89e Name": "Aramid insert", "6571dbeaee8ec43d520cf89e ShortName": "", "6571dbeaee8ec43d520cf89e Description": "", - "6571dbef88ead79fcf091d79 Name": "Inserție de Aramidă", + "6571dbef88ead79fcf091d79 Name": "Aramid insert", "6571dbef88ead79fcf091d79 ShortName": "", "6571dbef88ead79fcf091d79 Description": "", - "6572e048371fccfbf909d5d8 Name": "Inserție de Aramidă", + "6572e048371fccfbf909d5d8 Name": "Aramid insert", "6572e048371fccfbf909d5d8 ShortName": "", "6572e048371fccfbf909d5d8 Description": "", - "6572e059371fccfbf909d5dc Name": "Inserție de Aramidă", + "6572e059371fccfbf909d5dc Name": "Aramid insert", "6572e059371fccfbf909d5dc ShortName": "", "6572e059371fccfbf909d5dc Description": "", - "6572e06219b4b511af012f89 Name": "Inserție de Aramidă", + "6572e06219b4b511af012f89 Name": "Aramid insert", "6572e06219b4b511af012f89 ShortName": "", "6572e06219b4b511af012f89 Description": "", - "6572e06819b4b511af012f8d Name": "Inserție de Aramidă", + "6572e06819b4b511af012f8d Name": "Aramid insert", "6572e06819b4b511af012f8d ShortName": "", "6572e06819b4b511af012f8d Description": "", - "6572e5221b5bc1185508c24f Name": "Inserție de Aramidă", + "6572e5221b5bc1185508c24f Name": "Aramid insert", "6572e5221b5bc1185508c24f ShortName": "", "6572e5221b5bc1185508c24f Description": "", - "6572e52f73c0eabb700109a0 Name": "Inserție de Aramidă", + "6572e52f73c0eabb700109a0 Name": "Aramid insert", "6572e52f73c0eabb700109a0 ShortName": "", "6572e52f73c0eabb700109a0 Description": "", - "6572e53c73c0eabb700109a4 Name": "Inserție de Aramidă", + "6572e53c73c0eabb700109a4 Name": "Aramid insert", "6572e53c73c0eabb700109a4 ShortName": "", "6572e53c73c0eabb700109a4 Description": "", - "6572e54873c0eabb700109a8 Name": "Inserție de Aramidă", + "6572e54873c0eabb700109a8 Name": "Aramid insert", "6572e54873c0eabb700109a8 ShortName": "", "6572e54873c0eabb700109a8 Description": "", "6572eafead200ced8e0f051a Name": "BEAR MGS", "6572eafead200ced8e0f051a ShortName": "", "6572eafead200ced8e0f051a Description": "", - "6572eb0e55beba16bc04079f Name": "Inserție de Aramidă", + "6572eb0e55beba16bc04079f Name": "Aramid insert", "6572eb0e55beba16bc04079f ShortName": "", "6572eb0e55beba16bc04079f Description": "", - "6572eb1b04ee6483ef039882 Name": "Inserție de Aramidă", + "6572eb1b04ee6483ef039882 Name": "Aramid insert", "6572eb1b04ee6483ef039882 ShortName": "", "6572eb1b04ee6483ef039882 Description": "", - "6572eb3004ee6483ef039886 Name": "Inserție de Aramidă", + "6572eb3004ee6483ef039886 Name": "Aramid insert", "6572eb3004ee6483ef039886 ShortName": "", "6572eb3004ee6483ef039886 Description": "", - "6572eb3b04ee6483ef03988a Name": "Inserție de Aramidă", + "6572eb3b04ee6483ef03988a Name": "Aramid insert", "6572eb3b04ee6483ef03988a ShortName": "", "6572eb3b04ee6483ef03988a Description": "", - "6572eb865b5eac12f10a03ee Name": "Inserție de Aramidă", + "6572eb865b5eac12f10a03ee Name": "Aramid insert", "6572eb865b5eac12f10a03ee ShortName": "", "6572eb865b5eac12f10a03ee Description": "", - "6572f1ca4c8d903cc60c874e Name": "Inserție de Aramidă", + "6572f1ca4c8d903cc60c874e Name": "Aramid insert", "6572f1ca4c8d903cc60c874e ShortName": "", "6572f1ca4c8d903cc60c874e Description": "", - "6572f1d60103b4a3270332db Name": "Inserție de Aramidă", + "6572f1d60103b4a3270332db Name": "Aramid insert", "6572f1d60103b4a3270332db ShortName": "", "6572f1d60103b4a3270332db Description": "", - "6572f1e10103b4a3270332df Name": "Inserție de Aramidă", + "6572f1e10103b4a3270332df Name": "Aramid insert", "6572f1e10103b4a3270332df ShortName": "", "6572f1e10103b4a3270332df Description": "", - "6572f1edea457732140ce875 Name": "Inserție de Aramidă", + "6572f1edea457732140ce875 Name": "Aramid insert", "6572f1edea457732140ce875 ShortName": "", "6572f1edea457732140ce875 Description": "", - "6572f1f7ea457732140ce879 Name": "Inserție de Aramidă", + "6572f1f7ea457732140ce879 Name": "Aramid insert", "6572f1f7ea457732140ce879 ShortName": "", "6572f1f7ea457732140ce879 Description": "", - "6572fc809a866b80ab07eb59 Name": "Inserție de Aramidă", + "6572fc809a866b80ab07eb59 Name": "Aramid insert", "6572fc809a866b80ab07eb59 ShortName": "", "6572fc809a866b80ab07eb59 Description": "", - "6572fc8c9a866b80ab07eb5d Name": "Inserție de Aramidă", + "6572fc8c9a866b80ab07eb5d Name": "Aramid insert", "6572fc8c9a866b80ab07eb5d ShortName": "", "6572fc8c9a866b80ab07eb5d Description": "", - "6572fc989a866b80ab07eb61 Name": "Inserție de Aramidă", + "6572fc989a866b80ab07eb61 Name": "Aramid insert", "6572fc989a866b80ab07eb61 ShortName": "", "6572fc989a866b80ab07eb61 Description": "", - "6572fca39a866b80ab07eb65 Name": "Inserție de Aramidă", + "6572fca39a866b80ab07eb65 Name": "Aramid insert", "6572fca39a866b80ab07eb65 ShortName": "", "6572fca39a866b80ab07eb65 Description": "", - "65730c0e292ecadbfa09ad49 Name": "Inserție de Aramidă", + "65730c0e292ecadbfa09ad49 Name": "Aramid insert", "65730c0e292ecadbfa09ad49 ShortName": "", "65730c0e292ecadbfa09ad49 Description": "", - "65730c2213a2f660f60bea96 Name": "Inserție de Aramidă", + "65730c2213a2f660f60bea96 Name": "Aramid insert", "65730c2213a2f660f60bea96 ShortName": "", "65730c2213a2f660f60bea96 Description": "", - "65730c2b292ecadbfa09ad50 Name": "Inserție de Aramidă", + "65730c2b292ecadbfa09ad50 Name": "Aramid insert", "65730c2b292ecadbfa09ad50 ShortName": "", "65730c2b292ecadbfa09ad50 Description": "", - "65730c35292ecadbfa09ad54 Name": "Inserție de Aramidă", + "65730c35292ecadbfa09ad54 Name": "Aramid insert", "65730c35292ecadbfa09ad54 ShortName": "", "65730c35292ecadbfa09ad54 Description": "", - "6573101e292ecadbfa09b389 Name": "Inserție de Aramidă", + "6573101e292ecadbfa09b389 Name": "Aramid insert", "6573101e292ecadbfa09b389 ShortName": "", "6573101e292ecadbfa09b389 Description": "", - "6573102b292ecadbfa09b38d Name": "Inserție de Aramidă", + "6573102b292ecadbfa09b38d Name": "Aramid insert", "6573102b292ecadbfa09b38d ShortName": "", "6573102b292ecadbfa09b38d Description": "", - "65731038292ecadbfa09b391 Name": "Inserție de Aramidă", + "65731038292ecadbfa09b391 Name": "Aramid insert", "65731038292ecadbfa09b391 ShortName": "", "65731038292ecadbfa09b391 Description": "", - "65731045f31d5be00e08a75a Name": "Inserție de Aramidă", + "65731045f31d5be00e08a75a Name": "Aramid insert", "65731045f31d5be00e08a75a ShortName": "", "65731045f31d5be00e08a75a Description": "", "657316a92dba425ccc0141a4 Name": "USEC Delta", "657316a92dba425ccc0141a4 ShortName": "", "657316a92dba425ccc0141a4 Description": "", - "65731b46cea9255e2102360a Name": "Inserție de Aramidă", + "65731b46cea9255e2102360a Name": "Aramid insert", "65731b46cea9255e2102360a ShortName": "", "65731b46cea9255e2102360a Description": "", - "65731b4fcea9255e2102360e Name": "Inserție de Aramidă", + "65731b4fcea9255e2102360e Name": "Aramid insert", "65731b4fcea9255e2102360e ShortName": "", "65731b4fcea9255e2102360e Description": "", - "65731b576e709cddd001ec3f Name": "Inserție de Aramidă", + "65731b576e709cddd001ec3f Name": "Aramid insert", "65731b576e709cddd001ec3f ShortName": "", "65731b576e709cddd001ec3f Description": "", - "65731b60ff6dc44a7d068c4a Name": "Inserție de Aramidă", + "65731b60ff6dc44a7d068c4a Name": "Aramid insert", "65731b60ff6dc44a7d068c4a ShortName": "", "65731b60ff6dc44a7d068c4a Description": "", - "65731b666e709cddd001ec43 Name": "Inserție de Aramidă", + "65731b666e709cddd001ec43 Name": "Aramid insert", "65731b666e709cddd001ec43 ShortName": "", "65731b666e709cddd001ec43 Description": "", - "65731b6b6042b0f210020ef6 Name": "Inserție de Aramidă", + "65731b6b6042b0f210020ef6 Name": "Aramid insert", "65731b6b6042b0f210020ef6 ShortName": "", "65731b6b6042b0f210020ef6 Description": "", - "65731b716e709cddd001ec47 Name": "Inserție de Aramidă", + "65731b716e709cddd001ec47 Name": "Aramid insert", "65731b716e709cddd001ec47 ShortName": "", "65731b716e709cddd001ec47 Description": "", - "657322988c1cc6dcd9098b2d Name": "Inserție de Aramidă", + "657322988c1cc6dcd9098b2d Name": "Aramid insert", "657322988c1cc6dcd9098b2d ShortName": "", "657322988c1cc6dcd9098b2d Description": "", - "657322a4cea9255e21023651 Name": "Inserție de Aramidă", + "657322a4cea9255e21023651 Name": "Aramid insert", "657322a4cea9255e21023651 ShortName": "", "657322a4cea9255e21023651 Description": "", - "657322acd9d89ff7ac0d961b Name": "Inserție de Aramidă", + "657322acd9d89ff7ac0d961b Name": "Aramid insert", "657322acd9d89ff7ac0d961b ShortName": "", "657322acd9d89ff7ac0d961b Description": "", - "657322b7d9d89ff7ac0d961f Name": "Inserție de Aramidă", + "657322b7d9d89ff7ac0d961f Name": "Aramid insert", "657322b7d9d89ff7ac0d961f ShortName": "", "657322b7d9d89ff7ac0d961f Description": "", - "65732688d9d89ff7ac0d9c4c Name": "Inserție de Aramidă", + "65732688d9d89ff7ac0d9c4c Name": "Aramid insert", "65732688d9d89ff7ac0d9c4c ShortName": "", "65732688d9d89ff7ac0d9c4c Description": "", - "657326978c1cc6dcd9098b56 Name": "Inserție de Aramidă", + "657326978c1cc6dcd9098b56 Name": "Aramid insert", "657326978c1cc6dcd9098b56 ShortName": "", "657326978c1cc6dcd9098b56 Description": "", - "657326a28c1cc6dcd9098b5a Name": "Inserție de Aramidă", + "657326a28c1cc6dcd9098b5a Name": "Aramid insert", "657326a28c1cc6dcd9098b5a ShortName": "", "657326a28c1cc6dcd9098b5a Description": "", - "657326b08c1cc6dcd9098b5e Name": "Inserție de Aramidă", + "657326b08c1cc6dcd9098b5e Name": "Aramid insert", "657326b08c1cc6dcd9098b5e ShortName": "", "657326b08c1cc6dcd9098b5e Description": "", - "657326bc5d3a3129fb05f36b Name": "Inserție de Aramidă", + "657326bc5d3a3129fb05f36b Name": "Aramid insert", "657326bc5d3a3129fb05f36b ShortName": "", "657326bc5d3a3129fb05f36b Description": "", - "65732de75d3a3129fb05f3dd Name": "Inserție de Aramidă", + "65732de75d3a3129fb05f3dd Name": "Aramid insert", "65732de75d3a3129fb05f3dd ShortName": "", "65732de75d3a3129fb05f3dd Description": "", - "65732df4d0acf75aea06c87b Name": "Inserție de Aramidă", + "65732df4d0acf75aea06c87b Name": "Aramid insert", "65732df4d0acf75aea06c87b ShortName": "", "65732df4d0acf75aea06c87b Description": "", - "65732e05d0acf75aea06c87f Name": "Inserție de Aramidă", + "65732e05d0acf75aea06c87f Name": "Aramid insert", "65732e05d0acf75aea06c87f ShortName": "", "65732e05d0acf75aea06c87f Description": "", - "65732e0f6784ca384b0167ad Name": "Inserție de Aramidă", + "65732e0f6784ca384b0167ad Name": "Aramid insert", "65732e0f6784ca384b0167ad ShortName": "", "65732e0f6784ca384b0167ad Description": "", - "65732e215d3a3129fb05f3e1 Name": "Inserție de Aramidă", + "65732e215d3a3129fb05f3e1 Name": "Aramid insert", "65732e215d3a3129fb05f3e1 ShortName": "", "65732e215d3a3129fb05f3e1 Description": "", - "65732e30dd8739f6440ef383 Name": "Inserție de Aramidă", + "65732e30dd8739f6440ef383 Name": "Aramid insert", "65732e30dd8739f6440ef383 ShortName": "", "65732e30dd8739f6440ef383 Description": "", - "65733312ca0ca984940a2d53 Name": "Inserție de Aramidă", + "65733312ca0ca984940a2d53 Name": "Aramid insert", "65733312ca0ca984940a2d53 ShortName": "", "65733312ca0ca984940a2d53 Description": "", - "657333232cc8dfad2c0a3d97 Name": "Inserție de Aramidă", + "657333232cc8dfad2c0a3d97 Name": "Aramid insert", "657333232cc8dfad2c0a3d97 ShortName": "", "657333232cc8dfad2c0a3d97 Description": "", - "657333302cc8dfad2c0a3d9b Name": "Inserție de Aramidă", + "657333302cc8dfad2c0a3d9b Name": "Aramid insert", "657333302cc8dfad2c0a3d9b ShortName": "", "657333302cc8dfad2c0a3d9b Description": "", - "6573333eca0ca984940a2d57 Name": "Inserție de Aramidă", + "6573333eca0ca984940a2d57 Name": "Aramid insert", "6573333eca0ca984940a2d57 ShortName": "", "6573333eca0ca984940a2d57 Description": "", - "6573334aca0ca984940a2d5b Name": "Inserție de Aramidă", + "6573334aca0ca984940a2d5b Name": "Aramid insert", "6573334aca0ca984940a2d5b ShortName": "", "6573334aca0ca984940a2d5b Description": "", - "65733375b7a8d286530e3dd7 Name": "Inserție de Aramidă", + "65733375b7a8d286530e3dd7 Name": "Aramid insert", "65733375b7a8d286530e3dd7 ShortName": "", "65733375b7a8d286530e3dd7 Description": "", - "6573337f2cc8dfad2c0a3da7 Name": "Inserție de Aramidă", + "6573337f2cc8dfad2c0a3da7 Name": "Aramid insert", "6573337f2cc8dfad2c0a3da7 ShortName": "", "6573337f2cc8dfad2c0a3da7 Description": "", "65749b8fe32c4e3f7907bf42 Name": "Bratva", @@ -11468,592 +11468,577 @@ "65749be133fdc9c0cf06d3c8 Name": "Den", "65749be133fdc9c0cf06d3c8 ShortName": "", "65749be133fdc9c0cf06d3c8 Description": "", - "65749c05e0423b9ebe0c79c7 Name": "Pantaloni Bratva", + "65749c05e0423b9ebe0c79c7 Name": "Bratva pants", "65749c05e0423b9ebe0c79c7 ShortName": "", "65749c05e0423b9ebe0c79c7 Description": "", - "65749c1fe32c4e3f7907bf47 Name": "Pantaloni Bratva 2", + "65749c1fe32c4e3f7907bf47 Name": "Bratva pants 2", "65749c1fe32c4e3f7907bf47 ShortName": "", "65749c1fe32c4e3f7907bf47 Description": "", - "65749cb8e0423b9ebe0c79c9 Name": "Șapcă Gus", + "65749cb8e0423b9ebe0c79c9 Name": "Gus baseball cap", "65749cb8e0423b9ebe0c79c9 ShortName": "Gus", - "65749cb8e0423b9ebe0c79c9 Description": "Șapcă neagră de baseball.", - "65749ccf33fdc9c0cf06d3ca Name": "Șapcă din piele Basmach", + "65749cb8e0423b9ebe0c79c9 Description": "A black baseball cap.", + "65749ccf33fdc9c0cf06d3ca Name": "Basmach leather cap", "65749ccf33fdc9c0cf06d3ca ShortName": "Basmach", - "65749ccf33fdc9c0cf06d3ca Description": "Șapcă de bandit adevărat din piele neagră.", + "65749ccf33fdc9c0cf06d3ca Description": "A real bandit's attribute - the black leather baseball cap.", "6574aa9a1b144de18c0fba45 Name": "Nikolaev", "6574aa9a1b144de18c0fba45 ShortName": "Nikolaev", "6574aa9a1b144de18c0fba45 Description": "Nikolaev", "6574aabee0423b9ebe0c79cf Name": "Blackburn", "6574aabee0423b9ebe0c79cf ShortName": "Blackburn", "6574aabee0423b9ebe0c79cf Description": "Blackburn", - "6575a6ca8778e96ded05a802 Name": "Hard diskul omului de știință", + "6575a6ca8778e96ded05a802 Name": "TerraGroup scientist's hard drive", "6575a6ca8778e96ded05a802 ShortName": "HDD", - "6575a6ca8778e96ded05a802 Description": "Dispozitiv de stocare cu acces aleator(dispozitiv de stocare a informației), bazat pe principiul înregistrării magnetice. Conține date compromițătoare despre TerraGroup.", - "6575bc88c6700bd6b40e8a57 Name": "Inserție de Aramidă", + "6575a6ca8778e96ded05a802 Description": "A random access storage device (information storage device), based on the magnetic recording principle. Contains various compromising data on TerraGroup.", + "6575bc88c6700bd6b40e8a57 Name": "Aramid insert", "6575bc88c6700bd6b40e8a57 ShortName": "", "6575bc88c6700bd6b40e8a57 Description": "", - "6575bca0dc9932aed601c5d7 Name": "Inserție de Aramidă", + "6575bca0dc9932aed601c5d7 Name": "Aramid insert", "6575bca0dc9932aed601c5d7 ShortName": "", "6575bca0dc9932aed601c5d7 Description": "", - "6575c2adefc786cd9101a5d9 Name": "Inserție de Aramidă", + "6575c2adefc786cd9101a5d9 Name": "Aramid insert", "6575c2adefc786cd9101a5d9 ShortName": "", "6575c2adefc786cd9101a5d9 Description": "", - "6575c2be52b7f8c76a05ee25 Name": "Inserție de Aramidă", + "6575c2be52b7f8c76a05ee25 Name": "Aramid insert", "6575c2be52b7f8c76a05ee25 ShortName": "", "6575c2be52b7f8c76a05ee25 Description": "", - "6575c2cd52b7f8c76a05ee29 Name": "Inserție de Aramidă", + "6575c2cd52b7f8c76a05ee29 Name": "Aramid insert", "6575c2cd52b7f8c76a05ee29 ShortName": "", "6575c2cd52b7f8c76a05ee29 Description": "", - "6575c2d852b7f8c76a05ee2d Name": "Inserție de Aramidă", + "6575c2d852b7f8c76a05ee2d Name": "Aramid insert", "6575c2d852b7f8c76a05ee2d ShortName": "", "6575c2d852b7f8c76a05ee2d Description": "", - "6575c2e4efc786cd9101a5dd Name": "Inserție de Aramidă", + "6575c2e4efc786cd9101a5dd Name": "Aramid insert", "6575c2e4efc786cd9101a5dd ShortName": "", "6575c2e4efc786cd9101a5dd Description": "", - "6575c2f7efc786cd9101a5e1 Name": "Inserție de Aramidă", + "6575c2f7efc786cd9101a5e1 Name": "Aramid insert", "6575c2f7efc786cd9101a5e1 ShortName": "", "6575c2f7efc786cd9101a5e1 Description": "", - "6575c30352b7f8c76a05ee31 Name": "Inserție de Aramidă", + "6575c30352b7f8c76a05ee31 Name": "Aramid insert", "6575c30352b7f8c76a05ee31 ShortName": "", "6575c30352b7f8c76a05ee31 Description": "", - "6575c31b52b7f8c76a05ee35 Name": "Inserție de Aramidă", + "6575c31b52b7f8c76a05ee35 Name": "Aramid insert", "6575c31b52b7f8c76a05ee35 ShortName": "", "6575c31b52b7f8c76a05ee35 Description": "", - "6575c326c6700bd6b40e8a80 Name": "Inserție de Aramidă", + "6575c326c6700bd6b40e8a80 Name": "Aramid insert", "6575c326c6700bd6b40e8a80 ShortName": "", "6575c326c6700bd6b40e8a80 Description": "", - "6575c342efc786cd9101a5e5 Name": "Inserție de Aramidă", + "6575c342efc786cd9101a5e5 Name": "Aramid insert", "6575c342efc786cd9101a5e5 ShortName": "", "6575c342efc786cd9101a5e5 Description": "", - "6575c34bc6700bd6b40e8a84 Name": "Inserție de Aramidă", + "6575c34bc6700bd6b40e8a84 Name": "Aramid insert", "6575c34bc6700bd6b40e8a84 ShortName": "", "6575c34bc6700bd6b40e8a84 Description": "", - "6575c35bc6700bd6b40e8a88 Name": "Inserție de Aramidă", + "6575c35bc6700bd6b40e8a88 Name": "Aramid insert", "6575c35bc6700bd6b40e8a88 ShortName": "", "6575c35bc6700bd6b40e8a88 Description": "", - "6575c366c6700bd6b40e8a8c Name": "Inserție de Aramidă", + "6575c366c6700bd6b40e8a8c Name": "Aramid insert", "6575c366c6700bd6b40e8a8c ShortName": "", "6575c366c6700bd6b40e8a8c Description": "", - "6575c373dc9932aed601c5ec Name": "Inserție de Aramidă", + "6575c373dc9932aed601c5ec Name": "Aramid insert", "6575c373dc9932aed601c5ec ShortName": "", "6575c373dc9932aed601c5ec Description": "", - "6575c385dc9932aed601c5f0 Name": "Inserție de Aramidă", + "6575c385dc9932aed601c5f0 Name": "Aramid insert", "6575c385dc9932aed601c5f0 ShortName": "", "6575c385dc9932aed601c5f0 Description": "", - "6575c390efc786cd9101a5e9 Name": "Inserție de Aramidă", + "6575c390efc786cd9101a5e9 Name": "Aramid insert", "6575c390efc786cd9101a5e9 ShortName": "", "6575c390efc786cd9101a5e9 Description": "", - "6575c3b3dc9932aed601c5f4 Name": "Inserție de Aramidă", + "6575c3b3dc9932aed601c5f4 Name": "Aramid insert", "6575c3b3dc9932aed601c5f4 ShortName": "", "6575c3b3dc9932aed601c5f4 Description": "", - "6575c3beefc786cd9101a5ed Name": "Inserție de Aramidă", + "6575c3beefc786cd9101a5ed Name": "Aramid insert", "6575c3beefc786cd9101a5ed ShortName": "", "6575c3beefc786cd9101a5ed Description": "", - "6575c3cdc6700bd6b40e8a90 Name": "Inserție de Aramidă", + "6575c3cdc6700bd6b40e8a90 Name": "Aramid insert", "6575c3cdc6700bd6b40e8a90 ShortName": "", "6575c3cdc6700bd6b40e8a90 Description": "", - "6575c3dfdc9932aed601c5f8 Name": "Inserție de Aramidă", + "6575c3dfdc9932aed601c5f8 Name": "Aramid insert", "6575c3dfdc9932aed601c5f8 ShortName": "", "6575c3dfdc9932aed601c5f8 Description": "", - "6575c3ec52b7f8c76a05ee39 Name": "Inserție de Aramidă", + "6575c3ec52b7f8c76a05ee39 Name": "Aramid insert", "6575c3ec52b7f8c76a05ee39 ShortName": "", "6575c3ec52b7f8c76a05ee39 Description": "", - "6575c3fd52b7f8c76a05ee3d Name": "Inserție de Aramidă", + "6575c3fd52b7f8c76a05ee3d Name": "Aramid insert", "6575c3fd52b7f8c76a05ee3d ShortName": "", "6575c3fd52b7f8c76a05ee3d Description": "", - "6575c40c52b7f8c76a05ee41 Name": "Inserție de Aramidă", + "6575c40c52b7f8c76a05ee41 Name": "Aramid insert", "6575c40c52b7f8c76a05ee41 ShortName": "", "6575c40c52b7f8c76a05ee41 Description": "", - "6575ce3716c2762fba0057fd Name": "Inserție de Aramidă", + "6575ce3716c2762fba0057fd Name": "Aramid insert", "6575ce3716c2762fba0057fd ShortName": "", "6575ce3716c2762fba0057fd Description": "", - "6575ce45dc9932aed601c616 Name": "Inserție de Aramidă", + "6575ce45dc9932aed601c616 Name": "Aramid insert", "6575ce45dc9932aed601c616 ShortName": "", "6575ce45dc9932aed601c616 Description": "", - "6575ce5016c2762fba005802 Name": "Inserție de Aramidă", + "6575ce5016c2762fba005802 Name": "Aramid insert", "6575ce5016c2762fba005802 ShortName": "", "6575ce5016c2762fba005802 Description": "", - "6575ce5befc786cd9101a671 Name": "Inserție de Aramidă", + "6575ce5befc786cd9101a671 Name": "Aramid insert", "6575ce5befc786cd9101a671 ShortName": "", "6575ce5befc786cd9101a671 Description": "", - "6575ce6f16c2762fba005806 Name": "Inserție de Aramidă", + "6575ce6f16c2762fba005806 Name": "Aramid insert", "6575ce6f16c2762fba005806 ShortName": "", "6575ce6f16c2762fba005806 Description": "", - "6575ce8bdc9932aed601c61e Name": "Inserție de Aramidă", + "6575ce8bdc9932aed601c61e Name": "Aramid insert", "6575ce8bdc9932aed601c61e ShortName": "", "6575ce8bdc9932aed601c61e Description": "", - "6575ce9db15fef3dd4051628 Name": "Inserție de Aramidă", + "6575ce9db15fef3dd4051628 Name": "Aramid insert", "6575ce9db15fef3dd4051628 ShortName": "", "6575ce9db15fef3dd4051628 Description": "", - "6575cea8b15fef3dd405162c Name": "Inserție de Aramidă", + "6575cea8b15fef3dd405162c Name": "Aramid insert", "6575cea8b15fef3dd405162c ShortName": "", "6575cea8b15fef3dd405162c Description": "", - "6575d561b15fef3dd4051670 Name": "Inserție de Aramidă", + "6575d561b15fef3dd4051670 Name": "Aramid insert", "6575d561b15fef3dd4051670 ShortName": "", "6575d561b15fef3dd4051670 Description": "", - "6575d56b16c2762fba005818 Name": "Inserție de Aramidă", + "6575d56b16c2762fba005818 Name": "Aramid insert", "6575d56b16c2762fba005818 ShortName": "", "6575d56b16c2762fba005818 Description": "", - "6575d57a16c2762fba00581c Name": "Inserție de Aramidă", + "6575d57a16c2762fba00581c Name": "Aramid insert", "6575d57a16c2762fba00581c ShortName": "", "6575d57a16c2762fba00581c Description": "", - "6575d589b15fef3dd4051674 Name": "Inserție de Aramidă", + "6575d589b15fef3dd4051674 Name": "Aramid insert", "6575d589b15fef3dd4051674 ShortName": "", "6575d589b15fef3dd4051674 Description": "", - "6575d598b15fef3dd4051678 Name": "Inserție de Aramidă", + "6575d598b15fef3dd4051678 Name": "Aramid insert", "6575d598b15fef3dd4051678 ShortName": "", "6575d598b15fef3dd4051678 Description": "", - "6575d5a616c2762fba005820 Name": "Inserție de Aramidă", + "6575d5a616c2762fba005820 Name": "Aramid insert", "6575d5a616c2762fba005820 ShortName": "", "6575d5a616c2762fba005820 Description": "", - "6575d5b316c2762fba005824 Name": "Inserție de Aramidă", + "6575d5b316c2762fba005824 Name": "Aramid insert", "6575d5b316c2762fba005824 ShortName": "", "6575d5b316c2762fba005824 Description": "", - "6575d5bd16c2762fba005828 Name": "Inserție de Aramidă", + "6575d5bd16c2762fba005828 Name": "Aramid insert", "6575d5bd16c2762fba005828 ShortName": "", "6575d5bd16c2762fba005828 Description": "", - "6575d9a79e27f4a85e08112d Name": "Inserție de Aramidă", + "6575d9a79e27f4a85e08112d Name": "Aramid insert", "6575d9a79e27f4a85e08112d ShortName": "", "6575d9a79e27f4a85e08112d Description": "", - "6575d9b8945bf78edd04c427 Name": "Inserție de Aramidă", + "6575d9b8945bf78edd04c427 Name": "Aramid insert", "6575d9b8945bf78edd04c427 ShortName": "", "6575d9b8945bf78edd04c427 Description": "", - "6575d9c40546f8b1de093dee Name": "Inserție de Aramidă", + "6575d9c40546f8b1de093dee Name": "Aramid insert", "6575d9c40546f8b1de093dee ShortName": "", "6575d9c40546f8b1de093dee Description": "", - "6575d9cf0546f8b1de093df2 Name": "Inserție de Aramidă", + "6575d9cf0546f8b1de093df2 Name": "Aramid insert", "6575d9cf0546f8b1de093df2 ShortName": "", "6575d9cf0546f8b1de093df2 Description": "", - "6575d9d8945bf78edd04c42b Name": "Inserție de Aramidă", + "6575d9d8945bf78edd04c42b Name": "Aramid insert", "6575d9d8945bf78edd04c42b ShortName": "", "6575d9d8945bf78edd04c42b Description": "", - "6575d9e7945bf78edd04c42f Name": "Inserție de Aramidă", + "6575d9e7945bf78edd04c42f Name": "Aramid insert", "6575d9e7945bf78edd04c42f ShortName": "", "6575d9e7945bf78edd04c42f Description": "", - "6575d9f816c2762fba00588d Name": "Inserție de Aramidă", + "6575d9f816c2762fba00588d Name": "Aramid insert", "6575d9f816c2762fba00588d ShortName": "", "6575d9f816c2762fba00588d Description": "", - "6575da07945bf78edd04c433 Name": "Inserție de Aramidă", + "6575da07945bf78edd04c433 Name": "Aramid insert", "6575da07945bf78edd04c433 ShortName": "", "6575da07945bf78edd04c433 Description": "", - "6575da159e27f4a85e081131 Name": "Inserție de Aramidă", + "6575da159e27f4a85e081131 Name": "Aramid insert", "6575da159e27f4a85e081131 ShortName": "", "6575da159e27f4a85e081131 Description": "", - "6575dd3e9e27f4a85e081142 Name": "Inserție de Aramidă", + "6575dd3e9e27f4a85e081142 Name": "Aramid insert", "6575dd3e9e27f4a85e081142 ShortName": "", "6575dd3e9e27f4a85e081142 Description": "", - "6575dd519e27f4a85e081146 Name": "Inserție de Aramidă", + "6575dd519e27f4a85e081146 Name": "Aramid insert", "6575dd519e27f4a85e081146 ShortName": "", "6575dd519e27f4a85e081146 Description": "", - "6575dd64945bf78edd04c438 Name": "Inserție de Aramidă", + "6575dd64945bf78edd04c438 Name": "Aramid insert", "6575dd64945bf78edd04c438 ShortName": "", "6575dd64945bf78edd04c438 Description": "", - "6575dd6e9d3a0ddf660b9047 Name": "Inserție de Aramidă", + "6575dd6e9d3a0ddf660b9047 Name": "Aramid insert", "6575dd6e9d3a0ddf660b9047 ShortName": "", "6575dd6e9d3a0ddf660b9047 Description": "", - "6575dd769d3a0ddf660b904b Name": "Inserție de Aramidă", + "6575dd769d3a0ddf660b904b Name": "Aramid insert", "6575dd769d3a0ddf660b904b ShortName": "", "6575dd769d3a0ddf660b904b Description": "", - "6575dd800546f8b1de093df6 Name": "Inserție de Aramidă", + "6575dd800546f8b1de093df6 Name": "Aramid insert", "6575dd800546f8b1de093df6 ShortName": "", "6575dd800546f8b1de093df6 Description": "", - "6575dd94945bf78edd04c43c Name": "Inserție de Aramidă", + "6575dd94945bf78edd04c43c Name": "Aramid insert", "6575dd94945bf78edd04c43c ShortName": "", "6575dd94945bf78edd04c43c Description": "", - "6575e71760703324250610c3 Name": "Inserție de Aramidă", + "6575e71760703324250610c3 Name": "Aramid insert", "6575e71760703324250610c3 ShortName": "", "6575e71760703324250610c3 Description": "", - "6575e72660703324250610c7 Name": "Inserție de Aramidă", + "6575e72660703324250610c7 Name": "Aramid insert", "6575e72660703324250610c7 ShortName": "", "6575e72660703324250610c7 Description": "", - "6575ea3060703324250610da Name": "Inserție de Aramidă", + "6575ea3060703324250610da Name": "Aramid insert", "6575ea3060703324250610da ShortName": "", "6575ea3060703324250610da Description": "", - "6575ea4cf6a13a7b7100adc4 Name": "Inserție de Aramidă", + "6575ea4cf6a13a7b7100adc4 Name": "Aramid insert", "6575ea4cf6a13a7b7100adc4 ShortName": "", "6575ea4cf6a13a7b7100adc4 Description": "", - "6575ea5cf6a13a7b7100adc8 Name": "Inserție de Aramidă", + "6575ea5cf6a13a7b7100adc8 Name": "Aramid insert", "6575ea5cf6a13a7b7100adc8 ShortName": "", "6575ea5cf6a13a7b7100adc8 Description": "", - "6575ea6760703324250610de Name": "Inserție de Aramidă", + "6575ea6760703324250610de Name": "Aramid insert", "6575ea6760703324250610de ShortName": "", "6575ea6760703324250610de Description": "", - "6575ea719c7cad336508e418 Name": "Inserție de Aramidă", + "6575ea719c7cad336508e418 Name": "Aramid insert", "6575ea719c7cad336508e418 ShortName": "", "6575ea719c7cad336508e418 Description": "", - "6575ea7c60703324250610e2 Name": "Inserție de Aramidă", + "6575ea7c60703324250610e2 Name": "Aramid insert", "6575ea7c60703324250610e2 ShortName": "", "6575ea7c60703324250610e2 Description": "", - "6575ef599c7cad336508e453 Name": "Inserție de Aramidă", + "6575ef599c7cad336508e453 Name": "Aramid insert", "6575ef599c7cad336508e453 ShortName": "", "6575ef599c7cad336508e453 Description": "", - "6575ef6bf6a13a7b7100b093 Name": "Inserție de Aramidă", + "6575ef6bf6a13a7b7100b093 Name": "Aramid insert", "6575ef6bf6a13a7b7100b093 ShortName": "", "6575ef6bf6a13a7b7100b093 Description": "", - "6575ef78da698a4e980677eb Name": "Inserție de Aramidă", + "6575ef78da698a4e980677eb Name": "Aramid insert", "6575ef78da698a4e980677eb ShortName": "", "6575ef78da698a4e980677eb Description": "", - "6575ef7f9c7cad336508e457 Name": "Inserție de Aramidă", + "6575ef7f9c7cad336508e457 Name": "Aramid insert", "6575ef7f9c7cad336508e457 ShortName": "", "6575ef7f9c7cad336508e457 Description": "", - "6575f24ff6a13a7b7100b09e Name": "Inserție de Aramidă", + "6575f24ff6a13a7b7100b09e Name": "Aramid insert", "6575f24ff6a13a7b7100b09e ShortName": "", "6575f24ff6a13a7b7100b09e Description": "", - "6575f25ada698a4e98067836 Name": "Inserție de Aramidă", + "6575f25ada698a4e98067836 Name": "Aramid insert", "6575f25ada698a4e98067836 ShortName": "", "6575f25ada698a4e98067836 Description": "", - "6575f2649cfdfe416f0399b8 Name": "Inserție de Aramidă", + "6575f2649cfdfe416f0399b8 Name": "Aramid insert", "6575f2649cfdfe416f0399b8 ShortName": "", "6575f2649cfdfe416f0399b8 Description": "", - "6575f26d9c7cad336508e480 Name": "Inserție de Aramidă", + "6575f26d9c7cad336508e480 Name": "Aramid insert", "6575f26d9c7cad336508e480 ShortName": "", "6575f26d9c7cad336508e480 Description": "", - "6575f5cbf6a13a7b7100b0bf Name": "Inserție de Aramidă", + "6575f5cbf6a13a7b7100b0bf Name": "Aramid insert", "6575f5cbf6a13a7b7100b0bf ShortName": "", "6575f5cbf6a13a7b7100b0bf Description": "", - "6575f5e1da698a4e98067869 Name": "Inserție de Aramidă", + "6575f5e1da698a4e98067869 Name": "Aramid insert", "6575f5e1da698a4e98067869 ShortName": "", "6575f5e1da698a4e98067869 Description": "", - "65764275d8537eb26a0355e9 Name": "Inserție de Aramidă", + "65764275d8537eb26a0355e9 Name": "Aramid insert", "65764275d8537eb26a0355e9 ShortName": "", "65764275d8537eb26a0355e9 Description": "", - "657642b0e6d5dd75f40688a5 Name": "Inserție de Aramidă", + "657642b0e6d5dd75f40688a5 Name": "Aramid insert", "657642b0e6d5dd75f40688a5 ShortName": "", "657642b0e6d5dd75f40688a5 Description": "", - "6576434820cc24d17102b148 Name": "Inserție de Aramidă", + "6576434820cc24d17102b148 Name": "Aramid insert", "6576434820cc24d17102b148 ShortName": "", "6576434820cc24d17102b148 Description": "", - "657643732bc38ef78e076477 Name": "Inserție de Aramidă", + "657643732bc38ef78e076477 Name": "Aramid insert", "657643732bc38ef78e076477 ShortName": "", "657643732bc38ef78e076477 Description": "", - "657643a220cc24d17102b14c Name": "Inserție de Aramidă", + "657643a220cc24d17102b14c Name": "Aramid insert", "657643a220cc24d17102b14c ShortName": "", "657643a220cc24d17102b14c Description": "", - "65764a4cd8537eb26a0355ee Name": "Inserție de aramidă și plăcuțe de titan de 6.5 mm", + "65764a4cd8537eb26a0355ee Name": "6.5 mm aramid insert and titanium plates", "65764a4cd8537eb26a0355ee ShortName": "", "65764a4cd8537eb26a0355ee Description": "", - "65764bc22bc38ef78e076485 Name": "Inserție de aramidă și plăcuțe de titan de 1.25 mm", + "65764bc22bc38ef78e076485 Name": "1.25 mm aramid insert and titanium plates", "65764bc22bc38ef78e076485 ShortName": "", "65764bc22bc38ef78e076485 Description": "", - "65764c39526e320fbe035777 Name": "Inserție de Aramidă", + "65764c39526e320fbe035777 Name": "Aramid insert", "65764c39526e320fbe035777 ShortName": "", "65764c39526e320fbe035777 Description": "", - "65764c6b526e320fbe03577b Name": "Inserție de aramidă și plăcuțe de titan de 6.5 mm", + "65764c6b526e320fbe03577b Name": "6.5 mm aramid insert and titanium plates", "65764c6b526e320fbe03577b ShortName": "", "65764c6b526e320fbe03577b Description": "", - "65764e1e2bc38ef78e076489 Name": "Inserție de aramidă și plăcuțe de titan de 6.5 mm", + "65764e1e2bc38ef78e076489 Name": "6.5 mm aramid insert and titanium plates", "65764e1e2bc38ef78e076489 ShortName": "", "65764e1e2bc38ef78e076489 Description": "", - "65764fae2bc38ef78e07648d Name": "Inserție de aramidă și plăcuțe de titan de 1.25 mm", + "65764fae2bc38ef78e07648d Name": "1.25 mm aramid insert and titanium plates", "65764fae2bc38ef78e07648d ShortName": "", "65764fae2bc38ef78e07648d Description": "", - "6576500f526e320fbe03577f Name": "Inserție de aramidă și plăcuțe de titan de 1.25 mm", + "6576500f526e320fbe03577f Name": "1.25 mm aramid insert and titanium plates", "6576500f526e320fbe03577f ShortName": "", "6576500f526e320fbe03577f Description": "", - "6576504b526e320fbe035783 Name": "Inserție de aramidă și plăcuțe de titan de 6.5 mm", + "6576504b526e320fbe035783 Name": "6.5 mm aramid insert and titanium plates", "6576504b526e320fbe035783 ShortName": "", "6576504b526e320fbe035783 Description": "", "6576f4708ca9c4381d16cd9d Name": "9x21mm 7N42 \"Zubilo\"", "6576f4708ca9c4381d16cd9d ShortName": "7N42", - "6576f4708ca9c4381d16cd9d Description": "Cartușul 9x21mm PP (GRAU Index - 7N42) cu glonț cu penetrare sporită conceput pentru lupta cu personal ce poartă blindaj individual. Capul miezului prezintă o margine crestată. Acest concept garantează ruperea fibrelor blindajului de corp și sporirea semnificativă a efectului penetrant al glonțului. Miezul iese prin jachetă sporind de asemenea capacitatea penetrantă. Capul glonțului este vopsit negru.", + "6576f4708ca9c4381d16cd9d Description": "The 9x21mm PP cartridge (GRAU Index - 7N42) with increased penetration bullet is designed to engage armored personnel. The head part of the core is made with a cut edge. This design ensures the tearing of the threads of the fabric base of the body armor and significantly increases the penetration of the bullet. The core protrudes from the jacket, which increases its penetration capability. The bullet head is colored black.", "6576f93989f0062e741ba952 Name": "9x21mm 7U4", "6576f93989f0062e741ba952 ShortName": "7U4", - "6576f93989f0062e741ba952 Description": "Cartușul 9x21mm 7U4 (GRAU index - 7U4) are viteză redusă pentru trageri fără flamă și cu zgomot redus. Glonțul are miezul cu lamă crestată și greutate sporită.", + "6576f93989f0062e741ba952 Description": "The 9x21mm 7U4 round (GRAU index - 7U4) with reduced bullet velocity, designed for flameless and low-noise firing. The cartridge features a cut edge on the front end of the core, formed by two flat edges, and increased weight.", "6576f96220d53a5b8f3e395e Name": "9x39mm FMJ", "6576f96220d53a5b8f3e395e ShortName": "FMJ", - "6576f96220d53a5b8f3e395e Description": "Cartușul 9x39mm TCW FMJ este destinat uzului civil. Cartușul poate fi folosit în orice mediu climatic pe orice vreme, indiferent de anotimp.", - "657857faeff4c850222dff1b Name": "Kalashnikov PKTM 7.62x54R mitralieră de tanc", + "6576f96220d53a5b8f3e395e Description": "The 9x39mm TCW FMJ cartridge is intended for firing from civilian weapons. The cartridge does not lose its qualities when used in various climatic and meteorological conditions, regardless of the time of year.", + "657857faeff4c850222dff1b Name": "Kalashnikov PKTM 7.62x54R Modernized Tank Machine Gun", "657857faeff4c850222dff1b ShortName": "PKTM", - "657857faeff4c850222dff1b Description": "Kalashnikov PKTM 7.62x54R mitralieră de tanc.", - "65785979bec02a3fe82c181e Name": "PKTM 7.62x54R curea 250-cartușe", + "657857faeff4c850222dff1b Description": "Kalashnikov PKTM 7.62x54R Modernized Tank Machine Gun.", + "65785979bec02a3fe82c181e Name": "PKTM 7.62x54R 250-round belt", "65785979bec02a3fe82c181e ShortName": "PKTM", - "65785979bec02a3fe82c181e Description": "PKTM 7.62x54R curea 250-cartușe.", - "6579846c1ec1943afb14c15a Name": "9x21mm 7U4 pachet muniție (30 buc)", + "65785979bec02a3fe82c181e Description": "PKTM 7.62x54R 250-round belt.", + "6579846c1ec1943afb14c15a Name": "9x21mm 7U4 ammo pack (30 pcs)", "6579846c1ec1943afb14c15a ShortName": "7U4", - "6579846c1ec1943afb14c15a Description": "Cutie cu muniție 9x21mm 7U4, 30 bucăți.", - "6579847c5a0e5879d12f2873 Name": "9x21mm 7N42 pachet muniție (30 buc)", + "6579846c1ec1943afb14c15a Description": "A box of 9x21mm 7U4 cartridges, 30 pieces.", + "6579847c5a0e5879d12f2873 Name": "9x21mm 7N42 ammo pack (30 pcs)", "6579847c5a0e5879d12f2873 ShortName": "7N42", - "6579847c5a0e5879d12f2873 Description": "Cutie cu muniție 9x21mm 7N42, 30 bucăți.", - "657984a50fbff513dd435765 Name": "9x39mm FMJ cutie muniție (20 buc)", + "6579847c5a0e5879d12f2873 Description": "A box of 9x21mm 7N42 cartridges, 30 pieces.", + "657984a50fbff513dd435765 Name": "9x39mm FMJ ammo pack (20 pcs)", "657984a50fbff513dd435765 ShortName": "FMJ", - "657984a50fbff513dd435765 Description": "Cutie cu muniție 9x39mm FMJ, 20 bucăți.", - "657acb2ac900be5902191ac9 Name": "Registru Cadastral", - "657acb2ac900be5902191ac9 ShortName": "Cadastru", - "657acb2ac900be5902191ac9 Description": "Registrul cadastral care conține informații despre proprietățile companiei TerraGroup pe teritoriul Tarkov.", - "657b22485f444d6dff0c6c2f Name": "Placă balistică 6B23-2 (Anterior)", - "657b22485f444d6dff0c6c2f ShortName": "6b23-2 Ante", - "657b22485f444d6dff0c6c2f Description": "Placă balistică din oțel călit pentru buzunarul anterior a toracelui ale vestelor purtătoare de plăci blindate 6b23-1, 6b23-2, Korund și Bagariy.", - "657b2797c3dbcb01d60c35ea Name": "Placă balistică Korund-VM (Anterior)", - "657b2797c3dbcb01d60c35ea ShortName": "Korund-VM Anterior", - "657b2797c3dbcb01d60c35ea Description": "Placă balistică din oțel călit pentru buzunarul anterior a toracelui ale vestelor purtătoare de plăci blindate 6b23-1, 6b23-2, Korund și Bagariy.", - "657b28d25f444d6dff0c6c77 Name": "Placă balistică Korund-VM-K (Anterior)", - "657b28d25f444d6dff0c6c77 ShortName": "Korund-VM-K Anterior", - "657b28d25f444d6dff0c6c77 Description": "Placă balistică din ceramică pentru buzunarul anterior a toracelui ale vestelor purtătoare de plăci blindate 6b23-1, 6b23-2, Korund și Bagariy.", - "657ba096e57570b7f80a17fb Name": "Fibre de aramidă în straturi", + "657984a50fbff513dd435765 Description": "A box of 9x39mm FMJ cartridges, 20 pieces.", + "657acb2ac900be5902191ac9 Name": "Cadastral registry records", + "657acb2ac900be5902191ac9 ShortName": "Records", + "657acb2ac900be5902191ac9 Description": "Cadastral registry records containing data on TerraGroup real estate in Tarkov.", + "657b22485f444d6dff0c6c2f Name": "6B23-2 ballistic plate (Back)", + "657b22485f444d6dff0c6c2f ShortName": "6B23-2 Back", + "657b22485f444d6dff0c6c2f Description": "An armored steel plate for torso rear pouch of 6b23-1, 6b23-2, Korund and Bagariy bulletproof vests.", + "657b2797c3dbcb01d60c35ea Name": "Korund-VM ballistic plate (Back)", + "657b2797c3dbcb01d60c35ea ShortName": "Korund-VM Back", + "657b2797c3dbcb01d60c35ea Description": "An armored steel plate for torso rear pouch of 6b23-1, 6b23-2, Korund and Bagariy bulletproof vests.", + "657b28d25f444d6dff0c6c77 Name": "Korund-VM-K ballistic plate (Back)", + "657b28d25f444d6dff0c6c77 ShortName": "Korund-VM-K Back", + "657b28d25f444d6dff0c6c77 Description": "A ceramic plate for torso rear pouch of 6b23-1, 6b23-2, Korund and Bagariy bulletproof vests.", + "657ba096e57570b7f80a17fb Name": "Layers of aramid fiber", "657ba096e57570b7f80a17fb ShortName": "", "657ba096e57570b7f80a17fb Description": "", - "657ba145e57570b7f80a17ff Name": "Fibre de aramidă în straturi", + "657ba145e57570b7f80a17ff Name": "Layers of aramid fiber", "657ba145e57570b7f80a17ff ShortName": "", "657ba145e57570b7f80a17ff Description": "", - "657ba18923918923cb0df568 Name": "Fibre de aramidă în straturi", + "657ba18923918923cb0df568 Name": "Layers of aramid fiber", "657ba18923918923cb0df568 ShortName": "", "657ba18923918923cb0df568 Description": "", - "657ba2eef58ba5a625010798 Name": "Strat de plastic", + "657ba2eef58ba5a625010798 Name": "Layer of plastic", "657ba2eef58ba5a625010798 ShortName": "", "657ba2eef58ba5a625010798 Description": "", - "657ba34b9ba22f103e08139b Name": "Strat de plastic", + "657ba34b9ba22f103e08139b Name": "Layer of plastic", "657ba34b9ba22f103e08139b ShortName": "", "657ba34b9ba22f103e08139b Description": "", - "657ba50c23918923cb0df56c Name": "Fibre de aramidă în straturi", + "657ba50c23918923cb0df56c Name": "Layers of aramid fiber", "657ba50c23918923cb0df56c ShortName": "", "657ba50c23918923cb0df56c Description": "", - "657ba5439ba22f103e08139f Name": "Fibre de aramidă în straturi", + "657ba5439ba22f103e08139f Name": "Layers of aramid fiber", "657ba5439ba22f103e08139f ShortName": "", "657ba5439ba22f103e08139f Description": "", - "657ba57af58ba5a62501079e Name": "Fibre de aramidă în straturi", + "657ba57af58ba5a62501079e Name": "Layers of aramid fiber", "657ba57af58ba5a62501079e ShortName": "", "657ba57af58ba5a62501079e Description": "", - "657ba6c3c6f689d3a205b857 Name": "Fibre de aramidă în straturi", + "657ba6c3c6f689d3a205b857 Name": "Layers of aramid fiber", "657ba6c3c6f689d3a205b857 ShortName": "", "657ba6c3c6f689d3a205b857 Description": "", - "657ba737b7e9ca9a02045bf6 Name": "Fibre de aramidă în straturi", + "657ba737b7e9ca9a02045bf6 Name": "Layers of aramid fiber", "657ba737b7e9ca9a02045bf6 ShortName": "", "657ba737b7e9ca9a02045bf6 Description": "", - "657ba75e23918923cb0df573 Name": "Fibre de aramidă în straturi", + "657ba75e23918923cb0df573 Name": "Layers of aramid fiber", "657ba75e23918923cb0df573 ShortName": "", "657ba75e23918923cb0df573 Description": "", - "657ba85ecfcf63c951052da7 Name": "Fibre de aramidă în straturi", + "657ba85ecfcf63c951052da7 Name": "Layers of aramid fiber", "657ba85ecfcf63c951052da7 ShortName": "", "657ba85ecfcf63c951052da7 Description": "", - "657ba8bccfcf63c951052dab Name": "Fibre de aramidă în straturi", + "657ba8bccfcf63c951052dab Name": "Layers of aramid fiber", "657ba8bccfcf63c951052dab ShortName": "", "657ba8bccfcf63c951052dab Description": "", - "657ba8eab7e9ca9a02045bfd Name": "Fibre de aramidă în straturi", + "657ba8eab7e9ca9a02045bfd Name": "Layers of aramid fiber", "657ba8eab7e9ca9a02045bfd ShortName": "", "657ba8eab7e9ca9a02045bfd Description": "", - "657baaf0b7e9ca9a02045c02 Name": "Fibre de aramidă în straturi", + "657baaf0b7e9ca9a02045c02 Name": "Layers of aramid fiber", "657baaf0b7e9ca9a02045c02 ShortName": "", "657baaf0b7e9ca9a02045c02 Description": "", - "657bab6ec6f689d3a205b85f Name": "Fibre de aramidă în straturi", + "657bab6ec6f689d3a205b85f Name": "Layers of aramid fiber", "657bab6ec6f689d3a205b85f ShortName": "", "657bab6ec6f689d3a205b85f Description": "", - "657babc6f58ba5a6250107a2 Name": "Fibre de aramidă în straturi", + "657babc6f58ba5a6250107a2 Name": "Layers of aramid fiber", "657babc6f58ba5a6250107a2 ShortName": "", "657babc6f58ba5a6250107a2 Description": "", - "657bae18b7e9ca9a02045c0a Name": "Fibre de aramidă în straturi", + "657bae18b7e9ca9a02045c0a Name": "Layers of aramid fiber", "657bae18b7e9ca9a02045c0a ShortName": "", "657bae18b7e9ca9a02045c0a Description": "", - "657baeaacfcf63c951052db3 Name": "Fibre de aramidă în straturi", + "657baeaacfcf63c951052db3 Name": "Layers of aramid fiber", "657baeaacfcf63c951052db3 ShortName": "", "657baeaacfcf63c951052db3 Description": "", - "657baecbc6f689d3a205b863 Name": "Fibre de aramidă în straturi", + "657baecbc6f689d3a205b863 Name": "Layers of aramid fiber", "657baecbc6f689d3a205b863 ShortName": "", "657baecbc6f689d3a205b863 Description": "", - "657bb70486c7f9ef7a009936 Name": "Oțel călit", + "657bb70486c7f9ef7a009936 Name": "Armor steel", "657bb70486c7f9ef7a009936 ShortName": "", "657bb70486c7f9ef7a009936 Description": "", - "657bb79ba1c61ee0c303631a Name": "Oțel călit", + "657bb79ba1c61ee0c303631a Name": "Armor steel", "657bb79ba1c61ee0c303631a ShortName": "", "657bb79ba1c61ee0c303631a Description": "", - "657bb7d7b30eca9763051176 Name": "Oțel călit", + "657bb7d7b30eca9763051176 Name": "Armor steel", "657bb7d7b30eca9763051176 ShortName": "", "657bb7d7b30eca9763051176 Description": "", - "657bb92fa1c61ee0c303631f Name": "Fibre de aramidă în straturi", + "657bb92fa1c61ee0c303631f Name": "Layers of aramid fiber", "657bb92fa1c61ee0c303631f ShortName": "", "657bb92fa1c61ee0c303631f Description": "", - "657bb99db30eca976305117f Name": "Fibre de aramidă în straturi", + "657bb99db30eca976305117f Name": "Layers of aramid fiber", "657bb99db30eca976305117f ShortName": "", "657bb99db30eca976305117f Description": "", - "657bbad7a1c61ee0c3036323 Name": "Hibrid din materiale compozite", + "657bbad7a1c61ee0c3036323 Name": "Hybrid composite materials", "657bbad7a1c61ee0c3036323 ShortName": "", "657bbad7a1c61ee0c3036323 Description": "", - "657bbb31b30eca9763051183 Name": "Hibrid din materiale compozite", + "657bbb31b30eca9763051183 Name": "Hybrid composite materials", "657bbb31b30eca9763051183 ShortName": "", "657bbb31b30eca9763051183 Description": "", - "657bbcc9a1c61ee0c3036327 Name": "Hibrid din materiale compozite", + "657bbcc9a1c61ee0c3036327 Name": "Hybrid composite materials", "657bbcc9a1c61ee0c3036327 ShortName": "", "657bbcc9a1c61ee0c3036327 Description": "", - "657bbcffbbd440df880b2dd5 Name": "Hibrid din materiale compozite", + "657bbcffbbd440df880b2dd5 Name": "Hybrid composite materials", "657bbcffbbd440df880b2dd5 ShortName": "", "657bbcffbbd440df880b2dd5 Description": "", - "657bbe73a1c61ee0c303632b Name": "Hibrid din materiale compozite", + "657bbe73a1c61ee0c303632b Name": "Hybrid composite materials", "657bbe73a1c61ee0c303632b ShortName": "", "657bbe73a1c61ee0c303632b Description": "", - "657bbed0aab96fccee08be96 Name": "Hibrid din materiale compozite", + "657bbed0aab96fccee08be96 Name": "Hybrid composite materials", "657bbed0aab96fccee08be96 ShortName": "", "657bbed0aab96fccee08be96 Description": "", - "657bbefeb30eca9763051189 Name": "Hibrid din materiale compozite", + "657bbefeb30eca9763051189 Name": "Hybrid composite materials", "657bbefeb30eca9763051189 ShortName": "", "657bbefeb30eca9763051189 Description": "", - "657bc06daab96fccee08be9b Name": "Oțel călit", + "657bc06daab96fccee08be9b Name": "Armor steel", "657bc06daab96fccee08be9b ShortName": "", "657bc06daab96fccee08be9b Description": "", - "657bc0d8a1c61ee0c303632f Name": "Oțel călit", + "657bc0d8a1c61ee0c303632f Name": "Armor steel", "657bc0d8a1c61ee0c303632f ShortName": "", "657bc0d8a1c61ee0c303632f Description": "", - "657bc107aab96fccee08be9f Name": "Oțel călit", + "657bc107aab96fccee08be9f Name": "Armor steel", "657bc107aab96fccee08be9f ShortName": "", "657bc107aab96fccee08be9f Description": "", - "657bc285aab96fccee08bea3 Name": "Aliaj de Titan", + "657bc285aab96fccee08bea3 Name": "Titanium alloy", "657bc285aab96fccee08bea3 ShortName": "", "657bc285aab96fccee08bea3 Description": "", - "657bc2c5a1c61ee0c3036333 Name": "Aliaj de Titan", + "657bc2c5a1c61ee0c3036333 Name": "Titanium alloy", "657bc2c5a1c61ee0c3036333 ShortName": "", "657bc2c5a1c61ee0c3036333 Description": "", - "657bc2e7b30eca976305118d Name": "Aliaj de Titan", + "657bc2e7b30eca976305118d Name": "Titanium alloy", "657bc2e7b30eca976305118d ShortName": "", "657bc2e7b30eca976305118d Description": "", "657c2ed3cf82c352301b830e Name": "", "657c2ed3cf82c352301b830e ShortName": "", "657c2ed3cf82c352301b830e Description": "", - "657f8a8d7db258e5600fe33d Name": "Hibrid din materiale compozite", + "657f8a8d7db258e5600fe33d Name": "Hybrid composite materials", "657f8a8d7db258e5600fe33d ShortName": "", "657f8a8d7db258e5600fe33d Description": "", - "657f8b05f4c82973640b2348 Name": "Hibrid din materiale compozite", + "657f8b05f4c82973640b2348 Name": "Hybrid composite materials", "657f8b05f4c82973640b2348 ShortName": "", "657f8b05f4c82973640b2348 Description": "", - "657f8b43f92cd718b70154fb Name": "Hibrid din materiale compozite", + "657f8b43f92cd718b70154fb Name": "Hybrid composite materials", "657f8b43f92cd718b70154fb ShortName": "", "657f8b43f92cd718b70154fb Description": "", - "657f8b94f92cd718b70154ff Name": "Hibrid din materiale compozite", + "657f8b94f92cd718b70154ff Name": "Hybrid composite materials", "657f8b94f92cd718b70154ff ShortName": "", "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "USEC Defender", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "USEC BOSS Delta", - "657f8e9824d2053bb360b51d ShortName": "USEC BOSS Delta", - "657f8e9824d2053bb360b51d Description": "USEC BOSS Delta", - "657f8ec5f4c82973640b234c Name": "Hibrid din materiale compozite", + "657f8e9824d2053bb360b51d ShortName": "", + "657f8e9824d2053bb360b51d Description": "Tactical shirt", + "657f8ec5f4c82973640b234c Name": "Hybrid composite materials", "657f8ec5f4c82973640b234c ShortName": "", "657f8ec5f4c82973640b234c Description": "", - "657f8f10f4c82973640b2350 Name": "Hibrid din materiale compozite", + "657f8f10f4c82973640b2350 Name": "Hybrid composite materials", "657f8f10f4c82973640b2350 ShortName": "", "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "BEAR URON", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "BEAR OPS MGS", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", - "657f925dada5fadd1f07a57a Name": "Hibrid din materiale compozite", + "657f90e5a9176671262fe34e Description": "Tactical jacket", + "657f925dada5fadd1f07a57a Name": "Hybrid composite materials", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", - "657f92acada5fadd1f07a57e Name": "Hibrid din materiale compozite", + "657f92acada5fadd1f07a57e Name": "Hybrid composite materials", "657f92acada5fadd1f07a57e ShortName": "", "657f92acada5fadd1f07a57e Description": "", - "657f92e7f4c82973640b2354 Name": "Hibrid din materiale compozite", + "657f92e7f4c82973640b2354 Name": "Hybrid composite materials", "657f92e7f4c82973640b2354 ShortName": "", "657f92e7f4c82973640b2354 Description": "", - "657f95bff92cd718b701550c Name": "Hibrid din materiale compozite", + "657f95bff92cd718b701550c Name": "Hybrid composite materials", "657f95bff92cd718b701550c ShortName": "", "657f95bff92cd718b701550c Description": "", - "657f9605f4c82973640b2358 Name": "Hibrid din materiale compozite", + "657f9605f4c82973640b2358 Name": "Hybrid composite materials", "657f9605f4c82973640b2358 ShortName": "", "657f9605f4c82973640b2358 Description": "", - "657f9897f4c82973640b235e Name": "Hibrid din materiale compozite", + "657f9897f4c82973640b235e Name": "Hybrid composite materials", "657f9897f4c82973640b235e ShortName": "", "657f9897f4c82973640b235e Description": "", - "657f98fbada5fadd1f07a585 Name": "Hibrid din materiale compozite", + "657f98fbada5fadd1f07a585 Name": "Hybrid composite materials", "657f98fbada5fadd1f07a585 ShortName": "", "657f98fbada5fadd1f07a585 Description": "", - "657f9a55c6679fefb3051e19 Name": "Hibrid din materiale compozite", + "657f9a55c6679fefb3051e19 Name": "Hybrid composite materials", "657f9a55c6679fefb3051e19 ShortName": "", "657f9a55c6679fefb3051e19 Description": "", - "657f9a94ada5fadd1f07a589 Name": "Hibrid din materiale compozite", + "657f9a94ada5fadd1f07a589 Name": "Hybrid composite materials", "657f9a94ada5fadd1f07a589 ShortName": "", "657f9a94ada5fadd1f07a589 Description": "", - "657f9c78ada5fadd1f07a58d Name": "Hibrid din materiale compozite", + "657f9c78ada5fadd1f07a58d Name": "Hybrid composite materials", "657f9c78ada5fadd1f07a58d ShortName": "", "657f9c78ada5fadd1f07a58d Description": "", - "657f9cb587e11c61f70bfaca Name": "Hibrid din materiale compozite", + "657f9cb587e11c61f70bfaca Name": "Hybrid composite materials", "657f9cb587e11c61f70bfaca ShortName": "", "657f9cb587e11c61f70bfaca Description": "", - "657f9eb7e9433140ad0baf86 Name": "Oțel călit", + "657f9eb7e9433140ad0baf86 Name": "Armor steel", "657f9eb7e9433140ad0baf86 ShortName": "", "657f9eb7e9433140ad0baf86 Description": "", - "657f9ef6c6679fefb3051e1f Name": "Oțel călit", + "657f9ef6c6679fefb3051e1f Name": "Armor steel", "657f9ef6c6679fefb3051e1f ShortName": "", "657f9ef6c6679fefb3051e1f Description": "", - "657fa009d4caf976440afe3a Name": "Hibrid din materiale compozite", + "657fa009d4caf976440afe3a Name": "Hybrid composite materials", "657fa009d4caf976440afe3a ShortName": "", "657fa009d4caf976440afe3a Description": "", - "657fa04ac6679fefb3051e24 Name": "Hibrid din materiale compozite", + "657fa04ac6679fefb3051e24 Name": "Hybrid composite materials", "657fa04ac6679fefb3051e24 ShortName": "", "657fa04ac6679fefb3051e24 Description": "", - "657fa07387e11c61f70bface Name": "Hibrid din materiale compozite", + "657fa07387e11c61f70bface Name": "Hybrid composite materials", "657fa07387e11c61f70bface ShortName": "", "657fa07387e11c61f70bface Description": "", - "657fa0fcd4caf976440afe3e Name": "Hibrid din materiale compozite", + "657fa0fcd4caf976440afe3e Name": "Hybrid composite materials", "657fa0fcd4caf976440afe3e ShortName": "", "657fa0fcd4caf976440afe3e Description": "", - "657fa168e9433140ad0baf8e Name": "Hibrid din materiale compozite", + "657fa168e9433140ad0baf8e Name": "Hybrid composite materials", "657fa168e9433140ad0baf8e ShortName": "", "657fa168e9433140ad0baf8e Description": "", - "657fa186d4caf976440afe42 Name": "Hibrid din materiale compozite", + "657fa186d4caf976440afe42 Name": "Hybrid composite materials", "657fa186d4caf976440afe42 ShortName": "", "657fa186d4caf976440afe42 Description": "", - "65815f0e647e3d7246384e14 Name": "Pastramă Tarker", + "65815f0e647e3d7246384e14 Name": "Pack of Tarker dried meat", "65815f0e647e3d7246384e14 ShortName": "Tarker", - "65815f0e647e3d7246384e14 Description": "Pastramă afumată de vită în pachet vidat. Mmmmm.", - "658188edf026a90c1708c827 Name": "Vizor integral pentru casca PȘ-97 DJETA", - "658188edf026a90c1708c827 ShortName": "PȘ-97 V", - "658188edf026a90c1708c827 Description": "Vizor rezistent pentru casca de intervenție PȘ-97.", - "65818e4e566d2de69901b1b1 Name": "Vizor integral pentru casca ȘPM", - "65818e4e566d2de69901b1b1 ShortName": "ȘPM Viz", - "65818e4e566d2de69901b1b1 Description": "Vizor rezistent la căldură pentru casca de pompier ȘPM care protejează fața purtătorului de foc și căldură.", - "6581998038c79576a2569e11 Name": "Cheie casă de marcat Unity Credit Bank", - "6581998038c79576a2569e11 ShortName": "UCB bani", - "6581998038c79576a2569e11 Description": "Cheie de la casele de marcat din sucursala Unity Credit Bank.", - "658199972dc4e60f6d556a2f Name": "Cheie camera de serviciu din parcarea subterană", - "658199972dc4e60f6d556a2f ShortName": "Serviciu", - "658199972dc4e60f6d556a2f Description": "Cheie de la camera de serviciu din parcarea subterană din centrul orașului.", - "658199aa38c79576a2569e13 Name": "TerraGroup cheie birou laboranți", - "658199aa38c79576a2569e13 ShortName": "Birou 4", - "658199aa38c79576a2569e13 Description": "Cheia de la biroul laboranților din clădirea principală TerraGroup din centrul orașului.", - "6582bd252b50c61c565828e2 Name": "Sticlă de vin Le Jean", - "6582bd252b50c61c565828e2 ShortName": "Vin", - "6582bd252b50c61c565828e2 Description": "Sticlă de vin Le Jean dintr-o colecție franțuzească rară.", - "6582dbe43a2e5248357dbe9a Name": "Cheie sală ”Negocieri”", - "6582dbe43a2e5248357dbe9a ShortName": "Negocieri", - "6582dbe43a2e5248357dbe9a Description": "Cheia de la una din sălile de ședință ale unui birou din oraș.", - "6582dbf0b8d7830efc45016f Name": "Cheie sală relaxare", + "65815f0e647e3d7246384e14 Description": "A vacuum pack with slices of beef jerky. Yum yum.", + "658188edf026a90c1708c827 Name": "PSh-97 DJETA helmet built-in face shield", + "658188edf026a90c1708c827 ShortName": "PSh-97 FS", + "658188edf026a90c1708c827 Description": "A scratch-proof face shield for the PSh-97 riot helmet.", + "65818e4e566d2de69901b1b1 Name": "ShPM firefighter helmet built-in face shield", + "65818e4e566d2de69901b1b1 ShortName": "ShPM FS", + "65818e4e566d2de69901b1b1 Description": "A built-in heatproof face shield for the ShPM firefighter helmet, designed to protect the user's face from fire and heat.", + "6581998038c79576a2569e11 Name": "Unity Credit Bank cash register key", + "6581998038c79576a2569e11 ShortName": "UC reg.", + "6581998038c79576a2569e11 Description": "A key to the cash register inside the city center Unity Credit bank branch.", + "658199972dc4e60f6d556a2f Name": "Underground parking utility room key", + "658199972dc4e60f6d556a2f ShortName": "Utility", + "658199972dc4e60f6d556a2f Description": "A key to the utility room at the underground parking in the city center.", + "658199aa38c79576a2569e13 Name": "TerraGroup science office key", + "658199aa38c79576a2569e13 ShortName": "Science", + "658199aa38c79576a2569e13 Description": "A key to the science office inside the TerraGroup main building in the city center.", + "6582bd252b50c61c565828e2 Name": "Bottle of Le Jean wine", + "6582bd252b50c61c565828e2 ShortName": "Wine", + "6582bd252b50c61c565828e2 Description": "A bottle of rare French collector soft wine Le Jean.", + "6582dbe43a2e5248357dbe9a Name": "\"Negotiation\" room key", + "6582dbe43a2e5248357dbe9a ShortName": "Negotiations", + "6582dbe43a2e5248357dbe9a Description": "A key to the room for important meetings inside one of the city offices.", + "6582dbf0b8d7830efc45016f Name": "Relaxation room key", "6582dbf0b8d7830efc45016f ShortName": "Relax", - "6582dbf0b8d7830efc45016f Description": "Cheia de la una din sălile de relaxare ale unui birou din oraș.", - "6582dc4b6ba9e979af6b79f4 Name": "Cheia paznicului de la intrarea în academia MAI", - "6582dc4b6ba9e979af6b79f4 ShortName": "MAI", - "6582dc4b6ba9e979af6b79f4 Description": "Cheia de la cabina pazei de la intrarea în academia MAI (Ministerului Afacerilor Interne).", - "6582dc5740562727a654ebb1 Name": "Cheie birou agenție imobiliară", - "6582dc5740562727a654ebb1 ShortName": "AG IMO", - "6582dc5740562727a654ebb1 Description": "Cheia de la un birou din agenția mobiliară din oraș.", - "6582e6bb0c3b9823fe6d1840 Name": "Cadavru Scav", - "6582e6bb0c3b9823fe6d1840 ShortName": "Cadavru Scav", - "6582e6bb0c3b9823fe6d1840 Description": "Cadavru Scav", - "6582e6c6edf14c4c6023adf2 Name": "Cadavru Laborant", - "6582e6c6edf14c4c6023adf2 ShortName": "Cadavru Laborant", - "6582e6c6edf14c4c6023adf2 Description": "Cadavru Laborant", - "6582e6d7b14c3f72eb071420 Name": "Cadavru PMC", - "6582e6d7b14c3f72eb071420 ShortName": "Cadavru PMC", - "6582e6d7b14c3f72eb071420 Description": "Cadavru PMC", - "658420d8085fea07e674cdb6 Name": "Civil decedat", + "6582dbf0b8d7830efc45016f Description": "A key to the relaxation room inside one of the city offices.", + "6582dc4b6ba9e979af6b79f4 Name": "MVD academy entrance hall guard room key", + "6582dc4b6ba9e979af6b79f4 ShortName": "MVD", + "6582dc4b6ba9e979af6b79f4 Description": "A key to the guard room at the entrance hall inside the city MVD (Ministry of the Interior) academy.", + "6582dc5740562727a654ebb1 Name": "Real estate agency office room key", + "6582dc5740562727a654ebb1 ShortName": "REA", + "6582dc5740562727a654ebb1 Description": "A key to the office inside the city real estate agency. ", + "6582e6bb0c3b9823fe6d1840 Name": "Scav body", + "6582e6bb0c3b9823fe6d1840 ShortName": "Scav body", + "6582e6bb0c3b9823fe6d1840 Description": "Scav body", + "6582e6c6edf14c4c6023adf2 Name": "Lab technician body", + "6582e6c6edf14c4c6023adf2 ShortName": "Lab technician body", + "6582e6c6edf14c4c6023adf2 Description": "Lab technician body", + "6582e6d7b14c3f72eb071420 Name": "PMC body", + "6582e6d7b14c3f72eb071420 ShortName": "PMC body", + "6582e6d7b14c3f72eb071420 Description": "PMC body", + "658420d8085fea07e674cdb6 Name": "Dead civilian", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", - " V-ex_light": "Drum spre Baza Militară - Ex Auto", + " V-ex_light": "Road to Military Base V-Ex", " Voip/DisabledForOffline": "VOIP este indisponibil în modul offline", " kg": "Kg", "#": "#", @@ -12085,9 +12070,9 @@ "4:3 - Not wide": "4:3 - Fullscreen", "4x supersampling": "4x supersampling", "5070Kills": "Jucători de nivel 51-71 eliminați", - "65bd1875c443e7fffb006e83": "Grad 1", - "65bd187e578fa4a9f503f003": "Grad 2", - "65bd1882b7378d56ab0817c3": "Grad 3", + "65bd1875c443e7fffb006e83": "Tier 1", + "65bd187e578fa4a9f503f003": "Tier 2", + "65bd1882b7378d56ab0817c3": "Tier 3", "7099Kills": "Jucători de nivel 71-99 eliminați", "ELITE Level": "Nivel ELITĂ", "A LOT": "MULT", @@ -12098,12 +12083,10 @@ "ACTIVE TASKS": "MISIUNI ACTIVE", "ADD NOTE": "ADAUGĂ NOTIȚĂ", "ADD/EDIT CONTAINER TAG": "ADĂUGARE/MODIFICARE ETICHETĂ CUTIE", - "ADDTOFAVORITES": "Afișează pe profil", + "ADDTOFAVORITES": "Display in profile", "AI amount": "Număr AI", "AI difficulty": "Dificultate AI", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "Penetrare", - "AMMO PROJECTILE COUNT": "Număr proiectile", "ARMOR CLASS": "CLASĂ PROTECTIE", "ARMOR POINTS": "PUNCTE BLINDAJ", "ARMOR TYPE": "TIP BLINDAJ", @@ -12120,33 +12103,32 @@ "AcceptScreen/ServerSettingsButton": "Setări Raid", "Account is blocked until": "Contul este blocat până la", "Achiev.": "Realizări", - "Achievements": "REALIZĂRI", - "Achievements/NewAchievementReceived": "Realizare nou obținută", - "Achievements/Tab/AchievementDescription": "Descrierea realizării", - "Achievements/Tab/AllPlayersPercent": "% din toți jucătorii", - "Achievements/Tab/CommonRarity": "Banală", - "Achievements/Tab/HiddenAchievements": "Realizări secrete", - "Achievements/Tab/HiddenAchievementsLeft": "Realizări secrete rămase: {0}", - "Achievements/Tab/LegendaryRarity": "Legendară", - "Achievements/Tab/NotReceivedYet": "Nerealizat", - "Achievements/Tab/Progress": "{0} din {1} reușite obținute ({2}%)", - "Achievements/Tab/RareRarity": "Rară", - "Achievements/Tab/UnlockDate": "Data reușitei", - "Achievements/Tab/YourAchievements": "Reușitele tale", - "Achievements/Tooltip/Conditions": "Obiective", - "Achievements/Tooltip/Task rewards": "Recompense", + "Achievements": "Realizări", + "Achievements/NewAchievementReceived": "New achievement earned", + "Achievements/Tab/AchievementDescription": "Achievement description", + "Achievements/Tab/AllPlayersPercent": "% of all players", + "Achievements/Tab/CommonRarity": "Common", + "Achievements/Tab/HiddenAchievements": "Hidden achievements", + "Achievements/Tab/HiddenAchievementsLeft": "Hidden achievements remaining: {0}", + "Achievements/Tab/LegendaryRarity": "Legendary", + "Achievements/Tab/NotReceivedYet": "Not earned yet", + "Achievements/Tab/Progress": "{0} out of {1} achievements earned ({2}%)", + "Achievements/Tab/RareRarity": "Rare", + "Achievements/Tab/UnlockDate": "Collection date", + "Achievements/Tab/YourAchievements": "Your achievements", + "Achievements/Tooltip/Conditions": "Objectives", + "Achievements/Tooltip/Task rewards": "Rewards", "Acquire map to review infiltration areas and exfiltration points.": "Achiziționați o harta pentru a verifica zonele de infiltrare si extracție.", "Adaprive sharpen:": "Adaptive sharpen:", "AddTOWISHLIST": "Adaugă la dorite", "AddUserToDialog": "{0} a intrat în chat.", "Adm Basement": "Subsol Admin", - "Administration Gate": "Poarta Principală", - "AdvancedModding": "Modificări avansate", + "Administration Gate": "Poartă Admin", + "AdvancedModding": "Modificare avansată", "AdvancedModdingDescription": "Utilizarea uneltei universale face modificările mai rapide și afectează mai puțin mobilitatea armei.", "AheadOfTimeEnding": "TIMP FINALIZARE", "Aim": "Tir", "AimDrills": "Exerciții tir", - "AimDrillsLevelingUpDescription": "Abilitatea de Tir crește cu fiecare inamic lovit în timp ce ochești.", "AimMaster": "Maistru Tir", "AimMasterDescription": "Măiestria tirului reduce timpul de ochire și balansul țevii imediat după ochire.", "AimMasterElite": "Crește viteza de ochire cu [{0:0%}]", @@ -12156,7 +12138,7 @@ "AirFilteringUnit": "APARAT FILTRARE AER", "AirplaneDelayMessage": "Așteaptă sosirea! Spațiul aerian este congestionat", "Alert": "Alertă", - "All": "Tot", + "All": "Totul", "All needed parts must be uninstalled and located in inventory.": "Toate părțile necesare trebuie demontate și stocate în inventarul tău.", "All offers": "Toate ofertele", "All types": "Toate tipurile", @@ -12164,8 +12146,8 @@ "AllGearAndLootLost": "Tot echipamentul (găsit sau adus) a fost pierdut.", "Almost empty": "Aproape gol", "Almost full": "Aproape plin", - "Alpinist": "Coborâre pe Stâncă", - "Alpinist_light": "Trecătoare Montană", + "Alpinist": "Cliff Descent", + "Alpinist_light": "Mountain Pass", "Always show interface elements": "Arată întotdeauna elementele interfeței", "Ammo": "Muniție", "Ammo ({0}) is not compatible. Need: {1}": "{0} muniție incompatibilă cu această armă. Este necesară muniția {1}.", @@ -12180,7 +12162,7 @@ "Antidote": "Antidot", "Applies": "Cauzează", "Apply all": "Aplică tot", - "ApplyMagPreset": "Încărcare din șablon", + "ApplyMagPreset": "Load from preset", "Approx.": "Aprox.", "Aquire specific single use keycard to proceed to infiltration": "Obține articolul necesar pentru a începe detașarea", "Are you sure you want to buy selected items for {0}?": "Sunteți siguri că doriți să cumpărați articolele alese pentru {0}?", @@ -12190,277 +12172,256 @@ "Are you sure you want to delete this build?": "Ești sigur că vrei să ștergi acest șablon?", "Are you sure you want to destroy": "Ești sigur că vrei să distrugi", "Are you sure you want to destroy {0}?": "Ești sigur că vrei să distrugi {0}?", - "Are you sure you want to discard your changes?": "Ai schimbări nesalvate. Ești sigur că vrei să renunți la ele?", - "Are you sure you want to insure {0} items?": "Ești sigur că vrei să asiguri articolele alese?", + "Are you sure you want to discard your changes?": "Aveți schimbări nesalvate. Sunteți sigur că doriți să renunțați la ele?", + "Are you sure you want to insure {0} items?": "Ești sigur că vrei să îți asiguri articolele alese?", "Are you sure you want to report {0}?": "Ești sigur că vrei să raportezi jucătorul {0}?", - "Arena welcome screen description": "Bun venit în Arenă!\n\nAcesta este locul în care caracterul tău, un operator al unei companii militare private (PMC), va lupta împotriva alto jucători pentru glorie și bani.\n\nDatorită haosului cauzat de conflict, în orașul Tarkov, regiunea Norvinsk, nu mai există lege și ordine. Acesta e locul în care observatorii cu mulți bani au decis să organizeze adevărate bătălii în care operatorii PMC se luptă între ei până la ultimul supraviețuitor, sau până când echipa indeplinește obiectivele stabilite de Stăpâni.\n\nDaca nu ai deja Escape From Tarkov, poți cumpăra jocul și să transferi tot progresul din Arenă acolo.\nDaca ai deja Escape From Tarkov, tot progresul obținut în Arena (experiență și abilități) va fi transferat caracterului tau din EFT și viceversa, progresul din EFT este transferat la Arena.", - "Arena/CustomGame/Lobby/cancel invite to friends": "Anulează cererea de prietenie", - "Arena/CustomGame/Lobby/cancel invite to group": "Anulează invitația la grup", - "Arena/CustomGame/Lobby/invite to friends": "Cerere de prietenie", - "Arena/CustomGame/Lobby/invite to group": "Invită în grup", - "Arena/CustomGame/Lobby/kick": "Elimină", - "Arena/CustomGame/Lobby/move to team": "Mută în echipă", - "Arena/CustomGame/Lobby/offensive nickname": "Raportează un nume ofensiv", - "Arena/CustomGame/Lobby/set owner": "Transferă conducerea", - "Arena/CustomGame/popups/AttemptsCountLeft:": "Încercări rămase:", - "Arena/CustomGames/Create/Maps": "Locaţii", - "Arena/CustomGames/Create/Modes": "Moduri", - "Arena/CustomGames/Create/SubModes": "Submoduri", - "Arena/CustomGames/Create/TournamentMode": "Mod Turneu", - "Arena/CustomGames/Create/TournamentSettings": "Setări Turneu", - "Arena/CustomGames/Creation/TitleScreen": "Setări Cameră", - "Arena/CustomGames/GamesList": "Listă Camere", - "Arena/CustomGames/Guests": "Fără rol", - "Arena/CustomGames/Lobby/AdditionalSettings": "Setări adiționale", - "Arena/CustomGames/Lobby/Game": "Joc", + "Arena welcome screen description": "Welcome to Arena!\n\nThis is where your character, an operator of a private military company (PMC), will battle other fighters for glory and cash. \n\nDue to the chaos of the conflict, in the city of Tarkov, Norvinsk region, law and order have taken a back seat. This is the place where rich observers have chosen to organize battles where PMCs will fight each other to the last survivor or work as a team to complete a certain objective - which, of course, they will be set by the Masters. \n\nIf you don't own Escape From Tarkov yet, you can purchase the game and transfer all your progress from the Arena there. \nIf you already own Escape From Tarkov, all progress gained in the Arena (experience and skills) will also count for your character in EFT and vice versa - progress in EFT counts for Arena.", + "Arena/CustomGame/Lobby/cancel invite to friends": "Cancel friends list invite", + "Arena/CustomGame/Lobby/cancel invite to group": "Cancel group invite", + "Arena/CustomGame/Lobby/invite to friends": "Invite to friends list", + "Arena/CustomGame/Lobby/invite to group": "Invite to group", + "Arena/CustomGame/Lobby/kick": "Kick", + "Arena/CustomGame/Lobby/move to team": "Move to team", + "Arena/CustomGame/Lobby/offensive nickname": "Report offensive nickname", + "Arena/CustomGame/Lobby/set owner": "Transfer ownership", + "Arena/CustomGame/popups/AttemptsCountLeft:": "Attempts left:", + "Arena/CustomGames/Create/Maps": "Locations", + "Arena/CustomGames/Create/Modes": "Modes", + "Arena/CustomGames/Create/SubModes": "Submodes", + "Arena/CustomGames/Create/TournamentMode": "Tournament mode", + "Arena/CustomGames/Create/TournamentSettings": "Tournament settings", + "Arena/CustomGames/Creation/TitleScreen": "Room settings", + "Arena/CustomGames/GamesList": "Room list", + "Arena/CustomGames/Guests": "Unassigned", + "Arena/CustomGames/Lobby/AdditionalSettings": "Additional settings", + "Arena/CustomGames/Lobby/Game": "Game", "Arena/CustomGames/Lobby/ServerSettings": "Server", - "Arena/CustomGames/Lobby/Take": "Acceptă", - "Arena/CustomGames/No servers found": "Nu găsesc servere active", - "Arena/CustomGames/Observers": "Spectatori", - "Arena/CustomGames/Popup/Enter to server": "Conectare la server", - "Arena/CustomGames/Settings": "Setări", - "Arena/CustomGames/Settings/disable": "Dezactivat", - "Arena/CustomGames/Settings/enable": "Activat", - "Arena/CustomGames/create/enter name": "Introdu numele", - "Arena/CustomGames/create/enter password": "Introdu parola", - "Arena/CustomGames/errors/notification/AttemptsCountExceeded": "Ai depășit limita maximă de încercări", - "Arena/CustomGames/errors/notification/GameNotFound": "Jocul nu a fost găsit", - "Arena/CustomGames/errors/notification/InvalidPassword": "Parolă greșită", - "Arena/CustomGames/errors/notification/PlayersLimitReached": "Limită jucători atinsă", - "Arena/CustomGames/name hidden": "Nume ascuns", - "Arena/CustomGames/toggle/Organization": "Organizatorice", - "Arena/CustomGames/toggle/Refresh": "Împrospătează", - "Arena/CustomGames/toggle/friends": "Prieteni", - "Arena/CustomGames/toggle/game mode": "Modurl de joc", - "Arena/CustomGames/toggle/map": "Locaţie", - "Arena/CustomGames/toggle/password": "Parolă", + "Arena/CustomGames/Lobby/Take": "Take", + "Arena/CustomGames/No servers found": "No active servers found", + "Arena/CustomGames/Observers": "Spectators", + "Arena/CustomGames/Popup/Enter to server": "Entering the server", + "Arena/CustomGames/Settings": "Settings", + "Arena/CustomGames/Settings/disable": "Disabled", + "Arena/CustomGames/Settings/enable": "Enabled", + "Arena/CustomGames/create/enter name": "Enter name", + "Arena/CustomGames/create/enter password": "Enter password", + "Arena/CustomGames/errors/notification/AttemptsCountExceeded": "Exceeded maximum attempt count", + "Arena/CustomGames/errors/notification/GameNotFound": "Game not found", + "Arena/CustomGames/errors/notification/InvalidPassword": "Incorrect password", + "Arena/CustomGames/errors/notification/PlayersLimitReached": "Player limit reached", + "Arena/CustomGames/name hidden": "Nickname hidden", + "Arena/CustomGames/toggle/Organization": "Organizational", + "Arena/CustomGames/toggle/Refresh": "Refresh", + "Arena/CustomGames/toggle/friends": "Friends", + "Arena/CustomGames/toggle/game mode": "Game mode", + "Arena/CustomGames/toggle/map": "Location", + "Arena/CustomGames/toggle/password": "Password", "Arena/CustomGames/toggle/ping": "Ping", - "Arena/CustomGames/toggle/players count": "Număr jucători", - "Arena/CustomGames/toggle/region": "Regiune", - "Arena/CustomGames/toggle/room name": "Nume Cameră", - "Arena/CustomGames/toggle/tournament": "Turneu", - "Arena/EndMatchNotification": "Meciul s-a încheiat cât erai plecat", - "Arena/Matching/CustomGames": "Jocuri personalizate", - "Arena/Notification/Selection/Blocked": "Achiziția din șablon blocată", - "Arena/OnCancelMatch": "Găsirea unu joc anulată, probleme de încărcare", - "Arena/OnCancelMatch/Group": "Găsirea unui joc anulată, un membru al grupului are probleme de încărcare", - "Arena/OnCancelMatch/NoServer": "Nu se poate găsi server disponibil. Te rugăm să încerci mai târziu.", - "Arena/Popups/TwitchDropsHeader": "Deschide cadoul", - "Arena/Preset/Tooltip/Tab/6": "Diferite șabloane unice de colecție.", + "Arena/CustomGames/toggle/players count": "Player count", + "Arena/CustomGames/toggle/region": "Region", + "Arena/CustomGames/toggle/room name": "Room name", + "Arena/CustomGames/toggle/tournament": "Tournament", + "Arena/EndMatchNotification": "Match has ended while you were away", + "Arena/Matching/CustomGames": "Custom games", + "Arena/OnCancelMatch": "Matching canceled due to loading issues", + "Arena/OnCancelMatch/Group": "Matching canceled due to group member having loading issues", + "Arena/OnCancelMatch/NoServer": "Could not find an available server. Please try later.", "Arena/Preset/Tooltip/Tab/Assault": "Assault is the most versatile class. Presets of this class have balanced equipment suitable for most combat situations.", "Arena/Preset/Tooltip/Tab/CQB": "CQB is the most heavily armored class in the Arena. CQBs are characterized by their face shields and increased ammunition for their main weapons. Presets of this class are excellent in defending positions and prolonged firefights.", - "Arena/Preset/Tooltip/Tab/Collection": "Șabloane primite pentru rezultate extraordinare în Arenă.", - "Arena/Preset/Tooltip/Tab/Favorite": "Setul favorit de șabloane.", + "Arena/Preset/Tooltip/Tab/Collection": "Presets given for special achievements in the Arena.", + "Arena/Preset/Tooltip/Tab/Favorite": "Your favorited set of presets.", "Arena/Preset/Tooltip/Tab/Marksman": "Marksman is a class for long-range combat. Presets of this class often have powerful secondary weapons and reasonable armor protection. This highly specialized class is indispensable in outdoor Arenas.", - "Arena/Preset/Tooltip/Tab/Rating": "Șabloane bazate pe rang sunt primite la atingerea unui anumit rang în Arenă.", + "Arena/Preset/Tooltip/Tab/Rating": "Ranked presets are given out for achieving a certain rank in the Arena.", "Arena/Preset/Tooltip/Tab/Scout": "Scout is a class for players who prefer high-risk, high-reward. Presets of this class are armed mainly with short-barreled SMGs with armor-piercing ammunition, but weak protection doesn't give you any room for a single mistake.", - "Arena/Presets/Blocked": "Blocat", - "Arena/Presets/Tooltips/Ammo": "Muniție", - "Arena/Presets/Tooltips/Armor": "Blindaj", - "Arena/Presets/Tooltips/ArmorDamage": "Penetrare", - "Arena/Presets/Tooltips/Bonus/Buffs/Arp": "Bonus ARP", - "Arena/Presets/Tooltips/Bonus/Buffs/Exp": "Bonus experiență", - "Arena/Presets/Tooltips/Bonus/Buffs/Rub": "Bonus monetar", - "Arena/Presets/Tooltips/Bonus/Debuffs/Arp": "Malus ARP", - "Arena/Presets/Tooltips/Bonus/Debuffs/Exp": "Malus experiență", - "Arena/Presets/Tooltips/Bonus/Debuffs/Rub": "Malus monetar", - "Arena/Presets/Tooltips/BulletType/ArmorPiercing": "Penetrant", - "Arena/Presets/Tooltips/BulletType/Expansive": "Expandant", - "Arena/Presets/Tooltips/BulletType/Flash": "Orbitor", - "Arena/Presets/Tooltips/BulletType/HighExplosive": "Exploziv", - "Arena/Presets/Tooltips/BulletType/Smoke": "Fumigen", - "Arena/Presets/Tooltips/BulletType/SoftTargets": "Ținte moi", + "Arena/Presets/Blocked": "Blocked", + "Arena/Presets/Tooltips/Ammo": "Ammo", + "Arena/Presets/Tooltips/Armor": "Armor", + "Arena/Presets/Tooltips/ArmorDamage": "Penetration", + "Arena/Presets/Tooltips/Bonus/Buffs/Arp": "ARP bonus", + "Arena/Presets/Tooltips/Bonus/Buffs/Exp": "Experience bonus", + "Arena/Presets/Tooltips/Bonus/Buffs/Rub": "Money bonus", + "Arena/Presets/Tooltips/Bonus/Debuffs/Arp": "ARP penalty", + "Arena/Presets/Tooltips/Bonus/Debuffs/Exp": "Experience penalty", + "Arena/Presets/Tooltips/Bonus/Debuffs/Rub": "Money penalty", + "Arena/Presets/Tooltips/BulletType/ArmorPiercing": "Armor piercing", + "Arena/Presets/Tooltips/BulletType/Expansive": "Expansive", + "Arena/Presets/Tooltips/BulletType/Flash": "Flash", + "Arena/Presets/Tooltips/BulletType/HighExplosive": "High explosive", + "Arena/Presets/Tooltips/BulletType/Smoke": "Smoke", + "Arena/Presets/Tooltips/BulletType/SoftTargets": "Soft targets", "Arena/Presets/Tooltips/BulletType/Universal": "Universal", - "Arena/Presets/Tooltips/BulletsType": "Tip muniție", - "Arena/Presets/Tooltips/Damage": "Daune", - "Arena/Presets/Tooltips/FragmentsCount": "Număr fragmente", - "Arena/Presets/Tooltips/Grenade": "Grenade", - "Arena/Presets/Tooltips/Medicine": "Medicale", - "Arena/Presets/Tooltips/Other": "Altele", - "Arena/Presets/Tooltips/Weapon": "Armă", - "Arena/Rematching": "Întoarcere la căutare cu prioritate ridicată", - "Arena/Rematching/NoServer": "Din cauza unor motive tehnice, serverul nu a fost găsit. Întoarcere la căutarea unui joc.", - "Arena/TeamColor/azure": "Azur", - "Arena/TeamColor/azure_plural": "Azuri", - "Arena/TeamColor/blue": "Albastră", - "Arena/TeamColor/blue_plural": "Albaștri", - "Arena/TeamColor/fuchsia": "Roz", - "Arena/TeamColor/fuchsia_plural": "Roz", - "Arena/TeamColor/green": "Verde", - "Arena/TeamColor/green_plural": "Verzi", - "Arena/TeamColor/red": "Roșu", - "Arena/TeamColor/red_plural": "Roșie", - "Arena/TeamColor/white": "Alb", - "Arena/TeamColor/white_plural": "Albi", - "Arena/TeamColor/yellow": "Galben", - "Arena/TeamColor/yellow_plural": "Galbeni", - "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Bani insuficienți pentru unul sau mai mulți membrii ai grupului", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Nu sunt destule șabloane de Nivel deblocate pentru unul sau mai mulți membri ai grupului", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Nu sunt destule șabloane de {0} deblocate pentru unul sau mai mulți membri ai grupului", - "Arena/Tiers/LockedBy/PovertyThreshold": "Bani insuficienți pentru Nivel", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "Bani insuficienți pentru {0}", - "Arena/Tiers/LockedBy/PresetsUnlocked": "Prea puține șabloane deblocate", - "Arena/Tiers/LockedBy/UnavailableTier": "Nivel indisponibil pentru joc", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} momentan indisponibil pentru joc", - "Arena/Tiers/RankingAvailable {0}": "Ranked game unavailable: {0} presets unlocked", + "Arena/Presets/Tooltips/BulletsType": "Ammo type", + "Arena/Presets/Tooltips/Damage": "Damage", + "Arena/Presets/Tooltips/FragmentsCount": "Fragment count", + "Arena/Presets/Tooltips/Grenade": "Grenades", + "Arena/Presets/Tooltips/Medicine": "Medicine", + "Arena/Presets/Tooltips/Other": "Other", + "Arena/Presets/Tooltips/Weapon": "Weapon", + "Arena/Rematching": "Returning to matching with high priority", + "Arena/Rematching/NoServer": "Due to technical reasons, the server has not been found. Returning to game search.", + "Arena/TeamColor/azure": "Azure", + "Arena/TeamColor/azure_plural": "Azure", + "Arena/TeamColor/blue": "Blue", + "Arena/TeamColor/blue_plural": "Blue", + "Arena/TeamColor/fuchsia": "Pink", + "Arena/TeamColor/fuchsia_plural": "Pink", + "Arena/TeamColor/green": "Green", + "Arena/TeamColor/green_plural": "Green", + "Arena/TeamColor/red": "Red", + "Arena/TeamColor/red_plural": "Red", + "Arena/TeamColor/white": "White", + "Arena/TeamColor/white_plural": "White", + "Arena/TeamColor/yellow": "Yellow", + "Arena/TeamColor/yellow_plural": "Yellow", + "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", + "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", + "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", "Arena/Tiers/UnlockedPresets": "Presets unlocked", - "Arena/Tooltip/MapSelectedCounter": "Număr locații alese", - "Arena/Tooltip/MinMapCount {0}": "Alege mai multe locații. Trebuie să alegi minim {0} locații", - "Arena/UI/Awaiting-Players": "Așteaptă jucătorii", - "Arena/UI/Confirm-Match": "Confirmați", - "Arena/UI/CustomMode": "Personalizat", - "Arena/UI/Disband-Game/Title": "DESFINȚEAZĂ JOCUL", - "Arena/UI/Excluded-from-tre-group": "- Vei fi dat afară din grup", - "Arena/UI/Game-Found": "A fost găsit joc", - "Arena/UI/Leave": "IEȘI", - "Arena/UI/Leave-Game/Text1": "Ești sigur că vrei să părăsești jocul?", - "Arena/UI/Leave-Game/Text2": "Serverul va fi desființat", - "Arena/UI/Leave-Game/Title": "PĂRĂSEȘTE JOCUL", - "Arena/UI/Leave-Tournament-Game/Title": "PĂRĂSEȘTE MECIUL DIN TURNEU", - "Arena/UI/Leave-a-match?": "Ești sigur că vrei să părăsești timpuriu jocul?", - "Arena/UI/LoadMapResources": "Încărcarea resurselor hărții...", - "Arena/UI/Lose-you-reward": "- Vei pierde recompensa și punctele de rang, și s-ar putea să iei interdicție temporară de la joc", - "Arena/UI/Match-Canceled": "Meci anulat", - "Arena/UI/Match_leaving_forbidden_body": "Dacă părăsești meciul îți vei pune camarazii în dezavantaj.
Vei pierde premiul, ratingul, și vei putea primi interdicție temporară.", - "Arena/UI/Match_leaving_forbidden_header": "Atenție! Părăsești meciul.", - "Arena/UI/Match_leaving_permitted_header": "Poți părăsi acest meci fără penalizare.", - "Arena/UI/PresetResetToDefault": "Settings for the following presets have been reset to default:", - "Arena/UI/Return": "REVINO", - "Arena/UI/Return-to-match": "REVINO ÎN MECI", - "Arena/UI/Selection/Blocked": "Șablon luat", - "Arena/UI/Waiting": "Așteptare...", - "Arena/Ui/ServerFounding": "Căutare server...", - "Arena/Widgets/Observer/capture point": "Capturează obiectivul", - "Arena/Widgets/Observer/contesting point": "Obiectiv contestat", - "Arena/Widgets/Observer/eliminate team": "Vine echipa de curățenie!", - "Arena/Widgets/Observer/kill all enemies": "Elimină echipa inamică", - "Arena/Widgets/Observer/{0} team capturing point": "Echipa {0} capturează obiectivul", - "Arena/Widgets/Observer/{0} team win": "Echipa {0} a câștigat", - "Arena/Widgets/additional time": "Timp adițional", - "Arena/Widgets/ally captured point": "Echipa ta a capturat obiectivul", - "Arena/Widgets/ally capturing point": "Echipa ta capturează obiectivul", - "Arena/Widgets/capture point": "Capturează obiectivul", - "Arena/Widgets/contesting point": "Obiectiv contestat", - "Arena/Widgets/died": "decedat", - "Arena/Widgets/draw": "Egal", - "Arena/Widgets/eliminate team": "Vine echipa de curățenie!", - "Arena/Widgets/end time": "A expirat timpul", - "Arena/Widgets/enemy captured point": "Echipa adversă a capturat obiectivul", - "Arena/Widgets/enemy capturing point": "Echipa adversă capturează obiectivul", - "Arena/Widgets/kill all enemies": "Elimină echipa inamică", - "Arena/Widgets/killed": "eliminat", - "Arena/Widgets/killed himself": "suicid", - "Arena/Widgets/main time": "Timp", - "Arena/Widgets/match": "Meci", - "Arena/Widgets/prepare to fight": "Pregătește-te de luptă", + "Arena/UI/Awaiting-Players": "Waiting for players", + "Arena/UI/Confirm-Match": "Confirm", + "Arena/UI/CustomMode": "Custom", + "Arena/UI/Disband-Game/Title": "GAME DISBAND", + "Arena/UI/Excluded-from-tre-group": "- You will be kicked from your group", + "Arena/UI/Game-Found": "Game found", + "Arena/UI/Leave": "LEAVE", + "Arena/UI/Leave-Game/Text1": "Are you sure you want to leave the game?", + "Arena/UI/Leave-Game/Text2": "Server will be disbanded", + "Arena/UI/Leave-Game/Title": "LEAVE GAME", + "Arena/UI/Leave-Tournament-Game/Title": "LEAVE TOURNAMENT GAME", + "Arena/UI/Leave-a-match?": "Are you sure you want to leave the game early?", + "Arena/UI/LoadMapResources": "Loading map resources...", + "Arena/UI/Lose-you-reward": "- You will lose your reward and rating, and may also get a temporary ban", + "Arena/UI/Match-Canceled": "Match canceled", + "Arena/UI/Match_leaving_forbidden_body": "If you leave this match you will put your comrades at disadvantage.
You'll lose your reward, rating, and will be eligible for a temporary ban.", + "Arena/UI/Match_leaving_forbidden_header": "Warning! You are leaving the match.", + "Arena/UI/Match_leaving_permitted_header": "You can leave this match without penalty.", + "Arena/UI/Return": "RETURN", + "Arena/UI/Return-to-match": "RETURN TO MATCH", + "Arena/UI/Waiting": "Waiting...", + "Arena/Ui/ServerFounding": "Looking for server...", + "Arena/Widgets/Observer/capture point": "Capture the objective", + "Arena/Widgets/Observer/contesting point": "Objective contested", + "Arena/Widgets/Observer/eliminate team": "Cleanup crew is coming!", + "Arena/Widgets/Observer/kill all enemies": "Eliminate the enemy team", + "Arena/Widgets/Observer/{0} team capturing point": "Team {0} are capturing the objective", + "Arena/Widgets/Observer/{0} team win": "Team {0} won", + "Arena/Widgets/additional time": "Extra time", + "Arena/Widgets/ally captured point": "Your team captured the objective", + "Arena/Widgets/ally capturing point": "Your team is capturing the objective", + "Arena/Widgets/capture point": "Capture the objective", + "Arena/Widgets/contesting point": "Objective contested", + "Arena/Widgets/died": "died", + "Arena/Widgets/draw": "Draw", + "Arena/Widgets/eliminate team": "Cleanup crew is coming!", + "Arena/Widgets/end time": "Time is out", + "Arena/Widgets/enemy captured point": "Enemy team captured the objective", + "Arena/Widgets/enemy capturing point": "Enemy team is capturing the objective", + "Arena/Widgets/kill all enemies": "Eliminate the enemy team", + "Arena/Widgets/killed": "killed", + "Arena/Widgets/killed himself": "commited suicide", + "Arena/Widgets/main time": "Main time", + "Arena/Widgets/match": "Match", + "Arena/Widgets/prepare to fight": "Prepare to fight", "Arena/Widgets/ranked": "Ranked mode", - "Arena/Widgets/round lose": "Rundă pierdută", - "Arena/Widgets/round start in": "Rundă începe în", - "Arena/Widgets/round win": "Rundă câștigată", + "Arena/Widgets/round lose": "Round lost", + "Arena/Widgets/round start in": "Round starts in", + "Arena/Widgets/round win": "Round won", "Arena/Widgets/tarkov": "Tarkov", "Arena/Widgets/unranked": "Unranked mode", - "Arena/Widgets/wait next round": "Pregătește-te pentru runda următoare", - "Arena/Widgets/you capturing point": "Capturezi obiectivul", - "Arena/Widgets/you in team {0}": "Echipa ta este {0}", - "Arena/Widgets/{0} team capturing point": "{0} echipă capturează obiectivul", - "Arena/Widgets/{0} team win": "{0} echipă a câștigat", - "Arena/popups/leadership for random player": "Conducerea va fi transferată unui jucător aleatoriu", - "Arena/popups/you stay leader": "Vei rămâne lider de grup", - "ArenaIntoxication": "Otravă Puternică", + "Arena/Widgets/wait next round": "Prepare for the next round", + "Arena/Widgets/you capturing point": "You are capturing the objective", + "Arena/Widgets/you in team {0}": "Your team is {0}", + "Arena/Widgets/{0} team capturing point": "{0} team is capturing the objective", + "Arena/Widgets/{0} team win": "{0} team won", + "Arena/popups/leadership for random player": "Leadership will be transferred to a random remaining player", + "Arena/popups/you stay leader": "You will stay the group leader", + "ArenaIntoxication": "Strong Poison", "ArenaPresetViewScreen/CurrentRankPreset": "Current rank preset", "ArenaPresetViewScreen/base": "Base", "ArenaPresetViewScreen/exp_progress": "Preset EXP progress", "ArenaPresetViewScreen/need_unlock": "Preset unlock required", "ArenaPresetViewScreen/unlocked": "Requirements fulfilled", - "ArenaRaidInviteDescription": "{0} te invită la luptă", - "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Ești sigur că vrei să părăsești timpuriu jocul?", - "ArenaUI/BattleMenu/FreeQuitWarning": "- Poți părăsi meciul fără penalizare", - "ArenaUI/BattleMenu/MatchLeave": "PĂRĂSIRE MECI", - "ArenaUI/BattleMenu/PenaltyWarning": "- Vei pierde recompensa și punctele de rang, și s-ar putea să iei interdicție temporară de la joc", - "ArenaUI/BattleMenu/PermittedQuitWarning": "Ești sigur că vrei să părăsești jocul înainte de final?", - "ArenaUI/BattleMenu/SquadLeaveWarning": "- Vei fi dat afară din detașament", - "ArenaUI/PresetView/FreePreset": "GRATIS", - "ArenaUI/PresetView/PresetPreview": "Previzualizare șablon", - "ArenaUI/PresetView/ShopPrice": "Prețul magazin", - "Arena_AirPit": "Air Pit", - "Arena_AutoService": "Chop Shop", - "Arena_Bay5": "Bay 5", - "Arena_Bowl": "Bowl", - "Arena_Yard": "Block", - "Arena_equator_TDM_02": "Ecuator", - "Arena_result_final": "Finala", - "Arena_result_result": "Rezultate", - "Arena_result_rounds": "Runda", - "Arena_saw": "Gater", + "ArenaRaidInviteDescription": "{0} invites you to battle", + "ArenaUI/BattleMenu/ForbiddenQuitWarning": "Are you sure you want to leave the game early?", + "ArenaUI/BattleMenu/FreeQuitWarning": "- You will leave the match without penalty", + "ArenaUI/BattleMenu/MatchLeave": "LEAVE THE MATCH", + "ArenaUI/BattleMenu/PenaltyWarning": "- You will lose your reward and rating, and may also get a temporary ban", + "ArenaUI/BattleMenu/PermittedQuitWarning": "Are you sure you want to leave before the game ends?", + "ArenaUI/BattleMenu/SquadLeaveWarning": "- You will be kicked from your squad", + "ArenaUI/PresetView/FreePreset": "FREE", + "ArenaUI/PresetView/PresetPreview": "Preset preview", + "ArenaUI/PresetView/ShopPrice": "Shop price", + "Arena_result_final": "Final", + "Arena_result_result": "Results", + "Arena_result_rounds": "Round", "Armband": "Banderolă", "Armor": "Armură", - "Armor Zone BackHead": "Ceafă", - "Armor Zone Ears": "Urechi", - "Armor Zone Eyes": "Ochi", - "Armor Zone HeadCommon": "Față", - "Armor Zone Jaw": "Maxilar", - "Armor Zone LeftCalf": "Gamba stângă", - "Armor Zone LeftForearm": "Antebraț stâng", - "Armor Zone LeftSideChestDown": "Partea Stângă", - "Armor Zone LeftSideChestUp": "Axila Stângă", - "Armor Zone LeftThigh": "Coapsa Dreaptă", - "Armor Zone LeftUpperArm": "Umăr Drept", - "Armor Zone NeckBack": "Rahidian", - "Armor Zone NeckFront": "Gât", - "Armor Zone ParietalHead": "Parietal", - "Armor Zone Pelvis": "Pelvis", - "Armor Zone PelvisBack": "Fund", - "Armor Zone Plate_6B13_back": "Placă Spate", - "Armor Zone Plate_Granit_SAPI_back": "Placă Spate", - "Armor Zone Plate_Granit_SAPI_chest": "Placă Față", - "Armor Zone Plate_Granit_SSAPI_side_left_high": "Placă Stânga", - "Armor Zone Plate_Granit_SSAPI_side_left_low": "Placă Stânga", - "Armor Zone Plate_Granit_SSAPI_side_right_high": "Placă Dreapta", - "Armor Zone Plate_Granit_SSAPI_side_right_low": "Placă Dreapta", - "Armor Zone Plate_Korund_chest": "Placă Față", - "Armor Zone Plate_Korund_side_left_high": "Placă Stânga", - "Armor Zone Plate_Korund_side_left_low": "Placă Stânga", - "Armor Zone Plate_Korund_side_right_high": "Placă Dreapta", - "Armor Zone Plate_Korund_side_right_low": "Placă Dreapta", - "Armor Zone RibcageLow": "Stomac", - "Armor Zone RibcageUp": "Torace", - "Armor Zone RightCalf": "Gamba dreapta", - "Armor Zone RightForearm": "Antebraț drept", - "Armor Zone RightSideChestDown": "Partea Dreaptă", - "Armor Zone RightSideChestUp": "Subraț drept", - "Armor Zone RightThigh": "Coapsa dreapta", - "Armor Zone RightUpperArm": "Umăr Drept", - "Armor Zone SpineDown": "Lombar", - "Armor Zone SpineTop": "Cervical", + "Armor Zone BackHead": "Nape", + "Armor Zone Ears": "Ears", + "Armor Zone Eyes": "Eyes", + "Armor Zone HeadCommon": "Face", + "Armor Zone Jaw": "Jaws", + "Armor Zone LeftCalf": "Left calf", + "Armor Zone LeftForearm": "Left forearm", + "Armor Zone LeftSideChestDown": "Left side", + "Armor Zone LeftSideChestUp": "Left armpit", + "Armor Zone LeftThigh": "Left thigh", + "Armor Zone LeftUpperArm": "Left shoulder", + "Armor Zone NeckBack": "Back neck", + "Armor Zone NeckFront": "Throat", + "Armor Zone ParietalHead": "Head top", + "Armor Zone Pelvis": "Groin", + "Armor Zone PelvisBack": "Buttocks", + "Armor Zone Plate_6B13_back": "BCK. PLATE", + "Armor Zone Plate_Granit_SAPI_back": "BCK. PLATE", + "Armor Zone Plate_Granit_SAPI_chest": "FR. PLATE", + "Armor Zone Plate_Granit_SSAPI_side_left_high": "L. PLATE", + "Armor Zone Plate_Granit_SSAPI_side_left_low": "L. PLATE", + "Armor Zone Plate_Granit_SSAPI_side_right_high": "R. PLATE", + "Armor Zone Plate_Granit_SSAPI_side_right_low": "R. PLATE", + "Armor Zone Plate_Korund_chest": "F. PLATE", + "Armor Zone Plate_Korund_side_left_high": "L. PLATE", + "Armor Zone Plate_Korund_side_left_low": "L. PLATE", + "Armor Zone Plate_Korund_side_right_high": "R. PLATE", + "Armor Zone Plate_Korund_side_right_low": "R. PLATE", + "Armor Zone RibcageLow": "Stomach", + "Armor Zone RibcageUp": "Thorax", + "Armor Zone RightCalf": "Right calf", + "Armor Zone RightForearm": "Right forearm", + "Armor Zone RightSideChestDown": "Right side", + "Armor Zone RightSideChestUp": "Right armpit", + "Armor Zone RightThigh": "Right thigh", + "Armor Zone RightUpperArm": "Right shoulder", + "Armor Zone SpineDown": "Lower back", + "Armor Zone SpineTop": "Upper back", "ArmorVest": "Vestă antiglonț\n", "Aspect ratio:": "Aspect ratio:", "Assault": "Puști de asalt", - "AssaultCarbine Mastering": "Carabine de asalt", + "AssaultCarbine Mastering": "Carabină de asalt", "AssaultDescription": "Abilitatea de mânuire a puștilor de asalt îmbunătățește manipularea, reduce reculul și timpul de reîncărcare a Puștilor de Asalt.", - "AssaultLevelingUpDescription": "Abilitatea de mânuire a puștilor de asalt crește prin tragere și reîncărcare a Puștilor de Asalt.", - "AssaultRifle": "Pușcă de asalt", + "AssaultRifle": "Puști de asalt", "AssaultRifle Mastering": "Puscă de asalt", "AssortmentUnlockReward/Description": "Vei putea achiziționa acest articol de la {0} ca și recompensă", - "AttachedLauncher": "Lansator de grenade", + "AttachedLauncher": "Lansatoare de grenade", "AttachedLauncherDescription": "Abilitatea de manipulare a lansatorului de grenade", - "AttachedLauncherLevelingUpDescription": "Abilitatea de mânuire a Aruncătoarelor de Grenade atașate crește prin tragere și reîncărcare cu această armă.", "Attention": "Atenţie", "Attention!": "Atenţie!", - "Attention! All items, brought by you into the raid or found in it, have been lost.": "Atenție! Ai pierdut toate obiectele aduse și găsite în timpul raidului.", + "Attention! All items, brought by you into the raid or found in it, have been lost.": "Atenție! Ați pierdut toate obiectele aduse și găsite din timpul raidului.", "Attention! This is a Beta version of Escape from Tarkov for testing purposes.": "Atenție! Aceasta este o versiune Beta a jocului Escape from Tarkov.", "Attention! Your character is still in the raid.": "Atenție! Caracterul tău este încă în raid.", "Attention! Your character is still in the raid. Time remaining for reconnection {0}": "Atenție! Caracterul tău este încă în raid. Timpul rămas pentru reconectare este: {0}", - "Attention! You’ve completed the raid way too early.": "Atenție! Ai încheiat raidul prea devreme.", - "Attention! You’ve left the raid and lost everything you brought or found in it.": "Atenție! Ai părăsit raidul și ai pierdut tot ce ai adus și găsit între timp.", + "Attention! You’ve completed the raid way too early.": "Atenție! Ai încheiat raidul mult prea devreme.", + "Attention! You’ve left the raid and lost everything you brought or found in it.": "Atenție! Ai părăsit raidul și ai pierdut tot ce ai adus și găsit în el.", "AttentionDescription": "Atenția crește viteza de căutare în diferite containere.", "AttentionEliteExtraLootExp": "Dublează experiența din căutare", - "AttentionEliteLuckySearch": "Crește șansa de a găsi instantaneu un articol în container cu [{0:0.#%}]", - "AttentionLevelingUpDescription": "Abilitatea Atenție crește prin căutarea în containere și cadavre.", + "AttentionEliteLuckySearch": "Șansa de a găsi instant un articol în container [({0})]", "AttentionLootSpeed": "Crește viteza de căutare cu [{0:0%}]", "AttentionRareLoot": "Crește viteza de examinare cu [{0:0%}]", "Auctionsdescription": "Licitații", - "Authentic": "Autentif", + "Authentic": "Autentic", "Authorization": "AUTORIZARE", "Authorization/ForceLogoutMessage": "Reautentificare necesară. Vă rugăm restartați clientul", "Authorization/SystemMessageHeader": "Mesaj de sistem", @@ -12501,7 +12462,7 @@ "BearRawPower": "BEAR Forță Brută", "Beginning": "Început", "Berserk": "Nebun", - "Beyond Fuel Tank": "Pasaj Între Pietre", + "Beyond Fuel Tank": "Pasaj printre pietre", "Binaural audio settings will be applied after raid restart.": "Setările audio binaural se vor aplica după repornirea jocului.", "BitcoinFarm": "FERMĂ BITCOIN", "BlindShootAbove": "Foc orb deasupra", @@ -12512,7 +12473,6 @@ "Bloom": "Bloom", "BodyTemperature": "Temperatura internă", "Boiler Tanks": "Cazane", - "BonfireBuff": "Căldura sobei", "BoozeGenerator": "DISTILERIE", "Boss pick": "Alegere Boss", "BossType/AsOnline": "Ca online", @@ -12534,12 +12494,12 @@ "Bring": "Adu", "BrokenBone": "Fractură", "BrokenItem": "Articolul este complet stricat și necesită reparație totală", - "Btr/Interaction/Dialog": "Vorbește cu șoferul", - "Btr/Interaction/GoIn": "Urcă în BTR", - "Btr/Interaction/GoOut": "Ieși din BTR", - "Btr/InteractionMessage": "Atenție! {0}", - "Btr/ServicePurchased": "Serviciul “{0}” achiziționat", - "BtrItemsDeliveryHeader": "Articolele au fost livrate", + "Btr/Interaction/Dialog": "Talk to the driver", + "Btr/Interaction/GoIn": "Enter the BTR", + "Btr/Interaction/GoOut": "Exit the BTR", + "Btr/InteractionMessage": "Warning! {0}", + "Btr/ServicePurchased": "Service “{0}” purchased", + "BtrItemsDeliveryHeader": "Items have been delivered", "Build can't be assembled. Necessary mods are missing": "Configurația nu poate fi asamblată. Lipsesc accesorii necesare", "Build can't be assembled. No suitable weapon": "Configurația nu poate fi asamblată. Nicio armă potrivită", "Build can't be assembled. Select weapon": "Configurația nu poate fi asamblată. Alege o armă.", @@ -12583,14 +12543,14 @@ "CURRENT BONUSES:": "PENALIZARI ACTIVE:", "CURRENT INGAME TIME:": "ORA CURENTĂ ÎN JOC:", "CURRENT NEGATIV BONUSES:": "PENALIZĂRI ACTIVE:", - "CURRENT RANK": "RANG CURENT", + "CURRENT RANK": "CURRENT RANK", "CURRENT WEATHER CONDITIONS:": "VREMEA ÎN ACEST MOMENT:", "Caching data...": "Caching data...", - "Camera Bunker Door": "Ușa din Camera Buncărului", + "Camera Bunker Door": "Camera Bunker Door", "Can't find a place for item": "Spațiu lipsă pentru acest articol", - "Can't find any appropriate magazine": "Lipsă încărcătoare compatibile", + "Can't find any appropriate magazine": "Încărcătoare compatibile lipsă", "Can't find any non-empty magazine": "Doar încărcătoare goale", - "Can't find appropriate slot": "Nu găsesc celulă compatibilă", + "Can't find appropriate slot": "Nu putem găsi un loc compatibil", "Can't fold stock now": "Nu se poate plia patul acum", "Can't open context menu while searching": "Nu se poate deschide meniul contextual în timpul căutării", "Can't place beacon here": "Nu poți plasa emițătorul aici", @@ -12601,7 +12561,7 @@ "Captcha description": "Confirmă că nu ești un robot.\nTrebuie să alegeți toate:\n", "Captcha ragfair ban": "Accesul la piață este blocat pentru", "Captcha title": "CONTROL DE SECURITATE", - "Cellars": "Pivniță", + "Cellars": "Beciuri", "Change": "Schimbă", "ChangeAimScope": "Comută între vizoare", "ChangeAimScopeMagnification": "Schimbă grosimentul lunetei", @@ -12619,21 +12579,20 @@ "CharismaDescription": "Stăpânind arta de a fi carismatic vei putea obține reduceri și alte servicii.", "CharismaEliteBuff1": "Ești primul care află știrile din comerț", "CharismaEliteBuff2": "Crește profitul din fiecare tranzacție cu [{0:0%}]", - "CharismaExfiltrationDiscount": "Reduce prețurile extracțiilor plătite [{0:0%}]", - "CharismaFenceRepPenaltyReduction": "Reduce penalizarea reputației cu Amanet", - "CharismaHealingDiscount": "Reduce prețul serviciilor medicale după raid cu [{0:0%}]", + "CharismaExfiltrationDiscount": "Reduce prețurile extracțiilor pe bani cu [{0:0%}]", + "CharismaFenceRepPenaltyReduction": "Reduce penalizarea cu reputația Amanet", + "CharismaHealingDiscount": "Reduce prețul serviciilor de vindecare după raid cu [{0:0%}]", "CharismaInsuranceDiscount": "Reduce prețul serviciilor de asigurare cu [{0:0%}]", - "CharismaLevelingUpDescription": "Abilitatea Carisma crește indirect o dată cu abilitățile Atenție, Percepție, și Intelect.", "CharismaScavCaseDiscount": "Adaugă o reducere la prețurile pentru Cutia Localnicilor", - "ChatScreen/QuestItemsListHeader": "Următoarele articole for fi mutate în depozitul pentru misiuni:", - "ChatScreen/QuestItemsMoved": "Articole mutate cu succes în depozitul pentru misiuni", + "ChatScreen/QuestItemsListHeader": "The following items will be moved to quest item stash:", + "ChatScreen/QuestItemsMoved": "Items successfully moved to quest item stash", "Check your email": "Vă rugăm verificați căsuța de email folosită pentru a înregistra acest cont. Veți primi numărul de dispozitiv în următoarele 5 minute.", "CheckAmmo": "Verifică muniția", "CheckChamber": "Verifică mecanismul/Repară defecțiunea", "CheckFireMode": "Verifică selectorul", "CheckTimeSpeed": "Modificator viteză verificare", "Chest": "TORACE", - "Choose Look": "Alege cum vei arăta", + "Choose Look": "Choose appearance", "Choose your character": "ALEGE-ȚI FACȚIUNEA", "Choose your nickname": "ALEGE-ȚI PORECLA", "ChristmasIllumination": "Luminițe de Crăciun", @@ -12645,25 +12604,25 @@ "Clear memory": "Automatic RAM Cleaner", "Clear table": "Șterge tabela", "Client time de-synchronized with Server time for ~{0} ms": "Client time de-synchronized with Server time for ~{0} ms", - "ClientPlayerBlocking/MatchLeave": "Mod de joc temporar indisponibil din cauza abandonării unui meci", - "ClientPlayerBlocking/NotAcceptedMatch": "Mod de joc temporar indisponibil din cauza neacceptării unui meci", - "ClientPlayerBlocking/TeamKill": "Mod de joc temporar indisponibil din cauza uciderii repetate a coechipierilor", + "ClientPlayerBlocking/MatchLeave": "Game mode temporarily blocked due to quitting a match", + "ClientPlayerBlocking/NotAcceptedMatch": "Game mode temporarily blocked due to failing to accept a match", + "ClientPlayerBlocking/TeamKill": "Game mode temporarily blocked due to repeated teamkills", "Close the game": "Închide jocul", "CloseBufferGates": "închide ușa", "CloseDoor": "Închide", - "ClothingItem/Equipped": "Echipat", - "ClothingItem/Obtained": "Obținut", - "ClothingItem/Preview": "Previzualizare", - "ClothingItem/Purchase": "Disponibil", - "ClothingItem/Unavailable": "Indisponibil", - "ClothingPanel/ExternalObtain": "Poate fi achiziționat de pe site", - "ClothingPanel/InternalObtain": "Condiții pentru achiziție:", - "ClothingPanel/LoyaltyLevel": "Comerciant\nNivel loialitate:", - "ClothingPanel/PlayerLevel": "Jucător\nNivel:", - "ClothingPanel/RequiredPayment": "Preț:", - "ClothingPanel/RequiredQuest": "Misiune\nÎndeplinită:", - "ClothingPanel/RequiredSkill": "Abilitate\nNecesară:", - "ClothingPanel/StandingLevel": "Relație\nComerciant:", + "ClothingItem/Equipped": "Equipped", + "ClothingItem/Obtained": "Obtained", + "ClothingItem/Preview": "Preview", + "ClothingItem/Purchase": "Available", + "ClothingItem/Unavailable": "Unavailable", + "ClothingPanel/ExternalObtain": "Available for purchase on the website", + "ClothingPanel/InternalObtain": "Trader purchase conditions:", + "ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:", + "ClothingPanel/PlayerLevel": "Player\nLevel:", + "ClothingPanel/RequiredPayment": "Required\nPayment:", + "ClothingPanel/RequiredQuest": "Completed\ntask:", + "ClothingPanel/RequiredSkill": "Required\nSkill:", + "ClothingPanel/StandingLevel": "Trader\nStanding:", "CloudinessType/Clear": "Senin", "CloudinessType/Cloudy": "Înnorat", "CloudinessType/CloudyWithGaps": "Noros cu zone senine", @@ -12672,46 +12631,46 @@ "CloudinessType/Thundercloud": "Nori de furtună", "Co-op mode settings": "Setări mod antrenament", "Coastal_South_road": "Drumul spre Sud", - "Collider Type Back": "Torace, Posterior", - "Collider Type BackHead": "Cap, Ceafă", - "Collider Type Ears": "Cap, Urechi", - "Collider Type Eyes": "Cap, Ochi", - "Collider Type Groin": "Stomac, Pelvis", - "Collider Type HeadCommon": "Cap, Față", - "Collider Type Jaw": "Cap, Maxilar", - "Collider Type LeftCalf": "Piciorul S, Gambă", - "Collider Type LeftForearm": "Braț S, Antebraț", - "Collider Type LeftSide": "Partea Stângă", - "Collider Type LeftSideChestDown": "Stomac, Stânga", - "Collider Type LeftSideChestUp": "Torace, Axila Stângă", - "Collider Type LeftThigh": "Piciorul S, Coapsă", - "Collider Type LeftUpperArm": "Braț S, Umăr", - "Collider Type LowerBack": "Stomac, Lombar", - "Collider Type NeckBack": "Cap, Rahidian", - "Collider Type NeckFront": "Cap, Gât", - "Collider Type ParietalHead": "Cap, Parietal", - "Collider Type Pelvis": "Stomac, Pelvis", - "Collider Type PelvisBack": "Stomac, Fund", - "Collider Type Ribcage": "Coaste", - "Collider Type RibcageLow": "Stomac", - "Collider Type RibcageUp": "Torace", - "Collider Type RightCalf": "Piciorul D, Gambă", - "Collider Type RightForearm": "Braț D, Antebraț", - "Collider Type RightSide": "Partea Dreaptă", - "Collider Type RightSideChestDown": "Stomac, Dreapta", - "Collider Type RightSideChestUp": "Torace, Axila Dreaptă", - "Collider Type RightThigh": "Piciorul D, Coapsă", - "Collider Type RightUpperArm": "Braț D, Umăr", - "Collider Type SpineDown": "Stomac, Lombar", - "Collider Type SpineTop": "Torace, Cervical", - "Collider Type Stomach": "Stomac", + "Collider Type Back": "Thorax, Back", + "Collider Type BackHead": "Head, Nape", + "Collider Type Ears": "Head, Ears", + "Collider Type Eyes": "Head, Eyes", + "Collider Type Groin": "Stomach, Groin", + "Collider Type HeadCommon": "Head, Face", + "Collider Type Jaw": "Head, Jaws", + "Collider Type LeftCalf": "Left leg, Calf", + "Collider Type LeftForearm": "Left arm, Forearm", + "Collider Type LeftSide": "Left side", + "Collider Type LeftSideChestDown": "Stomach, Left Side", + "Collider Type LeftSideChestUp": "Thorax, Left Armpit", + "Collider Type LeftThigh": "Left leg, Thigh", + "Collider Type LeftUpperArm": "Left arm, Shoulder", + "Collider Type LowerBack": "Stomach, Lower back", + "Collider Type NeckBack": "Head, Neck", + "Collider Type NeckFront": "Head, Throat", + "Collider Type ParietalHead": "Head, Top of the head", + "Collider Type Pelvis": "Stomach, Groin", + "Collider Type PelvisBack": "Stomach, Buttocks", + "Collider Type Ribcage": "Ribcage", + "Collider Type RibcageLow": "Stomach", + "Collider Type RibcageUp": "Thorax", + "Collider Type RightCalf": "Right leg, Calf", + "Collider Type RightForearm": "Right arm, Forearm", + "Collider Type RightSide": "Right side", + "Collider Type RightSideChestDown": "Stomach, Right Side", + "Collider Type RightSideChestUp": "Thorax, Right Armpit", + "Collider Type RightThigh": "Right leg, Thigh", + "Collider Type RightUpperArm": "Right arm, Shoulder", + "Collider Type SpineDown": "Stomach, Lower back", + "Collider Type SpineTop": "Thorax, Upper back", + "Collider Type Stomach": "Stomach", "Color grading": "Color grading:", "Color grading:": "Color grading:", "Colorblind": "Colorblind", "Colorblind mode:": "Colorblind mode:", "Colorfulness:": "Colorfulness:", "Combat": "Luptă", - "Commission": "Comision", + "Commission": "Commission", "Common stats": "Statistici comune", "CommonValue": "Valoarea totală a articolelor din inventar", "Compass": "Busolă", @@ -12729,8 +12688,8 @@ "ContusionWiggle": "Vedere distorsionată", "Coop game mode": "Mod cooperativ", "Coop/InviteMessage": "vrea să te invite într-un grup. Începe în: {0}. \nAccepți?", - "CoopDescription": "Echipă împotriva inamicilor AI.", - "CoopDescriptionShort": "Luptă contra AI", + "CoopDescription": "Team up against AI enemies.", + "CoopDescriptionShort": "Fight against AI", "CoopMode/HighServerLoadAcceptScreen": "Serverele pentru modul de antrenament sunt suprasolicitate.", "CoopMode/HighServerLoadTimeHasCome": "Toate serverele pentru modul de antrenament sunt ocupate. Se așteaptă server...", "Copy to clipboard": "Copiere în clipboard", @@ -12741,15 +12700,13 @@ "CovertMovementDescription": "Furișarea îți face pașii mai silențioși și reduce raza pe care produci sunete.", "CovertMovementElite": "Furișarea devine la fel de silențioasă pe toate suprafețele", "CovertMovementEquipment": "Reduce zgomotul produs de arme și echipament cu [{0:0%}]", - "CovertMovementLevelingUpDescription": "Abilitatea Mișcărilor Silențioase crește cu fiecare mișcare în liniște.", "CovertMovementLoud": "Reduce zgomotul produs de pași pe suprafețe neobișnuite cu [{0:0%}]", "CovertMovementSoundRadius": "Scade raza audibilă pentru Furișare cu [{0:0%}]", "CovertMovementSoundVolume": "Reduce zgomotul produs de pași pe suprafețe obișnuite cu [{0:0%}]", - "CovertMovementSpeed": "Crește viteza în timpul furișării cu [{0:0%}]", + "CovertMovementSpeed": "Crește viteza furișării cu [{0:0%}]", "Crafting": "Artizanat", "CraftingContinueTimeReduce": "Reduce timpii de producție ciclică (cu excepția Bitcoin Farm) cu [{0:0.##%}]", "CraftingElite": "Abilitatea de a produce două articole diferite în aceeași zonă simultan", - "CraftingLevelingUpDescription": "Abilitatea de Artizanat crește cu fiecare articol produs în Refugiu.", "CraftingSingleTimeReduce": "Scade timpul de producție artizanală cu [{0:0.##%}]", "Craftingdescription": "Creșterea abilității de artizanat reduce timpii de producție a articolelor, inclusiv a celor cu producție ciclică.", "Create group dialog": "Creează grup de dialog", @@ -12761,7 +12718,7 @@ "Currency/Any": "Orice", "Current attitude:": "Atitudinea actuală:", "Current location:": "Locația actuală:", - "Custom/Description": "Joc Personalizat\nÎn acest mod de joc poți crea propriile meciuri după regulile tale sau poți participa într-o camera de joc.\nProgresul din acest mod de joc nu este salvat!", + "Custom/Description": "Custom Game\nIn this mode, you can create a match according to your own rules or join an existing room.\nProgress made in this game mode is not saved!", "Customs": "Vama", "DAILY QUESTS": "Sarcini operaționale", "DAMAGE REDUCTION COMMON BUFF": "REDUCES INCOMING DAMAGE (COMMON)", @@ -12772,14 +12729,13 @@ "DELETE BUILD": "ȘTERGE ȘABLON", "DEPLOYING ON LOCATION": "DETAȘARE ÎN LOCAŢIE", "DISASSEMBLE": "DEZASAMBLARE", - "DISBAND": "DESFINȚEAZĂ", + "DISBAND": "DISBAND", "DISCARD": "ARUNCĂ", "DISCONNECT": "DECONECTARE", "DISCONNECT FROM GLOBAL CHAT": "DECONECTARE DE LA CHAT GLOBAL", "DISPOSE": "ARUNCĂ", "DMR": "DMRuri", "DMRDescription": "Abilitatea de mânuire a Puștii de Lunetist îmbunătățește manipularea în general, reduce reculul și timpul de reîncărcare al acestora.", - "DMRLevelingUpDescription": "Abilitatea de mânuire a puștilor de precizie crește prin tragere și reîncărcare a acestor arme.", "DON'T TRY TO LEAVE": "NU ÎNCERCA SĂ IEȘI", "DONTKNOW": "NU ȘTIU", "DOWN": "JOS", @@ -12812,7 +12768,7 @@ "DamageType_Barbed": "Sârmă ghimpată", "DamageType_Bloodloss": "Hemoragie", "DamageType_Blunt": "Daune contondente", - "DamageType_Btr": "Călcat de BTR", + "DamageType_Btr": "Ran over by BTR", "DamageType_Bullet": "Rană împușcare", "DamageType_Dehydration": "Deshidratare", "DamageType_Exhaustion": "Epuizare", @@ -12833,44 +12789,44 @@ "Day": "Zi", "Dead": "Decedat", "Dead Man's Place": "Dead Man's Place", - "DeathInfo/BackHead": "Ceafă", - "DeathInfo/Chest": "Torace", - "DeathInfo/DamageToEnemy": "Inamicului:", - "DeathInfo/DamageToYou": "Ție:", - "DeathInfo/Ears": "Urechi", - "DeathInfo/Eyes": "Ochi", - "DeathInfo/FourHits{0}": "{0} lovituri", - "DeathInfo/HeadCommon": "Cap", - "DeathInfo/Jaw": "Maxilar", - "DeathInfo/LeftArm": "Braț S", - "DeathInfo/LeftCalf": "Gamba S", - "DeathInfo/LeftForearm": "Antebraț S", - "DeathInfo/LeftLeg": "Piciorul S", - "DeathInfo/LeftSideChestDown": "Partea S", - "DeathInfo/LeftSideChestUp": "Axila S", - "DeathInfo/LeftThigh": "Coapsa D", - "DeathInfo/LeftUpperArm": "Umăr D", - "DeathInfo/ManyHits{0}": "{0} lovituri", - "DeathInfo/NeckBack": "Rahidian", - "DeathInfo/NeckFront": "Gât", - "DeathInfo/OneHit{0}": "{0} lovit", - "DeathInfo/ParietalHead": "Parietal", + "DeathInfo/BackHead": "Nape", + "DeathInfo/Chest": "Thorax", + "DeathInfo/DamageToEnemy": "To enemy:", + "DeathInfo/DamageToYou": "To you:", + "DeathInfo/Ears": "Ears", + "DeathInfo/Eyes": "Eyes", + "DeathInfo/FourHits{0}": "{0} hits", + "DeathInfo/HeadCommon": "Head", + "DeathInfo/Jaw": "Jaw", + "DeathInfo/LeftArm": "Left arm", + "DeathInfo/LeftCalf": "Left calf", + "DeathInfo/LeftForearm": "Left forearm", + "DeathInfo/LeftLeg": "Left leg", + "DeathInfo/LeftSideChestDown": "Left side", + "DeathInfo/LeftSideChestUp": "Left armpit", + "DeathInfo/LeftThigh": "Left thigh", + "DeathInfo/LeftUpperArm": "Left shoulder", + "DeathInfo/ManyHits{0}": "{0} hits", + "DeathInfo/NeckBack": "Back neck", + "DeathInfo/NeckFront": "Throat", + "DeathInfo/OneHit{0}": "{0} hit", + "DeathInfo/ParietalHead": "Top of the head", "DeathInfo/Pelvis": "Pelvis", - "DeathInfo/PelvisBack": "Fund", - "DeathInfo/RibcageLow": "Stomac", - "DeathInfo/RibcageUp": "Torace", - "DeathInfo/RightArm": "Mâna dreaptă", - "DeathInfo/RightCalf": "Gamba dreaptă", - "DeathInfo/RightForearm": "Antebraț drept", - "DeathInfo/RightLeg": "Piciorul drept", - "DeathInfo/RightSideChestDown": "Partea Dreaptă", - "DeathInfo/RightSideChestUp": "Axila dreaptă", - "DeathInfo/RightThigh": "Coapsa dreapta", - "DeathInfo/RightUpperArm": "Umăr Drept", - "DeathInfo/ScavTeam": "Echipa de curățenie", - "DeathInfo/SpineDown": "Lombar", - "DeathInfo/SpineTop": "Cervical", - "DeathInfo/Stomach": "Stomac", + "DeathInfo/PelvisBack": "Buttocks", + "DeathInfo/RibcageLow": "Stomach", + "DeathInfo/RibcageUp": "Thorax", + "DeathInfo/RightArm": "Right arm", + "DeathInfo/RightCalf": "Right calf", + "DeathInfo/RightForearm": "Right forearm", + "DeathInfo/RightLeg": "Right leg", + "DeathInfo/RightSideChestDown": "Right side", + "DeathInfo/RightSideChestUp": "Right armpit", + "DeathInfo/RightThigh": "Right thigh", + "DeathInfo/RightUpperArm": "Right shoulder", + "DeathInfo/ScavTeam": "Cleanup crew", + "DeathInfo/SpineDown": "Lower back", + "DeathInfo/SpineTop": "Upper back", + "DeathInfo/Stomach": "Stomach", "DeclineFriendsRequest": "Refuză cererea de prietenie", "DeclineInvitation": "Refuză invitația", "Decrease": "Scade cu", @@ -12881,7 +12837,7 @@ "DeleteDialog": "ȘTERGE DIALOG", "DeleteFromFriendsList": "ȘTERGE DIN LISTA DE PRIETENI", "DeleteMessages": "Șterge mesajele", - "Deliver": "Livrare", + "Deliver": "Delivery", "Deploying in progress": "Detașare", "Deploying in:": "Detașare în:", "Description": "Descriere", @@ -12903,8 +12859,8 @@ "Do you really want to delete dialog with user: {0}?": "Chiar vrei să ștergi dialogul cu utilizatorul: {0}?", "Dogtag": "PLĂCUȚĂ", "Don't allow to add me": "Previne următoarele cereri de prietenie", - "Dorms V-Ex": "Cămine Ex-Vehicul", - "Draw": "Egal", + "Dorms V-Ex": "Dorms V-Ex", + "Draw": "Draw", "DrawElite": "Ochire stabilă pentru primele 3 secunde cu orice nivel de stamina", "DrawMaster": "Draw Master", "DrawMasterDescription": "Draw mastering - schimbi mai rapid între arme.", @@ -12912,7 +12868,7 @@ "DrawMasterSpeed": "Crește viteza de scoatere a armei cu [{0:0%}]", "DrawSound": "Reducerea zgomotului ochirii cu [{0:0%}]", "DrawSpeed": "Crește viteza de ochire cu [{0:0%}]", - "DrawTremor": "Reduce efectul de tremur în primele 2 secunde de ochire cu [50%]", + "DrawTremor": "Reduce efectul de tremor cu 50% în primele 2 secunde de ochire", "DropBackpack": "Aruncă rucsacul", "DropItem": "Aruncă obiectul", "Duck": "Crouch", @@ -12920,30 +12876,29 @@ "Duration": "Durată", "E1": "Stylobate Building Elevator", "E2": "Sewer River", - "E3": "Casa Prăbușită", - "E4": "Elicopterul Prăbușit", - "E5": "Macaraua Răsturnată", - "E6": "Punct de control Scavi", + "E3": "Damaged House", + "E4": "Crash Site", + "E5": "Collapsed Crane", + "E6": "Scav Checkpoint", "E7": "Expo Checkpoint", - "E7_car": "Ex-Vehicul Taxi Calea Primorsky", - "E8": "Complexul de Locuințe Cardinal", - "E8_yard": "Curtea interioară", - "E9_sniper": "Strada Klimov", + "E7_car": "Primorsky Ave Taxi V-Ex", + "E8": "Cardinal Apartment Complex", + "E8_yard": "Courtyard", + "E9_sniper": "Klimov Street", "EARLY TERMINATION": "TERMINARE PREMATURĂ", "EAntialiasingMode/FXAA": "FXAA", "EAntialiasingMode/None": "Off", "EAntialiasingMode/TAA_High": "TAA High", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", - "EArenaPresetsType/Assault": "Asalt", + "EArenaPresetsType/Assault": "Assault", "EArenaPresetsType/CQB": "CQB", - "EArenaPresetsType/Marksman": "Lunetist", - "EArenaPresetsType/Scout": "Cercetaș", + "EArenaPresetsType/Marksman": "Marksman", + "EArenaPresetsType/Scout": "Scout", "EAutoVaultingUseMode/Automatic": "Auto", - "EAutoVaultingUseMode/Hotkey": "Tastă rapidă", + "EAutoVaultingUseMode/Hotkey": "Hotkey", "EBackendErrorCode/CantChangeReadyState": "Eroare schimbare status pregătit", "EBackendErrorCode/GroupFull": "Grupul este plin", - "EBackendErrorCode/GroupMembersNotReady": "Un membru nu este pregătit", + "EBackendErrorCode/GroupMembersNotReady": "Group member is not ready", "EBackendErrorCode/GroupRequestNotFound": "Invitația nu există", "EBackendErrorCode/GroupSendInviteError": "Eroare la trimiterea invitației", "EBackendErrorCode/ItemHasBeenSold": "Articolul a fost deja vândut.", @@ -12957,15 +12912,15 @@ "EBackendErrorCode/PlayerIsOffline": "Jucătorul nu este în joc", "EBackendErrorCode/PlayerNotInGroup": "Jucătorul nu se află în grup", "EBackendErrorCode/PlayerNotLeader": "Jucătorul este lider de grup", - "EBackendErrorCode/PlayerProfileNotFound": "Profilul nu a fost găsit", - "EBackendErrorCode/TooManyInviteRequests": "Limita de invitații spre același jucător a fost depășită. Încearcă iar în {0} s.", - "EBtrInteractionStatus/Blacklisted": "Nu iți este permis accesul în BTR!", - "EBtrInteractionStatus/BusyDoor": "Ușă în uz!", - "EBtrInteractionStatus/BusySide": "Loc ocupat!", - "EBtrInteractionStatus/BusySlot": "Loc ocupat!", - "EBtrState/Running": "pe drum", - "EBtrState/Stop": "așteaptă plata", - "EBtrState/StopPaid": "așteaptă plecarea", + "EBackendErrorCode/PlayerProfileNotFound": "Player profile not found", + "EBackendErrorCode/TooManyInviteRequests": "Exceeded the limit of invites sent to one player. Try again in {0} sec.", + "EBtrInteractionStatus/Blacklisted": "You are not allowed access to the BTR!", + "EBtrInteractionStatus/BusyDoor": "Door is in use!", + "EBtrInteractionStatus/BusySide": "Side is occupied!", + "EBtrInteractionStatus/BusySlot": "Seat is occupied!", + "EBtrState/Running": "en route", + "EBtrState/Stop": "awaiting payment", + "EBtrState/StopPaid": "awaiting departure", "ECompareMethod/Less": "sub", "ECompareMethod/More": "peste", "EConnectionType/Default": "Standard", @@ -12981,9 +12936,9 @@ "EDLSSMode/Performance": "performance", "EDLSSMode/Quality": "quality", "EDLSSMode/UltraPerformance": "ultra performance", - "EEventState/SummonFailed": "eșuat", - "EEventState/SummonStart": "în proces", - "EEventState/SummonSuccess": "succes", + "EEventState/SummonFailed": "failed", + "EEventState/SummonStart": "in process", + "EEventState/SummonSuccess": "success", "EFFECTIVE DISTANCE": "EFFECTIVE DISTANCE", "EFSR2Mode/Balanced": "balanced", "EFSR2Mode/Off": "off", @@ -13008,12 +12963,12 @@ "EItemAttributeId/HeatFactor": "CĂLDURĂ", "EItemAttributeId/LimitedDiscard": "Nu poate fi aruncat în raid", "EItemAttributeId/LimitedDiscard/Tooltip": "Articolul va fi distrus dacă încerci să-l arunci sau dacă caracterul decedează cu acest obiect în inventar. Nu se aplica obiectelor marcate cu \"Găsit în Raid\".", - "EItemAttributeId/MalfFeedChance": "Risc defecțiune alimentare", + "EItemAttributeId/MalfFeedChance": "Șansa defecțiune alimentare", "EItemAttributeId/MalfMisfireChance": "Șansa rateu", "EItemAttributeId/PyrotechnicDelay": "Întârziere explozie după impact", - "EItemQuickUseMode/Disabled": "Dezactivat", - "EItemQuickUseMode/InRaidAndInLobby": "În raid și în depozit", - "EItemQuickUseMode/InRaidOnly": "Doar în raid", + "EItemQuickUseMode/Disabled": "Disabled", + "EItemQuickUseMode/InRaidAndInLobby": "In raid and stash", + "EItemQuickUseMode/InRaidOnly": "In raid only", "EMPTY_SLOT": "GOL", "EMalfunctionState/Feed": "Problemă alimentare", "EMalfunctionState/HardSlide": "Închizător înțepenit", @@ -13023,11 +12978,11 @@ "EMatchingStatus/GroupPlayer": "Doar liderul poate începe jocul", "EMatchingStatus/NotEnoughPlayers": "Nu sunt suficienți jucători pentru a începe", "EMatchingStatus/NotReady": "Nu toți jucătorii sunt pregătiți de raid", - "ENEMY": "INAMIC", - "ENEMYDOWN": "INAMIC DOBORÂT", - "ENEMYHIT": "INAMIC LOVIT", - "ENERGY": "ENERGIE", - "ENicknameError/CharacterLimit": "Ai atins limita de caractere", + "ENEMY": "ENEMY", + "ENEMYDOWN": "ENEMY DOWN", + "ENEMYHIT": "ENEMY HIT", + "ENERGY": "ENERGY", + "ENicknameError/CharacterLimit": "Ai ajuns la limita de caractere", "ENicknameError/DigitsLimit": "Prea multe numere în nume (Max 4)", "ENicknameError/InvalidNickname": "Nume invalid", "ENicknameError/NicknameChangeTimeout": "Încearcă din nou mai târziu", @@ -13067,9 +13022,9 @@ "EStatQuestType/BringItemToTrader": "Găsește și transferă", "EStatQuestType/Eliminate": "Eliminare", "EStatQuestType/SurviveOnLocation": "Extragere din locație", - "ETraderServiceType/BtrBotCover": "Foc de acoperire", - "ETraderServiceType/BtrItemsDelivery": "Mută articolele în depozit", - "ETraderServiceType/PlayerTaxi": "Ia taxiul", + "ETraderServiceType/BtrBotCover": "Cover fire", + "ETraderServiceType/BtrItemsDelivery": "Move items to stash", + "ETraderServiceType/PlayerTaxi": "Take a ride", "EXAMINE": "EXAMINEAZĂ", "EXAMINE IN PROGRESS": "EXAMINEZ", "EXAMINE: ": "EXAMINEAZĂ: ", @@ -13080,7 +13035,7 @@ "EXFILTRATION_WAIT_DEPARTURE": "Așteaptă plecarea trenului", "EXFIL_ARMOR_TIP": "Nu te poți cățăra purtând armură", "EXFIL_BUNKER_D2": "D-2", - "EXFIL_BUNKER_D2_BUTTON": "Apasă butonul de la ușă", + "EXFIL_BUNKER_D2_BUTTON": "APASĂ BUTONUL", "EXFIL_BUNKER_D2_POWER": "Pornește alimentarea din birourile comandamentului", "EXFIL_BUNKER_POWER": "Pornește sursa de putere la generator", "EXFIL_Bunker": "Bunker Hermetic Door", @@ -13095,7 +13050,7 @@ "EXFIL_NEED_ITEM {0}": "Îți trebuie {0} pentru a fi evacuat aici", "EXFIL_ScavCooperation": "Scav Lands (Co-Op)", "EXFIL_TIP_CLOSE_DOOR_AND_LEAVE": "Închide ușa", - "EXFIL_Train": "Tren Blindat", + "EXFIL_Train": "Armored Train", "EXFIL_Transfer": "Transferă {0} ({1})", "EXFIL_ZB013": "ZB-013", "EXFIL_button_announcer": "Oprește anunțul", @@ -13108,19 +13063,19 @@ "EXFIL_elevator_floor": "Apăsați butonul pentru etajul dorit", "EXFIL_elevator_power": "Pornește alimentarea lifturilor", "EXFIL_elevator_wait": "Așteaptă liftul", - "EXFIL_gates_open": "Deschide poarta", + "EXFIL_gates_open": "Deschide porțile", "EXFIL_tip_backpack": "Rucsacul tău este prea mare", - "EXFIL_vent": "Gură de Canal", + "EXFIL_vent": "Sewer Manhole", "EXFIL_water_drain": "Coboară nivelul apei", "EXFIL_water_wait": "Așteaptă să scadă nivelul apei", "EXHAUSTED": "EPUIZAT", "EXITLOCATED": "IEȘIRE LOCALIZATĂ", - "EXPLOSION DELAY": "ÎNTÂRZIERE EXPLOZIE", + "EXPLOSION DELAY": "TIMP ÎNTÂRZIERE", "EXPLOSION DISTANCE": "RAZA EXPLOZIEI", - "EYES PROTECTION": "PROTECȚIE OCHI CONTRA GRENADELOR ORBITOARE", - "Earpiece": "Căști", + "EYES PROTECTION": "PROTECȚIE OCHI PENTRU GRENADE DIVERSIUNE", + "Earpiece": "Cască", "Ears": "Urechi", - "East Gate": "Buncărul Scavilor", + "East Gate": "Scav Bunker", "EditMapMarker": "EDITEAZA SEMN", "Editbuild": "EDITEAZA ȘABLON", "Effects volume:": "Effects volume:", @@ -13142,7 +13097,6 @@ "EnduranceBuffRestorationTimeRed": "Scade timpul de recuperare a suflului cu [{0:0%}]", "EnduranceDescription": "Anduranța influențează rata de epuizare în timpul alergării sau a săriturilor, precum și reținerea și restabilirea respirației.", "EnduranceHands": "Crește anduranța brațelor", - "EnduranceLevelingUpDescription": "Abilitatea Anduranță crește prin alergări fără a fi afectat de starea supraîncărcat, și prin exerciții în sala din Refugiu.", "EnergyExpensesUp {0}": "Consumul energiei crescut cu {0}", "EnergyRate": "Recuperarea energiei", "Enter": "Intră", @@ -13169,10 +13123,10 @@ "EquipmentBuilds/PresetSaved": "Echipamentul a fost salvat", "EquipmentPresets": "Kituri", "Equipped": "ECHIPAT", - "Equipped locked slot": "Nu poți modifica plăcuțele balistice ale blindajului echipat. Dă-l jos mai întâi.", + "Equipped locked slot": "You can't modify ballistic plates in equipped body armor. Take it off first.", "Equivalent sum of the deal": "Echivalent numerar al schimbului", "Error": "Eroare", - "Error/MatchingAborted": "A apărut o eroare la căutarea meciului. Te rugăm să încerci din nou.", + "Error/MatchingAborted": "An error occurred during matching. Please try again.", "Error/VoiceChangingFailed": "Eșec la modificarea vocii. Încearcă din nou mai târziu.", "Errors/AFKQuitHeader": "Timp expirat repaus", "Errors/AFKQuitText": "Jocul se va închide din cauza unei perioade lungi de inactivitate", @@ -13185,13 +13139,13 @@ "Exceptions:": "Exceptions:", "Exhaustion": "Oboseală", "Exhibition/BlockedMessage": "Nu este disponibil pentru contul curent", - "Exit": "IEȘIRE", - "Exit1": "Gaura din Zid Lângă Munte", + "Exit": "EXIT", + "Exit1": "Hole in the Wall by the Mountains", "Exit2": "Heating Pipe", - "Exit3": "Ușă Ermetică Depozit", + "Exit3": "Depot Hermetic Door", "Exit4": "Checkpoint Fence", "ExitConfirm": "Ești sigur că vrei să ieși?", - "Exit_E10_coop": "Subsol Pinewood (Co-Op)", + "Exit_E10_coop": "Pinewood Basement (Co-Op)", "ExpBonusKilled": "Decedat în Misiune (KIA)", "ExpBonusLeft": "Dezertor", "ExpBonusMissingInAction": "Dispărut în Misiune (MIA)", @@ -13199,9 +13153,9 @@ "ExpBonusSurvived": "Supraviețuit", "Experience Needed for Next Level": "Experiența Necesară pentru nivelul următor", "Experience: +": "Experiență: +", - "ExperienceAndRewards": "Experiență și Recompense", - "ExperienceCalculation": "Calcul Experiență", - "ExperimentalFogInCity": "Ceață experimentală pentru Străzile din Tarkov", + "ExperienceAndRewards": "Experience and rewards", + "ExperienceCalculation": "Experience calculation", + "ExperimentalFogInCity": "Experimental fog on Streets of Tarkov", "Extraction in {0:F1}": "Extracție în {0:F1}", "Extraction point": "Punct de extragere", "Extraction point is found!": "Punct de extracție gasit!", @@ -13228,11 +13182,11 @@ "FUEL SUPPLY": "REZERVĂ COMBUSTIBIL", "FUTURE BONUSES:": "FUTURE BONUSES:", "FUTURE NEGATIV BONUSES:": "FUTURE PENALTIES:", - "FaceCover": "Față", + "FaceCover": "Acoperire față", "Factory": "Uzina", - "Factory Far Corner": "Colțul de la Capătul Uzinei", + "Factory Far Corner": "Factory Far Corner", "Factory Shacks": "Factory Shacks", - "Factory gate": "Poarta Uzinei (Co-Op)", + "Factory gate": "Factory Gate (Co-Op)", "FactoryEnvironmentUiType": "Uzina", "Failed to sort item in {0}": "Eșec în sortarea articolelor în {0}", "Fails": "Eşecuri", @@ -13241,23 +13195,23 @@ "FieldMedicineDescription": "Expertiza în chirurgie de front facilitează aplicarea atelelor și a bandajelor și reduce riscul hemoragiilor repetate.", "FilterSearch": "FILTREAZĂ DUPĂ ARTICOL", "FinalRun": "FinalRun", - "FinalRunDescription": "Misiune sinucigașă în cele mai infame locații din Tarkov. Obiectivul este să termini misiunea în timp ce te aperi de valuri întregi de Scavi și să scapi cu viață.", + "FinalRunDescription": "Suicide missions in the famous locations of Tarkov. The task is to complete the mission while defending against waves of scavs and get out of there alive.", "FinalRunDescriptionShort": "LAST MAN STANDING", "FindEp": "Găsește un punct de extracție", "FirstAid": "Prim Ajutor", "FirstAidDescription": "Abilitățile de prim ajutor fac uzul de truse de prim ajutor mai rapid și mai eficient.", - "FirstPrimaryWeapon": "Curea", - "Flash & clear": "Orbește și curăță", - "FogType/Continuous": "Ceață Continuă", + "FirstPrimaryWeapon": "Pe curea", + "Flash & clear": "Flash și curăță", + "FogType/Continuous": "Continuous fog", "FogType/Faint": "Faint fog", - "FogType/Fog": "Ceață", - "FogType/Heavy": "Ceață Grea", - "FogType/NoFog": "Fără Ceață", - "FoldStock": "Pliere sau depliere pat", - "Food": "Mâncare", + "FogType/Fog": "Fog", + "FogType/Heavy": "Heavy fog", + "FogType/NoFog": "No fog", + "FoldStock": "Fold or unfold stock", + "Food": "Food", "ForbiddenPassword": "Formatul parolei este invalid", - "ForceAutoWeaponMode": "Forțează selectorul pe automat", - "Foregrip": "Mâner față", + "ForceAutoWeaponMode": "Set fire mode to full auto", + "Foregrip": "Foregrip", "FoundInRaid": "Găsit în raid", "Free cam": "Free camera", "Freetrading": "Free Trading", @@ -13272,9 +13226,8 @@ "Friends": "Prieteni", "Friends invite is already sent": "Deja ai trimis o cerere de prietenie.", "Friends list": "Lista de prieteni", - "FrostbiteBuff": "Degerătura Moranei", "Full": "Full", - "Full Recovery Time": "Timpul pentru recuperare completă", + "Full Recovery Time": "Timpul de recuperare completă", "Fullscreen mode:": "Screen mode:", "Func mods": "Componente Func", "Functional mods": "Componente Funcționale", @@ -13282,9 +13235,9 @@ "GAME": "JOC", "GAME CONDITIONS": "GAME TERMS", "GEAR": "GEAR", - "GET": "OBȚINE", - "GET READY!": "FII PREGĂTIT", - "GETBACK": "ÎNAPOI", + "GET": "GET", + "GET READY!": "GET READY!", + "GETBACK": "GET BACK", "GETINCOVER": "TAKE COVER", "GOFORWARD": "GO FORWARD", "GOGOGO": "GO GO GO", @@ -13299,34 +13252,34 @@ "Game reconnection...": "Reconectare la joc...", "Game settings": "Setări raid", "Game world creating...": "Creare lume joc...", - "Gate 0": "Poarta 0", - "Gate 2": "Poarta 2", - "Gate 3": "Poarta 3", - "Gate To Factory": "Poarta Spre Uzină", - "Gate m": "Poartă Cort Medical", + "Gate 0": "Gate 0", + "Gate 2": "Gate 2", + "Gate 3": "Gate 3", + "Gate To Factory": "Gate To Factory", + "Gate m": "Med Tent Gate", "Gear parts": "Comp.echipament", "Generator": "GENERATOR", "Get items": "Obține", - "Get ready": "Fii Pregătit", + "Get ready": "Get ready", "GetOut": "Ieși", "Goggles": "Ochelari", "Good standing": "bun", "GrassShadow": "Grass shadows", "Grenade": "Grenadă", "GrenadeLauncher Mastering": "Aruncător de grenade", - "Group disbanded": "Grupul a fost desființat", + "Group disbanded": "Grup a fost desființat", "Group disbanded by a leader": "Liderul a desființat grupul.", "Group leader has been changed": "Liderul grupului a fost schimbat", "Group leadership has been transfered to {0}!": "Conducerea grupului i-a fost transferată lui {0}!", "Group max count reached!": "Grupul este plin!", - "Group member level above": "Unul din membrii grupului are nivelul peste {0}", - "Group member level below": "Unul din membrii grupului are nivelul sub {0}", - "Group too big": "Numărul maxim de membrii a fost depășit", - "GroupCoopUnavailable": "Modul Co-op nu este disponibil pentru acest grup", + "Group member level above": "One of the group members has a level above {0}", + "Group member level below": "One of the group members has a level below {0}", + "Group too big": "Group max member count exceeded", + "GroupCoopUnavailable": "Co-op mode is unavailable for the current group", "GroupDecline": "Refuză", "GroupInviteDescription": "{0} te invită în grup", "GroupInviteHeader": "Invitație în grup", - "GroupPlayerBlocking/NotReady": "Grupul nu este pregătit", + "GroupPlayerBlocking/NotReady": "Group is not ready", "GroupStatus/NotReady": "Not ready", "HANDBOOK": "MANUAL", "HANDBROKEN": "MÂNĂ RUPTĂ", @@ -13336,22 +13289,21 @@ "HEALTH_TAB": "SĂNĂTATE", "HELLO": "SALUT", "HELP": "AJUTOR", - "HIDEOUT": "Refugiu", + "HIDEOUT": "ASCUNZĂTOARE", "HIGH_PACKETS_LOSS": "Pierdere mare de pachete", "HIT": "LOVIT", - "HMG": "Mitraliere pe Afet", + "HMG": "HMGs", "HMGDescription": "Abilitatea de mânuire a mitralierei cu afet îmbunătățește manipularea în general, reduce reculul și timpul de reîncărcare al acestora.", - "HMGLevelingUpDescription": "Abilitatea Mitraliere cu Afet crește prin tragerea și reîncărcarea acestor arme.", "HOLD FIRE": "HOLD FIRE", "HOLDFIRE": "HOLD FIRE", "HOLDPOSITION": "HOLD POSITION", "HOURS": "h", "HP": "HP", "HP RESOURCE": "HP RESOURCE", - "HYDRATION": "HIDRATARE", - "Halloween. Random effects at the start of each raid": "Halloween. Efecte aleatorii la începutul fiecărui raid", - "HalloweenBuff": "Halloween. Efecte aleatorii la începutul fiecărui raid", - "Handover items to trader": "Predă obiectele comerciantului", + "HYDRATION": "HYDRATION", + "Halloween. Random effects at the start of each raid": "Halloween. Random effects at the start of each raid", + "HalloweenBuff": "Halloween. Random effects at the start of each raid", + "Handover items to trader": "Preda obiectele comerciantului", "HandsTremor": "Tremuratul mâinilor", "Has been transfered": "Transferat", "Head": "CAP", @@ -13363,7 +13315,7 @@ "HeadSegment/lowernape": "Baza cefei", "Headbobbing:": "Head bobbing:", "Headshot": "Lovitură la cap", - "Headwear": "Cap", + "Headwear": "Acoperire cap", "Healed": "Vindecat", "Healing": "Vindecare...", "Health": "Viață", @@ -13378,47 +13330,44 @@ "HealthElitePosion": "Nivel imunitate la otravă [({0})]", "HealthEnergy": "Reduce consumul energiei cu [{0:0%}]", "HealthHydration": "Reduce rata deshidratării cu [{0:0%}]", - "HealthLevelingUpDescription": "Abilitatea Sănătate crește indirect o dată cu abilitățile Forță, Anduranța, și Vitalitate.", "HealthOfflineRegenerationInc": "Crește regenerarea în afara raidului cu [{0:0%}]", - "HealthRate": "Regenerarea sănătății", + "HealthRate": "Regenerarea vieții", "HealthTreatment/SkipHealthTreatmentDialogue": "Atenție! Mai ai puțină viață.\nSari peste tratamentul de recuperare și\ntreci la MENIUL PRINCIPAL?", "Heating": "ÎNCĂLZIRE", "Heavy": "Greu", "HeavyBleeding": "Hemoragie", - "HeavyVestBluntThroughputDamageReduction": "Reduce daunele contondente asupra părților acoperite de blindaj greu cu [{0:0.#%}]", - "HeavyVestDeteriorationChanceOnRepairReduce": "Reduce uzura atunci când folosești kituri de reparație cu [50%]", - "HeavyVestMoveSpeedPenaltyReduction": "Reduce malusul vitezei de deplasare cu armuri grele cu [{0:0.#%}]", - "HeavyVestNoBodyDamageDeflectChance": "Șansa de a ricoșa un glonț cu armura grea", - "HeavyVestRepairDegradationReduction": "Reduce uzura atunci când folosești kituri de reparație cu [{0:0.#%}]", - "HeavyVests": "Veste Blindate Grele", - "HeavyVestsDescription": "Abilitatea de a purta veste blindate grele reduce daunele primite de la fragmentele penetrante, daunele de la explozii atât în armură cât și în sănătate și crește mobilitatea.", - "HeavyVestsLevelingUpDescription": "Abilitatea Vestelor Blindate Grele crește prin repararea vestelor blindate grele și a plăcilor balistice folosind kituri de reparație.", - "Hideout/Craft/ToolMarkerTooltip": "Acest obiect va fi folosit drept unealtă. Va fi returnat în depozit la finalizarea producției artizanale.", - "Hideout/Handover window/Caption/All weapons": "Toate armele", - "Hideout/Handover window/Message/Items in stash selected:": "Articole alese din depozit:", - "Hideout/WeaponStand": "Rastel", - "Hideout/handover window/Caption/All items": "Toate obiectele", - "Hideout/placeoffame": "Holul Faimoșilor", - "Hideout/placeoffame/bigtrophies": "Trofee Mari", - "Hideout/placeoffame/dogtags": "Plăcuțe", - "Hideout/placeoffame/smalltrophies": "Trofee Mici", + "HeavyVestBluntThroughputDamageReduction": "Reduces blunt damage to body parts covered by heavy armor by [{0:0%}]", + "HeavyVestDeteriorationChanceOnRepairReduce": "Chance to not apply wear during repair (50%)", + "HeavyVestMoveSpeedPenaltyReduction": "Reduces movement speed penalty while wearing heavy armor by [{0:0%}]", + "HeavyVestNoBodyDamageDeflectChance": "Chance to deflect a bullet from heavy armor", + "HeavyVestRepairDegradationReduction": "Reduces wear amount when using repair kits by [{0:0%}]", + "HeavyVests": "Heavy Vests", + "HeavyVestsDescription": "Heavy body armor wearing skill reduces amount of received penetration health damage, explosive damage to health and armor and improves mobility.", + "Hideout/Craft/ToolMarkerTooltip": "This item will be used as an auxiliary tool. It will return to your stash once production is complete.", + "Hideout/Handover window/Caption/All weapons": "All weapons", + "Hideout/Handover window/Message/Items in stash selected:": "Items in stash selected:", + "Hideout/WeaponStand": "Weapon stand", + "Hideout/handover window/Caption/All items": "All items", + "Hideout/placeoffame": "Hall of Fame", + "Hideout/placeoffame/bigtrophies": "Large trophies", + "Hideout/placeoffame/dogtags": "Dogtags", + "Hideout/placeoffame/smalltrophies": "Small trophies", "HideoutExtraSlots": "+2 locuri pentru canistre carburant\n+2 locuri pentru filtre de apă\n+2 locuri pentru filtre de aer\n+2 la limita de stocare a monedelor în ferma de bitcoin", "HideoutInteractions/TransferItems": "Transferă bunurile", - "HideoutManagement": "Gestiunea refugiului", - "HideoutManagementLevelingUpDescription": "Abilitatea de Administrare Refugiu crește prin creații artizanale și prin îmbunătățirea zonelor din Refugiu.", + "HideoutManagement": "Gestiunea ascunzătorii", "HideoutResourceConsumption": "Diminuează consumul de combustibil, și a filtrelor de aer și apă cu o rată de [{0:0%}]", - "HideoutZoneBonusBoost": "Crește toate procentajele de bonus de la zonele Refugiului cu [{0:0.#}%]", + "HideoutZoneBonusBoost": "Crește toate procentajele de bonus din zonele de Ascunziș cu [{0:0}%] din valorile lor", "Hideout\\Craft\\ToolMarketTooltip": "", - "Hideout_area_16_stage_3_description": "Zona dedicată din Refugiu pentru păstrarea obiectelor de colecție.", + "Hideout_area_16_stage_3_description": "A full-fledged area in the Hideout dedicated to storing items of collectible value.", "Hiding objective {0:F1}": "Ascund obiectivul {0:F1}", "HighQualityColor": "High-quality color", "HighQualityColor setting will be fully applied after the raid restarts": "Setarea va fi aplicată cu succes în raidul următor", - "Hold to Aim": "Ține pentru ochire", - "Hold to Crouch": "Ține pentru ghemuire", - "Hold to Lean": "Ține pentru înclinare", - "Hold to Sprint/hold breath": "Ține pentru sprint/Ține respirația", - "Hold to Walk": "Ține pentru mers", - "Hole Exfill": "Gaura din Gard", + "Hold to Aim": "Hold to aim", + "Hold to Crouch": "Hold to crouch", + "Hold to Lean": "Hold to lean", + "Hold to Sprint/hold breath": "Hold to sprint/Hold breath", + "Hold to Walk": "Hold to walk", + "Hole Exfill": "Hole in the Fence", "Holster": "Toc", "Horrible standing": "oribil", "House": "Casă", @@ -13426,7 +13375,7 @@ "HurtLight": "RĂNIT", "HurtMedium": "RĂNIT", "HurtNearDeath": "RĂNIT", - "HydrationRate": "Recuperarea hidratării", + "HydrationRate": "Recuperarea hidratației", "IGNORE": "IGNORĂ", "IImmunityPreventedNegativeEffect": "Imunitate", "INSPECT": "VERIFICĂ", @@ -13437,14 +13386,13 @@ "INSURED": "ASIGURAT", "INTERACTIONS:": "INTERACTIONS:", "INTHEFRONT": "IN THE FRONT", - "INVITE": "INVITĂ", + "INVITE": "INVITE", "ITEM IS NOT EXAMINED!": "OBIECTUL NU A FOST EXAMINAT ÎNCĂ!", "Identifier": "Source string", "Illumination": "LUMINA", "Immunity": "Imunitate", "ImmunityAvoidPoisonChance": "Crește șansa de a evita otrăvurile cu [{0:0%}]", "ImmunityDescription": "Imunitatea scade susceptibilitatea la îmbolnăviri și crește eficiența tratamentelor.", - "ImmunityLevelingUpDescription": "Abilitatea Imunitate crește atunci când suferi de efectul otrăvurilor și a altor efecte negative provenite din folosirea stimulentelor.", "ImmunityMiscEffects": "Reduce toate efectelor secundare ale stimulanților, și a lipsei mâncării și a apei cu [{0:0%}]", "ImmunityMiscEffectsChance": "Șansa de a câștiga imunitate la efectele negative provocate de stimulanți, mâncare, apă până la [{0:0%}]", "ImmunityPainKiller": "Crește perioada de efect a analgezicului cu [{0:0%}]", @@ -13453,8 +13401,8 @@ "In equipment": "ÎN ECHIPAMENT", "InMenu": "Meniu", "InRaid": "Raid", - "InRaidButton": "ÎNCEPE RAID", - "InRaidReady": "PREGĂTIT", + "InRaidButton": "ÎN RAID", + "InRaidReady": "READY", "Include parts that you have": "Include piese pe care le ai", "Incoming package": "Livrare sosită", "Increase": "Crește cu", @@ -13473,16 +13421,15 @@ "IntellectEliteContainerScope": "Ghicește conținutul containerului fără să îl deschizi", "IntellectEliteNaturalLearner": "Nu ai nevoie de manual pentru examinarea obiectului", "IntellectLearningSpeed": "Crește viteza de examinare cu [{0:0%}]", - "IntellectLevelingUpDescription": "Abilitatea Intelect crește prin examinarea obiectelor necunoscute și prin repararea armelor.", "IntellectRepairPointsCostReduction": "Reduce consumul punctelor din trusa de reparații cu [{0:0%}]", "IntellectWeaponMaintance": "Crește eficiența reparației armelor cu [{0:0%}]", "IntelligenceCenter": "CENTRUL DE INFORMAȚII", "Intensity:": "Intensity:", "Interact": "Interact", - "Interchange": "Intersecție", - "Interchange Cooperation": "Tabără Scavi (Co-Op)", + "Interchange": "Ultra", + "Interchange Cooperation": "Scav Camp (Co-Op)", "Interface language:": "Interface language", - "Interface layout:": "Aranjament interfață:", + "Interface layout:": "Interface layout:", "Intoxication": "Toxină necunoscută", "Invalid EXFIL Point": "Punct de EXTRACȚIE invalid", "Inventory": "Deschide inventarul", @@ -13496,37 +13443,37 @@ "Inventory Errors/Cannot resize {0} {1}": "Nu se poate adăuga {0} la {1}. Arma modificată va ocupa mai mult spațiu decât este disponibil. Încearcă să-ți repoziționezi arma în altă parte a depozitului.", "Inventory Errors/Conflicting Items": "Nu se pot instala {0} și {1} simultan", "Inventory Errors/Conflicting slot": "Conflict cu celula {0}", - "Inventory Errors/Exceeded the maximum limit of item {0} in the inventory ({1} max)": "Limita maximă depășită pentru obiectul {0} în inventar ({1} max)", - "Inventory Errors/Infinite item cycle": "Obiectul nu poate fi stocat în sine însuși", - "Inventory Errors/Item is incompatible": "Element incompatibil", - "Inventory Errors/Item not applicable": "Articol neaplicabil", - "Inventory Errors/Looting unlootable": "Nu poți prăda acest obiect", + "Inventory Errors/Exceeded the maximum limit of item {0} in the inventory ({1} max)": "Exceeded the limit of item {0} in the inventory ({1} max)", + "Inventory Errors/Infinite item cycle": "Item cannot be stored within itself", + "Inventory Errors/Item is incompatible": "Item is incompatible", + "Inventory Errors/Item not applicable": "Cannot apply to item", + "Inventory Errors/Looting unlootable": "You can't loot this item", "Inventory Errors/Magazine is full": "Încărcătorul este plin", "Inventory Errors/Mod {0} cannot be installed to folded weapon": "Componenta {0} nu poate fi montată pe arma pliată", - "Inventory Errors/Moving to scav": "Nu se pot introduce obiectele în celula Scavului", - "Inventory Errors/Moving to trader": "Nu se pot introduce obiectele în celula comerciantului", - "Inventory Errors/No vital parts": "Nu poți echipa arma. Unele dintre piesele vitale lipsesc ({0}).", - "Inventory Errors/Not examined equip": "Nu poți echipa obiectul neexaminat", - "Inventory Errors/Not examined install": "Nu poți monta dispozitivul neexaminat", - "Inventory Errors/Not examined target install": "Nu poți aplica obiectul neexaminat", - "Inventory Errors/Not moddable in raid": "Nu poți atașa în timpul raidului", - "Inventory Errors/Not moddable without multitool": "Multitool necesar pentru ataşare", - "Inventory Errors/Putting unlootable": "Celula nu poate fi prăduită", - "Inventory Errors/Putting unlootable ": "Celula nu poate fi prăduită", - "Inventory Errors/Same place": "Nu puteți transfera obiectul în același loc", - "Inventory Errors/Slot is blocked": "{0} blochează această celulă", - "Inventory Errors/Slot not empty": "Celula nu este goală", - "Inventory Errors/Take not examined equip": "Nu poți da jos echipamentul neexaminat", - "Inventory Errors/Take not examined install": "Articolul nu este examinat", - "Inventory Errors/Taking from ragfair": "Nu poți modifica produsele comerciantului", - "Inventory/IncompatibleItem": "Nu poți folosi acest articol", - "Inventory/PlayerIsBusy": "Mâinile sunt ocupate", - "InventoryError/AddToFavorites/NoFreeSpaceForNonWeaponItems": "Adăugat numărul maxim de articole profilului ({0}/{0})", - "InventoryError/AddToFavorites/NoFreeSpaceForWeapons": "Adăugat numărul maxim de arme profilului ({0}/{0})", - "InventoryError/DiscardLimitForContentReached{0}": "Containerul \"{0}\" conține obiecte care nu pot fi transferate", + "Inventory Errors/Moving to scav": "Cannot insert items into Scav's slot", + "Inventory Errors/Moving to trader": "Cannot insert items into trader's slot", + "Inventory Errors/No vital parts": "Cannot equip the weapon. Some of the vital parts are missing ({0}).", + "Inventory Errors/Not examined equip": "Cannot equip unexamined item", + "Inventory Errors/Not examined install": "Cannot install unexamined item", + "Inventory Errors/Not examined target install": "Cannot apply to unexamined item", + "Inventory Errors/Not moddable in raid": "Cannot attach while in raid", + "Inventory Errors/Not moddable without multitool": "Multitool is required to attach", + "Inventory Errors/Putting unlootable": "This slot is unlootable", + "Inventory Errors/Putting unlootable ": "This slot is unlootable", + "Inventory Errors/Same place": "You can't transfer the item to the same place", + "Inventory Errors/Slot is blocked": "{0} is blocking this slot", + "Inventory Errors/Slot not empty": "Slot is not empty", + "Inventory Errors/Take not examined equip": "You can't take off unexamined equipment", + "Inventory Errors/Take not examined install": "Item is not examined", + "Inventory Errors/Taking from ragfair": "You can't change trader's items", + "Inventory/IncompatibleItem": "You can't use this item", + "Inventory/PlayerIsBusy": "Hands are busy", + "InventoryError/AddToFavorites/NoFreeSpaceForNonWeaponItems": "Added maximum number of items to profile ({0}/{0})", + "InventoryError/AddToFavorites/NoFreeSpaceForWeapons": "Added maximum number of weapons to profile ({0}/{0})", + "InventoryError/DiscardLimitForContentReached{0}": "Container \"{0}\" contains items that can't be transferred", "InventoryError/DiscardLimitForStackReached": "O parte din stivă nu poate fi transferată", "InventoryError/DiscardLimitReached{0}": "{0} nu poate fi transferat", - "InventoryError/ItemIsBusy": "Nu poți interacționa cu obiectul cât timp este utilizat de alt jucător.", + "InventoryError/ItemIsBusy": "Cannot interact with the item while it is being used by another player.", "InventoryError/NoCompatibleAmmo": "Nu ai deloc muniție compatibilă", "InventoryError/NoPossibleActions": "Nicio acțiune disponibilă", "InventoryError/Refill/NoSources": "Nicio sursă de la care să reumpli", @@ -13537,22 +13484,22 @@ "InventoryError/You can't load ammo into this item": "Nu poți încărca muniție în acest obiect", "InventoryError/You can't unload ammo from an installed magazine": "Nu poți descărca muniție dintr-un încărcător montat pe armă", "InventoryError/you can't unload from this item": "Nu poți descărca muniție din acest obiect", - "InventoryErrors/Container/ContentModificationUnavailable": "Arma nu poate fi înlocuită", - "InventoryErrors/MalfunctionError": "Trebuie să repari defecțiunile mai întâi", - "InventoryScreen/SpecialSlotsHeader": "Celule speciale", - "InventoryWarning/ItemsToBeDestroyed": "Unele obiecte vor fi pierdute", - "InventoryWarning/ItemsWillBeDestroyed": "ATENȚIE! Următoarele obiecte vor fi pierdute irevocabil:", - "InventoryWarning/UnableToDiscardDueToLimits": "Articolele nu pot fi aruncate în siguranță", + "InventoryErrors/Container/ContentModificationUnavailable": "Unable to replace the weapon", + "InventoryErrors/MalfunctionError": "You must fix malfunctions first", + "InventoryScreen/SpecialSlotsHeader": "Special slots", + "InventoryWarning/ItemsToBeDestroyed": "Some items will be lost", + "InventoryWarning/ItemsWillBeDestroyed": "ATTENTION! Next items will be irrevocably lost:", + "InventoryWarning/UnableToDiscardDueToLimits": "Unable to safely discard items", "Inverted X axis": "Inverted X axis", "Inverted Y axis": "Inverted Y axis", "Inverted mouse look": "Inverted mouse look", - "Invitation to you has been cancelled": "Invitația ta a fost anulată.", - "Invite friends to dialogue": "Invită prieteni la dialog", - "Invite has been canceled": "Jucătorul {0} a refuzat invitația de grup", - "Invite to the player {0} has been cancelled": "Invitația către {0} a fost anulată", - "InviteInGroup": "Invită în grup", - "InvitePlayers": "INVITĂ JUCĂTORI ÎN CHAT", - "InviteToGroupDialogue": "Invită jucător la chat de grup", + "Invitation to you has been cancelled": "Your invite has been cancelled.", + "Invite friends to dialogue": "Invite friends to dialogue", + "Invite has been canceled": "Player {0} declined the group invite", + "Invite to the player {0} has been cancelled": "Invitation to user {0} has been cancelled", + "InviteInGroup": "Invite to group", + "InvitePlayers": "INVITE PLAYERS TO CHAT", + "InviteToGroupDialogue": "Invite user to group chat", "It": "Italiano", "Item collected: {0}": "Articolele au fost puse în depozit: {0}", "Item examined: ": "Articol examinat: ", @@ -13570,13 +13517,13 @@ "Item {0} is not found in stash": "Obiectul ({0}) nu a fost găsit în depozit", "ItemReward/Description": "Veți primi acest articol ca recompensă", "Items in stash selected:": "Obiecte din depozit selectate:", - "ItemsResearching": "Examinare și prădare obiecte", - "JOIN": "INTRĂ", + "ItemsResearching": "Examining and looting of items", + "JOIN": "JOIN", "Jaws": "Maxilar", - "Jump": "Săritură", + "Jump": "Jump", "KEY": "TASTĂ", "KIA": "DIA", - "KNIFE HIT RADIUS": "DISTANȚĂ DE LOVIRE", + "KNIFE HIT RADIUS": "RAZĂ DE LOVIRE", "KNIFE HIT SLASH DAM": "DAUNĂ LOVIRE", "KNIFE HIT SLASH RATE": "RATĂ LOVITURĂ CUȚIT", "KNIFE HIT STAB DAM": "DAUNĂ ÎNJUNGHIERE", @@ -13585,94 +13532,92 @@ "KNIFESONLY": "KNIFES ONLY", "Karma loss warning!": "Pierzi Karma!", "KeeperDoorOpen": "INTRĂ", - "KeyCombination_BlindShootAbove": "Foc orb deasupra", - "KeyCombination_BlindShootRight": "Foc orb dreapta", - "KeyCombination_CheckAmmo": "Verificare Închizător", - "KeyCombination_CheckMagazine": "Verifică muniția rămasă în încărcător", + "KeyCombination_BlindShootAbove": "Overhead blind fire", + "KeyCombination_BlindShootRight": "Right side blind fire", + "KeyCombination_CheckAmmo": "Check chamber", + "KeyCombination_CheckMagazine": "Check the remaining ammo count in magazine", "KeyCombination_CheckShootingMode": "Verifică selectorul", - "KeyCombination_CloseQuartersWeapon": "Alege arma albă", - "KeyCombination_CloseQuartersWeaponAttack": "Lovitură rapidă armă albă", - "KeyCombination_CommandsMenu": "Meniu de comenzi, gesturi și reacții", - "KeyCombination_Duck": "Comutare Ghemuit", - "KeyCombination_EaseDuck": "Ghemuit lin", - "KeyCombination_EventReaction": "Reacție la eveniment", - "KeyCombination_ExamineWeapon": "Verifică arma curentă", + "KeyCombination_CloseQuartersWeapon": "Select melee weapon", + "KeyCombination_CloseQuartersWeaponAttack": "Quick hit with melee", + "KeyCombination_CommandsMenu": "Commands, gestures and reactions menu", + "KeyCombination_Duck": "Toggle Crouch", + "KeyCombination_EaseDuck": "Smooth crouch", + "KeyCombination_EventReaction": "React to event", + "KeyCombination_ExamineWeapon": "Inspect current weapon", "KeyCombination_ExtractionList": "Verifică lista de evacuări disponibile", - "KeyCombination_Lean": "Înclină-te stânga sau dreapta", - "KeyCombination_LeanFixed": "Comutare înclinare la stânga sau la dreapta", + "KeyCombination_Lean": "Lean left or right", + "KeyCombination_LeanFixed": "Toggle lean left or right", "KeyCombination_LeanStep": "Sidestep left, right", "KeyCombination_LookAround": "Free look", - "KeyCombination_MagazineChoosing": "Alege încărcătorul", - "KeyCombination_OpticCalibration": "Reglează distanța de ochire", - "KeyCombination_QuickReloadWeapon": "Reîncărcare rapidă cu aruncarea încărcătorului", - "KeyCombination_RandomPhrase": "Frază: Mormăit/Batjocură", - "KeyCombination_ReloadWeapon": "Reîncarcă", + "KeyCombination_MagazineChoosing": "Select magazine", + "KeyCombination_OpticCalibration": "Adjust sighting distance", + "KeyCombination_QuickReloadWeapon": "Quick reload with magazine drop", + "KeyCombination_RandomPhrase": "Mumble/taunt phrase", + "KeyCombination_ReloadWeapon": "Reload", "KeyCombination_ScrollDescribe": "(Scroll) ", "KeyCombination_ShootingMode": "Comută selectorul", - "KeyCombination_SwitchAim": "Comută între vizoare", - "KeyCombination_SwitchAimSettings": "Comutare setări vizor", - "KeyCombination_SwitchWeaponButt": "Pliere sau depliere pat", - "KeyCombination_TacticalLamp": "Pornește laserul sau lanterna", - "KeyCombination_TacticalLampMode": "Comutare între lanternă și laser", - "KeyCombination_Title": "Controale avansate de luptă", + "KeyCombination_SwitchAim": "Switch between sights", + "KeyCombination_SwitchAimSettings": "Switch sight settings", + "KeyCombination_SwitchWeaponButt": "Fold or unfold stock", + "KeyCombination_TacticalLamp": "Toggle flashlight or laser device", + "KeyCombination_TacticalLampMode": "Switch flashlight or laser device mode", + "KeyCombination_Title": "Advanced combat controls", "KeyCombination_ToggleNVG": "Toggle on-head equipment (NVG, face shield)", - "KeyCombination_WalkMode": "Comută viteza de mers", - "KeyCombination_WalkModeAdjustment": "Ajustare viteză de mers", - "KeyCombination_WatchTime": "Verifică timpul rămas", + "KeyCombination_WalkMode": "Switch walking speed", + "KeyCombination_WalkModeAdjustment": "Adjust walking speed", + "KeyCombination_WatchTime": "Check remaining time", "Keys": "Taste", - "KickPlayer": "ELIMINĂ JUCĂTOR DIN CHAT", - "KickUserFromDialog": "{0} a fost scos din chat.", - "KillDeathRate": "(KDR) Rata Eliminări/Decese", - "Killed": "Eliminat", - "Killed by": "Eliminat de", - "Killed in Action": "Decedat în Misiune", - "Killed in action (KIA)": "Decedat în Acțiune (KIA)", - "Kills": "Eliminări", + "KickPlayer": "KICK USER FROM CHAT", + "KickUserFromDialog": "{0} was kicked from the chat.", + "KillDeathRate": "Kill/Death Ratio (KDR)", + "Killed": "Killed", + "Killed by": "Killed by ", + "Killed in Action": "Killed in Action", + "Killed in action (KIA)": "Killed In Action (KIA)", + "Kills": "Kills", "Kills Death Rate Short": "K/D: {0}", "Kills Short": "K: {0}", - "Kitchen": "BUCĂTĂRIA", - "Km2": "Km²", - "Knife": "Armă albă", - "Knock & run": "Bate", - "LATER": "MAI TÂRZIU", - "LEAVE_BTN": "IEȘI", - "LEFT: ": "PĂRĂSIT: ", - "LEFTFLANK": "FLANCUL STÂNG", - "LEGBROKEN": "PICIOR RUPT", - "LEVEL": "NIVEL:", - "LEVEL {0} UPGRADE REQUIREMENTS": "NIVELUL {0} CERINȚE ÎMBUNĂTĂȚIRE", + "Kitchen": "KITCHEN", + "Km2": "KM²", + "Knife": "Melee weapon", + "Knock & run": "Knock", + "LATER": "LATER", + "LEAVE_BTN": "LEAVE", + "LEFT: ": "LEFT: ", + "LEFTFLANK": "LEFT FLANK", + "LEGBROKEN": "BROKEN LEG", + "LEVEL": "LEVEL:", + "LEVEL {0} UPGRADE REQUIREMENTS": "LEVEL {0} UPGRADE REQUIREMENTS", "LH": "LH", "LL": "LL", - "LMG": "Mitraliere de companie", + "LMG": "LMGs", "LMGDescription": "Abilitatea de mânuire a mitralierei de companie îmbunătățește manipularea în general, reduce reculul și timpul de reîncărcare al acestora.", - "LMGLevelingUpDescription": "Abilitatea Mitraliere de Companie crește prin tragerea și reîncărcarea acestor arme.", - "LOAD": "ÎNCARCĂ", - "LOAD FROM DIRECTORY...": "Încărcați din dosar...", - "LOAD FROM FILE...": "Încărcați din fișier...", - "LOCKEDDOOR": "UȘĂ ÎNCUIATĂ", - "LOOT": "PRADĂ", - "LOOT FROM SCAVS": "PRADA DE LA SCAVI", - "LOOTBODY": "CAUTĂ CORPUL", - "LOOTCONTAINER": "CAUTĂ AICI", - "LOOTKEY": "IA CHEIA", - "LOOTMONEY": "IA BANII", - "LOOTWEAPON": "IA ARMA", - "LOSTVISUAL": "L-AM PIERDUT", + "LOAD": "LOAD", + "LOAD FROM DIRECTORY...": "Load from directory...", + "LOAD FROM FILE...": "Load from file...", + "LOCKEDDOOR": "LOCKED DOOR", + "LOOT": "LOOT", + "LOOT FROM SCAVS": "LOOT FROM SCAVS", + "LOOTBODY": "LOOT BODY", + "LOOTCONTAINER": "LOOT THIS", + "LOOTKEY": "LOOT KEY", + "LOOTMONEY": "LOOT MONEY", + "LOOTWEAPON": "LOOT WEAPON", + "LOSTVISUAL": "LOST VISUAL", "LVLKILLLIST": "NIVEL", - "Laboratory": "Laborator", + "Laboratory": "The Lab", "LaboratoryEnvironmentUiType": "Laborator", "Last game session": "Ultima sesiune de joc", - "LastHero": "UltimErou", - "LastHeroDescription": "Luptă cu inamicii într-un schimb de focuri fără sfârșit. Poate exista un singur câștigător.", - "LastHeroDescriptionShort": "Ești pe cont propriu", + "LastHero": "LastHero", + "LastHeroDescription": "A fight with the opponents in endless gunfight. There will be only one winner.", + "LastHeroDescriptionShort": "You are on your own", "Launcher": "Lansatoare de rachete", "LauncherDescription": "Abilitatea de manipulare a aruncătorului de grenade", - "LauncherLevelingUpDescription": "Abilitatea de mânuire a Aruncătoarelor de Grenade crește prin tragere și reîncărcare cu această armă.", - "LeanLockLeft": "Înclinare stânga", - "LeanLockRight": "Înclinare dreapta", - "LeanX negative": "Înclinare lină stânga", + "LeanLockLeft": "Lean left", + "LeanLockRight": "Lean right", + "LeanX negative": "Smoothly lean left", "LeanX positive": "Smoothly lean right", - "Leave": "Plecat", + "Leave": "Părăsit", "Leave Rate Short": "L/R: {0}%", "LeaveDialog": "{0} a părăsit dialogul.", "LeaveDialogue": "PĂRĂSEȘTE CHAT-UL SELECTAT", @@ -13684,9 +13629,9 @@ "Left Hand": "MÂNA STÂNGĂ", "Left Leg": "PICIOR STÂNG", "Left the Action": "Dezertor", - "LeftAlt": "Alt Stânga", - "LeftArm": "BRAȚ STÂNG", - "LeftStance": "Schimbare umăr", + "LeftAlt": "Left Alt", + "LeftArm": "Mâna Stângă", + "LeftStance": "Shoulder transition", "Less than 5": "Mai puțin de 5", "Less than half": "Mai puţin de jumătate", "Level ": "Nivel: ", @@ -13698,15 +13643,14 @@ "Light": "Ușor", "LightBleeding": "Sângerare", "LightVestBleedingProtection": "Părțile corpului acoperite de vestă ușoară blindată sunt imune la sângerare", - "LightVestDeteriorationChanceOnRepairReduce": "Reduce șansele de uzură atunci când folosești kituri de reparație cu [50%]", - "LightVestMeleeWeaponDamageReduction": "Reduce daunele armelor albe asupra părților acoperite de blindaj ușor cu [{0:0.#%}]", - "LightVestMoveSpeedPenaltyReduction": "Reduce efectul de scădere a vitezei de deplasare cu armuri ușoare cu [{0:0.#%}]", - "LightVestRepairDegradationReduction": "Reduce uzura atunci când folosești kituri de reparație cu [{0:0.#%}]", - "LightVests": "Veste Ușoare", - "LightVestsDescription": "Abilitatea de purtare a armurii ușoare ușurează mișcarea și reduce daunele corporale.", - "LightVestsLevelingUpDescription": "Abilitatea Vestelor Blindate Ușoare crește prin repararea vestelor blindate ușoare și a plăcilor balistice folosind kituri de reparație.", + "LightVestDeteriorationChanceOnRepairReduce": "Chance to not apply wear during repair (50%)", + "LightVestMeleeWeaponDamageReduction": "Reduces melee damage to body parts covered by light armor by [{0:0%}]", + "LightVestMoveSpeedPenaltyReduction": "Reduces movement speed penalty while wearing light armor by [{0:0%}]", + "LightVestRepairDegradationReduction": "Reduces wear amount when using repair kits by [{0:0%}]", + "LightVests": "Light Vests", + "LightVestsDescription": "Light body armor wearing skill improves mobility and reduces the amount of received penetration and melee damage to your health.", "Lighthouse": "Farul", - "Lighthouse_pass": "Poteca spre Far", + "Lighthouse_pass": "Path to Lighthouse", "Lighting quality:": "Lighting quality:", "Limit 60 FPS": "Limit 60 FPS", "LinkedSearch": "CĂUTARE RELAȚIONALĂ", @@ -13714,7 +13658,7 @@ "LoadUnloadSpeed": "Modificator viteză încărcare/descărcare", "Loading loot... CreatingPools": "Generare plajă de obiecte...", "Loading loot... LoadingBundles": "Încărcare obiecte...", - "Loading objects...": "Încărcare obiecte...", + "Loading objects...": "Loading objects...", "Loading...": "Încărcare...", "LoadingBundles": "Se încarcă fișierele de date...", "Lobby FPS Limit": "Lobby FPS Limit:", @@ -13725,38 +13669,37 @@ "Location Locked": "BLOCAT", "Location Not Available": "Nu este disponibilă", "Location Overloaded": "Supraîncărcat", - "Locked": "BLOCAT", - "Locked slot": "Componentele blindate integrate nu pot fi schimbate.", + "Locked": "LOCKED", + "Locked slot": "Built-in armor components cannot be changed", "LockedToConstruct": "Blocat", - "LockedToUpgrade": "Incuiat", - "Lockpick": "Forțează", - "Lockpicking": "Forțez", - "LockpickingDescription": "Abilitate lăcătușerie", - "LoginExist": "Numele există deja", - "Longevity": "Longevitate", - "LookX negative": "Privirea stânga", - "LookX positive": "Privirea dreapta", - "LookY negative": "Privirea sus", - "LookY positive": "Privirea jos", - "Looking for group...": "Caută grup...", - "LootGeneric": "PRADĂ", - "Looting": "Căutare", - "LootingCategory": "Căutare", - "Lose": "Înfrângere", - "Lower body": "Partea de jos", + "LockedToUpgrade": "Locked", + "Lockpick": "Lock pick", + "Lockpicking": "Lockpicking", + "LockpickingDescription": "Lock picking skill", + "LoginExist": "Login already exists", + "Longevity": "Longevity", + "LookX negative": "Look left", + "LookX positive": "Look right", + "LookY negative": "Look up", + "LookY positive": "Look down", + "Looking for group...": "Looking for a group...", + "LootGeneric": "LOOT", + "Looting": "Looting", + "LootingCategory": "Looting", + "Lose": "Defeat", + "Lower body": "Lower body", "Loyalty level (LL)": "Nivelul de loialitate (NL)", "Luma sharpen:": "Luma sharpen:", "Lvl": "Nivel", "M": "M", - "MAIL": "MESAJE", - "MALFUNCTION PROTECTION COMMON BUFF": "REDUCE RISCUL DE RATEU (COMUN)", - "MALFUNCTION PROTECTION RARE BUFF": "REDUCE RISCUL DE RATEU (RAR)", + "MAIL": "MESSENGER", + "MALFUNCTION PROTECTION COMMON BUFF": "REDUCES MALFUNCTION CHANCE (COMMON)", + "MALFUNCTION PROTECTION RARE BUFF": "REDUCES MALFUNCTION CHANCE (RARE)", "MALFUNCTION PROTECTIONS COMMON BUFF": "REDUCES MALFUNCTION CHANCE (COMMON)", "MALFUNCTION PROTECTIONS RARE BUFF": "REDUCES MALFUNCTION CHANCE (RARE)", "MAP": "HARTĂ", "MASTERING": "DEPRINDERE", "MATERIAL": "Material", - "MAX AMMO DAMAGE": "Daune", "MAXCOUNT": "NUMĂR MAX", "MAXIMUM THROW DAMAGE": "DISTRUGEREA MAXIMĂ PER FRAGMENT", "MED USE TIME": "TIMP APL. MED.", @@ -13772,7 +13715,7 @@ "MOD_EQUIPMENT_000": "ARC", "MOD_EQUIPMENT_001": "CĂȘTI", "MOD_FOREGRIP": "MÂNER FAȚĂ", - "MOD_Flashlight": "Lanternă", + "MOD_Flashlight": "LIGHT", "MOD_GAS_BLOCK": "BLOC DE GAZ", "MOD_HAMMER": "PERCUTOR", "MOD_HANDGUARD": "ULUC", @@ -13804,63 +13747,62 @@ "MachineGun Mastering": "Mitralieră", "MagDrills": "Exerciții încărcător", "MagDrillsDescription": "Abilitate care vizează manipularea încărcătoarelor - încărcarea și descărcarea muniției, verificarea numărului rămas de cartușe.", - "MagDrillsInstantCheck": "Încărcătoarele sunt verificate instant atunci când sunt mutate in inventar", - "MagDrillsInventoryCheckAccuracy": "Crește acuratețea de verificare a muniției prin meniul contextual cu [{0:0.#}%]", - "MagDrillsInventoryCheckSpeed": "Crește viteza de verificare a muniției prin meniul contextual cu [{0:0.#}%]", - "MagDrillsLevelingUpDescription": "Abilitatea Încărcătoare crește prin încărcarea, descărcarea și verificarea încărcătoarelor.", + "MagDrillsInstantCheck": "Magazine is checked instantly when moved to your inventory", + "MagDrillsInventoryCheckAccuracy": "Increases the accuracy of magazine check through the context menu by [{0}%]", + "MagDrillsInventoryCheckSpeed": "Increases the speed of magazine check through the context menu by [{0}%]", "MagDrillsLoadProgression": "Încărcarea este mai rapidă cu fiecare cartuș încărcat", - "MagDrillsLoadSpeed": "Crește viteza de încărcare a muniției cu [{0:0.#}%]", - "MagDrillsUnloadSpeed": "Crește viteza de descărcare a muniției cu [{0:0.#}%]", - "MagPreset/CaliberNotSelected": "Calibru nespecificat", - "MagPreset/DiscardCahangesDescription": "Schimbările vor fi pierdute.\nContinui?", - "MagPreset/Error/ContainsMissingItems": "Muniție indisponibilă:", - "MagPreset/HasMissingItems": "Muniție insuficientă pentru a încărca.", - "MagPreset/InvalidName{0}": "Nume șablon invalid \"{0}\".", - "MagPreset/LoadingComplete": "Încărcătoarele au fost încărcate", - "MagPreset/PresetRemoved{0}": "Șablonul \"{0}\" a fost șters.", - "MagPreset/PresetRenamed{0}": "Șablonul a fost redenumit \"{0}\".", - "MagPreset/PresetSaved{0}": "Șablonul \"{0}\" a fost salvat.", - "MagPreset/RemoveCaption": "Șterge șablon", - "MagPreset/RemoveMessage{0}": "Ești sigur că vrei să ștergi șablonul \"{0}\"?", - "MagPreset/ReplaceMessage": "Un șablon cu același nume există deja.\nÎl înlocuiești?", - "MagPreset/SetNameWindowCaption": "Redenumire șablon", - "MagPreset/SetNameWindowPlaceholder": "Introdu numele șablonului", - "MagPreset/Tooltip/CaliberLimitReached": "Nu mai poți salva alte șabloane de același calibru", - "MagPreset/Tooltip/HasNoChanges": "Nu sunt schimbări de salvat", - "MagPreset/Tooltip/IncompatibleAmmo": "Muniție incompatibilă", - "MagPreset/Tooltip/LoopAmmoRequired": "Trebuie să ai muniție pe bandă", - "MagPreset/Tooltip/NoMagsSelected": "Niciun încărcător ales", - "MagPreset/Tooltip/TotalLimitReached": "Numărul maxim de șabloane atins", + "MagDrillsLoadSpeed": "Increases ammo loading speed by [{0}%]", + "MagDrillsUnloadSpeed": "Increases ammo unloading speed by [{0}%]", + "MagPreset/CaliberNotSelected": "Caliber not specified", + "MagPreset/DiscardCahangesDescription": "Any unsaved changes will be lost.\nContinue?", + "MagPreset/Error/ContainsMissingItems": "Ammo not found:", + "MagPreset/HasMissingItems": "Not enough ammo to load.", + "MagPreset/InvalidName{0}": "Invalid preset name \"{0}\".", + "MagPreset/LoadingComplete": "Magazines have been loaded", + "MagPreset/PresetRemoved{0}": "Preset \"{0}\" was deleted.", + "MagPreset/PresetRenamed{0}": "Preset was renamed \"{0}\".", + "MagPreset/PresetSaved{0}": "Preset \"{0}\" was saved.", + "MagPreset/RemoveCaption": "Delete preset", + "MagPreset/RemoveMessage{0}": "Are you sure you want to delete preset \"{0}\"?", + "MagPreset/ReplaceMessage": "Preset with the same name already exists.\nReplace it?", + "MagPreset/SetNameWindowCaption": "Rename preset", + "MagPreset/SetNameWindowPlaceholder": "Enter preset name", + "MagPreset/Tooltip/CaliberLimitReached": "Can't save more presets of the same caliber", + "MagPreset/Tooltip/HasNoChanges": "No changes to save", + "MagPreset/Tooltip/IncompatibleAmmo": "Incompatible ammo", + "MagPreset/Tooltip/LoopAmmoRequired": "Must have ammo in the loop", + "MagPreset/Tooltip/NoMagsSelected": "No selected magazines", + "MagPreset/Tooltip/TotalLimitReached": "Maximum number of presets reached", "Magazine": "Încărcător", "Magazine checked: ": "Încărcător verificat: ", "MainMenu": "MENIU PRINCIPAL", "MakeScreenshot": "Captură ecran", - "Malfunction/HighChance": "RIDICAT", - "Malfunction/LowChance": "SCĂZUT", - "Malfunction/MediumChance": "MEDIU", - "Malfunction/NoneChance": "ZERO", + "Malfunction/HighChance": "HIGH", + "Malfunction/LowChance": "LOW", + "Malfunction/MediumChance": "MEDIUM", + "Malfunction/NoneChance": "NONE", "Malfunction/OneIn{0}Shots": "Una în {0} focuri", - "Malfunction/VeryHighChance": "FOARTE RIDICAT", - "Malfunction/VeryLowChance": "FOARTE SCĂZUT", - "Malfunction: Feed": "Defecțiune: Eșec în a alimenta", - "Malfunction: HardSlide": "Defecțiune: Închizător înțepenit", - "Malfunction: Jam": "Defecțiune: Eșec în a ejecta", - "Malfunction: Misfire": "Defecțiune: Rateu", - "Malfunction: SoftSlide": "Defecțiune: Închizător înțepenit", - "MalfunctionExaminationRequired": "Defecțiune! Verifică-ți arma", - "MalfunctionProtectionsCommonBuff": "Reducerea șansa unei defecțiuni", + "Malfunction/VeryHighChance": "VERY HIGH", + "Malfunction/VeryLowChance": "VERY LOW", + "Malfunction: Feed": "Malfunction: Failure to feed", + "Malfunction: HardSlide": "Malfunction: Bolt jammed", + "Malfunction: Jam": "Malfunction: Failure to eject", + "Malfunction: Misfire": "Malfunction: Misfire", + "Malfunction: SoftSlide": "Malfunction: Bolt jammed", + "MalfunctionExaminationRequired": "Malfunction! Examine your weapon", + "MalfunctionProtectionsCommonBuff": "Reduces malfunction chance", "Map loading...": "Încărcare hartă...", "MapLegend": "LEGENDĂ", "MapMarkerType_Important": "Important", "MapMarkerType_LockedStuff": "Încuiat", "MapMarkerType_Loot": "Pradă", "MapMarkerType_Other": "Necunoscut/altele", - "MarkerCreate": "Adaugă semn", + "MarkerCreate": "Creează semn", "MarkerDelete": "Șterge semn", "MarkerEdit": "Editează semn", "MarksmanRifle Mastering": "Pușcă lunetist", "Marodeur": "Marauder", - "MasteringLevelUpMessage": "{0} măiestrie crescută la {1}", + "MasteringLevelUpMessage": "{0} mastering leveled up to {1}", "MatAluminium": "Aluminiu", "MatAramid": "Aramidă", "MatArmoredSteel": "Oțel călit", @@ -13869,42 +13811,39 @@ "MatGlass": "Sticlă", "MatTitan": "Titan", "MatUHMWPE": "Polietilenă cu densitate moleculară ultra înaltă", - "Match canceled": "Meci anulat. Poți ieși din joc fără grijă. Banii plătiți pentru meci vor fi returnați. Punctele de nivel nu vor fi scăzute.", - "MatchEndExpBonus": "Bonus rezultate meci", + "Match canceled": "The match is canceled. You can leave the game freely. Money for the match will be refunded. Rating will not be deducted.", + "MatchEndExpBonus": "Match results bonus", "Matchend/ErrorUpdatingDataForHealing": "Eroare la încărcarea datelor, verificați statusul rețelei. Încercați să accesați din nou ecranul de tratament, sau săriți peste și mergeți la meniul principal", "Matching...": "Căutare raid...", "Max S in a row": "S la rând", - "MaxStamina": "Maximul de stamina", + "MaxStamina": "Max stamina", "Maximizedwindow": "Fereastră", "MeanLifetime": "Durata medie de viață", "MedStation": "STAȚIA MEDICALĂ", "Meds": "Trat.", "Melee": "Arme albe", "MeleeDescription": "Abilitățile de manipulare a armelor albe", - "MeleeLevelingUpDescription": "Abilitatea Arme Albe crește prin lovirea inamicilor cu arme albe.", "Memory": "Memorie", - "MemoryDescription": "Abilitățile antrenate durează mai mult înainte de a fi pierdute", - "MemoryEliteMentalNoDegradation": "Nu vei uita nici o abilitate", - "MemoryLevelingUpDescription": "Abilitatea Memorie crește cu", - "MemoryMentalForget1": "Reduce rata de uitare a abilităților cu [{0:0.#%}]", - "MemoryMentalForget2": "Reduce scăderea nivelelor de abilitate cu [{0:0.#%}]", + "MemoryDescription": "Trained skills last longer before they start to fade", + "MemoryEliteMentalNoDegradation": "You don't forget any skills", + "MemoryMentalForget1": "Reduces the rate at which you forget skills by [{0:0%}]", + "MemoryMentalForget2": "Reduces rollback of skill levels by [{0:0%}]", "Mental": "Mental", "Merchant": "Comerciant", "Metabolism": "Metabolism", - "MetabolismDescription": "Metabolismul sănătos îmbunătățește și extinde efectele mâncării, băuturii și susține abilitățile fizice mai mult timp.", - "MetabolismEliteBuffNoDyhydration": "Nu primești daune din deshidratare și foame", - "MetabolismEliteNoForget": "Nu vei uita nici o abilitate Fizică", - "MetabolismEnergyExpenses": "Scade consumul de mâncare și rata de deshidratare cu [{0:0.#%}]", - "MetabolismLevelingUpDescription": "Abilitatea Metabolism crește prin consumul de alimente și băuturi.", - "MetabolismMiscDebuffTime": "Reduce toate efectelor secundare ale stimulanților, și a lipsei mâncării și a apei cu [{0:0.#%}]", - "MetabolismPhysicsForget": "Scade rata de uitare a abilităților Fizice cu [{0:0.#%}]", - "MetabolismPhysicsForget2": "Scade dimensiunea maximă a uitării abilităților Fizice", - "MetabolismPhysicsNoForget": "Abilitățile Fizice nu mai pot fi uitate", + "MetabolismDescription": "Healthy metabolism improves and extends the effects of eating and drinking, and sustains the physical skills longer.", + "MetabolismEliteBuffNoDyhydration": "You don't receive damage from exhaustion and dehydration", + "MetabolismEliteNoForget": "You don't forget any Physical skills", + "MetabolismEnergyExpenses": "Reduces energy consumption and dehydration rate by [{0:0%}]", + "MetabolismMiscDebuffTime": "Reduces negative effect time of stimulants, food, water by [{0:0%}]", + "MetabolismPhysicsForget": "Reduces the rate of forgetting Physical skills by [{0:0%}]", + "MetabolismPhysicsForget2": "Decreases maximum scale of forgetting Physical skills", + "MetabolismPhysicsNoForget": "Physical skills are no longer forgettable", "MetabolismPoisonTime": "Reduce timpul de efect al otrăvii cu [{0:0%}]", "MetabolismRatioPlus": "Îmbunătățește efectele pozitive ale alimentelor și băuturilor cu [{0:0%}]", "Microphone sensitivity:": "Microphone sensitivity:", "MildMusclePain": "Durere musculară ușoară", - "Military Checkpoint": "Punct de Control Scavi", + "Military Checkpoint": "Scav Checkpoint", "Min": "min", "Min payment:": "Plată minimă: ", "MinCheckLevel": "NIVEL VERIFICARE MIN", @@ -13912,10 +13851,10 @@ "MipStreamingBufferSize:": "Mip Streaming buffer size", "Misc": "Diverse", "MiscDescription": "Abilitățile de manipulare a armelor non standard", - "MisfireEffect": "Atac de panică", + "MisfireEffect": "Panic attack", "Missed in Action": "Dispărut în Misiune", - "Mod": "Acc", - "ModeUnavailable": "Mod indisponibil", + "Mod": "Mod", + "ModeUnavailable": "Mode unavailable", "Monitor parameters": "Monitor Parameters", "Most leveled": "Cel mai mare nivel", "Most recent": "Cel mai recent", @@ -13943,59 +13882,59 @@ "NEEDAMMO": "NEED AMMO", "NEEDFRAG": "NEED FRAG", "NEEDHELP": "NEED HELP", - "NEEDHELP!": "AJUTOR!", - "NEEDMEDKIT": "TRUSA MEDICALĂ", - "NEEDSNIPER": "LUNETIST", - "NEEDWEAPON": "ARMĂ", - "NEGATIVE": "NU", - "NEW BUILD": "ȘABLON NOU", + "NEEDHELP!": "NEED HELP!", + "NEEDMEDKIT": "NEED MEDKIT", + "NEEDSNIPER": "NEED SNIPER", + "NEEDWEAPON": "NEED WEAPON", + "NEGATIVE": "NEGATIVE", + "NEW BUILD": "NEW PRESET", "NEXT LEVEL UPGRADE REQUIREMENTS": "Necesar construcție", - "NICKNAME": "NUME", - "NO (N)": "NU (N)", - "NO ACTIVE TASKS": "NU SUNT SARCINI ACTIVE", - "NO BUILD SELECTED": "NICIUN ȘABLON ALES", - "NO KEYCARD": "LIPSĂ NECESAR", - "NO KEYCARD IN INVENTORY": "LIPSĂ NECESAR ÎN INVENTAR", - "NO KILLS": "FĂRĂ ELIMINĂRI", - "NO MAP": "FĂRĂ HARTĂ", - "NO MAP IN INVENTORY": "NICI O HARTĂ ÎN INVENTAR", - "NOISEPHRASE": "ZGOMOT", - "NONE": "ZERO", - "NOT AVAILABLE": "INDISPONIBIL", - "NOT SECURED": "NESECURIZAT", - "NOTES": "NOTIȚE", + "NICKNAME": "NICKNAME", + "NO (N)": "NO (N)", + "NO ACTIVE TASKS": "NO ACTIVE TASKS", + "NO BUILD SELECTED": "NO PRESET SELECTED", + "NO KEYCARD": "NO REQUIRED ITEMS", + "NO KEYCARD IN INVENTORY": "NO REQUIRED ITEMS IN INVENTORY", + "NO KILLS": "NO KILLS", + "NO MAP": "NO MAP", + "NO MAP IN INVENTORY": "NO MAP IN INVENTORY", + "NOISEPHRASE": "NOISE", + "NONE": "NONE", + "NOT AVAILABLE": "NOT AVAILABLE", + "NOT SECURED": "NOT SECURE", + "NOTES": "NOTES", "NOTHING": "-", - "NO_POWER_TIP": "LIPSĂ CURENT", + "NO_POWER_TIP": "NO POWER", "NVidia Reflex is on. Turn it off to change this parameter.": "NVIDIA Reflex is on. Turn it off to change this parameter.", "NVidia Reflex settings will be applied after restart.": "NVIDIA Reflex settings will be applied after restart.", - "NW Exfil": "Extracție Cale Ferată", - "Nakatani_stairs_free_exit": "Scări Subsol Nakatani", - "Nape": "Ceafă", - "NeededSearch": "CĂUTARE NECESARĂ", - "NetworkError/SessionLostErrorMessage": "Sesiune pierdută. Este necesară re-logarea", - "NetworkError/TooManyFriendRequestsHeader": "Prea multe cereri", - "NetworkError/TooManyFriendRequestsMessage": "Încercă din nou în {0} secunde", - "NetworkError/version_outdated_header": "Versiune a jocului învechită", - "NetworkError/version_outdated_message": "Vă rugăm reporniți și actualizați jocul", - "Neutral standing": "neutru", - "Neutralizer": "Neutralizator", + "NW Exfil": "Railway Exfil", + "Nakatani_stairs_free_exit": "Nakatani Basement Stairs", + "Nape": "Nape", + "NeededSearch": "REQUIRED SEARCH", + "NetworkError/SessionLostErrorMessage": "Session lost. Re-login required", + "NetworkError/TooManyFriendRequestsHeader": "Too many requests", + "NetworkError/TooManyFriendRequestsMessage": "Try again in {0} seconds", + "NetworkError/version_outdated_header": "Outdated game version", + "NetworkError/version_outdated_message": "Please restart and update your game", + "Neutral standing": "neutral", + "Neutralizer": "Neutralizer", "New quest allowed": "", - "NewOwner": "Conducerea grupului i-a fost transferată lui {0}!", - "Next": "Următor", - "Next LL requirements:": "Cerințe următor NL:", - "Next Loyalty Level:": "Următorul nivel de loialitate:", - "NextGrenadeStage": "Următoarea etapă a grenadei", - "NextMagazine": "Incărcătorul următor", - "NextTacticalDevice": "Comutare mod dispozitiv tactic", - "NextWalkPose": "Poziția următoare de mers", - "NicknameCanBeChangedAfter": "Schimbarea pseudonimului caracterului va fi posibilă după {0} UTC.", - "NicknameChanged": "Pseudonimul caracterului a fost schimbat cu succes. Următoarea schimbare va fi posibilă la {0} UTC.", - "Nidnod": "Privire liberă", - "NightOps": "Nocturn", - "NightOpsDescription": "Operațiunile de noapte fac mișcarea mai ușoară, iar experiența crește mai repede decât de obicei. Și, desigur, asta se reflectă în prețurile dispozitivelor cu vedere pe timp de noapte.", - "No": "nu", - "No Space ({0})": "Nu există spațiu ({0})", - "No Traders": "NICIUN COMERCIANT DISPONIBIL", + "NewOwner": "The chat leadership has been transferred to {0}!", + "Next": "Next", + "Next LL requirements:": "Next LL requirements:", + "Next Loyalty Level:": "Next Loyalty Level:", + "NextGrenadeStage": "Next grenade stage", + "NextMagazine": "Next magazine", + "NextTacticalDevice": "Switch tactical device mode", + "NextWalkPose": "Next walk pose", + "NicknameCanBeChangedAfter": "Character nickname change will become available after {0} UTC.", + "NicknameChanged": "Character nickname has been successfully changed. Next change will be possible at {0} UTC.", + "Nidnod": "Free look", + "NightOps": "Night Ops", + "NightOpsDescription": "Operating at night makes movement easier, and experience grows faster than usual. And, of course, it reflects on the prices of night vision devices.", + "No": "no", + "No Space ({0})": "No Space ({0})", + "No Traders": "NO TRADERS AVAILABLE", "No action available": "Nicio acțiune disponibilă", "No changes to save": "Nu sunt schimbări de salvat", "No free room for that item": "Nu există spațiu pentru acest articol", @@ -14004,66 +13943,66 @@ "No items selected": "Niciun obiect selectat", "No keycards": "Niciun obiect necesar", "NoCompatibleAmmo": "(LIPSĂ MUNIȚIE)", - "NoCorrespondingArea": "Lipsește zona Refugiului necesară pentru reparație", + "NoCorrespondingArea": "Lipsește zona Ascunzătorii necesară pentru reparație", "NoFutureUpgrades": "Fără îmbunătățiri ulterioare", - "NoSignal": "FĂRĂ SEMNAL", - "Noise": "Zgomot", - "NoiseSuppressionLevels/Disabled": "Dezactivat", - "NoiseSuppressionLevels/High": "Ridicat", - "NoiseSuppressionLevels/Low": "Scăzut", - "NoiseSuppressionLevels/Moderate": "Moderat", - "NoiseSuppressionLevels/VeryHigh": "Foarte ridicat", - "Non-authentic": "Neautentic", - "Not available in alpha": "Indisponibil în varianta curentă a versiunii Beta.", - "Not available in raid": "Nu este disponibil în raid", + "NoSignal": "NO SIGNAL", + "Noise": "Noise", + "NoiseSuppressionLevels/Disabled": "Disabled", + "NoiseSuppressionLevels/High": "High", + "NoiseSuppressionLevels/Low": "Low", + "NoiseSuppressionLevels/Moderate": "Moderate", + "NoiseSuppressionLevels/VeryHigh": "Very high", + "Non-authentic": "Non-Authentic", + "Not available in alpha": "Not available in the current Beta version.", + "Not available in raid": "Not available in raid", "Not enough experience gained. Therefore, you have received the Ran Through exit status.": "Nu ai adunat experiență suficientă. Prin urmare, ai primit statutul Fugar la ieșire.", "Not enough place for item": "Spațiu insuficient pentru obiect", "Not implemented yet": "Nu este implementat încă", "NotEnoughMoney": "Bani insuficienți", "NotEnoughRepairPoints": "Nu ai suficiente puncte pentru reparație", "NotEqual": "Parolele nu se potrivesc", - "Nothern_Checkpoint": "Punctul De Control Nord", + "Nothern_Checkpoint": "Northern Checkpoint", "NothingToRepair": "Nimic de reparat", - "Notification/BufferGateNotAvailable": "Accesul la această zonă este indisponibil", - "Notification/BufferZoneAccessDenied": "Nu iți este permis accesul în această zonă", - "Notification/BufferZoneAlreadyHaveCustomer": "Accesul la această zonă este temporar indisponibil", + "Notification/BufferGateNotAvailable": "Accesul la această zonă nu este disponibil", + "Notification/BufferZoneAccessDenied": "You are denied access to this area", + "Notification/BufferZoneAlreadyHaveCustomer": "Access to the zone is temporarily unavailable", "Notification/BufferZoneKickAlarm": "Trebuie să te evacuezi din zonă înainte să expire timpul, altfel riști sa ajungi DIA", - "Notification/BufferZoneTimerReminder": "Timpul de vizitare a acestei zone este limitat", - "Notification/BufferZoneUsageTimeEnded": "Timpul tău în această zonă a expirat", - "Notification/ContainUnremovableItem": "Nu poți arunca un container ce conține un articol nearuncabil", - "Notification/HighLevelQueue": "Nivel Mare. Vei fi plasat în coada de Nivel Mare", - "Notification/MalfunctionExaminationRequired": "Defecțiune! Verifică-ți arma", - "Notification/MalfunctionOccurred": "Defecțiune: {0}", - "Notification/MalfunctionRepairRequired": "Repară defecțiunea: {0}", - "Notification/SniperFlareZone": "Zonă de semnalizare", - "NotificationGroupMatchAbortDescription": "Căutare meci abandonată", - "NotificationGroupMatchRaidNotReady": "Jucătorul {0} a anulat statusul de pregătit", - "NotificationGroupMatchRaidReady": "Jucătorul {0} este pregătit", - "Notifications/Matchmaker/GroupIsFull": "Grupul este plin", - "Notifications/NewQuestAvailable": "O nouă sarcină operațională este disponibilă", - "Notifications/TraderStandingDecreased{0}{1}": "Reputația cu {0} a scăzut cu {1}", - "Notifications/TraderStandingIncreased{0}{1}": "Reputație cu {0} a crescut cu {1}", - "NotifierQuestAvailableForFinish": "Misiunea {0} este gata pentru finalizare", - "NotifierQuestAvailableForStart": "Misiunea {0} este acum disponibilă", - "NotifierQuestFail": "Misiunea {0} obiectiv nereușit", + "Notification/BufferZoneTimerReminder": "Time to visit this area is limited", + "Notification/BufferZoneUsageTimeEnded": "You have used up your time in this zone", + "Notification/ContainUnremovableItem": "Cannot discard a container holding an undiscardable item", + "Notification/HighLevelQueue": "High level. You will be put in High level queue", + "Notification/MalfunctionExaminationRequired": "Malfunction! Examine your weapon", + "Notification/MalfunctionOccurred": "Malfunction: {0}", + "Notification/MalfunctionRepairRequired": "Fix malfunction: {0}", + "Notification/SniperFlareZone": "Signal flare area", + "NotificationGroupMatchAbortDescription": "Matching aborted", + "NotificationGroupMatchRaidNotReady": "Player {0} has cancelled their ready status", + "NotificationGroupMatchRaidReady": "Player {0} is ready", + "Notifications/Matchmaker/GroupIsFull": "Group is full", + "Notifications/NewQuestAvailable": "New operational task available", + "Notifications/TraderStandingDecreased{0}{1}": "Standing with {0} decreased by {1}", + "Notifications/TraderStandingIncreased{0}{1}": "Standing with {0} increased by {1}", + "NotifierQuestAvailableForFinish": "Quest {0} is ready to be completed", + "NotifierQuestAvailableForStart": "Quest {0} is now available", + "NotifierQuestFail": "Task {0} objective failed", "OK": "OK", "OMA": "OMA", - "ONGRENADE": "GRENADĂ", - "ONLOOT": "PE PRADĂ", - "ONPOSITION": "PE POZIȚIE", - "ONSIX": "ÎN SPATE", - "ONYOUROWN": "PE CONT PROPRIU", - "OPEN": "DESCHIDE", - "OPEN ...": "DESCHIDE...", - "OPEN PRESET": "ALEGERE ȘABLON", - "OPENDOOR": "DESCHIDE", - "OVERALL": "GENERAL", - "OVERWEIGHT_EFFECT_DRAIN": "Postura blochează recăpătarea staminei", - "OVERWEIGHT_EFFECT_FALL": "Daunele de la căzături crescute", - "OVERWEIGHT_EFFECT_HUGE_OVERWEIGHT {0}": "Exces de greutate critic", - "OVERWEIGHT_EFFECT_JUMP": "Înălțimea săriturii redusă", - "OVERWEIGHT_EFFECT_MS": "Viteza mișcării redusă", - "OVERWEIGHT_EFFECT_NOISE": "Faci mai mult zgomot", + "ONGRENADE": "GRENADE", + "ONLOOT": "ON LOOT", + "ONPOSITION": "ON POSITION", + "ONSIX": "ON SIX", + "ONYOUROWN": "ON YOUR OWN", + "OPEN": "OPEN", + "OPEN ...": "OPEN...", + "OPEN PRESET": "PRESET SELECTION", + "OPENDOOR": "OPEN", + "OVERALL": "OVERALL", + "OVERWEIGHT_EFFECT_DRAIN": "Stance blocks stamina regain", + "OVERWEIGHT_EFFECT_FALL": "Fall damage increased", + "OVERWEIGHT_EFFECT_HUGE_OVERWEIGHT {0}": "Critical overweight", + "OVERWEIGHT_EFFECT_JUMP": "Reduced jump height", + "OVERWEIGHT_EFFECT_MS": "Movement speed decreased", + "OVERWEIGHT_EFFECT_NOISE": "You make more noise", "OVERWEIGHT_EFFECT_OVERWEIGHT {0}": "Supraîncărcat", "OVERWEIGHT_EFFECT_PRONE": "Târârea scade stamina", "OVERWEIGHT_EFFECT_SPRINT": "Este imposibil să sprintezi din cauza excesului de greutate", @@ -14074,18 +14013,18 @@ "Object LOD quality:": "Object LOD quality:", "Objectives": "Obiectiv(e)", "Offer was sold or out of stock": "Oferta a fost vândută", - "Office Window": "Fereastra din Birou", + "Office Window": "Office Window", "Offline raid description": "În acest mod te poți antrena offline pe cont propriu, sau să te cuprinzi într-un joc online de tip cooperativ cu prietenii fără riscul de a întâlni alți jucători. Poți folosi acest mod pentru a explora locații, testa armele, și să faci alte activități înainte de a intra într-o luptă împotriva altor oponenți reali.\nToate mecanicile jocului din modul co-op(vremea, boți, Boși, etc.) sunt identice cu cele din online.", "Offline raid test mode": "Mod joc antrenament", "OfflineRaid/CoopModeCheckmark": "Mod co-op", - "OfflineRaid/StartAsGroup": "Începe ca și grup", + "OfflineRaid/StartAsGroup": "Începe ca grup", "OfflineRaid/startasgrouptooltip": "Cu această opțiune selectată, jucătorii încep raidul unul lângă altul", "OfflineRaidScreen/WarningHeader": "Atenție! Progresul tău nu este salvat în modul de antrenament!", "OfflineRaidScreen/WarningText": "Modul de joc Co-op necesită versiunea Edge of Darkness a jocului pentru toți membrii din grup. \nJocul va avea loc pe servere dedicate Escape from Tarkov.", - "Old Azs Gate": "Poarta de la Vechea Benzinărie", - "Old Gas Station": "Vechea Benzinărie", - "Old Road Gate": "Poarta de la Vechiul Drum", - "Old Station": "Vechiul Depou Feroviar", + "Old Azs Gate": "Old Gas Station Gate", + "Old Gas Station": "Old Gas Station", + "Old Road Gate": "Old Road Gate", + "Old Station": "Old Railway Depot", "OnWeaponJammed": "Defecțiune!", "OnWeaponReload": "RELOADING", "OneManArmy": "OneManArmy", @@ -14101,19 +14040,19 @@ "OpticCalibrationSwitchDown": "Scope elevation down", "OpticCalibrationSwitchUp": "Scope elevation up", "Other": "Other", - "OtherPlayerProfile/AchievementGlobalProgressTooltip": "Realizare obținută de {0}% din jucători", - "OtherPlayerProfile/FavoriteItems": "Articole favorite", - "OtherPlayerProfile/FavoriteWeapons": "Arme favorite", - "OtherPlayerProfile/NpcProfileError": "{0} profil ascuns", - "OtherPlayerProfile/PlaceholderAchievements": "Fără reușite obținute", - "OtherPlayerProfile/PlaceholderItems": "Niciun articol preferat", - "OtherPlayerProfile/PlaceholderWeapons": "Nicio armă preferată", - "OtherPlayerProfile/RareAchievements": "Reușite rare", + "OtherPlayerProfile/AchievementGlobalProgressTooltip": "Achievement earned by {0}% players", + "OtherPlayerProfile/FavoriteItems": "Favorite items", + "OtherPlayerProfile/FavoriteWeapons": "Favorite weapons", + "OtherPlayerProfile/NpcProfileError": "{0} profile hidden", + "OtherPlayerProfile/PlaceholderAchievements": "No earned achievements", + "OtherPlayerProfile/PlaceholderItems": "No favorite items", + "OtherPlayerProfile/PlaceholderWeapons": "No favorite weapons", + "OtherPlayerProfile/RareAchievements": "Rare achievements", "Out of Stock": "Lipsă stoc", - "Outskirts": "Marginea Pădurii", - "Outskirts Water": "Podul Scavilor", + "Outskirts": "Outskirts", + "Outskirts Water": "Scav Bridge", "OverRun": "OverRun", - "Overall Health": "Stare generala de sănătate", + "Overall Health": "Starea generala de sănătate", "Overall graphics quality:": "Overall Graphics Quality:", "Overall lifetime": "Durata de viață a contului", "Overall visibility:": "Overall visibility:", @@ -14123,14 +14062,14 @@ "PGrip": "Mâner Pist.", "PHRASENONE": "ANULEAZĂ", "PLAYERKILLLIST": "JUCĂTOR", - "PP Exfil": "Ex-Vehicul Stația de Transformare", + "PP Exfil": "Power Station V-Ex", "PRESETS": "ȘABLOANE", "PRODUCTION:": "PRODUCȚIE:", "PUBLISH ...": "PUBLICĂ...", "PVE settings": "Setări PvE", "Pain": "Durere", "Painkiller": "Pe analgezice", - "PanicEffect": "Fiori teribile", + "PanicEffect": "Chilling horror", "Paramedic": "Paramedic", "Party is ready. Starting the game...": "Grupul este pregătit. Jocul începe...", "Penalties": "Penalizare pentru eșec", @@ -14139,7 +14078,6 @@ "PerceptionDescription": "Măiestria percepției crește distanța la care se poate auzi, îmbunătățește concentrarea și face detectarea materialelor mai ușoară.", "PerceptionFov": "Sporește concentrarea la ochire cu [{0:0%}]", "PerceptionHearing": "Crește distanța auzului cu [{0:0%}]", - "PerceptionLevelingUpDescription": "Abilitatea Percepție crește prin găsirea și luarea obiectelor.", "PerceptionLootDot": "Crește raza detectării materialelor cu [{0:0%}]", "PerceptionmEliteNoIdea": "Notificare când sunt materiale în apropiere", "Perish": "Decedat", @@ -14148,7 +14086,6 @@ "Pistol": "Pistoale", "Pistol Mastering": "Pistol", "PistolDescription": "Abilitatea de mânuire a pistolului îmbunătățește manipularea în general, reduce reculul și timpul de reîncărcare al acestora.", - "PistolLevelingUpDescription": "Abilitatea de mânuire a Pistoalelor crește prin tragere și reîncărcare a acestora.", "PlaceOfFame": "LOC DE TROFEE", "PlantLocationDescription": "Uzina chimică Nr. 16 a fost închiriată ilegal de către compania TerraGroup. În timpul Războaielor Contractelor, fabrica a devenit o scenă pentru diferite lupte între USEC și BEAR care au determinat controlul districtului industrial din Tarkov. Mai târziu, în urma haosului, spațiile fabricii s-au transformat într-un adăpost pentru civilii locali și toate forțele militare, inclusiv operatorii USEC și BEAR rămași.", "Player": "Jucător", @@ -14173,11 +14110,11 @@ "Practical": "Practic", "Prepare for Escape": "PREPARE TO ESCAPE", "Preparing the game...": "Jocul se pregătește...", - "PresetBonus": "Bonus șablon", - "PresetManager": "Crează un nou șablon", - "PresetPenalty": "Malus șablon", - "Preset_Unlock": "Deblochează", - "Preset_unlocking": "Deblocare...", + "PresetBonus": "Preset bonus", + "PresetManager": "Create new preset", + "PresetPenalty": "Preset penalty", + "Preset_Unlock": "Unlock", + "Preset_unlocking": "Unlocking...", "Press Assemble button to build and place it in stash.": "Apasă butonul Asamblare pentru a construi și plasa arma în depozit.", "Press any key...": "Apasă orice tastă...", "Previous": "Anterior", @@ -14185,66 +14122,65 @@ "PreviousWalkPose": "Poziția anterioară de mers", "Price changed error": "Ne pare rău, prețul s-a schimbat deja", "Price of all items to insure must be more than minimum payment": "Costurile de asigurare pentru obiectele selectate trebuie să fie mai mari decât plata minimă", - "Price/CashBack": "Compensat", - "Price/FREE": "GRATIS", + "Price/CashBack": "Compensated", + "Price/FREE": "FREE", "PrimaryWeaponFirst": "Armă pe curea", - "PrimaryWeaponSecond": "Arma de pe spate", - "Production completed: {0}": "Producție completă: {0}", - "Production time reduced by {0:0.##%}": "Timpul producției redus cu {0:0.##%}", - "ProductionSchemeReward/Description": "Vei putea să creezi acest obiect artizanal", + "PrimaryWeaponSecond": "Weapon on back", + "Production completed: {0}": "Production completed: {0}", + "Production time reduced by {0:0.##%}": "Production time reduced by {0:0.##%}", + "ProductionSchemeReward/Description": "You will be able to craft this item yourself", "Profile is banned": "This profile is banned", - "ProfileEvent/AssortmentLockRule": "Oferta comerciantului {0} este blocată.", - "ProfileEvent/AssortmentUnlockRule": "Deblochează produsul cu comerciantul {0}.", - "ProfileEvent/ExamineAllItems": "Examinarea tuturor obiectelor.", - "ProfileEvent/ExamineItems": "Examinează obiectul {0}.", - "ProfileEvent/ForgetItems": "Resetarea examinării obiectului {0}.", - "ProfileEvent/HideoutAreaLevel": "Schimb al nivelului din zona {0} din Refugiu la {1}.", - "ProfileEvent/LockTrader": "Comerciantul {0} blocat.", - "ProfileEvent/MasteringSkill": "Schimbarea progresului de stăpânire {0} la {1}.", - "ProfileEvent/MasteringSkillDelta": "Schimbarea progresului de stăpânire {0} ({1}).", - "ProfileEvent/ProfileExperienceDelta": "Schimbarea experienței caracterului ({0}).", - "ProfileEvent/ProfileLevel": "Schimbarea nivelului caracterului la {0}.", - "ProfileEvent/ProfileLockTimer": "Setează interval pentru Scav la {0} secunde.", - "ProfileEvent/ProfileUnlock": "Interval restare Scav.", - "ProfileEvent/RagfairRatingChange": "Evaluarea ta în Piață a fost schimbată la {0}.", - "ProfileEvent/SkillPoints": "Schimb al progresului aptitudinii {0} la {1}.", - "ProfileEvent/SkillPointsDelta": "Schimb al {0} progresului aptitudinilor ({1}).", - "ProfileEvent/StashRows": "Linii noi de celule în depozit: {0}", - "ProfileEvent/TraderSalesSum": "Schimbarea sumei de bani cheltuiți de la {0} la {1}.", - "ProfileEvent/TraderSalesSumDelta": "Schimbarea sumei de bani cheltuiți la {0} ({1}).", - "ProfileEvent/TraderStanding": "Schimbă relația cu {0} la {1}.", - "ProfileEvent/TraderStandingDelta": "Schimbarea relației cu {0} ({1}).", - "ProfileEvent/UnlockTrader": "Comerciantul {0} este deblocat.", - "Progress": "Progres", - "Prone": "Pe burtă", - "ProneMovement": "Mișcare pe Burtă", - "ProneMovementDescription": "Perfecționarea mișcării pe burtă fac ca aceasta să devină mai rapidă și mai silențioasă.", - "ProneMovementElite": "Crește viteza mișcării pe burtă cu [{0:0.#%}]", - "ProneMovementLevelingUpDescription": "Abilitatea Mișcării pe Burtă crește cât timp te miști în această poziție.", - "ProneMovementSpeed": "Crește Viteza Mișcării pe Burtă cu [{0:0.#%}]", - "ProneMovementVolume": "Scade zgomotul mișcării târâș [{0:0.#%}]", - "Protect objective {0:F1}": "Protejează obiectivul {0:F1}", - "QUEST ITEM": "ARTICOL MISIUNE", - "QUEST ITEMS": "ARTICOLE MISIUNE", - "QUICK USE": "UTILIZARE RAPIDĂ", - "Quantity of items you need has been redeemed ({0} left)": "Cantitatea obiectelor necesare a fost redusă ({0} rămase)", - "QuantumTunnelling": "Efect de tip tunel", - "Quest fail": "Misiune eșuată", - "Quest items in inventory (in-raid)": "Obiecte pentru misiune în inventar (in-raid)", - "Quest items special stash (off-raid)": "Ascunzătoare a obiectelor speciale pentru misiuni (refugiu)", - "Quest start": "Misiune începută", - "Quest success": "Recompensă misiune", - "Quest/Change": "ÎNLOCUIEȘTE", - "Quest/Change/Change": "Înlocuiești sarcina operațională?", - "Quest/Change/Price": "Costul înlocuirii:", - "Quest/Change/TimeLeft": "Timp rămas pentru terminarea sarcinii:", - "Quest/Change/Tooltip": "Costul înlocuirii sarcinii operaționale:", - "QuestCondition/Category": "Găsește obiecte din categorie într-un singur raid: {0}", - "QuestCondition/Elimination": "Elimină{kill}{zone}", + "ProfileEvent/AssortmentLockRule": "Trader's deal {0} lock.", + "ProfileEvent/AssortmentUnlockRule": "Unlock of the trader's deal {0}.", + "ProfileEvent/ExamineAllItems": "Examination of all items.", + "ProfileEvent/ExamineItems": "Examine item {0}.", + "ProfileEvent/ForgetItems": "Item {0} examination reset.", + "ProfileEvent/HideoutAreaLevel": "Change of the {0} area's level in the Hideout to {1}.", + "ProfileEvent/LockTrader": "Trader {0}'s locked.", + "ProfileEvent/MasteringSkill": "Change of the {0} mastering progress to {1}.", + "ProfileEvent/MasteringSkillDelta": "Change of the {0} mastering progress ({1}).", + "ProfileEvent/ProfileExperienceDelta": "Change of the character experience ({0}).", + "ProfileEvent/ProfileLevel": "Change of the character level to {0}.", + "ProfileEvent/ProfileLockTimer": "Set Scav cooldown to {0} seconds.", + "ProfileEvent/ProfileUnlock": "Scav cooldown reset.", + "ProfileEvent/RagfairRatingChange": "Your rating on the Flea Market changed to {0}.", + "ProfileEvent/SkillPoints": "Change of the {0} skill's progress to {1}.", + "ProfileEvent/SkillPointsDelta": "Change of the {0} skill's progress ({1}).", + "ProfileEvent/StashRows": "New inventory lines in the stash: {0}", + "ProfileEvent/TraderSalesSum": "Change of the amount of money spent at {0} to {1}.", + "ProfileEvent/TraderSalesSumDelta": "Change of the amount of money spent at {0} ({1}).", + "ProfileEvent/TraderStanding": "Change of the standing with {0} to {1}.", + "ProfileEvent/TraderStandingDelta": "Change of the standing with {0} ({1}).", + "ProfileEvent/UnlockTrader": "Trader {0}'s unlocked.", + "Progress": "Progress", + "Prone": "Prone", + "ProneMovement": "Prone Movement", + "ProneMovementDescription": "Mastering the prone movement makes it faster and quieter.", + "ProneMovementElite": "Increases prone movement speed by [{0:0%}]", + "ProneMovementSpeed": "Increases Prone Movement Speed by [(+{0:0%})]", + "ProneMovementVolume": "Decreases Prone Movement Volume [(-{0:0%})]", + "Protect objective {0:F1}": "Protect objective {0:F1}", + "QUEST ITEM": "QUEST ITEM", + "QUEST ITEMS": "QUEST ITEMS", + "QUICK USE": "QUICK USE", + "Quantity of items you need has been redeemed ({0} left)": "Quantity of items you need has been reduced ({0} left)", + "QuantumTunnelling": "Tunnel effect", + "Quest fail": "Quest failed", + "Quest items in inventory (in-raid)": "Quest items in inventory (in-raid)", + "Quest items special stash (off-raid)": "Quest item special stash (hideout)", + "Quest start": "Quest started", + "Quest success": "Quest reward", + "Quest/Change": "REPLACE", + "Quest/Change/Change": "Replace operational task?", + "Quest/Change/Price": "Replacement cost:", + "Quest/Change/TimeLeft": "Time remaining to complete the task:", + "Quest/Change/Tooltip": "Operational task replacement cost:", + "QuestCondition/Category": "Find items from the category in one raid: {0}", + "QuestCondition/Elimination": "Eliminate{kill}{zone}", "QuestCondition/Elimination/Kill": " {target}{botrole}{bodypart}{distance}{weapon}{weapontype}{onesession}", - "QuestCondition/Elimination/Kill/BodyPart": " cu lovitură la {0}", - "QuestCondition/Elimination/Kill/BodyPart/Chest": "torace", - "QuestCondition/Elimination/Kill/BodyPart/Head": "cap", + "QuestCondition/Elimination/Kill/BodyPart": " with a {0} shot", + "QuestCondition/Elimination/Kill/BodyPart/Chest": "thorax", + "QuestCondition/Elimination/Kill/BodyPart/Head": "head", "QuestCondition/Elimination/Kill/BodyPart/LeftArm": "mâna stângă", "QuestCondition/Elimination/Kill/BodyPart/LeftLeg": "piciorul stâng", "QuestCondition/Elimination/Kill/BodyPart/RightArm": "mâna dreaptă", @@ -14287,7 +14223,7 @@ "QuestRecieveRequared": "(faceţi clic pe FINALIZARE pentru a primi)", "QuestRequirementsTitle": "CERINŢELE DEBLOCARE SARCINĂ", "QuestRewardsRecieved": "(primit)", - "QuestRewardsTitle": "Rezultate", + "QuestRewardsTitle": "Recompense", "QuestStatusAvailableForFinish": "terminat!", "QuestStatusAvailableForStart": "pregătit", "QuestStatusFail": "eșuat", @@ -14296,318 +14232,312 @@ "QuestStatusSuccess": "terminat", "QuestTimeLimit": "limită de timp:", "QuestTimeLimited": "timp limitat", - "QuestTypeCompletion": "Îndeplinire", - "QuestTypeDaily": "Misiune zilnică", - "QuestTypeDiscover": "Descoperă", - "QuestTypeElimination": "Eliminare", - "QuestTypeExperience": "Experiență", - "QuestTypeExploration": "Explorare", - "QuestTypeLevelling": "Nivelare", - "QuestTypeLoyalty": "Loialitate", - "QuestTypeMerchant": "Comerciant", + "QuestTypeCompletion": "Completion", + "QuestTypeDaily": "Daily Quest", + "QuestTypeDiscover": "Discovery", + "QuestTypeElimination": "Elimination", + "QuestTypeExperience": "Experience", + "QuestTypeExploration": "Exploration", + "QuestTypeLevelling": "Leveling", + "QuestTypeLoyalty": "Loyalty", + "QuestTypeMerchant": "Trader", "QuestTypeMulti": "Multi", - "QuestTypePickUp": "Ridică", - "QuestTypeSkill": "Abilitate", - "QuestTypeStanding": "Statut", - "QuestTypeWeaponAssembly": "Modificare parametrică", - "QuestsShowCompleted": "Arată misiunile finalizate", - "QuestsShowLocked": "Arată misiunile blocate", - "Queststatusmarkedasfailed": "Misiune eșuată", - "QuickKnife": "Atac cu armă albă", - "QuickReloadWeapon": "Reîncărcare urgentă a armei", - "QuickSecondaryWeapon": "Schimbare rapidă la arma din toc", - "RAG FAIR": "PIAȚA", - "RAID ENDED": "RAID TERMINAT", - "RAID STATISTICS": "STATISTICILE RAIDULUI", - "RAID TIME:": "TIMPUL RAIDULUI: ", - "RAT": "UN ȘOBOLAN!", - "RAT!": "SOBOLAN!", - "REACTION": "REACŢIE", - "READY": "PREGĂTIT", - "RECEIVE ALL": "PRIMEȘTE TOT", - "RECOIL": "RECUL", - "RECONNECT": "RECONECTARE", - "REGROUP": "REGRUPAREA", - "RELOAD": "REÎNCARCĂ", - "REMEMBER ACCOUNT": "REȚINE CONTUL", - "REMOVEFROMFAVORITES": "Șterge din profil", - "REMOVEFROMWISHLIST": "Șterge din lista-D", - "REMOVES BLOODLOSS": "OPREȘTE HEMORAGIA", - "REMOVES CONTUSION": "ÎNDEPĂRTEAZĂ CONTUZIA", - "REMOVES FRACTURE": "ÎNDEPĂRTEAZĂ FRACTURA", - "REMOVES HEAVY BLEEDS": "Oprește hemoragia", - "REMOVES LIGHT BLEEDS": "Oprește sângerarea\n", - "REMOVES PAIN": "ÎNDEPĂRTEAZĂ DUREREA", - "REMOVES RADIATION EXPOSURE": "ÎNDEPĂRTEAZĂ EXPUNEREA LA RADIAȚII", - "REMOVES TOXICATION": "ÎNDEPĂRTEAZĂ INTOXICAREA", - "REPAIR": "REPARĂ", - "REPAIR POINTS IN STASH: ": "PUNCTE DE RAPARAȚIE ÎN DEPOZIT: ", - "REPAIR POINTS TO PAY: ": "PUNCTE DE REPARAȚIE CU PLATĂ: ", - "REPAIR RESOURCE": "REPARĂ RESURSE", - "REPAIR TIME: ": "DURATA REPARAȚIEI:", - "REPAIR: ": "REPARĂ: ", - "REPEAT": "REPETĂ", - "RESET": "RESETARE", + "QuestTypePickUp": "Pickup", + "QuestTypeSkill": "Skill", + "QuestTypeStanding": "Standing", + "QuestTypeWeaponAssembly": "Parameter-oriented modding", + "QuestsShowCompleted": "Show сompleted", + "QuestsShowLocked": "Show locked", + "Queststatusmarkedasfailed": "Quest failed", + "QuickKnife": "Melee attack", + "QuickReloadWeapon": "Emergency weapon reload", + "QuickSecondaryWeapon": "Sidearm quick swap", + "RAG FAIR": "FLEA MARKET", + "RAID ENDED": "RAID ENDED", + "RAID STATISTICS": "RAID STATISTICS", + "RAID TIME:": "RAID TIME: ", + "RAT": "A RAT!", + "RAT!": "RAT!", + "REACTION": "REACTION", + "READY": "READY", + "RECEIVE ALL": "RECEIVE ALL", + "RECOIL": "RECOIL", + "RECONNECT": "RECONNECT", + "REGROUP": "REGROUP", + "RELOAD": "RELOAD", + "REMEMBER ACCOUNT": "REMEMBER ACCOUNT", + "REMOVEFROMFAVORITES": "Remove from profile", + "REMOVEFROMWISHLIST": "Remove from W-list", + "REMOVES BLOODLOSS": "REMOVES BLOODLOSS", + "REMOVES CONTUSION": "REMOVES CONCUSSION", + "REMOVES FRACTURE": "REMOVES FRACTURE", + "REMOVES HEAVY BLEEDS": "Stops heavy bleedings", + "REMOVES LIGHT BLEEDS": "Stops light bleedings\n", + "REMOVES PAIN": "REMOVES PAIN", + "REMOVES RADIATION EXPOSURE": "REMOVES RADIATION EXPOSURE", + "REMOVES TOXICATION": "REMOVES TOXICATION", + "REPAIR": "REPAIR", + "REPAIR POINTS IN STASH: ": "REPAIR POINTS IN STASH: ", + "REPAIR POINTS TO PAY: ": "REPAIR POINTS TO PAY: ", + "REPAIR RESOURCE": "REPAIR RESOURCE", + "REPAIR TIME: ": "REPAIR TIME:", + "REPAIR: ": "REPAIR: ", + "REPEAT": "REPEAT", + "RESET": "RESET", "RESTART": "Restart", - "RESTORE PASSWORD": "RECUPEREAZĂ PAROLA", - "RESUME": "CONTINUĂ", - "RETURN TIME:": "DURATĂ RETUR: ", - "RETURN TO RAID": "REVINO LA RAID", - "REVIEW INFIL & EXFIL ON {0}": "REVIZUIRE INFILTRAȚIE & EXTRACȚIE PE {0}", - "RHigh": "Ridicat", - "RICOCHET CHANCE": "ȘANSĂ RICOȘEU", - "RIGHT: ": "DREAPTA: ", - "RIGHTFLANK": "FLANC DREPT", - "RLow": "Scăzut", - "ROAD_AT_RAILBRIDGE": "Podul feroviar", - "ROGER": "ÎNȚELES", - "RP": "PR", - "RUAF Gate": "Poartă RUAF", - "RUAF Roadblock": "Blocadă RUAF", - "RUAF Roadblock_scav": "Blocadă RUAF", - "RWing Gym Entrance": "Intrare Sală Gimnastică Aripa Estică", - "RadioTransmitter/AttributeValues/Blocked": "Blocat", - "Ragfair/No selected item": "Niciun obiect ales", - "Raid lock": "Nu poți modifica acea piesă în timpul raidului.", + "RESTORE PASSWORD": "RESTORE PASSWORD", + "RESUME": "RESUME", + "RETURN TIME:": "RETURN TIME: ", + "RETURN TO RAID": "RETURN TO RAID", + "REVIEW INFIL & EXFIL ON {0}": "REVIEW INFIL & EXFIL ON {0}", + "RHigh": "High", + "RICOCHET CHANCE": "RICOCHET CHANCE", + "RIGHT: ": "RIGHT: ", + "RIGHTFLANK": "RIGHT FLANK", + "RLow": "Low", + "ROAD_AT_RAILBRIDGE": "Railway Bridge", + "ROGER": "ROGER", + "RP": "RP", + "RUAF Gate": "RUAF Gate", + "RUAF Roadblock": "RUAF Roadblock", + "RUAF Roadblock_scav": "RUAF Roadblock", + "RWing Gym Entrance": "East Wing Gym Entrance", + "RadioTransmitter/AttributeValues/Blocked": "Blocked", + "Ragfair/No selected item": "No items selected", + "Raid lock": "You can’t modify that part during the raid.", "Raid №{0}": "Raid #{0}", - "RaidInviteDescription": "Liderul de grup {0} te invită la raid ca și {1}", - "RaidInviteHeader": "Invitație la Raid", - "RaidInviteKeyMessage": "Intrarea în raid necesită: {0}", - "RaidModdable": "POATE FI MODIFICAT ÎN RAID", + "RaidInviteDescription": "Group leader {0} invites you to a raid as a {1}", + "RaidInviteHeader": "Raid invite", + "RaidInviteKeyMessage": "Entering the raid requires: {0}", + "RaidModdable": "CAN BE MODDED IN RAID", "RaidSidePmc": "PMC", "RaidSideScav": "Scav", "Raids Short": "R: {0}", - "Railroad To Military Base": "Calea Ferată Către Baza Militară", - "Railroad To Port": "Calea Ferată Spre Port", - "Railroad To Tarkov": "Cale Ferată Spre Tarkov", - "RainType/Drizzling": "Ploaie măruntă", - "RainType/Heavy": "Ploaie Grea", - "RainType/NoRain": "Nu plouă", - "RainType/Rain": "Plouă", - "RainType/Shower": "Dușuri de ploaie", - "Ran Through": "Ieșire prematură", - "Random": "ALEATORIU", - "Random Entry point": "Punct de intrare aleatoriu", - "Random entry point will be selected. Acquire map to have an ability to select raid entry points.": "Va fi ales un punct de infiltrare aleatoriu. Achiziționează o harta pentru a alege punctul de infiltrare.", - "Random entry point will be selected. Aquire map to have an ability to select raid entry points.": "Va fi ales un punct de infiltrare aleatoriu. Achiziționează harta pentru a alege punctul de infiltrare.", - "Random time": "Moment aleatoriu", - "Random weather": "Condiții aleatorii de vreme și timp", - "Random weather conditions": "Condiții meteo aleatorii", - "RandomEnvironmentUiType": "Aleatoriu", - "RankChanges": "Progres rang", + "Railroad To Military Base": "Railroad to Military Base", + "Railroad To Port": "Railroad to Port", + "Railroad To Tarkov": "Railroad to Tarkov", + "RainType/Drizzling": "Drizzling rain", + "RainType/Heavy": "Heavy rain", + "RainType/NoRain": "No rain", + "RainType/Rain": "Rain", + "RainType/Shower": "Rain shower", + "Ran Through": "Run Through", + "Random": "RANDOM", + "Random Entry point": "Random Entry Point", + "Random entry point will be selected. Acquire map to have an ability to select raid entry points.": "Random entry point will be selected. Acquire a map to gain an ability to select raid entry points.", + "Random entry point will be selected. Aquire map to have an ability to select raid entry points.": "Random entry point will be selected. Aquire map to have the ability to select raid entry points.", + "Random time": "Random time", + "Random weather": "Random weather and time conditions", + "Random weather conditions": "Random weather conditions", + "RandomEnvironmentUiType": "Random", + "RankChanges": "Rank progression", "Ranked": "RANKED", "Ranked/Description": "Ranked Game\nRanked games include only balanced modes, which will allow you to focus on the most fair and interesting matches for the future cyber league.\nThe rankings that players earn in this mode can be used to determine the strongest fighters on the team. Some presets may be locked for the ranked mode. The same rating will be used for matchmaking.", - "Ratings": "Rating", - "Ready!": "PREGĂTIT!", + "Ratings": "Ratings", + "Ready!": "READY!", "ReadyToConstruct": "Gata de construit", "ReadyToInstallConstruct": "CONSTRUCȚIE TERMINATĂ", - "ReadyToUpgrade": "Gata pentru Îmbunătățire", - "Receiver": "Cutie mecanisme", - "RecodableItem/AttributeValues/Decoded": "Decodat", - "RecodableItem/AttributeValues/Encoded": "Encodat", - "RecodableItem/Attributes/EncodeState": "Stare", - "Recoil Back": "Recul orizontal", - "Recoil Up": "Recul vertical", - "RecoilControl": "Control recul", - "RecoilControlDescription": "Un control mai mare asupra reculului reduce răspândirea orizontală, făcând reculul mult mai previzibil.", - "RecoilControlElite": "Îmbunătățește controlul reculului cu [{0:0.#%}]", - "RecoilControlImprove": "Îmbunătățește controlul reculului cu [{0:0.#%}]", - "RecoilControlLevelingUpDescription": "Abilitatea Control Recul crește prin trageri continue. Cu cât este mai mare reculul de bază al armei, cu atât mai repede crește abilitatea.", + "ReadyToUpgrade": "Ready to Upgrade", + "Receiver": "Receiver", + "RecodableItem/AttributeValues/Decoded": "Decoded", + "RecodableItem/AttributeValues/Encoded": "Encoded", + "RecodableItem/Attributes/EncodeState": "State", + "Recoil Back": "Horizontal recoil", + "Recoil Up": "Vertical recoil", + "RecoilControl": "Recoil Control", + "RecoilControlDescription": "Greater control over recoil reduces horizontal spread, making the recoil more predictable.", + "RecoilControlElite": "Improves recoil control by [{0:0%}]", + "RecoilControlImprove": "Improves recoil control by [{0:0%}]", "RecommendedVRAM:": "Recommended VRAM", - "Reconnection is not available at this moment due to testing purposes": "Reconectarea nu este disponibilă în acest moment din cauza testelor", - "RedRebel_alp": "Calea Alpiniștilor", - "Refill": "Reumple", - "Registration": "ÎNREGISTRARE", - "Registration date": "Data înregistrării", - "ReloadWeapon": "Reîncarcă arma", - "Remove": "Elimină", - "RemoveAllBuffs": "Elimină toate beneficiile", - "RemoveBloodLosses": "Oprește sângerările", - "RemoveNegativeEffects": "Înlătură efectele negative", - "RemovePlayer": "Elimină jucătorul", - "RemovePlayer message": "Ești sigur că vrei să elimini acest jucător?", - "Removeallbloodlosses": "Oprește și previne sângerările", - "Repair malfunction": "Repară defecțiunea", - "Repair price rate": "Prețul reparației", - "Repair quality:": "Calitatea reparației:", - "Repair speed:": "Viteză reparare:", - "Repair will take out {0} points ({1}%) of maximum durability": "Reparația va costa {0} puncte pentru ({1}%) durabilitate", - "Repair will take out {0} to {1} points of maximum durability": "Reparația va reduce între {0} si {1} puncte din durabilitatea maximă", - "Repair/EnhancementChance": "șansă îmbunătățire", - "Repair/HasCommonBuff": "Îmbunătățire", - "Repair/HasRareBuff": "Îmbunătățire rară", - "Repair/RepairKit/CanEnhance": "Reparația poate adăuga o îmbunătățire", - "RepairWeaponDeteriorationReduce": "Reduce gradul de uzură atunci când folosești kituri de reparație", - "Repairing objective {0:F1}": "Repararea obiectivului {0:F1}", - "Report game bug abuse": "Raportează exploatarea unui bug de joc", - "Report offensive nickname": "Raportează un nume ofensiv", - "Report suspected cheat use": "Raportează suspiciunea de trișare", - "Report suspicious profile": "Raportează profil suspicios", - "ReportAbuseBug": "Raportează exploatarea unui bug", - "ReportAbuseVoip": "Raportează abuzul sistemului VoIP și Radio", - "ReportCheater": "Raportează un suspect trișor", - "ReportNickname": "RAPORTEAZĂ NUMELE", - "Reports/ChangeNickname/BanMessage": "Ai primit interdicție de a-ți schimba numele", - "Reports/ChangeNickname/UnBanMessage": "Nu mai ai restricție la schimbarea numelui", - "Reports/Chat/BanMessage": "Ai fost restricționat de la chat", - "Reports/Chat/UnBanMessage": "Nu mai ești restricționat de la chat", - "Reports/Friends/BanMessage": "Ești restricționat de la sistemul de prieteni", - "Reports/Friends/UnBanMessage": "Nu mai ești restricționat de la sistemul de prieteni", - "Reports/Online/BanMessage": "Ești restricționat de la raiduri online", - "Reports/Online/UnBanMessage": "Nu mai ești restricționat de la raiduri online", - "Reports/Ragfair/BanMessage": "Ești restricționat de la Piața de Vechituri", - "Reports/Ragfair/ReportOffer": "Raportează ofertă suspicioasă", - "Reports/Ragfair/UnBanMessage": "Nu mai ești restricționat de la Piața de Vechituri", - "Reports/Trading/BanMessage": "Ai fost restricționat de la comerț", - "Reports/Trading/UnBanMessage": "Nu mai ești restricționat de la comerț", - "Reports/Voip/BanMessage": "Ai fost restricționat de la VoIP", - "Reports/Voip/ReportPlayersAround": "Raportează un abuz al sistemului VoIP", - "Reports/Voip/UnBanMessage": "Nu mai ești restricționat de la VoIP", - "Request error: 1503 - Offer not found 1503": "Ne pare rău, oferta a fost deja achiziționată.", - "Required {0} to be unlocked": "Necesită ca {0} să fie deblocat", - "Required {0}, level {1}": "Necesită {0}, nivel {1}", - "Required skill {0}, level {1}": "Necesită abilitatea {0}, de nivel {1}", + "Reconnection is not available at this moment due to testing purposes": "Reconnection is not available at this moment due to testing purposes", + "RedRebel_alp": "Climber's Trail", + "Refill": "Refill", + "Registration": "REGISTRATION", + "Registration date": "Registration date", + "ReloadWeapon": "Reload weapon", + "Remove": "Remove", + "RemoveAllBuffs": "Removes all buffs", + "RemoveBloodLosses": "Stops bleedings", + "RemoveNegativeEffects": "Removes negative effects", + "RemovePlayer": "Kick player", + "RemovePlayer message": "Are you sure you want to remove this player?", + "Removeallbloodlosses": "Stops and prevents bleedings", + "Repair malfunction": "Fix malfunction", + "Repair price rate": "Repair price", + "Repair quality:": "Repair quality:", + "Repair speed:": "Repair speed:", + "Repair will take out {0} points ({1}%) of maximum durability": "Repair will cost {0} points for ({1}%) durability", + "Repair will take out {0} to {1} points of maximum durability": "Repair will take out {0} to {1} points of maximum durability", + "Repair/EnhancementChance": "enhancement chance", + "Repair/HasCommonBuff": "Enhanced", + "Repair/HasRareBuff": "Rare enhancement", + "Repair/RepairKit/CanEnhance": "Repairing can add an enhancement", + "RepairWeaponDeteriorationReduce": "Reduces wear during a repair by repair kits", + "Repairing objective {0:F1}": "Repairing objective {0:F1}", + "Report game bug abuse": "Report game bug abuse", + "Report offensive nickname": "Report offensive nickname", + "Report suspected cheat use": "Report suspected cheat use", + "ReportAbuseBug": "Report bug abuse", + "ReportAbuseVoip": "Report VoIP & Radio abuse", + "ReportCheater": "Report suspected cheater", + "ReportNickname": "REPORT NICKNAME", + "Reports/ChangeNickname/BanMessage": "You are banned from changing your nickname", + "Reports/ChangeNickname/UnBanMessage": "You are no longer banned from changing your nickname", + "Reports/Chat/BanMessage": "You are banned from chat", + "Reports/Chat/UnBanMessage": "You are no longer banned from chat", + "Reports/Friends/BanMessage": "You are banned from the friends system", + "Reports/Friends/UnBanMessage": "You are no longer banned from the friends system", + "Reports/Online/BanMessage": "You are banned from online raids", + "Reports/Online/UnBanMessage": "You are no longer banned from online raids", + "Reports/Ragfair/BanMessage": "You are banned from the Flea Market", + "Reports/Ragfair/ReportOffer": "Report suspicious offer", + "Reports/Ragfair/UnBanMessage": "You are no longer banned from the Flea Market", + "Reports/Trading/BanMessage": "You are banned from trading", + "Reports/Trading/UnBanMessage": "You are no longer banned from trading", + "Reports/Voip/BanMessage": "You are banned from VOIP", + "Reports/Voip/ReportPlayersAround": "Report VOIP system abuse", + "Reports/Voip/UnBanMessage": "You are no longer banned from VOIP", + "Request error: 1503 - Offer not found 1503": "Sorry, the offer has already been purchased.", + "Required {0} to be unlocked": "Required {0} to be unlocked", + "Required {0}, level {1}": "Required {0}, level {1}", + "Required skill {0}, level {1}": "Required skill {0}, level {1}", "Resampling": "Resampling:", - "ResetTag": "Elimină eticheta", - "Resolution has changed. Do you want to keep current resolution?": "Rezoluția s-a schimbat. Îți dorești să păstrezi această rezoluție?", - "Resource": "RESURSE", - "RestSpace": "SPAȚIU DE ODIHNĂ", - "Return rate:": "Rată de returnare: ", - "Revert": "REVENIRE", - "Revert your settings to default?": "Sunteți sigur că doriți să reveniți la setările implicite?", - "Revolver": "Revolvere", + "ResetTag": "Reset tag", + "Resolution has changed. Do you want to keep current resolution?": "Resolution has changed. Do you want to keep the current resolution?", + "Resource": "RESOURCE", + "RestSpace": "REST SPACE", + "Return rate:": "Return rate: ", + "Revert": "REVERT", + "Revert your settings to default?": "Are you sure you want to revert your settings to their default values?", + "Revolver": "Revolvers", "Revolver Mastering": "Revolver", - "RevolverDescription": "Abilitatea de mânuire a revolverului îmbunătățește manipularea în general, reduce reculul și timpul de reîncărcare al acestora.", - "RevolverLevelingUpDescription": "Abilitatea de mânuire a revolverelor crește prin tragere și reîncărcare a acestora.", - "RezervBase": "Rezerva", - "Rig": "Vestă", - "Right Arm": "BRAȚUL DREPT", - "Right Hand": "MÂNA DREAPTĂ", - "Right Leg": "PICIORUL DREPT", - "RightArm": "BRAȚUL DREPT", + "RevolverDescription": "Abilitatea de manipulare a revolverului.", + "RezervBase": "Reserve", + "Rig": "Rig", + "Right Arm": "RIGHT ARM", + "Right Hand": "RIGHT HAND", + "Right Leg": "RIGHT LEG", + "RightArm": "Right Arm", "Ritual": "Ritual", - "Riverside": "Râu", - "Rmed": "Mediu", - "Road to Customs": "Drumul spre Vamă", - "Rock Passage": "Pasaj Pietre", - "Ruined House Fence": "Gardul Distrus al Casei", + "Riverside": "Riverside", + "Rmed": "Medium", + "Road to Customs": "Road to Customs", + "Rock Passage": "Rock Passage", + "Ruined House Fence": "Ruined House Fence", "SAVAGE": "SCAV", - "SAVE AS ...": "SALVEAZĂ CA...", - "SAVE AS...": "Salvează ca...", - "SCAV LOOT TRANSFER": "TRANSFER PRADA SCAV", - "SCAVDOWN": "SCAV DOBORÂT", - "SCAV_FREE4ALL": "Drumul către Litoral", - "SCAV_Industrial_Zone": "Porțile Zonei Industriale", - "SCAV_Underboat_Hideout": "Ascunzătoare de Sub Debarcader", + "SAVE AS ...": "SAVE AS...", + "SAVE AS...": "Save as...", + "SCAV LOOT TRANSFER": "SCAV LOOT TRANSFER", + "SCAVDOWN": "SCAV DOWN", + "SCAV_FREE4ALL": "Path to Shoreline", + "SCAV_Industrial_Zone": "Industrial Zone Gates", + "SCAV_Underboat_Hideout": "Hideout Under the Landing Stage", "SD Tarkov Streets": "Streets of Tarkov Lower Texture Resolution Mode", - "SE Exfil": "Punct de Control Emercom", - "SEARCHING...": "CĂUTARE", - "SECURED": "SECURIZAT", - "SELECT": "ALEGE", - "SELECT DESIRED CONDITION": "ALEGE CONDIȚIA DORITĂ", - "SELECT INFILTRATION AREA ON": "ALEGE ZONA DE INFILTRARE", - "SELECT INFILTRATION AREA ON {0}": "ALEGE ZONA DE INFILTRARE PE {0}", - "SELECT INSURER": "ALEGE ASIGURATOR", - "SELECT ITEMS": "ALEGE ARTICOLE", - "SELECT LOCATION": "ALEGE LOCAŢIA", - "SELECT REPAIRER": "ALEGE REPARATOR", - "SELECT TIME PHASE:": "ALEGE INTERVALUL ORAR:", - "SELECT WEAPON": "ALEGE ARMA", - "SELECT YOUR CHARACTER": "ALEGE-ŢI PERSONAJUL", - "SELL": "VINDE", - "SEND": "TRIMITE", - "SERVICES": "SERVICII", - "SETTINGS": "SETĂRI", - "SHOWCASE": "VITRINA", - "SIDE": "PARTE", - "SIGHT CRATE": "Grosisment", - "SILENCE": "LINIȘTE", - "SIZE": "DIMENS", - "SKILLS": "ABILITĂŢI", - "SKILLS_SPEED_DOWN": "Viteza de nivelare redusă", - "SKILLS_SPEED_UP": "Viteza de nivelare crescută", - "SMG": "Pistol-mitralieră", + "SE Exfil": "Emercom Checkpoint", + "SEARCHING...": "SEARCHING", + "SECURED": "SECURE", + "SELECT": "SELECT", + "SELECT DESIRED CONDITION": "SELECT DESIRED CONDITION", + "SELECT INFILTRATION AREA ON": "SELECT INFILTRATION AREA ON", + "SELECT INFILTRATION AREA ON {0}": "SELECT INFILTRATION AREA ON {0}", + "SELECT INSURER": "SELECT INSURER", + "SELECT ITEMS": "SELECT ITEMS", + "SELECT LOCATION": "SELECT LOCATION", + "SELECT REPAIRER": "SELECT REPAIRER", + "SELECT TIME PHASE:": "SELECT TIME PHASE:", + "SELECT WEAPON": "SELECT WEAPON", + "SELECT YOUR CHARACTER": "SELECT YOUR CHARACTER", + "SELL": "SELL", + "SEND": "SEND", + "SERVICES": "SERVICES", + "SETTINGS": "SETTINGS", + "SHOWCASE": "SHOWCASE", + "SIDE": "SIDE", + "SIGHT CRATE": "Sight magnification", + "SILENCE": "SILENCE", + "SIZE": "SIZE", + "SKILLS": "SKILLS", + "SKILLS_SPEED_DOWN": "Leveling speed decreased", + "SKILLS_SPEED_UP": "Leveling speed increased", + "SMG": "SMGs", "SMGDescription": "Abilitatea de mânuire a pistolului mitraliera îmbunătățește manipularea în general, reduce reculul și timpul de reîncărcare al acestora.", - "SMGLevelingUpDescription": "Abilitatea Pistoale Mitralieră crește prin tragerea și reîncărcarea acestor arme.", - "SNIPERPHRASE": "LUNETIST", + "SNIPERPHRASE": "SNIPER", "SO": "SO", - "SOUND": "SUNET", - "SOUND OFF": "SUNET OPRIT", - "SOUND ON": "SUNET PORNIT", - "SPREADOUT": "ÎMPRĂȘTIEREA", + "SOUND": "SOUND", + "SOUND OFF": "SOUND OFF", + "SOUND ON": "SOUND ON", + "SPREADOUT": "SPREADOUT", "SSAA": "SSAA:", "SSAO:": "SSAO:", "SSR:": "SSR:", - "STASH": "DEPOZIT", - "STATUSKILLLIST": "STATUT", - "STOP": "STAI", - "SUPPRESS": "SUPRIMĂ", - "Saferoom Exfil": "Camera Seif", - "Sales sum with {0} increased by {1}": "Suma de vânzare {0} crescută cu {1}", - "Sandbox": "Punctul Zero", - "Sandbox_VExit": "Ex-Vehicul Cordon Poliție", - "Sandbox_high": "Punctul Zero", + "STASH": "STASH", + "STATUSKILLLIST": "STATUS", + "STOP": "STOP", + "SUPPRESS": "SUPPRESS", + "Saferoom Exfil": "Saferoom Exfil", + "Sales sum with {0} increased by {1}": "Sales sum with {0} increased by {1}", + "Sandbox": "Ground Zero", + "Sandbox_VExit": "Police Cordon V-Ex", "Saturation:": "Saturation:", - "Savage matchmaker": "Începe raid ca un Scav, un bandit local cu un set de echipament aleatoriu. Tarkov este casa ta, și tu faci regulile!", + "Savage matchmaker": "Begin a raid as a Scav, a local bandit with a random set of gear. Tarkov is your home, you make the rules!", "SavageBannerDescription": "Un raid ca și Scav este diferit de raidul cu mercenarul. Jucătorii Scavi vor intră în raid în locații și timpi aleatorii. Sănătatea și echipamentul Scavului sunt de asemenea aleatorii. Evacuarea ca și Scav îți da oportunitatea de a transferă tot câștigul din raid în depozitul principal. Terminarea unui raid ca și Scav nu va crește experiența caracterului principal mercenar. Decesul ca și Scav nu va afecta progresul în nici un fel.", - "SavageBannerName": "Joacă ca Scav", - "Save": "SALVEAZĂ", - "Save build before finding parts": "Salvează modelul înainte de a căuta piesele", - "SaveIconFast": "Salvează Iconița Rapid (Ctrl + I)", - "Scabbard": "Teacă", + "SavageBannerName": "Scav Gameplay", + "Save": "SAVE", + "Save build before finding parts": "Save preset before searching for parts", + "SaveIconFast": "Save Icon Fast (Ctrl + I)", + "Scabbard": "Sheath", "Scav": "Scav", - "Scav House": "Casa Scavilor", - "Scav Road to Customs": "Drumul spre Vamă", + "Scav House": "Scav House", + "Scav Road to Customs": "Road to Customs", "Scav war": "Scav war", - "ScavCase": "CUTIE SCAV", - "ScavGroupMaxCountReached": "Numărul maxim de membrii a grupului de Scavi a fost depășit", - "ScavInventoryScreen/ConfirmSellAll {0}{1}": "Toate articolele netransferate vor fi vândute la Amanet pentru {0} {1}. Ești sigur că vrei să închei procesul de transfer și să vinzi tot ce a rămas?", - "ScavInventoryScreen/SellAll": "VEZI TOT", + "ScavCase": "SCAV CASE", + "ScavGroupMaxCountReached": "Scav group max member count exceeded", + "ScavInventoryScreen/ConfirmSellAll {0}{1}": "All untransferred items will be sold to Fence for {0} {1}. Are you sure you want to complete the transfer process and sell the remaining loot?", + "ScavInventoryScreen/SellAll": "SELL ALL", "ScavRole/ArenaFighterEvent": "Bloodhound", "ScavRole/Boss": "Boss", "ScavRole/ExUsec": "Rogue", - "ScavRole/Follower": "Gardă", - "ScavRole/Marksman": "Lunetist", + "ScavRole/Follower": "Guard", + "ScavRole/Marksman": "Sniper", "ScavRole/PmcBot": "Raider", "ScavRole/Sectant": "???", - "ScavTimerNotification": "Jucătorul {0} va avea Scav disponibil în {1}", - "Scav_Coastal_South": "Alunecarea de Teren lângă Drumul Sudic", - "Scav_Hideout_at_the_grotto": "Refugiul din Grotă a Scavilor", - "Scav_coop_exit": "Punct de Control Scavi (Co-op)", - "Scavs arrived with loot": "Scavii au ajuns cu prada", - "Scavs has brought you:": "Scavii ți-au adus:", - "Scene loading...": "Se încarcă scena...", + "ScavTimerNotification": "Player {0} will have their Scav character available in {1}", + "Scav_Coastal_South": "Southern Road Landslide", + "Scav_Hideout_at_the_grotto": "Scav Hideout at the Grotto", + "Scav_coop_exit": "Scav Checkpoint (Co-op)", + "Scavs arrived with loot": "Scavs have arrived with loot", + "Scavs has brought you:": "Scavs have brought you:", + "Scene loading...": "Loading scene...", "Screen resolution:": "Screen resolution:", "Screen-space effects:": "Screen-space Effects:", "ScreenSettings/Display": "Monitor:", "ScreenSetttings/Display": "Display", - "Screenshot captured to": "Captura de ecran salvată în", - "Search": "Caută", - "SearchDescription": "Stăpânirea abilității de căutare îți permite să cauți cadavre și containere mai rapid și mai eficient.", - "SearchDouble": "Caută în două containere simultan", - "SearchLevelingUpDescription": "Abilitatea Căutare crește prin căutarea în containere.", - "SecondPrimaryWeapon": "Spate", - "SecondaryWeapon": "Toc", - "SecuredContainer": "Husă", - "Security": "SECURITATE", - "Select BEAR Character": "Ești un operator al Battle Encounter Assault Regiment (BEAR), un PMC Rus compus din foști ofițeri din trupele speciale din mai toate regiunile din fostul bloc Sovietic.\nBEAR a luptat în Contract Wars ca un satelit al guvernului Rus pentru a descoperi activități ilegale ale TerraGroup Labs și să pună capăt continuării conflictului armat cu subcontractorul de securitate, compania privată militară din vest USEC.", - "Select USEC Character": "Ești un operator pentru United Security (USEC), o companie stabilită peste mări de tip PMC angajată de TerraGroup Labs ca subcontractant de securitate. Principalul obiectiv al USEC a fost să distrugă orice evidență a unor posibile activități ilegale realizate de angajatorul său și de-ai proteja proprietatea pentru a nu fi capturată de BEAR, PMC-ul angajat de guvernul Rus pentru a investiga operațiunile TerraGroup.", - "Select ban time": "Alege durata interdicției", - "Select friends to add:": "Alege prieteni pentru a-i invita:", - "Select pre-saved weapon build": "ALEGE UN ȘABLON DE ARMĂ SALVAT", - "Select to auto fill requirements": "Alege pentru a umple automat necesarul", - "SelectedPreset": "Șablon ales", - "SelectedQuest": "Misiune aleasă", - "Sells:": "Vinde:", - "SendFriendsRequest": "Trimite cerere de prietenie", - "SendReports": "Raportează", - "Server shutdown in {0} min!": "Serverul se va închide în {0} min!", - "Services:": "Servicii:", - "Session Search": "Caută sesiunea", - "SessionResult": "Rezultatul sesiunii", - "Sessions": "Sesiuni", + "Screenshot captured to": "Screenshot captured to", + "Search": "Search", + "SearchDescription": "The search skill mastering allows you to search bodies and containers faster and more efficiently.", + "SearchDouble": "Search two containers at a time", + "SecondPrimaryWeapon": "On Back", + "SecondaryWeapon": "Sidearm", + "SecuredContainer": "Pouch", + "Security": "SECURITY", + "Select BEAR Character": "You are an operator of Battle Encounter Assault Regiment (BEAR), a Russian PMC comprised of ex-special forces officers from all over the post-Soviet states.\nBEAR fought in the Contract Wars as a Russian government proxy to uncover the illegal activities of TerraGroup Labs and to bring an end to the continued armed conflict with its security subcontractor, the western-founded private military company USEC.", + "Select USEC Character": "You are an operator for United Security (USEC), an offshore-established PMC employed by TerraGroup Labs as a security subcontractor.\nUSEC's primary objective was to destroy any evidence of any potentially illegitimate activities done by its employer and to protect its property from being captured by BEAR, the PMC hired by the Russian government to investigate TerraGroup's operations.", + "Select ban time": "Select ban time", + "Select friends to add:": "Select friends to invite:", + "Select pre-saved weapon build": "SELECT A SAVED WEAPON PRESET", + "Select to auto fill requirements": "Select to auto-fill requirements", + "SelectedPreset": "Selected preset", + "SelectedQuest": "Selected task", + "Sells:": "Sells:", + "SendFriendsRequest": "Send friend request", + "SendReports": "Report", + "Server shutdown in {0} min!": "Server shutdown in {0} min!", + "Services:": "Services:", + "Session Search": "Session Search", + "SessionResult": "Session result", + "Sessions": "Sessions", "SetAffinityToLogicalCores": "Only use physical cores", - "SetMessageResponse": "Răspuns la mesaj", + "SetMessageResponse": "Response to the message", "Settings/Control/ResetWarning": "All controls settings have been reset to default.\n\n• Action \"Jump\" has been reassigned to Spacebar on Release.\n• New action \"Vaulting\" has been assigned to Spacebar on Continuous.\n\nPlease try these settings in-game before changing them.", "Settings/DoubleClickTimeout": "Double click timeout", "Settings/Game/ConnectionType": "Connection type", @@ -14624,39 +14554,37 @@ "Settings/Graphics/Low": "low", "Settings/Graphics/Medium": "medium", "Settings/Graphics/MipStreamingBufferTooltip": "The amount of RAM that is allocated for loading textures to a given quality. The larger the amount, the higher the peak disk load and the faster the loading of all the necessary textures.", - "Settings/Graphics/MipStreamingIOLimitTooltip": "Cu cât valoarea este mai mare, cu atât mai rapidă este încărcarea texturilor. Hardurile bune fac ca acest proces să crească ritmul de operare al acestora. La cele mai slabe, se poate întâmpla ca timpii de încărcare al operațiunilor de scriere și de citire ale hardului să facă texturile să se încarce mai lent.", + "Settings/Graphics/MipStreamingIOLimitTooltip": "The more, the faster the speed of loading textures. On good drives, this increases the load on the hard drive. On slow disks, this can lead to a large queue of drive operations and textures loading slower.", "Settings/Graphics/Only1xSamplingAllowed": "Available only with sampling value 1", "Settings/Graphics/OnlyTaaAllowed": "Available only with TAA", - "Settings/Graphics/ResetWarning": "Setările grafice au revenit la starea implicită.", + "Settings/Graphics/ResetWarning": "The graphics settings have been reset to default.", "Settings/Graphics/Ultra": "ultra", "Settings/Graphics/VeryHigh": "very high", "Settings/Graphics/VeryLow": "very low", - "Settings/NotSet": "Nesetat", - "Settings/PressType": "TIP APĂSARE", - "Settings/RevertControl": "RESETEAZĂ CONTROL", - "Settings/RevertControlToDefault": "Reveniți la setările de control implicite?", - "Settings/Settings have been changed": "Au fost schimbate câteva setări. Dorești să le salvezi?", + "Settings/NotSet": "Not set", + "Settings/PressType": "PRESS TYPE", + "Settings/RevertControl": "REVERT CONTROL", + "Settings/RevertControlToDefault": "Revert control settings to default?", + "Settings/Settings have been changed": "Some settings have been changed. Do you wish to save them?", "Settings/Sound/BinauralSound": "Binaural audio", - "Settings/Sound/ChatVolume": "Volum Chat:", - "Settings/Sound/CommentatorVolume": "Volum Crainic:", + "Settings/Sound/ChatVolume": "Chat volume:", "Settings/Sound/Device": "Audio device", - "Settings/Sound/HideoutVolume": "Volum Refugiu:", - "Settings/Sound/InterfaceVolume": "Volum interfață:", - "Settings/Sound/MusicOnRaidEnd": "Muzică la finalul raidului", - "Settings/Sound/MusicVolume": "Volum muzică:", - "Settings/Sound/OverallVolume": "Volum general:", - "Settings/Sound/ReadyToMatchSoundVolume": "Match accept screen volume:", - "Settings/UnavailablePressType": "Indisponibil", - "SevereMusclePain": "Durere musculară severă", - "Shack": "Punct Control Bază Militară", + "Settings/Sound/HideoutVolume": "Hideout volume:", + "Settings/Sound/InterfaceVolume": "Interface volume:", + "Settings/Sound/MusicOnRaidEnd": "Music on raid end", + "Settings/Sound/MusicVolume": "Music volume:", + "Settings/Sound/OverallVolume": "Overall volume:", + "Settings/UnavailablePressType": "Unavailable", + "SevereMusclePain": "Severe muscle pain", + "Shack": "Military Base CP", "Shadow visibility:": "Shadow visibility:", "Shadowconnections": "Shadow Connections", "Shadowconnectionsdescription": "Shadow connections", "Shadows quality:": "Shadows quality:", "Shaft": "Shaft", "Sharpen:": "Sharpness:", - "Shoot": "Foc", - "Shoot with the range": "ÎNCEARCĂ ARMA", + "Shoot": "Fire", + "Shoot with the range": "TRY OUT YOUR WEAPON", "ShootOut": "ShootOut", "ShootOutDescription": "Shootout - a round-robin tournament style match where each team plays against the others. The two teams with the highest number of victory points meet in the final, where the winner is determined.", "ShootOutDescriptionShort": "Mini tournament", @@ -14669,607 +14597,577 @@ "ShootOutTrio": "ShootOut Trio", "ShootOutTrioDescription": "Mini-tournament in a single match, where teams of three compete against each other.", "ShootOutTrioDescriptionShort": "TRIOS", - "ShootingMode": "Comută selector", - "Shoreline": "Litoral", - "Shorl_V-Ex": "Ex-Vehicul Drumul spre Nord", - "Shorl_free": "Drumul către Litoral", - "Shorl_free_scav": "Drumul către Litoral", - "Shotgun": "Puști cu alice", - "Shotgun Mastering": "Pușcă cu Alice", + "ShootingMode": "Switch fire mode", + "Shoreline": "Shoreline", + "Shorl_V-Ex": "Road to North V-Ex", + "Shorl_free": "Path to Shoreline", + "Shorl_free_scav": "Path to Shoreline", + "Shotgun": "Shotguns", + "Shotgun Mastering": "Shotgun", "ShotgunDescription": "Abilitatea de mânuire a puștilor de vânătoare îmbunătățește manipularea și reculul acestora.", - "ShotgunLevelingUpDescription": "Abilitatea de mânuire a puștilor de vânătoare cu alice crește prin tragere și reîncărcare a acestora.", - "Show icons": "Arată pictograme", - "Show:": "Arată: ", - "SightingRange": "POLIGON DE OCHIRE", + "Show icons": "Show icons", + "Show:": "Show: ", + "SightingRange": "SIGHTING RANGE", "Silent bots": "Silent bots", - "SilentOps": "Silențios", - "SilentOpsDescription": "Abilitatea de a rămâne ascuns în toate aspectele legate de raid îmbunătățește viteza armelor albe, scade volumul ușilor și a căutărilor.", - "Size change": "SCHIMBARE DIMENSIUNE", - "Skill": "Abilitate", - "Skill '{0}' increased by {1}": "Abilitatea '{0}' a crescut cu {1}", - "SkillLevelUpMessage": "Abilitatea '{0}' a crescut în nivel cu {1}", - "Slot0": "Celula 0", - "Slot4": "Celula 4", - "Slot5": "Celula 5", - "Slot6": "Celula 6", - "Slot7": "Celula 7", - "Slot8": "Celula 8", - "Slot9": "Celula 9", + "SilentOps": "Silent Ops", + "SilentOpsDescription": "The skill of staying undetected in all aspects of the raid operation through improved melee speed and reduced volume of doors and looting sounds.", + "Size change": "SIZE CHANGE", + "Skill": "Skill", + "Skill '{0}' increased by {1}": "Skill '{0}' increased by {1}", + "SkillLevelUpMessage": "Skill {0} leveled up to {1}", + "Slot0": "Slot 0", + "Slot4": "Slot 4", + "Slot5": "Slot 5", + "Slot6": "Slot 6", + "Slot7": "Slot 7", + "Slot8": "Slot 8", + "Slot9": "Slot 9", "Smg Mastering": "SMG", - "Smuggler's Boat": "Barca Contrabandiștilor", - "Smugglers_Trail_coop": "Poteca Contrabandiștilor (Co-op)", - "Sniper": "Puști cu zăvor", - "Sniper Roadblock": "Blocada cu Lunetiști", + "Smuggler's Boat": "Smuggler's Boat", + "Smugglers_Trail_coop": "Smuggler's Path (Co-op)", + "Sniper": "Sniper Rifles", + "Sniper Roadblock": "Sniper Roadblock", "SniperDescription": "Abilitatea de mânuire a puștii cu lunetă îmbunătățește manipularea în general, reduce reculul și timpul de reîncărcare a Puștilor cu Lunetă.", - "SniperLevelingUpDescription": "Abilitatea de mânuire a puștilor cu zăvor crește prin tragere și reîncărcarea acestora.", - "SniperRifle": "Pușcă cu lunetă", - "SniperRifle Mastering": "Pușcă cu lunetă", - "Sniper_exit": "Calea Mira", - "Sniping": "Tir cu Lunetă", - "SnipingDescription": "Abilitatea Tir cu Lunetă reduce reculul în timpul ochirii, mai ales în poziție pe burtă și permite ținerea mai lungă a respirației.", - "Softstop/You will be counted as a survivor": "Serverul va fi oprit. Dacă încă te afli într-un raid la acel moment, vei primi statusul de \"Supraviețuitor\".", - "SolarPower": "ENERGIE SOLARĂ", - "SortingTable/SellFromSortingTableConfirmation{0}": "Chiar îți dorești să-i vinzi obiecte lui Fence? Vei primi {0} ruble", - "SortingTable/TransferFromSortingTableError": "Eroare la transferarea obiectelor. Vă rugăm să transferați obiectele manual.", - "SortingTable/TransferFromSortingTableError ": "Eroare la transferarea obiectelor. Vă rugăm să transferați obiectele manual.", - "South Fence Passage": "Vechiul Buncăr", - "South V-Ex": "Ex-Vehicul Pod", + "SniperRifle": "Sniper Rifles", + "SniperRifle Mastering": "Sniper rifle", + "Sniper_exit": "Mira Ave", + "Sniping": "Sniping", + "SnipingDescription": "Sniping skill reduces recoil when aiming, especially when prone, and allows to hold breath longer.", + "Softstop/You will be counted as a survivor": "The server will be stopped. If you are still in the raid by that time, you will get the \"Survived\" status.", + "SolarPower": "SOLAR POWER", + "SortingTable/SellFromSortingTableConfirmation{0}": "Are you sure you want to sell these items to Fence? It will bring you {0} roubles", + "SortingTable/TransferFromSortingTableError": "Error while transferring items. Please transfer items manually.", + "SortingTable/TransferFromSortingTableError ": "Error while transferring items. Please transfer items manually.", + "South Fence Passage": "North Fence Passage", + "South V-Ex": "Bridge V-Ex", "Special": "Special", - "SpecialActionModifier": "Modificator de Acțiuni Speciale", - "SpecialInteraction": "Interacțiune specială", - "SpecialWeapon Mastering": "Arma specială", - "Spent": "Cheltuit", - "Spent short": "cheltuit", - "SplashDescription": "Escape from Tarkov modelează și simulează arme, aparate și alte echipamente din lumea reală. Numele produselor, logo-urile și celelalte mărci comerciale prezentate sau la care se face referire în acest joc sau în materialele auxiliare, sunt proprietatea respectivilor proprietari de mărci comerciale. Acești proprietari de mărci comerciale precum și producătorii armelor, aparatelor și a altor echipamente folosite în acest joc, nu sunt afiliați cu producătorii Escape from Tarkov, și nu susțin sau sponsorizează acest joc.", - "SplashHeader": "2023 Battlestate Games a.s. Escape from Tarkov și Battlestate Games sunt mărci comerciale sau mărci înregistrate a Battlestate Games LIMITED a.s. Toate drepturile rezervate.", - "Split": "ÎMPARTE", + "SpecialActionModifier": "Special Action Modifier", + "SpecialInteraction": "Special interaction", + "SpecialWeapon Mastering": "Special weapon", + "Spent": "Spent", + "Spent short": "spent", + "SplashDescription": "Escape from Tarkov models and simulates real-world weapons, gear, and other equipment. The product names, logos, brands, and other trademarks depicted or referred to in the game or in its ancillary materials are the property of their respective trademark owners. These trademark owners, and the manufacturers of the weapons, gear, and other equipment used in the game are not affiliated with the producers of Escape from Tarkov and do not endorse or sponsor the game.", + "SplashHeader": "2023 Battlestate Games a.s. Escape from Tarkov and Battlestate Games are registered trademarks of Battlestate Games LIMITED a.s. All rights reserved.", + "Split": "SPLIT", "Sprint": "Sprint", - "SprintAndBreath": "Sprint și Ținerea Respirației", - "StaminaRate": "Recuperare stamina", + "SprintAndBreath": "Sprint and Hold Breath", + "StaminaRate": "Stamina recovery", "Standard": "Standard", - "Standing": "Reputația", - "Standing with {0} increased by {1}": "Reputație cu {0} a crescut cu {1}", + "Standing": "Standing", + "Standing with {0} increased by {1}": "Standing with {0} increased by {1}", "Start": "Start", - "StartDialogue": "PORNEȘTE CHAT", - "StartInGroup": "Împreună", - "StartLookingForGroup": "Pornește căutarea de grup", - "StartNotInGroup": "Separat", - "StashLinesExternalObtain": "Adăugare nivel depozit", - "StashLinesExternalObtain/Tooltip": "Îmbunătățirea poate fi achiziționată de pe site", - "StatFoundMoneyEUR": "EUR găsit", - "StatFoundMoneyRUB": "RUB găsit", - "StatFoundMoneyUSD": "USD găsit", - "Stationary Healing": "Vindecare Repaus", - "Statistics": "STATISTICI", - "StatsCausedHeavyDamage": "Daune grele provocate", - "StatsCombatExperience": "Experienţă de luptă", - "StatsDoorsBreached": "Uși sparte", - "StatsDoorsUnlocked": "Uși descuiate", - "StatsElimination": "Eliminare", - "StatsEnergy": "Consum alimente", - "StatsEscape": "Bonus evacuare", - "StatsExpTrigger": "Bonus explorare", - "StatsExploring": "Experiență Explorare", - "StatsHeadshot": "Bonus lovituri la cap", - "StatsHealed": "Tratament", - "StatsHydration": "Consum băuturi", - "StatsItems": "Articole", - "StatsLooting": "Experiența prăzii", - "StatsSearching": "Experiență căutare", - "StatsStationaryContainer": "Containere staţionare", + "StartDialogue": "START CHAT", + "StartInGroup": "Together", + "StartLookingForGroup": "Start looking for a group", + "StartNotInGroup": "Separately", + "StatFoundMoneyEUR": "EUR found", + "StatFoundMoneyRUB": "RUB found", + "StatFoundMoneyUSD": "USD found", + "Stationary Healing": "Inpatient care", + "Statistics": "STATISTICS", + "StatsCausedHeavyDamage": "Inflicted heavy damage", + "StatsCombatExperience": "Combat experience", + "StatsDoorsBreached": "Doors breached", + "StatsDoorsUnlocked": "Doors unlocked", + "StatsElimination": "Elimination", + "StatsEnergy": "Food consumption", + "StatsEscape": "Escape bonus", + "StatsExpTrigger": "Exploration bonus", + "StatsExploring": "Exploring experience", + "StatsHeadshot": "Headshot bonus", + "StatsHealed": "Healing", + "StatsHydration": "Drink consumption", + "StatsItems": "Items", + "StatsLooting": "Looting experience", + "StatsSearching": "Searching experience", + "StatsStationaryContainer": "Stationary containers", "StatsStreak": "Bonus succesiv", - "StatsTreatment": "Experiență tratament", + "StatsTreatment": "Treatment experience", "Status": "Status", "StayInEpInside": "Stai în punctul de extracție", "StayInEpOutside": "Întoarce-te la punctul de extracție", - "StepLeft": "Pas lateral stânga", - "StepRight": "Pas lateral dreapta", - "Stock": "Stoc", - "Stock build": "Șablon stoc", - "Stomach": "STOMAC", - "StomachBloodloss": "Sângerare abdominală", - "Stop looking for group": "Nu mai căuta grup", - "Strength": "Putere", - "StrengthBuffAim": "Reduce consumul de stamina când ochești cu [{0:0.##%}]", - "StrengthBuffElite": "Armele echipate nu adaugă greutate în plus caracterului tău (asta nu include armele din rucsac)", - "StrengthBuffJumpHeightInc": "Crește înălțimea săriturii cu [{0:0.#%}]", - "StrengthBuffLiftWeightInc": "Crește greutatea de transport cu [{0:0.#%}]", - "StrengthBuffMeleeCrits": "Crește șansa de a face daune critice cu arma albă cu [{0:0.#%}]", - "StrengthBuffMeleePowerInc": "Crește forța loviturii armei albe cu [{0:0.#%}]", - "StrengthBuffSprintSpeedInc": "Crește viteza de mișcare și sprint cu [{0:0.#%}]", - "StrengthBuffThrowDistanceInc": "Crește distanța de aruncare cu [{0:0.#%}]", - "StrengthDescription": "Creșterea în putere îți va permite să sari mai sus, să alergi mai repede, să lovești mai tare, să arunci mai departe și să poți căra mai multă greutate.", - "StrengthLevelingUpDescription": "Abilitatea Putere crește atunci când alergi în condiția în care ești supraîncărcat, arunci grenade, folosești arme albe, sau prin antrenament în sala din Refugiu.", - "StressBerserk": "Acces la modul Berserk", - "StressPainChance": "Reducerea șansa de șoc dureros cu [{0:0.#%}]", - "StressResistance": "Rezistență la Stres", - "StressResistanceDescription": "Rezistența la stres crește șansele de a suporta șocul rănilor, mâinile tremurânde, și tremurului.", - "StressResistanceLevelingUpDescription": "Abilitatea de Rezistență la Stres crește la fiecare dauna primită. Având condiția de durere fără analgezice ajută, de asemenea, la creșterea abilității.", - "StressTremor": "Scade oscilația tremurului cu [{0:0.#%}]", - "StringSeparator/Or": " sau ", - "Stun": "Paralizat", - "Subtask completed:": "Obiectiv îndeplinit:", - "Subtitles": "Subtitrări", - "Subtitles/keeper_buy_02": "[{\"s\":0,\"e\":1,\"t\":\"Bun.\"}]", - "Subtitles/keeper_buy_03": "[{\"s\":0,\"e\":1,\"t\":\"Excelent.\"}]", - "Subtitles/keeper_buy_04": "[{\"s\":0,\"e\":1,\"t\":\"Ai grijă cu asta.\"}]", - "Subtitles/keeper_buy_05": "[{\"s\":0,\"e\":2,\"t\":\"Nu accept retururi.\"}]", - "Subtitles/keeper_buy_07": "[{\"s\":0,\"e\":1,\"t\":\"Am înțeles.\"}]", - "Subtitles/keeper_buy_08": "[{\"s\":0,\"e\":1,\"t\":\"Ține ochii-n-patru când pleci.\"}]", - "Subtitles/keeper_buy_09": "[{\"s\":0,\"e\":1,\"t\":\"Acestea sunt destul de rare.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_01": "[{\"s\":0,\"e\":3,\"t\":\"Momentan nu-i important cine sunt.\"},{\"s\":3.1,\"e\":5,\"t\":\"Contează cine ești tu și ce cauți aici.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_02": "[{\"s\":0,\"e\":6,\"t\":\"Sunt Paznicul de Far. Am grijă de tot și de toți, toată lumea poate să-mi vadă lumina.\"},{\"s\":6.1,\"e\":12,\"t\":\"În vremurile acestea tulburi, este de importanță critică să deții informațiile necesare.\"},{\"s\":12.1,\"e\":18,\"t\":\"Informația înseamnă conexiuni, iar conexiunile înseamnă oportunități.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_03": "[{\"s\":0,\"e\":6,\"t\":\"Da. Oportunitatea de a schimba împrejurările, și ca și consecință, realitatea.\"},{\"s\":6.1,\"e\":10,\"t\":\"In acest mediu ostil, necesitatea umană de bază este supraviețuirea.\"},{\"s\":10.1,\"e\":15,\"t\":\"Eu nu vreau doar să supraviețuiesc, eu vreau să controlez supraviețuirea.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_04": "[{\"s\":0,\"e\":6,\"t\":\"Este, pentru supraviețuitor. Dar pentru cineva care asigură supraviețuirea, totul este diferit.\"},{\"s\":6.1,\"e\":14,\"t\":\"Ne-am cunoscut cu un motiv. Tot ce se întâmplă are un înțeles, nu există coincidențe.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_05": "[{\"s\":0,\"e\":4,\"t\":\"Dar tu mă căutai pe mine, nu-i așa? Te-ai întrebat vreodată de ce?\"}]", - "Subtitles/keeper_dialog_option_who_are_you_06": "[{\"s\":0,\"e\":4,\"t\":\"Să fii aproape de cel pentru care haosul înseamnă începutul a ceva nou.\"},{\"s\":6.1,\"e\":10,\"t\":\"Nici tu nu vrei doar să supraviețuiești, vrei să controlezi.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_07": "[{\"s\":0,\"e\":8,\"t\":\"Tarkov e ceea ce ești. Nu poți scăpa de tine însuți. La fel cum eu nu am putut scăpa de mine însumi.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_08": "[{\"s\":0,\"e\":14,\"t\":\"Lumea se sfârșește, toate încercările astea patetice de a rezista pe o bucată de gheață ce se topește în mijlocul oceanului, toate luptele astea din zonă, ipocrizia comercianților, instigările, violență peste violență.\"},{\"s\":14.1,\"e\":22,\"t\":\"Toate astea duc la un rezultat anume. Nu va fi o eclipsă. va fi o renaștere.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_09": "[{\"s\":0,\"e\":5,\"t\":\"Tu nu vei scăpa din Tarkov.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_10": "[{\"s\":0,\"e\":5,\"t\":\"Încă nu înțelegi, este ceva natural.\"},{\"s\":5.1,\"e\":10,\"t\":\"La început nici eu nu am înțeles, atunci când au luat legătura cu mine.\"}]", - "Subtitles/keeper_dialog_option_who_are_you_11": "[{\"s\":0,\"e\":6,\"t\":\"Nu mai avem despre ce să povestim. Îți vei da singur seama în timp., în timp ce dezlegi încurcătura.\"}]", - "Subtitles/keeper_end_of_time_01": "[{\"s\":0,\"e\":1,\"t\":\"Nu mai avem timp.\"}]", - "Subtitles/keeper_end_of_time_02": "[{\"s\":0,\"e\":2,\"t\":\"Timpul nostru s-a scurs.\"}]", - "Subtitles/keeper_end_of_time_03": "[{\"s\":0,\"e\":1,\"t\":\"E târziu. Timpul s-a scurs.\"}]", - "Subtitles/keeper_end_of_time_04": "[{\"s\":0,\"e\":1,\"t\":\"Ceasul, soldat!!\"}]", - "Subtitles/keeper_end_of_time_farewell_01": "[{\"s\":0,\"e\":2,\"t\":\"Timpul s-a scurs. Ușa e acolo.\"}]", - "Subtitles/keeper_end_of_time_farewell_02": "[{\"s\":0,\"e\":2,\"t\":\"Timpul s-a scurs. Ai grijă de tine.\"}]", - "Subtitles/keeper_end_of_time_farewell_03": "[{\"s\":0,\"e\":1,\"t\":\"Timpul tău a trecut.\"}]", - "Subtitles/keeper_end_of_time_farewell_04": "[{\"s\":0,\"e\":2,\"t\":\"Te rog să pleci. Timpul ți-a expirat.\"}]", - "Subtitles/keeper_end_of_time_farewell_05": "[{\"s\":0,\"e\":3,\"t\":\"Nu apreciezi deloc timpul. Afară.\"}]", - "Subtitles/keeper_end_of_time_farewell_06": "[{\"s\":0,\"e\":2,\"t\":\"Am terminat aici, timpul tău a expirat.\"}]", - "Subtitles/keeper_first_greeting_01": "[{\"s\":3,\"e\":10,\"t\":\"Tu ești? Da, cine altcineva ar putea fi. Deci, ai trecut toate testele?\"},{\"s\":10.1,\"e\":18,\"t\":\"Eu sunt Paznicul de Far. Ai auzit de mine. Toată lumea vrea să facă afaceri cu mine, dar nu oricine poate.\"}]", - "Subtitles/keeper_generic_farewell_01": "[{\"s\":0,\"e\":1,\"t\":\"La revedere.\"}]", - "Subtitles/keeper_generic_farewell_02": "[{\"s\":0,\"e\":1,\"t\":\"Rămas bun.\"}]", - "Subtitles/keeper_generic_farewell_03": "[{\"s\":0,\"e\":1,\"t\":\"Destul pe astăzi. Numai bine.\"}]", - "Subtitles/keeper_generic_farewell_04": "[{\"s\":0,\"e\":1,\"t\":\"Spor.\"}]", - "Subtitles/keeper_generic_farewell_05": "[{\"s\":0,\"e\":2,\"t\":\"Sunt aici dacă ai nevoie de ceva.\"}]", - "Subtitles/keeper_generic_farewell_06": "[{\"s\":0,\"e\":1,\"t\":\"Mai treci pe-aici când ai puțin timp.\"}]", - "Subtitles/keeper_generic_farewell_07": "[{\"s\":0,\"e\":2,\"t\":\"Spor. Nu-l supăra pe Zryachiy.\"}]", - "Subtitles/keeper_generic_greetings_01": "[{\"s\":0,\"e\":1,\"t\":\"Salut.\"}]", - "Subtitles/keeper_generic_greetings_02": "[{\"s\":0,\"e\":1,\"t\":\"Ah… Iarăși tu.\"}]", - "Subtitles/keeper_generic_greetings_03": "[{\"s\":0,\"e\":1,\"t\":\"Sper că-i ceva important.\"}]", - "Subtitles/keeper_generic_greetings_04": "[{\"s\":0,\"e\":1,\"t\":\"Te ascult.\"}]", - "Subtitles/keeper_generic_greetings_05": "[{\"s\":0,\"e\":2,\"t\":\"O față cunoscută… Salut.\"}]", - "Subtitles/keeper_generic_greetings_07": "[{\"s\":0,\"e\":1,\"t\":\"Dorești ceva?\"}]", - "Subtitles/keeper_generic_greetings_08": "[{\"s\":0,\"e\":1,\"t\":\"Vorbește dacă tot ești aici.\"}]", - "Subtitles/keeper_generic_greetings_09": "[{\"s\":0,\"e\":2,\"t\":\"Văd că te-ai întors.\"}]", - "Subtitles/keeper_outdoor_player_death_01": "[{\"s\":0,\"e\":4,\"t\":\"Zryachiy, în cine tragi? Gata, am terminat, pleacă!\"}]", - "Subtitles/keeper_outdoor_player_death_02": "[{\"s\":0,\"e\":4,\"t\":\"Zryachiy, ocupă-te de luptă! Tu, pleacă, acum!\"}]", - "Subtitles/keeper_outdoor_player_death_03": "[{\"s\":0,\"e\":4,\"t\":\"Zryachiy, răspunde. Ocupă-te de asta! Întâlnirea s-a terminat, pleacă, acum!\"}]", - "Subtitles/keeper_sniper_death_01": "[{\"s\":0,\"e\":4,\"t\":\"Zryachiy, mă auzi? Zryachiy! Bun, tu ieși, acum!\"}]", - "Subtitles/keeper_sniper_death_02": "[{\"s\":0,\"e\":5,\"t\":\"Zryachiy, aici Paznicul de Far! Zryachiy, răspunde! Gata, întâlnirea noastră s-a terminat, pleacă!\"}]", - "Subtitles/keeper_sniper_death_03": "[{\"s\":0,\"e\":4,\"t\":\"Ce se întâmplă acolo, Zryachiy? Răspunde! Noi am terminat. Afară!\"}]", - "Subtitles/keeper_trade_02": "[{\"s\":0,\"e\":2,\"t\":\"Da, am ceva destul de interesant.\"}]", - "Subtitles/keeper_trade_05": "[{\"s\":0,\"e\":2,\"t\":\"Poftim, și nu pierde vremea.\"}]", - "Subtitles/keeper_trade_08": "[{\"s\":0,\"e\":1,\"t\":\"Sunt mai multe opțiuni.\"}]", - "Subtitles/keeper_trade_09": "[{\"s\":0,\"e\":1,\"t\":\"Am întotdeauna ceva.\"}]", - "Subtitles/keeper_want_work_reaction_01": "[{\"s\":0,\"e\":3,\"t\":\"Nu acum. Va veni vremea.\"}]", - "Subtitles/keeper_want_work_reaction_02": "[{\"s\":0,\"e\":2,\"t\":\"Abia ne-am cunoscut. Va veni și momentul potrivit.\"}]", - "Subtitles/keeper_want_work_reaction_03": "[{\"s\":0,\"e\":3,\"t\":\"Pregătesc ceva. Nu te grăbi.\"}]", - "Subtitles/keeper_want_work_reaction_04": "[{\"s\":0,\"e\":2,\"t\":\"În curând. Te anunț eu când.\"}]", - "Summary": "Sumar", - "Surgery": "Chirurgie", - "SurgeryDescription": "Abilitatea de a efectua chirurgie în teren îți poate salva viața în situații critice. Cu cât înveți mai bine acest lucru, cu atât mai rapid și mai bine vei efectua operații.", - "SurgeryLevelingUpDescription": "Abilitatea Chirurgie crește prin utilizarea truselor chirurgicale pe părțile rănite.", - "SurgeryReducePenalty": "Reduce punctele de Viață penalizate de operație cu [{0:0.#%}]", - "SurgerySpeed": "Crește viteza operațiilor cu [{0:0.#%}]", + "StepLeft": "Sidestep left", + "StepRight": "Sidestep right", + "Stock": "Stock", + "Stock build": "Stock preset", + "Stomach": "STOMACH", + "StomachBloodloss": "Abdominal bleeding", + "Stop looking for group": "Stop looking for group", + "Strength": "Strength", + "StrengthBuffAim": "Reduces stamina drain while aiming by [{0:0%}]", + "StrengthBuffElite": "Equipped weapons don't add up to the weight of your character (not including weapons in backpacks)", + "StrengthBuffJumpHeightInc": "Increases jump height by [{0:0%}]", + "StrengthBuffLiftWeightInc": "Increases carrying weight by [{0:0%}]", + "StrengthBuffMeleeCrits": "Chance to deal critical melee damage [({0})]", + "StrengthBuffMeleePowerInc": "Increases melee strike power by [{0:0%}]", + "StrengthBuffSprintSpeedInc": "Increases movement and sprint speed by [{0:0%}]", + "StrengthBuffThrowDistanceInc": "Increases throw distance by [{0:0%}]", + "StrengthDescription": "Increasing strength allows you to jump higher, sprint faster, hit harder, throw farther, and carry more weight.", + "StressBerserk": "Berserk mode access", + "StressPainChance": "Reduces pain shock chance by [{0:0%}]", + "StressResistance": "Stress Resistance", + "StressResistanceDescription": "Stress resistance improves the chances of withstanding injury shock, shaking hands, and tremors.", + "StressTremor": "Reduces tremor oscillation by [{0:0%}]", + "StringSeparator/Or": " or ", + "Stun": "Stunned", + "Subtask completed:": "Subtask completed:", + "Subtitles": "Subtitles", + "Subtitles/keeper_buy_02": "[{\"s\":0,\"e\":1,\"t\":\"Good.\"}]", + "Subtitles/keeper_buy_03": "[{\"s\":0,\"e\":1,\"t\":\"Excellent.\"}]", + "Subtitles/keeper_buy_04": "[{\"s\":0,\"e\":1,\"t\":\"Be careful with it.\"}]", + "Subtitles/keeper_buy_05": "[{\"s\":0,\"e\":2,\"t\":\"I do not accept refunds.\"}]", + "Subtitles/keeper_buy_07": "[{\"s\":0,\"e\":1,\"t\":\"Understood.\"}]", + "Subtitles/keeper_buy_08": "[{\"s\":0,\"e\":1,\"t\":\"Keep your eyes open on your way out.\"}]", + "Subtitles/keeper_buy_09": "[{\"s\":0,\"e\":1,\"t\":\"Those are quite rare.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_01": "[{\"s\":0,\"e\":3,\"t\":\"Who I am is not important at all at the moment.\"},{\"s\":3.1,\"e\":5,\"t\":\"What matters is who you are and why you are here.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_02": "[{\"s\":0,\"e\":6,\"t\":\"I am Lightkeeper. I watch over everything and everyone, and all can see my light.\"},{\"s\":6.1,\"e\":12,\"t\":\"In our restless time, it's critical to have the necessary information.\"},{\"s\":12.1,\"e\":18,\"t\":\"Information creates connections, connections yield opportunities.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_03": "[{\"s\":0,\"e\":6,\"t\":\"Yes. The opportunity to change the surroundings and, as a consequence, the reality.\"},{\"s\":6.1,\"e\":10,\"t\":\"In this kind of environment, the basic necessity for human beings is survival.\"},{\"s\":10.1,\"e\":15,\"t\":\"I don't want to simply survive, I want to control the survival.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_04": "[{\"s\":0,\"e\":6,\"t\":\"It does, for the survivor. For someone who ensures survival, everything is different.\"},{\"s\":6.1,\"e\":14,\"t\":\"We met for a reason. All events have a meaning, there are no accidents.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_05": "[{\"s\":0,\"e\":4,\"t\":\"But it was you who was looking for me, wasn’t it? Did you ask yourself why?\"}]", + "Subtitles/keeper_dialog_option_who_are_you_06": "[{\"s\":0,\"e\":4,\"t\":\"Being close to the one for whom the collapse is the beginning of the new.\"},{\"s\":6.1,\"e\":10,\"t\":\"You don’t want to simply survive, you want to be in control.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_07": "[{\"s\":0,\"e\":8,\"t\":\"Tarkov is who you are. You cannot escape from yourself. Just as I could not escape from myself.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_08": "[{\"s\":0,\"e\":14,\"t\":\"This world is ending, all these pathetic attempts to hold on to a melting ice floe in the middle of a raging ocean - all these local fights, the hypocrisy of the traders, the instigation, violence multiplied by violence.\"},{\"s\":14.1,\"e\":22,\"t\":\"All this leads to a very specific result. There will be no eclipse, there will be rebirth.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_09": "[{\"s\":0,\"e\":5,\"t\":\"You will not escape from Tarkov.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_10": "[{\"s\":0,\"e\":5,\"t\":\"You don’t understand, but this is natural.\"},{\"s\":5.1,\"e\":10,\"t\":\"I didn't understand it at first either, when they reached out to me.\"}]", + "Subtitles/keeper_dialog_option_who_are_you_11": "[{\"s\":0,\"e\":6,\"t\":\"There's nothing more for us to talk about. In time, you'll figure it out for yourself, as you unravel the tangle.\"}]", + "Subtitles/keeper_end_of_time_01": "[{\"s\":0,\"e\":1,\"t\":\"Time is running out.\"}]", + "Subtitles/keeper_end_of_time_02": "[{\"s\":0,\"e\":2,\"t\":\"Our time is running out.\"}]", + "Subtitles/keeper_end_of_time_03": "[{\"s\":0,\"e\":1,\"t\":\"Clock’s ticking. Time is almost up.\"}]", + "Subtitles/keeper_end_of_time_04": "[{\"s\":0,\"e\":1,\"t\":\"Your time, soldier!\"}]", + "Subtitles/keeper_end_of_time_farewell_01": "[{\"s\":0,\"e\":2,\"t\":\"Time’s up. The door is this way.\"}]", + "Subtitles/keeper_end_of_time_farewell_02": "[{\"s\":0,\"e\":2,\"t\":\"Time is over. Take care.\"}]", + "Subtitles/keeper_end_of_time_farewell_03": "[{\"s\":0,\"e\":1,\"t\":\"Your time is up.\"}]", + "Subtitles/keeper_end_of_time_farewell_04": "[{\"s\":0,\"e\":2,\"t\":\"Please leave the premises. Time’s up.\"}]", + "Subtitles/keeper_end_of_time_farewell_05": "[{\"s\":0,\"e\":3,\"t\":\"You don't appreciate time at all. Out.\"}]", + "Subtitles/keeper_end_of_time_farewell_06": "[{\"s\":0,\"e\":2,\"t\":\"We’re done here - your time ran out.\"}]", + "Subtitles/keeper_first_greeting_01": "[{\"s\":3,\"e\":10,\"t\":\"Is that you? Right, who else would it be. So, you’ve passed all my tests?\"},{\"s\":10.1,\"e\":18,\"t\":\"I am Lightkeeper. Guess you’ve heard about me. Everyone wants to do business with me, but not everyone can.\"}]", + "Subtitles/keeper_generic_farewell_01": "[{\"s\":0,\"e\":1,\"t\":\"See you soon.\"}]", + "Subtitles/keeper_generic_farewell_02": "[{\"s\":0,\"e\":1,\"t\":\"Farewell.\"}]", + "Subtitles/keeper_generic_farewell_03": "[{\"s\":0,\"e\":1,\"t\":\"That's all for now. Have a good one.\"}]", + "Subtitles/keeper_generic_farewell_04": "[{\"s\":0,\"e\":1,\"t\":\"Good luck.\"}]", + "Subtitles/keeper_generic_farewell_05": "[{\"s\":0,\"e\":2,\"t\":\"I’ll be here if you need anything.\"}]", + "Subtitles/keeper_generic_farewell_06": "[{\"s\":0,\"e\":1,\"t\":\"Stop by when you get a minute.\"}]", + "Subtitles/keeper_generic_farewell_07": "[{\"s\":0,\"e\":2,\"t\":\"Good luck. Don’t make Zryachiy upset.\"}]", + "Subtitles/keeper_generic_greetings_01": "[{\"s\":0,\"e\":1,\"t\":\"Greetings.\"}]", + "Subtitles/keeper_generic_greetings_02": "[{\"s\":0,\"e\":1,\"t\":\"Ah… You again.\"}]", + "Subtitles/keeper_generic_greetings_03": "[{\"s\":0,\"e\":1,\"t\":\"I hope it’s important.\"}]", + "Subtitles/keeper_generic_greetings_04": "[{\"s\":0,\"e\":1,\"t\":\"I’m listening.\"}]", + "Subtitles/keeper_generic_greetings_05": "[{\"s\":0,\"e\":2,\"t\":\"A familiar face… Greetings.\"}]", + "Subtitles/keeper_generic_greetings_07": "[{\"s\":0,\"e\":1,\"t\":\"You wanted something?\"}]", + "Subtitles/keeper_generic_greetings_08": "[{\"s\":0,\"e\":1,\"t\":\"Since you’re here, speak.\"}]", + "Subtitles/keeper_generic_greetings_09": "[{\"s\":0,\"e\":2,\"t\":\"I see you’re back.\"}]", + "Subtitles/keeper_outdoor_player_death_01": "[{\"s\":0,\"e\":4,\"t\":\"Zryachiy, what's with that shootout? That’s it, we’re done, get out of here!\"}]", + "Subtitles/keeper_outdoor_player_death_02": "[{\"s\":0,\"e\":4,\"t\":\"Handle this gunfight, Zryachiy! You, leave, now!\"}]", + "Subtitles/keeper_outdoor_player_death_03": "[{\"s\":0,\"e\":4,\"t\":\"Zryachiy, come in. Deal with this! The meeting is over, leave, now!\"}]", + "Subtitles/keeper_sniper_death_01": "[{\"s\":0,\"e\":4,\"t\":\"Zryachiy, do you copy? Zryachiy! Alright, you get out of here, now!\"}]", + "Subtitles/keeper_sniper_death_02": "[{\"s\":0,\"e\":5,\"t\":\"Zryachiy, this is Lightkeeper! Zryachiy, come in! That’s it, our meeting is over, go away!\"}]", + "Subtitles/keeper_sniper_death_03": "[{\"s\":0,\"e\":4,\"t\":\"What’s going on, Zryachiy? Answer me! We’re done. Out!\"}]", + "Subtitles/keeper_trade_02": "[{\"s\":0,\"e\":2,\"t\":\"Well, I do have something interesting.\"}]", + "Subtitles/keeper_trade_05": "[{\"s\":0,\"e\":2,\"t\":\"Here, just don’t waste my time.\"}]", + "Subtitles/keeper_trade_08": "[{\"s\":0,\"e\":1,\"t\":\"There are several options.\"}]", + "Subtitles/keeper_trade_09": "[{\"s\":0,\"e\":1,\"t\":\"I always have something.\"}]", + "Subtitles/keeper_want_work_reaction_01": "[{\"s\":0,\"e\":3,\"t\":\"Not now. The time will come.\"}]", + "Subtitles/keeper_want_work_reaction_02": "[{\"s\":0,\"e\":2,\"t\":\"We had only just got acquainted. Eventually, the time will come.\"}]", + "Subtitles/keeper_want_work_reaction_03": "[{\"s\":0,\"e\":3,\"t\":\"I'm working on something. Don't get ahead of yourself.\"}]", + "Subtitles/keeper_want_work_reaction_04": "[{\"s\":0,\"e\":2,\"t\":\"Any hour now. I’ll let you know when.\"}]", + "Summary": "Summary", + "Surgery": "Surgery", + "SurgeryDescription": "The ability to perform field surgery may save your life in critical situations. The better you learn this skill, the faster and better you will perform combat surgeries.", + "SurgeryReducePenalty": "Reduces surgery HP penalty by [{0:0%}]", + "SurgerySpeed": "Increases surgery speed by [{0:0%}]", "Survival Rate Short": "S/R: {0}%", - "SurvivalRate": "Rată de supraviețuire", - "Survived": "Supraviețuit", - "Survivor": "Supraviețuitor", - "Survivor class": "Clasă Supraviețuitor", - "Svetliy Dead End": "Fundătura Svetliy", - "Switch to ({0})": "Schimbă la ({0})", - "SwitchHeadLight": "Comutare mod dispozitiv cască", + "SurvivalRate": "Survival rate", + "Survived": "Survived", + "Survivor": "Survivor", + "Survivor class": "Survivor class", + "Svetliy Dead End": "Svetliy Dead End", + "Switch to ({0})": "Switch to ({0})", + "SwitchHeadLight": "Switch helmet tactical device mode", "SwitchHeadLight:": "", - "SymbolUsage": "Car. folosite: {0}/{1}", - "Synchronizing with other players": "Sincronizare cu alţi jucători...", - "TASKS": "SARCINI", - "TEAM STATUS": "STAREA ECHIPEI", - "TEAMS_TAB": "ECHIPE", - "TECHNICAL CONDITION": "CONDIȚIE TEHNICĂ", + "SymbolUsage": "Char. used: {0}/{1}", + "Synchronizing with other players": "Synchronizing with other players...", + "TASKS": "TASKS", + "TEAM STATUS": "TEAM STATUS", + "TEAMS_TAB": "TEAMS", + "TECHNICAL CONDITION": "TECHNICAL CONDITION", "TF": "TF", - "THATDIRECTION": "ÎN ACEA DIRECŢIE", - "TIMESTAMP": "TIMP", - "TIP_CLOSE_DOOR_AND_LEAVE": "Încuie ușa", - "TIP_DISABLE_ALARM": "DEZACTIVEAZĂ ALARMA", - "TIP_MOVE_URINAL": "Trage apa", - "TIP_POWER_CUSTOMS_LEVER": "Pornește", - "TIP_POWER_D2": "PORNEȘTE", - "TIP_POWER_MALL": "Pornește curentul", - "TIP_POWER_SOMETHING": "ALIMENTEAZĂ OBIECTUL-14", - "TIP_PRESS_D2": "DESCHIDE UȘA D-2", + "THATDIRECTION": "THAT DIRECTION", + "TIMESTAMP": "TIME", + "TIP_CLOSE_DOOR_AND_LEAVE": "Lock the door", + "TIP_DISABLE_ALARM": "DISABLE ALARM", + "TIP_MOVE_URINAL": "Flush", + "TIP_POWER_CUSTOMS_LEVER": "Turn on", + "TIP_POWER_D2": "TURN ON", + "TIP_POWER_MALL": "Restore power supply", + "TIP_POWER_SOMETHING": "POWER UP OBJECT-14", + "TIP_PRESS_D2": "OPEN THE D-2 DOOR", "TMT": "TMT", - "TO INSURE": "DE ASIGURAT", - "TO SELL": "DE VÂNDUT", - "TOTAL SUM TO PAY: ": "SUMA TOTALĂ DE PLĂTIT: ", - "TURN ON": "PORNEȘTE", - "TURNOFF": "OPREȘTE", - "TURNON": "PORNEȘTE", - "TYPES OF FIRE": "TIPURI DE FOC", - "Tactical": "Comută dispozitivele tactice", - "Tactical clothing": "Îmbrăcăminte Tactică", - "TacticalVest": "Ham Tactic", - "Tag": "Etiche", - "Tagged and Cursed": "Marcat și Blestemat", - "Take": "Acceptă", - "Taking": "Luăm", + "TO INSURE": "TO INSURE", + "TO SELL": "TO SELL", + "TOTAL SUM TO PAY: ": "TOTAL SUM TO PAY: ", + "TURN ON": "TURN ON", + "TURNOFF": "TURN OFF", + "TURNON": "TURN ON", + "TYPES OF FIRE": "TYPES OF FIRE", + "Tactical": "Toggle tactical devices", + "Tactical clothing": "Tactical clothing", + "TacticalVest": "Tactical Rig", + "Tag": "Tag", + "Tagged and Cursed": "Tagged and Cursed", + "Take": "Take", + "Taking": "Taking", "Tarkov": "Tarkov", - "TarkovStreets": "Străzile din Tarkov", - "Task": "Sarcină", - "Taskperformance": "Performanță Sarcini", + "TarkovStreets": "Streets of Tarkov", + "Task": "Task", + "Taskperformance": "Task Performance", "TeamFight": "TeamFight", - "TeamFightDescription": "Luptă de echipă 5 vs 5. Obiectivul este eliminarea echipei adverse înainte să te elimine pe tine.", + "TeamFightDescription": "Team fight 5 against 5. The objective is to eliminate the opposing team sooner than they kill you.", "TeamFightDescriptionShort": "Team deathmatch", "Teamkills": "Teamkills", "Terrain quality:": "Terrain quality:", "Texture quality settings will be applied after restart.": "Texture quality settings will be applied after game restart.", "Texture quality:": "Texture quality:", - "That item cannot be insured": "Acest obiect nu poate fi asigurat", - "The Boat": "Barca", - "The Game servers are too busy or unavailable right now. Please try again later.": "Serverele jocului sunt prea ocupate sau indisponibile acum. Vă rugăm să încercati din nou mai târziu.", - "The Time has Come": "A SOSIT MOMENTUL", - "The generator has ran out of fuel!": "Generatorul a rămas fără combustibil!", - "The generator is almost out of fuel!": "Combustibilul din generator este aproape gata!", - "The invitation has expired": "Jucătorul {0} nu a acceptat invitația de grup", - "The item has been sold": "Articolul a fost vândut", - "The items needed from your stash:": "Obiecte necesare din depozitul tău:", - "The map is available to players from level": "Această hartă este disponibilă jucătorilor de la nivelul {0}", - "The map is available to players up to level": "Această hartă este disponibilă jucătorilor până la nivelul {0}", - "These items will be lost if you do not survive in the next raid. You can move them to a special stash for quest items.": "Poți muta aceste obiecte într-un depozit special pentru obiective. Ele vor fi pierdute dacă nu supraviețuiești raidului.", - "This is already equipped": "Acesta este deja echipat", - "This item is purchased in quantities of {0} pcs. (Max: {1}) limited for you in one restock": "Ai cumpărat acest articol în cantitate de {0} buc.\n(Max: {1}) pot fi cumpărate la fiecare actualizare de stoc.", - "This light level has not been unlocked yet": "Acest nivel de iluminare nu a fost deblocat încă", - "This location is not available for scav": "Această locație nu este disponibilă pentru Scavi", - "ThrowGrenade": "Pregătește o grenadă", - "ThrowItem": "Aruncă", - "Throwing": "Aruncabile", + "That item cannot be insured": "That item cannot be insured", + "The Boat": "Boat", + "The Game servers are too busy or unavailable right now. Please try again later.": "The game servers are too busy or unavailable right now. Please try again later.", + "The Time has Come": "THE TIME HAS COME", + "The generator has ran out of fuel!": "The generator has ran out of fuel!", + "The generator is almost out of fuel!": "The generator is almost out of fuel!", + "The invitation has expired": "Player {0} failed to accept the group invite", + "The item has been sold": "The item has been sold", + "The items needed from your stash:": "This item(s) is required from your stash:", + "The map is available to players from level": "The map is available to players from level {0}", + "The map is available to players up to level": "The map is available to players up to level {0}", + "These items will be lost if you do not survive in the next raid. You can move them to a special stash for quest items.": "You can move these items to a special stash for quest items. They will be lost if you do not survive the raid.", + "This is already equipped": "This is already equipped", + "This item is purchased in quantities of {0} pcs. (Max: {1}) limited for you in one restock": "You've purchased this item in quantities of {0} pcs.\n(Max: {1}) limited for you in one restock", + "This light level has not been unlocked yet": "This light level has not been unlocked yet", + "This location is not available for scav": "This location is not available for Scavs", + "ThrowGrenade": "Prepare a grenade", + "ThrowItem": "Discard", + "Throwing": "Throwables", "ThrowingDescription": "Abilitatea de mânuire a armelor cu aruncare îți permite să arunci grenadele mai departe cu un consum de energie redus.", - "ThrowingEnergyExpenses": "Reduce energia necesară pentru aruncare cu [{0:0.#%}]", - "ThrowingLevelingUpDescription": "Abilitatea Aruncabile crește cu aruncarea grenadelor.", - "ThrowingStrengthBuff": "Crește puterea de aruncare cu [{0:0.#%}]", - "ThrowingWeaponsBuffElite": "Aruncabilele nu necesită energie, iar oboseala nu afectează precizia", - "Time flow": "Curgerea Timpului", - "Time to reconnect left ({0})": "Timp rămas pentru reconectare ({0})", - "TimeDaysShort": "zi(le)", - "TimeFlowType/x0": "x0 - oprit", + "ThrowingEnergyExpenses": "Reduces required throw energy by [{0:0%}]", + "ThrowingStrengthBuff": "Increases throw strength by [{0:0%}]", + "ThrowingWeaponsBuffElite": "Throwables don't require energy and fatigue does not affect their accuracy", + "Time flow": "Time flow", + "Time to reconnect left ({0})": "Time left to reconnect ({0})", + "TimeDaysShort": "day(s)", + "TimeFlowType/x0": "x0 - stopped", "TimeFlowType/x0_14": "x0.14 - real", - "TimeFlowType/x0_25": "x0.25 - foarte încet", - "TimeFlowType/x0_5": "x0.5 - încet", - "TimeFlowType/x1": "x1 - ca online", - "TimeFlowType/x2": "x2 - rapid", - "TimeFlowType/x4": "x4 - foarte rapid", - "TimeFlowType/x8": "x8 - extrem de rapid", + "TimeFlowType/x0_25": "x0.25 - very slow", + "TimeFlowType/x0_5": "x0.5 - slow", + "TimeFlowType/x1": "x1 - as in online", + "TimeFlowType/x2": "x2 - fast", + "TimeFlowType/x4": "x4 - very fast", + "TimeFlowType/x8": "x8 - insanely fast", "TimeoutError": "Timeout Error", - "Times of day": "Momentul Zilei", - "To spend": "De petrecut", - "ToggleGoggles": "Comutare echipamentul de pe cap (vizor, vedere de noapte)", - "ToggleHeadLight": "Comutare dispozitiv tactic cască", + "Times of day": "Time of day", + "To spend": "To spend", + "ToggleGoggles": "Toggle on-head equipment (NVG, face shield)", + "ToggleHeadLight": "Toggle helmet tactical device", "ToggleHeadLight:": "", - "ToggleInfo": "Comutare icoane", - "ToggleLauncher": "Comutare Armă de Sub-țeavă", - "Top": "Piept", - "TopUp": "UMPLE", + "ToggleInfo": "Icons toggle", + "ToggleLauncher": "Toggle Underbarrel Weapon", + "Top": "Top", + "TopUp": "TOP-UP", "Total": "Total", - "Total (or estimated) price:": "Preț total (sau estimat):", - "Tournament": "Turneu", - "TournamentDescription": "Doar câștigătorii pot ajunge în finală. Câștigă cu stil și adună fani din audiență.", - "TournamentDescriptionShort": "PARTICIPĂ LA TURNEU PENTRU TITLUL DE ”CAMPION AL ARENEI”", - "Trader": "Comerciant:", - "Trader can't buy this item": "Comerciantul nu poate cumpăra acest obiect.", - "Trader can't insure any item": "Comerciantul poate asigura numai anumite obiecte.", - "Trader can't repair that item": "Comerciantul nu poate repara acel obiect.", - "Trader lock": "Nu poți modifica obiectele comerciantului.", - "Trader/Attitude": "Dispoziția comerciantului", - "Traders are not available now": "Comercianții sunt indisponibili acum", - "Trading": "COMERȚ", - "Trading/AssortmentUpdated": "reaprovizionat", - "Trading/Bad standing": "Comerciantul nu vrea să cumpere de la tine din cauza reputației scăzute", - "Trading/Btr/Dialog/AvailableServices/Description": "Înțeleg unde vrei să ajungi, pot să iți ofer foc de acoperire dacă ești urmărit. Mai pot să-ți mut lucrurile într-un loc mai potrivit, refugiul tău. Ce alegi?", - "Trading/Btr/Dialog/AvaliableServices": "Ce servicii oferi?", - "Trading/Btr/Dialog/Quit": "Termină conversația", - "Trading/Dialog/AskForNewQuests": "Ai o misiune pentru mine?", - "Trading/Dialog/AvailableServices": "Ma poți ajuta cu ceva?", - "Trading/Dialog/AvailableServices/Description": "Apelezi la serviciile mele? Bine, deja ți-ai îndeplinit scopul, așa că te voi ajuta dacă ai suficienți bani.", - "Trading/Dialog/AvailableServices/Standing": "(Reputația cu Paznicul de Far: {0:N2})", - "Trading/Dialog/AvaliableServices": "Ma poți ajuta cu ceva?", - "Trading/Dialog/Btr/News": "Ce mai e nou?", - "Trading/Dialog/Btr/News/Next": "Alte noutăți?", - "Trading/Dialog/Btr/News1": "A nins așa de mult! N-am mai avut așa zăpadă de pe vremea Războaielor de Contracte. De parcă am fi în nord. Păcat că s-a topit deja.", - "Trading/Dialog/Btr/News2": "Nu prea ieși din casă, așa-i? A fost o sărbătoare mare, tot orașul a petrecut! Sărbători fericite, apropo.", - "Trading/Dialog/Btr/News3": "Șefii noștri au făcut o mare mizerie, nu-i așa? Stau pe funcțiile lor, nu se mișcă, nu lasă pe nimeni să miște ceva.", - "Trading/Dialog/Btr/News4": "Ciudatul care se îmbracă de Moș Crăciun în fiecare an, vorbește acum! Credeam că e mut.", - "Trading/Dialog/Btr/News5": "Lumea s-a apucat să colecționeze figurine ale indivizilor faimoși din oraș. Mă întreb dacă BTR-ul meu va avea o figurină sau nu.", - "Trading/Dialog/Btr/NoNews": "Cam atât despre noutăți.", - "Trading/Dialog/Btr/ServicePayoff{0}": "Îmi convine. (predă \"{0}\")", - "Trading/Dialog/BtrBotCover/Description": "Cât timp te afli în BTR, voi împușca tot ce văd. Am să curăț și zona de debarcare și am să te acopăr în timp ce ieși, dar nu pentru mult timp.", - "Trading/Dialog/BtrBotCover/Name": "Foc de acoperire", - "Trading/Dialog/BtrItemsDelivery/Name": "Mută articolele în depozit", - "Trading/Dialog/CultistAmulet/Description": "Pot să-ți ofer o amuletă ce te va proteja de cultiști pentru o vreme. Ai grijă doar să nu-i superi.", - "Trading/Dialog/CultistAmulet/Name": "Poți să-i faci pe indivizii cu glugă neagră să nu mă mai atace?", - "Trading/Dialog/CultistsAid/Description": "Pot să-ți ofer o amuletă ce te va proteja de ei pentru o vreme. Ai grijă doar să nu-i superi.", - "Trading/Dialog/CultistsAid/Name": "Poți să-i faci pe indivizii cu glugă neagră să nu mă mai atace?", - "Trading/Dialog/ExUsecLoyalty/Description": "Rebelii te pot ajuta să evadezi cu viață. Dar oare iți permiți?", - "Trading/Dialog/ExUsecLoyalty/Name": "Ma poți ajuta să negociez cu Rebelii?", - "Trading/Dialog/GoBackDefault": "Înapoi", - "Trading/Dialog/PlayerAboutQuests": "Despre misiuni...", - "Trading/Dialog/PlayerAcceptQuest{0}": "Facem. (accept misiunea \"{0}\")", - "Trading/Dialog/PlayerFinishQuest{0}": "Gata. (misiune îndeplinită \"{0}\")", - "Trading/Dialog/PlayerHandoveItem{0}": "Am găsit asta. (predă \"{0}\")", - "Trading/Dialog/PlayerTaxi/Description": "Te pot duce în locurile astea. Alege unul.", - "Trading/Dialog/PlayerTaxi/Name": "Ia taxiul", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Bun, spre cinema Rodina. E bun tariful?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Cinema Rodina", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "Mergem la tramvai. Ai bani, nu?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Tramvai", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "Perfect, mergem în centru. Ai bani destui?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "Centrul Orașului", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Mergem la macaraua răsturnată. E bun tariful?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Macaraua Răsturnată", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "Mă duc spre vechiul punct de control al Scavilor. E bun prețul?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Vechiul Punct de Control Scavi", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "Te pot duce până la hotelul Pinewood. Îți convine prețul?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Hotel Pinewood", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "Mă duc spre buncărul Scavilor. E bun prețul?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Buncărul Scavilor", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "Satul scufundat, da? Facem. Te costă atât.", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Satul scufundat", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "Te pot duce până la răscruce, sigur. Ai destui bani?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Răscruce", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "Gaterul? Nicio problemă! Uite cât costă.", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Gater", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "La punctul de control USEC, sigur. Nu te duc pe gratis, totuși.", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "Punct de Control USEC", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "Verific acum harta, mergem spre baza EMERCOM. E bun prețul?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "Baza EMERCOM", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "Bine, către vechiul gater. Te costă atât.", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Vechiul Gater", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "Vrei să te las la depou? Doar ca să știi, nu poți ieși de-acolo fără mine. Daca prețul e în regulă, ai mare grijă la ceas cât ești acolo, bine?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Depou Feroviar", - "Trading/Dialog/Quit": "Plec", - "Trading/Dialog/ServicePayoff{0}": "Bun, asta ar trebui să fie de ajuns. (predă \"{0}\")", - "Trading/Dialog/ToggleHistoryOff": "Ascunde istoric", - "Trading/Dialog/ToggleHistoryOn": "Arată istoric", - "Trading/Dialog/WhoAreYouPlayerQuestion1": "Cine ești?", - "Trading/Dialog/WhoAreYouPlayerQuestion10": "Cine? Despre cine vorbești?", - "Trading/Dialog/WhoAreYouPlayerQuestion2": "Oportunități?", - "Trading/Dialog/WhoAreYouPlayerQuestion3": "Sună prea ambițios...", - "Trading/Dialog/WhoAreYouPlayerQuestion4": "Și de ce ai avea nevoie de mine?", - "Trading/Dialog/WhoAreYouPlayerQuestion5": "Nu știu... Aș putea obține ceva cunoscând un om ca tine.", - "Trading/Dialog/WhoAreYouPlayerQuestion6": "Vreau să evadez din Tarkov.", + "Total (or estimated) price:": "Total (or estimated) price:", + "Tournament": "Tournament", + "TournamentDescription": "Only the winners will make it to the finals. Win in style and gain glory with the audience. ", + "TournamentDescriptionShort": "PARTICIPATE IN THE TOURNAMENT FOR THE TITLE \"CHAMPION OF THE ARENA\"", + "Trader": "Trader:", + "Trader can't buy this item": "The trader cannot buy this item.", + "Trader can't insure any item": "The trader can only insure certain items.", + "Trader can't repair that item": "The trader cannot repair that item.", + "Trader lock": "You cannot modify traders' items.", + "Trader/Attitude": "Trader's standing", + "Traders are not available now": "Traders are not available now", + "Trading": "TRADING", + "Trading/AssortmentUpdated": "restocked", + "Trading/Bad standing": "The trader doesn't want to buy it from you because of low reputation", + "Trading/Btr/Dialog/AvailableServices/Description": "I can get you where you want to go, I can provide cover fire if you're being tailed. I can also move your stuff to the right place, to your hideout. So, what's it gonna be?", + "Trading/Btr/Dialog/AvaliableServices": "So what can you do?", + "Trading/Btr/Dialog/Quit": "End conversation", + "Trading/Dialog/AskForNewQuests": "Got any work for me?", + "Trading/Dialog/AvailableServices": "Can you help me with something?", + "Trading/Dialog/AvailableServices/Description": "You want my services? Well, you've served your purpose already, so I'll help you if you have enough to cover the cost.", + "Trading/Dialog/AvailableServices/Standing": "(Lightkeeper standing: {0:N2})", + "Trading/Dialog/AvaliableServices": "Can you help me with something?", + "Trading/Dialog/Btr/News": "What's the news?", + "Trading/Dialog/Btr/News/Next": "Any more news?", + "Trading/Dialog/Btr/News1": "The biggest news is the BTR! I fixed it all myself. Consider it my own creation. Now I can drive people around. Maybe that'll help me pay for the repairs.", + "Trading/Dialog/Btr/News2": "Someone is organizing gladiatorial fights in Tarkov. They say a lot of people went there of their own free will. The money's pretty good. If you survive, obviously!", + "Trading/Dialog/Btr/News3": "There was an uproar all over Tarkov over some TerraGroup documents. They've even been looking beyond the border, but I kinda don't believe it.", + "Trading/Dialog/Btr/News4": "A while back, most of the AP ammo went missing from the traders' stocks. Fighters like you were running all over Tarkov, looking for other people's ammo stashes. Now everything's fine though.", + "Trading/Dialog/Btr/News5": "Sanitar tried to strengthen his influence in Tarkov recently. He had some kind of an antidote, apparently. Not long before that, a lot of people got poisoned. Coincidence? I think not.", + "Trading/Dialog/Btr/NoNews": "I think that's all the news I have.", + "Trading/Dialog/Btr/ServicePayoff{0}": "Works for me, yes. (hand over \"{0}\")", + "Trading/Dialog/BtrBotCover/Description": "The whole time you're in the BTR, we'll shoot anyone who sticks their noses out. We'll also clear the drop zone and cover you while you get out, but not for long.", + "Trading/Dialog/BtrBotCover/Name": "Cover fire", + "Trading/Dialog/BtrItemsDelivery/Name": "Move items to stash", + "Trading/Dialog/CultistAmulet/Description": "I can offer you a special amulet that will keep you safe from the cultists for some time. Just make sure you don't upset them.", + "Trading/Dialog/CultistAmulet/Name": "Can you make those black coat people stop attacking me on sight?", + "Trading/Dialog/CultistsAid/Description": "I can offer you a special amulet that will keep you safe from them for some time. Just make sure you don't upset them.", + "Trading/Dialog/CultistsAid/Name": "Can you make those black coat people stop attacking me on sight?", + "Trading/Dialog/ExUsecLoyalty/Description": "The Rogues can help you leave this area alive. But can you afford it?", + "Trading/Dialog/ExUsecLoyalty/Name": "Can you help me negotiate with the Rogues?", + "Trading/Dialog/GoBackDefault": "Back", + "Trading/Dialog/PlayerAboutQuests": "About the tasks...", + "Trading/Dialog/PlayerAcceptQuest{0}": "Will do. (accept task \"{0}\")", + "Trading/Dialog/PlayerFinishQuest{0}": "Done. (finish task \"{0}\")", + "Trading/Dialog/PlayerHandoveItem{0}": "Found this. (hand over \"{0}\")", + "Trading/Dialog/PlayerTaxi/Description": "Here's where I can drop you off. Pick one.", + "Trading/Dialog/PlayerTaxi/Name": "Take a ride", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina Cinema", + "Trading/Dialog/PlayerTaxi/p2/Description": "Driving to the tram. You got the cash, right?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Great, we're on course for city center. You got enough cash?", + "Trading/Dialog/PlayerTaxi/p3/Name": "City Center", + "Trading/Dialog/PlayerTaxi/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Collapsed Crane", + "Trading/Dialog/PlayerTaxi/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Old Scav Checkpoint", + "Trading/Dialog/PlayerTaxi/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood Hotel", + "Trading/Dialog/Quit": "Take your leave", + "Trading/Dialog/ServicePayoff{0}": "Alright, this should be enough. (hand over \"{0}\")", + "Trading/Dialog/ToggleHistoryOff": "Hide history", + "Trading/Dialog/ToggleHistoryOn": "Show history", + "Trading/Dialog/WhoAreYouPlayerQuestion1": "Who are you?", + "Trading/Dialog/WhoAreYouPlayerQuestion10": "They? Who are you talking about?", + "Trading/Dialog/WhoAreYouPlayerQuestion2": "Opportunities?", + "Trading/Dialog/WhoAreYouPlayerQuestion3": "It all sounds too ambitious...", + "Trading/Dialog/WhoAreYouPlayerQuestion4": "So why do you need me?", + "Trading/Dialog/WhoAreYouPlayerQuestion5": "I don't know... I thought knowing someone like you could give me something.", + "Trading/Dialog/WhoAreYouPlayerQuestion6": "I want to escape from Tarkov.", "Trading/Dialog/WhoAreYouPlayerQuestion7": "…", - "Trading/Dialog/WhoAreYouPlayerQuestion8": "Renaștere? Eclipsă? Despre ce naiba vorbești acolo?", - "Trading/Dialog/WhoAreYouPlayerQuestion9": "Bine, voi încerca. Eu speram să ma ajuți tu pe mine cu asta.", - "Trading/Dialog/YouAreHere": "Ești aici", - "Trading/Dialog/ZryachiyAid/Description": "Zryachiy este unul dintre cei mai buni lunetiști din lume. Îți va ține spatele, va elimina pe oricine din calea ta. Dar acest ajutor vine cu un preț. Ești dispus să-l plătești?", - "Trading/Dialog/ZryachiyAid/Name": "Asculta, prietenul tău lunetist mă poate ajuta să evadez de-aici?", - "Trading/InsufficientNumberOfItemsInStock{}{}": "Comerciantul nu a avut {0} articole în stoc. Ai cumpărat ultimele {1}.", - "Trading/NoSelectedItems": "Niciun articole ales", - "Trailer Park": "Parc Remorci", - "Trailer Park Workers Shack": "Baraca Muncitorilor din Parcarea Remorcilor", + "Trading/Dialog/WhoAreYouPlayerQuestion8": "Rebirth? Eclipse? The hell are you talking about?", + "Trading/Dialog/WhoAreYouPlayerQuestion9": "Well, I'm going to try. And I was hoping you would help me with this.", + "Trading/Dialog/YouAreHere": "You are here", + "Trading/Dialog/ZryachiyAid/Description": "Zryachiy is one of the best snipers in the world. He'll have your back, kill anyone who crosses your path. But this kind of help comes at a price. You ready to shell out?", + "Trading/Dialog/ZryachiyAid/Name": "Listen, can your sniper friend help me get out of here?", + "Trading/InsufficientNumberOfItemsInStock{}{}": "The trader did not have {0} items in stock. You bought the last {1}.", + "Trading/NoSelectedItems": "No selected items", + "Trailer Park": "Trailer Park", + "Trailer Park Workers Shack": "Trailer Park Workers' Shack", "Transfer": "TRANSFER", - "TransferItemsScreen/BtrContainerName": "PORTBAGAJ BTR-82A", - "TransferLeadership": "TRANSFERĂ CONDUCEREA", - "TransferLeadership message": "Ești sigur că vrei să transferi conducerea?", - "TransferScreen/BtrCaution": "BTR-ul va pleca curând! Articolele neplătite vor fi pierdute!", - "TransferScreen/Deliver": "Livrează", - "TransferScreen/ErrorMovingNotification": "Nu se pot transfera articolele. Vă rugăm să le transferați manual.", - "TransferScreen/NotEnoughMoney": "Fonduri insuficiente", - "TransferScreen/NothingToRemove": "Portbagajul este gol", - "TransferScreen/NothingToTransfer": "Portbagajul este gol", - "TransferScreen/PriceMessage": "Preț livrare:", - "TransferScreen/TransferFailed": "Achiziție serviciu nereușită", - "TransferScreen/TransferSuccess": "Serviciul achiziționat!", - "Tremor": "Tremur", - "TroubleFixing": "Crește viteza de diagnosticare cu [{0:0.#%}]", - "TroubleFixingAmmoElite": "Reduce șansa unei defecțiuni a cartușelor după repararea unei defecțiuni din aceeași cauză cu [50%]", - "TroubleFixingDurElite": "Reduce șansa unei defecțiuni cauzate de uzură după repararea unei defecțiuni din aceeași cauză cu [50%]", - "TroubleFixingExamineMalfElite": "Identificarea tipului de defecțiune nu necesită examinarea armei", - "TroubleFixingMagElite": "Reduce șansa unei defecțiuni de încărcare după repararea unei defecțiuni din aceeași cauză cu [50%]", - "TroubleShootingDescription": "Abilitatea Depanare facilitează repararea defecțiunilor armei.", - "Troubleshooting": "Depanare", - "TroubleshootingLevelingUpDescription": "Abilitatea Depanare crește prin repararea defecțiunilor armei.", - "Try_keycard {0}": "Încearcă {0}", - "Tunnel": "Tunel", - "Tunnel_Shared": "Tunel de Serviciu (Co-Op)", - "Tutorial hints": "Sfaturi pentru începători", - "Tutorial_CharacterSelection_Description": " Ca și Scav nu riscați propriul echipament, și dacă supraviețuiți raidului, toate obiectele pot fi transferate în depozitul personajului principal. Mai mult decât atât, alți Scavi vă vor considera ca unul de-al lor, atâta timp cât nu îi ucideți sau insultați pe oricare dintre ei.\nCu toate acestea, în timpul jocului ca și Scav, personajul principalnu va primi experiență sau îmbunătățiri ale abilităților. \\n\\nDacă jucați ca și localnic sunteți limitat de un timp de repaus. Jocul ca și Scav este o modalitate bună de a vă familiariza cu jocul, fără a risca echipament de valoare.\n", - "Tutorial_CharacterSelection_Title": "Selecţie Caracter", - "Tutorial_CloseConfirmationDialog_Accept": "Da", - "Tutorial_CloseConfirmationDialog_Decline": "Nu", - "Tutorial_CloseConfirmationDialog_Description": "Tutorialul poate fi reînceput doar prin resetarea profilului de joc. \\n\\n Ești sigur(ă) că vrei să sari peste?\n", - "Tutorial_CloseConfirmationDialog_Title": "Dezactivează tutorial", - "Tutorial_ConfirmationDialog_Accept": "Continua", - "Tutorial_ConfirmationDialog_Decline": "Omite", - "Tutorial_ConfirmationDialog_Description": "Jocul este momentan în faza de acces timpuriu și este într-o continuă dezvoltare. Pentru a deprinde cât mai repede interfața și controalele, vă rugăm să luați în considerare parcurgerea acestui scurt curs de formare. Îl puteți opri în orice moment. \\n\\n Doriți să începeți antrenamentul?", + "TransferItemsScreen/BtrContainerName": "BTR-82A TRUNK", + "TransferLeadership": "TRANSFER LEADERSHIP", + "TransferLeadership message": "Are you sure you want to transfer leadership?", + "TransferScreen/BtrCaution": "The BTR will leave soon! Unpaid items will be lost!", + "TransferScreen/Deliver": "Deliver", + "TransferScreen/ErrorMovingNotification": "Unable to transfer items. Please move the items manually.", + "TransferScreen/NotEnoughMoney": "Not enough money", + "TransferScreen/NothingToRemove": "Trunk is empty", + "TransferScreen/NothingToTransfer": "Trunk is empty", + "TransferScreen/PriceMessage": "Delivery will cost:", + "TransferScreen/TransferFailed": "Failed to purchase service", + "TransferScreen/TransferSuccess": "Service purchased!", + "Tremor": "Tremor", + "TroubleFixing": "Increases troubleshooting speed by [{0:0%}]", + "TroubleFixingAmmoElite": "Reduces the chance of malfunctions from a magazine by 50% after fixing a malfunction caused by the same reason", + "TroubleFixingDurElite": "Reduces the chance of malfunctions based on the durability of weapons by 50% after fixing a malfunction caused by the same reason", + "TroubleFixingExamineMalfElite": "Malfunction type identification doesn't require weapon examination", + "TroubleFixingMagElite": "Reduces the chance of malfunctions from a cartridge by 50% after fixing a malfunction caused by the same reason", + "TroubleShootingDescription": "Troubleshooting skill facilitates rectification of weapon malfunctions.", + "Troubleshooting": "Troubleshooting", + "Try_keycard {0}": "Try {0}", + "Tunnel": "Tunnel", + "Tunnel_Shared": "Side Tunnel (Co-Op)", + "Tutorial hints": "Tutorial hints", + "Tutorial_CharacterSelection_Description": " As Scav, you don’t risk your main character's gear, but if you survive the raid, all gear and loot can be transferred to your stash. Moreover, other AI-controlled NPC will consider you as one of their own, as long as you don't kill or insult anyone of them.\nHowever, while playing as Scav, the main character will not receive experience or improve any skills. \\n\\nPlaying as Scav is limited by a cooldown time. It's a good way to get familiar with the game without risking valuable equipment.\n", + "Tutorial_CharacterSelection_Title": "Character selection", + "Tutorial_CloseConfirmationDialog_Accept": "Yes", + "Tutorial_CloseConfirmationDialog_Decline": "No", + "Tutorial_CloseConfirmationDialog_Description": "The tutorial can be restarted only by resetting the player profile. \\n\\n Are you sure you want to skip it?\n", + "Tutorial_CloseConfirmationDialog_Title": "Disable tutorial", + "Tutorial_ConfirmationDialog_Accept": "Continue", + "Tutorial_ConfirmationDialog_Decline": "Skip", + "Tutorial_ConfirmationDialog_Description": "The game is currently in early access and is undergoing constant development. To get a quicker grip on interface and controls, please consider taking this brief training course. You can turn it off at any moment. \\n\\n Do you wish to start the training?", "Tutorial_ConfirmationDialog_Title": "Tutorial", - "Tutorial_Confirmation_Description": "Vă puteți invita prietenii să se alăture grupului, dacă au ales aceeași locație și oră din zi. Pentru a face acest lucru, faceți clic dreapta pe numele de jucător și alegeți invită la grup. Numărul maxim de jucători în grup este limitat la 5. \\n\\nAtunci când echipa este gata, faceți clic pe Pregătit pentru a începe raidul.\n", - "Tutorial_Confirmation_Title": "Pregătire", - "Tutorial_EndScreenCongrats_Description": "Felicitări! \\n Acum vă puteți aventura în a explora universul Tarkov pe cont propriu și să încercați să scăpați din oraș.", - "Tutorial_EndScreenCongrats_Title": "Finalizare tutorial", - "Tutorial_InfiltrationAreaSelection_Description": "Luând în raid o hartă vă permite să alegeți punctul de intrare și să vedeți posibilele locații de ieșire. Pentru a vedea ieșirile disponibile în timpul raidului, apăsați \" O\" de două ori. \\n\\nIeșirile pot fi atât temporare cât și permanente. Ieșirile temporare se închid dacă cineva le-a folosit, de exemplu, dacă cineva a folosit deja mașina ca o cale de ieșire, mașină nu mai poate fi activată din nou. \\n\\nDacă personajul nu are o hartă cu el, punctul de intrare va fi ales la întâmplare.\n", - "Tutorial_InfiltrationAreaSelection_Title": "Punct de infiltrare", - "Tutorial_InsuranceSelection_Description": "Aici vă puteți asigura obiectele. \\n\\nÎn caz de deces, dacă aceste articole nu au fost ridicate și transportate de către un alt jucător, ele vor ajunge înapoi la dumneavoastră prin returul asigurării.", - "Tutorial_InsuranceSelection_Title": "Asigurare", + "Tutorial_Confirmation_Description": "You can invite your friends to join the group, if they have chosen the same location and the time of day. To do this, right-click on the player's nickname and select Invite to group. The maximum number of players in group is limited to 5. \\n\\nWhen the team is assembled and ready, click Ready to start the raid.\n", + "Tutorial_Confirmation_Title": "Getting ready", + "Tutorial_EndScreenCongrats_Description": "Congratulations! \\n Now you can venture to explore the Tarkov universe on your own and try to escape the city.", + "Tutorial_EndScreenCongrats_Title": "Completing the tutorial", + "Tutorial_InfiltrationAreaSelection_Description": "Taking a raid area map with you will allow you to choose the point of entry and see the possible exit locations. To see currently available exits during the raid, hit the \"O\" key twice. \\n\\nExits can be both permanent and temporary. Temporary exits get closed if somebody has already fulfilled specified conditions, for example, if someone has already used the car as a way out, the car leaves and cannot be activated again. \\n\\nIf the character doesn’t have a map with him, the entry point will be chosen randomly.\n", + "Tutorial_InfiltrationAreaSelection_Title": "Infiltration point", + "Tutorial_InsuranceSelection_Description": "Here you can insure your items. \\n\\nIn case of your death, if these items were not picked up and carried out by another player, they will get back to you over insurance return.", + "Tutorial_InsuranceSelection_Title": "Insurance", "Tutorial_LocationSelection_Description": "Puteți alege una dintre locațiile disponibile. Fiecare are propriile caracteristici, cum ar fi durata raidului și numărul de jucători - și prezinta o anumită parte a orașului Tarkov. Dacă nu reușiți să scăpați la timp, personajul dumneavoastră va fi considerat dezertor. \\n\\nPrin alegerea orei, vei fi introdus in condițiile de iluminare respective. \\n\\nO serie de hărți sunt încă în dezvoltare și, prin urmare, nu sunt disponibile încă.\n", - "Tutorial_LocationSelection_Title": "Alegere hartă", - "Tutorial_Next": "URMĂTOR >>>", - "Tutorial_OfflineModeSelection_Description": "Bifează căsuța modul Offline pentru a testa și a încerca orice fără grijă de a pierde echipamentul în caz de deces. Toate caracteristicile sunt disponibile, inclusiv inamici AI, dacă se bifează modul PvE. \\n\\nFirește, fără alți jucatori.", - "Tutorial_OfflineModeSelection_Title": "Modul încercare", - "Tutorial_Pmc_Description": "Acesta este personajul tău principal. Echipamentul său este ales de tine iar abilităţile sale devin mai bune în fiecare raid. Alţi jucători şi Scavii te vor recunoaşte ca un fost operator PMC, cu consecinţele respective. \\n\\nDacă ești omorât, riști să pierzi tot echipamentul, cu toate acestea, poți cumpăra altul nou sau poți prăda ceva în raid. Amintește-ți, numai lupta te poate face mai puternic.\n", - "Tutorial_Pmc_Title": "Caracter principal", - "Tutorial_Prev": "<<< ANTERIOR", - "Tutorial_Savage_Description": "Ca și Scav nu riscați propriul echipament, și dacă supraviețuiți raidului, toate obiectele pot fi transferate în depozitul personajului principal. Mai mult decât atât, alți Scavi vă vor considera ca unul de-al lor, atâta timp cât nu îi ucideți sau insultați pe oricare dintre ei.\nCu toate acestea, în timpul jocului ca și Scav, personajul principalnu va primi experiență sau îmbunătățiri ale abilităților. \\n\\nDacă jucați ca și localnic sunteți limitat de un timp de repaus. Jocul ca și Scav este o modalitate bună de a vă familiariza cu jocul, fără a risca echipament de valoare.", - "Tutorial_Savage_Title": "Alegere Scav", + "Tutorial_LocationSelection_Title": "Map selection", + "Tutorial_Next": "NEXT >>>", + "Tutorial_OfflineModeSelection_Description": "Check the offline mode box to test and try anything without having to worry about your gear in case of death. All features will be available, including AI enemies, if you enable PvE. \\n\\nHowever, no other players, naturally.", + "Tutorial_OfflineModeSelection_Title": "Test mode", + "Tutorial_Pmc_Description": "This is your main character. You choose his equipment yourself, and his skills get upgraded and saved with every raid. Other players and Scavs will recognize you as a former PMC operative, with respective consequences. \\n\\nIf you get killed, you risk losing the equipment, however, you can buy a new one or procure something in the raid. Remember, only combat makes you tougher.\n", + "Tutorial_Pmc_Title": "Main character", + "Tutorial_Prev": "<<< BACK", + "Tutorial_Savage_Description": "As Scav you don’t risk your main character's gear, but if you survive the raid, all gear and loot can be transferred to your stash. Moreover, other AI-controlled NPC will consider you as one of their own, as long as you don't kill or insult anyone of them. However, in this case, the main character will not receive experience or upgrade skills. \\n\\nPlaying as a local scum is limited by a cooldown time. It's a good way to get familiar with the game without risking valuable equipment.", + "Tutorial_Savage_Title": "Choosing Scav", "Tutorial_SecondTitle": "TUTORIAL", - "Tutorial_TabGearAmmoControl_Description": "Incărcarea incărcătoarelor\nPentru a incărca un încărcător, trageți cartușele deasupra acestuia, dar verificați dacă sunt compatibile mai intâi. \\n\\nPentru a scoate cartușele din încărcător sau pentru a scoate incărcătorul din armă, alegeți elementele respective în meniul de scurtături. Încărcătorul sau cartușele vor fi puse în prima căsuță liberă din inventar, dacă arma este echipată de dumneavoastră.\\n\\nFolosiți >Ctrl + click pentru a stoca rapid obiectele din ghiozdan/vestă sau buzunare în depozit. Abilitatea de a căuta si a lua obiecte rapid este foarte importantă.\n", - "Tutorial_TabGearAmmoControl_Title": "Umplere încărcătoare", - "Tutorial_TabGearHandBag_Description": "Caseta este un container protejat. Obiectele din acest container nu pot fi luatede pe corpul tău după moarte. Recomandăm să puneți obiecte valoroase acolo, cum ar fi bani, medicamente rare, chei, etc.", - "Tutorial_TabGearHandBag_Title": "Casetă", - "Tutorial_TabGearInspectBeltWeaponModify_Description": "Jocul prezintă modele de arme cu comportament extrem de realist și detaliat. Astfel, orice schimbare va afecta caracteristicile de performanța și ergonomie. \\n\\nPentru a monta alte componente sau dispozitive trebuie doar să le alegi din lista verticală în celula respectivă. \\n\\nAveți grijă deoarece instalarea unor module diferite schimbă și dimensiunile armei, astfel trebuie să aveți destul spațiu în inventar pentru a modifica arma.", - "Tutorial_TabGearInspectBeltWeaponModify_Title": "Modificare", + "Tutorial_TabGearAmmoControl_Description": "Loading magazines\nTo load the magazine, drag the ammo onto it, but check if they are compatible first. \\n\\nTo remove the ammo from the magazine or to eject the magazine from the weapon, please select the respective entries in the shortcut menu. Magazine or ammo will be dropped to the first free slot of the stash -- or vest, if the weapon was equipped by you. \\n\\nUse Ctrl + click to quickly store items to the backpack/vest/pockets or to unload them into stash. The ability to search and loot quickly is extremely important in combat conditions.\n", + "Tutorial_TabGearAmmoControl_Title": "Loading magazines", + "Tutorial_TabGearHandBag_Description": "The pouch holds a secured container. Items from this container can not be removed from your body after death. We recommend you store particularly valuable items there; such as money, rare medicines, keys, etc.", + "Tutorial_TabGearHandBag_Title": "Pouch", + "Tutorial_TabGearInspectBeltWeaponModify_Description": "The game features highly detailed and realistic weapon models and behavior. Hence, any changes will affect the performance characteristics and ergonomics. \\n\\nIn order to install another detail or device you just need to select it in the dropdown list in the respective slot. \\n\\nPlease note that installing various modules also changes the dimensions of the weapon. Make sure you have enough inventory space to customize the weapon.", + "Tutorial_TabGearInspectBeltWeaponModify_Title": "Customization", "Tutorial_TabGearInspectBeltWeapon_Description": "Făcând dublu click pe oricare obiect vor apărea informații despre el. Aici poți vedea caracteristicile armei, piesele și modificările, și o scurtă descriere. Unele obiecte s-ar putea să nu fie cunoscute in avans. În acest caz, iconițele lor vor fi complet negre și numele lor este trecut cu semnul întrebării. Asemenea obiecte ar trebui sa fie examinate. Examinazrea lor necesită ceva timp, dar după, obiectul poate fi folosit. Jocul permite personalizarea armelor, care poate fi accesată apăsând pe rotiță sau din meniu click dreapta.", - "Tutorial_TabGearInspectBeltWeapon_Title": "Informații despre", - "Tutorial_TabGearQuickBar_Description": "Este mai bine să puneți încărcătoarele pline, muniția și grenadele în hamul tactic pentru piept sau buzunare pentru a putea folosi reîncărcarea rapidă cu tasta R. Cu alte cuvinte, doar încărcătoarele (sau grenadele) din ham și din buzunare contează. \\n\\nDe asemenea, spre deosebire de rucsac, obiectele din hamul tactic pentru piept și buzunarele lui sunt disponibile pentru acces rapid în razie folosind tastele 4, 5, 6, 7, 8, 9, 0, dacă le atribuiți o celulă prin mutarea lor acolo.", - "Tutorial_TabGearQuickBar_Title": "Ham/Vestă tactică", - "Tutorial_TabGearReadyForEscape_Description": "Pentru a instala incărcătorul, trageți-l deasupra armei. \\n\\nPentru a vă adapta mai rapid, folosiți diferite tactici si experimentați mai mult. Escape from Tarkov este un shooter hardcore deci bazele acestuia sunt tu, cunoștințele și experiența ta dar și cum acestea sunt folosite in acțiune. \\n\\nIți sugeram să verifici secțiunea de butoane din setările jocului pentru a ține minte butoanele esențiale. \\n\\nEști pregătit să scapi?", - "Tutorial_TabGearReadyForEscape_Title": "Acum ești pregătit să scapi", - "Tutorial_TabGearStash_Description": "Depozitul este locul de depozitare pentru trofeele din raiduri și pentru obiectele cumpărate. Capacitatea lui este limitată, așa că recomandăm să aranjezi obiectele compact. Dimensiunea depozitului poate fi crescută indirect folosind containere pentru obiecte specializate, care sunt disponibile la comercianți. De altfel, în viitor, vei putea să mărești mărimea depozitului în Refugiu. Deținătorii Edge of Darkness Edition deja au mărimea depozitului maximizată din start. \\n\\nPentru a roti obiectul, apasă pe R în timp ce îl tragi.", - "Tutorial_TabGearStash_Title": "Depozit", - "Tutorial_TabGear_Description": "Bara de Echipamentconține interfața echipamentlui personajului tău. \\n\\nFiecare căsuța este alocată pentru un tip specific de echipament. Tot ce iei cu tine în raidri poate fi prădat de alți jucători în cazul în care ești omorât. \\n\\nPoți să-ți despăgubești pierderile folosind Asigurarea. În acest caz, dacă obiectul pe care l-ai asigurat nu a fost luat din locația unde l-ai pierdut, îl vei primi înapoi.", - "Tutorial_TabGear_Title": "Echipament", - "Tutorial_TabHealth_Description": "Bara de Sănătatearată starea vieții pe părțile corpului, indicatori de hidratare și energie, și alte caracteristici. \\n\\nPoți să și urmărești viața fiecărei părți a corpului individual. De exemplu, dacă ai primit o rană ce sângerează la picior, aceasta va fi interpretată cu iconița de status corespunzătoare. Bandajând rana, vei fi în stare să oprești sângerarea și pierderea punctelor. \\n\\nPregătește-te atent pentru raiduri înainte, făcând rezerve de medicamente esențiale. Și nu uita de calmante!", - "Tutorial_TabHealth_Title": "Sănătate", - "Tutorial_TabOverall_Description": "Acesta este caracterul tău principal. Aici, poți vedea nivelul, numărul de raiduri și eliminări, eficiența ta, și alte statistici. \\n\\nToate informațiile sunt disponibile atât în secțiunea Caracter din meniul principal cât și prin apăsarea butonului Tab în raiduri.", - "Tutorial_TabOverall_Title": "Statistici generale", - "Tutorial_TabTradeBuy_Description": "Pentru a achiziționa un articol, alege-l din magazin, apasă butonul Adaugă Articoledin partea de jos a ecranului pentru a plăti pentru bunuri, și apoi butonul DE ACORD la partea de sus a ecranului pentru a confirma tranzacția. \\n\\nAnumite lucruri nu pot fi cumpărate cu bani, și veți avea nevoie sa obțineti mai intai bunurile necesare schimbului.", - "Tutorial_TabTradeBuy_Title": "Achiziționând de la comerciant", - "Tutorial_TabTradeQuest_Description": "Cel mai bun mod de a creşte nivelul de loialitate al comerciantului este de a îndeplini misiuni. Cu toate acestea, fiți atenți, unele dintre ele vă pot cere să faceți lucruri care vă strică reputația cu alţi comercianți. \\n\\nHaideți să luăm prima misiune.", - "Tutorial_TabTradeQuest_Title": "Misiuni Comercianți", - "Tutorial_TabTradeSell_Description": "Pentru a vinde un produs, deschide fereastra Vinde, și apoi trage elementele pe care vrei să le vinzi în zona de mijloc a ecranului. Apoi, faceți clic pe DE ACORD. \\n\\n Diferiti comercianți pot oferi preț diferit pentru aceleași bunuri. Unele produse pot fi de interes unor comercianți specifici.", - "Tutorial_TabTradeSell_Title": "Vinde comerciantului", - "Tutorial_TabTrade_Description": "Aici poți vedea lista comercianților. Aceștia se află in Tarkov ca și tine dar au interesele lor personale. Fiecare dintre ei are propriile nevoi și cerințe specifice când vine vorba de gama de produse pe care le comercializează sau cumpără. \\n\\nComercianții au diferite nivele de loialitate , cu fiecare nivel nou deblocat oferind acces la un stoc diferit, mai bun, din partea comerciantului. Nivelul de loialitate, ține cont de reputația ta cu acel comerciant, nivelul jucatorului și banii cheltuiți cu acel comercinat. \\n\\nUn exemplu este Prapor.", - "Tutorial_TabTrade_Title": "Comercianți", - "Type": "Tip", - "UI/Arena/Place_1": "Locul 1", - "UI/Arena/Place_10": "Locul 10", - "UI/Arena/Place_11": "Locul 11", - "UI/Arena/Place_12": "Locul 12", - "UI/Arena/Place_13": "Locul 13", - "UI/Arena/Place_14": "Locul 14", - "UI/Arena/Place_15": "Locul 15", - "UI/Arena/Place_16": "Locul 16", - "UI/Arena/Place_17": "Locul 17", - "UI/Arena/Place_18": "Locul 18", - "UI/Arena/Place_19": "Locul 19", - "UI/Arena/Place_2": "Locul 2", - "UI/Arena/Place_20": "Locul 20", - "UI/Arena/Place_3": "Locul 3", - "UI/Arena/Place_4": "Locul 4", - "UI/Arena/Place_5": "Locul 5", - "UI/Arena/Place_6": "Locul 6", - "UI/Arena/Place_7": "Locul 7", - "UI/Arena/Place_8": "Locul 8", - "UI/Arena/Place_9": "Locul 9", - "UI/ArmorPenetration/High": "Mare", - "UI/ArmorPenetration/Low": "Scăzută", - "UI/ArmorPenetration/Medium": "Medie", - "UI/ArmorPenetration/VeryHigh": "Foarte mare", - "UI/ArmorPenetration/VeryLow": "Foarte scăzută ", - "UI/Charisma/Discount/Insurance": "Costul asigurării", - "UI/Charisma/Discount/PostRaidHealing": "Costul vindecării", - "UI/Charisma/Discount/ScavCase": "Cost Cutie Livrări", - "UI/CharismaDiscount:": "Bonus din Carismă:", - "UI/Chat/NoDialogsPlaceholder": "Încă nu ai niciun dialog.\nInvită prieteni pentru a începe unul nou sau alătură-te Chat-ului Global.", - "UI/Chat/delete_dialog_confirmation": "Ești sigur că vrei să ștergi dialogul?", - "UI/Chat/delete_group_dialog_confirmation": "Chiar vrei să ștergi acest dialog de grup: {0}?", - "UI/DamageProperty_Blunt": "Daune contondente", - "UI/DamageProperty_Collateral": "colateral de la", - "UI/DamageProperty_Lethal": "Letal", - "UI/Dialogs/handover_with_contained_items_confirmation": "Unele dintre obiectele alese conțin ceva înăuntru. Ești sigur că vrei să le predai?", - "UI/DurabilityLeft": "Durabilitate rămasă:", - "UI/FinalPrice:": "Prețul final:", - "UI/FleaMarket/items_left_available": "limită", - "UI/FleaMarket/no_selected_offers": "Nicio ofertă aleasă", - "UI/Generator is working": "Ai lăsat generatorul pornit!", - "UI/HealthPanel/LethalDamage": "daune letale", - "UI/HealthPanel/NonTreatedDamage": "daune netratate", - "UI/HealthTreatmentAction_ArenaIntoxication": "tratează Otrava Puternică", - "UI/HealthTreatmentAction_Bloodloss": "de îndepărtat", - "UI/HealthTreatmentAction_BreakPart": "de îndepărtat", - "UI/HealthTreatmentAction_Energy": "de recuperat", - "UI/HealthTreatmentAction_Fracture": "de îndepărtat", - "UI/HealthTreatmentAction_Health": "de vindecat", - "UI/HealthTreatmentAction_HeavyBleeding": "de îndepărtat", - "UI/HealthTreatmentAction_Hydration": "de recuperat", - "UI/HealthTreatmentAction_Intoxication": "tratare", - "UI/HealthTreatmentAction_LightBleeding": "de îndepărtat", - "UI/HealthTreatmentName_ArenaIntoxication": "Intoxicat cu Otravă Puternică", - "UI/HealthTreatmentName_Bloodloss": "Sângerări", - "UI/HealthTreatmentName_BreakPart": "Fracturi", - "UI/HealthTreatmentName_Energy": "Energie", - "UI/HealthTreatmentName_Fracture": "Fracturi", - "UI/HealthTreatmentName_Health": "Stare generală de sănătate", - "UI/HealthTreatmentName_HeavyBleeding": "Hemoragii", - "UI/HealthTreatmentName_Hydration": "Hidratare", - "UI/HealthTreatmentName_Intoxication": "Otrăvire", - "UI/HealthTreatmentName_LightBleeding": "Sângerări", - "UI/HealthTreatmentScreen_CashInStash": "BANI ÎN DEPOZIT:", - "UI/HealthTreatmentScreen_Description": "Alegi ce dorești să tratezi imediat prin serviciul Doctoriței. Procedura nu este obligatorie, poți alege să te vindeci în timp sau prin utilizarea truselor medicale din depozitul tău. Costul serviciilor depinde de nivelul tău de loialitate cu Doctorița.", - "UI/HealthTreatmentScreen_NoTreatmentSelected": "Nicio alegere", - "UI/HealthTreatmentScreen_NotEnoughMoney": "Nu sunt suficienți bani în depozit", - "UI/HealthTreatmentScreen_NothingToHeal": "Caracterul tău are viața plină deja", - "UI/HealthTreatmentScreen_RegenTime": "TIMP PÂNĂ LA REGENERAREA COMPLETĂ:", - "UI/HealthTreatmentScreen_SelectTreatment": "ALEGE TRATAMENTUL", - "UI/HealthTreatmentScreen_TotalCost": "SUMA TOTALĂ DE PLATĂ:", - "UI/HealthTreatmentScreen_TreatAll": "TRATEAZĂ TOT", - "UI/HealthTreatmentScreen_TreatNone": "RESETARE", - "UI/HealthTreatmentScreen_TrialDescription": " Serviciile medicale de tratament sunt gratis pentru primele {0} nivele sau {1} raiduri.", - "UI/HealthTreatmentscreen_caption": "TRATAMENT DUPĂ RAID", - "UI/HealthTreatmentscreen_currentcondition": "STARE ACTUALĂ DE SĂNĂTATE", - "UI/Inventory/CantUnpackInRaid": "Nu poate fi deschis în raid", - "UI/Inventory/SortAcceptConfirmation": "Ești sigur că dorești să sortezi conținutul în mod automat?", - "UI/ItemAttribute/Chance": "Șansă", - "UI/ItemAttribute/UsesLeft_{}": "{0} rămase", - "UI/MagPreset/BottomAmmo": "Fundul\nVa fi umplut primul", + "Tutorial_TabGearInspectBeltWeapon_Title": "Object info", + "Tutorial_TabGearQuickBar_Description": "It’s best to put loaded magazines, ammo and grenades into your chest rig or pockets to enable quick reload with the R button. In other words, it’s only magazines (or grenades) that are in the chest rig that count. \\n\\nAlso, unlike the backpack, items from chest rig and pockets are available for quick access in the raid through keys 4, 5, 6, 7, 8, 9, 0, if you assign them a slot by moving them there.", + "Tutorial_TabGearQuickBar_Title": "Chest rig / Tactical vest", + "Tutorial_TabGearReadyForEscape_Description": "To install the magazine, simply drag it over the weapon. \\n\\nIn order to adapt more quickly, try different tactics and experiment more. Escape from Tarkov is a hardcore shooter and therefore its main core is you, your knowledge and experience, and how you use them in combat. \\n\\n We also suggest you to examine the Controls section in the game settings to remember the main combat commands. \\n\\nAre you ready to escape?", + "Tutorial_TabGearReadyForEscape_Title": "Now you're ready to escape", + "Tutorial_TabGearStash_Description": "Your Stash is a storage place for trophies from raids and purchased items. Its size is limited, so we advise arranging items in a compact manner. The stash size can be indirectly increased by using specialized item containers, which are available from merchants. Also, in the future, you will be able to increase the size of your stash in the Hideout. Owners of the Edge of Darkness Edition already have the maximum stash size from the start. \\n\\nTo rotate an object, press the R key while dragging it.", + "Tutorial_TabGearStash_Title": "Stash", + "Tutorial_TabGear_Description": "The Gear tab contains your character’s equipment interface. \\n\\nEach slot is allocated for a specific type of equipment. Everything you take with you into the raid can be removed from your body by other players in case of your death. \\n\\nYou can decrease your losses by using Insurance. If the insured item wasn't looted during the raid, you will get it back.", + "Tutorial_TabGear_Title": "Gear", + "Tutorial_TabHealth_Description": "The Health tab displays the state of your health by body part, current levels of hydration and energy, and other characteristics. \\n\\nYou can also track the state of each body part separately. For example, if you received a bleeding wound to the leg, it will be reflected with the appropriate status icon. By dressing the wound, you’ll be able to stop bleeding and subsequent loss of hit points. \\n\\nThoroughly prepare for raids beforehand, bringing reserves of essential medicines. And don't forget about the painkillers!", + "Tutorial_TabHealth_Title": "Health", + "Tutorial_TabOverall_Description": "This is your main character. Here, it shows your level, the number of raids and kills, your efficiency and other stats. \\n\\nInfo from all tabs is available both in the Character section of the main menu and by pressing Tab in a raid.", + "Tutorial_TabOverall_Title": "General stats", + "Tutorial_TabTradeBuy_Description": "To purchase an item, select it from the shop, press the Fill items button at the bottom of the screen to allocate payment, and then press DEAL at the top of the screen to confirm the transaction. \\n\\nSome things cannot be bought for money, and you will need to obtain the necessary barter items first.", + "Tutorial_TabTradeBuy_Title": "Purchasing from a trader", + "Tutorial_TabTradeQuest_Description": "The best way to increase the trader's loyalty level is to run errands and carry out tasks. However, be careful as some of them may ask you to do things that will hurt your reputation with other merchants. \\n\\nLet's take the first quest.", + "Tutorial_TabTradeQuest_Title": "Trader quests", + "Tutorial_TabTradeSell_Description": "To sell an item, open the Sell tab, and then drag the items you want sold to the area in the middle of the screen. Then, click DEAL. \\n\\nDifferent traders offer different price for the same goods. Some items are only of interest to certain traders.", + "Tutorial_TabTradeSell_Title": "Selling to merchant", + "Tutorial_TabTrade_Description": "Here you can see the list of merchants. All of them are based in Tarkov, just like you, and have their own interests. Every one of them has his or her own needs and specifics in the range of items for purchase or on sale. \\n\\nTraders have several levels of loyalty, with every level gives access to new products. Loyalty depends on your reputation with a merchant, your level, and the amount of money spent. \\n\\nOne example is Prapor.", + "Tutorial_TabTrade_Title": "Traders", + "Type": "Type", + "UI/Arena/Place_1": "1st place", + "UI/Arena/Place_10": "10th place", + "UI/Arena/Place_11": "11th place", + "UI/Arena/Place_12": "12th place", + "UI/Arena/Place_13": "13th place", + "UI/Arena/Place_14": "14th place", + "UI/Arena/Place_15": "15th place", + "UI/Arena/Place_16": "16th place", + "UI/Arena/Place_17": "17th place", + "UI/Arena/Place_18": "18th place", + "UI/Arena/Place_19": "19th place", + "UI/Arena/Place_2": "2nd place", + "UI/Arena/Place_20": "20th place", + "UI/Arena/Place_3": "3rd place", + "UI/Arena/Place_4": "4th place", + "UI/Arena/Place_5": "5th place", + "UI/Arena/Place_6": "6th place", + "UI/Arena/Place_7": "7th place", + "UI/Arena/Place_8": "8th place", + "UI/Arena/Place_9": "9th place", + "UI/Charisma/Discount/Insurance": "Insurance cost", + "UI/Charisma/Discount/PostRaidHealing": "Healing cost", + "UI/Charisma/Discount/ScavCase": "Scav Case cost", + "UI/CharismaDiscount:": "Charisma bonus:", + "UI/Chat/NoDialogsPlaceholder": "You have no dialogs yet.\nInvite friends to start a new one or join the Global Chat.", + "UI/Chat/delete_dialog_confirmation": "Are you sure you want to delete this dialogue?", + "UI/Chat/delete_group_dialog_confirmation": "Do you really want to delete this group dialog: {0}?", + "UI/DamageProperty_Blunt": "Blunt damage", + "UI/DamageProperty_Collateral": "collateral from", + "UI/DamageProperty_Lethal": "Lethal", + "UI/Dialogs/handover_with_contained_items_confirmation": "Some of the selected items contain something inside them. Are you sure you want to hand all of them over?", + "UI/DurabilityLeft": "Durability left:", + "UI/FinalPrice:": "Final price:", + "UI/FleaMarket/items_left_available": "limit", + "UI/FleaMarket/no_selected_offers": "No selected offers", + "UI/Generator is working": "You left the generator on!", + "UI/HealthPanel/LethalDamage": "lethal damage", + "UI/HealthPanel/NonTreatedDamage": "non-treated damage", + "UI/HealthTreatmentAction_ArenaIntoxication": "treat Strong Poison", + "UI/HealthTreatmentAction_Bloodloss": "to remove", + "UI/HealthTreatmentAction_BreakPart": "to remove", + "UI/HealthTreatmentAction_Energy": "to replenish", + "UI/HealthTreatmentAction_Fracture": "to remove", + "UI/HealthTreatmentAction_Health": "to heal", + "UI/HealthTreatmentAction_HeavyBleeding": "to remove", + "UI/HealthTreatmentAction_Hydration": "to replenish", + "UI/HealthTreatmentAction_Intoxication": "treat", + "UI/HealthTreatmentAction_LightBleeding": "to remove", + "UI/HealthTreatmentName_ArenaIntoxication": "Poisoning by Strong Poison", + "UI/HealthTreatmentName_Bloodloss": "Bleedings", + "UI/HealthTreatmentName_BreakPart": "Fractures", + "UI/HealthTreatmentName_Energy": "Energy", + "UI/HealthTreatmentName_Fracture": "Fractures", + "UI/HealthTreatmentName_Health": "General health condition", + "UI/HealthTreatmentName_HeavyBleeding": "Heavy bleedings", + "UI/HealthTreatmentName_Hydration": "Hydration", + "UI/HealthTreatmentName_Intoxication": "Poisoning", + "UI/HealthTreatmentName_LightBleeding": "Light bleedings", + "UI/HealthTreatmentScreen_CashInStash": "CASH IN STASH:", + "UI/HealthTreatmentScreen_Description": "Choose what you would like to heal immediately by the Therapist service. It's not an obligatory procedure - you can heal overtime or by using medkits in your stash. The total cost depends on your loyalty level with Therapist.", + "UI/HealthTreatmentScreen_NoTreatmentSelected": "Nothing selected", + "UI/HealthTreatmentScreen_NotEnoughMoney": "Not enough money in the stash", + "UI/HealthTreatmentScreen_NothingToHeal": "Your character is in full health", + "UI/HealthTreatmentScreen_RegenTime": "TIME TO FULL HP REGEN:", + "UI/HealthTreatmentScreen_SelectTreatment": "SELECT TREATMENT", + "UI/HealthTreatmentScreen_TotalCost": "TOTAL SUM TO PAY:", + "UI/HealthTreatmentScreen_TreatAll": "TREAT ALL", + "UI/HealthTreatmentScreen_TreatNone": "RESET", + "UI/HealthTreatmentScreen_TrialDescription": " Health treatment service is free for the first {0} levels or {1} raids.", + "UI/HealthTreatmentscreen_caption": "AFTER RAID TREATMENT", + "UI/HealthTreatmentscreen_currentcondition": "CURRENT HEALTH CONDITION", + "UI/Inventory/CantUnpackInRaid": "Can't be unpacked in raid", + "UI/Inventory/SortAcceptConfirmation": "Are you sure you want to automatically sort the content?", + "UI/ItemAttribute/Chance": "Chance", + "UI/ItemAttribute/UsesLeft_{}": "{0} left", + "UI/MagPreset/BottomAmmo": "Bottom\nWill be loaded first", "UI/MagPreset/EmptyLoop": "Loop / ammo required\nWill be loaded last\nMust have at least 1 round selected", - "UI/MagPreset/Load": "Umple încărcătoarele", + "UI/MagPreset/Load": "Load magazines", "UI/MagPreset/LoopAmmo": "Loop\nWill be loaded last\nMust have al least 1 round selected", - "UI/MagPreset/New": "Șablon nou", - "UI/MagPreset/PresetListCaption": "Alegere șablon", - "UI/MagPreset/Save": "Salvează", - "UI/MagPreset/SearchPlaceholder": "Căutare șablon", - "UI/MagPreset/TopAmmo": "Partea de sus\nVa fi încărcată a doua", - "UI/MagPreset/WindowCaption": "Șabloane încărcătoare", - "UI/Messaging/applied_profile_changes": "SCHIMBĂRI ALE PROFILULUI APLICATE:", - "UI/Messaging/available_profile_changes": "SCHIMBĂRI ALE PROFILULUI DISPONIBILE", - "UI/ModifiedByRepairKitEnhancement": "Îmbunătățit de trusa de reparații", - "UI/OldPrice:": "Prețul vechi:", + "UI/MagPreset/New": "New preset", + "UI/MagPreset/PresetListCaption": "Preset selection", + "UI/MagPreset/Save": "Save", + "UI/MagPreset/SearchPlaceholder": "Preset search", + "UI/MagPreset/TopAmmo": "Top\nWill be loaded second", + "UI/MagPreset/WindowCaption": "Magazines loadout", + "UI/Messaging/applied_profile_changes": "APPLIED PROFILE CHANGES:", + "UI/Messaging/available_profile_changes": "AVAILABLE PROFILE CHANGES", + "UI/ModifiedByRepairKitEnhancement": "Enhanced by a repair kit", + "UI/OldPrice:": "Old price:", "UI/ProfileStats/Liters": "l", "UI/ProfileStats/Meters": "m", - "UI/Quest/Reward/AdditionalStashRowsCaption": "Linii de celule de inventar în depozit", - "UI/Quest/Reward/AdditionalStashRowsTooltip": "Depozitul tău va fi extins prin adăugarea de noi linii de celule de inventar.\nAceste schimbări vor fi aplicate mai târziu(verifică site-ul nostru pentru detalii).", - "UI/Settings/ArenaWatchTimerAndExits": "Verifică ora și obiectivele", - "UI/Settings/Armory": "Armurier", - "UI/Settings/Armory/Ammo": "Muniție", - "UI/Settings/Armory/Interactions": "Interacțiuni cu arma", - "UI/Settings/Armory/Other": "Alt echipament", - "UI/Settings/Armory/Weapons": "Arme", - "UI/Settings/Control/MouseAndKeys": "Tastatură și mouse", - "UI/Settings/Control/Phrases": "Fraze", - "UI/Settings/Interface": "Interfață", - "UI/Settings/ItemQuickUse": "Dublu click pentru utilizare rapidă", - "UI/Settings/Movement": "Mișcare", + "UI/Quest/Reward/AdditionalStashRowsCaption": "Inventory slot lines in stash", + "UI/Quest/Reward/AdditionalStashRowsTooltip": "Your stash will be expanded by the addition of new inventory slot lines.\nThese changes will be applied later on (check our website for details).", + "UI/Settings/ArenaWatchTimerAndExits": "Check time and objectives", + "UI/Settings/Armory": "Armory", + "UI/Settings/Armory/Ammo": "Ammo", + "UI/Settings/Armory/Interactions": "Weapon interactions", + "UI/Settings/Armory/Other": "Other equipment", + "UI/Settings/Armory/Weapons": "Weapons", + "UI/Settings/Control/MouseAndKeys": "Keyboard and mouse", + "UI/Settings/Control/Phrases": "Phrases", + "UI/Settings/Interface": "Interface", + "UI/Settings/ItemQuickUse": "Double click item quick use", + "UI/Settings/Movement": "Movement", "UI/Settings/NVidiaReflexMode/Off": "off", "UI/Settings/NVidiaReflexMode/On": "on", "UI/Settings/NVidiaReflexMode/OnAndBoost": "on and boost", - "UI/Settings/NotificationType/Default": "Implicit", + "UI/Settings/NotificationType/Default": "Default", "UI/Settings/NotificationType/WebSocket": "Web socket", - "UI/Settings/OtherActions": "Alte acțiuni", - "UI/Settings/Rest": "Alte", - "UI/Skills/Charisma/CharismaDiscount": "Reduceri de la abilitatea Carismă", - "UI/Standing:": "Nivel cu comerciantul:", - "UI/TransferScreen/ExpirationWarning": "Pachetul va expira în:", - "UI/TransferScreen/PackageHasExpired": "Pachetul a expirat.", - "UI/leave_game_confirmation_caption": "IEȘIRE", - "UI/leave_game_confirmation_text": "Ești sigur că vrei să părăsești jocul?", - "UN Roadblock": "Blocada ONU", - "UNAVAILABLE": "INDISPONIBIL", - "UNEQUIP": "DEZECHIPEAZĂ", - "UNFOLD": "DEPLIAZĂ", - "UNLOAD": "DESCARCĂ", - "UNSEARCHED": "NECĂUTAT", - "UP: ": "SUS: ", - "UPDATE STORE": "ÎMPROSPĂTEAZĂ MAGAZINUL", - "UPGRADE": "ÎMBUNĂTĂȚIRE", - "USE TIME": "TIMP UTILIZARE", - "USEALL": "FOLOSEȘTE TOT", + "UI/Settings/OtherActions": "Other actions", + "UI/Settings/Rest": "Other", + "UI/Skills/Charisma/CharismaDiscount": "Charisma skill discount", + "UI/Standing:": "Trader standing:", + "UI/TransferScreen/ExpirationWarning": "Package will expire in:", + "UI/TransferScreen/PackageHasExpired": "Package has expired.", + "UI/leave_game_confirmation_caption": "EXIT", + "UI/leave_game_confirmation_text": "Are you sure you want to exit the game?", + "UN Roadblock": "UN Roadblock", + "UNAVAILABLE": "UNAVAILABLE", + "UNEQUIP": "UNEQUIP", + "UNFOLD": "UNFOLD", + "UNLOAD": "UNLOAD", + "UNSEARCHED": "UNSEARCHED", + "UP: ": "UP: ", + "UPDATE STORE": "REFRESH STORE", + "UPGRADE": "UPGRADE", + "USE TIME": "USE TIME", + "USEALL": "USE ALL", "USEC": "USEC", - "USEC Matchmaker": "Începe raidul cu caracterul tău principal, un fost operator USEC PMC, și fă tot ce este necesar ca să scapi din Tarkov în viață.", - "USING": "FOLOSIND", + "USEC Matchmaker": "Begin a raid as your main character, an ex-USEC PMC operator, and do everything necessary to escape from Tarkov alive.", + "USING": "USING", "Ui/Settings/AutoVaultingMode": "Vaulting over medium obstacles", - "Ui/Settings/BlockGroupInvites": "Blochează invitațiile la grup", + "Ui/Settings/BlockGroupInvites": "Block group invites", "Ui/Settings/CantModifyWhenMipStreamingIsOff": "Can't modify the parameter while Mip Streaming is disabled", "Ui/Settings/ColorScheme/GreenToRed": "Polychrome", "Ui/Settings/ColorScheme/WhiteToRed": "Monochrome", @@ -15280,466 +15178,458 @@ "Ui/Settings/HighlightScope/All": "Everything", "Ui/Settings/HighlightScope/Merge": "Comp și stive", "Ui/Settings/HighlightScope/None": "Disabled", - "Ui/Settings/MalfunctionVisability": "Notificări defecțiuni", + "Ui/Settings/MalfunctionVisability": "Malfunction notifications", "Ui/Settings/NVidiaReflexNotAvailable": "NVIDIA Reflex is not available on this system.", "Ui/Settings/NVidiaReflexType": "NVIDIA Reflex Low Latency", "Ui/Settings/NotificationTransportType": "Notification channel type", - "Ui/Settings/QuickSlotsVisibility": "Celule rapide", - "Ui/Settings/StanimaVisibility": "Stamina și postură", - "Ui/Settings/TemporaryDisabled": "Dezactivat temporar", - "Ui/Settings/TraderIntermadiateScreen": "Fereastră intermediară comerț", - "Ui/Settings/TriggerFlash": "Indicator Flash", - "Ui/Settings/Visibility/Always": "Mereu vizibil", - "Ui/Settings/Visibility/Autohide": "Auto-ascunde", - "Ui/Settings/Visibility/Never": "Mereu ascuns", - "Unban": "Deblocare", - "UnbanPlayer": "{0} a fost deblocat.", - "Uncover": "Descoperă", - "UndefinedDescription": "Nedefinit", - "UndefinedDescriptionShort": "Nedefinit", - "Unit is ready to be installed": "Unitatea este gata pentru montare", - "Unity_free_exit": "Punct de control Emercom", - "Unknown": "Necunoscut", - "Unknown item": "Articol necunoscut", - "Unknown reward": "Recompensă necunoscută", - "UnknownErrorHeader": "Eroare necunoscuta", - "UnknownErrorMessage": "A apărut o eroare necunoscută. Închideți jocul și trimiteți un raport de eroare.", - "UnknownToxin": "Toxină necunoscută", - "UnloadAmmo": "DESCARCĂ MUNIȚIA", - "Unloadmagazine": "Detașează încărcătorul", - "Unlock": "Deblochează", - "Unlocked": "Deblocat", - "UnlocksOn": "Se deblochează la nivelul {0}", + "Ui/Settings/QuickSlotsVisibility": "Quick slots", + "Ui/Settings/StanimaVisibility": "Stamina and stance", + "Ui/Settings/TemporaryDisabled": "Temporarily disabled", + "Ui/Settings/TraderIntermadiateScreen": "Trading intermediate screen", + "Ui/Settings/TriggerFlash": "Flash Indicator", + "Ui/Settings/Visibility/Always": "Always shown", + "Ui/Settings/Visibility/Autohide": "Autohide", + "Ui/Settings/Visibility/Never": "Always hidden", + "Unban": "Unban", + "UnbanPlayer": "{0} has been unbanned.", + "Uncover": "Discover", + "UndefinedDescription": "Undefined", + "UndefinedDescriptionShort": "Undefined", + "Unit is ready to be installed": "Unit is ready to be installed", + "Unity_free_exit": "Emercom Checkpoint", + "Unknown": "Unknown", + "Unknown item": "Unknown item", + "Unknown reward": "Unknown Reward", + "UnknownErrorHeader": "Unknown Error", + "UnknownErrorMessage": "Unknown error occurred. Close the game and submit a bug report.", + "UnknownToxin": "Unknown toxin", + "UnloadAmmo": "UNLOAD AMMO", + "Unloadmagazine": "Detach magazine", + "Unlock": "Unlock", + "Unlocked": "Unlocked", + "UnlocksOn": "Unlocks at level {0}", "Unmute": "UNMUTE", "UnmuteVoip": "Unmute VoIP & Radio", "Unranked": "UNRANKED", "Unranked/Description": "Unranked Game\nUnranked games include all modes for which it is difficult to determine personal or team ranking, as well as PvE modes and modes in which players simply fight to the death.", - "UnremovableItem/Attributes/CannotDroppedInRaid": "Nu poate fi aruncat în raid", + "UnremovableItem/Attributes/CannotDroppedInRaid": "Cannot be discarded in raid", "Unselected": "Unselected", - "Upgrading": "Îmbunătățind", - "Upper body": "Corp superior", - "Use": "FOLOSE", - "Use only available parts": "Folosește doar componente disponibile", - "Used symbols: {0}": "Simboluri utilizate: {0}", - "VALIDATE DEVICE ID": "VALIDAREA DISPOZITIVULUI ID", - "VELOCITY": "VITEZA LA ȚEAVĂ", - "VIEWMAP": "VEZI", - "VISUALIZE": "VIZUALIZEAZĂ", + "Upgrading": "Upgrading", + "Upper body": "Upper body", + "Use": "USE", + "Use only available parts": "Use only available parts", + "Used symbols: {0}": "Used symbols: {0}", + "VALIDATE DEVICE ID": "VALIDATE DEVICE ID", + "VELOCITY": "MUZZLE VELOCITY", + "VIEWMAP": "VIEW", + "VISUALIZE": "VISUALIZE", "VSync": "VSync", "VSync is on. Turn it off to change this parameter.": "VSync is on. You have to turn it off to change this parameter.", "Vaulting": "Vaulting", "Vegetation visibility:": "Vegetation visibility:", - "Vents": "VENTILAȚIE", - "Very bad standing": "foarte prost", - "Very good standing": "foarte bun", - "Vest": "Vestă", - "Village": "Sat", - "Violation/IntentionalTeamDamage/Warning": "Contul tău va fi blocat dacă continui să tragi în coechipieri", - "Violation/IntentionalTeamKill/Warning": "Contul tău va fi blocat dacă continui să iți omori coechipierii la începutul rundei", - "Violation/TeamKill/Warning": "Contul tău va fi blocat dacă continui să îți omori coechipierii", - "Vital mod weapon in hands": "Nu poți modifica componentele vitale în timp ce ai arma în mână.", - "Vital parts": "Componente esențiale", - "Vitality": "Vitalitate", - "VitalityBuffBleedChanceRed": "Reducerea șansa de sângerare cu [{0:0.#%}]", - "VitalityBuffBleedStop": "Toate sângerările se opresc de la sine", - "VitalityBuffRegeneration": "Crește regenerarea vieții în luptă", - "VitalityBuffSurviobilityInc": "Scade șansa de moralitate din cauza pierderii unui membru cu [{0:0.#%}]", - "VitalityDescription": "Vitalitatea îmbunătățește șansele de supraviețuire a unei răni prin scăderea posibilității de sângerare și moarte instantanee prin daune critice a unei parți a corpului.", - "VitalityLevelingUpDescription": "Abilitatea Vitalitate crește atunci când suferi de răni și sângerări.", - "Voice": "Vocea personajului", - "Voice 1": "Vocea 1", - "Voice 2": "Vocea 2", - "Voice volume:": "Volum voce:", - "Voip/AutoBlockNotification": "Încetează să apeși în mod repetate butonul pentru a vorbi sau vei fi blocat de la VoIP", - "Voip/BlockedMessage": "Ai fost blocat de la folosirea VoIP din cauza abuzării sistemului", - "Voip/DenoiseAmount": "Noise reduction:", - "Voip/Device": "Dispozitiv", + "Vents": "VENTS", + "Very bad standing": "very bad", + "Very good standing": "very good", + "Vest": "Vest", + "Village": "Village", + "Violation/TeamKill/Warning": "Your account will be blocked if you continue killing your teammates", + "Vital mod weapon in hands": "You can't modify vital parts while the weapon is in your hands.", + "Vital parts": "Vital parts", + "Vitality": "Vitality", + "VitalityBuffBleedChanceRed": "Reduces bleeding chance by [{0:0%}]", + "VitalityBuffBleedStop": "All bleedings stop on their own", + "VitalityBuffRegeneration": "Increases health regeneration in combat", + "VitalityBuffSurviobilityInc": "Reduces chance of death from losing a limb by [{0:0%}]", + "VitalityDescription": "Vitality improves your chances of surviving a wound by decreasing the possibility of bleeding and instant death through critical damage of a body part.", + "Voice": "Character voice", + "Voice 1": "Voice 1", + "Voice 2": "Voice 2", + "Voice volume:": "Voice volume:", + "Voip/AutoBlockNotification": "Stop spamming push to talk button or you will be blocked from VOIP", + "Voip/BlockedMessage": "You have been blocked from using VOIP for system misuse", + "Voip/DenoiseAmount": "Noise reduction", + "Voip/Device": "Device", "Voip/DeviceSensitivity": "Microphone volume:", - "Voip/DisabledForOffline": "VoIP este indisponibil în modul offline", - "Voip/DisabledForRaid": "VoIP a fost dezactivat pe server", - "Voip/DisabledForRaidTooltip": "VoIP este momentan dezactivat pe acest server", - "Voip/DisabledNotification": "VoIP este dezactivat", - "Voip/DisabledTooltip": "Dezactivează funcția de mut a VoIP", - "Voip/Enable": "Activează VoIP", - "Voip/EnabledNotification": "VoIP este activat", - "Voip/EnabledTooltip": "Dezactivează VoIP", - "Voip/FirstTimeMessage": "Cu VoIP activat, poți avea parte de o experiență de joc complet diferită. Această funcționalitate este proiectată pentru coordonare și abilitatea de a negocia.\n\nDe reținut: folosind VOIP într-un mod nepotrivit poate strica experiența de joc pentru tine și ceilalți jucători.\nInsultele, redatul de muzică, suflatul de aer, și alte comportamente necorespunzătoare folosind VoIP pot duce ori la blocarea funcționalității ori la interzicerea accesului pe cont (ban).", - "Voip/FirstTimeMessageHeader": "Regulile de utilizare VoIP", - "Voip/InitializationFailed": "Inițializarea microfonului nereușită", - "Voip/InitializationFailedTooltip": "Proces de inițializare eșuat", + "Voip/DisabledForOffline": "VOIP is unavailable in the offline mode", + "Voip/DisabledForRaid": "VOIP was disabled on the server", + "Voip/DisabledForRaidTooltip": "VOIP is currently disabled on this server", + "Voip/DisabledNotification": "VOIP is disabled", + "Voip/DisabledTooltip": "Turn off VOIP mute", + "Voip/Enable": "Enable VOIP", + "Voip/EnabledNotification": "VOIP is enabled", + "Voip/EnabledTooltip": "Disable VOIP", + "Voip/FirstTimeMessage": "With VOIP enabled, you can have a completely different gaming experience. This functionality is designed for coordination and the ability to negotiate.\n\nRemember that using VOIP inappropriately can ruin the experience for you and other players.\nInsults, playing music, clogging the air, and other improper behavior when using VOIP can lead to both the blocking of its functionality and the banning of the game account.", + "Voip/FirstTimeMessageHeader": "VOIP usage rules", + "Voip/InitializationFailed": "Microphone initialization failed", + "Voip/InitializationFailedTooltip": "Initialization process failed", "Voip/MicrophoneSensitivity": "Microphone sensitivity", - "Voip/PlayersReported": "Raportul tău a fost trimis", + "Voip/PlayersReported": "Your report has been sent", "Voip/VoiceActivationEnable": "Radio voice activation", "Voip/WalkieTalkieVolume": "Radio volume", - "Voip/YouAreReported": "Abuzul tău de pe VoIP a fost raportat", - "WATCHLIST": "LISTĂ URMĂRITE", - "WEAPON BUILDS": "ȘABLOANE ARME", - "WEAPON MASTERING (01)": "DEPRINDEREA ARMEI (01)", - "WEAPON MASTERING (02)": "STĂPÂNIREA ARMEI (02)", - "WEAPON MASTERING (03)": "DEPRINDEREA ARMEI (03)", - "WEAPON MODDING": "MODIFICARE ARMĂ", - "WEAPON SPREAD COMMON BUFF": "REDUCE ÎMPRĂȘTIEREA ARMEI (ORDINAR)", - "WEAPON SPREAD RARE BUFF": "REDUCE ÎMPRĂȘTIEREA ARMEI (RAR)", - "WEAPONSTAND": "Rastel", - "WEAPONSTANDSECONDARY": "Rastel", - "WEAR": "POARTĂ", - "WEIGHT": "GREUTATE", - "Walk": "Mergi", - "WalkieTalkiePushToTalk": "Folosește radioul", - "Warehouse 17": "Depozitul 17", - "Warehouse 4": "Depozitul 4", - "Warning! You don’t have TerraGroup Labs access keycard!": "Atenție! Nu deții o cartelă de acces TerraGroup!", - "Warning! You don’t have a proper map in inventory!": "Atenție! Nu ai harta corespunzătoare în inventar!", - "Warning! You have missing parts required for assemble!": "Atenție! Lipsec componente necesare pentru asamblare!", - "Warning! You tried to leave this raid by disconnecting, either accidentally or on purpose. ": "Atenție! Încerci să părăsești acest raid prin deconectare, fie accidental sau intenționat.", - "Warnings/Inventory/ExaminationFailed": "Examinarea obiectului eșuată.", - "Warnings/Inventory/NotEnoughSpaceInStash": "Spațiu insuficient în depozit", - "Watch Intro": "uită-te la intro", - "WatchProfile": "Vezi profilul jucătorului", - "WatchTime": "Verifică ora", - "WatchTimerAndExits": "Verifică ora și ieșirile", - "WaterCloset": "TOALETA", - "WaterCollector": "COLECTOR APĂ", - "Weapon": "Armă", - "Weapon has been built": "Arma a fost asamblată", - "WeaponAccBuff": "Crește acuratețea armei cu [{0:0.#%}]", - "WeaponBroken": "PROBLEMĂ CU ARMA", - "WeaponBuild/SetNameWindowCaption": "NUME ȘABLON", - "WeaponBuild/SetNameWindowPlaceholder": "introdu numele șablonului", - "WeaponDeteriorationChanceReduce": "Reduce probabilitatea de uzură în timpul reparațiilor cu [{0:0.#%}]", - "WeaponDoubleMastering": "Dublează experiența de stăpânire", - "WeaponDurabilityLossOnShotReduce": "Reduce uzura armei la tragere cu [{0:0.#%}]", - "WeaponErgonomicsBuff": "Îmbunătățește ergonomia armei cu [{0:0.#%}]", - "WeaponJammed": "ARMĂ BLOCATĂ", - "WeaponModding": "Modificare Arme", - "WeaponModdingDescription": "Abilitatea de Modificare a armelor mărește ergonomia armei și crește durabilitatea amortizoarelor.", - "WeaponPunch": "Lovitură cu patul", - "WeaponRecoilBuff": "Reduce reculul armei cu [{0:0.#%}]", - "WeaponReloadBuff": "Crește viteza de reîncărcare cu [{0:0.#%}]", - "WeaponStiffHands": "Crește ergonomia armei cu [{0:0.#%}]", - "WeaponSwapBuff": "Crește viteza de schimbare a armei cu [{0:0.#%}]", - "WeaponTreatment": "Mentenanță Arme", - "WeaponTreatmentDescription": "Abilități de reparare și mentenanță arme.", - "WeaponTreatmentLevelingUpDescription": "Abilitatea Mentenanță Arme crește prin repararea armelor cu truse de reparație.", - "WearAmountRepairGunsReducePerLevel": "Reduce gradul de uzură atunci când folosești truse de reparație", - "WearChanceRepairGunsReduceEliteLevel": "Reduce șansele de uzură atunci când folosești truse de reparație cu [50%]", - "Weather conditions": "Condiții meteo", - "WeightLimit": "Limită de greutate", - "Welcome screen description": "Bine ați venit în Escape from Tarkov!\nÎn acest joc, va trebui să lupți pentru viața ta și să supraviețuiești pericolelor din Tarkov, un oraș rusesc din regiunea Norvinsk, aflat la marginea haosului, distrugerii și amurgului civilizației. Caracterul tău este un operator contractat al unei Companii Militare Private (PMC), prins într-un vârtej de evenimente exact dupa Războiul Contractelor. Zona este izolată, comandamentul operațional nu răspunde, fostele obiective și misiuni și-au pierdut scopurile. Toți au țeluri proprii acumș adaptează-te și supraviețuiește, exfiltrează prin blocadă sau încearcă să-i salvezi pe alții.\n\nFii pregătit ca în fiecare sesiune de joc să mori și să pierzi tot ce ai avut cu tine. \nȚine minte, fiecare picătură de internet pierdută sau defecțiune a hardware-ului de rețea poate duce la deconectarea din joc care duce la moartea caracterului tău, și la pierderea tuturor lucrurilor pe care le-ai avut sau le-ai găsit în sesiune.\n\nDa, vei muri, și cel mai probabil foarte des, dar ține minte că acesta e totuși un joc. Mult spor!", - "West Border": "Stâncile din Răsărit", - "West Gate": "Poarta Vestică", - "When you leave the raid you don’t get anything and also receive Left the Action exit status.": "Dacă ieși din raid, vei pierde toată prada și, în plus, vei primi statusul de ieșire Părăsire a Acțiunii.", - "When you leave the raid you don’t get anything and also recieve Left the Action exit status.": "Dacă ieși din raid, vei pierde toată prada și, în plus, vei primi statusul de ieșire Părăsire a Acțiunii.", - "When you leave the raid you don’t get anything and also recieve the Left the Action exit status.": "Dacă ieși din raid, vei pierde toată prada și, în plus, vei primi statusul de ieșire Părăsire a Acțiunii.", - "Will be bought": "Vor fi cumpărate", - "Win": "Victorie", - "WindSpeed/Hurricane": "Uragan", - "WindSpeed/Light": "Briză", - "WindSpeed/Moderate": "Vânt moderat", - "WindSpeed/Strong": "Vânt puternic", - "WindSpeed/VeryStrong": "Rafale", + "Voip/YouAreReported": "Your VOIP misuse has been reported", + "WATCHLIST": "WATCHLIST", + "WEAPON BUILDS": "WEAPON PRESETS", + "WEAPON MASTERING (01)": "WEAPON MASTERING (01)", + "WEAPON MASTERING (02)": "WEAPON MASTERING (02)", + "WEAPON MASTERING (03)": "WEAPON MASTERING (03)", + "WEAPON MODDING": "WEAPON MODDING", + "WEAPON SPREAD COMMON BUFF": "REDUCES WEAPON SPREAD (COMMON)", + "WEAPON SPREAD RARE BUFF": "REDUCES WEAPON SPREAD (RARE)", + "WEAPONSTAND": "Weapon stand", + "WEAPONSTANDSECONDARY": "Weapon stand", + "WEAR": "WEAR", + "WEIGHT": "WEIGHT", + "Walk": "Walk", + "WalkieTalkiePushToTalk": "Use radio", + "Warehouse 17": "Warehouse 17", + "Warehouse 4": "Warehouse 4", + "Warning! You don’t have TerraGroup Labs access keycard!": "Warning! You don’t have a TerraGroup Labs access keycard!", + "Warning! You don’t have a proper map in inventory!": "Warning! You don’t have the proper map in your inventory!", + "Warning! You have missing parts required for assemble!": "Warning! You are missing some parts required for assemble!", + "Warning! You tried to leave this raid by disconnecting, either accidentally or on purpose. ": "Warning! You are trying to leave this raid by disconnecting either accidentally or on purpose.", + "Warnings/Inventory/ExaminationFailed": "Item examination failed.", + "Warnings/Inventory/NotEnoughSpaceInStash": "Not enough space in the stash", + "Watch Intro": "watch intro", + "WatchProfile": "View user's profile", + "WatchTime": "Check time", + "WatchTimerAndExits": "Check time and exits", + "WaterCloset": "LAVATORY", + "WaterCollector": "WATER COLLECTOR", + "Weapon": "Weapon", + "Weapon has been built": "Weapon has been built", + "WeaponAccBuff": "Increases weapon accuracy by [{0:0%}]", + "WeaponBroken": "WEAPON ISSUE", + "WeaponBuild/SetNameWindowCaption": "PRESET NAME", + "WeaponBuild/SetNameWindowPlaceholder": "enter preset name", + "WeaponDeteriorationChanceReduce": "Reduces probability of wear during repair by [{0:0%}]", + "WeaponDoubleMastering": "Doubles mastering gain", + "WeaponDurabilityLossOnShotReduce": "Reduces gun wear while shooting by [{0:0%}]", + "WeaponErgonomicsBuff": "Improves weapon ergonomics by [{0:0%}]", + "WeaponJammed": "WEAPON JAMMED", + "WeaponModding": "Weapon Modding", + "WeaponModdingDescription": "Skill of basic weapon modding on the go increases the mod ergonomics and reduces silencer wear.", + "WeaponPunch": "Buttstroke", + "WeaponRecoilBuff": "Reduces weapon recoil by [{0:0%}]", + "WeaponReloadBuff": "Increases reload speed by [{0:0%}]", + "WeaponStiffHands": "Increases weapon ergonomics by [{0:0%}]", + "WeaponSwapBuff": "Increases weapon switching speed by [{0:0%}]", + "WeaponTreatment": "Weapon Maintenance", + "WeaponTreatmentDescription": "Weapon service and maintenance skills.", + "WearAmountRepairGunsReducePerLevel": "Reduces wear amount when using repair kits", + "WearChanceRepairGunsReduceEliteLevel": "Reduces wear chance when using repair kits by 50%", + "Weather conditions": "Weather conditions", + "WeightLimit": "Weight limit", + "Welcome screen description": "Welcome to Escape from Tarkov!\nIn this game, you will have to fight for your life and survive the perils of Tarkov, a Russian city in the Norvinsk region on the brink of chaos and collapse. Your character is an operator of a Private Military Company (PMC), caught in a maelstrom of events right after the Contract Wars. The area is sealed off, and your operational command is not responding; previous mission objectives have lost their purpose. Everybody has personal goals now – adapt and survive, escape the blockade or try to save others.\n\nBe prepared to die and lose everything you had with you in every raid you enter.\nKeep in mind that every drop in your internet connection or network hardware malfunction can lead to disconnection from the game with the consecutive death of your character and loss of all the gear you had with you or found within your raid.\n\nYes, you will die, and most probably very often, but remember – this is still a game. Best of luck out there!", + "West Border": "Eastern Rocks", + "West Gate": "West Gate", + "When you leave the raid you don’t get anything and also receive Left the Action exit status.": "If you leave the raid, you lose all your loot and also receive the Left the Action exit status.", + "When you leave the raid you don’t get anything and also recieve Left the Action exit status.": "If you leave the raid, you lose all your loot and also receive the Left the Action exit status.", + "When you leave the raid you don’t get anything and also recieve the Left the Action exit status.": "If you leave the raid, you lose all your loot and also receive the Left the Action exit status.", + "Will be bought": "Will be bought", + "Win": "Victory", + "WindSpeed/Hurricane": "Hurricane wind", + "WindSpeed/Light": "Light wind", + "WindSpeed/Moderate": "Moderate wind", + "WindSpeed/Strong": "Strong wind", + "WindSpeed/VeryStrong": "Windstorm", "Windowed": "Windowed", - "WoodEnvironmentUiType": "Pădurea", - "Woods": "Pădurea", - "Workbench": "BANC DE LUCRU", - "WorkoutBrokenArmBlockerMessage": "Nu te poți antrena cu mâna ruptă", - "WorkoutTiredBlockerMessage": "Nu te poți antrena, ești obosit", - "Wound": "Rană Tratată", - "Wrecked Road": "Drumul Distrus", - "Wrong game version. Close the game and download update using the launcher": "Versiune de joc greșită. Vă rugăm să închideți jocul și să-l actualizați folosind lansatorul de joc.", - "YES (Y)": "DA (Y)", - "YOUR KILL LIST": "LISTA TA DE ELIMINĂRI", - "YOUR MAIN CHARACTER": "CARACTERUL TĂU PRINCIPAL", - "Yas been transfered": "A fost transferat", - "Yes": "Da", - "You are banned": "Ești restricționat de la Piața de Vechituri", - "You are no longer a leader of the group": "Nu mai ești lider de grup", - "You are no longer banned from ragfair": "Nu mai ești restricționat de la Piața de Vechituri", - "You are now the leader of the group": "Acum ești liderul grupului.", - "You can change your nickname only once": "Îți poți schimba numele doar o dată", - "You can recover your password using the website.": "Poți recupera parola de pe site-ul nostru.", - "You can't apply medkit. You're at full HP": "Nu se poate folosi trusa de prim ajutor. Nu există nimic de vindecat.", - "You can't disassemble equipped item": "Nu puteți dezasambla un obiect echipat", - "You can't do this to this item": "Nu poți face asta obiectului", - "You can't do this to weapon with internal magazine": "Nu puteți face acest lucru la o armă cu magazie interna", - "You can't edit build on equipped weapon": "Nu puteți modifica șablonul pe o armă echipată", - "You can't edit equipped weapon": "Nu poți modifica o armă echipată", - "You can't enable {0} and {1} at the same time. Turn {1} off?": "Nu poți activa și {0} și {1} în același timp. Închizi {1}?", - "You can't examine two items at the same time": "Nu puteți examina două obiecte în același timp", - "You can't fold this item": "Nu poți plia acest obiect", - "You can't open flea market": "Nu puteți deschide piața de vechituri", - "You can't plant a beacon while moving": "Nu poți plasa un emițător în timp ce te miști", - "You can't plant quest item while moving": "Nu poți plasa obiectul în timp ce te miști.", - "You can't send message to this user. He is in ignore list.": "Nu poți trimite mesaje acestui utilizator. El se află în lista ta de ignorați.", - "You can't send message to this user. He is not in your friends list.": "Nu mai poți trimite mesaje acestui utilizator.", - "You can't send message to this user. You are in ignore list.": "Ai fost adăugat pe lista neagră și nu poți trimite nici un fel de mesaje către acest utilizator.", - "You can't unload ammo from equipped weapon": "Nu puteți descărca muniția de la o armă echipată", - "You can't unload from this item": "Nu poți lua descărca acest obiect", - "You can't use flea market right now": "Nu puteți folosi piața de vechituri chiar acum", - "You can't use ragfair now": "Nu puteți folosi piața de vechituri acum", - "You can't use that symbol": "Nu poți folosi acel caracter", - "You cannot modify texture quality in raid.": "Nu puteți modifica calitatea texturilor în timpul raidului.", - "You cannot take off a dogtag from a friend or group member": "Nu poți lua plăcuța de identificare de la un prieten sau un membru al grupului", - "You don't have some items to finish the deal": "Nu deții necesarul pentru a încheia tranzacția", - "You have all needed parts for this preset in inventory.": "Deții toate părțile necesare pentru acest șablon în inventarul tău.", - "You have already bought the maximum amount of this item in the current restock.": "Ai cumpărat deja cantitatea maximă\na acestui articol din stocul actual.", - "You have left the dialogue ": "Ai părăsit chat-ul.", - "You in trading": "tu", - "You need to check chamber in weapon": "Trebuie să verifici închizătorul armei", - "You need to check the revolver drum": "Trebuie să verifici cilindrul revolverului ", + "WoodEnvironmentUiType": "Woods", + "Woods": "Woods", + "Workbench": "WORKBENCH", + "WorkoutBrokenArmBlockerMessage": "Can't start workout with a broken arm", + "WorkoutTiredBlockerMessage": "Can't start workout - you are tired", + "Wound": "Fresh wound", + "Wrecked Road": "Ruined Road", + "Wrong game version. Close the game and download update using the launcher": "Wrong game version. Please close the game and update it via the launcher.", + "YES (Y)": "YES (Y)", + "YOUR KILL LIST": "YOUR KILL LIST", + "YOUR MAIN CHARACTER": "YOUR MAIN CHARACTER", + "Yas been transfered": "Has been transfered", + "Yes": "Yes", + "You are banned": "You are banned from using the flea market", + "You are no longer a leader of the group": "You are no longer the group leader", + "You are no longer banned from ragfair": "You are no longer banned from flea market", + "You are now the leader of the group": "You are now the group leader.", + "You can change your nickname only once": "You can only change your nickname once", + "You can recover your password using the website.": "You can recover your password using the website.", + "You can't apply medkit. You're at full HP": "You can't apply a medkit. There is nothing to heal.", + "You can't disassemble equipped item": "You can't disassemble an equipped item", + "You can't do this to this item": "You can't do that to this item", + "You can't do this to weapon with internal magazine": "You can't do this to a weapon with internal magazine", + "You can't edit build on equipped weapon": "You can't edit preset on an equipped weapon", + "You can't edit equipped weapon": "You can't edit an equipped weapon", + "You can't enable {0} and {1} at the same time. Turn {1} off?": "You can't enable {0} and {1} at the same time. Would you like to turn {1} off?", + "You can't examine two items at the same time": "You can't examine two items at the same time", + "You can't fold this item": "You can't fold this item", + "You can't open flea market": "You can't open flea market", + "You can't plant a beacon while moving": "You can't place a beacon while moving", + "You can't plant quest item while moving": "You can't place an item whilst moving.", + "You can't send message to this user. He is in ignore list.": "You can't send message to this user. He is in your ignore list.", + "You can't send message to this user. He is not in your friends list.": "You can't send a message to this user.", + "You can't send message to this user. You are in ignore list.": "You have been blacklisted and can't send any messages to this user.", + "You can't unload ammo from equipped weapon": "You can't unload ammo from an equipped weapon", + "You can't unload from this item": "You can't unload this item", + "You can't use flea market right now": "You can't use flea market right now", + "You can't use ragfair now": "You can't use Flea Market now", + "You can't use that symbol": "You can't use that character", + "You cannot modify texture quality in raid.": "You cannot modify texture quality in raid.", + "You cannot take off a dogtag from a friend or group member": "You cannot take off a dogtag from a friend or group member", + "You don't have some items to finish the deal": "You don't have some items required to finish the deal", + "You have all needed parts for this preset in inventory.": "You have all needed parts for this preset in your inventory.", + "You have already bought the maximum amount of this item in the current restock.": "You have already bought the maximum amount\nof this item in the current restock.", + "You have left the dialogue ": "You have left the chat.", + "You in trading": "you", + "You need to check chamber in weapon": "You need to check chamber in the weapon", + "You need to check the revolver drum": "You need to check the revolver cylinder ", "You need to survive and exit from the location to save and move these items to a special stash for quest items.": "Pentru a păstra aceste articole, ele trebuie transferate într-un spațiu special pentru articole tip misiune, acest lucru este posibil doar dacă te extragi cu succes din raid.", - "You received these rewards: ": "Ai primit aceste recompense: ", - "You still have untransfered items. Are you sure you want to end the transfer? You will be able to return to this process later.": "Nu toate obiectele au fost transferate. Ești sigur că vrei să închei acest proces? Vei putea reveni mai târziu.", - "You still have untransfered items. Are you sure you want to end the transfer? You will not be able to return to this process later.": "Ai obiecte netransferate. Ești sigur că vrei să termini transferul? Vei putea reveni la acest proces mai târziu.", - "You were kicked from group": "Ați fost dat afară din grup", - "You were removed from this dialogue": "Ai fost scos afară din acest chat", - "You will unlock this trader as a reward": "Vei debloca acest comerciant ca recompensă", - "You: ": "Tu:", - "YouSurvived": "Ai supraviețuit!", - "Your nickname is too short": "Numele tău este prea scurt.", - "Your offer was sold. Check your messages!": "Oferta ta a fost vândută. Verifică-ți mesajele!", - "Your weapon miss some vital parts": "Armei tale îi lipsesc niște componente vitale.", - "You’ve purchased ({0}) offers. Check your stash!": "Ai achiziționat ({0}) oferte. Verifică depozitul!", + "You received these rewards: ": "You received these rewards: ", + "You still have untransfered items. Are you sure you want to end the transfer? You will be able to return to this process later.": "Not all items have been transferred. Are you sure you want to end this process? You will be able to return to this later.", + "You still have untransfered items. Are you sure you want to end the transfer? You will not be able to return to this process later.": "You still have untransfered items. Are you sure you want to end the transfer? You will not be able to return to this process later.", + "You were kicked from group": "You have been kicked from group", + "You were removed from this dialogue": "You were removed from this chat", + "You will unlock this trader as a reward": "You will unlock this trader as a reward", + "You: ": "You:", + "YouSurvived": "You survived!", + "Your nickname is too short": "Your nickname is too short.", + "Your offer was sold. Check your messages!": "Your offer was sold. Check your messages!", + "Your weapon miss some vital parts": "Your weapon is missing some vital parts.", + "You’ve purchased ({0}) offers. Check your stash!": "You’ve purchased ({0}) offers. Check your stash!", "Z-Blur": "Z-Blur", "ZB-014": "ZB-014", "ZB-016": "ZB-016", "ZB-1011": "ZB-1011", "ZB-1012": "ZB-1012", - "ZeroWeaponDeteriorationOnRepair": "Nicio uzură în timpul reparațiilor", - "aimdrillsdescription": "Exercițiile de ochire îți vor spori viteza de ochire și îți vor permite să ochești mai silențios.", - "ammoFound": "Muniție găsită", - "ammoUsed": "Muniție folosită", - "any": "Orice locație", - "any Name": "Orice locație", - "anyownertype": "Oricare", - "apply": "APLICĂ", + "ZeroWeaponDeteriorationOnRepair": "No wear during a repair", + "aimdrillsdescription": "Aim drills will increase your aiming speed and will allow to perform aiming quieter", + "ammoFound": "Ammo found", + "ammoUsed": "Ammo used", + "any": "Any location", + "any Name": "Any location", + "anyownertype": "Any", + "apply": "APPLY", "arena/AssistShort": "A", "arena/DeathShort": "D", "arena/Exp": "Exp", "arena/KillShort": "K", - "arena/Leaderboard/Common": "Obișnuită", + "arena/Leaderboard/Common": "Common", "arena/Leaderboard/KillToDeath": "General", - "arena/Leaderboard/Matches": "Meciuri", - "arena/Leaderboard/Modes": "Moduri de joc", - "arena/Leaderboard/PlayTime": "Timp în Joc", - "arena/Leaderboard/Player": "Jucător", - "arena/Leaderboard/Rank": "Rang", - "arena/Leaderboard/RefreshHint{0}": "Actualizare la fiecare {0} ore.", + "arena/Leaderboard/Matches": "Matches", + "arena/Leaderboard/Modes": "Game modes", + "arena/Leaderboard/PlayTime": "Play time", + "arena/Leaderboard/Player": "Player", + "arena/Leaderboard/Rank": "Rank", + "arena/Leaderboard/RefreshHint{0}": "Refreshed every {0} hours.", "arena/Leaderboard/Title": "Leaderboard", - "arena/Leaderboard/Wins": "Victorii", + "arena/Leaderboard/Wins": "Wins", "arena/Leaderboard/d": "d", "arena/Leaderboard/h": "h", "arena/Leaderboard/m": "m", "arena/Leaderboard/top": "Top", - "arena/Place": "Locul", - "arena/Player": "Jucător", - "arena/Rank": "Rang", - "arena/Round": "Runda", + "arena/Place": "Place", + "arena/Player": "Player", + "arena/Rank": "Rank", + "arena/Round": "Round", "arena/button/ArenaBattle": "ARENA BATTLE", - "arena/button/Career": "CARIERĂ", - "arena/button/Presets": "ȘABLOANE", - "arena/button/QuitGame": "PĂRĂSEȘTE JOCUL", - "arena/button/Rating": "CALIFICATIV", - "arena/career/commonStats/avgGlpPerDay": "ARP mediu pe zi", - "arena/career/commonStats/bestGlp": "Cel mai bun ARP", - "arena/career/commonStats/bestMatchKillStreak": "Cea mai lungă succesiune de eliminări în meci", - "arena/career/commonStats/bestRank": "Cel mai bun rang", - "arena/career/commonStats/bestWinStreak": "Cea mai lungă succesiune de victorii", - "arena/career/commonStats/currentGlp": "ARP actual", - "arena/career/commonStats/currentKillMatchStreak": "Cea mai lungă succesiune de eliminări din meci", - "arena/career/commonStats/currentRank": "Rang curent", - "arena/career/commonStats/currentWinStreak": "Șir de victorii curent", - "arena/career/commonStats/favPreset": "Șablon preferat", - "arena/career/commonStats/lastSession": "Ultima sesiune în Arenă", - "arena/career/commonStats/moneyEarned": "Bani câștigați", - "arena/career/commonStats/moneySpent": "Bani cheltuiți", - "arena/career/commonStats/startDate": "Data înregistrării", - "arena/career/commonStats/title": "Statistici Generale", - "arena/career/commonStats/xpHeal": "EXP Vindecare", - "arena/career/commonStats/xpKills": "EXP Eliminări", - "arena/career/commonStats/xpWin": "EXP Victorie", - "arena/career/dashboard/avgGlpPerDay": "ARP mediu pe zi", - "arena/career/dashboard/deaths": "Decese", - "arena/career/dashboard/headshots": "Eliminări cu lovituri la cap", + "arena/button/Career": "CAREER", + "arena/button/Presets": "PRESETS", + "arena/button/QuitGame": "QUIT GAME", + "arena/button/Rating": "RATING", + "arena/career/commonStats/avgGlpPerDay": "Avg ARP per day", + "arena/career/commonStats/bestGlp": "Highest ARP", + "arena/career/commonStats/bestMatchKillStreak": "Highest match kill streak", + "arena/career/commonStats/bestRank": "Highest rank", + "arena/career/commonStats/bestWinStreak": "Highest win streak", + "arena/career/commonStats/currentGlp": "Current ARP", + "arena/career/commonStats/currentKillMatchStreak": "Current match kill streak", + "arena/career/commonStats/currentRank": "Current rank", + "arena/career/commonStats/currentWinStreak": "Current win streak", + "arena/career/commonStats/favPreset": "Favorite preset", + "arena/career/commonStats/lastSession": "Last Arena session", + "arena/career/commonStats/moneyEarned": "Money earned", + "arena/career/commonStats/moneySpent": "Money spent", + "arena/career/commonStats/startDate": "Registration date", + "arena/career/commonStats/title": "Overall statistics", + "arena/career/commonStats/xpHeal": "Healing XP", + "arena/career/commonStats/xpKills": "Kill XP", + "arena/career/commonStats/xpWin": "Victory XP", + "arena/career/dashboard/avgGlpPerDay": "Avg ARP per day", + "arena/career/dashboard/deaths": "Deaths", + "arena/career/dashboard/headshots": "Headshot kills", "arena/career/dashboard/kd": "K/D", - "arena/career/dashboard/kills": "Eliminări", - "arena/career/dashboard/leaves": "Meciuri abandonate", - "arena/career/dashboard/loses": "Înfrângeri", - "arena/career/dashboard/maxLoseStreak": "Cea mai lungă succesiune de înfrângeri", - "arena/career/dashboard/maxWinStreak": "Cea mai lungă succesiune de victorii", + "arena/career/dashboard/kills": "Kills", + "arena/career/dashboard/leaves": "Matches quit", + "arena/career/dashboard/loses": "Defeats", + "arena/career/dashboard/maxLoseStreak": "Highest lose streak", + "arena/career/dashboard/maxWinStreak": "Highest win streak", "arena/career/dashboard/online": "Online", - "arena/career/dashboard/rank": "Rang", - "arena/career/dashboard/totalMatches": "Meciuri jucate", - "arena/career/dashboard/winrate": "Rata victoriilor", - "arena/career/dashboard/wins": "Victorii", - "arena/career/ranksHint/commonRanks": "Ranguri Arenă", - "arena/career/ranksHint/elite": "TOP Elită", - "arena/career/ranksHint/elite1": "TOP-1 Elită", - "arena/career/ranksHint/elite10": "TOP-10 Elită", - "arena/career/ranksHint/elite100": "TOP-100 Elită", - "arena/career/ranksHint/elite1000": "TOP-1000 Elită", - "arena/career/ranksHint/specialRanks": "Ranguri speciale", - "arena/career/shootOutStats/assists": "Asistență eliminări", - "arena/career/shootOutStats/avgKillsPerMatch": "Eliminări medii pe turneu", - "arena/career/shootOutStats/avgLifeTime": "Durata medie de viață", - "arena/career/shootOutStats/bestMatchKillStreak": "Cea mai lungă succesiune de eliminări", - "arena/career/shootOutStats/bestWinStreak": "Cea mai lungă succesiune de victorii", - "arena/career/shootOutStats/capturedPoints": "Obiective capturate", - "arena/career/shootOutStats/deaths": "Decese", - "arena/career/shootOutStats/doubleKills": "Eliminări duble", - "arena/career/shootOutStats/favPreset": "Șablon preferat", - "arena/career/shootOutStats/flawlessWins": "Victorii perfecte", - "arena/career/shootOutStats/grenadeKills": "Eliminări cu grenade", - "arena/career/shootOutStats/headshots": "Eliminări cu lovituri la cap", - "arena/career/shootOutStats/headshotsCoef": "Rată eliminări cu lovituri la cap, %", - "arena/career/shootOutStats/hpRestoredTotal": "Puncte sănătate recuperate", + "arena/career/dashboard/rank": "Rank", + "arena/career/dashboard/totalMatches": "Matches played", + "arena/career/dashboard/winrate": "Win rate", + "arena/career/dashboard/wins": "Victories", + "arena/career/ranksHint/commonRanks": "Arena ranks", + "arena/career/ranksHint/elite": "Elite TOP", + "arena/career/ranksHint/elite1": "Elite TOP-1", + "arena/career/ranksHint/elite10": "Elite TOP-10", + "arena/career/ranksHint/elite100": "Elite TOP-100", + "arena/career/ranksHint/elite1000": "Elite TOP-1000", + "arena/career/ranksHint/specialRanks": "Special ranks", + "arena/career/shootOutStats/assists": "Kill assists", + "arena/career/shootOutStats/avgKillsPerMatch": "Average kills per tournament", + "arena/career/shootOutStats/avgLifeTime": "Average life time", + "arena/career/shootOutStats/bestMatchKillStreak": "Highest tournament kill streak", + "arena/career/shootOutStats/bestWinStreak": "Highest win streak", + "arena/career/shootOutStats/capturedPoints": "Objectives captured", + "arena/career/shootOutStats/deaths": "Deaths", + "arena/career/shootOutStats/doubleKills": "Double kills", + "arena/career/shootOutStats/favPreset": "Favorite preset", + "arena/career/shootOutStats/flawlessWins": "Flawless victories", + "arena/career/shootOutStats/grenadeKills": "Grenade kills", + "arena/career/shootOutStats/headshots": "Headshot kills", + "arena/career/shootOutStats/headshotsCoef": "Headshot kill rate, %", + "arena/career/shootOutStats/hpRestoredTotal": "Total HP restored", "arena/career/shootOutStats/kd": "K/D", - "arena/career/shootOutStats/kills": "Eliminări de jucători", - "arena/career/shootOutStats/killsPerMinCoef": "Rată eliminări pe minut, %", - "arena/career/shootOutStats/killsWithFavPreset": "Eliminări cu șablonul preferat", - "arena/career/shootOutStats/knifeKills": "Eliminări cu arme albe", - "arena/career/shootOutStats/leaves": "Turnee abandonate", - "arena/career/shootOutStats/matches": "Turnee jucate", - "arena/career/shootOutStats/maxMatchXp": "EXP maximă obținută în turneu", - "arena/career/shootOutStats/moneyEarned": "Bani câștigați", - "arena/career/shootOutStats/moneySpent": "Bani cheltuiți", + "arena/career/shootOutStats/kills": "Player kills", + "arena/career/shootOutStats/killsPerMinCoef": "Kills per minute rate, %", + "arena/career/shootOutStats/killsWithFavPreset": "Kills with favorite preset", + "arena/career/shootOutStats/knifeKills": "Melee weapon kills", + "arena/career/shootOutStats/leaves": "Tournaments quit", + "arena/career/shootOutStats/matches": "Tournaments played", + "arena/career/shootOutStats/maxMatchXp": "Highest tournament XP", + "arena/career/shootOutStats/moneyEarned": "Money earned", + "arena/career/shootOutStats/moneySpent": "Money spent", "arena/career/shootOutStats/overKills": "Overkills", - "arena/career/shootOutStats/reachFinalBattleCoef": "Rata de participare la bătălia finală, %", + "arena/career/shootOutStats/reachFinalBattleCoef": "Final Battle reach rate, %", "arena/career/shootOutStats/title1": "ShootOut 1vs1 statistics", "arena/career/shootOutStats/title2": "ShootOut 2vs2 statistics", "arena/career/shootOutStats/title3": "ShootOut 3vs3 statistics", - "arena/career/shootOutStats/winrat": "Rată câștig turnee, %", - "arena/career/shootOutStats/wins": "Turnee câștigate", - "arena/career/shootOutStats/winsWithFavPreset": "Turnee câștigate cu șablonul preferat", - "arena/career/tabs/common": "Per total", - "arena/career/tabs/health": "Sănătate", - "arena/career/tabs/history": "Istoric", - "arena/career/tabs/inventory": "Inventar", + "arena/career/shootOutStats/winrat": "Tournament win rate, %", + "arena/career/shootOutStats/wins": "Tournaments won", + "arena/career/shootOutStats/winsWithFavPreset": "Tournaments won with favorite preset", + "arena/career/tabs/common": "Overall", + "arena/career/tabs/health": "Health", + "arena/career/tabs/history": "History", + "arena/career/tabs/inventory": "Inventory", "arena/career/tabs/pile": "Deck", - "arena/career/tabs/skills": "Abilități", - "arena/career/teamFightStats/assists": "Asistență eliminări", - "arena/career/teamFightStats/avgKillsPerMatch": "Eliminări medii pe meci", - "arena/career/teamFightStats/avgLifeTime": "Durata medie de viață", - "arena/career/teamFightStats/bestMatchKillStreak": "Cea mai lungă succesiune de eliminări", - "arena/career/teamFightStats/bestWinStreak": "Cea mai lungă succesiune de victorii", - "arena/career/teamFightStats/deaths": "Decese", - "arena/career/teamFightStats/doubleKills": "Eliminări duble", - "arena/career/teamFightStats/favPreset": "Șablon preferat", - "arena/career/teamFightStats/flawlessWins": "Victorii perfecte", - "arena/career/teamFightStats/grenadeKills": "Eliminări cu grenade", - "arena/career/teamFightStats/headshots": "Eliminări cu lovituri la cap", - "arena/career/teamFightStats/headshotsCoef": "Rată eliminări cu lovituri la cap, %", - "arena/career/teamFightStats/hpRestoredTotal": "Puncte sănătate recuperate", + "arena/career/tabs/skills": "Skills", + "arena/career/teamFightStats/assists": "Kill assists", + "arena/career/teamFightStats/avgKillsPerMatch": "Average kills per match", + "arena/career/teamFightStats/avgLifeTime": "Average life time", + "arena/career/teamFightStats/bestMatchKillStreak": "Highest match kill streak", + "arena/career/teamFightStats/bestWinStreak": "Highest win streak", + "arena/career/teamFightStats/deaths": "Deaths", + "arena/career/teamFightStats/doubleKills": "Double kills", + "arena/career/teamFightStats/favPreset": "Favorite preset", + "arena/career/teamFightStats/flawlessWins": "Flawless victories", + "arena/career/teamFightStats/grenadeKills": "Grenade kills", + "arena/career/teamFightStats/headshots": "Headshot kills", + "arena/career/teamFightStats/headshotsCoef": "Headshot kill rate, %", + "arena/career/teamFightStats/hpRestoredTotal": "Total HP restored", "arena/career/teamFightStats/kd": "K/D", - "arena/career/teamFightStats/kills": "Eliminări de jucători", - "arena/career/teamFightStats/killsPerMinCoef": "Rată eliminări pe minut, %", - "arena/career/teamFightStats/killsWithFavPreset": "Eliminări cu șablonul preferat", - "arena/career/teamFightStats/knifeKills": "Eliminări cu arme albe", - "arena/career/teamFightStats/leaves": "Meciuri abandonate", - "arena/career/teamFightStats/matches": "Meciuri jucate", - "arena/career/teamFightStats/maxMatchXp": "EXP maximă obținută într-un meci", - "arena/career/teamFightStats/moneyEarned": "Bani câștigați", - "arena/career/teamFightStats/moneySpent": "Bani cheltuiți", + "arena/career/teamFightStats/kills": "Player kills", + "arena/career/teamFightStats/killsPerMinCoef": "Kills per minute rate, %", + "arena/career/teamFightStats/killsWithFavPreset": "Kills with favorite preset", + "arena/career/teamFightStats/knifeKills": "Melee weapon kills", + "arena/career/teamFightStats/leaves": "Matches quit", + "arena/career/teamFightStats/matches": "Matches played", + "arena/career/teamFightStats/maxMatchXp": "Highest match XP", + "arena/career/teamFightStats/moneyEarned": "Money earned", + "arena/career/teamFightStats/moneySpent": "Money spent", "arena/career/teamFightStats/overKills": "Overkills", "arena/career/teamFightStats/title": "TeamFight statistics", - "arena/career/teamFightStats/winrat": "Rata victoriilor, %", - "arena/career/teamFightStats/wins": "Victorii", - "arena/career/teamFightStats/winsWithFavPreset": "Victorii cu șablonul preferat", - "arena/customGames/create/samePresets": "Șabloane dublate:", - "arena/customGames/create/setSamePresets": "Permite dublarea șabloanelor", + "arena/career/teamFightStats/winrat": "Win rate, %", + "arena/career/teamFightStats/wins": "Victories", + "arena/career/teamFightStats/winsWithFavPreset": "Matches won with favorite preset", "arena/customGames/invite/message{0}": "CUSTOM GAME INVITE FROM {0}", - "arena/customGames/notify/GameRemoved": "Camera a fost desființată", - "arena/customgames/errors/notification/gamealreadystarted": "Jocul a început deja", - "arena/customgames/popups/attemptscountleft:": "Încercări rămase:", - "arena/info/GLP Left": "ARP RĂMAS", + "arena/customGames/notify/GameRemoved": "Room has been disbanded", + "arena/customgames/errors/notification/gamealreadystarted": "Game has already started", + "arena/customgames/popups/attemptscountleft:": "Attempts left:", + "arena/info/GLP Left": "ARP LEFT", "arena/info/KD Ratio": "K/D", - "arena/info/Main GLP Scores": "RAȚIE SCOR ARP", - "arena/info/Matches": "MECIURI", - "arena/info/Rank": "RANG", + "arena/info/Main GLP Scores": "ARP SCORE RATIO", + "arena/info/Matches": "MATCHES", + "arena/info/Rank": "RANK", "arena/info/Rate": "ARP", - "arena/info/Rating": "NOTA #", - "arena/info/Rubles": "RUBLE", - "arena/info/Total GLP": "ARP TOTAL", - "arena/info/Win Matches": "VICTORII", - "arena/info/Win Rate": "RATĂ CÂȘTIG", - "arena/matching/AvailableArenaMaps": "LOCAȚII DISPONIBILE", - "arena/matching/AvailableModes": "Moduri de joc disponibile", - "arena/matching/Maps": "LOCAȚII", - "arena/matching/PrepareForGlory": "PREGĂTEȘTE-TE PENTRU GLORIE", - "arena/matching/PresetsLoading": "ÎNCĂRCARE ȘABLOANE", - "arena/matching/Rules": "REGULI", - "arena/matching/SearchingMatch": "CĂUTARE MECI", - "arena/matching/SelectArenaMap": "ALEGE ARENA", - "arena/matching/SelectGametype": "ALEGE TIPUL DE JOC", + "arena/info/Rating": "RATING #", + "arena/info/Rubles": "ROUBLES", + "arena/info/Total GLP": "TOTAL ARP", + "arena/info/Win Matches": "MATCHES WON", + "arena/info/Win Rate": "WIN RATE", + "arena/matching/AvailableArenaMaps": "AVAILABLE LOCATIONS", + "arena/matching/AvailableModes": "Available game modes", + "arena/matching/Maps": "LOCATIONS", + "arena/matching/PrepareForGlory": "PREPARE FOR GLORY", + "arena/matching/PresetsLoading": "LOADING PRESETS", + "arena/matching/Rules": "RULES", + "arena/matching/SearchingMatch": "SEARCHING MATCH", + "arena/matching/SelectArenaMap": "SELECT ARENA", + "arena/matching/SelectGametype": "SELECT GAME TYPE", "arena/matching/SelectRankedGamemode": "SELECT RANKED GAME MODE", "arena/matching/Type": "TYPE", - "arena/matching/UnavailableReason": "Indisponibil", - "arena/matching/buyPreset": "CUMPĂRĂ ȘABLON", - "arena/matching/presetSelection": "ALEGERE ȘABLON", - "arena/matching/readyPlayers0 Ready\\nplayers": "Jucătorii pregătiți", - "arena/monitors/score": "SCOR", + "arena/matching/UnavailableReason": "Unavailable", + "arena/matching/buyPreset": "BUY PRESET", + "arena/matching/presetSelection": "PRESET SELECTION", + "arena/matching/readyPlayers0 Ready\\nplayers": "Players ready", + "arena/monitors/score": "SCORE", "arena/monitors/style": "STYLE", "arena/postmatch/Calibration": "Matches left to earn a rank", - "arena/postmatch/EnemyTeam ": "Echipa inamică", + "arena/postmatch/EnemyTeam ": "Enemy team", "arena/postmatch/NewLevel": "Level up", "arena/postmatch/NewRank": "Rank up", - "arena/postmatch/NextBattle": "Următoarea bătălie", + "arena/postmatch/NextBattle": "Next battle", "arena/postmatch/NonRankedText": "Earning{0}is available{1}only in Ranked mode.", - "arena/postmatch/Results": "Rezultate", - "arena/postmatch/ShootOutStatistic": "Statistici Echipă", - "arena/postmatch/TeamFightStatistic": "Statistici Echipă", - "arena/postmatch/ToMainMenu": "Spre meniul principal...", - "arena/postmatch/YourTeam": "Echipa ta", + "arena/postmatch/Results": "Results", + "arena/postmatch/ShootOutStatistic": "Team statistics", + "arena/postmatch/TeamFightStatistic": "Team statistics", + "arena/postmatch/ToMainMenu": "To main menu...", + "arena/postmatch/YourTeam": "Your team", "arena/postmatch/common_preset_unlock": "Class preset unlocked", - "arena/postmatch/left": "Părăsit:", + "arena/postmatch/left": "Left:", "arena/postmatch/new_rank": "Rank up", - "arena/postmatch/preset": "Șablon", - "arena/postmatch/preset_match_exp": "Șablon meci", - "arena/postmatch/preset_modificator": "Modificator", + "arena/postmatch/preset": "Preset", + "arena/postmatch/preset_match_exp": "Match preset", + "arena/postmatch/preset_modificator": "Modifier", "arena/postmatch/ranked_preset_unlock": "Ranked preset unlocked", - "arena/postmatch/reward_panel": "Recompensă", + "arena/postmatch/reward_panel": "Reward", "arena/tab/ASSAULT": "ASSAULT", "arena/tab/COLLECTION": "COLLECTION", - "arena/tab/FAVORITES": "COLLECTION", + "arena/tab/FAVORITES": "FAVORITES", "arena/tab/MARKSMAN": "MARKSMAN", "arena/tab/RATING": "RATING", "arena/tab/SCOUT": "SCOUT", "arena/tab/SQB": "CQB", "arena/tooltip/OverallMatches": "Total number of ranked and unranked matches played.", - "arena/tooltip/Presets": "Șabloane", + "arena/tooltip/Presets": "Presets", "arena/tooltip/countGlp": "Your total ARP (Arena Reputation Points) rating. This is a statistic that determines your rating obtained in ranked game modes. It is used to match with players of equal skill, as well as to unlock new ranks and presets.", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", - "arena/tooltip/friends": "Prieteni", + "arena/tooltip/friends": "Friends", "arena/tooltip/kdRatio": "Your overall Kill to Death ratio, calculated from all kills and deaths in ranked and unranked matches. Only the player kills are counted.", "arena/tooltip/leftGlp": "Amount of ARP rating required to reach the next rank.", - "arena/tooltip/mainMenu": "Meniul Principal", - "arena/tooltip/moneyRubles": "Ruble. Se utilizează la cumpărarea șabloanelor și se câștigă prin victorii în Arenă.", + "arena/tooltip/mainMenu": "Main menu", + "arena/tooltip/moneyRubles": "Roubles. Used to buy presets and are earned for victories in the Arena.", "arena/tooltip/ratingPlace": "Your position in the leaderboard.", - "arena/tooltip/settings": "Setări", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", + "arena/tooltip/settings": "Settings", "arena/tooltip/sourcesGlp": "Earned ARP sources:", "arena/tooltip/winMatches": "Total number of wins in ranked and unranked matches.", "arena/tooltip/winRate": "Your overall win ratio, calculated from all wins and losses in ranked and unranked matches.", - "arenaui/presetview/lockedpreset": "Indisponibil", - "arm broke": "Ți-ai rupt mâna!", - "assaultKills": "Eliminări cu arme de asalt", - "back_plate": "PLACĂ ANTE", - "bad": "prost", - "bartitemsFound": "Bunuri de schimb găsite", - "bearKills": "BEAR eliminați", - "bigmap": "Vamă", - "bloodLost": "Sânge pierdut", - "bodiesLooted": "Cadavre căutate", - "bodypartsLost": "Membre pierdute", - "bonus/unlockweaponmodification_required": "Trebuie să deblochezi modificarea echipamentelor în Refugiu.", - "bossKills": "Boși eliminați", - "btr_buy_01": "Tranzacție finalizată! Mai dorești ceva?", - "btr_generic_greetings_01": "Ai venit la taclale, sau mergem undeva?", - "btr_generic_greetings_02": "Ți-ai mușcat limba? Spune-mi care-i treaba.", - "btr_generic_greetings_03": "Intră, ia loc. Vrei să te duc undeva?", - "btr_generic_greetings_04": "Ce stai așa tăcut, mă sperii. Vrei să te duc undeva?", - "buffer_zone_timer": "Timpul de vizitare a Paznicului de Far este limitat", - "burst": "Rafală", + "arenaui/presetview/lockedpreset": "Preset unavailable", + "arm broke": "You broke your arm", + "assaultKills": "Assault rifle kills", + "back_plate": "BACK PLATE", + "bad": "bad", + "bartitemsFound": "Barter goods found", + "bearKills": "BEARs killed", + "bigmap": "Customs", + "bloodLost": "Blood lost", + "bodiesLooted": "Bodies looted", + "bodypartsLost": "Limbs lost", + "bonus/unlockweaponmodification_required": "Requires weapon modification to be unlocked in the Hideout.", + "bossKills": "Bosses killed", + "btr_buy_01": "Transaction successful! Anything else?", + "btr_generic_greetings_01": "You here for a chat, or are we going somewhere?", + "btr_generic_greetings_02": "You bit your tongue? Tell me what's up.", + "btr_generic_greetings_03": "Come on in, have a seat. Need a ride?", + "btr_generic_greetings_04": "Don't just sit there silently, you're creeping me out. You need a ride somewhere?", + "buffer_zone_timer": "Lightkeeper visit time is limited", + "burst": "Burst fire", "camora_000": "Camera 1", "camora_001": "Camera 2", "camora_002": "Camera 3", @@ -15756,8 +15646,8 @@ "chamberunload": "Descarcă camera", "choose face and voice": "ALEGE FAȚA ȘI VOCEA", "close": "Închide", - "collapse": "restrânge", - "collar": "GÂT", + "collapse": "collapse", + "collar": "NECK", "colorblind/Deuteranopia": "Deuteranopia", "colorblind/None": "None", "colorblind/Protanopia": "Protanopia", @@ -15793,699 +15683,697 @@ "colorgrading/Zabid": "Zabid", "confirm": "CONFIRMĂ", "construction time": "TIMP DE CONSTRUCȚIE", - "contFound": "Cutii găsite", - "container tag": "eticheta containerului", - "contusions": "Contuzii", - "creditsFound": "Bani găsiți", - "creditsSaved": "Bani păstrați", + "contFound": "Containers found", + "container tag": "container tag", + "contusions": "Concussions", + "creditsFound": "Credits found", + "creditsSaved": "Credits saved", "currWinStreak": "Succesiunea curentă de supraviețuiri", - "current:": "actual: ", - "custom": "personalizat", - "customization/Default": "Standard", - "customization/Locked": "Blocat", - "customization/Selected": "Ales", + "current:": "current: ", + "custom": "custom", + "customization/Default": "Default", + "customization/Locked": "Locked", + "customization/Selected": "Selected", "cz": "Čeština", - "damApplied": "Daune cauzate", - "damAppliedArmor": "Daune absorbite de armură", - "damAppliedBody": "Daune corporale", - "dehydrDeaths": "Decese din cauza deshidratării", - "dehydrations": "Deshidratari", - "dmrKills": "Eliminări cu pușca de lunetist", - "doubleKills": "Eliminări duble", - "doubleaction": "Dublă acțiune", + "damApplied": "Damage dealt", + "damAppliedArmor": "Damage absorbed by armor", + "damAppliedBody": "Damage dealt to body", + "dehydrDeaths": "Dehydration deaths", + "dehydrations": "Dehydrations", + "dmrKills": "Marksman rifle kills", + "doubleKills": "Double kills", + "doubleaction": "Double action", "doublet": "Double-Tap", - "drinksUsed": "Băuturi consumate", - "earenapresetstype/collection": "COLECȚIE", - "embedded": "încorporat", + "drinksUsed": "Drinks consumed", + "earenapresetstype/collection": "COLLECTION", + "embedded": "enclosed", "en": "English", - "enhancementChance/average": "Medie", - "enhancementChance/high": "Ridicat", - "enhancementChance/low": "Scăzut", - "enhancementChance/very low": "Foarte scăzută", - "enter build name": "introdu numele modelului", - "enter item name": "introdu numele obiectului", - "eqipFound": "Echipament găsit", - "equipmentbuilds/savetooltip": "Salvează", + "enhancementChance/average": "Medium", + "enhancementChance/high": "High", + "enhancementChance/low": "Low", + "enhancementChance/very low": "Very low", + "enter build name": "enter build name", + "enter item name": "enter item name", + "eqipFound": "Equipment found", + "equipmentbuilds/savetooltip": "Save", "es": "Español", "es-mx": "Español - MX", - "eventunknowntoxin": "Intoxicare cu otravă necunoscută", + "eventunknowntoxin": "Unknown toxin poisoning", "exclusivefullscreen": "Fullscreen", - "exfil_switch": "Comutator ușă ermetică", - "exhaustions": "Epuizare", - "exit_ALL_alpinist_shoreline": "Urcarea de la Pârâul Montan", - "exit_scav_NORTH_fencepassage": "Drumul Prin Perimetrul Nordic", - "exit_scav_ruinedhousefence": "Poteca de Lângă Casa Dărâmată", - "exit_scav_sanatorium2_gymentrance": "Intrare Sală Forță", - "exit_scav_sanatorium_adm_basement": "Pivnița Corpului Administrativ", - "exit_var2_LIGHTHOUSE_ROAD": "Drumul spre Far", - "expHeal": "Experiența din vindecare", - "expKill": "Experiență eliminări", - "expLoot": "Experiența prăzii", - "expSurvive": "Experiență de supraviețuire", - "expand": "deschide", - "explDeaths": "Decese din cauza exploziilor", - "explKills": "Eliminări prin explozii", - "factory4": "Uzina", - "factory4_day": "Uzina", - "factory4_night": "Uzina Noaptea", - "fast": "rapid", - "fatalHits": "Lovituri fatale", - "favLocation": "Locația preferată", - "fighterClass": "Clasă luptător", - "find nickname": "Căutare utilizator", - "fine": "bună", - "firearmsDeaths": "Decese prin împușcare", - "foodDrinksFound": "Provizii găsite", - "foodUsed": "Alimente consumate", - "fractures": "Fracturi", - "freqDeathPart": "Cea mai frecvent lovită zonă", - "freqLoot": "Cel mai frecvent articol găsit", - "friend": "prieten", - "from {0} to {1} items": "De la {0} la {1} articole", - "front_plate": "PLACĂ FRONTALĂ", - "fullauto": "Automat", + "exfil_switch": "Hermetic door switch", + "exhaustions": "Exhaustion", + "exit_ALL_alpinist_shoreline": "Ascent at the Mountain Creek", + "exit_scav_NORTH_fencepassage": "Path Through the Northern Fence", + "exit_scav_ruinedhousefence": "Path Near the Ruined House", + "exit_scav_sanatorium2_gymentrance": "Gym Exfil", + "exit_scav_sanatorium_adm_basement": "Administration Block Basement", + "exit_var2_LIGHTHOUSE_ROAD": "Road to Lighthouse", + "expHeal": "Healing experience", + "expKill": "Kill experience", + "expLoot": "Looting experience", + "expSurvive": "Survival experience", + "expand": "expand", + "explDeaths": "Explosion deaths", + "explKills": "Explosive Kills", + "factory4": "Factory", + "factory4_day": "Factory", + "factory4_night": "Night Factory", + "fast": "fast", + "fatalHits": "Fatal hits", + "favLocation": "Favorite location", + "fighterClass": "Fighter class", + "find nickname": "Find username", + "fine": "fine", + "firearmsDeaths": "Firearms deaths", + "foodDrinksFound": "Provisions found", + "foodUsed": "Food consumed", + "fractures": "Fractures", + "freqDeathPart": "Most frequently hit area", + "freqLoot": "Most frequent loot item found", + "friend": "friend", + "from {0} to {1} items": "From {0} to {1} items", + "front_plate": "FRONT PLATE", + "fullauto": "Full Auto", "fullscreenwindow": "Borderless", "ge": "Deutsch", - "glKills": "Eliminări cu Lansatorul de Grenade", - "good": "bun", - "grenadeKills": "Eliminări cu grenade", - "groin": "PELVIS", - "groin_back": "FUND", - "gym": "Sală", + "glKills": "Grenade launcher kills", + "good": "good", + "grenadeKills": "Grenade kills", + "groin": "GROIN", + "groin_back": "GROIN (REAR)", + "gym": "Gym", "h": "h.", - "handbook/Categories": "Categorii", - "handbook/Description": "Descriere", - "handbook/Entity": "Entitate", - "handbook/enter entity name": "introdu numele entității", - "has been kicked from the dialog": "a fost scos din chat.", - "has been removed from friends list successfully!": "{0} a fost eliminat cu succes din lista ta de prieteni!", - "headsegmen/lowernape": "ceafă", - "headshots": "Lovituri la cap", - "healall": "VINDECĂ TOT", - "heavybleedingdelta": "Probabilitate de a cauza o hemoragie", - "helmet_back": "CEAFĂ", - "helmet_ears": "URECHI", - "helmet_eyes": "OCHI", - "helmet_jaw": "MAXILAR", - "helmet_neck": "GÂT", - "helmet_top": "PARIETAL", - "hideout/Are you sure you want to leave the Hideout?": "Ești sigur că vrei să părăsești Refugiul?", - "hideout/Collecting": "Colectare", - "hideout/Disable all light": "Stinge toate luminile", - "hideout/ElectricityError": "Procesul a fost întrerupt de pana electrică", - "hideout/ElectricityRequirement": "Procesul necesită o sursă neîntreruptă de curent electric", - "hideout/Enable candles": "Aprinde lumânările", - "hideout/Enable christmas lights": "Aprinde luminile de Crăciun", - "hideout/Enable gas lamps": "Aprinde lămpile cu gaz", - "hideout/Enable halloween lights": "Activează decorațiunile de Halloween", - "hideout/Enable light bulbs": "Aprinde becurile", - "hideout/Farming": "Minare", - "hideout/Fold": "Pliază țintele", - "hideout/Fold poppers": "Pliază țintele", - "hideout/Fuel": "Combustibil", + "handbook/Categories": "Categories", + "handbook/Description": "Description", + "handbook/Entity": "Entity", + "handbook/enter entity name": "enter entity name", + "has been kicked from the dialog": "was kicked from the chat.", + "has been removed from friends list successfully!": "{0} has been successfully removed from your friends list!", + "headsegmen/lowernape": "lower nape", + "headshots": "Headshots", + "healall": "HEAL ALL", + "heavybleedingdelta": "Chance to cause heavy bleeding", + "helmet_back": "NAPE", + "helmet_ears": "EARS", + "helmet_eyes": "EYES", + "helmet_jaw": "JAW", + "helmet_neck": "NECK", + "helmet_top": "TOP", + "hideout/Are you sure you want to leave the Hideout?": "Are you sure you want to leave the Hideout?", + "hideout/Collecting": "Collecting", + "hideout/Disable all light": "Disable all lights", + "hideout/ElectricityError": "The process was interrupted due to electrical problems", + "hideout/ElectricityRequirement": "The process requires an uninterrupted supply of electricity", + "hideout/Enable candles": "Light up candles", + "hideout/Enable christmas lights": "Enable Christmas lights", + "hideout/Enable gas lamps": "Enable gas lamps", + "hideout/Enable halloween lights": "Enable Halloween decorations", + "hideout/Enable light bulbs": "Enable light bulbs", + "hideout/Farming": "Farming", + "hideout/Fold": "Fold targets", + "hideout/Fold poppers": "Fold poppers", + "hideout/Fuel": "Fuel", "hideout/Generator not constructed": "Generatorul nu este construit", - "hideout/Handover": "Predă", - "hideout/Improvement completed": "Podeaua a fost spălată", - "hideout/Improvement is established": "Se spală podeaua", - "hideout/Improvement list": "Spală podeaua:", - "hideout/Inspect": "Verifică țintele", - "hideout/Items ready": "Articole obținute", - "hideout/No fuel!": "Fără combus.", - "hideout/Producing": "Fabricare", - "hideout/Replace targets": "Înlocuiește țintele", - "hideout/Requirements are not fulfilled": "Lipsă necesar", - "hideout/Stop": "Oprește", - "hideout/Switched off": "Oprit", - "hideout/Take crafted items": "Trebuie să luați articolele", - "hideout/Turn generator off": "Oprește generatorul", - "hideout/Turn generator on": "Pornește generatorul", - "hideout/Turn night vision off": "Dezactivează vederea pe timp de noapte", - "hideout/Turn night vision on": "Activează vederea pe timp de noapte", - "hideout/Turn off poppers": "Oprește țintele cu ridicare", - "hideout/Turn off training": "Oprește antrenamentul", - "hideout/Turn on poppers": "Pornește țintele cu ridicare", - "hideout/Turn on speed {0}": "Alege viteza {0}", - "hideout/Turn on training": "Pornește antrenamentul", - "hideout/Unfold poppers": "Deschide țintele", - "hideout/Welcome": "Bine ai venit în Refugiul personal! Acum este doar un vechi adăpost înfundat cu gunoi, dar cu puțin efort poate fi transformat într-o bază subterană cu toate necesitățile pentru un trai confortabil.\n\nPoți folosi articolele și resursele găsite în raiduri sau achiziționate pentru a construi și pentru a îmbunătăți diverse aspecte ale Refugiului, dintre care multe vor oferi bonusuri speciale și abilități cum ar fi: creșterea ratei de regenerare a vieții, a energiei și a hidratarii în afara raidurilor, creșterea ratei de dezvoltare a abilităților, capacitatea de a crea diverse obiecte, etc.\n\nEvadarea din Tarkov poate dura o vreme, și ai nevoie de un loc unde poți să te aduni și să-ți recapeți puterile. Acesta este locul: Refugiul tău.\n\nMult Spor!", - "hideout/Welcome title": "BINE AI VENIT ÎN REFUGIU", - "hideout/allweapons": "Toate armele", - "hideout/bonus_is_inactive_due_to_energy": "Bonusul este inactiv din cauza lipsei de energie", - "hideout/bonus_is_inactive_due_to_production_state": "Bonusul este inactiv datorită stării producției", - "hideout/cannot start production without the fuel in generator": "Imposibil să începeți producția fără combustibil în generator", - "hideout/fuelsupplypanel_header": "REZERVĂ COMBUSTIBIL", - "hideout/improve": "Spală podeaua", - "hideout_5d6282a3b9c45949bb2992d6": "Deblochează capacitatea de a testa arme de foc", - "hideout_5d6282d64e7f7ccdcb940567": "Scavii vor încercă să găsească diferite articole pentru tine, dacă plătești bine, desigur.", - "hideout_5d78c1461d79cb822a38b5f7": "Permite modificarea completă a armelor în afara raidului", - "hideout_5d836517a57db3778f31fde7": "Permite producția de apă distilată", - "hideout_5d8b82b854358e8b7383cf4f": "Permite producția de rachiu", - "hideout_5d8b8310270eff88e1f47beb": "Deblochează ferma de Bitcoin Fizic", - "hideout_5d8b89addfc57a648453e89d": "Permite producția de medicamente", - "hideout_6242ae6af8a4ecb3a94f7350": "Deblochează mentenanța armelor prin trusele de reparație", - "hideout_6242aef167801cf6ebb6f601": "Deblochează reparația armurilor prin trusele de reparație", - "hideout_6548afcae28f7800b02d2004": "Plăcuțe PMC", - "hideout_6548afd9eb937c71d7776652": "Trofee Mici", - "hideout_6548afe3e7726b6d1b4317d5": "Trofee Mari", - "hideout_6549f1926b29cf3df65ea139": "Plăcuțe PMC", - "hideout_6549f19ae28f7800b02d204f": "Trofee Mici", - "hideout_6549f1a284d9162bba1fbbb1": "Trofee Mari", - "hideout_6549f1c405b256642e3e9131": "Plăcuțe PMC", - "hideout_6549f1cdde376a2fc737e8a8": "Trofee Mici", - "hideout_6549f1d37d6e4756c83afa77": "Trofee Mari", - "hideout_AdditionalSlots": "Celule suplimentare", - "hideout_DebuffEndDelay": "Rata de îndepărtare a efectelor negative", - "hideout_EnergyRegeneration": "Rata de regenerare a energiei", - "hideout_ExperienceRate": "Experiență suplimentară din raid", - "hideout_FuelConsumption": "Consumul de combustibil", - "hideout_HealthRegeneration": "Rata de regenerare a vieții", - "hideout_HydrationRegeneration": "Rata de regenerare a hidratării", - "hideout_InsuranceReturnTime": "Timpul de retur al asigurării", - "hideout_MaximumEnergyReserve": "Rezerva maximă de energie", - "hideout_QuestMoneyReward": "Bonus pentru plățile de la misiuni", - "hideout_RagfairCommission": "Comision piață de vechituri", - "hideout_ReceiveItemBonus": "Livrare specială", - "hideout_RepairArmorBonus": "Reduce costul reparației armurii folosind trusele de reparație", - "hideout_RepairWeaponBonus": "Reduce costul reparației armei folosind trusele de reparație", - "hideout_ScavCooldownTimer": "Interval de timp între raiduri ca Scav", - "hideout_SkillGroupLevelingBoost": "Bonus creștere grup de abilități", - "hideout_SkillLevelingBoost": "Bonus la rata creșterii abilităților", - "hideout_StashRows": "Linii de celule de inventar în depozit", - "hideout_StashSize": "Mărimea depozitului", - "hideout_UnlockAddOffer": "Deblochează ofertarea pe piața de vechituri", - "hideout_UnlockArmorRepair": "Deblochează reparația armurii prin trusele de reparație", - "hideout_UnlockItemCharge": "Deblochează abilitatea de a încărca baterii", - "hideout_UnlockItemCraft": "Deblochează crearea de obiecte artizanale", - "hideout_UnlockItemPassiveCreation": "Deblochează crearea pasivă de obiecte", - "hideout_UnlockRandomItemCreation": "Deblochează crearea aleatorie de obiecte", - "hideout_UnlockScavPlay": "Deblochează abilitatea de a juca ca Scav", - "hideout_UnlockUniqueId": "ID unic", - "hideout_UnlockWeaponModification": "Deblochează modificarea echipamentelor", - "hideout_UnlockWeaponRepair": "Deblochează reparația armei prin trusele de reparație", - "hideout_area_0_name": "Ventilație", - "hideout_area_0_stage_1_description": "Conductă de ventilație suspendată de tavan. Conducta trece prin încăpere și oferă ventilație naturală. Este necesară pentru instalarea spațiilor care produc fum.", - "hideout_area_0_stage_2_description": "Conductă simplă de ventilație cu sistem de urgență de ventilație forțată. Acum, pe lângă evacuarea fumului, va fi și aer proaspăt în Refugiu.", - "hideout_area_0_stage_3_description": "Conductă de ventilație cu ventilatoare electrice pentru o aerisire sporită. Acest sistem de circulație completă a aerului este necesar pentru producție avansată și cercetare chimică.", - "hideout_area_10_name": "Banc de lucru", - "hideout_area_10_stage_1_description": "Toată lumea are nevoie de un loc în care să muncească cu sculele sale. Un banc de lucru simplu permite efectuarea modificărilor de bază a armelor și dezasamblarea diferitelor componente tehnice.", - "hideout_area_10_stage_2_description": "Un atelier dotat cu tot ce este necesar pentru producția de muniție simplă sau sarcini complexe necesare îmbunătățirii adăpostului.", - "hideout_area_10_stage_3_description": "O masă pentru un maestru armurier. Permite producția cartușelor avansate și efectuarea sarcinilor high-tech, asamblarea și dezasamblarea dispozitivelor electronice avansate și a sistemelor mecanice.", - "hideout_area_11_name": "Centru de Informații", - "hideout_area_11_stage_1_description": "Dacă generatorul este inima adăpostului, atunci centrul de informații este creierul. Până în prezent, aceasta este doar o masă și un scaun pentru a analiza diverse informații care vă pot ajuta să evadați din Tarkov.", - "hideout_area_11_stage_2_description": "Un centru de spionaj avansat echipat cu un laptop, cu care se poate lucra mai eficient din cauza spațiului adițional de pe masă. Mulțumită Mecanicului, acesta este conectat la o rețea de calculatoare izolată, care a rămas intactă după lovitura de tip EMP și izolația din Tarkov.", - "hideout_area_11_stage_3_description": "Un centru de spionaj în toată regula echipat cu echipamente și calculatoare, dispozitive radio și unelte de analiză. Evadarea din Tarkov nu a fost niciodata atât de aproape.", - "hideout_area_12_name": "Poligon de tragere", - "hideout_area_12_stage_1_description": "Un loc special amenajat pentru trasul cu arma. Pentru ușurința evaluării rezultatelor după ce s-a tras la țintă, au fost instalate ținte din aliaj de metal pentru trasul de aproape, și de hârtie pentru țintele la distanță.", - "hideout_area_12_stage_2_description": "Poligon îmbunătățit cu ținte fixate pe șine în tavan și trei nivele de viteză.", - "hideout_area_12_stage_3_description": "Poligon avansat cu ținte care se ridică și un laptop pentru control. Permite antrenamentul cu ținte care se ridică și ținte care se mișcă aleatoriu, scorul fiind înregistrat și afișat pe laptop.", - "hideout_area_13_name": "Biblioteca", - "hideout_area_13_stage_1_description": "Biblioteca de acasă cu diverse cărți populare ficțiune și științe, dar și reviste.", - "hideout_area_14_name": "Cutie Livrări", - "hideout_area_14_stage_1_description": "Cutie specială unde Scavii angajați livrează diverse articole pe care le-au găsit.", - "hideout_area_15_name": "Iluminare", - "hideout_area_15_stage_1_description": "Iluminat de bază cu lumânări din parafină, oferă o lumină slabă și inegală.", - "hideout_area_15_stage_2_description": "Sistem de iluminare cu becuri incandescente. Iluminarea este mult mai uniformă și mai puternică decât cea a lumânărilor.", - "hideout_area_15_stage_3_description": "Iluminatul pentru Refugiu cu becuri fluorescente oferă luminozitate și uniformitate optimă.", - "hideout_area_16_name": "Raft trofee", - "hideout_area_16_stage_0_description": "Acest zid este ideal pentru a găzdui colecția unei bunicuțe.", - "hideout_area_16_stage_1_description": "Raftul de trofee este un suport special unde poți să-ți pui trofee și articole de colecție.", - "hideout_area_16_stage_2_description": "Raft de calitate de la IDEA unde se pot ține toate figurinele găsite în raiduri și mai multe plăcuțe de identificare luate de pe PMC.", - "hideout_area_17_name": "Sistem de Filtrare Aer", - "hideout_area_17_stage_1_description": "Sistem de filtrare a aerului, conectat la un sistem comun de ventilație. Acesta oferă un aer care este cât mai curat putință ferit de toate impuritățile posibile.", - "hideout_area_18_name": "Energie Solară", - "hideout_area_18_stage_1_description": "Bateriile solare/eoliene montate la suprafață îmbunătățesc alimentarea per total din refugiu.", - "hideout_area_19_name": "Distilerie", - "hideout_area_19_stage_1_description": "Cazanul pentru alcool permite fabricarea băuturilor tari chiar în refugiu.", - "hideout_area_1_name": "Intrare", - "hideout_area_1_stage_1_description": "O ușă de intrare simplă. Astfel încât să nu te viziteze tot felul de proști. Nu te salvează de condens și umiditate, dar creează senzația că refugiul este încet-încet pregătit.", - "hideout_area_1_stage_2_description": "Un hol de intrare îmbunătățit cu o ușă ranforsată, umerașe, și alte articole de uz casnic. Nu poți doborî o asemenea ușă doar cu un șut.", - "hideout_area_1_stage_3_description": "Un sistem avansat de securizare a adăpostului care include ușă blindată pentru buncăr, cameră de supraveghere, interfon, stingătoare, și zăbrele speciale pentru întărirea rezistenței structurale a pereților și tavanelor.", - "hideout_area_20_name": "Fermă de Bitcoin", - "hideout_area_20_stage_1_description": "Fermă simplă de minat bitcoin cu 10 unități. Utilizând puterea de calcul a plăcilor grafice, poți face un sistem care minează bitcoin.", - "hideout_area_20_stage_2_description": "Fermă îmbunătățită de minat bitcoin cu 25 unități. Utilizând puterea de calcul a plăcilor grafice, poți face un sistem care minează bitcoin.", - "hideout_area_20_stage_3_description": "Fermă de mărime maximă pentru minat bitcoin cu 50 unități și răcire pe apă. Utilizând puterea de calcul a plăcilor grafice, poți face un sistem care minează bitcoin.", - "hideout_area_21_name": "Pom de Crăciun", - "hideout_area_21_stage_1_description": "Decorează-ți refugiul cu ghirlande și un Pom de Crăciun. Să fie casa ta mai confortabilă și festivă în aceste vremuri grele in Tarkov.", - "hideout_area_22_name": "Perete cu Igrasie", - "hideout_area_22_stage_0_description": "Un perete.", - "hideout_area_22_stage_1_description": "Un perete cu vopseaua umflată. Nimic grav, dar s-ar putea să devină o problemă.", - "hideout_area_22_stage_2_description": "Bucată de perete cu vopseaua foarte umflată. Apa se scurge din perete. Clar trebuie să faci ceva în privința asta. Poate să speli pe jos.", - "hideout_area_22_stage_3_description": "Bucată de perete cu vopseaua foarte umflată. A picat deja o bucată. Apa se scurge din perete. Pare să fie ceva în spatele peretelui.", - "hideout_area_22_stage_4_description": "Un zid cu o ușă ascunsă. N-ai idee cine a construit-o, ca s-o deschizi ai nevoie de unelte. N-ar strica nici să mai speli o dată.", - "hideout_area_22_stage_5_description": "Peretele cu igrasie e defapt o intrare într-o altă camera. Camera e plină de gunoaie plus un cadavru. Vei avea ceva de lucru ca să pui camera la punct.", - "hideout_area_22_stage_6_description": "Intrarea curată într-o nouă cameră.", - "hideout_area_23_name": "Sală", - "hideout_area_23_stage_0_description": "Spațiu cu echipamente de antrenament, o sală improvizată.", - "hideout_area_23_stage_1_description": "Sală de antrenament bine echipată în care te poți menține în formă.", - "hideout_area_24_name": "Rastel", - "hideout_area_24_stage_0_description": "Spațiu perfect pentru un rastel.", - "hideout_area_24_stage_1_description": "Un rastel modest. Simplifică stocarea armelor și permite expunerea armelor într-un mod elegant.", - "hideout_area_24_stage_2_description": "Un rastel de mărime medie. Simplifică stocarea armelor și permite expunerea armelor într-un mod elegant.", - "hideout_area_24_stage_3_description": "Un rastel mare. Simplifică stocarea armelor și permite expunerea armelor într-un mod elegant.", - "hideout_area_2_name": "Toaleta", - "hideout_area_2_stage_1_description": "Toaletă primitivă. Nu se pune problema de facilități. O găleată și o cutie cu nisip pentru a menține curățenia de bază în refugiu.", - "hideout_area_2_stage_2_description": "Baie cu closet simplu din lemn și un lavoar conectat la sistemul de alimentare cu apă. Toate acestea ridică nivelul de curățenie și igienă în adăpost.", - "hideout_area_2_stage_3_description": "Baie avansată cu closet, duș și coș de gunoi. Tot ceea ce ai nevoie este conectat la sistemul de alimentare cu apă și oferă cel mai accesibil nivel de igienă personală.", - "hideout_area_3_name": "Depozit", - "hideout_area_3_stage_1_description": "Depozit mic (10x28)", - "hideout_area_3_stage_2_description": "Depozit mediu (10x38)", - "hideout_area_3_stage_3_description": "Depozit mare (10x48)", - "hideout_area_3_stage_4_description": "Depozit dimensiune maximă (10x68)", + "hideout/Handover": "Handover", + "hideout/Improvement completed": "The floor has been mopped", + "hideout/Improvement is established": "The floor is being mopped", + "hideout/Improvement list": "Mop the floor:", + "hideout/Inspect": "Inspect targets", + "hideout/Items ready": "Items ready", + "hideout/No fuel!": "No fuel", + "hideout/Producing": "Producing", + "hideout/Replace targets": "Replace targets", + "hideout/Requirements are not fulfilled": "Requirements are not fulfilled", + "hideout/Stop": "Stop", + "hideout/Switched off": "Switched off", + "hideout/Take crafted items": "You need to take the items", + "hideout/Turn generator off": "Turn generator off", + "hideout/Turn generator on": "Turn generator on", + "hideout/Turn night vision off": "Disable night vision", + "hideout/Turn night vision on": "Enable night vision", + "hideout/Turn off poppers": "Turn off poppers", + "hideout/Turn off training": "Turn off training", + "hideout/Turn on poppers": "Turn on poppers", + "hideout/Turn on speed {0}": "Turn on speed {0}", + "hideout/Turn on training": "Turn on training", + "hideout/Unfold poppers": "Unfold poppers", + "hideout/Welcome": "Welcome!\nWelcome to your personal Hideout! For now it is an old bomb shelter clogged with rubbish, but by making an effort you can make it a full-fledged underground base with everything you need for comfortable living.\n\nYou can use items and resources you found in raids or purchased to build and improve various areas of the Hideout, many of which will give you special bonuses and abilities - increased rate of off-raid health regeneration, energy and hydration, boosted skills leveling, the ability to craft various items, etc.\n\nEscaping from Tarkov can take quite a while, and you need a place where you can regroup and regain strength. This is the place - your Hideout.\n\nGood luck!", + "hideout/Welcome title": "WELCOME TO THE HIDEOUT", + "hideout/allweapons": "All weapons", + "hideout/bonus_is_inactive_due_to_energy": "Bonus is inactive due to lack of energy", + "hideout/bonus_is_inactive_due_to_production_state": "Bonus is inactive due to production status", + "hideout/cannot start production without the fuel in generator": "Impossible to start production without fuel in the generator", + "hideout/fuelsupplypanel_header": "FUEL SUPPLY", + "hideout/improve": "Mop the floor", + "hideout_5d6282a3b9c45949bb2992d6": "The ability to test out your firearms", + "hideout_5d6282d64e7f7ccdcb940567": "Scavs will try to find various items for you, but only if you pay properly, of course.", + "hideout_5d78c1461d79cb822a38b5f7": "Off-raid full weapon customization", + "hideout_5d836517a57db3778f31fde7": "Pure water production", + "hideout_5d8b82b854358e8b7383cf4f": "Crafting moonshine", + "hideout_5d8b8310270eff88e1f47beb": "Farming Bitcoins", + "hideout_5d8b89addfc57a648453e89d": "Crafting meds", + "hideout_6242ae6af8a4ecb3a94f7350": "Repairing weapons with repair kits", + "hideout_6242aef167801cf6ebb6f601": "Repairing armor with repair kits", + "hideout_6548afcae28f7800b02d2004": "PMC dogtags", + "hideout_6548afd9eb937c71d7776652": "Small trophies", + "hideout_6548afe3e7726b6d1b4317d5": "Large trophies", + "hideout_6549f1926b29cf3df65ea139": "PMC dogtags", + "hideout_6549f19ae28f7800b02d204f": "Small trophies", + "hideout_6549f1a284d9162bba1fbbb1": "Large trophies", + "hideout_6549f1c405b256642e3e9131": "PMC dogtags", + "hideout_6549f1cdde376a2fc737e8a8": "Small trophies", + "hideout_6549f1d37d6e4756c83afa77": "Large trophies", + "hideout_AdditionalSlots": "Additional slots", + "hideout_DebuffEndDelay": "Negative effects removal rate", + "hideout_EnergyRegeneration": "Energy regeneration rate", + "hideout_ExperienceRate": "Additional raid experience", + "hideout_FuelConsumption": "Fuel consumption", + "hideout_HealthRegeneration": "Health regeneration rate", + "hideout_HydrationRegeneration": "Hydration regeneration rate", + "hideout_InsuranceReturnTime": "Insurance return time", + "hideout_MaximumEnergyReserve": "Maximum energy reserve", + "hideout_QuestMoneyReward": "Quest money reward boost", + "hideout_RagfairCommission": "Flea market commission", + "hideout_ReceiveItemBonus": "Special delivery", + "hideout_RepairArmorBonus": "Reduces armor repair cost using repair kits", + "hideout_RepairWeaponBonus": "Reduces weapon repair cost using repair kits", + "hideout_ScavCooldownTimer": "Scav cooldown timer", + "hideout_SkillGroupLevelingBoost": "Group of skills leveling boost", + "hideout_SkillLevelingBoost": "Skill leveling boost", + "hideout_StashRows": "Inventory lines in the stash", + "hideout_StashSize": "Stash size", + "hideout_UnlockAddOffer": "Flea Market offer placement unlock", + "hideout_UnlockArmorRepair": "Unlocks armor repair via repair kits", + "hideout_UnlockItemCharge": "Unlock ability to charge batteries", + "hideout_UnlockItemCraft": "Unlock items crafting", + "hideout_UnlockItemPassiveCreation": "Unlock passive item creation", + "hideout_UnlockRandomItemCreation": "Unlock random item creation", + "hideout_UnlockScavPlay": "Unlock ability to play as a Scav", + "hideout_UnlockUniqueId": "Unique ID", + "hideout_UnlockWeaponModification": "Unlock weapon modification", + "hideout_UnlockWeaponRepair": "Unlocks weapon repair via repair kits", + "hideout_area_0_name": "Vents", + "hideout_area_0_stage_1_description": "Ventilation duct suspended from the ceiling. The air duct passes through part of the room, providing the natural movement of air flows. It is necessary for the installation of \"smoky\" zones where the output of combustion products is required.", + "hideout_area_0_stage_2_description": "A basic ventilation duct with additional emergency bunker ventilation system of external airflow. Now, besides the removal of combustion products, there will be fresh air in the hideout.", + "hideout_area_0_stage_3_description": "A ventilation duct fitted with electric fans to increase the airflow rate. A complete air circulation system is needed for advanced production and chemical research.", + "hideout_area_10_name": "Workbench", + "hideout_area_10_stage_1_description": "Everybody needs a place to work with their tools. A simple workbench allows you to do the basic modifications of your weapon and disassembling various technical parts.", + "hideout_area_10_stage_2_description": "A workplace equipped with everything necessary for the production of simple ammunition and more complex technical tasks required to improve your hideout.", + "hideout_area_10_stage_3_description": "A full-fledged table of the gunsmithing master. It allows you to produce more advanced cartridges and engage in high-tech tasks, assembly and disassembly of complex electronic devices and mechanical systems.", + "hideout_area_11_name": "Intelligence Center", + "hideout_area_11_stage_1_description": "If the generator is the heart of the hideout, then the intelligence center is its brain. For now, this is just an old table and chair for analyzing various information that can help you escape from Tarkov.", + "hideout_area_11_stage_2_description": "An advanced intelligence center equipped with a laptop, which has more working space due to an additional table. Thanks to Mechanic, it is connected to an isolated computer network, which remained intact after the EMP strike and isolation of Tarkov.", + "hideout_area_11_stage_3_description": "A full-fledged intelligence center equipped with computer equipment, radio devices and analytical tools. The escape from Tarkov was never so close.", + "hideout_area_12_name": "Shooting Range", + "hideout_area_12_stage_1_description": "A specially equipped place for shooting firearms. For the convenience of evaluating the results of shooting at the shooting range, metal growth targets were installed for the close-range, and paper ones for the distant targets.", + "hideout_area_12_stage_2_description": "An improved range with installed ceiling-mounted target rails with three speed levels.", + "hideout_area_12_stage_3_description": "An advanced shooting range with installed popper targets and a laptop for configuration. Also allows to start training with random rail targets and poppers, scores are displayed on the laptop monitor.", + "hideout_area_13_name": "Library", + "hideout_area_13_stage_1_description": "Home library with various fiction and popular science books and magazines.", + "hideout_area_14_name": "Scav Case", + "hideout_area_14_stage_1_description": "A special box where specially hired Scavs drop off various items that they've found.", + "hideout_area_15_name": "Illumination", + "hideout_area_15_stage_1_description": "Basic lighting with paraffin candles, giving a dim and uneven light.", + "hideout_area_15_stage_2_description": "Hideout lighting with incandescent bulbs. The illumination is more even and brighter than from the candles.", + "hideout_area_15_stage_3_description": "Hideout lighting with fluorescent lights provides optimal brightness and uniformity of illumination.", + "hideout_area_16_name": "Place of Fame", + "hideout_area_16_stage_0_description": "This wall would be perfect to house a grandma's sideboard of collectibles.", + "hideout_area_16_stage_1_description": "The place of fame is a special rack where you can put your trophies and collectables.", + "hideout_area_16_stage_2_description": "A great rack from IDEA that can very nicely hold all the figurines found in raids and several dogtags taken from PMCs.", + "hideout_area_17_name": "Air Filtering Unit", + "hideout_area_17_stage_1_description": "Air filtration system, connected to the common ventilation system. It provides the air which is as cleanest from harmful impurities as possible.", + "hideout_area_18_name": "Solar Power", + "hideout_area_18_stage_1_description": "Surface-mounted solar-wind batteries improve the overall hideout power generation.", + "hideout_area_19_name": "Booze Generator", + "hideout_area_19_stage_1_description": "The moonshine still allows you to produce strong drinks directly in your hideout.", + "hideout_area_1_name": "Security", + "hideout_area_1_stage_1_description": "A basic front door. So that all kinds of fools don't come to pay you a visit. It does not save from drafts and moisture, but it creates the feeling that the shelter is slowly getting settled.", + "hideout_area_1_stage_2_description": "An improved entrance hall with a reinforced door, a clothes hanger, and other household items. Can’t kick such a door down with just a single kick.", + "hideout_area_1_stage_3_description": "An advanced shelter security system which includes, in addition to an armored bunker door, a video surveillance camera, an intercom system, fire extinguishers, as well as special ties to increase the structural strength of walls and ceiling.", + "hideout_area_20_name": "Bitcoin Farm", + "hideout_area_20_stage_1_description": "Basic bitcoin farm of 10 units. Using the computing power of graphics cards, you can use the system to produce physical bitcoins.", + "hideout_area_20_stage_2_description": "An improved bitcoin farm of 25 units. Using the computing power of graphics cards, you can use the system to produce physical bitcoins.", + "hideout_area_20_stage_3_description": "Maximum size bitcoin farm for 50 units with water cooling. Using the computing power of graphics cards, you can use the system to produce physical bitcoins.", + "hideout_area_21_name": "Christmas Tree", + "hideout_area_21_stage_1_description": "Decoration of your harsh hideout with string lights and a Christmas Tree. Let your home be more comfortable and festive at this difficult time for Tarkov.", + "hideout_area_22_name": "Defective Wall", + "hideout_area_22_stage_0_description": "A wall.", + "hideout_area_22_stage_1_description": "A piece of a wall with swollen paint. Nothing serious, but it might become a problem soon.", + "hideout_area_22_stage_2_description": "A piece of wall with heavily swollen paint. Water is seeping from the wall. You definitely need to do something about it. Wipe the floor, maybe.", + "hideout_area_22_stage_3_description": "A piece of wall with heavily swollen paint. Part of the paint fell off. Water is seeping from the wall. There seems to be something behind this wall.", + "hideout_area_22_stage_4_description": "A wall with a hidden door. You don't know who made it and why, but to open it, you will need tools. Also, another wipe wouldn't hurt.", + "hideout_area_22_stage_5_description": "The damaged part of the wall turned out to be an entrance to the old hidden room. There is nothing inside but rubbish and a dead body. It will take a lot of effort to put this room in shape.", + "hideout_area_22_stage_6_description": "A tidied up entrance to the new room.", + "hideout_area_23_name": "Gym", + "hideout_area_23_stage_0_description": "A space equipped for a makeshift gym.", + "hideout_area_23_stage_1_description": "A well-equipped gym to keep your body in good physical shape.", + "hideout_area_24_name": "Weapon Stand", + "hideout_area_24_stage_0_description": "A great place to install a weapon stand.", + "hideout_area_24_stage_1_description": "A small weapon stand. Simplifies firearm storage and allows to display weapons in a fancy way.", + "hideout_area_24_stage_2_description": "A medium-sized weapon stand. Simplifies firearm storage and allows to display weapons in a fancy way.", + "hideout_area_24_stage_3_description": "A large weapon stand. Simplifies firearm storage and allows to display weapons in a fancy way.", + "hideout_area_2_name": "Lavatory", + "hideout_area_2_stage_1_description": "A primitive toilet. Any amenities are out of the question. Just a bucket and a litter box to maintain basic sanitation in the hideout.", + "hideout_area_2_stage_2_description": "A basic bathroom with a wooden outhouse type toilet and a washstand, connected to the water supply system. All this raises the level of cleanliness and hygiene in the hideout.", + "hideout_area_2_stage_3_description": "An advanced bathroom with a dry closet, a shower and a trash can. Everything you need is connected to the water supply system and provides the most affordable level of personal hygiene.", + "hideout_area_3_name": "Stash", + "hideout_area_3_stage_1_description": "Small stash (10x28)", + "hideout_area_3_stage_2_description": "Medium stash (10x38)", + "hideout_area_3_stage_3_description": "Large stash (10x48)", + "hideout_area_3_stage_4_description": "Maximum size stash (10x68)", "hideout_area_4_name": "Generator", - "hideout_area_4_stage_1_description": "Un generator simplu pe combustibil care alimentează adăpostul cu electricitate. Inima refugiului tău. Necesită combustibil pentru a alimenta rețeaua electrică.", - "hideout_area_4_stage_2_description": "Generator de mare putere. Permite utilizarea unei game largi de aparaturi electrice. Cu suporturi adiționale pentru canistre de combustibil.", - "hideout_area_4_stage_3_description": "Generator industrial care asigură funcționarea autonomă a instalațiilor de producție. Cu suporturi adiționale pentru canistre de combustibil.", - "hideout_area_5_name": "Încălzire", - "hideout_area_5_stage_1_description": "Un simplu butoi cu lemne de foc pentru a menține căldura. Opțiune foarte simplă pentru încălzire. Periculos din cauza monoxidului de carbon emis.", - "hideout_area_5_stage_2_description": "Sobă metalică cu aragaz pentru încălzirea spațiului, populare în prima jumătate a secolului 20. Un lucru esențial în adăpost, trebuie conectat la sistemul de ventilație care evacuează gazele de ardere.", - "hideout_area_5_stage_3_description": "Echipează întreg refugiul cu reșouri electrice. Acum, împreună cu soba, nu vei mai avea grija frigului.", - "hideout_area_6_name": "Colector de Apă", - "hideout_area_6_stage_1_description": "Sistem simplu de colectare a apei de suprafață. Prevăzut cu filtre și recipiente pentru colectarea apei purificate. Unul dintre cele mai importante sisteme pentru menținerea vieții dintr-un adăpost.", - "hideout_area_6_stage_2_description": "Un sistem sofisticat pentru colectarea apei prevăzut cu conducte suplimentare, filtre, și recipiente mari. Instalarea pompelor permite creșterea presiunii din conducte și implicit a presiunii apei.", - "hideout_area_6_stage_3_description": "Un sistem avansat de colectare a apei de suprafață și pluviale. Conține filtre diferite, pompă electrică și recipiente răspândite prin ascunzătoare. Cu filtre adiționale și sistem de îmbogățire a apei oferă o apă foarte curată și de înaltă calitate.", - "hideout_area_7_name": "Stație medicală", - "hideout_area_7_stage_1_description": "Disponibilitatea continuă a medicamentelor mărește șansele de supraviețuire după raiduri. Mai multe cutii sanitare pentru îngrijire medicală simplă.", - "hideout_area_7_stage_2_description": "O unitate medicală constând dintr-o masă pentru medicamente, un scaun și o pipetă. Procesul de vindecare, în timp ce sunteți în afara raidului, va fi mai rapid.", - "hideout_area_7_stage_3_description": "Un laborator adevărat în refugiu. Prevăzut cu necesarul pentru a trata orice fel de rană, pentru a crea medicamente și a menține starea de sănătate bună în aceste vremuri grele.", - "hideout_area_8_name": "Bucătărie", - "hideout_area_8_stage_1_description": "Alimentele din adăpost oferă energie pentru viitoarele raiduri. O bucătărie simplă formată dintr-un frigider vechi și un loc unde să mănânci permite recuperarea mai rapidă a energiei.", - "hideout_area_8_stage_2_description": "O bucătărie cu un frigider modern, accesorii pentru masă, aragaz și chiuvetă, unde poți face mâncare mai bună. Energia este recuperată mai rapid.", - "hideout_area_8_stage_3_description": "O bucătărie completă cu aragaz, chiuvetă îmbunătățită, fierbător electric, cuptor cu microunde și necesarul complet pentru mâncare de calitate și gătire rapidă în afara raidurilor. Și nu ai voie să încalci dieta!", - "hideout_area_9_name": "Spațiu de Odihnă", - "hideout_area_9_stage_1_description": "Odihna este foarte importantă, mai ales în Tarkovul asediat. O saltea peste paleți este cel mai simplu lucru, dar ajută operatorul PMC să se relaxeze după lupte grele.", - "hideout_area_9_stage_2_description": "Un loc de relaxare, echipat cu un pat normal, noptieră și chiar și un TV mai vechi. Creează o senzație de confort și redă o amintire de nostalgie despre cum era viața înainte.", - "hideout_area_9_stage_3_description": "O zonă de salon largă cu canapea, un TV LCD cu o consolă Ployka Station și un sistem audio stereo. Este greu de închipuit că asemenea confort poate fi organizat într-un buncăr când întreaga lume se duce de râpă.", + "hideout_area_4_stage_1_description": "A simple fuel generator that can provide basic hideout equipment with electricity. The heart of your shelter. Fuel is needed to maintain the working power grid.", + "hideout_area_4_stage_2_description": "A superior high power generator. It allows you to use a wider range of electrical appliances. Provides additional slots for installing fuel cans.", + "hideout_area_4_stage_3_description": "Industrial generator to ensure the autonomous operation of production facilities. Also provides additional slots for installing fuel cans.", + "hideout_area_5_name": "Heating", + "hideout_area_5_stage_1_description": "A simple barrel with firewood to maintain heat. A very basic option for heating. Dangerous because of toxic carbon monoxide.", + "hideout_area_5_stage_2_description": "A potbelly stove is a metal stove for interior heating, popular in the first half of the 20th century. An irreplaceable thing in the hideout, especially when connected to the ventilation system for the output of combustion products.", + "hideout_area_5_stage_3_description": "Equips the entire hideout with additional electric heaters. Now, together with the potbelly stove, you won't be afraid of any cold.", + "hideout_area_6_name": "Water Collector", + "hideout_area_6_stage_1_description": "Basic water system for collecting groundwater. Contains several water filters and containers for water purification. One of the most important systems for maintaining life support in a hideout.", + "hideout_area_6_stage_2_description": "A sophisticated water collection system with additional pipes, filters, and larger containers. Installation of pumps allows to improve the pressure in the pipes and, consequently, the pressure of water.", + "hideout_area_6_stage_3_description": "An advanced water collection system for both groundwater and rainwater. It contains various cleaning filters, an electric pump and an extensive water supply system throughout the hideout. An additional filtration and enrichment system allows you to get very clean and high-quality water.", + "hideout_area_7_name": "Medstation", + "hideout_area_7_stage_1_description": "The continued availability of medication means greater chances of survival after raids. Several medical storage boxes for basic medical care.", + "hideout_area_7_stage_2_description": "A medical unit consisting of a table for medicine, a chair and a dropper. The healing process will be faster while you are out of raids.", + "hideout_area_7_stage_3_description": "A full-fledged hideout laboratory. It has everything you need to treat wounds, create medicines and maintain your good health during these difficult times.", + "hideout_area_8_name": "Nutrition Unit", + "hideout_area_8_stage_1_description": "Food in the hideout provides you with energy for future raids. A basic nutrition unit with an old fridge and a place to eat allows you to recover your energy faster.", + "hideout_area_8_stage_2_description": "A nutrition unit with a more modern refrigerator, dining accessories, stove and sink, providing better food. Energy is restored faster.", + "hideout_area_8_stage_3_description": "A full-fledged kitchen with a comfortable stove, an improved sink, an electric kettle, a microwave and everything necessary for fast and high-quality food cooking outside raids. Can’t violate the diet!", + "hideout_area_9_name": "Rest Space", + "hideout_area_9_stage_1_description": "Rest is very important, especially in the besieged Tarkov environment. A mattress over pallets is the very basic thing which can help PMCs relax after hard battles.", + "hideout_area_9_stage_2_description": "A place to relax, equipped with a normal bed, bedside table and even an old TV. It creates a feeling of comfort and gives nostalgic memories of a former life.", + "hideout_area_9_stage_3_description": "A lounge area with a sofa, an LCD TV with a Ployka Station console and a stereo system. It is hard to imagine that such comfort can be organized in an underground bunker when the whole world flies into the abyss.", "hideout_construction_time": "TIMP DE CONSTRUCȚIE", - "hideoutmanagementdescription": "Gestionarea eficientă în refugiu îți permite să folosești mai puțin combustibil și filtre în producție, și crește bonusurile din celelalte zone din Refugiu.", + "hideoutmanagementdescription": "Efficient hideout management allows you to use less fuel and filters in production, and increases bonuses from different Hideout zones.", "high + texture streaming": "high + texture streaming", - "hitCount": "Numarul de lovituri", - "hpHealed": "Puncte vindecate", + "hitCount": "Hit count", + "hpHealed": "HP healed", "hu": "Magyar", - "in group": "în grup", - "instant": "Instantaneu", - "interface/EnvironmentType": "Fundal meniu principal", - "invite sent": "Invitație trimisă", + "in group": "in group", + "instant": "Instant", + "interface/EnvironmentType": "Main menu background", + "invite sent": "Invite sent", "jp": "日本語", - "just now": "chiar acum", - "keeper_buy_02": "Bun.", - "keeper_buy_03": "Excelent.", - "keeper_buy_04": "Ai grijă cu asta.", - "keeper_buy_05": "Nu accept retururi.", - "keeper_buy_07": "Gata.", - "keeper_buy_08": "Ține ochii-n-patru când pleci.", - "keeper_buy_09": "Acestea sunt destul de rare.", - "keeper_dialog_option_who_are_you_01": "Momentan nu-i important cine sunt. Contează cine ești tu și ce cauți aici.", - "keeper_dialog_option_who_are_you_02": "Sunt Paznicul de Far. Am grijă de tot și de toți, toată lumea poate să-mi vadă lumina. În vremurile acestea tulburi, este de importanță critică să deții informațiile necesare. Informația înseamnă conexiuni, iar conexiunile înseamnă oportunități.", - "keeper_dialog_option_who_are_you_03": "Da. Oportunitatea de a schimba împrejurările, și ca și consecință, realitatea. În acest mediu ostil, necesitatea umană de bază este supraviețuirea. Eu nu vreau doar să supraviețuiesc, eu vreau să controlez supraviețuirea.", - "keeper_dialog_option_who_are_you_04": "Este, pentru supraviețuitor. Dar pentru cineva care asigură supraviețuirea, totul este diferit. Ne-am cunoscut cu un motiv. Tot ce se întâmplă are un înțeles, nu există coincidențe.", - "keeper_dialog_option_who_are_you_05": "Dar tu mă căutai pe mine, nu-i așa? Te-ai întrebat vreodată de ce?", - "keeper_dialog_option_who_are_you_06": "Să fii aproape de cel pentru care haosul înseamnă începutul a ceva nou. Nici tu nu vrei doar să supraviețuiești, vrei să controlezi.", - "keeper_dialog_option_who_are_you_07": "Tarkov e ceea ce ești. Nu poți scăpa de tine însuți. La fel cum eu nu am putut scăpa de mine însumi.", - "keeper_dialog_option_who_are_you_08": "Lumea se sfârșește, toate încercările astea patetice de a rezista pe o bucată de gheață ce se topește în mijlocul oceanului, toate luptele astea din zonă, ipocrizia comercianților, instigările, violență peste violență. Toate astea duc la un rezultat anume. Nu va fi o eclipsă. va fi o renaștere.", - "keeper_dialog_option_who_are_you_09": "Tu nu vei scăpa din Tarkov.", - "keeper_dialog_option_who_are_you_10": "Încă nu înțelegi, este ceva natural. La început nici eu nu am înțeles, atunci când au luat legătura cu mine.", - "keeper_dialog_option_who_are_you_11": "Nu mai avem despre ce să povestim. Îți vei da singur seama în timp., în timp ce dezlegi încurcătura.", - "keeper_first_greeting_01": "Tu ești? Da, cine altcineva ar putea fi. Deci, ai trecut toate testele? Eu sunt Paznicul de Far. Ai auzit de mine. Toată lumea vrea să facă afaceri cu mine, dar nu oricine poate.", - "keeper_generic_farewell_01": "La revedere.", - "keeper_generic_farewell_02": "La revedere.", - "keeper_generic_farewell_03": "Destul pe astăzi. Numai bine.", - "keeper_generic_farewell_04": "Spor.", - "keeper_generic_farewell_05": "Sunt aici dacă ai nevoie de ceva.", - "keeper_generic_farewell_06": "Mai treci pe-aici când ai puțin timp.", - "keeper_generic_farewell_07": "Spor. Nu-l supăra pe Zryachiy.", - "keeper_generic_greetings_01": "Salutare.", - "keeper_generic_greetings_02": "Ah... Iarăși tu.", - "keeper_generic_greetings_03": "Sper că-i ceva important.", - "keeper_generic_greetings_04": "Ascult.", - "keeper_generic_greetings_05": "O față cunoscută… Salut.", - "keeper_generic_greetings_07": "Dorești ceva?", - "keeper_generic_greetings_08": "Vorbește dacă tot ești aici.", - "keeper_generic_greetings_09": "Văd că te-ai întors.", - "keeper_trade_02": "Da, am ceva destul de interesant.", - "keeper_trade_05": "Poftim, și nu pierde vremea.", - "keeper_trade_08": "Sunt mai multe opțiuni.", - "keeper_trade_09": "Am întotdeauna ceva.", - "keeper_want_work_reaction_01": "Nu acum. Va veni vremea.", - "keeper_want_work_reaction_02": "Abia ne-am cunoscut. Va veni și momentul potrivit.", - "keeper_want_work_reaction_03": "Pregătesc ceva. Nu te grăbi.", - "keeper_want_work_reaction_04": "În curând. Te anunț eu când.", - "keeper_want_work_reaction_06": "Nu sunt sigur că ești pregătit încă pentru asta.", - "key_uses": "Utilizări rămase", - "keycard_reusable": "Reutilizabil", - "keycard_single": "Unică folosință", - "keycard_type": "Tip de card", - "keycard_unlimited": "Nelimitat", - "keysFound": "Chei gasite", + "just now": "just now", + "keeper_buy_02": "Good.", + "keeper_buy_03": "Excellent.", + "keeper_buy_04": "Be careful with it.", + "keeper_buy_05": "I do not accept refunds.", + "keeper_buy_07": "Done.", + "keeper_buy_08": "Keep your eyes open on your way out.", + "keeper_buy_09": "Those are quite rare.", + "keeper_dialog_option_who_are_you_01": "Who I am is not important at all at the moment. What matters is who you are and why you are here.", + "keeper_dialog_option_who_are_you_02": "I am Lightkeeper. I watch over everything and everyone, and all can see my light. In our restless time, it's critical to have the necessary information. Information creates connections, connections yield opportunities.", + "keeper_dialog_option_who_are_you_03": "Yes. The opportunity to change the surroundings and, as a consequence, the reality. In this kind of environment, the basic necessity for human beings is survival. I don't want to simply survive, I want to control the survival.", + "keeper_dialog_option_who_are_you_04": "It does, for the survivor. For someone who ensures survival, everything is different. We met for a reason. All events have a meaning, there are no accidents.", + "keeper_dialog_option_who_are_you_05": "But it was you who was looking for me, wasn’t it? Did you ask yourself why?", + "keeper_dialog_option_who_are_you_06": "Being close to the one for whom the collapse is the beginning of the new. You don’t want to simply survive, you want to be in control.", + "keeper_dialog_option_who_are_you_07": "Tarkov is who you are. You cannot escape from yourself. Just as I could not escape from myself.", + "keeper_dialog_option_who_are_you_08": "This world is ending, all these pathetic attempts to hold on to a melting ice floe in the middle of a raging ocean - all these local fights, the hypocrisy of the traders, the instigation, violence multiplied by violence. All this leads to a very specific result. There will be no eclipse, there will be rebirth.", + "keeper_dialog_option_who_are_you_09": "You will not escape from Tarkov.", + "keeper_dialog_option_who_are_you_10": "You don’t understand, but this is natural. I didn't understand it at first either, when they reached out to me.", + "keeper_dialog_option_who_are_you_11": "There's nothing more for us to talk about. In time, you'll figure it out for yourself, as you unravel the tangle.", + "keeper_first_greeting_01": "Is that you? Right, who else would it be. So, you’ve passed all my tests? I am Lightkeeper. Guess you’ve heard about me. Everyone wants to do business with me, but not everyone can.", + "keeper_generic_farewell_01": "See you soon.", + "keeper_generic_farewell_02": "Farewell.", + "keeper_generic_farewell_03": "That's all for now. Have a good one.", + "keeper_generic_farewell_04": "Good luck.", + "keeper_generic_farewell_05": "I’ll be here if you need anything.", + "keeper_generic_farewell_06": "Stop by when you get a minute.", + "keeper_generic_farewell_07": "Good luck. Don’t make Zryachiy upset.", + "keeper_generic_greetings_01": "Greetings.", + "keeper_generic_greetings_02": "Ah… You again.", + "keeper_generic_greetings_03": "I hope it’s important.", + "keeper_generic_greetings_04": "I’m listening.", + "keeper_generic_greetings_05": "A familiar face… Greetings.", + "keeper_generic_greetings_07": "You wanted something?", + "keeper_generic_greetings_08": "Since you’re here, speak.", + "keeper_generic_greetings_09": "I see you’re back.", + "keeper_trade_02": "Well, I do have something interesting.", + "keeper_trade_05": "Here, just don’t waste my time.", + "keeper_trade_08": "There are several options.", + "keeper_trade_09": "I always have something.", + "keeper_want_work_reaction_01": "Not now. The time will come.", + "keeper_want_work_reaction_02": "We had only just got acquainted. Eventually, the time will come.", + "keeper_want_work_reaction_03": "I'm working on something. Don't get ahead of yourself.", + "keeper_want_work_reaction_04": "Any hour now. I’ll let you know when.", + "keeper_want_work_reaction_06": "I'm not sure you are ready for this yet.", + "key_uses": "Uses left", + "keycard_reusable": "Reusable", + "keycard_single": "Single use", + "keycard_type": "Key type", + "keycard_unlimited": "Unlimited", + "keysFound": "Keys found", "killStreak": "Succesiunea maximă de eliminări", - "kmTraveled": "Km parcurși", - "knifeDeaths": "Decese din cauza armelor albe", - "knifeKills": "Eliminări cu arme albe", - "knifesBroken": "Cuțite stricate", + "kmTraveled": "Km traveled", + "knifeDeaths": "Melee weapon deaths", + "knifeKills": "Melee weapon kills", + "knifesBroken": "Knives broken", "kr": "한국어", - "lab_Elevator_Cargo": "Liftul de Marfă", - "lab_Elevator_Main": "Liftul Principal", - "lab_Elevator_med": "Liftul Secției Medicale", - "lab_Hangar_Gate": "Poartă Hangar", - "lab_Parking_Gate": "Poartă Parcare", - "lab_Under_Storage_Collector": "Conducta de Canalizare", - "lab_Vent": "Gura de Ventilație", - "lastSession": "Ultima sesiune", - "leader": "Lider", - "left_side_plate": "Placă S", - "leftleg": "PICIOR S", - "leftside": "Partea Stângă", - "leftupperarm": "Umăr stâng", - "lessDamagedPart": "Partea cea mai puțin afectată", - "lightbleedingdelta": "Probabilitate de a cauza o sângerare", - "longshotDist": "Distanța celei mai lungi lovituri", - "longshots": "Lovituri la cap de la mare distanță", - "looking for group": "caută grup", - "loudness": "ZGOMOT", - "lowernape": "Ceafă", + "lab_Elevator_Cargo": "Cargo Elevator", + "lab_Elevator_Main": "Main Elevator", + "lab_Elevator_med": "Medical Block Elevator", + "lab_Hangar_Gate": "Hangar Gate", + "lab_Parking_Gate": "Parking Gate", + "lab_Under_Storage_Collector": "Sewage Conduit", + "lab_Vent": "Ventilation Shaft", + "lastSession": "Last session", + "leader": "Leader", + "left_side_plate": "L. PLATE", + "leftleg": "L.LEG", + "leftside": "Left side", + "leftupperarm": "Left shoulder", + "lessDamagedPart": "Least damaged area", + "lightbleedingdelta": "Chance to cause light bleeding", + "longshotDist": "Longest shot distance", + "longshots": "Long-distance headshot kills", + "looking for group": "looking for a group", + "loudness": "LOUDNESS", + "lowernape": "Lower nape", "m/s": "m/s", - "matching/timeout": "Eșec în găsirea unui raid. Încearcă din nou mai târziu.", - "matchmaker/health_is_low": "Caracterul tău este grav rănit", - "matchmaker/health_is_not_full": "Caracterul tău încă este rănit", - "matchmaker/return_and_heal_advise": "Ar trebui să te întorci și să te vindeci înainte de a începe un raid", - "matchmaker/return_and_heal_command": "Ar trebui să te întorci și să te vindeci înainte de a începe un raid", + "matching/timeout": "Failed to find a raid. Please try again later.", + "matchmaker/health_is_low": "Your character is heavily wounded", + "matchmaker/health_is_not_full": "Your character is still wounded", + "matchmaker/return_and_heal_advise": "It's better to return and heal before deploying to a new raid", + "matchmaker/return_and_heal_command": "You should return and heal before deploying to a new raid", "maxWinStreak": "Succesiunea maximă de supraviețuiri", - "maxed": "maxim", - "medicineUsed": "Medicamente folosite", - "meters": "metri", - "mgKills": "Eliminări cu mitraliera", + "maxed": "maxed", + "medicineUsed": "Medicine used", + "meters": "meters", + "mgKills": "Machine gun kills", "moa": "MOA", - "mod_pistolgrip_000": "Mâner pistol", + "mod_pistolgrip_000": "Pistol grip", "modsFound": "Accesorii găsite", - "neckback": "Rahidian", - "neckfront": "Gât", - "next level": "Dărâmă peretele", - "no available item": "Niciun obiect disponibil", - "no_free_slot": "Nicio celulă liberă pentru acel obiect", - "no_free_space_message": "Nu există suficient spațiu de depozitare pentru a muta articolele.", - "no_free_space_title": "LIPSĂ SPAȚIU", + "neckback": "Back neck", + "neckfront": "Neck", + "next level": "Dismantle the wall", + "no available item": "No available item", + "no_free_slot": "No free slot for that item", + "no_free_space_message": "Not enough space in stash to move items.", + "no_free_space_title": "NO SPACE", "normal": "normal", - "notification/unremovableItem": "Acest obiect nu poate fi aruncat", - "off": "oprit", - "on": "porni", - "overallAccr": "Acuratețea generală", + "notification/unremovableItem": "The item cannot be removed", + "off": "off", + "on": "on", + "overallAccr": "Overall accuracy", "per texture": "per texture", - "pistolKills": "Eliminări cu pistolul", + "pistolKills": "Pistol kills", "pl": "Polski", - "place": "PLASEAZĂ", - "placesLooted": "Locații prădate", - "plant": "PLANTEAZĂ", - "playerownertype": "Jucători", - "pmcKills": "PMC eliminați", + "place": "PLACE", + "placesLooted": "Places looted", + "plant": "PLANT", + "playerownertype": "Players", + "pmcKills": "PMCs killed", "po": "Português", - "purchase all": "CUMPĂRĂ TOT", - "pushtotalk": "Apasă pentru a vorbi", - "quadKills": "Eliminări cvadruple", - "quick secondary weapon": "Schimbare rapidă la arma din toc", - "rQualityAverage": "Medie", - "rQualityExcellent": "Excelentă", - "rQualityFine": "Bună", - "rQualitySubpar": "Sub medie", - "rQualityTerrible": "Groaznică", - "rQualityUnknown": "Necunoscută", - "ragfair/(per all items)": "(pentru toate obiectele)", - "ragfair/(per one item)": "(per obiect)", - "ragfair/+ ADD OFFER": "+ ADAUGĂ OFERTĂ", - "ragfair/ADD": "ADAUGĂ", - "ragfair/ADD REQUIREMENTS": "ADAUGĂ CERINȚE", - "ragfair/APPLY": "APLICĂ", - "ragfair/AVG. EST": "EST. MED.", - "ragfair/All items are acceptable (including unfunctional)": "Toate articolele sunt acceptate (inclusiv nefuncționale)", - "ragfair/Amount of items to purchase:": "Cantitatea de achiziționat:", - "ragfair/Are you sure you want to buy {0} ({1}) for {2}?": "Ești sigur că vrei să cumperi {0} ({1}) pentru {2}?", - "ragfair/Are you sure you want to remove your offer?": "Ești sigur că vrei să îți anulezi oferta?", - "ragfair/Autoselect similar items": "Alegere automată similare", - "ragfair/BROWSE": "OFERTE", - "ragfair/Condition from:": "Condiție de la:", - "ragfair/ConditionFrom": "Condiție Min.", - "ragfair/ConditionTo": "Condiție Max", - "ragfair/CopyId": "Copiază ID", - "ragfair/Created {0} ago": "Creat acum {0} în urmă", - "ragfair/Currency": "Moneda", - "ragfair/Currency:": "Moneda:", - "ragfair/EST.": "APROX.", - "ragfair/EXTEND": "PRELUNGEȘTE", - "ragfair/EXTEND THE TIME": "PRELUNGEȘTE TIMPUL", - "ragfair/Est price from:": "Preț\taprox. de la:", - "ragfair/Expires in": "Expiră în", - "ragfair/FILTERS": "FILTRE", - "ragfair/Fee": "Taxă", - "ragfair/FilterSearch": "Filtrează după obiect", - "ragfair/Flea market is not available now": "Piața de vechituri nu este disponibilă acum", - "ragfair/HANDOVER": "PREDĂ", - "ragfair/Handover ragfair": "Predă pieței", + "purchase all": "PURCHASE ALL", + "pushtotalk": "Push-to-talk", + "quadKills": "Quad kills", + "quick secondary weapon": "Sidearm quick swap", + "rQualityAverage": "Average", + "rQualityExcellent": "Excellent", + "rQualityFine": "Fine", + "rQualitySubpar": "Subpar", + "rQualityTerrible": "Terrible", + "rQualityUnknown": "Unknown", + "ragfair/(per all items)": "(per all items)", + "ragfair/(per one item)": "(per one item)", + "ragfair/+ ADD OFFER": "+ ADD OFFER", + "ragfair/ADD": "ADD", + "ragfair/ADD REQUIREMENTS": "ADD REQUIREMENTS", + "ragfair/APPLY": "APPLY", + "ragfair/AVG. EST": "AVG. EST.", + "ragfair/All items are acceptable (including unfunctional)": "Any items are accepted (including unfunctional)", + "ragfair/Amount of items to purchase:": "Amount of items to purchase:", + "ragfair/Are you sure you want to buy {0} ({1}) for {2}?": "Are you sure you want to buy {0} ({1}) for {2}?", + "ragfair/Are you sure you want to remove your offer?": "Are you sure you want to remove your offer?", + "ragfair/Autoselect similar items": "Autoselect similar", + "ragfair/BROWSE": "BROWSE", + "ragfair/Condition from:": "Condition from:", + "ragfair/ConditionFrom": "Min. Condition", + "ragfair/ConditionTo": "Max. Condition", + "ragfair/CopyId": "Copy ID", + "ragfair/Created {0} ago": "Created {0} ago", + "ragfair/Currency": "Currency", + "ragfair/Currency:": "Currency:", + "ragfair/EST.": "APPROX.", + "ragfair/EXTEND": "EXTEND", + "ragfair/EXTEND THE TIME": "EXTEND THE TIME", + "ragfair/Est price from:": "Approx. price from:", + "ragfair/Expires in": "Expires in", + "ragfair/FILTERS": "FILTERS", + "ragfair/Fee": "Fee", + "ragfair/FilterSearch": "Filter by item", + "ragfair/Flea market is not available now": "Flea Market is currently not available", + "ragfair/HANDOVER": "HANDOVER", + "ragfair/Handover ragfair": "Hand over to the Flea Market", "ragfair/ID": "ID", - "ragfair/Item is not examined": "Articolul nu este examinat", - "ragfair/Item purchase": "Cumpărare articol", - "ragfair/Items in stash selected:": "Articole alese din depozit:", + "ragfair/Item is not examined": "Item is not examined", + "ragfair/Item purchase": "Item purchase", + "ragfair/Items in stash selected:": "Stash items selected:", "ragfair/LOW.": "MIN.", - "ragfair/LinkedSearch": "Căutare relațională", + "ragfair/LinkedSearch": "Linked search", "ragfair/MAX.": "MAX.", - "ragfair/MY OFFERS": "OFERTELE MELE", - "ragfair/Merchant (rating)": "Comerciant (relație)", - "ragfair/NeededSearch": "Căutare necesar", - "ragfair/No offers has been found in {0} category. Select another category.": "Nici o ofertă găsită în categoria {0}. Vă rugăm să selectați o altă categorie.", - "ragfair/Not raid barter item notification": "Articolul trebuie găsit în raid", - "ragfair/Not raid item notification": "Nu poți vinde un obiect care nu a fost găsit în raid", - "ragfair/OFFER ADD": "ADAUGĂ OFERTĂ", - "ragfair/OR": "SAU", - "ragfair/Offer": "Ofertă", - "ragfair/Offer with id #{0} has not been found": "Nu s-a putut găsi oferta cu ID #{0}", - "ragfair/OfferId": "Căutare ofertă după ID", - "ragfair/OfferOwnerType": "Tip proprietar", - "ragfair/Offer{0}ExpirationTime{1}": "Oferta ta de ({0}) va expira în {1}!", - "ragfair/OneHourExpiration": "Numai ofertele care expiră", - "ragfair/Only functional": "Doar funcționale", - "ragfair/Only functional items are acceptable": "Numai obiectele funcționale sunt acceptate", - "ragfair/OnlyFunctional": "Doar funcționale", - "ragfair/OnlyPrioritized": "Numai ofertele prioritare", - "ragfair/PLACE OFFER": "PLASEAZA OFERTA", - "ragfair/PURCHASE": "CUMPĂRĂ", - "ragfair/PackWarning": "Vei pune la vânzare mai multe articole la pachet. Ești sigur?", - "ragfair/Price": "Preț", - "ragfair/PriceFrom": "Preț Min.", - "ragfair/PriceTo": "Preț Max.", - "ragfair/Prioritized offer": "Ofertă prioritară", - "ragfair/Quantity from:": "Cantitate de la:", - "ragfair/Quantity:": "Cantitate:", - "ragfair/QuantityFrom": "Cantitate Min.", - "ragfair/QuantityTo": "Cantitate Max.", - "ragfair/REMOVE": "SCOATE", - "ragfair/REQUIREMENTS": "CERINȚE", - "ragfair/Reached maximum amount of offers": "Ați ajuns la numărul maxim de oferte", - "ragfair/Remember selected filter": "Reține filtrul selectat", - "ragfair/RemoveBartering": "Exclude ofertele de schimb", - "ragfair/RemoveMerchant": "Exclude ofertele comercianților", - "ragfair/Require for all items in offer": "Necesar pentru toate articolele din ofertă", - "ragfair/Require only functional items": "Permite doar articole funcționale", - "ragfair/SHOW MORE": "ARATĂ MAI MULTE", - "ragfair/Select item from the Handbook of your known items": "Alege articolul din Manualul de articole cunoscute.", - "ragfair/Show only": "Arată doar", - "ragfair/Show only functional items": "Arata doar articole funcționale", - "ragfair/Show only items with less than 1 hour expiration": "Afișeaza numai elementele care expiră în mai puțin de 1 oră", + "ragfair/MY OFFERS": "MY OFFERS", + "ragfair/Merchant (rating)": "Trader (rating)", + "ragfair/NeededSearch": "Required search", + "ragfair/No offers has been found in {0} category. Select another category.": "No offers have been found in the {0} category. Please select another category.", + "ragfair/Not raid barter item notification": "Item must be found in raid", + "ragfair/Not raid item notification": "You can't sell an item which was not found in raid", + "ragfair/OFFER ADD": "ADD OFFER", + "ragfair/OR": "OR", + "ragfair/Offer": "Offer", + "ragfair/Offer with id #{0} has not been found": "Could not find offer ID #{0}", + "ragfair/OfferId": "Search offer ID", + "ragfair/OfferOwnerType": "Owner type", + "ragfair/Offer{0}ExpirationTime{1}": "Your offer of ({0}) will expire in {1}!", + "ragfair/OneHourExpiration": "Expiring offers only", + "ragfair/Only functional": "Operational only", + "ragfair/Only functional items are acceptable": "Only functional items are accepted", + "ragfair/OnlyFunctional": "Operational only", + "ragfair/OnlyPrioritized": "Priority offers only", + "ragfair/PLACE OFFER": "PLACE OFFER", + "ragfair/PURCHASE": "PURCHASE", + "ragfair/PackWarning": "You are going to put the pack of items to the flea market. Are you sure?", + "ragfair/Price": "Price", + "ragfair/PriceFrom": "Min. Price", + "ragfair/PriceTo": "Max. Price", + "ragfair/Prioritized offer": "Priority offer", + "ragfair/Quantity from:": "Quantity from:", + "ragfair/Quantity:": "Quantity:", + "ragfair/QuantityFrom": "Min. Amount", + "ragfair/QuantityTo": "Max. Amount", + "ragfair/REMOVE": "REMOVE", + "ragfair/REQUIREMENTS": "REQUIREMENTS", + "ragfair/Reached maximum amount of offers": "Reached maximum amount of offers", + "ragfair/Remember selected filter": "Remember selected filter", + "ragfair/RemoveBartering": "Exclude bartering offers", + "ragfair/RemoveMerchant": "Exclude trader offers", + "ragfair/Require for all items in offer": "Require for all items in offer", + "ragfair/Require only functional items": "Require only functional items", + "ragfair/SHOW MORE": "SHOW MORE", + "ragfair/Select item from the Handbook of your known items": "Select item from the Handbook of your known items.", + "ragfair/Show only": "Show only", + "ragfair/Show only functional items": "Show only functional items", + "ragfair/Show only items with less than 1 hour expiration": "Only show items expiring in less than 1 hour", "ragfair/TOTAL:": "Total", - "ragfair/This item cannot be placed at ragfair": "Acest articol nu poate fi vândut pe piața de vechituri.", - "ragfair/This item will be available at {0} loyalty level. (Yours is {1})": "Acest produs va fi disponibil la nivelul de loialitate {0}. (Nivelul actual este {1})", - "ragfair/This item will be available with the quest completion": "Acest obiect va fi disponibil după finalizarea misiunii", - "ragfair/TooLittleWarning": "Ești pe cale să pui obiectul la un preț mult mai mic decât cel mai ieftin preț similar existent. Ești sigur?", - "ragfair/TooManyItemsSelected": "Prea multe articole", - "ragfair/TooMuchWarning": "Ești pe cale să pui obiectul la un preț mult mai mare decât cel mai scump produs similar existent. Ești sigur?", - "ragfair/Trader will be unlocked with the quest completion": "Comerciantul va fi deblocat odată cu finalizarea misiunii", + "ragfair/This item cannot be placed at ragfair": "This item can't be sold at the Flea Market.", + "ragfair/This item will be available at {0} loyalty level. (Yours is {1})": "This item will be available at loyalty level {0}. (Your current level is {1})", + "ragfair/This item will be available with the quest completion": "This item will be available with the quest completion", + "ragfair/TooLittleWarning": "You are going to put the item at a cost much lower than the cheapest existing similar offer. Are you sure?", + "ragfair/TooManyItemsSelected": "Too many items", + "ragfair/TooMuchWarning": "You are going to place an item at a cost much higher than the most expensive existing similar offer. Are you sure?", + "ragfair/Trader will be unlocked with the quest completion": "Trader will be unlocked with the quest completion", "ragfair/Unable to sell the item that contains": "", - "ragfair/Unable to sell the item that contains {0}": "Nu se poate vinde obiectul care conține \"{0}\"", - "ragfair/Unlocked at character LVL {0}": "Abilitatea de a crea oferte precum și de a vedea și cumpăra bunurile altor jucători va fi deblocată la nivelul {0}.", - "ragfair/W-LIST": "LISTĂ-D", - "ragfair/You are temporarily banned from flea market": "Ești restricționat temporar de la Piața de Vechituri", - "ragfair/You cannot place non-empty container at ragfair": "Nu poți vinde un container negolit pe piața de vechituri", - "ragfair/You've bought personal limit of this item, wait for restock": "Ai atins limita personală pentru achiziția acestui obiect, așteaptă stocul nou", - "ragfair/Your offer ({0}) is expired!": "Oferta ta de ({0}) a expirat!", - "ragfair/You’ve purchased the offer ({0}). Check your stash!": "Ai achiziționat oferta ({0}). Verifică-ți depozitul!", - "ragfair/bartering offers": "ofertele de schimb", - "ragfair/builditems": "Necesar șablon", - "ragfair/container_must_be_empty_notification": "Nu poți preda mai departe un container cu obiecte înăuntru.", - "ragfair/enter_amount": "Introdu cantitatea", - "ragfair/ingame Merchant's offers": "Ofertele comercianților din joc", - "ragfair/no_matching_offers_found": "Nicio ofertă găsită", - "ragfair/not enough money": "Fonduri insuficiente", - "ragfair/pack": "pachet", - "ragfair/per item": "per obiect", - "ragfair/per pack ({0} items)": "per pachet ({0} articole)", - "ragfair/per pack ({0} items)": "per pachet ({0} articole)", - "ragfair/playerownertype": "Jucător", - "ragfair/prioritized offers": "Oferte prioritare", - "ragfair/to:": "către:", - "ragfair/traderownertype": "Comercianți", - "ragfair/you don't have enough money for the transaction": "Nu ai suficienți bani pentru tranzacție", - "rank_01": "Bandit", - "rank_02": "Șacal", - "rank_03": "Mercenar", - "rank_04": "Luptător", - "rank_05": "Războinic", + "ragfair/Unable to sell the item that contains {0}": "Unable to sell the item that contains \"{0}\"", + "ragfair/Unlocked at character LVL {0}": "The ability to create offers as well as to see and buy other players' goods will be unlocked on level {0}.", + "ragfair/W-LIST": "W-LIST", + "ragfair/You are temporarily banned from flea market": "You are temporarily banned from the flea market", + "ragfair/You cannot place non-empty container at ragfair": "You can't sell non-empty container at the flea market", + "ragfair/You've bought personal limit of this item, wait for restock": "You've reached a personal limit of purchasing this item, wait for a restock", + "ragfair/Your offer ({0}) is expired!": "Your offer of ({0}) has expired!", + "ragfair/You’ve purchased the offer ({0}). Check your stash!": "You’ve purchased the offer ({0}). Check your stash!", + "ragfair/bartering offers": "bartering offers", + "ragfair/builditems": "Preset items", + "ragfair/container_must_be_empty_notification": "You can't hand over a container with items inside.", + "ragfair/enter_amount": "Enter amount", + "ragfair/ingame Merchant's offers": "Game traders' offers", + "ragfair/no_matching_offers_found": "No matching offers found", + "ragfair/not enough money": "Not enough money", + "ragfair/pack": "pack", + "ragfair/per item": "per item", + "ragfair/per pack ({0} items)": "per pack ({0} items)", + "ragfair/per pack ({0} items)": "per pack ({0} items)", + "ragfair/playerownertype": "Player", + "ragfair/prioritized offers": "Priority offers", + "ragfair/to:": "to:", + "ragfair/traderownertype": "Traders", + "ragfair/you don't have enough money for the transaction": "You don't have enough money for the transaction", + "rank_01": "Marauder", + "rank_02": "Jackal", + "rank_03": "Mercenary", + "rank_04": "Fighter", + "rank_05": "Warrior", "rank_06": "Gladiator", "rank_07": "Veteran", - "rank_08": "Profesionist", - "rank_09": "Elită", - "rank_10": "Șoapta Morții", - "rank_11": "Luptător de Foc", - "rank_12": "Șeful Mare", - "rank_13": "Legenda Arenei", - "ratingExpPos": "Rang EXP", - "readytoinstallupgrade": "Construcție finalizată", - "receive": "PRIMEȘTE", + "rank_08": "Professional", + "rank_09": "Elite", + "rank_10": "Whisper of Death", + "rank_11": "Flame warrior", + "rank_12": "Big Boss", + "rank_13": "The Legend of the Arena", + "ratingExpPos": "EXP rank", + "readytoinstallupgrade": "Upgrading complete", + "receive": "RECEIVE", "rechamber": "Rechamber", - "registrationDate": "Data înregistrării", - "remaining:": "rămas: ", - "repair quality": "calitatea reparației", - "repair speed": "reparație", - "repairability": "reparabil", - "repairability/Average": "Mediu", - "repairability/Bad": "Prost", - "repairability/Good": "Bun", - "repairability/Terrible": "Groaznic", - "repairability/Unpredictable": "Imprevizibil", - "repairability/Very bad": "Foarte prost", - "repairability/Very good": "Foarte bun", - "rest space": "SPAȚIU DE ODIHNĂ", + "registrationDate": "Registration date", + "remaining:": "remaining: ", + "repair quality": "repair quality", + "repair speed": "repair", + "repairability": "repairability", + "repairability/Average": "Average", + "repairability/Bad": "Bad", + "repairability/Good": "Good", + "repairability/Terrible": "Terrible", + "repairability/Unpredictable": "Unpredictable", + "repairability/Very bad": "Very bad", + "repairability/Very good": "Very good", + "rest space": "REST SPACE", "restart_quest": "Restart", - "ribcage": "Piept", - "right_side_plate": "PLACĂ D", - "rightleg": "PICIOR D.", - "rightside": "Partea Dreaptă", - "rightupperarm": "Umăr Drept", + "ribcage": "Chest", + "right_side_plate": "R. PLATE", + "rightleg": "R.LEG", + "rightside": "Right side", + "rightupperarm": "Right shoulder", "ro": "Română", "rpm": "rpm", "ru": "Русский", "rub": "rub", - "savageKills": "Scavi eliminați", - "scav_NW": "Extracție Cale Ferată", - "scav_e1": "Scările de la Pivniță", - "scav_e2": "Intrarea în Catacombe", - "scav_e3": "Gura de Ventilație", - "scav_e4": "Gura de Canal", - "scav_e5": "Lângă Arcada Kamceatskaya", - "scav_e6": "Intrarea în Pivniță", - "scav_e7": "Parcare Complex Cardinal", - "scav_e8": "Ieșire Mallul Klimov", - "searchspeed": "Crește viteza de căutare cu [{0:0.#%}]", + "savageKills": "Scavs killed", + "scav_NW": "Railway Exfil", + "scav_e1": "Basement Descent", + "scav_e2": "Entrance to Catacombs", + "scav_e3": "Ventilation Shaft", + "scav_e4": "Sewer Manhole", + "scav_e5": "Near Kamchatskaya Arch", + "scav_e6": "Basement Entrance", + "scav_e7": "Cardinal Apartment Complex Parking", + "scav_e8": "Klimov Shopping Mall Exfil", + "searchspeed": "Increases search speed by [{0:0%}]", "sec": "sec", - "select weapon body for the build": "ALEGE ARMA DE BAZĂ PENTRU ȘABLON", + "select weapon body for the build": "SELECT WEAPON BODY FOR THE PRESET", "semiauto": "Semi-auto", - "shootingrange": "POLIGON DE TRAGERE", - "shotgunKills": "Eliminări cu pușca alice", - "shoulder_l": "UMĂR STÂNG", - "shoulder_r": "UMĂR DREPT", - "single": "Foc cu foc", + "shootingrange": "SHOOTING RANGE", + "shotgunKills": "Shotgun kills", + "shoulder_l": "LFT. SHOULDER", + "shoulder_r": "RGT. SHOULDER", + "single": "Single fire", "sk": "Slovenský", - "slow": "încet", - "smgKills": "Eliminări cu SMG", - "sniperKills": "Eliminări cu puști cu zăvor", - "soft_armor_back": "ANTERIOR", - "soft_armor_front": "PIEPT", - "soft_armor_left": "LATERAL S.", - "soft_armor_left_arm": "UMĂR STÂNG", - "soft_armor_right": "LATERAL D.", - "soft_armor_right_arm": "UMĂR DREPT", - "soft_armor_stomach": "STOMAC", - "sorting table": "MASA DE SORTARE", - "specFound": "Arme speciale gasite", - "specKills": "Eliminări cu arme speciale", - "spectator_azure_team": "ECHIPA AZUR", - "spectator_blue_team": "ECHIPA ALBASTRĂ", - "spectator_fuchsia_team": "ECHIPA ROZ", - "spectator_green_team": "ECHIPA VERDE", - "spectator_red_team": "ECHIPA ROȘIE", - "spectator_white_team": "ECHIPA ALBĂ", - "spectator_yellow_team": "ECHIPA GALBENĂ", - "starvDeaths": "Decese din cauza foamei", - "stationHeals": "Tratamente în refugiu", - "suicides": "Sinucideri", - "survClass": "Clasă supraviețuitor", - "taskperformancedescription": "Performanță sarcini", - "throwFound": "Arme aruncabile găsite", + "slow": "slow", + "smgKills": "SMG kills", + "sniperKills": "Bolt-action rifle kills", + "soft_armor_back": "BACK", + "soft_armor_front": "CHEST", + "soft_armor_left": "LFT. SIDE", + "soft_armor_left_arm": "LFT. SHOULDER", + "soft_armor_right": "RGT. SIDE", + "soft_armor_right_arm": "RGT. SHOULDER", + "soft_armor_stomach": "STOMACH", + "sorting table": "SORTING TABLE", + "specFound": "Special weapons found", + "specKills": "Special weapon kills", + "spectator_azure_team": "AZURE TEAM", + "spectator_blue_team": "BLUE TEAM", + "spectator_fuchsia_team": "PINK TEAM", + "spectator_green_team": "GREEN TEAM", + "spectator_red_team": "RED TEAM", + "spectator_white_team": "WHITE TEAM", + "spectator_yellow_team": "YELLOW TEAM", + "starvDeaths": "Starvation deaths", + "stationHeals": "Intreatment heals", + "suicides": "Suicides", + "survClass": "Survivor class", + "taskperformancedescription": "Task performance", + "throwFound": "Throwable weapons found", "timeout": "Timeout", - "togglevoip": "Activează/dezactivează VoIP", - "tradererror/traderdisabled": "Comerciantul este momentan indisponibil", - "traderownertype": "Comercianți", - "traders/trader_is_locked": "Comerciant blocat", - "trading/less item {0} than you want. You bought all remaining items ({1})": "Comerciantul are mai puține articole {0}. Ai cumpărat toate articolele rămase ({1})", - "tripleKills": "Eliminări triple", + "togglevoip": "Enable/disable VOIP", + "tradererror/traderdisabled": "Trader is currently unavailable", + "traderownertype": "Traders", + "traders/trader_is_locked": "Trader is locked", + "trading/less item {0} than you want. You bought all remaining items ({1})": "The trader has fewer items {0}. You bought all remaining items ({1})", + "tripleKills": "Triple kills", "tu": "Türkçe", - "tunnelvision": "Vedere tunel", - "turn off": "OPREȘTE", - "ui/health/effect/less_than_10_minutes_left": "mai puțin de 10 minute rămase", - "ui/health/effect/less_than_30_minutes_left": "mai puțin de 30 de minute rămase", - "ui/health/effect/less_than_one_day_left": "mai puțin de o zi rămasă", - "ui/health/effect/less_than_one_hour_left": "mai puțin de o oră rămasă", - "ui/health/effect/less_than_one_minute_left": "mai puțin de un minut rămas", - "ui/settings/enablestreamermode": "Mod streamer", - "ui/social/allrequestsaccept": "Acceptă toate cererile", - "ui/social/allrequestsaccepted": "Toate cererile au fost acceptate", + "tunnelvision": "Tunnel vision", + "turn off": "TURN OFF", + "ui/health/effect/less_than_10_minutes_left": "less than 10 minutes left", + "ui/health/effect/less_than_30_minutes_left": "less than 30 minutes left", + "ui/health/effect/less_than_one_day_left": "less than a day left", + "ui/health/effect/less_than_one_hour_left": "less than an hour left", + "ui/health/effect/less_than_one_minute_left": "less than a minute left", + "ui/settings/enablestreamermode": "Streamer mode", + "ui/social/allrequestsaccept": "Accept all requests", + "ui/social/allrequestsaccepted": "All requests accepted", "ultra": "ultra", - "un-sec": "Blocadă ONU Nord", + "un-sec": "Northern UN Roadblock", "undefined": "", - "uninstall": "DEMONTEAZĂ", - "unlockedSafes": "Seifuri descuiate", - "unpack": "desfă", - "usecKills": "USEC eliminați", - "various": "Diverse", - "very bad": "foarte prost", - "very fast": "foarte rapid", - "very good": "foarte bun", - "very slow": "foarte încet", - "wants to invite you in a group. Accept?": "vrea să te invite într-un grup. Accepți?", - "weapBroken": "Arme stricate", - "weapFound": "Arme gasite", - "weapon mastering": "DEPRINDEREA ARMEI", - "weapon name": "Denumire armă", - "will be available in:": "va fi disponibil în:", - "will be destroyed after unpacking": "Vai fi distrus după desfacere", - "you": "Tu", - "you can't transfer item while moving": "Nu poți transfera obiecte în timpul mișcării", - "you were disconnected for inactivity": "Ați fost deconectat pentru inactivitate", - "{0} Beta version": "{0} Versiune Beta", - "{0} GroupPlayerBlocking/MatchLeave": "Mod de joc temporar indisponibil din cauză că un membru al grupului ({0}) are interdicție din cauza părăsirii unui meci", - "{0} GroupPlayerBlocking/NotAcceptedMatch": "Mod de joc temporar indisponibil din cauză că un membru al grupului ({0}) are interdicție din cauza neacceptării unui meci", - "{0} GroupPlayerBlocking/TeamKill": "Mod de joc temporar indisponibil din cauză că un membru al grupului ({0}) are interdicție din cauza uciderii coechipierilor", - "{0} Violation/IntentionalTeamDamage/Blocking": "Jucătorul {0} a fost eliminat din meci și a primit penalizare pentru că a tras în coechipieri", - "{0} Violation/IntentionalTeamKill/Blocking": "Jucătorul {0} a fost eliminat din meci și a primit penalizare pentru că a ucis coechipieri la începutul rundei", - "{0} Violation/TeamKill/Blocking": "Jucătorul {0} a fost eliminat din meci și a primit penalizare pentru că a ucis coechipieri", - "{0} added you to the ignore list": "{0} te-a adăugat în lista de ignorați", - "{0} ask to cooperate": "{0} te salută", - "{0} canceled friend request": "Jucătorul {0} a retras cererea de prietenie", - "{0} disconnected notification": "{0} a pierdut conexiunea", - "{0} ep/hr ({1} ep/hr in total)": "{0} PE/h ({1} PE/h în total)", - "{0} has accepted your friends request": "{0} ți-a acceptat cererea de prietenie", - "{0} has been insured": "{0} a fost asigurat", - "{0} has declined your friends request": "{0} ți-a refuzat cererea de prietenie", - "{0} has restocked": "{0} a fost reaprovizionat.", - "{0} hp/hr ({1} hp/hr in total)": "{0} HP/h ({1} În total HP/h)", + "uninstall": "UNINSTALL", + "unlockedSafes": "Safes unlocked", + "unpack": "unpack", + "usecKills": "USECs killed", + "various": "Various", + "very bad": "very bad", + "very fast": "very fast", + "very good": "very good", + "very slow": "very slow", + "wants to invite you in a group. Accept?": "wants to invite you into a group. Accept?", + "weapBroken": "Weapons broken", + "weapFound": "Weapons found", + "weapon mastering": "WEAPON MASTERING", + "weapon name": "Weapon name", + "will be available in:": "will be available in:", + "will be destroyed after unpacking": "Will be destroyed after unpacking", + "you": "You", + "you can't transfer item while moving": "You can't transfer items while moving", + "you were disconnected for inactivity": "You were disconnected for inactivity", + "{0} Beta version": "{0} Beta version", + "{0} GroupPlayerBlocking/MatchLeave": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for quitting a game", + "{0} GroupPlayerBlocking/NotAcceptedMatch": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for failing to accept a match", + "{0} GroupPlayerBlocking/TeamKill": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for repeated teamkills", + "{0} Violation/TeamKill/Blocking": "Player {0} has been removed from the match and received a penalty for teamkilling", + "{0} added you to the ignore list": "{0} added you to ignore list", + "{0} ask to cooperate": "{0} greets you", + "{0} canceled friend request": "{0} ți-a retras cererea de prietenie", + "{0} disconnected notification": "{0} lost connection", + "{0} ep/hr ({1} ep/hr in total)": "{0} EP/hr ({1} EP/hr in total)", + "{0} has accepted your friends request": "{0} has accepted your friend request", + "{0} has been insured": "{0} has been insured", + "{0} has declined your friends request": "{0} has declined your friend request", + "{0} has restocked": "{0} has been restocked.", + "{0} hp/hr ({1} hp/hr in total)": "{0} HP/hr ({1} HP/hr in total)", "{0} is ready for construction.": "{0} este pregătit pentru a fi construit.", - "{0} is ready for installation.": "{0} este pregătit pentru montaj.", - "{0} is ready for upgrade.": "{0} este pregătit pentru îmbunătățire.", - "{0} items has been insured": "{0} obiecte au fost asigurate", - "{0} items insured": "{0} obiecte asigurate", - "{0} items to insure": "{0} articole de asigurat", - "{0} left notification": "{0} a părăsit jocul", - "{0} pts/hr ({1} pts/hr in total)": "{0} pct/h ({1} pct/h în total)", - "{0} reconnected notification": "{0} s-a reconectat", - "{0} reconnecting notification": "{0} se reconectează", - "{0} removed you from friends list": "{0} te-a îndepărtat din lista de prieteni", - "{0} removed you from the ignore list": "{0} te-a scos din lista de ignorați", - "{0} seconds left": "{0} secunde rămase", - "{0} wants to invite you to friends list": "{0} vrea să te invite în lista lui de prieteni", - "{0} wp/hr ({1} wp/hr in total)": "{0} PA/h ({1} PA/h în total)", - "{0}d": "{0}z", + "{0} is ready for installation.": "{0} is ready for installation.", + "{0} is ready for upgrade.": "{0} is ready for upgrade.", + "{0} items has been insured": "{0} items have been insured", + "{0} items insured": "{0} items insured", + "{0} items to insure": "{0} items to insure", + "{0} left notification": "{0} left the game", + "{0} pts/hr ({1} pts/hr in total)": "{0} pts/hr ({1} pts/hr in total)", + "{0} reconnected notification": "{0} reconnected", + "{0} reconnecting notification": "{0} is reconnecting", + "{0} removed you from friends list": "{0} removed you from friend list", + "{0} removed you from the ignore list": "{0} removed you from the ignore list", + "{0} seconds left": "{0} seconds left", + "{0} wants to invite you to friends list": "{0} wants to invite you to their friends list", + "{0} wp/hr ({1} wp/hr in total)": "{0} WP/hr ({1} WP/hr in total)", + "{0}d": "{0}d", "{0}h": "{0}h", "{0}h{1:00}m": "{0}h{1:00}m", "{0}m": "{0}m", - "{0}y{1}d": "{0}a{1}z", - "~ Empty": "~ Gol", - "~ Full": "~ Plin", - "Тrading/Dialog/AvailableServices/Description": "Apelezi la serviciile mele? Bine, deja ți-ai îndeplinit scopul, așa că te voi ajuta dacă ești capabil să plătești datoria.", + "{0}y{1}d": "{0}y{1}d", + "~ Empty": "~ Empty", + "~ Full": "~ Full", + "Тrading/Dialog/AvailableServices/Description": "Want my services? Well, you've served your purpose already, so I'll help you — if you can pay me back.", "54cb50c76803fa8b248b4571 FullName": "Pavel Yegorovich Romanenko", "54cb50c76803fa8b248b4571 FirstName": "Pavel Yegorovich", "54cb50c76803fa8b248b4571 Nickname": "Prapor", @@ -16523,12 +16411,12 @@ "5a7c2eca46aef81a7ca2145d Description": "Fost maistru în uzina chimică, s-a ocupat de la bun început cu modificarea armelor, reparații, și mantenanţa echipamentelor și tehnologiilor avansate. Duce o viață solitară, clandestină, și preferă să opereze discret, prețuind mult misiunile complicate și dificile.", "5ac3b934156ae10c4430e83c FullName": "Arshavir Sarkisivich Abramyan", "5ac3b934156ae10c4430e83c FirstName": "Arshavir Sarkisivich", - "5ac3b934156ae10c4430e83c Nickname": "Croitorul", + "5ac3b934156ae10c4430e83c Nickname": "Croitoru", "5ac3b934156ae10c4430e83c Location": "Piața centrală din Tarkov", "5ac3b934156ae10c4430e83c Description": "A lucrat ca director în centrul comercial aflat în suburbia orașului Tarkov. Face afaceri cu îmbrăcăminte și echipament, orice de la ochelari de soare până la veste antiglonț.", "5c0647fdd443bc2504c2d371 FullName": "Ivan Yegorovich Kharitonov", "5c0647fdd443bc2504c2d371 FirstName": "Ivan Yegorovich", - "5c0647fdd443bc2504c2d371 Nickname": "Pădurar", + "5c0647fdd443bc2504c2d371 Nickname": "Păduraru", "5c0647fdd443bc2504c2d371 Location": "Rezervația Naturală Priozersk", "5c0647fdd443bc2504c2d371 Description": "Înaintea conflictului, a fost angajat că și vânător în Parcul Natural Priozersk sub Serviciul Statal de Vânătoare. Este un vânător profesionist și un specialist în supraviețuire. În acest moment, stă și păzește domeniile de vânătoare ale rezervației de diverși indivizi agresivi.", "638f541a29ffd1183d187f57 FullName": "", @@ -16764,11 +16652,11 @@ "64105d6b460c57e74b0b5e86 0": "Raportul tău din raidul din data de {date} și alte rapoarte din {time} a ajutat la identificarea trișorilor. Acești jucători au fost banați.", "64648f64063abf54100f587b 0": "Ți-am luat căcaturile. Aici e partea ta. Pe data viitoare.", "6469df44bd5626e8bc0f64f1 0": "S-a vărsat prea mult sânge. Nu vrem să continuam așa în Tarkov. Revenim la vechile reguli și ne retragem pe moment în umbră.", - "655c87f240fbb95cd9090420 0": "Șterge", - "655c887cfeab348e7e09b69c 0": "Din partea Battlestate Games, astăzi vă felicităm pe toți Șerpașii cu ocazia aniversarii si vă mulțumim pentru munca depusă. Mulțumim Șerpașilor. La multi ani!", - "657399489b19e826a721d75c 0": "Toate lucrurile ți-au fost aduse. Nu-ți face griji, am găsit tot.", - "657399489b19e826a721d75c 1": "Am mutat lucrurile așa cum ne-am înțeles.", - "657399489b19e826a721d75c 2": "Lucrurile tale sunt la bază.", + "655c87f240fbb95cd9090420 0": "Delete", + "655c887cfeab348e7e09b69c 0": "On behalf of Battlestate Games, today we congratulate all Sherpas on the anniversary and thank them for their hard work. Thank you, Sherpas. Happy Anniversary!", + "657399489b19e826a721d75c 0": "Your stuff's been dropped off. Don't worry, everything's accounted for.", + "657399489b19e826a721d75c 1": "I moved the stuff where we agreed.", + "657399489b19e826a721d75c 2": "Your stuff is at the base.", "6582beba471fa54463010b16 0": "Fighter!\nTravel safely, the Scav bosses and those hooded creeps have crawled out of their holes and are always in their positions. It has happened before, I'm sure you remember. ", "Arena/UI/Match_leaving_warning_body 0": "If you leave the match, you'll put your allies at disadvantage./nYou'll lose your reward and rating and could receive a temporary ban.", "Arena/UI/Match_leaving_warning_header 0": "Warning! You are leaving the match.", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "Ground Zero", "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "United Security", "5464e0404bdc2d2a708b4567 Description": "Compania militară privată USEC a fost înființată în 1999 prin fuziunea a două companii: KerniSEC și Safe Sea. În 2004, un agent al TerraGroup a luat legătură cu USEC, USEC devenind ulterior armata privată a grupului cu peste 7500 de angajați și birouri în toată lumea.", "5464e0454bdc2d06708b4567 Name": "BEAR", @@ -17354,18 +17240,18 @@ "657faa0687e11c61f70bfae5": "", "657faa32e65c0122b70ffdc1": "", "5936d90786f7742b1420ba5b name": "Debut", - "5936d90786f7742b1420ba5b description": "Salut, soldat. Am o treabă, una prea simplă pentru băieții mei. Ești chiar potrivit. De ce te superi? Nu te cunosc încă, nu-ți pot da o misiune adevărată!\n\nE plin de jeguri pe străzi. Nu mă deranjează în mod special, dar mă deranjează simpla lor prezență. Calmează, ce să zic, vreo 5 din ei, și adu-mi niște puști MP-133 luate de la ei. Cred că-i destul pe moment. Soldat, liber!", + "5936d90786f7742b1420ba5b description": "Te salut, soldat. Ce interese ai? Bani? Bunuri? Ah, cauți de lucru... Sigur, îți dau ceva de făcut... după ce îmi arăți cine ești și din ce ești făcut. E prima oară când te văd și, fără supărare, nu dau misiuni importante oricui. Arată-mi cât ești de bun operator. Dacă te descurci, vei avea bani, bunuri, prețuri bune, mă-nțelegi. Logic, nu? Deci. Fii atent. Sunt o tonă de bandiți pe toate străzile, le zicem Gunoieri. Calmează vreo 5 paraziți și ia două puști MP-133 de la ei. Va fi debutul tău. La treaba, soldat! Liber.", "5936d90786f7742b1420ba5b failMessageText": "", - "5936d90786f7742b1420ba5b successMessageText": "Deci, ai terminat treaba, bun. Probabil c-ai găsit puștile pe undeva sau le-ai cumpărat ieftin. Oricum, nu-mi pasă. Ai adus puștile și asta e tot ce contează.", + "5936d90786f7742b1420ba5b successMessageText": "Deci, ai terminat treaba, bun. Probabil c-ai găsit puștile pe undeva sau le-ai cumpărat ieftin. Oricum, o să fie de folos. Putem continua să lucrăm împreună, mai puțin dacă o dai în bară de tot.", "5967379186f77463860dadd6": "Elimină Scavi oriunde pe teritoriul Tarkov", "596737cb86f77463a8115efd": "Obține și preda puști MP-133 cal. 12", "5936d90786f7742b1420ba5b acceptPlayerMessage": "", "5936d90786f7742b1420ba5b declinePlayerMessage": "", "5936d90786f7742b1420ba5b completePlayerMessage": "", - "5936da9e86f7742d65037edf name": "Verificare Antecedente", - "5936da9e86f7742d65037edf description": "Cum merge, soldat? Am o treabă pentru tine. Camaradul meu Arsenie lucra la fabrică, șofer de cisternă. Familia lui a plecat în timpul evacuării iar el a rămas în urmă ca să facă niște bani în plus, și aici a rămas pe veci. Locuia în căminul pe trei niveluri din Polichim, nu mai țin minte camera.\n\nOmul meu avea un ceas de buzunar, moștenire de familie. Se mândrea la toată lumea. Găsește ceasul și adu-mi-l, vreau să-l trimit băiatului lui. Vreau să aiba copilul ceva care să-i amintească de taică-su. Ceasul e ori în cămin, in camera lui, ori în cisterna din șantier. Arsenie ținea cheile de la camion în geacă. Spor la treabă!", + "5936da9e86f7742d65037edf name": "Verificare", + "5936da9e86f7742d65037edf description": "Cum îți merge, războinicule? Ești întreg? Buun. Uite, am o treabă. Dacă te descurci, putem vorbi despre încredere. Ești interesat? Uite cum stă treaba, soldat. Am avut un prieten care a condus o cisternă la uzină. A reușit să își salveze familia dar s-a întors să își ia lucrurile și-a dispărut. A trăit într-un cămin, cel mare. Nu-mi aduc aminte camera, fusesem acolo doar o dată și eram rangă de beat. Sigur avea un poster cu o fată pe perete dar restul e în ceață. Pe scurt, omul avea un ceas vechi de buzunar din bronz cu lanț. Că o moștenire de familie. Dacă nu a fost deja luat de altcineva, atunci există doar două opțiuni - ori este ascuns undeva în cameră, ori în camionul lui. Vreau să îl iau pentru copilul lui, taică-su n-a fost un om rău, merită să fie pomenit.", "5936da9e86f7742d65037edf failMessageText": "", - "5936da9e86f7742d65037edf successMessageText": "Daca mă crezi, eu nu credeam că o să-l găsești. Mulțumesc mult oricum. Poți să spui că a fost o chestie personală, cu ce m-ai ajutat tu aici. Poftim plata.", + "5936da9e86f7742d65037edf successMessageText": "Cât de neașteptat! Nu-i chiar cea mai importantă livrare, dar mulțumesc oricum. Nu are legătură cu afacerile. Asta e ceva, s-ar putea spune, personal. Ah și doar ca să știi, n-o să duc lipsa de nimic important, așa că să ții minte pe viitor cu cine e mai bine să lucrezi.", "5967920f86f77468d219d632": "Predă ceasul de buzunar", "5968ec9986f7741ddd6c1012": "Găsește ceasul de buzunar din bronz cu lanț în Vama", "5975de1f86f7744ca53b7c82": "Găsește cheia de la camionul cu cisternă", @@ -17428,7 +17314,7 @@ "596760e186f7741e11214d58 description": "Bună ziua. Prapor mi-a spus că sunteți cel care ne va ajuta să se ne restabilim legătura și să găsim scrisoarea pierdută. Perfect! Eu voi aștepta.", "596760e186f7741e11214d58 failMessageText": "", "596760e186f7741e11214d58 successMessageText": "Bun, mulțumesc! Nu-i de mirare că Prapor te-a recomandat ca persoană de încredere și responsabilă.", - "5968975586f7740e7266d974": "Predă scrisoarea de la curierul lui Prapor", + "5968975586f7740e7266d974": "Predă scrisoarea de la mesager Doctoriței", "596760e186f7741e11214d58 acceptPlayerMessage": "", "596760e186f7741e11214d58 declinePlayerMessage": "", "596760e186f7741e11214d58 completePlayerMessage": "", @@ -17444,9 +17330,9 @@ "5967725e86f774601a446662 declinePlayerMessage": "", "5967725e86f774601a446662 completePlayerMessage": "", "5967733e86f774602332fc84 name": "Lipsuri", - "5967733e86f774602332fc84 description": "Sănătate, mercenar. Te interesează niște muncă part-time? Nu-i nimic complicat și plătesc bine. Nu uita, mă poți căuta pentru mâncare și apă, și mai ales pentru ajutor medical. Să iți spun despre ce-i vorba.\n\nAm nevoie de truse medicale de prim ajutor. Se numesc Salewa și sunt roșii, importate. Vreau să fie găsite de tine și nu cumpărate de la altcineva. Arată-mi că ești serios. Încă nu ne cunoaștem și vreau să văd că ești de încredere. Ce zici?", + "5967733e86f774602332fc84 description": "Bună ziua, mercenar. Te-ar interesa ceva de lucru? Foarte bine. Nu-i ceva greu pentru un om serios ca tine, și nu se va termina în pierdere. Pot să ofer întotdeauna mâncare și băutura, și, cel mai important - îngrijire medicală de specialitate, în cazuri oricât de complexe. Iar pentru clienții fideli, care-mi susțin activitatea am oferte preferențiale pentru bunuri și servicii. Depinde doar de tine. să demonstrezi că ești de încredere. Între timp, am o misiune simplă - trebuie să găsești 5 truse medicale roșii, marca Salewa. Le știi? Că dovadă că știi să termini treaba, trebuie să le găsești cu mâna ta, nu să le obții de la altcineva. E întotdeauna o plăcere să lucrez cu cineva pe care mă pot baza.", "5967733e86f774602332fc84 failMessageText": "", - "5967733e86f774602332fc84 successMessageText": "Mulțumesc, tinere. Trusele vor fi de mare ajutor. Mai mult de atât nu am pot să spun.", + "5967733e86f774602332fc84 successMessageText": "Îți mulțumesc, tinere. Nu pot să-ți zic de ce am nevoie de ele, dar crede-mă, e pentru o cauză bună.", "59689eb886f7740d137ebfc3": "Predă trusele de prim ajutor", "5968edc086f77420d2328014": "Găsește truse de prim ajutor Salewa în raid", "6394af80e2cb1e6963235128": "Predă trusele de prim ajutor", @@ -17553,9 +17439,9 @@ "596a218586f77420d232807c declinePlayerMessage": "", "596a218586f77420d232807c completePlayerMessage": "", "596b36c586f77450d6045ad2 name": "Furnizor", - "596b36c586f77450d6045ad2 description": "Salut, cu ce te pot ajuta? Muncă? Ha! Din aia oficială cu fluturaș de salariu și pachet de asigurat sau merge și munca mai la negru?Caută de lucru, auzi la el!\n\nÎn fine, nu te prea cunosc, vreau să văd de ce ești în stare. Uite cum facem: îmi aduci o armură albă, ca de hârtie, și o pușcuță Toz. Mai înarmez și eu niște băieți. Fii atent, vreau să fie noi, s-a înțeles? Nu-mi trebuie căcaturi de la piață.\n\nDacă te descurci atunci putem discuta de ”muncă”, domnule ”operator”.", + "596b36c586f77450d6045ad2 description": "Tu cine dracu mai eșți? Cauți de lucru? O Misiune? Ha! Vrei contract de muncă și beneficii? Cauți de lucru, caută în cur! Bine, văd oricum pe mutra ta că nu ești în stare să faci muncă grea, așa că-ti dau misiunea asta: găsește-mi o armură albă, albă că hârtia și o pușcă TOZ. O să echipez niște băieți. Să fie noi, nu cumpărate de cine știe unde. Oricum, dacă te descurci, atunci putem vorbi despre angajare, domnule 'operator'.", "596b36c586f77450d6045ad2 failMessageText": "Și prostu' asta a venit la mine să-mi ceară de lucru. Nu cred că ne putem înțelege, din moment ce nu ești bun de nimic. Hai, pa!", - "596b36c586f77450d6045ad2 successMessageText": "Bună treabă, vom mai lucra împreună. Aici ai plata.", + "596b36c586f77450d6045ad2 successMessageText": "Bună treabă, putem lucra împreună. Aici ai plata. Te-am recunoscut, așa că poți să mai treci pe-aici. Mai tot timpul apare ceva de făcut, diferite lucruri, dar oamenii mor mai repede în zilele astea, dacă știi la ce mă refer.", "597867e986f7741b265c6bd3": "Predă armura BNTI Module-3M găsită în raid", "5ab8d44c86f7745b2325bd0c": "Predă pușca TOZ-106 găsită în raid", "596b36c586f77450d6045ad2 acceptPlayerMessage": "", @@ -17696,7 +17582,7 @@ "59c50c8886f7745fed3193bf failMessageText": "", "59c50c8886f7745fed3193bf successMessageText": "Gata, ai rezolvat? Frumos, poftim plata. Pun pariu că nu-i ultima misiune de la prietenii mei, au devenit foarte interesați de serviciile tale de exterminator.", "59c50f1686f77412ef2c01e7": "Predă bandanele", - "59624d5386f77446b872d5f7": "Elimină Scavi în Rezerva militară folosind o armă cu amortizor", + "59624d5386f77446b872d5f7": "Elimină Scavi pe Litoral folosind o armă cu amortizor", "5ca5e54186f774456930b9a3": "Găsește bandane in raid", "5cb5e2ff86f7746ef64c979b": "Găsește bandane in raid", "59c50c8886f7745fed3193bf acceptPlayerMessage": "", @@ -17746,8 +17632,8 @@ "59ca264786f77445a80ed044 description": "Hei, ultimul tău spectacol cu Scavii a fost ieșit din comun! Oamenii vin și întreabă ce naiba se întâmplă. Se pare că prietenii mei au negociat cumva cu autoritățile locale, ce-a mai rămas din ele, să organizeze un fel de bătălii ale mercenarilor, ca gladiatorii. Imaginează-ți asta! Ne întoarcem practic la Evul Mediu cu porcăriile astea! Pe scurt, pentru ei ești, cum se spune... un fel de tester. Indiferent ce ar inventa ei, vor folosi acțiunile tale pentru evaluări si ajustări. Pe scurt, nu prea înțeleg nimic, dar ei vor sa continuăm. De această dată vei avea un inamic mult mai serios, vor ca tu să decimezi mercenari PMC, dar ar trebui să fii deghizat în Gunoier, purtându-le vesta și având cagulă pe față. În același timp ar trebui să bagi frică în Gunoieri cu pușca de vânătoare calibrul 12. Zici că vor să pornească al Treilea Război Mondial la cât de mult căcat împrăștie. Încearcă să-i bage pe toți în conflicte unii cu alții... Te bagi?", "59ca264786f77445a80ed044 failMessageText": "", "59ca264786f77445a80ed044 successMessageText": "Ce sânge rece ai. Aici e plata. Vino mai târziu, prietenii mei vor să-ți mai dea ceva de făcut.", - "59ca27f786f77445aa0ddc14": "Îmbrăcat cu vestă de Scav și cagula elimină PMC în zona Farului", - "59674d5986f77446b872d5f7": "Elimină Scavi în zona Farului folosind puști de vânătoare calibrul 12", + "59ca27f786f77445aa0ddc14": "Îmbrăcat cu vestă de Scav și cagula (orice fel) elimină PMC pe Litoral", + "59674d5986f77446b872d5f7": "Elimină Scavi în Pădure folosind puști de vânătoare calibrul 12", "59ca293c86f91445a80ed047": "Găsește în raid cuțite Bars A-2607 95H19", "59ca29ab86f77445ab431c86": "Predă cuțitele", "59ca264786f77445a80ed044 acceptPlayerMessage": "", @@ -18039,7 +17925,7 @@ "5a27c99a86f7747d2c6bdd8e declinePlayerMessage": "", "5a27c99a86f7747d2c6bdd8e completePlayerMessage": "", "5a27d2af86f7744e1115b323 name": "Prieten din Vest - Partea a 2-a", - "5a27d2af86f7744e1115b323 description": "Bun, din moment ce suntem prieteni buni pe veci, mi se pare logic să îți spun despre afacerile adevărate. Ultima comandă pentru echipament a fost de la un tip, Peacekeeper îl cheamă, cred că-l știi. Face parte din forțele ONU care se află aici ca să prevină violențele, cică. Îmi vine să râd, haha! Țin legătura cu el de când a început tot futaiul ăsta. Mai muncim, mai vindem ceva, mai facem ceva rahaturi, și câteodată, unu-două cadavre. Omul are multe afaceri și are nevoie de un tip dur și de încredere, ca tine. Clar, îmi iese și mie ceva. Și, după cum iți dai seama și tu, oportunitatea de a lucra cu regele importului nu e gratis. Da, da, lasă mutra aia. Aruncă aici 6000 de dolari și o să faci afaceri la standardele din occident.", + "5a27d2af86f7744e1115b323 description": "Bun, din moment ce suntem prieteni pentru totdeauna, mi se pare logic să îți spun despre adevăratele afaceri care au loc. Ultima comandă pentru echipament a fost de la un tip, Peacekeeper îl cheamă, cred că-l știi. Face parte din forțele ONU care se află aici ca să prevină violențele, cică. Îmi vine să râd, haha! Țin legătura cu el de când a început tot futaiul ăsta. Mai muncim, mai vindem ceva, mai provocăm ceva rahaturi, și câteodată unu-două cadavre. Omul are multe afaceri și are nevoie de un tip dur și de încredere, ca tine. Clar, îmi iese și mie ceva. Și, după cum iți dai seama și tu, oportunitatea de a lucra cu regele importului nu e gratis. Da, da, lasă mutra aia. Aruncă aici 6000 de dolari și o să faci afaceri la standardele din occident.", "5a27d2af86f7744e1115b323 failMessageText": "", "5a27d2af86f7744e1115b323 successMessageText": "Așa mai vorbim! Rubla e în cădere, dar verzișorii stau sculați, haha. Așteaptă să te sune Peacekeeper, corporatistule.", "5a27d34586f7744e1115b327": "Înmânează $", @@ -18081,7 +17967,7 @@ "5a68665c86f774255929b4c7 description": "Când ai intrat în cameră ai văzut ceva ieșit din comun? Două cadavre? O asemenea atrocitate... nu poate fi doar o simplă coincidență. Și nu e de mirare, documentele pe care le-ai găsit provin de la niște cercetări în domeniul Imunologiei, și din ce am înțeles, au făcut progrese semnificative în domeniu. Semnătura de pe documente sugerează că cercetarea a fost supravegheată de către Șeful Serviciului Medical din Sanatoriu. E o persoană în vârstă, l-am întâlnit de câteva ori de Ziua Muncitorului în Sănătate. Deși a fost un savant venerabil, el a preferat liniștea de la țară peste agitația din laboratoare și de multe ori își petrecea timpul liber la Pădure, mergea pe-acolo cu o dubiță albă. Văzând succesul, eu cred că, a fost motivat să înceapă experimentele pe oameni, primul, cel mai probabil fiind el însuși, potrivit tradiției medicale. Oamenii de știință sunt întotdeauna așa. Găsește-i dubița și dacă se întâmplă să găseaști o probă de sânge, ar fi grozav.", "5a68665c86f774255929b4c7 failMessageText": "", "5a68665c86f774255929b4c7 successMessageText": "Mă doare să știu ca urmărim o baltă de sânge aici, dar trimit proba pentru analize oricum. Mulțumesc pentru muncă.", - "5a68770f86f774747d4b0d8b": "Găsește duba care a aparținut Șefului Serviciului Medical în Pădure", + "5a68770f86f774747d4b0d8b": "Găsește duba care a aparținut Șefului Serviciului Medical", "5a68776786f774759f1f55f6": "Ridică o mostră de sânge", "5a68777586f774747d4b0d9e": "Predă mostra de sânge", "5a68778c86f77423391f38f0": "Supraviețuiește și extrage-te din locație", @@ -18106,7 +17992,7 @@ "5a68669a86f774255929b4d4 declinePlayerMessage": "", "5a68669a86f774255929b4d4 completePlayerMessage": "", "5ac23c6186f7741247042bad name": "Armurier. Partea 1", - "5ac23c6186f7741247042bad description": "Salut, mercenare. Sunt foarte ocupat astăzi, iar unitatea programabilă de la PLC100 e defectă, așa că trecem direct la subiectul afaceri. Construiesc arme modificate pentru clienții mei și mi-ar prinde bine niște ajutor. \n\nVreau să asamblezi o pușcă de vânătoare MP-133, nu am timp pentru ea și mai ales, îmi lipsesc piesele. Arma trebuie să aiba ergonomie peste 47, un punctator laser, magazie de capacitate mare, și recul combinat mai mic de 850. Să o faci compacta, de 4 celule. Construiește una pentru mine, plătesc bine.", + "5ac23c6186f7741247042bad description": "Salut, mercenare. Da, eu sunt Mecanicul. Am ințeles că ai nevoie de ajutor? Nu prea am timp astăzi. Sunt foarte ocupat și unitatea de la PLC100 e defectă. Să nu mai vorbesc despre comenzile de arme... Oricum, uite la ce mă gândesc. Construiesc multe arme modificate pentru clienții mei și mi-ar prinde bine niște ajutor. Vreau să asamblezi o pușcă de vânătoare MP-133, nu am timp pentru ea și mai ales, îmi lipsesc piesele. Arma trebuie să aiba ergonomie peste 47, un punctator laser, magazie de capacitate mare, și recul combinat mai mic de 850. Să o faci compacta, de 4 celule. Construiește una pentru mine și apoi discutăm de ajutor.", "5ac23c6186f7741247042bad failMessageText": "", "5ac23c6186f7741247042bad successMessageText": "Ai asamblat-o? Reazămă-o acolo în colț, mulțumesc. Arată chiar bine, așa-i? Oricum, sunt foarte ocupat, nu pot sta în povești.", "5accd5e386f77463027e9397": "Modifică un MP-133 conform cu specificațiile primite", @@ -18135,7 +18021,7 @@ "5ac2428686f77412450b42bf declinePlayerMessage": "", "5ac2428686f77412450b42bf completePlayerMessage": "", "5ac242ab86f77412464f68b4 name": "Armurier. Partea a 16-a", - "5ac242ab86f77412464f68b4 description": "Am spus prea multe ultima oară. Asta pățesc când sunt singur o vreme cu gândurile mele. Îmi vin multe lucruri în minte cât stau aici și calibrez armele. M4 a fost splendid, mi-a fost cumpărat imediat. Un BEAR a trecut pe-aici recent, îi zice Lunetistul sau ceva de genu. Are nevoie de o pușcă Lobaev DVL, cu lunetă și dispozitiv multi-laser. Recul combinat sub 400, ergonomie mai bună de 40 și greutate sub 6.7 kg. A zis că ținta e la 2000 de metri depărtare. Tipul e pe bune, deci străduiește-te să iasă bine.", + "5ac242ab86f77412464f68b4 description": "Am spus prea multe ultima oară. Asta pățesc când sunt singur o vreme cu gândurile mele. Îmi vin multe lucruri în minte cât stau aici și calibrez armele. M4 a fost splendid, mi-a fost cumpărat imediat. Un BEAR a trecut pe-aici recent, îi zice Lunetistul sau ceva de genu. Are nevoie de o pușcă cu lunetă Lobaev Saboteur DVL, cu lunetă și dispozitiv multi-laser. Recul combinat sub 450, ergonomie mai bună de 40 și greutate sub 6.7 kg. A zis că ținta e la 2000 de metri depărtare. Tipul e pe bune, deci străduiește-te să iasă bine.", "5ac242ab86f77412464f68b4 failMessageText": "", "5ac242ab86f77412464f68b4 successMessageText": "Mulțumesc, lasă arma pe masă. O să i-o predau lui Di, ahem, Lunetistului.", "5acce08b86f7745f8521fa64": "Modifică un DVL-10 conform cu specificațiile primite", @@ -18315,7 +18201,7 @@ "5ae3267986f7742a413592fe declinePlayerMessage": "", "5ae3267986f7742a413592fe completePlayerMessage": "", "5ae3270f86f77445ba41d4dd name": "Armurier. Partea a 6-a", - "5ae3270f86f77445ba41d4dd description": "Ce crezi, toată suferința care s-a abătut asupra locuitorilor din orașul nostru e rezultatul acțiunilor societății, sau un proces controlat, și ăsta e doar începutul? Tot timpul, de când a venit individul tatuat cu fulger, mă gândesc la asta. Deși am decis pentru mine că și dacă e mâna invizibilă a cuiva, societatea a meritat-o. Noi, prin propriile acțiuni, cumpărând adidași sau chiar salată, i-am susținut pe cei care construiesc laboratoare și afaceri și apoi le folosesc ca să nu afunde în abis. Bun, iar vorbesc prostii, înapoi la treabă. Fă-mi rost de un AKM cu mâner Fortis Shift, amortizor de sunet și încărcător Magpul de 30. Ergonomia peste 40, reculul combinat sub 400, distanță optică peste 800 metri.", + "5ae3270f86f77445ba41d4dd description": "Ce crezi, toată suferința care s-a abătut asupra locuitorilor din orașul nostru e rezultatul acțiunilor societății, sau un proces controlat, și ăsta e doar începutul? Tot timpul, de când a venit individul tatuat cu fulger, mă gândesc la asta. Deși am decis pentru mine că și dacă e mâna invizibilă a cuiva, societatea a meritat-o. Noi, prin propriile acțiuni, cumpărând adidași sau chiar salată, i-am susținut pe cei care construiesc laboratoare și afaceri și apoi le folosesc ca să nu afunde în abis. Bun, iar vorbesc prostii, înapoi la treabă. Fă-mi rost de un AKM cu mâner Fortis Shift, amortizor de sunet, și încărcător Magpul de 30. Ergonomia peste 40, reculul combinat sub 400, distanță optică peste 800 metri.", "5ae3270f86f77445ba41d4dd failMessageText": "", "5ae3270f86f77445ba41d4dd successMessageText": "O armă confortabilă, muncă de maistru, mulțumesc. Voi anunța clientul că arma e pregătită.", "5ae3550b86f7741cf44fc799": "Modifică un AKM conform cu specificațiile primite", @@ -18325,7 +18211,7 @@ "5ae3270f86f77445ba41d4dd declinePlayerMessage": "", "5ae3270f86f77445ba41d4dd completePlayerMessage": "", "5ae3277186f7745973054106 name": "Armurier. Partea a 8-a", - "5ae3277186f7745973054106 description": "Am două rețele neuronale, unul identifică fețele pe camere și le compară cu baza de date, iar celălalt monitorizează și reacționează la tranzacțiile de criptomonede. Azi m-am decis să mai construiesc una care sa monitorizeze temperatura, umiditatea, presiunea și alți parametrii din ascunzătoarea mea, și printre altele să răspundă la stările mele. Să vedem ce iese. Am o comandă pentru un AKS-74N cu componente Zenit. Ergonomia să fie peste 65, reculul combinat sub 275, iar arma să ocupe maxim 10 celule. Cel mai important, să aibă uluc B-30 cu suport de șină B-31S, mânerul tactic RK-0, încărcător AK-12, lanternă Klesch-2IKS și atenuatorul de recul DTK-1, Zenit peste tot. Poate e cadou pentru un cetățean ajuns tocmai din Sankt Petersburg.", + "5ae3277186f7745973054106 description": "Am două rețele neuronale, unul identifică fețele pe camere și le compară cu baza de date, iar celălalt monitorizează și reacționează la tranzacțiile de criptomonede. Azi m-am decis să mai construiesc una care sa monitorizeze temperatura, umiditatea, presiunea și alți parametrii din ascunzătoarea mea, și printre altele să răspundă la stările mele. Să vedem ce iese. Este o comandă pentru un AKS-74N cu componente Zenit. Ergonomia să fie peste 65, reculul combinat sub 275, iar arma să ocupe maxim 10 celule. Cel mai important, să aibă uluc B30 cu suport de șină B-31S, mânerul frontal RK-0, încărător AK-12, lanternă Klesch-2IKS și atenuatorul de recul DTK-1, Zenit peste tot. Poate e cadou pentru un cetățean ajuns tocmai din Sankt Petersburg.", "5ae3277186f7745973054106 failMessageText": "", "5ae3277186f7745973054106 successMessageText": "Bun, ai terminatul Kalashnikovul Zenit? Perfect, lasă-l acolo pe cutie, mulțumesc. Poți veni mâine după altă comandă, dacă dorești.", "5ae3570b86f7746efa6b4494": "Modifică un AKS-74N conform cu specificațiile primite", @@ -18345,7 +18231,7 @@ "5ae327c886f7745c7b3f2f3f declinePlayerMessage": "", "5ae327c886f7745c7b3f2f3f completePlayerMessage": "", "5ae3280386f7742a41359364 name": "Armurier. Partea a 15-a", - "5ae3280386f7742a41359364 description": "În timp ce mă ocupam de rețeaua neuronală am început să ma întreb cum suntem noi diferiți de ea, și când am putea să ne înlocuim creierele de muritori cu tipul ăsta de sisteme. Ce crezi, o să vină ziua aceea? Eu zic că da, și foarte curând, deja nu mai înțelegem ce procese se întâmplă în interiorul circuitelor neuronale, există doar semnal de intrare și rezultatul, și cum a învățat cu propriile reguli interne, și-a format legături neuronale în interiorul său. Cum e diferită de noi? Ți-ar place să trăiești într-o lume unde doar mintea și imaginația ta sunt limita? Adevărul e, cred eu, că viața într-o asemenea lume nu poate fi mai bună decât a noastră dacă nu există un scop, și nu poate exista un scop pentru că ești nemuritor și omnipotent... De data asta avem nevoie de un AS VAL. Pat GL-SHOCK, dispozitiv tactic AN/PEQ-15, vizor infraroșu NSPU-M și încărcător de 30. Ergonomia peste 33 și reculul combinat sub 220.", + "5ae3280386f7742a41359364 description": "Cât timp eram ocupat cu rețeaua neuronală am început să ma întreb cum suntem noi diferiți de ea, și când am putea să ne înlocuim creierele de muritori cu felul ăsta de sisteme. Ce crezi, o să vină ziua aceea? Eu zic că da, foarte curând, deja nu ne putem da seama ce procese se întâmplă în interiorul circuitelor neuronale, există doar semnal de intrare și rezultatul, și cum a învățat cu propriile reguli interne, și-a format legături neuronale în interiorul său. Cum e diferită de noi? Ți-ar place să trăiești într-o lume unde doar mintea și imaginația ta sunt limita? Adevarul e, cred eu, că viața intr-o asemenea lume nu poate fi mai bună decât a noastră dacă nu există un scop, și nu poate exista un scop pentru că ești nemuritor și omnipotent... De data asta avem nevoie de un AS VAL. Pat GL-SHOCK, dispozitiv tactic AN/PEQ-15, vizor infraroșu NSPU-M și încărcător de 30. Ergonomia peste 33 și reculul combinat sub 220.", "5ae3280386f7742a41359364 failMessageText": "", "5ae3280386f7742a41359364 successMessageText": "Gata deja arma? Perfect, dă-mi-o. Am o cheie interesantă aici, poate iți folosește. Deschide ușa de la magazinul de arme KIBA din ULTRA. Ai șanse mari să găsești acolo atașamente bune, îți vor fi de folos în munca de armurier.", "5ae4479686f7744f6c79b7b3": "Modifică un AS-VAL conform cu specificațiile primite", @@ -18360,7 +18246,7 @@ "5ae448a386f7744d3730fff0 successMessageText": "Bun venit în echipa, frate. Putem să începem?", "5ae44c6886f7744f1a7eb2b8": "Atinge nivelul 2 de încredere cu Croitorul", "5af414f286f774522f59b0d7": "", - "658d7f1277ede9bc4e90d5d6": "Atinge nivelul 2 de încredere cu Croitorul", + "658d7f1277ede9bc4e90d5d6": "Reach level 2 loyalty with Ragman", "5ae448a386f7744d3730fff0 acceptPlayerMessage": "", "5ae448a386f7744d3730fff0 declinePlayerMessage": "", "5ae448a386f7744d3730fff0 completePlayerMessage": "", @@ -18461,13 +18347,13 @@ "5ae4495c86f7744e87761355 declinePlayerMessage": "", "5ae4495c86f7744e87761355 completePlayerMessage": "", "5ae4496986f774459e77beb6 name": "Cusătura - Partea a 3-a", - "5ae4496986f774459e77beb6 description": "Da, frate, aș fi îngropat până-n gât în muncă dacă n-ai fi tu. Fac totul ca să țin orașul în viață, pentru asta fac toate manevrele. Acum mă gândesc să înființez o fabrică de îmbrăcăminte, ăsta e planul meu secret, să cos și să vând veste, hamuri și armuri. Ca în marile case de modă europene, haha. Acum am nevoie să știu ce-i înăuntrul unei armuri 6B13, cea verde, grea de tot. Trebuie sa o studiez, cum se desface, pe ce e bazată. Ca și ultima oară, adu-mi doua bucăți, una distrusă și una mai întreagă.", + "5ae4496986f774459e77beb6 description": "Da, frate, aș fi îngropat până-n gât în muncă dacă n-ai fi tu. Fac totul ca să țin orașul în viață, pentru asta fac toate manevrele. Acum mă gândesc să înființez o fabrică de îmbrăcăminte, ăsta e planul meu secret, să cos și să vând veste, hamuri și armuri. Ca în marile case de modă europene, haha. Acum am nevoie să știu ce-i înauntrul unei armuri 6B43, cea verde, grea de tot. Trebuie sa o studiez, cum se desface, pe ce e bazată. Ca și ultima oară, adu-mi doua bucăți, una distrusă și una mai întreagă.", "5ae4496986f774459e77beb6 failMessageText": "", "5ae4496986f774459e77beb6 successMessageText": "Ok, le ai? Dă-mi-le, hai să vedem. Pff, îs grele ca pula! Bun, le verific mai tarziu. Poftim, mulțumesc pentru ajutor.", - "5ae9bb6986f77415a869b40b": "Obține în raid o armură 6B13 cu durabilitate între 0-50%", - "5ae9bc6e86f7746e0026222c": "Predă armura găsită în raid 6B12 cu durabilitate între 0-50%", - "5ae9be7f86f7746c6337153d": "Obține în raid o armură 6B13 cu durabilitate între 50-100%", - "5ae9bea886f77468ab400e64": "Predă armura găsită în raid 6B12 cu durabilitate între 50-100%", + "5ae9bb6986f77415a869b40b": "Obține o armură 6B43 6A Zabralo-Sh cu durabilitate între 0-50%", + "5ae9bc6e86f7746e0026222c": "Predă armura", + "5ae9be7f86f7746c6337153d": "Obține o armură 6B43 6A Zabralo-Sh cu durabilitate între 50-100%", + "5ae9bea886f77468ab400e64": "Predă armura", "5ae4496986f774459e77beb6 acceptPlayerMessage": "", "5ae4496986f774459e77beb6 declinePlayerMessage": "", "5ae4496986f774459e77beb6 completePlayerMessage": "", @@ -18562,7 +18448,7 @@ "5b47749f86f7746c5d6a5fd4 declinePlayerMessage": "", "5b47749f86f7746c5d6a5fd4 completePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 name": "Armurier. Partea a 12-a", - "5b47799d86f7746c5d6a5fd8 description": "OK, avem o comandă urgentă, omul se grăbește. A apărut un tip, a zis că are de reglat o problemă cu Reshala. Reshala are o gașcă, pe niște băieți de la Uzină și acum sunt undeva pe lângă cămine. Tipul nostru vrea un MPX, cu mâner pistol Tactical Dynamics Schelet, ascunzător de flamă Annihilator și o lanternă tactică LAS/TAC 2. Bătaia optică sa fie undeva la 300 de metri sau mai mult, ergonomia peste 52, greutatea sub 4 kg și reculul combinat sub 225. Să nu spui cuiva pentru ce îți trebuie arma, dacă află Reshala atunci n-o să ne fie bine. Gașca lui e formată din veterani de armată, niște băieți răi.", + "5b47799d86f7746c5d6a5fd8 description": "OK, avem o comandă urgentă, omul se grăbește. A apărut un tip, a zis că are de reglat o problemă cu Reshala. Reshala are o gașcă, pe niște băieți de la Uzină și acum sunt undeva pe lângă cămine. Tipul nostru vrea un MPX, cu mâner pistol Tactical Dynamics Schelet, ascunzător de flamă Annihilator și o lanternă tactică LAS/TAC 2. Bătaia optică sa fie undeva la 300 de metri sau mai mult, ergonomia peste 52, greutatea sub 4 kg și reculul combinat sub 225. Să nu spui cuiva pentru ce e arma, dacă află Reshala atunci n-o să ne fie bine. Gașca lui e formată din veterani de armată, niște băieți răi.", "5b47799d86f7746c5d6a5fd8 failMessageText": "", "5b47799d86f7746c5d6a5fd8 successMessageText": "Haide, ne grăbim. Trebuie să livrez urgent arma. Sper că nu ai spus nimănui pentru ce e MPX-ul ăsta. Să-i ținem pumnii cumpărătorului.", "5b477b3b86f77401da02e6c4": "Modifică un SIG MPX conform cu specificațiile primite", @@ -18572,7 +18458,7 @@ "5b47799d86f7746c5d6a5fd8 declinePlayerMessage": "", "5b47799d86f7746c5d6a5fd8 completePlayerMessage": "", "5b477b6f86f7747290681823 name": "Armurier. Partea a 18-a", - "5b477b6f86f7747290681823 description": "Vreau să incerc să o învăt pe Lucia să facă diferența dintre adevăr și minciună. Dacă rezultatul e cel puțin 90% corect, atunci va fi interesant să ascult ce-au avut de zis politicienii și balenele de la TerraGroup, care până ieri vorbeau de idealuri și țeluri nobile, bazându-se pe beneficiile zonei noastre economice prin care promiteau un viitor și mai strălucit. Câte din astea au fost minciuni sfruntate? Eu zic ca toate. Am o comandă pentru un AKMN ediție Magpul, asta înseamnă că ulucul, patul și mânerul pistol să fie MOE. Totul negru. Mai mult, un amortizor Rotor 43 și mâner tactic Magpul M-LOK AFG (Negru) și un vizor hibrid EOTech HHS-1, recul combinat sub 350, ergonomie peste 50, greutate sub 5 kg și distanță optică peste 500.", + "5b477b6f86f7747290681823 description": "Vreau să incerc să o învăt pe Lucia să facă diferența dintre adevăr și minciună. Dacă rezultatul e cel puțin 90% corect, atunci va fi interesant să ascult ce-au avut de zis politicienii și balenele de la TerraGroup, care până ieri vorbeau de idealuri și țeluri nobile, bazându-se pe beneficiile zonei noastre economice prin care promiteau un viitor și mai strălucit. Câte din astea au fost minciuni sfruntate? Eu zic ca toate. Am o comandă pentru un AKMN ediție Magpul, asta înseamnă că ulucul, patul și mânerul pistol să fie MOE. Totul negru. Mai mult, un amortizor Rotor 43 și mâner tactic Magpul M-LOK AFG (Negru), recul combinat sub 350, ergonomie peste 50, greutate sub 5 kb și distanță optică peste 500.", "5b477b6f86f7747290681823 failMessageText": "", "5b477b6f86f7747290681823 successMessageText": "Mulțumesc, las-o aici undeva. Sunt un pic ocupat acum, ne vedem mai târziu.", "5b477f1486f7743009493232": "Modifică un AKMN conform cu specificațiile primite", @@ -18582,7 +18468,7 @@ "5b477b6f86f7747290681823 declinePlayerMessage": "", "5b477b6f86f7747290681823 completePlayerMessage": "", "5b477f7686f7744d1b23c4d2 name": "Armurier. Partea a 20-a", - "5b477f7686f7744d1b23c4d2 description": "Asta e pentru Lunetist, se pare ca se pregătește să meargă în pădure o săptămână ca să vâneze niște criminali. Asta pentru că are un rucsac plin de MRE, flintă și amnar, baterii și apă. L-a lăsat la mine momentan. Are nevoie de un M1A cu o șină UltiMAK M8 Forward Optic, lunetă Nightforce ATACR 7-35-56, colimator compact Micro T1, dispozitiv tactic Holosun LS321 și încărcător de 20 de cartușe. Ergonomia să fie peste 20, recul combinat sub 400 și greutatea maximă 7.3 kg.", + "5b477f7686f7744d1b23c4d2 description": "Asta e pentru Lunetist, se pare ca se pregătește să meargă în pădure o săptămână ca să vâneze niște criminali. Asta pentru că are un rucsac plin de MRE, flintă și amnar, baterii și apă. L-a lăsat la mine momentan. Are nevoie de un M1A cu o șină UltiMAK M8 Forward Optic, lunetă Nightforce ATACR 7-35-56, colimator compact Micro T1, dispozitiv tactic Holosun LS321. Ergonomia să fie peste 20, recul combinat sub 400 și greutatea maximă 7.3 kg.", "5b477f7686f7744d1b23c4d2 failMessageText": "", "5b477f7686f7744d1b23c4d2 successMessageText": "E gata pușca? Perfect. Mă gândesc că te-ai prins deja că pe Lunetist îl cheamă Dima, mi-a scăpat acum ceva vreme. Nici o vorba despre el nimănui, sper că înțelegi.", "5b47824386f7744d190d8dd1": "Modifică un M1A conform cu specificațiile primite", @@ -18686,7 +18572,7 @@ "5b478ff486f7744d184ecbbf declinePlayerMessage": "", "5b478ff486f7744d184ecbbf completePlayerMessage": "", "5b47926a86f7747ccc057c15 name": "Înarmat cu Informații", - "5b47926a86f7747ccc057c15 description": "Ooo, ce faaaaaci! Hai să-ți spun ceva. M-am stabilit comod în zona asta, dar parcă ceva nu e în regulă. Adică n-am deloc încredere în ce aduce ziua de mâine! Lasă, m-a prins niște tristețe... Oricum, mi-ar place să rămân bine informat cu ce se întâmplă în cartier, asta ca să ma simt mai liniștit. Îți dau o listă de locuri dubioase unde aș vrea să instalezi niște camere de supraveghere inteligente. Deci, vreau supraveghere în trei locuri: drumul spre port din Vamă, să o ascunzi undeva în tufe lângă containerele albastre, a doua să bată spre pontonul de la gaterul din Pădure, iar ultima să bată spre intrarea în Kiba din mallul Ultra. Nu ma pricep la chestiile astea, o să iți explice baietii ce și cum. Camerele pot fi luate de la Mecanic, el le vinde. Evident, nu-i spune nimic despre afacerea noastră.", + "5b47926a86f7747ccc057c15 description": "Ooo, ce faaaaaci! Hai să-ți spun ceva. M-am stabilit comod în zona asta, dar parcă ceva nu e în regulă. Adică n-am deloc încredere în ce aduce ziua de mâine! Lasă, m-a prins niște tristețe... Oricum, mi-ar place să rămân bine informat cu ce se întâmplă în cartier, asta ca să ma simt mai liniștit. Îți dau o listă de locuri dubioase unde aș vrea să instalezi niște camere de supraveghere inteligente. Deci, vreau supraveghere în trei locuri: drumul spre port din Vamă, să o ascunzi undeva în tufe langă containerele albastre, a doua să bată spre pontonul de la gaterul din Pădure, iar ultima să bată spre intrarea în Kiba din mallul Ultra. Nu ma pricep la chestiile astea, o să iți explice baietii ce și cum. Camerele pot fi găsite la Mecanic, el le vinde. Evident, nu-i spune nimic despre afacerea noastră.", "5b47926a86f7747ccc057c15 failMessageText": "", "5b47926a86f7747ccc057c15 successMessageText": "Toată tehnologia asta clar nu-i de mine, imaginea e cu pureci și semnalul e prost, dar cu toate astea am văzut niște ”șobolani grași”. Mersi, ai fost de ajutor!", "5b47932586f7747cc908b5dd": "Instalează o cameră WI-FI îndreptată spre pontonul de la gater în Pădure", @@ -18717,10 +18603,10 @@ "5b4794cb86f774598100d5d4 declinePlayerMessage": "", "5b4794cb86f774598100d5d4 completePlayerMessage": "", "5b4795fb86f7745876267770 name": "Momeală", - "5b4795fb86f7745876267770 description": "Dacă ești hotărât atunci hai înăuntru, am o misiune pentru tine! Camerele montate de tine funcționează bine. Am identificat oamenii care trebuie, cei care se înțeleg bine cu Scavii. Pe scurt trebuie să îi momim puțin, de dragul păcii. Sunt prea nebuni, bastarzii, omoară fără discriminare, mi-au speriat toți clienții, nemernicii. Ideea e că, tâlhării ăștia sunt din bande diferite, fiecare are nevoie de altă abordare. Ne-am înțeles la trei lanțuri de aur pentru fiecare, că să pornim discuțiile, și apoi vedem unde ajungem... N-am destule lanțuri pentru toți, dar ești un operator fin, faci tu rost de ele imediat. Îți arăt eu unde să le ascunzi. Mai trebuie să te asiguri că nu-s PMC in ULTRA la ora respectivă, altfel n-o să poată să ajungă oamenii care trebuie să ridice marfă.", + "5b4795fb86f7745876267770 description": "Dacă ești hotărât atunci hai înăuntru, am o misiune pentru tine! Camerele montate de tine au dat roade. Am identificat oamenii care trebuie, cei care se înțeleg bine cu Scavii. Pe scurt trebuie să îi momim puțin, de dragul păcii. Sunt prea nebuni, bastarzii, omoară fără discriminare, mi-au speriat toți clienții, nemernicii. Ideea e că, tâlhării ăștia sunt din bande diferite, fiecare are nevoie de altă abordare. Ne-am înțeles la trei lanțuri de aur pentru fiecare, că să pornim discuțiile, și apoi vedem unde ajungem... N-am destule lanțuri pentru toți, dar ești un operator fin, faci tu rost de ele imediat. Îți arăt eu unde să le ascunzi. Mai trebuie să te asiguri că nu-s PMC in ULTRA la ora respectivă, altfel n-o să poată să ajungă oamenii care trebuie să ridice marfă.", "5b4795fb86f7745876267770 failMessageText": "", "5b4795fb86f7745876267770 successMessageText": "Scavii s-au calmat puțin, sper să nu se învețe să ceară mai mult, dar aia e problema mea, nu a ta. Bravo!", - "5b47968e86f7745877352c28": "Ascunde lanțuri de aur sub saltea lângă BTR-82A în magazinul Generic din Ultra", + "5b47968e86f7745877352c28": "Ascunde lanțuri de aur sub saltea lângă BTR-80A în magazinul Generic din Ultra", "5b4796c086f7745877352c2c": "Ascunde lanțuri de aur în cuptorul cu microunde de la etajul 2 din căminul din Vamă", "5b47971086f774587877ad34": "Ascunde lanțuri de aur în baraca din mijloc de la gaterul din Pădure", "5b4f0ba486f7747a2637c4fb": "", @@ -18762,10 +18648,10 @@ "5bc480a686f7741af0342e29 description": "Mă bucur că încă trăiești, testele Lunetistului sunt foarte grele. Hai să așteptăm puțin înainte să continuăm. Urmează o muncă de lunetist mult mai grea, sfatul meu e să stăpânești cât mai bine armele cu repetiție. Întoarce-te când ești pregătit.", "5bc480a686f7741af0342e29 failMessageText": "", "5bc480a686f7741af0342e29 successMessageText": "Pregătit? La treabă atunci. Lunetistul a întrebat de tine.", - "5bc4813886f774226045cb9a": "Elimină operatori PMC folosind arme cu repetiție(zăvor) la o distanță mai mare de 80 de metri", + "5bc4813886f774226045cb9a": "Atinge nivelul de Lunetist necesar", "5bdabf3386f7743e171249ae": "", - "655c858c677faf40024130d7": "Elimină PMC folosind arme cu repetiție(zăvor) la o distanță de ce puțin 80 de metri", - "657b0567ec71635f16471dd2": "Elimină operatori PMC folosind arme cu repetiție(zăvor) la o distanță mai mare de 80 de metri", + "655c858c677faf40024130d7": "Kill PMCs using bolt rifles from a distance of at least 80m", + "657b0567ec71635f16471dd2": "Eliminate PMC operatives from over 80 meters away while using a bolt-action rifle", "5bc480a686f7741af0342e29 acceptPlayerMessage": "", "5bc480a686f7741af0342e29 declinePlayerMessage": "", "5bc480a686f7741af0342e29 completePlayerMessage": "", @@ -18802,12 +18688,12 @@ "5bc4893c86f774626f5ebf3e successMessageText": "Ca să fi inteligent nu-i destul doar să pari inteligent. Bun, o arma clasică cu zăvor ți-ar fi de folos aici. Lunetistul nu mai spune nimic, așa că hai să așteptăm. Te anunț daca ia legătura cu mine.", "5bc48aed86f77452c947ce67": "Elimină operatori PMC cu lovitură la cap folosind armă cu repetiție fără să mori", "5bdabf7186f7743e152e867d": "", - "64b6a5a525251516d7685428": "Nu ai voie să mori sau să părăsești raidul cât timp misiunea nu e predată clientului (Status: Decedat, Dezertat, DIA sau Retras)", + "64b6a5a525251516d7685428": "Nu ai voie să mori sau să părăsești raidul cât timp misiunea este activă (Status: Decedat, Dezertat, DIA sau Retras)", "5bc4893c86f774626f5ebf3e acceptPlayerMessage": "", "5bc4893c86f774626f5ebf3e declinePlayerMessage": "", "5bc4893c86f774626f5ebf3e completePlayerMessage": "", "5c0bbaa886f7746941031d82 name": "Țeapa", - "5c0bbaa886f7746941031d82 description": "Deci, uite de ce te-am chemat. Am prins o cârtiță în trupa mea, puțoiul sifona informații despre rețeaua mea de aprovizionare și punctele de interes. Iar eu mă întrebam ce pula se întâmplă. Oamenii mei l-au interogat și au aflat că face parte dintr-o bandă locală, cei din căminele de la Vamă. Acum mă gândesc să le dau niște informații false despre ”următorul transport”. Iar băieții mei o să-i elimine atunci când vin după el. Chestia e că informația trebuie livrată fără tam-tam, ca și cum ai fi unul de-a lor, înțelegi? Trebuie să ascunzi stickul USB cu informația falsă, băieții l-au lăsat în mașina roșie arsă pe podul din Vamă. Le-a fost frică să se apropie de cămin. Ascunde stickul împreună cu un SV-98 și un Roler, așa cum ne-am înțeles. Și cel mai important lucru: să nu le faci ceva Gunoierilor din Vamă, nici înainte și nici când termini, totul în liniște.", + "5c0bbaa886f7746941031d82 description": "Deci, uite de ce te-am chemat. Am prins o cârtiță în trupa mea, puțoiul sifona informații despre rețeaua mea de aprovizionare și punctele de interes. Iar eu mă întrebam ce pula se întâmplă. Oamenii mei l-au interogat și au aflat că face parte dintr-o bandă locală, cei din căminele de la Vamă. Acum mă gândesc să le dau niște informații false despre ”următorul transport”. Iar băieții mei o să-i elimine atunci când vin după el. Chestia e că informația trebuie livrată fără tam-tam, ca și cum ai fi unul de-a lor, înțelegi? Trebuie să ascunzi stickul USB cu informația falsă, băieții l-au lasat în mașina roșie arsă pe pod. Le-a fost frică să se apropie de cămin. Ascunde stickul împreună cu un SV-98 și un Roler, așa cum ne-am înțeles. Și cel mai important lucru: să nu le faci ceva Gunoierilor, nici înainte și nici când termini, totul în liniște.", "5c0bbaa886f7746941031d82 failMessageText": "Ce pula mea, ești prost? De ce-ai tras? Acum nu ne mai putem apropia de cămine. O să stea de pază multă vreme... Cum pula le mai dăm țeapa acum? Ce prostii vorbești acolo? Ce căcat de transmițător? Marș în pula mea!", "5c0bbaa886f7746941031d82 successMessageText": "Se pare ca totul merge bine, băieții mei sunt la locație, și cred că va fi ultima surpriză pentru fraierii ăia. Mersi de ajutor.", "5c0bc32986f7743e4d1002d2": "Ascunde pușca SV-98 între gunoaie vis-a-vis de scări la ultimul etaj din cămin", @@ -18821,7 +18707,7 @@ "5c0bbaa886f7746941031d82 declinePlayerMessage": "", "5c0bbaa886f7746941031d82 completePlayerMessage": "", "5c0bc91486f7746ab41857a2 name": "Amortizor", - "5c0bc91486f7746ab41857a2 description": "Salut, cum ți-e viața? Știi, uneori, trebuie să descarci arma în cineva când ești prins la înghesuială, și trebuie să o faci în liniște și eficient. De exemplu, eu prefer calibru 12, și habar n-am de ce naiba BEAR și USEC nu apreciază calibrul ăsta, e calibru adevărat, mă înțelegi? Trebuie să te aproprii cât de mult posibil, și, dacă ai amortizor, poți să-i dobori iar cei de pe cealaltă parte a zidului nici nu clipesc. Lovește în liniște și lovește-i tare. Trebuie să stăpânești acest lucru, în timp ce eu o să văd la ce să mai folosim talentele tale.", + "5c0bc91486f7746ab41857a2 description": "Salut, cum ți-e viața? Știi, uneori, trebuie să descarci arma în cineva când ești prins la inghesuială, și trebuie să o faci în liniște și eficient. De exemplu, eu prefer calibru 12, iar eu habar nu aveam de ce naiba BEAR și USEC nu aprecieză calibrul ăsta, e calibru adevărat, mă înțelegi? Trebuie să te aproprii cât de mult posibil, și, dacă ai amortizor, poți să-i dobori, iar cei de pe cealaltă parte a zidului nici nu clipesc. Lovește în liniște și lovește-i tare. Trebuie să stăpânești acest lucru, în timp ce eu o să văd la ce folosim talentele tale.", "5c0bc91486f7746ab41857a2 failMessageText": "", "5c0bc91486f7746ab41857a2 successMessageText": "Te-ai descurcat bine, acum ai respectul meu! Am să mă gândesc la tine dacă voi avea ceva interesant de făcut.", "5c0bc95086f7746e784f39ec": "Elimină Scavi folosind puști de vânătoare calibrul 12 cu amortizor", @@ -18835,7 +18721,7 @@ "5c0bd01e86f7747cdd799e56 description": "Să trăiești, mercenare. În curând voi avea o întâlnire la miez de noapte. E foarte importanta dar, din păcate, am aflat că și err, colegii tăi, preferă să iasă la muncă noaptea. Am impresia că sunt aceiași care lucrează fără frică și ziua. Am nevoie să te ocupi de ei. Nu vreau să fiu întrerupt de criminali.", "5c0bd01e86f7747cdd799e56 failMessageText": "", "5c0bd01e86f7747cdd799e56 successMessageText": "Treabă bună, prietene! Întâlnirea a decurs în liniște, conform planului.", - "5c1242fa86f7742aa04fed52": "Elimină operatori PMC între orele 22:00 și 05:00 (Exclus Uzină și Laborator)", + "5c1242fa86f7742aa04fed52": "Elimină operatori PMC între orele 22:00 și 05:00 (Exclus Uzină)", "5c17d05e86f77430a64c6c66": "", "5c20cd8f86f774337d77b7ef": "", "5c0bd01e86f7747cdd799e56 acceptPlayerMessage": "", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "Elimină operatori PMC cu lovitură la cap folosind arme cu repetiție(zăvor) în zona Farului.", "63aec6f256503c322a190374": "Elimină operatori PMC cu lovitură la cap folosind arme cu repetiție(zăvor) pe Străzile din Tarkov", "64b694c8a857ea477002a408": "Elimină operatori PMC cu lovitură la cap folosind arme cu repetiție(zăvor) în Zona ULTRA", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Elimină Scavi îmbrăcat în uniformă ONU (armura MF-UNTAR, cască UNTAR, armă M4A1) pe Străzile Tarkov", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "Supraviețuiește și extrage-te din locația ”Rezervă” cu calificativul ”Supraviețuit”", "629f08e7d285f377953b2af1": "Supraviețuiește și extrage-te din locația ”Farul” cu calificativul ”Supraviețuit”", "63aec66556503c322a190372": "Supraviețuiește și extrage-te din locația ”Străzile” cu calificativul ”Supraviețuit”", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19035,7 +18917,7 @@ "5c1141f386f77430ff393792 declinePlayerMessage": "", "5c1141f386f77430ff393792 completePlayerMessage": "", "5c1234c286f77406fa13baeb name": "Scandal", - "5c1234c286f77406fa13baeb description": "Salut, omule! Auzi cum se bat proștii între ei? E haos afara. În schimb, aici înăuntru viața e frumoasă, din păcate băieții mei sunt și ei prinși în bătaie. Am încredere în ei, știu că nu-s retardați, dar tot au nevoie de ajutor.\n\nUite care-i planul: bandă lor poartă același fel de haine, luptătorii au Ushanka pe cap, veste de pescar și folosesc puști de vânătoare. Niște clovni, nu-i așa? Ce-ar trebui să faci tu este să te îmbraci ca unul din ei (Vestă de Pescar, Ushanka pe cap, și o pușcă de vânătoare MP) și să elimini PMC. Nu-mi pasă de facțiune, vreau să-i provoci pe PMC să se bată cu ei. Înțelegi ce trebuie să se întâmple, da?", + "5c1234c286f77406fa13baeb description": "Informațiile false au dat rezultate, omule! Dobitocii au vrut să-mi prindă curierii în ambuscadă dar i-am surprins eu, haha. În schimb acum avem probleme mai grave cu ei. Chiar dacă oamenii mei nu-s complet inutili, aș aprecia puțin ajutor. Uite care-i planul: bandă lor poartă același fel de haine, luptătorii au Ushanka pe cap, veste de Scav și folosesc puști de vânătoare. Niște clowni, nu-i așa? Ce-ar trebui să faci tu, e să te îmbraci ca unul din ei (Vestă de Gunoier, Ushanka pe cap, și o pușcă de vânătoare MP) și să elimini PMC. Nu-mi pasă de facțiune, vreau să-i provoci pe PMC să se bată cu ei. Înțelegi ce trebuie să se întâmple, da?", "5c1234c286f77406fa13baeb failMessageText": "", "5c1234c286f77406fa13baeb successMessageText": "Am auzit că-n Vamă e al Treilea Război Mondial acum, BEAR și USEC crapă Scavi în stânga și-n dreapta! Mișto, treabă bună. Aici ai banii, cum am promis.", "5c1fa9c986f7740de474cb3d": "Elimină operatori PMC purtând echipamentul potrivit în Vamă", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Atinge nivelul 4 de loialitate cu Doctorița", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -19207,7 +19088,7 @@ "62a6ffaa7230237f257cac2c": "Predă articol găsit în raid: Legitimație Presă (pe numele NoiceGuy)", "62a6ffb4a9a0ea77981b57d5": "Predă articol găsit în raid: Axel figurină papagal", "62a6ffbcec21e50cad3b6708": "Predă articol găsit în raid: jucărie pluș Amicul BEAR", - "65b10c6a8511b7ef8694e060": "Predă articol găsit în raid: Glorious E mască blindată ușoară", + "65b10c6a8511b7ef8694e060": "Hand over the found in raid item: Glorious E lightweight armored mask", "5c51aac186f77432ea65c552 acceptPlayerMessage": "", "5c51aac186f77432ea65c552 declinePlayerMessage": "", "5c51aac186f77432ea65c552 completePlayerMessage": "", @@ -19227,9 +19108,9 @@ "5d24b81486f77439c92d6ba8 description": "Salutare! Am fost cu ochii pe tine de multa vreme. Am auzit de tot ce-ai făcut, și bine și rău. În vremuri tulburi e greu să rămâi neschimbat, trebuie să alegi de ce parte ești. Așa că iată-mă de partea celor care curață pământul de diverse infecții, cum ar fi cele care ne trag mai adânc în abisul întunecat. Dacă vrei să mi te alături mi-ar prinde bine orice ajutor. Mecanicul mi-a prezentat istoricul tău, spune că mă pot baza pe tine. Și oricum așa s-a nimerit că nu mai am puterea să stau deoparte de ce se întâmplă în jur. La început am zis că e mai bine să stau și să aștept în sălbăticie, aici în rezervația mea. Dar după ce-am văzut ce fac bandiții locali, toate crimele și jafurile, ce-au făcut cu orașul... Sigur am nevoie de serviciile tale. Dar înainte de toate, am nevoie de provizii. Viața de pustnic mi-a consumat resursele.", "5d24b81486f77439c92d6ba8 failMessageText": "", "5d24b81486f77439c92d6ba8 successMessageText": "Mulțumesc. Mâncarea e greu de obținut în vremurile noastre, și e greu de supraviețuit fără ea. Bun, putem discuta afaceri acum, când ai și tu timp. Mai treci pe la mine, băiete.", - "5d24ba7886f77439c92d6baa": "Predă rații Iskra găsite în raid", - "5d24bb4886f77439c92d6bad": "Predă pachete de supă instantă găsite în raid", - "5d24bb7286f7741f7956be74": "Predă Conserve de Vită (Mari) găsite în raid", + "5d24ba7886f77439c92d6baa": "Găsește rații Iskra în raid", + "5d24bb4886f77439c92d6bad": "Găsește crutoane uscate Emelya în raid", + "5d24bb7286f7741f7956be74": "Găsește Conserve de Vită (Mari) în raid", "5d76276186f774454c5360bc": "", "5d77d51c86f7742fa65b6608": "", "5d24b81486f77439c92d6ba8 acceptPlayerMessage": "", @@ -19481,7 +19362,7 @@ "5d25e4ad86f77443e625e387 failMessageText": "", "5d25e4ad86f77443e625e387 successMessageText": "Ai găsit-o? Nu cred! Dă-mi-o! Așteaptă! Poftim, ia asta. Acum câteva zile am găsit un USEC rănit grav in Pădure. Am încercat să-l ajut dar săracul nu a supraviețuit. Am găsit cheia asta în rucsacul lui. Pare să fie de la o ascunzătoare de undeva din zona stațiunii balneare. Cred că ți-ar fi de folos.", "5d27522686f774304e316405": "Predă albumul cu poze", - "5d357e0e86f7745b3f307c56": "Găsește camera Pădurarului cu vedere la mare în Stațiunea Balneară de pe Litoral", + "5d357e0e86f7745b3f307c56": "Găsește camera Pădurarului cu vedere la mare în Stațiunea Balneară", "5d357e8786f7745b5e66a51a": "Găsește albumul foto al Vânătorului", "5d778e6c86f77461b27a235d": "", "5d778e7c86f7742fa901bc7c": "", @@ -19904,9 +19785,9 @@ "5edab736cc183c769d778bc2 description": "Bună ziua. Cred că e evident că în situația noastră, orice om cu pregătire medicală e mai valoros decât aurul, mai ales doctorii practicanți. Am auzit despre un astfel de doctor. Mi s-a spus că cineva pe Litoral tratează localnici și le vinde medicamente. Am trimis niște grupuri acolo, trebuie să găsească doctorul și să negocieze cu el, să-i ofere condiții bune. Astăzi am pierdut legătura cu toate grupurile. Avem nevoie de medicamente, avem clienți... ahem, oameni de care trebuie să avem grijă. Găsește-mi oamenii și află ce s-a întâmplat.", "5edab736cc183c769d778bc2 failMessageText": "", "5edab736cc183c769d778bc2 successMessageText": "Toate trei grupurile distruse? Nu înțeleg cum s-a putut întâmpla. Nu trebuiau să atragă atenția și nici să se bată cu cineva. Aveau de negociat o înțelegere foarte profitabilă. Se pare că lucrurile au mers foarte strâmb.", - "5edab7d3cc183c769d778bc5": "Găsește grupul trimis la Sanatoriul de pe Litoral", - "5edab8890880da21347b3826": "Găsește grupul trimis la pontonul de pe Litoral", - "5edab8e216d985118871ba18": "Găsește grupul trimis la vilele de pe Litoral", + "5edab7d3cc183c769d778bc5": "Găsește grupul trimis la Sanatoriu", + "5edab8890880da21347b3826": "Găsește grupul trimis la ponton", + "5edab8e216d985118871ba18": "Găsește grupul trimis la vile", "5edababacecc0069284c0ec7": "", "5f03969a51823847c253afa0": "Supraviețuiește și extrage-te din locație", "5f104ae158bd417a8a3e9d8f": "", @@ -19919,9 +19800,9 @@ "5edaba7c0c502106f869bc02 failMessageText": "", "5edaba7c0c502106f869bc02 successMessageText": "Ai adus trusele? Lasă-le în cutia aceea, va trebui să le dezinfectez bine, nu e clar pe unde au fost. Poți vedea clar că e într-o situație dificilă, totul e acoperit cu sânge, condiții insalubre. Asta e treaba mea deja. Am să-i ofer lui Sanitar trusele înapoi împreună cu scrisoarea cu ajutorul unui localnic mituit, ca să înțeleagă de unde sunt.", "5edabacabcf60e4a143cb29f": "", - "5edabb0b0c502106f869bc03": "Găsește trusa chirurgicală cu simbol albastru a lui Sanitar pe Litoral", + "5edabb0b0c502106f869bc03": "Găsește trusa chirurgicală cu simbol albastru a lui Sanitar", "5edabb950c502106f869bc04": "Predă trusa chirurgicală a lui Sanitar", - "5edabbff0880da21347b382b": "Găsește oftalmoscopul Sanitarului pe Litoral", + "5edabbff0880da21347b382b": "Găsește Oftalmoscopul lui Sanitar", "5edabc2ca0055865214cb5a6": "Predă Oftalmoscopul lui Sanitar", "5edaba7c0c502106f869bc02 acceptPlayerMessage": "", "5edaba7c0c502106f869bc02 declinePlayerMessage": "", @@ -20314,18 +20195,16 @@ "60ec2b04bc9a8b34cd453b81": "Nu ai voie să mori sau să părăsești raidul cât timp misiunea este activă (Status: Decedat, Dezertat, DIA sau Retras)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", "60e71b9bbd90872cb85440f3 name": "Capturăm Avanposturi", - "60e71b9bbd90872cb85440f3 description": "Salutare, războinic. Ascultă, am o misiune pentru tine. Ieri am fost informat că niște PMC au capturat mai mulți Boși din regiune și-am înțeles că-s multe provizii acolo. Poți ajută un veteran? Elimina-i pe PMC ca să poată băieții mei să aspire tot fără probleme. Sunt trei baze în total: clădirea fortificată din șantierul de la Vama, spitalul de campanie EMERCOM din Pădure și clădirea administrativă de pe Litoral. Curată locațiile astea și anunță-mă când ai terminat.", + "60e71b9bbd90872cb85440f3 description": "Salutare, războinic. Ascultă, am o misiune pentru tine. Ieri am fost informat că niște PMC au capturat mai mulți Boși din regiune și-am înțeles că-s multe provizii acolo. Poți ajută un veteran? Elimina-i pe PMC ca să poată câinii mei să aspire tot fără probleme. Sunt trei baze în total: clădirea foritificată din șantierul de la Vama, spitalul de campanie EMERCOM din Pădure și clădirea administrativă de pe Litoral. Curată locațiile astea și anunță-mă când ai terminat.", "60e71b9bbd90872cb85440f3 failMessageText": "", "60e71b9bbd90872cb85440f3 successMessageText": "Liber tot? Treabă bună, soldat. Îmi trimit acum oamenii să ridice prada.", "60ec18b73b5f7d790a7ad034": "Elimină operatori PMC în baza Scavilor din Vamă", "60ec1e72d7b7cb55e94c1764": "Elimină operatori PMC în baza Scavilor din Pădure", - "60ec2229fd1bf4491c4e4552": "Elimină operatori PMC în Sanatoriul de pe Litoral", + "60ec2229fd1bf4491c4e4552": "Elimină operatori PMC în clădirea de administrație a Sanatoriului de pe Litoral", "6101458b43d55d251d68e4fa": "", "6101458f0631930ce97dea77": "", "60e71b9bbd90872cb85440f3 acceptPlayerMessage": "", @@ -20443,7 +20322,7 @@ "60e71dc0a94be721b065bbfc declinePlayerMessage": "", "60e71dc0a94be721b065bbfc completePlayerMessage": "", "60e71dc67fcf9c556f325056 name": "Băutură", - "60e71dc67fcf9c556f325056 description": "Salut, frate! Ce părere ai despre băutură? Am o comandă mare pentru alcool. Îți dai seama cum bea lumea pe timp de război... Am nevoie să fie sigilat tot, știu că ești în stare să găsești ce trebuie. Ai mâini de aur, tot timpul găsești orice-aș avea nevoie. Ce zici, ma rezolvi cu niște sticle? Bem și noi la final! Niște vodcă și whiskey pentru început. A, și niște bidoane de apă, pentru a doua zi, știi tu.", + "60e71dc67fcf9c556f325056 description": "Salut, frate! Ce părere ai despre băutură? Am o comandă mare pentru alcool, în principiu whiskey și vodcă. Îți dai seama cum bea lumea pe timp de război... Am nevoie să fie sigilat tot, știu că ești în stare să găsești ce trebuie. Ai mâini de aur, tot timpul găsești orice-aș avea nevoie. Ce zici, ma rezolvi cu niște sticle? Bem și noi la final! Niște vodcă și whiskey pentru început. A, și niște bidoane de apă, pentru a doua zi, știi tu.", "60e71dc67fcf9c556f325056 failMessageText": "", "60e71dc67fcf9c556f325056 successMessageText": "Cu sigiliu! Haide, frate, sărbătorim și noi!", "60e73333465ea8368012cc5b": "Găsește sticle de vodcă Tarkovskaya în raid", @@ -20518,7 +20397,7 @@ "6179acbdc760af5ad2053585 description": "Bine-ai venit. Bun, să iți spun ce se întâmplă. Conform zvonurilor, la stația de epurare și-au făcut baza niște occidentali agresivi, din trupele speciale. Faptul că te-ai întors îmi spune că nu era nimeni acasă, sau ai uitat să-mi spui ceva. În orice caz, cercetașii mei spun că au văzut Scavi la helipad, mai rău, au aflat de echipamente. Încărcătura din elicopter e foarte valoroasă, dar eu nu vrea să-mi trimit oamenii la bătaie. Mergi la elicopter și elimină toti bastarzii ce vor să scoată echipamentul de acolo.", "6179acbdc760af5ad2053585 failMessageText": "", "6179acbdc760af5ad2053585 successMessageText": "Treabă bună, soldat. Acum, trebuie să ne ocupăm și de turiști. Poftim, partea ta.", - "617bd94c5a52d2390a2630c7": "Elimină inamici în jurul elicopterului de la stația de epurare la Far", + "617bd94c5a52d2390a2630c7": "Asigură elicopterul de la stația de epurare la Far", "6179acbdc760af5ad2053585 acceptPlayerMessage": "", "6179acbdc760af5ad2053585 declinePlayerMessage": "", "6179acbdc760af5ad2053585 completePlayerMessage": "", @@ -20526,7 +20405,7 @@ "6179ad0a6e9dd54ac275e3f2 description": "Salutare, băiete, am niște vești proaste. Am aflat că niște nemernici s-au stabilit pe coastă după tunelul prăbușit. Fac ce vor și hărțuiesc toată zona, ca niște animale turbate. Și nu-s nici măcar bandiți ordinari, sunt foștii tăi colegi. Am înțeles că înainte de conflict au fost detașați undeva în Zona Farului. Spre deosebire de tine, ei nu vor să se întoarcă acasa ci să ne jefuiască tot orașul, nemernicii! Scapă de ei, soldat.", "6179ad0a6e9dd54ac275e3f2 failMessageText": "", "6179ad0a6e9dd54ac275e3f2 successMessageText": "Te-ai întors, în sfârșit! Mă îngrijoram deja. Haide să-ți dau ceva de mâncare.", - "617bf1e1d93d977d2452051f": "Elimină operatori Rebeli USEC la Far", + "617bf1e1d93d977d2452051f": "Elimină operatori Rebeli USEC", "6179ad0a6e9dd54ac275e3f2 acceptPlayerMessage": "", "6179ad0a6e9dd54ac275e3f2 declinePlayerMessage": "", "6179ad0a6e9dd54ac275e3f2 completePlayerMessage": "", @@ -20641,7 +20520,7 @@ "6193850f60b34236ee0483de description": "Hai odată. Bun, pe lângă coasta de la cap trece un drum, trebuie să-l știi. Oamenii mei îl folosesc pentru transportul bunurilor. De obicei nu au probleme sau dacă au se descurcă singuri. Dar mai nou a apărut un cuib de șobolani acolo, probabil au aflat de transporturi. Au început să tragă organizat în oamenii mei, cu forță, ca să nu mai poată trece. Mergi acolo și curăță zona, am să-ți ofer ceva bun în schimb.", "6193850f60b34236ee0483de failMessageText": "", "6193850f60b34236ee0483de successMessageText": "Bună treabă, i-ai futut bine pe cretini. Bine, tovarășe, ne vedem.", - "6193dabd5f6468204470571f": "Elimină Scavi pe malul mării și pe drumul principal de la Far", + "6193dabd5f6468204470571f": "Elimină Scavi pe drumul principal de la Far", "6193850f60b34236ee0483de acceptPlayerMessage": "", "6193850f60b34236ee0483de declinePlayerMessage": "", "6193850f60b34236ee0483de completePlayerMessage": "", @@ -20870,8 +20749,8 @@ "625d7005a4eb80027c4f2e09 description": "Am onoarea să-ți prezint un transmițător asamblat! Apropo, ai auzit că Peacekeeper a încercat să ia legătura cu Paznicul de Far? Încearcă de luni de zile să obțină o întâlnire și e refuzat încontinuu. Chiar a plătit pentru un permis de trecere, și a primit la schimb o bucată de hârtie igienică, dar astea sunt doar zvonuri, nu știu dacă e adevărat. În schimb tu ai fost invitat personal la Far! Cât de tare e asta? Sic itur ad astra (Călătoria spre stele). Saluta-l pe Paznic din partea mea.", "625d7005a4eb80027c4f2e09 failMessageText": "", "625d7005a4eb80027c4f2e09 successMessageText": "Cum adică n-a funcționat?! Ce fac cu mâinile mele funcționează întotdeauna. Ești sigur că era la tine? Nici nu știu ce să spun. Ma bucur că ești întreg. Verific să văd ce s-a putut întâmpla.", - "62602c89a4eb80027c4f2e0f": "Supraviețuiește și extrage-te din locație", - "63ab617b87413d64ae0ac210": "Verifică daca transmițătorul funcționează în zona peninsulei", + "62602c89a4eb80027c4f2e0f": "Scapă cu viață din clădirea Farului", + "63ab617b87413d64ae0ac210": "Verifică daca transmițătorul funcționează", "625d7005a4eb80027c4f2e09 acceptPlayerMessage": "", "625d7005a4eb80027c4f2e09 declinePlayerMessage": "", "625d7005a4eb80027c4f2e09 completePlayerMessage": "", @@ -21059,7 +20938,7 @@ "639135534b15ca31f76bc317 name": "Interval de Service", "639135534b15ca31f76bc317 description": "Salut, soldat! Cine are informația învinge. Vrei să câștige pacea, nu? Atunci trebuie să aduni niște informații pentru băieții buni. Era o companie ce spăla bani la dealerul de mașini. Găsește informații folositoare despre ei. Omul meu a obținut o cheie de la biroul lor. Poftim. Problema e că, mai este o ușă încuiată înăuntru, iar noi nu am reușit să găsim a doua cheie.", "639135534b15ca31f76bc317 failMessageText": "", - "639135534b15ca31f76bc317 successMessageText": "Informația asta va fi utilă pentru negocieri. Se pare că un anume individ cu porecla Kaban, Porc pe românește, avea învârteli acolo, dar a dispărut în circumstanțe necunoscute. Sincere mulțumiri din partea Misiunii!", + "639135534b15ca31f76bc317 successMessageText": "Informația asta va fi utilă pentru negocieri. Se pare că un anume individ cu porecla Kaban, Porc în Română, acționa acolo, dar după niște evenimente necunoscute, a dispărut. Sincere mulțumiri din partea misiunii!", "639135534b15ca31f76bc318": "Găsește dispozitivul electronic de stocare în biroul managerului din clădirea dealerului auto de pe Străzi", "639135534b15ca31f76bc319": "Predă dispozitivul de stocare", "639135534b15ca31f76bc317 acceptPlayerMessage": "", @@ -21086,7 +20965,7 @@ "639135a7e705511c8a4a1b78 acceptPlayerMessage": "", "639135a7e705511c8a4a1b78 declinePlayerMessage": "", "639135a7e705511c8a4a1b78 completePlayerMessage": "", - "639135b04ed9512be67647d7 name": "Trăiască Partidul - Partea 1", + "639135b04ed9512be67647d7 name": "Trăiască Partidul", "639135b04ed9512be67647d7 description": "Salut, războinic. Am o problemă personală. Am un prieten în oraș, îl cheamă Oleg. Căpitan în rezervă, mare om! E un luptător adevărat, nu mă pot compara cu el. Și ce mai patriot! Problema e că nu am mai auzit nimic de la el de o vreme. Sunt îngrijorat. Poți să vezi ce face?", "639135b04ed9512be67647d7 failMessageText": "", "639135b04ed9512be67647d7 successMessageText": "Nu-i nimeni în apartament și e sânge pe jos? Poate sângele nu-i al lui... Iar bunurile de valoare, lucrurile lui sunt tot acolo? Vai, nu și-ar fi lăsat insigna în urmă pentru nimic. Dacă ai ști cât de mult ține la ea. Sigur a pățit ceva.", @@ -21130,7 +21009,7 @@ "639135d89444fb141f4e6eea failMessageText": "", "639135d89444fb141f4e6eea successMessageText": "Mercenare, ai experiență de primă mână când vine vorba de viețile pierdute în război. Dar nu ai habar câți morți sunt nu de la glonț sau baionetă, ci dați dispăruți. Unii sunt îngropați de propria lor casă după un bombardament. Alții mor de foame prin beciuri. Cineva a făcut o infecție și n-a avut medicamente sau n-a mai existat spitalul... Peste 15% din oamenii din acest jurnal au murit așa.", "639135d89444fb141f4e6eec": "Predă registrul", - "639135d89444fb141f4e6eeb": "Găsește registrul asociației de locatari pe Străzile din Tarkov", + "639135d89444fb141f4e6eeb": "Găsește registrul asociației de locatari", "639135d89444fb141f4e6eea acceptPlayerMessage": "", "639135d89444fb141f4e6eea declinePlayerMessage": "", "639135d89444fb141f4e6eea completePlayerMessage": "", @@ -21157,9 +21036,9 @@ "639135f286e646067c176a87 description": "Bună dimineața! Găsirea vehiculelor militare a fost o treabă foarte bună. Conform surselor, mai sunt încă trei Strykere în oraș, cel puțin. Știi, nu-i o idee bună să lași asemenea echipament afară în asemenea condiții. Vreau să știu despre ele. Știi ce ai de făcut.", "639135f286e646067c176a87 failMessageText": "", "639135f286e646067c176a87 successMessageText": "Minunată muncă, mercenare! În ce condiție sunt vehiculele? Sunt sigur că le putem repara, și pe viitor ne vom plimba cu Strykere prin oraș... Poftim? Normal, sper să nu fie nevoie!", - "63927f14744e452011470816": "Găsește și marchează primul LAV III cu un Marker MS2000 pe Străzi", - "63927f2d8ba6894d155e77e6": "Găsește și marchează blindatul Stryker cu un Marker MS2000 pe Străzi", - "63927f349444fb141f4e6f24": "Găsește și marchează al doilea LAV III cu un Marker MS2000 pe Străzi", + "63927f14744e452011470816": "Găsește și marchează primul Stryker cu un Marker MS2000 pe Străzi", + "63927f2d8ba6894d155e77e6": "Găsește și marchează al doilea Stryker cu un Marker MS2000 pe Străzi", + "63927f349444fb141f4e6f24": "Găsește și marchează al treilea Stryker cu un Marker MS2000 pe Străzi", "639cebb78fe84d33a25a142b": "Supraviețuiește și extrage-te din locație", "639135f286e646067c176a87 acceptPlayerMessage": "", "639135f286e646067c176a87 declinePlayerMessage": "", @@ -21185,7 +21064,7 @@ "639136df4b15ca31f76bc31f description": "Continuăm să curățăm orașul de scursuri, da, băiete? Sunt mulți hoți prin Hotelul Pinewood, fură tot ce găsesc. Ajută-mă, și am să mă asigur că vei primi o răsplată bună pentru ca faci din Tarkov un loc mai curat. După ce termini, folosește o rachetă de semnalizare în curte.", "639136df4b15ca31f76bc31f failMessageText": "", "639136df4b15ca31f76bc31f successMessageText": "Bravo, băiete. Împreună facem ordine.", - "639285879444fb141f4e6f25": "Elimină inamicii din Hotelul Pinewood pe Străzile din Tarkov", + "639285879444fb141f4e6f25": "Elimină hoții din Hotelul Pinewood din Străzile Tarkov", "63aaccae87413d64ae079631": "Trage o rachetă de semnalizare galbenă în curtea hotelului", "639136df4b15ca31f76bc31f acceptPlayerMessage": "", "639136df4b15ca31f76bc31f declinePlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "Supraviețuiește și extrage-te din locația Străzi folosind mașina din stația de Taxi Primorsky", "6397a6942e519e69d2139b25": "Găsește și marchează primul blindat Patrol-A cu un Marker MS2000 pe Străzi", "6397a7ce706b793c7d6094c9": "Găsește și marchează al doilea blindat Patrol-A cu un Marker MS2000 pe Străzi", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "Am intrat în legătura cu șoferii. N-a fost ușor, dar am descoperit ceva interesant.", @@ -21470,7 +21348,7 @@ "639872fa9b4fb827b200d8e5 declinePlayerMessage": "", "639872fa9b4fb827b200d8e5 completePlayerMessage": "", "639872fc93ae507d5858c3a6 name": "Armurier. Partea a 11-a", - "639872fc93ae507d5858c3a6 description": "Momentul perfect, prietene. Dacă ai puțin timp atunci ajută-mă cu modificarea unei arme. Am un client și vrea un pistol mitralieră KRISS Vector 9x19. Trebuie să montezi o șină Mk.5 Modular Rail, Mâner tactic din sârmă Tactical Dynamics Skeletonized Foregrip, un vizor la alegere cu bătaie minim 300 metri sau cătările standard, încărcător de minim 33 cartușe și amortizor. Ergonomia peste 50 și recul combinat sub 230. Mulțumesc!", + "639872fc93ae507d5858c3a6 description": "Momentul perfect, prietene. Dacă ai puțin timp atunci ajută-mă cu modificarea unei arme. Am un client și vrea o pușcă mitralieră KRISS Vector 9x19. Trebuie să montezi o șină Mk.5 Modular Rail, Mâner tactic din sârmă Tactical Dynamics Skeletonized Foregrip, un vizor la alegere, încărcător de minim 33 cartușe și amortizor. Ergonomia peste 50 și recul combinat sub 230. Mulțumesc!", "639872fc93ae507d5858c3a6 failMessageText": "", "639872fc93ae507d5858c3a6 successMessageText": "Știi, eu personal prefer patrușcinici, dar un Vector e un Vector! Ce monstru frumos.", "63987860c8f8cc12a47b02a6": "Modifică un KRISS Vector 9x19 conform cu specificațiile primite", @@ -21478,7 +21356,7 @@ "639872fc93ae507d5858c3a6 declinePlayerMessage": "", "639872fc93ae507d5858c3a6 completePlayerMessage": "", "639872fe8871e1272b10ccf6 name": "Armurier. Partea a 14-a", - "639872fe8871e1272b10ccf6 description": "Salut. Am o comandă nouă pentru o pușcă occidentală HK 416A5. Are nevoie de atașamente culoarea maro: amortizor SureFire SOCOM556-RC2, mâner vertical tactic Magpul RVG, vizor holografic EOTech EXPS3, mâner pistol Magpul MOE, pat Magpul UBR GEN2, dispozitiv tactic LA-5B/PEQ și încărcător de minim 30 cartușe. Ergonomia minim 60, reculul combinat sub 300, greutatea sub 4 Kg. Ca pentru Forțele Speciale, corect? Ah, și încă ceva. Arma să fie în condiție bună, fără rugină, condiție de minim 80%.", + "639872fe8871e1272b10ccf6 description": "Salut. Am o comandă nouă pentru o pușcă occidentală HK 416A5. Are nevoie de atașamente culoarea maro: amortizor SureFire SOCOM556-RC2, mâner vertical tactic Magpul RVG, vizor holografic EOTech EXPS3, mâner pistol Magpul MOE, pat Magpul UBR GEN2 și dispozitiv tactic LA-5B/PEQ. Ergonomia minim 60, reculul combinat sub 300, greutatea sub 4 Kg. Ca pentru Forțele Speciale, corect? Ah, și încă ceva. Arma să fie în condiție bună, fără rugină, condiție de minim 80%.", "639872fe8871e1272b10ccf6 failMessageText": "", "639872fe8871e1272b10ccf6 successMessageText": "Pușcoi de spart uși! Mulțumesc pentru ajutor.", "639879addecada40426d3449": "Modifică un HK 416A5 conform cu specificațiile primite", @@ -21486,7 +21364,7 @@ "639872fe8871e1272b10ccf6 declinePlayerMessage": "", "639872fe8871e1272b10ccf6 completePlayerMessage": "", "639873003693c63d86328f25 name": "Armurier. Partea a 19-a", - "639873003693c63d86328f25 description": "Salut, am o treabă pentru tine. Am nevoie de un SVDS configurat în felul următor: Pat Magpul UBR GEN2 negru, șasiu SAG MK1, mâner pistol Magpul MOE negru, lunetă March Tactical 3-24x42 FFP și un amortizor. Ergonomia minim 15 și reculul combinat sub 400.", + "639873003693c63d86328f25 description": "Salut, am o treabă pentru tine. Am nevoie de un SVDS configurat în felul următor: Pat Magpul UBR GEN2 negru, șasiu SAG MK1, mâner pistol Magpul MOE negru, lunetă March Tactical 3-24x42 FFP și un amortizor. Ergonomia minim 15 și reculul combinat sub 500.", "639873003693c63d86328f25 failMessageText": "", "639873003693c63d86328f25 successMessageText": "Gata? Excelent. Las-o pe masă lângă mine, sunt puțin ocupat...", "63987a4e3693c63d86328f27": "Modifică un SVDS conform cu specificațiile primite", @@ -21494,7 +21372,7 @@ "639873003693c63d86328f25 declinePlayerMessage": "", "639873003693c63d86328f25 completePlayerMessage": "", "63987301e11ec11ff5504036 name": "Armurier. Partea 21", - "63987301e11ec11ff5504036 description": "Am o comandă interesantă aici. Nu e doar o singură piesă de artă, sunt două într-o singură comandă. Te descurci. Prima piesă e un Remington Model 700 cu kit complet de la AB Arms, lunetă puternică și amortizor. Ergonomia peste 35, iar recul combinat sub 500. Și să fie ușoară, cu încărcător mic. A doua piesă este un pistol Colt M1911, cu mâner Pachmayr, atenuator Anarchy Outdoors și o lanternă de orice fel.", + "63987301e11ec11ff5504036 description": "Am o comandă interesantă aici. Nu e doar o piesă de artă, sunt două într-o singură comandă. Te descurci. Prima piesă e un Remington Model 700 cu kit complet de la AB Arms, lunetă puternică și amortizor. Ergonomia peste 35, recul combinat sub 500. Și să fie ușoară, cu încărcător mic. A doua piesă este un pistol Colt M1911, cu mâner Pachmayr, atenuator Anarchy Outdoors și o lanternă de orice fel.", "63987301e11ec11ff5504036 failMessageText": "", "63987301e11ec11ff5504036 successMessageText": "Bun, văd zăvorul, dar unde e pistolul? Uite-l, o frumusețe. Treabă bună, prietene. Următoarea comandă vine mâine, ca să poți să te ocupi și de ale tale.", "63987b49cd51826f7a069b85": "Modifică un M700 conform cu specificațiile primite", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "Elimină Scavi cu arme albe în zona Ultra", "63a9b5b2813bba58a50c9eeb": "Elimină Scavi cu arme albe în Vamă", "63a9b5f064b9631d9178276b": "Elimină Scavi cu arme albe în Rezervă", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21686,13 +21563,13 @@ "649af47d717cb30e7e4b5e26 declinePlayerMessage": "", "649af47d717cb30e7e4b5e26 completePlayerMessage": "", "64e7b971f9d6fa49d6769b44 name": "Tehnici de Vânătoare - Animale Mari", - "64e7b971f9d6fa49d6769b44 description": "Ieri am fost plecat la vânătoare, în Pădure și am dat peste o familie, tată și fiu. Amândoi erau obosiți, băiatul avea o rană de glonte. I-am adus aici pe amândoi, l-am tratat pe băiat cât de bine am știut, i-am hrănit. Apoi am vorbit cu tatăl, Sanych îl cheamă, și m-am îngrozit. Cei doi locuiau în oraș, vis-a-vis de dealerul auto, într-un apartament. Dintr-un oarecare motiv au rămas în oraș după evacuare, nu știu de ce, oricum nu mai contează. Sanych a mers să caute mâncare, între timp, niște banditi au intrat peste băiat în apartament, l-au legat, și apoi l-au așteptat pe Sanych și l-au legat și pe el. I-au dus pe amandoi și i-au forțat să muncească ca niște sclavi. Interlopului îi zice Kaban, Sanych spune că e ceva șef prin zonă. Noaptea au scăpat, au fugit sub focuri de armă și s-au ascuns în pădure, acolo unde i-am găsit eu. Băiatul... a murit, rana era prea gravă. \n\nBun, la subiect. Dacă e alt nemernic în oraș, cade pe noi doi să acționăm. Razbună-l pe băiat și asigură-te că așa ceva nu se va mai întâmpla.", + "64e7b971f9d6fa49d6769b44 description": "I was out hunting the other day and picked up a family in the woods, father and son. Both were exhausted, the boy had a bullet wound. I brought them to my place, treated the kid's wound as best as I could, fed them both. Then I talked to the father - name's Sanych - and it made me disgusted. They both lived in their apartment opposite the car dealership in the city, and for some reason stayed there after the evacuation. Don't know why, but that's not the point. While Sanych went to look for food, some bandits found their house, tied up the kid, and then him when he returned. They brought them both to this car shop and made them work for them, or else they'd both get put down like dogs. The leader's name is Kaban - everybody respects him there, Sanych said. At night the family managed to break out under fire and made it to the woods, where I found them. The son didn't survive - the wound was too severe.... Oh, right, to the point. If there's another bandit in town, you and I are the only ones who can act. Avenge the father's grief and make it so that it doesn't happen to anyone else ever again.", "64e7b971f9d6fa49d6769b44 failMessageText": "", - "64e7b971f9d6fa49d6769b44 successMessageText": "Încă un nemernic în pământ. Bravo băiatule.", + "64e7b971f9d6fa49d6769b44 successMessageText": "One less scumbag to worry about. You did well, kid.", "64e7ba17220ee966bf425ecb": "Găsește și elimină-l pe Kaban", "64e7ba4a6393886f74119f3d": "Elimină gărzile lui Kaban de la dealerul auto de pe Străzile din Tarkov", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", @@ -21704,388 +21581,388 @@ "64e7b985e34817363c4684d2 acceptPlayerMessage": "", "64e7b985e34817363c4684d2 declinePlayerMessage": "", "64e7b985e34817363c4684d2 completePlayerMessage": "", - "64e7b99017ab941a6f7bf9d7 name": "Jandarmeria - Pază la Mall", - "64e7b99017ab941a6f7bf9d7 description": "Ura, soldat. Ești neoficial angajatul lunii! Numai bine, am o mare problemă de care trebuie să te ocupi. Am nevoie să liniștești niște locuri, dacă mă înțelegi. Vei fi primul membru al unității de jandarmerie Tarkov!\n\nPrimul loc e la Mallul Klimov. Locul ăla a văzut vremuri mai bune, cândva... Acum sunt doar jeguri și hoți, și nu le port nici un dram de milă. Hai, la treabă, avem mult de lucru.", + "64e7b99017ab941a6f7bf9d7 name": "Gendarmerie - Mall Cop", + "64e7b99017ab941a6f7bf9d7 description": "Hoorah, warrior. My unofficially best employee! Anyway, there's a new pain in the ass I want you to deal with. There's a few places where we need to make dead silent, if you know what I mean. You'll be the first member of our Tarkov gendarmerie division! The first spot is Klimov Shopping Mall. This place has seen better days, that's for certain. Now it's just scumbags and looters, and I don't feel sorry for them in the slightest. Come on, get to it. We got a lot of work to do.", "64e7b99017ab941a6f7bf9d7 failMessageText": "", - "64e7b99017ab941a6f7bf9d7 successMessageText": "Felicitări, domnule ofițer. Plata, așa cum am promis!", - "64e7bc2c5e6d3e61ca2ca097": "Elimină inamici în clădirea Stylobate folosind doar pistoale", + "64e7b99017ab941a6f7bf9d7 successMessageText": "Well done, officer. Your reward, as promised!", + "64e7bc2c5e6d3e61ca2ca097": "Eliminate any target at the stylobate building while using Pistols on Streets of Tarkov", "64e7b99017ab941a6f7bf9d7 acceptPlayerMessage": "", "64e7b99017ab941a6f7bf9d7 declinePlayerMessage": "", "64e7b99017ab941a6f7bf9d7 completePlayerMessage": "", - "64e7b9a4aac4cd0a726562cb name": "Jandarmeria - Biletele, va rog", - "64e7b9a4aac4cd0a726562cb description": "Bun, să trecem la subiect. Noua misiune este la cinematograful Rodina. Curăță-l și apoi raportează-mi.", + "64e7b9a4aac4cd0a726562cb name": "Gendarmerie - Tickets, Please", + "64e7b9a4aac4cd0a726562cb description": "Right, let's get straight to the point. The new task is the Rodina movie theater. Clean it up properly, then report to me right away.", "64e7b9a4aac4cd0a726562cb failMessageText": "", - "64e7b9a4aac4cd0a726562cb successMessageText": "Nu încetezi să ma uimești, soldat. Bun băiat.", - "64e7bd0c6393886f74119f41": "Elimină inamici la cinema rodina folosind doar pistoale mitralieră (SMG) pe Străzile din Tarkov", + "64e7b9a4aac4cd0a726562cb successMessageText": "Never cease to amaze me, warrior. Attaboy.", + "64e7bd0c6393886f74119f41": "Eliminate any target at the Rodina cinema while using SMGs on Streets of Tarkov", "64e7b9a4aac4cd0a726562cb acceptPlayerMessage": "", "64e7b9a4aac4cd0a726562cb declinePlayerMessage": "", "64e7b9a4aac4cd0a726562cb completePlayerMessage": "", - "64e7b9bffd30422ed03dad38 name": "Jandarmeria - Patrula de Cartier", - "64e7b9bffd30422ed03dad38 description": "Ultima misiune pentru unitatea de jandarmi, cel puțin pe moment. Ținta noastră este blocul de apartamente Cardinal. Am nevoie să eliberezi locul pentru băieții mei, știu că n-o să le convină jegurilor din zonă. Trebuie să mergi înainte și să faci curat, s-a înțeles? Marș!", + "64e7b9bffd30422ed03dad38 name": "Gendarmerie - District Patrol", + "64e7b9bffd30422ed03dad38 description": "One last mission for our gendarmerie division, at least for now. Our target is the Cardinal apartment complex. My men have to get into that neighborhood, but the looters won't be very pleased. So you go there first and do some tidy-up, understand? Move then!", "64e7b9bffd30422ed03dad38 failMessageText": "", - "64e7b9bffd30422ed03dad38 successMessageText": "Respectele mele, soldat.", - "64e7bdd52d369a1c0172722f": "Elimină inamici în complexul Cardinal folosind arme de asalt", + "64e7b9bffd30422ed03dad38 successMessageText": "My respects to you, soldier.", + "64e7bdd52d369a1c0172722f": "Eliminate any target at the Cardinal apartment complex while using Assault rifles or Assault carbines on Streets of Tarkov", "64e7b9bffd30422ed03dad38 acceptPlayerMessage": "", "64e7b9bffd30422ed03dad38 declinePlayerMessage": "", "64e7b9bffd30422ed03dad38 completePlayerMessage": "", - "64edbb1317ab941a6f7cc247 name": "Timpul s-a scurs", - "64edbb1317ab941a6f7cc247 description": "Frate, am o treabă mișto pentru tine! A fost o expoziție, chiar înainte de conflict, artă contemporană, au adus niște picturi de la unu, cum îl cheamă... În fine, are niște picturi scumpe, nebunie. Habar n-am de picturi, dar am un prieten de-afară, se pricepe și are și bani fără număr. I-am promis că îi aduc toate picturile snobului de la expoziție. Știu că arată ca uniște ceasuri în culori. Mă ajuți să le găsesc? E treabă ușoară, ai încredere-n mine. Problema e că au fost mutate prin zonă, sunt doișpe de toate... Te descurci, nu?", + "64edbb1317ab941a6f7cc247 name": "Out of Time", + "64edbb1317ab941a6f7cc247 description": "Brother, I've got a cool job for you! There was a contemporary art expo in the city before the conflict, and they brought in some paintings of what's-his-name... Anyway, the paintings are crazy expensive. I don't know shit about art, but my friend abroad is a real expert with a bottomless purse. I've promised to smuggle him all the paintings by that snob artist that were in the expo. They look something like an abstract multicolored clock. Can you help me collect them? It's a breeze, trust me. However, these paintings were stolen during the chaos and scattered all over the region, and there are twelve of them in total.... But you can handle it, yeah?", "64edbb1317ab941a6f7cc247 failMessageText": "", - "64edbb1317ab941a6f7cc247 successMessageText": "Doamne feri, chiar le-ai găsit, pe toate doișpe... Îmi vine să fac mătănii în fața ta, haha.", - "64edbe9926cfa02c506f893f": "Găsește pictura cu ceas nr. 1", - "64edbeae9878a0569d6ec747": "Predă pictura", - "64edce2d1a5f313cb144bf83": "Găsește pictura cu ceas nr. 2", - "64edce90403fc9681a4b7d5e": "Găsește pictura cu ceas nr. 3", - "64edcea1b63b74469b6c131a": "Găsește pictura cu ceas nr. 4", - "64edcebb496db64f9b7a442d": "Găsește pictura cu ceas nr. 5", - "64edcecd1a5f313cb144bf84": "Găsește pictura cu ceas nr. 6", - "64edcee01180874bb93e857e": "Găsește pictura cu ceas nr. 7", - "64edcf0039e45b527a7c3fed": "Găsește pictura cu ceas nr. 8", - "64edcf27bf4c727e9c7bdb94": "Găsește pictura cu ceas nr. 9", - "64edcf48b63b74469b6c131b": "Găsește pictura cu ceas nr. 10", - "64edcf5c496db64f9b7a442e": "Găsește pictura cu ceas nr. 11", - "64edcf711a5f313cb144bf85": "Găsește pictura cu ceas nr. 12", - "64edce599878a0569d6ec749": "Predă pictura", - "64edce82496db64f9b7a442c": "Predă pictura", - "64edceac67e11a7c6206dcd7": "Predă pictura", - "64edcec4a2a5bb727b61c25e": "Predă pictura", - "64edced69878a0569d6ec74a": "Predă pictura", - "64edcee7403fc9681a4b7d5f": "Predă pictura", - "64edcf0932bed22c3e0c741d": "Predă pictura", - "64edcf2f9a4f905106514fbe": "Predă pictura", - "64edcf5067e11a7c6206dcd8": "Predă pictura", - "64edcf62a2a5bb727b61c25f": "Predă pictura", - "64edcf7b496db64f9b7a442f": "Predă pictura", + "64edbb1317ab941a6f7cc247 successMessageText": "Sweet lord, you really did find all twelve of them... I was about to bow down on the floor and apologize when I saw you were here, haha.", + "64edbe9926cfa02c506f893f": "Locate and obtain clock dial painting #1", + "64edbeae9878a0569d6ec747": "Hand over the painting", + "64edce2d1a5f313cb144bf83": "Locate and obtain clock dial painting #2", + "64edce90403fc9681a4b7d5e": "Locate and obtain clock dial painting #3", + "64edcea1b63b74469b6c131a": "Locate and obtain clock dial painting #4", + "64edcebb496db64f9b7a442d": "Locate and obtain clock dial painting #5", + "64edcecd1a5f313cb144bf84": "Locate and obtain clock dial painting #6", + "64edcee01180874bb93e857e": "Locate and obtain clock dial painting #7", + "64edcf0039e45b527a7c3fed": "Locate and obtain clock dial painting #8", + "64edcf27bf4c727e9c7bdb94": "Locate and obtain clock dial painting #9", + "64edcf48b63b74469b6c131b": "Locate and obtain clock dial painting #10", + "64edcf5c496db64f9b7a442e": "Locate and obtain clock dial painting #11", + "64edcf711a5f313cb144bf85": "Locate and obtain clock dial painting #12", + "64edce599878a0569d6ec749": "Hand over the painting", + "64edce82496db64f9b7a442c": "Hand over the painting", + "64edceac67e11a7c6206dcd7": "Hand over the painting", + "64edcec4a2a5bb727b61c25e": "Hand over the painting", + "64edced69878a0569d6ec74a": "Hand over the painting", + "64edcee7403fc9681a4b7d5f": "Hand over the painting", + "64edcf0932bed22c3e0c741d": "Hand over the painting", + "64edcf2f9a4f905106514fbe": "Hand over the painting", + "64edcf5067e11a7c6206dcd8": "Hand over the painting", + "64edcf62a2a5bb727b61c25f": "Hand over the painting", + "64edcf7b496db64f9b7a442f": "Hand over the painting", "64edbb1317ab941a6f7cc247 acceptPlayerMessage": "", "64edbb1317ab941a6f7cc247 declinePlayerMessage": "", "64edbb1317ab941a6f7cc247 completePlayerMessage": "", "64ee99639878a0569d6ec8c9 name": "Transmisie - Partea 5", - "64ee99639878a0569d6ec8c9 description": "Bun, putem să trecem la pasul următor. Știm că sunt amestecați ciudații aici. Fă-i să vorbească! Trebuie să-i forțezi să se arate, va trebui să faci niște lucruri care să le arate că nu te joci. Elimină unul din ei, poate unul mai important. Dar să știi că nu ai ce să-i cauți în oraș, e imposibil. Dar va trebui să începem prin a ascunde un trofeu aici, ca să prindă ideea. Știu că fac ritualuri într-un loc nou. Încearcă acolo.", + "64ee99639878a0569d6ec8c9 description": "All right, it's time to take the next step. We now know the Hoods are involved in this case. You get them talking! Force them to reveal themselves, you gotta do something that lets them know we're not messing around. Kill one of them, maybe one of their higher-ups. Don't even try finding them in the city though, it's impossible. But we do need to hide the trophy there, so that they get the hint. I hear these nutcases have a new ritual point. Try there, kid.", "64ee99639878a0569d6ec8c9 failMessageText": "", - "64ee99639878a0569d6ec8c9 successMessageText": "Așa! Crezi că au înțeles mesajul? Eu zic că da! Mulțumesc, băiatule.", - "64ee9a979878a0569d6ec8cb": "Găsește locul de ritual de pe str. Chekannaya pe Străzile din Tarkov", - "64ee9b5a1a5f313cb144bf87": "Ascunde un cuțit de Cultist în locul unde se fac ritualuri", - "64ee9cc69a4f90510651507e": "Supraviețuiește și extrage-te din locație", - "64eea404a2a5bb727b61c31e": "Găsește și elimină-l pe Preotul Cultist", + "64ee99639878a0569d6ec8c9 successMessageText": "Yeah! You think they've got the hint? I think they did! Thank you, kid.", + "64ee9a979878a0569d6ec8cb": "Locate the ritual spot on Chekannaya st. on Streets of Tarkov", + "64ee9b5a1a5f313cb144bf87": "Stash a Cultist knife at the ritual spot", + "64ee9cc69a4f90510651507e": "Survive and extract from the location", + "64eea404a2a5bb727b61c31e": "Locate and eliminate Priest", "64ee99639878a0569d6ec8c9 acceptPlayerMessage": "", "64ee99639878a0569d6ec8c9 declinePlayerMessage": "", "64ee99639878a0569d6ec8c9 completePlayerMessage": "", - "64ee9df4496db64f9b7a4432 name": "Ușa", - "64ee9df4496db64f9b7a4432 description": "Salut, am o problemă mai delicată. Sunt un om tehnic și îmi place să am întotdeauna o explicație pentru tot. După cum ști deja, mă interesez de semnalele care iți au originea în frumosul oraș. Scanez tot orașul fără probleme, mai puțin un loc, e ceva ciudat, de parcă locul e gol, ceva imposibil din punct de vedere tehnic. Locul e undeva la etajoul doi sau trei într-o anume clădire. Ce-ar fi să mergi și să verifici, poate e ceva echipament acolo? Montează niște camere de supraveghere pentru mine. Ești unde trebuie când vezi casa cu astronautul.", + "64ee9df4496db64f9b7a4432 name": "The Door", + "64ee9df4496db64f9b7a4432 description": "Hi, I have a delicate matter. I'm a man of science and I'm used to always find an explanation for everything. As you know, I'm interested in all sorts of signals coming from the territory of our beautiful city. There is a strange place where all my scans are strangely muffled, as if there is nothing there, empty, which is impossible from a scientific point of view. The source itself is in the second or third floor of a certain building. Why don't you go check it out, see if there's some kind of equipment? Set up a couple cameras for me for surveillance. The reference point will be the house with the astronaut mural on the wall.", "64ee9df4496db64f9b7a4432 failMessageText": "", - "64ee9df4496db64f9b7a4432 successMessageText": "Ah, tu ești. Semnalul trece, dar tot nu mă lămurește, iar acum sunt și hoți și alți curioși prin zona. Totodată semnalul mai pică și camerele o iau razna. Este o ușă ciudată... eu unul nu cred în paranormal. Am să mai investighez, ținem legătura. Mulțumesc pentru ajutor.", - "64ee9df4496db64f9b7a4433": "Găsește sursa bruiajului pe Străzile din Tarkov", - "64ee9df4496db64f9b7a4435": "Instalează o cameră WIFI pentru supravegherea ușii", - "64ee9df4496db64f9b7a4437": "Supraviețuiește și extrage-te din locație", - "64eea6059878a0569d6ec98b": "Instalează o cameră WIFI pentru supravegherea casei scărilor", + "64ee9df4496db64f9b7a4432 successMessageText": "Oh, it's you. The signal went through, but it didn't clear up the situation - there are random looters and curious people wandering around, but still at some moments the signal goes blank, and the cameras go crazy. And then there's this weird door... I don't personally believe in the supernatural. I'll keep an eye out, stay in touch. Thanks for your work.", + "64ee9df4496db64f9b7a4433": "Locate the cause of the signal jamming on Streets of Tarkov", + "64ee9df4496db64f9b7a4435": "Install a WI-FI Camera to watch the door", + "64ee9df4496db64f9b7a4437": "Survive and extract from the location", + "64eea6059878a0569d6ec98b": "Install a WI-FI Camera to watch the stairwell", "64ee9df4496db64f9b7a4432 acceptPlayerMessage": "", "64ee9df4496db64f9b7a4432 declinePlayerMessage": "", "64ee9df4496db64f9b7a4432 completePlayerMessage": "", - "64f1cc571a5f313cb144bf90 name": "Încrederea Străinilor - Partea 1", - "64f1cc571a5f313cb144bf90 description": "Colegii mei au nevoie de un favor din partea ta, te-au cerut special. Se pare ca lumea a auzit de faptele tale. Uite ce ai de făcut: trebuie să elimini toți șefii de bande primitive din Tarkov. De restul detaliilor mă ocup eu. Ca și răsplată, iți vor lăsa un suvenir valoros. La treabă, soldat. Te aștept când ai terminat.", + "64f1cc571a5f313cb144bf90 name": "Overseas Trust - Part 1", + "64f1cc571a5f313cb144bf90 description": "My colleagues are asking for a favor, and strangely enough, they recommend you, mercenary. Apparently, I'm not the only one who's heard of your deeds. So here's the deal: you're going to eliminate the local leaders of all the primitive gangs that have set sails all over Tarkov. The details aren't important for you to know. As a reward, they say they'll leave you a valuable souvenir for you. Now, go on, soldier. I'll be waiting for your return.", "64f1cc571a5f313cb144bf90 failMessageText": "", - "64f1cc571a5f313cb144bf90 successMessageText": "Excelent. Suvenirul tău se află la Croitor, știe deja despre ce e vorba.", - "64f1cc571a5f313cb144bf9b": "Găsește și elimină-l pe Tagilla", - "64f1cc571a5f313cb144bf99": "Găsește și elimină-l pe Sanitar", - "64f1cc571a5f313cb144bf97": "Găsește și elimină-l pe Shturman", - "64f1cc571a5f313cb144bf95": "Găsește și elimină-l pe Killa", - "64f1cc571a5f313cb144bf93": "Găsește și elimină-l pe Glukhar", - "64f1cc571a5f313cb144bf91": "Găsește și elimină-l pe Reshala", - "64f1cc571a5f313cb144bf9d": "Supraviețuiește și extrage-te din locație", + "64f1cc571a5f313cb144bf90 successMessageText": "Excellent. Now, your souvenir is waiting for you at Ragman's place, he's already received instructions from our friends.", + "64f1cc571a5f313cb144bf9b": "Locate and eliminate Tagilla", + "64f1cc571a5f313cb144bf99": "Locate and eliminate Sanitar", + "64f1cc571a5f313cb144bf97": "Locate and eliminate Shturman", + "64f1cc571a5f313cb144bf95": "Locate and eliminate Killa", + "64f1cc571a5f313cb144bf93": "Locate and eliminate Glukhar", + "64f1cc571a5f313cb144bf91": "Locate and eliminate Reshala", + "64f1cc571a5f313cb144bf9d": "Survive and extract from the location", "64f1cc571a5f313cb144bf90 acceptPlayerMessage": "", "64f1cc571a5f313cb144bf90 declinePlayerMessage": "", - "64f1cc571a5f313cb144bf90 completePlayerMessage": "Gata munca.", - "64f1d6e732bed22c3e0c7423 name": "Încrederea Străinilor - Partea 2", - "64f1d6e732bed22c3e0c7423 description": "Salutare. Au trecut pe-aici niște băieți grei, adevărați, și au lăsat ceva pentru tine. Nu știu ce afaceri ai avut cu ei, dar te-ai ales cu niște țoale noi. Ceva mai scumpe, dar să ținem cont și de măsurile tale, oricum, n-am mai făcut ceva așa de mișto!", + "64f1cc571a5f313cb144bf90 completePlayerMessage": "Job's done.", + "64f1d6e732bed22c3e0c7423 name": "Overseas Trust - Part 2", + "64f1d6e732bed22c3e0c7423 description": "Oh, hey. Some serious guys came over today, said they had something for you. Don't know what you did for them, but anyway, I've got some new clothes for you now. A little expensive considering your unique measurements, but hey, this'll be my finest work yet!", "64f1d6e732bed22c3e0c7423 failMessageText": "", - "64f1d6e732bed22c3e0c7423 successMessageText": "Mulțumesc pentru tot.", - "64f1d7bf32bed22c3e0c7425": "Înmânează $", + "64f1d6e732bed22c3e0c7423 successMessageText": "Thank you for your patronage, hehe.", + "64f1d7bf32bed22c3e0c7425": "Hand over USD", "64f1d6e732bed22c3e0c7423 acceptPlayerMessage": "", "64f1d6e732bed22c3e0c7423 declinePlayerMessage": "", "64f1d6e732bed22c3e0c7423 completePlayerMessage": "", - "64f3176921045e77405d63b5 name": "Iarăși Ambulanțe", - "64f3176921045e77405d63b5 description": "Tinere, s-a ivit o problemă pe care ești potrivit să o rezolvi. Un tânăr paramedic mi-a povestit un lucru înfricoșător. Înainte să înceapă dezastrul, a preluat mai mulți pacienți cu simptome ciudate, ca și cum ar fi o boală nouă. Odată ajunși în spital, acești pacienții erau preluați imediat de necunoscuți și duși în saloane speciale. Tânărul nostru a reușit să facă poze unei fișe de consultație când îi preluau încă un pacient. Din păcate și-a pierdut telefonul când a început haosul. Spune că era în ambulanță în timp ce preluau alt pacient și de acolo totul e în ceață. În numele lui Dumnezeu, mercenare, găsește telefonul! Paramedicul va fi cu oamenii mei într-un SUV la Primorsky și-ți va confirma dacă telefonul e al lui. Te rog, îm pun speranțele în tine, nu vreau greșeli.", + "64f3176921045e77405d63b5 name": "Ambulances Again", + "64f3176921045e77405d63b5 description": "Young man, a job opportunity in your line of work has come up. A young ambulance paramedic I know came by recently and told me a rather frightening story. Right before the disaster, he was taking patients with vague symptoms, as if a new disease had broken out. In hospitals they were seized by unfamiliar faces and taken to private wards. The boy managed to photograph their observation journals as they picked up yet another patient. However, in the midst of chaos, he dropped his smartphone with all the data. He says they were driving their ambulance to pick up another patient and the rest is a blur. For God's sake, find me that phone, mercenary! The paramedic will be waiting for you under the protection of my men in an SUV at Primorsky and will confirm the phone is his. There can be no mistake, I have high hopes for you, young man.", "64f3176921045e77405d63b5 failMessageText": "", - "64f3176921045e77405d63b5 successMessageText": "Da, mi s-a transmis, e ceea ce căutam. Am început să copiem informațiile. Cât despre tine, ești liber să pleci. Mulțumesc pentru ajutor.", - "64f3176921045e77405d63ba": "Găsește telefonul paramedicului pe Străzile din Tarkov", - "64f3176921045e77405d63bb": "Predă telefonul", - "64f4fdfa67e11a7c6206de72": "Extrage-te din locația Străzi din Tarkov folosind mașina din stația de Taxi Primorsky", + "64f3176921045e77405d63b5 successMessageText": "Yes, I've heard the report, this is what we've been looking for. My men will begin retrieving the information immediately. And you, young man, are free to go. Thank you for your help.", + "64f3176921045e77405d63ba": "Locate and obtain the ambulance paramedic's smartphone on Streets of Tarkov", + "64f3176921045e77405d63bb": "Hand over the smartphone", + "64f4fdfa67e11a7c6206de72": "Extract from Streets of Tarkov through Primorsky Ave Taxi V-Ex", "64f3176921045e77405d63b5 acceptPlayerMessage": "", "64f3176921045e77405d63b5 declinePlayerMessage": "", "64f3176921045e77405d63b5 completePlayerMessage": "", - "64f5aac4b63b74469b6c14c2 name": "Trăiască Partidul - Partea 2", - "64f5aac4b63b74469b6c14c2 description": "Nu, nu cred că Oleg e mort. Trebuie să mai căutăm. Ultima oară când am povestit era bucuros, zicea că și-a găsit ceva nou de lucru. Dar ne-am distras cu alte subiecte, n-a ajutat nici faptul că eram beți... Acum nu știu ce și-a găsit, dar ținând cont că era bucuros, sigur avea legătură cu ceva din timpurile Sovietice. Asta căutam. Găsește locul și caută bine. Nu vreau să-mi pierd tovarășul.", + "64f5aac4b63b74469b6c14c2 name": "Glory to CPSU - Part 2", + "64f5aac4b63b74469b6c14c2 description": "No, I don't believe Oleg's gone. So we keep looking. The last time we were in touch, he said he got a new job, eyes sparkling. But then we were distracted by another topic, and being drunk didn't help... Anyway, I don't know where he got a job, but if he was so excited, it must have had something to do with everything Soviet. That's what we'll be looking for. Find this place and search it clean. I don't want to lose my comrade.", "64f5aac4b63b74469b6c14c2 failMessageText": "", - "64f5aac4b63b74469b6c14c2 successMessageText": "Nici urmă de Oleg? Aha, jurnalul, da? Verificam. Mulțumesc, soldat.", - "64f5aac4b63b74469b6c14c9": "Supraviețuiește și extrage-te din locație", - "64f5aac4b63b74469b6c14c7": "Găsește locul de muncă al lui Oleg, prietenul lui Prapor pe Străzi", - "64f5b876a2a5bb727b61c5ad": "Găsește orice informație despre soarta lui Oleg", - "64f5bbc967e11a7c6206e00e": "Predă informațiile", + "64f5aac4b63b74469b6c14c2 successMessageText": "No sign of Oleg again? Oh, the journal, huh? We'll look into it. Thank you, soldier.", + "64f5aac4b63b74469b6c14c9": "Survive and extract from the location", + "64f5aac4b63b74469b6c14c7": "Locate the place of work of Prapor's friend on Streets of Tarkov", + "64f5b876a2a5bb727b61c5ad": "Obtain any information on the fate of Prapor's friend", + "64f5bbc967e11a7c6206e00e": "Hand over the found data", "64f5aac4b63b74469b6c14c2 acceptPlayerMessage": "", "64f5aac4b63b74469b6c14c2 declinePlayerMessage": "", "64f5aac4b63b74469b6c14c2 completePlayerMessage": "", - "64f5deac39e45b527a7c4232 name": "Prototipuri - Partea 3", - "64f5deac39e45b527a7c4232 description": "Nu ducem lipsă de patrioți... Am povestit cu niște băieți de la BEAR, despre armele produse autohton. Am primit un Kalashnikov nou și am nevoie să-l testezi undeva... Ce zici de Dalniy? Da, sună bine. Poftim arma, spor la operațiune!", + "64f5deac39e45b527a7c4232 name": "Test Drive - Part 3", + "64f5deac39e45b527a7c4232 description": "No shortage of patriots... I had a conversation with a group of BEARs the other day, we chatted about domestic weapons. Anyway, a new AK has arrived in stock, I need to test it somewhere... How about Dalniy? Yeah, that'll work. Alrighty, here's your build, go operate!", "64f5deac39e45b527a7c4232 failMessageText": "", - "64f5deac39e45b527a7c4232 successMessageText": "Clar că funcționează. Mulțumesc, soldat.", - "64f5deac39e45b527a7c4235": "Elimină operatori PMC folosind un AK-12 echipat cu amortizor și lunetă Valday PS-320 1/6x în zona Farului", + "64f5deac39e45b527a7c4232 successMessageText": "Of course it works! Thanks for the help, soldier.", + "64f5deac39e45b527a7c4235": "Eliminate PMC operatives while using an AK-12 with a suppressor and Valday PS-320 1/6x scope on Lighthouse", "64f5deac39e45b527a7c4232 acceptPlayerMessage": "", "64f5deac39e45b527a7c4232 declinePlayerMessage": "", "64f5deac39e45b527a7c4232 completePlayerMessage": "", - "64f5e20652fc01298e2c61e3 name": "La Grătar - Partea 1", - "64f5e20652fc01298e2c61e3 description": "Ooo, soldatul! Dacă tot ai venit și stai degeaba, te punem noi la muncă. Avem un bucătar în trupă, face o mâncare incredibilă, și m-am gândit să îi fac un cadou, merită. Pe strada Klimov este un restaurant, cei mai buni bucătari, cea mai bună mâncare, cea mai scumpă băutură, tot tacâmul. Mergi până acolo, vezi daca poți găsi vreo rețetă secreta sau ceva de genul.", + "64f5e20652fc01298e2c61e3 name": "Beyond the Red Meat - Part 1", + "64f5e20652fc01298e2c61e3 description": "Opa, soldier boy! Since you're here and doing jack shit right now, we're gonna put you to work. Our gang has a great cook who makes divine dishes for us all, so I want to give him a present to thank him for his service to the boys. There's a fancy restaurant in the city on Klimov street, best chefs in town, all that shit. Go there, check it out, see if you can find a secret recipe or shit like that.", "64f5e20652fc01298e2c61e3 failMessageText": "", - "64f5e20652fc01298e2c61e3 successMessageText": "Un jurnal? Ce să zic, e bun și ăsta.", - "64f6a9e6dd44b6417729b535": "Găsește informații despre secretele culinare ale restauratului Beluga", - "64f6aa6cdd44b6417729b536": "Predă informațiile", + "64f5e20652fc01298e2c61e3 successMessageText": "A journal, huh? That's fine, I guess.", + "64f6a9e6dd44b6417729b535": "Locate and obtain information on culinary secrets at the Beluga restaurant on Streets of Tarkov", + "64f6aa6cdd44b6417729b536": "Hand over the found data", "64f5e20652fc01298e2c61e3 acceptPlayerMessage": "", "64f5e20652fc01298e2c61e3 declinePlayerMessage": "", "64f5e20652fc01298e2c61e3 completePlayerMessage": "", - "64f6aafd67e11a7c6206e0d0 name": "La Grătar - Partea 2", - "64f6aafd67e11a7c6206e0d0 description": "Am citit jurnalul, multe adrese și livrări de la birourile TerraGroup. Proștii ăștia făceau mâncare bună cu condimente de laborator. Dădeau dependență oamenilor ca să facă mai mulți bani. Treburi împuțite. Ia vezi tu ce primeau de la birouri? Poate a mai rămas ceva. Jurnalul zice de eprubete roșii, asta cauți.", + "64f6aafd67e11a7c6206e0d0 name": "Beyond the Red Meat - Part 2", + "64f6aafd67e11a7c6206e0d0 description": "We took a look at that diary you found. Addresses, shipments of some bullshit from the TerraGroup offices. Anyway, to make good food, these assholes were adding some obscure lab-grade ingredient. It was made to be extremely addictive, so more people would come to give these pricks money. And to make them more compliant. It's some murky shit. Why don't you check to see what they were shipping from the offices? Maybe some of it is still there. There's a mention of some kind of red vial in the notes.", "64f6aafd67e11a7c6206e0d0 failMessageText": "", - "64f6aafd67e11a7c6206e0d0 successMessageText": "Așa, man. Să vedem ce iese. Știu eu cu cine să iau legătura. Am impresia că iar o facem lată.", - "64f6aafd67e11a7c6206e0d1": "Găsește condimentul secret în birourile TerraGroup de pe Străzile din Tarkov", - "64f6aafd67e11a7c6206e0d2": "Predă condimentul artificial", + "64f6aafd67e11a7c6206e0d0 successMessageText": "Nice work, man. Let's see what comes out of this. I got some contacts that can figure it out. I feel like we're in some serious shit again, merc.", + "64f6aafd67e11a7c6206e0d1": "Locate and obtain the secret ingredient at the TerraGroup office on Streets of Tarkov", + "64f6aafd67e11a7c6206e0d2": "Hand over the chemical additive", "64f6aafd67e11a7c6206e0d0 acceptPlayerMessage": "", "64f6aafd67e11a7c6206e0d0 declinePlayerMessage": "", "64f6aafd67e11a7c6206e0d0 completePlayerMessage": "", - "64f731ab83cfca080a361e42 name": "Medicină Veterinară - Partea 1", - "64f731ab83cfca080a361e42 description": "Este foarte dificil să găsim medicamente adecvate. Știi și tu, profesioniștii le pot utiliza și pe cele neadecvate. Te rog să cercetezi clinica veterinară, poate au rămas niște medicamente. Nu cred că mai sunt de folos cuiva. Mai verifică și laboratorul tehnicianului radiolog, am auzit că era implicat în niște experimente, asta înainte de conflict.", + "64f731ab83cfca080a361e42 name": "Pets Won't Need It", + "64f731ab83cfca080a361e42 description": "It is very problematic to find the right drugs in these difficult times. As you know, there are skilled professionals in the region who can find a good solution to seemingly unsuitable drugs. Please scout the local vet clinic, maybe there are still some drugs left, I don't think they will be useful to anyone anymore. Also, check the place of work of the local x-ray technician, I heard he was engaged in some experiments before the conflict.", "64f731ab83cfca080a361e42 failMessageText": "", - "64f731ab83cfca080a361e42 successMessageText": "Mulțumesc pentru ajutor. E păcat că totul a fost prădat, ne-au luat-o înainte cu medicamentele, cred că știu cine a fost...\nAm să-mi trimit oamenii ca să adune ce-a rămas.", - "64f731fa39e45b527a7c4300": "Cercetează clinica veterinară de pe Străzile din Tarkov", - "64f732240e186112c4455d84": "Cercetează camera de radiologie de pe Străzile din Tarkov", - "64f7325739e45b527a7c4302": "Supraviețuiește și extrage-te din locație", + "64f731ab83cfca080a361e42 successMessageText": "Thanks for your help, young man. It's a pity that practically everything has been looted, apparently they were ahead of us and the drugs have already been taken, but I know whose doing it was... Anyway, I'll send men to transport the leftovers.", + "64f731fa39e45b527a7c4300": "Locate and scout the vet clinic on Streets of Tarkov", + "64f732240e186112c4455d84": "Locate and scout the x-ray technician's room on Streets of Tarkov", + "64f7325739e45b527a7c4302": "Survive and extract from the location", "64f731ab83cfca080a361e42 acceptPlayerMessage": "", "64f731ab83cfca080a361e42 declinePlayerMessage": "", "64f731ab83cfca080a361e42 completePlayerMessage": "", - "64f83bb69878a0569d6ecfbe name": "Armurier. Partea 23", - "64f83bb69878a0569d6ecfbe description": "Un client serios a plasat o comandă pentru un AR calibrul 7.62x39. Trebuie un uluc SWS N6 Split, țeavă de 409mm, atenuator ATLAS-7, mâner față Skeletonized, lanternă GTL 21, optica Vortex UH-1, pat HK E1, mâner pistol Skeletonized Style 2 și un butoi de 73 de cartușe. Ergonomia să fie cel puțin 30 iar greutatea maximă 5 kg.", + "64f83bb69878a0569d6ecfbe name": "Gunsmith - Part 23", + "64f83bb69878a0569d6ecfbe description": "A very serious individual has placed an order for an AR on 7.62x39s . Needs an SWS N6 Split handguard, 409mm barrel, ATLAS-7 muzzle, Skeletonized Foregrip, GTL 21 flashlight, Vortex UH-1 sight, HK E1 buttstock, Skeletonized Style 2 pistol grip and a 73-round drum. Ergonomics no lower than 30, weight no higher than 5 kg.", "64f83bb69878a0569d6ecfbe failMessageText": "", - "64f83bb69878a0569d6ecfbe successMessageText": "Perfect, mulțumesc.", - "64f83d0eed30ed471f49bcde": "Modifică un CMMG Mk47 Mutant conform cu specificațiile primite", + "64f83bb69878a0569d6ecfbe successMessageText": "Great, thank you.", + "64f83d0eed30ed471f49bcde": "Modify a CMMG Mk47 Mutant to comply with the given specifications", "64f83bb69878a0569d6ecfbe acceptPlayerMessage": "", "64f83bb69878a0569d6ecfbe declinePlayerMessage": "", "64f83bb69878a0569d6ecfbe completePlayerMessage": "", - "64f83bcdde58fc437700d8fa name": "Armurier. Partea 24", - "64f83bcdde58fc437700d8fa description": "Avem o comandă noua. Un KAC SR-25 cu uluc CMMG Mk3, amortizor KAC PRS/QDC, mâner SE-5, pat GEN3, mâner pistol stil HK Ergo PSG-1, dispozitiv tactic DBAL-PL, colimator cu punct roșu FastFire 3 pe o șină de 45 de grade, încărcător de 10 cartușe si dispozitiv optic termal FLIR. Știu că sunt componente rare dar onorăm comenzile. Neapărat ergonomie minimă 25 și greutate maximă 6 kg.", + "64f83bcdde58fc437700d8fa name": "Gunsmith - Part 24", + "64f83bcdde58fc437700d8fa description": "Got a new order for you. I need a KAC SR-25 rifle. CMMG Mk3 handguard, KAC PRS/QDC silencer, SE-5 grip, PRS GEN3 buttstock, HK Ergo PSG-1 style pistol grip, DBAL-PL tactical unit, FastFire 3 red dot on a 45 degree rail, 10 round magazine, and a FLIR thermal scope. Yeah, I know it's rare nowadays, but order is an order. Oh, also you need ergonomics no lower than 25 and weight no higher than 6 kg.", "64f83bcdde58fc437700d8fa failMessageText": "", - "64f83bcdde58fc437700d8fa successMessageText": "Nu mă așteptam la altceva!", - "64f83e9d52fc01298e2c857e": "Modifică un KAC SR-25 conform cu specificațiile primite", + "64f83bcdde58fc437700d8fa successMessageText": "I'd expect nothing less from you!", + "64f83e9d52fc01298e2c857e": "Modify a KAC SR-25 to comply with the given specifications", "64f83bcdde58fc437700d8fa acceptPlayerMessage": "", "64f83bcdde58fc437700d8fa declinePlayerMessage": "", "64f83bcdde58fc437700d8fa completePlayerMessage": "", - "64f83bd983cfca080a362c82 name": "Armurier. Partea 25", - "64f83bd983cfca080a362c82 description": "Am o comandă ireală. Nici nu știu de unde poți obține o asemenea frumusețe, dar am încredere că te descurci. Am nevoie de o mitralieră PKP cu kit ZenitCo: uluc, pat, atenuator. În plus un dispozitiv tactic de orice fel și un vizor USP-1 ”Tyulpan”. Ergonomia minim 10, sumă recul maxim 950 și încărcător de 100 de cartușe.", + "64f83bd983cfca080a362c82 name": "Gunsmith - Part 25", + "64f83bd983cfca080a362c82 description": "An unreal order for you. I don't know where you're going to get such a beauty, but you've never let me down before, so I trust you. I need a PKP machine gun with a Zenitco kit: handguard, buttstock and a muzzle brake. With USP-1 \"Tyulpan\" sight and any tactical device. Ergonomics no lower than 10, 100-round box, recoil no higher than 950.", "64f83bd983cfca080a362c82 failMessageText": "", - "64f83bd983cfca080a362c82 successMessageText": "Așa mai zic și eu. Respectele mele!", - "64f841199a4f905106515448": "Modifică o mitralieră PKP conform cu specificațiile primite", + "64f83bd983cfca080a362c82 successMessageText": "Now that's what I call a big boy. Deserves respect. Thanks, pal.", + "64f841199a4f905106515448": "Modify a PKP machine gun to comply with the given specifications", "64f83bd983cfca080a362c82 acceptPlayerMessage": "", "64f83bd983cfca080a362c82 declinePlayerMessage": "", "64f83bd983cfca080a362c82 completePlayerMessage": "", - "655e427b64d09b4122018228 name": "Călăul - Recolta", - "655e427b64d09b4122018228 description": "În sfârșit iei legătura cu noi, mercenare. Am fost abordat de un individ care își spune Maistrul. Mi-a spus să te caut, mi-a spus chiar el ca tu înțelegi esența problemei și că le-ai câștigat respectul.\nMaistrul are o misiune pentru tine. Va trebui să-ți elimini colegii veterani din Tarkov. Eu iți voi pune la dispoziție echipamentul necesar.\nSă fiu sincer, eu nu sunt de acord cu metodele Maistrului, dar plătește foarte bine. Mai multe nu-ți pot spune, dar am un sfat: vin vremuri grele, ai grijă de stocul tău de muniție dacă vrei să supraviețuiești. Îmi place să lucrez cu tine și n-aș vrea să pieri în masacrul ce urmează.", + "655e427b64d09b4122018228 name": "The Punisher. Harvest", + "655e427b64d09b4122018228 description": "You're finally in touch, mercenary. I was just approached by a man who calls himself a Master. He asked to find you, because from his words you understand the essence of the matter and deserve Their respect.\nThe master asked me to tell you that there is a new job for you. It is necessary to eliminate experienced colleagues throughout Tarkov. I will give you the necessary equipment to complete the task.\nLet me be honest with you, my friend. I do not approve Master's methods, but the benefits offered are very attractive. I can't tell you everything, but I can give you some advice: special times are coming, save your ammunition if you want to survive. Our work with you is very productive, and I would not like you to die in this massacre.", "655e427b64d09b4122018228 failMessageText": "", - "655e427b64d09b4122018228 successMessageText": "Ai reușit, mercenare. Maistrul a pregătit o recompensă pe măsura misiunii. Așteaptă mesajul, se pară ca are o altă misiune pentru tine, într-un loc anume.", - "655e49e942913d55e050376b": "Predă plăcuțe de nivel 25+", - "655e483da3ee7d4c56241e17": "Elimină operatori PMC", + "655e427b64d09b4122018228 successMessageText": "Well, you completed the task, mercenary. The master has prepared an appropriate reward for you. Wait for a message, it seems that he is ready to offer a job in, so to speak, a specific place.", + "655e49e942913d55e050376b": " Hand over level 25+ dogtags", + "655e483da3ee7d4c56241e17": "Eliminate PMC operatives", "655e427b64d09b4122018228 acceptPlayerMessage": "", "655e427b64d09b4122018228 declinePlayerMessage": "", "655e427b64d09b4122018228 completePlayerMessage": "", - "6572e876dc0d635f633a5714 name": "Schema Piramidală", - "6572e876dc0d635f633a5714 description": "Salut, salut. Ai nimerit la momentul perfect. Am o treabă, gen film de acțiune. Vom jefui bănci! Bine, defapt automatele bancare.\n\nE plin orașul de ele, majoritatea de la Unity Credit Bank. Ce zici să mergi să le verifici? Poate n-au fost golite chiar toate.", + "6572e876dc0d635f633a5714 name": "Pyramid Scheme", + "6572e876dc0d635f633a5714 description": "Hello-hello. Perfect timing. Got a job, real action movie style. We are going to rob banks! Well, ATMs, actually.\n\nThere were tons of them around the city, most of them at Unity Credit Bank. Why don't you go down there and check out the ATMs? Maybe they didn't all get snatched up yet.", "6572e876dc0d635f633a5714 failMessageText": "", - "6572e876dc0d635f633a5714 successMessageText": "Au mai rămas câteva deci. Mișto, le vom face o vizită. Poftim plata.", - "6572e876dc0d635f633a5718": "Găsește primul set de ATM-uri de pe strada Klimov", + "6572e876dc0d635f633a5714 successMessageText": "Some are still intact, huh. Well, that's cool, we'll go pay them a little visit. Your reward.", + "6572e876dc0d635f633a5718": "Locate the first group of ATMs on Klimov Street on Streets of Tarkov", "6572e876dc0d635f633a571a": "", "6572e876dc0d635f633a571c": "Cercetează magazinul Sparja din hotelul Pinewood", "6572e876dc0d635f633a571e": "Cercetează magazinul Goshan din clădirea Concordia", - "6572e876dc0d635f633a5720": "Predă articol găsit în raid: salam de vită Salty Dog", - "65730579d50436e87723dae4": "Găsește primul ATM de pe strada Klimov", - "6573057d66de94c756a60472": "Găsește primul ATM de pe strada Nizhnaya Sadovaya", - "65730580123b33fa7bb1a9fc": "Găsește al doilea ATM de pe strada Nizhnaya Sadovaya", - "6573058510b6071846639907": "Găsește primul ATM de pe calea Primorsky", - "657305885511555648dbb952": "Găsește ATM-ul de pe strada Razvedchikov", - "657305890917f63ef47b6a3a": "Găsește al doilea set de ATM-uri de pe strada Klimov", - "6573058b4e3f646b0e364add": "Găsește al treilea set de ATM-uri de pe strada Klimov", - "6573058d6a542c099ce5d92b": "Găsește al doilea ATM de pe strada Klimov", - "6573058f5c2ba64444301c25": "Găsește al patrulea set de ATM-uri de pe strada Klimov", - "657305913186869491d7f5fd": "Găsește al treilea ATM de pe strada Klimov", - "65730593d4b1bd9359203a74": "Găsește al patrulea ATM de pe strada Klimov", - "65730595fd5ec1426ebd5484": "Găsește al cincilea set de ATM-uri de pe strada Klimov", - "65730597d64537696cc661c6": "Găsește al doilea ATM de pe calea Primorsky", - "657305989d1d1fe81237e9e7": "Găsește al treilea ATM de pe calea Primorsky", - "6573059ace022903ee1e6b11": "Găsește ATM-ul de la expoziție", + "6572e876dc0d635f633a5720": "Predă articol găsit în raid: salam vită Salty Dog", + "65730579d50436e87723dae4": "Locate the first ATM on Klimov Street on Streets of Tarkov", + "6573057d66de94c756a60472": "Locate the first ATM on Nizhnaya Sadovaya Street on Streets of Tarkov", + "65730580123b33fa7bb1a9fc": "Locate the second ATM on Nizhnaya Sadovaya Street on Streets of Tarkov", + "6573058510b6071846639907": "Locate the first ATM on Primorsky Ave on Streets of Tarkov", + "657305885511555648dbb952": "Locate the ATM on Razvedchikov Street on Streets of Tarkov", + "657305890917f63ef47b6a3a": "Locate the second group of ATMs on Klimov Street on Streets of Tarkov", + "6573058b4e3f646b0e364add": "Locate the group of ATMs on Klimov Street on Streets of Tarkov", + "6573058d6a542c099ce5d92b": "Locate the second ATM on Klimov Street on Streets of Tarkov", + "6573058f5c2ba64444301c25": "Locate the fourth group of ATMs on Klimov Street on Streets of Tarkov", + "657305913186869491d7f5fd": "Locate the third ATM on Klimov Street on Streets of Tarkov", + "65730593d4b1bd9359203a74": "Locate the fourth ATM on Klimov Street on Streets of Tarkov", + "65730595fd5ec1426ebd5484": "Locate the fifth group of ATMs on Klimov Street on Streets of Tarkov", + "65730597d64537696cc661c6": "Locate the second ATM on Primorsky Ave on Streets of Tarkov", + "657305989d1d1fe81237e9e7": "Locate the third ATM on Primorsky Ave on Streets of Tarkov", + "6573059ace022903ee1e6b11": "Locate the ATM at the expo on Streets of Tarkov", "6572e876dc0d635f633a5714 acceptPlayerMessage": "", "6572e876dc0d635f633a5714 declinePlayerMessage": "", "6572e876dc0d635f633a5714 completePlayerMessage": "", - "657315ddab5a49b71f098853 name": "Primul Venit", - "657315ddab5a49b71f098853 description": "Buna ziua, tinere. Încă nu am făcut cunoștință. Lumea din Tarkov îmi spune Doctorița. Ar trebui să fie clar cu ce mă ocup. Am înțeles că vrei să ăți faci relații. Foarte bine, fă ceva pentru mine iar apoi putem lucra împreună.\n\nAu rămas destul de mulți civili care vor să scape din oraș. Ar fi ideal să pregătim evacuarea la punctul de control EMERCOM: ei au echipamentul necesar și mijloacele de transport. Sper. Personal nu cunosc zona și nu știu unde se află. Va trebui să găsești punctul de control iar apoi îmi voi trimite oamenii să verifice.\n\nAh, încă ceva. Am o listă de necesar pentru intervenții și ajutor medical. Nu mai pot să obțin nimic din afara, va trebui să le găsești în Tarkov. Nu contează ce aduci: truse, medicamente, stimulente. Toate sunt de folos. Te aștept.", - "657315ddab5a49b71f098853 failMessageText": "Înțeleg că vrei să faci misiuni mai complexe. Bine, lăsăm asta începătorilor.", - "657315ddab5a49b71f098853 successMessageText": "Misiune reușită? Minunat, mulțumesc. Sper să ne înțelegem la fel de bine de acum încolo.", - "657320308c789bb102d2cde8": "Găsește punctul EMERCOM", - "65732ac3c67dcd96adffa3c7": "Găsește punctul EMERCOM în Punctul Zero", - "657330fc0c93c8c281b2b6b4": "Predă 3 articole medicale", - "65817bf31404f3565aef9fec": "Predă oricare articole medicale", + "657315ddab5a49b71f098853 name": "First in Line", + "657315ddab5a49b71f098853 description": "Greetings, young man. We aren't acquainted with each other yet. Everyone in Tarkov calls me Therapist. I think you can guess from my name what I do here. I've been told you want to make connections. I need you to complete a quick assignment for me, then we can work together.\n\nThere are still civilians in the city and they want to leave. It's best to organize evacuation from the Emercom checkpoint: they have both the transport and the necessary equipment. At least, I hope so. However, I have rarely been in this part of the city, I don't know where exactly the station is. You need to find it. Then I'll send my men to check the area.\n\nOh, one more favor. I'm in need of medical supplies for my medical duty. I can't import them to Tarkov anymore, so I have to search for them here. It doesn't matter what you bring, supplies, drugs, stimulants. Anything will do. I'll be waiting.", + "657315ddab5a49b71f098853 failMessageText": "I see you are already experienced enough for more complex matters. Leave this one to the rookies then.", + "657315ddab5a49b71f098853 successMessageText": "Mission accomplished? That's great news, thank you. I hope that our cooperation will be equally productive in the future.", + "657320308c789bb102d2cde8": "Найти пункт МЧС", + "65732ac3c67dcd96adffa3c7": "Locate the Emercom station on Ground Zero", + "657330fc0c93c8c281b2b6b4": "Передать 3 медицинских предмета", + "65817bf31404f3565aef9fec": "Hand over any medicine items", "657315ddab5a49b71f098853 acceptPlayerMessage": "", "657315ddab5a49b71f098853 declinePlayerMessage": "", "657315ddab5a49b71f098853 completePlayerMessage": "", - "657315df034d76585f032e01 name": "Trageri la Conserve", - "657315df034d76585f032e01 description": "Salutare! Înțeleg că vrei să muncești pentru bani în plus. Eu personal fac afaceri cu oamenii noi din zonă. Nu-ți voi da misiuni importante imediat, înțelegi tu. Vom începe cu ceva simplu ca să prinzi ideea.\n\nÎn centrul orașului au fost montate AGS-uri și KORD-uri în timpul luptelor grele. Găsește câte una din fiecare și raportează-mi. Periază puțin zona ca să nu ajungă cineva pe pozițiile de tragere mai repede decât băieții mei. Cred că 5 eliminări sunt de ajuns. Scavi, PMC, oricine. Mai puțini inamici, mai mici șansele de ambuscadă, știi? Cu un drum vedem și dacă știi să tragi.", - "657315df034d76585f032e01 failMessageText": "Am înțeles, calmează-te, e clar ceva prea simplu pentru tine. Îți găsesc ceva mai interesant de făcut.", - "657315df034d76585f032e01 successMessageText": "Ai reușit? Bravo. Poate chiar vei fi util.", - "657333fee3fbaa77d3b5cd7c": "Găsește mitraliera Utyos la Punctul Zero", - "6573340403f471fb2bb12df1": "Găsește aruncătorul de grenade AGS la Punctul Zero", - "657334311dbb8b7569bb83c4": "Elimină orice inamic la Punctul Zero", + "657315df034d76585f032e01 name": "Shooting Cans", + "657315df034d76585f032e01 description": "Greetings! I hear you're looking for a little extra cash. I'm looking for new people around here. I won't take you on any big jobs right away, of course. We'll start with something simple to get you up to speed.\n\nI know that the city center is where AGSs and KORDs were deployed during the hottest fights. Find me one of each and report back. Also, sweep the area around them, make sure no one gets to the firing positions before my guys do. I think five bodies will be enough. Scavs, PMCs, whatever. Less trespassers, less chance of an ambush, you know? That'll test your shooting skills, too.", + "657315df034d76585f032e01 failMessageText": "All right, relax, kid, this is clearly too easy for you. I'll find you something more interesting.", + "657315df034d76585f032e01 successMessageText": "You did it? Well done! Maybe you could really be useful.", + "657333fee3fbaa77d3b5cd7c": "Locate the Utyos machine gun on Ground Zero", + "6573340403f471fb2bb12df1": "Locate the AGS grenade launcher on Ground Zero", + "657334311dbb8b7569bb83c4": "Eliminate any target on Ground Zero", "657315df034d76585f032e01 acceptPlayerMessage": "", "657315df034d76585f032e01 declinePlayerMessage": "", "657315df034d76585f032e01 completePlayerMessage": "", - "657315e1dccd301f1301416a name": "Trăim în Lux", - "657315e1dccd301f1301416a description": "Salut! Te-ai descurcat foarte bine, dar nu-i destul pentru mine. Va trebui să mai alergi puțin, soldat.\n\nVreau o sticlă de vin. Eu unul beau tărie, dar știu pe cineva, un colecționar de vinuri. Colecționar de vinuri rare! Vreau să-i ofer cadou o sticlă ca gest de bunăvoință. Orice relație cu oameni reputabili în Tarkov valorează mai mult decât aurul, mai ales acum, înțelegi?\n\nEste un magazin de băuturi în centru. Vindeau alcool la suprapreț pentru elita orașului. Mai trebuie să fi rămas ceva. Mergi și verifică locul, găsește-mi o sticlă bună de vin franțuzesc! Să nu încerci să aduci ceva contrafăcut.", - "657315e1dccd301f1301416a failMessageText": "Ai prea multă experiență pentru treburile astea. Lăsăm asta începătorilor.", - "657315e1dccd301f1301416a successMessageText": "Ohoo, ce sticlă frumoasă! E perfectă. Poftim plata, o meriți.", - "65817cabba2ba6ef71fc72ca": "Găsește sticla de vin în magazin", - "65817cd2881a7e07b3ec1249": "Predă sticla de vin", - "6575aa67197bd678a0c3f552": "Găsește magazinul de băuturi în Punctul Zero", + "657315e1dccd301f1301416a name": "Luxurious Life", + "657315e1dccd301f1301416a description": "Hey! You did well on the first job, but it's not enough to make me happy. You're gonna have to do a little more legwork, soldier. \n\nI need to find a bottle of wine. I myself am more of a hard drinker, but I know a man who collects wine. And not just any kind, but the rarest kind! I want to give him a bottle as a gesture of goodwill. Nowadays in Tarkov, any connections with reputable people are worth their weight in gold, you know?\n\nThere was a liquor store in the city center. They used to sell booze three times the price, for the elite folks. I'm sure there's some left. Go there and search the place and get me a good bottle of some French wine! And don't even try to slip me some fake shit.", + "657315e1dccd301f1301416a failMessageText": "You've become too experienced for this kind of job, warrior. We'll leave the fetch tasks to the greens.", + "657315e1dccd301f1301416a successMessageText": "O-ho, that's a beautiful bottle! The man is gonna love it. Here's your reward, well deserved.", + "65817cabba2ba6ef71fc72ca": "Locate and obtain the wine bottle in the store", + "65817cd2881a7e07b3ec1249": "Hand over the wine bottle", + "6575aa67197bd678a0c3f552": "Locate the liquor store on Ground Zero", "657315e1dccd301f1301416a acceptPlayerMessage": "", "657315e1dccd301f1301416a declinePlayerMessage": "", "657315e1dccd301f1301416a completePlayerMessage": "", - "657315e270bb0b8dba00cc48 name": "Calcă Accelerația", - "657315e270bb0b8dba00cc48 description": "Băiatul nou? Da, da, salut. Cauți ceva de făcut? Am niște mărunțișuri...\n\nȘtiu un băiat, face pe taximetristul prin centrul orașului. Pe bani frumoși chiar! Vreau să îi transmiți ceva, să audă numai el, deci va trebui să plătești o cursă. Nu e mare secret, e mai degrabă să se întrebe proștii.\n\nSimplu, nu? Îți dau și bani pentru cursă. Ce zici?", - "657315e270bb0b8dba00cc48 failMessageText": "Ai devenit mai bun, mărunțișurile astea nu-s pentru tine. Revin cu ceva mai bun, așteaptă puțin.", - "657315e270bb0b8dba00cc48 successMessageText": "Bun, am înțeles că te-ai prezentat și totul a mers bine.", - "65733e571b7e7ed95fcd2f0c": "Folosește extracția plătită cu mașina din Punctul Zero", + "657315e270bb0b8dba00cc48 name": "Burning Rubber", + "657315e270bb0b8dba00cc48 description": "New guy? Yeah, yeah, hello. Looking for a job, you say? I have a little thing to take care of...\n\nI got a buddy who drives people around in his SUV from the city center. For cash, obviously! You have to whisper something in his ear, but do it during your trip, so that no scum can overhear you. I won't trust you with anything very secret, don't even dream of it, but I don't want any rumors to spread.\n\nJob's easy enough, I'll even give you the money for the ride. You up for it?", + "657315e270bb0b8dba00cc48 failMessageText": "You've gotten tougher, doing little chores like this is a waste of talent. I'll come up with something better, but you hang in there for now.", + "657315e270bb0b8dba00cc48 successMessageText": "Alright, the guy told me you showed up and did everything fine.", + "65733e571b7e7ed95fcd2f0c": "Use the paid vehicle extraction on Ground Zero", "657315e270bb0b8dba00cc48 acceptPlayerMessage": "", "657315e270bb0b8dba00cc48 declinePlayerMessage": "", "657315e270bb0b8dba00cc48 completePlayerMessage": "", - "657315e4a6af4ab4b50f3459 name": "Salvează Cârtița", - "657315e4a6af4ab4b50f3459 description": "Salut, mercenar. Eu sunt Mecanicul. Am auzit că vrei să ne cunoaștem în persoană. Putem aranja asta, dar trebuie să rezolvăm ceva mai întâi.\n\nTerraGroup a trimis o echipa de intervenție USEC împotriva unui angajat de-al lor acuzat că scurge informații. Nu știu dacă l-au eliminat sau nu, am nevoie de tine să investighezi situația. Verifică în complexul TerraGroup din centrul orașului, caută urme ale echipei și ale angajatului. Îl știam pe individ și sunt curios de soarta lui. Purta întotdeauna asupra lui un hard disk extern cu datele importante de la muncă, daca-l găsești atunci adu-mi-l.", - "657315e4a6af4ab4b50f3459 failMessageText": "Anulez misiunea. E clar că vrei ceva mai important.", - "657315e4a6af4ab4b50f3459 successMessageText": "L-au ucis? Păcat, dar era de așteptat. TerraGroup voia cu orice preț să-și acopere urmele. Ai făcut o treabă bună. Putem continua să facem afaceri. Mulțumesc pentru discul cu date.", - "65817fbbb454159976c91917": "Găsește hard diskul omului de știință", - "65817fc99a039ed2e97896e4": "Predă hard diskul", - "6575a524a39d2be74e620546": "Găsește grupul de PMC USEC din parcarea complexului TerraGroup în Punctul Zero", - "6575a62a62028c6d5cb43cb7": "Găsește corpul laborantului în Punctul Zero", - "6575a64d3fc09bdfb38b713d": "Intră în biroul laborantului", + "657315e4a6af4ab4b50f3459 name": "Saving the Mole", + "657315e4a6af4ab4b50f3459 description": "Hello, mercenary. I'm Mechanic. I was told you wanted to meet me. We could arrange that, but there's a matter to be settled first.\n\nTerraGroup sent a USEC task force after one of their employees. He was accused of leaking information and they wanted him removed. I don't know if they succeeded or not, which is why you need to investigate this. Check the TerraGroup complex in the city center, look for traces of both the squad and the employee. I used to work with him, so I'm interested in what eventually happened. He almost always carried a drive with his important data on it, so if you find it, bring it to me.", + "657315e4a6af4ab4b50f3459 failMessageText": "I'm canceling the task. You obviously need something more substantial than that.", + "657315e4a6af4ab4b50f3459 successMessageText": "They killed him? Well, that's sad, but expected. TerraGroup was desperate to cover their tracks. You've done a good job, I think we can continue this partnership. And thanks for the data drive.", + "65817fbbb454159976c91917": "Locate and obtain the scientist's hard drive", + "65817fc99a039ed2e97896e4": "Hand over the hard drive", + "6575a524a39d2be74e620546": "Locate the USEC PMC group at the parking lot of the TerraGroup complex on Ground Zero", + "6575a62a62028c6d5cb43cb7": "Locate the lab scientist on Ground Zero", + "6575a64d3fc09bdfb38b713d": "Access the scientist's office", "657315e4a6af4ab4b50f3459 acceptPlayerMessage": "", "657315e4a6af4ab4b50f3459 declinePlayerMessage": "", "657315e4a6af4ab4b50f3459 completePlayerMessage": "", - "65733403eefc2c312a759ddb name": "Secretele Programatorului - Partea 1", - "65733403eefc2c312a759ddb description": "Salut, mercenar. Nu mai țin minte cum se numea, era o firmă de IT cu sediul în oraș, foarte buni, le folosesc și acum programul.\n\nFirma era mică, nici acum nu știu cum o firmă așa mică a reușit să scoată un asemena program, mai ales într-un timp atât de scurt. Mi-aș dori foarte mult să știu, vizitează-le te rog biroul și aruncă o privire.", + "65733403eefc2c312a759ddb name": "Developer's Secrets - Part 1", + "65733403eefc2c312a759ddb description": "Hey, mercenary. Before all the chaos happened, there was an IT firm in the city. I don't recall the name, I just remember that they made the best software in their segment. I still use it now.\n\nThe company was small, so I still don't understand how they did everything so well in such a short time. They definitely had some secret and it would do me good to know it. Will you help me satisfy my curiosity, find their office and take a look around?", "65733403eefc2c312a759ddb failMessageText": "", - "65733403eefc2c312a759ddb successMessageText": "O cameră de tortură? E cam, aaa... medieval, dar funcționează. Bun, poftim plata.", - "65733403eefc2c312a759ddc": "Găsește biroul firmei de IT pe Străzile din Tarkov", - "65733403eefc2c312a759dde": "ATM Nr. 2", - "65733403eefc2c312a759de0": "ATM Nr. 3", - "65733403eefc2c312a759de2": "ATM Nr. 4", - "65733403eefc2c312a759de4": "ATM Nr. 5", - "65733403eefc2c312a759de6": "ATM Nr. 6", - "65733403eefc2c312a759de8": "ATM Nr. 7", - "65733403eefc2c312a759dea": "ATM Nr. 8", - "65733403eefc2c312a759dec": "ATM Nr. 9", - "65733403eefc2c312a759dee": "ATM Nr. 10", - "65733403eefc2c312a759df0": "ATM Nr. 11", - "65733403eefc2c312a759df2": "ATM Nr. 12", - "65733403eefc2c312a759df4": "ATM Nr. 14", + "65733403eefc2c312a759ddb successMessageText": "A torture chamber? It's very, uh, medieval, but it works. Okay, here's your reward.", + "65733403eefc2c312a759ddc": "Locate the IT firm office on Streets of Tarkov", + "65733403eefc2c312a759dde": "Atm №2", + "65733403eefc2c312a759de0": "Atm №3", + "65733403eefc2c312a759de2": "Atm №4", + "65733403eefc2c312a759de4": "Atm №5", + "65733403eefc2c312a759de6": "Atm №6", + "65733403eefc2c312a759de8": "Atm №7", + "65733403eefc2c312a759dea": "Atm №8", + "65733403eefc2c312a759dec": "Atm №9", + "65733403eefc2c312a759dee": "Atm №10", + "65733403eefc2c312a759df0": "Atm №11", + "65733403eefc2c312a759df2": "Atm №12", + "65733403eefc2c312a759df4": "Atm №14", "65733403eefc2c312a759df6": "", - "65733403eefc2c312a759df8": "ATM Nr. 15", - "65733403eefc2c312a759dfa": "ATM Nr. 16", - "65801ad655315fdce2096bec": "Află secretul succesului firmei de IT", - "65801b07a26e65a69c2fedd1": "Supraviețuiește și extrage-te din locație", + "65733403eefc2c312a759df8": "Atm №15", + "65733403eefc2c312a759dfa": "Atm №16", + "65801ad655315fdce2096bec": "Unravel the secret of the firm's success", + "65801b07a26e65a69c2fedd1": "Survive and extract from the location", "65733403eefc2c312a759ddb acceptPlayerMessage": "", "65733403eefc2c312a759ddb declinePlayerMessage": "", "65733403eefc2c312a759ddb completePlayerMessage": "", - "6573382e557ff128bf3da536 name": "Secretele Programatorului - Partea 2", - "6573382e557ff128bf3da536 description": "Salut, mercenare. Mă tot gândeam la camera de tortură, cea de la firma de IT. Nu îmi vine să cred ca e singurul lucru care a ajutat. Nu cred că se poate lucra doar cu frica biciului.\n\nSunt sigur că angajații aveau și metode de relaxare, de a se elibera de stres. Vezi ce altceva mai poți găsi, poate aflii ceva nou.", + "6573382e557ff128bf3da536 name": "Developer's Secrets - Part 2", + "6573382e557ff128bf3da536 description": "Hello, merc. I've been thinking about that torture room you found. I can't believe it was the only thing that kept that thing going. The stick isn't enough, we need a carrot.\n\nI'm sure the employees had a way to cheer themselves up and relieve stress. See what else you can find out, maybe you'll find some more info.", "6573382e557ff128bf3da536 failMessageText": "", - "6573382e557ff128bf3da536 successMessageText": "Știam eu că e ceva mai mult decât tortură. Aveau deci și salon cu narghilea. Frumos de tot. Poftim plata.", - "6573382e557ff128bf3da537": "Descoperă secretul moralului ridicat al angajaților firmei de IT", - "65800413f41301adef3c9698": "Supraviețuiește și extrage-te din locație", + "6573382e557ff128bf3da536 successMessageText": "I knew there was more to it than torture. So it's the hookah lounge as well. That's a nice carrot indeed. Here's your reward.", + "6573382e557ff128bf3da537": "Unravel the secret of the IT firm's employees' high morale on Streets of Tarkov", + "65800413f41301adef3c9698": "Survive and extract from the location", "6573382e557ff128bf3da536 acceptPlayerMessage": "", "6573382e557ff128bf3da536 declinePlayerMessage": "", "6573382e557ff128bf3da536 completePlayerMessage": "", - "6573387d0b26ed4fde798de3 name": "Medicină Veterinară - Partea 2", - "6573387d0b26ed4fde798de3 description": "Salutari, tinere, am nevoie de ajutorul tău.\n\nAm găsit prea puține lucruri utile în clinica veterinară și în laboratorul de radiologie. Ținta următoare sunt farmaciile. Erau chiar multe în oraș, sper că hoții n-au avut timp să le golească pe toate. Verifică farmaciile pentru mine, apoi îmi trimit oamenii. Știu trei locații. Vezi în ce stare sunt.", + "6573387d0b26ed4fde798de3 name": "Pets Won't Need It - Part 2", + "6573387d0b26ed4fde798de3 description": "Hello, young man. I need your help.\n\nWhat we found at the vet clinic and the x-ray office was not enough. Our next target is pharmacies. There were plenty of them around the city, so I don't think the thieves had time to take everything. Check out the pharmacies for me, then I'll send my men over. I know of at least three. See what condition they're in.", "6573387d0b26ed4fde798de3 failMessageText": "", - "6573387d0b26ed4fde798de3 successMessageText": "Majoritatea prădate deja? Nu mă surprinde deloc, totuși e mai bine că știm.", - "6573387d0b26ed4fde798de4": "Găsește prima farmacie de pe calea Primorsky", - "657338ded9b444e1fb07b1a8": "Găsește a doua farmacie de pe calea Primorsky", - "657338ed8e8e3a05445b760d": "Găsește a treia farmacie din complexul Cardinal", - "658009db6b313a8a4ed58851": "Supraviețuiește și extrage-te din locație", + "6573387d0b26ed4fde798de3 successMessageText": "Most of them looted, too? I'm not surprised at all, but it's still better than nothing at all.", + "6573387d0b26ed4fde798de4": "Locate the first pharmacy on Primorsky Ave on Streets of Tarkov", + "657338ded9b444e1fb07b1a8": "Locate the second pharmacy on Primorsky Ave on Streets of Tarkov", + "657338ed8e8e3a05445b760d": "Locate the third pharmacy at Cardinal apartment complex on Streets of Tarkov", + "658009db6b313a8a4ed58851": "Survive and extract from the location", "6573387d0b26ed4fde798de3 acceptPlayerMessage": "", "6573387d0b26ed4fde798de3 declinePlayerMessage": "", "6573387d0b26ed4fde798de3 completePlayerMessage": "", - "6573397ef3f8344c4575cd87 name": "Investiții Imobiliare", - "6573397ef3f8344c4575cd87 description": "Hei, soldat! Am o treabă pentru tine, una ușoară.\n\nProbabil că știi, dar la început compania TerraGroup se purta admirabil: plăteau taxe, făceau petiții, prezentau bilanțuri, tot rahatul. Abia mai târziu au deraiat ca nebunii. Cred că biroul municipal de cadastru și registru imobiliar are în evidență proprietățile și concesiunile nebunilor. Dacă îți bagi nasul, s-ar putea să găsești ceva interesant. Pariez că vei găsi proprietăți ascunse. Te crezi în stare?", + "6573397ef3f8344c4575cd87 name": "Properties All Around", + "6573397ef3f8344c4575cd87 description": "Heyo, soldier! I've got a little job for you, easy as always.\n\nYou probably know that TerraGroup acted honorably at first: they filed official requests, compiled documents, paid taxes, all this crap. It's only later that they went off the motherfucking rails. I have a feeling that the city's real estate fund may have kept records of the facilities bought or leased by those fucks. If you poke around, you might find something interesting. I'll bet it'll uncover a lot of hidden assets. You up for it?", "6573397ef3f8344c4575cd87 failMessageText": "", - "6573397ef3f8344c4575cd87 successMessageText": "Ai găsit? Bravo, vreau să văd! Poftim plata, o meriți.", - "6573397ef3f8344c4575cd88": "Găsește biroul de cadastru și imobiliare pe Străzile din Tarkov", + "6573397ef3f8344c4575cd87 successMessageText": "Did you find it? Nice work, now bring it here! And take your reward, you deserve it.", + "6573397ef3f8344c4575cd88": "Locate the real estate fund on Streets of Tarkov", "6573397ef3f8344c4575cd8a": "", "6573397ef3f8344c4575cd8c": "", - "6581676e7a18ff402fd23e68": "Găsește registrul cu tranzacții imobiliare din Tarkov", - "658167a0e53c40116f8632fa": "Predă informația", + "6581676e7a18ff402fd23e68": "Locate and obtain the Tarkov real estate transactions document", + "658167a0e53c40116f8632fa": "Hand over the obtained information", "6573397ef3f8344c4575cd87 acceptPlayerMessage": "", "6573397ef3f8344c4575cd87 declinePlayerMessage": "", "6573397ef3f8344c4575cd87 completePlayerMessage": "", - "65734c186dc1e402c80dc19e name": "Papițoi", - "65734c186dc1e402c80dc19e description": "Salut, frate! Ce faci, cum ești? Bine? Eu nu așa de bine ca tine, am probleme cu niște băieți. Sunt o gașcă ce-mi face competiție, se cred foarte hip, mă cam deranjează.\n\nTrebuie să le arătăm unde le e locul. Și locul lor nu e în frizeria din care-mi fac belea, clar. No, nu trebuie să-i scoți afară. Vom fi subtili. Prefă-te că ești unul din ei și trage în tot ce vezi. Vreau să văd cum tot orașul vine după ei. Când termini, aruncă uniforma la frizeria lor ca să fie clar pentru toată lumea cine-s maniacii care trag în toată lumea. Poți face asta?", + "65734c186dc1e402c80dc19e name": "Dandies", + "65734c186dc1e402c80dc19e description": "Hey, brother! What's up, how you doing? Good? Well I unfortunately have some guys messing with me. They've got a gang, they think they're the hippest guys in the neighborhood, and they're interfering with my business as well!\n\nWe gotta show them where they belong. And it ain't in that fancy barbershop they're holed up in, that's for sure. No, no need to kick anyone out. We're gonna be subtle. Pretend to be one of them and shoot pretty much anyone you see. I need everyone in the city to start hating them. When you're done, drop the outfit off at their barbershop so people know who's the maniac shooting everything. Can you do that?", "65734c186dc1e402c80dc19e failMessageText": "", - "65734c186dc1e402c80dc19e successMessageText": "Da da, deja am auzit discuțiile. Puțoii or să fi răstigniți prin tot orașul. Ai făcut treabă bună. Poftim răsplata.", - "65734c186dc1e402c80dc1a2": "Elimină inamici purtând șapcă de Bombardier și ochelari RayBench Hipster Reserve pe Străzile din Tarkov", + "65734c186dc1e402c80dc19e successMessageText": "Oh, yeah, I've already heard the rumors. People're gonna nail those punks to the wall soon. You did a great job. Here's your reward.", + "65734c186dc1e402c80dc1a2": "Eliminate any enemy while wearing a Bomber beanie and Raybench Hipster Reserve sunglasses on Streets of Tarkov", "6573519a1fd8800ddb2c50d2": "", "657351aa43f6a0e6d0c205bb": "", - "657356c410becd24bc776f55": "Ascunde o șapcă de bombardier la frizeria de pe Străzile din Tarkov", - "657356d0a95a1e7e1a8d8d99": "Ascunde ochelarii de soare RayBench Hipster Reserve la frizeria de pe Străzile din Tarkov", + "657356c410becd24bc776f55": "Stash a Bomber beanie inside the barber shop on Streets of Tarkov", + "657356d0a95a1e7e1a8d8d99": "Stash Raybench Hipster Reserve sunglasses inside the barber shop on Streets of Tarkov", "65734c186dc1e402c80dc19e acceptPlayerMessage": "", "65734c186dc1e402c80dc19e declinePlayerMessage": "", "65734c186dc1e402c80dc19e completePlayerMessage": "", - "6574e0dedc0d635f633a5805 name": "Prototipuri - Partea 4", - "6574e0dedc0d635f633a5805 description": "Am o jucărie noua și vreau să o încerc. Ai venit la fix pentru asta. Ia RPD-ul ăsta și mergi pe Litoral, folosește-l acolo. Doar să nu-l pierzi, nu accept altă armă.", + "6574e0dedc0d635f633a5805 name": "Test Drive - Part 4", + "6574e0dedc0d635f633a5805 description": "I've got a new toy I've been thinking about testing out. And here you are, just in time for this. Take this RPD and go to Shoreline, shoot with it there. Just don't lose it on the way there, I won't accept any other guns.", "6574e0dedc0d635f633a5805 failMessageText": "", - "6574e0dedc0d635f633a5805 successMessageText": "Cum ți se pare, bun, așa-i? E o frumusețe în luptă!", - "6574e0dedc0d635f633a5807": "Elimină operatori PMC folosind mitraliera RPDN cu vizor 1P78-1 pe Litoral", + "6574e0dedc0d635f633a5805 successMessageText": "So how do you like it, good, yeah? It's a real beauty in combat!", + "6574e0dedc0d635f633a5807": "Eliminate PMC operatives while using an RPDN machine gun with 1P78-1 scope on Shoreline", "6574e0dedc0d635f633a5805 acceptPlayerMessage": "", "6574e0dedc0d635f633a5805 declinePlayerMessage": "", "6574e0dedc0d635f633a5805 completePlayerMessage": "", - "6578eb36e5020875d64645cd name": "Tehnici de Vânătoare - Polițai Corupt", - "6578eb36e5020875d64645cd description": "Intră, ia un loc. Trebuie să povestim.\n\nContinuăm curățenia în Tarkov. Urmează un fost polițai pe nume Kollontay. Era un nemernic și pe timp de pace, acum e și mai rău. Găsește-l și rezolvă-l. Se zvonește că are baza în academia MVD din oraș.", + "6578eb36e5020875d64645cd name": "The Huntsman Path - Crooked Cop", + "6578eb36e5020875d64645cd description": "Come on in, have a seat. I need to talk to you.\n\nWe need to keep cleaning up Tarkov. Next up is an ex-cop named Kollontay. He's been nothing but trouble in peacetime, and he's even more so now. Find him and deal with him. They say he's holed up at the MVD academy in the city.", "6578eb36e5020875d64645cd failMessageText": "", - "6578eb36e5020875d64645cd successMessageText": "Rezolvat? Ma bucur să aud asta. Mai puțină murdărie în oras. Poftim răsplata.", - "6580130847df99b0741919f0": "Elimină gărzile lui Kollontay pe Străzile din Tarkov", - "6578eb36e5020875d64645d0": "Elimină-l pe Kollontay pe Străzile din Tarkov", - "6582b05dc992d6dcc0a40c75": "Predă articol găsite în raid: Pulanul lui Kollontay", + "6578eb36e5020875d64645cd successMessageText": "Is it done? That's good to hear. A little less filth in our city. Here's your reward.", + "6580130847df99b0741919f0": "Eliminate Kollontay's guards on Streets of Tarkov", + "6578eb36e5020875d64645d0": "Locate and eliminate Kollontay on Streets of Tarkov", + "6582b05dc992d6dcc0a40c75": "Hand over the found in raid Kollontay's police baton", "6578eb36e5020875d64645cd acceptPlayerMessage": "", "6578eb36e5020875d64645cd declinePlayerMessage": "", "6578eb36e5020875d64645cd completePlayerMessage": "", - "6578ec473dbd035d04531a8d name": "Semnal Puternic", - "6578ec473dbd035d04531a8d description": "Ești numai potrivit pentru asta. Cunoști locația stațiilor meteo din Pădure? Sunt stații de monitorizare atmosferice și au generatoare pentru senzorii din interior. Din pură coincidență eu am transmițătoare de alimentat.\n\nMă îndoiesc că le verifică cineva acum, pe timp de război. Asta înseamnă ca generatoarele dinăuntru sunt funcționale. Găsește stațiile meteo și marchează-le cu emițătoare. Îmi trimit apoi băieții ca să monteze transmițătoarele mele de semnal.", + "6578ec473dbd035d04531a8d name": "Steady Signal", + "6578ec473dbd035d04531a8d description": "Hm, you'll be perfect for this. You know the weather stations in Woods? They monitor the atmosphere, and they have power supplies for their sensors inside. And I coincidentally have to power the transmitters.\n\nI doubt they've been disturbed since the start of the conflict. Which means there could be power supplies inside in operational condition. Find the weather stations and set up the trackers. Then I'll have my crew attach the transmitters to them.", "6578ec473dbd035d04531a8d failMessageText": "", - "6578ec473dbd035d04531a8d successMessageText": "Băieții mei au plecat spre Pădure. Nu uita plata.", - "6578ec473dbd035d04531a92": "Marchează prima stație meteo cu un transmițător MS2000 în Pădure", - "6578ec473dbd035d04531a93": "Marchează a doua stație meteo cu un transmițător MS2000 în Pădure", - "6578ec473dbd035d04531a94": "Marchează a treia stație meteo cu un transmițător MS2000 în Pădure", - "6578ed62da32cab3f79bb022": "Marchează a patra stație meteo cu un transmițător MS2000 în Pădure", - "6578ed7792685671c65edf07": "Marchează a cincea stație meteo cu un transmițător MS2000 în Pădure", + "6578ec473dbd035d04531a8d successMessageText": "I'm receiving the signals, my men are on their way to Woods. Your reward.", + "6578ec473dbd035d04531a92": "Mark the first weather station with an MS2000 Marker on Woods", + "6578ec473dbd035d04531a93": "Mark the second weather station with an MS2000 Marker on Woods", + "6578ec473dbd035d04531a94": "Mark the third weather station with an MS2000 Marker on Woods", + "6578ed62da32cab3f79bb022": "Mark the fourth weather station with an MS2000 Marker on Woods", + "6578ed7792685671c65edf07": "Mark the fifth weather station with an MS2000 Marker on Woods", "6578ec473dbd035d04531a8d acceptPlayerMessage": "", "6578ec473dbd035d04531a8d declinePlayerMessage": "", "6578ec473dbd035d04531a8d completePlayerMessage": "", - "658027799634223183395339 name": "Nu Furați", - "658027799634223183395339 description": "N-am timp de povești, am o treabă cu tine.\n\nAm niște prieteni pe Litoral, contrabandiști, băieți serioși, de încredere. Acum câteva zile și-au părăsit baza, au lăsate toate bunurile în urmă. N-am idee de ce pula s-au dus, nu-i ca și cum suntem prieteni buni. În fine, baza lor e acum prădată de hoți.\n\nMergi până acolo și explică-le că nu e frumos să fure de la băieții mei.", + "658027799634223183395339 name": "No Swiping", + "658027799634223183395339 description": "Let's cut the chitchat and get straight to business.\n\nI got some buddies on Shoreline, smuggling all kinds of contraband. Useful fellas. They had to leave the base a couple days ago, left all their goods behind. I don't know what the fuck happened, plus we're not some best of buddies, so I won't tell you the details anyway. Anyway, there's a bunch of looters at the base now, taking everything they can get their hands on. \n\nGo down there and explain to them why they shouldn't steal from my boys.", "658027799634223183395339 failMessageText": "", - "658027799634223183395339 successMessageText": "Da, da, am auzit c-au fugit căcați pe ei. Poftim, plata.", - "65802779963422318339533a": "Găsește baza contrabandiștilor pe Litoral", - "65802779963422318339533c": "Elimină inamicii din zona bazei", + "658027799634223183395339 successMessageText": "Yeah, yeah, I've heard all about those shits running away with tails between their legs. Here, your goodies.", + "65802779963422318339533a": "Locate the smugglers' base on Shoreline", + "65802779963422318339533c": "Eliminate any enemy in the base area", "658027799634223183395339 acceptPlayerMessage": "", "658027799634223183395339 declinePlayerMessage": "", "658027799634223183395339 completePlayerMessage": "", - "65802b627b44fa5e14638899 name": "Nu Pute Deloc", - "65802b627b44fa5e14638899 description": "Salut, frate. Sunt cam ofticat azi, nu te mint. Cred că mi-am luat țeapă!\n\nAm cumpărat un SUV funcțional pe 2000 de parai. Au zis că totul e bine, l-au adus pe Litoral, dar șoferul n-a mai ajuns la mine. Nu-s bani mulți dar mă deranjează. Poți verifica dacă au adus mașina?", + "65802b627b44fa5e14638899 name": "Nothing Fishy About This", + "65802b627b44fa5e14638899 description": "Hello, brother. Kinda in a bad mood today, not gonna lie. I feel like I've been ripped off!\n\nI bought an apparently running SUV for 2,000 bucks. And everything seemed fine, they brought it to Shoreline, but the driver never contacted me back after that. It's not a lot of money, but still sucks. Can you go see if the car's actually there?", "65802b627b44fa5e14638899 failMessageText": "", - "65802b627b44fa5e14638899 successMessageText": "În mlaștina pulii? De asta a fost așa ieftină. Mă costă mai mult să o scot și să o curăț! Bun, poftim, pentru ajutorul tău.", - "65802b627b44fa5e1463889a": "Găsește mașina Croitorului pe Litoral", + "65802b627b44fa5e14638899 successMessageText": "It's in the fucking swamp? That explains the fucking price. It would cost more to get it out from there and clean it up! All right, here, that's for helping me out.", + "65802b627b44fa5e1463889a": "Locate Ragman's SUV on Shoreline", "65802b627b44fa5e1463889c": "", - "65802bfabac8c53c548fca2a": "Supraviețuiește și extrage-te din locație", + "65802bfabac8c53c548fca2a": "Survive and extract from the location", "65802b627b44fa5e14638899 acceptPlayerMessage": "", "65802b627b44fa5e14638899 declinePlayerMessage": "", "65802b627b44fa5e14638899 completePlayerMessage": "", @@ -22337,7 +22214,7 @@ "6180385770bf5a029372b9aa startedMessageText 5ac3b934156ae10c4430e83c 0": "", "6180385770bf5a029372b9aa failMessageText 5ac3b934156ae10c4430e83c 0": "", "6180385770bf5a029372b9aa successMessageText 5ac3b934156ae10c4430e83c 0": "Perfect, frate! Poftim, ia asta, o să-ți fie utilă.", - "6180385770bf5a029372b9aa description 5ac3b934156ae10c4430e83c 0": "Intră, fra'! Cum merge treaba? Tocmai ce planific o afacere mare. Dracu' știe pe unde să duc marfa - colcăie toată zona cu Scavi... Uite, vezi și tu pe hartă. Ai fost pe-aici recent? Poți să mergi să verifici situația, ajuți și tu un frate, da?", + "6180385770bf5a029372b9aa description 5ac3b934156ae10c4430e83c 0": "Intră, fra'! Cum merge treaba? Tocmai ce planific o afacere mare. Dracu' știe pe unde să duc marfa - colcăie toată zona cu Gunoieri... Uite, vezi și tu pe hartă. Ai fost pe-aici recent? Poți să mergi să verifici situația, ajuți și tu un frate, da?", "6180385770bf5a029372b9aa changeQuestMessageText 5ac3b934156ae10c4430e83c 0": "Uite ce mofturos. \"Pe asta o fac, pe asta nu\". Adineaori te bucurai la orice misiune tip \"găsește și predă\" pe care ți-o dădeam. Mă, nu te uită la mine de parcă mint!", "6180385770bf5a029372b9aa startedMessageText 5c0647fdd443bc2504c2d371 0": "", "6180385770bf5a029372b9aa failMessageText 5c0647fdd443bc2504c2d371 0": "", @@ -22539,148 +22416,148 @@ "628f588ebb558574b2260fe5 successMessageText 579dc571d53a0658a154fbec 0": "Bine.", "628f588ebb558574b2260fe5 description 579dc571d53a0658a154fbec 0": "Tot necesarul e trecut pe listă. Găsești bunurile și le aduci la locul de schimb.", "628f588ebb558574b2260fe5 changeQuestMessageText 579dc571d53a0658a154fbec 0": "Sunt și alte misiuni disponibile, prețul e răbdarea mea.", - "6512ea46f7a078264a4376e4 name": "Cel Mai Bun Prieten", - "6512ea46f7a078264a4376e4 description": "Supraviețuiește și extrage-te din locația Intersecție prin punctul de extracție Scav Cooperativ în timp ce joci ca și PMC", - "6512eb3ddfb0ae1ee75a0376 name": "Călător", - "6512eb3ddfb0ae1ee75a0376 description": "Supraviețuiește și extrage-te din toate locațiile din Tarkov jucând ca și PMC", - "6512eb68f6c95fe8862e384d": "Supraviețuiește și extrage-te din Pădure", - "6512eb9a12da627da04880b3": "Supraviețuiește și extrage-te din locația Străzile din Tarkov", - "6512efeca198eb75ff9ca1c7": "Supraviețuiește și extrage-te din Vamă", - "6512f0166a9637a1cb352507": "Supraviețuiește și extrage-te din Uzină", - "6512f09316440cb67572c0fa": "Supraviețuiește și extrage-te din Intersecție", - "6512f4a0df345dd5029b586a": "Supraviețuiește și extrage-te din zona Farului", - "6512f4fb1ea20e8cd761de2a": "Supraviețuiește și extrage-te din zona Litoral", - "6512f819fddeee167c2518e3": "Supraviețuiește și extrage-te din Laborator", - "6512f83596d92e790ada99b0": "Supraviețuiește și extrage-te din Rezerva Militară", - "657b1feef3231fc23e3ccdf7": "Supraviețuiește și extrage-te din Punctul Zero", - "6512f16bde333c33d5127cbc name": "Ucigașul Ucigașilor", - "6512f16bde333c33d5127cbc description": "Elimină un cultist folosind propriul lor cuțit pe timp de noapte jucând ca și PMC", - "6512f1e3be73cc7f07358ed5 name": "Arta Stilului", - "6512f1e3be73cc7f07358ed5 description": "Elimină-l pe Killa pentru prima oară jucând ca și PMC", - "6513eb6e0dc723592b0f9095 name": "Cheamă-ți Fratele", - "6513eb6e0dc723592b0f9095 description": "Elimină-l pe Tagilla pentru prima oară jucând ca și PMC", - "6513ed89cf2f1c285e606068 name": "Liniștea de la Gater", - "6513ed89cf2f1c285e606068 description": "Elimină-l pe Shturman pentru prima oară jucând ca și PMC", - "6513ee11a3dd9b6aa7159b4a name": "Facem Afacerea", - "6513ee11a3dd9b6aa7159b4a description": "Elimină-l pe Reshala pentru prima oară jucând ca și PMC", - "6513eec00dc723592b0f90cc name": "Vânătoare de Cocoși", - "6513eec00dc723592b0f90cc description": "Elimină-l pe Glukhar pentru prima oară jucând ca și PMC", - "6513efa1b49e3253755f47eb name": "Brancardierul din Sanatoriu", - "6513efa1b49e3253755f47eb description": "Elimină-l pe Sanitar pentru prima oară jucând ca și PMC", - "6513f0a10dc723592b0f90cf name": "Groparul Amuzant", - "6513f0a10dc723592b0f90cf description": "Elimină-l pe Kaban pentru prima oară jucând ca și PMC", - "6513f1feec10ff011f17c7ea name": "Acum Sunt Trei!", - "6513f1feec10ff011f17c7ea description": "Elimină-i pe Knight, Birdeye și Big Pipe într-un singur raid pentru prima oară jucând ca și PMC", - "6513f28cb49e3253755f47f3 name": "Strajă Oarbă", - "6513f28cb49e3253755f47f3 description": "Elimină-l pe Zryachiy pentru prima oară jucând ca și PMC", - "65140ab8ec10ff011f17cc10 name": "Ce Să Nu Porți", - "65140ab8ec10ff011f17cc10 description": "Elimină-l pe Killa de 15 ori jucând ca și PMC", - "65140b55cf2f1c285e606414 name": "Coasa Și Ciocanul", - "65140b55cf2f1c285e606414 description": "Elimină-l pe Tagilla de 15 ori jucând ca și PMC", - "65140bbec31fcb0e163577b9 name": "Regele Gaterului", - "65140bbec31fcb0e163577b9 description": "Elimină-l pe Shturman de 15 ori jucând ca și PMC", - "65140c00b1c08b0feb216d50 name": "Înfruntarea Din Tarkov", - "65140c00b1c08b0feb216d50 description": "Elimină-l pe Reshala de 15 ori jucând ca și PMC", - "65141032a3dd9b6aa7159ed3 name": "Alt Caz Nerezolvat", - "65141032a3dd9b6aa7159ed3 description": "Elimină-l pe Glukhar de 15 ori jucând ca și PMC", - "651411f1cf2f1c285e606423 name": "Cine A Chemat Doctorul?", - "651411f1cf2f1c285e606423 description": "Elimină-l pe Sanitar de 15 ori jucând ca și PMC", - "651412b8c31fcb0e163577c5 name": "Câini Bătrâni Și Trucuri Vechi", - "651412b8c31fcb0e163577c5 description": "Elimină-l pe Kaban de 15 ori jucând ca și PMC", - "6514134eec10ff011f17cc26 name": "Aud Vocea Întunericului", - "6514134eec10ff011f17cc26 description": "Elimină-l pe Knight de 15 ori jucând ca și PMC", + "6512ea46f7a078264a4376e4 name": "PMC's Best Friend", + "6512ea46f7a078264a4376e4 description": "Survive and extract from Interchange through the Scav Co-Op extraction while playing as a PMC", + "6512eb3ddfb0ae1ee75a0376 name": "Traveler", + "6512eb3ddfb0ae1ee75a0376 description": "Survive and extract from every location in Tarkov while playing as a PMC ", + "6512eb68f6c95fe8862e384d": "Survive and extract from Woods", + "6512eb9a12da627da04880b3": "Survive and extract from Streets of Tarkov", + "6512efeca198eb75ff9ca1c7": "Survive and extract from Customs", + "6512f0166a9637a1cb352507": "Survive and extract from Factory", + "6512f09316440cb67572c0fa": "Survive and extract from Interchange", + "6512f4a0df345dd5029b586a": "Survive and extract from Lighthouse", + "6512f4fb1ea20e8cd761de2a": "Survive and extract from Shoreline", + "6512f819fddeee167c2518e3": "Survive and extract from The Lab", + "6512f83596d92e790ada99b0": "Survive and extract from Reserve", + "657b1feef3231fc23e3ccdf7": "Survive and extract from Ground Zero", + "6512f16bde333c33d5127cbc name": "Killer of Killers", + "6512f16bde333c33d5127cbc description": "Eliminate one of the hooded men with their own knife at night time while playing as a PMC", + "6512f1e3be73cc7f07358ed5 name": "Art of Style", + "6512f1e3be73cc7f07358ed5 description": "Eliminate Killa for the first time while playing as a PMC", + "6513eb6e0dc723592b0f9095 name": "Call Your Brother", + "6513eb6e0dc723592b0f9095 description": "Eliminate Tagilla for the first time while playing as a PMC", + "6513ed89cf2f1c285e606068 name": "Silence of the Sawmill", + "6513ed89cf2f1c285e606068 description": "Eliminate Shturman for the first time while playing as a PMC", + "6513ee11a3dd9b6aa7159b4a name": "Deal to Make", + "6513ee11a3dd9b6aa7159b4a description": "Eliminate Reshala for the first time while playing as a PMC", + "6513eec00dc723592b0f90cc name": "Grouse Hunting", + "6513eec00dc723592b0f90cc description": "Eliminate Glukhar for the first time while playing as a PMC", + "6513efa1b49e3253755f47eb name": "Sanatorium Orderly", + "6513efa1b49e3253755f47eb description": "Eliminate Sanitar for the first time while playing as a PMC", + "6513f0a10dc723592b0f90cf name": "Funny Graveyard Keeper", + "6513f0a10dc723592b0f90cf description": "Eliminate Kaban for the first time while playing as a PMC", + "6513f1feec10ff011f17c7ea name": "Now There Are Three of Them!", + "6513f1feec10ff011f17c7ea description": "Eliminate Knight, Birdeye, and Big Pipe in a single raid for the first time while playing as a PMC", + "6513f28cb49e3253755f47f3 name": "The Blind Watcher", + "6513f28cb49e3253755f47f3 description": "Eliminate Zryachiy for the first time while playing as a PMC", + "65140ab8ec10ff011f17cc10 name": "What Not To Wear", + "65140ab8ec10ff011f17cc10 description": "Eliminate Killa 15 times while playing as a PMC", + "65140b55cf2f1c285e606414 name": "Hammer and Scythe", + "65140b55cf2f1c285e606414 description": "Eliminate Tagilla 15 times while playing as a PMC", + "65140bbec31fcb0e163577b9 name": "King of the Sawmill", + "65140bbec31fcb0e163577b9 description": "Eliminate Shturman 15 times while playing as a PMC", + "65140c00b1c08b0feb216d50 name": "This Is a Tarkov Showdown", + "65140c00b1c08b0feb216d50 description": "Eliminate Reshala 15 times while playing as a PMC", + "65141032a3dd9b6aa7159ed3 name": "Another Cold Case", + "65141032a3dd9b6aa7159ed3 description": "Eliminate Glukhar 15 times while playing as a PMC", + "651411f1cf2f1c285e606423 name": "Who Called the Doctor?", + "651411f1cf2f1c285e606423 description": "Eliminate Sanitar 15 times while playing as a PMC", + "651412b8c31fcb0e163577c5 name": "Old Dog With Old tricks", + "651412b8c31fcb0e163577c5 description": "Eliminate Kaban 15 times while playing as a PMC", + "6514134eec10ff011f17cc26 name": "I Hear the Voice of Darkness", + "6514134eec10ff011f17cc26 description": "Eliminate Knight 15 times while playing as a PMC", "651412ef0afef6dad1a21477": "", "65142ceb93d02c082b8e4cc9": "", "65142d0701e02ae1f559d606": "", - "651413e9c31fcb0e163577c9 name": "Asta Da Lovitură", - "651413e9c31fcb0e163577c9 description": "Elimină-l pe Zryachiy de 15 ori jucând ca și PMC", - "6514143d59647d2cb3213c93 name": "Șeful Din Ultra", - "6514143d59647d2cb3213c93 description": "Elimină-l pe Killa de 100 ori jucând ca și PMC", - "651415feb49e3253755f4b68 name": "Trăiască Regele!", - "651415feb49e3253755f4b68 description": "Elimină toți Boșii cel puțin o dată jucând ca și PMC", - "651414b741f4ad07ba7d55f9": "Găsește și elimină-l pe Kaban", - "651414eb3ec86f33dd54d978": "Găsește și elimină-l pe Reshala", - "651415067c262d47d685c6d9": "Găsește și elimină-l pe Glukhar", - "6514151b2e8590fc2ac1d859": "Găsește și elimină-l pe Killa", - "6514151da13f174e3f52bc6e": "Găsește și elimină-l pe Knight", - "65141520143ef6349ad5f071": "Găsește și elimină-l pe Shturman", - "6514156e21e1d85a7d029f8a": "Găsește și elimină-l pe Sanitar", - "65141570b18e12f60ba2e450": "Găsește și elimină-l pe Tagilla", - "65141571dbcb26761524e977": "Găsește și elimină-l pe Zryachiy", - "651415cfe97ba875119ef01c": "Găsește și elimină-l pe Big Pipe", - "651415d13c02ff4aa9e9a426": "Găsește și elimină-l pe Birdeye", - "657b1f2e057c1607e83c2c26": " Găsește și elimină-l pe Kollontay", - "657b21a3564a9197c2778f5a": "Găsește și elimină-l pe Kollontay", - "6514174fb1c08b0feb216d73 name": "Urmașul Lui Chris", - "6514174fb1c08b0feb216d73 description": "Elimină un operator PMC cu lovitură la cap de la peste 500 de metri depărtare jucând ca și PMC", - "651417d6ec10ff011f17cc31 name": "Urmașul Lui John", - "651417d6ec10ff011f17cc31 description": "Elimină 4 operatori PMC cu lovitură la cap folosind doar un pistol într-un singur raid ca și PMC", - "6514184ec31fcb0e163577d2 name": "Ucigaș7", - "6514184ec31fcb0e163577d2 description": "Elimină 7 operatori PMC într-un singur raid ca și PMC", - "651419eea3dd9b6aa7159ee5 name": "Furie Oarbă", - "651419eea3dd9b6aa7159ee5 description": "Elimină orice inamic în timp ce ești orbit jucând ca și PMC", - "65141a3059647d2cb3213c9e name": "Doar O Crestătură", - "65141a3059647d2cb3213c9e description": "Elimină 30 operatori PMC cu arme albe jucând ca și PMC", - "65141ab70dc723592b0f9482 name": "Maistrul Bețiv", - "65141ab70dc723592b0f9482 description": "Elimină un operator PMC cu lovitură la cap în timp ce te afli sub influența alcoolului jucând ca și PMC", - "65141b9859647d2cb3213ca2 name": "U-SCAȚI", - "65141b9859647d2cb3213ca2 description": "Elimină 50 de operatori PMC USEC", - "65141bdfcf2f1c285e606446 name": "BEAR De-Aici", - "65141bdfcf2f1c285e606446 description": "Elimină 50 de operatori PMC BEAR", - "65141c30ec10ff011f17cc3b name": "Bun Venit În Tarkov", - "65141c30ec10ff011f17cc3b description": "Primul Tău Deces În Tarkov", - "65141c80ec10ff011f17cc3e name": "Prima Oară Doare Mai Tare", - "65141c80ec10ff011f17cc3e description": "Supraviețuiește unui raid cu excepția statusului Retras pentru prima oară", - "65141cd2cf2f1c285e606449 name": "Pregătit de Orice", - "65141cd2cf2f1c285e606449 description": "Supraviețuiește 10 raiduri consecutive jucând ca și PMC", + "651413e9c31fcb0e163577c9 name": "Now That's a Good Shot", + "651413e9c31fcb0e163577c9 description": "Eliminate Zryachiy 15 times while playing as a PMC", + "6514143d59647d2cb3213c93 name": "Master of ULTRA", + "6514143d59647d2cb3213c93 description": "Eliminate Killa 100 times while playing as a PMC", + "651415feb49e3253755f4b68 name": "Long Live the King!", + "651415feb49e3253755f4b68 description": "Eliminate every Boss once while playing as a PMC", + "651414b741f4ad07ba7d55f9": "Locate and eliminate Kaban", + "651414eb3ec86f33dd54d978": "Locate and eliminate Reshala", + "651415067c262d47d685c6d9": "Locate and eliminate Glukhar", + "6514151b2e8590fc2ac1d859": "Locate and eliminate Killa", + "6514151da13f174e3f52bc6e": "Locate and eliminate Knight", + "65141520143ef6349ad5f071": "Locate and eliminate Shturman", + "6514156e21e1d85a7d029f8a": "Locate and eliminate Sanitar", + "65141570b18e12f60ba2e450": "Locate and eliminate Tagilla", + "65141571dbcb26761524e977": "Locate and eliminate Zryachiy", + "651415cfe97ba875119ef01c": "Locate and eliminate Big Pipe", + "651415d13c02ff4aa9e9a426": "Locate and eliminate Birdeye", + "657b1f2e057c1607e83c2c26": " Locate and eliminate Kollontai", + "657b21a3564a9197c2778f5a": "Locate and eliminate Kollontai", + "6514174fb1c08b0feb216d73 name": "Chris's Heir", + "6514174fb1c08b0feb216d73 description": "Eliminate a PMC operative with a headshot from over 500 meters away while playing as a PMC", + "651417d6ec10ff011f17cc31 name": "John's Heir", + "651417d6ec10ff011f17cc31 description": "Eliminate 4 PMC operatives with a headshot while using a pistol in a single raid while playing as a PMC", + "6514184ec31fcb0e163577d2 name": "Killer7", + "6514184ec31fcb0e163577d2 description": "Eliminate 7 PMC operatives in a single raid while playing as a PMC", + "651419eea3dd9b6aa7159ee5 name": "Blind Fury", + "651419eea3dd9b6aa7159ee5 description": "Eliminate any enemy while suffering from the Flash effect while playing as a PMC", + "65141a3059647d2cb3213c9e name": "Make a Notch", + "65141a3059647d2cb3213c9e description": "Eliminate 30 PMC operators with a melee weapon while playing as a PMC", + "65141ab70dc723592b0f9482 name": "Drunken Master", + "65141ab70dc723592b0f9482 description": "Eliminate a PMC operative with a headshot while under the alcohol effect while playing as a PMC", + "65141b9859647d2cb3213ca2 name": "U-SUCC", + "65141b9859647d2cb3213ca2 description": "Eliminate 50 USEC PMC operators", + "65141bdfcf2f1c285e606446 name": "BEAR With Me", + "65141bdfcf2f1c285e606446 description": "Eliminate 50 BEAR PMC operators", + "65141c30ec10ff011f17cc3b name": "Welcome to Tarkov", + "65141c30ec10ff011f17cc3b description": "Die in Tarkov for the first time", + "65141c80ec10ff011f17cc3e name": "First Time Always Hurts", + "65141c80ec10ff011f17cc3e description": "Survive a raid without the Run-through status for the first time", + "65141cd2cf2f1c285e606449 name": "Ready for Anything", + "65141cd2cf2f1c285e606449 description": "Survive 10 consecutive raids while playing as a PMC", "65141dd6303df252af1c72c9 name": "PMC", - "65141dd6303df252af1c72c9 description": "Supraviețuiește 300 de raiduri jucând ca și PMC", - "65141e37cf2f1c285e606361 name": "Asta A Spus Și Ea", - "65141e37cf2f1c285e606361 description": "Cotrobăie prin biroul din Uzină jucând ca și PMC", - "65141eb5c31fcb0e163577dd name": "Pierdut", - "65141eb5c31fcb0e163577dd description": "Găsește avionul prăbușit în Pădure jucând ca și PMC", - "65141f80a3dd9b6aa7159ef0 name": "Supraviețuitor", - "65141f80a3dd9b6aa7159ef0 description": "Supraviețuiește și extrage-te cu fiecare efect negativ posibil separat sau în același timp ca și PMC", - "65141fb6ed5340c843c5dcb8": "Supraviețuiește și extrage-te din orice locație suferind de Contuzie", - "65141ff769b11104777a6197": "Supraviețuiește și extrage-te din orice locație suferind de Deshidratare", - "651420b3c6c7ce8343cc8976": "Supraviețuiește și extrage-te din orice locație suferind de Hemoragie", - "65142168f401d144e9f3e2ac": "Supraviețuiește și extrage-te din orice locație suferind de Tremur", - "651421ff151e86f67ca3c3ea": "Supraviețuiește și extrage-te din orice locație suferind de Durere", - "65145d0d1d3ff24a185abbb0": "Supraviețuiește și extrage-te din orice locație suferind de Oboseală", - "651433702d8de66f60699f98": "Supraviețuiește și extrage-te din orice locație suferind de Rană Tratată", - "651433371dab0f7e105828ff": "Supraviețuiește și extrage-te din orice locație suferind de Orbire", - "65143313b1a83e60ef15a45b": "Supraviețuiește și extrage-te din orice locație suferind de Dezorientare", - "651432b59bf826df60b20d89": "Supraviețuiește și extrage-te din orice locație suferind de Fractură", - "65145e2fd9f595730e564291": "Supraviețuiește și extrage-te din orice locație suferind de Viziune Tunel", - "65145f005e81cb4466a82e04": "Supraviețuiește și extrage-te din orice locație suferind de Toxină", - "6514321bec10ff011f17ccac name": "Licurici", - "6514321bec10ff011f17ccac description": "Fă cunoștință cu Paznicul de Far pentru prima oara ca și PMC", - "65145cbc303df252af1c73d5 name": "Lipsește Ceva?", - "65145cbc303df252af1c73d5 description": "Începe un raid fără nicio armă", - "6527d2e2c656a951ad1528c3 name": "Fumează Din Pipa Păcii", - "6527d2e2c656a951ad1528c3 description": "Elimină-l pe Big Pipe de 15 ori jucând ca și PMC", - "6527d3aac656a951ad1528ce name": "Cartea Roșie", - "6527d3aac656a951ad1528ce description": "Elimină-l pe Birdeye de 15 ori jucând ca și PMC", - "6527ee4a647c29201011defe name": "Nu Ești Fratele Meu", - "6527ee4a647c29201011defe description": "Elimină alt Scav jucând ca și Scav", - "6529097eccf6aa5f8737b3d0 name": "Bulgăre", - "6529097eccf6aa5f8737b3d0 description": "Elimină toți Boșii fără să mori jucând ca și PMC", - "652909ac342bdd14e0bcb1bb": "Găsește și elimină-l pe Kaban", - "652909cd3f9e480e9d1a3489": "Găsește și elimină-l pe Reshala", - "652909ef8cb2a699ccbc2cf0": "Găsește și elimină-l pe Glukhar", - "65290de6e76953256668112c": "Găsește și elimină-l pe Killa", - "65290e22f16e69470b5d6145": "Găsește și elimină-l pe Knight", - "65290e51fee42b19970ccbfd": "Găsește și elimină-l pe Shturman", - "65290e8d6193b1a4e12a7967": "Găsește și elimină-l pe Sanitar", - "65290f50897943fb9bf8955d": "Găsește și elimină-l pe Birdeye", - "65290f3fd7c6005f6d78f453": "Găsește și elimină-l pe Big Pipe", - "65290f1579363c7810e7233d": "Găsește și elimină-l pe Zryachiy", - "65290ed47ef294bc6eb7ee85": "Găsește și elimină-l pe Tagilla", - "657b1e91958145eb193f9a40": "Găsește și elimină-l pe Kollontay", - "655b49bc91aa9e07687ae47c name": "Justiție", - "655b49bc91aa9e07687ae47c description": "Elimină-l pe Kollontay pentru prima oară jucând ca și PMC", - "655b4a576689c676ce57acb6 name": "Crime Reale", - "655b4a576689c676ce57acb6 description": "Elimină-l pe Kollontay de 15 ori jucând ca și PMC", + "65141dd6303df252af1c72c9 description": "Survive 300 raids while playing as a PMC", + "65141e37cf2f1c285e606361 name": "That's What She Said", + "65141e37cf2f1c285e606361 description": "Search the office in Factory while playing as a PMC", + "65141eb5c31fcb0e163577dd name": "Lost", + "65141eb5c31fcb0e163577dd description": "Locate the crashed plane on Woods while playing as a PMC", + "65141f80a3dd9b6aa7159ef0 name": "Survivor", + "65141f80a3dd9b6aa7159ef0 description": "Survive and extract from any location with each of the possible negative effects either separately or combined while playing as a PMC ", + "65141fb6ed5340c843c5dcb8": "Survive and extract from any location with the Concussion effect", + "65141ff769b11104777a6197": "Survive and extract from any location with the Dehydration effect", + "651420b3c6c7ce8343cc8976": "Survive and extract from any location with the Bleeding effect", + "65142168f401d144e9f3e2ac": "Survive and extract from any location with the Tremor effect", + "651421ff151e86f67ca3c3ea": "Survive and extract from any location with the Pain effect", + "65145d0d1d3ff24a185abbb0": "Survive and extract from any location with the Fatigue effect", + "651433702d8de66f60699f98": "Survive and extract from any location with the Fresh wound effect", + "651433371dab0f7e105828ff": "Survive and extract from any location with the Flash effect", + "65143313b1a83e60ef15a45b": "Survive and extract from any location with the Stun effect", + "651432b59bf826df60b20d89": "Survive and extract from any location with the Fracture effect", + "65145e2fd9f595730e564291": "Survive and extract from any location with the Tunnel vision effect", + "65145f005e81cb4466a82e04": "Survive and extract from any location with the Toxin effect", + "6514321bec10ff011f17ccac name": "Firefly", + "6514321bec10ff011f17ccac description": "Meet Lightkeeper for the first time while playing as a PMC", + "65145cbc303df252af1c73d5 name": "Missing Something?", + "65145cbc303df252af1c73d5 description": "Start a raid without any weapon", + "6527d2e2c656a951ad1528c3 name": "Smoke the Peace Pipe", + "6527d2e2c656a951ad1528c3 description": "Eliminate Big Pipe 15 times while playing as a PMC", + "6527d3aac656a951ad1528ce name": "The Red Book", + "6527d3aac656a951ad1528ce description": "Eliminate Birdeye 15 times while playing as a PMC", + "6527ee4a647c29201011defe name": "You Are Not My Brother", + "6527ee4a647c29201011defe description": "Eliminate a Scav while playing as a Scav", + "6529097eccf6aa5f8737b3d0 name": "Snowball", + "6529097eccf6aa5f8737b3d0 description": "Eliminate every Boss without dying while playing as a PMC", + "652909ac342bdd14e0bcb1bb": "Locate and eliminate Kaban", + "652909cd3f9e480e9d1a3489": "Locate and eliminate Reshala", + "652909ef8cb2a699ccbc2cf0": "Locate and eliminate Glukhar", + "65290de6e76953256668112c": "Locate and eliminate Killa", + "65290e22f16e69470b5d6145": "Locate and eliminate Knight", + "65290e51fee42b19970ccbfd": "Locate and eliminate Shturman", + "65290e8d6193b1a4e12a7967": "Locate and eliminate Sanitar", + "65290f50897943fb9bf8955d": "Locate and eliminate Birdeye", + "65290f3fd7c6005f6d78f453": "Locate and eliminate Big Pipe", + "65290f1579363c7810e7233d": "Locate and eliminate Zryachiy", + "65290ed47ef294bc6eb7ee85": "Locate and eliminate Tagilla", + "657b1e91958145eb193f9a40": "Locate and eliminate Kollontai", + "655b49bc91aa9e07687ae47c name": "Justice", + "655b49bc91aa9e07687ae47c description": "Eliminate Kollontay for the first time while playing as a PMC", + "655b4a576689c676ce57acb6 name": "True Crime", + "655b4a576689c676ce57acb6 description": "Eliminate Kollontay 15 times while playing as a PMC", "65606e084c9e9c2c190bd25f name": "", "65606e084c9e9c2c190bd25f description": "" } \ No newline at end of file diff --git a/project/assets/database/locales/global/ru.json b/project/assets/database/locales/global/ru.json index bf4e48e1..190b642b 100644 --- a/project/assets/database/locales/global/ru.json +++ b/project/assets/database/locales/global/ru.json @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "Компактный тактический лазерный целеуказатель с точкой синего оттенка. Легко устанавливаются на любую планку Пикатинни и Weaver для точного обнаружения цели. Производство NcSTAR.", "5cd945d71388ce000a659dfb Name": "Базовый верх BEAR", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Рубаха боевая", "5cd946231388ce000d572fe3 Name": "Базовый низ BEAR", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Брюки боевые", "5cda9bcfd7f00c0c0b53e900 Name": "Тактическая рукоятка для АШ-12", "5cda9bcfd7f00c0c0b53e900 ShortName": "АШ-12", "5cda9bcfd7f00c0c0b53e900 Description": "Штатная тактическая вертикальная рукоятка для автомата АШ-12.", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "Базовый низ USEC", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Брюки боевые", "5cde9ec17d6c8b04723cf479 Name": "Базовый верх USEC", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Рубаха боевая", "5cdea20c7d6c8b0474535dab Name": "Джинсы поношенные", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Штаны Adik", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Спорт", "5cdea42e7d6c8b0474535dad Name": "Олимпийка Adik", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Спорт", "5cdeac22d7f00c000f26168f Name": "Ложе Magpul \"Pro 700\" для M700", "5cdeac22d7f00c000f26168f ShortName": "Pro700", "5cdeac22d7f00c000f26168f Description": "\"Pro 700\" - легкое и эргономичное шасси для снайперской винтовки Remington M700, производство Magpul.", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "BEAR Черная Рысь", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", - "5d1f60ae86f7744bcc04998b Name": "Футболка контрактора BEAR", + "5d1f609d86f7744bca3f1689 Description": "Куртка тактическая", + "5d1f60ae86f7744bcc04998b Name": "BEAR Контрактор", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "Футболка", "5d1f60b486f7744bcb0adfa8 Name": "ФСБ Быстрое Реагирование", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Рубашка тактическая", "5d1f60ca86f7743014163025 Name": "BEAR Призрак", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Куртка тактическая", "5d1f60f086f7744bce0ef704 Name": "BEAR Летний Полевой", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Куртка полевая", "5d1f622186f7744bca3f168c Name": "USEC Агрессор", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Куртка тактическая", "5d1f622e86f7744bcc04998c Name": "USEC Softshell Flexion", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Куртка тактическая", "5d1f623386f7744bcd135833 Name": "USEC Инфильтратор", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Рубаха боевая", "5d1f623886f7743014163027 Name": "USEC PCS MultiCam", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Рубаха боевая", "5d1f623e86f7744bce0ef705 Name": "USEC PCU Ironsight", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Куртка тактическая", "5d1f646286f7744bce0ef70a Name": "ФСБ Город", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Брюки тактические", "5d1f646c86f7743f8362cf3f Name": "BEAR Горка Кобра", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Брюки тактические", "5d1f647186f7744bce0ef70c Name": "BEAR Горка ССО", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Брюки тактические", "5d1f647586f7744bcb0adfb0 Name": "BEAR Страйкер", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Брюки боевые", "5d1f647a86f7744bca3f1691 Name": "BEAR Летний Полевой", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Брюки полевые", "5d1f647f86f7744bcc04998f Name": "USEC Gen.2 Khyber", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Брюки тактические", "5d1f648a86f7744bcd135841 Name": "USEC Инфильтратор", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Брюки боевые", "5d1f648e86f774301416302b Name": "USEC Ranger Jeans", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Джинсы", "5d1f649286f7743f8362cf40 Name": "USEC Taclife Terrain", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Брюки тактические", "5d1f649886f7744bce0ef70d Name": "USEC TACRES", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Брюки тактические", "5d1f819086f7744b355c219b Name": "Дульный тормоз Daniel Defense \"WAVE\" 7.62x51 для AR-10", "5d1f819086f7744b355c219b ShortName": "WAVE 762", "5d1f819086f7744b355c219b Description": "Дульный тормоз Daniel Defense \"WAVE\" эффективно гасит подброс ствола, а также может служить платформой для одноименного быстросъёмного глушителя. Изготовлен из аэрокосмической нержавеющей стали 17-4 PH и имеет нитридную отделку для минимальной коррозии.", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "USEC Коммандо", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Свитер", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "Верхний ресивер для марксманской винтовки SR-25, производство Knight's Armament Company.", "5df8e5c886f7744a122d6834 Name": "BEAR Заслон", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Рубаха боевая", "5df8e65d86f77412672a1e46 Name": "Метеор", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "BEAR Старая школа", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Брюки полевые", "5df8e75786f7745c67099df4 Name": "USEC TIER2", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Брюки тактические", "5df8e79286f7744a122d6836 Name": "Склон", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "Первое поколение модификации бронежилета СРС дизайна Crye Precision, адаптированной для сотрудников силовых структур РФ. Этот модульный бронежилет имеет в своей основе полимерный корсет, который облегает корпус тела, что позволяет избегать люфта бронежилета при активном движении, а также способствует более равномерному распределению веса. Выполнен в штурмовой комплектации подсумков. Производство Ars Arma.", "5e4bb08f86f774069619fbbc Name": "BEAR Тельник", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Рубашка", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "USEC TIER2", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Рубашка тактическая", "5e4bb6d786f77406975c9364 Name": "BEAR ТИГР", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Брюки боевые", "5e4bb6fc86f77406801a74f7 Name": "USEC Коммандо", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Брюки полевые", "5e4bb8e686f77406796b7ba2 Name": "Ветровка Russia", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "BEAR ТИГР", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Рубаха боевая", "5e9dcb9c86f7743e20652f25 Name": "USEC Urban Responder", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Толстовка", "5e9dcc8a86f77434375990e2 Name": "BEAR Заслон", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Брюки боевые", "5e9dccd686f774343b592592 Name": "USEC Deep Recon", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Брюки тактические", "5e9dcf5986f7746c417435b3 Name": "Рюкзак \"LBT-8005A Day Pack\" (MultiCam Black)", "5e9dcf5986f7746c417435b3 ShortName": "Day Pack", "5e9dcf5986f7746c417435b3 Description": "Простой и надежный 14-ти литровый рюкзак в камуфляже Multicam Black. Производство London Bridge Trading.", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "Фиксированная разгрузочная система от компании Direct Action, содержащая все базовые необходимые подсумки.", "5f5f45df0bc58666c37e7832 Name": "BEAR Г99", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Рубаха боевая", "5f5f46086760b4138443b358 Name": "USEC Night Patrol", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Куртка тактическая", "5f5f46fa5021ce62144be7bd Name": "BEAR Г99", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Брюки тактические", "5f5f471bdf4f3100376a815e Name": "USEC Urban Responder", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Брюки тактические", "5f5f64f947344c2e4f6c431e Name": "Дикий Сапог", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "BEAR SRVV", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Брюки боевые", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "USEC TIER3", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Брюки боевые", "5fd20ff893a8961fc660a954 Name": ".300 Blackout AP", "5fd20ff893a8961fc660a954 ShortName": "AP", "5fd20ff893a8961fc660a954 Description": "Патрон .300 Blackout (7.62x35мм) AP с бронебойной пулей массой 8,4 грамм из патрона 7.62x51мм НАТО M80A1 со стальным наконечником над сердечником из медного сплава, с медной полуоболочкой, в латунной гильзе. Несмотря на собственные характеристики пули при использовании в патроне с полным зарядом, они изменяются при переходе в промежуточный патрон, однако пуля все еще обладает существенной пробивной способностью против брони базового и среднего уровня защиты, а также может вызывать серьезное травмирующее воздействие на цель после попадания. Конструкция патрона также позволяет использовать его в магазинах НАТО STANAG 5.56x45мм.", "5fd3e77be504291efd0040ad Name": "USEC VEKTOR", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Куртка тактическая", "5fd3e7e2dd870108a754b230 Name": "BEAR Борей", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Куртка тактическая", "5fd3e8e5bdd50d684f73a51d Name": "BEAR Гриззли", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Спорт", "5fd3e978e504291efd0040b3 Name": "USEC Адаптивный Боевой", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Рубаха боевая", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "Простая разгрузочная система из нейлона с несъемными подсумками. Позволяет носить достаточно внушительный боезапас в ущерб удобности.", "6038b228af2e28262649af14 Name": "BEAR Рашгард", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Спорт", "6038b24cd6505c1ec64a44a0 Name": "USEC Sandstone", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Куртка тактическая", "6038b4b292ec1c3103795a0b Name": "Бронежилет \"LBT-6094A Slick Plate Carrier\" (Coyote Tan)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "Чехол под бронеплиты фирмы London Bridge Trading. Максимально простой дизайн, предназначенный для совместного использования с нагрудными разгрузочными системами. Версия в цвете Coyote Tan.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "Шашка ТП-200 предназначена для использования в качестве зарядов при производстве сейсморазведочных работ, промежуточных детонаторов при инициировании скважинных зарядов ВВ, дроблении негабарита и производства специальных взрывных работ.", "603d01a1b41c9b37c6592047 Name": "BEAR ВОИН", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Брюки боевые", "603d01b9d10cbf667352dd4a Name": "USEC Sage Warrior", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Брюки полевые", "6040dd4ddcf9592f401632d2 Name": "Разгрузочная нагрудная система Азимут СС \"Жук\" (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Жук", "6040dd4ddcf9592f401632d2 Description": "Простая разгрузочная система из нейлона с несъемными подсумками. Позволяет носить достаточно внушительный боезапас в ущерб удобности. Версия в камуфляже SURPAT.", @@ -8239,10 +8239,10 @@ "619b69037b9de8162902673e Description": "Разработанная как для гражданского рынка, так и для военного применения. Приклад \"CQR47\" легко монтируется на место штатного крепления нескладывающегося приклада АК/АКМ. Производство Hera Arms.", "619b99ad604fcc392676806c Name": "BEAR Разведка", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Брюки боевые", "619b99d2d8ed4b751d2606c1 Name": "USEC K4", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", + "619b99d2d8ed4b751d2606c1 Description": "Брюки тактические", "619bc61e86e01e16f839a999 Name": "Повязка на плечо Альфа", "619bc61e86e01e16f839a999 ShortName": "Альфа", "619bc61e86e01e16f839a999 Description": "Повязка на плечо для ветеранов, кто еще с Альфа-времен.", @@ -8275,10 +8275,10 @@ "619bdfd4c9546643a67df6fa Description": "Повязка для хардкорных оперативников USEC.", "619bf75264927e572d0d5853 Name": "BEAR Сумрак", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Куртка тактическая", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Куртка тактическая", "619cbf476b8a1b37a54eebf8 Name": "Военная гофрированная трубка", "619cbf476b8a1b37a54eebf8 ShortName": "Гофра", "619cbf476b8a1b37a54eebf8 Description": "Военная гофрированная трубка для систем вентиляции военной техники, систем очистки воздуха.", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "USEC Хамелеон", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Куртка тактическая", "6295eeed13119346e55d4523 Name": "BEAR Волк", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Рубашка тактическая", "6295ef7d1f798f3be747969e Name": "BEAR Койот", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Брюки тактические", "629613ad1f798f3be7479951 Name": "USEC DesOps", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Брюки тактические", "62963c18dbc8ab5f0d382d0b Name": "Маска Death Knight", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "Уникальная маска командира группы The Goons, бывших операторов USEC, решивших не бежать из Таркова, а создать свой собственный порядок.", @@ -9510,17 +9510,17 @@ "63a898a328e385334e0640a5 ShortName": "Подарок", "63a898a328e385334e0640a5 Description": "Хорошо упакованный новогодний подарок. Похоже, Дед Мороз был добр к тебе. Распаковывай скорей!", "63a8a3d48523141c3d055226 Name": "BEAR СПН", - "63a8a3d48523141c3d055226 ShortName": "BEAR СПН", - "63a8a3d48523141c3d055226 Description": "BEAR СПН", + "63a8a3d48523141c3d055226 ShortName": "", + "63a8a3d48523141c3d055226 Description": "Куртка тактическая", "63a8a3f5dd384f7e8d716f9b Name": "USEC Mission", - "63a8a3f5dd384f7e8d716f9b ShortName": "USEC Mission", - "63a8a3f5dd384f7e8d716f9b Description": "USEC Mission", + "63a8a3f5dd384f7e8d716f9b ShortName": "", + "63a8a3f5dd384f7e8d716f9b Description": "Куртка тактическая", "63a8a41e8523141c3d055228 Name": "BEAR СПН", - "63a8a41e8523141c3d055228 ShortName": "BEAR СПН", - "63a8a41e8523141c3d055228 Description": "BEAR СПН", + "63a8a41e8523141c3d055228 ShortName": "", + "63a8a41e8523141c3d055228 Description": "Брюки тактические", "63a8a446dd384f7e8d716f9d Name": "USEC Rangemaster", - "63a8a446dd384f7e8d716f9d ShortName": "USEC Rangemaster", - "63a8a446dd384f7e8d716f9d Description": "USEC Rangemaster", + "63a8a446dd384f7e8d716f9d ShortName": "", + "63a8a446dd384f7e8d716f9d Description": "Джинсы", "63a943cead5cc12f22161ff7 Name": "Бухгалтерские записи", "63a943cead5cc12f22161ff7 ShortName": "Бух.записи", "63a943cead5cc12f22161ff7 Description": "Дневник со всевозможными финансовыми данными.", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "USEC Predator", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Рубаха боевая", "64f07f7726cfa02c506f8ac0 Name": "Журнал", "64f07f7726cfa02c506f8ac0 ShortName": "Журнал", "64f07f7726cfa02c506f8ac0 Description": "Журнал любителя СССР.", @@ -10704,7 +10704,7 @@ "65702449bfc87b3a34093223 ShortName": "FTX", "65702449bfc87b3a34093223 Description": "Пачка патронов 12/70 пуля \"FTX Custom Lite\" в количестве 25 штук.", "6570244ec5d7d4cb4d078558 Name": "Пачка патронов 12/70 пуля \"Гризли 40\" (25 штук)", - "6570244ec5d7d4cb4d078558 ShortName": "Гризли", + "6570244ec5d7d4cb4d078558 ShortName": "Гриззли", "6570244ec5d7d4cb4d078558 Description": "Пачка патронов 12/70 пуля \"Гризли 40\" в количестве 25 штук.", "65702452cfc010a0f50069fe Name": "Пачка патронов 12/70 пуля \"Полева-3\" (25 штук)", "65702452cfc010a0f50069fe ShortName": "Полева-3", @@ -11920,10 +11920,10 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "USEC Defender", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Брюки тактические", "657f8e9824d2053bb360b51d Name": "USEC BOSS Delta", - "657f8e9824d2053bb360b51d ShortName": "USEC BOSS Delta", - "657f8e9824d2053bb360b51d Description": "USEC BOSS Delta", + "657f8e9824d2053bb360b51d ShortName": "", + "657f8e9824d2053bb360b51d Description": "Рубашка тактическая", "657f8ec5f4c82973640b234c Name": "Комбинированные материалы", "657f8ec5f4c82973640b234c ShortName": "", "657f8ec5f4c82973640b234c Description": "", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "BEAR УРОН", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Брюки боевые", "657f90e5a9176671262fe34e Name": "BEAR OPS MGS", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Куртка тактическая", "657f925dada5fadd1f07a57a Name": "Комбинированные материалы", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12016,7 +12016,7 @@ "6582bd252b50c61c565828e2 Description": "Бутылка редкого коллекционного французского вина Le Jean.", "6582dbe43a2e5248357dbe9a Name": "Ключ от комнаты для серьезных переговоров", "6582dbe43a2e5248357dbe9a ShortName": "Переговорка", - "6582dbe43a2e5248357dbe9a Description": "Ключ от переговорки в одном из городских офисов.", + "6582dbe43a2e5248357dbe9a Description": "Ключ от переговоки в одном из городских офисов.", "6582dbf0b8d7830efc45016f Name": "Ключ от комнаты для расслаблений", "6582dbf0b8d7830efc45016f ShortName": "Расслаб.", "6582dbf0b8d7830efc45016f Description": "Ключ от комнаты для расслаблений в одном из городских офисов.", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "Труп гражданского", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "Тактическое кукри United Cutlery M48", - "65ca457b4aafb5d7fc0dcb5d ShortName": "Кукри M48", - "65ca457b4aafb5d7fc0dcb5d Description": "Тактическое кукри из серии M48 производства компании United Cutlery. Имеет лезвие из нержавеющей стали и прорезиненную рукоятку. Отличное дополнение к арсеналу каждого выживальщика!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "Игрушечный пистолет 20x1мм", - "66015072e9f84d5680039678 ShortName": "Пестик", - "66015072e9f84d5680039678 Description": "Пластмассовый полуавтоматический игрушечный пистолет, стреляющий дисками 20x1мм. Предназначен для детей старше 5 лет. Производство СССР.", - "6601546f86889319850bd566 Name": "20x1мм диск", - "6601546f86889319850bd566 ShortName": "Диск", - "6601546f86889319850bd566 Description": "Игрушечный боеприпас в виде 20x1мм диска для совесткого пластмассового пистолета. Производство СССР.", - "66015dc4aaad2f54cb04c56a Name": "Магазин на 20 дисков 20x1мм для игрушечного пистолета", - "66015dc4aaad2f54cb04c56a ShortName": "Барабан", - "66015dc4aaad2f54cb04c56a Description": "Родной дисковый магазин для советсткого игрушечного пистолета. Не рекомендуется заряжать в него монетки. Производство СССР.", " V-ex_light": "А-Выход дорога к военной базе", " Voip/DisabledForOffline": "VoIP недоступен в оффлайн режиме", " kg": " кг", @@ -12102,8 +12087,6 @@ "AI amount": "Количество ИИ", "AI difficulty": "Сложность ИИ", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "Бронепробитие", - "AMMO PROJECTILE COUNT": "Кол-во поражающих элементов", "ARMOR CLASS": "КЛАСС БРОНИ", "ARMOR POINTS": "ОЧКИ БРОНИ", "ARMOR TYPE": "ТИП БРОНИ", @@ -12146,7 +12129,6 @@ "AheadOfTimeEnding": "ВРЕМЯ ЗАВЕРШЕНИЯ", "Aim": "Прицеливание", "AimDrills": "Прицеливание", - "AimDrillsLevelingUpDescription": "Навык прицеливания улучшается при попадании по врагам во время прицеливания.", "AimMaster": "Прицеливание", "AimMasterDescription": "Вскидывание оружия происходит быстрее, а качение ствола после вскидывания становится меньше.", "AimMasterElite": "Maybe increases AimMasterElite [(+{0:0%})]", @@ -12241,12 +12223,9 @@ "Arena/CustomGames/toggle/tournament": "Турнир", "Arena/EndMatchNotification": "Матч был завершен, пока вы отсутствовали", "Arena/Matching/CustomGames": "Пользовательские игры", - "Arena/Notification/Selection/Blocked": "Пресет заблокирован к покупке", "Arena/OnCancelMatch": "Отмена поиска игры из-за проблем загрузки", "Arena/OnCancelMatch/Group": "Отмена поиска игры из-за проблем загрузки у одного из игроков", "Arena/OnCancelMatch/NoServer": "Не удалось найти свободный сервер для игры. Попробуйте позднее", - "Arena/Popups/TwitchDropsHeader": "Забрать подарок", - "Arena/Preset/Tooltip/Tab/6": "Различные уникальные коллекционные пресеты.", "Arena/Preset/Tooltip/Tab/Assault": "Штурмовик - наиболее универсальный класс. Пресеты штурмовиков обладают сбалансированным снаряжением, подходящим под большинство игровых ситуаций.", "Arena/Preset/Tooltip/Tab/CQB": "CQB - наиболее бронированный класс на Арене. Отличительной особенностью CQB являются забрала и увеличенный боезапас основного оружия. Пресеты данного класса отлично показывают себя в обороне позиций и долгих перестрелках.", "Arena/Preset/Tooltip/Tab/Collection": "Пресеты, выдающиеся за особые заслуги на Арене.", @@ -12296,17 +12275,11 @@ "Arena/TeamColor/yellow_plural": "Желтые", "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Недостаточно денег для одного или нескольких игроков в группе", "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Недостаточно разблокированных пресетов в Tier для одного или нескольких игроков в группе", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Недостаточно разблокированных пресетов в {0} для одного или нескольких игроков в группе", "Arena/Tiers/LockedBy/PovertyThreshold": "Недостаточно денег для Tier", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "Недостаточно денег для {0}", "Arena/Tiers/LockedBy/PresetsUnlocked": "Недостаточно разблокированных пресетов", "Arena/Tiers/LockedBy/UnavailableTier": "Tier недоступен для игры", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} временно недоступен для игры", - "Arena/Tiers/RankingAvailable {0}": "Рейтинговая игра недоступна: разблокировано {0} пресетов", "Arena/Tiers/Unlocked {0} presets": "разблокировано {0} пресетов", "Arena/Tiers/UnlockedPresets": "Разблокировано пресетов", - "Arena/Tooltip/MapSelectedCounter": "Количество выбранных локаций", - "Arena/Tooltip/MinMapCount {0}": "Выберете несколько локаций. Вам нужно выбрать минимум {0} карт(ы)", "Arena/UI/Awaiting-Players": "Ожидание игроков", "Arena/UI/Confirm-Match": "Принять", "Arena/UI/CustomMode": "Кастомная", @@ -12325,10 +12298,8 @@ "Arena/UI/Match_leaving_forbidden_body": "Если вы покинете матч, то вы подставляете своих союзников в невыгодное положение.
Вы потеряете награду и рейтинг, а также можете получить временный бан.", "Arena/UI/Match_leaving_forbidden_header": "Внимание! Вы покидаете матч.", "Arena/UI/Match_leaving_permitted_header": "Вы можете покинуть матч без штрафа.", - "Arena/UI/PresetResetToDefault": "У следующих пресетов были сброшены настройки до состояния по умолчанию:", "Arena/UI/Return": "ВЕРНУТЬСЯ", "Arena/UI/Return-to-match": "ВЕРНУТЬСЯ В МАТЧ", - "Arena/UI/Selection/Blocked": "Пресет приобретен", "Arena/UI/Waiting": "Ожидание...", "Arena/Ui/ServerFounding": "Поиск сервера...", "Arena/Widgets/Observer/capture point": "Захватить точку", @@ -12383,16 +12354,9 @@ "ArenaUI/PresetView/FreePreset": "БЕСПЛАТНО", "ArenaUI/PresetView/PresetPreview": "Просмотр пресета", "ArenaUI/PresetView/ShopPrice": "Цена в магазине", - "Arena_AirPit": "Аэропорт", - "Arena_AutoService": "Разборка", - "Arena_Bay5": "Порт 5", - "Arena_Bowl": "Стадион", - "Arena_Yard": "Район", - "Arena_equator_TDM_02": "Экватор", "Arena_result_final": "Финал", "Arena_result_result": "Результаты", "Arena_result_rounds": "Раунд", - "Arena_saw": "Лесопилка", "Armband": "Повязка", "Armor": "Броня", "Armor Zone BackHead": "Затылок", @@ -12437,14 +12401,12 @@ "Aspect ratio:": "Соотношение сторон:", "Assault": "Штурмовые винтовки и автоматы", "AssaultCarbine Mastering": "Штурм. карабин", - "AssaultDescription": "Навык обращения со штурмовыми винтовками и автоматами улучшает общую эргономику, отдачу и время перезарядки данного типа оружия.", - "AssaultLevelingUpDescription": "Навык штурмовых винтовок улучшается при стрельбе из соответствующего типа оружия и его перезарядки.", - "AssaultRifle": "Штурм. винтовки", + "AssaultDescription": "Навыки обращения со штурмовыми винтовками и автоматами.", + "AssaultRifle": "Штурм. Винтовки", "AssaultRifle Mastering": "Штурм. винтовка", "AssortmentUnlockReward/Description": "Вы сможете приобрести этот товар у торговца {0} в качестве награды", "AttachedLauncher": "Подствольное оружие", - "AttachedLauncherDescription": "Навык обращения с подствольными гранатометами улучшает общую эргономику, отдачу и время перезарядки данного типа оружия.", - "AttachedLauncherLevelingUpDescription": "Навык подствольного оружия улучшается при стрельбе из соответствующего типа оружия и его перезарядки.", + "AttachedLauncherDescription": "Навыки обращения с подствольными гранатометами", "Attention": "Внимательность", "Attention!": "Внимание!", "Attention! All items, brought by you into the raid or found in it, have been lost.": "Внимание! Вы лишились всех предметов и снаряжения.", @@ -12455,10 +12417,9 @@ "Attention! You’ve left the raid and lost everything you brought or found in it.": "Внимание! Вы покинули рейд и лишились всего снаряжения.", "AttentionDescription": "Внимательность полезна для ускорения поиска добычи в разного рода контейнерах.", "AttentionEliteExtraLootExp": "Удваивает опыт с обнаружения предметов", - "AttentionEliteLuckySearch": "Увеличивает шанс моментального нахождения предмета в контейнере на [{0:0.#%}]", - "AttentionLevelingUpDescription": "Навык внимательности улучшается при обыске контейнеров и трупов.", - "AttentionLootSpeed": "Увеличивает скорость поиска в контейнерах на [{0:0.#%}]", - "AttentionRareLoot": "Увеличивает скорость изучения предметов на [{0:0.#%}]", + "AttentionEliteLuckySearch": "Шанс моментального нахождения [({0})]", + "AttentionLootSpeed": "Увеличивает скорость поиска в контейнерах [(+{0:0%})]", + "AttentionRareLoot": "Увеличение скорости изучения предметов [(+{0:0%})]", "Auctionsdescription": "Аукционы", "Authentic": "Реалистичный", "Authorization": "АВТОРИЗАЦИЯ", @@ -12512,7 +12473,6 @@ "Bloom": "Bloom", "BodyTemperature": "Температура тела", "Boiler Tanks": "Бойлеры", - "BonfireBuff": "Тепло костра", "BoozeGenerator": "САМОГОННЫЙ АППАРАТ", "Boss pick": "Выбор босса", "BossType/AsOnline": "Как в онлайне", @@ -12613,17 +12573,16 @@ "Charge": "Затвор", "Charisma": "Харизма", "CharismaAdditionalDailyQuests": "Дополнительная ежедневная оперативная задача", - "CharismaBuff1": "Уменьшает валютные цены у торговцев на [{0:0.#%}]", - "CharismaBuff2": "Ускоряет рост репутации у торговцев на [{0:0.#%}]", - "CharismaDailyQuestsRerollDiscount": "Уменьшает цену на замену оперативных задач на [{0:0.#%}]", + "CharismaBuff1": "Уменьшение валютных цен у торговцев [(-{0:0%})]", + "CharismaBuff2": "Ускорение роста репутации у торговцев [(+{0:0%})]", + "CharismaDailyQuestsRerollDiscount": "Скидка на замену оперативных задач [(-{0:0%})]", "CharismaDescription": "Развитие навыка харизмы позволяет получать скидки на различные услуги.", "CharismaEliteBuff1": "Вы узнаете о событиях в торговой сфере раньше других", - "CharismaEliteBuff2": "Увеличивает прибыль с каждой торговой операции на [{0:0.#%}]", - "CharismaExfiltrationDiscount": "Уменьшает цену платных выходов на [{0:0.#%}]", + "CharismaEliteBuff2": "Увеличение прибыли с каждой торговой операции [(+{0:0%})]", + "CharismaExfiltrationDiscount": "Скидка на использование платных выходов [(-{0:0%})]", "CharismaFenceRepPenaltyReduction": "Уменьшение штрафа репутации Скупщика", - "CharismaHealingDiscount": "Уменьшает цену на услугу лечения после рейда на [{0:0.#%}]", - "CharismaInsuranceDiscount": "Уменьшает цену на услуги страховки на [{0:0.#%}]", - "CharismaLevelingUpDescription": "Навык харизмы улучшается косвенно при улучшении навыков “Внимательность”, “Восприятие” и “Интеллект”.", + "CharismaHealingDiscount": "Скидка на услуги пострейдового лечения [(-{0:0%})]", + "CharismaInsuranceDiscount": "Скидка на услуги страховки [(-{0:0%})]", "CharismaScavCaseDiscount": "Скидка на цены Ящика Диких", "ChatScreen/QuestItemsListHeader": "Следующие предметы будут перемещены в квестовый схрон:", "ChatScreen/QuestItemsMoved": "Предметы успешно перемещены в квестовый схрон", @@ -12647,7 +12606,7 @@ "Client time de-synchronized with Server time for ~{0} ms": "Время клиента рассинхронизировано с временем сервера на ~{0} мс", "ClientPlayerBlocking/MatchLeave": "Режим временно заблокирован по причине покидания игры", "ClientPlayerBlocking/NotAcceptedMatch": "Режим временно заблокирован по причине непринятия игры", - "ClientPlayerBlocking/TeamKill": "Режим временно заблокирован по причине многократного убийства союзников", + "ClientPlayerBlocking/TeamKill": "Режим временно заблокирован по причине многократного убийства сокомандников", "Close the game": "Закрыть игру", "CloseBufferGates": "закрыть дверь", "CloseDoor": "Закрыть", @@ -12740,17 +12699,15 @@ "CovertMovement": "Скрытное передвижение", "CovertMovementDescription": "Скрытное передвижение уменьшает громкость шагов и радиус их слышимости.", "CovertMovementElite": "Скрытное передвижение становится одинаково тихим по всем поверхностям", - "CovertMovementEquipment": "Уменьшает громкость звуков от оружия и снаряжения на [{0:0.#%}]", - "CovertMovementLevelingUpDescription": "Навык скрытного передвижения улучшается при бесшумном передвижении.", - "CovertMovementLoud": "Уменьшает громкость шагов по шумным поверхностям на [{0:0.#%}]", + "CovertMovementEquipment": "Уменьшает громкость звуков, издаваемых оружием и снаряжением, на [{0:0%}]", + "CovertMovementLoud": "Шаги по шумным поверхностям становятся на [{0:0%}] тише.", "CovertMovementSoundRadius": "Maybe increases CovertMovementSoundRadius [(+{0:0%})]", - "CovertMovementSoundVolume": "Уменьшает громкость шагов по обычным поверхностям на [{0:0.#%}]", - "CovertMovementSpeed": "Увеличивает скорость скрытного передвижения на [{0:0.#%}]", + "CovertMovementSoundVolume": "Шаги по обычным поверхностям становятся на [{0:0%}] тише", + "CovertMovementSpeed": "Увеличивает скорость скрытного передвижения [(+{0:0%})]", "Crafting": "Ручное производство", - "CraftingContinueTimeReduce": "Уменьшает время цикличного производства (кроме Биткоин фермы) на [{0:0.#%}]", + "CraftingContinueTimeReduce": "[{0:0.##%}] к уменьшению времени цикличного производства всего (кроме биткоин фермы)", "CraftingElite": "Возможность крафтить одновременно два предмета в зоне", - "CraftingLevelingUpDescription": "Навык ручного производства улучшается при создании предметов в Убежище.", - "CraftingSingleTimeReduce": "Уменьшает время крафтов на [{0:0.#%}]", + "CraftingSingleTimeReduce": "[{0:0.##%}] к уменьшению времени крафта", "Craftingdescription": "Улучшение навыка позволяет уменьшить время производства предметов, в том числе циклически производимых", "Create group dialog": "Создать групповой диалог", "CreateDialog": "{0} создал групповой диалог!", @@ -12777,9 +12734,8 @@ "DISCONNECT": "ОТКЛЮЧИТЬСЯ", "DISCONNECT FROM GLOBAL CHAT": "ОТКЛ. ОТ ГЛОБАЛЬНОГО ЧАТА", "DISPOSE": "ВЫБРОСИТЬ", - "DMR": "Марксманские винтовки", - "DMRDescription": "Навыки обращения с пехотными снайперскими винтовками улучшают общую эргономику, отдачу и время перезарядки данного типа оружия.", - "DMRLevelingUpDescription": "Навык пехотных винтовок улучшается при стрельбе из соответствующего типа оружия и его перезарядки.", + "DMR": "Марксманская винтовка", + "DMRDescription": "Навыки обращения с пехотной снайперской винтовкой", "DON'T TRY TO LEAVE": "НЕ ПЫТАЙТЕСЬ ПОКИНУТЬ ЕГО", "DONTKNOW": "НЕ ЗНАЮ", "DOWN": "УБИТ", @@ -12908,11 +12864,11 @@ "DrawElite": "Отсутствие качания рук при любом значении выносливости первые 3 секунды после прицеливания", "DrawMaster": "Смена оружия", "DrawMasterDescription": "Ускоряет смену, доставание и убирание оружия.", - "DrawMasterElite": "Увеличивает скорость смены оружия на [{0:0.#%}]", - "DrawMasterSpeed": "Увеличивает скорость смены оружия на [{0:0.#%}]", - "DrawSound": "Уменьшает громкость прицеливания на [{0:0.#%}]", - "DrawSpeed": "Увеличивает скорость прицеливания на [{0:0.#%}]", - "DrawTremor": "Уменьшает качание рук при треморе и переломе в первые 2 секунды после прицеливания на [50%]", + "DrawMasterElite": "Увеличивает скорость смены оружия [(+{0:0%})]", + "DrawMasterSpeed": "Увеличивает скорость смены оружия [(+{0:0%})]", + "DrawSound": "Уменьшение громкости прицеливания [(-{0:0%})]", + "DrawSpeed": "Увеличение скорости прицеливания [(+{0:0%})]", + "DrawTremor": "Уменьшенное качание рук при треморе и переломе на 50% первые 2 секунды после прицеливания", "DropBackpack": "Скинуть рюкзак", "DropItem": "Бросить предмет", "Duck": "Пригнуться", @@ -12934,7 +12890,6 @@ "EAntialiasingMode/None": "выкл", "EAntialiasingMode/TAA_High": "TAA Выс.", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Получение бонусов за Жетоны ЧВК\n\nБонусы приносят только Жетоны ЧВК:\n- Противоположной фракции;\n- Игроков, которые не состоят с вами в друзьях;\n- Игроков, которые на момент убийства не находятся с вами в одной группе.\n\nКаждый уровень жетона приносит {0}% бонуса\nМаксимум за один жетон можно получить {1}% бонуса", "EArenaPresetsType/Assault": "Штурмовик", "EArenaPresetsType/CQB": "CQB", "EArenaPresetsType/Marksman": "Стрелок", @@ -13136,13 +13091,12 @@ "Enabled": "Включено", "Endurance": "Выносливость", "EnduranceBreathElite": "Дыхание не зависит от энергии", - "EnduranceBuffBreathTimeInc": "Увеличивает временя задержки дыхания на [{0:0.#%}]", - "EnduranceBuffEnduranceInc": "Увеличивает выносливость на [{0:0.#%}]", - "EnduranceBuffJumpCostRed": "Уменьшает затраты выносливости на прыжок на [{0:0.#%}]", - "EnduranceBuffRestorationTimeRed": "Уменьшает время восстановления дыхания на [{0:0.#%}]", + "EnduranceBuffBreathTimeInc": "Увеличение времени задержки дыхания [(+{0:0%})]", + "EnduranceBuffEnduranceInc": "Увеличение выносливости [(+{0:0%})]", + "EnduranceBuffJumpCostRed": "Уменьшение силовых затрат на прыжок [(-{0:0%})]", + "EnduranceBuffRestorationTimeRed": "Уменьшение времени восстановления дыхания [(-{0:0%})]", "EnduranceDescription": "Выносливость влияет на ваш запас сил, скорость его расходования при беге и прыжках, а также задержку и восстановление дыхания.", "EnduranceHands": "Увеличение запаса выносливости рук", - "EnduranceLevelingUpDescription": "Выносливость улучшается во время бега без статус-эффекта перегрузки, и во время тренировок в тренажёрном зале Убежища.", "EnergyExpensesUp {0}": "Расход энергии увеличен на {0}", "EnergyRate": "Восстановление энергии", "Enter": "Войти", @@ -13272,7 +13226,6 @@ "Friends": "Друзья", "Friends invite is already sent": "Запрос дружбы уже отправлен", "Friends list": "Список друзей", - "FrostbiteBuff": "Холод Мары", "Full": "Полон", "Full Recovery Time": "Время полного восстановления", "Fullscreen mode:": "Режим экрана:", @@ -13340,8 +13293,7 @@ "HIGH_PACKETS_LOSS": "Высокая потеря пакетов", "HIT": "РАНЕН", "HMG": "Тяжелые пулеметы", - "HMGDescription": "Навык обращения с тяжелыми пулеметами улучшает общую эргономику, отдачу и время перезарядки данного типа оружия.", - "HMGLevelingUpDescription": "Навык тяжелых пулеметов улучшается при стрельбе из соответствующего типа оружия и его перезарядки.", + "HMGDescription": "Навыки обращения с тяжелыми пулеметами", "HOLD FIRE": "НЕ СТРЕЛЯТЬ", "HOLDFIRE": "НЕ СТРЕЛЯТЬ", "HOLDPOSITION": "ДЕРЖАТЬ!", @@ -13372,27 +13324,25 @@ "Health/ItemResourceDepleted": "Ресурс предмета исчерпан", "Health/PlayerIsDead": "Персонаж мёртв", "HealthAndPhysics": "Здоровье и физическая сила", - "HealthBreakChanceRed": "Уменьшает шанс сломать кость на [{0:0.#%}]", + "HealthBreakChanceRed": "Уменьшение шанса сломать кость [(-{0:0%})]", "HealthDescription": "Хорошее здоровье поможет выздороветь быстрее, вернувшись раненым из рейда, повысит шансы обойтись без переломов, и снизит расход энергии и влаги.", "HealthEliteAbsorbDamage": "Поглощение урона", "HealthElitePosion": "Иммунитет к отравлениям [({0})]", - "HealthEnergy": "Уменьшает базовый расход энергии на [{0:0.#%}]", - "HealthHydration": "Уменьшает базовый расход воды на [{0:0.#%}]", - "HealthLevelingUpDescription": "Навык здоровья улучшается косвенно при улучшении навыков “Сила”, “Выносливость”, “Жизнеспособность”.", - "HealthOfflineRegenerationInc": "Ускоряет регенерацию здоровья вне боя на [{0:0.#%}]", + "HealthEnergy": "Уменьшение базового расхода энергии [(-{0:0%})]", + "HealthHydration": "Уменьшение базового расхода воды [(-{0:0%})]", + "HealthOfflineRegenerationInc": "Ускорение регенерации вне боя [(+{0:0%})]", "HealthRate": "Регенерация здоровья", "HealthTreatment/SkipHealthTreatmentDialogue": "Внимание! Низкий уровень здоровья.\nПропустить лечение и\nвыйти в ГЛАВНОЕ МЕНЮ?", "Heating": "ОБОГРЕВ", "Heavy": "Тяжёлый", "HeavyBleeding": "Сильное кровотечение", - "HeavyVestBluntThroughputDamageReduction": "Уменьшает заброневой урон по частям тела, закрытым тяжелой броней, на [{0:0.#%}]", - "HeavyVestDeteriorationChanceOnRepairReduce": "Уменьшает шанс износа при ремонте через ремнаборы на [50%]", - "HeavyVestMoveSpeedPenaltyReduction": "Уменьшает штраф к мобильности при ношении тяжелой брони на [{0:0.#%}]", + "HeavyVestBluntThroughputDamageReduction": "Уменьшение заброневого урона по частям тела, закрытым тяжелой броней [(-{0:0%})]", + "HeavyVestDeteriorationChanceOnRepairReduce": "Шанс произвести ремонт без нанесения износа (50%)", + "HeavyVestMoveSpeedPenaltyReduction": "Уменьшение штрафа к мобильности при ношении тяжелой брони [(-{0:0%})]", "HeavyVestNoBodyDamageDeflectChance": "Шанс отразить выстрел при попадании в тяжелую броню", - "HeavyVestRepairDegradationReduction": "Уменьшает величину износа при ремонте через ремнаборы на [{0:0.#%}]", + "HeavyVestRepairDegradationReduction": "Уменьшение величины износа при ремонте через ремнаборы [(-{0:0%})]", "HeavyVests": "Тяжелые бронежилеты", "HeavyVestsDescription": "Навыки ношения тяжелой брони снижают проникающий урон здоровью, кумулятивный урон здоровью и броне, а также частично компенсируют недостаток мобильности при ношении.", - "HeavyVestsLevelingUpDescription": "Навык тяжелых бронежилетов улучшается при ремонте бронежилетов и плит соответствующего типа с помощью ремкомплектов.", "Hideout/Craft/ToolMarkerTooltip": "Этот предмет будет использоваться как вспомогательный инструмент. Он вернется в схрон после завершения производства.", "Hideout/Handover window/Caption/All weapons": "Всё оружие", "Hideout/Handover window/Message/Items in stash selected:": "Предметов в схроне выбрано:", @@ -13404,10 +13354,9 @@ "Hideout/placeoffame/smalltrophies": "Небольшие трофеи", "HideoutExtraSlots": "+2 слота для топливных канистр\n+2 слота для водных фильтров\n+2 слота для воздушных фильтров\n+2 к лимиту хранения монет в биткоин ферме", "HideoutInteractions/TransferItems": "Выставить предметы", - "HideoutManagement": "Управление Убежищем", - "HideoutManagementLevelingUpDescription": "Навык управления Убежищем улучшается при создании предметов и улучшении зон в Убежище.", - "HideoutResourceConsumption": "Уменьшает скорость траты топлива, воздушного и водного фильтров на [{0:0.#%}]", - "HideoutZoneBonusBoost": "Увеличивает все процентные бонусы с зон на [{0:0.#}%]", + "HideoutManagement": "Управление убежищем", + "HideoutResourceConsumption": "Уменьшение скорости траты топлива, воздушного и водного фильтров на [{0:0%}]", + "HideoutZoneBonusBoost": "Увеличение всех процентных бонусов с зон на [{0:0}%]", "Hideout\\Craft\\ToolMarketTooltip": "", "Hideout_area_16_stage_3_description": "Полноценная зона в Убежище, отведенная для хранения предметов, представляющих коллекционную ценность.", "Hiding objective {0:F1}": "Маскировка цели {0:F1}", @@ -13442,14 +13391,13 @@ "Identifier": "Исходная строка", "Illumination": "ОСВЕЩЕНИЕ", "Immunity": "Иммунитет", - "ImmunityAvoidPoisonChance": "Увеличивает иммунитет к ядам на [{0:0.#%}]", + "ImmunityAvoidPoisonChance": "Иммунитет к ядам до [(+{0:0%})]", "ImmunityDescription": "Влияет на восприимчивость к болезням и эффективность их лечения.", - "ImmunityLevelingUpDescription": "Навык иммунитета улучшается при нахождении под эффектом отравления и другими негативными эффектами от стимуляторов.", - "ImmunityMiscEffects": "Уменьшает силу действия всех негативных эффектов стимуляторов, еды, воды на [{0:0.#%}]", - "ImmunityMiscEffectsChance": "Увеличивает шанс получить иммунитет к негативным эффектам от стимуляторов, еды, воды на [{0:0.#%}]", - "ImmunityPainKiller": "Увеличивает временя действия обезболивающего на [{0:0.#%}]", - "ImmunityPoisonBuff": "Уменьшенает силу действия яда на [{0:0.#%}]", - "ImmunityPoisonChance": "Увеличивает шанс получить иммунитет к ядам на [{0:0.#%}]", + "ImmunityMiscEffects": "Уменьшение силы действия всех негативных эффектов стимуляторов, еды, воды до [(+{0:0%})]", + "ImmunityMiscEffectsChance": "Шанс получить иммунитет к негативным эффектам от стимуляторов, еды, воды до [(+{0:0%})]", + "ImmunityPainKiller": "Увеличение времени действия обезболивающего до [(+{0:0%})]", + "ImmunityPoisonBuff": "Уменьшение силы действия яда до [(+{0:0%})]", + "ImmunityPoisonChance": "Шанс получить иммунитет к ядам до [(+{0:0%})]", "In equipment": "В СНАРЯЖЕНИИ", "InMenu": "В меню", "InRaid": "В рейд", @@ -13472,10 +13420,9 @@ "IntellectEliteAmmoCounter": "Счетчик боеприпасов", "IntellectEliteContainerScope": "Вы видите типы предметов в контейнере без поиска", "IntellectEliteNaturalLearner": "Изучение сложных предметов не требует инструкции", - "IntellectLearningSpeed": "Увеличивает скорость изучения предметов на [{0:0.#%}]", - "IntellectLevelingUpDescription": "Навык интеллекта улучшается при изучении неизвестных ранее предметов и ремонте оружия.", - "IntellectRepairPointsCostReduction": "Уменьшает затрату очков ремнабора при починке на [{0:0.#%}]", - "IntellectWeaponMaintance": "Увеличивает эффективность ремонта оружия на [{0:0.#%}]", + "IntellectLearningSpeed": "Увеличение скорости изучения предметов [(+{0:0%})]", + "IntellectRepairPointsCostReduction": "Уменьшает затрату очков ремнабора при починке [(-{0:0%})]", + "IntellectWeaponMaintance": "Увеличение эффективности ремонта оружия [(+{0:0%})]", "IntelligenceCenter": "РАЗВЕДЦЕНТР", "Intensity:": "Интенсивность:", "Interact": "Взаимодействие", @@ -13644,8 +13591,7 @@ "LH": "LH", "LL": "УЛ", "LMG": "Легкие пулеметы", - "LMGDescription": "Навык обращения с легкими пулеметами улучшает общую эргономику, отдачу и время перезарядки данного типа оружия.", - "LMGLevelingUpDescription": "Навык легких пулеметов улучшается при стрельбе из соответствующего типа оружия и его перезарядки.", + "LMGDescription": "Навыки обращения с легкими пулеметами", "LOAD": "ЗАРЯДИТЬ", "LOAD FROM DIRECTORY...": "Загрузить из папки...", "LOAD FROM FILE...": "Загрузить из файла...", @@ -13666,8 +13612,7 @@ "LastHeroDescription": "Сражение с противниками в бесконечной перестрелке. В этой схватке будет только один победитель.", "LastHeroDescriptionShort": "Один против всех", "Launcher": "Гранатометы", - "LauncherDescription": "Навык обращения с ручными гранатометами улучшает общую эргономику, отдачу и время перезарядки данного типа оружия.", - "LauncherLevelingUpDescription": "Навык гранатометов улучшается при стрельбе из соответствующего типа оружия и его перезарядки.", + "LauncherDescription": "Навыки обращения с гранатометами", "LeanLockLeft": "Наклон влево", "LeanLockRight": "Наклон вправо", "LeanX negative": "Плавн. наклон влево", @@ -13698,13 +13643,12 @@ "Light": "Лёгкий", "LightBleeding": "Слабое кровотечение", "LightVestBleedingProtection": "Закрытые легкой броней части тела невосприимчивы к кровотечению", - "LightVestDeteriorationChanceOnRepairReduce": "Уменьшает шанс износа при ремонте через ремнаборы на [50%]", - "LightVestMeleeWeaponDamageReduction": "Уменьшает урон от холодного оружия по частям тела, закрытым легкой броней, на [{0:0.#%}]", - "LightVestMoveSpeedPenaltyReduction": "Уменьшает штраф к мобильности при ношении легкой брони на [{0:0.#%}]", - "LightVestRepairDegradationReduction": "Уменьшает величину износа при ремонте через ремнаборы на [{0:0.#%}]", + "LightVestDeteriorationChanceOnRepairReduce": "Шанс произвести ремонт без нанесения износа (50%)", + "LightVestMeleeWeaponDamageReduction": "Уменьшение урона от холодного оружия по частям тела, закрытым легкой броней [(-{0:0%})]", + "LightVestMoveSpeedPenaltyReduction": "Уменьшение штрафа к мобильности при ношении легкой брони [(-{0:0%})]", + "LightVestRepairDegradationReduction": "Уменьшение величины износа при ремонте через ремнаборы [(-{0:0%})]", "LightVests": "Легкие бронежилеты", "LightVestsDescription": "Навыки ношения легкой брони снижают штрафы к мобильности, проникающий урон здоровью и урон от холодного оружия.", - "LightVestsLevelingUpDescription": "Навык легких бронежилетов улучшается при ремонте бронежилетов и плит соответствующего типа с помощью ремкомплектов.", "Lighthouse": "Маяк", "Lighthouse_pass": "Переход на Маяк", "Lighting quality:": "Качество света:", @@ -13756,7 +13700,6 @@ "MAP": "КАРТА", "MASTERING": "ВЛАДЕНИЕ", "MATERIAL": "Материал", - "MAX AMMO DAMAGE": "Урон", "MAXCOUNT": "МАКСИМАЛЬНОЕ КОЛ-ВО", "MAXIMUM THROW DAMAGE": "МАКСИМАЛЬНЫЙ УРОН", "MED USE TIME": "ВРЕМЯ ИСПОЛЬЗОВАНИЯ", @@ -13805,12 +13748,11 @@ "MagDrills": "Работа с магазинами", "MagDrillsDescription": "Умение, направленное на работу с магазинами - зарядку и разрядку патронов, проверку количества патронов в магазинах.", "MagDrillsInstantCheck": "Магазин, перемещенный в ваш инвентарь, автоматически становится проверенным", - "MagDrillsInventoryCheckAccuracy": "Увеличивает точность проверки магазина через контекстное меню на [{0:0.#}%]", - "MagDrillsInventoryCheckSpeed": "Уменьшает скорость проверки магазина через контекстное меню на [{0:0.#}%]", - "MagDrillsLevelingUpDescription": "Навык работы с магазинами улучшается при зарядке, разрядке и проверке магазинов.", + "MagDrillsInventoryCheckAccuracy": "Увеличивает точность проверки магазина через контекстное меню [-{0}%]", + "MagDrillsInventoryCheckSpeed": "Уменьшает скорость проверки магазина через контекстное меню [-{0}%]", "MagDrillsLoadProgression": "Загрузка магазина происходит быстрее с каждым загруженным патроном", - "MagDrillsLoadSpeed": "Уменьшает время загрузки патронов на [{0:0.#}%]", - "MagDrillsUnloadSpeed": "Уменьшает время разгрузки патронов на [{0:0.#}%]", + "MagDrillsLoadSpeed": "Уменьшает время загрузки патронов [(-{0}%)]", + "MagDrillsUnloadSpeed": "Уменьшает время разгрузки патронов [(-{0}%)]", "MagPreset/CaliberNotSelected": "Калибр не выбран", "MagPreset/DiscardCahangesDescription": "Все несохранённые изменения будут потеряны.\nПродолжить?", "MagPreset/Error/ContainsMissingItems": "Патроны не найдены:", @@ -13881,27 +13823,24 @@ "Meds": "Медикаменты", "Melee": "Холодное оружие", "MeleeDescription": "Навыки работы с оружием ближнего боя", - "MeleeLevelingUpDescription": "Навык холодного оружия улучшается при попадании по врагам холодным оружием.", "Memory": "Память", "MemoryDescription": "Развитая память дольше сохраняет способность применять полученные знания и умения на однажды достигнутом уровне.", "MemoryEliteMentalNoDegradation": "Теперь вы неспособны забыть усвоенные навыки", - "MemoryLevelingUpDescription": "Навык памяти улучшается при", - "MemoryMentalForget1": "Увеличивает срок запоминания навыков на [{0:0.#%}]", - "MemoryMentalForget2": "Сокращает максимальное забывание навыков на [{0:0.#%}]", + "MemoryMentalForget1": "Увеличение срока запоминания навыков [(+{0:0%})]", + "MemoryMentalForget2": "Сокращение максимального забывания навыков [(-{0:0%})]", "Mental": "Ментальные", "Merchant": "Торговец", "Metabolism": "Метаболизм", "MetabolismDescription": "С хорошим метаболизмом еда и питье питают вас надежней и дольше, а приобретенные физические навыки забываются медленнее.", "MetabolismEliteBuffNoDyhydration": "Урон от обезвоживания и измождения не наносится", "MetabolismEliteNoForget": "Физические навыки не могут быть утрачены", - "MetabolismEnergyExpenses": "Уменьшает скорость снижения энергии и гидрации на [{0:0.#%}]", - "MetabolismLevelingUpDescription": "Навык метаболизма улучшается при использовании еды и питья.", - "MetabolismMiscDebuffTime": "Уменьшает временя действия всех негативных эффектов стимуляторов, еды, воды на [{0:0.#%}]", - "MetabolismPhysicsForget": "Уменьшает скорость забывания физических навыков на [{0:0.#%}]", + "MetabolismEnergyExpenses": "Уменьшение скорости снижения энергии и гидрации [(-{0:0%})]", + "MetabolismMiscDebuffTime": "Уменьшение времени действия всех негативных эффектов стимуляторов, еды, воды до [(-{0:0%})]", + "MetabolismPhysicsForget": "Уменьшение скорости забывания физических навыков [(-{0:0%})]", "MetabolismPhysicsForget2": "Сокращает максимальный уровень атрофии физических навыков", "MetabolismPhysicsNoForget": "Физические навыки перестают забываться.", - "MetabolismPoisonTime": "Уменьшает временя действия ядов на [{0:0.#%}]", - "MetabolismRatioPlus": "Увеличивает положительные свойства еды и питья на [{0:0.#%}]", + "MetabolismPoisonTime": "Уменьшение времени действия ядов [(-{0:0%})]", + "MetabolismRatioPlus": "Увеличение положительных свойств еды и питья [(+{0:0%})]", "Microphone sensitivity:": "Громкость микрофона:", "MildMusclePain": "Боль в мышцах", "Military Checkpoint": "КПП Диких", @@ -14137,18 +14076,16 @@ "Pending requests": "Запросы в друзья", "Perception": "Восприятие", "PerceptionDescription": "Увеличивает дистанцию слышимости и концентрацию при прицеливании, а также облегчает поиск добычи.", - "PerceptionFov": "Увеличивает приближение при прицеливании на [{0:0.#%}]", - "PerceptionHearing": "Увеличивает радиус слышимости на [{0:0.#%}]", - "PerceptionLevelingUpDescription": "Навык восприятия улучшается при нахождении и поднятии любых предметов.", - "PerceptionLootDot": "Увеличивает радиус чутья на добычу на [{0:0.#%}]", + "PerceptionFov": "Увеличение приближения при прицеливании [(+{0:0%})]", + "PerceptionHearing": "Увеличение радиуса слышимости [(+{0:0%})]", + "PerceptionLootDot": "Увеличение радиуса чутья на добычу [(+{0:0%})]", "PerceptionmEliteNoIdea": "Оповещение о близости добычи", "Perish": "Погиб", "Physical": "Физические", "Pier Boat": "Лодка на причале", "Pistol": "Пистолеты", "Pistol Mastering": "Пистолет", - "PistolDescription": "Навык обращения с пистолетами улучшает общую эргономику, отдачу и время перезарядки данного типа оружия.", - "PistolLevelingUpDescription": "Навык пистолетов улучшается при стрельбе из соответствующего типа оружия и его перезарядки.", + "PistolDescription": "Навык обращения с пистолетами.", "PlaceOfFame": "УГОЛ СЛАВЫ", "PlantLocationDescription": "Промплощадка и все помещения химического завода №16 были незаконно переданы в аренду компании TerraGroup и во время Контрактных Вйон стали местом многочилсленных боев между BEAR и USEC за право контролировать промышленную часть Таркова. Позднее, на волне зарождающегося хаоса, завод превратился в пристанище последних беженцев из местных, Диких, и отставших от своих частей военных и вооруженных групп, включая оперативников USEC и BEAR.", "Player": "Игрок", @@ -14220,7 +14157,6 @@ "ProneMovement": "Передвижение ползком", "ProneMovementDescription": "С опытом, передвижение ползком становится быстрее и тише.", "ProneMovementElite": "Maybe increases ProneMovementElite [(+{0:0%})]", - "ProneMovementLevelingUpDescription": "Навык передвижения ползком улучшается при передвижении в лежачем положении.", "ProneMovementSpeed": "Maybe increases ProneMovementSpeed [(+{0:0%})]", "ProneMovementVolume": "Maybe increases ProneMovementVolume [(+{0:0%})]", "Protect objective {0:F1}": "Защищайте цель {0:F1}", @@ -14410,9 +14346,8 @@ "Recoil Up": "Вертикальная отдача", "RecoilControl": "Контроль отдачи", "RecoilControlDescription": "Гашение отдачи уменьшает горизонтальный разброс огня, делая его более предсказуемым.", - "RecoilControlElite": "Улучшает контроль отдачи на [{0:0.#%}]", - "RecoilControlImprove": "Улучшает контроль отдачи на [{0:0.#%}]", - "RecoilControlLevelingUpDescription": "Навык контроля отдачи улучшается вместе со стрельбой. Чем выше базовая отдача оружия, тем сильнее улучшается навык.", + "RecoilControlElite": "Улучшает контроль отдачи [(+{0:0%})]", + "RecoilControlImprove": "Улучшает контроль отдачи [(+{0:0%})]", "RecommendedVRAM:": "Рекомендованный размер VRAM", "Reconnection is not available at this moment due to testing purposes": "Переподключение в настоящее время недоступно в связи с тестированием и отладкой данной функции", "RedRebel_alp": "Тропа альпиниста", @@ -14437,12 +14372,11 @@ "Repair/HasCommonBuff": "Улучшено", "Repair/HasRareBuff": "Редкое улучшение", "Repair/RepairKit/CanEnhance": "Ремонт может наложить улучшение", - "RepairWeaponDeteriorationReduce": "Уменьшает величину износа при ремонте через ремнаборы", + "RepairWeaponDeteriorationReduce": "Уменьшение величины износа при ремонте ремнаборами", "Repairing objective {0:F1}": "Починка предмета {0:F1}", "Report game bug abuse": "Сообщить об абьюзе багов", "Report offensive nickname": "Сообщить об оскорбительном никнейме", "Report suspected cheat use": "Сообщить о подозреваемом в читерстве", - "Report suspicious profile": "Сообщить о подозрительном профиле", "ReportAbuseBug": "Сообщить о злоупотреблении багов", "ReportAbuseVoip": "Злоупотребление VoIP/Рации", "ReportCheater": "Сообщить об подозрении в читерстве", @@ -14477,8 +14411,7 @@ "Revert your settings to default?": "Сбросить настройки на значения по умолчанию?", "Revolver": "Револьверы", "Revolver Mastering": "Револьвер", - "RevolverDescription": "Навык обращения с револьверами улучшает общую эргономику, отдачу и время перезарядки данного типа оружия.", - "RevolverLevelingUpDescription": "Навык револьверов улучшается при стрельбе из соответствующего типа оружия и его перезарядки.", + "RevolverDescription": "Навык обращения с револьверами.", "RezervBase": "Резерв", "Rig": "Разгрузки", "Right Arm": "ПРАВАЯ РУКА", @@ -14527,8 +14460,7 @@ "SKILLS_SPEED_DOWN": "Скорость прокачки уменьшена до", "SKILLS_SPEED_UP": "Скорость прокачки увеличена на", "SMG": "Пистолеты-пулеметы", - "SMGDescription": "Навык обращения с пистолетами-пулеметами улучшает общую эргономику, отдачу и время перезарядки данного типа оружия.", - "SMGLevelingUpDescription": "Навык пистолетов-пулеметов улучшается при стрельбе из соответствующего типа оружия и его перезарядки.", + "SMGDescription": "Навык обращения с ПП.", "SNIPERPHRASE": "СНАЙПЕР", "SO": "SO", "SOUND": "ЗВУК", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "Сумма оборота у {0} увеличена на {1}", "Sandbox": "Эпицентр", "Sandbox_VExit": "А-Выход полицейский кордон", - "Sandbox_high": "Эпицентр", "Saturation:": "Насыщение:", "Savage matchmaker": "Участвуйте в рейде Диким, местным бандитом с неизвестным стартовым снаряжением. Это ваш Тарков и ваши правила!", "SavageBannerDescription": "Рейд за Дикого отличается от рейда за основого персонажа ЧВК. Место, время появления, состояние здоровья и снаряжение Дикого заранее неизвестно. Умирая в рейде, вы никак не затронете прогресс или снаряжение основного персонажа. Но, если вы выживете Диким, то сможете передать найденное в схрон основного персонажа.", @@ -14585,7 +14516,6 @@ "Search": "Поиск", "SearchDescription": "Навык быстрого и эффективного обыска тел", "SearchDouble": "Обыск двух контейнеров одновременно", - "SearchLevelingUpDescription": "Навык поиска улучшается при обыске контейнеров.", "SecondPrimaryWeapon": "На спине", "SecondaryWeapon": "Вспомогательное оружие", "SecuredContainer": "Подсумок", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "Настройки были изменены. Сохранить?", "Settings/Sound/BinauralSound": "Бинауральный звук", "Settings/Sound/ChatVolume": "Громкость звуков чата:", - "Settings/Sound/CommentatorVolume": "Громкость комментатора:", "Settings/Sound/Device": "Устройство воспроизведения", "Settings/Sound/HideoutVolume": "Громкость убежища:", "Settings/Sound/InterfaceVolume": "Громкость звуков интерфейса:", "Settings/Sound/MusicOnRaidEnd": "Музыка в конце рейда", "Settings/Sound/MusicVolume": "Громкость музыки:", "Settings/Sound/OverallVolume": "Общий уровень громкости:", - "Settings/Sound/ReadyToMatchSoundVolume": "Громкость экрана готовности к матчу:", "Settings/UnavailablePressType": "Недоступно", "SevereMusclePain": "Сильная боль в мышцах", "Shack": "КПП военной базы", @@ -14676,8 +14604,7 @@ "Shorl_free_scav": "Переход на Берег", "Shotgun": "Дробовики", "Shotgun Mastering": "Дробовик", - "ShotgunDescription": "Навык обращения с гладкоствольным оружием улучшает общую эргономику, отдачу и время перезарядки данного типа оружия.", - "ShotgunLevelingUpDescription": "Навык дробовиков улучшается при стрельбе из соответствующего типа оружия и его перезарядки.", + "ShotgunDescription": "Навыки обращения с гладкоствольным оружием.", "Show icons": "Показывать иконки", "Show:": "Показывать:", "SightingRange": "Прицельная Дальность", @@ -14698,10 +14625,9 @@ "Smg Mastering": "Пистолет-пулемет", "Smuggler's Boat": "Лодка контрабандиста", "Smugglers_Trail_coop": "Путь контрабандиста (Совм.)", - "Sniper": "Болтовые винтовки", + "Sniper": "Снайперские винтовки", "Sniper Roadblock": "Блокпост снайперов", - "SniperDescription": "Навык обращения с болтовыми снайперскими винтовками улучшает общую эргономику, отдачу и время перезарядки данного типа оружия.", - "SniperLevelingUpDescription": "Навык болтовых винтовок улучшается при стрельбе из соответствующего типа оружия и его перезарядки.", + "SniperDescription": "Навыки обращения со снайперскими винтовками.", "SniperRifle": "Снайперские винтовки", "SniperRifle Mastering": "Снайперская винтовка", "Sniper_exit": "Проспект Мира", @@ -14734,8 +14660,6 @@ "StartInGroup": "Группой", "StartLookingForGroup": "Начать поиск группы", "StartNotInGroup": "Отдельно", - "StashLinesExternalObtain": "Расширение схрона", - "StashLinesExternalObtain/Tooltip": "Расширение схрона доступно для приобретения на сайте", "StatFoundMoneyEUR": "ЕВРО найдено", "StatFoundMoneyRUB": "РУБ найдено", "StatFoundMoneyUSD": "ДОЛЛ найдено", @@ -14770,22 +14694,20 @@ "StomachBloodloss": "Кровотечение в животе", "Stop looking for group": "Поиск группы остановлен", "Strength": "Сила", - "StrengthBuffAim": "Уменьшает затраты выносливости для прицеливания на [{0:0.#%}]", + "StrengthBuffAim": "Прицеливание затрачивает меньше выносливости [(+{0:0%})]", "StrengthBuffElite": "Не учитывается вес оружия в слотах оружия (оружие в рюкзаке учитывается)", - "StrengthBuffJumpHeightInc": "Увеличивает высоту прыжка на [{0:0.#%}]", - "StrengthBuffLiftWeightInc": "Увеличивает грузоподъемность на [{0:0.#%}]", - "StrengthBuffMeleeCrits": "Увеличивает шанс нанести критический урон при ударе холодным оружием на [{0:0.#%}]", - "StrengthBuffMeleePowerInc": "Увеличивает силу удара холодным оружием на [{0:0.#%}]", - "StrengthBuffSprintSpeedInc": "Увеличивает скорость ходьбы и спринта на [{0:0.#%}]", - "StrengthBuffThrowDistanceInc": "Увеличивает силу броска гранат на [{0:0.#%}]", + "StrengthBuffJumpHeightInc": "Увеличение высоты прыжка [(+{0:0%})]", + "StrengthBuffLiftWeightInc": "Увеличение грузоподъемности [(+{0:0%})]", + "StrengthBuffMeleeCrits": "При ударе ножом шанс нанести критический удар [({0})]", + "StrengthBuffMeleePowerInc": "Увеличение силы удара холодным оружием [(+{0:0%})]", + "StrengthBuffSprintSpeedInc": "Увеличение скорости ходьбы и спринта [(+{0:0%})]", + "StrengthBuffThrowDistanceInc": "Увеличение силы броска гранат [(+{0:0%})]", "StrengthDescription": "Увеличение силы позволит прыгать выше и бегать быстрее, больнее бить и дальше бросать, и, что немаловажно - больше нести.", - "StrengthLevelingUpDescription": "Навык силы улучшается во время бега со статус-эффектом перегрузки, бросков гранат, использования холодного оружия, тренировок в тренажёрном зале Убежища.", "StressBerserk": "Доступен режим берсерка", - "StressPainChance": "Уменьшает шанс получить болевой эффект на [{0:0.#%}]", + "StressPainChance": "Уменьшение шанса получить болевой эффект [(-{0:0%})]", "StressResistance": "Стрессоустойчивость", "StressResistanceDescription": "Стрессоустойчивость снижает вероятность болевого шока и уменьшает вызванные болью качание рук и тремор.", - "StressResistanceLevelingUpDescription": "Навык стрессоустойчивости улучшается при получении урона персонажем. Наличие на персонаже статус-эффекта \"Боль\" без принятого обезболивающего также улучшает навык.", - "StressTremor": "Уменьшает тремор рук и болевое качание на [{0:0.#%}]", + "StressTremor": "Уменьшение тремора рук и болевого качания [(-{0:0%})]", "StringSeparator/Or": " или ", "Stun": "Оглушён", "Subtask completed:": "Подзадача выполнена:", @@ -14851,9 +14773,8 @@ "Summary": "Сводка", "Surgery": "Хирургия", "SurgeryDescription": "Возможность проводить полевые хирургические операции может спасти вам жизнь. Данный навык увеличит скорость и качество проводимых операций.", - "SurgeryLevelingUpDescription": "Навык хирургии улучшается при использовании хирургических комплектов на поврежденных частях тела.", - "SurgeryReducePenalty": "Уменьшает штраф к максимальному здоровью части тела за операцию на [{0:0.#%}]", - "SurgerySpeed": "Увеличивает скорость проведения операции на [{0:0.#%}]", + "SurgeryReducePenalty": "Уменьшение штрафа здоровью за операцию [(-{0:0%})]", + "SurgerySpeed": "Увеличение скорости проведения операции [(+{0:0%})]", "Survival Rate Short": "S/R: {0}%", "SurvivalRate": "Выживаемость", "Survived": "Выжил", @@ -14926,9 +14847,8 @@ "ThrowItem": "Выбросить", "Throwing": "Метательное оружие", "ThrowingDescription": "Навыки обращения с метательным оружием.", - "ThrowingEnergyExpenses": "Снижает затрату энергии на бросок на [{0:0.#%}]", - "ThrowingLevelingUpDescription": "Навык метательного оружия улучшается при бросании гранат.", - "ThrowingStrengthBuff": "Увеличивает силу броска на [{0:0.#%}]", + "ThrowingEnergyExpenses": "Снижение затрат энергии на бросок [(-{0:0%})]", + "ThrowingStrengthBuff": "Увеличение силы броска [(+{0:0%})]", "ThrowingWeaponsBuffElite": "Броски не тратят энергию, а усталость не влияет на их точность", "Time flow": "Течение времени", "Time to reconnect left ({0})": "Время, оставшееся для переподключения ({0})", @@ -14976,11 +14896,11 @@ "Trading/Dialog/AvaliableServices": "Можешь мне оказать услугу?", "Trading/Dialog/Btr/News": "Что нового?", "Trading/Dialog/Btr/News/Next": "Какие ещё новости?", - "Trading/Dialog/Btr/News1": "Снегу-то навалило недавно! Давно такого не было, аж с самых Контрактных Войн. Будто не на севере живём. Жаль, что уже всё растаяло.", - "Trading/Dialog/Btr/News2": "Что за вопрос вообще? Праздник был, отмечали всем городом! С прошедшим тебя, кстати.", - "Trading/Dialog/Btr/News3": "Навели шороху боссы, да? Сидели на своих точках, не двигаясь, никому дышать спокойно не давали.", - "Trading/Dialog/Btr/News4": "Этот пришибленный, который из года в год в Деда Мороза наряжается, заговорил! Я-то думал он немой.", - "Trading/Dialog/Btr/News5": "По всему городу начали находить фигурки с местными знаменитостями. Интересно, мой БТР сделает или нет?", + "Trading/Dialog/Btr/News1": "Самая главная новость — БТР! Считай, полностью моё творение, сам починил. Теперь могу перебрасывать бойцов. Глядишь, так и отобью деньги на ремонт.", + "Trading/Dialog/Btr/News2": "Кто-то организовал гладиаторские бои в Таркове. Говорят, много кто туда по своей воле пошел. Деньги там платят неплохие. Если выживешь, конечно!", + "Trading/Dialog/Btr/News3": "По всему Таркову был переполох из-за каких-то террагруповских документов. Аж за кордоном искали, но что-то слабо верится.", + "Trading/Dialog/Btr/News4": "Недавно бронебойки у торгашей пропали. Бойцы, как ты, бегали по всему Таркову, искали чужие схроны с бк. Сейчас-то уже все в порядке.", + "Trading/Dialog/Btr/News5": "Санитар не так давно пытался усилить влияние в Таркове. Антидот у него, видите ли, был. Незадолго до этого многие потравились. Совпадение? Не думаю.", "Trading/Dialog/Btr/NoNews": "Да вроде всё, больше ничего нового.", "Trading/Dialog/Btr/ServicePayoff{0}": "Да, мне подходит. (передать предмет \"{0}\")", "Trading/Dialog/BtrBotCover/Description": "Всё время, что ты будешь в БТР, мы будем отстреливать любого, кто высунет нос. Ещё зачистим территорию высадки и прикроем пока будешь вылезать, но недолго. ", @@ -14999,34 +14919,18 @@ "Trading/Dialog/PlayerHandoveItem{0}": "Вот что нашёл. (передать предмет \"{0}\")", "Trading/Dialog/PlayerTaxi/Description": "Вот куда могу подкинуть. Выбирай.", "Trading/Dialog/PlayerTaxi/Name": "Подвезти", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Ага, цель — кинотеатр «Родина». Цена устраивает?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Кинотеатр «Родина»", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "Выдвигаемся к трамваю. По цене потянешь?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Трамвай", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "Отлично, курс на центр города. Денег хватит?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "Центр города", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Поедем сейчас до упавшего крана. Цена устраивает?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Упавший кран", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "Довезу тебя до бывшего БП Диких. Цена подходит?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Бывший БП Диких", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "Перекину тебя к отелю «Пайнвуд». Что по цене, нормально?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Отель «Пайнвуд»", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "Отправляемся к бункеру Диких. С ценой порядок?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Бункер Диких", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "Затопленная деревня? Думаю, проедем. Что по цене, нормально?", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Затопленная деревня", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "Развилка в центре нам по пути. Денег хватит?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Развилка", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "К лесопилке подвезти не проблема. Цена устраивает?", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Лесопилка", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "Понял. Подбросить до КПП Юсеков. Цена подходит? ", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "КПП USEC", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "Выстраиваю маршрут к базе МЧС. Что по цене, нормально?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "База МЧС", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "Ну что же, едем к старой лесопилке. Цена устраивает?", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Старая лесопилка", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "В депо закинуть? Учти, без меня оттуда не выбраться. Если цена подходит, то следи за временем там, лады?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Депо", + "Trading/Dialog/PlayerTaxi/p1/Description": "Ага, цель — кинотеатр «Родина». Цена устраивает?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Кинотеатр «Родина»", + "Trading/Dialog/PlayerTaxi/p2/Description": "Выдвигаемся к трамваю. По цене потянешь?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Трамвай", + "Trading/Dialog/PlayerTaxi/p3/Description": "Отлично, курс на центр города. Денег хватит?", + "Trading/Dialog/PlayerTaxi/p3/Name": "Центр города", + "Trading/Dialog/PlayerTaxi/p4/Description": "Поедем сейчас до упавшего крана. Цена устраивает?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Упавший кран", + "Trading/Dialog/PlayerTaxi/p5/Description": "Довезу тебя до бывшего БП Диких. Цена подходит?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Бывший БП Диких", + "Trading/Dialog/PlayerTaxi/p6/Description": "Перекину тебя к отелю «Пайнвуд». Что по цене, нормально?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Отель «Пайнвуд»", "Trading/Dialog/Quit": "Попрощаться и уйти", "Trading/Dialog/ServicePayoff{0}": "Хорошо, этого должно быть достаточно. (передать предмет \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Скрыть историю", @@ -15062,14 +14966,13 @@ "TransferScreen/TransferFailed": "Не удалось приобрести услугу", "TransferScreen/TransferSuccess": "Услуга приобретена!", "Tremor": "Тремор", - "TroubleFixing": "Увеличивает скорость устранения неполадки на [{0:0.#%}]", - "TroubleFixingAmmoElite": "Уменьшает шанс неполадок от патрона после исправления неполадки от этого источника на [50%]", - "TroubleFixingDurElite": "Уменьшает шанс неполадок от износа оружия после исправления неполадки от этого источника на [50%]", + "TroubleFixing": "Увеличивает скорость устранения неполадки [(+{0:0%})]", + "TroubleFixingAmmoElite": "Уменьшение шанса неполадок от магазина на 50% после исправления неполадки от этого источника", + "TroubleFixingDurElite": "Уменьшение шанса неполадок от износа оружия на 50% после исправления неполадки от этого источника", "TroubleFixingExamineMalfElite": "Вид неполадки становится известен сразу после обнаружения неполадки", - "TroubleFixingMagElite": "Уменьшает шанс неполадок от магазина после исправления неполадки от этого источника на [50%]", + "TroubleFixingMagElite": "Уменьшение шанса неполадок от патрона на 50% после исправления неполадки от этого источника", "TroubleShootingDescription": "Навык устранения неполадок позволяет быстрее справляться со спонтанными проблемами в работе оружия.", "Troubleshooting": "Устранение неполадок", - "TroubleshootingLevelingUpDescription": "Навык устранения неполадок улучшается при регулярном устранении оружейных неполадок.", "Try_keycard {0}": "Применить {0}", "Tunnel": "Тоннель", "Tunnel_Shared": "Боковой тоннель (Совм.)", @@ -15152,11 +15055,6 @@ "UI/Arena/Place_7": "7 место", "UI/Arena/Place_8": "8 место", "UI/Arena/Place_9": "9 место", - "UI/ArmorPenetration/High": "Высокий", - "UI/ArmorPenetration/Low": "Низкий", - "UI/ArmorPenetration/Medium": "Средний", - "UI/ArmorPenetration/VeryHigh": "Очень высокий", - "UI/ArmorPenetration/VeryLow": "Очень низкий", "UI/Charisma/Discount/Insurance": "Стоимость страховки", "UI/Charisma/Discount/PostRaidHealing": "Стоимость лечения", "UI/Charisma/Discount/ScavCase": "Стоимость Ящика Диких", @@ -15334,18 +15232,15 @@ "Very good standing": "оч. хорошее", "Vest": "Броня", "Village": "Деревня", - "Violation/IntentionalTeamDamage/Warning": "Вы получите блокировку аккаунта, если продолжите стрелять по своим союзникам", - "Violation/IntentionalTeamKill/Warning": "Вы получите блокировку аккаунта, если продолжите убивать союзников в начале раунда", - "Violation/TeamKill/Warning": "Вы получите блокировку аккаунта, если продолжите убивать союзников", + "Violation/TeamKill/Warning": "Вы получите блокировку аккаунта, если продолжите убивать сокомандников", "Vital mod weapon in hands": "Вы не можете модифицировать ключевые детали оружия в руках.", "Vital parts": "Критические компоненты", "Vitality": "Жизнеспособность", - "VitalityBuffBleedChanceRed": "Уменьшает вероятность кровотечения на [{0:0.#%}]", + "VitalityBuffBleedChanceRed": "Уменьшение вероятности кровотечения [(-{0:0%})]", "VitalityBuffBleedStop": "Все кровотечения останавливаются самостоятельно", "VitalityBuffRegeneration": "Увеличение регенерации здоровья в бою", - "VitalityBuffSurviobilityInc": "Уменьшает шанс смерти при уничтожении части тела на [{0:0.#%}]", + "VitalityBuffSurviobilityInc": "Уменьшение шанса смерти при уничтожении части тела [(-{0:0%})]", "VitalityDescription": "Жизнеспособность определяет шансы выживания при ранении, снижая вероятность кровотечения и мгновенной гибели при критических повреждениях частей тела.", - "VitalityLevelingUpDescription": "Навык жизнеспособности улучшается при получении кровотечений и ранений.", "Voice": "Голос", "Voice 1": "Голос 1", "Voice 2": "Голос 2", @@ -15406,23 +15301,22 @@ "WeaponBroken": "ЗАДЕРЖКА", "WeaponBuild/SetNameWindowCaption": "НАЗВАНИЕ СБОРКИ", "WeaponBuild/SetNameWindowPlaceholder": "введите название сборки", - "WeaponDeteriorationChanceReduce": "Уменьшает вероятность износа при ремонте на [{0:0.#%}]", + "WeaponDeteriorationChanceReduce": "Уменьшение вероятности износа при ремонте ([(до -{0:0%})])", "WeaponDoubleMastering": "Удваивает скорость получения мастеринга", - "WeaponDurabilityLossOnShotReduce": "Уменьшает износ оружия при выстреле на [{0:0.#%}]", - "WeaponErgonomicsBuff": "Увеличивает эргономику оружия на [{0:0.#%}]", + "WeaponDurabilityLossOnShotReduce": "Уменьшение износа оружия [(до -{0:0%})] при выстреле", + "WeaponErgonomicsBuff": "Увеличивает эргономику оружия [(+{0:0%})]", "WeaponJammed": "ОРУЖИЕ ЗАКЛИНИЛО", "WeaponModding": "Базовый моддинг оружия", "WeaponModdingDescription": "Навыки базовой модификации оружия в бою позволяют добиться более высокой эргономики и снижения износа ПБС.", "WeaponPunch": "Удар прикладом", - "WeaponRecoilBuff": "Уменьшает отдачу оружия на [{0:0.#%}]", - "WeaponReloadBuff": "Увеличивает скорость перезарядки на [{0:0.#%}]", + "WeaponRecoilBuff": "Сокращает отдачу оружия [(+{0:0%})]", + "WeaponReloadBuff": "Увеличивает скорость перезарядки [(+{0:0%})]", "WeaponStiffHands": "Increases WeaponErgonomicsBuff [(+{0:0%})]", - "WeaponSwapBuff": "Ускоряет переключение оружия на [{0:0.#%}]", + "WeaponSwapBuff": "Ускоряет переключение оружия [(+{0:0%})]", "WeaponTreatment": "Уход за оружием", "WeaponTreatmentDescription": "Навык обслуживания и ремонта оружия.", - "WeaponTreatmentLevelingUpDescription": "Навык ухода за оружием улучшается при ремонте оружия с помощью ремкомплектов.", - "WearAmountRepairGunsReducePerLevel": "Уменьшает величину износа при ремонте через ремнаборы", - "WearChanceRepairGunsReduceEliteLevel": "Уменьшает шанс износа при ремонте через ремнаборы на [50%]", + "WearAmountRepairGunsReducePerLevel": "Уменьшение величины износа при ремонте через ремнаборы", + "WearChanceRepairGunsReduceEliteLevel": "Уменьшение шанса износа при ремонте через ремнаборы (-50%)", "Weather conditions": "Погодные условия", "WeightLimit": "Переносимый вес", "Welcome screen description": "Добро пожаловать в Побег из Таркова! \nВ данной игре вам предстоит бороться за свою жизнь, выживая в Таркове, российском городе в Норвинской области, на пороге коллапса, хаоса и заката человеческой цивилизации. Ваш герой - оператор Частной Военной Компании (ЧВК), попавший в круговорот событий после Контрактных Войн. Район перекрыт, командование перестало выходить на связь, все боевые задачи утратили свою актуальность. Каждый начинает преследовать собственные цели - адаптироваться и выживать, выйти из окружения или взять контроль в свои руки, спасая других. \n \nКаждую игровую сессию будьте готовы умереть и потерять всё заработанное. Приготовьтесь к тому, что каждая нестабильность в работе вашего интернета (потеря связи) и оборудования может привести к разрыву соединения и вашей смерти и, как следствие, потере всего виртуального имущества, найденного в текущей сессии. \n \nДа, вы будете умирать, и часто. Помните - это всего лишь игра. Желаем вам удачи!", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "Коэф. побед, %", "arena/career/teamFightStats/wins": "Побед", "arena/career/teamFightStats/winsWithFavPreset": "Выигранных матчей c любимым пресетом", - "arena/customGames/create/samePresets": "Одинаковые пресеты:", - "arena/customGames/create/setSamePresets": "Разрешить одинаковые пресеты", "arena/customGames/invite/message{0}": "ПРИГЛАШЕНИЕ В ПОЛЬЗОВАТЕЛЬСКУЮ ИГРУ ОТ {0}", "arena/customGames/notify/GameRemoved": "Игра была распущена", "arena/customgames/errors/notification/gamealreadystarted": "Игра уже началась", @@ -15708,7 +15600,6 @@ "arena/tooltip/OverallMatches": "Общее количество сыгранных рейтинговых и безрейтинговых матчей.", "arena/tooltip/Presets": "Сборки", "arena/tooltip/countGlp": "Количество вашего суммарного ARP (Arena Reputation Points) рейтинга. Это показатель, определяющий ваш рейтинг, получаемый в рейтинговых режимах игры. С помощью него происходит поиск игроков по навыку игры, а также он позволяет открывать новые ранги и пресеты.", - "arena/tooltip/dailyExpBonus": "Вы получите бонус x2 опыта на первую игру за день. Применимо для каждого класса отдельно.", "arena/tooltip/friends": "Друзья", "arena/tooltip/kdRatio": "Ваше общее K/D (Убийства/Смерти), рассчитываемое из всех убийств и смертей в рейтинговых и безрейтинговых матчах. Учитываются только убийства игроков.", "arena/tooltip/leftGlp": "Количество ARP рейтинга, необходимое для достижения следующего ранга.", @@ -15716,7 +15607,6 @@ "arena/tooltip/moneyRubles": "Рубли. Используются для покупки пресетов и зарабатываются за победы на Арене.", "arena/tooltip/ratingPlace": "Ваша позиция в таблице лидеров.", "arena/tooltip/settings": "Настройки", - "arena/tooltip/skillsLocked": "Все навыки персонажа закреплены на 30 уровне.", "arena/tooltip/sourcesGlp": "Источники заработанного ARP рейтинга:", "arena/tooltip/winMatches": "Общее количество побед в рейтинговых и безрейтинговых матчах.", "arena/tooltip/winRate": "Ваш общий процент побед, рассчитываемый из всех побед и поражений в рейтинговых и безрейтинговых матчах.", @@ -16076,7 +15966,7 @@ "hideout_area_9_stage_2_description": "Место для отдыха, оборудованное нормальной кроватью, прикроватной тумбочкой и даже стареньким телевизором. Создает ощущение уюта и дает ностальгические воспоминания о былой жизни.", "hideout_area_9_stage_3_description": "Зона отдыха с диваном, ЖК телевизором с приставкой Ployka Station и музыкальным центром. Трудно представить, что такой комфорт можно организовать в бункере под землей, когда весь мир летит в пропасть.", "hideout_construction_time": "ВРЕМЯ ПОСТРОЙКИ", - "hideoutmanagementdescription": "Эффективное управление Убежищем позволяет тратить меньше топлива и фильтров при производстве, а также увеличивает бонусы от зон", + "hideoutmanagementdescription": "Эффективное управление убежищем, позволяет тратить меньше топлива и фильтров при производстве, а также увеличивает бонусы от зон", "high + texture streaming": "Высокие + стриминг текстур", "hitCount": "Количество попаданий", "hpHealed": "Здоровья восстановлено", @@ -16330,7 +16220,7 @@ "rank_08": "Профи", "rank_09": "Элита", "rank_10": "Шепот Смерти", - "rank_11": "Воитель Пламени", + "rank_11": "Воитель пламени", "rank_12": "Биг Босс", "rank_13": "Легенда Арены", "ratingExpPos": "Позиция в рейтинге по опыту", @@ -16370,7 +16260,7 @@ "scav_e6": "Вход в подвал", "scav_e7": "Паркинг ЖК Кардинал", "scav_e8": "Выход ТЦ на Климова", - "searchspeed": "Увеличивает скорость поиска на [{0:0.#%}]", + "searchspeed": "Увеличивает скорость поиска [(+{0:0%})]", "sec": "сек", "select weapon body for the build": "ВЫБЕРИТЕ ОРУЖИЕ ДЛЯ СБОРКИ", "semiauto": "Полуавтомат", @@ -16449,10 +16339,8 @@ "{0} Beta version": "{0} Бета версия", "{0} GroupPlayerBlocking/MatchLeave": "Режим временно заблокирован из-за того, что один из членов вашей группы ({0}) имеет блокировку по причине покидания игры", "{0} GroupPlayerBlocking/NotAcceptedMatch": "Режим временно заблокирован из-за того, что один из членов вашей группы ({0}) имеет блокировку по причине непринятия игры", - "{0} GroupPlayerBlocking/TeamKill": "Режим временно заблокирован из-за того, что один из членов вашей группы ({0}) имеет блокировку по причине многократного убийства союзников", - "{0} Violation/IntentionalTeamDamage/Blocking": "Игрок {0} был удален из игры и получил штраф за стрельбу по союзникам", - "{0} Violation/IntentionalTeamKill/Blocking": "Игрок {0} был удален из игры и получил штраф за убийство союзников в начале раунда", - "{0} Violation/TeamKill/Blocking": "Игрок {0} был удален из игры и получил штраф за убийство союзников", + "{0} GroupPlayerBlocking/TeamKill": "Режим временно заблокирован из-за того, что один из членов вашей группы ({0}) имеет блокировку по причине многократного убийства сокомандников", + "{0} Violation/TeamKill/Blocking": "Игрок {0} был удален из игры и получил штраф за убийство сокомандников", "{0} added you to the ignore list": "{0} добавил вас в игнор-список.", "{0} ask to cooperate": "{0} приветствует вас", "{0} canceled friend request": "Игрок {0} отменил приглашение в друзья", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "За Арену и двор стреляю в упор", "653e6760052c01c1c805532f Name": "Эпицентр", "653e6760052c01c1c805532f Description": "Деловой центр города Тарков. Именно здесь располагалась штаб-квартира TerraGroup. Именно здесь всё и началось.", - "65b8d6f5cdde2479cb2a3125 Name": "Эпицентр", - "65b8d6f5cdde2479cb2a3125 Description": "Деловой центр города Тарков. Именно здесь располагалась штаб-квартира TerraGroup. Именно здесь всё и началось.", "5464e0404bdc2d2a708b4567 Name": "United Security", "5464e0404bdc2d2a708b4567 Description": "Частная военная компания USEC была образована после слияния двух компаний: KerniSEC и Safe Sea в 1999 году. В 2004 году лоббист международного холдинга TerraGroup выходит на USEC, которая становится, по сути, личной армией холдинга с офисами по всему миру и штатом более 7500 человек.", "5464e0454bdc2d06708b4567 Name": "BEAR", @@ -18259,7 +18145,7 @@ "5ac346e886f7741d6118b99b description": "Я долго думал над тем, о чем говорили в прошлый раз. Стали ли люди добрей с развитием цивилизации? Идут ли они рука об руку? Все это время там, где мы считаем, что есть цивилизация, жизнь становилась комфортней, жить становилось легче. Все меньше нужно было думать, где взять еду, или беспокоиться о безопасности. Легко быть гуманным, когда тебе ничего не угрожает. Ответ на вопросы, что я задаю, был перед глазами. Ситуация в Таркове показала, насколько мы стали добрей. Как только вопросы выживания встали в первый ряд, оказалось, что достойных людей не стало больше, может быть, столько же, что и 500 лет назад. Хотя, наверное, даже меньше. Что думаешь, ты относишься к их числу? Ладно, не грузись. Мне нужно, чтобы ты сделал кое-что для меня. Но для этого нужно будет запомнить довольно много всего. Потренируйся пока в запоминании больших объемов информации, позже свяжусь с тобой.", "5ac346e886f7741d6118b99b failMessageText": "", "5ac346e886f7741d6118b99b successMessageText": "Седьмой знак после запятой в числе Пи? IIO? Ладно, когда придет время, я свяжусь с тобой.", - "5ac5eb3286f7746e7a509a09": "Достичь нужного уровня навыка \"Внимательность\"", + "5ac5eb3286f7746e7a509a09": "Достичь нужного уровня навыка \"Память\"", "5acf3b9986f77418403493b5": "", "5acf3ba186f7741ce21f9b0c": "", "5ac346e886f7741d6118b99b acceptPlayerMessage": "", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "Убить бойцов ЧВК выстрелом в голову, используя болтовые винтовки на локации Маяк", "63aec6f256503c322a190374": "Убить бойцов ЧВК выстрелом в голову, используя болтовые винтовки на локации Улицы Таркова", "64b694c8a857ea477002a408": "Убить бойцов ЧВК выстрелом в голову, используя болтовые винтовки на локации Развязка", - "65e0812209dffc3fd97b99e8": "Убить бойцов ЧВК выстрелом в голову, используя болтовые винтовки на локации Эпицентр", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Убить Диких на Улицах Таркова, одевшись в форму ООН (Шлем UNTAR, бронежилет MF-UNTAR, винтовка M4A1)", - "65e08aa9f5879b2586d5fd4c": "Убить Диких на Эпицентре, одевшись в форму ООН (Шлем UNTAR, бронежилет MF-UNTAR, винтовка M4A1) ", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "Выйти с локации Резерв со статусом \"Выжил\"", "629f08e7d285f377953b2af1": "Выйти с локации Маяк со статусом \"Выжил\"", "63aec66556503c322a190372": "Выйти с локации Улицы Таркова со статусом \"Выжил\"", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Выйти с локации Эпицентр со статусом \"Выжил\"", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Достичь 4-го уровня лояльности с Терапевтом", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Достичь 4-го уровня лояльности с Егерем", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -20314,8 +20195,6 @@ "60ec2b04bc9a8b34cd453b81": "Нельзя погибать и покидать рейд, пока задача активна (Статус: Убит, Вышел, Пропал без вести)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Убить бойцов ЧВК на локации Эпицентр", - "65e19abadf39d26751b3bb1e": "Убить бойцов ЧВК на локации Эпицентр", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", @@ -20641,7 +20520,7 @@ "6193850f60b34236ee0483de description": "Ну чё стоишь, подваливай давай. Короче, вдоль всего побережья на мысу идет дорога, вникаешь? По этой дороге мои пацаны добро возят от меня и до меня. Вроде, всегда какие замесы по пути быстро успокаивали, но сейчас поднавалилось туда залётных на сладенькое. Вот и стали налетать конкретно на ребят, пройти вообще не варик пока. Метнись туда, успокой умалишенных, а? С меня ништячок будет.", "6193850f60b34236ee0483de failMessageText": "", "6193850f60b34236ee0483de successMessageText": "Красава, дуранул фуфелов как надо. Давай, братка, свидимся еще.", - "6193dabd5f6468204470571f": "Убить Диких в районе главной дороги и берега на локации Маяк", + "6193dabd5f6468204470571f": "Убить Диких в районе главной дороги на локации Маяк", "6193850f60b34236ee0483de acceptPlayerMessage": "", "6193850f60b34236ee0483de declinePlayerMessage": "", "6193850f60b34236ee0483de completePlayerMessage": "", @@ -21337,9 +21216,8 @@ "6397a3b6f376f0344e45711b": "Выжить и покинуть локацию Таможня через А-Выход у общаги", "6397a47fe5d9c6753c61e2da": "Выжить и покинуть локацию Развязка через А-Выход у ТЭЦ", "6397a5cbdcdd126fef173f36": "Выжить и покинуть локацию Улицы Таркова через А-выход Такси на Приморском", - "6397a6942e519e69d2139b25": "Найти и пометить первую машину \"Патруль-А\" Маркером MS2000 на локации Улицы Таркова", - "6397a7ce706b793c7d6094c9": "Найти и пометить вторую машину \"Патруль-А\" Маркером MS2000 на локации Улицы Таркова", - "65e09d3f0d1442c78274027e": "Выжить и покинуть локацию Эпицентр через А-Выход полицейский кордон", + "6397a6942e519e69d2139b25": "Найти и пометить первую машину \"Патруль-А\" Маяком MS2000 на локации Улицы Таркова", + "6397a7ce706b793c7d6094c9": "Найти и пометить вторую машину \"Патруль-А\" Маяком MS2000 на локации Улицы Таркова", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "Я связался с водителями. Пришлось попотеть, но кое-что удалось откопать.", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "Убить Диких, используя холодное оружие на локации Развязка", "63a9b5b2813bba58a50c9eeb": "Убить Диких, используя холодное оружие на локации Таможня", "63a9b5f064b9631d9178276b": "Убить Диких, используя холодное оружие на локации Резерв", - "65e0a329893b7bf535c6a9fd": "Убить Диких, используя холодное оружие на локации Эпицентр", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", diff --git a/project/assets/database/locales/global/sk.json b/project/assets/database/locales/global/sk.json index f43829b9..e4dec5ac 100644 --- a/project/assets/database/locales/global/sk.json +++ b/project/assets/database/locales/global/sk.json @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "A compact tactical Laser Aiming Module with a blue dot. Mounts on any Picatinny/Weaver rail for precise target acquisition. Manufactured by NcSTAR.", "5cd945d71388ce000a659dfb Name": "BEAR štandardný zvršok", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Combat shirt", "5cd946231388ce000d572fe3 Name": "BEAR štandardné nohavice", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "ASh-12 vertical foregrip", "5cda9bcfd7f00c0c0b53e900 ShortName": "ASh-12", "5cda9bcfd7f00c0c0b53e900 Description": "A vertical foregrip for the ASh-12 assault rifle.", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "USEC štandardné nohavice", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", "5cde9ec17d6c8b04723cf479 Name": "USEC štandardný zvršok", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Abibas nohavice", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", "5cdea42e7d6c8b0474535dad Name": "Abibas Tracksuit", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "M700 Magpul Pro 700 chassis", "5cdeac22d7f00c000f26168f ShortName": "Pro700", "5cdeac22d7f00c000f26168f Description": "Pro 700 is a lightweight ergonomic chassis designed for the Remington M700 sniper rifle. Manufactured by Magpul.", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "BEAR Black Lynx", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", "5d1f60ae86f7744bcc04998b Name": "Tričko BEAR Contractor", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "FSB Fast Response", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "BEAR Ghost Marksman", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "BEAR Summerfield", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "USEC Aggressor TAC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "USEC Softshell Flexion", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "USEC Woodland Infiltrator", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Combat shirt", "5d1f623886f7743014163027 Name": "USEC PCS Multicam", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "USEC PCU Ironsight", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "FSB Urban Tact", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "BEAR Gorka Kobra", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "BEAR Gorka SSO", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "BEAR Striker Infil Ops", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "BEAR Summer Field", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "USEC Gen.2 Khyber", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "USEC Woodland Infiltrator", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "USEC Ranger Jeans", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "USEC Taclife Terrain", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "USEC TACRES", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "AR-10 Daniel Defense WAVE 7.62x51 muzzle brake", "5d1f819086f7744b355c219b ShortName": "WAVE 762", "5d1f819086f7744b355c219b Description": "The Daniel Defense WAVE muzzle brake is designed to securely mount the Daniel Defense WAVE suppressor to the host firearm, but also functions effectively without it. It's manufactured from aerospace 17-4 PH stainless steel and had a salt bath nitride finish for minimal corrosion.", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "USEC Commando", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "An upper receiver for the SR-25 rifle, manufactured by Knight's Armament Company.", "5df8e5c886f7744a122d6834 Name": "BEAR Zaslon", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "Meteor", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "BEAR Oldschool", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "USEC TIER2", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "Sklon", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "The first generation of the modified CPC plate carrier originally designed by Crye Precision and adapted by Ars Arma for use by special forces of the Russian Federation. This modular body armor is based on a polymer harness that fits the body, which avoids the plate carrier backlash during active movement and also contributes to a more even distribution of weight. Made in the assault configuration of pouches and armor elements. Manufactured by Ars Arma.", "5e4bb08f86f774069619fbbc Name": "BEAR Telnik", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "USEC TIER2", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "BEAR TIGR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "USEC Commando", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "Ruská bunda", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "BEAR TIGR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "USEC Urban Responder", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "BEAR Zaslon", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "USEC Deep Recon", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Tactical pants", "5e9dcf5986f7746c417435b3 Name": "Batoh LBT-8005A Day Pack", "5e9dcf5986f7746c417435b3 ShortName": "Day Pack", "5e9dcf5986f7746c417435b3 Description": "A simple and reliable 14-liter backpack in Multicam Black camouflage. Manufactured by London Bridge Trading.", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "The Thunderbolt fixed chest rig, containing all the basic utility pouches you'd need. Manufactured by Direct Action.", "5f5f45df0bc58666c37e7832 Name": "BEAR G99", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "USEC Night Patrol", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "BEAR G99", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "USEC Urban Responder", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Scav Boot", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "BEAR SRVV", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "USEC TIER3", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": ".300 AAC Blackout AP", "5fd20ff893a8961fc660a954 ShortName": "AP", "5fd20ff893a8961fc660a954 Description": "A .300 Blackout (7.62x35mm) AP cartridge loaded with an 8.4 gram armor-piercing bullet from a 7.62x51mm NATO M80A1 cartridge, composed of a steel penetrator tip over a copper alloy core with a copper semi-jacket in a brass case. Despite the bullet's own characteristics when used in a full-power cartridge, these are affected when transferred to an intermediate cartridge, however, the bullet continues to have capabilities to pierce basic and intermediate body ballistic protections, in addition to being able to cause substantial adverse effects on the target after impact. Its design also allows it to be used in STANAG 5.56x45mm NATO magazines without any issues.", "5fd3e77be504291efd0040ad Name": "USEC VEKTOR", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "BEAR Boreas", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "BEAR Grizzly", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "USEC Adaptive Combat", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "Jednoduchý nylonový nosný systém s neodnímateľnými vreckami. Umožňuje nosiť pomerne pôsobivé množstvo munície na úkor pohodlia.", "6038b228af2e28262649af14 Name": "BEAR Rash Guard", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "USEC Sandstone", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", "6038b4b292ec1c3103795a0b Name": "LBT-6094A Slick Plate Carrier (Tan)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "A simple yet effective plate carrier by London Bridge Trading company. The most minimalistic design intended for use with chest rigs. Tan version.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "TP-200 je určený na použitie ako nálože pri výrobe seizmických prieskumov, medzidetonátory pri iniciácii vrtných náloží, drvenie nadrozmerných predmetov a vykonávanie špeciálnych trhacích prác.", "603d01a1b41c9b37c6592047 Name": "BEAR VOIN", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "USEC Sage Warrior", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Azimut SS \"Zhuk\" chest harness (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Azimut", "6040dd4ddcf9592f401632d2 Description": "A simple nylon bearing system with non-removable pouches. Allows you to carry a fairly impressive amount of ammunition at the expense of convenience. SURPAT camouflage version.", @@ -8239,10 +8239,10 @@ "619b69037b9de8162902673e Description": "Designed for both the civilian market and military use. The CQR47 stock can be easily mounted in place of the standard attachment of the AK/AKM non-folding stock. Manufactured by Hera Arms.", "619b99ad604fcc392676806c Name": "BEAR Recon", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "USEC K4", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", "619bc61e86e01e16f839a999 Name": "Alpha armband", "619bc61e86e01e16f839a999 ShortName": "Alpha", "619bc61e86e01e16f839a999 Description": "An armband for veterans who are still here from the Alpha times.", @@ -8275,10 +8275,10 @@ "619bdfd4c9546643a67df6fa Description": "An armband for hardcore USEC operators.", "619bf75264927e572d0d5853 Name": "BEAR Sumrak", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Cereum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "Military corrugated tube", "619cbf476b8a1b37a54eebf8 ShortName": "MTube", "619cbf476b8a1b37a54eebf8 Description": "A military-issued corrugated tube for ventilation systems of military equipment or air purification systems.", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "USEC Chameleon", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "BEAR VOLK", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "BEAR Coyote", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "USEC DesOps", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Death Knight mask", "62963c18dbc8ab5f0d382d0b ShortName": "Death Knight", "62963c18dbc8ab5f0d382d0b Description": "A unique mask of the commander of the Goons squad, former USEC operators who decided not to flee Tarkov, but to create their own order.", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "USEC Predator", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", "64f07f7726cfa02c506f8ac0 Name": "Journal", "64f07f7726cfa02c506f8ac0 ShortName": "Journal", "64f07f7726cfa02c506f8ac0 Description": "A journal of someone who really loves everything Soviet.", @@ -11920,10 +11920,10 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "USEC Defender", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "USEC BOSS Delta", - "657f8e9824d2053bb360b51d ShortName": "USEC BOSS Delta", - "657f8e9824d2053bb360b51d Description": "USEC BOSS Delta", + "657f8e9824d2053bb360b51d ShortName": "", + "657f8e9824d2053bb360b51d Description": "Tactical shirt", "657f8ec5f4c82973640b234c Name": "Hybrid composite materials", "657f8ec5f4c82973640b234c ShortName": "", "657f8ec5f4c82973640b234c Description": "", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "BEAR URON", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "BEAR OPS MGS", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Tactical jacket", "657f925dada5fadd1f07a57a Name": "Hybrid composite materials", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "Dead civilian", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", " V-ex_light": "Vozidlo na ceste k vojenskej základni", " Voip/DisabledForOffline": "VOIP nie je v offline režime dostupné", " kg": "Kg", @@ -12102,8 +12087,6 @@ "AI amount": "Množstvo AI", "AI difficulty": "Obtiažnosť AI", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "Penetration", - "AMMO PROJECTILE COUNT": "Projectile count", "ARMOR CLASS": "TRIEDA BAL. OCHRANY", "ARMOR POINTS": "BODY BALI. OCHRANY", "ARMOR TYPE": "TYP BRNENIA", @@ -12146,7 +12129,6 @@ "AheadOfTimeEnding": "ČAS DOKONČENIA", "Aim": "Zamieriť", "AimDrills": "Tréning mierenia", - "AimDrillsLevelingUpDescription": "The Aim Drills skill is improved by hitting enemies while aiming.", "AimMaster": "Majster mierenia", "AimMasterDescription": "Zdokonaľovanie mierenia zrýchľuje primierenie a znižuje následné kývanie hlavne.", "AimMasterElite": "Increases aiming speed by [{0:0%}]", @@ -12241,12 +12223,9 @@ "Arena/CustomGames/toggle/tournament": "Tournament", "Arena/EndMatchNotification": "Match has ended while you were away", "Arena/Matching/CustomGames": "Custom games", - "Arena/Notification/Selection/Blocked": "Preset purchase blocked", "Arena/OnCancelMatch": "Matching canceled due to loading issues", "Arena/OnCancelMatch/Group": "Matching canceled due to group member having loading issues", "Arena/OnCancelMatch/NoServer": "Could not find an available server. Please try later.", - "Arena/Popups/TwitchDropsHeader": "Redeem gift", - "Arena/Preset/Tooltip/Tab/6": "Various unique collectible presets.", "Arena/Preset/Tooltip/Tab/Assault": "Assault is the most versatile class. Presets of this class have balanced equipment suitable for most combat situations.", "Arena/Preset/Tooltip/Tab/CQB": "CQB is the most heavily armored class in the Arena. CQBs are characterized by their face shields and increased ammunition for their main weapons. Presets of this class are excellent in defending positions and prolonged firefights.", "Arena/Preset/Tooltip/Tab/Collection": "Presets given for special achievements in the Arena.", @@ -12295,18 +12274,12 @@ "Arena/TeamColor/yellow": "Yellow", "Arena/TeamColor/yellow_plural": "Yellow", "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked Tier presets for one or more group members", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Not enough unlocked {0} presets for one or more group members", - "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the Tier", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "Not enough money for {0}", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} currently not available for the game", - "Arena/Tiers/RankingAvailable {0}": "Ranked game unavailable: {0} presets unlocked", "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", "Arena/Tiers/UnlockedPresets": "Presets unlocked", - "Arena/Tooltip/MapSelectedCounter": "Number of selected locations", - "Arena/Tooltip/MinMapCount {0}": "Select multiple locations. You need to select at least {0} location(s)", "Arena/UI/Awaiting-Players": "Waiting for players", "Arena/UI/Confirm-Match": "Confirm", "Arena/UI/CustomMode": "Custom", @@ -12325,10 +12298,8 @@ "Arena/UI/Match_leaving_forbidden_body": "If you leave this match you will put your comrades at disadvantage.
You'll lose your reward, rating, and will be eligible for a temporary ban.", "Arena/UI/Match_leaving_forbidden_header": "Warning! You are leaving the match.", "Arena/UI/Match_leaving_permitted_header": "You can leave this match without penalty.", - "Arena/UI/PresetResetToDefault": "Settings for the following presets have been reset to default:", "Arena/UI/Return": "RETURN", "Arena/UI/Return-to-match": "RETURN TO MATCH", - "Arena/UI/Selection/Blocked": "Preset taken", "Arena/UI/Waiting": "Waiting...", "Arena/Ui/ServerFounding": "Looking for server...", "Arena/Widgets/Observer/capture point": "Capture the objective", @@ -12383,16 +12354,9 @@ "ArenaUI/PresetView/FreePreset": "FREE", "ArenaUI/PresetView/PresetPreview": "Preset preview", "ArenaUI/PresetView/ShopPrice": "Shop price", - "Arena_AirPit": "Air Pit", - "Arena_AutoService": "Chop Shop", - "Arena_Bay5": "Bay 5", - "Arena_Bowl": "Bowl", - "Arena_Yard": "Block", - "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Final", "Arena_result_result": "Results", "Arena_result_rounds": "Round", - "Arena_saw": "Sawmill", "Armband": "Páska na ruku", "Armor": "Balistická vesta", "Armor Zone BackHead": "Nape", @@ -12438,13 +12402,11 @@ "Assault": "Útočná puška", "AssaultCarbine Mastering": "Útočná karabína", "AssaultDescription": "Assault rifles handling skill improves the overall handling, reduces recoil and reload time of Assault rifles.", - "AssaultLevelingUpDescription": "The Assault Rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "AssaultRifle": "Útočné Pušky", "AssaultRifle Mastering": "Útočná puška", "AssortmentUnlockReward/Description": "Budete si môcť kúpiť tento predmet od {0} ako odmenu", "AttachedLauncher": "Podhlavňový granátomet", "AttachedLauncherDescription": "Zručnosť narábania s podhlavňovými granátometmi", - "AttachedLauncherLevelingUpDescription": "The Underbarrel Launchers weapon skill is improved by firing and reloading the corresponding weapon type.", "Attention": "Pozornosť", "Attention!": "Pozor!", "Attention! All items, brought by you into the raid or found in it, have been lost.": "Attention! You have lost all items you brought and found during the raid.", @@ -12456,7 +12418,6 @@ "AttentionDescription": "Attention increases the looting speed of various containers.", "AttentionEliteExtraLootExp": "Zdvojnásobuje skúsenosti za drancovanie", "AttentionEliteLuckySearch": "Chance to instantly find an item in a container [({0})]", - "AttentionLevelingUpDescription": "The Attention skill is improved by searching containers and bodies.", "AttentionLootSpeed": " Increases looting speed by [{0:0%}]", "AttentionRareLoot": "Increases item examination speed by [{0:0%}]", "Auctionsdescription": "Aukcie", @@ -12512,7 +12473,6 @@ "Bloom": "Bloom", "BodyTemperature": "Teplota tela", "Boiler Tanks": "Nádrže na vodu", - "BonfireBuff": "Bonfire's warmth", "BoozeGenerator": "PÁLENICA", "Boss pick": "Boss pick", "BossType/AsOnline": "As in online", @@ -12623,7 +12583,6 @@ "CharismaFenceRepPenaltyReduction": "Reduces Fence reputation penalty", "CharismaHealingDiscount": "Reduces after-raid healing services prices by [{0:0%}]", "CharismaInsuranceDiscount": "Reduces insurance services prices by [{0:0%}]", - "CharismaLevelingUpDescription": "The Charisma skill is improved indirectly by leveling the Attention, Perception, and Intellect skills.", "CharismaScavCaseDiscount": "Adds a discount to Scav Case prices", "ChatScreen/QuestItemsListHeader": "The following items will be moved to quest item stash:", "ChatScreen/QuestItemsMoved": "Items successfully moved to quest item stash", @@ -12741,7 +12700,6 @@ "CovertMovementDescription": "Covert movement makes your steps quieter and reduces the sound radius.", "CovertMovementElite": "Covert movement becomes equally quiet on all surfaces", "CovertMovementEquipment": "Reduces noise level of weapons and equipment by [{0:0%}]", - "CovertMovementLevelingUpDescription": "The Covert Movement skill is improved by moving quietly.", "CovertMovementLoud": "Reduces noise level of footsteps on uncommon surfaces by [{0:0%}]", "CovertMovementSoundRadius": "Reduces Covert Movement sound radius by [{0:0%}]", "CovertMovementSoundVolume": "Reduces noise level of footsteps on common surfaces by [{0:0%}]", @@ -12749,7 +12707,6 @@ "Crafting": "Vlastná výroba", "CraftingContinueTimeReduce": "Reduces all cyclic production time (except Bitcoin Farm) by [{0:0.##%}]", "CraftingElite": "Ability to craft up to two different items in a zone at once", - "CraftingLevelingUpDescription": "The Crafting skill is improved by creating items in the Hideout.", "CraftingSingleTimeReduce": "Reduces item crafting time by [{0:0.##%}]", "Craftingdescription": "Improving the crafting skill reduces the production time of items, including those produced cyclically.", "Create group dialog": "Vytvoriť skupinovú konverzáciu", @@ -12779,7 +12736,6 @@ "DISPOSE": "VYHODIŤ", "DMR": "DMR", "DMRDescription": "Designated Marksman Rifle handling skill improves the overall handling, reduces recoil and reload time of DMRs.", - "DMRLevelingUpDescription": "The Designated Marksman Rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "DON'T TRY TO LEAVE": "NESNAŽTE SA ODÍSŤ", "DONTKNOW": "NEVIEM", "DOWN": "K ZEMI", @@ -12934,7 +12890,6 @@ "EAntialiasingMode/None": "Off", "EAntialiasingMode/TAA_High": "TAA High", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", "EArenaPresetsType/Assault": "Assault", "EArenaPresetsType/CQB": "CQB", "EArenaPresetsType/Marksman": "Marksman", @@ -13142,7 +13097,6 @@ "EnduranceBuffRestorationTimeRed": "Reduces breath recovery time by [{0:0%}]", "EnduranceDescription": "Endurance influences the amount of stamina and the rate of exhaustion while running or jumping, as well as holding and recovering breath.", "EnduranceHands": "Výdrž rúk zvýšená", - "EnduranceLevelingUpDescription": "The Endurance skill is improved by sprinting without the overweight status effect, and by working out in the Hideout gym.", "EnergyExpensesUp {0}": "Spotreba energie sa zvýšila o {0}", "EnergyRate": "Regenerácia energie", "Enter": "Zadajte", @@ -13272,7 +13226,6 @@ "Friends": "Priatelia", "Friends invite is already sent": "Už ste odoslali žiadosť o priateľstvo.", "Friends list": "Zoznam priateľov", - "FrostbiteBuff": "Morana's frostbite", "Full": "Plný", "Full Recovery Time": "Čas do úplného zotavenia", "Fullscreen mode:": "Režim obrazovky:", @@ -13341,7 +13294,6 @@ "HIT": "ZÁSAH", "HMG": "Ťažký guľomet", "HMGDescription": "Heavy machinegun handling skill improves the overall handling, reduces recoil and reload time of Heavy Machine Guns.", - "HMGLevelingUpDescription": "The Heavy Machine Guns weapon skill is improved by firing and reloading the corresponding weapon type.", "HOLD FIRE": "NESTRIEĽAŤ", "HOLDFIRE": "NESTRIEĽAŤ", "HOLDPOSITION": "DRŽTE POZÍCIU", @@ -13378,7 +13330,6 @@ "HealthElitePosion": "Imunita proti jedu [({0})]", "HealthEnergy": "Reduces energy consumption by [{0:0%}]", "HealthHydration": "Reduces dehydration rate by [{0:0%}]", - "HealthLevelingUpDescription": "The Health skill is improved indirectly by leveling the Strength, Endurance, and Vitality skills.", "HealthOfflineRegenerationInc": "Increases off-raid health regeneration by [{0:0%}]", "HealthRate": "Regenerácia zdravia", "HealthTreatment/SkipHealthTreatmentDialogue": "Attention! Your health is low.\nSkip health treatment and\nproceed to the MAIN MENU?", @@ -13392,7 +13343,6 @@ "HeavyVestRepairDegradationReduction": "Reduces wear amount when using repair kits by [{0:0%}]", "HeavyVests": "Ťažké vesty", "HeavyVestsDescription": "Zručnosť v nosení ťažkej balistickej vesty znižuje množstvo spôsobeného poškodenia z priestrelu alebo výbuchu a zvyšuje pohyblivosť.", - "HeavyVestsLevelingUpDescription": "The Heavy Vests skill is improved by repairing heavy body armor and ballistic plates with repair kits.", "Hideout/Craft/ToolMarkerTooltip": "This item will be used as an auxiliary tool. It will return to your stash once production is complete.", "Hideout/Handover window/Caption/All weapons": "All weapons", "Hideout/Handover window/Message/Items in stash selected:": "Items in stash selected:", @@ -13405,7 +13355,6 @@ "HideoutExtraSlots": "+2 sloty na palivové kanistre\n+2 sloty na vodné filtre\n+2 sloty na filtre vzduchu\n+2 úložné miesta na mince z bitcoinovej farmy", "HideoutInteractions/TransferItems": "Transfer items", "HideoutManagement": "Správa úkrytu", - "HideoutManagementLevelingUpDescription": "The Hideout Management skill is improved by creating items and upgrading zones in the Hideout.", "HideoutResourceConsumption": "Reduces fuel, air and water filters consumption rate by [{0:0%}]", "HideoutZoneBonusBoost": "Increases all percentage bonuses from Hideout zones by [{0:0}%] of their values", "Hideout\\Craft\\ToolMarketTooltip": "", @@ -13444,7 +13393,6 @@ "Immunity": "Imunita", "ImmunityAvoidPoisonChance": "Increases chance to avoid a poison by [{0:0%}]", "ImmunityDescription": "Immunity affects the susceptibility to illnesses and the effectiveness of their treatment.", - "ImmunityLevelingUpDescription": "The Immunity skill is improved by being under the effects of poisoning and other negative effects of stimulants.", "ImmunityMiscEffects": "Reduces all negative effects from stimulants, food, water by [{0:0%}]", "ImmunityMiscEffectsChance": "Chance to gain immunity to negative effects from stimulants, food, water up to [{0:0%}]", "ImmunityPainKiller": "Increases painkiller action time by [{0:0%}]", @@ -13473,7 +13421,6 @@ "IntellectEliteContainerScope": "Guess container contents without searching", "IntellectEliteNaturalLearner": "You do not need a manual for item examination", "IntellectLearningSpeed": "Increases item examination speed by [{0:0%}]", - "IntellectLevelingUpDescription": "The Intellect skill is improved by examining previously unidentified items and repairing weapons.", "IntellectRepairPointsCostReduction": "Reduces repair kit point consumption by [{0:0%}]", "IntellectWeaponMaintance": "Increases weapon repair effectiveness by [{0:0%}]", "IntelligenceCenter": "SPRAVODAJSKÉ CENTRUM", @@ -13645,7 +13592,6 @@ "LL": "LL", "LMG": "Ľahký guľomet", "LMGDescription": "Light Machinegun handling skill improves the overall handling, reduces recoil and reload time of LMGs.", - "LMGLevelingUpDescription": "The Light Machine Guns weapon skill is improved by firing and reloading the corresponding weapon type.", "LOAD": "NABIŤ", "LOAD FROM DIRECTORY...": "Načítať z adresára...", "LOAD FROM FILE...": "Načítať zo súboru...", @@ -13667,7 +13613,6 @@ "LastHeroDescriptionShort": "You are on your own", "Launcher": "Rocket Launchers", "LauncherDescription": "Zručnosť narábania s granátometmi", - "LauncherLevelingUpDescription": "The Grenade Launchers weapon skill is improved by firing and reloading the corresponding weapon type.", "LeanLockLeft": "Vykloniť sa vľavo", "LeanLockRight": "Vykloniť sa vpravo", "LeanX negative": "Smoothly lean left", @@ -13704,7 +13649,6 @@ "LightVestRepairDegradationReduction": "Reduces wear amount when using repair kits by [{0:0%}]", "LightVests": "Ľahké vesty", "LightVestsDescription": "Light body armor wearing skill improves mobility and reduces the amount of received penetration and melee damage to your health.", - "LightVestsLevelingUpDescription": "The Light Vests skill is improved by repairing light body armor and ballistic plates with repair kits.", "Lighthouse": "Maják", "Lighthouse_pass": "Path to Lighthouse", "Lighting quality:": "Kvalita osvetlenia:", @@ -13756,7 +13700,6 @@ "MAP": "MAPA", "MASTERING": "SKÚSENOSTI", "MATERIAL": "Materiál", - "MAX AMMO DAMAGE": "Damage", "MAXCOUNT": "MAX POČET", "MAXIMUM THROW DAMAGE": "MAXIMÁLNE POŠKODENIE HODOM", "MED USE TIME": "ČAS POUŽITIA MED.", @@ -13807,7 +13750,6 @@ "MagDrillsInstantCheck": "Magazine is checked instantly when moved to your inventory", "MagDrillsInventoryCheckAccuracy": "Increases the accuracy of magazine check through the context menu by [{0}%]", "MagDrillsInventoryCheckSpeed": "Increases the speed of magazine check through the context menu by [{0}%]", - "MagDrillsLevelingUpDescription": "The Mag Drills skill is improved by loading, unloading, and checking magazines.", "MagDrillsLoadProgression": "Nabíjanie zásobníkov je vykonávané rýchlejšie s každým nabitým nábojom", "MagDrillsLoadSpeed": "Increases ammo loading speed by [{0}%]", "MagDrillsUnloadSpeed": "Increases ammo unloading speed by [{0}%]", @@ -13881,11 +13823,9 @@ "Meds": "Lieky", "Melee": "Chladné zbrane", "MeleeDescription": "Zručnosť narábania s chladnými zbraňami", - "MeleeLevelingUpDescription": "The Melee skill is improved by striking enemies with melee weapons.", "Memory": "Pamäť", "MemoryDescription": "Vytrénované zručnosti vydržia dlhšie pred tým než začnú miznúť", "MemoryEliteMentalNoDegradation": "You don't forget any skills", - "MemoryLevelingUpDescription": "The Memory skill is improved by", "MemoryMentalForget1": "Reduces the rate at which you forget skills by [{0:0%}]", "MemoryMentalForget2": "Reduces rollback of skill levels by [{0:0%}]", "Mental": "Duševné", @@ -13895,7 +13835,6 @@ "MetabolismEliteBuffNoDyhydration": "You don't receive damage from exhaustion and dehydration", "MetabolismEliteNoForget": "You don't forget any Physical skills", "MetabolismEnergyExpenses": "Reduces energy consumption and dehydration rate by [{0:0%}]", - "MetabolismLevelingUpDescription": "The Metabolism skill is improved by consuming energy and water supplies.", "MetabolismMiscDebuffTime": "Reduces negative effect time of stimulants, food, water by [{0:0%}]", "MetabolismPhysicsForget": "Reduces the rate of forgetting Physical skills by [{0:0%}]", "MetabolismPhysicsForget2": "Decreases maximum scale of forgetting Physical skills", @@ -14139,7 +14078,6 @@ "PerceptionDescription": "Mastering perception increases the hearing distance, improves aiming concentration and makes detection of nearby loot easier.", "PerceptionFov": "Increases aiming concentration by [{0:0%}]", "PerceptionHearing": "Increases hearing distance by [{0:0%}]", - "PerceptionLevelingUpDescription": "The Perception skill is improved by finding and picking up any items.", "PerceptionLootDot": "Increases loot detection radius by [{0:0%}]", "PerceptionmEliteNoIdea": "Oznámenie blízkosti koristi", "Perish": "Zahynul", @@ -14148,7 +14086,6 @@ "Pistol": "Pištoľ", "Pistol Mastering": "Pistol", "PistolDescription": "Pistol handling skill improves the overall handling, reduces recoil and reload time of pistols.", - "PistolLevelingUpDescription": "The Pistols weapon skill is improved by firing and reloading the corresponding weapon type.", "PlaceOfFame": "SIEŇ SLÁVY", "PlantLocationDescription": "Priemyselná zóna a zariadenia chemičky č. 16 boli nelegálne prenajaté spoločnosti TerraGroup. Počas Contract Wars sa priestory závodu stali svedkami mnohých tvrdých prestreliek medzi operátormi USEC a BEAR, ktorí potom striedavo ovládali túto priemyselnú časť Tarkova. Nestabilná situácia neskôr zapríčinila, že sa priestory zariadenia stali útočiskom pre zvyšných civilistov, odpadlíkov a všetkých druhov militantov a ozbrojených síl, vrátane rozptýlených jednotiek USEC a BEAR.", "Player": "Hráč", @@ -14220,7 +14157,6 @@ "ProneMovement": "Plazenie", "ProneMovementDescription": "Mastering the prone movement makes it faster and quieter.", "ProneMovementElite": "Increases prone movement speed by [{0:0%}]", - "ProneMovementLevelingUpDescription": "The Prone Movement skill is improved by moving while in a prone position.", "ProneMovementSpeed": "Increases Prone Movement Speed by [(+{0:0%})]", "ProneMovementVolume": "Znižuje hlasitosť plazenia o [(-{0:0%})]", "Protect objective {0:F1}": "Chráňte predmet{0:F1}", @@ -14412,7 +14348,6 @@ "RecoilControlDescription": "Greater control over recoil reduces horizontal spread, making the recoil more predictable.", "RecoilControlElite": "Improves recoil control by [{0:0%}]", "RecoilControlImprove": "Improves recoil control by [{0:0%}]", - "RecoilControlLevelingUpDescription": "The Recoil Control skill is improved by continuous shooting. The higher the base recoil of the weapon, the faster the skill improves.", "RecommendedVRAM:": "Recommended VRAM", "Reconnection is not available at this moment due to testing purposes": "Opätovné pripojenie momentálne nie je dostupné kvôli testovacím účelom", "RedRebel_alp": "Climber's Trail", @@ -14442,7 +14377,6 @@ "Report game bug abuse": "Nahlásiť zneužívanie chyby v hre", "Report offensive nickname": "Nahlásiť urážlivú prezývku", "Report suspected cheat use": "Nahlásiť podozrenie z použitia cheatu", - "Report suspicious profile": "Report suspicious profile", "ReportAbuseBug": "Report bug abuse", "ReportAbuseVoip": "Report VoIP & Radio abuse", "ReportCheater": "Report suspected cheater", @@ -14478,7 +14412,6 @@ "Revolver": "Revolver", "Revolver Mastering": "Revolver", "RevolverDescription": "Zručnosť narábania s revolvermi.", - "RevolverLevelingUpDescription": "The Revolvers weapon skill is improved by firing and reloading the corresponding weapon type.", "RezervBase": "Reserve", "Rig": "Vesta", "Right Arm": "PRAVÁ RUKA", @@ -14528,7 +14461,6 @@ "SKILLS_SPEED_UP": "Zvýšenie rýchlosti levlovania", "SMG": "Samopal", "SMGDescription": "Submachine Gun handling skill improves the overall handling, reduces recoil and reload time of SMGs.", - "SMGLevelingUpDescription": "The Submachine guns weapon skill is improved by firing and reloading the corresponding weapon type.", "SNIPERPHRASE": "OSTREĽOVAČ", "SO": "SO", "SOUND": "ZVUK", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "Veľkosť zliav u {0} sa zvýšila o {1}", "Sandbox": "Ground Zero", "Sandbox_VExit": "Police Cordon V-Ex", - "Sandbox_high": "Ground Zero", "Saturation:": "Sýtosť:", "Savage matchmaker": "Begin a raid as a Scav, a local bandit with a random set of gear. Tarkov is your home, you make the rules!", "SavageBannerDescription": "A raid as a Scav is different from a raid as your main PMC character. Player Scavs will spawn at random locations and times during an ongoing raid. The Scav's health and equipment will also be random. Extracting as a Scav will give you the opportunity to transfer any loot obtained during the raid to your main PMC character's stash. Completing a raid as a Scav will not transfer experience to your PMC character. Dying as a Scav will not affect your progress in any way.", @@ -14585,7 +14516,6 @@ "Search": "Hľadať", "SearchDescription": "The search skill mastering allows you to search bodies and containers faster and more efficiently.", "SearchDouble": "Prehľadávanie dvoch kontajnerov naraz", - "SearchLevelingUpDescription": "The Search skill is improved by searching containers.", "SecondPrimaryWeapon": "Na chrbte", "SecondaryWeapon": "Sekundárna zbraň", "SecuredContainer": "Puzdro", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "Some settings have been changed. Do you wish to save them?", "Settings/Sound/BinauralSound": "Binaural audio", "Settings/Sound/ChatVolume": "Chat volume:", - "Settings/Sound/CommentatorVolume": "Announcer volume:", "Settings/Sound/Device": "Audio device", "Settings/Sound/HideoutVolume": "Hideout volume:", "Settings/Sound/InterfaceVolume": "Interface volume:", "Settings/Sound/MusicOnRaidEnd": "Music on raid end", "Settings/Sound/MusicVolume": "Music volume:", "Settings/Sound/OverallVolume": "Overall volume:", - "Settings/Sound/ReadyToMatchSoundVolume": "Match accept screen volume:", "Settings/UnavailablePressType": "Nedostupné", "SevereMusclePain": "Severe muscle pain", "Shack": "Military Base CP", @@ -14677,7 +14605,6 @@ "Shotgun": "Brokovnica", "Shotgun Mastering": "Shotgun", "ShotgunDescription": "Shotgun handling skill improves the overall handling and recoil of shotguns.", - "ShotgunLevelingUpDescription": "The Shotguns weapon skill is improved by firing and reloading the corresponding weapon type.", "Show icons": "Zobraziť ikony", "Show:": "Zobraziť:", "SightingRange": "SIGHTING RANGE", @@ -14701,7 +14628,6 @@ "Sniper": "Ostreľovačka", "Sniper Roadblock": "Zátarasa ostreľovačov", "SniperDescription": "Sniper rifle handling skill improves the overall handling, reduces recoil and reload time of Sniper rifles.", - "SniperLevelingUpDescription": "The Bolt-action rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "SniperRifle": "Ostreľovačka", "SniperRifle Mastering": "Sniper rifle", "Sniper_exit": "Mira Ave", @@ -14734,8 +14660,6 @@ "StartInGroup": "Together", "StartLookingForGroup": "Začať hľadať tím", "StartNotInGroup": "Separately", - "StashLinesExternalObtain": "Stash upgrade", - "StashLinesExternalObtain/Tooltip": "Stash upgrade is available for purchase on the website", "StatFoundMoneyEUR": "Nájdených EUR", "StatFoundMoneyRUB": "Nájdených RUB", "StatFoundMoneyUSD": "Nájdených USD", @@ -14779,12 +14703,10 @@ "StrengthBuffSprintSpeedInc": "Increases movement and sprint speed by [{0:0%}]", "StrengthBuffThrowDistanceInc": "Increases throw distance by [{0:0%}]", "StrengthDescription": "Zvýšenie sily umožní skákať vyššie, behať rýchlejšie, udierať silnejšie a hádzať ďalej, naviac dokážete uniesť väčšiu váhu.", - "StrengthLevelingUpDescription": "The Strength skill is improved by sprinting with the overweight status effect, throwing grenades, using melee weapons, and by working out in the Hideout gym.", "StressBerserk": "Prístup k módu Berserk", "StressPainChance": "Reduces pain shock chance by [{0:0%}]", "StressResistance": "Odolnosť voči stresu", "StressResistanceDescription": "Stress resistance improves the chances of withstanding injury shock, shaking hands, and tremors.", - "StressResistanceLevelingUpDescription": "The Stress Resistance skill is improved by receiving damage. Having the Pain status effect without using painkillers also improves this skill.", "StressTremor": "Reduces tremor oscillation by [{0:0%}]", "StringSeparator/Or": " or ", "Stun": "Omráčený", @@ -14851,7 +14773,6 @@ "Summary": "Zhrnutie", "Surgery": "Chirurgia", "SurgeryDescription": "Schopnosť vykonať poľnú operáciu môže zachrániť tvoj život v kritickej situácií. Čim lepšie si osvojíš túto zručnosť, tým rýchlejšie a lepšie budeš vykonávať operácie.", - "SurgeryLevelingUpDescription": "The Surgery skill is improved by using surgical kits on injured body parts.", "SurgeryReducePenalty": "Reduces surgery HP penalty by [{0:0%}]", "SurgerySpeed": "Increases surgery speed by [{0:0%}]", "Survival Rate Short": "S/R: {0}%", @@ -14927,7 +14848,6 @@ "Throwing": "Vrhacie zbrane", "ThrowingDescription": "The throwing weapons handling skills allow you to throw grenades farther and with less energy consumption.", "ThrowingEnergyExpenses": "Reduces required throw energy by [{0:0%}]", - "ThrowingLevelingUpDescription": "The Throwables skill is improved by throwing grenades.", "ThrowingStrengthBuff": "Increases throw strength by [{0:0%}]", "ThrowingWeaponsBuffElite": "Throwables don't require energy and fatigue does not affect their accuracy", "Time flow": "Time flow", @@ -14976,11 +14896,11 @@ "Trading/Dialog/AvaliableServices": "Can you help me with something?", "Trading/Dialog/Btr/News": "What's the news?", "Trading/Dialog/Btr/News/Next": "Any more news?", - "Trading/Dialog/Btr/News1": "It's been snowing so hard recently! We haven't had snow like this since the Contract Wars. It's like we don't live up north. Shame it's all melted now.", - "Trading/Dialog/Btr/News2": "You don't go out often, do you? There was a big holiday, the whole town celebrated! Happy holidays, by the way.", - "Trading/Dialog/Btr/News3": "Our kingpins made a big mess, didn't they? Sitting at their spots, not moving, not letting anyone breathe.", - "Trading/Dialog/Btr/News4": "This weirdo who dresses up as Santa Claus year after year, he's talking now! I thought he was mute.", - "Trading/Dialog/Btr/News5": "Folks started picking up figurines of local celebrities all over the city. I wonder if my BTR will turn out to be one or not.", + "Trading/Dialog/Btr/News1": "The biggest news is the BTR! I fixed it all myself. Consider it my own creation. Now I can drive people around. Maybe that'll help me pay for the repairs.", + "Trading/Dialog/Btr/News2": "Someone is organizing gladiatorial fights in Tarkov. They say a lot of people went there of their own free will. The money's pretty good. If you survive, obviously!", + "Trading/Dialog/Btr/News3": "There was an uproar all over Tarkov over some TerraGroup documents. They've even been looking beyond the border, but I kinda don't believe it.", + "Trading/Dialog/Btr/News4": "A while back, most of the AP ammo went missing from the traders' stocks. Fighters like you were running all over Tarkov, looking for other people's ammo stashes. Now everything's fine though.", + "Trading/Dialog/Btr/News5": "Sanitar tried to strengthen his influence in Tarkov recently. He had some kind of an antidote, apparently. Not long before that, a lot of people got poisoned. Coincidence? I think not.", "Trading/Dialog/Btr/NoNews": "I think that's all the news I have.", "Trading/Dialog/Btr/ServicePayoff{0}": "Works for me, yes. (hand over \"{0}\")", "Trading/Dialog/BtrBotCover/Description": "The whole time you're in the BTR, we'll shoot anyone who sticks their noses out. We'll also clear the drop zone and cover you while you get out, but not for long.", @@ -14999,34 +14919,18 @@ "Trading/Dialog/PlayerHandoveItem{0}": "Found this. (hand over \"{0}\")", "Trading/Dialog/PlayerTaxi/Description": "Here's where I can drop you off. Pick one.", "Trading/Dialog/PlayerTaxi/Name": "Take a ride", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Rodina Cinema", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "Driving to the tram. You got the cash, right?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Tram", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "Great, we're on course for city center. You got enough cash?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "City Center", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Collapsed Crane", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Old Scav Checkpoint", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Pinewood Hotel", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "Gonna head to the Scav bunker. Price alright?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Scav Bunker", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "The sunken village, huh? I think we can make it. Here's the price.", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Sunken Village", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "Could drive you to the fork in the road, sure. You got enough cash?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Junction", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "Sawmill? No problem! Here's my pricing.", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Sawmill", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "To the USEC checkpoint, alright. Not driving for free, though.", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "USEC Checkpoint", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "I'm mapping out the route to the Emercom base. You cool price-wise?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "Emercom Base", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "Okie-dokie, old sawmill it is. Here's the price.", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Old Sawmill", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "You want me to drop you off at the depot? Just so you know, you can't get out of there without me. If the price is okay, you keep an eye on the time there, okay?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Train Depot", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina Cinema", + "Trading/Dialog/PlayerTaxi/p2/Description": "Driving to the tram. You got the cash, right?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Great, we're on course for city center. You got enough cash?", + "Trading/Dialog/PlayerTaxi/p3/Name": "City Center", + "Trading/Dialog/PlayerTaxi/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Collapsed Crane", + "Trading/Dialog/PlayerTaxi/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Old Scav Checkpoint", + "Trading/Dialog/PlayerTaxi/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood Hotel", "Trading/Dialog/Quit": "Take your leave", "Trading/Dialog/ServicePayoff{0}": "Alright, this should be enough. (hand over \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Hide history", @@ -15069,7 +14973,6 @@ "TroubleFixingMagElite": "Znižuje pravdepodobnosť porúch spôsobených muníciou o 50% po oprave poruchy rovnakého pôvodu", "TroubleShootingDescription": "Troubleshooting skill facilitates rectification of weapon malfunctions.", "Troubleshooting": "Riešenie problémov", - "TroubleshootingLevelingUpDescription": "The Troubleshooting skill is improved by regularly fixing weapon malfunctions.", "Try_keycard {0}": "Skúste {0}", "Tunnel": "Tunel", "Tunnel_Shared": "Side Tunnel (Co-Op)", @@ -15152,11 +15055,6 @@ "UI/Arena/Place_7": "7th place", "UI/Arena/Place_8": "8th place", "UI/Arena/Place_9": "9th place", - "UI/ArmorPenetration/High": "High", - "UI/ArmorPenetration/Low": "Low", - "UI/ArmorPenetration/Medium": "Medium", - "UI/ArmorPenetration/VeryHigh": "Very high", - "UI/ArmorPenetration/VeryLow": "Very low ", "UI/Charisma/Discount/Insurance": "Insurance cost", "UI/Charisma/Discount/PostRaidHealing": "Healing cost", "UI/Charisma/Discount/ScavCase": "Scav Case cost", @@ -15334,8 +15232,6 @@ "Very good standing": "veľmi dobrá", "Vest": "Vesta", "Village": "Dedina", - "Violation/IntentionalTeamDamage/Warning": "Your account will be blocked if you continue shooting your teammates", - "Violation/IntentionalTeamKill/Warning": "Your account will be blocked if you continue killing your teammates at round start", "Violation/TeamKill/Warning": "Your account will be blocked if you continue killing your teammates", "Vital mod weapon in hands": "Pokiaľ máte zbraň v rukách, nemôžete upravovať jej hlavnú časť.", "Vital parts": "Dôležité časti", @@ -15345,7 +15241,6 @@ "VitalityBuffRegeneration": "Increases health regeneration in combat", "VitalityBuffSurviobilityInc": "Reduces chance of death from losing a limb by [{0:0%}]", "VitalityDescription": "Vitalita zvyšuje šancu na prežitie zásahu tým, že znižuje možnosť krvácania a okamžitej smrti v prípade kritického poškodenia niektorej časti tela.", - "VitalityLevelingUpDescription": "The Vitality skill is improved by sustaining various bleedings and injuries.", "Voice": "Character voice", "Voice 1": "Hlas 1", "Voice 2": "Hlas 2", @@ -15420,7 +15315,6 @@ "WeaponSwapBuff": "Increases weapon switching speed by [{0:0%}]", "WeaponTreatment": "Údržba zbrane", "WeaponTreatmentDescription": "Weapon service and maintenance skills.", - "WeaponTreatmentLevelingUpDescription": "The Weapon Maintenance skill is improved by repairing weapons with repair kits.", "WearAmountRepairGunsReducePerLevel": "Reduces wear amount when using repair kits", "WearChanceRepairGunsReduceEliteLevel": "Reduces wear chance when using repair kits by 50%", "Weather conditions": "Weather conditions", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "Win rate, %", "arena/career/teamFightStats/wins": "Victories", "arena/career/teamFightStats/winsWithFavPreset": "Matches won with favorite preset", - "arena/customGames/create/samePresets": "Duplicate presets:", - "arena/customGames/create/setSamePresets": "Allow duplicate presets", "arena/customGames/invite/message{0}": "CUSTOM GAME INVITE FROM {0}", "arena/customGames/notify/GameRemoved": "Room has been disbanded", "arena/customgames/errors/notification/gamealreadystarted": "Game has already started", @@ -15708,7 +15600,6 @@ "arena/tooltip/OverallMatches": "Total number of ranked and unranked matches played.", "arena/tooltip/Presets": "Presets", "arena/tooltip/countGlp": "Your total ARP (Arena Reputation Points) rating. This is a statistic that determines your rating obtained in ranked game modes. It is used to match with players of equal skill, as well as to unlock new ranks and presets.", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", "arena/tooltip/friends": "Friends", "arena/tooltip/kdRatio": "Your overall Kill to Death ratio, calculated from all kills and deaths in ranked and unranked matches. Only the player kills are counted.", "arena/tooltip/leftGlp": "Amount of ARP rating required to reach the next rank.", @@ -15716,7 +15607,6 @@ "arena/tooltip/moneyRubles": "Roubles. Used to buy presets and are earned for victories in the Arena.", "arena/tooltip/ratingPlace": "Your position in the leaderboard.", "arena/tooltip/settings": "Settings", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", "arena/tooltip/sourcesGlp": "Earned ARP sources:", "arena/tooltip/winMatches": "Total number of wins in ranked and unranked matches.", "arena/tooltip/winRate": "Your overall win ratio, calculated from all wins and losses in ranked and unranked matches.", @@ -16330,9 +16220,9 @@ "rank_08": "Professional", "rank_09": "Elite", "rank_10": "Whisper of Death", - "rank_11": "Flame Warrior", + "rank_11": "Flame warrior", "rank_12": "Big Boss", - "rank_13": "Legend of the Arena", + "rank_13": "The Legend of the Arena", "ratingExpPos": "EXP hodnosť", "readytoinstallupgrade": "Upgrade kompletný", "receive": "PRIJAŤ", @@ -16450,8 +16340,6 @@ "{0} GroupPlayerBlocking/MatchLeave": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for quitting a game", "{0} GroupPlayerBlocking/NotAcceptedMatch": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for failing to accept a match", "{0} GroupPlayerBlocking/TeamKill": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for repeated teamkills", - "{0} Violation/IntentionalTeamDamage/Blocking": "Player {0} has been removed from the match and received a penalty for shooting teammates", - "{0} Violation/IntentionalTeamKill/Blocking": "Player {0} has been removed from the match and received a penalty for teamkilling at round start", "{0} Violation/TeamKill/Blocking": "Player {0} has been removed from the match and received a penalty for teamkilling", "{0} added you to the ignore list": "{0} vás pridal do zoznamu ignorovaných", "{0} ask to cooperate": "{0} Vás zdraví", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "Ground Zero", "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "United Security", "5464e0404bdc2d2a708b4567 Description": "The USEC private military company was established in 1999 after the merger of two companies: KerniSEC and Safe Sea. In 2004, an agent of TerraGroup International Holding made contact with USEC, which then consecutively made USEC, essentially, a private army of the holding, with offices all around the world, and over 7500 staff strong.", "5464e0454bdc2d06708b4567 Name": "BEAR", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Lighthouse ", "63aec6f256503c322a190374": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Streets of Tarkov", "64b694c8a857ea477002a408": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Interchange", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Streets of Tarkov", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "Preži a opusti oblasť rezervácia so stavom \"Prežil\"", "629f08e7d285f377953b2af1": "Preži a opusti oblasť maják so stavom \"Prežil\"", "63aec66556503c322a190372": "Survive and extract from Streets of Tarkov with the \"Survived\" exit status", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Dosiahni 4. úroveň reputácie s terapeutkou", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -20314,8 +20195,6 @@ "60ec2b04bc9a8b34cd453b81": "You must not die or leave the raid while the task is active (Status: KIA, Left the Action, MIA, Ran Through)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "Survive and extract from Streets of Tarkov through Primorsky Ave Taxi V-Ex", "6397a6942e519e69d2139b25": "Locate and mark the first Patrol-A armored vehicle with an MS2000 Marker on Streets of Tarkov", "6397a7ce706b793c7d6094c9": "Locate and mark the second Patrol-A armored vehicle with an MS2000 Marker on Streets of Tarkov", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "I managed to contact the drivers. This wasn't easy, but I did unearth something interesting.", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "Eliminate Scavs while using melee weapons on Interchange", "63a9b5b2813bba58a50c9eeb": "Eliminate Scavs while using melee weapons on Customs", "63a9b5f064b9631d9178276b": "Eliminate Scavs while using melee weapons on Reserve", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21691,8 +21568,8 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "One less scumbag to worry about. You did well, kid.", "64e7ba17220ee966bf425ecb": "Locate and eliminate Kaban", "64e7ba4a6393886f74119f3d": "Eliminate Kaban's guards at the car dealership on Streets of Tarkov", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", diff --git a/project/assets/database/locales/global/tu.json b/project/assets/database/locales/global/tu.json index 3cf3cd0e..3ab1d0c4 100644 --- a/project/assets/database/locales/global/tu.json +++ b/project/assets/database/locales/global/tu.json @@ -5212,10 +5212,10 @@ "5cc9c20cd7f00c001336c65d Description": "NcSTAR tarafından üretilen mavi nokta ile Kompakt taktik Lazer Nişan modülü.", "5cd945d71388ce000a659dfb Name": "BEAR temel üst giyim", "5cd945d71388ce000a659dfb ShortName": "", - "5cd945d71388ce000a659dfb Description": "", + "5cd945d71388ce000a659dfb Description": "Combat shirt", "5cd946231388ce000d572fe3 Name": "BEAR temel alt giyim", "5cd946231388ce000d572fe3 ShortName": "", - "5cd946231388ce000d572fe3 Description": "", + "5cd946231388ce000d572fe3 Description": "Combat pants", "5cda9bcfd7f00c0c0b53e900 Name": "ASh-12 Dikey tabanca kabzası", "5cda9bcfd7f00c0c0b53e900 ShortName": "ASh-12", "5cda9bcfd7f00c0c0b53e900 Description": "ASh-12 dikey tabanca kabzası.", @@ -5251,10 +5251,10 @@ "5cde95ef7d6c8b04713c4f2d Description": "", "5cde9e957d6c8b0474535da7 Name": "USEC temel alt giyim", "5cde9e957d6c8b0474535da7 ShortName": "", - "5cde9e957d6c8b0474535da7 Description": "", + "5cde9e957d6c8b0474535da7 Description": "Combat pants", "5cde9ec17d6c8b04723cf479 Name": "USEC temel üst giyim", "5cde9ec17d6c8b04723cf479 ShortName": "", - "5cde9ec17d6c8b04723cf479 Description": "", + "5cde9ec17d6c8b04723cf479 Description": "Combat shirt", "5cdea20c7d6c8b0474535dab Name": "Worn jeans", "5cdea20c7d6c8b0474535dab ShortName": "", "5cdea20c7d6c8b0474535dab Description": "", @@ -5269,10 +5269,10 @@ "5cdea3197d6c8b20b577f017 Description": "", "5cdea3f87d6c8b647a3769b2 Name": "Abibas alt", "5cdea3f87d6c8b647a3769b2 ShortName": "", - "5cdea3f87d6c8b647a3769b2 Description": "", + "5cdea3f87d6c8b647a3769b2 Description": "Sportswear", "5cdea42e7d6c8b0474535dad Name": "Abibas Eşofman", "5cdea42e7d6c8b0474535dad ShortName": "", - "5cdea42e7d6c8b0474535dad Description": "", + "5cdea42e7d6c8b0474535dad Description": "Sportswear", "5cdeac22d7f00c000f26168f Name": "Magpul PRO 700 silah gövdesi", "5cdeac22d7f00c000f26168f ShortName": "PRO 700", "5cdeac22d7f00c000f26168f Description": "PRO 700, Magpul tarafından üretilen hafif ağırlıkta ergonomik Remington Model 700 için üretilen bir silah gövdesidir.", @@ -5662,64 +5662,64 @@ "5d1f593286f7743014162044 Description": "", "5d1f609d86f7744bca3f1689 Name": "BEAR Siyah Vaşak", "5d1f609d86f7744bca3f1689 ShortName": "", - "5d1f609d86f7744bca3f1689 Description": "", + "5d1f609d86f7744bca3f1689 Description": "Tactical jacket", "5d1f60ae86f7744bcc04998b Name": "BEAR müteahhit tişörtü", "5d1f60ae86f7744bcc04998b ShortName": "", - "5d1f60ae86f7744bcc04998b Description": "", + "5d1f60ae86f7744bcc04998b Description": "T-shirt", "5d1f60b486f7744bcb0adfa8 Name": "FSB Hızlı Tepki", "5d1f60b486f7744bcb0adfa8 ShortName": "", - "5d1f60b486f7744bcb0adfa8 Description": "", + "5d1f60b486f7744bcb0adfa8 Description": "Tactical shirt", "5d1f60ca86f7743014163025 Name": "BEAR Ghost Marksman (Hayalet Nişancı)", "5d1f60ca86f7743014163025 ShortName": "", - "5d1f60ca86f7743014163025 Description": "", + "5d1f60ca86f7743014163025 Description": "Tactical jacket", "5d1f60f086f7744bce0ef704 Name": "BEAR Summer Field", "5d1f60f086f7744bce0ef704 ShortName": "", - "5d1f60f086f7744bce0ef704 Description": "", + "5d1f60f086f7744bce0ef704 Description": "Field jacket", "5d1f622186f7744bca3f168c Name": "USEC Aggressor TAC", "5d1f622186f7744bca3f168c ShortName": "", - "5d1f622186f7744bca3f168c Description": "", + "5d1f622186f7744bca3f168c Description": "Tactical jacket", "5d1f622e86f7744bcc04998c Name": "USEC Softshell Flexion", "5d1f622e86f7744bcc04998c ShortName": "", - "5d1f622e86f7744bcc04998c Description": "", + "5d1f622e86f7744bcc04998c Description": "Tactical jacket", "5d1f623386f7744bcd135833 Name": "USEC orman kamuflajı", "5d1f623386f7744bcd135833 ShortName": "", - "5d1f623386f7744bcd135833 Description": "", + "5d1f623386f7744bcd135833 Description": "Combat shirt", "5d1f623886f7743014163027 Name": "USEC PCS Multicam", "5d1f623886f7743014163027 ShortName": "", - "5d1f623886f7743014163027 Description": "", + "5d1f623886f7743014163027 Description": "Combat shirt", "5d1f623e86f7744bce0ef705 Name": "USEC PCU Ironsight", "5d1f623e86f7744bce0ef705 ShortName": "", - "5d1f623e86f7744bce0ef705 Description": "", + "5d1f623e86f7744bce0ef705 Description": "Tactical jacket", "5d1f646286f7744bce0ef70a Name": "FSB Urban Tact", "5d1f646286f7744bce0ef70a ShortName": "", - "5d1f646286f7744bce0ef70a Description": "", + "5d1f646286f7744bce0ef70a Description": "Tactical pants", "5d1f646c86f7743f8362cf3f Name": "BEAR Gorka Kobra", "5d1f646c86f7743f8362cf3f ShortName": "", - "5d1f646c86f7743f8362cf3f Description": "", + "5d1f646c86f7743f8362cf3f Description": "Tactical pants", "5d1f647186f7744bce0ef70c Name": "BEAR Gorka SSO", "5d1f647186f7744bce0ef70c ShortName": "", - "5d1f647186f7744bce0ef70c Description": "", + "5d1f647186f7744bce0ef70c Description": "Tactical pants", "5d1f647586f7744bcb0adfb0 Name": "BEAR Forvet Casus Operasyonları", "5d1f647586f7744bcb0adfb0 ShortName": "", - "5d1f647586f7744bcb0adfb0 Description": "", + "5d1f647586f7744bcb0adfb0 Description": "Combat pants", "5d1f647a86f7744bca3f1691 Name": "BEAR Summer Field", "5d1f647a86f7744bca3f1691 ShortName": "", - "5d1f647a86f7744bca3f1691 Description": "", + "5d1f647a86f7744bca3f1691 Description": "Field pants", "5d1f647f86f7744bcc04998f Name": "USEC Gen.2 Khyber", "5d1f647f86f7744bcc04998f ShortName": "", - "5d1f647f86f7744bcc04998f Description": "", + "5d1f647f86f7744bcc04998f Description": "Tactical pants", "5d1f648a86f7744bcd135841 Name": "USEC Woodland Infiltrator", "5d1f648a86f7744bcd135841 ShortName": "", - "5d1f648a86f7744bcd135841 Description": "", + "5d1f648a86f7744bcd135841 Description": "Combat pants", "5d1f648e86f774301416302b Name": "USEC Ranger Jeans", "5d1f648e86f774301416302b ShortName": "", - "5d1f648e86f774301416302b Description": "", + "5d1f648e86f774301416302b Description": "Jeans", "5d1f649286f7743f8362cf40 Name": "USEC Taclife Terrain", "5d1f649286f7743f8362cf40 ShortName": "", - "5d1f649286f7743f8362cf40 Description": "", + "5d1f649286f7743f8362cf40 Description": "Tactical pants", "5d1f649886f7744bce0ef70d Name": "USEC TACRES", "5d1f649886f7744bce0ef70d ShortName": "", - "5d1f649886f7744bce0ef70d Description": "", + "5d1f649886f7744bce0ef70d Description": "Tactical pants", "5d1f819086f7744b355c219b Name": "Daniel Defence Wave Kompansatör 7.62x51", "5d1f819086f7744b355c219b ShortName": "Wave K", "5d1f819086f7744b355c219b Description": "Daniel Defence Wave oldukça etkili bir namlu ucu frenidir. Ayrıca QD Wave susturucu takmak için bir platform görevi görür.", @@ -5905,7 +5905,7 @@ "5d4da0cb86f77450fe0a6629 Description": "", "5d4da10986f77450fc65edc3 Name": "USEC Komando", "5d4da10986f77450fc65edc3 ShortName": "", - "5d4da10986f77450fc65edc3 Description": "", + "5d4da10986f77450fc65edc3 Description": "Sweater", "5d4da36686f77421522b35ee Name": "usec_upper_commando", "5d4da36686f77421522b35ee ShortName": "", "5d4da36686f77421522b35ee Description": "", @@ -6304,16 +6304,16 @@ "5df8e4080b92095fd441e594 Description": "Knight's Armament şirketinin ürettiği SR-25 tüfeği için üst gövde", "5df8e5c886f7744a122d6834 Name": "BEAR Zaslon", "5df8e5c886f7744a122d6834 ShortName": "", - "5df8e5c886f7744a122d6834 Description": "", + "5df8e5c886f7744a122d6834 Description": "Combat shirt", "5df8e65d86f77412672a1e46 Name": "Meteor", "5df8e65d86f77412672a1e46 ShortName": "", "5df8e65d86f77412672a1e46 Description": "", "5df8e72186f7741263108806 Name": "BEAR Oldschool", "5df8e72186f7741263108806 ShortName": "", - "5df8e72186f7741263108806 Description": "", + "5df8e72186f7741263108806 Description": "Field pants", "5df8e75786f7745c67099df4 Name": "USEC TIER2", "5df8e75786f7745c67099df4 ShortName": "", - "5df8e75786f7745c67099df4 Description": "", + "5df8e75786f7745c67099df4 Description": "Tactical pants", "5df8e79286f7744a122d6836 Name": "Sklon", "5df8e79286f7744a122d6836 ShortName": "", "5df8e79286f7744a122d6836 Description": "", @@ -6508,7 +6508,7 @@ "5e4ac41886f77406a511c9a8 Description": "Rusya Federsayonu özel kuvvetlerinin kullanımı için Crye Precision tarafından tasarlanıp, Ars Arms tarafından uyarlanmış CPC vücut zırhı. Bu kullanıcı isteğine göre şekillendirilebilen zırh, vucüda tamamiyle oturan polimer korseyi baz alır. Bu da ağırlığın eşit olarak dağıtılmasına yardımcı olurken, hareket halinde silah tepmesini önler. Zırh unsurları ve cepleri hücum yapılandırmasına göre yapılmıştır.", "5e4bb08f86f774069619fbbc Name": "BEAR Telnik", "5e4bb08f86f774069619fbbc ShortName": "", - "5e4bb08f86f774069619fbbc Description": "", + "5e4bb08f86f774069619fbbc Description": "Shirt", "5e4bb31586f7740695730568 Name": "bear_upper_telnik", "5e4bb31586f7740695730568 ShortName": "", "5e4bb31586f7740695730568 Description": "", @@ -6523,13 +6523,13 @@ "5e4bb3b586f77406812bd579 Description": "", "5e4bb5e486f77406796b7b9e Name": "USEC TIER2", "5e4bb5e486f77406796b7b9e ShortName": "", - "5e4bb5e486f77406796b7b9e Description": "", + "5e4bb5e486f77406796b7b9e Description": "Tactical shirt", "5e4bb6d786f77406975c9364 Name": "BEAR TIGR", "5e4bb6d786f77406975c9364 ShortName": "", - "5e4bb6d786f77406975c9364 Description": "", + "5e4bb6d786f77406975c9364 Description": "Combat pants", "5e4bb6fc86f77406801a74f7 Name": "USEC Komando", "5e4bb6fc86f77406801a74f7 ShortName": "", - "5e4bb6fc86f77406801a74f7 Description": "", + "5e4bb6fc86f77406801a74f7 Description": "Field pants", "5e4bb8e686f77406796b7ba2 Name": "Rusya ceketi", "5e4bb8e686f77406796b7ba2 ShortName": "", "5e4bb8e686f77406796b7ba2 Description": "", @@ -6703,16 +6703,16 @@ "5e9dcadd86f7743e20652f23 Description": "", "5e9dcb8386f774054b6f79a9 Name": "BEAR TIGR", "5e9dcb8386f774054b6f79a9 ShortName": "", - "5e9dcb8386f774054b6f79a9 Description": "", + "5e9dcb8386f774054b6f79a9 Description": "Combat shirt", "5e9dcb9c86f7743e20652f25 Name": "USEC Urban Responder", "5e9dcb9c86f7743e20652f25 ShortName": "", - "5e9dcb9c86f7743e20652f25 Description": "", + "5e9dcb9c86f7743e20652f25 Description": "Hoodie", "5e9dcc8a86f77434375990e2 Name": "BEAR Zaslon", "5e9dcc8a86f77434375990e2 ShortName": "", - "5e9dcc8a86f77434375990e2 Description": "", + "5e9dcc8a86f77434375990e2 Description": "Combat pants", "5e9dccd686f774343b592592 Name": "USEC Deep Recon", "5e9dccd686f774343b592592 ShortName": "", - "5e9dccd686f774343b592592 Description": "", + "5e9dccd686f774343b592592 Description": "Tactical pants", "5e9dcf5986f7746c417435b3 Name": "LBT-8005A Day Pack sırt çantası", "5e9dcf5986f7746c417435b3 ShortName": "Day Pack", "5e9dcf5986f7746c417435b3 Description": "14-litrelik güvenilir multicam siyah kamuflajlı sırt çantası", @@ -6985,16 +6985,16 @@ "5f5f41f56760b4138443b352 Description": "Doğrudan eylem sabit göğüs teçhizatı, ihtiyacınız olan bütün cepleri içerir.", "5f5f45df0bc58666c37e7832 Name": "BEAR G99", "5f5f45df0bc58666c37e7832 ShortName": "", - "5f5f45df0bc58666c37e7832 Description": "", + "5f5f45df0bc58666c37e7832 Description": "Combat shirt", "5f5f46086760b4138443b358 Name": "USEC Gece Devriyesi", "5f5f46086760b4138443b358 ShortName": "", - "5f5f46086760b4138443b358 Description": "", + "5f5f46086760b4138443b358 Description": "Tactical jacket", "5f5f46fa5021ce62144be7bd Name": "BEAR G99", "5f5f46fa5021ce62144be7bd ShortName": "", - "5f5f46fa5021ce62144be7bd Description": "", + "5f5f46fa5021ce62144be7bd Description": "Tactical pants", "5f5f471bdf4f3100376a815e Name": "USEC Urban Responder", "5f5f471bdf4f3100376a815e ShortName": "", - "5f5f471bdf4f3100376a815e Description": "", + "5f5f471bdf4f3100376a815e Description": "Tactical pants", "5f5f64f947344c2e4f6c431e Name": "Scav Çizmesi", "5f5f64f947344c2e4f6c431e ShortName": "", "5f5f64f947344c2e4f6c431e Description": "", @@ -7312,7 +7312,7 @@ "5fce3e965a9f8c40685693bc Description": "", "5fce42bc187e6a2b994b8247 Name": "BEAR SRVV", "5fce42bc187e6a2b994b8247 ShortName": "", - "5fce42bc187e6a2b994b8247 Description": "", + "5fce42bc187e6a2b994b8247 Description": "Combat pants", "5fcf63da5c287f01f22bf245 Name": "usec_upper_tier3", "5fcf63da5c287f01f22bf245 ShortName": "", "5fcf63da5c287f01f22bf245 Description": "", @@ -7321,22 +7321,22 @@ "5fcf940bce1ba36a513bb9cc Description": "", "5fcf9477fe40296c1d5fd7c8 Name": "USEC TIER3", "5fcf9477fe40296c1d5fd7c8 ShortName": "", - "5fcf9477fe40296c1d5fd7c8 Description": "", + "5fcf9477fe40296c1d5fd7c8 Description": "Combat pants", "5fd20ff893a8961fc660a954 Name": ".300 AAC Blackout AP", "5fd20ff893a8961fc660a954 ShortName": "AP", "5fd20ff893a8961fc660a954 Description": ".300 AAC Blackout zırh delici mermisi", "5fd3e77be504291efd0040ad Name": "USEC VEKTOR", "5fd3e77be504291efd0040ad ShortName": "", - "5fd3e77be504291efd0040ad Description": "", + "5fd3e77be504291efd0040ad Description": "Tactical jacket", "5fd3e7e2dd870108a754b230 Name": "BEAR Boreas", "5fd3e7e2dd870108a754b230 ShortName": "", - "5fd3e7e2dd870108a754b230 Description": "", + "5fd3e7e2dd870108a754b230 Description": "Tactical jacket", "5fd3e8e5bdd50d684f73a51d Name": "BEAR Grizzly", "5fd3e8e5bdd50d684f73a51d ShortName": "", - "5fd3e8e5bdd50d684f73a51d Description": "", + "5fd3e8e5bdd50d684f73a51d Description": "Sportswear", "5fd3e978e504291efd0040b3 Name": "USEC Uyarlanabilir Savaş", "5fd3e978e504291efd0040b3 ShortName": "", - "5fd3e978e504291efd0040b3 Description": "", + "5fd3e978e504291efd0040b3 Description": "Combat shirt", "5fd3e9f71b735718c25cd9f8 Name": "usec_upper_acu", "5fd3e9f71b735718c25cd9f8 ShortName": "", "5fd3e9f71b735718c25cd9f8 Description": "", @@ -7519,10 +7519,10 @@ "603648ff5a45383c122086ac Description": "Çıkarılamayan poşetlere sahip basit naylon yatak sistemi. Kolaylık pahasına oldukça etkileyici miktarda cephane taşımanıza izin verir.", "6038b228af2e28262649af14 Name": "BEAR Rash Guard", "6038b228af2e28262649af14 ShortName": "", - "6038b228af2e28262649af14 Description": "", + "6038b228af2e28262649af14 Description": "Sportswear", "6038b24cd6505c1ec64a44a0 Name": "USEC Kumtaşı", "6038b24cd6505c1ec64a44a0 ShortName": "", - "6038b24cd6505c1ec64a44a0 Description": "", + "6038b24cd6505c1ec64a44a0 Description": "Tactical jacket", "6038b4b292ec1c3103795a0b Name": "LBT 6094A Slick Plaka Taşıyıcı (bronz)", "6038b4b292ec1c3103795a0b ShortName": "Slick", "6038b4b292ec1c3103795a0b Description": "LBT şirketi tarafından basit plaka taşıyıcı. Göğüs teçhizatı ile kullanılmak üzere tasarlanmış en minimalist tasarım.", @@ -7543,10 +7543,10 @@ "60391b0fb847c71012789415 Description": "TP-200, sismik araştırmalar, sondaj patlayıcı yüklerini başlatırken, büyük boyutlu öğeleri ezerken ve özel patlatma işlemleri yaparken ara patlatıcıların üretiminde şarj olarak kullanılmak üzere tasarlanmıştır.", "603d01a1b41c9b37c6592047 Name": "BEAR VOIN", "603d01a1b41c9b37c6592047 ShortName": "", - "603d01a1b41c9b37c6592047 Description": "", + "603d01a1b41c9b37c6592047 Description": "Combat pants", "603d01b9d10cbf667352dd4a Name": "USEC bilge savaşçısı", "603d01b9d10cbf667352dd4a ShortName": "", - "603d01b9d10cbf667352dd4a Description": "", + "603d01b9d10cbf667352dd4a Description": "Field pants", "6040dd4ddcf9592f401632d2 Name": "Azimut SS Jhuk Göğüs Kemeri (SURPAT)", "6040dd4ddcf9592f401632d2 ShortName": "Azimut", "6040dd4ddcf9592f401632d2 Description": "Çıkarılamayan poşetlere sahip basit naylon yatak sistemi. Kolaylık pahasına oldukça etkileyici miktarda cephane taşımanıza izin verir.", @@ -8239,10 +8239,10 @@ "619b69037b9de8162902673e Description": "Hem sivil pazar hem de askeri kullanım için tasarlanmıştır. CQR stoğu, AK/AKM katlanmayan stoğun standart eki yerine kolayca monte edilebilir. Hera Arms tarafından üretilmiştir.", "619b99ad604fcc392676806c Name": "BEAR Keşifçi", "619b99ad604fcc392676806c ShortName": "", - "619b99ad604fcc392676806c Description": "", + "619b99ad604fcc392676806c Description": "Combat pants", "619b99d2d8ed4b751d2606c1 Name": "USEC K4", "619b99d2d8ed4b751d2606c1 ShortName": "", - "619b99d2d8ed4b751d2606c1 Description": "", + "619b99d2d8ed4b751d2606c1 Description": "Tactical pants", "619bc61e86e01e16f839a999 Name": "\"Alfa\" kol bandı", "619bc61e86e01e16f839a999 ShortName": "Alfa", "619bc61e86e01e16f839a999 Description": "Alfa zamanlarından beri burada olan gaziler için bir kol bandı.", @@ -8275,10 +8275,10 @@ "619bdfd4c9546643a67df6fa Description": "Zorlu USEC operatörleri için bir kol bandı.", "619bf75264927e572d0d5853 Name": "BEAR Sumrak", "619bf75264927e572d0d5853 ShortName": "", - "619bf75264927e572d0d5853 Description": "", + "619bf75264927e572d0d5853 Description": "Tactical jacket", "619bf78a64927e572d0d5855 Name": "USEC Serum", "619bf78a64927e572d0d5855 ShortName": "", - "619bf78a64927e572d0d5855 Description": "", + "619bf78a64927e572d0d5855 Description": "Tactical jacket", "619cbf476b8a1b37a54eebf8 Name": "Askeri oluklu boru", "619cbf476b8a1b37a54eebf8 ShortName": "MTube", "619cbf476b8a1b37a54eebf8 Description": "Askeri teçhizatın havalandırma sistemleri veya hava temizleme sistemleri için askeri üretim oluklu boru.", @@ -8887,16 +8887,16 @@ "6295e944e9de5e7b3751c4da Description": "", "6295eb15869a02221651d318 Name": "USEC Bukalemun", "6295eb15869a02221651d318 ShortName": "", - "6295eb15869a02221651d318 Description": "", + "6295eb15869a02221651d318 Description": "Tactical jacket", "6295eeed13119346e55d4523 Name": "BEAR VOLK", "6295eeed13119346e55d4523 ShortName": "", - "6295eeed13119346e55d4523 Description": "", + "6295eeed13119346e55d4523 Description": "Tactical shirt", "6295ef7d1f798f3be747969e Name": "BEAR Coyote", "6295ef7d1f798f3be747969e ShortName": "", - "6295ef7d1f798f3be747969e Description": "", + "6295ef7d1f798f3be747969e Description": "Tactical pants", "629613ad1f798f3be7479951 Name": "USEC DesOps", "629613ad1f798f3be7479951 ShortName": "", - "629613ad1f798f3be7479951 Description": "", + "629613ad1f798f3be7479951 Description": "Tactical pants", "62963c18dbc8ab5f0d382d0b Name": "Ölüm Şövalyesi maskesi", "62963c18dbc8ab5f0d382d0b ShortName": "Ölüm Şövalyesi", "62963c18dbc8ab5f0d382d0b Description": "Tarkov'dan kaçmamaya, kendi düzenlerini yaratmaya karar veren eski USEC operatörleri olan Goons ekibinin komutanının benzersiz bir maskesi.", @@ -10249,7 +10249,7 @@ "64ef3f3739e45b527a7c40ae Description": "", "64ef3fa81a5f313cb144bf89 Name": "USEC Predator", "64ef3fa81a5f313cb144bf89 ShortName": "", - "64ef3fa81a5f313cb144bf89 Description": "", + "64ef3fa81a5f313cb144bf89 Description": "Combat shirt", "64f07f7726cfa02c506f8ac0 Name": "Journal", "64f07f7726cfa02c506f8ac0 ShortName": "Journal", "64f07f7726cfa02c506f8ac0 Description": "Sovyet olan her şeyi gerçekten seven birinin günlüğü.", @@ -11920,7 +11920,7 @@ "657f8b94f92cd718b70154ff Description": "", "657f8e6ccbb8470421442525 Name": "USEC Defender", "657f8e6ccbb8470421442525 ShortName": "", - "657f8e6ccbb8470421442525 Description": "", + "657f8e6ccbb8470421442525 Description": "Tactical pants", "657f8e9824d2053bb360b51d Name": "USEC BOSS Delta", "657f8e9824d2053bb360b51d ShortName": "USEC BOSS Delta", "657f8e9824d2053bb360b51d Description": "USEC BOSS Delta", @@ -11932,10 +11932,10 @@ "657f8f10f4c82973640b2350 Description": "", "657f90b67ba4217c5e65b6e7 Name": "BEAR URON", "657f90b67ba4217c5e65b6e7 ShortName": "", - "657f90b67ba4217c5e65b6e7 Description": "", + "657f90b67ba4217c5e65b6e7 Description": "Combat pants", "657f90e5a9176671262fe34e Name": "BEAR OPS MGS", "657f90e5a9176671262fe34e ShortName": "", - "657f90e5a9176671262fe34e Description": "", + "657f90e5a9176671262fe34e Description": "Tactical jacket", "657f925dada5fadd1f07a57a Name": "Hybrid composite materials", "657f925dada5fadd1f07a57a ShortName": "", "657f925dada5fadd1f07a57a Description": "", @@ -12038,21 +12038,6 @@ "658420d8085fea07e674cdb6 Name": "Dead civilian", "658420d8085fea07e674cdb6 ShortName": "", "658420d8085fea07e674cdb6 Description": "", - "65ca457b4aafb5d7fc0dcb5d Name": "United Cutlery M48 Tactical Kukri", - "65ca457b4aafb5d7fc0dcb5d ShortName": "M48 Kukri", - "65ca457b4aafb5d7fc0dcb5d Description": "A 48 series tactical kukri manufactured by United Cutlery. Features a stainless steel blade and rubberized handle. A great addition to every survivalist's arsenal!", - "65ddcc9cfa85b9f17d0dfb07 Name": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 ShortName": "UntitledCommonItem", - "65ddcc9cfa85b9f17d0dfb07 Description": "UntitledCommonItem", - "66015072e9f84d5680039678 Name": "20x1mm toy gun", - "66015072e9f84d5680039678 ShortName": "Blicky", - "66015072e9f84d5680039678 Description": "A plastic semi-automatic toy gun firing 20x1mm disks. Designed for children over 5 years old. Manufactured in the USSR.", - "6601546f86889319850bd566 Name": "20x1mm disk", - "6601546f86889319850bd566 ShortName": "Disk", - "6601546f86889319850bd566 Description": "A toy ammunition in the form of a 20x1mm disk for the Soviet plastic toy gun. Manufactured in the USSR.", - "66015dc4aaad2f54cb04c56a Name": "Toy gun 20x1mm 20-round magazine", - "66015dc4aaad2f54cb04c56a ShortName": "Drum", - "66015dc4aaad2f54cb04c56a Description": "A standard disk magazine for the Soviet toy gun. Not recommended to load it with coins. Manufactured in the USSR.", " V-ex_light": "Askeri üs Araç çıkışına giden yol", " Voip/DisabledForOffline": "VOIP çevrimdışı modda kullanılamaz", " kg": "Kg", @@ -12102,8 +12087,6 @@ "AI amount": "Bot Miktarı", "AI difficulty": "Bot Zorluğu", "AMD FSR 2.1:": "AMD FSR 2.2:", - "AMMO PENETRATION POWER": "Penetration", - "AMMO PROJECTILE COUNT": "Projectile count", "ARMOR CLASS": "KORUMA SEVİYESİ", "ARMOR POINTS": "ZIRH DAYANIKLILIĞI", "ARMOR TYPE": "ZIRH TÜRÜ", @@ -12146,12 +12129,11 @@ "AheadOfTimeEnding": "TAMAMLANMA SÜRESİ", "Aim": "Nişan Alma", "AimDrills": "Atış Talimleri", - "AimDrillsLevelingUpDescription": "The Aim Drills skill is improved by hitting enemies while aiming.", "AimMaster": "Nişan Ustası", "AimMasterDescription": "Nişan almada uzmanlaşmak, nişan alma süresini ve namlunun hemen ardından sallanmasını azaltır.", - "AimMasterElite": "Nişan alma hızını [{0:0.#%}] artırır", - "AimMasterSpeed": "Nişan alma hızını [{0:0.#%}] artırır", - "AimMasterWiggle": "NişanSallanması geliştirme ihtimali [{0:0.#%}]", + "AimMasterElite": "Nişan alma hızını [{0:0%}] artırır", + "AimMasterSpeed": "Nişan alma hızını [{0:0%}] artırır", + "AimMasterWiggle": "NişanSallanması geliştirme ihtimali [(+{0:0%})]", "Aiming deadzone:": "Nişan alma kör noktası:", "AirFilteringUnit": "HAVA FİLTRELEME ÜNİTESİ", "AirplaneDelayMessage": "Varış için bekleyin! Hava sahası tıkalı", @@ -12241,12 +12223,9 @@ "Arena/CustomGames/toggle/tournament": "Turnuva", "Arena/EndMatchNotification": "Sen uzaktayken maç sona erdi", "Arena/Matching/CustomGames": "Özel oyunlar", - "Arena/Notification/Selection/Blocked": "Preset purchase blocked", "Arena/OnCancelMatch": "Oyun yükleme problemleri sebebiyle iptal edildi", "Arena/OnCancelMatch/Group": "Grup üyesinin yükleme sorunları yaşaması nedeniyle eşleştirme iptal edildi", "Arena/OnCancelMatch/NoServer": "Kullanılabilir bir sunucu bulunamadı. Lütfen daha sonra tekrar deneyin.", - "Arena/Popups/TwitchDropsHeader": "Redeem gift", - "Arena/Preset/Tooltip/Tab/6": "Various unique collectible presets.", "Arena/Preset/Tooltip/Tab/Assault": "Assault çok yönlü bir sınıftır. Bu sınıfın ön ayarları çoğu savaş durumuna uygun dengeli donanıma sahiptir.", "Arena/Preset/Tooltip/Tab/CQB": "CQB, Arena'daki en ağır zırhlı sınıftır. CQB'ler, yüz kalkanları ve ana silahları için artırılmış mühimmat ile karakterize edilir. Bu sınıfın ön ayarları, pozisyonları savunmak ve uzun süreli silahlı çatışmalarda mükemmeldir.", "Arena/Preset/Tooltip/Tab/Collection": "Arenadaki özel başarılar için verilen ön ayarlar.", @@ -12295,18 +12274,12 @@ "Arena/TeamColor/yellow": "Sarı", "Arena/TeamColor/yellow_plural": "Sarı", "Arena/Tiers/LockedBy/GroupPlayerPovertyThresholdBlocked": "Not enough money for one or more group members", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked Tier presets for one or more group members", - "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked {0}": "Not enough unlocked {0} presets for one or more group members", - "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the Tier", - "Arena/Tiers/LockedBy/PovertyThreshold {0}": "Not enough money for {0}", + "Arena/Tiers/LockedBy/GroupPlayerTierPresetsUnlocked": "Not enough unlocked tier presets for one or more group members", + "Arena/Tiers/LockedBy/PovertyThreshold": "Not enough money for the tier", "Arena/Tiers/LockedBy/PresetsUnlocked": "Not enough unlocked presets", "Arena/Tiers/LockedBy/UnavailableTier": "Tier not available for the game", - "Arena/Tiers/LockedBy/UnavailableTier {0}": "{0} currently not available for the game", - "Arena/Tiers/RankingAvailable {0}": "Ranked game unavailable: {0} presets unlocked", "Arena/Tiers/Unlocked {0} presets": "{0} presets unlocked", "Arena/Tiers/UnlockedPresets": "Presets unlocked", - "Arena/Tooltip/MapSelectedCounter": "Number of selected locations", - "Arena/Tooltip/MinMapCount {0}": "Select multiple locations. You need to select at least {0} location(s)", "Arena/UI/Awaiting-Players": "Oyuncular bekleniyor", "Arena/UI/Confirm-Match": "Onayla", "Arena/UI/CustomMode": "Özel", @@ -12325,10 +12298,8 @@ "Arena/UI/Match_leaving_forbidden_body": "Bu maçtan ayrılırsanız yoldaşlarınızı dezavantajlı durumda bırakacaksınız.
Ödülünüzü, puanınızı kaybedeceksiniz ve geçici olarak yasaklanacaksınız.", "Arena/UI/Match_leaving_forbidden_header": "Dikkat! Maçtan ayrılıyorsun.", "Arena/UI/Match_leaving_permitted_header": "Bu maçtan ceza almadan ayrılabilirsiniz.", - "Arena/UI/PresetResetToDefault": "Settings for the following presets have been reset to default:", "Arena/UI/Return": "GERİ", "Arena/UI/Return-to-match": "MAÇA GERİ DÖN", - "Arena/UI/Selection/Blocked": "Preset taken", "Arena/UI/Waiting": "Bekleniyor...", "Arena/Ui/ServerFounding": "Sunucu aranıyor...", "Arena/Widgets/Observer/capture point": "Hedefi ele geçir", @@ -12383,16 +12354,9 @@ "ArenaUI/PresetView/FreePreset": "BOŞ", "ArenaUI/PresetView/PresetPreview": "Ön ayar önizlemesi", "ArenaUI/PresetView/ShopPrice": "Fiyat", - "Arena_AirPit": "Air Pit", - "Arena_AutoService": "Chop Shop", - "Arena_Bay5": "Bay 5", - "Arena_Bowl": "Bowl", - "Arena_Yard": "Block", - "Arena_equator_TDM_02": "Equator", "Arena_result_final": "Sonuç", "Arena_result_result": "Sonuçlar", "Arena_result_rounds": "Raunt", - "Arena_saw": "Sawmill", "Armband": "Kol bandı", "Armor": "Zırh", "Armor Zone BackHead": "Ense", @@ -12438,13 +12402,11 @@ "Assault": "Taarruz Tüfeği", "AssaultCarbine Mastering": "Saldırı Tüfeği", "AssaultDescription": "Taarruz tüfeği idare yeteneği tüm idare yeteneğini geliştirir, tepmeyi düşürür ve taarruz tüfeklerinin şarjör yenileme süresini azaltır.", - "AssaultLevelingUpDescription": "The Assault Rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "AssaultRifle": "Taarruz Tüfekleri", "AssaultRifle Mastering": "Taarruz tüfeği", "AssortmentUnlockReward/Description": "Bu eşyayı {0} isimli tüccardan ödül olarak alabilirsiniz", "AttachedLauncher": "Namlu Altı Bombaatar", "AttachedLauncherDescription": "Namlu altı bombaatar kullanma becerisi", - "AttachedLauncherLevelingUpDescription": "The Underbarrel Launchers weapon skill is improved by firing and reloading the corresponding weapon type.", "Attention": "Dikkat", "Attention!": "Dikkat!", "Attention! All items, brought by you into the raid or found in it, have been lost.": "Dikkat! Baskın sırasında aldığın veya bulduğun bütün eşyaları kaybettin.", @@ -12455,10 +12417,9 @@ "Attention! You’ve left the raid and lost everything you brought or found in it.": "Dikkat! Bir baskını yarıda bıraktın ve getirdiğin ve bulduğun herşeyi kaybettin.", "AttentionDescription": "Dikkat, çeşitli konteynerlerin yağmalanma hızını artırır.", "AttentionEliteExtraLootExp": "Yağmalama deneyimini iki katına çıkartır", - "AttentionEliteLuckySearch": "Bir konteynerde anında bir öğe bulma şansı [{0:0.#%}]", - "AttentionLevelingUpDescription": "The Attention skill is improved by searching containers and bodies.", - "AttentionLootSpeed": " Yağma hızını [{0:0.#%}] artırır", - "AttentionRareLoot": "Eşya inceleme hızını [{0:0.#%}] artırır", + "AttentionEliteLuckySearch": "Bir konteynerde anında bir öğe bulma şansı [({0})]", + "AttentionLootSpeed": " Yağma hızını [{0:0%}] artırır", + "AttentionRareLoot": "Eşya inceleme hızını [{0:0%}] artırır", "Auctionsdescription": "Müzayedeler", "Authentic": "Hakiki", "Authorization": "YETKİ", @@ -12512,7 +12473,6 @@ "Bloom": "Parlaklık", "BodyTemperature": "Vücut sıcaklığı", "Boiler Tanks": "Kazan Tankları", - "BonfireBuff": "Bonfire's warmth", "BoozeGenerator": "DAMITMA TESİSİ", "Boss pick": "Patron seçimi", "BossType/AsOnline": "Çevrimiçi olarak", @@ -12613,17 +12573,16 @@ "Charge": "Sürgü", "Charisma": "Karizma", "CharismaAdditionalDailyQuests": "Bir adet daha operasyonel görev ekler", - "CharismaBuff1": "Tüccarların nakit fiyatlarını [{0:0.#%}] oranında düşürür", - "CharismaBuff2": "Tüccarların sadakat oranını [{0:0.#%}] artırır", - "CharismaDailyQuestsRerollDiscount": "Operasyonel görev değiştirme maliyetini [{0:0.#%}] azaltır", + "CharismaBuff1": "Tüccarların nakit fiyatlarını [{0:0%}] oranında düşürür", + "CharismaBuff2": "Tüccarların sadakat oranını [{0:0%}] artırır", + "CharismaDailyQuestsRerollDiscount": "Operasyonel görev değiştirme maliyetini [{0:0%}] azaltır", "CharismaDescription": "Karizma sanatında ustalaşmak, çeşitli hizmetlerde indirim almanızı sağlar.", "CharismaEliteBuff1": "En son ticaret haberlerini ilk sen öğreniyorsun", - "CharismaEliteBuff2": "Her alışverişten elde edilen karı [{0:0.#%}] artırır", - "CharismaExfiltrationDiscount": "Ödenen çıkış fiyatlarını [{0:0.#%}] azaltır", + "CharismaEliteBuff2": "Her alışverişten elde edilen karı [{0:0%}] artırır", + "CharismaExfiltrationDiscount": "Ödenen çıkış fiyatlarını [{0:0%}] azaltır", "CharismaFenceRepPenaltyReduction": "Fence itibar cezasını azaltır", - "CharismaHealingDiscount": "Baskın sonrası iyileştirme hizmetleri fiyatlarını [{0:0.#%}] azaltır", - "CharismaInsuranceDiscount": "Sigorta hizmetleri fiyatlarını [{0:0.#%}] oranında düşürür", - "CharismaLevelingUpDescription": "The Charisma skill is improved indirectly by leveling the Attention, Perception, and Intellect skills.", + "CharismaHealingDiscount": "Baskın sonrası iyileştirme hizmetleri fiyatlarını [{0:0%}] azaltır", + "CharismaInsuranceDiscount": "Sigorta hizmetleri fiyatlarını [{0:0%}] oranında düşürür", "CharismaScavCaseDiscount": "Scav çantası fiyatlarına indirim ekler", "ChatScreen/QuestItemsListHeader": "Aşağıdaki eşyalar görev eşyası deposuna taşınacak:", "ChatScreen/QuestItemsMoved": "Öğeler başarıyla görev deposuna taşındı", @@ -12740,17 +12699,15 @@ "CovertMovement": "Gizli Hareket", "CovertMovementDescription": "Gizli hareket adımlarınızı daha sessiz yapar ve duyulabilir menzili düşürür.", "CovertMovementElite": "Gizli hareket bütün yüzeylerde eşit derecede sessiz olur", - "CovertMovementEquipment": "Silah ve ekipmanların gürültü seviyesini [{0:0.#%}] azaltır", - "CovertMovementLevelingUpDescription": "The Covert Movement skill is improved by moving quietly.", - "CovertMovementLoud": "Yaygın olmayan yüzeylerdeki ayak seslerinin gürültü seviyesini [{0:0.#%}] azaltır", + "CovertMovementEquipment": "Silah ve ekipmanların gürültü seviyesini [{0:0%}] azaltır", + "CovertMovementLoud": "Yaygın olmayan yüzeylerdeki ayak seslerinin gürültü seviyesini [{0:0%}] azaltır", "CovertMovementSoundRadius": "Gizli Hareket ses yarıçapını [{0:0%}] oranında azaltır", - "CovertMovementSoundVolume": "Birçok yüzeylerdeki ayak seslerinin gürültü seviyesini [{0:0.#%}] azaltır", - "CovertMovementSpeed": "Sürünme hareket hızını [{0:0.#%}] artırır", + "CovertMovementSoundVolume": "Birçok yüzeylerdeki ayak seslerinin gürültü seviyesini [{0:0%}] azaltır", + "CovertMovementSpeed": "Sürünme hareket hızını [{0:0%}] artırır", "Crafting": "Üretim", - "CraftingContinueTimeReduce": "Tüm döngüsel üretim süresini (Bitcoin Farm hariç) [{0:0.#%}] azaltır", + "CraftingContinueTimeReduce": "Tüm döngüsel üretim süresini (Bitcoin Farm hariç) [{0:0.##%}] azaltır", "CraftingElite": "Bir bölgede aynı anda en fazla iki farklı eşya üretebilme", - "CraftingLevelingUpDescription": "The Crafting skill is improved by creating items in the Hideout.", - "CraftingSingleTimeReduce": "Eşya üretim süresini [{0:0.#%}] azaltır", + "CraftingSingleTimeReduce": "Eşya üretim süresini [{0:0.##%}] azaltır", "Craftingdescription": "Üretim yeteneğini geliştirmek eşya üretim süresini azaltacaktır, döngüsel olarak üretilenler de buna dahil olmaktadır.", "Create group dialog": "Grup sohbeti oluştur", "CreateDialog": "{0} bir grup sohbeti başlattı!", @@ -12779,7 +12736,6 @@ "DISPOSE": "AT", "DMR": "Nişancı Tüfeği", "DMRDescription": "Özel Nişancı Tüfeği idare yeteneği tüm idare yeteceğini geliştirir, geri tepmeyi ve DMR tüfeklerinin şarjör değişim süresini azaltır.", - "DMRLevelingUpDescription": "The Designated Marksman Rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "DON'T TRY TO LEAVE": "TERK ETMEYE KALKMA", "DONTKNOW": "BİLMİYORUM", "DOWN": "HEDEF ÖLÜ", @@ -12910,9 +12866,9 @@ "DrawMasterDescription": "Silah çekme uzmanlığı silahlar arası geçişi hızlandırır.", "DrawMasterElite": "Silah çekme hızını [{0:0%}] artırır", "DrawMasterSpeed": "Silah çekme hızını [{0:0%}] artırır", - "DrawSound": "Nişan alma sesini [{0:0.#%}] azaltır", - "DrawSpeed": "Nişan alma hızını [{0:0.#%}] artırır", - "DrawTremor": "Nişan alırken ilk 2 saniye titreme etkisini [50%] azaltır", + "DrawSound": "Nişan alma sesini [{0:0%}] azaltır", + "DrawSpeed": "Nişan alma hızını [{0:0%}] artırır", + "DrawTremor": "Nişan alırken ilk 2 saniye titreme etkisini %50 azaltır", "DropBackpack": "Çantayı bırak", "DropItem": "Eşyayı Bırak", "Duck": "Çömel", @@ -12934,7 +12890,6 @@ "EAntialiasingMode/None": "Kapalı", "EAntialiasingMode/TAA_High": "TAA Yüksek", "EAntialiasingMode/TAA_Low": "TAA", - "EAreaType/PlaceOfFame/Tooltip": "Gaining bonuses for PMC dogtags.\n\nBonuses are given for dogtags of PMC players who are:\n- Of the opposing faction;\n- Not in your friend list;\n- Not in your group at the time of the kill.\n\nEach dogtag level brings a {0}% bonus\nMaximum bonus for one dogtag is {1}%", "EArenaPresetsType/Assault": "Assault", "EArenaPresetsType/CQB": "CQB", "EArenaPresetsType/Marksman": "Nişancı", @@ -13136,13 +13091,12 @@ "Enabled": "Etkin", "Endurance": "Dayanıklılık", "EnduranceBreathElite": "Nefes almak, enerjiden bağımsızdır", - "EnduranceBuffBreathTimeInc": "Nefes tutma süresini [{0:0.#%}] artırır", - "EnduranceBuffEnduranceInc": "Dayanıklılığı [{0:0.#%}] oranında artırır", - "EnduranceBuffJumpCostRed": "Zıplama dayanıklılığının azalmasını [{0:0.#%}] azaltır", - "EnduranceBuffRestorationTimeRed": "Nefes yenileme süresini [{0:0.#%}] azaltır", + "EnduranceBuffBreathTimeInc": "Nefes tutma süresini [{0:0%}] artırır", + "EnduranceBuffEnduranceInc": "Dayanıklılığı [{0:0%}] oranında artırır", + "EnduranceBuffJumpCostRed": "Zıplama dayanıklılığının azalmasını [{0:0%}] azaltır", + "EnduranceBuffRestorationTimeRed": "Nefes yenileme süresini [{0:0%}] azaltır", "EnduranceDescription": "Dayanıklılık, koşarken veya zıplarken dayanıklılık miktarını ve tükenme oranını, ayrıca nefes tutmayı ve geri kazanmayı etkiler.", "EnduranceHands": "El dayanıklılığı arttırıldı", - "EnduranceLevelingUpDescription": "The Endurance skill is improved by sprinting without the overweight status effect, and by working out in the Hideout gym.", "EnergyExpensesUp {0}": "Enerji tüketimi {0} tarafından yükseltildi", "EnergyRate": "Enerji geri kazanımı", "Enter": "Gir", @@ -13272,7 +13226,6 @@ "Friends": "Arkadaşlar", "Friends invite is already sent": "Zaten arkadaşlık isteği gönderdiniz.", "Friends list": "Arkadaş listesi", - "FrostbiteBuff": "Morana's frostbite", "Full": "Dolu", "Full Recovery Time": "Tam İyileşme Süresi", "Fullscreen mode:": "Görüntü Modu:", @@ -13341,7 +13294,6 @@ "HIT": "VUR", "HMG": "Ağır Makineli Tüfek", "HMGDescription": "Ağır makineli tüfek idare yeteneği tüm idare yeteneğini geliştirir, tepmeyi düşürür ve ağır makineli silahların şarjör yenileme süresini azaltır.", - "HMGLevelingUpDescription": "The Heavy Machine Guns weapon skill is improved by firing and reloading the corresponding weapon type.", "HOLD FIRE": "ATEŞKES", "HOLDFIRE": "ATEŞKES", "HOLDPOSITION": "POZİSYONUNU KORU", @@ -13372,27 +13324,25 @@ "Health/ItemResourceDepleted": "Eşya tükendi", "Health/PlayerIsDead": "Karakter öldü", "HealthAndPhysics": "Sağlıksal ve fiziksel durum", - "HealthBreakChanceRed": "Uzuv kırılma olasılığını [{0:0.#%}] azaltır", + "HealthBreakChanceRed": "Uzuv kırılma olasılığını [{0:0%}] azaltır", "HealthDescription": "Yüksek sağlık, saldırılarda oluşan hasarın iyileşmesini hızlandırarak, kırıkların olasılığını azaltır, enerji kaybını ve susuz kalma olasılığını düşürür.", "HealthEliteAbsorbDamage": "Hasar emilimi", "HealthElitePosion": "Zehire bağışıklık seviyesi [({0})]", - "HealthEnergy": "Enerji tüketimini [{0:0.#%}] azaltır", - "HealthHydration": "Dehidrasyon oranını [{0:0.#%}] azaltır", - "HealthLevelingUpDescription": "The Health skill is improved indirectly by leveling the Strength, Endurance, and Vitality skills.", - "HealthOfflineRegenerationInc": "Baskın dışı sağlık yenilenmesini [{0:0.#%}] artırır", + "HealthEnergy": "Enerji tüketimini [{0:0%}] azaltır", + "HealthHydration": "Dehidrasyon oranını [{0:0%}] azaltır", + "HealthOfflineRegenerationInc": "Baskın dışı sağlık yenilenmesini [{0:0%}] artırır", "HealthRate": "Sağlık yenilenmesi", "HealthTreatment/SkipHealthTreatmentDialogue": "Dikkat! Sağlığın düşük.\nSağlık iyileştirmesini geç ve ANA MENÜ'YE ilerle?", "Heating": "ISITMA", "Heavy": "Ağır", "HeavyBleeding": "Yoğun kanama", - "HeavyVestBluntThroughputDamageReduction": "Ağır zırhla kaplı vücut parçalarına verilen künt hasarı [{0:0.#%}] azaltır", - "HeavyVestDeteriorationChanceOnRepairReduce": "Onarım sırasında aşınma uygulamama şansı [50%]", - "HeavyVestMoveSpeedPenaltyReduction": "Ağır zırh giyerken hareket hızı cezasını [{0:0.#%}] azaltır", + "HeavyVestBluntThroughputDamageReduction": "Ağır zırhla kaplı vücut parçalarına verilen künt hasarı [{0:0%}] azaltır", + "HeavyVestDeteriorationChanceOnRepairReduce": "Onarım sırasında aşınma uygulamama şansı [(-{: 50%)", + "HeavyVestMoveSpeedPenaltyReduction": "Ağır zırh giyerken hareket hızı cezasını [{0:0%}] azaltır", "HeavyVestNoBodyDamageDeflectChance": "Bir mermiyi ağır zırhtan saptırma şansı", - "HeavyVestRepairDegradationReduction": "Onarım kitlerini kullanırken aşınma miktarını [{0:0.#%}] azaltır", + "HeavyVestRepairDegradationReduction": "Onarım kitlerini kullanırken aşınma miktarını [{0:0%}] azaltır", "HeavyVests": "Ağır Yelekler", "HeavyVestsDescription": "Ağır kurşun geçirmez yelek giyme becerisi, yelek delindiğinde alınan hasar miktarını, yelek ve kullanıcıya zarar veren patlayıcı hasarını azaltır ve hareket kabiliyetini artırır.", - "HeavyVestsLevelingUpDescription": "The Heavy Vests skill is improved by repairing heavy body armor and ballistic plates with repair kits.", "Hideout/Craft/ToolMarkerTooltip": "Bu öğe yardımcı bir araç olarak kullanılacaktır. Üretim tamamlandıktan sonra zulanıza geri dönecektir.", "Hideout/Handover window/Caption/All weapons": "Bütün silahlar", "Hideout/Handover window/Message/Items in stash selected:": "Zuladan seçilmiş eşyalar:", @@ -13405,9 +13355,8 @@ "HideoutExtraSlots": "Yakıt bidonları için +2 yuva\nSu filtresi için +2 yuva\nHava filtleri için +2 yuva\nBitcoin çiftliğindeki jeton depolama +2 limit", "HideoutInteractions/TransferItems": "Eşyaları aktar", "HideoutManagement": "Sığınak yönetimi", - "HideoutManagementLevelingUpDescription": "The Hideout Management skill is improved by creating items and upgrading zones in the Hideout.", - "HideoutResourceConsumption": "Yakıt, hava ve su filtreleri tüketim oranını [{0:0.#%}] azaltır", - "HideoutZoneBonusBoost": "Sığınak bölgelerinden gelen tüm yüzde bonuslarını değerlerinin [{0:0.#}%]'ı artırır", + "HideoutResourceConsumption": "Yakıt, hava ve su filtreleri tüketim oranını [{0:0%}] azaltır", + "HideoutZoneBonusBoost": "Sığınak bölgelerinden gelen tüm yüzde bonuslarını değerlerinin [{0:0}%]'ı artırır", "Hideout\\Craft\\ToolMarketTooltip": "", "Hideout_area_16_stage_3_description": "A full-fledged area in the Hideout dedicated to storing items of collectible value.", "Hiding objective {0:F1}": "Nesne gizleme {0:F1}", @@ -13444,12 +13393,11 @@ "Immunity": "Bağışıklık", "ImmunityAvoidPoisonChance": "Zehirden kaçınma şansını [{0:0%}] artırır", "ImmunityDescription": "Bağışıklık, hastalıklara karşı duyarlılığı ve tedavinin etkinliğini etkiler.", - "ImmunityLevelingUpDescription": "The Immunity skill is improved by being under the effects of poisoning and other negative effects of stimulants.", - "ImmunityMiscEffects": "Uyarıcılar, yiyecek ve sudan kaynaklanan tüm olumsuz etkileri [{0:0.#%}] azaltır", - "ImmunityMiscEffectsChance": "Uyarıcılardan, yiyeceklerden ve sudan kaynaklanan olumsuz etkilere karşı [{0:0.#%}]'a kadar bağışıklık kazanma şansı", - "ImmunityPainKiller": "Ağrı kesici etki süresini [{0:0.#%}] artırır", - "ImmunityPoisonBuff": "Zehir etkisi kuvvetini [{0:0.#%}] azaltır", - "ImmunityPoisonChance": "Zehirlere karşı bağışıklık kazanma şansı [{0:0.#%}]", + "ImmunityMiscEffects": "Uyarıcılar, yiyecek ve sudan kaynaklanan tüm olumsuz etkileri [{0:0%}] azaltır", + "ImmunityMiscEffectsChance": "Uyarıcılardan, yiyeceklerden ve sudan kaynaklanan olumsuz etkilere karşı [{0:0%}]'a kadar bağışıklık kazanma şansı", + "ImmunityPainKiller": "Ağrı kesici etki süresini [{0:0%}] artırır", + "ImmunityPoisonBuff": "Zehir etkisi kuvvetini [{0:0%}] azaltır", + "ImmunityPoisonChance": "Zehirlere karşı bağışıklık kazanma şansı [({0:0%})]", "In equipment": "EKİPMANDA", "InMenu": "Menü", "InRaid": "Baskın", @@ -13472,10 +13420,9 @@ "IntellectEliteAmmoCounter": "Mermi sayacı", "IntellectEliteContainerScope": "Konteyneri aramadan içeriğini tahmin et", "IntellectEliteNaturalLearner": "Eşya incelemek için kılavuz gerekmez", - "IntellectLearningSpeed": "Eşya inceleme hızını [{0:0.#%}] artırır", - "IntellectLevelingUpDescription": "The Intellect skill is improved by examining previously unidentified items and repairing weapons.", - "IntellectRepairPointsCostReduction": "Onarım kiti puan tüketimini [{0:0.#%}] azaltır", - "IntellectWeaponMaintance": "Silah onarım etkinliğini [{0:0.#%}] artırır", + "IntellectLearningSpeed": "Eşya inceleme hızını [{0:0%}] artırır", + "IntellectRepairPointsCostReduction": "Onarım kiti puan tüketimini [{0:0%}] azaltır", + "IntellectWeaponMaintance": "Silah onarım etkinliğini [{0:0%}] artırır", "IntelligenceCenter": "İSTİHBARAT MERKEZİ", "Intensity:": "Yoğunluk:", "Interact": "Etkileşim", @@ -13645,7 +13592,6 @@ "LL": "LL", "LMG": "Hafif Makineli Tüfek", "LMGDescription": "Ağır makineli tüfek idare yeteneği tüm idare yeteneğini geliştirir, tepmeyi düşürür ve ağır makineli silahların şarjör yenileme süresini azaltır.", - "LMGLevelingUpDescription": "The Light Machine Guns weapon skill is improved by firing and reloading the corresponding weapon type.", "LOAD": "ŞARJÖR TAK", "LOAD FROM DIRECTORY...": "Dizinden yükle ....", "LOAD FROM FILE...": "Dosyadan yükle...", @@ -13667,7 +13613,6 @@ "LastHeroDescriptionShort": "You are on your own", "Launcher": "Roketatar", "LauncherDescription": "Bombaatar kullanma becerisi", - "LauncherLevelingUpDescription": "The Grenade Launchers weapon skill is improved by firing and reloading the corresponding weapon type.", "LeanLockLeft": "Sola eğil", "LeanLockRight": "Sağa eğil", "LeanX negative": "Hafifçe sola eğil", @@ -13698,13 +13643,12 @@ "Light": "Hafif", "LightBleeding": "Hafif kanama", "LightVestBleedingProtection": "Hafif zırhla kaplı vücut parçaları kanamaya karşı bağışıktır", - "LightVestDeteriorationChanceOnRepairReduce": "Onarım sırasında aşınma uygulamama şansı [50%]", - "LightVestMeleeWeaponDamageReduction": "Hafif zırhla kaplanan vücut parçalarına verilen yakın dövüş hasarını [{0:0.#%}] azaltır", - "LightVestMoveSpeedPenaltyReduction": "Hafif zırh giyerken hareket hızı cezasını [{0:0.#%}] azaltır", - "LightVestRepairDegradationReduction": "Onarım kitlerini kullanırken aşınma miktarını [{0:0.#%}] azaltır", + "LightVestDeteriorationChanceOnRepairReduce": "Onarım sırasında aşınma uygulamama şansı [(-{: 50%)", + "LightVestMeleeWeaponDamageReduction": "Hafif zırhla kaplanan vücut parçalarına verilen yakın dövüş hasarını [{0:0%}] azaltır", + "LightVestMoveSpeedPenaltyReduction": "Hafif zırh giyerken hareket hızı cezasını [{0:0%}] azaltır", + "LightVestRepairDegradationReduction": "Onarım kitlerini kullanırken aşınma miktarını [{0:0%}] azaltır", "LightVests": "Hafif Yelekler", "LightVestsDescription": "Hafif kurşun geçirmez yelek giymek hareketliliğini artıracak, penetrasyonu ve yakın dövüşten alınan zararı azaltacaktır.", - "LightVestsLevelingUpDescription": "The Light Vests skill is improved by repairing light body armor and ballistic plates with repair kits.", "Lighthouse": "Deniz Feneri", "Lighthouse_pass": "Deniz fenerine giden yol", "Lighting quality:": "Aydınlatma kalitesi:", @@ -13756,7 +13700,6 @@ "MAP": "HARİTA", "MASTERING": "UZMANLAŞMA", "MATERIAL": "Malzeme", - "MAX AMMO DAMAGE": "Damage", "MAXCOUNT": "MAKSİMUM KAPASİTE", "MAXIMUM THROW DAMAGE": "MAKSİMUM PARÇA HASARI", "MED USE TIME": "TEDAVİ KULLANIM SÜRESİ", @@ -13805,12 +13748,11 @@ "MagDrills": "Şarjör Talimi", "MagDrillsDescription": "Bu yetenek şarjörleri temel alır - mühimmat yükleme ve boşaltma, kalan cephane sayısını kontrol etme.", "MagDrillsInstantCheck": "Şarjör envanterinize taşındığında anında kontrol edilir", - "MagDrillsInventoryCheckAccuracy": "Bağlam menüsü aracılığıyla dergi kontrolünün doğruluğunu [{0:0.#}%] artırır", - "MagDrillsInventoryCheckSpeed": "Bağlam menüsü aracılığıyla dergi kontrolünün hızını [{0:0.#}%] artırır", - "MagDrillsLevelingUpDescription": "The Mag Drills skill is improved by loading, unloading, and checking magazines.", + "MagDrillsInventoryCheckAccuracy": "Bağlam menüsü aracılığıyla dergi kontrolünün doğruluğunu [%{0}] artırır", + "MagDrillsInventoryCheckSpeed": "Bağlam menüsü aracılığıyla dergi kontrolünün hızını [%{0}] artırır", "MagDrillsLoadProgression": "Şarjöre mermi yükleme işlemi şarjördeki mermi sayısı arttıkça hızlanır", - "MagDrillsLoadSpeed": "Cephane doldurma hızını [{0:0.#}%] artırır", - "MagDrillsUnloadSpeed": "Cephane boşaltma hızını [{0:0.#}%] artırır", + "MagDrillsLoadSpeed": "Cephane doldurma hızını [%{0}] artırır", + "MagDrillsUnloadSpeed": "Cephane boşaltma hızını [{0}%] artırır", "MagPreset/CaliberNotSelected": "Caliber not specified", "MagPreset/DiscardCahangesDescription": "Any unsaved changes will be lost.\nContinue?", "MagPreset/Error/ContainsMissingItems": "Ammo not found:", @@ -13881,27 +13823,24 @@ "Meds": "İlaçlar", "Melee": "Yakın Saldırı", "MeleeDescription": "Yakın saldırı silahı kullanma becerisi", - "MeleeLevelingUpDescription": "The Melee skill is improved by striking enemies with melee weapons.", "Memory": "Hafıza", "MemoryDescription": "Talimli beceriler zamanla unutulmaya daha az yatkındır", "MemoryEliteMentalNoDegradation": "Hiçbir becerinizi unutmazsınız", - "MemoryLevelingUpDescription": "The Memory skill is improved by", - "MemoryMentalForget1": "Becerileri unutma oranınızı [{0:0.#%}] azaltır", - "MemoryMentalForget2": "Beceri seviyelerinin geri alınmasını [{0:0.#%}] azaltır", + "MemoryMentalForget1": "Becerileri unutma oranınızı [{0:0%}] azaltır", + "MemoryMentalForget2": "Beceri seviyelerinin geri alınmasını [{0:0%}] azaltır", "Mental": "Zihinsel", "Merchant": "Tüccar", "Metabolism": "Metabolizma", "MetabolismDescription": "Sağlıklı bir metabolizma, yiyecek ve içeceklerin etkilerini arttırır ve uzatır, aynı zamanda fiziksel becerileri daha uzun sürdürebilmeyi sağlar.", "MetabolismEliteBuffNoDyhydration": "Yorgunluk ve dehidrasyondan zarar görmezsin", "MetabolismEliteNoForget": "Fiziksel becerilerinizi unutmazsınız", - "MetabolismEnergyExpenses": "Enerji tüketimini ve dehidrasyon oranını [{0:0.#%}] azaltır", - "MetabolismLevelingUpDescription": "The Metabolism skill is improved by consuming energy and water supplies.", - "MetabolismMiscDebuffTime": "Uyarıcıların, yiyeceğin ve suyun olumsuz etki süresini [{0:0.#%}] azaltır", - "MetabolismPhysicsForget": "Fiziksel becerileri unutma oranını [{0:0.#%}] azaltır", + "MetabolismEnergyExpenses": "Enerji tüketimini ve dehidrasyon oranını [{0:0%}] azaltır", + "MetabolismMiscDebuffTime": "Uyarıcıların, yiyeceğin ve suyun olumsuz etki süresini [{0:0%}] azaltır", + "MetabolismPhysicsForget": "Fiziksel becerileri unutma oranını [{0:0%}] azaltır", "MetabolismPhysicsForget2": "Fiziksel becerileri unutmanın maksimum ölçeğini azaltır", "MetabolismPhysicsNoForget": "Fiziksel beceriler bir daha unutulmayacak", - "MetabolismPoisonTime": "Zehir etkisi süresini [{0:0.#%}] azaltır", - "MetabolismRatioPlus": "Yiyecek ve içeceklerin olumlu etkilerini [{0:0.#%}] artırır", + "MetabolismPoisonTime": "Zehir etkisi süresini [{0:0%}] azaltır", + "MetabolismRatioPlus": "Yiyecek ve içeceklerin olumlu etkilerini [{0:0%}] artırır", "Microphone sensitivity:": "Mikrofon hassasiyeti:", "MildMusclePain": "Hafif kas ağrısı", "Military Checkpoint": "Scav kontrol noktası", @@ -14137,10 +14076,9 @@ "Pending requests": "Bekleyen istekler", "Perception": "Algı", "PerceptionDescription": "Algıda ustalaşmak, duyma menzilini ve nişan konsantrasyonunu arttırır ve ganimet bulmayı kolaylaştırır.", - "PerceptionFov": "Nişan alma konsantrasyonunu [{0:0.#%}] artırır", - "PerceptionHearing": "Duyma mesafesini [{0:0.#%}] artırır", - "PerceptionLevelingUpDescription": "The Perception skill is improved by finding and picking up any items.", - "PerceptionLootDot": "Ganimet fark etme yarıçapını [{0:0.#%}] artırır", + "PerceptionFov": "Nişan alma konsantrasyonunu [{0:0%}] artırır", + "PerceptionHearing": "Duyma mesafesini [{0:0%}] artırır", + "PerceptionLootDot": "Ganimet fark etme yarıçapını [{0:0%}] artırır", "PerceptionmEliteNoIdea": "Ganimete yakınlık bildirisi", "Perish": "Mahvolmuş", "Physical": "Fiziksel", @@ -14148,7 +14086,6 @@ "Pistol": "Tabanca", "Pistol Mastering": "Tabanca", "PistolDescription": "Tabanca idare yeteneği tüm idare yeteneğini geliştirir, tepmeyi düşürür ve şarjör yenileme süresini azaltır.", - "PistolLevelingUpDescription": "The Pistols weapon skill is improved by firing and reloading the corresponding weapon type.", "PlaceOfFame": "ONUR KÖŞESİ", "PlantLocationDescription": "16 numaralı kimya fabrikası ve endüstriyel arazisi TerraGroup şirketi tarafından yasa dışı olarak kiralanmıştı. Fabrika tesisleri, Kontrat Savaşları boyunca Tarkov'un endüstriyel bölgesini kontrol etmeyi isteyen USEC ve BEAR arasındaki sayısız çatışmalara sahne oldu. Sonraları, kaosun uyanışıyla dağılan USEC ve BEAR'dan kalanlar dahil olmak üzere, siviller, vahşi ve her türlü başıboş ordu ve zırhlı birlik üyeleri için bir sığınağa dönüştü.", "Player": "Oyuncu", @@ -14219,10 +14156,9 @@ "Prone": "Sürünme", "ProneMovement": "Sürünme Hareketi", "ProneMovementDescription": "Yüzüstü harekette ustalaşmak onu daha hızlı ve daha sessiz hale getirir.", - "ProneMovementElite": "Sürünme hareket hızını [{0:0.#%}] artırır", - "ProneMovementLevelingUpDescription": "The Prone Movement skill is improved by moving while in a prone position.", - "ProneMovementSpeed": "Sürünme hareketini [{0:0.#%}] oranında arttırır", - "ProneMovementVolume": "Sürünerek hareket etme sesini [{0:0.#%}] oranında azaltır", + "ProneMovementElite": "Sürünme hareket hızını [{0:0%}] artırır", + "ProneMovementSpeed": "Sürünme hareketini [(+{0:0%})] oranında arttırır", + "ProneMovementVolume": "Sürünerek hareket etme sesini [(-{0:0%})] oranında azaltır", "Protect objective {0:F1}": "Hedefi savun {0:F1}", "QUEST ITEM": "GÖREV EŞYASI", "QUEST ITEMS": "GÖREV EŞYALARI", @@ -14410,9 +14346,8 @@ "Recoil Up": "Dikey geri tepme", "RecoilControl": "Geri Tepme Kontrolü", "RecoilControlDescription": "Yüksek geri tepme kontrolü yatay dağılımı azaltır, tepmeyi daha tahmin edilebilir yapar.", - "RecoilControlElite": "Geri tepme kontrolünü [{0:0.#%}] iyileştirir", - "RecoilControlImprove": "Geri tepme kontrolünü [{0:0.#%}] iyileştirir", - "RecoilControlLevelingUpDescription": "The Recoil Control skill is improved by continuous shooting. The higher the base recoil of the weapon, the faster the skill improves.", + "RecoilControlElite": "Geri tepme kontrolünü [{0:0%}] iyileştirir", + "RecoilControlImprove": "Geri tepme kontrolünü [{0:0%}] iyileştirir", "RecommendedVRAM:": "Önerilen VRAM", "Reconnection is not available at this moment due to testing purposes": "Test amaçları nedeniyle şu an tekrar bağlanmak mümkün değil", "RedRebel_alp": "Climber's Trail", @@ -14442,7 +14377,6 @@ "Report game bug abuse": "Oyun hatasını istismar edenleri raporla", "Report offensive nickname": "Saldırgan kullanıcı adı raporla", "Report suspected cheat use": "Şüpheli hile kullanımı raporla", - "Report suspicious profile": "Report suspicious profile", "ReportAbuseBug": "Oyun hatası raporla", "ReportAbuseVoip": "Report VoIP & Radio abuse", "ReportCheater": "Hile şüphesini raporla", @@ -14478,7 +14412,6 @@ "Revolver": "Altıpatlar", "Revolver Mastering": "Altıpatlar", "RevolverDescription": "Altıpatlar kullanma becerisi.", - "RevolverLevelingUpDescription": "The Revolvers weapon skill is improved by firing and reloading the corresponding weapon type.", "RezervBase": "Rezerv", "Rig": "Teçhizat", "Right Arm": "SAĞ KOL", @@ -14528,7 +14461,6 @@ "SKILLS_SPEED_UP": "Seviye atlama hızı yükseldi", "SMG": "Hafif makineli tüfek", "SMGDescription": "Tabanca idare yeteneği tüm idare yeteneğini geliştirir, tepmeyi düşürür ve şarjör yenileme süresini azaltır.", - "SMGLevelingUpDescription": "The Submachine guns weapon skill is improved by firing and reloading the corresponding weapon type.", "SNIPERPHRASE": "KESKİN NİŞANCI", "SO": "SO", "SOUND": "SES", @@ -14546,7 +14478,6 @@ "Sales sum with {0} increased by {1}": "{0} ile toplam satışlar {1} artırıldı", "Sandbox": "Ground Zero", "Sandbox_VExit": "Police Cordon V-Ex", - "Sandbox_high": "Ground Zero", "Saturation:": "Doygunluk:", "Savage matchmaker": "Baskına rastgele ekipmanlara sahip yerel bir haydut olan Scav ile katıl. Tarkov senin evin, kuralları sen belirlersin!", "SavageBannerDescription": "Bir Yağmacı olarak yaptığın baskın PMC karakterinle yaptığın baskın ile farklıdır. Oyuncu Yağmacılar baskın devam ederken rastgele bir zamanda rastgele bir yerde doğar. Yağmacının canı ve silahıda rastgele seçilir. Yağmacı olarak sağ çıkabilirsen bütün ganimeti asıl PMC karakterine aktarabilirsin. Bir baskını Yağmacı olarak bitirirsen kazandığın deneyim puanlari PMC karakterine geçmeyecek. Yağmacı olarak ölmek senin ilerleyişini hiçbir yönden etkilemez.", @@ -14585,7 +14516,6 @@ "Search": "Araştır", "SearchDescription": "Arama yeteceğinde ustalaşmak cesetleri ve konteynerleri daha hızlı ve etkili aramanızı sağlar.", "SearchDouble": "Bir seferde iki konteyneri arayın", - "SearchLevelingUpDescription": "The Search skill is improved by searching containers.", "SecondPrimaryWeapon": "Sırtta", "SecondaryWeapon": "İkincil silah", "SecuredContainer": "Kese", @@ -14638,14 +14568,12 @@ "Settings/Settings have been changed": "Bazı ayarlar değiştirildi. Bunları kaydetmek istiyor musunuz?", "Settings/Sound/BinauralSound": "Binaural ses", "Settings/Sound/ChatVolume": "Sohbet sesi seviyesi:", - "Settings/Sound/CommentatorVolume": "Announcer volume:", "Settings/Sound/Device": "Ses aygıtı", "Settings/Sound/HideoutVolume": "Hideout sesi:", "Settings/Sound/InterfaceVolume": "Arayüz sesleri:", "Settings/Sound/MusicOnRaidEnd": "Baskın sonrası müzik", "Settings/Sound/MusicVolume": "Müzik sesleri:", "Settings/Sound/OverallVolume": "Genel ses:", - "Settings/Sound/ReadyToMatchSoundVolume": "Match accept screen volume:", "Settings/UnavailablePressType": "Kullanılamaz", "SevereMusclePain": "Şiddetli kas ağrısı", "Shack": "Askeri Üs KN", @@ -14677,7 +14605,6 @@ "Shotgun": "Pompalı Tüfek", "Shotgun Mastering": "Pompalı Tüfek", "ShotgunDescription": "Pompalı tüfek idare yeteneği tüm idare yeteneğini geliştirir ve pompalı tüfeğin tepmesini azaltır.", - "ShotgunLevelingUpDescription": "The Shotguns weapon skill is improved by firing and reloading the corresponding weapon type.", "Show icons": "Simgeleri göster", "Show:": "Göster:", "SightingRange": "ATIŞ POLİGONU", @@ -14701,7 +14628,6 @@ "Sniper": "Keskin Nişancı Tüfeği", "Sniper Roadblock": "Nişancı Barikatı", "SniperDescription": "Snipper tüfeği idare yeteneği tüm idare yeteneğini geliştirir, tepmeyi düşürür ve şarjör yenileme süresini azaltır.", - "SniperLevelingUpDescription": "The Bolt-action rifles weapon skill is improved by firing and reloading the corresponding weapon type.", "SniperRifle": "Keskin nişancı tüfeği", "SniperRifle Mastering": "Keskin nişancı tüfeği", "Sniper_exit": "Mira Ave", @@ -14734,8 +14660,6 @@ "StartInGroup": "Together", "StartLookingForGroup": "Grup aramaya başla", "StartNotInGroup": "Ayrı ayrı", - "StashLinesExternalObtain": "Stash upgrade", - "StashLinesExternalObtain/Tooltip": "Stash upgrade is available for purchase on the website", "StatFoundMoneyEUR": "Bulunan Euro", "StatFoundMoneyRUB": "Bulunan Ruble", "StatFoundMoneyUSD": "Bulunan Amerikan Doları", @@ -14770,22 +14694,20 @@ "StomachBloodloss": "Mide kanaması", "Stop looking for group": "Grup aramayı durdur", "Strength": "Güç", - "StrengthBuffAim": "Nişan alırken stamina tüketimini [{0:0.#%}] azaltır", + "StrengthBuffAim": "Nişan alırken stamina tüketimini [{0:0%}] azaltır", "StrengthBuffElite": "Donatılmış silahlar karakterinizin ağırlığına eklenmez (sırt çantalarındaki silahlar hariç)", - "StrengthBuffJumpHeightInc": "Zıplama yüksekliğini [{0:0.#%}] artırır", - "StrengthBuffLiftWeightInc": "Taşıma ağırlığını [{0:0.#%}] artırır", - "StrengthBuffMeleeCrits": "Yakın dövüşte kritik vurma şansını [{0:0.#%}] arttırır", - "StrengthBuffMeleePowerInc": "Yakın dövüş vuruş gücünü [{0:0.#%}] artırır", - "StrengthBuffSprintSpeedInc": "Hareket ve koşma hızını [{0:0.#%}] artırır", - "StrengthBuffThrowDistanceInc": "Fırlatma mesafesini [{0:0.#%}] artırır", + "StrengthBuffJumpHeightInc": "Zıplama yüksekliğini [{0:0%}] artırır", + "StrengthBuffLiftWeightInc": "Taşıma ağırlığını [{0:0%}] artırır", + "StrengthBuffMeleeCrits": "Yakın dövüşte kritik vurma şansını [({0})] arttırır", + "StrengthBuffMeleePowerInc": "Yakın dövüş vuruş gücünü [{0:0%}] artırır", + "StrengthBuffSprintSpeedInc": "Hareket ve koşma hızını [{0:0%}] artırır", + "StrengthBuffThrowDistanceInc": "Fırlatma mesafesini [{0:0%}] artırır", "StrengthDescription": "Artan güç, daha yükseğe atlamanızı, daha hızlı koşmanızı, daha sert vurmanızı, daha uzağa atmanızı ve daha fazla ağırlık taşımanızı sağlar.", - "StrengthLevelingUpDescription": "The Strength skill is improved by sprinting with the overweight status effect, throwing grenades, using melee weapons, and by working out in the Hideout gym.", "StressBerserk": "Berserk moduna erişim", - "StressPainChance": "Kanama şansını [{0:0.#%}] azaltır", + "StressPainChance": "Kanama şansını [{0:0%}] azaltır", "StressResistance": "Stres Direnci", "StressResistanceDescription": "Stres direnci nörojenik şoka dayanma şansını arttırır, el titremelerini ve sarsıntıları hafifletir.", - "StressResistanceLevelingUpDescription": "The Stress Resistance skill is improved by receiving damage. Having the Pain status effect without using painkillers also improves this skill.", - "StressTremor": "Titreme sarsıntısını [{0:0.#%}] azaltır", + "StressTremor": "Titreme sarsıntısını [{0:0%}] azaltır", "StringSeparator/Or": " ya da ", "Stun": "Sersemledi", "Subtask completed:": "İkincil görev tamamlandı:", @@ -14851,9 +14773,8 @@ "Summary": "Özet", "Surgery": "Ameliyat", "SurgeryDescription": "Ameliyat yapabilme yeteneği, kritik durumlarda hayatınızı kurtarabilir. Yeteneği ne kadar geliştirirseniz o kadar hızlı ve iyi ameliyat yapabilirsiniz.", - "SurgeryLevelingUpDescription": "The Surgery skill is improved by using surgical kits on injured body parts.", - "SurgeryReducePenalty": "Ameliyat ile can doldurma cezasını [{0:0.#%}] azaltır", - "SurgerySpeed": "Ameliyat hızını [{0:0.#%}] artırır", + "SurgeryReducePenalty": "Ameliyat ile can doldurma cezasını [{0:0%}] azaltır", + "SurgerySpeed": "Ameliyat hızını [{0:0%}] artırır", "Survival Rate Short": "S/R: {0}%", "SurvivalRate": "Hayatta kalma oranı", "Survived": "Hayatta kalındı", @@ -14926,9 +14847,8 @@ "ThrowItem": "Yere At", "Throwing": "Fırlatılabilir Silahlar", "ThrowingDescription": "Fırlatma idare yeteneği el bombalarını daha uzağa ve daha az enerji tüketimi ile fırlatmanızı sağlar.", - "ThrowingEnergyExpenses": "Gerekli atış enerjisini [{0:0.#%}] azaltır", - "ThrowingLevelingUpDescription": "The Throwables skill is improved by throwing grenades.", - "ThrowingStrengthBuff": "Fırlatma gücünü [{0:0.#%}] artırır", + "ThrowingEnergyExpenses": "Gerekli atış enerjisini [{0:0%}] azaltır", + "ThrowingStrengthBuff": "Fırlatma gücünü [{0:0%}] artırır", "ThrowingWeaponsBuffElite": "Fırlatılabilirler enerji gerektirmez ve yorgunluk onların doğruluğunu etkilemez", "Time flow": "Zaman akışı", "Time to reconnect left ({0})": "Tekrar bağlanmak için kalan süre ({0})", @@ -14976,11 +14896,11 @@ "Trading/Dialog/AvaliableServices": "Can you help me with something?", "Trading/Dialog/Btr/News": "What's the news?", "Trading/Dialog/Btr/News/Next": "Any more news?", - "Trading/Dialog/Btr/News1": "It's been snowing so hard recently! We haven't had snow like this since the Contract Wars. It's like we don't live up north. Shame it's all melted now.", - "Trading/Dialog/Btr/News2": "You don't go out often, do you? There was a big holiday, the whole town celebrated! Happy holidays, by the way.", - "Trading/Dialog/Btr/News3": "Our kingpins made a big mess, didn't they? Sitting at their spots, not moving, not letting anyone breathe.", - "Trading/Dialog/Btr/News4": "This weirdo who dresses up as Santa Claus year after year, he's talking now! I thought he was mute.", - "Trading/Dialog/Btr/News5": "Folks started picking up figurines of local celebrities all over the city. I wonder if my BTR will turn out to be one or not.", + "Trading/Dialog/Btr/News1": "The biggest news is the BTR! I fixed it all myself. Consider it my own creation. Now I can drive people around. Maybe that'll help me pay for the repairs.", + "Trading/Dialog/Btr/News2": "Someone is organizing gladiatorial fights in Tarkov. They say a lot of people went there of their own free will. The money's pretty good. If you survive, obviously!", + "Trading/Dialog/Btr/News3": "There was an uproar all over Tarkov over some TerraGroup documents. They've even been looking beyond the border, but I kinda don't believe it.", + "Trading/Dialog/Btr/News4": "A while back, most of the AP ammo went missing from the traders' stocks. Fighters like you were running all over Tarkov, looking for other people's ammo stashes. Now everything's fine though.", + "Trading/Dialog/Btr/News5": "Sanitar tried to strengthen his influence in Tarkov recently. He had some kind of an antidote, apparently. Not long before that, a lot of people got poisoned. Coincidence? I think not.", "Trading/Dialog/Btr/NoNews": "I think that's all the news I have.", "Trading/Dialog/Btr/ServicePayoff{0}": "Works for me, yes. (hand over \"{0}\")", "Trading/Dialog/BtrBotCover/Description": "The whole time you're in the BTR, we'll shoot anyone who sticks their noses out. We'll also clear the drop zone and cover you while you get out, but not for long.", @@ -14999,34 +14919,18 @@ "Trading/Dialog/PlayerHandoveItem{0}": "Bunu buldum. (Teslim et \"{0}\")", "Trading/Dialog/PlayerTaxi/Description": "Here's where I can drop you off. Pick one.", "Trading/Dialog/PlayerTaxi/Name": "Take a ride", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Name": "Rodina Cinema", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Description": "Driving to the tram. You got the cash, right?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p2/Name": "Tram", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Description": "Great, we're on course for city center. You got enough cash?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p3/Name": "City Center", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p4/Name": "Çökmüş Vinç", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p5/Name": "Old Scav Checkpoint", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", - "Trading/Dialog/PlayerTaxi/TarkovStreets/p6/Name": "Pinewood Hotel", - "Trading/Dialog/PlayerTaxi/Woods/p1/Description": "Gonna head to the Scav bunker. Price alright?", - "Trading/Dialog/PlayerTaxi/Woods/p1/Name": "Scav Bunker", - "Trading/Dialog/PlayerTaxi/Woods/p2/Description": "The sunken village, huh? I think we can make it. Here's the price.", - "Trading/Dialog/PlayerTaxi/Woods/p2/Name": "Sunken Village", - "Trading/Dialog/PlayerTaxi/Woods/p3/Description": "Could drive you to the fork in the road, sure. You got enough cash?", - "Trading/Dialog/PlayerTaxi/Woods/p3/Name": "Junction", - "Trading/Dialog/PlayerTaxi/Woods/p4/Description": "Sawmill? No problem! Here's my pricing.", - "Trading/Dialog/PlayerTaxi/Woods/p4/Name": "Sawmill", - "Trading/Dialog/PlayerTaxi/Woods/p5/Description": "To the USEC checkpoint, alright. Not driving for free, though.", - "Trading/Dialog/PlayerTaxi/Woods/p5/Name": "USEC Checkpoint", - "Trading/Dialog/PlayerTaxi/Woods/p6/Description": "I'm mapping out the route to the Emercom base. You cool price-wise?", - "Trading/Dialog/PlayerTaxi/Woods/p6/Name": "Emercom Base", - "Trading/Dialog/PlayerTaxi/Woods/p7/Description": "Okie-dokie, old sawmill it is. Here's the price.", - "Trading/Dialog/PlayerTaxi/Woods/p7/Name": "Old Sawmill", - "Trading/Dialog/PlayerTaxi/Woods/p8/Description": "You want me to drop you off at the depot? Just so you know, you can't get out of there without me. If the price is okay, you keep an eye on the time there, okay?", - "Trading/Dialog/PlayerTaxi/Woods/p8/Name": "Train Depot", + "Trading/Dialog/PlayerTaxi/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?", + "Trading/Dialog/PlayerTaxi/p1/Name": "Rodina Cinema", + "Trading/Dialog/PlayerTaxi/p2/Description": "Driving to the tram. You got the cash, right?", + "Trading/Dialog/PlayerTaxi/p2/Name": "Tram", + "Trading/Dialog/PlayerTaxi/p3/Description": "Great, we're on course for city center. You got enough cash?", + "Trading/Dialog/PlayerTaxi/p3/Name": "City Center", + "Trading/Dialog/PlayerTaxi/p4/Description": "Gonna drive to the collapsed crane. You okay with the price?", + "Trading/Dialog/PlayerTaxi/p4/Name": "Çökmüş Vinç", + "Trading/Dialog/PlayerTaxi/p5/Description": "I'll take you to the old Scav checkpoint. Price is fine, yeah?", + "Trading/Dialog/PlayerTaxi/p5/Name": "Old Scav Checkpoint", + "Trading/Dialog/PlayerTaxi/p6/Description": "I'll drive you over to the Pinewood hotel. How's the price, all satisfactory?", + "Trading/Dialog/PlayerTaxi/p6/Name": "Pinewood Hotel", "Trading/Dialog/Quit": "Ayrıl", "Trading/Dialog/ServicePayoff{0}": "Alright, this should be enough. (hand over \"{0}\")", "Trading/Dialog/ToggleHistoryOff": "Hikayeyi kapat", @@ -15062,14 +14966,13 @@ "TransferScreen/TransferFailed": "Failed to purchase service", "TransferScreen/TransferSuccess": "Service purchased!", "Tremor": "Titreme", - "TroubleFixing": "Arıza tespit hızını [{0:0.#%}] artırır", - "TroubleFixingAmmoElite": "Aynı nedenden kaynaklanan bir arızayı giderdikten sonra şarjörden kaynaklanan arıza olasılığını [50%] azaltır", - "TroubleFixingDurElite": "Aynı nedenden kaynaklanan bir arızayı düzelttikten sonra, silahların dayanıklılığına bağlı arıza olasılığını [50%] azaltır", + "TroubleFixing": "Arıza tespit hızını [{0:0%}] artırır", + "TroubleFixingAmmoElite": "Aynı nedenden kaynaklanan bir arızayı giderdikten sonra şarjörden kaynaklanan arıza olasılığını %50 azaltır", + "TroubleFixingDurElite": "Aynı nedenden kaynaklanan bir arızayı düzelttikten sonra, silahların dayanıklılığına bağlı arıza olasılığını %50 azaltır", "TroubleFixingExamineMalfElite": "Arıza türünün belirlenmesi için silahın incelenmesi gerekmez", - "TroubleFixingMagElite": "Aynı nedenden kaynaklanan bir arızayı düzelttikten sonra mermiden kaynaklanan arıza olasılığını [50%] azaltır", + "TroubleFixingMagElite": "Aynı nedenden kaynaklanan bir arızayı düzelttikten sonra mermiden kaynaklanan arıza olasılığını %50 azaltır", "TroubleShootingDescription": "Sorun giderme becerisi, silah arızalarının çözümlenmesini kolaylaştırır.", "Troubleshooting": "Sorun Giderme", - "TroubleshootingLevelingUpDescription": "The Troubleshooting skill is improved by regularly fixing weapon malfunctions.", "Try_keycard {0}": "{0} Dene", "Tunnel": "Tünel", "Tunnel_Shared": "Yan tünel", @@ -15152,11 +15055,6 @@ "UI/Arena/Place_7": "7. sıra", "UI/Arena/Place_8": "8. sıra", "UI/Arena/Place_9": "9. sıra", - "UI/ArmorPenetration/High": "High", - "UI/ArmorPenetration/Low": "Low", - "UI/ArmorPenetration/Medium": "Medium", - "UI/ArmorPenetration/VeryHigh": "Very high", - "UI/ArmorPenetration/VeryLow": "Very low ", "UI/Charisma/Discount/Insurance": "Sigorta maliyeti", "UI/Charisma/Discount/PostRaidHealing": "İyileşme maliyeti", "UI/Charisma/Discount/ScavCase": "Scav Çantası maliyeti", @@ -15334,18 +15232,15 @@ "Very good standing": "çok iyi", "Vest": "Yelek", "Village": "Köy", - "Violation/IntentionalTeamDamage/Warning": "Your account will be blocked if you continue shooting your teammates", - "Violation/IntentionalTeamKill/Warning": "Your account will be blocked if you continue killing your teammates at round start", "Violation/TeamKill/Warning": "Your account will be blocked if you continue killing your teammates", "Vital mod weapon in hands": "Silah elindeyken ana parçaları modifiye edemezsin.", "Vital parts": "Hayati parçalar", "Vitality": "Canlılık", - "VitalityBuffBleedChanceRed": "Kanama şansını [{0:0.#%}] azaltır", + "VitalityBuffBleedChanceRed": "Kanama şansını [{0:0%}] azaltır", "VitalityBuffBleedStop": "Bütün kanamalar kendiliğinden duracaktır", "VitalityBuffRegeneration": "Savaşta sağlık yenilenmesini artırır", - "VitalityBuffSurviobilityInc": "Bir uzvun kaybedilmesinden kaynaklanan ölüm şansını [{0:0.#%}] azaltır", + "VitalityBuffSurviobilityInc": "Bir uzvun kaybedilmesinden kaynaklanan ölüm şansını [{0:0%}] azaltır", "VitalityDescription": "Canlılık, vücudun bir kısmındaki kritik hasarın neden olduğu kanama ve ani ölüm olasılığını azaltarak yaralanma sonrasında hayatta kalma şansını artırır.", - "VitalityLevelingUpDescription": "The Vitality skill is improved by sustaining various bleedings and injuries.", "Voice": "Karakteri sesi", "Voice 1": "Ses 1", "Voice 2": "Ses 2", @@ -15408,21 +15303,20 @@ "WeaponBuild/SetNameWindowPlaceholder": "enter preset name", "WeaponDeteriorationChanceReduce": "Onarım sırasında aşınma olasılığını [{0:0%}] azaltır", "WeaponDoubleMastering": "Uzmanlaşmayı iki katına çıkartır", - "WeaponDurabilityLossOnShotReduce": "Atış sırasında silahın aşınmasını [{0:0.#%}] azaltır", - "WeaponErgonomicsBuff": "Silah ergonomisini [{0:0.#%}] artırır", + "WeaponDurabilityLossOnShotReduce": "Atış sırasında silahın aşınmasını [{0:0%}] azaltır", + "WeaponErgonomicsBuff": "Silah ergonomisini [{0:0%}] artırır", "WeaponJammed": "SİLAH SIKIŞMIŞ", "WeaponModding": "Silah Özelleştirmesi", "WeaponModdingDescription": "Basit silah modlaması yeteneği, ergonomiyi artırır ve susturucuların aşınma hızını azaltır.", "WeaponPunch": "Dipçik darbesi", - "WeaponRecoilBuff": "Silah geri tepmesini [{0:0.#%}] azaltır", - "WeaponReloadBuff": "Yeniden yükleme hızını [{0:0.#%}] artırır", - "WeaponStiffHands": "Silah ergonomisini [{0:0.#%}] artırır", - "WeaponSwapBuff": "Silah değiştirme hızını [{0:0.#%}] artırır", + "WeaponRecoilBuff": "Silah geri tepmesini [{0:0%}] azaltır", + "WeaponReloadBuff": "Yeniden yükleme hızını [{0:0%}] artırır", + "WeaponStiffHands": "Silah ergonomisini [{0:0%}] artırır", + "WeaponSwapBuff": "Silah değiştirme hızını [{0:0%}] artırır", "WeaponTreatment": "Silah Bakımı", "WeaponTreatmentDescription": "Silah servis ve bakım becerileri.", - "WeaponTreatmentLevelingUpDescription": "The Weapon Maintenance skill is improved by repairing weapons with repair kits.", "WearAmountRepairGunsReducePerLevel": "Tamir kitleri ile tamir edilirken oluşan aşınmayı azaltır", - "WearChanceRepairGunsReduceEliteLevel": "Onarım kitlerini kullanırken aşınma şansını [50%] azaltır", + "WearChanceRepairGunsReduceEliteLevel": "Onarım kitlerini kullanırken aşınma şansını %50 azaltır", "Weather conditions": "Hava koşulları", "WeightLimit": "Ağırlık limiti", "Welcome screen description": "Escape From Tarkov'a Hoşgeldiniz!\nBu oyunda, hayatınız için ve Rusya'nın Norvinsk bölgesinde bulunan, kaosun eşiğinde ve medeniyetin alacakaranlığındaki Tarkov Şehri'nin tehlikelerine karşı mücadele etmek zorundasın. Karakterin, \"Kontrat Savaşları\" sonrası olayların girdabına yakalanmış, PMC (Private Military Company - Özel Askeri Birlik)'nin sözleşmeli bir operatörüdür. Bölge mühürlenmiş, operasyon komuta merkezin cevap vermemekte ve önceki görevinin bir amacı kalmamıştır. Artık herkesin kendi amaçları var - adapte ol ve hayatta kal, ganimetini koru ve kuşatmadan sağ kurtul.\n\n\nHer bir oyun periyodunda, ölmeye ve üzerindeki her şeyi kaybetmeye hazırlıklı ol. İnternet bağlantındaki her düşüş yada donanımsal bağlantı hatasının oyundan atılmana, ardından karakterinin ölmesine ve üzerinde getirdiğin yada o oyun sırasında bulduğun bütün malzemenin kaybolmasına neden olacağını sakın aklından çıkarma.\n\nEvet, büyük olasılıkla ve sık sık öleceksin. Ama unutma - Bu sadece bir oyun.\nBol Şans!", @@ -15645,8 +15539,6 @@ "arena/career/teamFightStats/winrat": "Kazanma oranı, %", "arena/career/teamFightStats/wins": "Zaferler", "arena/career/teamFightStats/winsWithFavPreset": "Favori ön ayarlarla kazanılan maçlar", - "arena/customGames/create/samePresets": "Duplicate presets:", - "arena/customGames/create/setSamePresets": "Allow duplicate presets", "arena/customGames/invite/message{0}": "ÖZEL OYUN DAVETİ {0}", "arena/customGames/notify/GameRemoved": "Oda dağıtıldı", "arena/customgames/errors/notification/gamealreadystarted": "Oyun zaten başlamış", @@ -15708,7 +15600,6 @@ "arena/tooltip/OverallMatches": "Total number of ranked and unranked matches played.", "arena/tooltip/Presets": "Presets", "arena/tooltip/countGlp": "Toplam ARP (Arena İtibar Puanı) puanınız. Bu, dereceli oyun modlarında elde ettiğiniz derecelendirmeyi belirleyen bir istatistiktir. Eşit beceriye sahip oyuncularla eşleşmenin yanı sıra yeni rütbelerin ve ön ayarların kilidini açmak için kullanılır.", - "arena/tooltip/dailyExpBonus": "You will receive a double experience bonus on your first match of the day. Applies to each class separately.", "arena/tooltip/friends": "Arkadaşlar", "arena/tooltip/kdRatio": "Dereceli ve Derecesiz maçlardaki tüm öldürme ve ölümlerden hesaplanan genel Öldürme/Ölme oranınız. Yalnızca oyuncu öldürmeleri sayılır.", "arena/tooltip/leftGlp": "Bir sonraki seviyeye ulaşmak için gereken ARP miktarı.", @@ -15716,7 +15607,6 @@ "arena/tooltip/moneyRubles": "Ruble, Ön ayarları satın almak için kullanılır ve Arena'daki zaferler karşılığında kazanılır.", "arena/tooltip/ratingPlace": "Skor tablosundaki konumunuz.", "arena/tooltip/settings": "Ayarlar", - "arena/tooltip/skillsLocked": "All character skills are locked to level 30.", "arena/tooltip/sourcesGlp": "Kazanılan ARP:", "arena/tooltip/winMatches": "Dereceli ve derecesiz maçlardaki toplam kazanılan oyun sayısı.", "arena/tooltip/winRate": "Sıralamalı ve sıralamasız maçlardaki tüm galibiyet ve yenilgilerden hesaplanan genel galibiyet oranınız.", @@ -16370,7 +16260,7 @@ "scav_e6": "Basement Entrance", "scav_e7": "Cardinal Apartman Kompleksi otoparkı", "scav_e8": "Klimov st.Ticaret Merkezi çıkışı", - "searchspeed": "Arama hızını [{0:0.#%}] artırır", + "searchspeed": "Arama hızını [{0:0%}] artırır", "sec": "sn", "select weapon body for the build": "ŞABLON İÇİN SİLAH GÖVDESİ SEÇ", "semiauto": "Yarı otomatik", @@ -16450,8 +16340,6 @@ "{0} GroupPlayerBlocking/MatchLeave": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for quitting a game", "{0} GroupPlayerBlocking/NotAcceptedMatch": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for failing to accept a match", "{0} GroupPlayerBlocking/TeamKill": "Game mode temporarily blocked due to one of the group members ({0}) being blocked for repeated teamkills", - "{0} Violation/IntentionalTeamDamage/Blocking": "Player {0} has been removed from the match and received a penalty for shooting teammates", - "{0} Violation/IntentionalTeamKill/Blocking": "Player {0} has been removed from the match and received a penalty for teamkilling at round start", "{0} Violation/TeamKill/Blocking": "Player {0} has been removed from the match and received a penalty for teamkilling", "{0} added you to the ignore list": "{0} engellenenler listesine eklendi", "{0} ask to cooperate": "{0} sizi selamlıyor", @@ -16893,8 +16781,6 @@ "64b7d7f23d81c8a9ee03ac27 Description": "", "653e6760052c01c1c805532f Name": "Ground Zero", "653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", - "65b8d6f5cdde2479cb2a3125 Name": "Ground Zero", - "65b8d6f5cdde2479cb2a3125 Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.", "5464e0404bdc2d2a708b4567 Name": "Birleşmiş Güvenlik", "5464e0404bdc2d2a708b4567 Description": "USEC özel askeri şirketi iki şirketin birleşmesiyle 1999 yılında kuruldu. KerniSEC ve Safe Sea 2004 yılında, TerraGroup International Holding'in bir temsilcisi USEC ile iletişime geçti ve ardından USEC, esasen dünyanın her yerinde ofisleri ve 7500'den fazla güçlü personeli olan, holdingin özel bir ordusu haline geldi.", "5464e0454bdc2d06708b4567 Name": "AYI", @@ -18874,7 +18760,6 @@ "629f10b114061f3074380298": "Lighthouse'da sürgülü tüfek kullanırken PMC ajanlarını kafadan vurarak ortadan kaldırın ", "63aec6f256503c322a190374": "Streets of Tarkov'da sürgülü tüfek kullanırken PMC ajanlarını kafadan vurarak ortadan kaldırın", "64b694c8a857ea477002a408": "Interchange'te sürgülü tüfek kullanırken PMC ajanlarını kafadan vurarak ortadan kaldırın", - "65e0812209dffc3fd97b99e8": "Eliminate PMC operatives with a headshot while using a bolt-action rifle on Ground Zero", "5c0bde0986f77479cf22c2f8 acceptPlayerMessage": "", "5c0bde0986f77479cf22c2f8 declinePlayerMessage": "", "5c0bde0986f77479cf22c2f8 completePlayerMessage": "", @@ -18956,7 +18841,6 @@ "5c20ce1786f77453c56d6397": "", "5c20ce2c86f774337f427599": "", "63aec4fe6d6c3377e64b9f39": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Streets of Tarkov", - "65e08aa9f5879b2586d5fd4c": "Eliminate Scavs while wearing a UN uniform (UNTAR helmet, MF-UNTAR body armor, M4A1 rifle) on Ground Zero", "5c0d4c12d09282029f539173 acceptPlayerMessage": "", "5c0d4c12d09282029f539173 declinePlayerMessage": "", "5c0d4c12d09282029f539173 completePlayerMessage": "", @@ -18976,8 +18860,6 @@ "5dc984ae4b68b15f4825cea5": "Rezerv'de hayatta kal ve bölgeden \"Hayatta Kalarak\" durumu ile ayrıl", "629f08e7d285f377953b2af1": "Deniz Feneri'nde hayatta kal ve bölgeden \"Hayatta Kalarak\" durumu ile ayrıl", "63aec66556503c322a190372": "Survive and extract from Streets of Tarkov with the \"Survived\" exit status", - "65e0890851cc48a26928b4e4": "Выйти с локации Эпицентр со статусом \"Выжил\"", - "65e08b7a2f82d184fcf9ef61": "Survive and extract from Ground Zero with the \"Survived\" exit status", "5c0d4e61d09282029f53920e acceptPlayerMessage": "", "5c0d4e61d09282029f53920e declinePlayerMessage": "", "5c0d4e61d09282029f53920e completePlayerMessage": "", @@ -19056,7 +18938,6 @@ "5c1248ef86f77428266184c2": "Therapist'in seviyesini 4'e yükselt", "5c1fab8686f77410894b63f7": "", "5c1fab9286f77407e903a60d": "", - "65e08db1a97b2cd4e452432d": "Reach level 4 loyalty with Jaeger", "5c12452c86f7744b83469073 acceptPlayerMessage": "", "5c12452c86f7744b83469073 declinePlayerMessage": "", "5c12452c86f7744b83469073 completePlayerMessage": "", @@ -20314,8 +20195,6 @@ "60ec2b04bc9a8b34cd453b81": "Görev aktifken ölmemelisin ve baskından çıkmamalısın (Durum: Öldürüldü, çıkış yaptı, kayıp)", "610144955a0e3804617cd69d": "", "6101449a50bb44526c34c81d": "", - "65e09b343458a36a766837c7": "Eliminate PMC operatives in Ground Zero", - "65e19abadf39d26751b3bb1e": "Eliminate PMC operatives on Ground Zero", "60e71b62a0beca400d69efc4 acceptPlayerMessage": "", "60e71b62a0beca400d69efc4 declinePlayerMessage": "", "60e71b62a0beca400d69efc4 completePlayerMessage": "", @@ -21339,7 +21218,6 @@ "6397a5cbdcdd126fef173f36": "High-rise Taxi V-Ex ile Streets of Tarkov'dan hayatta kalın ve kurtulun", "6397a6942e519e69d2139b25": "MS2000 Markalı ilk Patrol-A zırhlı aracı Tarkov Sokaklarında bulun ve işaretleyin", "6397a7ce706b793c7d6094c9": "MS2000 Markalı ikinci Patrol-A zırhlı aracı Tarkov Sokaklarında bulun ve işaretleyin", - "65e09d3f0d1442c78274027e": "Survive and extract from Ground Zero through Police Cordon V-Ex", "63966faeea19ac7ed845db2c acceptPlayerMessage": "", "63966faeea19ac7ed845db2c declinePlayerMessage": "", "63966faeea19ac7ed845db2c completePlayerMessage": "Sürücülerle iletişim kurmayı başardım. Bu kolay olmadı ama ilginç bir şey ortaya çıkardım.", @@ -21584,7 +21462,6 @@ "63a9b591da7999196148ba63": "Kavşakta yakın dövüş silahları kullanırken Scav'ları ortadan kaldırın", "63a9b5b2813bba58a50c9eeb": "Gümrükte yakın dövüş silahları kullanırken Scav'ları ortadan kaldırın", "63a9b5f064b9631d9178276b": "Reserv'de yakın dövüş silahları kullanırken Scav'ları ortadan kaldırın", - "65e0a329893b7bf535c6a9fd": "Eliminate Scavs while using melee weapons on Ground Zero", "63a9b36cc31b00242d28a99f acceptPlayerMessage": "", "63a9b36cc31b00242d28a99f declinePlayerMessage": "", "63a9b36cc31b00242d28a99f completePlayerMessage": "", @@ -21691,8 +21568,8 @@ "64e7b971f9d6fa49d6769b44 successMessageText": "Endişelenecek bir pislik daha azaldı. İyi iş çıkardın evlat.", "64e7ba17220ee966bf425ecb": "Kaban'ı bulun ve ortadan kaldırın", "64e7ba4a6393886f74119f3d": "Tarkov Sokakları'ndaki araba galerisindeki Kaban'ın korumalarını ortadan kaldırın", - "65bb698050fd7c32f5d666d1": "Locate and eliminate Basmach", - "65bb6a61a845e4eb51390b4e": "Locate and eliminate Gus", + "65bb698050fd7c32f5d666d1": "Find and eliminate Basmach", + "65bb6a61a845e4eb51390b4e": "Find and eliminate Gus", "64e7b971f9d6fa49d6769b44 acceptPlayerMessage": "", "64e7b971f9d6fa49d6769b44 declinePlayerMessage": "", "64e7b971f9d6fa49d6769b44 completePlayerMessage": "", diff --git a/project/assets/database/locations/laboratory/base.json b/project/assets/database/locations/laboratory/base.json index ed7bd96a..8a1c904c 100644 --- a/project/assets/database/locations/laboratory/base.json +++ b/project/assets/database/locations/laboratory/base.json @@ -1,5252 +1,4397 @@ { - "AccessKeys": [ - "5c94bbff86f7747ee735c08f" - ], - "Area": 0, - "AveragePlayTime": 30, - "AveragePlayerLevel": 45, - "Banners": [ - { - "id": "5805f617245977100b2c1f41", - "pic": { - "path": "CONTENT/banners/tglabs.jpg", + "AccessKeys": [ + "5c94bbff86f7747ee735c08f" + ], + "Area": 0, + "AveragePlayTime": 30, + "AveragePlayerLevel": 45, + "Banners": [{ + "id": "5805f617245977100b2c1f41", + "pic": { + "path": "CONTENT/banners/tglabs.jpg", + "rcid": "" + } + }, { + "id": "5807be8924597742c603fa19", + "pic": { + "path": "CONTENT/banners/banner_tarkov.jpg", + "rcid": "" + } + }, { + "id": "5c1b857086f77465f465faa4", + "pic": { + "path": "CONTENT/banners/banner_scavraider.jpg", + "rcid": "" + } + }, { + "id": "64c0acf85174e095610734a0", + "pic": { + "path": "CONTENT/banners/banner_sherpa.jpg", + "rcid": "" + } + } + ], + "BossLocationSpawn": [{ + "BossChance": 55, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneFloor1", + "Delay": 0, + "RandomTimeSpawn": false, + "Time": 900, + "TriggerId": "", + "TriggerName": "" + }, { + "BossChance": 55, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneFloor2", + "Delay": 0, + "RandomTimeSpawn": false, + "Time": 300, + "TriggerId": "", + "TriggerName": "" + }, { + "BossChance": 45, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneBasement", + "Delay": 0, + "RandomTimeSpawn": false, + "Time": 450, + "TriggerId": "autoId_00008_EXFIL", + "TriggerName": "interactObject" + }, { + "BossChance": 45, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneBasement", + "Delay": 0, + "RandomTimeSpawn": false, + "Time": 800, + "TriggerId": "autoId_00010_EXFIL", + "TriggerName": "interactObject" + }, { + "BossChance": 40, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneBasement", + "Delay": 0, + "RandomTimeSpawn": false, + "Time": -1, + "TriggerId": "autoId_00007_EXFIL", + "TriggerName": "interactObject" + }, { + "BossChance": 45, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneFloor2", + "Delay": 0, + "RandomTimeSpawn": false, + "Time": -1, + "TriggerId": "autoId_00007_EXFIL", + "TriggerName": "interactObject" + }, { + "BossChance": 35, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneFloor1", + "Delay": 0, + "RandomTimeSpawn": false, + "Time": 600, + "TriggerId": "autoId_00632_EXFIL", + "TriggerName": "interactObject" + }, { + "BossChance": 35, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneFloor2", + "Delay": 0, + "RandomTimeSpawn": false, + "Time": 600, + "TriggerId": "autoId_00632_EXFIL", + "TriggerName": "interactObject" + }, { + "BossChance": 35, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneFloor1", + "Delay": 0, + "RandomTimeSpawn": false, + "Time": -1, + "TriggerId": "autoId_00012_EXFIL", + "TriggerName": "interactObject" + }, { + "BossChance": 35, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneFloor2", + "Delay": 0, + "RandomTimeSpawn": false, + "Time": -1, + "TriggerId": "autoId_00012_EXFIL", + "TriggerName": "interactObject" + }, { + "BossChance": 35, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneFloor1", + "Delay": 0, + "RandomTimeSpawn": false, + "Time": 1200, + "TriggerId": "autoId_00014_EXFIL", + "TriggerName": "interactObject" + }, { + "BossChance": 35, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,2,2,1,1,2,2,2,2,1,1,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneFloor2", + "Delay": 0, + "RandomTimeSpawn": false, + "Time": 1200, + "TriggerId": "autoId_00014_EXFIL", + "TriggerName": "interactObject" + }, { + "BossChance": 35, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,2,2,1,1,2,2,2,2,1,1,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneFloor1", + "Delay": 0, + "RandomTimeSpawn": false, + "Time": -1, + "TriggerId": "autoId_00009_EXFIL", + "TriggerName": "interactObject" + }, { + "BossChance": 35, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneFloor2", + "Delay": 0, + "RandomTimeSpawn": false, + "Time": -1, + "TriggerId": "autoId_00009_EXFIL", + "TriggerName": "interactObject" + }, { + "BossChance": 40, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneGate2", + "Delay": 8, + "RandomTimeSpawn": false, + "Time": -1, + "TriggerId": "autoId_00014_EXFIL", + "TriggerName": "interactObject" + }, { + "BossChance": 45, + "BossDifficult": "normal", + "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", + "BossEscortDifficult": "normal", + "BossEscortType": "pmcBot", + "BossName": "pmcBot", + "BossPlayer": false, + "BossZone": "BotZoneGate1", + "Delay": 8, + "RandomTimeSpawn": false, + "Time": -1, + "TriggerId": "autoId_00632_EXFIL", + "TriggerName": "interactObject" + } + ], + "BotAssault": 100, + "BotEasy": 0, + "BotHard": 70, + "BotImpossible": 0, + "BotLocationModifier": { + "AccuracySpeed": 1, + "DistToActivate": 140, + "DistToPersueAxemanCoef": 1, + "DistToSleep": 160, + "GainSight": 1, + "KhorovodChance": 0, + "MagnetPower": 10, + "MarksmanAccuratyCoef": 1, + "Scattering": 1, + "VisibleDistance": 1 + }, + "BotMarksman": 0, + "BotMax": 14, + "BotMaxPlayer": 14, + "BotMaxTimePlayer": 1000, + "BotNormal": 30, + "BotSpawnCountStep": 3, + "BotSpawnPeriodCheck": 15, + "BotSpawnTimeOffMax": 30, + "BotSpawnTimeOffMin": 20, + "BotSpawnTimeOnMax": 330, + "BotSpawnTimeOnMin": 300, + "BotStart": 10, + "BotStartPlayer": 15, + "BotStop": 1400, + "Description": "Laboratory description", + "DisabledForScav": true, + "DisabledScavExits": "", + "EnableCoop": true, + "Enabled": true, + "EscapeTimeLimit": 35, + "EscapeTimeLimitCoop": 30, + "GenerateLocalLootCache": true, + "GlobalContainerChanceModifier": 1, + "GlobalLootChanceModifier": 0.65, + "IconX": 700, + "IconY": 800, + "Id": "laboratory", + "Insurance": false, + "IsSecret": true, + "Locked": false, + "Loot": [], + "MatchMakerMinPlayersByWaitTime": [{ + "minPlayers": 7, + "time": 60 + }, { + "minPlayers": 6, + "time": 70 + }, { + "minPlayers": 5, + "time": 120 + }, { + "minPlayers": 4, + "time": 180 + }, { + "minPlayers": 3, + "time": 250 + }, { + "minPlayers": 2, + "time": 330 + }, { + "minPlayers": 1, + "time": 420 + } + ], + "MaxBotPerZone": 5, + "MaxCoopGroup": 10, + "MaxDistToFreePoint": 900, + "MaxPlayers": 10, + "MinDistToExitPoint": 30, + "MinDistToFreePoint": 35, + "MinMaxBots": [], + "MinPlayerLvlAccessKeys": 0, + "MinPlayers": 8, + "Name": "Laboratory", + "NewSpawn": false, + "NonWaveGroupScenario": { + "Chance": 50, + "Enabled": false, + "MaxToBeGroup": 3, + "MinToBeGroup": 2 + }, + "OcculsionCullingEnabled": true, + "OfflineNewSpawn": false, + "OfflineOldSpawn": true, + "OldSpawn": true, + "OpenZones": "BotZoneFloor1,BotZoneFloor2", + "PlayersRequestCount": -1, + "PmcMaxPlayersInGroup": 5, + "Preview": { + "path": "", "rcid": "" - } }, - { - "id": "5807be8924597742c603fa19", - "pic": { - "path": "CONTENT/banners/banner_tarkov.jpg", - "rcid": "" - } - }, - { - "id": "5c1b857086f77465f465faa4", - "pic": { - "path": "CONTENT/banners/banner_scavraider.jpg", - "rcid": "" - } - }, - { - "id": "64c0acf85174e095610734a0", - "pic": { - "path": "CONTENT/banners/banner_sherpa.jpg", - "rcid": "" - } - } - ], - "BossLocationSpawn": [ - { - "BossChance": 60, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor1", - "Delay": 0, - "RandomTimeSpawn": false, - "Time": 900, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 60, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor2", - "Delay": 0, - "RandomTimeSpawn": false, - "Time": 300, - "TriggerId": "", - "TriggerName": "" - }, - { - "BossChance": 45, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneBasement", - "Delay": 0, - "RandomTimeSpawn": false, - "Time": 450, - "TriggerId": "autoId_00008_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 45, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneBasement", - "Delay": 0, - "RandomTimeSpawn": false, - "Time": 800, - "TriggerId": "autoId_00010_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 40, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneBasement", - "Delay": 0, - "RandomTimeSpawn": false, - "Time": -1, - "TriggerId": "autoId_00007_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 45, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor2", - "Delay": 0, - "RandomTimeSpawn": false, - "Time": -1, - "TriggerId": "autoId_00007_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor1", - "Delay": 0, - "RandomTimeSpawn": false, - "Time": 600, - "TriggerId": "autoId_00632_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor2", - "Delay": 0, - "RandomTimeSpawn": false, - "Time": 600, - "TriggerId": "autoId_00632_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor1", - "Delay": 0, - "RandomTimeSpawn": false, - "Time": -1, - "TriggerId": "autoId_00012_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor2", - "Delay": 0, - "RandomTimeSpawn": false, - "Time": -1, - "TriggerId": "autoId_00012_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor1", - "Delay": 0, - "RandomTimeSpawn": false, - "Time": 1200, - "TriggerId": "autoId_00014_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,2,2,1,1,2,2,2,2,1,1,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor2", - "Delay": 0, - "RandomTimeSpawn": false, - "Time": 1200, - "TriggerId": "autoId_00014_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,2,2,1,1,2,2,2,2,1,1,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor1", - "Delay": 0, - "RandomTimeSpawn": false, - "Time": -1, - "TriggerId": "autoId_00009_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 35, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneFloor2", - "Delay": 0, - "RandomTimeSpawn": false, - "Time": -1, - "TriggerId": "autoId_00009_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 40, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneGate2", - "Delay": 8, - "RandomTimeSpawn": false, - "Time": -1, - "TriggerId": "autoId_00014_EXFIL", - "TriggerName": "interactObject" - }, - { - "BossChance": 45, - "BossDifficult": "normal", - "BossEscortAmount": "1,1,1,1,2,2,2,1,1,1,1,2,2,2,3", - "BossEscortDifficult": "normal", - "BossEscortType": "pmcBot", - "BossName": "pmcBot", - "BossPlayer": false, - "BossZone": "BotZoneGate1", - "Delay": 8, - "RandomTimeSpawn": false, - "Time": -1, - "TriggerId": "autoId_00632_EXFIL", - "TriggerName": "interactObject" - } - ], - "BotAssault": 100, - "BotEasy": 0, - "BotHard": 70, - "BotImpossible": 0, - "BotLocationModifier": { - "AccuracySpeed": 1, - "DistToActivate": 140, - "DistToPersueAxemanCoef": 1, - "DistToSleep": 160, - "GainSight": 1, - "KhorovodChance": 0, - "MagnetPower": 10, - "MarksmanAccuratyCoef": 1, - "Scattering": 1, - "VisibleDistance": 1 - }, - "BotMarksman": 0, - "BotMax": 14, - "BotMaxPlayer": 14, - "BotMaxTimePlayer": 1000, - "BotNormal": 30, - "BotSpawnCountStep": 3, - "BotSpawnPeriodCheck": 15, - "BotSpawnTimeOffMax": 30, - "BotSpawnTimeOffMin": 20, - "BotSpawnTimeOnMax": 330, - "BotSpawnTimeOnMin": 300, - "BotStart": 10, - "BotStartPlayer": 15, - "BotStop": 1400, - "Description": "Laboratory description", - "DisabledForScav": true, - "DisabledScavExits": "", - "EnableCoop": true, - "Enabled": true, - "EscapeTimeLimit": 35, - "EscapeTimeLimitCoop": 30, - "GenerateLocalLootCache": true, - "GlobalContainerChanceModifier": 1, - "GlobalLootChanceModifier": 0.65, - "IconX": 700, - "IconY": 800, - "Id": "laboratory", - "Insurance": false, - "IsSecret": true, - "Locked": false, - "Loot": [], - "MatchMakerMinPlayersByWaitTime": [ - { - "minPlayers": 7, - "time": 60 - }, - { - "minPlayers": 6, - "time": 70 - }, - { - "minPlayers": 5, - "time": 120 - }, - { - "minPlayers": 4, - "time": 180 - }, - { - "minPlayers": 3, - "time": 250 - }, - { - "minPlayers": 2, - "time": 330 - }, - { - "minPlayers": 1, - "time": 420 - } - ], - "MaxBotPerZone": 5, - "MaxCoopGroup": 10, - "MaxDistToFreePoint": 900, - "MaxPlayers": 10, - "MinDistToExitPoint": 30, - "MinDistToFreePoint": 35, - "MinMaxBots": [], - "MinPlayerLvlAccessKeys": 0, - "MinPlayers": 8, - "Name": "Laboratory", - "NewSpawn": false, - "NonWaveGroupScenario": { - "Chance": 50, - "Enabled": false, - "MaxToBeGroup": 3, - "MinToBeGroup": 2 - }, - "OcculsionCullingEnabled": true, - "OfflineNewSpawn": false, - "OfflineOldSpawn": true, - "OldSpawn": true, - "OpenZones": "BotZoneFloor1,BotZoneFloor2", - "PlayersRequestCount": -1, - "PmcMaxPlayersInGroup": 5, - "Preview": { - "path": "", - "rcid": "" - }, - "RequiredPlayerLevelMax": 100, - "RequiredPlayerLevelMin": 0, - "Rules": "Normal", - "SafeLocation": false, - "ScavMaxPlayersInGroup": 4, - "Scene": { - "path": "maps/laboratory_preset.bundle", - "rcid": "laboratory.ScenesPreset.asset" - }, - "SpawnPointParams": [ - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0043f275-0dc2-4c04-87a1-bd90cbaf183a", - "Infiltration": "Common", - "Position": { - "x": -166.45, - "y": 0.06, - "z": -322.43 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "00a92ab8-28d7-4c1c-87a5-ef1c480e9900", - "Infiltration": "Common", - "Position": { - "x": -118.336, - "y": -4.025, - "z": -403.071 - }, - "Rotation": 88.9786758, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "0171ec0f-4050-4303-8504-b742922cf80b", - "Infiltration": "", - "Position": { - "x": -255.632, - "y": 4.146, - "z": -376.374 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "01d14f42-45de-45fb-be52-bfff19f3a470", - "Infiltration": "Common", - "Position": { - "x": -279.05, - "y": 0.06, - "z": -338.94 - }, - "Rotation": 101.11, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "037af7bf-1a89-454d-af5c-83df829fbde0", - "Infiltration": "Common", - "Position": { - "x": -115.37, - "y": -4.015, - "z": -321.759 - }, - "Rotation": 268.597656, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "037b1766-b66b-4c3e-adf1-390f67dc70bb", - "Infiltration": "Common", - "Position": { - "x": -116.55, - "y": 0.01, - "z": -253.94 - }, - "Rotation": 189.27, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "04277419-2f99-4283-a180-acb761f90c72", - "Infiltration": "Common", - "Position": { - "x": -231.985, - "y": 0.09, - "z": -418.4 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0483afba-89af-43a9-b2d3-47e2905440c5", - "Infiltration": "Common", - "Position": { - "x": -276.03, - "y": -3.99, - "z": -358.44 - }, - "Rotation": 90.03, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "04ca5c72-7c54-43cf-9150-6ddcaedf9808", - "Infiltration": "Common", - "Position": { - "x": -175.022, - "y": 0.099, - "z": -311.283 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "04f71bcb-922f-48bc-992b-3a64a20d589c", - "Infiltration": "", - "Position": { - "x": -178.15, - "y": 0.114, - "z": -415.292 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "07863ac5-27c5-4001-85a2-13356eda6133", - "Infiltration": "", - "Position": { - "x": -116.4, - "y": 0.004, - "z": -256.52 - }, - "Rotation": 263.038635, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "081425b7-a633-420b-ae62-da220db1a651", - "Infiltration": "Common", - "Position": { - "x": -174.97, - "y": 0.08, - "z": -264.27 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "08633a18-3bbd-4a4b-934a-b51e049817b1", - "Infiltration": "Common", - "Position": { - "x": -120.64, - "y": 0.01, - "z": -256.73 - }, - "Rotation": 169.74, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneGate1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "0b5e336a-2cb6-4619-b9a5-07ff0afad1ee", - "Infiltration": "", - "Position": { - "x": -183.645, - "y": 2.711, - "z": -227.118988 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0d7728c8-59c8-493a-8849-fa22a1346fcd", - "Infiltration": "Common", - "Position": { - "x": -254.79, - "y": -4.03, - "z": -298.46 - }, - "Rotation": 185.57, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "0f8dedb9-f5f2-4c18-af92-968b0b22e54b", - "Infiltration": "Common", - "Position": { - "x": -275.92, - "y": -4, - "z": -355.32 - }, - "Rotation": 73.55, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "12055345-4522-4b48-b08a-6a517bbf7c61", - "Infiltration": "Common", - "Position": { - "x": -250.87, - "y": 4.14, - "z": -281.79 - }, - "Rotation": 92.06, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "125f7075-b7c9-4d29-be15-a8e33b9c5d6f", - "Infiltration": "Common", - "Position": { - "x": -173.85, - "y": 0.08, - "z": -264.32 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "13ea441c-75e5-48a2-9d87-396590d9bc98", - "Infiltration": "Common", - "Position": { - "x": -276.29, - "y": -3.99, - "z": -362.3 - }, - "Rotation": 92.55, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "15c0ac46-c1e4-498b-9466-1c071554be06", - "Infiltration": "", - "Position": { - "x": -116.011, - "y": 0.036, - "z": -336.378 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "16f8ebd0-39b4-4fe2-8128-ed2bc82008a1", - "Infiltration": "Common", - "Position": { - "x": -118.109, - "y": -4.025, - "z": -401.386 - }, - "Rotation": 88.9786758, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1780c396-0394-48cf-8871-a6feae1bc4b7", - "Infiltration": "Common", - "Position": { - "x": -170.74, - "y": -3.99, - "z": -344.55 - }, - "Rotation": 89.61, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "19383115-da70-4cc5-8ab7-d80bf8045113", - "Infiltration": "Common", - "Position": { - "x": -171.39, - "y": 0.12, - "z": -332.06 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "19e75b93-4470-4d65-b5f8-e3a09fb4a71d", - "Infiltration": "", - "Position": { - "x": -127.768, - "y": 4.2, - "z": -382.271973 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1d148166-42cd-4c7b-8b33-d93682121c2f", - "Infiltration": "Common", - "Position": { - "x": -171.41, - "y": 0.08, - "z": -264.04 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1d3d7178-c84f-47b2-9ea6-4cd11449dbfa", - "Infiltration": "Common", - "Position": { - "x": -115.504, - "y": -4.039, - "z": -319.677 - }, - "Rotation": 275.760376, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "1d66c992-d022-490d-a451-18d19c284988", - "Infiltration": "Common", - "Position": { - "x": -216.856, - "y": -3.997, - "z": -386.666 - }, - "Rotation": 270.60022, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "223b6e4d-2ead-45eb-ad5f-35abd028d2c3", - "Infiltration": "Common", - "Position": { - "x": -206.699, - "y": 4.16135359, - "z": -291.862 - }, - "Rotation": 89.0511551, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "22c00064-df0c-474b-b479-918175a539a7", - "Infiltration": "Common", - "Position": { - "x": -165.45, - "y": 0.07, - "z": -332.65 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "242085cb-6ffa-4aa5-8268-dc8b138c7b74", - "Infiltration": "Common", - "Position": { - "x": -118.503, - "y": -4.025, - "z": -399.522 - }, - "Rotation": 88.9786758, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "24453a69-8df7-47cf-8449-b56ef868be5c", - "Infiltration": "Common", - "Position": { - "x": -126.86, - "y": -4.97, - "z": -266.17 - }, - "Rotation": 270.47, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "25692e11-5450-4b6f-9820-fae868e113bf", - "Infiltration": "Common", - "Position": { - "x": -233.051, - "y": 0.09, - "z": -418.383 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "293e014a-512d-4fe3-a3fd-1a40611e90da", - "Infiltration": "Common", - "Position": { - "x": -118.224, - "y": -4.015, - "z": -326.516 - }, - "Rotation": 16.0527267, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "29b9975d-3abf-4478-affb-cd0d29b4f3a5", - "Infiltration": "Common", - "Position": { - "x": -110.12, - "y": 4.2, - "z": -413.71 - }, - "Rotation": 181.81, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "2f66dafc-a2f1-4283-a383-aa64c84f6da7", - "Infiltration": "Common", - "Position": { - "x": -279.44, - "y": -3.99, - "z": -348.87 - }, - "Rotation": 73.55, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "32e05b2a-9847-45b8-b04b-36bafe5879f1", - "Infiltration": "Common", - "Position": { - "x": -170.86, - "y": -3.99, - "z": -340.1 - }, - "Rotation": 89.61, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "330b076f-bd90-494d-8c3d-bed9e5959378", - "Infiltration": "", - "Position": { - "x": -202.231, - "y": 0.0499999523, - "z": -393.883972 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "35beb4da-36a6-48e3-bbd1-810126872d3c", - "Infiltration": "Common", - "Position": { - "x": -172.66, - "y": 0.08, - "z": -264.14 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "38378dc4-cb6a-4538-9b78-fab68201bfa6", - "Infiltration": "Common", - "Position": { - "x": -234.34, - "y": 0.09, - "z": -419.76 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "3a7f4c28-ea1f-466d-8920-3f2871d69cf3", - "Infiltration": "", - "Position": { - "x": -260.287, - "y": 0.04, - "z": -390.578 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "3d6df899-9a65-48d3-9e55-2664c6c6c4c0", - "Infiltration": "Common", - "Position": { - "x": -168.21, - "y": 0.06, - "z": -417.04 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "3dbca587-2589-4370-9594-407655be3186", - "Infiltration": "", - "Position": { - "x": -134.355011, - "y": 4.181, - "z": -341.102 - }, - "Rotation": 273.155945, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "40b7da99-8f93-4ca6-bb33-c94b8a7c92a7", - "Infiltration": "Common", - "Position": { - "x": -264.74, - "y": -3.99, - "z": -390.32 - }, - "Rotation": 15.050004, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4654cec6-f2e9-4118-830e-d633b39375f4", - "Infiltration": "Common", - "Position": { - "x": -219.157, - "y": -3.997, - "z": -385.369 - }, - "Rotation": 270.60022, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "49367d3d-95f6-4b3f-9406-693ab39259bd", - "Infiltration": "Common", - "Position": { - "x": -122.74, - "y": 8.16, - "z": -333.35 - }, - "Rotation": 267.44, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "4c524643-e17e-4d20-ae81-d47fb4a1701a", - "Infiltration": "Common", - "Position": { - "x": -168.83, - "y": 0.08, - "z": -263.93 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "4cd0a70e-8349-4707-b3f6-4b0d18cf989b", - "Infiltration": "", - "Position": { - "x": -207.064, - "y": 4.207, - "z": -295.159 - }, - "Rotation": 113.883675, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "4e9cd17c-ae56-4408-a308-4b9722e6e344", - "Infiltration": "", - "Position": { - "x": -257.955017, - "y": 0.0090277195, - "z": -385.453 - }, - "Rotation": 184.764816, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "505b3a49-81fd-49e8-8ff1-fbee3af0fadf", - "Infiltration": "Common", - "Position": { - "x": -170.54, - "y": 0.08, - "z": -264.03 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "50bda7e6-480e-412c-a91c-8dda1faffa45", - "Infiltration": "", - "Position": { - "x": -116.089, - "y": 0.036, - "z": -339.412 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "51d82d49-97b2-4fba-b1f8-219b20005c17", - "Infiltration": "", - "Position": { - "x": -205.29, - "y": 0.0499999523, - "z": -390.55 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneGate2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "52005238-4fb5-4775-9052-c1f52bfd1c94", - "Infiltration": "", - "Position": { - "x": -244.101, - "y": 2.664, - "z": -452.923981 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "584031bc-1dbb-4fec-a95f-7297e0b6a540", - "Infiltration": "", - "Position": { - "x": -213.124, - "y": 0.05, - "z": -378.754974 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5aed643f-3714-49fc-bdf8-00168189da61", - "Infiltration": "Common", - "Position": { - "x": -170.58, - "y": 0.06, - "z": -416.83 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5efaabad-3df0-451c-ae8c-df707c90d24f", - "Infiltration": "Common", - "Position": { - "x": -167.87, - "y": 0.06, - "z": -419.56 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5f925d72-bfd0-4add-b89b-9fec63005145", - "Infiltration": "Common", - "Position": { - "x": -166.184, - "y": 0.08, - "z": -263.506 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5f97a1fc-1cc0-4cb6-85dc-ab20c9d90fea", - "Infiltration": "Common", - "Position": { - "x": -278.54, - "y": -4.03, - "z": -352 - }, - "Rotation": 73.55, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "5f9d0c13-d935-48f5-9112-0852d8e8d9e0", - "Infiltration": "Common", - "Position": { - "x": -125.38, - "y": -4.97, - "z": -264.91 - }, - "Rotation": 270.629974, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "604f6db8-2519-42b8-8d45-7b1b1290e97d", - "Infiltration": "Common", - "Position": { - "x": -276.1, - "y": 0.06, - "z": -333.32 - }, - "Rotation": 72.84, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "616552c2-e458-4b8c-b39b-4e26083cd722", - "Infiltration": "Common", - "Position": { - "x": -253.22, - "y": 4.14, - "z": -282.73 - }, - "Rotation": 69.22, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "63a12c08-6718-4344-b9c4-d9c2b0550faa", - "Infiltration": "Common", - "Position": { - "x": -279.36, - "y": 0.06, - "z": -334.88 - }, - "Rotation": 88.69, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "65372346-89b9-4c52-94af-7bb4d474daa5", - "Infiltration": "Common", - "Position": { - "x": -236.02, - "y": 0.09, - "z": -419.81 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "666a2681-4a93-4b9c-b96d-a1419149069d", - "Infiltration": "Common", - "Position": { - "x": -115.122, - "y": -4.015, - "z": -328.625 - }, - "Rotation": 272.3587, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "666b38f8-c232-4b2e-994e-ead3b121990c", - "Infiltration": "Common", - "Position": { - "x": -219.433, - "y": -3.997, - "z": -383.072 - }, - "Rotation": 270.60022, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "66d2a253-d1a0-490c-93d3-b1e3dd589c3d", - "Infiltration": "", - "Position": { - "x": -248.84, - "y": 4.231, - "z": -362.24 - }, - "Rotation": 175.868637, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "66ea0d24-890a-4a5b-a0d1-2e13629f26b7", - "Infiltration": "Common", - "Position": { - "x": -115.164, - "y": -4.015, - "z": -327.156 - }, - "Rotation": 272.3587, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6715c896-cb94-4e04-8cea-06d8dd685f83", - "Infiltration": "Common", - "Position": { - "x": -263, - "y": 0.06, - "z": -388.23 - }, - "Rotation": 176.41, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6ac4a2e0-f06e-4098-908f-c04ebfeada8c", - "Infiltration": "Common", - "Position": { - "x": -253.24, - "y": 4.14, - "z": -279.92 - }, - "Rotation": 101.94, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6b542eec-7db1-48e5-81ff-32af5b120663", - "Infiltration": "Common", - "Position": { - "x": -122.48, - "y": 8.2, - "z": -338.15 - }, - "Rotation": 344.97, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "6e2cf61e-85a6-4cfa-b232-ae4cd892e4e0", - "Infiltration": "Common", - "Position": { - "x": -115.67, - "y": 0.01, - "z": -256.94 - }, - "Rotation": 188.05, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneGate2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "6e35cbe7-b819-40df-9262-656d3ac42a31", - "Infiltration": "", - "Position": { - "x": -215.217, - "y": 2.664, - "z": -448.71 - }, - "Rotation": 181.596954, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "707edb2a-0cbb-4c12-9fc5-49a34af4779d", - "Infiltration": "Common", - "Position": { - "x": -279.1, - "y": 0.06, - "z": -337.01 - }, - "Rotation": 73.88, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "70a6af86-3b7a-4687-8128-ff324774cf6f", - "Infiltration": "Common", - "Position": { - "x": -256.67, - "y": -3.97, - "z": -295.16 - }, - "Rotation": 179.01, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneBasement", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "75a36d48-cf3e-48f6-98cd-ca520bf8ff2d", - "Infiltration": "", - "Position": { - "x": -128.38, - "y": -4.041, - "z": -417.949982 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "75febbcd-6f56-495e-a74a-e93f0f8b7827", - "Infiltration": "Common", - "Position": { - "x": -269.34, - "y": -2.06, - "z": -387.7 - }, - "Rotation": 90.05, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "7716a644-0c23-4f0b-9613-b9fc4767ba35", - "Infiltration": "", - "Position": { - "x": -231.636, - "y": 0.082, - "z": -286.69397 - }, - "Rotation": 164.3535, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7859f63b-aff6-4bb5-9423-1fc08f2120b9", - "Infiltration": "Common", - "Position": { - "x": -177.039, - "y": 0.099, - "z": -312.504 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7a9b1874-adec-4a4a-bcab-04265a114afa", - "Infiltration": "Common", - "Position": { - "x": -122.3, - "y": 8.19, - "z": -336.07 - }, - "Rotation": 348.83, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7b8911d0-dc36-43f1-9058-451f4cc6f362", - "Infiltration": "Common", - "Position": { - "x": -256.56, - "y": 4.14, - "z": -282.41 - }, - "Rotation": 89.19, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "7c978d56-01bd-4010-bf0c-80d4b52aba4a", - "Infiltration": "Common", - "Position": { - "x": -216.98, - "y": -3.997, - "z": -385.218 - }, - "Rotation": 270.60022, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "7eb7a024-be39-49ab-8a3c-82aecf4c1f95", - "Infiltration": "", - "Position": { - "x": -279.611, - "y": 0.078, - "z": -365.445984 - }, - "Rotation": 197.191254, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "7ffdd6c9-29dc-43d3-8348-349bbf64c128", - "Infiltration": "", - "Position": { - "x": -279.611, - "y": 0.078, - "z": -365.445984 - }, - "Rotation": 197.191254, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "81e2c355-e3dd-4a70-a076-0fea62aec9f1", - "Infiltration": "", - "Position": { - "x": -184.597, - "y": 0.114, - "z": -416.456 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "832a9963-7ad2-436b-8140-9d52d113afba", - "Infiltration": "Common", - "Position": { - "x": -171.669, - "y": 0.11, - "z": -309.753 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneBasement", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "8442480f-2fd2-4867-a558-7f95aa75211b", - "Infiltration": "", - "Position": { - "x": -244.796, - "y": -4.001, - "z": -414.788 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "84fa5d1e-635b-439a-8f61-26eb2e37f36f", - "Infiltration": "Common", - "Position": { - "x": -237.693, - "y": 0.09, - "z": -418.472 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "863a8fba-0b54-4c06-9a4e-498298c7f938", - "Infiltration": "Common", - "Position": { - "x": -177.61, - "y": 0.03, - "z": -320.17 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8804ccce-fc0a-488f-9a50-12837e382ae9", - "Infiltration": "Common", - "Position": { - "x": -173.52, - "y": 0.03, - "z": -323.95 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneGate2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "8ae99f32-2b96-4a1a-9ff6-62bbf3f452bb", - "Infiltration": "", - "Position": { - "x": -245.28, - "y": 2.664, - "z": -452.873 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "8f0dd3c2-9339-484e-b4ed-785a7929a545", - "Infiltration": "", - "Position": { - "x": -253.55899, - "y": 4.146, - "z": -376.292 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "8f160eaa-3467-4059-a46a-ecd5b510a21e", - "Infiltration": "Common", - "Position": { - "x": -168, - "y": 0.08, - "z": -264.01 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9174a2bb-e647-40d2-9f27-b02bb4256e5a", - "Infiltration": "Common", - "Position": { - "x": -113.01, - "y": 4.2, - "z": -416.83 - }, - "Rotation": 105.150009, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "92cd8ec7-d9d3-4917-bc3a-782abf0574f9", - "Infiltration": "Common", - "Position": { - "x": -167.26, - "y": 0.08, - "z": -263.79 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "93e73b75-40f6-48ec-9c41-a722c79b36df", - "Infiltration": "Common", - "Position": { - "x": -125.79, - "y": -4.97, - "z": -263.38 - }, - "Rotation": 269.17, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9781bf62-5817-49c8-91f5-e1718080f43c", - "Infiltration": "Common", - "Position": { - "x": -167.24, - "y": 0.11, - "z": -312.6 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9896b358-7857-4dfc-baba-c9ff10f4b288", - "Infiltration": "Common", - "Position": { - "x": -171.54, - "y": 0.11, - "z": -312.18 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "98f72004-624d-4a11-a551-9b5150456369", - "Infiltration": "Common", - "Position": { - "x": -134.75, - "y": -4.97, - "z": -263.9 - }, - "Rotation": 95.68, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "994bc745-d017-41fe-a2cb-f26d13e016e6", - "Infiltration": "Common", - "Position": { - "x": -168.02, - "y": -3.99, - "z": -337.48 - }, - "Rotation": 85.92, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9ad6d872-4797-47a9-a5a6-b4675b478913", - "Infiltration": "Common", - "Position": { - "x": -120.62, - "y": 0.01, - "z": -253.47 - }, - "Rotation": 176.08, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9ae1736f-4869-4c3b-99c2-5825878573d8", - "Infiltration": "Common", - "Position": { - "x": -172, - "y": 0.03, - "z": -325.71 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9b5e4910-ca9a-49bb-ac83-0f5e6299fa12", - "Infiltration": "Common", - "Position": { - "x": -169.71, - "y": 0.08, - "z": -264 - }, - "Rotation": 175.539871, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9c1654a5-3808-4d52-becd-066428ec0660", - "Infiltration": "Common", - "Position": { - "x": -112.04, - "y": 4.2, - "z": -413.63 - }, - "Rotation": 181.81, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "9cc6492e-477a-419b-84c4-c9f02c3715fe", - "Infiltration": "Common", - "Position": { - "x": -235.172, - "y": 0.09, - "z": -418.466 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneGate1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "9dbe0dc5-6380-41d3-9798-75b98f89c8a8", - "Infiltration": "", - "Position": { - "x": -157.568, - "y": 2.711, - "z": -222.756989 - }, - "Rotation": 201.596924, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a0fdcb82-40f8-4996-83e5-39389c6b846a", - "Infiltration": "Common", - "Position": { - "x": -125.39, - "y": 4.13, - "z": -338.41 - }, - "Rotation": 75.25, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a35626aa-d89e-4ace-8bff-5b7582f6bc30", - "Infiltration": "Common", - "Position": { - "x": -166.02, - "y": 0.11, - "z": -314.364 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a55e3167-efff-4d96-807b-1e5de515bcca", - "Infiltration": "Common", - "Position": { - "x": -269.88, - "y": -2.06, - "z": -390.79 - }, - "Rotation": 100.34, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneGate1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "a66912bd-3583-4285-bb40-bf5a0bb2d7ad", - "Infiltration": "", - "Position": { - "x": -184.359, - "y": 2.711, - "z": -222.758987 - }, - "Rotation": 151.039291, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneGate1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "a7c8500d-3a45-4ab4-8bde-4891ebdb33be", - "Infiltration": "", - "Position": { - "x": -157.212, - "y": 2.711, - "z": -227.040985 - }, - "Rotation": 324.67, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "a98ef4db-61cc-4588-a8e8-52e59ce8bace", - "Infiltration": "Common", - "Position": { - "x": -205.847, - "y": 4.16135359, - "z": -289.085 - }, - "Rotation": 89.0511551, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ab9fb40e-790c-40f2-aae0-f191aaecbf7e", - "Infiltration": "Common", - "Position": { - "x": -252.58, - "y": -4.02, - "z": -293.91 - }, - "Rotation": 53.9400024, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "ad4dd281-ed1d-4bbb-a15e-1b719c90fe8f", - "Infiltration": "", - "Position": { - "x": -179.44, - "y": 0.114, - "z": -407.409973 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ad74c165-363f-4706-999c-2d33396865e4", - "Infiltration": "Common", - "Position": { - "x": -118.55, - "y": 0.01, - "z": -252.22 - }, - "Rotation": 181.29, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "af9b450f-11df-4411-b92b-4df4ecc7504b", - "Infiltration": "Common", - "Position": { - "x": -169.31, - "y": 0.11, - "z": -310.88 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "b25de2ee-d9fb-4c35-a73b-fe516b436d10", - "Infiltration": "", - "Position": { - "x": -224.879, - "y": 0.082, - "z": -279.867 - }, - "Rotation": 164.3535, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "b53cfa11-2ce4-4a85-a3c2-674068472d58", - "Infiltration": "", - "Position": { - "x": -275.248, - "y": 0.078, - "z": -381.095978 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b71e139d-c363-4b9a-b87e-1a6bef552641", - "Infiltration": "Common", - "Position": { - "x": -170.49, - "y": 0.06, - "z": -419.39 - }, - "Rotation": 349.64, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "b89c86e5-5e60-4f09-96a9-8831685d807c", - "Infiltration": "Common", - "Position": { - "x": -205.86, - "y": 4.16135359, - "z": -293.588 - }, - "Rotation": 89.0511551, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 2, - "DelayToCanSpawnSec": 4, - "Id": "bb29ab56-4425-40e2-b133-8abc10c4fe39", - "Infiltration": "", - "Position": { - "x": -226.68, - "y": 0.082, - "z": -279.617 - }, - "Rotation": 164.3535, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bcf0ec7f-9673-4fa1-aede-fdc6d6dd616b", - "Infiltration": "Common", - "Position": { - "x": -257.18, - "y": 4.14, - "z": -280.05 - }, - "Rotation": 92.97, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "bf1d14c2-2c9b-4921-8534-76c1ae9430dc", - "Infiltration": "Common", - "Position": { - "x": -276.59, - "y": 0.06, - "z": -335.35 - }, - "Rotation": 141.39, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "c18b92b0-7915-4e30-995e-e163bc06d9fb", - "Infiltration": "", - "Position": { - "x": -199.41, - "y": 4.127, - "z": -296.5 - }, - "Rotation": 85.5867, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "c260494b-0ace-42f0-9b3c-945cbb77d608", - "Infiltration": "", - "Position": { - "x": -279.23, - "y": 0.078, - "z": -349.22998 - }, - "Rotation": 126.849854, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c3a0e266-3318-4db6-9c31-b7b780686ea8", - "Infiltration": "Common", - "Position": { - "x": -217.284, - "y": -3.997, - "z": -383.273 - }, - "Rotation": 270.60022, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c40614b7-e0bc-4a8a-944d-bcaca72a32fb", - "Infiltration": "Common", - "Position": { - "x": -269.9, - "y": -2.06, - "z": -392.32 - }, - "Rotation": 86.23, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c59b04c4-0ceb-4af0-851e-2f81a7a02c02", - "Infiltration": "Common", - "Position": { - "x": -177.67, - "y": 0.03, - "z": -322.13 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneGate2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "c6928e60-e4ce-40db-94c3-8c84915366e2", - "Infiltration": "", - "Position": { - "x": -218.066, - "y": 2.664, - "z": -448.59198 - }, - "Rotation": 181.596954, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c7d01076-c9a0-4162-923e-bb2f51248500", - "Infiltration": "Common", - "Position": { - "x": -170.8, - "y": -3.99, - "z": -342.4 - }, - "Rotation": 89.61, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c7f058cd-cff0-4f4b-9bf1-dc6632c63eaf", - "Infiltration": "Common", - "Position": { - "x": -177.81, - "y": 0.099, - "z": -309.65 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "c9cb436b-9821-44ef-8ac8-fbef720f45d8", - "Infiltration": "Common", - "Position": { - "x": -171.01, - "y": -3.99, - "z": -337.56 - }, - "Rotation": 101.11, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "cb64847e-76a6-42a9-ab3d-9e5629e4bf5b", - "Infiltration": "", - "Position": { - "x": -208.019, - "y": 4.207, - "z": -297.85498 - }, - "Rotation": 113.883675, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "BotZoneFloor2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 27 - } - }, - "CorePointId": 5, - "DelayToCanSpawnSec": 4, - "Id": "cde4c94f-1f0a-43bc-a0d7-b07758171d61", - "Infiltration": "", - "Position": { - "x": -134.647, - "y": 4.181, - "z": -346.005981 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cf866867-a4ba-4355-bfac-198ca52e755c", - "Infiltration": "Common", - "Position": { - "x": -251.1, - "y": -3.98, - "z": -296.64 - }, - "Rotation": 65.65, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "cfd895b4-b565-4c8a-a10b-ac2058b019af", - "Infiltration": "Common", - "Position": { - "x": -127.46, - "y": 6.18, - "z": -333.57 - }, - "Rotation": 176.03, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d188e22c-8216-4371-b9af-8e900e372ea3", - "Infiltration": "Common", - "Position": { - "x": -250.03, - "y": -4.01, - "z": -293.72 - }, - "Rotation": 111.51, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d1b3cb3f-042c-4698-9284-9cb3985eca30", - "Infiltration": "Common", - "Position": { - "x": -166.24, - "y": 0.07, - "z": -320.7 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d37a7f14-534d-4f8c-86cc-b107bb5380d5", - "Infiltration": "Common", - "Position": { - "x": -239.31, - "y": 0.09, - "z": -418.55 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d385b5f5-d5c6-4f6a-9486-e128cbba2da6", - "Infiltration": "Common", - "Position": { - "x": -162.717, - "y": 0.068, - "z": -321.183 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d3951942-a8b7-48a8-b38d-edc4299499aa", - "Infiltration": "Common", - "Position": { - "x": -233.073, - "y": 0.09, - "z": -419.772 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d3c624f1-7e3d-41b2-a7a3-9e05314a413f", - "Infiltration": "Common", - "Position": { - "x": -236.2, - "y": 0.09, - "z": -418.442 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneBasement", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 25 - } - }, - "CorePointId": 7, - "DelayToCanSpawnSec": 4, - "Id": "d67c127c-7f89-4ad6-a4c4-90f56a6bf666", - "Infiltration": "", - "Position": { - "x": -141.92, - "y": -4.041, - "z": -416.659973 - }, - "Rotation": 0, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "d7eb2d80-10a1-48e1-b214-d7cac5eff13a", - "Infiltration": "Common", - "Position": { - "x": -207.754, - "y": 4.16135359, - "z": -295.225 - }, - "Rotation": 89.0511551, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "db3d7424-1f39-4e33-b4d2-26821477c010", - "Infiltration": "Common", - "Position": { - "x": -206.7, - "y": 4.16135359, - "z": -290.493 - }, - "Rotation": 89.0511551, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "dd19a5a1-b24b-4b4c-b0ff-12567bc35c48", - "Infiltration": "Common", - "Position": { - "x": -166.67, - "y": 0.06, - "z": -416.11 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "ddcd040c-42b2-4586-879d-f9d07d9737ce", - "Infiltration": "Common", - "Position": { - "x": -164.17, - "y": 0.14, - "z": -327.99 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "de98318f-4443-4cb1-92be-52e49fcdddd0", - "Infiltration": "Common", - "Position": { - "x": -135.21, - "y": -4.97, - "z": -265.53 - }, - "Rotation": 95.68, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e1270dab-99e1-442a-a32e-63aa4af0f719", - "Infiltration": "Common", - "Position": { - "x": -112.6, - "y": 4.2, - "z": -419.06 - }, - "Rotation": 79.99, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "e809f94e-aedb-4f69-98eb-9f1d94288d86", - "Infiltration": "Common", - "Position": { - "x": -116.615, - "y": -4.002, - "z": -398.184 - }, - "Rotation": 0, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 4, - "DelayToCanSpawnSec": 4, - "Id": "e9147ec4-61b7-43e9-8e9b-515e127167d2", - "Infiltration": "", - "Position": { - "x": -206.267, - "y": 1.51, - "z": -290.977 - }, - "Rotation": 184.024811, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Opposite" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "eb45ebae-4f05-49d4-b5d7-8851ba7f042b", - "Infiltration": "Common", - "Position": { - "x": -233.962, - "y": 0.09, - "z": -418.431 - }, - "Rotation": 3.2020905, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "effc8ec3-29a6-4531-89eb-a23ab350d015", - "Infiltration": "Common", - "Position": { - "x": -165.97, - "y": 0.11, - "z": -324.76 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneFloor1", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 35 - } - }, - "CorePointId": 8, - "DelayToCanSpawnSec": 4, - "Id": "f1cf8f15-cc59-48ef-8d98-840d12972120", - "Infiltration": "", - "Position": { - "x": -279.68, - "y": 0.078, - "z": -352.99 - }, - "Rotation": 126.849854, - "Sides": [ - "Savage" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f3b5e0b0-0996-4191-81f3-a709b324d5b9", - "Infiltration": "Common", - "Position": { - "x": -108.59, - "y": 4.2, - "z": -413.89 - }, - "Rotation": 204.36, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Player" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f86c5106-44cb-4e1e-b346-4df5c817664e", - "Infiltration": "Common", - "Position": { - "x": -116.276, - "y": -4.025, - "z": -404.21 - }, - "Rotation": 161.982117, - "Sides": [ - "All" - ] - }, - { - "BotZoneName": "", - "Categories": [ - "Coop", - "Group" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 50 - } - }, - "CorePointId": 0, - "DelayToCanSpawnSec": 4, - "Id": "f9ba0574-638b-4900-874c-21b6f4d5e6b4", - "Infiltration": "Common", - "Position": { - "x": -164.87, - "y": 0.14, - "z": -326.37 - }, - "Rotation": 270.60022, - "Sides": [ - "Pmc" - ] - }, - { - "BotZoneName": "BotZoneGate2", - "Categories": [ - "Bot" - ], - "ColliderParams": { - "_parent": "SpawnSphereParams", - "_props": { - "Center": { - "x": 0, - "y": 0, - "z": 0 - }, - "Radius": 7 - } - }, - "CorePointId": 3, - "DelayToCanSpawnSec": 4, - "Id": "fe0e7112-8129-4749-8aed-e357368172af", - "Infiltration": "", - "Position": { - "x": -244.976, - "y": 2.664, - "z": -448.615 - }, - "Rotation": 181.596954, - "Sides": [ - "Savage" - ] - } - ], - "UnixDateTime": 1636383862, - "_Id": "5b0fc42d86f7744a585f9105", - "doors": [], - "exit_access_time": 60, - "exit_count": 1, - "exit_time": 1, - "exits": [ - { - "Chance": 60, - "Count": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MinTime": 0, - "Name": "lab_Parking_Gate", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 60, - "Count": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MinTime": 0, - "Name": "lab_Hangar_Gate", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "Count": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 5, - "ExfiltrationType": "Manual", - "Id": "", - "MaxTime": 0, - "MinTime": 0, - "Name": "lab_Elevator_Med", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "Count": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MinTime": 0, - "Name": "lab_Under_Storage_Collector", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "Count": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 5, - "ExfiltrationType": "Manual", - "Id": "", - "MaxTime": 0, - "MinTime": 0, - "Name": "lab_Elevator_Main", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - }, - { - "Chance": 100, - "Count": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 15, - "ExfiltrationType": "Individual", - "Id": "", - "MaxTime": 0, - "MinTime": 0, - "Name": "lab_Vent", - "PassageRequirement": "Empty", - "PlayersCount": 0, - "RequiredSlot": "Backpack", - "RequirementTip": "EXFIL_tip_backpack" - }, - { - "Chance": 100, - "Count": 0, - "EntryPoints": "Common", - "EventAvailable": false, - "ExfiltrationTime": 10, - "ExfiltrationType": "Manual", - "Id": "", - "MaxTime": 0, - "MinTime": 0, - "Name": "lab_Elevator_Cargo", - "PassageRequirement": "WorldEvent", - "PlayersCount": 0, - "RequiredSlot": "FirstPrimaryWeapon", - "RequirementTip": "" - } - ], - "filter_ex": [], - "limits": [], - "matching_min_seconds": 60, - "maxItemCountInLocation": [ - { - "TemplateId": "54009119af1c881c07000029", - "Value": 0 - } - ], - "sav_summon_seconds": 60, - "tmp_location_field_remove_me": 111, - "users_gather_seconds": 0, - "users_spawn_seconds_n": 120, - "users_spawn_seconds_n2": 200, - "users_summon_seconds": 0, - "waves": [] + "RequiredPlayerLevelMax": 100, + "RequiredPlayerLevelMin": 0, + "Rules": "Normal", + "SafeLocation": false, + "ScavMaxPlayersInGroup": 4, + "Scene": { + "path": "maps/laboratory_preset.bundle", + "rcid": "laboratory.ScenesPreset.asset" + }, + "SpawnPointParams": [{ + "Id": "0043f275-0dc2-4c04-87a1-bd90cbaf183a", + "Position": { + "x": -166.45, + "y": 0.06, + "z": -322.43 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "00a92ab8-28d7-4c1c-87a5-ef1c480e9900", + "Position": { + "x": -118.336, + "y": -4.025, + "z": -403.071 + }, + "Rotation": 88.9786758, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "0171ec0f-4050-4303-8504-b742922cf80b", + "Position": { + "x": -255.632, + "y": 4.146, + "z": -376.374 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 27 + } + }, + "BotZoneName": "BotZoneFloor2", + "CorePointId": 3 + }, { + "Id": "01d14f42-45de-45fb-be52-bfff19f3a470", + "Position": { + "x": -279.05, + "y": 0.06, + "z": -338.94 + }, + "Rotation": 101.11, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "037af7bf-1a89-454d-af5c-83df829fbde0", + "Position": { + "x": -115.37, + "y": -4.015, + "z": -321.759 + }, + "Rotation": 268.597656, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "037b1766-b66b-4c3e-adf1-390f67dc70bb", + "Position": { + "x": -116.55, + "y": 0.01, + "z": -253.94 + }, + "Rotation": 189.27, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "04277419-2f99-4283-a180-acb761f90c72", + "Position": { + "x": -231.985, + "y": 0.09, + "z": -418.4 + }, + "Rotation": 3.2020905, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "0483afba-89af-43a9-b2d3-47e2905440c5", + "Position": { + "x": -276.03, + "y": -3.99, + "z": -358.44 + }, + "Rotation": 90.03, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "04ca5c72-7c54-43cf-9150-6ddcaedf9808", + "Position": { + "x": -175.022, + "y": 0.099, + "z": -311.283 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "04f71bcb-922f-48bc-992b-3a64a20d589c", + "Position": { + "x": -178.15, + "y": 0.114, + "z": -415.292 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 7 + }, { + "Id": "07863ac5-27c5-4001-85a2-13356eda6133", + "Position": { + "x": -116.4, + "y": 0.004, + "z": -256.52 + }, + "Rotation": 263.038635, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 2 + }, { + "Id": "081425b7-a633-420b-ae62-da220db1a651", + "Position": { + "x": -174.97, + "y": 0.08, + "z": -264.27 + }, + "Rotation": 175.539871, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "08633a18-3bbd-4a4b-934a-b51e049817b1", + "Position": { + "x": -120.64, + "y": 0.01, + "z": -256.73 + }, + "Rotation": 169.74, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "0b5e336a-2cb6-4619-b9a5-07ff0afad1ee", + "Position": { + "x": -183.645, + "y": 2.711, + "z": -227.118988 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 7 + } + }, + "BotZoneName": "BotZoneGate1", + "CorePointId": 2 + }, { + "Id": "0d7728c8-59c8-493a-8849-fa22a1346fcd", + "Position": { + "x": -254.79, + "y": -4.03, + "z": -298.46 + }, + "Rotation": 185.57, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "0f8dedb9-f5f2-4c18-af92-968b0b22e54b", + "Position": { + "x": -275.92, + "y": -4, + "z": -355.32 + }, + "Rotation": 73.55, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "12055345-4522-4b48-b08a-6a517bbf7c61", + "Position": { + "x": -250.87, + "y": 4.14, + "z": -281.79 + }, + "Rotation": 92.06, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "125f7075-b7c9-4d29-be15-a8e33b9c5d6f", + "Position": { + "x": -173.85, + "y": 0.08, + "z": -264.32 + }, + "Rotation": 175.539871, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "13ea441c-75e5-48a2-9d87-396590d9bc98", + "Position": { + "x": -276.29, + "y": -3.99, + "z": -362.3 + }, + "Rotation": 92.55, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "15c0ac46-c1e4-498b-9466-1c071554be06", + "Position": { + "x": -116.011, + "y": 0.036, + "z": -336.378 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 5 + }, { + "Id": "16f8ebd0-39b4-4fe2-8128-ed2bc82008a1", + "Position": { + "x": -118.109, + "y": -4.025, + "z": -401.386 + }, + "Rotation": 88.9786758, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "1780c396-0394-48cf-8871-a6feae1bc4b7", + "Position": { + "x": -170.74, + "y": -3.99, + "z": -344.55 + }, + "Rotation": 89.61, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "19383115-da70-4cc5-8ab7-d80bf8045113", + "Position": { + "x": -171.39, + "y": 0.12, + "z": -332.06 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "19e75b93-4470-4d65-b5f8-e3a09fb4a71d", + "Position": { + "x": -127.768, + "y": 4.2, + "z": -382.271973 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 27 + } + }, + "BotZoneName": "BotZoneFloor2", + "CorePointId": 5 + }, { + "Id": "1d148166-42cd-4c7b-8b33-d93682121c2f", + "Position": { + "x": -171.41, + "y": 0.08, + "z": -264.04 + }, + "Rotation": 175.539871, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "1d3d7178-c84f-47b2-9ea6-4cd11449dbfa", + "Position": { + "x": -115.504, + "y": -4.039, + "z": -319.677 + }, + "Rotation": 275.760376, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "1d66c992-d022-490d-a451-18d19c284988", + "Position": { + "x": -216.856, + "y": -3.997, + "z": -386.666 + }, + "Rotation": 270.60022, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "223b6e4d-2ead-45eb-ad5f-35abd028d2c3", + "Position": { + "x": -206.699, + "y": 4.16135359, + "z": -291.862 + }, + "Rotation": 89.0511551, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "22c00064-df0c-474b-b479-918175a539a7", + "Position": { + "x": -165.45, + "y": 0.07, + "z": -332.65 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "242085cb-6ffa-4aa5-8268-dc8b138c7b74", + "Position": { + "x": -118.503, + "y": -4.025, + "z": -399.522 + }, + "Rotation": 88.9786758, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "24453a69-8df7-47cf-8449-b56ef868be5c", + "Position": { + "x": -126.86, + "y": -4.97, + "z": -266.17 + }, + "Rotation": 270.47, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "25692e11-5450-4b6f-9820-fae868e113bf", + "Position": { + "x": -233.051, + "y": 0.09, + "z": -418.383 + }, + "Rotation": 3.2020905, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "293e014a-512d-4fe3-a3fd-1a40611e90da", + "Position": { + "x": -118.224, + "y": -4.015, + "z": -326.516 + }, + "Rotation": 16.0527267, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "29b9975d-3abf-4478-affb-cd0d29b4f3a5", + "Position": { + "x": -110.12, + "y": 4.2, + "z": -413.71 + }, + "Rotation": 181.81, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "2f66dafc-a2f1-4283-a383-aa64c84f6da7", + "Position": { + "x": -279.44, + "y": -3.99, + "z": -348.87 + }, + "Rotation": 73.55, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "32e05b2a-9847-45b8-b04b-36bafe5879f1", + "Position": { + "x": -170.86, + "y": -3.99, + "z": -340.1 + }, + "Rotation": 89.61, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "330b076f-bd90-494d-8c3d-bed9e5959378", + "Position": { + "x": -202.231, + "y": 0.0499999523, + "z": -393.883972 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 7 + }, { + "Id": "35beb4da-36a6-48e3-bbd1-810126872d3c", + "Position": { + "x": -172.66, + "y": 0.08, + "z": -264.14 + }, + "Rotation": 175.539871, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "38378dc4-cb6a-4538-9b78-fab68201bfa6", + "Position": { + "x": -234.34, + "y": 0.09, + "z": -419.76 + }, + "Rotation": 3.2020905, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "3a7f4c28-ea1f-466d-8920-3f2871d69cf3", + "Position": { + "x": -260.287, + "y": 0.04, + "z": -390.578 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 3 + }, { + "Id": "3d6df899-9a65-48d3-9e55-2664c6c6c4c0", + "Position": { + "x": -168.21, + "y": 0.06, + "z": -417.04 + }, + "Rotation": 0, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "3dbca587-2589-4370-9594-407655be3186", + "Position": { + "x": -134.355011, + "y": 4.181, + "z": -341.102 + }, + "Rotation": 273.155945, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 27 + } + }, + "BotZoneName": "BotZoneFloor2", + "CorePointId": 5 + }, { + "Id": "40b7da99-8f93-4ca6-bb33-c94b8a7c92a7", + "Position": { + "x": -264.74, + "y": -3.99, + "z": -390.32 + }, + "Rotation": 15.050004, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "4654cec6-f2e9-4118-830e-d633b39375f4", + "Position": { + "x": -219.157, + "y": -3.997, + "z": -385.369 + }, + "Rotation": 270.60022, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "49367d3d-95f6-4b3f-9406-693ab39259bd", + "Position": { + "x": -122.74, + "y": 8.16, + "z": -333.35 + }, + "Rotation": 267.44, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "4c524643-e17e-4d20-ae81-d47fb4a1701a", + "Position": { + "x": -168.83, + "y": 0.08, + "z": -263.93 + }, + "Rotation": 175.539871, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "4cd0a70e-8349-4707-b3f6-4b0d18cf989b", + "Position": { + "x": -207.064, + "y": 4.207, + "z": -295.159 + }, + "Rotation": 113.883675, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 27 + } + }, + "BotZoneName": "BotZoneFloor2", + "CorePointId": 4 + }, { + "Id": "4e9cd17c-ae56-4408-a308-4b9722e6e344", + "Position": { + "x": -257.955017, + "y": 0.0090277195, + "z": -385.453 + }, + "Rotation": 184.764816, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 3 + }, { + "Id": "505b3a49-81fd-49e8-8ff1-fbee3af0fadf", + "Position": { + "x": -170.54, + "y": 0.08, + "z": -264.03 + }, + "Rotation": 175.539871, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "50bda7e6-480e-412c-a91c-8dda1faffa45", + "Position": { + "x": -116.089, + "y": 0.036, + "z": -339.412 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 5 + }, { + "Id": "51d82d49-97b2-4fba-b1f8-219b20005c17", + "Position": { + "x": -205.29, + "y": 0.0499999523, + "z": -390.55 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 7 + }, { + "Id": "52005238-4fb5-4775-9052-c1f52bfd1c94", + "Position": { + "x": -244.101, + "y": 2.664, + "z": -452.923981 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 7 + } + }, + "BotZoneName": "BotZoneGate2", + "CorePointId": 3 + }, { + "Id": "584031bc-1dbb-4fec-a95f-7297e0b6a540", + "Position": { + "x": -213.124, + "y": 0.05, + "z": -378.754974 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 8 + }, { + "Id": "5aed643f-3714-49fc-bdf8-00168189da61", + "Position": { + "x": -170.58, + "y": 0.06, + "z": -416.83 + }, + "Rotation": 0, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "5efaabad-3df0-451c-ae8c-df707c90d24f", + "Position": { + "x": -167.87, + "y": 0.06, + "z": -419.56 + }, + "Rotation": 0, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "5f925d72-bfd0-4add-b89b-9fec63005145", + "Position": { + "x": -166.184, + "y": 0.08, + "z": -263.506 + }, + "Rotation": 175.539871, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "5f97a1fc-1cc0-4cb6-85dc-ab20c9d90fea", + "Position": { + "x": -278.54, + "y": -4.03, + "z": -352 + }, + "Rotation": 73.55, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "5f9d0c13-d935-48f5-9112-0852d8e8d9e0", + "Position": { + "x": -125.38, + "y": -4.97, + "z": -264.91 + }, + "Rotation": 270.629974, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "604f6db8-2519-42b8-8d45-7b1b1290e97d", + "Position": { + "x": -276.1, + "y": 0.06, + "z": -333.32 + }, + "Rotation": 72.84, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "616552c2-e458-4b8c-b39b-4e26083cd722", + "Position": { + "x": -253.22, + "y": 4.14, + "z": -282.73 + }, + "Rotation": 69.22, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "63a12c08-6718-4344-b9c4-d9c2b0550faa", + "Position": { + "x": -279.36, + "y": 0.06, + "z": -334.88 + }, + "Rotation": 88.69, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "65372346-89b9-4c52-94af-7bb4d474daa5", + "Position": { + "x": -236.02, + "y": 0.09, + "z": -419.81 + }, + "Rotation": 3.2020905, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "666a2681-4a93-4b9c-b96d-a1419149069d", + "Position": { + "x": -115.122, + "y": -4.015, + "z": -328.625 + }, + "Rotation": 272.3587, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "666b38f8-c232-4b2e-994e-ead3b121990c", + "Position": { + "x": -219.433, + "y": -3.997, + "z": -383.072 + }, + "Rotation": 270.60022, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "66d2a253-d1a0-490c-93d3-b1e3dd589c3d", + "Position": { + "x": -248.84, + "y": 4.231, + "z": -362.24 + }, + "Rotation": 175.868637, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 27 + } + }, + "BotZoneName": "BotZoneFloor2", + "CorePointId": 8 + }, { + "Id": "66ea0d24-890a-4a5b-a0d1-2e13629f26b7", + "Position": { + "x": -115.164, + "y": -4.015, + "z": -327.156 + }, + "Rotation": 272.3587, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "6715c896-cb94-4e04-8cea-06d8dd685f83", + "Position": { + "x": -263, + "y": 0.06, + "z": -388.23 + }, + "Rotation": 176.41, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "6ac4a2e0-f06e-4098-908f-c04ebfeada8c", + "Position": { + "x": -253.24, + "y": 4.14, + "z": -279.92 + }, + "Rotation": 101.94, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "6b542eec-7db1-48e5-81ff-32af5b120663", + "Position": { + "x": -122.48, + "y": 8.2, + "z": -338.15 + }, + "Rotation": 344.97, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "6e2cf61e-85a6-4cfa-b232-ae4cd892e4e0", + "Position": { + "x": -115.67, + "y": 0.01, + "z": -256.94 + }, + "Rotation": 188.05, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "6e35cbe7-b819-40df-9262-656d3ac42a31", + "Position": { + "x": -215.217, + "y": 2.664, + "z": -448.71 + }, + "Rotation": 181.596954, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 7 + } + }, + "BotZoneName": "BotZoneGate2", + "CorePointId": 3 + }, { + "Id": "707edb2a-0cbb-4c12-9fc5-49a34af4779d", + "Position": { + "x": -279.1, + "y": 0.06, + "z": -337.01 + }, + "Rotation": 73.88, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "70a6af86-3b7a-4687-8128-ff324774cf6f", + "Position": { + "x": -256.67, + "y": -3.97, + "z": -295.16 + }, + "Rotation": 179.01, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "75a36d48-cf3e-48f6-98cd-ca520bf8ff2d", + "Position": { + "x": -128.38, + "y": -4.041, + "z": -417.949982 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "BotZoneBasement", + "CorePointId": 5 + }, { + "Id": "75febbcd-6f56-495e-a74a-e93f0f8b7827", + "Position": { + "x": -269.34, + "y": -2.06, + "z": -387.7 + }, + "Rotation": 90.05, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "7716a644-0c23-4f0b-9613-b9fc4767ba35", + "Position": { + "x": -231.636, + "y": 0.082, + "z": -286.69397 + }, + "Rotation": 164.3535, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 4 + }, { + "Id": "7859f63b-aff6-4bb5-9423-1fc08f2120b9", + "Position": { + "x": -177.039, + "y": 0.099, + "z": -312.504 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "7a9b1874-adec-4a4a-bcab-04265a114afa", + "Position": { + "x": -122.3, + "y": 8.19, + "z": -336.07 + }, + "Rotation": 348.83, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "7b8911d0-dc36-43f1-9058-451f4cc6f362", + "Position": { + "x": -256.56, + "y": 4.14, + "z": -282.41 + }, + "Rotation": 89.19, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "7c978d56-01bd-4010-bf0c-80d4b52aba4a", + "Position": { + "x": -216.98, + "y": -3.997, + "z": -385.218 + }, + "Rotation": 270.60022, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "7eb7a024-be39-49ab-8a3c-82aecf4c1f95", + "Position": { + "x": -279.611, + "y": 0.078, + "z": -365.445984 + }, + "Rotation": 197.191254, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 3 + }, { + "Id": "7ffdd6c9-29dc-43d3-8348-349bbf64c128", + "Position": { + "x": -279.611, + "y": 0.078, + "z": -365.445984 + }, + "Rotation": 197.191254, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 3 + }, { + "Id": "81e2c355-e3dd-4a70-a076-0fea62aec9f1", + "Position": { + "x": -184.597, + "y": 0.114, + "z": -416.456 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 7 + }, { + "Id": "832a9963-7ad2-436b-8140-9d52d113afba", + "Position": { + "x": -171.669, + "y": 0.11, + "z": -309.753 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "8442480f-2fd2-4867-a558-7f95aa75211b", + "Position": { + "x": -244.796, + "y": -4.001, + "z": -414.788 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "BotZoneBasement", + "CorePointId": 3 + }, { + "Id": "84fa5d1e-635b-439a-8f61-26eb2e37f36f", + "Position": { + "x": -237.693, + "y": 0.09, + "z": -418.472 + }, + "Rotation": 3.2020905, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "863a8fba-0b54-4c06-9a4e-498298c7f938", + "Position": { + "x": -177.61, + "y": 0.03, + "z": -320.17 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "8804ccce-fc0a-488f-9a50-12837e382ae9", + "Position": { + "x": -173.52, + "y": 0.03, + "z": -323.95 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "8ae99f32-2b96-4a1a-9ff6-62bbf3f452bb", + "Position": { + "x": -245.28, + "y": 2.664, + "z": -452.873 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 7 + } + }, + "BotZoneName": "BotZoneGate2", + "CorePointId": 3 + }, { + "Id": "8f0dd3c2-9339-484e-b4ed-785a7929a545", + "Position": { + "x": -253.55899, + "y": 4.146, + "z": -376.292 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 27 + } + }, + "BotZoneName": "BotZoneFloor2", + "CorePointId": 3 + }, { + "Id": "8f160eaa-3467-4059-a46a-ecd5b510a21e", + "Position": { + "x": -168, + "y": 0.08, + "z": -264.01 + }, + "Rotation": 175.539871, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "9174a2bb-e647-40d2-9f27-b02bb4256e5a", + "Position": { + "x": -113.01, + "y": 4.2, + "z": -416.83 + }, + "Rotation": 105.150009, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "92cd8ec7-d9d3-4917-bc3a-782abf0574f9", + "Position": { + "x": -167.26, + "y": 0.08, + "z": -263.79 + }, + "Rotation": 175.539871, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "93e73b75-40f6-48ec-9c41-a722c79b36df", + "Position": { + "x": -125.79, + "y": -4.97, + "z": -263.38 + }, + "Rotation": 269.17, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "9781bf62-5817-49c8-91f5-e1718080f43c", + "Position": { + "x": -167.24, + "y": 0.11, + "z": -312.6 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "9896b358-7857-4dfc-baba-c9ff10f4b288", + "Position": { + "x": -171.54, + "y": 0.11, + "z": -312.18 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "98f72004-624d-4a11-a551-9b5150456369", + "Position": { + "x": -134.75, + "y": -4.97, + "z": -263.9 + }, + "Rotation": 95.68, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "994bc745-d017-41fe-a2cb-f26d13e016e6", + "Position": { + "x": -168.02, + "y": -3.99, + "z": -337.48 + }, + "Rotation": 85.92, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "9ad6d872-4797-47a9-a5a6-b4675b478913", + "Position": { + "x": -120.62, + "y": 0.01, + "z": -253.47 + }, + "Rotation": 176.08, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "9ae1736f-4869-4c3b-99c2-5825878573d8", + "Position": { + "x": -172, + "y": 0.03, + "z": -325.71 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "9b5e4910-ca9a-49bb-ac83-0f5e6299fa12", + "Position": { + "x": -169.71, + "y": 0.08, + "z": -264 + }, + "Rotation": 175.539871, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "9c1654a5-3808-4d52-becd-066428ec0660", + "Position": { + "x": -112.04, + "y": 4.2, + "z": -413.63 + }, + "Rotation": 181.81, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "9cc6492e-477a-419b-84c4-c9f02c3715fe", + "Position": { + "x": -235.172, + "y": 0.09, + "z": -418.466 + }, + "Rotation": 3.2020905, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "9dbe0dc5-6380-41d3-9798-75b98f89c8a8", + "Position": { + "x": -157.568, + "y": 2.711, + "z": -222.756989 + }, + "Rotation": 201.596924, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 7 + } + }, + "BotZoneName": "BotZoneGate1", + "CorePointId": 2 + }, { + "Id": "a0fdcb82-40f8-4996-83e5-39389c6b846a", + "Position": { + "x": -125.39, + "y": 4.13, + "z": -338.41 + }, + "Rotation": 75.25, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "a35626aa-d89e-4ace-8bff-5b7582f6bc30", + "Position": { + "x": -166.02, + "y": 0.11, + "z": -314.364 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "a55e3167-efff-4d96-807b-1e5de515bcca", + "Position": { + "x": -269.88, + "y": -2.06, + "z": -390.79 + }, + "Rotation": 100.34, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "a66912bd-3583-4285-bb40-bf5a0bb2d7ad", + "Position": { + "x": -184.359, + "y": 2.711, + "z": -222.758987 + }, + "Rotation": 151.039291, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 7 + } + }, + "BotZoneName": "BotZoneGate1", + "CorePointId": 2 + }, { + "Id": "a7c8500d-3a45-4ab4-8bde-4891ebdb33be", + "Position": { + "x": -157.212, + "y": 2.711, + "z": -227.040985 + }, + "Rotation": 324.67, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 7 + } + }, + "BotZoneName": "BotZoneGate1", + "CorePointId": 2 + }, { + "Id": "a98ef4db-61cc-4588-a8e8-52e59ce8bace", + "Position": { + "x": -205.847, + "y": 4.16135359, + "z": -289.085 + }, + "Rotation": 89.0511551, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "ab9fb40e-790c-40f2-aae0-f191aaecbf7e", + "Position": { + "x": -252.58, + "y": -4.02, + "z": -293.91 + }, + "Rotation": 53.9400024, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "ad4dd281-ed1d-4bbb-a15e-1b719c90fe8f", + "Position": { + "x": -179.44, + "y": 0.114, + "z": -407.409973 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 7 + }, { + "Id": "ad74c165-363f-4706-999c-2d33396865e4", + "Position": { + "x": -118.55, + "y": 0.01, + "z": -252.22 + }, + "Rotation": 181.29, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "af9b450f-11df-4411-b92b-4df4ecc7504b", + "Position": { + "x": -169.31, + "y": 0.11, + "z": -310.88 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "b25de2ee-d9fb-4c35-a73b-fe516b436d10", + "Position": { + "x": -224.879, + "y": 0.082, + "z": -279.867 + }, + "Rotation": 164.3535, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 2 + }, { + "Id": "b53cfa11-2ce4-4a85-a3c2-674068472d58", + "Position": { + "x": -275.248, + "y": 0.078, + "z": -381.095978 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 3 + }, { + "Id": "b71e139d-c363-4b9a-b87e-1a6bef552641", + "Position": { + "x": -170.49, + "y": 0.06, + "z": -419.39 + }, + "Rotation": 349.64, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "b89c86e5-5e60-4f09-96a9-8831685d807c", + "Position": { + "x": -205.86, + "y": 4.16135359, + "z": -293.588 + }, + "Rotation": 89.0511551, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "bb29ab56-4425-40e2-b133-8abc10c4fe39", + "Position": { + "x": -226.68, + "y": 0.082, + "z": -279.617 + }, + "Rotation": 164.3535, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 2 + }, { + "Id": "bcf0ec7f-9673-4fa1-aede-fdc6d6dd616b", + "Position": { + "x": -257.18, + "y": 4.14, + "z": -280.05 + }, + "Rotation": 92.97, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "bf1d14c2-2c9b-4921-8534-76c1ae9430dc", + "Position": { + "x": -276.59, + "y": 0.06, + "z": -335.35 + }, + "Rotation": 141.39, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "c18b92b0-7915-4e30-995e-e163bc06d9fb", + "Position": { + "x": -199.41, + "y": 4.127, + "z": -296.5 + }, + "Rotation": 85.5867, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 27 + } + }, + "BotZoneName": "BotZoneFloor2", + "CorePointId": 4 + }, { + "Id": "c260494b-0ace-42f0-9b3c-945cbb77d608", + "Position": { + "x": -279.23, + "y": 0.078, + "z": -349.22998 + }, + "Rotation": 126.849854, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 8 + }, { + "Id": "c3a0e266-3318-4db6-9c31-b7b780686ea8", + "Position": { + "x": -217.284, + "y": -3.997, + "z": -383.273 + }, + "Rotation": 270.60022, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "c40614b7-e0bc-4a8a-944d-bcaca72a32fb", + "Position": { + "x": -269.9, + "y": -2.06, + "z": -392.32 + }, + "Rotation": 86.23, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "c59b04c4-0ceb-4af0-851e-2f81a7a02c02", + "Position": { + "x": -177.67, + "y": 0.03, + "z": -322.13 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "c6928e60-e4ce-40db-94c3-8c84915366e2", + "Position": { + "x": -218.066, + "y": 2.664, + "z": -448.59198 + }, + "Rotation": 181.596954, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 7 + } + }, + "BotZoneName": "BotZoneGate2", + "CorePointId": 3 + }, { + "Id": "c7d01076-c9a0-4162-923e-bb2f51248500", + "Position": { + "x": -170.8, + "y": -3.99, + "z": -342.4 + }, + "Rotation": 89.61, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "c7f058cd-cff0-4f4b-9bf1-dc6632c63eaf", + "Position": { + "x": -177.81, + "y": 0.099, + "z": -309.65 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "c9cb436b-9821-44ef-8ac8-fbef720f45d8", + "Position": { + "x": -171.01, + "y": -3.99, + "z": -337.56 + }, + "Rotation": 101.11, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "cb64847e-76a6-42a9-ab3d-9e5629e4bf5b", + "Position": { + "x": -208.019, + "y": 4.207, + "z": -297.85498 + }, + "Rotation": 113.883675, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 27 + } + }, + "BotZoneName": "BotZoneFloor2", + "CorePointId": 4 + }, { + "Id": "cde4c94f-1f0a-43bc-a0d7-b07758171d61", + "Position": { + "x": -134.647, + "y": 4.181, + "z": -346.005981 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 27 + } + }, + "BotZoneName": "BotZoneFloor2", + "CorePointId": 5 + }, { + "Id": "cf866867-a4ba-4355-bfac-198ca52e755c", + "Position": { + "x": -251.1, + "y": -3.98, + "z": -296.64 + }, + "Rotation": 65.65, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "cfd895b4-b565-4c8a-a10b-ac2058b019af", + "Position": { + "x": -127.46, + "y": 6.18, + "z": -333.57 + }, + "Rotation": 176.03, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "d188e22c-8216-4371-b9af-8e900e372ea3", + "Position": { + "x": -250.03, + "y": -4.01, + "z": -293.72 + }, + "Rotation": 111.51, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "d1b3cb3f-042c-4698-9284-9cb3985eca30", + "Position": { + "x": -166.24, + "y": 0.07, + "z": -320.7 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "d37a7f14-534d-4f8c-86cc-b107bb5380d5", + "Position": { + "x": -239.31, + "y": 0.09, + "z": -418.55 + }, + "Rotation": 3.2020905, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "d385b5f5-d5c6-4f6a-9486-e128cbba2da6", + "Position": { + "x": -162.717, + "y": 0.068, + "z": -321.183 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "d3951942-a8b7-48a8-b38d-edc4299499aa", + "Position": { + "x": -233.073, + "y": 0.09, + "z": -419.772 + }, + "Rotation": 3.2020905, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "d3c624f1-7e3d-41b2-a7a3-9e05314a413f", + "Position": { + "x": -236.2, + "y": 0.09, + "z": -418.442 + }, + "Rotation": 3.2020905, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "d67c127c-7f89-4ad6-a4c4-90f56a6bf666", + "Position": { + "x": -141.92, + "y": -4.041, + "z": -416.659973 + }, + "Rotation": 0, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 25 + } + }, + "BotZoneName": "BotZoneBasement", + "CorePointId": 7 + }, { + "Id": "d7eb2d80-10a1-48e1-b214-d7cac5eff13a", + "Position": { + "x": -207.754, + "y": 4.16135359, + "z": -295.225 + }, + "Rotation": 89.0511551, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "db3d7424-1f39-4e33-b4d2-26821477c010", + "Position": { + "x": -206.7, + "y": 4.16135359, + "z": -290.493 + }, + "Rotation": 89.0511551, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "dd19a5a1-b24b-4b4c-b0ff-12567bc35c48", + "Position": { + "x": -166.67, + "y": 0.06, + "z": -416.11 + }, + "Rotation": 0, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "ddcd040c-42b2-4586-879d-f9d07d9737ce", + "Position": { + "x": -164.17, + "y": 0.14, + "z": -327.99 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "de98318f-4443-4cb1-92be-52e49fcdddd0", + "Position": { + "x": -135.21, + "y": -4.97, + "z": -265.53 + }, + "Rotation": 95.68, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "e1270dab-99e1-442a-a32e-63aa4af0f719", + "Position": { + "x": -112.6, + "y": 4.2, + "z": -419.06 + }, + "Rotation": 79.99, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "e809f94e-aedb-4f69-98eb-9f1d94288d86", + "Position": { + "x": -116.615, + "y": -4.002, + "z": -398.184 + }, + "Rotation": 0, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "e9147ec4-61b7-43e9-8e9b-515e127167d2", + "Position": { + "x": -206.267, + "y": 1.51, + "z": -290.977 + }, + "Rotation": 184.024811, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 4 + }, { + "Id": "eb45ebae-4f05-49d4-b5d7-8851ba7f042b", + "Position": { + "x": -233.962, + "y": 0.09, + "z": -418.431 + }, + "Rotation": 3.2020905, + "Sides": ["Pmc"], + "Categories": ["Coop", "Opposite"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "effc8ec3-29a6-4531-89eb-a23ab350d015", + "Position": { + "x": -165.97, + "y": 0.11, + "z": -324.76 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "f1cf8f15-cc59-48ef-8d98-840d12972120", + "Position": { + "x": -279.68, + "y": 0.078, + "z": -352.99 + }, + "Rotation": 126.849854, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 35 + } + }, + "BotZoneName": "BotZoneFloor1", + "CorePointId": 8 + }, { + "Id": "f3b5e0b0-0996-4191-81f3-a709b324d5b9", + "Position": { + "x": -108.59, + "y": 4.2, + "z": -413.89 + }, + "Rotation": 204.36, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "f86c5106-44cb-4e1e-b346-4df5c817664e", + "Position": { + "x": -116.276, + "y": -4.025, + "z": -404.21 + }, + "Rotation": 161.982117, + "Sides": ["All"], + "Categories": ["Player"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "f9ba0574-638b-4900-874c-21b6f4d5e6b4", + "Position": { + "x": -164.87, + "y": 0.14, + "z": -326.37 + }, + "Rotation": 270.60022, + "Sides": ["Pmc"], + "Categories": ["Coop", "Group"], + "Infiltration": "Common", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 50 + } + }, + "BotZoneName": "", + "CorePointId": 0 + }, { + "Id": "fe0e7112-8129-4749-8aed-e357368172af", + "Position": { + "x": -244.976, + "y": 2.664, + "z": -448.615 + }, + "Rotation": 181.596954, + "Sides": ["Savage"], + "Categories": ["Bot"], + "Infiltration": "", + "DelayToCanSpawnSec": 4, + "ColliderParams": { + "_parent": "SpawnSphereParams", + "_props": { + "Center": { + "x": 0, + "y": 0, + "z": 0 + }, + "Radius": 7 + } + }, + "BotZoneName": "BotZoneGate2", + "CorePointId": 3 + } + ], + "UnixDateTime": 1636383862, + "_Id": "5b0fc42d86f7744a585f9105", + "doors": [], + "exit_access_time": 60, + "exit_count": 1, + "exit_time": 1, + "exits": [{ + "Name": "lab_Parking_Gate", + "EntryPoints": "Common", + "Chance": 60, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 10, + "PassageRequirement": "WorldEvent", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequiredSlot": "FirstPrimaryWeapon", + "RequirementTip": "", + "EventAvailable": false + }, { + "Name": "lab_Hangar_Gate", + "EntryPoints": "Common", + "Chance": 60, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 10, + "PassageRequirement": "WorldEvent", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequiredSlot": "FirstPrimaryWeapon", + "RequirementTip": "", + "EventAvailable": false + }, { + "Name": "lab_Elevator_Med", + "EntryPoints": "Common", + "Chance": 100, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 5, + "PassageRequirement": "WorldEvent", + "ExfiltrationType": "Manual", + "Id": "", + "Count": 0, + "RequiredSlot": "FirstPrimaryWeapon", + "RequirementTip": "", + "EventAvailable": false + }, { + "Name": "lab_Under_Storage_Collector", + "EntryPoints": "Common", + "Chance": 100, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 10, + "PassageRequirement": "WorldEvent", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequiredSlot": "FirstPrimaryWeapon", + "RequirementTip": "", + "EventAvailable": false + }, { + "Name": "lab_Elevator_Main", + "EntryPoints": "Common", + "Chance": 100, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 5, + "PassageRequirement": "WorldEvent", + "ExfiltrationType": "Manual", + "Id": "", + "Count": 0, + "RequiredSlot": "FirstPrimaryWeapon", + "RequirementTip": "", + "EventAvailable": false + }, { + "Name": "lab_Vent", + "EntryPoints": "Common", + "Chance": 100, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 15, + "PassageRequirement": "Empty", + "ExfiltrationType": "Individual", + "Id": "", + "Count": 0, + "RequiredSlot": "Backpack", + "RequirementTip": "EXFIL_tip_backpack", + "EventAvailable": false + }, { + "Name": "lab_Elevator_Cargo", + "EntryPoints": "Common", + "Chance": 100, + "MinTime": 0, + "MaxTime": 0, + "PlayersCount": 0, + "ExfiltrationTime": 10, + "PassageRequirement": "WorldEvent", + "ExfiltrationType": "Manual", + "Id": "", + "Count": 0, + "RequiredSlot": "FirstPrimaryWeapon", + "RequirementTip": "", + "EventAvailable": false + } + ], + "filter_ex": [], + "limits": [], + "matching_min_seconds": 60, + "maxItemCountInLocation": [{ + "TemplateId": "54009119af1c881c07000029", + "Value": 0 + } + ], + "sav_summon_seconds": 60, + "tmp_location_field_remove_me": 111, + "users_gather_seconds": 0, + "users_spawn_seconds_n": 120, + "users_spawn_seconds_n2": 200, + "users_summon_seconds": 0, + "waves": [] } diff --git a/project/assets/database/locations/rezervbase/base.json b/project/assets/database/locations/rezervbase/base.json index bd8d235b..37d01d52 100644 --- a/project/assets/database/locations/rezervbase/base.json +++ b/project/assets/database/locations/rezervbase/base.json @@ -82,7 +82,7 @@ "TriggerName": "" }, { - "BossChance": 40, + "BossChance": 35, "BossDifficult": "normal", "BossEscortAmount": "2,2,2,2,3", "BossEscortDifficult": "normal", diff --git a/project/assets/database/templates/achievements.json b/project/assets/database/templates/achievements.json index 48714a8c..5bda00ad 100644 --- a/project/assets/database/templates/achievements.json +++ b/project/assets/database/templates/achievements.json @@ -135,6 +135,68 @@ "side": "Pmc", "index": 99999 }, + { + "id": "6512ea46f7a078264a4376e4", + "imageUrl": "/files/achievement/Standard_2.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "6512ea68d94f62c7d905a1ba", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6512ea6820a4278a5e884dec", + "conditions": [ + { + "id": "6512ea76a606a458e3159afa", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + }, + { + "id": "651429bba98c934f8fe0daf3", + "dynamicLocale": false, + "exitName": "Interchange Cooperation", + "conditionType": "ExitName" + }, + { + "id": "658da10ebebee272ebc53bb0", + "dynamicLocale": false, + "target": [ + "Interchange" + ], + "conditionType": "Location" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Common", + "hidden": false, + "showConditions": false, + "progressBarEnabled": false, + "side": "Pmc", + "index": 600 + }, { "id": "6513f1feec10ff011f17c7ea", "imageUrl": "/files/achievement/Standard_12.png", @@ -366,77 +428,6 @@ "side": "Pmc", "index": 800 }, - { - "id": "6512f16bde333c33d5127cbc", - "imageUrl": "/files/achievement/Standard_4.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "6512fa32c22df3beb4c784ec", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6512fa327820cda3078b7386", - "conditions": [ - { - "id": "6512fb2953bb3221a4633b32", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "5fc64ea372b0dd78d51159dc" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "sectantPriest", - "sectantWarrior" - ], - "bodyPart": [], - "daytime": { - "from": 22, - "to": 5 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Common", - "hidden": true, - "showConditions": false, - "progressBarEnabled": false, - "side": "Pmc", - "index": 99999 - }, { "id": "65141c80ec10ff011f17cc3e", "imageUrl": "/files/achievement/Standard_27.png", @@ -485,2342 +476,6 @@ "side": "Pmc", "index": 99999 }, - { - "id": "6512ea46f7a078264a4376e4", - "imageUrl": "/files/achievement/Standard_2.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "6512ea68d94f62c7d905a1ba", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6512ea6820a4278a5e884dec", - "conditions": [ - { - "id": "6512ea76a606a458e3159afa", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - }, - { - "id": "651429bba98c934f8fe0daf3", - "dynamicLocale": false, - "exitName": "Interchange Cooperation", - "conditionType": "ExitName" - }, - { - "id": "658da10ebebee272ebc53bb0", - "dynamicLocale": false, - "target": [ - "Interchange" - ], - "conditionType": "Location" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Common", - "hidden": false, - "showConditions": false, - "progressBarEnabled": false, - "side": "Pmc", - "index": 600 - }, - { - "id": "6514143d59647d2cb3213c93", - "imageUrl": "/files/achievement/Legendary_14.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "6514142b50c1d03f34439529", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 100, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6514142b8618590eda7093b5", - "conditions": [ - { - "id": "6514143b06c9097aa708bbdd", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossKilla" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Legendary", - "hidden": false, - "showConditions": false, - "progressBarEnabled": true, - "side": "Pmc", - "index": 10000 - }, - { - "id": "6514184ec31fcb0e163577d2", - "imageUrl": "/files/achievement/Rare_20.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "651418430ab21e2a907ab76f", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 7, - "type": "Completion", - "oneSessionOnly": true, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6514184336f01da63f602162", - "conditions": [ - { - "id": "6514184d03e721757ca5d27f", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Rare", - "hidden": true, - "showConditions": false, - "progressBarEnabled": false, - "side": "Pmc", - "index": 99999 - }, - { - "id": "65141eb5c31fcb0e163577dd", - "imageUrl": "/files/achievement/Standard_31.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "65141ecc4f29c8d1bc7d66ad", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "65141eccc68987ea3789392f", - "conditions": [ - { - "id": "65141ed42b9fde0025039a2e", - "dynamicLocale": false, - "target": "achiv_plane", - "value": 1, - "conditionType": "VisitPlace" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Common", - "hidden": true, - "showConditions": false, - "progressBarEnabled": false, - "side": "Pmc", - "index": 99999 - }, - { - "id": "65140bbec31fcb0e163577b9", - "imageUrl": "/files/achievement/Rare_7.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "65140ba9e91ae7a2bdcaa332", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 15, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "65140ba9c65c70225c0c09e5", - "conditions": [ - { - "id": "65140bbe626cf757b4e5e69a", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossKojaniy" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Rare", - "hidden": false, - "showConditions": false, - "progressBarEnabled": true, - "side": "Pmc", - "index": 1800 - }, - { - "id": "65141dd6303df252af1c72c9", - "imageUrl": "/files/achievement/Rare_29.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "65141df0e69594cf853a40b9", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 300, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "65141df0b2c02ed20145004b", - "conditions": [ - { - "id": "65141dfe0161bd3459ab5c47", - "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Rare", - "hidden": false, - "showConditions": false, - "progressBarEnabled": true, - "side": "Pmc", - "index": 2800 - }, - { - "id": "6513eec00dc723592b0f90cc", - "imageUrl": "/files/achievement/Standard_9.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "6513eeb54f0adb43ec14e0f9", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6513eeb53bac8750af93b1af", - "conditions": [ - { - "id": "6513eec1082965fabf029627", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossGluhar" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Common", - "hidden": false, - "showConditions": false, - "progressBarEnabled": false, - "side": "Pmc", - "index": 1100 - }, - { - "id": "6513ed89cf2f1c285e606068", - "imageUrl": "/files/achievement/Standard_7.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "6513ed7795e79afdeaa767c6", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6513ed77dcfdb1debd2a89f7", - "conditions": [ - { - "id": "6513ed86081a2c2874bfca79", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossKojaniy" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Common", - "hidden": false, - "showConditions": false, - "progressBarEnabled": false, - "side": "Pmc", - "index": 900 - }, - { - "id": "65140c00b1c08b0feb216d50", - "imageUrl": "/files/achievement/Rare_8.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "65140bed0189951cd6816e28", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 15, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "65140bedd76a1ba9e1bd20de", - "conditions": [ - { - "id": "65140bfdc325f28f023606a9", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossBully" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Rare", - "hidden": false, - "showConditions": false, - "progressBarEnabled": true, - "side": "Pmc", - "index": 1900 - }, - { - "id": "65141032a3dd9b6aa7159ed3", - "imageUrl": "/files/achievement/Rare_9.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "6514103cf0ead1139b0691ba", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 15, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6514103c15ce013d45aa889a", - "conditions": [ - { - "id": "651411a7c708f7124c69635a", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossGluhar" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Rare", - "hidden": false, - "showConditions": false, - "progressBarEnabled": true, - "side": "Pmc", - "index": 2000 - }, - { - "id": "655b49bc91aa9e07687ae47c", - "imageUrl": "/files/achievement/Standard_44.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "655b4995528d47f68c1ffed6", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "655b4995970e93805307296a", - "conditions": [ - { - "id": "655b49b54acc925b78c4efd8", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossKolontay" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Common", - "hidden": false, - "showConditions": false, - "progressBarEnabled": false, - "side": "Pmc", - "index": 1500 - }, - { - "id": "6513f0a10dc723592b0f90cf", - "imageUrl": "/files/achievement/Standard_11.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "6513f0735bafc372682987b2", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6513f073d79c32b1385820e6", - "conditions": [ - { - "id": "6513f0a0e63e662c284c1341", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossBoar" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Common", - "hidden": false, - "showConditions": false, - "progressBarEnabled": false, - "side": "Pmc", - "index": 1300 - }, - { - "id": "6514174fb1c08b0feb216d73", - "imageUrl": "/files/achievement/Standard_16.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "6514172005d663354394968e", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "65141720df1f2d3bd55460d6", - "conditions": [ - { - "id": "6514174ab2cce6e3be28fd12", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 500, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [ - "Head" - ], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Common", - "hidden": true, - "showConditions": false, - "progressBarEnabled": false, - "side": "Pmc", - "index": 99999 - }, - { - "id": "65141ab70dc723592b0f9482", - "imageUrl": "/files/achievement/Standard_23.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "65141a9264cf3ab72f7e268f", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "65141a92797468b6dce930d6", - "conditions": [ - { - "id": "65141a9cea21eca381b7e45b", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [ - "Head" - ], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "65141b1a16b83cee74509f20", - "dynamicLocale": false, - "target": [ - "Buffs_drink_vodka" - ], - "conditionType": "HealthBuff" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Common", - "hidden": true, - "showConditions": false, - "progressBarEnabled": false, - "side": "Pmc", - "index": 99999 - }, - { - "id": "651415feb49e3253755f4b68", - "imageUrl": "/files/achievement/Rare_15.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "651414b741f4ad07ba7d55f9", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "651414b77305aca311dbe02c", - "conditions": [ - { - "id": "651414d6588122442d584af4", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossBoar" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - }, - { - "id": "651414eb3ec86f33dd54d978", - "index": 1, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "651414eb14f16979bd230000", - "conditions": [ - { - "id": "651414fd39836eac88d938fc", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossBully" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - }, - { - "id": "651415067c262d47d685c6d9", - "index": 2, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6514150635f240053e735c6e", - "conditions": [ - { - "id": "651415106ff646763a4b605d", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossGluhar" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - }, - { - "id": "6514151b2e8590fc2ac1d859", - "index": 3, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6514151b032c6d35f6edc776", - "conditions": [ - { - "id": "6514152c457ab18727a358a1", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossKilla" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - }, - { - "id": "6514151da13f174e3f52bc6e", - "index": 4, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6514151db1fe2101b28a8b9d", - "conditions": [ - { - "id": "6514155143431646c3425b77", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossKnight" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - }, - { - "id": "65141520143ef6349ad5f071", - "index": 5, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6514152011c88e44c5c3af11", - "conditions": [ - { - "id": "6514155e15f1ebf6ff07efc6", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossKojaniy" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - }, - { - "id": "6514156e21e1d85a7d029f8a", - "index": 6, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6514156e585b4443ec34c240", - "conditions": [ - { - "id": "6514157f93ead2b34e7a416e", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossSanitar" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - }, - { - "id": "65141570b18e12f60ba2e450", - "index": 7, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "651415706a548317e21a2a6e", - "conditions": [ - { - "id": "65141593d8f555d35cd5fdbb", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossTagilla", - "followerTagilla" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - }, - { - "id": "65141571dbcb26761524e977", - "index": 8, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "651415716f3a4df4dddc36eb", - "conditions": [ - { - "id": "651415b7209ec277548d0f78", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossZryachiy" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - }, - { - "id": "651415cfe97ba875119ef01c", - "index": 9, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "651415cfb65dbcade05554fb", - "conditions": [ - { - "id": "651415e343051aed2536553d", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "followerBigPipe" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - }, - { - "id": "651415d13c02ff4aa9e9a426", - "index": 10, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "651415d193b835d444cc9eae", - "conditions": [ - { - "id": "651415f8299a48421c305780", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "followerBirdEye" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - }, - { - "id": "657b21a3564a9197c2778f5a", - "index": 11, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "657b21a3cad12fdd8fc32f1d", - "conditions": [ - { - "id": "657b21b52d2bd7614a64c0a5", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossKolontay" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Rare", - "hidden": false, - "showConditions": true, - "progressBarEnabled": true, - "side": "Pmc", - "index": 2900 - }, - { - "id": "651419eea3dd9b6aa7159ee5", - "imageUrl": "/files/achievement/Rare_21.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "651418d2d2b2875692087490", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "651418d22b7c9e317fb3c682", - "conditions": [ - { - "id": "651418edb0e84127edc0f5b5", - "dynamicLocale": false, - "target": "Any", - "compareMethod": ">=", - "value": 0, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - }, - { - "id": "655475a268660bd93c489e2a", - "dynamicLocale": false, - "bodyPartsWithEffects": [ - { - "bodyParts": [ - "Head" - ], - "effects": [ - "Flash" - ] - } - ], - "energy": { - "value": 0, - "compareMethod": ">=" - }, - "hydration": { - "value": 0, - "compareMethod": ">=" - }, - "time": { - "value": 0, - "compareMethod": ">=" - }, - "conditionType": "HealthEffect" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Rare", - "hidden": false, - "showConditions": true, - "progressBarEnabled": false, - "side": "Pmc", - "index": 99999 - }, - { - "id": "65141c30ec10ff011f17cc3b", - "imageUrl": "/files/achievement/Standard_35_1.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "65141c118356939b8a5dcb18", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "65141c114a94d94faf76714a", - "conditions": [ - { - "id": "65141c2c4240e8676f8180e9", - "dynamicLocale": false, - "status": [ - "Killed" - ], - "conditionType": "ExitStatus" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Common", - "hidden": true, - "showConditions": false, - "progressBarEnabled": false, - "side": "Pmc", - "index": 99999 - }, - { - "id": "6512f1e3be73cc7f07358ed5", - "imageUrl": "/files/achievement/Standard_5.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "6512f1835ccfd6cf6105c5f9", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6512f183714c36a8684c1a90", - "conditions": [ - { - "id": "6512f1af1b6502e224c04b42", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossKilla" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Common", - "hidden": false, - "showConditions": false, - "progressBarEnabled": false, - "side": "Pmc", - "index": 700 - }, - { - "id": "651411f1cf2f1c285e606423", - "imageUrl": "/files/achievement/Rare_10.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "651411e599c1dc821414894a", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 15, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "651411e5bdf1da56c392111f", - "conditions": [ - { - "id": "651411f0bab2cc81e2f00494", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossSanitar" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Rare", - "hidden": false, - "showConditions": false, - "progressBarEnabled": true, - "side": "Pmc", - "index": 2100 - }, - { - "id": "651412b8c31fcb0e163577c5", - "imageUrl": "/files/achievement/Rare_11.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "6514124f2898c656ba65b1d6", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 15, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6514124f32b1b890055f179c", - "conditions": [ - { - "id": "6514129f145fab76dd8cc2cc", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossBoar" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Rare", - "hidden": false, - "showConditions": false, - "progressBarEnabled": true, - "side": "Pmc", - "index": 2200 - }, - { - "id": "6527ee4a647c29201011defe", - "imageUrl": "/files/achievement/Standard_43.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "6527f2f2c4d6004e4edbba06", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6527f2f297f3f0094887163e", - "conditions": [ - { - "id": "6527f3011dd276a0de4cbec2", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Common", - "hidden": true, - "showConditions": false, - "progressBarEnabled": false, - "side": "Savage", - "index": 99999 - }, - { - "id": "651417d6ec10ff011f17cc31", - "imageUrl": "/files/achievement/Standard_17.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "651417a006964b0216b796f8", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 4, - "type": "Completion", - "oneSessionOnly": true, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "651417a013b1a888948d2fbb", - "conditions": [ - { - "id": "651417cfac3354ffa1d2d48f", - "dynamicLocale": false, - "target": "AnyPmc", - "compareMethod": ">=", - "value": 1, - "weapon": [ - "5cadc190ae921500103bb3b6", - "5e81c3cbac2bb513793cdc75", - "5f36a0e5fbf956000b716b65", - "5d3eb3b0a4b93615055e84d2", - "5d67abc1a4b93614ec50137f", - "5a7ae0c351dfba0017554310", - "5b1fa9b25acfc40018633c01", - "63088377b5cd696784087147", - "6193a720f8ee7e52e42109ed", - "602a9740da11d6478d5a06dc", - "576a581d2459771e7b1bc4f1", - "5448bd6b4bdc2dfc2f8b4569", - "579204f224597773d619e051", - "5a17f98cfcdbcb0980087290", - "56d59856d2720bd8418b456a", - "56e0598dd2720bb5668b45a6", - "59f98b4986f7746f546d2cef", - "5abccb7dd8ce87001773e277", - "571a12c42459771f627b58a0", - "5b3b713c5acfc4330140bd8d" - ], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [ - "Head" - ], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Common", - "hidden": true, - "showConditions": false, - "progressBarEnabled": false, - "side": "Pmc", - "index": 99999 - }, - { - "id": "6513efa1b49e3253755f47eb", - "imageUrl": "/files/achievement/Standard_10.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "6513ef97971d04543779d03c", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6513ef972f92ed44e6b6db4f", - "conditions": [ - { - "id": "6513efa16bc5ce8faff0c99c", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossSanitar" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Common", - "hidden": false, - "showConditions": false, - "progressBarEnabled": false, - "side": "Pmc", - "index": 1200 - }, - { - "id": "65141bdfcf2f1c285e606446", - "imageUrl": "/files/achievement/Standard_25.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "65141bd40495cdcd5a295617", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 50, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "65141bd45e1791819b00ebd7", - "conditions": [ - { - "id": "65141bdd794d686b78322137", - "dynamicLocale": false, - "target": "Bear", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Common", - "hidden": false, - "showConditions": false, - "progressBarEnabled": true, - "side": "Pmc", - "index": 500 - }, - { - "id": "6527d3aac656a951ad1528ce", - "imageUrl": "/files/achievement/Rare22.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "6527d3c461b75610b0857223", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 15, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6527d3c44d494e90ed30ffaa", - "conditions": [ - { - "id": "6527d3db3e3e38176d00597c", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "followerBirdEye" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Rare", - "hidden": false, - "showConditions": false, - "progressBarEnabled": true, - "side": "Pmc", - "index": 2400 - }, - { - "id": "65140b55cf2f1c285e606414", - "imageUrl": "/files/achievement/Rare_6.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "65140b330329e9a52eb9bfeb", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 15, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "65140b3323dbe2bab60df713", - "conditions": [ - { - "id": "65140b4a06ca100b1be619fb", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossTagilla", - "followerTagilla" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Rare", - "hidden": false, - "showConditions": false, - "progressBarEnabled": true, - "side": "Pmc", - "index": 1700 - }, - { - "id": "6514134eec10ff011f17cc26", - "imageUrl": "/files/achievement/Rare21.png", - "assetPath": "", - "rewards": [], - "conditions": { - "availableForFinish": [ - { - "id": "651412ef0afef6dad1a21477", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 15, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "651412efaf07557d535b1a8b", - "conditions": [ - { - "id": "6514131af44dd03c70522642", - "dynamicLocale": false, - "target": "Savage", - "compareMethod": ">=", - "value": 1, - "weapon": [], - "distance": { - "value": 0, - "compareMethod": ">=" - }, - "weaponModsInclusive": [], - "weaponModsExclusive": [], - "enemyEquipmentInclusive": [], - "enemyEquipmentExclusive": [], - "weaponCaliber": [], - "savageRole": [ - "bossKnight" - ], - "bodyPart": [], - "daytime": { - "from": 0, - "to": 0 - }, - "enemyHealthEffects": [], - "resetOnSessionEnd": false, - "conditionType": "Kills" - } - ] - }, - "conditionType": "CounterCreator" - } - ], - "fail": [] - }, - "instantComplete": false, - "showNotificationsInGame": false, - "showProgress": false, - "prefab": "", - "rarity": "Rare", - "hidden": false, - "showConditions": false, - "progressBarEnabled": true, - "side": "Pmc", - "index": 2300 - }, { "id": "6512eb3ddfb0ae1ee75a0376", "imageUrl": "/files/achievement/Standard_3.png", @@ -3171,8 +826,7 @@ "id": "657b205bb4c7fe41910f9c55", "dynamicLocale": false, "target": [ - "Sandbox", - "Sandbox_high" + "Sandbox" ], "conditionType": "Location" } @@ -3195,93 +849,80 @@ "index": 100 }, { - "id": "65141cd2cf2f1c285e606449", - "imageUrl": "/files/achievement/Rare_28.png", + "id": "6514184ec31fcb0e163577d2", + "imageUrl": "/files/achievement/Rare_20.png", "assetPath": "", "rewards": [], "conditions": { "availableForFinish": [ { - "id": "65141cdcb9d5ff895410e1e4", + "id": "651418430ab21e2a907ab76f", "index": 0, "dynamicLocale": false, "visibilityConditions": [], "globalQuestCounterId": "", "parentId": "", - "value": 10, + "value": 7, "type": "Completion", - "oneSessionOnly": false, + "oneSessionOnly": true, "completeInSeconds": 0, "doNotResetIfCounterCompleted": false, "counter": { - "id": "65141cdc82d9e169ba5a90e6", + "id": "6514184336f01da63f602162", "conditions": [ { - "id": "65141cf47b5a7fd95f5092b9", + "id": "6514184d03e721757ca5d27f", "dynamicLocale": false, - "status": [ - "Survived" - ], - "conditionType": "ExitStatus" + "target": "AnyPmc", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" } ] }, "conditionType": "CounterCreator" } ], - "fail": [ - { - "id": "6527d527f15bed8e345640c7", - "index": 0, - "dynamicLocale": false, - "visibilityConditions": [], - "globalQuestCounterId": "", - "parentId": "", - "value": 1, - "type": "Completion", - "oneSessionOnly": false, - "completeInSeconds": 0, - "doNotResetIfCounterCompleted": false, - "counter": { - "id": "6527d527e6c6c9b64f45e7a0", - "conditions": [ - { - "id": "6527d539636599b4523873fb", - "dynamicLocale": false, - "status": [ - "Runner", - "Killed", - "MissingInAction", - "Left" - ], - "conditionType": "ExitStatus" - } - ] - }, - "conditionType": "CounterCreator" - } - ] + "fail": [] }, "instantComplete": false, "showNotificationsInGame": false, "showProgress": false, "prefab": "", "rarity": "Rare", - "hidden": false, + "hidden": true, "showConditions": false, - "progressBarEnabled": true, + "progressBarEnabled": false, "side": "Pmc", - "index": 2700 + "index": 99999 }, { - "id": "65141e37cf2f1c285e606361", - "imageUrl": "/files/achievement/Standard_30.png", + "id": "6514174fb1c08b0feb216d73", + "imageUrl": "/files/achievement/Standard_16.png", "assetPath": "", "rewards": [], "conditions": { "availableForFinish": [ { - "id": "65141e43ea19c90e85ad60f5", + "id": "6514172005d663354394968e", "index": 0, "dynamicLocale": false, "visibilityConditions": [], @@ -3293,12 +934,287 @@ "completeInSeconds": 0, "doNotResetIfCounterCompleted": false, "counter": { - "id": "65141e43228fae16452d4a5f", + "id": "65141720df1f2d3bd55460d6", "conditions": [ { - "id": "65141e89290391d51161d574", + "id": "6514174ab2cce6e3be28fd12", "dynamicLocale": false, - "target": "achiv_office", + "target": "AnyPmc", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 500, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [ + "Head" + ], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Common", + "hidden": true, + "showConditions": false, + "progressBarEnabled": false, + "side": "Pmc", + "index": 99999 + }, + { + "id": "6512f16bde333c33d5127cbc", + "imageUrl": "/files/achievement/Standard_4.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "6512fa32c22df3beb4c784ec", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6512fa327820cda3078b7386", + "conditions": [ + { + "id": "6512fb2953bb3221a4633b32", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5fc64ea372b0dd78d51159dc" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "sectantPriest", + "sectantWarrior" + ], + "bodyPart": [], + "daytime": { + "from": 22, + "to": 5 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Common", + "hidden": true, + "showConditions": false, + "progressBarEnabled": false, + "side": "Pmc", + "index": 99999 + }, + { + "id": "6513eec00dc723592b0f90cc", + "imageUrl": "/files/achievement/Standard_9.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "6513eeb54f0adb43ec14e0f9", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6513eeb53bac8750af93b1af", + "conditions": [ + { + "id": "6513eec1082965fabf029627", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossGluhar" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Common", + "hidden": false, + "showConditions": false, + "progressBarEnabled": false, + "side": "Pmc", + "index": 1100 + }, + { + "id": "6514143d59647d2cb3213c93", + "imageUrl": "/files/achievement/Legendary_14.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "6514142b50c1d03f34439529", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 100, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6514142b8618590eda7093b5", + "conditions": [ + { + "id": "6514143b06c9097aa708bbdd", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossKilla" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Legendary", + "hidden": false, + "showConditions": false, + "progressBarEnabled": true, + "side": "Pmc", + "index": 10000 + }, + { + "id": "65141eb5c31fcb0e163577dd", + "imageUrl": "/files/achievement/Standard_31.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "65141ecc4f29c8d1bc7d66ad", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "65141eccc68987ea3789392f", + "conditions": [ + { + "id": "65141ed42b9fde0025039a2e", + "dynamicLocale": false, + "target": "achiv_plane", "value": 1, "conditionType": "VisitPlace" } @@ -3321,14 +1237,14 @@ "index": 99999 }, { - "id": "6514321bec10ff011f17ccac", - "imageUrl": "/files/achievement/Legendary_42.png", + "id": "6513efa1b49e3253755f47eb", + "imageUrl": "/files/achievement/Standard_10.png", "assetPath": "", "rewards": [], "conditions": { "availableForFinish": [ { - "id": "651432072a2ef048f4e277fc", + "id": "6513ef97971d04543779d03c", "index": 0, "dynamicLocale": false, "visibilityConditions": [], @@ -3340,14 +1256,35 @@ "completeInSeconds": 0, "doNotResetIfCounterCompleted": false, "counter": { - "id": "65143207c4217af38bf3ba74", + "id": "6513ef972f92ed44e6b6db4f", "conditions": [ { - "id": "6514320ffae494c02fafabe8", + "id": "6513efa16bc5ce8faff0c99c", "dynamicLocale": false, - "target": "meh_50_visit_area_check_1", + "target": "Savage", + "compareMethod": ">=", "value": 1, - "conditionType": "VisitPlace" + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossSanitar" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" } ] }, @@ -3360,22 +1297,111 @@ "showNotificationsInGame": false, "showProgress": false, "prefab": "", - "rarity": "Legendary", + "rarity": "Common", "hidden": false, "showConditions": false, "progressBarEnabled": false, "side": "Pmc", - "index": 11000 + "index": 1200 }, { - "id": "655b4a576689c676ce57acb6", - "imageUrl": "/files/achievement/Rare_44.png", + "id": "651417d6ec10ff011f17cc31", + "imageUrl": "/files/achievement/Standard_17.png", "assetPath": "", "rewards": [], "conditions": { "availableForFinish": [ { - "id": "655b4a60b530cde7167d842f", + "id": "651417a006964b0216b796f8", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 4, + "type": "Completion", + "oneSessionOnly": true, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "651417a013b1a888948d2fbb", + "conditions": [ + { + "id": "651417cfac3354ffa1d2d48f", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 1, + "weapon": [ + "5cadc190ae921500103bb3b6", + "5e81c3cbac2bb513793cdc75", + "5f36a0e5fbf956000b716b65", + "5d3eb3b0a4b93615055e84d2", + "5d67abc1a4b93614ec50137f", + "5a7ae0c351dfba0017554310", + "5b1fa9b25acfc40018633c01", + "63088377b5cd696784087147", + "6193a720f8ee7e52e42109ed", + "602a9740da11d6478d5a06dc", + "576a581d2459771e7b1bc4f1", + "5448bd6b4bdc2dfc2f8b4569", + "579204f224597773d619e051", + "5a17f98cfcdbcb0980087290", + "56d59856d2720bd8418b456a", + "56e0598dd2720bb5668b45a6", + "59f98b4986f7746f546d2cef", + "5abccb7dd8ce87001773e277", + "571a12c42459771f627b58a0", + "5b3b713c5acfc4330140bd8d" + ], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [ + "Head" + ], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Common", + "hidden": true, + "showConditions": false, + "progressBarEnabled": false, + "side": "Pmc", + "index": 99999 + }, + { + "id": "65140bbec31fcb0e163577b9", + "imageUrl": "/files/achievement/Rare_7.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "65140ba9e91ae7a2bdcaa332", "index": 0, "dynamicLocale": false, "visibilityConditions": [], @@ -3387,10 +1413,338 @@ "completeInSeconds": 0, "doNotResetIfCounterCompleted": false, "counter": { - "id": "655b4a60dab67096955b608d", + "id": "65140ba9c65c70225c0c09e5", "conditions": [ { - "id": "655b4a76acac42c114c76b7a", + "id": "65140bbe626cf757b4e5e69a", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossKojaniy" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Rare", + "hidden": false, + "showConditions": false, + "progressBarEnabled": true, + "side": "Pmc", + "index": 1800 + }, + { + "id": "65141dd6303df252af1c72c9", + "imageUrl": "/files/achievement/Rare_29.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "65141df0e69594cf853a40b9", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 300, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "65141df0b2c02ed20145004b", + "conditions": [ + { + "id": "65141dfe0161bd3459ab5c47", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Rare", + "hidden": false, + "showConditions": false, + "progressBarEnabled": true, + "side": "Pmc", + "index": 2800 + }, + { + "id": "65141ab70dc723592b0f9482", + "imageUrl": "/files/achievement/Standard_23.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "65141a9264cf3ab72f7e268f", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "65141a92797468b6dce930d6", + "conditions": [ + { + "id": "65141a9cea21eca381b7e45b", + "dynamicLocale": false, + "target": "AnyPmc", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [ + "Head" + ], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "65141b1a16b83cee74509f20", + "dynamicLocale": false, + "target": [ + "Buffs_drink_vodka" + ], + "conditionType": "HealthBuff" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Common", + "hidden": true, + "showConditions": false, + "progressBarEnabled": false, + "side": "Pmc", + "index": 99999 + }, + { + "id": "65140c00b1c08b0feb216d50", + "imageUrl": "/files/achievement/Rare_8.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "65140bed0189951cd6816e28", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 15, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "65140bedd76a1ba9e1bd20de", + "conditions": [ + { + "id": "65140bfdc325f28f023606a9", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossBully" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Rare", + "hidden": false, + "showConditions": false, + "progressBarEnabled": true, + "side": "Pmc", + "index": 1900 + }, + { + "id": "65141032a3dd9b6aa7159ed3", + "imageUrl": "/files/achievement/Rare_9.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "6514103cf0ead1139b0691ba", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 15, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6514103c15ce013d45aa889a", + "conditions": [ + { + "id": "651411a7c708f7124c69635a", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossGluhar" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Rare", + "hidden": false, + "showConditions": false, + "progressBarEnabled": true, + "side": "Pmc", + "index": 2000 + }, + { + "id": "655b49bc91aa9e07687ae47c", + "imageUrl": "/files/achievement/Standard_44.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "655b4995528d47f68c1ffed6", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "655b4995970e93805307296a", + "conditions": [ + { + "id": "655b49b54acc925b78c4efd8", "dynamicLocale": false, "target": "Savage", "compareMethod": ">=", @@ -3428,12 +1782,285 @@ "showNotificationsInGame": false, "showProgress": false, "prefab": "", + "rarity": "Common", + "hidden": false, + "showConditions": false, + "progressBarEnabled": false, + "side": "Pmc", + "index": 1500 + }, + { + "id": "6513ed89cf2f1c285e606068", + "imageUrl": "/files/achievement/Standard_7.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "6513ed7795e79afdeaa767c6", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6513ed77dcfdb1debd2a89f7", + "conditions": [ + { + "id": "6513ed86081a2c2874bfca79", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossKojaniy" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Common", + "hidden": false, + "showConditions": false, + "progressBarEnabled": false, + "side": "Pmc", + "index": 900 + }, + { + "id": "6513f0a10dc723592b0f90cf", + "imageUrl": "/files/achievement/Standard_11.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "6513f0735bafc372682987b2", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6513f073d79c32b1385820e6", + "conditions": [ + { + "id": "6513f0a0e63e662c284c1341", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossBoar" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Common", + "hidden": false, + "showConditions": false, + "progressBarEnabled": false, + "side": "Pmc", + "index": 1300 + }, + { + "id": "65140b55cf2f1c285e606414", + "imageUrl": "/files/achievement/Rare_6.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "65140b330329e9a52eb9bfeb", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 15, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "65140b3323dbe2bab60df713", + "conditions": [ + { + "id": "65140b4a06ca100b1be619fb", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossTagilla", + "followerTagilla" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", "rarity": "Rare", "hidden": false, "showConditions": false, "progressBarEnabled": true, "side": "Pmc", - "index": 3000 + "index": 1700 + }, + { + "id": "6514134eec10ff011f17cc26", + "imageUrl": "/files/achievement/Rare21.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "651412ef0afef6dad1a21477", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 15, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "651412efaf07557d535b1a8b", + "conditions": [ + { + "id": "6514131af44dd03c70522642", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossKnight" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Rare", + "hidden": false, + "showConditions": false, + "progressBarEnabled": true, + "side": "Pmc", + "index": 2300 }, { "id": "6527d2e2c656a951ad1528c3", @@ -4405,5 +3032,1377 @@ "progressBarEnabled": true, "side": "Pmc", "index": 400 + }, + { + "id": "65141cd2cf2f1c285e606449", + "imageUrl": "/files/achievement/Rare_28.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "65141cdcb9d5ff895410e1e4", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 10, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "65141cdc82d9e169ba5a90e6", + "conditions": [ + { + "id": "65141cf47b5a7fd95f5092b9", + "dynamicLocale": false, + "status": [ + "Survived" + ], + "conditionType": "ExitStatus" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [ + { + "id": "6527d527f15bed8e345640c7", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6527d527e6c6c9b64f45e7a0", + "conditions": [ + { + "id": "6527d539636599b4523873fb", + "dynamicLocale": false, + "status": [ + "Runner", + "Killed", + "MissingInAction", + "Left" + ], + "conditionType": "ExitStatus" + } + ] + }, + "conditionType": "CounterCreator" + } + ] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Rare", + "hidden": false, + "showConditions": false, + "progressBarEnabled": true, + "side": "Pmc", + "index": 2700 + }, + { + "id": "65141e37cf2f1c285e606361", + "imageUrl": "/files/achievement/Standard_30.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "65141e43ea19c90e85ad60f5", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "65141e43228fae16452d4a5f", + "conditions": [ + { + "id": "65141e89290391d51161d574", + "dynamicLocale": false, + "target": "achiv_office", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Common", + "hidden": true, + "showConditions": false, + "progressBarEnabled": false, + "side": "Pmc", + "index": 99999 + }, + { + "id": "6512f1e3be73cc7f07358ed5", + "imageUrl": "/files/achievement/Standard_5.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "6512f1835ccfd6cf6105c5f9", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6512f183714c36a8684c1a90", + "conditions": [ + { + "id": "6512f1af1b6502e224c04b42", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossKilla" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Common", + "hidden": false, + "showConditions": false, + "progressBarEnabled": false, + "side": "Pmc", + "index": 700 + }, + { + "id": "651411f1cf2f1c285e606423", + "imageUrl": "/files/achievement/Rare_10.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "651411e599c1dc821414894a", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 15, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "651411e5bdf1da56c392111f", + "conditions": [ + { + "id": "651411f0bab2cc81e2f00494", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossSanitar" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Rare", + "hidden": false, + "showConditions": false, + "progressBarEnabled": true, + "side": "Pmc", + "index": 2100 + }, + { + "id": "651412b8c31fcb0e163577c5", + "imageUrl": "/files/achievement/Rare_11.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "6514124f2898c656ba65b1d6", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 15, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6514124f32b1b890055f179c", + "conditions": [ + { + "id": "6514129f145fab76dd8cc2cc", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossBoar" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Rare", + "hidden": false, + "showConditions": false, + "progressBarEnabled": true, + "side": "Pmc", + "index": 2200 + }, + { + "id": "6527ee4a647c29201011defe", + "imageUrl": "/files/achievement/Standard_43.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "6527f2f2c4d6004e4edbba06", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6527f2f297f3f0094887163e", + "conditions": [ + { + "id": "6527f3011dd276a0de4cbec2", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Common", + "hidden": true, + "showConditions": false, + "progressBarEnabled": false, + "side": "Savage", + "index": 99999 + }, + { + "id": "6514321bec10ff011f17ccac", + "imageUrl": "/files/achievement/Legendary_42.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "651432072a2ef048f4e277fc", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "65143207c4217af38bf3ba74", + "conditions": [ + { + "id": "6514320ffae494c02fafabe8", + "dynamicLocale": false, + "target": "meh_50_visit_area_check_1", + "value": 1, + "conditionType": "VisitPlace" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Legendary", + "hidden": false, + "showConditions": false, + "progressBarEnabled": false, + "side": "Pmc", + "index": 11000 + }, + { + "id": "655b4a576689c676ce57acb6", + "imageUrl": "/files/achievement/Rare_44.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "655b4a60b530cde7167d842f", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 15, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "655b4a60dab67096955b608d", + "conditions": [ + { + "id": "655b4a76acac42c114c76b7a", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossKolontay" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Rare", + "hidden": false, + "showConditions": false, + "progressBarEnabled": true, + "side": "Pmc", + "index": 3000 + }, + { + "id": "651415feb49e3253755f4b68", + "imageUrl": "/files/achievement/Rare_15.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "651414b741f4ad07ba7d55f9", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "651414b77305aca311dbe02c", + "conditions": [ + { + "id": "651414d6588122442d584af4", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossBoar" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + }, + { + "id": "651414eb3ec86f33dd54d978", + "index": 1, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "651414eb14f16979bd230000", + "conditions": [ + { + "id": "651414fd39836eac88d938fc", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossBully" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + }, + { + "id": "651415067c262d47d685c6d9", + "index": 2, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6514150635f240053e735c6e", + "conditions": [ + { + "id": "651415106ff646763a4b605d", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossGluhar" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + }, + { + "id": "6514151b2e8590fc2ac1d859", + "index": 3, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6514151b032c6d35f6edc776", + "conditions": [ + { + "id": "6514152c457ab18727a358a1", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossKilla" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + }, + { + "id": "6514151da13f174e3f52bc6e", + "index": 4, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6514151db1fe2101b28a8b9d", + "conditions": [ + { + "id": "6514155143431646c3425b77", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossKnight" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + }, + { + "id": "65141520143ef6349ad5f071", + "index": 5, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6514152011c88e44c5c3af11", + "conditions": [ + { + "id": "6514155e15f1ebf6ff07efc6", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossKojaniy" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + }, + { + "id": "6514156e21e1d85a7d029f8a", + "index": 6, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6514156e585b4443ec34c240", + "conditions": [ + { + "id": "6514157f93ead2b34e7a416e", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossSanitar" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + }, + { + "id": "65141570b18e12f60ba2e450", + "index": 7, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "651415706a548317e21a2a6e", + "conditions": [ + { + "id": "65141593d8f555d35cd5fdbb", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossTagilla", + "followerTagilla" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + }, + { + "id": "65141571dbcb26761524e977", + "index": 8, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "651415716f3a4df4dddc36eb", + "conditions": [ + { + "id": "651415b7209ec277548d0f78", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossZryachiy" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + }, + { + "id": "651415cfe97ba875119ef01c", + "index": 9, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "651415cfb65dbcade05554fb", + "conditions": [ + { + "id": "651415e343051aed2536553d", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "followerBigPipe" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + }, + { + "id": "651415d13c02ff4aa9e9a426", + "index": 10, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "651415d193b835d444cc9eae", + "conditions": [ + { + "id": "651415f8299a48421c305780", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "followerBirdEye" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + }, + { + "id": "657b21a3564a9197c2778f5a", + "index": 11, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "657b21a3cad12fdd8fc32f1d", + "conditions": [ + { + "id": "657b21b52d2bd7614a64c0a5", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "bossKolontay" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Rare", + "hidden": false, + "showConditions": true, + "progressBarEnabled": true, + "side": "Pmc", + "index": 2900 + }, + { + "id": "651419eea3dd9b6aa7159ee5", + "imageUrl": "/files/achievement/Rare_21.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "651418d2d2b2875692087490", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "651418d22b7c9e317fb3c682", + "conditions": [ + { + "id": "651418edb0e84127edc0f5b5", + "dynamicLocale": false, + "target": "Any", + "compareMethod": ">=", + "value": 0, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + }, + { + "id": "655475a268660bd93c489e2a", + "dynamicLocale": false, + "bodyPartsWithEffects": [ + { + "bodyParts": [ + "Head" + ], + "effects": [ + "Flash" + ] + } + ], + "energy": { + "value": 0, + "compareMethod": ">=" + }, + "hydration": { + "value": 0, + "compareMethod": ">=" + }, + "time": { + "value": 0, + "compareMethod": ">=" + }, + "conditionType": "HealthEffect" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Rare", + "hidden": false, + "showConditions": true, + "progressBarEnabled": false, + "side": "Pmc", + "index": 99999 + }, + { + "id": "65141c30ec10ff011f17cc3b", + "imageUrl": "/files/achievement/Standard_35_1.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "65141c118356939b8a5dcb18", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 1, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "65141c114a94d94faf76714a", + "conditions": [ + { + "id": "65141c2c4240e8676f8180e9", + "dynamicLocale": false, + "status": [ + "Killed" + ], + "conditionType": "ExitStatus" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Common", + "hidden": true, + "showConditions": false, + "progressBarEnabled": false, + "side": "Pmc", + "index": 99999 + }, + { + "id": "65141bdfcf2f1c285e606446", + "imageUrl": "/files/achievement/Standard_25.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "65141bd40495cdcd5a295617", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 50, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "65141bd45e1791819b00ebd7", + "conditions": [ + { + "id": "65141bdd794d686b78322137", + "dynamicLocale": false, + "target": "Bear", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Common", + "hidden": false, + "showConditions": false, + "progressBarEnabled": true, + "side": "Pmc", + "index": 500 + }, + { + "id": "6527d3aac656a951ad1528ce", + "imageUrl": "/files/achievement/Rare22.png", + "assetPath": "", + "rewards": [], + "conditions": { + "availableForFinish": [ + { + "id": "6527d3c461b75610b0857223", + "index": 0, + "dynamicLocale": false, + "visibilityConditions": [], + "globalQuestCounterId": "", + "parentId": "", + "value": 15, + "type": "Completion", + "oneSessionOnly": false, + "completeInSeconds": 0, + "doNotResetIfCounterCompleted": false, + "counter": { + "id": "6527d3c44d494e90ed30ffaa", + "conditions": [ + { + "id": "6527d3db3e3e38176d00597c", + "dynamicLocale": false, + "target": "Savage", + "compareMethod": ">=", + "value": 1, + "weapon": [], + "distance": { + "value": 0, + "compareMethod": ">=" + }, + "weaponModsInclusive": [], + "weaponModsExclusive": [], + "enemyEquipmentInclusive": [], + "enemyEquipmentExclusive": [], + "weaponCaliber": [], + "savageRole": [ + "followerBirdEye" + ], + "bodyPart": [], + "daytime": { + "from": 0, + "to": 0 + }, + "enemyHealthEffects": [], + "resetOnSessionEnd": false, + "conditionType": "Kills" + } + ] + }, + "conditionType": "CounterCreator" + } + ], + "fail": [] + }, + "instantComplete": false, + "showNotificationsInGame": false, + "showProgress": false, + "prefab": "", + "rarity": "Rare", + "hidden": false, + "showConditions": false, + "progressBarEnabled": true, + "side": "Pmc", + "index": 2400 } ] \ No newline at end of file diff --git a/project/assets/database/templates/handbook.json b/project/assets/database/templates/handbook.json index fb7426fa..ce4fdde1 100644 --- a/project/assets/database/templates/handbook.json +++ b/project/assets/database/templates/handbook.json @@ -1,61 +1,5 @@ { "Categories": [ - { - "Id": "5b47574386f77428ca22b335", - "ParentId": "5b47574386f77428ca22b340", - "Icon": "/files/handbook/icon_provisions_drinks.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b47574386f77428ca22b33f", - "ParentId": null, - "Icon": "/files/handbook/icon_gear.png", - "Color": "", - "Order": "12" - }, - { - "Id": "5b47574386f77428ca22b341", - "ParentId": null, - "Icon": "/files/handbook/icon_info.png", - "Color": "", - "Order": "5" - }, - { - "Id": "5b5f73ab86f774094242f195", - "ParentId": "5b5f736886f774094242f193", - "Icon": "/files/handbook/", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f73c486f77447ec5d7704", - "ParentId": "5b5f736886f774094242f193", - "Icon": "/files/handbook/", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f748386f774093e6cb501", - "ParentId": "5b5f73ec86f774093e6cb4fd", - "Icon": "/files/handbook/", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f752e86f774093e6cb505", - "ParentId": "5b5f750686f774093e6cb503", - "Icon": "/files/handbook/icon_mod_launcher.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b619f1a86f77450a702a6f3", - "ParentId": null, - "Icon": "/files/handbook/icon_quest.png", - "Color": "", - "Order": "1" - }, { "Id": "5b47574386f77428ca22b2f6", "ParentId": "5b47574386f77428ca22b33e", @@ -64,40 +8,54 @@ "Order": "100" }, { - "Id": "5b47574386f77428ca22b2ee", + "Id": "5b47574386f77428ca22b2f1", "ParentId": "5b47574386f77428ca22b33e", - "Icon": "/files/handbook/icon_barter_building.png", + "Icon": "/files/handbook/icon_barter_valuables.png", "Color": "", "Order": "100" }, { - "Id": "5b47574386f77428ca22b338", - "ParentId": "5b47574386f77428ca22b344", - "Icon": "/files/handbook/icon_medical_medkits.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b47574386f77428ca22b2f0", + "Id": "5b47574386f77428ca22b2f2", "ParentId": "5b47574386f77428ca22b33e", - "Icon": "/files/handbook/icon_barter_household.png", + "Icon": "/files/handbook/icon_barter_flammable.png", "Color": "", "Order": "100" }, { - "Id": "5b47574386f77428ca22b336", - "ParentId": "5b47574386f77428ca22b340", - "Icon": "/files/handbook/icon_provisions_food.png", + "Id": "5b47574386f77428ca22b32f", + "ParentId": "5b47574386f77428ca22b33f", + "Icon": "/files/handbook/icon_gear_facecovers.png", "Color": "", "Order": "100" }, { - "Id": "5b47574386f77428ca22b33a", - "ParentId": "5b47574386f77428ca22b344", - "Icon": "/files/handbook/icon_medical_injectors.png", + "Id": "5b5f749986f774094242f199", + "ParentId": "5b5f73ec86f774093e6cb4fd", + "Icon": "/files/handbook/", "Color": "", "Order": "100" }, + { + "Id": "5b47574386f77428ca22b2ed", + "ParentId": "5b47574386f77428ca22b33e", + "Icon": "/files/handbook/icon_barter_energy.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b47574386f77428ca22b33b", + "ParentId": "5b47574386f77428ca22b346", + "Icon": "/files/handbook/icon_ammo_rounds.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b47574386f77428ca22b344", + "ParentId": null, + "Icon": "/files/handbook/icon_medical.png", + "Color": "", + "Order": "7" + }, { "Id": "5b47574386f77428ca22b2f3", "ParentId": "5b47574386f77428ca22b33e", @@ -113,123 +71,39 @@ "Order": "100" }, { - "Id": "5b5f6f8786f77447ed563642", - "ParentId": "5b47574386f77428ca22b33f", - "Icon": "/files/handbook/icon_gear_rigs.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b47574386f77428ca22b343", - "ParentId": null, - "Icon": "/files/handbook/icon_maps.png", - "Color": "", - "Order": "3" - }, - { - "Id": "5b5f701386f774093f2ecf0f", - "ParentId": "5b47574386f77428ca22b33f", - "Icon": "/files/handbook/icon_gear_armor.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b47574386f77428ca22b331", - "ParentId": "5b47574386f77428ca22b33f", - "Icon": "/files/handbook/icon_gear_visors.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f73ec86f774093e6cb4fd", - "ParentId": "5b5f71b386f774093f2ecf11", - "Icon": "/files/handbook/icon_mod_sight.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f761f86f774094242f1a1", - "ParentId": "5b5f75b986f77447ec5d7710", - "Icon": "/files/handbook/icon_mod_pistolgrip.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f794b86f77409407a7f92", - "ParentId": "5b5f78dc86f77409407a7f8e", - "Icon": "/files/handbook/icon_weapons_shotguns.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f6f6c86f774093f2ecf0b", - "ParentId": "5b47574386f77428ca22b33f", - "Icon": "/files/handbook/icon_gear_backpacks.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b47574386f77428ca22b2f1", + "Id": "5b47574386f77428ca22b2f0", "ParentId": "5b47574386f77428ca22b33e", - "Icon": "/files/handbook/icon_barter_valuables.png", + "Icon": "/files/handbook/icon_barter_household.png", "Color": "", "Order": "100" }, { - "Id": "5b47574386f77428ca22b345", + "Id": "5b47574386f77428ca22b342", "ParentId": null, - "Icon": "/files/handbook/icon_spec.png", + "Icon": "/files/handbook/icon_keys.png", "Color": "", - "Order": "4" + "Order": "6" }, { - "Id": "5b47574386f77428ca22b2ed", - "ParentId": "5b47574386f77428ca22b33e", - "Icon": "/files/handbook/icon_barter_energy.png", + "Id": "5b5f737886f774093e6cb4fb", + "ParentId": "5b5f736886f774094242f193", + "Icon": "/files/handbook/", "Color": "", "Order": "100" }, { - "Id": "5b47574386f77428ca22b344", + "Id": "5b5f742686f774093e6cb4ff", + "ParentId": "5b5f73ec86f774093e6cb4fd", + "Icon": "/files/handbook/", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f78b786f77447ed5636af", "ParentId": null, - "Icon": "/files/handbook/icon_medical.png", + "Icon": "/files/handbook/icon_money.png", "Color": "", - "Order": "7" - }, - { - "Id": "5b5f757486f774093e6cb507", - "ParentId": "5b5f750686f774093e6cb503", - "Icon": "/files/handbook/icon_mod_stock.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b47574386f77428ca22b2f2", - "ParentId": "5b47574386f77428ca22b33e", - "Icon": "/files/handbook/icon_barter_flammable.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b47574386f77428ca22b339", - "ParentId": "5b47574386f77428ca22b344", - "Icon": "/files/handbook/icon_medical_injury.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f75c686f774094242f19f", - "ParentId": "5b5f75b986f77447ec5d7710", - "Icon": "/files/handbook/icon_mod_barrel.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f75e486f77447ec5d7712", - "ParentId": "5b5f75b986f77447ec5d7710", - "Icon": "/files/handbook/icon_mod_handguard.png", - "Color": "", - "Order": "100" + "Order": "2" }, { "Id": "5b5f78dc86f77409407a7f8e", @@ -239,16 +113,58 @@ "Order": "10" }, { - "Id": "5b5f78fc86f77409407a7f90", + "Id": "5b5f794b86f77409407a7f92", "ParentId": "5b5f78dc86f77409407a7f8e", - "Icon": "/files/handbook/icon_weapons_assaultrifles.png", + "Icon": "/files/handbook/icon_weapons_shotguns.png", "Color": "", "Order": "100" }, { - "Id": "5b47574386f77428ca22b33b", - "ParentId": "5b47574386f77428ca22b346", - "Icon": "/files/handbook/icon_ammo_rounds.png", + "Id": "5b5f7a2386f774093f2ed3c4", + "ParentId": "5b5f78dc86f77409407a7f8e", + "Icon": "/files/handbook/icon_weapons_throw.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f6fd286f774093f2ecf0d", + "ParentId": "5b47574386f77428ca22b33f", + "Icon": "/files/handbook/icon_gear_secured.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f71a686f77447ed5636ab", + "ParentId": null, + "Icon": "/files/handbook/icon_mods.png", + "Color": "", + "Order": "11" + }, + { + "Id": "5b5f71b386f774093f2ecf11", + "ParentId": "5b5f71a686f77447ed5636ab", + "Icon": "/files/handbook/icon_mods_functional.png", + "Color": "#284e64", + "Order": "100" + }, + { + "Id": "5b5f7a0886f77409407a7f96", + "ParentId": "5b5f78dc86f77409407a7f8e", + "Icon": "/files/handbook/icon_weapons_melee.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b47574386f77428ca22b335", + "ParentId": "5b47574386f77428ca22b340", + "Icon": "/files/handbook/icon_provisions_drinks.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b47574386f77428ca22b33a", + "ParentId": "5b47574386f77428ca22b344", + "Icon": "/files/handbook/icon_medical_injectors.png", "Color": "", "Order": "100" }, @@ -260,12 +176,187 @@ "Order": "100" }, { - "Id": "5b5f744786f774094242f197", + "Id": "5b47574386f77428ca22b330", + "ParentId": "5b47574386f77428ca22b33f", + "Icon": "/files/handbook/icon_gear_headwear.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b47574386f77428ca22b345", + "ParentId": null, + "Icon": "/files/handbook/icon_spec.png", + "Color": "", + "Order": "4" + }, + { + "Id": "5b5f71c186f77409407a7ec0", + "ParentId": "5b5f71b386f774093f2ecf11", + "Icon": "/files/handbook/icon_mod_bipod.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f748386f774093e6cb501", "ParentId": "5b5f73ec86f774093e6cb4fd", "Icon": "/files/handbook/", "Color": "", "Order": "100" }, + { + "Id": "5b5f750686f774093e6cb503", + "ParentId": "5b5f71a686f77447ed5636ab", + "Icon": "/files/handbook/icon_mods_gear.png", + "Color": "#1f4d2a", + "Order": "100" + }, + { + "Id": "5b5f754a86f774094242f19b", + "ParentId": "5b5f750686f774093e6cb503", + "Icon": "/files/handbook/icon_mod_magazine.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f761f86f774094242f1a1", + "ParentId": "5b5f75b986f77447ec5d7710", + "Icon": "/files/handbook/icon_mod_pistolgrip.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f791486f774093f2ed3be", + "ParentId": "5b5f78dc86f77409407a7f8e", + "Icon": "/files/handbook/icon_weapons_dmr.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f75c686f774094242f19f", + "ParentId": "5b5f75b986f77447ec5d7710", + "Icon": "/files/handbook/icon_mod_barrel.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b47574386f77428ca22b33e", + "ParentId": null, + "Icon": "/files/handbook/icon_barter.png", + "Color": "", + "Order": "13" + }, + { + "Id": "5b5f6f3c86f774094242ef87", + "ParentId": "5b47574386f77428ca22b33f", + "Icon": "/files/handbook/icon_gear_headsets.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f701386f774093f2ecf0f", + "ParentId": "5b47574386f77428ca22b33f", + "Icon": "/files/handbook/icon_gear_armor.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f72f786f77447ec5d7702", + "ParentId": "5b5f724186f77447ed5636ad", + "Icon": "/files/handbook/", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f740a86f77447ec5d7706", + "ParentId": "5b5f73ec86f774093e6cb4fd", + "Icon": "/files/handbook/", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f792486f77447ed5636b3", + "ParentId": "5b5f78dc86f77409407a7f8e", + "Icon": "/files/handbook/icon_weapons_pistols.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f796a86f774093f2ed3c0", + "ParentId": "5b5f78dc86f77409407a7f8e", + "Icon": "/files/handbook/icon_weapons_smg.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b47574386f77428ca22b2ee", + "ParentId": "5b47574386f77428ca22b33e", + "Icon": "/files/handbook/icon_barter_building.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b47574386f77428ca22b346", + "ParentId": null, + "Icon": "/files/handbook/icon_ammo.png", + "Color": "", + "Order": "9" + }, + { + "Id": "5b5f724c86f774093f2ecf15", + "ParentId": "5b5f724186f77447ed5636ad", + "Icon": "/files/handbook/", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f73ab86f774094242f195", + "ParentId": "5b5f736886f774094242f193", + "Icon": "/files/handbook/", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f75e486f77447ec5d7712", + "ParentId": "5b5f75b986f77447ec5d7710", + "Icon": "/files/handbook/icon_mod_handguard.png", + "Color": "", + "Order": "100" + }, + { + "Id": "6564b96a189fe36f356d177c", + "ParentId": null, + "Icon": "/files/handbook/icon_barter_others.png", + "Color": "", + "Order": "0" + }, + { + "Id": "5b47574386f77428ca22b331", + "ParentId": "5b47574386f77428ca22b33f", + "Icon": "/files/handbook/icon_gear_visors.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b47574386f77428ca22b33f", + "ParentId": null, + "Icon": "/files/handbook/icon_gear.png", + "Color": "", + "Order": "12" + }, + { + "Id": "5b5f760586f774093e6cb509", + "ParentId": "5b5f75b986f77447ec5d7710", + "Icon": "/files/handbook/icon_mod_gasblock.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f73ec86f774093e6cb4fd", + "ParentId": "5b5f71b386f774093f2ecf11", + "Icon": "/files/handbook/icon_mod_sight.png", + "Color": "", + "Order": "100" + }, { "Id": "5b5f759686f774094242f19d", "ParentId": "5b5f750686f774093e6cb503", @@ -273,6 +364,62 @@ "Color": "", "Order": "100" }, + { + "Id": "5b5f764186f77447ec5d7714", + "ParentId": "5b5f75b986f77447ec5d7710", + "Icon": "/files/handbook/icon_mod_reciever.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b47574386f77428ca22b340", + "ParentId": null, + "Icon": "/files/handbook/icon_provisions.png", + "Color": "", + "Order": "8" + }, + { + "Id": "5b47574386f77428ca22b341", + "ParentId": null, + "Icon": "/files/handbook/icon_info.png", + "Color": "", + "Order": "5" + }, + { + "Id": "5b5f757486f774093e6cb507", + "ParentId": "5b5f750686f774093e6cb503", + "Icon": "/files/handbook/icon_mod_stock.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f78e986f77447ed5636b1", + "ParentId": "5b5f78dc86f77409407a7f8e", + "Icon": "/files/handbook/icon_weapons_carbines.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f724186f77447ed5636ad", + "ParentId": "5b5f71b386f774093f2ecf11", + "Icon": "/files/handbook/icon_mod_muzzle.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b47574386f77428ca22b337", + "ParentId": "5b47574386f77428ca22b344", + "Icon": "/files/handbook/icon_medical_pills.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f731a86f774093e6cb4f9", + "ParentId": "5b5f724186f77447ed5636ad", + "Icon": "/files/handbook/", + "Color": "", + "Order": "100" + }, { "Id": "5b5f798886f77447ed5636b5", "ParentId": "5b5f78dc86f77409407a7f8e", @@ -287,41 +434,6 @@ "Color": "", "Order": "100" }, - { - "Id": "5b5f749986f774094242f199", - "ParentId": "5b5f73ec86f774093e6cb4fd", - "Icon": "/files/handbook/", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f6f3c86f774094242ef87", - "ParentId": "5b47574386f77428ca22b33f", - "Icon": "/files/handbook/icon_gear_headsets.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f724186f77447ed5636ad", - "ParentId": "5b5f71b386f774093f2ecf11", - "Icon": "/files/handbook/icon_mod_muzzle.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f764186f77447ec5d7714", - "ParentId": "5b5f75b986f77447ec5d7710", - "Icon": "/files/handbook/icon_mod_reciever.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f79d186f774093f2ed3c2", - "ParentId": "5b5f78dc86f77409407a7f8e", - "Icon": "/files/handbook/icon_weapons_gl.png", - "Color": "", - "Order": "100" - }, { "Id": "5c518ed586f774119a772aee", "ParentId": "5b47574386f77428ca22b342", @@ -329,125 +441,6 @@ "Color": "", "Order": "100" }, - { - "Id": "5b5f737886f774093e6cb4fb", - "ParentId": "5b5f736886f774094242f193", - "Icon": "/files/handbook/", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f755f86f77447ec5d770e", - "ParentId": "5b5f750686f774093e6cb503", - "Icon": "/files/handbook/icon_mod_mount.png", - "Color": "", - "Order": "100" - }, - { - "Id": "6564b96a189fe36f356d177c", - "ParentId": null, - "Icon": "/files/handbook/icon_barter_others.png", - "Color": "", - "Order": "0" - }, - { - "Id": "5b47574386f77428ca22b32f", - "ParentId": "5b47574386f77428ca22b33f", - "Icon": "/files/handbook/icon_gear_facecovers.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f78b786f77447ed5636af", - "ParentId": null, - "Icon": "/files/handbook/icon_money.png", - "Color": "", - "Order": "2" - }, - { - "Id": "5b5f792486f77447ed5636b3", - "ParentId": "5b5f78dc86f77409407a7f8e", - "Icon": "/files/handbook/icon_weapons_pistols.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f796a86f774093f2ed3c0", - "ParentId": "5b5f78dc86f77409407a7f8e", - "Icon": "/files/handbook/icon_weapons_smg.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f7a0886f77409407a7f96", - "ParentId": "5b5f78dc86f77409407a7f8e", - "Icon": "/files/handbook/icon_weapons_melee.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b47574386f77428ca22b330", - "ParentId": "5b47574386f77428ca22b33f", - "Icon": "/files/handbook/icon_gear_headwear.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b47574386f77428ca22b33e", - "ParentId": null, - "Icon": "/files/handbook/icon_barter.png", - "Color": "", - "Order": "13" - }, - { - "Id": "5b47574386f77428ca22b342", - "ParentId": null, - "Icon": "/files/handbook/icon_keys.png", - "Color": "", - "Order": "6" - }, - { - "Id": "5b47574386f77428ca22b346", - "ParentId": null, - "Icon": "/files/handbook/icon_ammo.png", - "Color": "", - "Order": "9" - }, - { - "Id": "5b5f750686f774093e6cb503", - "ParentId": "5b5f71a686f77447ed5636ab", - "Icon": "/files/handbook/icon_mods_gear.png", - "Color": "#1f4d2a", - "Order": "100" - }, - { - "Id": "5b5f791486f774093f2ed3be", - "ParentId": "5b5f78dc86f77409407a7f8e", - "Icon": "/files/handbook/icon_weapons_dmr.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f704686f77447ec5d76d7", - "ParentId": "5b47574386f77428ca22b33f", - "Icon": "/files/handbook/icon_gear_components.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f71b386f774093f2ecf11", - "ParentId": "5b5f71a686f77447ed5636ab", - "Icon": "/files/handbook/icon_mods_functional.png", - "Color": "#284e64", - "Order": "100" - }, - { - "Id": "5b5f724c86f774093f2ecf15", - "ParentId": "5b5f724186f77447ed5636ad", - "Icon": "/files/handbook/", - "Color": "", - "Order": "100" - }, { "Id": "5b5f79a486f77409407a7f94", "ParentId": "5b5f78dc86f77409407a7f8e", @@ -456,79 +449,30 @@ "Order": "100" }, { - "Id": "5b5f79eb86f77447ed5636b7", - "ParentId": "5b5f78dc86f77409407a7f8e", - "Icon": "/files/handbook/icon_weapons_special.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f72f786f77447ec5d7702", - "ParentId": "5b5f724186f77447ed5636ad", - "Icon": "/files/handbook/", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f736886f774094242f193", - "ParentId": "5b5f71b386f774093f2ecf11", - "Icon": "/files/handbook/icon_mod_lightlaser.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f74cc86f77447ec5d770a", - "ParentId": "5b5f71b386f774093f2ecf11", - "Icon": "/files/handbook/icon_mod_aux.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f754a86f774094242f19b", - "ParentId": "5b5f750686f774093e6cb503", - "Icon": "/files/handbook/icon_mod_magazine.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b5f78e986f77447ed5636b1", - "ParentId": "5b5f78dc86f77409407a7f8e", - "Icon": "/files/handbook/icon_weapons_carbines.png", - "Color": "", - "Order": "100" - }, - { - "Id": "5b47574386f77428ca22b2f4", - "ParentId": "5b47574386f77428ca22b33e", - "Icon": "/files/handbook/icon_barter_others.png", - "Color": "", - "Order": "110" - }, - { - "Id": "5b47574386f77428ca22b340", - "ParentId": null, - "Icon": "/files/handbook/icon_provisions.png", - "Color": "", - "Order": "8" - }, - { - "Id": "5b5f6fa186f77409407a7eb7", + "Id": "5b5f6f8786f77447ed563642", "ParentId": "5b47574386f77428ca22b33f", - "Icon": "/files/handbook/icon_gear_cases.png", + "Icon": "/files/handbook/icon_gear_rigs.png", "Color": "", "Order": "100" }, { - "Id": "5b5f71a686f77447ed5636ab", - "ParentId": null, - "Icon": "/files/handbook/icon_mods.png", + "Id": "5b47574386f77428ca22b339", + "ParentId": "5b47574386f77428ca22b344", + "Icon": "/files/handbook/icon_medical_injury.png", "Color": "", - "Order": "11" + "Order": "100" }, { - "Id": "5b5f71c186f77409407a7ec0", - "ParentId": "5b5f71b386f774093f2ecf11", - "Icon": "/files/handbook/icon_mod_bipod.png", + "Id": "5b5f704686f77447ec5d76d7", + "ParentId": "5b47574386f77428ca22b33f", + "Icon": "/files/handbook/icon_gear_components.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f78fc86f77409407a7f90", + "ParentId": "5b5f78dc86f77409407a7f8e", + "Icon": "/files/handbook/icon_weapons_assaultrifles.png", "Color": "", "Order": "100" }, @@ -540,23 +484,37 @@ "Order": "100" }, { - "Id": "5b5f75b986f77447ec5d7710", - "ParentId": "5b5f71a686f77447ed5636ab", - "Icon": "/files/handbook/icon_mods_vital.png", - "Color": "#4d3427", - "Order": "100" - }, - { - "Id": "5b47574386f77428ca22b337", - "ParentId": "5b47574386f77428ca22b344", - "Icon": "/files/handbook/icon_medical_pills.png", + "Id": "5b5f79d186f774093f2ed3c2", + "ParentId": "5b5f78dc86f77409407a7f8e", + "Icon": "/files/handbook/icon_weapons_gl.png", "Color": "", "Order": "100" }, { - "Id": "5b5f6fd286f774093f2ecf0d", + "Id": "5b5f79eb86f77447ed5636b7", + "ParentId": "5b5f78dc86f77409407a7f8e", + "Icon": "/files/handbook/icon_weapons_special.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b47574386f77428ca22b2f4", + "ParentId": "5b47574386f77428ca22b33e", + "Icon": "/files/handbook/icon_barter_others.png", + "Color": "", + "Order": "110" + }, + { + "Id": "5b5f6fa186f77409407a7eb7", "ParentId": "5b47574386f77428ca22b33f", - "Icon": "/files/handbook/icon_gear_secured.png", + "Icon": "/files/handbook/icon_gear_cases.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b47574386f77428ca22b336", + "ParentId": "5b47574386f77428ca22b340", + "Icon": "/files/handbook/icon_provisions_food.png", "Color": "", "Order": "100" }, @@ -568,37 +526,79 @@ "Order": "100" }, { - "Id": "5b5f731a86f774093e6cb4f9", - "ParentId": "5b5f724186f77447ed5636ad", + "Id": "5b47574386f77428ca22b338", + "ParentId": "5b47574386f77428ca22b344", + "Icon": "/files/handbook/icon_medical_medkits.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f736886f774094242f193", + "ParentId": "5b5f71b386f774093f2ecf11", + "Icon": "/files/handbook/icon_mod_lightlaser.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b47574386f77428ca22b343", + "ParentId": null, + "Icon": "/files/handbook/icon_maps.png", + "Color": "", + "Order": "3" + }, + { + "Id": "5b5f6f6c86f774093f2ecf0b", + "ParentId": "5b47574386f77428ca22b33f", + "Icon": "/files/handbook/icon_gear_backpacks.png", + "Color": "", + "Order": "100" + }, + { + "Id": "5b5f73c486f77447ec5d7704", + "ParentId": "5b5f736886f774094242f193", "Icon": "/files/handbook/", "Color": "", "Order": "100" }, { - "Id": "5b5f740a86f77447ec5d7706", + "Id": "5b5f744786f774094242f197", "ParentId": "5b5f73ec86f774093e6cb4fd", "Icon": "/files/handbook/", "Color": "", "Order": "100" }, { - "Id": "5b5f742686f774093e6cb4ff", - "ParentId": "5b5f73ec86f774093e6cb4fd", - "Icon": "/files/handbook/", + "Id": "5b5f752e86f774093e6cb505", + "ParentId": "5b5f750686f774093e6cb503", + "Icon": "/files/handbook/icon_mod_launcher.png", "Color": "", "Order": "100" }, { - "Id": "5b5f760586f774093e6cb509", - "ParentId": "5b5f75b986f77447ec5d7710", - "Icon": "/files/handbook/icon_mod_gasblock.png", + "Id": "5b5f74cc86f77447ec5d770a", + "ParentId": "5b5f71b386f774093f2ecf11", + "Icon": "/files/handbook/icon_mod_aux.png", "Color": "", "Order": "100" }, { - "Id": "5b5f7a2386f774093f2ed3c4", - "ParentId": "5b5f78dc86f77409407a7f8e", - "Icon": "/files/handbook/icon_weapons_throw.png", + "Id": "5b5f75b986f77447ec5d7710", + "ParentId": "5b5f71a686f77447ed5636ab", + "Icon": "/files/handbook/icon_mods_vital.png", + "Color": "#4d3427", + "Order": "100" + }, + { + "Id": "5b619f1a86f77450a702a6f3", + "ParentId": null, + "Icon": "/files/handbook/icon_quest.png", + "Color": "", + "Order": "1" + }, + { + "Id": "5b5f755f86f77447ec5d770e", + "ParentId": "5b5f750686f774093e6cb503", + "Icon": "/files/handbook/icon_mod_mount.png", "Color": "", "Order": "100" }, @@ -611,30 +611,15 @@ } ], "Items": [ - { - "Id": "5448bd6b4bdc2dfc2f8b4569", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 4097 - }, { "Id": "544fb25a4bdc2dfb738b4567", "ParentId": "5b47574386f77428ca22b339", "Price": 1456 }, { - "Id": "5447ac644bdc2d6c208b4567", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "557ff21e4bdc2d89578b4586", - "ParentId": "5b47574386f77428ca22b331", - "Price": 1669 - }, - { - "Id": "5448be9a4bdc2dfd2f8b456a", - "ParentId": "5b5f7a2386f774093f2ed3c4", - "Price": 7230 + "Id": "5448bd6b4bdc2dfc2f8b4569", + "ParentId": "5b5f792486f77447ed5636b3", + "Price": 4097 }, { "Id": "5448ba0b4bdc2d02308b456c", @@ -646,221 +631,41 @@ "ParentId": "5b5f754a86f774094242f19b", "Price": 22755 }, + { + "Id": "557ff21e4bdc2d89578b4586", + "ParentId": "5b47574386f77428ca22b331", + "Price": 1669 + }, + { + "Id": "5447ac644bdc2d6c208b4567", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "5448be9a4bdc2dfd2f8b456a", + "ParentId": "5b5f7a2386f774093f2ed3c4", + "Price": 7230 + }, { "Id": "5447a9cd4bdc2dbd208b4567", "ParentId": "5b5f78fc86f77409407a7f90", "Price": 18397 }, { - "Id": "5448c1d04bdc2dff2f8b4569", + "Id": "5448c12b4bdc2d02308b456f", "ParentId": "5b5f754a86f774094242f19b", - "Price": 3006 - }, - { - "Id": "5448ff904bdc2d6f028b456e", - "ParentId": "5b47574386f77428ca22b336", - "Price": 2402 - }, - { - "Id": "5608373c4bdc2dc8488b4570", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 6123 - }, - { - "Id": "56083cba4bdc2de22e8b456f", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1499 - }, - { - "Id": "5645bcc04bdc2d363b8b4572", - "ParentId": "5b5f6f3c86f774094242ef87", - "Price": 38050 - }, - { - "Id": "5648a7494bdc2d9d488b4583", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 1313 - }, - { - "Id": "5648b62b4bdc2d9d488b4585", - "ParentId": "5b5f752e86f774093e6cb505", - "Price": 50900 - }, - { - "Id": "56ea7293d2720b8d4b8b45ba", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 3819 - }, - { - "Id": "56ea8222d2720b69698b4567", - "ParentId": "5b5f71c186f77409407a7ec0", - "Price": 4269 - }, - { - "Id": "571a12c42459771f627b58a0", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 4189 - }, - { - "Id": "5449016a4bdc2d6f028b456f", - "ParentId": "5b5f78b786f77447ed5636af", - "Price": 1 - }, - { - "Id": "572b7d8524597762b472f9d1", - "ParentId": "5b47574386f77428ca22b330", - "Price": 1021 - }, - { - "Id": "5734770f24597738025ee254", - "ParentId": "5b47574386f77428ca22b2f4", - "Price": 3120 - }, - { - "Id": "5734795124597738002c6176", - "ParentId": "5b47574386f77428ca22b2ee", - "Price": 2019 - }, - { - "Id": "57347b8b24597737dd42e192", - "ParentId": "5b47574386f77428ca22b2f2", - "Price": 2020 - }, - { - "Id": "57347d8724597744596b4e76", - "ParentId": "5b47574386f77428ca22b336", - "Price": 16168 - }, - { - "Id": "57372c89245977685d4159b1", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "57372d4c245977685a3da2a1", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "57372e1924597768553071c1", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "574dad8024597745964bf05c", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 3780 - }, - { - "Id": "5751487e245977207e26a315", - "ParentId": "5b47574386f77428ca22b336", - "Price": 2980 - }, - { - "Id": "57616c112459773cce774d66", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 1195 - }, - { - "Id": "544a38634bdc2d58388b4568", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 1340 - }, - { - "Id": "5780d0532459777a5108b9a2", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 21107 - }, - { - "Id": "57c55efc2459772d2c6271e7", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 3600 - }, - { - "Id": "57c69dd424597774c03b7bbc", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 4086 - }, - { - "Id": "57cff947245977638e6f2a19", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 16234 - }, - { - "Id": "57dc2fa62459775949412633", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 13643 - }, - { - "Id": "58272b392459774b4c7b3ccd", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 7539 - }, - { - "Id": "55d4837c4bdc2d1d4e8b456c", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1611 - }, - { - "Id": "584924ec24597768f12ae244", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 23019 - }, - { - "Id": "587de5ba2459771c0f1e8a58", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 400 - }, - { - "Id": "587e08ee245977446b4410cf", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 6017 - }, - { - "Id": "58889c7324597754281f9439", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 5244 - }, - { - "Id": "5894a81786f77427140b8347", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 802 - }, - { - "Id": "58aeaaa886f7744fc1560f81", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 5619 - }, - { - "Id": "58d399e486f77442e0016fe7", - "ParentId": "5b5f744786f774094242f197", - "Price": 28344 - }, - { - "Id": "58d39b0386f77443380bf13c", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2203 - }, - { - "Id": "5900b89686f7744e704a8747", - "ParentId": "5b47574386f77428ca22b343", - "Price": 12719 - }, - { - "Id": "54490a4d4bdc2dbc018b4573", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 52034 - }, - { - "Id": "5448fee04bdc2dbc018b4567", - "ParentId": "5b47574386f77428ca22b335", - "Price": 2450 + "Price": 940 }, { "Id": "544a3d0a4bdc2d1b388b4567", "ParentId": "5b5f748386f774093e6cb501", "Price": 609 }, + { + "Id": "5448fee04bdc2dbc018b4567", + "ParentId": "5b47574386f77428ca22b335", + "Price": 2450 + }, { "Id": "545cdb794bdc2d3a198b456a", "ParentId": "5b5f701386f774093f2ecf0f", @@ -991,6 +796,581 @@ "ParentId": "5b47574386f77428ca22b2ed", "Price": 17035 }, + { + "Id": "55d4837c4bdc2d1d4e8b456c", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1611 + }, + { + "Id": "5448c1d04bdc2dff2f8b4569", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3006 + }, + { + "Id": "54490a4d4bdc2dbc018b4573", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 52034 + }, + { + "Id": "5448ff904bdc2d6f028b456e", + "ParentId": "5b47574386f77428ca22b336", + "Price": 2402 + }, + { + "Id": "5608373c4bdc2dc8488b4570", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 6123 + }, + { + "Id": "56083cba4bdc2de22e8b456f", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1499 + }, + { + "Id": "5645bcc04bdc2d363b8b4572", + "ParentId": "5b5f6f3c86f774094242ef87", + "Price": 38050 + }, + { + "Id": "5648a7494bdc2d9d488b4583", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 1313 + }, + { + "Id": "5648b62b4bdc2d9d488b4585", + "ParentId": "5b5f752e86f774093e6cb505", + "Price": 50900 + }, + { + "Id": "56ea7293d2720b8d4b8b45ba", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 3819 + }, + { + "Id": "56ea8222d2720b69698b4567", + "ParentId": "5b5f71c186f77409407a7ec0", + "Price": 4269 + }, + { + "Id": "571a12c42459771f627b58a0", + "ParentId": "5b5f792486f77447ed5636b3", + "Price": 4189 + }, + { + "Id": "572b7d8524597762b472f9d1", + "ParentId": "5b47574386f77428ca22b330", + "Price": 1021 + }, + { + "Id": "5734770f24597738025ee254", + "ParentId": "5b47574386f77428ca22b2f4", + "Price": 3120 + }, + { + "Id": "5734795124597738002c6176", + "ParentId": "5b47574386f77428ca22b2ee", + "Price": 2019 + }, + { + "Id": "57347b8b24597737dd42e192", + "ParentId": "5b47574386f77428ca22b2f2", + "Price": 2020 + }, + { + "Id": "57347d8724597744596b4e76", + "ParentId": "5b47574386f77428ca22b336", + "Price": 16168 + }, + { + "Id": "57372c89245977685d4159b1", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "57372d4c245977685a3da2a1", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "57372e1924597768553071c1", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "574dad8024597745964bf05c", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 3780 + }, + { + "Id": "5751487e245977207e26a315", + "ParentId": "5b47574386f77428ca22b336", + "Price": 2980 + }, + { + "Id": "57616c112459773cce774d66", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 1195 + }, + { + "Id": "5780d0532459777a5108b9a2", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 21107 + }, + { + "Id": "57c55efc2459772d2c6271e7", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 3600 + }, + { + "Id": "57c69dd424597774c03b7bbc", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 4086 + }, + { + "Id": "57cff947245977638e6f2a19", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 16234 + }, + { + "Id": "57dc2fa62459775949412633", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 13643 + }, + { + "Id": "58272b392459774b4c7b3ccd", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 7539 + }, + { + "Id": "584924ec24597768f12ae244", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 23019 + }, + { + "Id": "587de5ba2459771c0f1e8a58", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 400 + }, + { + "Id": "587e08ee245977446b4410cf", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 6017 + }, + { + "Id": "58889c7324597754281f9439", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 5244 + }, + { + "Id": "5894a81786f77427140b8347", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 802 + }, + { + "Id": "58aeaaa886f7744fc1560f81", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 5619 + }, + { + "Id": "58d399e486f77442e0016fe7", + "ParentId": "5b5f744786f774094242f197", + "Price": 28344 + }, + { + "Id": "58d39b0386f77443380bf13c", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2203 + }, + { + "Id": "5900b89686f7744e704a8747", + "ParentId": "5b47574386f77428ca22b343", + "Price": 12719 + }, + { + "Id": "5449016a4bdc2d6f028b456f", + "ParentId": "5b5f78b786f77447ed5636af", + "Price": 1 + }, + { + "Id": "54527a984bdc2d4e668b4567", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 180 + }, + { + "Id": "559ba5b34bdc2d1f1a8b4582", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3900 + }, + { + "Id": "55d448594bdc2d8c2f8b4569", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 4902 + }, + { + "Id": "55d459824bdc2d892f8b4573", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 4745 + }, + { + "Id": "55d480c04bdc2d1d4e8b456a", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1999 + }, + { + "Id": "55d481904bdc2d8c2f8b456a", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3765 + }, + { + "Id": "55f84c3c4bdc2d5f408b4576", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 10449 + }, + { + "Id": "560d61e84bdc2da74d8b4571", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 1364 + }, + { + "Id": "560d75f54bdc2da74d8b4573", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "5649d9a14bdc2d79388b4580", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 2698 + }, + { + "Id": "56742c324bdc2d150f8b456d", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 18682 + }, + { + "Id": "5696686a4bdc2da3298b456a", + "ParentId": "5b5f78b786f77447ed5636af", + "Price": 132 + }, + { + "Id": "56d5a1f7d2720bb3418b456a", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 1563 + }, + { + "Id": "56ea8180d2720bf2698b456a", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 5500 + }, + { + "Id": "570fd79bd2720bc7458b4583", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 12767 + }, + { + "Id": "572b7fa124597762b472f9d2", + "ParentId": "5b47574386f77428ca22b330", + "Price": 1070 + }, + { + "Id": "573477e124597737dd42e191", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 13914 + }, + { + "Id": "57347baf24597738002c6178", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 10966 + }, + { + "Id": "5736026a245977644601dc61", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 52 + }, + { + "Id": "57371f2b24597761224311f1", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 29 + }, + { + "Id": "573726d824597765d96be361", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "57372bad245977670b7cd242", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "57372f2824597769a270a191", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "57372fc52459776998772ca1", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "5755383e24597772cb798966", + "ParentId": "5b47574386f77428ca22b339", + "Price": 14844 + }, + { + "Id": "57838f9f2459774a150289a0", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 5999 + }, + { + "Id": "57a349b2245977762b199ec7", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 5271 + }, + { + "Id": "57c44b372459772d2b39b8ce", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 66869 + }, + { + "Id": "57c55f172459772d27602381", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 3600 + }, + { + "Id": "57cffce524597763b31685d8", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 7925 + }, + { + "Id": "57d17c5e2459775a5c57d17d", + "ParentId": "5b5f73ab86f774094242f195", + "Price": 3752 + }, + { + "Id": "5882163e24597758206fee8c", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 902 + }, + { + "Id": "544a38634bdc2d58388b4568", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 1340 + }, + { + "Id": "544a5caa4bdc2d1a388b4568", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 2931 + }, + { + "Id": "544fb3364bdc2d34748b456a", + "ParentId": "5b47574386f77428ca22b339", + "Price": 2968 + }, + { + "Id": "560837824bdc2d57468b4568", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 7062 + }, + { + "Id": "560d5e524bdc2d25448b4571", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 30 + }, + { + "Id": "5672cb304bdc2dc2088b456a", + "ParentId": "5b47574386f77428ca22b2ed", + "Price": 2207 + }, + { + "Id": "56deeefcd2720bc8328b4568", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2122 + }, + { + "Id": "571a282c2459771fb2755a69", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 1006 + }, + { + "Id": "5734779624597737e04bf329", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 4670 + }, + { + "Id": "57347d90245977448f7b7f65", + "ParentId": "5b47574386f77428ca22b336", + "Price": 7568 + }, + { + "Id": "573728cc24597765cc785b5d", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "575146b724597720a27126d5", + "ParentId": "5b47574386f77428ca22b335", + "Price": 14753 + }, + { + "Id": "5751a89d24597722aa0e8db0", + "ParentId": "5b47574386f77428ca22b339", + "Price": 28889 + }, + { + "Id": "57616ca52459773c69055192", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1661 + }, + { + "Id": "576a7c512459771e796e0e17", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2744 + }, + { + "Id": "577d128124597739d65d0e56", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1582 + }, + { + "Id": "579204f224597773d619e051", + "ParentId": "5b5f792486f77447ed5636b3", + "Price": 5517 + }, + { + "Id": "57af48872459771f0b2ebf11", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 3600 + }, + { + "Id": "57c44f4f2459772d2c627113", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 1599 + }, + { + "Id": "57cffb66245977632f391a99", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 7043 + }, + { + "Id": "57d152ec245977144076ccdf", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 1319 + }, + { + "Id": "5894a05586f774094708ef75", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2073 + }, + { + "Id": "58d2664f86f7747fec5834f6", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1625 + }, + { + "Id": "58d2912286f7744e27117493", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 8779 + }, + { + "Id": "590c2e1186f77425357b6124", + "ParentId": "5b47574386f77428ca22b2f6", + "Price": 31000 + }, + { + "Id": "55d44fd14bdc2d962f8b456e", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 1404 + }, + { + "Id": "560835c74bdc2dc8488b456f", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 4020 + }, + { + "Id": "5649b2314bdc2d79388b4576", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 5053 + }, + { + "Id": "564ca99c4bdc2d16268b4589", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2031 + }, + { + "Id": "56dfef82d2720bbd668b4567", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 630 + }, + { + "Id": "56ea6fafd2720b844b8b4593", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 7237 + }, + { + "Id": "570fd721d2720bc5458b4596", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 10000 + }, + { + "Id": "57371b192459775a9f58a5e0", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 51 + }, + { + "Id": "573720e02459776143012541", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 86 + }, + { + "Id": "5737218f245977612125ba51", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 69 + }, + { + "Id": "574d967124597745970e7c94", + "ParentId": "5b5f78e986f77447ed5636b1", + "Price": 19331 + }, + { + "Id": "576169e62459773c69055191", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 1397 + }, + { + "Id": "57838f0b2459774a256959b2", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 4637 + }, + { + "Id": "583990e32459771419544dd2", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 19345 + }, + { + "Id": "587de4282459771bca0ec90b", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 1562 + }, + { + "Id": "5888988e24597752fe43a6fa", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 4493 + }, + { + "Id": "58949edd86f77409483e16a9", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 730 + }, + { + "Id": "5894a2c386f77427140b8342", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 6574 + }, + { + "Id": "58d2946c86f7744e271174b5", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 7497 + }, { "Id": "545cdae64bdc2d39198b4568", "ParentId": "5b5f6f6c86f774093f2ecf0b", @@ -1106,11 +1486,6 @@ "ParentId": "5b5f6fa186f77409407a7eb7", "Price": 10542 }, - { - "Id": "5448c12b4bdc2d02308b456f", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 940 - }, { "Id": "57c44dd02459772d2e0ae249", "ParentId": "5b5f731a86f774093e6cb4f9", @@ -1186,176 +1561,6 @@ "ParentId": "5b47574386f77428ca22b2ee", "Price": 33778 }, - { - "Id": "55d44fd14bdc2d962f8b456e", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 1404 - }, - { - "Id": "560835c74bdc2dc8488b456f", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 4020 - }, - { - "Id": "5649b2314bdc2d79388b4576", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 5053 - }, - { - "Id": "564ca99c4bdc2d16268b4589", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2031 - }, - { - "Id": "54527a984bdc2d4e668b4567", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 180 - }, - { - "Id": "559ba5b34bdc2d1f1a8b4582", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3900 - }, - { - "Id": "55d448594bdc2d8c2f8b4569", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 4902 - }, - { - "Id": "55d459824bdc2d892f8b4573", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 4745 - }, - { - "Id": "55d480c04bdc2d1d4e8b456a", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1999 - }, - { - "Id": "55d481904bdc2d8c2f8b456a", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3765 - }, - { - "Id": "55f84c3c4bdc2d5f408b4576", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 10449 - }, - { - "Id": "56dfef82d2720bbd668b4567", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 630 - }, - { - "Id": "56ea6fafd2720b844b8b4593", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 7237 - }, - { - "Id": "560d61e84bdc2da74d8b4571", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 1364 - }, - { - "Id": "560d75f54bdc2da74d8b4573", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "5649d9a14bdc2d79388b4580", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 2698 - }, - { - "Id": "570fd721d2720bc5458b4596", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 10000 - }, - { - "Id": "57371b192459775a9f58a5e0", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 51 - }, - { - "Id": "56742c324bdc2d150f8b456d", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 18682 - }, - { - "Id": "5696686a4bdc2da3298b456a", - "ParentId": "5b5f78b786f77447ed5636af", - "Price": 132 - }, - { - "Id": "56d5a1f7d2720bb3418b456a", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 1563 - }, - { - "Id": "56ea8180d2720bf2698b456a", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 5500 - }, - { - "Id": "570fd79bd2720bc7458b4583", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 12767 - }, - { - "Id": "572b7fa124597762b472f9d2", - "ParentId": "5b47574386f77428ca22b330", - "Price": 1070 - }, - { - "Id": "573720e02459776143012541", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 86 - }, - { - "Id": "5737218f245977612125ba51", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 69 - }, - { - "Id": "573477e124597737dd42e191", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 13914 - }, - { - "Id": "57347baf24597738002c6178", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 10966 - }, - { - "Id": "5736026a245977644601dc61", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 52 - }, - { - "Id": "57371f2b24597761224311f1", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 29 - }, - { - "Id": "573726d824597765d96be361", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "57372bad245977670b7cd242", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "57372f2824597769a270a191", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "574d967124597745970e7c94", - "ParentId": "5b5f78e986f77447ed5636b1", - "Price": 19331 - }, { "Id": "54527ac44bdc2d36668b4567", "ParentId": "5b47574386f77428ca22b33b", @@ -1366,81 +1571,16 @@ "ParentId": "5b5f75c686f774094242f19f", "Price": 2800 }, - { - "Id": "57372fc52459776998772ca1", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "5755383e24597772cb798966", - "ParentId": "5b47574386f77428ca22b339", - "Price": 14844 - }, - { - "Id": "57838f9f2459774a150289a0", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 5999 - }, - { - "Id": "576169e62459773c69055191", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 1397 - }, { "Id": "55d3632e4bdc2d972f8b4569", "ParentId": "5b5f75c686f774094242f19f", "Price": 24567 }, - { - "Id": "57838f0b2459774a256959b2", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 4637 - }, - { - "Id": "57a349b2245977762b199ec7", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 5271 - }, - { - "Id": "57c44b372459772d2b39b8ce", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 66869 - }, - { - "Id": "57c55f172459772d27602381", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 3600 - }, - { - "Id": "583990e32459771419544dd2", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 19345 - }, { "Id": "560836fb4bdc2d773f8b4569", "ParentId": "5b5f75c686f774094242f19f", "Price": 5005 }, - { - "Id": "57cffce524597763b31685d8", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 7925 - }, - { - "Id": "57d17c5e2459775a5c57d17d", - "ParentId": "5b5f73ab86f774094242f195", - "Price": 3752 - }, - { - "Id": "5882163e24597758206fee8c", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 902 - }, - { - "Id": "587de4282459771bca0ec90b", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 1562 - }, { "Id": "560837154bdc2da74d8b4568", "ParentId": "5b5f75c686f774094242f19f", @@ -1451,31 +1591,11 @@ "ParentId": "5b5f746686f77447ec5d7708", "Price": 999 }, - { - "Id": "5888988e24597752fe43a6fa", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 4493 - }, - { - "Id": "58949edd86f77409483e16a9", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 730 - }, { "Id": "560e620e4bdc2d724b8b456b", "ParentId": "5b5f724c86f774093f2ecf15", "Price": 1497 }, - { - "Id": "5894a2c386f77427140b8342", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 6574 - }, - { - "Id": "58d2946c86f7744e271174b5", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 7497 - }, { "Id": "5645bc214bdc2d363b8b4571", "ParentId": "5b47574386f77428ca22b330", @@ -1712,434 +1832,184 @@ "Price": 12713 }, { - "Id": "55d4491a4bdc2d882f8b456e", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 4006 + "Id": "544a3a774bdc2d3a388b4567", + "ParentId": "5b5f740a86f77447ec5d7706", + "Price": 42902 }, { - "Id": "55d4af3a4bdc2d972f8b456f", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 600 + "Id": "544fb37f4bdc2dee738b4567", + "ParentId": "5b47574386f77428ca22b337", + "Price": 5700 }, { - "Id": "55d617094bdc2d89028b4568", + "Id": "5648b1504bdc2d9d488b4584", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 1022 + }, + { + "Id": "56deed6ed2720b4c698b4583", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 3388 + }, + { + "Id": "56e05b06d2720bb2668b4586", "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 46000 + "Price": 9730 }, { - "Id": "560838c94bdc2d77798b4569", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 2783 - }, - { - "Id": "544a5caa4bdc2d1a388b4568", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 2931 - }, - { - "Id": "544fb3364bdc2d34748b456a", - "ParentId": "5b47574386f77428ca22b339", - "Price": 2968 - }, - { - "Id": "56083a334bdc2dc8488b4571", + "Id": "56eabf3bd2720b75698b4569", "ParentId": "5b5f757486f774093e6cb507", - "Price": 6510 + "Price": 8719 }, { - "Id": "5649b1c04bdc2d16268b457c", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1847 + "Id": "5732ee6a24597719ae0c0281", + "ParentId": "5b5f6fd286f774093f2ecf0d", + "Price": 15000 }, { - "Id": "5672cb124bdc2d1a0f8b4568", - "ParentId": "5b47574386f77428ca22b2ed", - "Price": 652 - }, - { - "Id": "560837824bdc2d57468b4568", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 7062 - }, - { - "Id": "560d5e524bdc2d25448b4571", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 30 - }, - { - "Id": "5672cb304bdc2dc2088b456a", - "ParentId": "5b47574386f77428ca22b2ed", - "Price": 2207 - }, - { - "Id": "5673de654bdc2d180f8b456d", - "ParentId": "5b47574386f77428ca22b336", - "Price": 8556 - }, - { - "Id": "56e33680d2720be2748b4576", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 9000 - }, - { - "Id": "57235b6f24597759bf5a30f1", - "ParentId": "5b5f749986f774094242f199", - "Price": 91951 - }, - { - "Id": "573476f124597737e04bf328", + "Id": "573475fb24597737fb1379e1", "ParentId": "5b47574386f77428ca22b2f4", - "Price": 7984 + "Price": 2500 }, { - "Id": "56deeefcd2720bc8328b4568", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2122 + "Id": "5734781f24597737e04bf32a", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 8295 }, { - "Id": "571a282c2459771fb2755a69", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 1006 - }, - { - "Id": "57347c5b245977448d35f6e1", + "Id": "57347c77245977448d35f6e2", "ParentId": "5b47574386f77428ca22b2ee", - "Price": 11000 + "Price": 8700 }, { - "Id": "57347ca924597744596b4e71", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 198000 - }, - { - "Id": "573603562459776430731618", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 70 - }, - { - "Id": "573718ba2459775a75491131", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 65 - }, - { - "Id": "5734779624597737e04bf329", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 4670 - }, - { - "Id": "57347d90245977448f7b7f65", + "Id": "57347d692459774491567cf1", "ParentId": "5b47574386f77428ca22b336", - "Price": 7568 + "Price": 6521 }, { - "Id": "5737201124597760fc4431f1", + "Id": "573602322459776445391df1", "ParentId": "5b47574386f77428ca22b33b", - "Price": 45 + "Price": 68 }, { - "Id": "57372ac324597767001bc261", + "Id": "573603c924597764442bd9cb", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 63 + }, + { + "Id": "5737273924597765dd374461", "ParentId": "5b47574386f77428ca22b33c", "Price": 1000 }, { - "Id": "5751a25924597722c463c472", - "ParentId": "5b47574386f77428ca22b339", - "Price": 2049 - }, - { - "Id": "576a581d2459771e7b1bc4f1", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 10437 - }, - { - "Id": "573728cc24597765cc785b5d", + "Id": "5737287724597765e1625ae2", "ParentId": "5b47574386f77428ca22b33c", "Price": 1000 }, { - "Id": "575146b724597720a27126d5", + "Id": "573728f324597765e5728561", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "57372db0245977685d4159b2", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "57372f7d245977699b53e301", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "575062b524597720a31c09a1", "ParentId": "5b47574386f77428ca22b335", - "Price": 14753 + "Price": 2429 }, { - "Id": "5780cf942459777df90dcb72", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 26661 + "Id": "5751435d24597720a27126d1", + "ParentId": "5b47574386f77428ca22b335", + "Price": 8934 }, { - "Id": "57cffe20245977632f391a9d", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 13751 + "Id": "5798a2832459774b53341029", + "ParentId": "5b47574386f77428ca22b343", + "Price": 13428 }, { - "Id": "57dbb57e2459774673234890", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 45247 - }, - { - "Id": "57f4c844245977379d5c14d1", - "ParentId": "5b5f796a86f774093f2ed3c0", - "Price": 24460 - }, - { - "Id": "5751a89d24597722aa0e8db0", - "ParentId": "5b47574386f77428ca22b339", - "Price": 28889 - }, - { - "Id": "57616ca52459773c69055192", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1661 - }, - { - "Id": "587df583245977373c4f1129", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 5697 - }, - { - "Id": "588200c224597743990da9ed", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 7179 - }, - { - "Id": "58820d1224597753c90aeb13", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 56 - }, - { - "Id": "5888945a2459774bf43ba385", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 34672 - }, - { - "Id": "5894a42086f77426d2590762", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 4311 - }, - { - "Id": "58d39d3d86f77445bb794ae7", + "Id": "57a3459f245977764a01f703", "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2451 + "Price": 2752 }, { - "Id": "5909e99886f7740c983b9984", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 1737 + "Id": "57a9b9ce2459770ee926038d", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 400 }, { - "Id": "590c2c9c86f774245b1f03f2", - "ParentId": "5b47574386f77428ca22b2f6", - "Price": 3769 + "Id": "57aca93d2459771f2c7e26db", + "ParentId": "5b5f740a86f77447ec5d7706", + "Price": 38000 }, { - "Id": "576a7c512459771e796e0e17", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2744 + "Id": "57adff4f24597737f373b6e6", + "ParentId": "5b5f740a86f77447ec5d7706", + "Price": 42728 }, { - "Id": "577d128124597739d65d0e56", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1582 - }, - { - "Id": "590c2d8786f774245b1f03f3", - "ParentId": "5b47574386f77428ca22b2f6", - "Price": 3500 - }, - { - "Id": "579204f224597773d619e051", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 5517 - }, - { - "Id": "57af48872459771f0b2ebf11", + "Id": "57c55f092459772d291a8463", "ParentId": "5b5f761f86f774094242f1a1", "Price": 3600 }, { - "Id": "57c44f4f2459772d2c627113", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 1599 + "Id": "57d14d2524597714373db789", + "ParentId": "5b5f796a86f774093f2ed3c0", + "Price": 18846 }, { - "Id": "57cffb66245977632f391a99", + "Id": "57dc334d245977597164366f", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 1198 + }, + { + "Id": "588226ef24597767af46e39c", "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 7043 + "Price": 6326 }, { - "Id": "57d152ec245977144076ccdf", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 1319 + "Id": "5888996c24597754281f9419", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 4557 }, { - "Id": "5894a05586f774094708ef75", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2073 + "Id": "58949dea86f77409483e16a8", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 903 }, { - "Id": "58d2664f86f7747fec5834f6", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1625 + "Id": "58ac60eb86f77401897560ff", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 1600 }, { - "Id": "58d2912286f7744e27117493", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 8779 + "Id": "58c157be86f77403c74b2bb6", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 3700 }, { - "Id": "590c2e1186f77425357b6124", - "ParentId": "5b47574386f77428ca22b2f6", - "Price": 31000 - }, - { - "Id": "544fb3f34bdc2d03748b456a", - "ParentId": "5b47574386f77428ca22b33a", - "Price": 25305 - }, - { - "Id": "544fb5454bdc2df8738b456a", - "ParentId": "5b47574386f77428ca22b345", - "Price": 21032 - }, - { - "Id": "55801eed4bdc2d89578b4588", - "ParentId": "5b5f798886f77447ed5636b5", - "Price": 24989 - }, - { - "Id": "558022b54bdc2dac148b458d", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 26250 - }, - { - "Id": "55802d5f4bdc2dac148b458e", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3797 - }, - { - "Id": "55d45f484bdc2d972f8b456d", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 9150 - }, - { - "Id": "55d485804bdc2d8c2f8b456b", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2295 - }, - { - "Id": "55d48ebc4bdc2d8c2f8b456c", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2588 - }, - { - "Id": "55d6190f4bdc2d87028b4567", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 58000 - }, - { - "Id": "5608379a4bdc2d26448b4569", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 7680 - }, - { - "Id": "571659bb2459771fb2755a12", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 1599 - }, - { - "Id": "571a29dc2459771fb2755a6a", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1157 - }, - { - "Id": "57347da92459774491567cf5", - "ParentId": "5b47574386f77428ca22b336", - "Price": 16393 - }, - { - "Id": "573722e82459776104581c21", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "573727c624597765cc785b5b", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "57513f9324597720a7128161", - "ParentId": "5b47574386f77428ca22b335", - "Price": 3412 - }, - { - "Id": "5751496424597720a27126da", - "ParentId": "5b47574386f77428ca22b335", - "Price": 9236 - }, - { - "Id": "5780cf692459777de4559321", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 2526 - }, - { - "Id": "5780cf7f2459777de4559322", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 1500000 - }, - { - "Id": "57a0dfb82459774d3078b56c", + "Id": "58dd3ad986f77403051cba8f", "ParentId": "5b47574386f77428ca22b33b", - "Price": 220 + "Price": 420 }, { - "Id": "57c44e7b2459772d28133248", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 996 + "Id": "590a3b0486f7743954552bdb", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 12749 }, { - "Id": "57cffd8224597763b03fc609", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 13885 - }, - { - "Id": "57da93632459771cb65bf83f", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 47712 - }, - { - "Id": "57e26fc7245977162a14b800", - "ParentId": "5b5f7a0886f77409407a7f96", - "Price": 5112 - }, - { - "Id": "57f3c7e024597738ea4ba286", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 5110 - }, - { - "Id": "5888976c24597754281f93f5", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 6269 - }, - { - "Id": "588b56d02459771481110ae2", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 10249 - }, - { - "Id": "5894a5b586f77426d2590767", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 3509 - }, - { - "Id": "58d2946386f774496974c37e", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 7633 - }, - { - "Id": "590c2b4386f77425357b6123", - "ParentId": "5b47574386f77428ca22b2f6", - "Price": 8000 + "Id": "590a3efd86f77437d351a25b", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 21697 }, { "Id": "55802f5d4bdc2dac148b458f", @@ -2316,536 +2186,26 @@ "ParentId": "5b5f71de86f774093f2ecf13", "Price": 3700 }, - { - "Id": "55d484b44bdc2d1d4e8b456d", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1255 - }, - { - "Id": "5649af094bdc2df8348b4586", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 1042 - }, - { - "Id": "5649be884bdc2d79388b4577", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1175 - }, - { - "Id": "5672cb724bdc2dc2088b456b", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 16684 - }, - { - "Id": "56d59856d2720bd8418b456a", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 6238 - }, - { - "Id": "56d59d3ad2720bdb418b4577", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 62 - }, - { - "Id": "56dff421d2720b5f5a8b4567", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 69 - }, - { - "Id": "571a28e524597720b4066567", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 14904 - }, - { - "Id": "572b7f1624597762ae139822", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 2589 - }, - { - "Id": "5733279d245977289b77ec24", - "ParentId": "5b47574386f77428ca22b2ed", - "Price": 61563 - }, - { - "Id": "57371f8d24597761006c6a81", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 22 - }, - { - "Id": "57372e94245977685648d3e1", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "57372ebf2459776862260582", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "57372ee1245977685d4159b5", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "574db213245977459a2f3f5d", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 300 - }, - { - "Id": "57513fcc24597720a31c09a6", - "ParentId": "5b47574386f77428ca22b335", - "Price": 3456 - }, - { - "Id": "576165642459773c7a400233", - "ParentId": "5b5f794b86f77409407a7f92", - "Price": 16517 - }, - { - "Id": "57616a9e2459773c7a400234", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1694 - }, - { - "Id": "5780d0652459777df90dcb74", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 7755 - }, - { - "Id": "578395402459774a256959b5", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 1620 - }, - { - "Id": "57cffcdd24597763f5110006", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 7984 - }, - { - "Id": "57d1519e24597714373db79d", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2877 - }, - { - "Id": "57f3c6bd24597738e730fa2f", - "ParentId": "5b5f796a86f774093f2ed3c0", - "Price": 20238 - }, - { - "Id": "5839a7742459773cf9693481", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 3203 - }, - { - "Id": "58491f3324597764bc48fa02", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 19985 - }, - { - "Id": "5882163224597757561aa920", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1663 - }, - { - "Id": "588226dd24597767ad33f789", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 5444 - }, - { - "Id": "58889d0c2459775bc215d981", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 4650 - }, - { - "Id": "5894a51286f77426d13baf02", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 3274 - }, - { - "Id": "58d268fc86f774111273f8c2", - "ParentId": "5b5f744786f774094242f197", - "Price": 18157 - }, - { - "Id": "590a386e86f77429692b27ab", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 7491 - }, - { - "Id": "590c311186f77424d1667482", - "ParentId": "5b47574386f77428ca22b2f6", - "Price": 3544 - }, - { - "Id": "590c31c586f774245e3141b2", - "ParentId": "5b47574386f77428ca22b2ee", - "Price": 4105 - }, - { - "Id": "55d485be4bdc2d962f8b456f", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 17232 - }, - { - "Id": "55d4887d4bdc2d962f8b4570", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2012 - }, - { - "Id": "5648ac824bdc2ded0b8b457d", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 2663 - }, - { - "Id": "56d5a2bbd2720bb8418b456a", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 1001 - }, - { - "Id": "56d5a661d2720bd8418b456b", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 500 - }, - { - "Id": "56dff3afd2720bba668b4567", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 140 - }, - { - "Id": "56dff4a2d2720bbd668b456a", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 90 - }, - { - "Id": "56e05a6ed2720bd0748b4567", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 1001 - }, - { - "Id": "57347c1124597737fb1379e3", - "ParentId": "5b47574386f77428ca22b2ee", - "Price": 2499 - }, - { - "Id": "5737256c2459776125652acd", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "5737266524597761006c6a8c", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "5737280e24597765cc785b5c", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "57372b832459776701014e41", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "5737339e2459776af261abeb", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "57486e672459770abd687134", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 15155 - }, - { - "Id": "57a0e5022459774d1673f889", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 920 - }, - { - "Id": "57ade1442459771557167e15", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 5381 - }, - { - "Id": "58272b842459774abc128d50", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 2400 - }, - { - "Id": "584984812459776a704a82a6", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 11000 - }, - { - "Id": "58949fac86f77409483e16aa", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 700 - }, - { - "Id": "58d2947686f774485c6a1ee5", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 7389 - }, - { - "Id": "58d2947e86f77447aa070d53", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 7720 - }, - { - "Id": "58d3db5386f77426186285a0", - "ParentId": "5b5f7a2386f774093f2ed3c4", - "Price": 8020 - }, - { - "Id": "544a3a774bdc2d3a388b4567", - "ParentId": "5b5f740a86f77447ec5d7706", - "Price": 42902 - }, - { - "Id": "544fb37f4bdc2dee738b4567", - "ParentId": "5b47574386f77428ca22b337", - "Price": 5700 - }, - { - "Id": "5648b1504bdc2d9d488b4584", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 1022 - }, - { - "Id": "56deed6ed2720b4c698b4583", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 3388 - }, - { - "Id": "56e05b06d2720bb2668b4586", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 9730 - }, - { - "Id": "56eabf3bd2720b75698b4569", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 8719 - }, - { - "Id": "5732ee6a24597719ae0c0281", - "ParentId": "5b5f6fd286f774093f2ecf0d", - "Price": 15000 - }, - { - "Id": "573475fb24597737fb1379e1", - "ParentId": "5b47574386f77428ca22b2f4", - "Price": 2500 - }, - { - "Id": "5734781f24597737e04bf32a", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 8295 - }, - { - "Id": "57347c77245977448d35f6e2", - "ParentId": "5b47574386f77428ca22b2ee", - "Price": 8700 - }, - { - "Id": "57347d692459774491567cf1", - "ParentId": "5b47574386f77428ca22b336", - "Price": 6521 - }, - { - "Id": "573602322459776445391df1", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 68 - }, - { - "Id": "573603c924597764442bd9cb", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 63 - }, - { - "Id": "5737273924597765dd374461", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "5737287724597765e1625ae2", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "573728f324597765e5728561", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "57372db0245977685d4159b2", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "57372f7d245977699b53e301", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "575062b524597720a31c09a1", - "ParentId": "5b47574386f77428ca22b335", - "Price": 2429 - }, - { - "Id": "5751435d24597720a27126d1", - "ParentId": "5b47574386f77428ca22b335", - "Price": 8934 - }, - { - "Id": "5798a2832459774b53341029", - "ParentId": "5b47574386f77428ca22b343", - "Price": 13428 - }, - { - "Id": "57a3459f245977764a01f703", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2752 - }, - { - "Id": "57a9b9ce2459770ee926038d", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 400 - }, - { - "Id": "57aca93d2459771f2c7e26db", - "ParentId": "5b5f740a86f77447ec5d7706", - "Price": 38000 - }, - { - "Id": "544a11ac4bdc2d470e8b456a", - "ParentId": "5b5f6fd286f774093f2ecf0d", - "Price": 360000 - }, - { - "Id": "5580223e4bdc2d1c128b457f", - "ParentId": "5b5f794b86f77409407a7f92", - "Price": 5800 - }, - { - "Id": "55d447bb4bdc2d892f8b456f", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 3500 - }, - { - "Id": "55d482194bdc2d1d4e8b456b", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 18319 - }, - { - "Id": "57adff4f24597737f373b6e6", - "ParentId": "5b5f740a86f77447ec5d7706", - "Price": 42728 - }, - { - "Id": "57c55f092459772d291a8463", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 3600 - }, - { - "Id": "57d14d2524597714373db789", - "ParentId": "5b5f796a86f774093f2ed3c0", - "Price": 18846 - }, - { - "Id": "57dc334d245977597164366f", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 1198 - }, - { - "Id": "588226ef24597767af46e39c", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 6326 - }, - { - "Id": "5888996c24597754281f9419", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 4557 - }, - { - "Id": "58949dea86f77409483e16a8", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 903 - }, - { - "Id": "560d657b4bdc2da74d8b4572", - "ParentId": "5b5f737886f774093e6cb4fb", - "Price": 15676 - }, { "Id": "544909bb4bdc2d6f028b4577", "ParentId": "5b5f737886f774093e6cb4fb", "Price": 19137 }, - { - "Id": "5644bd2b4bdc2d3b4c8b4572", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 23147 - }, - { - "Id": "58ac60eb86f77401897560ff", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 1600 - }, - { - "Id": "58c157be86f77403c74b2bb6", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 3700 - }, - { - "Id": "58dd3ad986f77403051cba8f", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 420 - }, - { - "Id": "590a3b0486f7743954552bdb", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 12749 - }, - { - "Id": "590a3efd86f77437d351a25b", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 21697 - }, - { - "Id": "5649ab884bdc2ded0b8b457f", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 4230 - }, { "Id": "54491c4f4bdc2db1078b4568", "ParentId": "5b5f794b86f77409407a7f92", "Price": 14443 }, - { - "Id": "5656d7c34bdc2d9d198b4587", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 240 - }, { "Id": "544a3f024bdc2d1d388b4568", "ParentId": "5b5f740a86f77447ec5d7706", "Price": 22120 }, - { - "Id": "569668774bdc2da2298b4568", - "ParentId": "5b5f78b786f77447ed5636af", - "Price": 139 - }, { "Id": "544fb45d4bdc2dee738b4568", "ParentId": "5b47574386f77428ca22b338", "Price": 18863 }, - { - "Id": "56dff026d2720bb8668b4567", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 780 - }, { "Id": "544fb62a4bdc2dfb738b4568", "ParentId": "5b47574386f77428ca22b335", @@ -2856,11 +2216,6 @@ "ParentId": "5b47574386f77428ca22b336", "Price": 6265 }, - { - "Id": "56ea7165d2720b6e518b4583", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 3677 - }, { "Id": "558032614bdc2de7118b4585", "ParentId": "5b5f71de86f774093f2ecf13", @@ -2876,136 +2231,56 @@ "ParentId": "5b5f75e486f77447ec5d7712", "Price": 1529 }, - { - "Id": "573474f924597738002c6174", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 7235 - }, - { - "Id": "57347d5f245977448b40fa81", - "ParentId": "5b47574386f77428ca22b336", - "Price": 9857 - }, { "Id": "560836484bdc2d20478b456e", "ParentId": "5b5f75c686f774094242f19f", "Price": 3900 }, - { - "Id": "573724b42459776125652ac2", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "57372c56245977685e584582", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, { "Id": "5649a2464bdc2d91118b45a8", "ParentId": "5b5f755f86f77447ec5d770e", "Price": 3088 }, - { - "Id": "57505f6224597709a92585a9", - "ParentId": "5b47574386f77428ca22b336", - "Price": 10483 - }, - { - "Id": "57838c962459774a1651ec63", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 22507 - }, { "Id": "5656eb674bdc2d35148b457c", "ParentId": "5b47574386f77428ca22b33b", "Price": 6750 }, - { - "Id": "57acb6222459771ec34b5cb0", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 5118 - }, { "Id": "567143bf4bdc2d1a0f8b4567", "ParentId": "5b5f6fa186f77409407a7eb7", "Price": 11000 }, - { - "Id": "57c9a89124597704ee6faec1", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 1247 - }, - { - "Id": "57cffcd624597763133760c5", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 7014 - }, { "Id": "5672c92d4bdc2d180f8b4567", "ParentId": "5c518ec986f7743b68682ce2", "Price": 5359 }, - { - "Id": "57dc324a24597759501edc20", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 719 - }, { "Id": "56dee2bdd2720bc8328b4567", "ParentId": "5b5f794b86f77409407a7f92", "Price": 14981 }, - { - "Id": "58272d7f2459774f6311ddfd", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 4046 - }, - { - "Id": "5857a8b324597729ab0a0e7d", - "ParentId": "5b5f6fd286f774093f2ecf0d", - "Price": 750000 - }, { "Id": "56dff0bed2720bb0668b4567", "ParentId": "5b47574386f77428ca22b33b", "Price": 99 }, - { - "Id": "588200af24597742fa221dfb", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 7180 - }, { "Id": "56dff2ced2720bb4668b4567", "ParentId": "5b47574386f77428ca22b33b", "Price": 220 }, - { - "Id": "588200cf2459774414733d55", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 7481 - }, { "Id": "56dff4ecd2720b5f5a8b4568", "ParentId": "5b47574386f77428ca22b33b", "Price": 88 }, - { - "Id": "58a56f8d86f774651579314c", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1858 - }, { "Id": "56e335e4d2720b6c058b456d", "ParentId": "5b5f6f6c86f774093f2ecf0b", "Price": 20100 }, - { - "Id": "590a3d9c86f774385926e510", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 15554 - }, { "Id": "572b7fa524597762b747ce82", "ParentId": "5b47574386f77428ca22b32f", @@ -3082,14 +2357,729 @@ "Price": 5258 }, { - "Id": "5913611c86f77479e0084092", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 6607 + "Id": "55d485be4bdc2d962f8b456f", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 17232 }, { - "Id": "590c695186f7741e566b64a2", - "ParentId": "5b47574386f77428ca22b337", - "Price": 13763 + "Id": "55d4887d4bdc2d962f8b4570", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2012 + }, + { + "Id": "55d4491a4bdc2d882f8b456e", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 4006 + }, + { + "Id": "55d4af3a4bdc2d972f8b456f", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 600 + }, + { + "Id": "55d617094bdc2d89028b4568", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 46000 + }, + { + "Id": "560838c94bdc2d77798b4569", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 2783 + }, + { + "Id": "5648ac824bdc2ded0b8b457d", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 2663 + }, + { + "Id": "56083a334bdc2dc8488b4571", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 6510 + }, + { + "Id": "56d5a2bbd2720bb8418b456a", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 1001 + }, + { + "Id": "5649b1c04bdc2d16268b457c", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1847 + }, + { + "Id": "56d5a661d2720bd8418b456b", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 500 + }, + { + "Id": "5672cb124bdc2d1a0f8b4568", + "ParentId": "5b47574386f77428ca22b2ed", + "Price": 652 + }, + { + "Id": "56dff3afd2720bba668b4567", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 140 + }, + { + "Id": "5673de654bdc2d180f8b456d", + "ParentId": "5b47574386f77428ca22b336", + "Price": 8556 + }, + { + "Id": "56dff4a2d2720bbd668b456a", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 90 + }, + { + "Id": "56e05a6ed2720bd0748b4567", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 1001 + }, + { + "Id": "56e33680d2720be2748b4576", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 9000 + }, + { + "Id": "57347c1124597737fb1379e3", + "ParentId": "5b47574386f77428ca22b2ee", + "Price": 2499 + }, + { + "Id": "5737256c2459776125652acd", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "57235b6f24597759bf5a30f1", + "ParentId": "5b5f749986f774094242f199", + "Price": 91951 + }, + { + "Id": "5737266524597761006c6a8c", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "573476f124597737e04bf328", + "ParentId": "5b47574386f77428ca22b2f4", + "Price": 7984 + }, + { + "Id": "5737280e24597765cc785b5c", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "57347c5b245977448d35f6e1", + "ParentId": "5b47574386f77428ca22b2ee", + "Price": 11000 + }, + { + "Id": "57372b832459776701014e41", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "57347ca924597744596b4e71", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 198000 + }, + { + "Id": "5737339e2459776af261abeb", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "573603562459776430731618", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 70 + }, + { + "Id": "573718ba2459775a75491131", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 65 + }, + { + "Id": "57486e672459770abd687134", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 15155 + }, + { + "Id": "5737201124597760fc4431f1", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 45 + }, + { + "Id": "57372ac324597767001bc261", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "57a0e5022459774d1673f889", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 920 + }, + { + "Id": "5751a25924597722c463c472", + "ParentId": "5b47574386f77428ca22b339", + "Price": 2049 + }, + { + "Id": "576a581d2459771e7b1bc4f1", + "ParentId": "5b5f792486f77447ed5636b3", + "Price": 10437 + }, + { + "Id": "57ade1442459771557167e15", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 5381 + }, + { + "Id": "5780cf942459777df90dcb72", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 26661 + }, + { + "Id": "57cffe20245977632f391a9d", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 13751 + }, + { + "Id": "58272b842459774abc128d50", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 2400 + }, + { + "Id": "57dbb57e2459774673234890", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 45247 + }, + { + "Id": "57f4c844245977379d5c14d1", + "ParentId": "5b5f796a86f774093f2ed3c0", + "Price": 24460 + }, + { + "Id": "584984812459776a704a82a6", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 11000 + }, + { + "Id": "587df583245977373c4f1129", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 5697 + }, + { + "Id": "588200c224597743990da9ed", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 7179 + }, + { + "Id": "58949fac86f77409483e16aa", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 700 + }, + { + "Id": "58820d1224597753c90aeb13", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 56 + }, + { + "Id": "58d2947686f774485c6a1ee5", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 7389 + }, + { + "Id": "5888945a2459774bf43ba385", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 34672 + }, + { + "Id": "58d2947e86f77447aa070d53", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 7720 + }, + { + "Id": "58d3db5386f77426186285a0", + "ParentId": "5b5f7a2386f774093f2ed3c4", + "Price": 8020 + }, + { + "Id": "5894a42086f77426d2590762", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 4311 + }, + { + "Id": "58d39d3d86f77445bb794ae7", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2451 + }, + { + "Id": "5909e99886f7740c983b9984", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 1737 + }, + { + "Id": "590c2c9c86f774245b1f03f2", + "ParentId": "5b47574386f77428ca22b2f6", + "Price": 3769 + }, + { + "Id": "590c2d8786f774245b1f03f3", + "ParentId": "5b47574386f77428ca22b2f6", + "Price": 3500 + }, + { + "Id": "544a11ac4bdc2d470e8b456a", + "ParentId": "5b5f6fd286f774093f2ecf0d", + "Price": 360000 + }, + { + "Id": "5580223e4bdc2d1c128b457f", + "ParentId": "5b5f794b86f77409407a7f92", + "Price": 5800 + }, + { + "Id": "55d447bb4bdc2d892f8b456f", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 3500 + }, + { + "Id": "55d482194bdc2d1d4e8b456b", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 18319 + }, + { + "Id": "560d657b4bdc2da74d8b4572", + "ParentId": "5b5f737886f774093e6cb4fb", + "Price": 15676 + }, + { + "Id": "5644bd2b4bdc2d3b4c8b4572", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 23147 + }, + { + "Id": "5649ab884bdc2ded0b8b457f", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 4230 + }, + { + "Id": "5656d7c34bdc2d9d198b4587", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 240 + }, + { + "Id": "569668774bdc2da2298b4568", + "ParentId": "5b5f78b786f77447ed5636af", + "Price": 140 + }, + { + "Id": "56dff026d2720bb8668b4567", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 780 + }, + { + "Id": "56ea7165d2720b6e518b4583", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 3677 + }, + { + "Id": "573474f924597738002c6174", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 7235 + }, + { + "Id": "57347d5f245977448b40fa81", + "ParentId": "5b47574386f77428ca22b336", + "Price": 9857 + }, + { + "Id": "573724b42459776125652ac2", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "57372c56245977685e584582", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "57505f6224597709a92585a9", + "ParentId": "5b47574386f77428ca22b336", + "Price": 10483 + }, + { + "Id": "57838c962459774a1651ec63", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 22507 + }, + { + "Id": "57acb6222459771ec34b5cb0", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 5118 + }, + { + "Id": "57c9a89124597704ee6faec1", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 1247 + }, + { + "Id": "57cffcd624597763133760c5", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 7014 + }, + { + "Id": "57dc324a24597759501edc20", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 719 + }, + { + "Id": "58272d7f2459774f6311ddfd", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 4046 + }, + { + "Id": "5857a8b324597729ab0a0e7d", + "ParentId": "5b5f6fd286f774093f2ecf0d", + "Price": 750000 + }, + { + "Id": "588200af24597742fa221dfb", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 7180 + }, + { + "Id": "588200cf2459774414733d55", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 7481 + }, + { + "Id": "58a56f8d86f774651579314c", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1858 + }, + { + "Id": "590a3d9c86f774385926e510", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 15554 + }, + { + "Id": "55d484b44bdc2d1d4e8b456d", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1255 + }, + { + "Id": "544fb3f34bdc2d03748b456a", + "ParentId": "5b47574386f77428ca22b33a", + "Price": 25305 + }, + { + "Id": "5649af094bdc2df8348b4586", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 1042 + }, + { + "Id": "544fb5454bdc2df8738b456a", + "ParentId": "5b47574386f77428ca22b345", + "Price": 21032 + }, + { + "Id": "5649be884bdc2d79388b4577", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1175 + }, + { + "Id": "55801eed4bdc2d89578b4588", + "ParentId": "5b5f798886f77447ed5636b5", + "Price": 24989 + }, + { + "Id": "5672cb724bdc2dc2088b456b", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 16684 + }, + { + "Id": "558022b54bdc2dac148b458d", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 26250 + }, + { + "Id": "56d59856d2720bd8418b456a", + "ParentId": "5b5f792486f77447ed5636b3", + "Price": 6238 + }, + { + "Id": "55802d5f4bdc2dac148b458e", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3797 + }, + { + "Id": "56d59d3ad2720bdb418b4577", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 62 + }, + { + "Id": "55d45f484bdc2d972f8b456d", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 9150 + }, + { + "Id": "55d485804bdc2d8c2f8b456b", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2295 + }, + { + "Id": "56dff421d2720b5f5a8b4567", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 69 + }, + { + "Id": "55d48ebc4bdc2d8c2f8b456c", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2588 + }, + { + "Id": "571a28e524597720b4066567", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 14904 + }, + { + "Id": "55d6190f4bdc2d87028b4567", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 58000 + }, + { + "Id": "572b7f1624597762ae139822", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 2589 + }, + { + "Id": "5608379a4bdc2d26448b4569", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 7680 + }, + { + "Id": "5733279d245977289b77ec24", + "ParentId": "5b47574386f77428ca22b2ed", + "Price": 61563 + }, + { + "Id": "57371f8d24597761006c6a81", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 22 + }, + { + "Id": "571659bb2459771fb2755a12", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 1599 + }, + { + "Id": "57372e94245977685648d3e1", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "57372ebf2459776862260582", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "571a29dc2459771fb2755a6a", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1157 + }, + { + "Id": "57347da92459774491567cf5", + "ParentId": "5b47574386f77428ca22b336", + "Price": 16393 + }, + { + "Id": "57372ee1245977685d4159b5", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "573722e82459776104581c21", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "573727c624597765cc785b5b", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "574db213245977459a2f3f5d", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 300 + }, + { + "Id": "57513f9324597720a7128161", + "ParentId": "5b47574386f77428ca22b335", + "Price": 3412 + }, + { + "Id": "5751496424597720a27126da", + "ParentId": "5b47574386f77428ca22b335", + "Price": 9236 + }, + { + "Id": "57513fcc24597720a31c09a6", + "ParentId": "5b47574386f77428ca22b335", + "Price": 3456 + }, + { + "Id": "5780cf692459777de4559321", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 2526 + }, + { + "Id": "5780cf7f2459777de4559322", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 1500000 + }, + { + "Id": "57a0dfb82459774d3078b56c", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 220 + }, + { + "Id": "576165642459773c7a400233", + "ParentId": "5b5f794b86f77409407a7f92", + "Price": 16517 + }, + { + "Id": "57c44e7b2459772d28133248", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 996 + }, + { + "Id": "57616a9e2459773c7a400234", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1694 + }, + { + "Id": "5780d0652459777df90dcb74", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 7755 + }, + { + "Id": "57cffd8224597763b03fc609", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 13885 + }, + { + "Id": "578395402459774a256959b5", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 1620 + }, + { + "Id": "57cffcdd24597763f5110006", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 7984 + }, + { + "Id": "57da93632459771cb65bf83f", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 47712 + }, + { + "Id": "57e26fc7245977162a14b800", + "ParentId": "5b5f7a0886f77409407a7f96", + "Price": 5112 + }, + { + "Id": "57d1519e24597714373db79d", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2877 + }, + { + "Id": "57f3c7e024597738ea4ba286", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 5110 + }, + { + "Id": "5888976c24597754281f93f5", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 6269 + }, + { + "Id": "57f3c6bd24597738e730fa2f", + "ParentId": "5b5f796a86f774093f2ed3c0", + "Price": 20238 + }, + { + "Id": "588b56d02459771481110ae2", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 10249 + }, + { + "Id": "5894a5b586f77426d2590767", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 3509 + }, + { + "Id": "5839a7742459773cf9693481", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 3203 + }, + { + "Id": "58d2946386f774496974c37e", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 7633 + }, + { + "Id": "590c2b4386f77425357b6123", + "ParentId": "5b47574386f77428ca22b2f6", + "Price": 8000 + }, + { + "Id": "58491f3324597764bc48fa02", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 19985 + }, + { + "Id": "5882163224597757561aa920", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1663 + }, + { + "Id": "588226dd24597767ad33f789", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 5444 + }, + { + "Id": "58889d0c2459775bc215d981", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 4650 + }, + { + "Id": "5894a51286f77426d13baf02", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 3274 + }, + { + "Id": "58d268fc86f774111273f8c2", + "ParentId": "5b5f744786f774094242f197", + "Price": 18157 + }, + { + "Id": "590a386e86f77429692b27ab", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 7491 + }, + { + "Id": "590c311186f77424d1667482", + "ParentId": "5b47574386f77428ca22b2f6", + "Price": 3544 + }, + { + "Id": "590c31c586f774245e3141b2", + "ParentId": "5b47574386f77428ca22b2ee", + "Price": 4105 }, { "Id": "590c5d4b86f774784e1b9c45", @@ -3097,24 +3087,34 @@ "Price": 19358 }, { - "Id": "590c678286f77426c9660122", - "ParentId": "5b47574386f77428ca22b338", - "Price": 23764 + "Id": "590c695186f7741e566b64a2", + "ParentId": "5b47574386f77428ca22b337", + "Price": 13763 }, { "Id": "590c5a7286f7747884343aea", "ParentId": "5b47574386f77428ca22b2f2", "Price": 14000 }, + { + "Id": "590c678286f77426c9660122", + "ParentId": "5b47574386f77428ca22b338", + "Price": 23764 + }, { "Id": "590c621186f774138d11ea29", "ParentId": "5b47574386f77428ca22b341", "Price": 40152 }, { - "Id": "590c37d286f77443be3d7827", - "ParentId": "5b47574386f77428ca22b341", - "Price": 92000 + "Id": "5913611c86f77479e0084092", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 6607 + }, + { + "Id": "590c5bbd86f774785762df04", + "ParentId": "5b47574386f77428ca22b2f2", + "Price": 6958 }, { "Id": "590c5c9f86f77477c91c36e7", @@ -3122,9 +3122,24 @@ "Price": 17261 }, { - "Id": "590c5bbd86f774785762df04", - "ParentId": "5b47574386f77428ca22b2f2", - "Price": 6958 + "Id": "590c37d286f77443be3d7827", + "ParentId": "5b47574386f77428ca22b341", + "Price": 92000 + }, + { + "Id": "590c595c86f7747884343ad7", + "ParentId": "5b47574386f77428ca22b2f4", + "Price": 10039 + }, + { + "Id": "590c651286f7741e566b6461", + "ParentId": "5b47574386f77428ca22b341", + "Price": 71000 + }, + { + "Id": "590c392f86f77444754deb29", + "ParentId": "5b47574386f77428ca22b341", + "Price": 80000 }, { "Id": "590c60fc86f77412b13fddcf", @@ -3136,336 +3151,11 @@ "ParentId": "5b47574386f77428ca22b2ee", "Price": 35502 }, - { - "Id": "590c595c86f7747884343ad7", - "ParentId": "5b47574386f77428ca22b2f4", - "Price": 10039 - }, - { - "Id": "590c392f86f77444754deb29", - "ParentId": "5b47574386f77428ca22b341", - "Price": 80000 - }, - { - "Id": "590c651286f7741e566b6461", - "ParentId": "5b47574386f77428ca22b341", - "Price": 71000 - }, - { - "Id": "59136a4486f774447a1ed172", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 14200 - }, - { - "Id": "5991b51486f77447b112d44f", - "ParentId": "5b47574386f77428ca22b345", - "Price": 13923 - }, - { - "Id": "59db3a1d86f77429e05b4e92", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 18012 - }, - { - "Id": "59db7eed86f77461f8380365", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 4268 - }, - { - "Id": "59e0d99486f7744a32234762", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 1111 - }, - { - "Id": "59e366c186f7741778269d85", - "ParentId": "5b47574386f77428ca22b2ee", - "Price": 8658 - }, - { - "Id": "59e6284f86f77440d569536f", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 801 - }, - { - "Id": "59eb7ebe86f7740b373438ce", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 7544 - }, - { - "Id": "59f32c3b86f77472a31742f0", - "ParentId": "5b47574386f77428ca22b2f4", - "Price": 600 - }, - { - "Id": "59fafc5086f7740dbe19f6c3", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 4387 - }, - { - "Id": "59ff3b6a86f77477562ff5ed", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1557 - }, - { - "Id": "5a0ea69f86f7741cd5406619", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 3212 - }, - { - "Id": "5a0f075686f7745bcc42ee12", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 3100 - }, - { - "Id": "5a32a064c4a28200741e22de", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 39742 - }, - { - "Id": "5a33e75ac4a2826c6e06d759", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 38263 - }, - { - "Id": "5a37cb10c4a282329a73b4e7", - "ParentId": "5b5f748386f774093e6cb501", - "Price": 58580 - }, { "Id": "590c62a386f77412b0130255", "ParentId": "5b619f1a86f77450a702a6f3", "Price": 12000 }, - { - "Id": "5a38ed75c4a28232996e40c6", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1075 - }, - { - "Id": "5a3c16fe86f77452b62de32a", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 170 - }, - { - "Id": "5a6b585a8dc32e5a9c28b4f1", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 703 - }, - { - "Id": "5a6b5ed88dc32e000c52ec86", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 11356 - }, - { - "Id": "5a6f58f68dc32e000a311390", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 502 - }, - { - "Id": "5a6f5f078dc32e00094b97dd", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 11199 - }, - { - "Id": "5a7037338dc32e000d46d257", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 5054 - }, - { - "Id": "5a705e128dc32e000d46d258", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 2800 - }, - { - "Id": "5a71e1868dc32e00094b97f3", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 100 - }, - { - "Id": "5a789261c5856700186c65d3", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 4277 - }, - { - "Id": "5a9d6d00a2750c5c985b5305", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1009 - }, - { - "Id": "5aa2b89be5b5b0001569311f", - "ParentId": "5b47574386f77428ca22b330", - "Price": 1445 - }, - { - "Id": "5aa2b923e5b5b000137b7589", - "ParentId": "5b47574386f77428ca22b331", - "Price": 3084 - }, - { - "Id": "5aa66be6e5b5b0214e506e97", - "ParentId": "5b5f748386f774093e6cb501", - "Price": 87797 - }, - { - "Id": "5aafa49ae5b5b00015042a58", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 1624 - }, - { - "Id": "5aba637ad8ce87001773e17f", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 600 - }, - { - "Id": "5abcbc27d8ce8700182eceeb", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 28972 - }, - { - "Id": "5abcd472d8ce8700166032ae", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1556 - }, - { - "Id": "59148c8a86f774197930e983", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 19717 - }, - { - "Id": "591afe0186f77431bd616a11", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 14634 - }, - { - "Id": "591c4e1186f77410354b316e", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 100 - }, - { - "Id": "5929a2a086f7744f4b234d43", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 21423 - }, - { - "Id": "593d1fa786f7746da62d61ac", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 11969 - }, - { - "Id": "593d493f86f7745e6b2ceb22", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 39372 - }, - { - "Id": "599860ac86f77436b225ed1a", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2422 - }, - { - "Id": "59d36a0086f7747e673f3946", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 2001 - }, - { - "Id": "59e0bdb186f774156f04ce82", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1581 - }, - { - "Id": "59e35abd86f7741778269d82", - "ParentId": "5b47574386f77428ca22b2f0", - "Price": 10200 - }, - { - "Id": "59e68f6f86f7746c9f75e846", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 100 - }, - { - "Id": "59e7711e86f7746cae05fbe1", - "ParentId": "5b47574386f77428ca22b330", - "Price": 400 - }, - { - "Id": "59f98b4986f7746f546d2cef", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 19292 - }, - { - "Id": "59fb137a86f7740adb646af1", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 8798 - }, - { - "Id": "5a0abb6e1526d8000a025282", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 615 - }, - { - "Id": "5a0dc95c86f77452440fc675", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 75021 - }, - { - "Id": "5a1452ee86f7746f33111763", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 90000 - }, - { - "Id": "5a34fe59c4a282000b1521a2", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 67325 - }, - { - "Id": "5a43957686f7742a2c2f11b0", - "ParentId": "5b47574386f77428ca22b330", - "Price": 500 - }, - { - "Id": "5a6b5f868dc32e000a311389", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 1563 - }, - { - "Id": "5a7882dcc5856700177af662", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1030 - }, - { - "Id": "5a7d90eb159bd400165484f1", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 1903 - }, - { - "Id": "5a800961159bd4315e3a1657", - "ParentId": "5b5f737886f774093e6cb4fb", - "Price": 15083 - }, - { - "Id": "5aa7d193e5b5b000171d063f", - "ParentId": "5b47574386f77428ca22b330", - "Price": 1600 - }, - { - "Id": "5aa7e373e5b5b000137b76f0", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 67363 - }, - { - "Id": "5ab8f04f86f774585f4237d8", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 6000 - }, - { - "Id": "5ab8f85d86f7745cd93a1cf5", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 4258 - }, - { - "Id": "5abccb7dd8ce87001773e277", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 11630 - }, { "Id": "59148f8286f7741b951ea113", "ParentId": "5c518ec986f7743b68682ce2", @@ -3611,6 +3301,301 @@ "ParentId": "5b47574386f77428ca22b32f", "Price": 3454 }, + { + "Id": "590dde5786f77405e71908b2", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 0 + }, + { + "Id": "591383f186f7744a4c5edcf3", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 4123 + }, + { + "Id": "5914578086f774123569ffa4", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 6023 + }, + { + "Id": "591aef7986f774139d495f03", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 5518 + }, + { + "Id": "591c4efa86f7741030027726", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 14000 + }, + { + "Id": "591ee00d86f774592f7b841e", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 5302 + }, + { + "Id": "593858c486f774253a24cb52", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 5128 + }, + { + "Id": "5947fa2486f77425b47c1a9b", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 4500 + }, + { + "Id": "5998529a86f774647f44f421", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1499 + }, + { + "Id": "599860e986f7743bb57573a6", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 414 + }, + { + "Id": "59ccd11386f77428f24a488f", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 1793 + }, + { + "Id": "59e6152586f77473dc057aa1", + "ParentId": "5b5f78e986f77447ed5636b1", + "Price": 18978 + }, + { + "Id": "5a0060fc86f7745793204432", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3300 + }, + { + "Id": "5a0ed824fcdbcb0176308b0d", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 470 + }, + { + "Id": "5a0eeb1a86f774688b70aa5c", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 8100 + }, + { + "Id": "5a13f35286f77413ef1436b0", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 78300 + }, + { + "Id": "5a16b93dfcdbcbcae6687261", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2454 + }, + { + "Id": "5a16badafcdbcb001865f72d", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 34469 + }, + { + "Id": "5a27b3d0c4a282000d721ec1", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2766 + }, + { + "Id": "5a329052c4a28200741e22d3", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 19754 + }, + { + "Id": "5a339805c4a2826c6e06d73d", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 3150 + }, + { + "Id": "5a3501acc4a282000d72293a", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3232 + }, + { + "Id": "5a38ebd9c4a282000d722a5b", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 24 + }, + { + "Id": "5a398ab9c4a282000c5a9842", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 6200 + }, + { + "Id": "5a687e7886f7740c4a5133fb", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 2150 + }, + { + "Id": "5a787f7ac5856700177af660", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 10378 + }, + { + "Id": "5a78813bc5856700186c4abe", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 8924 + }, + { + "Id": "5a7ad0c451dfba0013379712", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 6152 + }, + { + "Id": "5a7ad1fb51dfba0013379715", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 3365 + }, + { + "Id": "5aa7e276e5b5b000171d0647", + "ParentId": "5b47574386f77428ca22b330", + "Price": 8400 + }, + { + "Id": "5aaf8a0be5b5b00015693243", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2468 + }, + { + "Id": "59148c8a86f774197930e983", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 19717 + }, + { + "Id": "591afe0186f77431bd616a11", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 14634 + }, + { + "Id": "591c4e1186f77410354b316e", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 100 + }, + { + "Id": "5929a2a086f7744f4b234d43", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 21423 + }, + { + "Id": "593d1fa786f7746da62d61ac", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 11969 + }, + { + "Id": "593d493f86f7745e6b2ceb22", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 39372 + }, + { + "Id": "599860ac86f77436b225ed1a", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2422 + }, + { + "Id": "59d36a0086f7747e673f3946", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 2001 + }, + { + "Id": "59e0bdb186f774156f04ce82", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1581 + }, + { + "Id": "59e35abd86f7741778269d82", + "ParentId": "5b47574386f77428ca22b2f0", + "Price": 10200 + }, + { + "Id": "59e68f6f86f7746c9f75e846", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 100 + }, + { + "Id": "59e7711e86f7746cae05fbe1", + "ParentId": "5b47574386f77428ca22b330", + "Price": 400 + }, + { + "Id": "59f98b4986f7746f546d2cef", + "ParentId": "5b5f792486f77447ed5636b3", + "Price": 19292 + }, + { + "Id": "59fb137a86f7740adb646af1", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 8798 + }, + { + "Id": "5a0abb6e1526d8000a025282", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 615 + }, + { + "Id": "5a0dc95c86f77452440fc675", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 75021 + }, + { + "Id": "5a1452ee86f7746f33111763", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 90000 + }, + { + "Id": "5a34fe59c4a282000b1521a2", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 67325 + }, + { + "Id": "5a43957686f7742a2c2f11b0", + "ParentId": "5b47574386f77428ca22b330", + "Price": 500 + }, + { + "Id": "5a6b5f868dc32e000a311389", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 1563 + }, + { + "Id": "5a7882dcc5856700177af662", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1030 + }, + { + "Id": "5a7d90eb159bd400165484f1", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 1903 + }, + { + "Id": "5a800961159bd4315e3a1657", + "ParentId": "5b5f737886f774093e6cb4fb", + "Price": 15083 + }, + { + "Id": "5aa7d193e5b5b000171d063f", + "ParentId": "5b47574386f77428ca22b330", + "Price": 1600 + }, + { + "Id": "5aa7e373e5b5b000137b76f0", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 67363 + }, + { + "Id": "5ab8f04f86f774585f4237d8", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 6000 + }, + { + "Id": "5ab8f85d86f7745cd93a1cf5", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 4258 + }, + { + "Id": "5abccb7dd8ce87001773e277", + "ParentId": "5b5f792486f77447ed5636b3", + "Price": 11630 + }, { "Id": "590c5f0d86f77413997acfab", "ParentId": "5b47574386f77428ca22b336", @@ -3822,159 +3807,314 @@ "Price": 26181 }, { - "Id": "590dde5786f77405e71908b2", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 0 - }, - { - "Id": "591383f186f7744a4c5edcf3", + "Id": "59136a4486f774447a1ed172", "ParentId": "5c518ec986f7743b68682ce2", - "Price": 4123 + "Price": 14200 }, { - "Id": "5914578086f774123569ffa4", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 6023 + "Id": "5991b51486f77447b112d44f", + "ParentId": "5b47574386f77428ca22b345", + "Price": 13923 }, { - "Id": "591aef7986f774139d495f03", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 5518 - }, - { - "Id": "591c4efa86f7741030027726", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 14000 - }, - { - "Id": "591ee00d86f774592f7b841e", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 5302 - }, - { - "Id": "593858c486f774253a24cb52", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 5128 - }, - { - "Id": "5947fa2486f77425b47c1a9b", + "Id": "59db3a1d86f77429e05b4e92", "ParentId": "5b5f761f86f774094242f1a1", - "Price": 4500 + "Price": 18012 }, { - "Id": "5998529a86f774647f44f421", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1499 - }, - { - "Id": "599860e986f7743bb57573a6", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 414 - }, - { - "Id": "59ccd11386f77428f24a488f", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 1793 - }, - { - "Id": "59e6152586f77473dc057aa1", - "ParentId": "5b5f78e986f77447ed5636b1", - "Price": 18978 - }, - { - "Id": "5a0060fc86f7745793204432", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3300 - }, - { - "Id": "5a0ed824fcdbcb0176308b0d", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 470 - }, - { - "Id": "5a0eeb1a86f774688b70aa5c", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 8100 - }, - { - "Id": "5a13f35286f77413ef1436b0", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 78300 - }, - { - "Id": "5a16b93dfcdbcbcae6687261", + "Id": "59db7eed86f77461f8380365", "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2454 + "Price": 4268 }, { - "Id": "5a16badafcdbcb001865f72d", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 34469 - }, - { - "Id": "5a27b3d0c4a282000d721ec1", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2766 - }, - { - "Id": "5a329052c4a28200741e22d3", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 19754 - }, - { - "Id": "5a339805c4a2826c6e06d73d", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 3150 - }, - { - "Id": "5a3501acc4a282000d72293a", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3232 - }, - { - "Id": "5a38ebd9c4a282000d722a5b", + "Id": "59e0d99486f7744a32234762", "ParentId": "5b47574386f77428ca22b33b", - "Price": 24 + "Price": 1111 }, { - "Id": "5a398ab9c4a282000c5a9842", + "Id": "59e366c186f7741778269d85", + "ParentId": "5b47574386f77428ca22b2ee", + "Price": 8658 + }, + { + "Id": "59e6284f86f77440d569536f", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 801 + }, + { + "Id": "59eb7ebe86f7740b373438ce", "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 6200 + "Price": 7544 }, { - "Id": "5a687e7886f7740c4a5133fb", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 2150 + "Id": "59f32c3b86f77472a31742f0", + "ParentId": "5b47574386f77428ca22b2f4", + "Price": 600 }, { - "Id": "5a787f7ac5856700177af660", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 10378 - }, - { - "Id": "5a78813bc5856700186c4abe", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 8924 - }, - { - "Id": "5a7ad0c451dfba0013379712", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 6152 - }, - { - "Id": "5a7ad1fb51dfba0013379715", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 3365 - }, - { - "Id": "5aa7e276e5b5b000171d0647", - "ParentId": "5b47574386f77428ca22b330", - "Price": 8400 - }, - { - "Id": "5aaf8a0be5b5b00015693243", + "Id": "59fafc5086f7740dbe19f6c3", "ParentId": "5b5f754a86f774094242f19b", - "Price": 2468 + "Price": 4387 + }, + { + "Id": "59ff3b6a86f77477562ff5ed", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1557 + }, + { + "Id": "5a0ea69f86f7741cd5406619", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 3212 + }, + { + "Id": "5a0f075686f7745bcc42ee12", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 3100 + }, + { + "Id": "5a32a064c4a28200741e22de", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 39742 + }, + { + "Id": "5a33e75ac4a2826c6e06d759", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 38263 + }, + { + "Id": "5a37cb10c4a282329a73b4e7", + "ParentId": "5b5f748386f774093e6cb501", + "Price": 58580 + }, + { + "Id": "5a38ed75c4a28232996e40c6", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1075 + }, + { + "Id": "5a3c16fe86f77452b62de32a", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 170 + }, + { + "Id": "5a6b585a8dc32e5a9c28b4f1", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 703 + }, + { + "Id": "5a6b5ed88dc32e000c52ec86", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 11356 + }, + { + "Id": "5a6f58f68dc32e000a311390", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 502 + }, + { + "Id": "5a6f5f078dc32e00094b97dd", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 11199 + }, + { + "Id": "5a7037338dc32e000d46d257", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 5054 + }, + { + "Id": "5a705e128dc32e000d46d258", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 2800 + }, + { + "Id": "5a71e1868dc32e00094b97f3", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 100 + }, + { + "Id": "5a789261c5856700186c65d3", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 4277 + }, + { + "Id": "5a9d6d00a2750c5c985b5305", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1009 + }, + { + "Id": "5aa2b89be5b5b0001569311f", + "ParentId": "5b47574386f77428ca22b330", + "Price": 1445 + }, + { + "Id": "5aa2b923e5b5b000137b7589", + "ParentId": "5b47574386f77428ca22b331", + "Price": 3084 + }, + { + "Id": "5aa66be6e5b5b0214e506e97", + "ParentId": "5b5f748386f774093e6cb501", + "Price": 87797 + }, + { + "Id": "5aafa49ae5b5b00015042a58", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 1624 + }, + { + "Id": "5aba637ad8ce87001773e17f", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 600 + }, + { + "Id": "5abcbc27d8ce8700182eceeb", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 28972 + }, + { + "Id": "5abcd472d8ce8700166032ae", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1556 + }, + { + "Id": "59d64ec286f774171d1e0a42", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 2055 + }, + { + "Id": "59d790f486f77403cb06aec6", + "ParentId": "5b5f73ab86f774094242f195", + "Price": 6049 + }, + { + "Id": "59e6318286f77444dd62c4cc", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 768 + }, + { + "Id": "59e6687d86f77411d949b251", + "ParentId": "5b5f78e986f77447ed5636b1", + "Price": 21585 + }, + { + "Id": "59e89d0986f77427600d226e", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1820 + }, + { + "Id": "59fafc9386f774067d462453", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 4700 + }, + { + "Id": "5a01ad4786f77450561fda02", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 2904 + }, + { + "Id": "5a0448bc86f774736f14efa8", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 5560 + }, + { + "Id": "5a0eb38b86f774153b320eb0", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 8437 + }, + { + "Id": "5a0ee34586f774023b6ee092", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 52000 + }, + { + "Id": "5a0f0f5886f7741c4e32a472", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 19203 + }, + { + "Id": "5a13ee1986f774794d4c14cd", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 7600 + }, + { + "Id": "5a13ef0686f7746e5a411744", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 25020 + }, + { + "Id": "5a13ef7e86f7741290491063", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 87000 + }, + { + "Id": "5a70366c8dc32e001207fb06", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 4503 + }, + { + "Id": "5a718b548dc32e000d46d262", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1476 + }, + { + "Id": "5a71e22f8dc32e00094b97f4", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 20119 + }, + { + "Id": "5a78832ec5856700155a6ca3", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2444 + }, + { + "Id": "5a7ad55551dfba0015068f42", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 4047 + }, + { + "Id": "5a9d6d13a2750c00164f6b03", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1352 + }, + { + "Id": "5a9d6d21a2750c00137fa649", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1635 + }, + { + "Id": "5a9fbb84a2750c00137fa685", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 42965 + }, + { + "Id": "5aa2b9ede5b5b000137b758b", + "ParentId": "5b47574386f77428ca22b330", + "Price": 19513 + }, + { + "Id": "5aba62f8d8ce87001943946b", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 501 + }, + { + "Id": "5abcc328d8ce8700194394f3", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 6423 + }, + { + "Id": "5910968f86f77425cf569c32", + "ParentId": "5b47574386f77428ca22b345", + "Price": 100000 + }, + { + "Id": "5913877a86f774432f15d444", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 12900 + }, + { + "Id": "5943ee5a86f77413872d25ec", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 11990 }, { "Id": "590c639286f774151567fa95", @@ -3996,31 +4136,6 @@ "ParentId": "5b5f757486f774093e6cb507", "Price": 7441 }, - { - "Id": "591af28e86f77414a27a9e1d", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 6528 - }, - { - "Id": "5926d3c686f77410de68ebc8", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 12579 - }, - { - "Id": "5910968f86f77425cf569c32", - "ParentId": "5b47574386f77428ca22b345", - "Price": 100000 - }, - { - "Id": "5913877a86f774432f15d444", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 12900 - }, - { - "Id": "5943ee5a86f77413872d25ec", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 11990 - }, { "Id": "5947e98b86f774778f1448bc", "ParentId": "5b5f757486f774093e6cb507", @@ -4031,11 +4146,61 @@ "ParentId": "5b5f75e486f77447ec5d7712", "Price": 16845 }, + { + "Id": "595cfa8b86f77427437e845b", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 28988 + }, + { + "Id": "591af28e86f77414a27a9e1d", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 6528 + }, + { + "Id": "5926d3c686f77410de68ebc8", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 12579 + }, { "Id": "5937fc6786f7742cab753590", "ParentId": "5b619f1a86f77450a702a6f3", "Price": 0 }, + { + "Id": "59e5d83b86f7745aed03d262", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 998 + }, + { + "Id": "59e6906286f7746c9f75e847", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 426 + }, + { + "Id": "59e690b686f7746c9f75e848", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 1230 + }, + { + "Id": "59e7635f86f7742cbf2c1095", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 1073 + }, + { + "Id": "59e8a00d86f7742ad93b569c", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 600 + }, + { + "Id": "59fb042886f7746c5005a7b2", + "ParentId": "5b5f6fa186f77409407a7eb7", + "Price": 1229994 + }, + { + "Id": "5a0c27731526d80618476ac4", + "ParentId": "5b5f7a2386f774093f2ed3c4", + "Price": 6715 + }, { "Id": "5947f92f86f77427344a76b1", "ParentId": "5b5f761f86f774094242f1a1", @@ -4046,6 +4211,16 @@ "ParentId": "5b47574386f77428ca22b33b", "Price": 100 }, + { + "Id": "5a0ee76686f7743698200d5c", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 4700 + }, + { + "Id": "5a16b672fcdbcb001912fa83", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 13452 + }, { "Id": "5998598e86f7740b3f498a86", "ParentId": "5b5f724c86f774093f2ecf15", @@ -4061,26 +4236,21 @@ "ParentId": "5b5f78fc86f77409407a7f90", "Price": 29513 }, - { - "Id": "595cfa8b86f77427437e845b", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 28988 - }, - { - "Id": "59e5d83b86f7745aed03d262", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 998 - }, - { - "Id": "59e6906286f7746c9f75e847", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 426 - }, { "Id": "59d64f2f86f77417193ef8b3", "ParentId": "5b5f75e486f77447ec5d7712", "Price": 808 }, + { + "Id": "5a34f7f1c4a2826c6e06d75d", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 39137 + }, + { + "Id": "5a34fae7c4a2826c6e06d760", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 47834 + }, { "Id": "59db3b0886f77429d72fb895", "ParentId": "5b5f761f86f774094242f1a1", @@ -4106,21 +4276,6 @@ "ParentId": "5b47574386f77428ca22b33b", "Price": 130 }, - { - "Id": "59e690b686f7746c9f75e848", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 1230 - }, - { - "Id": "59e7635f86f7742cbf2c1095", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 1073 - }, - { - "Id": "59e8a00d86f7742ad93b569c", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 600 - }, { "Id": "5a01c29586f77474660c694c", "ParentId": "5b5f754a86f774094242f19b", @@ -4137,19 +4292,14 @@ "Price": 471 }, { - "Id": "59fb042886f7746c5005a7b2", - "ParentId": "5b5f6fa186f77409407a7eb7", - "Price": 1229994 + "Id": "5a37ca54c4a282000d72296a", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 9294 }, { - "Id": "5a0c27731526d80618476ac4", - "ParentId": "5b5f7a2386f774093f2ed3c4", - "Price": 6715 - }, - { - "Id": "5a0ee76686f7743698200d5c", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 4700 + "Id": "5a6b59a08dc32e000b452fb7", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 1007 }, { "Id": "5a0ee62286f774369454a7ac", @@ -4166,6 +4316,16 @@ "ParentId": "5b619f1a86f77450a702a6f3", "Price": 4500 }, + { + "Id": "5a7ae0c351dfba0017554310", + "ParentId": "5b5f792486f77447ed5636b3", + "Price": 6608 + }, + { + "Id": "5a7c4850e899ef00150be885", + "ParentId": "5b47574386f77428ca22b330", + "Price": 2223 + }, { "Id": "5a29357286f77409c705e025", "ParentId": "5b619f1a86f77450a702a6f3", @@ -4181,16 +4341,6 @@ "ParentId": "5b5f737886f774093e6cb4fb", "Price": 17919 }, - { - "Id": "5a16b672fcdbcb001912fa83", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 13452 - }, - { - "Id": "5a34f7f1c4a2826c6e06d75d", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 39137 - }, { "Id": "5a6b5b8a8dc32e001207faf3", "ParentId": "5b5f75c686f774094242f19f", @@ -4216,41 +4366,6 @@ "ParentId": "5b5f754a86f774094242f19b", "Price": 20019 }, - { - "Id": "5aa2ba71e5b5b000137b758f", - "ParentId": "5b5f6f3c86f774094242ef87", - "Price": 45027 - }, - { - "Id": "5a34fae7c4a2826c6e06d760", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 47834 - }, - { - "Id": "5a37ca54c4a282000d72296a", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 9294 - }, - { - "Id": "5a6b59a08dc32e000b452fb7", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 1007 - }, - { - "Id": "5ab626e4d8ce87272e4c6e43", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1559 - }, - { - "Id": "5a7ae0c351dfba0017554310", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 6608 - }, - { - "Id": "5a7c4850e899ef00150be885", - "ParentId": "5b47574386f77428ca22b330", - "Price": 2223 - }, { "Id": "5a9ea27ca2750c00137fa672", "ParentId": "5b5f724c86f774093f2ecf15", @@ -4261,11 +4376,106 @@ "ParentId": "5b5f754a86f774094242f19b", "Price": 3113 }, + { + "Id": "590c661e86f7741e566b646a", + "ParentId": "5b47574386f77428ca22b338", + "Price": 9240 + }, + { + "Id": "590de71386f774347051a052", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 46900 + }, + { + "Id": "590de92486f77423d9312a33", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 0 + }, + { + "Id": "5aa2ba71e5b5b000137b758f", + "ParentId": "5b5f6f3c86f774094242ef87", + "Price": 45027 + }, + { + "Id": "5ab626e4d8ce87272e4c6e43", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1559 + }, { "Id": "5ab8ebf186f7742d8b372e80", "ParentId": "5b5f6f6c86f774093f2ecf0b", "Price": 87451 }, + { + "Id": "5947db3f86f77447880cf76f", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 9352 + }, + { + "Id": "5998597786f77414ea6da093", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 663 + }, + { + "Id": "59d6514b86f774171a068a08", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2568 + }, + { + "Id": "59e35cbb86f7741778269d83", + "ParentId": "5b47574386f77428ca22b2ee", + "Price": 12201 + }, + { + "Id": "59e62cc886f77440d40b52a1", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 701 + }, + { + "Id": "59e655cb86f77411dc52a77b", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 110 + }, + { + "Id": "59e6918f86f7746c9f75e849", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 90 + }, + { + "Id": "59e7643b86f7742cbf2c109a", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 9615 + }, + { + "Id": "59fafb5d86f774067a6f2084", + "ParentId": "5b47574386f77428ca22b2f2", + "Price": 12646 + }, + { + "Id": "5a0c59791526d8dba737bba7", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 3231 + }, + { + "Id": "5a0eebed86f77461230ddb3d", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 4200 + }, + { + "Id": "5a13eebd86f7746fd639aa93", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 90000 + }, + { + "Id": "5a27b6bec4a282000e496f78", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 30688 + }, + { + "Id": "5a32aa8bc4a2826c6e06d737", + "ParentId": "5b5f744786f774094242f197", + "Price": 22215 + }, { "Id": "590de7e986f7741b096e5f32", "ParentId": "5b47574386f77428ca22b2f1", @@ -4286,26 +4496,56 @@ "ParentId": "5b47574386f77428ca22b33b", "Price": 100 }, + { + "Id": "5a608bf24f39f98ffc77720e", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 600 + }, { "Id": "5947c73886f7747701588af5", "ParentId": "5b5f757486f774093e6cb507", "Price": 8097 }, + { + "Id": "5a7033908dc32e000a311392", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 12592 + }, + { + "Id": "5a7828548dc32e5a9c28b516", + "ParentId": "5b5f794b86f77409407a7f92", + "Price": 15202 + }, { "Id": "5947eab886f77475961d96c5", "ParentId": "5b5f757486f774093e6cb507", "Price": 11442 }, + { + "Id": "5a787ebcc5856700142fdd98", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 7403 + }, { "Id": "5996f6cb86f774678763a6ca", "ParentId": "5b47574386f77428ca22b33b", "Price": 100 }, + { + "Id": "5a7afa25e899ef00135e31b0", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 14122 + }, { "Id": "59bffbb386f77435b379b9c2", "ParentId": "5b5f731a86f774093e6cb4f9", "Price": 69600 }, + { + "Id": "5aa2b8d7e5b5b00014028f4a", + "ParentId": "5b47574386f77428ca22b330", + "Price": 1505 + }, { "Id": "59db3acc86f7742a2c4ab912", "ParentId": "5b5f761f86f774094242f1a1", @@ -4316,16 +4556,41 @@ "ParentId": "5b47574386f77428ca22b33b", "Price": 200 }, + { + "Id": "5aa2b986e5b5b00014028f4c", + "ParentId": "5b47574386f77428ca22b331", + "Price": 2028 + }, + { + "Id": "5ab3afb2d8ce87001660304d", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 4909 + }, { "Id": "59e4d3d286f774176a36250a", "ParentId": "5b47574386f77428ca22b33b", "Price": 70 }, + { + "Id": "5ab8dab586f77441cd04f2a2", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 36958 + }, + { + "Id": "5ac50da15acfc4001718d287", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 1009 + }, { "Id": "59e61eb386f77440d64f5daf", "ParentId": "5b5f724c86f774093f2ecf15", "Price": 600 }, + { + "Id": "5ac620eb86f7743a8e6e0da0", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 50000 + }, { "Id": "59fb375986f7741b681b81a6", "ParentId": "5b5f75e486f77447ec5d7712", @@ -4416,541 +4681,6 @@ "ParentId": "5b5f704686f77447ec5d76d7", "Price": 4851 }, - { - "Id": "590c661e86f7741e566b646a", - "ParentId": "5b47574386f77428ca22b338", - "Price": 9240 - }, - { - "Id": "590de71386f774347051a052", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 46900 - }, - { - "Id": "590de92486f77423d9312a33", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 0 - }, - { - "Id": "5947db3f86f77447880cf76f", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 9352 - }, - { - "Id": "5998597786f77414ea6da093", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 663 - }, - { - "Id": "59d6514b86f774171a068a08", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2568 - }, - { - "Id": "59e35cbb86f7741778269d83", - "ParentId": "5b47574386f77428ca22b2ee", - "Price": 12201 - }, - { - "Id": "59e62cc886f77440d40b52a1", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 701 - }, - { - "Id": "59e655cb86f77411dc52a77b", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 110 - }, - { - "Id": "59e6918f86f7746c9f75e849", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 90 - }, - { - "Id": "59e7643b86f7742cbf2c109a", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 9615 - }, - { - "Id": "59fafb5d86f774067a6f2084", - "ParentId": "5b47574386f77428ca22b2f2", - "Price": 12646 - }, - { - "Id": "5a0c59791526d8dba737bba7", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 3231 - }, - { - "Id": "5a0eebed86f77461230ddb3d", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 4200 - }, - { - "Id": "5a13eebd86f7746fd639aa93", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 90000 - }, - { - "Id": "5a27b6bec4a282000e496f78", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 30688 - }, - { - "Id": "5a32aa8bc4a2826c6e06d737", - "ParentId": "5b5f744786f774094242f197", - "Price": 22215 - }, - { - "Id": "5a608bf24f39f98ffc77720e", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 600 - }, - { - "Id": "5a7033908dc32e000a311392", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 12592 - }, - { - "Id": "5a7828548dc32e5a9c28b516", - "ParentId": "5b5f794b86f77409407a7f92", - "Price": 15202 - }, - { - "Id": "5a787ebcc5856700142fdd98", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 7403 - }, - { - "Id": "5a7afa25e899ef00135e31b0", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 14122 - }, - { - "Id": "5aa2b8d7e5b5b00014028f4a", - "ParentId": "5b47574386f77428ca22b330", - "Price": 1505 - }, - { - "Id": "5aa2b986e5b5b00014028f4c", - "ParentId": "5b47574386f77428ca22b331", - "Price": 2028 - }, - { - "Id": "5ab3afb2d8ce87001660304d", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 4909 - }, - { - "Id": "5ab8dab586f77441cd04f2a2", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 36958 - }, - { - "Id": "5ac50da15acfc4001718d287", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 1009 - }, - { - "Id": "5ac620eb86f7743a8e6e0da0", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 50000 - }, - { - "Id": "5913651986f774432f15d132", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 1920 - }, - { - "Id": "5926d2be86f774134d668e4e", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 2100 - }, - { - "Id": "5926d33d86f77410de68ebc0", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 26709 - }, - { - "Id": "5938144586f77473c2087145", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 3357 - }, - { - "Id": "593962ca86f774068014d9af", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 1604 - }, - { - "Id": "593a87af86f774122f54a951", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 0 - }, - { - "Id": "59e0bed186f774156f04ce84", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2125 - }, - { - "Id": "59e3606886f77417674759a5", - "ParentId": "5b47574386f77428ca22b2f3", - "Price": 8508 - }, - { - "Id": "59e3639286f7741777737013", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 162935 - }, - { - "Id": "59e3647686f774176a362507", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 83316 - }, - { - "Id": "59faff1d86f7746c51718c9c", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 1410100 - }, - { - "Id": "5a0d63621526d8dba31fe3bf", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 48176 - }, - { - "Id": "5a0ec6d286f7742c0b518fb5", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 97230 - }, - { - "Id": "5a0ee4b586f7743698200d22", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 60200 - }, - { - "Id": "5a144bdb86f7741d374bbde0", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 42063 - }, - { - "Id": "5a1eaa87fcdbcb001865f75e", - "ParentId": "5b5f749986f774094242f199", - "Price": 355794 - }, - { - "Id": "5a26ac0ec4a28200741e1e18", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 558 - }, - { - "Id": "5a2a57cfc4a2826c6e06d44a", - "ParentId": "5b5f7a2386f774093f2ed3c4", - "Price": 5441 - }, - { - "Id": "5a33b652c4a28232996e407c", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1593 - }, - { - "Id": "5a367e5dc4a282000e49738f", - "ParentId": "5b5f791486f774093f2ed3be", - "Price": 41605 - }, - { - "Id": "5a718f958dc32e00094b97e7", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 8661 - }, - { - "Id": "5a7c74b3e899ef0014332c29", - "ParentId": "5b5f749986f774094242f199", - "Price": 13732 - }, - { - "Id": "5a9fbb74a2750c0032157181", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 25029 - }, - { - "Id": "5aa2ba19e5b5b00014028f4e", - "ParentId": "5b47574386f77428ca22b330", - "Price": 4510 - }, - { - "Id": "5aa7cfc0e5b5b00015693143", - "ParentId": "5b47574386f77428ca22b330", - "Price": 1771 - }, - { - "Id": "5aa7d03ae5b5b00016327db5", - "ParentId": "5b47574386f77428ca22b330", - "Price": 1417 - }, - { - "Id": "590c657e86f77412b013051d", - "ParentId": "5b47574386f77428ca22b338", - "Price": 35042 - }, - { - "Id": "59136f6f86f774447a1ed173", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 1500 - }, - { - "Id": "591382d986f774465a6413a7", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 15475 - }, - { - "Id": "59d64ec286f774171d1e0a42", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 2055 - }, - { - "Id": "59d790f486f77403cb06aec6", - "ParentId": "5b5f73ab86f774094242f195", - "Price": 6049 - }, - { - "Id": "5926f34786f77469195bfe92", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 5453 - }, - { - "Id": "59387a4986f77401cc236e62", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 21050 - }, - { - "Id": "59e6318286f77444dd62c4cc", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 768 - }, - { - "Id": "5939a00786f7742fe8132936", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 0 - }, - { - "Id": "59e6687d86f77411d949b251", - "ParentId": "5b5f78e986f77447ed5636b1", - "Price": 21585 - }, - { - "Id": "5939e9b286f77462a709572c", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 0 - }, - { - "Id": "59e89d0986f77427600d226e", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1820 - }, - { - "Id": "5998517986f7746017232f7e", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 899 - }, - { - "Id": "59fafc9386f774067d462453", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 4700 - }, - { - "Id": "5a01ad4786f77450561fda02", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 2904 - }, - { - "Id": "5a0448bc86f774736f14efa8", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 5560 - }, - { - "Id": "5a0eb38b86f774153b320eb0", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 8437 - }, - { - "Id": "59e3577886f774176a362503", - "ParentId": "5b47574386f77428ca22b336", - "Price": 21489 - }, - { - "Id": "59e35ef086f7741777737012", - "ParentId": "5b47574386f77428ca22b2ee", - "Price": 3140 - }, - { - "Id": "5a0ee34586f774023b6ee092", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 52000 - }, - { - "Id": "5a0f0f5886f7741c4e32a472", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 19203 - }, - { - "Id": "5a13ee1986f774794d4c14cd", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 7600 - }, - { - "Id": "5a13ef0686f7746e5a411744", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 25020 - }, - { - "Id": "59e649f986f77411d949b246", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 1977 - }, - { - "Id": "5a13ef7e86f7741290491063", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 87000 - }, - { - "Id": "5a70366c8dc32e001207fb06", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 4503 - }, - { - "Id": "59e6542b86f77411dc52a77a", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 80 - }, - { - "Id": "5a718b548dc32e000d46d262", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1476 - }, - { - "Id": "59e6658b86f77411d949b250", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 75 - }, - { - "Id": "59e898ee86f77427614bd225", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 812 - }, - { - "Id": "5a71e22f8dc32e00094b97f4", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 20119 - }, - { - "Id": "59f99a7d86f7745b134aa97b", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1506 - }, - { - "Id": "5a78832ec5856700155a6ca3", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2444 - }, - { - "Id": "5a7ad55551dfba0015068f42", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 4047 - }, - { - "Id": "5a0071d486f77404e23a12b2", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 720 - }, - { - "Id": "5a9d6d13a2750c00164f6b03", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1352 - }, - { - "Id": "5a9d6d21a2750c00137fa649", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1635 - }, - { - "Id": "5a0ec13bfcdbcb00165aa685", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 34003 - }, - { - "Id": "5a9fbb84a2750c00137fa685", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 42965 - }, - { - "Id": "5a0ee72c86f77436955d3435", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 6000 - }, - { - "Id": "5aa2b9ede5b5b000137b758b", - "ParentId": "5b47574386f77428ca22b330", - "Price": 19513 - }, - { - "Id": "5a0f045e86f7745b0f0d0e42", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 5200 - }, - { - "Id": "5aba62f8d8ce87001943946b", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 501 - }, - { - "Id": "5a13f46386f7741dd7384b04", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 28220 - }, - { - "Id": "5a145d4786f7744cbb6f4a12", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 55021 - }, - { - "Id": "5abcc328d8ce8700194394f3", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 6423 - }, - { - "Id": "5a16b7e1fcdbcb00165aa6c9", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 39961 - }, - { - "Id": "5a1eacb3fcdbcb09800872be", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 356 - }, - { - "Id": "5a269f97c4a282000b151807", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 242 - }, - { - "Id": "5a351711c4a282000b1521a4", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 13946 - }, - { - "Id": "5a966ec8a2750c00171b3f36", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 4501 - }, - { - "Id": "5a9d56c8a2750c0032157146", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 7925 - }, - { - "Id": "5aaf8e43e5b5b00015693246", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 13056 - }, { "Id": "5926bb2186f7744b1c6c6e60", "ParentId": "5b5f796a86f774093f2ed3c0", @@ -4961,56 +4691,21 @@ "ParentId": "5b5f764186f77447ec5d7714", "Price": 3270 }, - { - "Id": "5926c3b286f774640d189b6b", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 4010 - }, - { - "Id": "5926d40686f7740f152b6b7e", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 13723 - }, - { - "Id": "5938603e86f77435642354f4", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 1735 - }, - { - "Id": "59bfc5c886f7743bf6794e62", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 20343 - }, { "Id": "5938994586f774523a425196", "ParentId": "5c518ec986f7743b68682ce2", "Price": 3712 }, - { - "Id": "59d6272486f77466146386ff", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3183 - }, { "Id": "59bfe68886f7746004266202", "ParentId": "5b5f764186f77447ec5d7714", "Price": 32679 }, - { - "Id": "59e7708286f7742cbd762753", - "ParentId": "5b47574386f77428ca22b330", - "Price": 5013 - }, { "Id": "59bffc1f86f77435b128b872", "ParentId": "5b5f72f786f77447ec5d7702", "Price": 4120 }, - { - "Id": "59ecc3dd86f7746dc827481c", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 16630 - }, { "Id": "59ccfdba86f7747f2109a587", "ParentId": "5b5f760586f774093e6cb509", @@ -5021,121 +4716,51 @@ "ParentId": "5b5f724c86f774093f2ecf15", "Price": 608 }, - { - "Id": "59fc48e086f77463b1118392", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 8109 - }, { "Id": "59e6227d86f77440d64f5dc2", "ParentId": "5b5f757486f774093e6cb507", "Price": 1824 }, - { - "Id": "5a16b8a9fcdbcb00165aa6ca", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 3551 - }, { "Id": "59e770f986f7742cbe3164ef", "ParentId": "5b47574386f77428ca22b330", "Price": 1353 }, - { - "Id": "5a17fb9dfcdbcbcae6687291", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 6794 - }, { "Id": "59f9cabd86f7743a10721f46", "ParentId": "5b5f796a86f774093f2ed3c0", "Price": 9946 }, - { - "Id": "5a33bab6c4a28200741e22f8", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 6182 - }, { "Id": "59ff346386f77477562ff5e2", "ParentId": "5b5f78fc86f77409407a7f90", "Price": 27871 }, - { - "Id": "5a38ee51c4a282000c5a955c", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 785 - }, { "Id": "5a0eecf686f7740350630097", "ParentId": "5c518ec986f7743b68682ce2", "Price": 52730 }, - { - "Id": "5a787fadc5856700155a6ca1", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 14215 - }, { "Id": "5a0eed4386f77405112912aa", "ParentId": "5c518ec986f7743b68682ce2", "Price": 50340 }, - { - "Id": "5a7893c1c585673f2b5c374d", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1496 - }, - { - "Id": "5a7b4900e899ef197b331a2a", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 5620 - }, { "Id": "5a0eedb386f77403506300be", "ParentId": "5c518ec986f7743b68682ce2", "Price": 7600 }, - { - "Id": "5a7b4960e899ef197b331a2d", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 1009 - }, - { - "Id": "5a957c3fa2750c00137fa5f7", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 22090 - }, { "Id": "5a17fb03fcdbcbcae668728f", "ParentId": "5b5f754a86f774094242f19b", "Price": 849 }, - { - "Id": "5aafa1c2e5b5b00015042a56", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 2142 - }, - { - "Id": "5aafbde786f774389d0cbc0f", - "ParentId": "5b5f6fa186f77409407a7eb7", - "Price": 162552 - }, { "Id": "5a17fc70fcdbcb0176308b3d", "ParentId": "5b5f761f86f774094242f1a1", "Price": 1004 }, - { - "Id": "5ab8f4ff86f77431c60d91ba", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 6788 - }, - { - "Id": "5ac66bea5acfc43b321d4aec", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1935 - }, { "Id": "5a1ead28fcdbcb001912fa9f", "ParentId": "5b5f755f86f77447ec5d770e", @@ -5191,6 +4816,16 @@ "ParentId": "5b5f754a86f774094242f19b", "Price": 3700 }, + { + "Id": "5913651986f774432f15d132", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 1920 + }, + { + "Id": "5926d2be86f774134d668e4e", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 2100 + }, { "Id": "5926dad986f7741f82604363", "ParentId": "5b5f755f86f77447ec5d770e", @@ -5201,6 +4836,526 @@ "ParentId": "5b5f731a86f774093e6cb4f9", "Price": 42714 }, + { + "Id": "5926d33d86f77410de68ebc0", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 26709 + }, + { + "Id": "593d490386f7745ee97a1555", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 43874 + }, + { + "Id": "59d625f086f774661516605d", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1763 + }, + { + "Id": "59db794186f77448bc595262", + "ParentId": "5b5f6fd286f774093f2ecf0d", + "Price": 1100000 + }, + { + "Id": "5938144586f77473c2087145", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 3357 + }, + { + "Id": "593962ca86f774068014d9af", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 1604 + }, + { + "Id": "59e358a886f7741776641ac3", + "ParentId": "5b47574386f77428ca22b2f0", + "Price": 7118 + }, + { + "Id": "59e3658a86f7741776641ac4", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 62308 + }, + { + "Id": "593a87af86f774122f54a951", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 0 + }, + { + "Id": "59e7715586f7742ee5789605", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 1786 + }, + { + "Id": "59e0bed186f774156f04ce84", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2125 + }, + { + "Id": "59e8977386f77415a553c453", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 470 + }, + { + "Id": "59ecc28286f7746d7a68aa8c", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 3228 + }, + { + "Id": "59e3606886f77417674759a5", + "ParentId": "5b47574386f77428ca22b2f3", + "Price": 8508 + }, + { + "Id": "59e3639286f7741777737013", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 162935 + }, + { + "Id": "59faf98186f774067b6be103", + "ParentId": "5b47574386f77428ca22b2f0", + "Price": 8457 + }, + { + "Id": "59e3647686f774176a362507", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 83316 + }, + { + "Id": "5a0d716f1526d8000d26b1e2", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 606 + }, + { + "Id": "59faff1d86f7746c51718c9c", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 1092384 + }, + { + "Id": "5a0ee37f86f774023657a86f", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 90000 + }, + { + "Id": "5a0d63621526d8dba31fe3bf", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 48176 + }, + { + "Id": "5a0ec6d286f7742c0b518fb5", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 97230 + }, + { + "Id": "5a0eff2986f7741fd654e684", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 18300 + }, + { + "Id": "5a0ee4b586f7743698200d22", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 60200 + }, + { + "Id": "5a144bdb86f7741d374bbde0", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 42063 + }, + { + "Id": "5a144dfd86f77445cb5a0982", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 97230 + }, + { + "Id": "5a1eaa87fcdbcb001865f75e", + "ParentId": "5b5f749986f774094242f199", + "Price": 355794 + }, + { + "Id": "5a26ac0ec4a28200741e1e18", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 558 + }, + { + "Id": "5a16bb52fcdbcb001a3b00dc", + "ParentId": "5b47574386f77428ca22b330", + "Price": 19724 + }, + { + "Id": "5a2a57cfc4a2826c6e06d44a", + "ParentId": "5b5f7a2386f774093f2ed3c4", + "Price": 5441 + }, + { + "Id": "5a32aa0cc4a28232996e405f", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 4479 + }, + { + "Id": "5a33b652c4a28232996e407c", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1593 + }, + { + "Id": "5a367e5dc4a282000e49738f", + "ParentId": "5b5f791486f774093f2ed3be", + "Price": 41605 + }, + { + "Id": "5a38e6bac4a2826c6e06d79b", + "ParentId": "5b5f794b86f77409407a7f92", + "Price": 3526 + }, + { + "Id": "5a38ef1fc4a282000b1521f6", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1702 + }, + { + "Id": "5a718f958dc32e00094b97e7", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 8661 + }, + { + "Id": "5a398b75c4a282000a51a266", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 8000 + }, + { + "Id": "5a7c74b3e899ef0014332c29", + "ParentId": "5b5f749986f774094242f199", + "Price": 13732 + }, + { + "Id": "5a6086ea4f39f99cd479502f", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 1240 + }, + { + "Id": "5a6b592c8dc32e00094b97bf", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 704 + }, + { + "Id": "5a9fbb74a2750c0032157181", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 25029 + }, + { + "Id": "5a6b5e468dc32e001207faf5", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 5965 + }, + { + "Id": "5aa2ba19e5b5b00014028f4e", + "ParentId": "5b47574386f77428ca22b330", + "Price": 4510 + }, + { + "Id": "5aa7cfc0e5b5b00015693143", + "ParentId": "5b47574386f77428ca22b330", + "Price": 1771 + }, + { + "Id": "5a71e4f48dc32e001207fb26", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 22979 + }, + { + "Id": "5aa7d03ae5b5b00016327db5", + "ParentId": "5b47574386f77428ca22b330", + "Price": 1417 + }, + { + "Id": "5a7d9122159bd4001438dbf4", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 4106 + }, + { + "Id": "5a9548c9159bd400133e97b3", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 7800 + }, + { + "Id": "5a9685b1a2750c0032157104", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 10186 + }, + { + "Id": "5a9d6d34a2750c00141e07da", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 7259 + }, + { + "Id": "5a9fc7e6a2750c0032157184", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 5495 + }, + { + "Id": "5aa66c72e5b5b00016327c93", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 6296 + }, + { + "Id": "5aaa4194e5b5b055d06310a5", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2658 + }, + { + "Id": "5ab8dced86f774646209ec87", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 2068 + }, + { + "Id": "5aba639ed8ce8700182ece67", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 601 + }, + { + "Id": "5926c3b286f774640d189b6b", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 4010 + }, + { + "Id": "5926d40686f7740f152b6b7e", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 13723 + }, + { + "Id": "5938603e86f77435642354f4", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 1735 + }, + { + "Id": "59bfc5c886f7743bf6794e62", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 20343 + }, + { + "Id": "59d6272486f77466146386ff", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3183 + }, + { + "Id": "59e7708286f7742cbd762753", + "ParentId": "5b47574386f77428ca22b330", + "Price": 5013 + }, + { + "Id": "59ecc3dd86f7746dc827481c", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 16630 + }, + { + "Id": "59fc48e086f77463b1118392", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 8109 + }, + { + "Id": "5a16b8a9fcdbcb00165aa6ca", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 3551 + }, + { + "Id": "5a17fb9dfcdbcbcae6687291", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 6794 + }, + { + "Id": "5a33bab6c4a28200741e22f8", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 6182 + }, + { + "Id": "5a38ee51c4a282000c5a955c", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 785 + }, + { + "Id": "5a787fadc5856700155a6ca1", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 14215 + }, + { + "Id": "5a7893c1c585673f2b5c374d", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1496 + }, + { + "Id": "5a7b4900e899ef197b331a2a", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 5620 + }, + { + "Id": "5a7b4960e899ef197b331a2d", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 1009 + }, + { + "Id": "5a957c3fa2750c00137fa5f7", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 22090 + }, + { + "Id": "5aafa1c2e5b5b00015042a56", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 2142 + }, + { + "Id": "5aafbde786f774389d0cbc0f", + "ParentId": "5b5f6fa186f77409407a7eb7", + "Price": 162552 + }, + { + "Id": "590c657e86f77412b013051d", + "ParentId": "5b47574386f77428ca22b338", + "Price": 35042 + }, + { + "Id": "59136f6f86f774447a1ed173", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 1500 + }, + { + "Id": "591382d986f774465a6413a7", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 15475 + }, + { + "Id": "5926f34786f77469195bfe92", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 5453 + }, + { + "Id": "5ab8f4ff86f77431c60d91ba", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 6788 + }, + { + "Id": "5ac66bea5acfc43b321d4aec", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1935 + }, + { + "Id": "59387a4986f77401cc236e62", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 21050 + }, + { + "Id": "5939a00786f7742fe8132936", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 0 + }, + { + "Id": "5939e9b286f77462a709572c", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 0 + }, + { + "Id": "5998517986f7746017232f7e", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 899 + }, + { + "Id": "59e3577886f774176a362503", + "ParentId": "5b47574386f77428ca22b336", + "Price": 21489 + }, + { + "Id": "59e35ef086f7741777737012", + "ParentId": "5b47574386f77428ca22b2ee", + "Price": 3140 + }, + { + "Id": "59e649f986f77411d949b246", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 1977 + }, + { + "Id": "59e6542b86f77411dc52a77a", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 80 + }, + { + "Id": "59e6658b86f77411d949b250", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 75 + }, + { + "Id": "59e898ee86f77427614bd225", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 812 + }, + { + "Id": "59f99a7d86f7745b134aa97b", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1506 + }, + { + "Id": "5a0071d486f77404e23a12b2", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 720 + }, + { + "Id": "5a0ec13bfcdbcb00165aa685", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 34003 + }, + { + "Id": "5a0ee72c86f77436955d3435", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 6000 + }, + { + "Id": "5a0f045e86f7745b0f0d0e42", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 5200 + }, + { + "Id": "5a13f46386f7741dd7384b04", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 28220 + }, + { + "Id": "5a145d4786f7744cbb6f4a12", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 55021 + }, + { + "Id": "5a16b7e1fcdbcb00165aa6c9", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 39961 + }, + { + "Id": "5a1eacb3fcdbcb09800872be", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 356 + }, + { + "Id": "5a269f97c4a282000b151807", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 242 + }, + { + "Id": "5a351711c4a282000b1521a4", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 13946 + }, + { + "Id": "5a966ec8a2750c00171b3f36", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 4501 + }, + { + "Id": "5a9d56c8a2750c0032157146", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 7925 + }, + { + "Id": "5aaf8e43e5b5b00015693246", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 13056 + }, { "Id": "591092ef86f7747bb8703422", "ParentId": "5b619f1a86f77450a702a6f3", @@ -5221,51 +5376,21 @@ "ParentId": "5c518ec986f7743b68682ce2", "Price": 7427 }, - { - "Id": "593d490386f7745ee97a1555", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 43874 - }, - { - "Id": "59d625f086f774661516605d", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1763 - }, { "Id": "5996f6fc86f7745e585b4de3", "ParentId": "5b47574386f77428ca22b33b", "Price": 100 }, - { - "Id": "59db794186f77448bc595262", - "ParentId": "5b5f6fd286f774093f2ecf0d", - "Price": 1100000 - }, - { - "Id": "59e358a886f7741776641ac3", - "ParentId": "5b47574386f77428ca22b2f0", - "Price": 7118 - }, { "Id": "59985a6c86f77414ec448d17", "ParentId": "5b5f764186f77447ec5d7714", "Price": 2416 }, - { - "Id": "59e3658a86f7741776641ac4", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 62308 - }, { "Id": "59c1383d86f774290a37e0ca", "ParentId": "5b5f754a86f774094242f19b", "Price": 15413 }, - { - "Id": "59e7715586f7742ee5789605", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 1786 - }, { "Id": "59d650cf86f7741b846413a4", "ParentId": "5b5f746686f77447ec5d7708", @@ -5276,21 +5401,11 @@ "ParentId": "5b5f740a86f77447ec5d7706", "Price": 23476 }, - { - "Id": "59e8977386f77415a553c453", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 470 - }, { "Id": "59e3556c86f7741776641ac2", "ParentId": "5b47574386f77428ca22b2f0", "Price": 5988 }, - { - "Id": "59ecc28286f7746d7a68aa8c", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 3228 - }, { "Id": "59e6449086f7746c9f75e822", "ParentId": "5b5f764186f77447ec5d7714", @@ -5301,41 +5416,21 @@ "ParentId": "5b47574386f77428ca22b33b", "Price": 50 }, - { - "Id": "59faf98186f774067b6be103", - "ParentId": "5b47574386f77428ca22b2f0", - "Price": 8457 - }, { "Id": "59e770b986f7742cbd762754", "ParentId": "5b47574386f77428ca22b331", "Price": 2181 }, - { - "Id": "5a0d716f1526d8000d26b1e2", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 606 - }, { "Id": "59e77a2386f7742ee578960a", "ParentId": "5b47574386f77428ca22b33b", "Price": 920 }, - { - "Id": "5a0ee37f86f774023657a86f", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 90000 - }, { "Id": "59ef13ca86f77445fd0e2483", "ParentId": "5b47574386f77428ca22b330", "Price": 10000 }, - { - "Id": "5a0eff2986f7741fd654e684", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 18300 - }, { "Id": "59f8a37386f7747af3328f06", "ParentId": "5b5f71de86f774093f2ecf13", @@ -5346,21 +5441,11 @@ "ParentId": "5b47574386f77428ca22b2f1", "Price": 71049 }, - { - "Id": "5a144dfd86f77445cb5a0982", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 97230 - }, { "Id": "59fb016586f7746d0d4b423a", "ParentId": "5b5f6fa186f77409407a7eb7", "Price": 398201 }, - { - "Id": "5a16bb52fcdbcb001a3b00dc", - "ParentId": "5b47574386f77428ca22b330", - "Price": 19724 - }, { "Id": "5a0dc45586f7742f6b0b73e3", "ParentId": "5c518ec986f7743b68682ce2", @@ -5371,141 +5456,56 @@ "ParentId": "5c518ec986f7743b68682ce2", "Price": 53120 }, - { - "Id": "5a32aa0cc4a28232996e405f", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 4479 - }, { "Id": "5a0ee30786f774023b6ee08f", "ParentId": "5c518ec986f7743b68682ce2", "Price": 84500 }, - { - "Id": "5a38e6bac4a2826c6e06d79b", - "ParentId": "5b5f794b86f77409407a7f92", - "Price": 3526 - }, { "Id": "5a0eeb8e86f77461257ed71a", "ParentId": "5c518ec986f7743b68682ce2", "Price": 6800 }, - { - "Id": "5a38ef1fc4a282000b1521f6", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1702 - }, - { - "Id": "5a398b75c4a282000a51a266", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 8000 - }, { "Id": "5a0eec9686f77402ac5c39f2", "ParentId": "5c518ec986f7743b68682ce2", "Price": 69000 }, - { - "Id": "5a6086ea4f39f99cd479502f", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 1240 - }, - { - "Id": "5a6b592c8dc32e00094b97bf", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 704 - }, { "Id": "5a29284f86f77463ef3db363", "ParentId": "5b619f1a86f77450a702a6f3", "Price": 4500 }, - { - "Id": "5a6b5e468dc32e001207faf5", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 5965 - }, - { - "Id": "5a71e4f48dc32e001207fb26", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 22979 - }, { "Id": "5a294d8486f774068638cd93", "ParentId": "5b619f1a86f77450a702a6f3", "Price": 50000 }, - { - "Id": "5a7d9122159bd4001438dbf4", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 4106 - }, - { - "Id": "5a9548c9159bd400133e97b3", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 7800 - }, { "Id": "5a6b60158dc32e000a31138b", "ParentId": "5b5f75c686f774094242f19f", "Price": 1888 }, - { - "Id": "5a9685b1a2750c0032157104", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 10186 - }, - { - "Id": "5a9d6d34a2750c00141e07da", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 7259 - }, { "Id": "5a6f5d528dc32e00094b97d9", "ParentId": "5b5f746686f77447ec5d7708", "Price": 604 }, - { - "Id": "5a9fc7e6a2750c0032157184", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 5495 - }, { "Id": "5a7ad2e851dfba0016153692", "ParentId": "5b5f754a86f774094242f19b", "Price": 3956 }, - { - "Id": "5aa66c72e5b5b00016327c93", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 6296 - }, { "Id": "5a7ad4af51dfba0013379717", "ParentId": "5b5f755f86f77447ec5d770e", "Price": 4044 }, - { - "Id": "5aaa4194e5b5b055d06310a5", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2658 - }, - { - "Id": "5ab8dced86f774646209ec87", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 2068 - }, { "Id": "5a9eb32da2750c00171b3f9c", "ParentId": "5b5f757486f774093e6cb507", "Price": 10371 }, - { - "Id": "5aba639ed8ce8700182ece67", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 601 - }, { "Id": "5a9fb739a2750c003215717f", "ParentId": "5b5f731a86f774093e6cb4f9", @@ -5551,6 +5551,11 @@ "ParentId": "5b5f78fc86f77409407a7f90", "Price": 35663 }, + { + "Id": "5ac66d725acfc43b321d4b60", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 39912 + }, { "Id": "5ac72e895acfc43b321d4bd5", "ParentId": "5b5f724c86f774093f2ecf15", @@ -5562,14 +5567,9 @@ "Price": 15022 }, { - "Id": "5ac66d725acfc43b321d4b60", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 39912 - }, - { - "Id": "5ac66c5d5acfc4001718d314", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1808 + "Id": "5ad5d64486f774079b080af8", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 81402 }, { "Id": "5ac72e475acfc400180ae6fe", @@ -5577,40 +5577,15 @@ "Price": 512 }, { - "Id": "5ad5d64486f774079b080af8", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 81402 + "Id": "5ac66c5d5acfc4001718d314", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1808 }, { - "Id": "5ac66d9b5acfc4001633997a", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 30862 - }, - { - "Id": "5ac7655e5acfc40016339a19", + "Id": "5ac72e725acfc400180ae701", "ParentId": "5b5f724c86f774093f2ecf15", "Price": 602 }, - { - "Id": "5ac72e615acfc43f67248aa0", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 600 - }, - { - "Id": "5ad5cfbd86f7742c825d6104", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 77022 - }, - { - "Id": "5ac66d015acfc400180ae6e4", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 51648 - }, - { - "Id": "5ac733a45acfc400192630e2", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 472 - }, { "Id": "5ad7247386f7747487619dc3", "ParentId": "5c518ec986f7743b68682ce2", @@ -5626,11 +5601,6 @@ "ParentId": "5b5f798886f77447ed5636b5", "Price": 15577 }, - { - "Id": "5ac72e725acfc400180ae701", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 602 - }, { "Id": "5af0484c86f7740f02001f7f", "ParentId": "5b47574386f77428ca22b2f4", @@ -5757,159 +5727,14 @@ "Price": 3750 }, { - "Id": "5ad5db3786f7743568421cce", + "Id": "5ad5cfbd86f7742c825d6104", "ParentId": "5c518ec986f7743b68682ce2", - "Price": 72012 + "Price": 77022 }, { - "Id": "5addbac75acfc400194dbc56", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 24457 - }, - { - "Id": "5addbb6e5acfc408fb1393fd", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 4759 - }, - { - "Id": "5addbbb25acfc40015621bd9", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 6488 - }, - { - "Id": "5addbfd15acfc40015621bde", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 7204 - }, - { - "Id": "5b07db875acfc40dc528a5f6", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 5586 - }, - { - "Id": "5b099bb25acfc400186331e8", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 11568 - }, - { - "Id": "5b39ffbd5acfc47a8773fb06", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 3100 - }, - { - "Id": "5b3f3b0186f774021a2afef7", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 527 - }, - { - "Id": "5b40e61f5acfc4001a599bec", - "ParentId": "5b47574386f77428ca22b330", - "Price": 1732 - }, - { - "Id": "5b4329f05acfc47a86086aa1", - "ParentId": "5b47574386f77428ca22b330", - "Price": 2778 - }, - { - "Id": "5b4391a586f7745321235ab2", - "ParentId": "5b47574386f77428ca22b345", - "Price": 35092 - }, - { - "Id": "5b7c710788a4506dec015957", - "ParentId": "5b5f6fa186f77409407a7eb7", - "Price": 1215269 - }, - { - "Id": "5b7d63cf5acfc4001876c8df", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 14015 - }, - { - "Id": "5bb20da5d4351e0035629dbf", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 33500 - }, - { - "Id": "5bb20e0ed4351e3bac1212dc", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 2990 - }, - { - "Id": "5bc5a372d4351e44f824d17f", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1811 - }, - { - "Id": "5bfd297f0db834001a669119", - "ParentId": "5b5f798886f77447ed5636b5", - "Price": 11500 - }, - { - "Id": "5bfd35380db83400232fe5cc", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2160 - }, - { - "Id": "5bfd36290db834001966869a", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1750 - }, - { - "Id": "5bffcf7a0db83400232fea79", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 3490 - }, - { - "Id": "5bffe7930db834001b734a39", - "ParentId": "5b5f7a0886f77409407a7f96", - "Price": 450000 - }, - { - "Id": "5c00076d0db834001d23ee1f", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 2000 - }, - { - "Id": "5c0125fc0db834001a669aa3", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 4120 - }, - { - "Id": "5c05293e0db83400232fff80", - "ParentId": "5b5f740a86f77447ec5d7706", - "Price": 27663 - }, - { - "Id": "5c06779c86f77426e00dd782", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 7400 - }, - { - "Id": "5c0e2f94d174af029f650d56", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 16200 - }, - { - "Id": "5c0e746986f7741453628fe5", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 2452 - }, - { - "Id": "5c0e9f2c86f77432297fe0a3", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 28618 - }, - { - "Id": "5c1bc7432e221602b412949d", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 6010 - }, - { - "Id": "5c501a4d2e221602b412b540", - "ParentId": "5b5f78e986f77447ed5636b1", - "Price": 38978 + "Id": "5ac66d015acfc400180ae6e4", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 51648 }, { "Id": "5ac78a9b86f7741cca0bbd8d", @@ -5917,150 +5742,495 @@ "Price": 17481 }, { - "Id": "5ac72e7d5acfc40016339a02", + "Id": "5ac66d9b5acfc4001633997a", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 30862 + }, + { + "Id": "5ac72e615acfc43f67248aa0", "ParentId": "5b5f724c86f774093f2ecf15", "Price": 600 }, { - "Id": "5ad7217186f7746744498875", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 12030 + "Id": "5ac733a45acfc400192630e2", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 472 }, { - "Id": "5ad7242b86f7740a6a3abd43", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 14400 - }, - { - "Id": "5ae083b25acfc4001a5fc702", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 3580 - }, - { - "Id": "5b057b4f5acfc4771e1bd3e9", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 15604 - }, - { - "Id": "5b3f3af486f774679e752c1f", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 573 - }, - { - "Id": "5b4329075acfc400153b78ff", - "ParentId": "5b47574386f77428ca22b330", - "Price": 4560 - }, - { - "Id": "5b7d63de5acfc400170e2f8d", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 23411 - }, - { - "Id": "5b7d645e5acfc400170e2f90", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 3400 - }, - { - "Id": "5bb20d92d4351e00853263eb", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 24130 - }, - { - "Id": "5bc5a35cd4351e450201232f", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 10221 - }, - { - "Id": "5bf3e0490db83400196199af", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 23660 - }, - { - "Id": "5bfe86df0db834001b734685", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 4800 - }, - { - "Id": "5bffef760db8340019668fe4", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 8300 - }, - { - "Id": "5c0006470db834001a6697fe", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 2450 - }, - { - "Id": "5c066e3a0db834001b7353f0", - "ParentId": "5b5f749986f774094242f199", - "Price": 74800 - }, - { - "Id": "5c093e3486f77430cb02e593", - "ParentId": "5b5f6fa186f77409407a7eb7", - "Price": 310000 - }, - { - "Id": "5c0e5edb86f77461f55ed1f7", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 1224 - }, - { - "Id": "5c0e625a86f7742d77340f62", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 7058 - }, - { - "Id": "5c0e6a1586f77404597b4965", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 41325 - }, - { - "Id": "5c0faf68d174af02a96260b8", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 603 - }, - { - "Id": "5c1262a286f7743f8a69aab2", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "5c1bc5af2e221602b412949b", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 15670 - }, - { - "Id": "5c1d0efb86f7744baf2e7b7b", - "ParentId": "5c518ed586f774119a772aee", - "Price": 16500000 - }, - { - "Id": "5c471bfc2e221602b21d4e17", + "Id": "5ac7655e5acfc40016339a19", "ParentId": "5b5f724c86f774093f2ecf15", "Price": 602 }, { - "Id": "5c4eec9b2e2216398b5aaba2", + "Id": "5ac72e945acfc43f3b691116", "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 4817 + "Price": 600 }, { - "Id": "5c4eecc32e221602b412b440", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 36742 + "Id": "5b3b6e495acfc4330140bd88", + "ParentId": "5b5f749986f774094242f199", + "Price": 46950 }, { - "Id": "5c503d0a2e221602b542b7ef", + "Id": "5b40e3f35acfc40016388218", + "ParentId": "5b47574386f77428ca22b330", + "Price": 2608 + }, + { + "Id": "5b4326435acfc433000ed01d", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 5244 + }, + { + "Id": "5b44c6ae86f7742d1627baea", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 68476 + }, + { + "Id": "5b4c72fb86f7745cef1cffc5", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 5000 + }, + { + "Id": "5b7be46e5acfc400170e2dcf", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1531 + }, + { + "Id": "5b7bedd75acfc43d825283f9", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 29262 + }, + { + "Id": "5ba26586d4351e44f824b340", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 12142 + }, + { + "Id": "5bb20d9cd4351e00334c9d8a", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 27400 + }, + { + "Id": "5bb20dcad4351e3bac1212da", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 2600 + }, + { + "Id": "5bc9b355d4351e6d1509862a", + "ParentId": "5b47574386f77428ca22b2f2", + "Price": 36428 + }, + { + "Id": "5bd071d786f7747e707b93a3", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 15000 + }, + { + "Id": "5bffdc370db834001d23eca8", + "ParentId": "5b5f7a0886f77409407a7f96", + "Price": 28040 + }, + { + "Id": "5c0009510db834001966907f", "ParentId": "5b5f764186f77447ec5d7714", - "Price": 1020 + "Price": 4250 + }, + { + "Id": "5c012ffc0db834001d23f03f", + "ParentId": "5b5f7a0886f77409407a7f96", + "Price": 41200 + }, + { + "Id": "5c079ec50db834001966a706", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 4900 + }, + { + "Id": "5c0d668f86f7747ccb7f13b2", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 440 + }, + { + "Id": "5c0e805e86f774683f3dd637", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 58900 + }, + { + "Id": "5c1d0f4986f7744bb01837fa", + "ParentId": "5c518ed586f774119a772aee", + "Price": 2500000 + }, + { + "Id": "5c1f79a086f7746ed066fb8f", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 90000 + }, + { + "Id": "5c471c2d2e22164bef5d077f", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 5588 + }, + { + "Id": "5c503ad32e2216398b5aada2", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3850 + }, + { + "Id": "5c503af12e221602b177ca02", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2853 + }, + { + "Id": "5c5db5852e2216003a0fe71a", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 3800 + }, + { + "Id": "5ad5d7d286f77450166e0a89", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 152021 + }, + { + "Id": "5addaffe86f77470b455f900", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 167402 + }, + { + "Id": "5addbb945acfc4001a5fc44e", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 8043 + }, + { + "Id": "5addbf175acfc408fb13965b", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 24862 + }, + { + "Id": "5addccf45acfc400185c2989", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 18800 + }, + { + "Id": "5ae09bff5acfc4001562219d", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 4401 + }, + { + "Id": "5ae30bad5acfc400185c2dc4", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 823 + }, + { + "Id": "5af04c0b86f774138708f78e", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 4500 + }, + { + "Id": "5afd7e095acfc40017541f61", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1672 + }, + { + "Id": "5b222d405acfc400153af4fe", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 11758 + }, + { + "Id": "5b2cfa535acfc432ff4db7a0", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 24945 + }, + { + "Id": "5b40e1525acfc4771e1c6611", + "ParentId": "5b47574386f77428ca22b330", + "Price": 10524 + }, + { + "Id": "5b43237186f7742f3a4ab252", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 2150 + }, + { + "Id": "5b4335ba86f7744d2837a264", + "ParentId": "5b47574386f77428ca22b2f3", + "Price": 9765 + }, + { + "Id": "5b44d0de86f774503d30cba8", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 4165 + }, + { + "Id": "5b6d9ce188a4501afc1b2b25", + "ParentId": "5b5f6fa186f77409407a7eb7", + "Price": 1350000 + }, + { + "Id": "5b7be4645acfc400170e2dcc", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1306 + }, + { + "Id": "5b7d678a5acfc4001a5c4022", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 1100 + }, + { + "Id": "5b7d679f5acfc4001a5c4024", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 8213 + }, + { + "Id": "5ba26812d4351e003201fef1", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 70 + }, + { + "Id": "5bb20e49d4351e3bac1212de", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 800 + }, + { + "Id": "5bc09a18d4351e003562b68e", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 3600 + }, + { + "Id": "5bc5a351d4351e003477a414", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 6756 + }, + { + "Id": "5bc9b9ecd4351e3bac122519", + "ParentId": "5b47574386f77428ca22b2f0", + "Price": 55449 + }, + { + "Id": "5bd073a586f7747e6f135799", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 22689 + }, + { + "Id": "5bfd384c0db834001a6691d3", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 3320 + }, + { + "Id": "5bfea7ad0db834001c38f1ee", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1850 + }, + { + "Id": "5bfeb32b0db834001a6694d9", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 8500 + }, + { + "Id": "5c05413a0db834001c390617", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3620 + }, + { + "Id": "5c0558060db834001b735271", + "ParentId": "5b5f749986f774094242f199", + "Price": 145004 + }, + { + "Id": "5c07b3850db834002330045b", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 1400 + }, + { + "Id": "5c08f87c0db8340019124324", + "ParentId": "5b47574386f77428ca22b330", + "Price": 460 + }, + { + "Id": "5c0d591486f7744c505b416f", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 700 + }, + { + "Id": "5c0e2f5cd174af02a012cfc9", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 1600 + }, + { + "Id": "5c0e655586f774045612eeb2", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 3788 + }, + { + "Id": "5c12688486f77426843c7d32", + "ParentId": "5b47574386f77428ca22b2f4", + "Price": 22500 + }, + { + "Id": "5c18b9192e2216398b5a8104", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 3600 + }, + { + "Id": "5c46fbd72e2216398b5a8c9c", + "ParentId": "5b5f791486f774093f2ed3be", + "Price": 42800 + }, + { + "Id": "5c59529a2e221602b177d160", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 14200 }, { "Id": "5addbffe5acfc4001714dfac", "ParentId": "5b5f755f86f77447ec5d770e", "Price": 7906 }, + { + "Id": "5ae099875acfc4001714e593", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 524 + }, + { + "Id": "5b07dd285acfc4001754240d", + "ParentId": "5b5f737886f774093e6cb4fb", + "Price": 20907 + }, + { + "Id": "5b0e794b5acfc47a877359b2", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 18544 + }, + { + "Id": "5b1faa0f5acfc40dc528aeb5", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 6537 + }, + { + "Id": "5b1fd4e35acfc40018633c39", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 700 + }, + { + "Id": "5b432b6c5acfc4001a599bf0", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 6211 + }, + { + "Id": "5b432be65acfc433000ed01f", + "ParentId": "5b47574386f77428ca22b331", + "Price": 2755 + }, + { + "Id": "5b432c305acfc40019478128", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 6386 + }, + { + "Id": "5b432f3d5acfc4704b4a1dfb", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 3211 + }, + { + "Id": "5b44d22286f774172b0c9de8", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 1058 + }, + { + "Id": "5ba2657ed4351e0035628ff2", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 6001 + }, + { + "Id": "5be4038986f774527d3fae60", + "ParentId": "5b47574386f77428ca22b343", + "Price": 9150 + }, + { + "Id": "5bed625c0db834001c062946", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 35600 + }, + { + "Id": "5beec91a0db834001961942d", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 7200 + }, + { + "Id": "5beec9450db83400970084fd", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 800 + }, + { + "Id": "5bfd37c80db834001d23e842", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 3580 + }, + { + "Id": "5bfd4cc90db834001d23e846", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 2100 + }, + { + "Id": "5bfe89510db834001808a127", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1070 + }, + { + "Id": "5bfeaa0f0db834001b734927", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3500 + }, + { + "Id": "5bfebc320db8340019668d79", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 22200 + }, + { + "Id": "5c07c9660db834001a66b588", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2620 + }, + { + "Id": "5c07df7f0db834001b73588a", + "ParentId": "5b5f7a0886f77409407a7f96", + "Price": 18200 + }, + { + "Id": "5c091a4e0db834001d5addc8", + "ParentId": "5b47574386f77428ca22b330", + "Price": 3107 + }, + { + "Id": "5c0d5e4486f77478390952fe", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 1240 + }, + { + "Id": "5c0e2f26d174af02a9625114", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 3320 + }, + { + "Id": "5c0e541586f7747fa54205c9", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 10427 + }, + { + "Id": "5c1793902e221602b21d3de2", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 48125 + }, + { + "Id": "5c471b5d2e221602b21d4e14", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1626 + }, + { + "Id": "5c471cb32e221602b177afaa", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 24400 + }, { "Id": "5addc7ac5acfc400194dbd90", "ParentId": "5b5f757486f774093e6cb507", @@ -6216,326 +6386,6 @@ "ParentId": "5b5f760586f774093e6cb509", "Price": 1750 }, - { - "Id": "5ad5d7d286f77450166e0a89", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 152021 - }, - { - "Id": "5addaffe86f77470b455f900", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 167402 - }, - { - "Id": "5addbb945acfc4001a5fc44e", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 8043 - }, - { - "Id": "5addbf175acfc408fb13965b", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 24862 - }, - { - "Id": "5addccf45acfc400185c2989", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 18800 - }, - { - "Id": "5ae09bff5acfc4001562219d", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 4401 - }, - { - "Id": "5ae30bad5acfc400185c2dc4", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 823 - }, - { - "Id": "5af04c0b86f774138708f78e", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 4500 - }, - { - "Id": "5afd7e095acfc40017541f61", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1672 - }, - { - "Id": "5b222d405acfc400153af4fe", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 11758 - }, - { - "Id": "5b2cfa535acfc432ff4db7a0", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 24945 - }, - { - "Id": "5b40e1525acfc4771e1c6611", - "ParentId": "5b47574386f77428ca22b330", - "Price": 10524 - }, - { - "Id": "5b43237186f7742f3a4ab252", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 2150 - }, - { - "Id": "5b4335ba86f7744d2837a264", - "ParentId": "5b47574386f77428ca22b2f3", - "Price": 9765 - }, - { - "Id": "5b44d0de86f774503d30cba8", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 4165 - }, - { - "Id": "5b6d9ce188a4501afc1b2b25", - "ParentId": "5b5f6fa186f77409407a7eb7", - "Price": 1350000 - }, - { - "Id": "5b7be4645acfc400170e2dcc", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1306 - }, - { - "Id": "5b7d678a5acfc4001a5c4022", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 1100 - }, - { - "Id": "5b7d679f5acfc4001a5c4024", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 8213 - }, - { - "Id": "5ba26812d4351e003201fef1", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 70 - }, - { - "Id": "5bb20e49d4351e3bac1212de", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 800 - }, - { - "Id": "5bc09a18d4351e003562b68e", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 3600 - }, - { - "Id": "5bc5a351d4351e003477a414", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 6756 - }, - { - "Id": "5bc9b9ecd4351e3bac122519", - "ParentId": "5b47574386f77428ca22b2f0", - "Price": 55449 - }, - { - "Id": "5bd073a586f7747e6f135799", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 22689 - }, - { - "Id": "5bfd384c0db834001a6691d3", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 3320 - }, - { - "Id": "5bfea7ad0db834001c38f1ee", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1850 - }, - { - "Id": "5bfeb32b0db834001a6694d9", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 8500 - }, - { - "Id": "5ac72e945acfc43f3b691116", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 600 - }, - { - "Id": "5b3b6e495acfc4330140bd88", - "ParentId": "5b5f749986f774094242f199", - "Price": 46950 - }, - { - "Id": "5b40e3f35acfc40016388218", - "ParentId": "5b47574386f77428ca22b330", - "Price": 2608 - }, - { - "Id": "5c05413a0db834001c390617", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3620 - }, - { - "Id": "5c0558060db834001b735271", - "ParentId": "5b5f749986f774094242f199", - "Price": 145004 - }, - { - "Id": "5c07b3850db834002330045b", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 1400 - }, - { - "Id": "5c08f87c0db8340019124324", - "ParentId": "5b47574386f77428ca22b330", - "Price": 460 - }, - { - "Id": "5c0d591486f7744c505b416f", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 700 - }, - { - "Id": "5c0e2f5cd174af02a012cfc9", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 1600 - }, - { - "Id": "5b4326435acfc433000ed01d", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 5244 - }, - { - "Id": "5b44c6ae86f7742d1627baea", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 68476 - }, - { - "Id": "5b4c72fb86f7745cef1cffc5", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 5000 - }, - { - "Id": "5c0e655586f774045612eeb2", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 3788 - }, - { - "Id": "5c12688486f77426843c7d32", - "ParentId": "5b47574386f77428ca22b2f4", - "Price": 22500 - }, - { - "Id": "5c18b9192e2216398b5a8104", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 3600 - }, - { - "Id": "5c46fbd72e2216398b5a8c9c", - "ParentId": "5b5f791486f774093f2ed3be", - "Price": 42800 - }, - { - "Id": "5c59529a2e221602b177d160", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 14200 - }, - { - "Id": "5b7be46e5acfc400170e2dcf", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1531 - }, - { - "Id": "5b7bedd75acfc43d825283f9", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 29262 - }, - { - "Id": "5ba26586d4351e44f824b340", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 12142 - }, - { - "Id": "5bb20d9cd4351e00334c9d8a", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 27400 - }, - { - "Id": "5bb20dcad4351e3bac1212da", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 2600 - }, - { - "Id": "5bc9b355d4351e6d1509862a", - "ParentId": "5b47574386f77428ca22b2f2", - "Price": 36428 - }, - { - "Id": "5bd071d786f7747e707b93a3", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 15000 - }, - { - "Id": "5bffdc370db834001d23eca8", - "ParentId": "5b5f7a0886f77409407a7f96", - "Price": 28040 - }, - { - "Id": "5c0009510db834001966907f", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 4250 - }, - { - "Id": "5c012ffc0db834001d23f03f", - "ParentId": "5b5f7a0886f77409407a7f96", - "Price": 41200 - }, - { - "Id": "5c079ec50db834001966a706", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 4900 - }, - { - "Id": "5c0d668f86f7747ccb7f13b2", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 440 - }, - { - "Id": "5c0e805e86f774683f3dd637", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 58900 - }, - { - "Id": "5c1d0f4986f7744bb01837fa", - "ParentId": "5c518ed586f774119a772aee", - "Price": 2500000 - }, - { - "Id": "5c1f79a086f7746ed066fb8f", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 90000 - }, - { - "Id": "5c471c2d2e22164bef5d077f", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 5588 - }, - { - "Id": "5c503ad32e2216398b5aada2", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3850 - }, - { - "Id": "5c503af12e221602b177ca02", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2853 - }, - { - "Id": "5c5db5852e2216003a0fe71a", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 3800 - }, { "Id": "5addbfbb5acfc400194dbcf7", "ParentId": "5b5f755f86f77447ec5d770e", @@ -6551,116 +6401,6 @@ "ParentId": "5b47574386f77428ca22b2f3", "Price": 84912 }, - { - "Id": "5b099a9d5acfc47a8607efe7", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 8637 - }, - { - "Id": "5b099ac65acfc400186331e1", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2780 - }, - { - "Id": "5b099b7d5acfc400186331e4", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 1601 - }, - { - "Id": "5b3f16c486f7747c327f55f7", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 729 - }, - { - "Id": "5b44cf1486f77431723e3d05", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 4209 - }, - { - "Id": "5b4736a986f774040571e998", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1676 - }, - { - "Id": "5ba26383d4351e00334c93d9", - "ParentId": "5b5f796a86f774093f2ed3c0", - "Price": 44288 - }, - { - "Id": "5ba26acdd4351e003562908e", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 911 - }, - { - "Id": "5bb20dfcd4351e00334c9e24", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 11300 - }, - { - "Id": "5bb20e18d4351e00320205d5", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 2500 - }, - { - "Id": "5bead2e00db834001c062938", - "ParentId": "5b5f7a0886f77409407a7f96", - "Price": 3560 - }, - { - "Id": "5beec2820db834001b095426", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 17300 - }, - { - "Id": "5beed0f50db834001c062b12", - "ParentId": "5b5f79a486f77409407a7f94", - "Price": 22360 - }, - { - "Id": "5c052e6986f7746b207bc3c9", - "ParentId": "5b47574386f77428ca22b2f3", - "Price": 224600 - }, - { - "Id": "5c0d56a986f774449d5de529", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 422 - }, - { - "Id": "5c0e722886f7740458316a57", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 1902 - }, - { - "Id": "5c1cdd302e221602b3137250", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1000 - }, - { - "Id": "5c1d0dc586f7744baf2e7b79", - "ParentId": "5c518ed586f774119a772aee", - "Price": 17000000 - }, - { - "Id": "5c1e2d1f86f77431e9280bee", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 60000 - }, - { - "Id": "5c471be12e221602b66cd9ac", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 764 - }, - { - "Id": "5c471c6c2e221602b66cd9ae", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 1580 - }, - { - "Id": "5c5952732e2216398b5abda2", - "ParentId": "5b5f737886f774093e6cb4fb", - "Price": 17050 - }, { "Id": "5ac66d2e5acfc43b321d4b53", "ParentId": "5b5f78fc86f77409407a7f90", @@ -6696,6 +6436,21 @@ "ParentId": "5b47574386f77428ca22b33b", "Price": 100 }, + { + "Id": "5b099a9d5acfc47a8607efe7", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 8637 + }, + { + "Id": "5b099ac65acfc400186331e1", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2780 + }, + { + "Id": "5b099b7d5acfc400186331e4", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 1601 + }, { "Id": "5ba26b01d4351e0085325a51", "ParentId": "5b5f746686f77447ec5d7708", @@ -6711,6 +6466,41 @@ "ParentId": "5b47574386f77428ca22b2f1", "Price": 60290 }, + { + "Id": "5b3f16c486f7747c327f55f7", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 729 + }, + { + "Id": "5b44cf1486f77431723e3d05", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 4209 + }, + { + "Id": "5b4736a986f774040571e998", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1676 + }, + { + "Id": "5ba26383d4351e00334c93d9", + "ParentId": "5b5f796a86f774093f2ed3c0", + "Price": 44288 + }, + { + "Id": "5ba26acdd4351e003562908e", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 911 + }, + { + "Id": "5bb20dfcd4351e00334c9e24", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 11300 + }, + { + "Id": "5bb20e18d4351e00320205d5", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 2500 + }, { "Id": "5bc9be8fd4351e00334cae6e", "ParentId": "5b47574386f77428ca22b2f4", @@ -6721,6 +6511,16 @@ "ParentId": "5b5f7a0886f77409407a7f96", "Price": 94600 }, + { + "Id": "5bead2e00db834001c062938", + "ParentId": "5b5f7a0886f77409407a7f96", + "Price": 3560 + }, + { + "Id": "5beec2820db834001b095426", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 17300 + }, { "Id": "5bf3f59f0db834001a6fa060", "ParentId": "5b5f746686f77447ec5d7708", @@ -6751,6 +6551,16 @@ "ParentId": "5b5f757486f774093e6cb507", "Price": 5119 }, + { + "Id": "5beed0f50db834001c062b12", + "ParentId": "5b5f79a486f77409407a7f94", + "Price": 22360 + }, + { + "Id": "5c052e6986f7746b207bc3c9", + "ParentId": "5b47574386f77428ca22b2f3", + "Price": 224600 + }, { "Id": "5c0e533786f7747fa23f4d47", "ParentId": "5b47574386f77428ca22b33a", @@ -6781,6 +6591,16 @@ "ParentId": "5b47574386f77428ca22b33b", "Price": 72 }, + { + "Id": "5c0d56a986f774449d5de529", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 422 + }, + { + "Id": "5c0e722886f7740458316a57", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 1902 + }, { "Id": "5c48a2852e221602b21d5923", "ParentId": "5b5f75c686f774094242f19f", @@ -6791,6 +6611,1106 @@ "ParentId": "5b5f74cc86f77447ec5d770a", "Price": 400 }, + { + "Id": "5c1cdd302e221602b3137250", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1000 + }, + { + "Id": "5c1d0dc586f7744baf2e7b79", + "ParentId": "5c518ed586f774119a772aee", + "Price": 17000000 + }, + { + "Id": "5c1e2d1f86f77431e9280bee", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 60000 + }, + { + "Id": "5c471be12e221602b66cd9ac", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 764 + }, + { + "Id": "5c471c6c2e221602b66cd9ae", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 1580 + }, + { + "Id": "5c5952732e2216398b5abda2", + "ParentId": "5b5f737886f774093e6cb4fb", + "Price": 17050 + }, + { + "Id": "5ad5db3786f7743568421cce", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 72012 + }, + { + "Id": "5addbac75acfc400194dbc56", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 24457 + }, + { + "Id": "5addbb6e5acfc408fb1393fd", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 4759 + }, + { + "Id": "5addbbb25acfc40015621bd9", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 6488 + }, + { + "Id": "5addbfd15acfc40015621bde", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 7204 + }, + { + "Id": "5b07db875acfc40dc528a5f6", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 5586 + }, + { + "Id": "5b099bb25acfc400186331e8", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 11568 + }, + { + "Id": "5b39ffbd5acfc47a8773fb06", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 3100 + }, + { + "Id": "5b3f3b0186f774021a2afef7", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 527 + }, + { + "Id": "5b40e61f5acfc4001a599bec", + "ParentId": "5b47574386f77428ca22b330", + "Price": 1732 + }, + { + "Id": "5b4329f05acfc47a86086aa1", + "ParentId": "5b47574386f77428ca22b330", + "Price": 2778 + }, + { + "Id": "5b4391a586f7745321235ab2", + "ParentId": "5b47574386f77428ca22b345", + "Price": 35092 + }, + { + "Id": "5b7c710788a4506dec015957", + "ParentId": "5b5f6fa186f77409407a7eb7", + "Price": 1215269 + }, + { + "Id": "5b7d63cf5acfc4001876c8df", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 14015 + }, + { + "Id": "5bb20da5d4351e0035629dbf", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 33500 + }, + { + "Id": "5bb20e0ed4351e3bac1212dc", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 2990 + }, + { + "Id": "5bc5a372d4351e44f824d17f", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1811 + }, + { + "Id": "5bfd297f0db834001a669119", + "ParentId": "5b5f798886f77447ed5636b5", + "Price": 11500 + }, + { + "Id": "5bfd35380db83400232fe5cc", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2160 + }, + { + "Id": "5bfd36290db834001966869a", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1750 + }, + { + "Id": "5bffcf7a0db83400232fea79", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 3490 + }, + { + "Id": "5bffe7930db834001b734a39", + "ParentId": "5b5f7a0886f77409407a7f96", + "Price": 450000 + }, + { + "Id": "5c00076d0db834001d23ee1f", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 2000 + }, + { + "Id": "5c0125fc0db834001a669aa3", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 4120 + }, + { + "Id": "5c05293e0db83400232fff80", + "ParentId": "5b5f740a86f77447ec5d7706", + "Price": 27663 + }, + { + "Id": "5c06779c86f77426e00dd782", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 7400 + }, + { + "Id": "5c0e2f94d174af029f650d56", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 16200 + }, + { + "Id": "5c0e746986f7741453628fe5", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 2452 + }, + { + "Id": "5c0e9f2c86f77432297fe0a3", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 28618 + }, + { + "Id": "5c1bc7432e221602b412949d", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 6010 + }, + { + "Id": "5c501a4d2e221602b412b540", + "ParentId": "5b5f78e986f77447ed5636b1", + "Price": 38978 + }, + { + "Id": "5ad5d49886f77455f9731921", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 1621 + }, + { + "Id": "5addc00b5acfc4001669f144", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 10147 + }, + { + "Id": "5adf23995acfc400185c2aeb", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2453 + }, + { + "Id": "5ae099925acfc4001a5fc7b3", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 878 + }, + { + "Id": "5af0561e86f7745f5f3ad6ac", + "ParentId": "5b47574386f77428ca22b2ed", + "Price": 20391 + }, + { + "Id": "5b099b965acfc400186331e6", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 3207 + }, + { + "Id": "5b2388675acfc4771e1be0be", + "ParentId": "5b5f748386f774093e6cb501", + "Price": 31468 + }, + { + "Id": "5b3a337e5acfc4704b4a19a0", + "ParentId": "5b5f737886f774093e6cb4fb", + "Price": 11399 + }, + { + "Id": "5b3baf8f5acfc40dc5296692", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 9386 + }, + { + "Id": "5b3cbc235acfc4001863ac44", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 704 + }, + { + "Id": "5b3f7c005acfc4704b4a1de8", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1105 + }, + { + "Id": "5b432b2f5acfc4771e1c6622", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 7500 + }, + { + "Id": "5b7be4895acfc400170e2dd5", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1573 + }, + { + "Id": "5b7d63b75acfc400170e2f8a", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 16197 + }, + { + "Id": "5b7d693d5acfc43bca706a3d", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 7817 + }, + { + "Id": "5b800ebc86f774394e230a90", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1473 + }, + { + "Id": "5ba2678ad4351e44f824b344", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 425 + }, + { + "Id": "5bbdb83fd4351e44f824c44b", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 3540 + }, + { + "Id": "5bcf0213d4351e0085327c17", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2111 + }, + { + "Id": "5bd70322209c4d00d7167b8f", + "ParentId": "5b5f796a86f774093f2ed3c0", + "Price": 45230 + }, + { + "Id": "5beec3e30db8340019619424", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 7750 + }, + { + "Id": "5c0111ab0db834001966914d", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 2150 + }, + { + "Id": "5c0672ed0db834001b7353f3", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3350 + }, + { + "Id": "5c093ca986f7740a1867ab12", + "ParentId": "5b5f6fd286f774093f2ecf0d", + "Price": 4900000 + }, + { + "Id": "5c0a840b86f7742ffa4f2482", + "ParentId": "5b5f6fa186f77409407a7eb7", + "Price": 3100000 + }, + { + "Id": "5c0d2727d174af02a012cf58", + "ParentId": "5b47574386f77428ca22b330", + "Price": 515 + }, + { + "Id": "5c0e446786f7742013381639", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 2907 + }, + { + "Id": "5c0e531286f7747fa54205c2", + "ParentId": "5b47574386f77428ca22b33a", + "Price": 35893 + }, + { + "Id": "5c127c4486f7745625356c13", + "ParentId": "5b5f6fa186f77409407a7eb7", + "Price": 235000 + }, + { + "Id": "5c503ac82e221602b21d6e9a", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1100 + }, + { + "Id": "5addba3e5acfc4001669f0ab", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 1628 + }, + { + "Id": "5ae30db85acfc408fb139a05", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 1424 + }, + { + "Id": "5ae9a18586f7746e381e16a3", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 0 + }, + { + "Id": "5ae9a25386f7746dd946e6d9", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 0 + }, + { + "Id": "5b0800175acfc400153aebd4", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 10140 + }, + { + "Id": "5b099bf25acfc4001637e683", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2602 + }, + { + "Id": "5b0bc22d5acfc47a8607f085", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 470 + }, + { + "Id": "5b30bc165acfc40016387293", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1725 + }, + { + "Id": "5b39f8db5acfc40016387a1b", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 8889 + }, + { + "Id": "5b3b713c5acfc4330140bd8d", + "ParentId": "5b5f792486f77447ed5636b3", + "Price": 23185 + }, + { + "Id": "5b40e4035acfc47a87740943", + "ParentId": "5b47574386f77428ca22b330", + "Price": 3488 + }, + { + "Id": "5b4c72c686f77462ac37e907", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 4500 + }, + { + "Id": "5b84038986f774774913b0c1", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 6502 + }, + { + "Id": "5bb20de5d4351e0035629e59", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 8100 + }, + { + "Id": "5bffe7c50db834001d23ece1", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 9900 + }, + { + "Id": "5c0102b20db834001d23eebc", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1500 + }, + { + "Id": "5c05308086f7746b2101e90b", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 120000 + }, + { + "Id": "5c0684e50db834002a12585a", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 2700 + }, + { + "Id": "5c07b36c0db834002a1259e9", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 1500 + }, + { + "Id": "5c07dd120db834001c39092d", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 51200 + }, + { + "Id": "5c093db286f7740a1b2617e3", + "ParentId": "5b5f6fa186f77409407a7eb7", + "Price": 340000 + }, + { + "Id": "5c0a2cec0db834001b7ce47d", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 61200 + }, + { + "Id": "5c0e3eb886f7742015526062", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 2552 + }, + { + "Id": "5ac8d6885acfc400180ae7b0", + "ParentId": "5b47574386f77428ca22b330", + "Price": 4755 + }, + { + "Id": "5ad5d20586f77449be26d877", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 3258 + }, + { + "Id": "5addbba15acfc400185c2854", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 5403 + }, + { + "Id": "5addbfe15acfc4001a5fc58b", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 3217 + }, + { + "Id": "5c12619186f7743f871c8a32", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "5c1265fc86f7743f896a21c2", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 32000 + }, + { + "Id": "5addc7005acfc4001669f275", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 17972 + }, + { + "Id": "5ae0973a5acfc4001562206c", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1970 + }, + { + "Id": "5ae30c9a5acfc408fb139a03", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 4699 + }, + { + "Id": "5ae9a0dd86f7742e5f454a05", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 0 + }, + { + "Id": "5c1780312e221602b66cc189", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 3325 + }, + { + "Id": "5c17a7ed2e2216152142459c", + "ParentId": "5b47574386f77428ca22b330", + "Price": 4373 + }, + { + "Id": "5afd7e445acfc4001637e35a", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 2701 + }, + { + "Id": "5b099a765acfc47a8607efe3", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 21337 + }, + { + "Id": "5b1fb3e15acfc4001637f068", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3586 + }, + { + "Id": "5b2389515acfc4771e1be0c0", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 9588 + }, + { + "Id": "5b30b0dc5acfc400153b7124", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 14896 + }, + { + "Id": "5b3116595acfc40019476364", + "ParentId": "5b5f744786f774094242f197", + "Price": 21305 + }, + { + "Id": "5b3a16655acfc40016387a2a", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 7848 + }, + { + "Id": "5b3b99475acfc432ff4dcbee", + "ParentId": "5b5f748386f774093e6cb501", + "Price": 44344 + }, + { + "Id": "5b3cadf35acfc400194776a0", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 14159 + }, + { + "Id": "5b43271c5acfc432ff4dce65", + "ParentId": "5b47574386f77428ca22b330", + "Price": 1995 + }, + { + "Id": "5b43575a86f77424f443fe62", + "ParentId": "5b47574386f77428ca22b2f2", + "Price": 60604 + }, + { + "Id": "5b4c81bd86f77418a75ae159", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 2150 + }, + { + "Id": "5b800ed086f7747baf6e2f9e", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1108 + }, + { + "Id": "5bb20d53d4351e4502010a69", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 6500 + }, + { + "Id": "5bb20dbcd4351e44f824c04e", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 2917 + }, + { + "Id": "5bbdb870d4351e00367fb67d", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 10758 + }, + { + "Id": "5bc9b720d4351e450201234b", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 44639 + }, + { + "Id": "5bd073c986f7747f627e796c", + "ParentId": "5b47574386f77428ca22b330", + "Price": 24006 + }, + { + "Id": "5bfea6e90db834001b7347f3", + "ParentId": "5b5f798886f77447ed5636b5", + "Price": 17500 + }, + { + "Id": "5bfebc250db834001a6694e1", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 25400 + }, + { + "Id": "5bfebc530db834001d23eb65", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2640 + }, + { + "Id": "5bffec120db834001c38f5fa", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 3000 + }, + { + "Id": "5c0517910db83400232ffee5", + "ParentId": "5b5f740a86f77447ec5d7706", + "Price": 38120 + }, + { + "Id": "5c0695860db834001b735461", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2310 + }, + { + "Id": "5c0d5ae286f7741e46554302", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 130 + }, + { + "Id": "5c0e530286f7747fa1419862", + "ParentId": "5b47574386f77428ca22b33a", + "Price": 21060 + }, + { + "Id": "5c0e66e2d174af02a96252f4", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 111625 + }, + { + "Id": "5c0e774286f77468413cc5b2", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 126700 + }, + { + "Id": "5c0e874186f7745dc7616606", + "ParentId": "5b47574386f77428ca22b330", + "Price": 8372 + }, + { + "Id": "5c110624d174af029e69734c", + "ParentId": "5b5f749986f774094242f199", + "Price": 480000 + }, + { + "Id": "5c1127bdd174af44217ab8b9", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "5c1260dc86f7746b106e8748", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "5c1a1e3f2e221602b66cc4c2", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 7500 + }, + { + "Id": "5ae089fb5acfc408fb13989b", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 258 + }, + { + "Id": "5ae9a4fc86f7746e381e1753", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 0 + }, + { + "Id": "5b3b6dc75acfc47a8773fb1e", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2518 + }, + { + "Id": "5b7be4575acfc400161d0832", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1000 + }, + { + "Id": "5b7d37845acfc400170e2f87", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 4609 + }, + { + "Id": "5b8403a086f7747ff856f4e2", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 7771 + }, + { + "Id": "5bb20df1d4351e00347787d5", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 8350 + }, + { + "Id": "5bd704e7209c4d00d7167c31", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2110 + }, + { + "Id": "5bed61680db834001d2c45ab", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2750 + }, + { + "Id": "5beecbb80db834001d2c465e", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1058 + }, + { + "Id": "5bfe7fb30db8340018089fed", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2200 + }, + { + "Id": "5bffdd7e0db834001b734a1a", + "ParentId": "5b5f7a0886f77409407a7f96", + "Price": 785000 + }, + { + "Id": "5c052fb986f7746b2101e909", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 48000 + }, + { + "Id": "5c064c400db834001d23f468", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2900 + }, + { + "Id": "5c06782b86f77426df5407d2", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 2500 + }, + { + "Id": "5c07a8770db8340023300450", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 25150 + }, + { + "Id": "5c07c5ed0db834001b73571c", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 8900 + }, + { + "Id": "5c0d32fcd174af02a1659c75", + "ParentId": "5b47574386f77428ca22b331", + "Price": 3200 + }, + { + "Id": "5c0e534186f7747fa1419867", + "ParentId": "5b47574386f77428ca22b33a", + "Price": 37830 + }, + { + "Id": "5c0faeddd174af02a962601f", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 800 + }, + { + "Id": "5c1127d0d174af29be75cf68", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "5c12301c86f77419522ba7e4", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 8000 + }, + { + "Id": "5c12613b86f7743bbe2c3f76", + "ParentId": "5b47574386f77428ca22b341", + "Price": 69000 + }, + { + "Id": "5c12620d86f7743f8b198b72", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 120000 + }, + { + "Id": "5c17804b2e2216152006c02f", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 2233 + }, + { + "Id": "5c18b90d2e2216152142466b", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 2400 + }, + { + "Id": "5c1a1cc52e221602b3136e3d", + "ParentId": "5b47574386f77428ca22b331", + "Price": 4700 + }, + { + "Id": "5c503b1c2e221602b21d6e9d", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 300 + }, + { + "Id": "5c5db5962e2216000e5e46eb", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 5174 + }, + { + "Id": "5ac72e7d5acfc40016339a02", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 600 + }, + { + "Id": "5ad7217186f7746744498875", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 12030 + }, + { + "Id": "5ad7242b86f7740a6a3abd43", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 14400 + }, + { + "Id": "5ae083b25acfc4001a5fc702", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 3580 + }, + { + "Id": "5b057b4f5acfc4771e1bd3e9", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 15604 + }, + { + "Id": "5b3f3af486f774679e752c1f", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 573 + }, + { + "Id": "5b4329075acfc400153b78ff", + "ParentId": "5b47574386f77428ca22b330", + "Price": 4560 + }, + { + "Id": "5b7d63de5acfc400170e2f8d", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 23411 + }, + { + "Id": "5b7d645e5acfc400170e2f90", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 3400 + }, + { + "Id": "5bb20d92d4351e00853263eb", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 24130 + }, + { + "Id": "5bc5a35cd4351e450201232f", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 10221 + }, + { + "Id": "5bf3e0490db83400196199af", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 23660 + }, + { + "Id": "5bfe86df0db834001b734685", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 4800 + }, + { + "Id": "5bffef760db8340019668fe4", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 8300 + }, + { + "Id": "5c0006470db834001a6697fe", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 2450 + }, + { + "Id": "5c066e3a0db834001b7353f0", + "ParentId": "5b5f749986f774094242f199", + "Price": 74800 + }, + { + "Id": "5c093e3486f77430cb02e593", + "ParentId": "5b5f6fa186f77409407a7eb7", + "Price": 310000 + }, + { + "Id": "5c0e5edb86f77461f55ed1f7", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 1224 + }, + { + "Id": "5c0e625a86f7742d77340f62", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 7058 + }, + { + "Id": "5c0e6a1586f77404597b4965", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 41325 + }, + { + "Id": "5c0faf68d174af02a96260b8", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 603 + }, + { + "Id": "5c1262a286f7743f8a69aab2", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "5c1bc5af2e221602b412949b", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 15670 + }, + { + "Id": "5c1d0efb86f7744baf2e7b7b", + "ParentId": "5c518ed586f774119a772aee", + "Price": 16500000 + }, + { + "Id": "5c471bfc2e221602b21d4e17", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 602 + }, + { + "Id": "5c4eec9b2e2216398b5aaba2", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 4817 + }, + { + "Id": "5c4eecc32e221602b412b440", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 36742 + }, + { + "Id": "5c503d0a2e221602b542b7ef", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 1020 + }, + { + "Id": "5addc7db5acfc4001669f279", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 2613 + }, + { + "Id": "5af04b6486f774195a3ebb49", + "ParentId": "5b47574386f77428ca22b2f6", + "Price": 29000 + }, + { + "Id": "5b04473a5acfc40018632f70", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 16077 + }, + { + "Id": "5b237e425acfc4771e1be0b6", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 19239 + }, + { + "Id": "5b3f7bf05acfc433000ecf6b", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1259 + }, + { + "Id": "5b40e2bc5acfc40016388216", + "ParentId": "5b47574386f77428ca22b330", + "Price": 4371 + }, + { + "Id": "5b40e5e25acfc4001a599bea", + "ParentId": "5b47574386f77428ca22b330", + "Price": 1827 + }, + { + "Id": "5b44c8ea86f7742d1627baf1", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 28618 + }, + { + "Id": "5b44cd8b86f774503d30cba2", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 4209 + }, + { + "Id": "5b7be1265acfc400161d0798", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 33060 + }, + { + "Id": "5b7be1ca5acfc400170e2d2f", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 9601 + }, + { + "Id": "5b7bee755acfc400196d5383", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 20068 + }, + { + "Id": "5bc9c29cd4351e003562b8a3", + "ParentId": "5b47574386f77428ca22b336", + "Price": 8912 + }, + { + "Id": "5bd06f5d86f77427101ad47c", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 16000 + }, + { + "Id": "5bfd4cd60db834001c38f095", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 7350 + }, + { + "Id": "5bfe86a20db834001d23e8f7", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 2608 + }, + { + "Id": "5bffd7ed0db834001d23ebf9", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 3800 + }, + { + "Id": "5c0000c00db834001a6697fc", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 2970 + }, + { + "Id": "5c0126f40db834002a125382", + "ParentId": "5b5f7a0886f77409407a7f96", + "Price": 1659945 + }, + { + "Id": "5c0505e00db834001b735073", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 19225 + }, + { + "Id": "5c0530ee86f774697952d952", + "ParentId": "5b47574386f77428ca22b2f3", + "Price": 970000 + }, + { + "Id": "5c1267ee86f77416ec610f72", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 85000 + }, + { + "Id": "5c165d832e2216398b5a7e36", + "ParentId": "5b5f6f3c86f774094242ef87", + "Price": 44500 + }, + { + "Id": "5c1bc5612e221602b5429350", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 11380 + }, + { + "Id": "5c471b7e2e2216152006e46c", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 878 + }, + { + "Id": "5c48a2c22e221602b313fb6c", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 2320 + }, + { + "Id": "5c4ee3d62e2216152006f302", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 7800 + }, + { + "Id": "5c5970672e221602b21d7855", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 16690 + }, { "Id": "5ac78eaf5acfc4001926317a", "ParentId": "5b5f757486f774093e6cb507", @@ -6961,571 +7881,6 @@ "ParentId": "5b5f724c86f774093f2ecf15", "Price": 4230 }, - { - "Id": "5ae099875acfc4001714e593", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 524 - }, - { - "Id": "5b07dd285acfc4001754240d", - "ParentId": "5b5f737886f774093e6cb4fb", - "Price": 20907 - }, - { - "Id": "5b0e794b5acfc47a877359b2", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 18544 - }, - { - "Id": "5b1faa0f5acfc40dc528aeb5", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 6537 - }, - { - "Id": "5b1fd4e35acfc40018633c39", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 700 - }, - { - "Id": "5b432b6c5acfc4001a599bf0", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 6211 - }, - { - "Id": "5b432be65acfc433000ed01f", - "ParentId": "5b47574386f77428ca22b331", - "Price": 2755 - }, - { - "Id": "5b432c305acfc40019478128", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 6386 - }, - { - "Id": "5b432f3d5acfc4704b4a1dfb", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 3211 - }, - { - "Id": "5b44d22286f774172b0c9de8", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 1058 - }, - { - "Id": "5ba2657ed4351e0035628ff2", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 6001 - }, - { - "Id": "5be4038986f774527d3fae60", - "ParentId": "5b47574386f77428ca22b343", - "Price": 9150 - }, - { - "Id": "5bed625c0db834001c062946", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 35600 - }, - { - "Id": "5beec91a0db834001961942d", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 7200 - }, - { - "Id": "5beec9450db83400970084fd", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 800 - }, - { - "Id": "5bfd37c80db834001d23e842", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 3580 - }, - { - "Id": "5bfd4cc90db834001d23e846", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 2100 - }, - { - "Id": "5bfe89510db834001808a127", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1070 - }, - { - "Id": "5bfeaa0f0db834001b734927", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3500 - }, - { - "Id": "5bfebc320db8340019668d79", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 22200 - }, - { - "Id": "5c07c9660db834001a66b588", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2620 - }, - { - "Id": "5c07df7f0db834001b73588a", - "ParentId": "5b5f7a0886f77409407a7f96", - "Price": 18200 - }, - { - "Id": "5c091a4e0db834001d5addc8", - "ParentId": "5b47574386f77428ca22b330", - "Price": 3107 - }, - { - "Id": "5c0d5e4486f77478390952fe", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 1240 - }, - { - "Id": "5c0e2f26d174af02a9625114", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 3320 - }, - { - "Id": "5c0e541586f7747fa54205c9", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 10427 - }, - { - "Id": "5c1793902e221602b21d3de2", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 48125 - }, - { - "Id": "5c471b5d2e221602b21d4e14", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1626 - }, - { - "Id": "5c471cb32e221602b177afaa", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 24400 - }, - { - "Id": "5addba3e5acfc4001669f0ab", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 1628 - }, - { - "Id": "5ae30db85acfc408fb139a05", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 1424 - }, - { - "Id": "5ae9a18586f7746e381e16a3", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 0 - }, - { - "Id": "5ae9a25386f7746dd946e6d9", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 0 - }, - { - "Id": "5b0800175acfc400153aebd4", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 10140 - }, - { - "Id": "5b099bf25acfc4001637e683", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2602 - }, - { - "Id": "5b0bc22d5acfc47a8607f085", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 470 - }, - { - "Id": "5b30bc165acfc40016387293", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1725 - }, - { - "Id": "5b39f8db5acfc40016387a1b", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 8889 - }, - { - "Id": "5b3b713c5acfc4330140bd8d", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 23185 - }, - { - "Id": "5b40e4035acfc47a87740943", - "ParentId": "5b47574386f77428ca22b330", - "Price": 3488 - }, - { - "Id": "5b4c72c686f77462ac37e907", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 4500 - }, - { - "Id": "5b84038986f774774913b0c1", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 6502 - }, - { - "Id": "5bb20de5d4351e0035629e59", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 8100 - }, - { - "Id": "5bffe7c50db834001d23ece1", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 9900 - }, - { - "Id": "5c0102b20db834001d23eebc", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1500 - }, - { - "Id": "5c05308086f7746b2101e90b", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 120000 - }, - { - "Id": "5c0684e50db834002a12585a", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 2700 - }, - { - "Id": "5c07b36c0db834002a1259e9", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 1500 - }, - { - "Id": "5c07dd120db834001c39092d", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 51200 - }, - { - "Id": "5c093db286f7740a1b2617e3", - "ParentId": "5b5f6fa186f77409407a7eb7", - "Price": 340000 - }, - { - "Id": "5c0a2cec0db834001b7ce47d", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 61200 - }, - { - "Id": "5c0e3eb886f7742015526062", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 2552 - }, - { - "Id": "5c12619186f7743f871c8a32", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "5c1265fc86f7743f896a21c2", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 32000 - }, - { - "Id": "5c1780312e221602b66cc189", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 3325 - }, - { - "Id": "5c17a7ed2e2216152142459c", - "ParentId": "5b47574386f77428ca22b330", - "Price": 4373 - }, - { - "Id": "5ae089fb5acfc408fb13989b", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 258 - }, - { - "Id": "5ae9a4fc86f7746e381e1753", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 0 - }, - { - "Id": "5addc7db5acfc4001669f279", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 2613 - }, - { - "Id": "5af04b6486f774195a3ebb49", - "ParentId": "5b47574386f77428ca22b2f6", - "Price": 29000 - }, - { - "Id": "5b3b6dc75acfc47a8773fb1e", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2518 - }, - { - "Id": "5b04473a5acfc40018632f70", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 16077 - }, - { - "Id": "5b237e425acfc4771e1be0b6", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 19239 - }, - { - "Id": "5b3f7bf05acfc433000ecf6b", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1259 - }, - { - "Id": "5b7be4575acfc400161d0832", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1000 - }, - { - "Id": "5b7d37845acfc400170e2f87", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 4609 - }, - { - "Id": "5b40e2bc5acfc40016388216", - "ParentId": "5b47574386f77428ca22b330", - "Price": 4371 - }, - { - "Id": "5b40e5e25acfc4001a599bea", - "ParentId": "5b47574386f77428ca22b330", - "Price": 1827 - }, - { - "Id": "5b8403a086f7747ff856f4e2", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 7771 - }, - { - "Id": "5b44c8ea86f7742d1627baf1", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 28618 - }, - { - "Id": "5b44cd8b86f774503d30cba2", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 4209 - }, - { - "Id": "5bb20df1d4351e00347787d5", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 8350 - }, - { - "Id": "5b7be1265acfc400161d0798", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 33060 - }, - { - "Id": "5bd704e7209c4d00d7167c31", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2110 - }, - { - "Id": "5b7be1ca5acfc400170e2d2f", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 9601 - }, - { - "Id": "5b7bee755acfc400196d5383", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 20068 - }, - { - "Id": "5bed61680db834001d2c45ab", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2750 - }, - { - "Id": "5bc9c29cd4351e003562b8a3", - "ParentId": "5b47574386f77428ca22b336", - "Price": 8912 - }, - { - "Id": "5beecbb80db834001d2c465e", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1058 - }, - { - "Id": "5bd06f5d86f77427101ad47c", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 16000 - }, - { - "Id": "5bfe7fb30db8340018089fed", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2200 - }, - { - "Id": "5bfd4cd60db834001c38f095", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 7350 - }, - { - "Id": "5bffdd7e0db834001b734a1a", - "ParentId": "5b5f7a0886f77409407a7f96", - "Price": 785000 - }, - { - "Id": "5c052fb986f7746b2101e909", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 48000 - }, - { - "Id": "5bfe86a20db834001d23e8f7", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 2608 - }, - { - "Id": "5c064c400db834001d23f468", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2900 - }, - { - "Id": "5bffd7ed0db834001d23ebf9", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 3800 - }, - { - "Id": "5c0000c00db834001a6697fc", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 2970 - }, - { - "Id": "5c06782b86f77426df5407d2", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 2500 - }, - { - "Id": "5c07a8770db8340023300450", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 25150 - }, - { - "Id": "5c0126f40db834002a125382", - "ParentId": "5b5f7a0886f77409407a7f96", - "Price": 1659945 - }, - { - "Id": "5c07c5ed0db834001b73571c", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 8900 - }, - { - "Id": "5c0d32fcd174af02a1659c75", - "ParentId": "5b47574386f77428ca22b331", - "Price": 3200 - }, - { - "Id": "5c0e534186f7747fa1419867", - "ParentId": "5b47574386f77428ca22b33a", - "Price": 37830 - }, - { - "Id": "5c0505e00db834001b735073", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 19225 - }, - { - "Id": "5c0faeddd174af02a962601f", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 800 - }, - { - "Id": "5c0530ee86f774697952d952", - "ParentId": "5b47574386f77428ca22b2f3", - "Price": 970000 - }, - { - "Id": "5c1127d0d174af29be75cf68", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "5c1267ee86f77416ec610f72", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 85000 - }, - { - "Id": "5c12301c86f77419522ba7e4", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 8000 - }, - { - "Id": "5c12613b86f7743bbe2c3f76", - "ParentId": "5b47574386f77428ca22b341", - "Price": 69000 - }, - { - "Id": "5c165d832e2216398b5a7e36", - "ParentId": "5b5f6f3c86f774094242ef87", - "Price": 44500 - }, - { - "Id": "5c12620d86f7743f8b198b72", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 120000 - }, - { - "Id": "5c17804b2e2216152006c02f", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 2233 - }, - { - "Id": "5c1bc5612e221602b5429350", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 11380 - }, - { - "Id": "5c18b90d2e2216152142466b", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 2400 - }, - { - "Id": "5c1a1cc52e221602b3136e3d", - "ParentId": "5b47574386f77428ca22b331", - "Price": 4700 - }, - { - "Id": "5c471b7e2e2216152006e46c", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 878 - }, - { - "Id": "5c503b1c2e221602b21d6e9d", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 300 - }, - { - "Id": "5c5db5962e2216000e5e46eb", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 5174 - }, - { - "Id": "5c48a2c22e221602b313fb6c", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 2320 - }, - { - "Id": "5c4ee3d62e2216152006f302", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 7800 - }, - { - "Id": "5c5970672e221602b21d7855", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 16690 - }, { "Id": "5ae30e795acfc408fb139a0b", "ParentId": "5b5f760586f774093e6cb509", @@ -7681,361 +8036,6 @@ "ParentId": "5b5f760586f774093e6cb509", "Price": 2520 }, - { - "Id": "5ad5d49886f77455f9731921", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 1621 - }, - { - "Id": "5addc00b5acfc4001669f144", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 10147 - }, - { - "Id": "5adf23995acfc400185c2aeb", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2453 - }, - { - "Id": "5ae099925acfc4001a5fc7b3", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 878 - }, - { - "Id": "5af0561e86f7745f5f3ad6ac", - "ParentId": "5b47574386f77428ca22b2ed", - "Price": 20391 - }, - { - "Id": "5b099b965acfc400186331e6", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 3207 - }, - { - "Id": "5b2388675acfc4771e1be0be", - "ParentId": "5b5f748386f774093e6cb501", - "Price": 31468 - }, - { - "Id": "5b3a337e5acfc4704b4a19a0", - "ParentId": "5b5f737886f774093e6cb4fb", - "Price": 11399 - }, - { - "Id": "5b3baf8f5acfc40dc5296692", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 9386 - }, - { - "Id": "5b3cbc235acfc4001863ac44", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 704 - }, - { - "Id": "5b3f7c005acfc4704b4a1de8", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1105 - }, - { - "Id": "5b432b2f5acfc4771e1c6622", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 7500 - }, - { - "Id": "5b7be4895acfc400170e2dd5", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1573 - }, - { - "Id": "5b7d63b75acfc400170e2f8a", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 16197 - }, - { - "Id": "5b7d693d5acfc43bca706a3d", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 7817 - }, - { - "Id": "5b800ebc86f774394e230a90", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1473 - }, - { - "Id": "5ba2678ad4351e44f824b344", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 425 - }, - { - "Id": "5bbdb83fd4351e44f824c44b", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 3540 - }, - { - "Id": "5bcf0213d4351e0085327c17", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2111 - }, - { - "Id": "5bd70322209c4d00d7167b8f", - "ParentId": "5b5f796a86f774093f2ed3c0", - "Price": 45230 - }, - { - "Id": "5beec3e30db8340019619424", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 7750 - }, - { - "Id": "5c0111ab0db834001966914d", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 2150 - }, - { - "Id": "5c0672ed0db834001b7353f3", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3350 - }, - { - "Id": "5c093ca986f7740a1867ab12", - "ParentId": "5b5f6fd286f774093f2ecf0d", - "Price": 4900000 - }, - { - "Id": "5c0a840b86f7742ffa4f2482", - "ParentId": "5b5f6fa186f77409407a7eb7", - "Price": 3100000 - }, - { - "Id": "5c0d2727d174af02a012cf58", - "ParentId": "5b47574386f77428ca22b330", - "Price": 515 - }, - { - "Id": "5c0e446786f7742013381639", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 2907 - }, - { - "Id": "5c0e531286f7747fa54205c2", - "ParentId": "5b47574386f77428ca22b33a", - "Price": 35893 - }, - { - "Id": "5c127c4486f7745625356c13", - "ParentId": "5b5f6fa186f77409407a7eb7", - "Price": 235000 - }, - { - "Id": "5c503ac82e221602b21d6e9a", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1100 - }, - { - "Id": "5ac8d6885acfc400180ae7b0", - "ParentId": "5b47574386f77428ca22b330", - "Price": 4755 - }, - { - "Id": "5ad5d20586f77449be26d877", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 3258 - }, - { - "Id": "5addbba15acfc400185c2854", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 5403 - }, - { - "Id": "5addbfe15acfc4001a5fc58b", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 3217 - }, - { - "Id": "5addc7005acfc4001669f275", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 17972 - }, - { - "Id": "5ae0973a5acfc4001562206c", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1970 - }, - { - "Id": "5ae30c9a5acfc408fb139a03", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 4699 - }, - { - "Id": "5ae9a0dd86f7742e5f454a05", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 0 - }, - { - "Id": "5afd7e445acfc4001637e35a", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 2701 - }, - { - "Id": "5b099a765acfc47a8607efe3", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 21337 - }, - { - "Id": "5b1fb3e15acfc4001637f068", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3586 - }, - { - "Id": "5b2389515acfc4771e1be0c0", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 9588 - }, - { - "Id": "5b30b0dc5acfc400153b7124", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 14896 - }, - { - "Id": "5b3116595acfc40019476364", - "ParentId": "5b5f744786f774094242f197", - "Price": 21305 - }, - { - "Id": "5b3a16655acfc40016387a2a", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 7848 - }, - { - "Id": "5b3b99475acfc432ff4dcbee", - "ParentId": "5b5f748386f774093e6cb501", - "Price": 44344 - }, - { - "Id": "5b3cadf35acfc400194776a0", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 14159 - }, - { - "Id": "5b43271c5acfc432ff4dce65", - "ParentId": "5b47574386f77428ca22b330", - "Price": 1995 - }, - { - "Id": "5b43575a86f77424f443fe62", - "ParentId": "5b47574386f77428ca22b2f2", - "Price": 60604 - }, - { - "Id": "5b4c81bd86f77418a75ae159", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 2150 - }, - { - "Id": "5b800ed086f7747baf6e2f9e", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1108 - }, - { - "Id": "5bb20d53d4351e4502010a69", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 6500 - }, - { - "Id": "5bb20dbcd4351e44f824c04e", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 2917 - }, - { - "Id": "5bbdb870d4351e00367fb67d", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 10758 - }, - { - "Id": "5bc9b720d4351e450201234b", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 44639 - }, - { - "Id": "5bd073c986f7747f627e796c", - "ParentId": "5b47574386f77428ca22b330", - "Price": 24006 - }, - { - "Id": "5bfea6e90db834001b7347f3", - "ParentId": "5b5f798886f77447ed5636b5", - "Price": 17500 - }, - { - "Id": "5bfebc250db834001a6694e1", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 25400 - }, - { - "Id": "5bfebc530db834001d23eb65", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2640 - }, - { - "Id": "5bffec120db834001c38f5fa", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 3000 - }, - { - "Id": "5c0517910db83400232ffee5", - "ParentId": "5b5f740a86f77447ec5d7706", - "Price": 38120 - }, - { - "Id": "5c0695860db834001b735461", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2310 - }, - { - "Id": "5c0d5ae286f7741e46554302", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 130 - }, - { - "Id": "5c0e530286f7747fa1419862", - "ParentId": "5b47574386f77428ca22b33a", - "Price": 21060 - }, - { - "Id": "5c0e66e2d174af02a96252f4", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 111625 - }, - { - "Id": "5c0e774286f77468413cc5b2", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 126700 - }, - { - "Id": "5c0e874186f7745dc7616606", - "ParentId": "5b47574386f77428ca22b330", - "Price": 8372 - }, - { - "Id": "5c110624d174af029e69734c", - "ParentId": "5b5f749986f774094242f199", - "Price": 480000 - }, - { - "Id": "5c1127bdd174af44217ab8b9", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "5c1260dc86f7746b106e8748", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "5c1a1e3f2e221602b66cc4c2", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 7500 - }, { "Id": "5c5db5c62e22160012542255", "ParentId": "5b5f75c686f774094242f19f", @@ -8061,45 +8061,140 @@ "ParentId": "5b5f72f786f77447ec5d7702", "Price": 3970 }, - { - "Id": "5c5db6742e2216000f1b2852", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 14100 - }, - { - "Id": "5c793fc42e221600114ca25d", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 21200 - }, - { - "Id": "5c6d11072e2216000e69d2e4", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 14400 - }, - { - "Id": "5c6165902e22160010261b28", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 28600 - }, - { - "Id": "5c5db6b32e221600102611a0", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 1780 - }, { "Id": "5c6bf4aa2e2216001219b0ae", "ParentId": "5b5f761f86f774094242f1a1", "Price": 7350 }, { - "Id": "5c5db6552e2216001026119d", + "Id": "5c5db6742e2216000f1b2852", "ParentId": "5b5f754a86f774094242f19b", - "Price": 1450 + "Price": 14100 }, { - "Id": "5c5db5b82e2216003a0fe71d", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 8174 + "Id": "5c793fb92e221644f31bfb64", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 8700 + }, + { + "Id": "5c5db5fc2e2216000f1b2842", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 7600 + }, + { + "Id": "5c61a40d2e2216001403158d", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 7800 + }, + { + "Id": "5c78f26f2e221601da3581d1", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 11100 + }, + { + "Id": "5c7955c22e221644f31bfd5e", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 48520 + }, + { + "Id": "5cf54404d7f00c108840b2ef", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 4750 + }, + { + "Id": "5cf78720d7f00c06595bc93e", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 9850 + }, + { + "Id": "5cf79599d7f00c10875d9212", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 2950 + }, + { + "Id": "5cfe8010d7ad1a59283b14c6", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 29700 + }, + { + "Id": "5d03794386f77420415576f5", + "ParentId": "5b47574386f77428ca22b2ed", + "Price": 330000 + }, + { + "Id": "5d25d0ac8abbc3054f3e61f7", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 26500 + }, + { + "Id": "5d270ca28abbc31ee25ee821", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 600 + }, + { + "Id": "5d2f213448f0355009199284", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3100 + }, + { + "Id": "5d2f25bc48f03502573e5d85", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2500 + }, + { + "Id": "5d40407c86f774318526545a", + "ParentId": "5b47574386f77428ca22b335", + "Price": 25000 + }, + { + "Id": "5d6e6a53a4b9361bd473feec", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 48 + }, + { + "Id": "5d80c88d86f77440556dbf07", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 26199 + }, + { + "Id": "5da46e3886f774653b7a83fe", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 12050 + }, + { + "Id": "5de8fbad2fbe23140d3ee9c4", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 2650 + }, + { + "Id": "5df8ce05b11454561e39243b", + "ParentId": "5b5f791486f774093f2ed3be", + "Price": 24605 + }, + { + "Id": "5e2af2bc86f7746d3f3c33fc", + "ParentId": "5b47574386f77428ca22b2f2", + "Price": 3800 + }, + { + "Id": "5e42c81886f7742a01529f57", + "ParentId": "5c518ed586f774119a772aee", + "Price": 100000 + }, + { + "Id": "5e4abc1f86f774069619fbaa", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 8200 + }, + { + "Id": "5e54f62086f774219b0f1937", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 48000 + }, + { + "Id": "5c5db6b32e221600102611a0", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 1780 }, { "Id": "5c5db6302e2216000e5e47f0", @@ -8141,21 +8236,6 @@ "ParentId": "5b5f75e486f77447ec5d7712", "Price": 4275 }, - { - "Id": "5c5db5fc2e2216000f1b2842", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 7600 - }, - { - "Id": "5c61a40d2e2216001403158d", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 7800 - }, - { - "Id": "5c78f26f2e221601da3581d1", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 11100 - }, { "Id": "5d10b49bd7ad1a1a560708b0", "ParentId": "5b5f737886f774093e6cb4fb", @@ -8191,16 +8271,6 @@ "ParentId": "5b5f792486f77447ed5636b3", "Price": 14238 }, - { - "Id": "5c7955c22e221644f31bfd5e", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 48520 - }, - { - "Id": "5cf54404d7f00c108840b2ef", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 4750 - }, { "Id": "5d6e6869a4b9361c140bcfde", "ParentId": "5b47574386f77428ca22b33b", @@ -8241,31 +8311,6 @@ "ParentId": "5b47574386f77428ca22b2f1", "Price": 20000 }, - { - "Id": "5cf78720d7f00c06595bc93e", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 9850 - }, - { - "Id": "5cf79599d7f00c10875d9212", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 2950 - }, - { - "Id": "5cfe8010d7ad1a59283b14c6", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 29700 - }, - { - "Id": "5d03794386f77420415576f5", - "ParentId": "5b47574386f77428ca22b2ed", - "Price": 330000 - }, - { - "Id": "5d25d0ac8abbc3054f3e61f7", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 26500 - }, { "Id": "5dfa397fb11454561e39246c", "ParentId": "5b5f75c686f774094242f19f", @@ -8276,21 +8321,6 @@ "ParentId": "5b5f746686f77447ec5d7708", "Price": 2433 }, - { - "Id": "5d270ca28abbc31ee25ee821", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 600 - }, - { - "Id": "5d2f213448f0355009199284", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3100 - }, - { - "Id": "5d2f25bc48f03502573e5d85", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2500 - }, { "Id": "5dff8db859400025ea5150d4", "ParentId": "5b5f755f86f77447ec5d770e", @@ -8311,21 +8341,6 @@ "ParentId": "5b5f7a2386f774093f2ed3c4", "Price": 4700 }, - { - "Id": "5d40407c86f774318526545a", - "ParentId": "5b47574386f77428ca22b335", - "Price": 25000 - }, - { - "Id": "5d6e6a53a4b9361bd473feec", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 48 - }, - { - "Id": "5d80c88d86f77440556dbf07", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 26199 - }, { "Id": "5e4bfc1586f774264f7582d3", "ParentId": "5b47574386f77428ca22b330", @@ -8342,44 +8357,9 @@ "Price": 14300 }, { - "Id": "5da46e3886f774653b7a83fe", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 12050 - }, - { - "Id": "5de8fbad2fbe23140d3ee9c4", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 2650 - }, - { - "Id": "5df8ce05b11454561e39243b", - "ParentId": "5b5f791486f774093f2ed3be", - "Price": 24605 - }, - { - "Id": "5c5db6f82e2216003a0fe914", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 6230 - }, - { - "Id": "5e2af2bc86f7746d3f3c33fc", - "ParentId": "5b47574386f77428ca22b2f2", - "Price": 3800 - }, - { - "Id": "5e42c81886f7742a01529f57", - "ParentId": "5c518ed586f774119a772aee", - "Price": 100000 - }, - { - "Id": "5e4abc1f86f774069619fbaa", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 8200 - }, - { - "Id": "5e54f62086f774219b0f1937", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 48000 + "Id": "5c6165902e22160010261b28", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 28600 }, { "Id": "5c5db63a2e2216000f1b284a", @@ -8387,9 +8367,9 @@ "Price": 11200 }, { - "Id": "5c793fb92e221644f31bfb64", + "Id": "5c793fc42e221600114ca25d", "ParentId": "5b5f757486f774093e6cb507", - "Price": 8700 + "Price": 21200 }, { "Id": "5c6d710d2e22165df16b81e7", @@ -8536,166 +8516,6 @@ "ParentId": "5b47574386f77428ca22b331", "Price": 25600 }, - { - "Id": "5c878e9d2e2216000f201903", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 22800 - }, - { - "Id": "5c87a07c2e2216001219d4a2", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 9200 - }, - { - "Id": "5c88f24b2e22160bc12c69a6", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 9880 - }, - { - "Id": "5caf16a2ae92152ac412efbc", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 2233 - }, - { - "Id": "5cc9a96cd7f00c011c04e04a", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 5660 - }, - { - "Id": "5cdaa99dd7f00c002412d0b2", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 1022 - }, - { - "Id": "5cf50850d7f00c056e24104c", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 3900 - }, - { - "Id": "5cf8f3b0d7f00c00217872ef", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 25000 - }, - { - "Id": "5d00e0cbd7ad1a6c6566a42d", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 4275 - }, - { - "Id": "5d124c01d7ad1a115c7d59fb", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 1200 - }, - { - "Id": "5d1340bdd7ad1a0e8d245aab", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 6177 - }, - { - "Id": "5d135ecbd7ad1a21c176542e", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 10120 - }, - { - "Id": "5d1b3f2d86f774253763b735", - "ParentId": "5b47574386f77428ca22b2f3", - "Price": 3000 - }, - { - "Id": "5d44064fa4b9361e4f6eb8b5", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 62000 - }, - { - "Id": "5d4406a8a4b9361e4f6eb8b7", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 18800 - }, - { - "Id": "5d5d85c586f774279a21cbdb", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 31600 - }, - { - "Id": "5d6e6772a4b936088465b17c", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 35 - }, - { - "Id": "5d6e6891a4b9361bd473feea", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 51 - }, - { - "Id": "5d6e6a05a4b93618084f58d0", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 81 - }, - { - "Id": "5d80c8f586f77440373c4ed0", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 4503 - }, - { - "Id": "5d947d3886f774447b415893", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 72210 - }, - { - "Id": "5da5cdcd86f774529238fb9b", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 9052 - }, - { - "Id": "5da743f586f7744014504f72", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 84211 - }, - { - "Id": "5df36948bb49d91fb446d5ad", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 1850 - }, - { - "Id": "5df8a6a186f77412640e2e80", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 7000 - }, - { - "Id": "5df8e4080b92095fd441e594", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 6800 - }, - { - "Id": "5dfcd0e547101c39625f66f9", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 15900 - }, - { - "Id": "5e00903ae9dc277128008b87", - "ParentId": "5b5f796a86f774093f2ed3c0", - "Price": 14288 - }, - { - "Id": "5e00c1ad86f774747333222c", - "ParentId": "5b47574386f77428ca22b330", - "Price": 16884 - }, - { - "Id": "5e00cdd986f7747473332240", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 48825 - }, - { - "Id": "5e023e6e34d52a55c3304f71", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 170 - }, - { - "Id": "5e2af22086f7746d3f3c33fa", - "ParentId": "5b47574386f77428ca22b2ee", - "Price": 19400 - }, { "Id": "5c90c3622e221601da359851", "ParentId": "5b5f755f86f77447ec5d770e", @@ -8856,6 +8676,176 @@ "ParentId": "5b5f6f3c86f774094242ef87", "Price": 35100 }, + { + "Id": "5c878e9d2e2216000f201903", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 22800 + }, + { + "Id": "5c87a07c2e2216001219d4a2", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 9200 + }, + { + "Id": "5c88f24b2e22160bc12c69a6", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 9880 + }, + { + "Id": "5caf16a2ae92152ac412efbc", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 2233 + }, + { + "Id": "5cc9a96cd7f00c011c04e04a", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 5660 + }, + { + "Id": "5cdaa99dd7f00c002412d0b2", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 1022 + }, + { + "Id": "5cf50850d7f00c056e24104c", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 3900 + }, + { + "Id": "5cf8f3b0d7f00c00217872ef", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 25000 + }, + { + "Id": "5d00e0cbd7ad1a6c6566a42d", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 4275 + }, + { + "Id": "5d124c01d7ad1a115c7d59fb", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 1200 + }, + { + "Id": "5d1340bdd7ad1a0e8d245aab", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 6177 + }, + { + "Id": "5d135ecbd7ad1a21c176542e", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 10120 + }, + { + "Id": "5d1b3f2d86f774253763b735", + "ParentId": "5b47574386f77428ca22b2f3", + "Price": 3000 + }, + { + "Id": "5d44064fa4b9361e4f6eb8b5", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 62000 + }, + { + "Id": "5d4406a8a4b9361e4f6eb8b7", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 18800 + }, + { + "Id": "5d5d85c586f774279a21cbdb", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 31600 + }, + { + "Id": "5d6e6772a4b936088465b17c", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 35 + }, + { + "Id": "5d6e6891a4b9361bd473feea", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 51 + }, + { + "Id": "5d6e6a05a4b93618084f58d0", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 81 + }, + { + "Id": "5d80c8f586f77440373c4ed0", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 4503 + }, + { + "Id": "5d947d3886f774447b415893", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 72210 + }, + { + "Id": "5da5cdcd86f774529238fb9b", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 9052 + }, + { + "Id": "5da743f586f7744014504f72", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 84211 + }, + { + "Id": "5df36948bb49d91fb446d5ad", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 1850 + }, + { + "Id": "5df8a6a186f77412640e2e80", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 7000 + }, + { + "Id": "5df8e4080b92095fd441e594", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 6800 + }, + { + "Id": "5dfcd0e547101c39625f66f9", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 15900 + }, + { + "Id": "5e00903ae9dc277128008b87", + "ParentId": "5b5f796a86f774093f2ed3c0", + "Price": 14288 + }, + { + "Id": "5e00c1ad86f774747333222c", + "ParentId": "5b47574386f77428ca22b330", + "Price": 16884 + }, + { + "Id": "5e00cdd986f7747473332240", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 48825 + }, + { + "Id": "5e023e6e34d52a55c3304f71", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 170 + }, + { + "Id": "5e2af22086f7746d3f3c33fa", + "ParentId": "5b47574386f77428ca22b2ee", + "Price": 19400 + }, + { + "Id": "5c6d11072e2216000e69d2e4", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 14400 + }, + { + "Id": "5c5db5b82e2216003a0fe71d", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 8174 + }, { "Id": "5c6beec32e221601da3578f2", "ParentId": "5b5f724c86f774093f2ecf15", @@ -8876,6 +8866,16 @@ "ParentId": "5b5f724c86f774093f2ecf15", "Price": 6420 }, + { + "Id": "5c7951452e221644f31bfd5c", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 9850 + }, + { + "Id": "5c7d560b2e22160bc12c6139", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2203 + }, { "Id": "5ca20ee186f774799474abc2", "ParentId": "5b47574386f77428ca22b330", @@ -8916,6 +8916,16 @@ "ParentId": "5b5f71de86f774093f2ecf13", "Price": 3500 }, + { + "Id": "5c82342f2e221644f31c060e", + "ParentId": "5b5f748386f774093e6cb501", + "Price": 17784 + }, + { + "Id": "5c87ca002e221600114cb150", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 3196 + }, { "Id": "5d02676dd7ad1a049e54f6dc", "ParentId": "5b5f724c86f774093f2ecf15", @@ -8931,226 +8941,6 @@ "ParentId": "5b5f754a86f774094242f19b", "Price": 3900 }, - { - "Id": "5d2da1e948f035477b1ce2ba", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 22900 - }, - { - "Id": "5d3eb4aba4b93650d64e497d", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 900 - }, - { - "Id": "5d3ef698a4b9361182109872", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 37940 - }, - { - "Id": "5d40412b86f7743cb332ac3a", - "ParentId": "5b47574386f77428ca22b2f0", - "Price": 7000 - }, - { - "Id": "5d4405f0a4b9361e6a4e6bd9", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 19900 - }, - { - "Id": "5d4aab30a4b9365435358c55", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 29600 - }, - { - "Id": "5d6d3716a4b9361bc8618872", - "ParentId": "5b47574386f77428ca22b330", - "Price": 3910 - }, - { - "Id": "5d6e695fa4b936359b35d852", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 20 - }, - { - "Id": "5d7b6bafa4b93652786f4c76", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1700 - }, - { - "Id": "5d80c62a86f7744036212b3f", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 250000 - }, - { - "Id": "5de8ea8ffd6b4e6e2276dc35", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1950 - }, - { - "Id": "5df916dfbb49d91fb446d6b9", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 16500 - }, - { - "Id": "5e023d34e8a400319a28ed44", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 1180 - }, - { - "Id": "5e023e88277cce2b522ff2b1", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 105 - }, - { - "Id": "5e2af00086f7746d3f3c33f7", - "ParentId": "5b47574386f77428ca22b2f0", - "Price": 9457 - }, - { - "Id": "5c6d11152e2216000f2003e7", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 16700 - }, - { - "Id": "5c6d450c2e221600114c997d", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3425 - }, - { - "Id": "5c6d85e02e22165df16b81f4", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 21130 - }, - { - "Id": "5c78f2612e221600114c9f0d", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 44900 - }, - { - "Id": "5c9a26332e2216001219ea70", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 15800 - }, - { - "Id": "5ca20abf86f77418567a43f2", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 23822 - }, - { - "Id": "5ca21c6986f77479963115a7", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 7343 - }, - { - "Id": "5cda9bcfd7f00c0c0b53e900", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 2150 - }, - { - "Id": "5d0376a486f7747d8050965c", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 40000 - }, - { - "Id": "5d08d21286f774736e7c94c3", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 151432 - }, - { - "Id": "5d440b93a4b9364276578d4b", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 31567 - }, - { - "Id": "5d6d3943a4b9360dbc46d0cc", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 1500 - }, - { - "Id": "5d6d3be5a4b9361bc73bc763", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 33200 - }, - { - "Id": "5d6e6a5fa4b93614ec501745", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 180 - }, - { - "Id": "5d80c6c586f77440351beef1", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 19070 - }, - { - "Id": "5d80c95986f77440351beef3", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 22250 - }, - { - "Id": "5d80cbd886f77470855c26c2", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 18250 - }, - { - "Id": "5d96141523f0ea1b7f2aacab", - "ParentId": "5b47574386f77428ca22b330", - "Price": 10200 - }, - { - "Id": "5de8eac42a78646d96665d91", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 4100 - }, - { - "Id": "5df8a72c86f77412640e2e83", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 10000 - }, - { - "Id": "5dfa3d7ac41b2312ea33362a", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 3525 - }, - { - "Id": "5dfe6104585a0c3e995c7b82", - "ParentId": "5b5f748386f774093e6cb501", - "Price": 51344 - }, - { - "Id": "5e2af37686f774755a234b65", - "ParentId": "5b47574386f77428ca22b2f2", - "Price": 16000 - }, - { - "Id": "5e4abfed86f77406a2713cf7", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 19200 - }, - { - "Id": "5e54f76986f7740366043752", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 42000 - }, - { - "Id": "5c7951452e221644f31bfd5c", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 9850 - }, - { - "Id": "5c7d560b2e22160bc12c6139", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2203 - }, - { - "Id": "5c82342f2e221644f31c060e", - "ParentId": "5b5f748386f774093e6cb501", - "Price": 17784 - }, - { - "Id": "5c87ca002e221600114cb150", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 3196 - }, { "Id": "5c9a07572e221644f31c4b32", "ParentId": "5b5f75e486f77447ec5d7712", @@ -9166,31 +8956,26 @@ "ParentId": "5b5f764186f77447ec5d7714", "Price": 2400 }, - { - "Id": "5c6d10fa2e221600106f3f23", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 12100 - }, - { - "Id": "5c7d55de2e221644f31bff68", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 29600 - }, - { - "Id": "5c7e8fab2e22165df16b889b", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 32940 - }, - { - "Id": "5c86592b2e2216000e69e77c", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 8500 - }, { "Id": "5cc80f53e4a949000e1ea4f8", "ParentId": "5b47574386f77428ca22b33b", "Price": 310 }, + { + "Id": "5d2da1e948f035477b1ce2ba", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 22900 + }, + { + "Id": "5d3eb4aba4b93650d64e497d", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 900 + }, + { + "Id": "5d3ef698a4b9361182109872", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 37940 + }, { "Id": "5cc80f67e4a949035e43bbba", "ParentId": "5b47574386f77428ca22b33b", @@ -9201,6 +8986,21 @@ "ParentId": "5b5f761f86f774094242f1a1", "Price": 1800 }, + { + "Id": "5d40412b86f7743cb332ac3a", + "ParentId": "5b47574386f77428ca22b2f0", + "Price": 7000 + }, + { + "Id": "5d4405f0a4b9361e6a4e6bd9", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 19900 + }, + { + "Id": "5d4aab30a4b9365435358c55", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 29600 + }, { "Id": "5cf67a1bd7f00c06585fb6f3", "ParentId": "5b5f72f786f77447ec5d7702", @@ -9216,26 +9016,21 @@ "ParentId": "5b47574386f77428ca22b2ef", "Price": 62000 }, + { + "Id": "5d6d3716a4b9361bc8618872", + "ParentId": "5b47574386f77428ca22b330", + "Price": 3910 + }, + { + "Id": "5d6e695fa4b936359b35d852", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 20 + }, { "Id": "5d0378d486f77420421a5ff4", "ParentId": "5b47574386f77428ca22b2ef", "Price": 55000 }, - { - "Id": "5cc701d7e4a94900100ac4e7", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 22300 - }, - { - "Id": "5cc82796e24e8d000f5859a8", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 1600 - }, - { - "Id": "5cc9bcaed7f00c011c04e179", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 5100 - }, { "Id": "5d0b5cd3d7ad1a3fe32ad263", "ParentId": "5b5f74cc86f77447ec5d770a", @@ -9246,6 +9041,21 @@ "ParentId": "5b5f74cc86f77447ec5d770a", "Price": 1750 }, + { + "Id": "5d7b6bafa4b93652786f4c76", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1700 + }, + { + "Id": "5d80c62a86f7744036212b3f", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 250000 + }, + { + "Id": "5de8ea8ffd6b4e6e2276dc35", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1950 + }, { "Id": "5d235bb686f77443f4331278", "ParentId": "5b5f6fa186f77409407a7eb7", @@ -9271,6 +9081,266 @@ "ParentId": "5b5f75e486f77447ec5d7712", "Price": 8665 }, + { + "Id": "5df35e59c41b2312ea3334d5", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 13200 + }, + { + "Id": "5df916dfbb49d91fb446d6b9", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 16500 + }, + { + "Id": "5e023d34e8a400319a28ed44", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 1180 + }, + { + "Id": "5df35eb2b11454561e3923e2", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1033 + }, + { + "Id": "5df8a4d786f77412672a1e3b", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 144000 + }, + { + "Id": "5e023e88277cce2b522ff2b1", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 105 + }, + { + "Id": "5e2af00086f7746d3f3c33f7", + "ParentId": "5b47574386f77428ca22b2f0", + "Price": 9457 + }, + { + "Id": "5df8a58286f77412631087ed", + "ParentId": "5b47574386f77428ca22b330", + "Price": 300 + }, + { + "Id": "5dfa3d45dfc58d14537c20b0", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 5050 + }, + { + "Id": "5e2aef7986f7746d3f3c33f5", + "ParentId": "5b47574386f77428ca22b2f0", + "Price": 8457 + }, + { + "Id": "5e2af29386f7746d4159f077", + "ParentId": "5b47574386f77428ca22b2ee", + "Price": 24000 + }, + { + "Id": "5e54f79686f7744022011103", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 94900 + }, + { + "Id": "5e569a2e56edd02abe09f280", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 6400 + }, + { + "Id": "5c6162682e22160010261a2b", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1100 + }, + { + "Id": "5c6d10e82e221601da357b07", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 13900 + }, + { + "Id": "5c6d42cb2e2216000e69d7d1", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 4005 + }, + { + "Id": "5c78f2492e221600114c9f04", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 53100 + }, + { + "Id": "5c793fde2e221601da358614", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 8500 + }, + { + "Id": "5c925fa22e221601da359b7b", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 210 + }, + { + "Id": "5c9a25172e2216000f20314e", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 12180 + }, + { + "Id": "5cadc2e0ae9215051e1c21e7", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1800 + }, + { + "Id": "5cadfbf7ae92152ac412eeef", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 93800 + }, + { + "Id": "5cbdaf89ae9215000e5b9c94", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2100 + }, + { + "Id": "5cf13123d7f00c1085616a50", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 21000 + }, + { + "Id": "5cf518cfd7f00c065b422214", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 6500 + }, + { + "Id": "5cf67cadd7f00c065a5abab7", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 1850 + }, + { + "Id": "5cff9e5ed7ad1a09407397d4", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 7980 + }, + { + "Id": "5d00ec68d7ad1a04a067e5be", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 7800 + }, + { + "Id": "5d023784d7ad1a049d4aa7f2", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 6356 + }, + { + "Id": "5d0377ce86f774186372f689", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 81200 + }, + { + "Id": "5d25a7b88abbc3054f3e60bc", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 5000 + }, + { + "Id": "5d2c829448f0353a5c7d6674", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 3000 + }, + { + "Id": "5d357d6b86f7745b606e3508", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 0 + }, + { + "Id": "5d44334ba4b9362b346d1948", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 6426 + }, + { + "Id": "5d6e6806a4b936088465b17e", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 190 + }, + { + "Id": "5d6e689ca4b9361bc8618956", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 68 + }, + { + "Id": "5d6e68e6a4b9361c140bcfe0", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 71 + }, + { + "Id": "5d80cd1a86f77402aa362f42", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 20111 + }, + { + "Id": "5d8e15b686f774445103b190", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 40000 + }, + { + "Id": "5de652c31b7e3716273428be", + "ParentId": "5b5f798886f77447ed5636b5", + "Price": 7350 + }, + { + "Id": "5de7bd7bfd6b4e6e2276dc25", + "ParentId": "5b5f796a86f774093f2ed3c0", + "Price": 18500 + }, + { + "Id": "5de8fc0b205ddc616a6bc51b", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 850 + }, + { + "Id": "5de922d4b11454561e39239f", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 650 + }, + { + "Id": "5dfa3cd1b33c0951220c079b", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 6149 + }, + { + "Id": "5dfa3d2b0dee1b22f862eade", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 43500 + }, + { + "Id": "5c6d10fa2e221600106f3f23", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 12100 + }, + { + "Id": "5c7d55de2e221644f31bff68", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 29600 + }, + { + "Id": "5c7e8fab2e22165df16b889b", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 32940 + }, + { + "Id": "5c86592b2e2216000e69e77c", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 8500 + }, + { + "Id": "5cc701d7e4a94900100ac4e7", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 22300 + }, + { + "Id": "5cc82796e24e8d000f5859a8", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 1600 + }, + { + "Id": "5cc9bcaed7f00c011c04e179", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 5100 + }, { "Id": "5ce69cbad7f00c00b61c5098", "ParentId": "5b5f754a86f774094242f19b", @@ -9281,16 +9351,6 @@ "ParentId": "5b5f731a86f774093e6cb4f9", "Price": 63450 }, - { - "Id": "5df35e59c41b2312ea3334d5", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 13200 - }, - { - "Id": "5df35eb2b11454561e3923e2", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1033 - }, { "Id": "5d010d1cd7ad1a59283b1ce7", "ParentId": "5b5f75e486f77447ec5d7712", @@ -9331,16 +9391,6 @@ "ParentId": "5b47574386f77428ca22b2f4", "Price": 24500 }, - { - "Id": "5df8a4d786f77412672a1e3b", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 144000 - }, - { - "Id": "5df8a58286f77412631087ed", - "ParentId": "5b47574386f77428ca22b330", - "Price": 300 - }, { "Id": "5d1b392c86f77425243e98fe", "ParentId": "5b47574386f77428ca22b2ef", @@ -9361,31 +9411,6 @@ "ParentId": "5b5f75c686f774094242f19f", "Price": 4200 }, - { - "Id": "5dfa3d45dfc58d14537c20b0", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 5050 - }, - { - "Id": "5e2aef7986f7746d3f3c33f5", - "ParentId": "5b47574386f77428ca22b2f0", - "Price": 8457 - }, - { - "Id": "5e2af29386f7746d4159f077", - "ParentId": "5b47574386f77428ca22b2ee", - "Price": 24000 - }, - { - "Id": "5e54f79686f7744022011103", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 94900 - }, - { - "Id": "5e569a2e56edd02abe09f280", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 6400 - }, { "Id": "5d5d940f86f7742797262046", "ParentId": "5b5f6f6c86f774093f2ecf0b", @@ -9477,524 +9502,9 @@ "Price": 50000 }, { - "Id": "5c6592372e221600133e47d7", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 37755 - }, - { - "Id": "5c6d46132e221601da357d56", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 4680 - }, - { - "Id": "5c7d55f52e221644f31bff6a", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2400 - }, - { - "Id": "5cadf6eeae921500134b2799", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 900 - }, - { - "Id": "5caf1109ae9215753c44119f", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 16600 - }, - { - "Id": "5cc6ea85e4a949000e1ea3c3", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 2663 - }, - { - "Id": "5cc9ad73d7f00c000e2579d4", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 5960 - }, - { - "Id": "5cde77a9d7f00c000f261009", + "Id": "5c5db6f82e2216003a0fe914", "ParentId": "5b5f757486f774093e6cb507", - "Price": 2602 - }, - { - "Id": "5cf50fc5d7f00c056c53f83c", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 6200 - }, - { - "Id": "5d1b33a686f7742523398398", - "ParentId": "5b47574386f77428ca22b335", - "Price": 50000 - }, - { - "Id": "5d2f0d8048f0356c925bc3b0", - "ParentId": "5b5f796a86f774093f2ed3c0", - "Price": 9500 - }, - { - "Id": "5d3eb536a4b9363b1f22f8e2", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 800 - }, - { - "Id": "5d4aaa54a4b9365392071170", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 27800 - }, - { - "Id": "5df24cf80dee1b22f862e9bc", - "ParentId": "5b5f798886f77447ed5636b5", - "Price": 26974 - }, - { - "Id": "5e023d48186a883be655e551", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 1980 - }, - { - "Id": "5e2af41e86f774755a234b67", - "ParentId": "5b47574386f77428ca22b2f4", - "Price": 13200 - }, - { - "Id": "5e5699df2161e06ac158df6f", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 9600 - }, - { - "Id": "5e569a132642e66b0b68015c", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2600 - }, - { - "Id": "5c6175362e221600133e3b94", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 41600 - }, - { - "Id": "5c6d7b3d2e221600114c9b7d", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 3100 - }, - { - "Id": "5c94bbff86f7747ee735c08f", - "ParentId": "5c518ed586f774119a772aee", - "Price": 100000 - }, - { - "Id": "5cbdb1b0ae9215000d50e105", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2168 - }, - { - "Id": "5c6162682e22160010261a2b", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1100 - }, - { - "Id": "5c6d10e82e221601da357b07", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 13900 - }, - { - "Id": "5c6d42cb2e2216000e69d7d1", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 4005 - }, - { - "Id": "5c78f2492e221600114c9f04", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 53100 - }, - { - "Id": "5c793fde2e221601da358614", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 8500 - }, - { - "Id": "5c925fa22e221601da359b7b", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 210 - }, - { - "Id": "5c9a25172e2216000f20314e", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 12180 - }, - { - "Id": "5cc7012ae4a949001252b43e", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1000 - }, - { - "Id": "5cde7afdd7f00c000d36b89d", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 9900 - }, - { - "Id": "5cadc2e0ae9215051e1c21e7", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1800 - }, - { - "Id": "5cadfbf7ae92152ac412eeef", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 93800 - }, - { - "Id": "5cbdaf89ae9215000e5b9c94", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2100 - }, - { - "Id": "5d0a29ead7ad1a0026013f27", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1750 - }, - { - "Id": "5d120a10d7ad1a4e1026ba85", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 10650 - }, - { - "Id": "5cf13123d7f00c1085616a50", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 21000 - }, - { - "Id": "5cf518cfd7f00c065b422214", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 6500 - }, - { - "Id": "5cf67cadd7f00c065a5abab7", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 1850 - }, - { - "Id": "5d123b7dd7ad1a004f01b262", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 2850 - }, - { - "Id": "5ca2151486f774244a3b8d30", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 5745 - }, - { - "Id": "5d133067d7ad1a33013f95b4", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1573 - }, - { - "Id": "5cff9e5ed7ad1a09407397d4", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 7980 - }, - { - "Id": "5d00ec68d7ad1a04a067e5be", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 7800 - }, - { - "Id": "5d023784d7ad1a049d4aa7f2", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 6356 - }, - { - "Id": "5d0377ce86f774186372f689", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 81200 - }, - { - "Id": "5d25a7b88abbc3054f3e60bc", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 5000 - }, - { - "Id": "5d2c829448f0353a5c7d6674", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 3000 - }, - { - "Id": "5d15ce51d7ad1a1eff619092", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 4414 - }, - { - "Id": "5cadc55cae921500103bb3be", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 2350 - }, - { - "Id": "5d1b36a186f7742523398433", - "ParentId": "5b47574386f77428ca22b2f2", - "Price": 48000 - }, - { - "Id": "5d357d6b86f7745b606e3508", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 0 - }, - { - "Id": "5d44334ba4b9362b346d1948", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 6426 - }, - { - "Id": "5d6e6806a4b936088465b17e", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 190 - }, - { - "Id": "5d235a5986f77443f6329bc6", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 55000 - }, - { - "Id": "5cc700d4e4a949000f0f0f28", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 4150 - }, - { - "Id": "5d235b4d86f7742e017bc88a", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 35800 - }, - { - "Id": "5cc86840d7f00c002412c56c", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 220 - }, - { - "Id": "5d6e689ca4b9361bc8618956", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 68 - }, - { - "Id": "5d6e68e6a4b9361c140bcfe0", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 71 - }, - { - "Id": "5d80cd1a86f77402aa362f42", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 20111 - }, - { - "Id": "5d8e15b686f774445103b190", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 40000 - }, - { - "Id": "5de652c31b7e3716273428be", - "ParentId": "5b5f798886f77447ed5636b5", - "Price": 7350 - }, - { - "Id": "5de7bd7bfd6b4e6e2276dc25", - "ParentId": "5b5f796a86f774093f2ed3c0", - "Price": 18500 - }, - { - "Id": "5de8fc0b205ddc616a6bc51b", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 850 - }, - { - "Id": "5d25af8f8abbc3055079fec5", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 4340 - }, - { - "Id": "5cf638cbd7f00c06595bc936", - "ParentId": "5b5f748386f774093e6cb501", - "Price": 14500 - }, - { - "Id": "5d403f9186f7743cac3f229b", - "ParentId": "5b47574386f77428ca22b335", - "Price": 50000 - }, - { - "Id": "5de922d4b11454561e39239f", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 650 - }, - { - "Id": "5dfa3cd1b33c0951220c079b", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 6149 - }, - { - "Id": "5d40419286f774318526545f", - "ParentId": "5b47574386f77428ca22b2f6", - "Price": 22300 - }, - { - "Id": "5d024f5cd7ad1a04a067e91a", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2450 - }, - { - "Id": "5d4405aaa4b9361e6a4e6bd3", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 9200 - }, - { - "Id": "5d02677ad7ad1a04a15c0f95", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 8400 - }, - { - "Id": "5dfa3d2b0dee1b22f862eade", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 43500 - }, - { - "Id": "5d5d8ca986f7742798716522", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 9600 - }, - { - "Id": "5d123102d7ad1a004e475fe5", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 11690 - }, - { - "Id": "5d19cd96d7ad1a4a992c9f52", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 10200 - }, - { - "Id": "5d6d2ef3a4b93618084f58bd", - "ParentId": "5b47574386f77428ca22b331", - "Price": 6700 - }, - { - "Id": "5d1b2ffd86f77425243e8d17", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 25300 - }, - { - "Id": "5d9f1fa686f774726974a992", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 95021 - }, - { - "Id": "5d1b304286f774253763a528", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 38000 - }, - { - "Id": "5d1b309586f77425227d1676", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 21500 - }, - { - "Id": "5dcbd56fdbd3d91b3e5468d5", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 63230 - }, - { - "Id": "5d1c774f86f7746d6620f8db", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 14500 - }, - { - "Id": "5dcbe965e4ed22586443a79d", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 5120 - }, - { - "Id": "5de8f2d5b74cd90030650c72", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 25400 - }, - { - "Id": "5d4042a986f7743185265463", - "ParentId": "5b47574386f77428ca22b2f6", - "Price": 33000 - }, - { - "Id": "5df8e085bb49d91fb446d6a8", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 1050 - }, - { - "Id": "5e71fad086f77422443d4604", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 32000 - }, - { - "Id": "5d4aaa73a4b9365392071175", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 24200 - }, - { - "Id": "5d5e9c74a4b9364855191c40", - "ParentId": "5b47574386f77428ca22b330", - "Price": 2463 - }, - { - "Id": "5d6d3829a4b9361bc8618943", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 33350 - }, - { - "Id": "5d6e68a8a4b9360b6c0d54e2", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 890 - }, - { - "Id": "5d80cb3886f77440556dbf09", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 25109 - }, - { - "Id": "5d95d6be86f77424444eb3a7", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 28994 - }, - { - "Id": "5de8f237bbaf010b10528a70", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 4350 - }, - { - "Id": "5de8fb539f98ac2bc659513a", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 900 - }, - { - "Id": "5df25d3bfd6b4e6e2276dc9a", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 6500 - }, - { - "Id": "5dfce88fe9dc277128008b2e", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 1450 - }, - { - "Id": "5e01f31d86f77465cf261343", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 49000 - }, - { - "Id": "5e2af02c86f7746d420957d4", - "ParentId": "5b47574386f77428ca22b2f0", - "Price": 11000 - }, - { - "Id": "5e2af55f86f7746d4159f07c", - "ParentId": "5b5f6fa186f77409407a7eb7", - "Price": 510000 - }, - { - "Id": "5e4ac41886f77406a511c9a8", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 3950 + "Price": 6230 }, { "Id": "5c7e5f112e221600106f4ede", @@ -10226,6 +9736,281 @@ "ParentId": "5b5f755f86f77447ec5d770e", "Price": 9209 }, + { + "Id": "5c6175362e221600133e3b94", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 41600 + }, + { + "Id": "5c6d7b3d2e221600114c9b7d", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 3100 + }, + { + "Id": "5c94bbff86f7747ee735c08f", + "ParentId": "5c518ed586f774119a772aee", + "Price": 100000 + }, + { + "Id": "5cbdb1b0ae9215000d50e105", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2168 + }, + { + "Id": "5cc7012ae4a949001252b43e", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1000 + }, + { + "Id": "5cde7afdd7f00c000d36b89d", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 9900 + }, + { + "Id": "5d0a29ead7ad1a0026013f27", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1750 + }, + { + "Id": "5d120a10d7ad1a4e1026ba85", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 10650 + }, + { + "Id": "5d123b7dd7ad1a004f01b262", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 2850 + }, + { + "Id": "5d133067d7ad1a33013f95b4", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1573 + }, + { + "Id": "5d15ce51d7ad1a1eff619092", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 4414 + }, + { + "Id": "5d1b36a186f7742523398433", + "ParentId": "5b47574386f77428ca22b2f2", + "Price": 48000 + }, + { + "Id": "5d235a5986f77443f6329bc6", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 55000 + }, + { + "Id": "5d235b4d86f7742e017bc88a", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 35800 + }, + { + "Id": "5d25af8f8abbc3055079fec5", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 4340 + }, + { + "Id": "5d403f9186f7743cac3f229b", + "ParentId": "5b47574386f77428ca22b335", + "Price": 50000 + }, + { + "Id": "5d40419286f774318526545f", + "ParentId": "5b47574386f77428ca22b2f6", + "Price": 22300 + }, + { + "Id": "5d4405aaa4b9361e6a4e6bd3", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 9200 + }, + { + "Id": "5d5d8ca986f7742798716522", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 9600 + }, + { + "Id": "5d6d2ef3a4b93618084f58bd", + "ParentId": "5b47574386f77428ca22b331", + "Price": 6700 + }, + { + "Id": "5d9f1fa686f774726974a992", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 95021 + }, + { + "Id": "5dcbd56fdbd3d91b3e5468d5", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 63230 + }, + { + "Id": "5dcbe965e4ed22586443a79d", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 5120 + }, + { + "Id": "5de8f2d5b74cd90030650c72", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 25400 + }, + { + "Id": "5df8e085bb49d91fb446d6a8", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 1050 + }, + { + "Id": "5e71fad086f77422443d4604", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 32000 + }, + { + "Id": "5ca2151486f774244a3b8d30", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 5745 + }, + { + "Id": "5cadc55cae921500103bb3be", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 2350 + }, + { + "Id": "5cc700d4e4a949000f0f0f28", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 4150 + }, + { + "Id": "5cc86840d7f00c002412c56c", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 220 + }, + { + "Id": "5cf638cbd7f00c06595bc936", + "ParentId": "5b5f748386f774093e6cb501", + "Price": 14500 + }, + { + "Id": "5d024f5cd7ad1a04a067e91a", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2450 + }, + { + "Id": "5d02677ad7ad1a04a15c0f95", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 8400 + }, + { + "Id": "5d123102d7ad1a004e475fe5", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 11690 + }, + { + "Id": "5d19cd96d7ad1a4a992c9f52", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 10200 + }, + { + "Id": "5d1b2ffd86f77425243e8d17", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 25300 + }, + { + "Id": "5d1b304286f774253763a528", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 38000 + }, + { + "Id": "5d1b309586f77425227d1676", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 21500 + }, + { + "Id": "5d1c774f86f7746d6620f8db", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 14500 + }, + { + "Id": "5d4042a986f7743185265463", + "ParentId": "5b47574386f77428ca22b2f6", + "Price": 33000 + }, + { + "Id": "5d4aaa73a4b9365392071175", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 24200 + }, + { + "Id": "5d5e9c74a4b9364855191c40", + "ParentId": "5b47574386f77428ca22b330", + "Price": 2463 + }, + { + "Id": "5d6d3829a4b9361bc8618943", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 33350 + }, + { + "Id": "5d6e68a8a4b9360b6c0d54e2", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 890 + }, + { + "Id": "5d80cb3886f77440556dbf09", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 25109 + }, + { + "Id": "5d95d6be86f77424444eb3a7", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 28994 + }, + { + "Id": "5de8f237bbaf010b10528a70", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 4350 + }, + { + "Id": "5de8fb539f98ac2bc659513a", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 900 + }, + { + "Id": "5df25d3bfd6b4e6e2276dc9a", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 6500 + }, + { + "Id": "5dfce88fe9dc277128008b2e", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 1450 + }, + { + "Id": "5e01f31d86f77465cf261343", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 49000 + }, + { + "Id": "5e2af02c86f7746d420957d4", + "ParentId": "5b47574386f77428ca22b2f0", + "Price": 11000 + }, + { + "Id": "5e2af55f86f7746d4159f07c", + "ParentId": "5b5f6fa186f77409407a7eb7", + "Price": 510000 + }, + { + "Id": "5e4ac41886f77406a511c9a8", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 3950 + }, + { + "Id": "5c5db6552e2216001026119d", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1450 + }, { "Id": "5c5db6652e221600113fba51", "ParentId": "5b5f754a86f774094242f19b", @@ -10351,6 +10136,221 @@ "ParentId": "5b5f6f6c86f774093f2ecf0b", "Price": 20000 }, + { + "Id": "5c6d11152e2216000f2003e7", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 16700 + }, + { + "Id": "5c6d450c2e221600114c997d", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3425 + }, + { + "Id": "5c6d85e02e22165df16b81f4", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 21130 + }, + { + "Id": "5c78f2612e221600114c9f0d", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 44900 + }, + { + "Id": "5c9a26332e2216001219ea70", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 15800 + }, + { + "Id": "5ca20abf86f77418567a43f2", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 23822 + }, + { + "Id": "5ca21c6986f77479963115a7", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 7343 + }, + { + "Id": "5cda9bcfd7f00c0c0b53e900", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 2150 + }, + { + "Id": "5d0376a486f7747d8050965c", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 40000 + }, + { + "Id": "5d08d21286f774736e7c94c3", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 151432 + }, + { + "Id": "5d440b93a4b9364276578d4b", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 31567 + }, + { + "Id": "5d6d3943a4b9360dbc46d0cc", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 1500 + }, + { + "Id": "5d6d3be5a4b9361bc73bc763", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 33200 + }, + { + "Id": "5d6e6a5fa4b93614ec501745", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 180 + }, + { + "Id": "5d80c6c586f77440351beef1", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 19070 + }, + { + "Id": "5d80c95986f77440351beef3", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 22250 + }, + { + "Id": "5d80cbd886f77470855c26c2", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 18250 + }, + { + "Id": "5d96141523f0ea1b7f2aacab", + "ParentId": "5b47574386f77428ca22b330", + "Price": 10200 + }, + { + "Id": "5de8eac42a78646d96665d91", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 4100 + }, + { + "Id": "5df8a72c86f77412640e2e83", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 10000 + }, + { + "Id": "5dfa3d7ac41b2312ea33362a", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 3525 + }, + { + "Id": "5dfe6104585a0c3e995c7b82", + "ParentId": "5b5f748386f774093e6cb501", + "Price": 51344 + }, + { + "Id": "5e2af37686f774755a234b65", + "ParentId": "5b47574386f77428ca22b2f2", + "Price": 16000 + }, + { + "Id": "5e4abfed86f77406a2713cf7", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 19200 + }, + { + "Id": "5e54f76986f7740366043752", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 42000 + }, + { + "Id": "5c6592372e221600133e47d7", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 37755 + }, + { + "Id": "5c6d46132e221601da357d56", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 4680 + }, + { + "Id": "5c7d55f52e221644f31bff6a", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2400 + }, + { + "Id": "5cadf6eeae921500134b2799", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 900 + }, + { + "Id": "5caf1109ae9215753c44119f", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 16600 + }, + { + "Id": "5cc6ea85e4a949000e1ea3c3", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 2663 + }, + { + "Id": "5cc9ad73d7f00c000e2579d4", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 5960 + }, + { + "Id": "5cde77a9d7f00c000f261009", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2602 + }, + { + "Id": "5cf50fc5d7f00c056c53f83c", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 6200 + }, + { + "Id": "5d1b33a686f7742523398398", + "ParentId": "5b47574386f77428ca22b335", + "Price": 50000 + }, + { + "Id": "5d2f0d8048f0356c925bc3b0", + "ParentId": "5b5f796a86f774093f2ed3c0", + "Price": 9500 + }, + { + "Id": "5d3eb536a4b9363b1f22f8e2", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 800 + }, + { + "Id": "5d4aaa54a4b9365392071170", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 27800 + }, + { + "Id": "5df24cf80dee1b22f862e9bc", + "ParentId": "5b5f798886f77447ed5636b5", + "Price": 26974 + }, + { + "Id": "5e023d48186a883be655e551", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 1980 + }, + { + "Id": "5e2af41e86f774755a234b67", + "ParentId": "5b47574386f77428ca22b2f4", + "Price": 13200 + }, + { + "Id": "5e5699df2161e06ac158df6f", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 9600 + }, + { + "Id": "5e569a132642e66b0b68015c", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2600 + }, { "Id": "5c82343a2e221644f31c0611", "ParentId": "5b5f748386f774093e6cb501", @@ -10546,11 +10546,36 @@ "ParentId": "5b5f757486f774093e6cb507", "Price": 8824 }, + { + "Id": "5e848d2eea0a7c419c2f9bfd", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 7403 + }, + { + "Id": "5e81ee213397a21db957f6a6", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 502 + }, + { + "Id": "5ede475b549eed7c6d5c18fb", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 5600 + }, + { + "Id": "5e81ee4dcb2b95385c177582", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 604 + }, { "Id": "5e81c519cb2b95385c177551", "ParentId": "5b5f75c686f774094242f19f", "Price": 1700 }, + { + "Id": "5ea058e01dbce517f324b3e2", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 61000 + }, { "Id": "5e85aa1a988a8701445df1f5", "ParentId": "5b47574386f77428ca22b33b", @@ -10681,141 +10706,6 @@ "ParentId": "5b5f74cc86f77447ec5d770a", "Price": 500 }, - { - "Id": "5e81ee4dcb2b95385c177582", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 604 - }, - { - "Id": "5ede475b549eed7c6d5c18fb", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 5600 - }, - { - "Id": "5f3e778efcd9b651187d7201", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 1200 - }, - { - "Id": "5fb651b52b1b027b1f50bcff", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1550 - }, - { - "Id": "5fb6558ad6f0b2136f2d7eb7", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 6120 - }, - { - "Id": "5fb655b748c711690e3a8d5a", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 3900 - }, - { - "Id": "5fbbaa86f9986c4cff3fe5f6", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 7900 - }, - { - "Id": "5fbcc429900b1d5091531dd7", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 4839 - }, - { - "Id": "5fc23636016cce60e8341b05", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 8120 - }, - { - "Id": "5fc4b992187fea44d52edaa9", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 3750 - }, - { - "Id": "5fd4c474dd870108a754b241", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 150996 - }, - { - "Id": "5fd4c4fa16cac650092f6771", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 5000 - }, - { - "Id": "601948682627df266209af05", - "ParentId": "5b5f7a0886f77409407a7f96", - "Price": 832500 - }, - { - "Id": "60339954d62c9b14ed777c06", - "ParentId": "5b5f796a86f774093f2ed3c0", - "Price": 12500 - }, - { - "Id": "60391afc25aff57af81f7085", - "ParentId": "5b47574386f77428ca22b2f6", - "Price": 124000 - }, - { - "Id": "606f263a8900dc2d9a55b68d", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 6231 - }, - { - "Id": "6087e0336d0bd7580617bb7a", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 50000 - }, - { - "Id": "60915994c49cf53e4772cc38", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 0 - }, - { - "Id": "60b0f6c058e0b0481a09ad11", - "ParentId": "5b5f6fa186f77409407a7eb7", - "Price": 40542 - }, - { - "Id": "61659f79d92c473c770213ee", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 25000 - }, - { - "Id": "61715e7e67085e45ef140b33", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 6000 - }, - { - "Id": "6176aca650224f204c1da3fb", - "ParentId": "5b5f791486f774093f2ed3be", - "Price": 30500 - }, - { - "Id": "6184055050224f204c1da540", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 17000 - }, - { - "Id": "618b9643526131765025ab35", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 12500 - }, - { - "Id": "618b9682a3884f56c957ca78", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2000 - }, - { - "Id": "618cfae774bb2d036a049e7c", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 28500 - }, - { - "Id": "6194f2912d2c397d6600348d", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 700 - }, { "Id": "5e81c6a2ac2bb513793cdc7f", "ParentId": "5b5f74cc86f77447ec5d770a", @@ -10831,16 +10721,6 @@ "ParentId": "5b5f794b86f77409407a7f92", "Price": 14402 }, - { - "Id": "6194f5722d2c397d6600348f", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 3900 - }, - { - "Id": "61962d879bb3d20b0946d385", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 670 - }, { "Id": "5e87076ce2db31558c75a11d", "ParentId": "5b5f75e486f77447ec5d7712", @@ -11007,9 +10887,9 @@ "Price": 413 }, { - "Id": "5e8488fa988a8701445df1e4", - "ParentId": "5b47574386f77428ca22b339", - "Price": 5712 + "Id": "5ea03e5009aa976f2e7a514b", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 1200 }, { "Id": "5e81c4ca763d9f754677befa", @@ -11017,199 +10897,684 @@ "Price": 1100 }, { - "Id": "5e831507ea0a7c419c2f9bd9", - "ParentId": "5b47574386f77428ca22b339", - "Price": 1920 - }, - { - "Id": "5e81ee213397a21db957f6a6", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 502 - }, - { - "Id": "5ea058e01dbce517f324b3e2", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 61000 + "Id": "5e81c6bf763d9f754677beff", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 800 }, { "Id": "5e848cc2988a8701445df1e8", "ParentId": "5b5f794b86f77409407a7f92", "Price": 18402 }, - { - "Id": "5e848d2eea0a7c419c2f9bfd", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 7403 - }, - { - "Id": "5e81c6bf763d9f754677beff", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 800 - }, { "Id": "5e81c3cbac2bb513793cdc75", "ParentId": "5b5f792486f77447ed5636b3", "Price": 5408 }, { - "Id": "5ed51652f6c34d2cc26336a1", - "ParentId": "5b47574386f77428ca22b33a", - "Price": 43550 + "Id": "5e8488fa988a8701445df1e4", + "ParentId": "5b47574386f77428ca22b339", + "Price": 5712 }, { - "Id": "5ed5166ad380ab312177c100", - "ParentId": "5b47574386f77428ca22b33a", - "Price": 61893 + "Id": "5e831507ea0a7c419c2f9bd9", + "ParentId": "5b47574386f77428ca22b339", + "Price": 1920 }, { - "Id": "5ef3448ab37dfd6af863525c", + "Id": "5f3e778efcd9b651187d7201", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 1200 + }, + { + "Id": "5fb651b52b1b027b1f50bcff", "ParentId": "5b5f754a86f774094242f19b", - "Price": 2100 + "Price": 1550 }, { - "Id": "5f3e77f59103d430b93f94c1", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 3200 + "Id": "5fb6558ad6f0b2136f2d7eb7", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 6120 }, { - "Id": "5f6341043ada5942720e2dc5", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 5800 + "Id": "5fb655b748c711690e3a8d5a", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 3900 }, { - "Id": "5f647f31b6238e5dd066e196", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 96 - }, - { - "Id": "5f994730c91ed922dd355de3", - "ParentId": "5b47574386f77428ca22b330", - "Price": 20000 - }, - { - "Id": "5fbc22ccf24b94483f726483", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 4230 - }, - { - "Id": "5fbcbd6c187fea44d52eda14", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 2400 - }, - { - "Id": "5fc278107283c4046c581489", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 22150 - }, - { - "Id": "5fce16961f152d4312622bc9", + "Id": "5fbbaa86f9986c4cff3fe5f6", "ParentId": "5b5f757486f774093e6cb507", "Price": 7900 }, { - "Id": "602a97060ddce744014caf6f", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 31000 + "Id": "5fbcc429900b1d5091531dd7", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 4839 }, { - "Id": "602e63fb6335467b0c5ac94d", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 4198 - }, - { - "Id": "603372f153a60014f970616d", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 10000 - }, - { - "Id": "60337f5dce399e10262255d1", + "Id": "5fc23636016cce60e8341b05", "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 1907 + "Price": 8120 }, { - "Id": "603409c80ca681766b6a0fb2", - "ParentId": "5b47574386f77428ca22b331", - "Price": 15600 + "Id": "5fc4b992187fea44d52edaa9", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 3750 }, { - "Id": "6034cf5fffd42c541047f72e", + "Id": "5fd4c474dd870108a754b241", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 150996 + }, + { + "Id": "5fd4c4fa16cac650092f6771", "ParentId": "5b5f6f8786f77447ed563642", - "Price": 25700 - }, - { - "Id": "603618feffd42c541047f771", - "ParentId": "5b47574386f77428ca22b330", - "Price": 4353 - }, - { - "Id": "60785ce5132d4d12c81fd918", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 5900 - }, - { - "Id": "609b9e31506cf869cf3eaf41", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 8767 - }, - { - "Id": "60a621c49c197e4e8c4455e6", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 33750 - }, - { - "Id": "6113c3586c780c1e710c90bc", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 6700 - }, - { - "Id": "6130ca3fd92c473c77020dbd", - "ParentId": "5b5f751486f77447ec5d770c", "Price": 5000 }, { - "Id": "615d8df08004cc50514c3236", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 5500 + "Id": "601948682627df266209af05", + "ParentId": "5b5f7a0886f77409407a7f96", + "Price": 832500 }, { - "Id": "615d8e2f1cb55961fa0fd9a4", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 9300 + "Id": "60339954d62c9b14ed777c06", + "ParentId": "5b5f796a86f774093f2ed3c0", + "Price": 12500 }, { - "Id": "61702d8a67085e45ef140b24", - "ParentId": "5b5f751486f77447ec5d770c", + "Id": "60391afc25aff57af81f7085", + "ParentId": "5b47574386f77428ca22b2f6", + "Price": 124000 + }, + { + "Id": "606f263a8900dc2d9a55b68d", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 6231 + }, + { + "Id": "6087e0336d0bd7580617bb7a", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 50000 + }, + { + "Id": "60915994c49cf53e4772cc38", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 0 + }, + { + "Id": "60b0f6c058e0b0481a09ad11", + "ParentId": "5b5f6fa186f77409407a7eb7", + "Price": 40542 + }, + { + "Id": "61659f79d92c473c770213ee", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 25000 + }, + { + "Id": "61715e7e67085e45ef140b33", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 6000 + }, + { + "Id": "6176aca650224f204c1da3fb", + "ParentId": "5b5f791486f774093f2ed3be", + "Price": 30500 + }, + { + "Id": "6184055050224f204c1da540", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 17000 + }, + { + "Id": "618b9643526131765025ab35", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 12500 + }, + { + "Id": "618b9682a3884f56c957ca78", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2000 + }, + { + "Id": "618cfae774bb2d036a049e7c", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 28500 + }, + { + "Id": "6194f2912d2c397d6600348d", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 700 + }, + { + "Id": "6194f5722d2c397d6600348f", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 3900 + }, + { + "Id": "61962d879bb3d20b0946d385", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 670 + }, + { + "Id": "5ea03e9400685063ec28bfa4", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2120 + }, + { + "Id": "5ea172e498dacb342978818e", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 6900 + }, + { + "Id": "5efaf417aeb21837e749c7f2", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 18327 + }, + { + "Id": "5efb0da7a29a85116f6ea05f", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 600 + }, + { + "Id": "5eff135be0d3331e9d282b7b", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 12000 + }, + { + "Id": "5f2a9575926fd9352339381f", + "ParentId": "5b5f78e986f77447ed5636b1", + "Price": 23300 + }, + { + "Id": "5f2aa4464b50c14bcf07acdb", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 400 + }, + { + "Id": "5f2aa49f9b44de6b1b4e68d4", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2640 + }, + { + "Id": "5f4f9eb969cdc30ff33f09db", + "ParentId": "5b47574386f77428ca22b345", + "Price": 65700 + }, + { + "Id": "5f5e45cc5021ce62144be7aa", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 18000 + }, + { + "Id": "5f60c74e3b85f6263c145586", + "ParentId": "5b47574386f77428ca22b330", + "Price": 8900 + }, + { + "Id": "5fb65424956329274326f316", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 1340 + }, + { + "Id": "5fb6567747ce63734e3fa1dc", + "ParentId": "5b5f746686f77447ec5d7708", "Price": 2200 }, { - "Id": "6183d53f1cb55961fa0fdcda", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 4500 + "Id": "5fbb976df9986c4cff3fe5f2", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1100 }, { - "Id": "618405198004cc50514c3594", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 6200 + "Id": "5fbcbcf593164a5b6278efb2", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 1840 }, { - "Id": "618aef6d0a5a59657e5f55ee", + "Id": "5fc4b9b17283c4046c5814d7", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 37742 + }, + { + "Id": "5fd4c60f875c30179f5d04c2", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 30015 + }, + { + "Id": "60098ad7c2240c0fe85c570a", + "ParentId": "5b47574386f77428ca22b338", + "Price": 41600 + }, + { + "Id": "601aa3d2b2bcb34913271e6d", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 1400 + }, + { + "Id": "602e3f1254072b51b239f713", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1200 + }, + { + "Id": "6034e3e20ddce744014cb878", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 12500 + }, + { + "Id": "60361a7497633951dc245eb4", "ParentId": "5b47574386f77428ca22b330", - "Price": 9556 + "Price": 1353 }, { - "Id": "619386379fb0c665d5490dbe", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 3250 + "Id": "60658776f2cb2e02a42ace2b", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 26300 }, { - "Id": "619b5db699fb192e7430664f", + "Id": "606dae0ab0e443224b421bb7", + "ParentId": "5b5f794b86f77409407a7f92", + "Price": 18900 + }, + { + "Id": "60785c0d232e5a31c233d51c", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 1476 + }, + { + "Id": "607d5aa50494a626335e12ed", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 1829 + }, + { + "Id": "60926df0132d4d12c81fd9df", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 62325 + }, + { + "Id": "60db29ce99594040e04c4a27", + "ParentId": "5b5f794b86f77409407a7f92", + "Price": 9600 + }, + { + "Id": "612e0e3c290d254f5e6b291d", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 9200 + }, + { + "Id": "6165ac306ef05c2ce828ef74", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 25800 + }, + { + "Id": "61695095d92c473c7702147a", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 24500 + }, + { + "Id": "61702f1b67085e45ef140b26", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 6000 + }, + { + "Id": "61712eae6c780c1e710c9a1d", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 8600 + }, + { + "Id": "617131a4568c120fdd29482d", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3450 + }, + { + "Id": "61713308d92c473c770214a0", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 3750 + }, + { + "Id": "6183fd9e8004cc50514c358f", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 32000 + }, + { + "Id": "6194ef39de3cdf1d2614a768", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 2500 + }, + { + "Id": "6194f35c18a3974e5e7421e6", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 600 + }, + { + "Id": "5e848db4681bea2ada00daa9", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1486 + }, + { + "Id": "5e87071478f43e51ca2de5e1", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 9800 + }, + { + "Id": "5e87114fe2db31558c75a120", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 800 + }, + { + "Id": "5ea16acdfadf1d18c87b0784", "ParentId": "5b5f75e486f77447ec5d7712", "Price": 16100 }, { - "Id": "5ea03e5009aa976f2e7a514b", + "Id": "5efb0c1bd79ff02a1f5e68d9", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 1723 + }, + { + "Id": "5f3e7823ddc4f03b010e2045", "ParentId": "5b5f764186f77447ec5d7714", - "Price": 1200 + "Price": 5100 + }, + { + "Id": "5f3e78a7fbf956000b716b8e", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 750 + }, + { + "Id": "5f60cd6cf2bcbb675b00dac6", + "ParentId": "5b5f6f3c86f774094242ef87", + "Price": 60125 + }, + { + "Id": "5f745ee30acaeb0d490d8c5b", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 55000 + }, + { + "Id": "5fb655a72b1b027b1f50bd06", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1500 + }, + { + "Id": "5fbbc3324e8a554c40648348", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 1340 + }, + { + "Id": "5fbbfacda56d053a3543f799", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 19418 + }, + { + "Id": "5fc4b97bab884124df0cd5e3", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 3990 + }, + { + "Id": "60a23797a37c940de7062d02", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 28900 + }, + { + "Id": "612368f58b401f4f51239b33", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 6280 + }, + { + "Id": "617130016c780c1e710c9a24", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2100 + }, + { + "Id": "618178aa1cb55961fa0fdc80", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 4200 + }, + { + "Id": "6193d3cded0429009f543e6a", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 700 + }, + { + "Id": "6194f02d9bb3d20b0946d2f0", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 6000 + }, + { + "Id": "6196255558ef8c428c287d1c", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1500 + }, + { + "Id": "5ef1b9f0c64c5d0dfc0571a1", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2600 + }, + { + "Id": "5f0596629e22f464da6bbdd9", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 720 + }, + { + "Id": "5f60c076f2bcbb675b00dac2", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 24500 + }, + { + "Id": "5fb64bc92b1b027b1f50bcf2", + "ParentId": "5b5f796a86f774093f2ed3c0", + "Price": 31650 + }, + { + "Id": "5fbbfabed5cb881a7363194e", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 16118 + }, + { + "Id": "5fbc210bf24b94483f726481", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 4500 + }, + { + "Id": "60194943740c5d77f6705eea", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 296 + }, + { + "Id": "60228a76d62c9b14ed777a66", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 800 + }, + { + "Id": "602293f023506e50807090cb", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 950 + }, + { + "Id": "6086b5731246154cad35d6c7", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 15800 + }, + { + "Id": "60a3b6359c427533db36cf84", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 0 + }, + { + "Id": "6113d6c3290d254f5e6b27db", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 5100 + }, + { + "Id": "6130c4d51cb55961fa0fd49f", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 41742 + }, + { + "Id": "615d8faecabb9b7ad90f4d5d", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 6500 + }, + { + "Id": "61816dfa6ef05c2ce828f1ad", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1230 + }, + { + "Id": "61840bedd92c473c77021635", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2100 + }, + { + "Id": "618ba91477b82356f91ae0e8", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1700 + }, + { + "Id": "6193d382ed0429009f543e65", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 2800 + }, + { + "Id": "6193dcd0f8ee7e52e4210a28", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 3200 + }, + { + "Id": "6194f2df645b5d229654ad77", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 800 + }, + { + "Id": "5ef366938cef260c0642acad", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 2900 + }, + { + "Id": "5efb0d4f4bc50b58e81710f3", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 76 + }, + { + "Id": "5f2aa46b878ef416f538b567", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 15700 + }, + { + "Id": "5f60b34a41e30a4ab12a6947", + "ParentId": "5b47574386f77428ca22b330", + "Price": 2566 + }, + { + "Id": "5f60bf4558eff926626a60f2", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 22437 + }, + { + "Id": "5f6340d3ca442212f4047eb2", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 7500 + }, + { + "Id": "5fb651dc85f90547f674b6f4", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 4100 + }, + { + "Id": "5fc0f9b5d724d907e2077d82", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 7809 + }, + { + "Id": "5fc22d7c187fea44d52eda44", + "ParentId": "5b5f791486f774093f2ed3be", + "Price": 64400 + }, + { + "Id": "5fc382a9d724d907e2077dab", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 4580 + }, + { + "Id": "602a95fe4e02ce1eaa358729", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 4948 + }, + { + "Id": "603372d154072b51b239f9e1", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 7500 + }, + { + "Id": "6033fa48ffd42c541047f728", + "ParentId": "5b5f6f3c86f774094242ef87", + "Price": 25000 + }, + { + "Id": "6034e3cb0ddce744014cb870", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 10500 + }, + { + "Id": "606587252535c57a13424cfd", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 25197 + }, + { + "Id": "607ffb988900dc2d9a55b6e4", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 13000 + }, + { + "Id": "60a3c68c37ea821725773ef5", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 2461 + }, + { + "Id": "618167441cb55961fa0fdc71", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2100 + }, + { + "Id": "618167616ef05c2ce828f1a8", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2500 + }, + { + "Id": "6181688c6c780c1e710c9b04", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 2400 + }, + { + "Id": "618168b350224f204c1da4d8", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 42200 + }, + { + "Id": "61825d06d92c473c770215de", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 6500 + }, + { + "Id": "6183afd850224f204c1da514", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 24400 + }, + { + "Id": "6194f3286db0f2477964e67d", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 700 + }, + { + "Id": "6194f5a318a3974e5e7421eb", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 3600 + }, + { + "Id": "6196365d58ef8c428c287da1", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 122 }, { "Id": "5e81f423763d9f754677bf2e", @@ -11376,106 +11741,6 @@ "ParentId": "5b5f757486f774093e6cb507", "Price": 31263 }, - { - "Id": "5ef1b9f0c64c5d0dfc0571a1", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2600 - }, - { - "Id": "5f0596629e22f464da6bbdd9", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 720 - }, - { - "Id": "5f60c076f2bcbb675b00dac2", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 24500 - }, - { - "Id": "5fb64bc92b1b027b1f50bcf2", - "ParentId": "5b5f796a86f774093f2ed3c0", - "Price": 31650 - }, - { - "Id": "5fbbfabed5cb881a7363194e", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 16118 - }, - { - "Id": "5fbc210bf24b94483f726481", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 4500 - }, - { - "Id": "60194943740c5d77f6705eea", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 296 - }, - { - "Id": "60228a76d62c9b14ed777a66", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 800 - }, - { - "Id": "602293f023506e50807090cb", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 950 - }, - { - "Id": "6086b5731246154cad35d6c7", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 15800 - }, - { - "Id": "60a3b6359c427533db36cf84", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 0 - }, - { - "Id": "6113d6c3290d254f5e6b27db", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 5100 - }, - { - "Id": "6130c4d51cb55961fa0fd49f", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 41742 - }, - { - "Id": "615d8faecabb9b7ad90f4d5d", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 6500 - }, - { - "Id": "61816dfa6ef05c2ce828f1ad", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1230 - }, - { - "Id": "61840bedd92c473c77021635", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2100 - }, - { - "Id": "618ba91477b82356f91ae0e8", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1700 - }, - { - "Id": "6193d382ed0429009f543e65", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 2800 - }, - { - "Id": "6193dcd0f8ee7e52e4210a28", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 3200 - }, - { - "Id": "6194f2df645b5d229654ad77", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 800 - }, { "Id": "5ea17bbc09aa976f2e7a51cd", "ParentId": "5b5f731a86f774093e6cb4f9", @@ -11486,11 +11751,36 @@ "ParentId": "5b47574386f77428ca22b33b", "Price": 420 }, + { + "Id": "5ed51652f6c34d2cc26336a1", + "ParentId": "5b47574386f77428ca22b33a", + "Price": 43550 + }, + { + "Id": "5ed5166ad380ab312177c100", + "ParentId": "5b47574386f77428ca22b33a", + "Price": 61893 + }, + { + "Id": "5ef3448ab37dfd6af863525c", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2100 + }, + { + "Id": "5f3e77f59103d430b93f94c1", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 3200 + }, { "Id": "5ede475339ee016e8c534742", "ParentId": "5b47574386f77428ca22b33b", "Price": 256 }, + { + "Id": "5f6341043ada5942720e2dc5", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 5800 + }, { "Id": "5f3e77b26cda304dcc634057", "ParentId": "5b5f754a86f774094242f19b", @@ -11501,26 +11791,51 @@ "ParentId": "5b5f75c686f774094242f19f", "Price": 3100 }, + { + "Id": "5f647f31b6238e5dd066e196", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 96 + }, { "Id": "5f60e7788adaa7100c3adb49", "ParentId": "5b47574386f77428ca22b330", "Price": 3400 }, + { + "Id": "5f994730c91ed922dd355de3", + "ParentId": "5b47574386f77428ca22b330", + "Price": 20000 + }, { "Id": "5f633f791b231926f2329f13", "ParentId": "5b5f724c86f774093f2ecf15", "Price": 11800 }, + { + "Id": "5fbc22ccf24b94483f726483", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 4230 + }, { "Id": "5fbe3ffdf8b6a877a729ea82", "ParentId": "5b47574386f77428ca22b33b", "Price": 288 }, + { + "Id": "5fbcbd6c187fea44d52eda14", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 2400 + }, { "Id": "5fc0f9cbd6fa9c00c571bb90", "ParentId": "5b5f71de86f774093f2ecf13", "Price": 5400 }, + { + "Id": "5fc278107283c4046c581489", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 22150 + }, { "Id": "5fc0fa957283c4046c58147e", "ParentId": "5b5f746686f77447ec5d7708", @@ -11531,6 +11846,11 @@ "ParentId": "5b5f757486f774093e6cb507", "Price": 6500 }, + { + "Id": "5fce16961f152d4312622bc9", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 7900 + }, { "Id": "5fca138c2a7b221b2852a5c6", "ParentId": "5b47574386f77428ca22b33a", @@ -11541,16 +11861,31 @@ "ParentId": "5b47574386f77428ca22b339", "Price": 3200 }, + { + "Id": "602a97060ddce744014caf6f", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 31000 + }, { "Id": "602e71bd53a60014f9705bfa", "ParentId": "5b5f761f86f774094242f1a1", "Price": 1650 }, + { + "Id": "602e63fb6335467b0c5ac94d", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 4198 + }, { "Id": "60391b0fb847c71012789415", "ParentId": "5b47574386f77428ca22b2f2", "Price": 35000 }, + { + "Id": "603372f153a60014f970616d", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 10000 + }, { "Id": "6065878ac9cf8012264142fd", "ParentId": "5b5f75c686f774094242f19f", @@ -11561,26 +11896,51 @@ "ParentId": "5b5f757486f774093e6cb507", "Price": 3286 }, + { + "Id": "60337f5dce399e10262255d1", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 1907 + }, { "Id": "609269c3b0e443224b421cc1", "ParentId": "5b5f724c86f774093f2ecf15", "Price": 8000 }, + { + "Id": "603409c80ca681766b6a0fb2", + "ParentId": "5b47574386f77428ca22b331", + "Price": 15600 + }, { "Id": "6123649463849f3d843da7c4", "ParentId": "5b5f75e486f77447ec5d7712", "Price": 1529 }, + { + "Id": "6034cf5fffd42c541047f72e", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 25700 + }, { "Id": "616584766ef05c2ce828ef57", "ParentId": "5b5f755f86f77447ec5d770e", "Price": 2800 }, + { + "Id": "603618feffd42c541047f771", + "ParentId": "5b47574386f77428ca22b330", + "Price": 4353 + }, { "Id": "61702be9faa1272e431522c3", "ParentId": "5b5f75c686f774094242f19f", "Price": 29000 }, + { + "Id": "60785ce5132d4d12c81fd918", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 5900 + }, { "Id": "6171367e1cb55961fa0fdb36", "ParentId": "5b5f731a86f774093e6cb4f9", @@ -11591,36 +11951,416 @@ "ParentId": "5b5f755f86f77447ec5d770e", "Price": 8100 }, + { + "Id": "609b9e31506cf869cf3eaf41", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 8767 + }, { "Id": "61825d136ef05c2ce828f1cc", "ParentId": "5b5f757486f774093e6cb507", "Price": 9000 }, + { + "Id": "60a621c49c197e4e8c4455e6", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 33750 + }, { "Id": "6183fd911cb55961fa0fdce9", "ParentId": "5b5f75c686f774094242f19f", "Price": 24000 }, + { + "Id": "6113c3586c780c1e710c90bc", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 6700 + }, + { + "Id": "6130ca3fd92c473c77020dbd", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 5000 + }, { "Id": "618a75f0bd321d49084cd399", "ParentId": "5b5f748386f774093e6cb501", "Price": 20500 }, + { + "Id": "615d8df08004cc50514c3236", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 5500 + }, + { + "Id": "615d8e2f1cb55961fa0fd9a4", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 9300 + }, { "Id": "61904c9df62c89219a56e034", "ParentId": "5b619f1a86f77450a702a6f3", "Price": 0 }, + { + "Id": "61702d8a67085e45ef140b24", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 2200 + }, { "Id": "619621a4de3cdf1d2614a7a7", "ParentId": "5b5f74cc86f77447ec5d770a", "Price": 3500 }, + { + "Id": "6183d53f1cb55961fa0fdcda", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 4500 + }, { "Id": "6197b229af1f5202c57a9bea", "ParentId": "5b5f757486f774093e6cb507", "Price": 3500 }, + { + "Id": "618405198004cc50514c3594", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 6200 + }, + { + "Id": "618aef6d0a5a59657e5f55ee", + "ParentId": "5b47574386f77428ca22b330", + "Price": 9556 + }, + { + "Id": "619386379fb0c665d5490dbe", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 3250 + }, + { + "Id": "619b5db699fb192e7430664f", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 16100 + }, + { + "Id": "5ea16d4d5aad6446a939753d", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 5180 + }, + { + "Id": "5e85a9a6eacf8c039e4e2ac1", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 78 + }, + { + "Id": "5ed515ece452db0eb56fc028", + "ParentId": "5b47574386f77428ca22b33a", + "Price": 40300 + }, + { + "Id": "5e87080c81c4ed43e83cefda", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1500 + }, + { + "Id": "5eea21647547d6330471b3c9", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 7900 + }, + { + "Id": "5e9dcf5986f7746c417435b3", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 22600 + }, + { + "Id": "5ea034eb5aad6446a939737b", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2631 + }, + { + "Id": "5ea05cf85ad9772e6624305d", + "ParentId": "5b47574386f77428ca22b330", + "Price": 550 + }, + { + "Id": "5ed515f6915ec335206e4152", + "ParentId": "5b47574386f77428ca22b33a", + "Price": 45500 + }, + { + "Id": "5ef61964ec7f42238c31e0c1", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 4700 + }, + { + "Id": "5efb0fc6aeb21837e749c801", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 150 + }, + { + "Id": "5ef369b08cef260c0642acaf", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2300 + }, + { + "Id": "5eff09cd30a7dc22fd1ddfed", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 123304 + }, + { + "Id": "5f3e777688ca2d00ad199d25", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 500 + }, + { + "Id": "5f3e76d86cda304dcc634054", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 500 + }, + { + "Id": "5f6339d53ada5942720e2dc3", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 9650 + }, + { + "Id": "5f3e7897ddc4f03b010e204a", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 800 + }, + { + "Id": "5f6372e2865db925d54f3869", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 8400 + }, + { + "Id": "5f63405df5750b524b45f114", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 5400 + }, + { + "Id": "5fbbc383d5cb881a7363194a", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 9700 + }, + { + "Id": "5fb6548dd1409e5ca04b54f9", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 400 + }, + { + "Id": "5fbbc34106bde7524f03cbe9", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 400 + }, + { + "Id": "5fbcc1d9016cce60e8341ab3", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 21300 + }, + { + "Id": "5fc3e466187fea44d52eda90", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2300 + }, + { + "Id": "5fc382b6d6fa9c00c571bbc3", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 680 + }, + { + "Id": "602a95edda11d6478d5a06da", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 2563 + }, + { + "Id": "5fc382c1016cce60e8341b20", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 830 + }, + { + "Id": "603373004e02ce1eaa358814", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 12500 + }, + { + "Id": "5fc3f2d5900b1d5091531e57", + "ParentId": "5b5f796a86f774093f2ed3c0", + "Price": 27800 + }, + { + "Id": "60338ff388382f4fab3fd2c8", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 1576 + }, + { + "Id": "5fca13ca637ee0341a484f46", + "ParentId": "5b47574386f77428ca22b33a", + "Price": 89700 + }, + { + "Id": "602286df23506e50807090c6", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1376 + }, + { + "Id": "6034d103ca006d2dca39b3f0", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 27111 + }, + { + "Id": "60363c0c92ec1c31037959f5", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 8386 + }, + { + "Id": "6034e3d953a60014f970617b", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 15000 + }, + { + "Id": "6038b4b292ec1c3103795a0b", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 8966 + }, + { + "Id": "606587d11246154cad35d635", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 3500 + }, + { + "Id": "6040dd4ddcf9592f401632d2", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 30148 + }, + { + "Id": "606f26752535c57a13424d22", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 1776 + }, + { + "Id": "6076c87f232e5a31c233d50e", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1221 + }, + { + "Id": "607d5a891246154cad35d6aa", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1299 + }, + { + "Id": "607f201b3c672b3b3a24a800", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 30454 + }, + { + "Id": "60b52e5bc7d8103275739d67", + "ParentId": "5b47574386f77428ca22b330", + "Price": 3170 + }, + { + "Id": "60c080eb991ac167ad1c3ad4", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 4500 + }, + { + "Id": "612e0e04568c120fdd294258", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 1000 + }, + { + "Id": "611a30addbdd8440277441dc", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 4100 + }, + { + "Id": "612e0e55a112697a4b3a66e7", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 10500 + }, + { + "Id": "612e0cfc8004cc50514c2d9e", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 9200 + }, + { + "Id": "6165ac8c290d254f5e6b2f6c", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 12200 + }, + { + "Id": "61605d88ffa6e502ac5e7eeb", + "ParentId": "5b5f737886f774093e6cb4fb", + "Price": 22000 + }, + { + "Id": "6171407e50224f204c1da3c5", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 7400 + }, + { + "Id": "616554fe50224f204c1da2aa", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2550 + }, + { + "Id": "617153016c780c1e710c9a2f", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1300 + }, + { + "Id": "617fd91e5539a84ec44ce155", + "ParentId": "5b5f7a2386f774093f2ed3c4", + "Price": 13900 + }, + { + "Id": "61816df1d3a39d50044c139e", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1420 + }, + { + "Id": "61825d24d3a39d50044c13af", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2200 + }, + { + "Id": "61816734d8e3106d9806c1f3", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 6000 + }, + { + "Id": "618a5d5852ecee1505530b2a", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 7000 + }, + { + "Id": "6194efe07c6c7b169525f11b", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 2900 + }, + { + "Id": "618ba92152ecee1505530bd3", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2000 + }, + { + "Id": "619624b26db0f2477964e6b0", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 6200 + }, + { + "Id": "6193a720f8ee7e52e42109ed", + "ParentId": "5b5f792486f77447ed5636b3", + "Price": 9500 + }, + { + "Id": "6193d3be7c6c7b169525f0da", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 750 + }, + { + "Id": "6194eff92d2c397d6600348b", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 3600 + }, { "Id": "5e848d51e4dbc5266a4ec63b", "ParentId": "5b5f75e486f77447ec5d7712", @@ -11796,356 +12536,6 @@ "ParentId": "5b5f755f86f77447ec5d770e", "Price": 10200 }, - { - "Id": "5e81ebcd8e146c7080625e15", - "ParentId": "5b5f79d186f774093f2ed3c2", - "Price": 110000 - }, - { - "Id": "5e85a9a6eacf8c039e4e2ac1", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 78 - }, - { - "Id": "5ea034f65aad6446a939737e", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 16000 - }, - { - "Id": "5e87080c81c4ed43e83cefda", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1500 - }, - { - "Id": "5ea16ada09aa976f2e7a51be", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 14400 - }, - { - "Id": "5e9dcf5986f7746c417435b3", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 22600 - }, - { - "Id": "5ede474b0c226a66f5402622", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 17125 - }, - { - "Id": "5ede7b0c6d23e5473e6e8c66", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 77000 - }, - { - "Id": "5efde6b4f5448336730dbd61", - "ParentId": "5c518ed586f774119a772aee", - "Price": 50000 - }, - { - "Id": "5f5e467b0bc58666c37e7821", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 58950 - }, - { - "Id": "5ea034eb5aad6446a939737b", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2631 - }, - { - "Id": "5f5e46b96bdad616ad46d613", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 90480 - }, - { - "Id": "5ea05cf85ad9772e6624305d", - "ParentId": "5b47574386f77428ca22b330", - "Price": 550 - }, - { - "Id": "5f60c85b58eff926626a60f7", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 79460 - }, - { - "Id": "5f60e6403b85f6263c14558c", - "ParentId": "5b47574386f77428ca22b330", - "Price": 1500 - }, - { - "Id": "5ed515f6915ec335206e4152", - "ParentId": "5b47574386f77428ca22b33a", - "Price": 45500 - }, - { - "Id": "5f6336bbda967c74a42e9932", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 21200 - }, - { - "Id": "5ef369b08cef260c0642acaf", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2300 - }, - { - "Id": "5f633f68f5750b524b45f112", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 13100 - }, - { - "Id": "5fb65363d1409e5ca04b54f5", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 8900 - }, - { - "Id": "5eff09cd30a7dc22fd1ddfed", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 123304 - }, - { - "Id": "5fb653962b1b027b1f50bd03", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 10700 - }, - { - "Id": "5fbc227aa56d053a3543f79e", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 10000 - }, - { - "Id": "5fc235db2770a0045c59c683", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 16400 - }, - { - "Id": "5f3e76d86cda304dcc634054", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 500 - }, - { - "Id": "60229948cacb6b0506369e27", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 900 - }, - { - "Id": "5f3e7897ddc4f03b010e204a", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 800 - }, - { - "Id": "5f63405df5750b524b45f114", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 5400 - }, - { - "Id": "602a9740da11d6478d5a06dc", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 7100 - }, - { - "Id": "5fb6548dd1409e5ca04b54f9", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 400 - }, - { - "Id": "5fbbc34106bde7524f03cbe9", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 400 - }, - { - "Id": "603372b4da11d6478d5a07ff", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 7000 - }, - { - "Id": "5fc3e466187fea44d52eda90", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2300 - }, - { - "Id": "602a95edda11d6478d5a06da", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 2563 - }, - { - "Id": "6038d614d10cbf667352dd44", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 27111 - }, - { - "Id": "603373004e02ce1eaa358814", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 12500 - }, - { - "Id": "606f262c6d0bd7580617bafa", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 3231 - }, - { - "Id": "60338ff388382f4fab3fd2c8", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 1576 - }, - { - "Id": "6087e663132d4d12c81fd96b", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 14300 - }, - { - "Id": "6034d103ca006d2dca39b3f0", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 27111 - }, - { - "Id": "609a63b6e2ff132951242d09", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 13225 - }, - { - "Id": "6034e3d953a60014f970617b", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 15000 - }, - { - "Id": "609bab8b455afd752b2e6138", - "ParentId": "5b5f749986f774094242f199", - "Price": 75794 - }, - { - "Id": "606587d11246154cad35d635", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 3500 - }, - { - "Id": "6076c87f232e5a31c233d50e", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1221 - }, - { - "Id": "60b52e5bc7d8103275739d67", - "ParentId": "5b47574386f77428ca22b330", - "Price": 3170 - }, - { - "Id": "60a283193cb70855c43a381d", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 11375 - }, - { - "Id": "60a3c70cde5f453f634816a3", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 2461 - }, - { - "Id": "611a30addbdd8440277441dc", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 4100 - }, - { - "Id": "60a7ad2a2198820d95707a2e", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 135000 - }, - { - "Id": "61703001d92c473c77021497", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 11200 - }, - { - "Id": "612e0cfc8004cc50514c2d9e", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 9200 - }, - { - "Id": "61714b2467085e45ef140b2c", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2300 - }, - { - "Id": "61605d88ffa6e502ac5e7eeb", - "ParentId": "5b5f737886f774093e6cb4fb", - "Price": 22000 - }, - { - "Id": "6183fc15d3a39d50044c13e9", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 30500 - }, - { - "Id": "616554fe50224f204c1da2aa", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2550 - }, - { - "Id": "617153016c780c1e710c9a2f", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1300 - }, - { - "Id": "618b9671d14d6d5ab879c5ea", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1500 - }, - { - "Id": "61816df1d3a39d50044c139e", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1420 - }, - { - "Id": "61825d24d3a39d50044c13af", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2200 - }, - { - "Id": "618bab21526131765025ab3f", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 13200 - }, - { - "Id": "618a5d5852ecee1505530b2a", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 7000 - }, - { - "Id": "618ba92152ecee1505530bd3", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2000 - }, - { - "Id": "618bb76513f5097c8d5aa2d5", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 29410 - }, - { - "Id": "6193a720f8ee7e52e42109ed", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 9500 - }, - { - "Id": "6193d3be7c6c7b169525f0da", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 750 - }, - { - "Id": "619268ad78f4fa33f173dbe5", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 0 - }, - { - "Id": "6194eff92d2c397d6600348b", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 3600 - }, - { - "Id": "6193d3149fb0c665d5490e32", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3000 - }, - { - "Id": "6194f017ed0429009f543eaa", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 4500 - }, { "Id": "5ede4739e0350d05467f73e8", "ParentId": "5b47574386f77428ca22b33b", @@ -12282,430 +12672,200 @@ "Price": 900 }, { - "Id": "5e848db4681bea2ada00daa9", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1486 + "Id": "5e81ebcd8e146c7080625e15", + "ParentId": "5b5f79d186f774093f2ed3c2", + "Price": 110000 }, { - "Id": "5e87071478f43e51ca2de5e1", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 9800 - }, - { - "Id": "5e87114fe2db31558c75a120", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 800 - }, - { - "Id": "5ea16acdfadf1d18c87b0784", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 16100 - }, - { - "Id": "5efb0c1bd79ff02a1f5e68d9", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 1723 - }, - { - "Id": "5f3e7823ddc4f03b010e2045", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 5100 - }, - { - "Id": "5f3e78a7fbf956000b716b8e", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 750 - }, - { - "Id": "5f60cd6cf2bcbb675b00dac6", - "ParentId": "5b5f6f3c86f774094242ef87", - "Price": 60125 - }, - { - "Id": "5f745ee30acaeb0d490d8c5b", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 55000 - }, - { - "Id": "5fb655a72b1b027b1f50bd06", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1500 - }, - { - "Id": "5fbbc3324e8a554c40648348", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 1340 - }, - { - "Id": "5fbbfacda56d053a3543f799", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 19418 - }, - { - "Id": "5fc4b97bab884124df0cd5e3", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 3990 - }, - { - "Id": "60a23797a37c940de7062d02", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 28900 - }, - { - "Id": "612368f58b401f4f51239b33", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 6280 - }, - { - "Id": "617130016c780c1e710c9a24", + "Id": "5ea034f65aad6446a939737e", "ParentId": "5b5f754a86f774094242f19b", - "Price": 2100 + "Price": 16000 }, { - "Id": "618178aa1cb55961fa0fdc80", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 4200 - }, - { - "Id": "6193d3cded0429009f543e6a", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 700 - }, - { - "Id": "6194f02d9bb3d20b0946d2f0", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 6000 - }, - { - "Id": "6196255558ef8c428c287d1c", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1500 - }, - { - "Id": "5ea16d4d5aad6446a939753d", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 5180 - }, - { - "Id": "5ed515ece452db0eb56fc028", - "ParentId": "5b47574386f77428ca22b33a", - "Price": 40300 - }, - { - "Id": "5eea21647547d6330471b3c9", + "Id": "5ea16ada09aa976f2e7a51be", "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 7900 + "Price": 14400 }, { - "Id": "5ef61964ec7f42238c31e0c1", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 4700 - }, - { - "Id": "5efb0fc6aeb21837e749c801", + "Id": "5ede474b0c226a66f5402622", "ParentId": "5b47574386f77428ca22b33b", - "Price": 150 + "Price": 17125 }, { - "Id": "5f3e777688ca2d00ad199d25", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 500 + "Id": "5ede7b0c6d23e5473e6e8c66", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 77000 }, { - "Id": "5f6339d53ada5942720e2dc3", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 9650 + "Id": "5efde6b4f5448336730dbd61", + "ParentId": "5c518ed586f774119a772aee", + "Price": 50000 }, { - "Id": "5f6372e2865db925d54f3869", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 8400 + "Id": "5f5e467b0bc58666c37e7821", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 58950 }, { - "Id": "5fbbc383d5cb881a7363194a", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 9700 + "Id": "5f5e46b96bdad616ad46d613", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 90480 }, { - "Id": "5fbcc1d9016cce60e8341ab3", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 21300 - }, - { - "Id": "5fc382b6d6fa9c00c571bbc3", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 680 - }, - { - "Id": "5fc382c1016cce60e8341b20", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 830 - }, - { - "Id": "5fc3f2d5900b1d5091531e57", - "ParentId": "5b5f796a86f774093f2ed3c0", - "Price": 27800 - }, - { - "Id": "5fca13ca637ee0341a484f46", - "ParentId": "5b47574386f77428ca22b33a", - "Price": 89700 - }, - { - "Id": "602286df23506e50807090c6", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1376 - }, - { - "Id": "60363c0c92ec1c31037959f5", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 8386 - }, - { - "Id": "6038b4b292ec1c3103795a0b", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 8966 - }, - { - "Id": "6040dd4ddcf9592f401632d2", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 30148 - }, - { - "Id": "606f26752535c57a13424d22", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 1776 - }, - { - "Id": "607d5a891246154cad35d6aa", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1299 - }, - { - "Id": "607f201b3c672b3b3a24a800", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 30454 - }, - { - "Id": "60c080eb991ac167ad1c3ad4", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 4500 - }, - { - "Id": "612e0e04568c120fdd294258", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 1000 - }, - { - "Id": "612e0e55a112697a4b3a66e7", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 10500 - }, - { - "Id": "6165ac8c290d254f5e6b2f6c", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 12200 - }, - { - "Id": "6171407e50224f204c1da3c5", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 7400 - }, - { - "Id": "617fd91e5539a84ec44ce155", - "ParentId": "5b5f7a2386f774093f2ed3c4", - "Price": 13900 - }, - { - "Id": "61816734d8e3106d9806c1f3", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 6000 - }, - { - "Id": "6194efe07c6c7b169525f11b", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 2900 - }, - { - "Id": "619624b26db0f2477964e6b0", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 6200 - }, - { - "Id": "5ef366938cef260c0642acad", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 2900 - }, - { - "Id": "5efb0d4f4bc50b58e81710f3", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 76 - }, - { - "Id": "5f2aa46b878ef416f538b567", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 15700 - }, - { - "Id": "5f60b34a41e30a4ab12a6947", - "ParentId": "5b47574386f77428ca22b330", - "Price": 2566 - }, - { - "Id": "5f60bf4558eff926626a60f2", + "Id": "5f60c85b58eff926626a60f7", "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 22437 + "Price": 79460 }, { - "Id": "5f6340d3ca442212f4047eb2", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 7500 + "Id": "5f60e6403b85f6263c14558c", + "ParentId": "5b47574386f77428ca22b330", + "Price": 1500 }, { - "Id": "5fb651dc85f90547f674b6f4", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 4100 - }, - { - "Id": "5fc0f9b5d724d907e2077d82", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 7809 - }, - { - "Id": "5fc22d7c187fea44d52eda44", - "ParentId": "5b5f791486f774093f2ed3be", - "Price": 64400 - }, - { - "Id": "5fc382a9d724d907e2077dab", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 4580 - }, - { - "Id": "602a95fe4e02ce1eaa358729", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 4948 - }, - { - "Id": "603372d154072b51b239f9e1", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 7500 - }, - { - "Id": "6033fa48ffd42c541047f728", - "ParentId": "5b5f6f3c86f774094242ef87", - "Price": 25000 - }, - { - "Id": "6034e3cb0ddce744014cb870", + "Id": "5f6336bbda967c74a42e9932", "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 10500 + "Price": 21200 }, { - "Id": "606587252535c57a13424cfd", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 25197 - }, - { - "Id": "607ffb988900dc2d9a55b6e4", + "Id": "5f633f68f5750b524b45f112", "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 13000 + "Price": 13100 }, { - "Id": "60a3c68c37ea821725773ef5", + "Id": "5fb65363d1409e5ca04b54f5", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 8900 + }, + { + "Id": "5fb653962b1b027b1f50bd03", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 10700 + }, + { + "Id": "5fbc227aa56d053a3543f79e", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 10000 + }, + { + "Id": "5fc235db2770a0045c59c683", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 16400 + }, + { + "Id": "60229948cacb6b0506369e27", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 900 + }, + { + "Id": "602a9740da11d6478d5a06dc", + "ParentId": "5b5f792486f77447ed5636b3", + "Price": 7100 + }, + { + "Id": "603372b4da11d6478d5a07ff", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 7000 + }, + { + "Id": "6038d614d10cbf667352dd44", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 27111 + }, + { + "Id": "606f262c6d0bd7580617bafa", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 3231 + }, + { + "Id": "6087e663132d4d12c81fd96b", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 14300 + }, + { + "Id": "609a63b6e2ff132951242d09", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 13225 + }, + { + "Id": "609bab8b455afd752b2e6138", + "ParentId": "5b5f749986f774094242f199", + "Price": 75794 + }, + { + "Id": "60a283193cb70855c43a381d", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 11375 + }, + { + "Id": "60a3c70cde5f453f634816a3", "ParentId": "5b5f6f8786f77447ed563642", "Price": 2461 }, { - "Id": "618167441cb55961fa0fdc71", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2100 + "Id": "60a7ad2a2198820d95707a2e", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 135000 }, { - "Id": "618167616ef05c2ce828f1a8", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2500 + "Id": "61703001d92c473c77021497", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 11200 }, { - "Id": "6181688c6c780c1e710c9b04", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 2400 + "Id": "61714b2467085e45ef140b2c", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2300 }, { - "Id": "618168b350224f204c1da4d8", + "Id": "6183fc15d3a39d50044c13e9", "ParentId": "5b5f75c686f774094242f19f", - "Price": 42200 + "Price": 30500 }, { - "Id": "61825d06d92c473c770215de", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 6500 + "Id": "618b9671d14d6d5ab879c5ea", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1500 }, { - "Id": "6183afd850224f204c1da514", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 24400 + "Id": "618bab21526131765025ab3f", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 13200 }, { - "Id": "6194f3286db0f2477964e67d", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 700 + "Id": "618bb76513f5097c8d5aa2d5", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 29410 }, { - "Id": "6194f5a318a3974e5e7421eb", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 3600 + "Id": "619268ad78f4fa33f173dbe5", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 0 }, { - "Id": "6196365d58ef8c428c287da1", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 122 + "Id": "6193d3149fb0c665d5490e32", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3000 + }, + { + "Id": "6194f017ed0429009f543eaa", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 4500 }, { "Id": "5e81edc13397a21db957f6a1", "ParentId": "5b5f764186f77447ec5d7714", "Price": 3109 }, - { - "Id": "5ea03e9400685063ec28bfa4", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2120 - }, - { - "Id": "5ea172e498dacb342978818e", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 6900 - }, { "Id": "5e848d99865c0f329958c83b", "ParentId": "5b5f761f86f774094242f1a1", "Price": 2608 }, - { - "Id": "5efaf417aeb21837e749c7f2", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 18327 - }, - { - "Id": "5efb0da7a29a85116f6ea05f", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 600 - }, - { - "Id": "5eff135be0d3331e9d282b7b", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 12000 - }, { "Id": "5e87116b81c4ed43e83cefdd", "ParentId": "5b5f757486f774093e6cb507", "Price": 1500 }, - { - "Id": "5f2a9575926fd9352339381f", - "ParentId": "5b5f78e986f77447ed5636b1", - "Price": 23300 - }, { "Id": "5e8f3423fd7471236e6e3b64", "ParentId": "5b47574386f77428ca22b335", @@ -12716,11 +12876,6 @@ "ParentId": "5b5f6f8786f77447ed563642", "Price": 38250 }, - { - "Id": "5f2aa4464b50c14bcf07acdb", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 400 - }, { "Id": "5ea03f7400685063ec28bfa8", "ParentId": "5b5f796a86f774093f2ed3c0", @@ -12731,11 +12886,6 @@ "ParentId": "5b5f757486f774093e6cb507", "Price": 21300 }, - { - "Id": "5f2aa49f9b44de6b1b4e68d4", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2640 - }, { "Id": "5ef32e4d1c1fd62aea6a150d", "ParentId": "5b5f74cc86f77447ec5d770a", @@ -12746,26 +12896,11 @@ "ParentId": "5b5f755f86f77447ec5d770e", "Price": 2900 }, - { - "Id": "5f4f9eb969cdc30ff33f09db", - "ParentId": "5b47574386f77428ca22b345", - "Price": 65700 - }, { "Id": "5f0c892565703e5c461894e9", "ParentId": "5b47574386f77428ca22b33b", "Price": 10538 }, - { - "Id": "5f5e45cc5021ce62144be7aa", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 18000 - }, - { - "Id": "5f60c74e3b85f6263c145586", - "ParentId": "5b47574386f77428ca22b330", - "Price": 8900 - }, { "Id": "5f63418ef5750b524b45f116", "ParentId": "5b5f75e486f77447ec5d7712", @@ -12776,26 +12911,11 @@ "ParentId": "5b47574386f77428ca22b330", "Price": 20000 }, - { - "Id": "5fb65424956329274326f316", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 1340 - }, - { - "Id": "5fb6567747ce63734e3fa1dc", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 2200 - }, { "Id": "5fbcbd02900b1d5091531dd3", "ParentId": "5b5f724c86f774093f2ecf15", "Price": 2340 }, - { - "Id": "5fbb976df9986c4cff3fe5f2", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1100 - }, { "Id": "5fbcbd10ab884124df0cd563", "ParentId": "5b5f724c86f774093f2ecf15", @@ -12806,96 +12926,36 @@ "ParentId": "5b5f755f86f77447ec5d770e", "Price": 1033 }, - { - "Id": "5fbcbcf593164a5b6278efb2", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 1840 - }, - { - "Id": "5fc4b9b17283c4046c5814d7", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 37742 - }, { "Id": "60098b1705871270cd5352a1", "ParentId": "5b47574386f77428ca22b335", "Price": 17200 }, - { - "Id": "5fd4c60f875c30179f5d04c2", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 30015 - }, - { - "Id": "60098ad7c2240c0fe85c570a", - "ParentId": "5b47574386f77428ca22b338", - "Price": 41600 - }, { "Id": "602e620f9b513876d4338d9a", "ParentId": "5b5f757486f774093e6cb507", "Price": 4100 }, - { - "Id": "601aa3d2b2bcb34913271e6d", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 1400 - }, - { - "Id": "602e3f1254072b51b239f713", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1200 - }, { "Id": "606ee5c81246154cad35d65e", "ParentId": "5b5f75e486f77447ec5d7712", "Price": 4388 }, - { - "Id": "6034e3e20ddce744014cb878", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 12500 - }, - { - "Id": "60361a7497633951dc245eb4", - "ParentId": "5b47574386f77428ca22b330", - "Price": 1353 - }, { "Id": "607ea812232e5a31c233d53c", "ParentId": "5b5f755f86f77447ec5d770e", "Price": 1000 }, - { - "Id": "60658776f2cb2e02a42ace2b", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 26300 - }, - { - "Id": "606dae0ab0e443224b421bb7", - "ParentId": "5b5f794b86f77409407a7f92", - "Price": 18900 - }, { "Id": "609a4b4fe2ff132951242d04", "ParentId": "5b5f755f86f77447ec5d770e", "Price": 2902 }, - { - "Id": "60785c0d232e5a31c233d51c", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 1476 - }, { "Id": "60a6220e953894617404b00a", "ParentId": "5b5f6f8786f77447ed563642", "Price": 32400 }, - { - "Id": "607d5aa50494a626335e12ed", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 1829 - }, { "Id": "60b0f561c4449e4cb624c1d7", "ParentId": "5b47574386f77428ca22b2f0", @@ -12906,11 +12966,6 @@ "ParentId": "5b5f754a86f774094242f19b", "Price": 1500 }, - { - "Id": "60926df0132d4d12c81fd9df", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 62325 - }, { "Id": "615d8da4d3a39d50044c10e8", "ParentId": "5b5f755f86f77447ec5d770e", @@ -12921,31 +12976,16 @@ "ParentId": "5b5f71de86f774093f2ecf13", "Price": 6900 }, - { - "Id": "60db29ce99594040e04c4a27", - "ParentId": "5b5f794b86f77409407a7f92", - "Price": 9600 - }, { "Id": "6165aeedfaa1272e431521e3", "ParentId": "5b5f764186f77447ec5d7714", "Price": 11800 }, - { - "Id": "612e0e3c290d254f5e6b291d", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 9200 - }, { "Id": "61713a8fd92c473c770214a4", "ParentId": "5b5f764186f77447ec5d7714", "Price": 8000 }, - { - "Id": "6165ac306ef05c2ce828ef74", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 25800 - }, { "Id": "617151c1d92c473c770214ab", "ParentId": "5b5f748386f774093e6cb501", @@ -12956,11 +12996,6 @@ "ParentId": "5b5f757486f774093e6cb507", "Price": 9200 }, - { - "Id": "61695095d92c473c7702147a", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 24500 - }, { "Id": "617155ee50224f204c1da3cd", "ParentId": "5b5f757486f774093e6cb507", @@ -12971,11 +13006,6 @@ "ParentId": "5b47574386f77428ca22b32f", "Price": 21125 }, - { - "Id": "61702f1b67085e45ef140b26", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 6000 - }, { "Id": "618168dc8004cc50514c34fc", "ParentId": "5b5f754a86f774094242f19b", @@ -12986,11 +13016,6 @@ "ParentId": "5b5f755f86f77447ec5d770e", "Price": 2000 }, - { - "Id": "61712eae6c780c1e710c9a1d", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 8600 - }, { "Id": "619252352be33f26043400a7", "ParentId": "5b619f1a86f77450a702a6f3", @@ -13001,36 +13026,11 @@ "ParentId": "5b5f764186f77447ec5d7714", "Price": 3300 }, - { - "Id": "617131a4568c120fdd29482d", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3450 - }, { "Id": "61965d9058ef8c428c287e0d", "ParentId": "5b5f755f86f77447ec5d770e", "Price": 7800 }, - { - "Id": "61713308d92c473c770214a0", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 3750 - }, - { - "Id": "6183fd9e8004cc50514c358f", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 32000 - }, - { - "Id": "6194ef39de3cdf1d2614a768", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 2500 - }, - { - "Id": "6194f35c18a3974e5e7421e6", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 600 - }, { "Id": "61aa5ba8018e9821b7368da9", "ParentId": "5c518ec986f7743b68682ce2", @@ -13042,14 +13042,9 @@ "Price": 100000 }, { - "Id": "619d36da53b4d42ee724fae4", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 1800 - }, - { - "Id": "619bdef8c9546643a67df6f6", + "Id": "619bdd8886e01e16f839a99c", "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 52000 + "Price": 50000 }, { "Id": "61c18d83b00456371a66814b", @@ -13057,20 +13052,15 @@ "Price": 30000 }, { - "Id": "619bdd8886e01e16f839a99c", + "Id": "619bdef8c9546643a67df6f6", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 52000 + }, + { + "Id": "619bddffc9546643a67df6f0", "ParentId": "5b5f704686f77447ec5d76d7", "Price": 50000 }, - { - "Id": "619bddc6c9546643a67df6ee", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 70000 - }, - { - "Id": "619bdeb986e01e16f839a99e", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 62000 - }, { "Id": "619bde7fc9546643a67df6f4", "ParentId": "5b5f704686f77447ec5d76d7", @@ -13082,10 +13072,30 @@ "Price": 900 }, { - "Id": "619bddffc9546643a67df6f0", + "Id": "61aa5b7db225ac1ead7957c1", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 27505 + }, + { + "Id": "619bdfd4c9546643a67df6fa", "ParentId": "5b5f704686f77447ec5d76d7", "Price": 50000 }, + { + "Id": "619cc01e0a7c3a1a2731940c", + "ParentId": "5b47574386f77428ca22b2f3", + "Price": 7500 + }, + { + "Id": "619bdeb986e01e16f839a99e", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 62000 + }, + { + "Id": "619d36da53b4d42ee724fae4", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 1800 + }, { "Id": "622b3858034a3e17ad0b81f5", "ParentId": "5b5f75c686f774094242f19f", @@ -13111,16 +13121,6 @@ "ParentId": "5b5f755f86f77447ec5d770e", "Price": 2200 }, - { - "Id": "619cbf9e0a7c3a1a2731940a", - "ParentId": "5b5f6fa186f77409407a7eb7", - "Price": 458453 - }, - { - "Id": "61aa5b7db225ac1ead7957c1", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 27505 - }, { "Id": "62811e335631d45211793c95", "ParentId": "5b5f757486f774093e6cb507", @@ -13246,21 +13246,6 @@ "ParentId": "5b619f1a86f77450a702a6f3", "Price": 58000 }, - { - "Id": "619cc01e0a7c3a1a2731940c", - "ParentId": "5b47574386f77428ca22b2f3", - "Price": 7500 - }, - { - "Id": "619bdfd4c9546643a67df6fa", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 50000 - }, - { - "Id": "619cbf7d23893217ec30b689", - "ParentId": "5b5f6fa186f77409407a7eb7", - "Price": 415000 - }, { "Id": "61a64492ba05ef10d62adcc1", "ParentId": "5c518ec986f7743b68682ce2", @@ -13281,6 +13266,11 @@ "ParentId": "5b5f79eb86f77447ed5636b7", "Price": 30000 }, + { + "Id": "619cbf9e0a7c3a1a2731940a", + "ParentId": "5b5f6fa186f77409407a7eb7", + "Price": 458453 + }, { "Id": "622b327b267a1b13a44abea3", "ParentId": "5b5f760586f774093e6cb509", @@ -13412,154 +13402,14 @@ "Price": 2777777 }, { - "Id": "619f4bffd25cbd424731fb97", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 750 + "Id": "619bddc6c9546643a67df6ee", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 70000 }, { - "Id": "61a64428a8c6aa1b795f0ba1", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 15703 - }, - { - "Id": "622b3c081b89c677a33bcda6", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 4000 - }, - { - "Id": "622f128cec80d870d349b4e8", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 6900 - }, - { - "Id": "6241c2c2117ad530666a5108", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3113 - }, - { - "Id": "624c0b3340357b5f566e8766", - "ParentId": "5b5f79eb86f77447ed5636b7", - "Price": 2152 - }, - { - "Id": "625ec45bb14d7326ac20f572", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 1300 - }, - { - "Id": "625ff3046d721f05d93bf2ee", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3600 - }, - { - "Id": "625ff31daaaa8c1130599f64", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 4750 - }, - { - "Id": "6272370ee4013c5d7e31f418", - "ParentId": "5b5f737886f774093e6cb4fb", - "Price": 8246 - }, - { - "Id": "627e14b21713922ded6f2c15", - "ParentId": "5b5f798886f77447ed5636b5", - "Price": 22500 - }, - { - "Id": "62811fbf09427b40ab14e767", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 7000 - }, - { - "Id": "62850c28da09541f43158cca", - "ParentId": "5b5f748386f774093e6cb501", - "Price": 95000 - }, - { - "Id": "628a83c29179c324ed269508", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 21300 - }, - { - "Id": "628d0618d1ba6e4fa07ce5a4", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 3584 - }, - { - "Id": "62a0a124de7ac81993580542", - "ParentId": "5b47574386f77428ca22b341", - "Price": 72000 - }, - { - "Id": "62e2a754b6c0ee2f230cee0f", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 3000 - }, - { - "Id": "637b620db7afa97bfc3d7009", - "ParentId": "5b47574386f77428ca22b33a", - "Price": 60000 - }, - { - "Id": "637ba19df7ca6372bf2613d7", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 2850 - }, - { - "Id": "63a39dfe3901f439517cafba", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 14331 - }, - { - "Id": "63a39e1d234195315d4020bd", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 5136 - }, - { - "Id": "648987d673c462723909a151", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6374a822e629013b9c0645c8", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 2350 - }, - { - "Id": "637b6d610aef6cfc5e02dd14", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 4253 - }, - { - "Id": "63d3ce281fe77d0f2801859e", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 6756 - }, - { - "Id": "63f5ed14534b2c3d5479a677", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 30124 - }, - { - "Id": "64637076203536ad5600c990", - "ParentId": "5b5f79a486f77409407a7f94", - "Price": 72360 - }, - { - "Id": "649ec30cb013f04a700e60fb", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 4313 - }, - { - "Id": "64b7af734b75259c590fa895", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 101 - }, - { - "Id": "64ccc24de61ea448b507d34d", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 86724 + "Id": "619cbf7d23893217ec30b689", + "ParentId": "5b5f6fa186f77409407a7eb7", + "Price": 415000 }, { "Id": "619bdf9cc9546643a67df6f8", @@ -13856,506 +13706,36 @@ "ParentId": "5b5f701386f774093f2ecf0f", "Price": 2162 }, - { - "Id": "64ccc1f4ff54fb38131acf27", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 29426 - }, - { - "Id": "64ccc2111779ad6ba200a139", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 55521 - }, - { - "Id": "64ccc246ff54fb38131acf29", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 69524 - }, - { - "Id": "64ce572331dd890873175115", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 34527 - }, - { - "Id": "61bca7cda0eae612383adf57", - "ParentId": "5b47574386f77428ca22b330", - "Price": 2907 - }, - { - "Id": "622f140da5958f63c67f1735", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 6000 - }, - { - "Id": "62389be94d5d474bf712e709", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 3215 - }, - { - "Id": "62444cd3674028188b052799", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1033 - }, - { - "Id": "625ff2ccb8c587128c1a01dd", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1500 - }, - { - "Id": "6281212a09427b40ab14e770", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 2500 - }, - { - "Id": "628a6678ccaab13006640e49", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 4200 - }, - { - "Id": "628a66b41d5e41750e314f34", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 9000 - }, - { - "Id": "628b9471078f94059a4b9bfb", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 700 - }, - { - "Id": "62987cb98081af308d7558c8", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 57000 - }, - { - "Id": "62a09e73af34e73a266d932a", - "ParentId": "5b47574386f77428ca22b341", - "Price": 58000 - }, - { - "Id": "62a09ec84f842e1bd12da3f2", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 30000 - }, - { - "Id": "62a0a098de7ac8199358053b", - "ParentId": "5b47574386f77428ca22b2f6", - "Price": 33000 - }, - { - "Id": "62e7c4fba689e8c9c50dfc38", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 26230 - }, - { - "Id": "6357c98711fb55120211f7e1", - "ParentId": "5b5f752e86f774093e6cb505", - "Price": 62000 - }, - { - "Id": "638de3603a1a4031d8260b8c", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 4400 - }, - { - "Id": "63a0b208f444d32d6f03ea1e", - "ParentId": "5b47574386f77428ca22b2f6", - "Price": 132000 - }, - { - "Id": "64898583d5b4df6140000a1d", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "63d114019e35b334d82302f7", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 7153 - }, - { - "Id": "63fc44e2429a8a166c7f61e6", - "ParentId": "5b5f749986f774094242f199", - "Price": 346954 - }, - { - "Id": "641dc35e19604f20c800be18", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1105 - }, - { - "Id": "643ea5b23db6f9f57107d9fd", - "ParentId": "5b5f78e986f77447ed5636b1", - "Price": 19331 - }, - { - "Id": "6492c6dd60fdb10a020621a2", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1113 - }, - { - "Id": "6492ef63cfcf7c89e701abf1", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 7342 - }, - { - "Id": "64a5366719bab53bd203bf33", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 1408 - }, - { - "Id": "64b6979341772715af0f9c39", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 280 - }, - { - "Id": "64ccc25f95763a1ae376e447", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 1500000 - }, - { - "Id": "634f05ca517ccc8a960fc748", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 1109 - }, - { - "Id": "638cbc68a63f1b49be6a3010", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 0 - }, - { - "Id": "61a00bcb177fb945751bbe6a", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 0 - }, - { - "Id": "61f804acfcba9556ea304cb8", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 3800 - }, - { - "Id": "620109578d82e67e7911abf2", - "ParentId": "5b5f79eb86f77447ed5636b7", - "Price": 9878 - }, - { - "Id": "62330b3ed4dc74626d570b95", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 142 - }, - { - "Id": "62389bc9423ed1685422dc57", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 5000 - }, - { - "Id": "62444cb99f47004c781903eb", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1573 - }, - { - "Id": "6259c2c1d714855d182bad85", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 13500 - }, - { - "Id": "626673016f1edc06f30cf6d5", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 71000 - }, - { - "Id": "628b9c7d45122232a872358f", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 6189 - }, - { - "Id": "62987da96188c076bc0d8c51", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 97000 - }, - { - "Id": "62987e26a77ec735f90a2995", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 21070 - }, - { - "Id": "62e27a7865f0b1592a49e17b", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 1220 - }, - { - "Id": "62e7c72df68e7a0676050c77", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 3800 - }, - { - "Id": "62ebd290c427473eff0baafb", - "ParentId": "5b5f740a86f77447ec5d7706", - "Price": 9000 - }, - { - "Id": "630767c37d50ff5e8a1ea71a", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2956 - }, - { - "Id": "63088377b5cd696784087147", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 8200 - }, - { - "Id": "6333f05d1bc0e6217a0e9d34", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 28500 - }, - { - "Id": "633ec7c2a6918cb895019c6c", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 30443 - }, - { - "Id": "634e61b0767cb15c4601a877", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 2000 - }, - { - "Id": "637f57c532b66e7e320a6676", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 5640 - }, - { - "Id": "6389c8fb46b54c634724d847", - "ParentId": "5b47574386f77428ca22b341", - "Price": 500000 - }, - { - "Id": "63969c9019971040b005049b", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 5225 - }, - { - "Id": "63a71e86b7f4570d3a293169", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 65812 - }, - { - "Id": "637784c5f7b3f4ac1a0d1a9a", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 3214 - }, - { - "Id": "63f4ba71f31d4a33b87bd046", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 8124 - }, - { - "Id": "646371779f5f0ea59a04c204", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 764 - }, - { - "Id": "64acea0d03378853630da53b", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "64b8f7968532cf95ee0a0dbf", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 270 - }, - { - "Id": "61aa5aed32a4743c3453d319", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 24501 - }, - { - "Id": "61bc85697113f767765c7fe7", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 1553 - }, - { - "Id": "61bf7c024770ee6f9c6b8b53", - "ParentId": "5b47574386f77428ca22b341", - "Price": 145000 - }, - { - "Id": "624c2e8614da335f1e034d8c", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 5800 - }, - { - "Id": "64b8f7c241772715af0f9c3d", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 190 - }, - { - "Id": "628393620d8524273e7eb028", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 4500 - }, - { - "Id": "634eff66517ccc8a960fc735", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 3920 - }, - { - "Id": "62811fa609427b40ab14e765", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 104000 - }, - { - "Id": "628120621d5df4475f46a335", - "ParentId": "5b5f72f786f77447ec5d7702", - "Price": 800 - }, - { - "Id": "6281209662cba23f6c4d7a19", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 16000 - }, - { - "Id": "6399f54b0a36db13c823ad21", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 1000000 - }, - { - "Id": "628a85ee6b1d481ff772e9d5", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 8600 - }, - { - "Id": "628b9784bcf6e2659e09b8a2", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 142398 - }, - { - "Id": "62a09f32621468534a797acb", - "ParentId": "5b47574386f77428ca22b335", - "Price": 13243 - }, - { - "Id": "62a0a0bb621468534a797ad5", - "ParentId": "5b47574386f77428ca22b2f6", - "Price": 35000 - }, - { - "Id": "62a5c41e8ec41a51b34739c3", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 15000 - }, - { - "Id": "635267ab3c89e2112001f826", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 21125 - }, - { - "Id": "62ed1921b3608410ef5a2c04", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1200 - }, - { - "Id": "62ff9920fe938a24c90c10d2", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 12500 - }, - { - "Id": "630e1adbbd357927e4007c09", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1500 - }, - { - "Id": "630f2872911356c17d06abc5", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 3000 - }, - { - "Id": "637f57b78d137b27f70c496a", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 2033 - }, - { - "Id": "638f1ff84822287cad04be9d", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 4478 - }, - { - "Id": "63a39fd1c9b3aa4b61683efb", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 9774 - }, - { - "Id": "63a71e922b25f7513905ca20", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 53004 - }, - { - "Id": "63a399193901f439517cafb6", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 75101 - }, - { - "Id": "63a39c7964283b5e9c56b280", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 72421 - }, - { - "Id": "63ac5c9658d0485fc039f0b8", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 11800 - }, - { - "Id": "6489875745f9ca4ba51c4808", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "648983d6b5a2df1c815a04ec", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "63f5feead259b42f0b4d6d0f", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 13432 - }, - { - "Id": "6410745d5dd49d77bd078485", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 3780 - }, - { - "Id": "646372518610c40fc20204e8", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 15387 - }, - { - "Id": "6477772ea8a38bb2050ed4db", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 16352 - }, - { - "Id": "64b9e265c94d0d15c5027e35", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2013 - }, - { - "Id": "634f05a21f9f536910079b56", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1756 - }, { "Id": "619bde3dc9546643a67df6f2", "ParentId": "5b5f704686f77447ec5d76d7", "Price": 50000 }, + { + "Id": "64ccc1f4ff54fb38131acf27", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 29426 + }, { "Id": "61a6444b8c141d68246e2d2f", "ParentId": "5c518ec986f7743b68682ce2", "Price": 24185 }, + { + "Id": "64ccc2111779ad6ba200a139", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 55521 + }, { "Id": "61b9e1aaef9a1b5d6a79899a", "ParentId": "5b5f6f6c86f774093f2ecf0b", "Price": 62022 }, + { + "Id": "64ccc246ff54fb38131acf29", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 69524 + }, { "Id": "61f4012adfc9f01a816adda1", "ParentId": "5b5f75c686f774094242f19f", @@ -14366,6 +13746,11 @@ "ParentId": "5b5f742686f774093e6cb4ff", "Price": 8000 }, + { + "Id": "64ce572331dd890873175115", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 34527 + }, { "Id": "623c2f652febb22c2777d8d7", "ParentId": "5b5f755f86f77447ec5d770e", @@ -14496,271 +13881,6 @@ "ParentId": "5b619f1a86f77450a702a6f3", "Price": 58000 }, - { - "Id": "61a4c8884f95bc3b2c5dc96f", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 10443 - }, - { - "Id": "622b3d5cf9cfc87d675d2de9", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 3000 - }, - { - "Id": "622efdf8ec80d870d349b4e5", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1400 - }, - { - "Id": "622f16a1a5958f63c67f1737", - "ParentId": "5b5f74cc86f77447ec5d770a", - "Price": 500 - }, - { - "Id": "623063e994fc3f7b302a9696", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 13000 - }, - { - "Id": "623b2e9d11c3296b440d1638", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 24500 - }, - { - "Id": "6259c3387d6aab70bc23a18d", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 3000 - }, - { - "Id": "626a74340be03179a165e30c", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 5000 - }, - { - "Id": "626a8ae89e664a2e2a75f409", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1300 - }, - { - "Id": "6272379924e29f06af4d5ecb", - "ParentId": "5b5f737886f774093e6cb4fb", - "Price": 8646 - }, - { - "Id": "628a665a86cbd9750d2ff5e5", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 2000 - }, - { - "Id": "628e1ffc83ec92260c0f437f", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 64877 - }, - { - "Id": "62a09e08de7ac81993580532", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 47250 - }, - { - "Id": "62a09e410b9d3c46de5b6e78", - "ParentId": "5b47574386f77428ca22b331", - "Price": 12000 - }, - { - "Id": "62e153bcdb1a5c41971c1b5b", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3500 - }, - { - "Id": "630765777d50ff5e8a1ea718", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 800 - }, - { - "Id": "630769c4962d0247b029dc60", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2500 - }, - { - "Id": "633ec8e4025b096d320a3b1e", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 1500 - }, - { - "Id": "63a71ed21031ac76fe773c7f", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 19115 - }, - { - "Id": "63a71eb5b7f4570d3a29316b", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 19345 - }, - { - "Id": "648984e3f09d032aa9399d53", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "63c6adcfb4ba094317063742", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 900 - }, - { - "Id": "63fc449f5bd61c6cf3784a88", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 2558 - }, - { - "Id": "6464d870bb2c580352070cc4", - "ParentId": "5b5f71c186f77409407a7ec0", - "Price": 4828 - }, - { - "Id": "649ec2f3961514b22506b111", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 3694 - }, - { - "Id": "64b7af434b75259c590fa893", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 710 - }, - { - "Id": "64b9e2037fdfb81df81e3c25", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1234 - }, - { - "Id": "6398fd8ad3de3849057f5128", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 1703 - }, - { - "Id": "64ccc1ec1779ad6ba200a137", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 34522 - }, - { - "Id": "634f02d7517ccc8a960fc744", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 1750 - }, - { - "Id": "638e9d5536b3b72c944e2fc7", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 40152 - }, - { - "Id": "63927b29c115f907b14700b9", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 2150 - }, - { - "Id": "619f4d304c58466fe1228437", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 502 - }, - { - "Id": "622f02437762f55aaa68ac85", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1000 - }, - { - "Id": "6231670f0b8aa5472d060095", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 1250 - }, - { - "Id": "626becf9582c3e319310b837", - "ParentId": "5b5f73ab86f774094242f195", - "Price": 13258 - }, - { - "Id": "628121434fa03b6b6c35dc6a", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 58000 - }, - { - "Id": "628c9ab845c59e5b80768a81", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 7900 - }, - { - "Id": "62a09dd4621468534a797ac7", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 35000 - }, - { - "Id": "62a09ee4cf4a99369e262453", - "ParentId": "5b47574386f77428ca22b2f0", - "Price": 8000 - }, - { - "Id": "62a61bbf8ec41a51b34758d2", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 21000 - }, - { - "Id": "62a61c988ec41a51b34758d5", - "ParentId": "5b47574386f77428ca22b331", - "Price": 20700 - }, - { - "Id": "62e7c880f68e7a0676050c7c", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 1000 - }, - { - "Id": "62e910aaf957f2915e0a5e36", - "ParentId": "5b47574386f77428ca22b345", - "Price": 1000000 - }, - { - "Id": "62ed189fb3608410ef5a2bfc", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1000 - }, - { - "Id": "630f28f0cadb1fe05e06f004", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 4200 - }, - { - "Id": "63877c99e785640d436458ea", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 60000 - }, - { - "Id": "6389c8c5dbfd5e4b95197e6b", - "ParentId": "5b47574386f77428ca22b341", - "Price": 750000 - }, - { - "Id": "63a39f6e64283b5e9c56b289", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 39144 - }, - { - "Id": "6489879db5a2df1c815a04ef", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6499849fc93611967b034949", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 45162 - }, - { - "Id": "64aceac0c4eda9354b0226b3", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "64ca3d3954fc657e230529cc", - "ParentId": "5b5f79a486f77409407a7f94", - "Price": 80143 - }, { "Id": "619cbf476b8a1b37a54eebf8", "ParentId": "5b47574386f77428ca22b2ee", @@ -14781,21 +13901,6 @@ "ParentId": "5b5f757486f774093e6cb507", "Price": 1700 }, - { - "Id": "64ccc1d4a0f13c24561edf27", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 17423 - }, - { - "Id": "634f04d82e5def262d0b30c6", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1703 - }, - { - "Id": "634f06262e5def262d0b30ca", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 1109 - }, { "Id": "622f07cfae33bc505b2c4dd5", "ParentId": "5b5f724c86f774093f2ecf15", @@ -14951,6 +14056,471 @@ "ParentId": "5b619f1a86f77450a702a6f3", "Price": 145000 }, + { + "Id": "61a4c8884f95bc3b2c5dc96f", + "ParentId": "5b5f792486f77447ed5636b3", + "Price": 10443 + }, + { + "Id": "61bca7cda0eae612383adf57", + "ParentId": "5b47574386f77428ca22b330", + "Price": 2907 + }, + { + "Id": "622b3d5cf9cfc87d675d2de9", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 3000 + }, + { + "Id": "622f140da5958f63c67f1735", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 6000 + }, + { + "Id": "622efdf8ec80d870d349b4e5", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1400 + }, + { + "Id": "62389be94d5d474bf712e709", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 3215 + }, + { + "Id": "622f16a1a5958f63c67f1737", + "ParentId": "5b5f74cc86f77447ec5d770a", + "Price": 500 + }, + { + "Id": "623063e994fc3f7b302a9696", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 13000 + }, + { + "Id": "62444cd3674028188b052799", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1033 + }, + { + "Id": "623b2e9d11c3296b440d1638", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 24500 + }, + { + "Id": "625ff2ccb8c587128c1a01dd", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1500 + }, + { + "Id": "6259c3387d6aab70bc23a18d", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 3000 + }, + { + "Id": "626a74340be03179a165e30c", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 5000 + }, + { + "Id": "6281212a09427b40ab14e770", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 2500 + }, + { + "Id": "626a8ae89e664a2e2a75f409", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1300 + }, + { + "Id": "628a6678ccaab13006640e49", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 4200 + }, + { + "Id": "628a66b41d5e41750e314f34", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 9000 + }, + { + "Id": "6272379924e29f06af4d5ecb", + "ParentId": "5b5f737886f774093e6cb4fb", + "Price": 8646 + }, + { + "Id": "628b9471078f94059a4b9bfb", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 700 + }, + { + "Id": "62987cb98081af308d7558c8", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 57000 + }, + { + "Id": "628a665a86cbd9750d2ff5e5", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 2000 + }, + { + "Id": "62a09e73af34e73a266d932a", + "ParentId": "5b47574386f77428ca22b341", + "Price": 58000 + }, + { + "Id": "62a09ec84f842e1bd12da3f2", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 30000 + }, + { + "Id": "628e1ffc83ec92260c0f437f", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 64877 + }, + { + "Id": "62a0a098de7ac8199358053b", + "ParentId": "5b47574386f77428ca22b2f6", + "Price": 33000 + }, + { + "Id": "62a09e08de7ac81993580532", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 47250 + }, + { + "Id": "62a09e410b9d3c46de5b6e78", + "ParentId": "5b47574386f77428ca22b331", + "Price": 12000 + }, + { + "Id": "62e7c4fba689e8c9c50dfc38", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 26230 + }, + { + "Id": "6357c98711fb55120211f7e1", + "ParentId": "5b5f752e86f774093e6cb505", + "Price": 62000 + }, + { + "Id": "62e153bcdb1a5c41971c1b5b", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3500 + }, + { + "Id": "638de3603a1a4031d8260b8c", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 4400 + }, + { + "Id": "63a0b208f444d32d6f03ea1e", + "ParentId": "5b47574386f77428ca22b2f6", + "Price": 132000 + }, + { + "Id": "630765777d50ff5e8a1ea718", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 800 + }, + { + "Id": "64898583d5b4df6140000a1d", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "630769c4962d0247b029dc60", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2500 + }, + { + "Id": "633ec8e4025b096d320a3b1e", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 1500 + }, + { + "Id": "63d114019e35b334d82302f7", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 7153 + }, + { + "Id": "63a71ed21031ac76fe773c7f", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 19115 + }, + { + "Id": "63fc44e2429a8a166c7f61e6", + "ParentId": "5b5f749986f774094242f199", + "Price": 346954 + }, + { + "Id": "63a71eb5b7f4570d3a29316b", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 19345 + }, + { + "Id": "641dc35e19604f20c800be18", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1105 + }, + { + "Id": "648984e3f09d032aa9399d53", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "643ea5b23db6f9f57107d9fd", + "ParentId": "5b5f78e986f77447ed5636b1", + "Price": 19331 + }, + { + "Id": "6492c6dd60fdb10a020621a2", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1113 + }, + { + "Id": "63c6adcfb4ba094317063742", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 900 + }, + { + "Id": "63fc449f5bd61c6cf3784a88", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 2558 + }, + { + "Id": "6492ef63cfcf7c89e701abf1", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 7342 + }, + { + "Id": "6464d870bb2c580352070cc4", + "ParentId": "5b5f71c186f77409407a7ec0", + "Price": 4828 + }, + { + "Id": "649ec2f3961514b22506b111", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 3694 + }, + { + "Id": "64a5366719bab53bd203bf33", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 1408 + }, + { + "Id": "64b7af434b75259c590fa893", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 710 + }, + { + "Id": "64b6979341772715af0f9c39", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 280 + }, + { + "Id": "64b9e2037fdfb81df81e3c25", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1234 + }, + { + "Id": "6398fd8ad3de3849057f5128", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 1703 + }, + { + "Id": "64ccc25f95763a1ae376e447", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 1500000 + }, + { + "Id": "634f05ca517ccc8a960fc748", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 1109 + }, + { + "Id": "64ccc1ec1779ad6ba200a137", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 34522 + }, + { + "Id": "638cbc68a63f1b49be6a3010", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 0 + }, + { + "Id": "634f02d7517ccc8a960fc744", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 1750 + }, + { + "Id": "638e9d5536b3b72c944e2fc7", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 40152 + }, + { + "Id": "63927b29c115f907b14700b9", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 2150 + }, + { + "Id": "61aa5aed32a4743c3453d319", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 24501 + }, + { + "Id": "61bc85697113f767765c7fe7", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 1553 + }, + { + "Id": "61bf7c024770ee6f9c6b8b53", + "ParentId": "5b47574386f77428ca22b341", + "Price": 145000 + }, + { + "Id": "624c2e8614da335f1e034d8c", + "ParentId": "5b5f792486f77447ed5636b3", + "Price": 5800 + }, + { + "Id": "62811fa609427b40ab14e765", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 104000 + }, + { + "Id": "628120621d5df4475f46a335", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 800 + }, + { + "Id": "6281209662cba23f6c4d7a19", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 16000 + }, + { + "Id": "628a85ee6b1d481ff772e9d5", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 8600 + }, + { + "Id": "628b9784bcf6e2659e09b8a2", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 142398 + }, + { + "Id": "62a09f32621468534a797acb", + "ParentId": "5b47574386f77428ca22b335", + "Price": 13243 + }, + { + "Id": "62a0a0bb621468534a797ad5", + "ParentId": "5b47574386f77428ca22b2f6", + "Price": 35000 + }, + { + "Id": "62a5c41e8ec41a51b34739c3", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 15000 + }, + { + "Id": "635267ab3c89e2112001f826", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 21125 + }, + { + "Id": "62ed1921b3608410ef5a2c04", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1200 + }, + { + "Id": "62ff9920fe938a24c90c10d2", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 12500 + }, + { + "Id": "630e1adbbd357927e4007c09", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1500 + }, + { + "Id": "630f2872911356c17d06abc5", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 3000 + }, + { + "Id": "637f57b78d137b27f70c496a", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 2033 + }, + { + "Id": "638f1ff84822287cad04be9d", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 4478 + }, + { + "Id": "63a39fd1c9b3aa4b61683efb", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 9774 + }, + { + "Id": "63a71e922b25f7513905ca20", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 53004 + }, + { + "Id": "63a399193901f439517cafb6", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 75101 + }, + { + "Id": "63a39c7964283b5e9c56b280", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 72421 + }, + { + "Id": "63ac5c9658d0485fc039f0b8", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 11800 + }, + { + "Id": "6489875745f9ca4ba51c4808", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "648983d6b5a2df1c815a04ec", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "63f5feead259b42f0b4d6d0f", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 13432 + }, + { + "Id": "6410745d5dd49d77bd078485", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 3780 + }, + { + "Id": "646372518610c40fc20204e8", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 15387 + }, + { + "Id": "6477772ea8a38bb2050ed4db", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 16352 + }, + { + "Id": "64b9e265c94d0d15c5027e35", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2013 + }, + { + "Id": "634f05a21f9f536910079b56", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1756 + }, { "Id": "619f52454c58466fe122843b", "ParentId": "5b5f746686f77447ec5d7708", @@ -14986,26 +14556,6 @@ "ParentId": "5b5f754a86f774094242f19b", "Price": 45000 }, - { - "Id": "619cbfeb6b8a1b37a54eebfa", - "ParentId": "5b47574386f77428ca22b2f6", - "Price": 105000 - }, - { - "Id": "619f54a1d25cbd424731fb99", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 1100 - }, - { - "Id": "61bf7b6302b3924be92fa8c3", - "ParentId": "5b47574386f77428ca22b2ee", - "Price": 5000 - }, - { - "Id": "6217726288ed9f0845317459", - "ParentId": "5b5f79eb86f77447ed5636b7", - "Price": 5732 - }, { "Id": "628120d309427b40ab14e76d", "ParentId": "5b5f755f86f77447ec5d770e", @@ -15016,81 +14566,16 @@ "ParentId": "5b5f6f8786f77447ed563642", "Price": 1714 }, - { - "Id": "61bf83814088ec1a363d7097", - "ParentId": "5b47574386f77428ca22b2f6", - "Price": 38000 - }, - { - "Id": "62178be9d0050232da3485d9", - "ParentId": "5b5f79eb86f77447ed5636b7", - "Price": 10000 - }, - { - "Id": "61f7b234ea4ab34f2f59c3ec", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1400 - }, - { - "Id": "622b38c56762c718e457e246", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 18600 - }, - { - "Id": "622b4f54dc8dcc0ba8742f85", - "ParentId": "5b5f740a86f77447ec5d7706", - "Price": 8500 - }, - { - "Id": "624c09da2cec124eb67c1046", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 74 - }, - { - "Id": "624c0570c9b794431568f5d5", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 74 - }, - { - "Id": "62669bccdb9ebb4daa44cd14", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 8000 - }, - { - "Id": "6259c3d8012d6678ec38eeb8", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 2100 - }, { "Id": "62a09d3bcf4a99369e262447", "ParentId": "5b5f6fa186f77409407a7eb7", "Price": 80000 }, - { - "Id": "619cbfccbedcde2f5b3f7bdd", - "ParentId": "5b47574386f77428ca22b2f6", - "Price": 132000 - }, { "Id": "638db77630c4240f9e06f8b6", "ParentId": "5b5f755f86f77447ec5d770e", "Price": 6100 }, - { - "Id": "6272874a6c47bd74f92e2087", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2300 - }, - { - "Id": "628120fd5631d45211793c9f", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 9700 - }, - { - "Id": "628b9c37a733087d0d7fe84b", - "ParentId": "5b5f78e986f77447ed5636b1", - "Price": 31000 - }, { "Id": "63a39e49cd6db0635c1975fc", "ParentId": "5c518ec986f7743b68682ce2", @@ -15101,91 +14586,26 @@ "ParentId": "5c518ec986f7743b68682ce2", "Price": 14912 }, - { - "Id": "61f7b85367ddd414173fdb36", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 2000 - }, - { - "Id": "6281204f308cb521f87a8f9b", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 5500 - }, - { - "Id": "62963c18dbc8ab5f0d382d0b", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 72000 - }, - { - "Id": "628b5638ad252a16da6dd245", - "ParentId": "5b5f78e986f77447ed5636b1", - "Price": 28300 - }, - { - "Id": "62a091170b9d3c46de5b6cf2", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 51000 - }, { "Id": "6489870774a806211e4fb685", "ParentId": "5b47574386f77428ca22b33c", "Price": 1000 }, - { - "Id": "62386b7153757417e93a4e9f", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 4000 - }, { "Id": "63d3ce0446bd475bcb50f55f", "ParentId": "5b5f75c686f774094242f19f", "Price": 24567 }, - { - "Id": "624c09cfbc2e27219346d955", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 74 - }, - { - "Id": "628b9a40717774443b15e9f2", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 7800 - }, - { - "Id": "62a09e974f842e1bd12da3f0", - "ParentId": "5b47574386f77428ca22b341", - "Price": 69000 - }, - { - "Id": "628cd624459354321c4b7fa2", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 127148 - }, - { - "Id": "6259bdcabd28e4721447a2aa", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2300 - }, { "Id": "64abd93857958b4249003418", "ParentId": "5b5f701386f774093f2ecf0f", "Price": 1525 }, - { - "Id": "628e4e576d783146b124c64d", - "ParentId": "5b5f6f3c86f774094242ef87", - "Price": 79350 - }, { "Id": "634f03d40384a3ba4f06f874", "ParentId": "5b5f75e486f77447ec5d7712", "Price": 836 }, - { - "Id": "62a5c2c98ec41a51b34739c0", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 15000 - }, { "Id": "638cbb3ba63f1b49be6a300e", "ParentId": "5b619f1a86f77450a702a6f3", @@ -15197,25 +14617,355 @@ "Price": 69000 }, { - "Id": "63075cc5962d0247b029dc2a", + "Id": "619cbfeb6b8a1b37a54eebfa", + "ParentId": "5b47574386f77428ca22b2f6", + "Price": 105000 + }, + { + "Id": "619f54a1d25cbd424731fb99", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 1100 + }, + { + "Id": "61bf83814088ec1a363d7097", + "ParentId": "5b47574386f77428ca22b2f6", + "Price": 38000 + }, + { + "Id": "61f7b234ea4ab34f2f59c3ec", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1400 + }, + { + "Id": "622b4f54dc8dcc0ba8742f85", + "ParentId": "5b5f740a86f77447ec5d7706", + "Price": 8500 + }, + { + "Id": "624c0570c9b794431568f5d5", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 74 + }, + { + "Id": "62669bccdb9ebb4daa44cd14", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 8000 + }, + { + "Id": "6272874a6c47bd74f92e2087", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2300 + }, + { + "Id": "6281204f308cb521f87a8f9b", "ParentId": "5b5f764186f77447ec5d7714", - "Price": 5200 + "Price": 5500 + }, + { + "Id": "628b5638ad252a16da6dd245", + "ParentId": "5b5f78e986f77447ed5636b1", + "Price": 28300 + }, + { + "Id": "628b9a40717774443b15e9f2", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 7800 + }, + { + "Id": "628cd624459354321c4b7fa2", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 127148 }, { "Id": "62a0a16d0b9d3c46de5b6e97", "ParentId": "5b47574386f77428ca22b341", "Price": 60000 }, - { - "Id": "634959225289190e5e773b3b", - "ParentId": "5b5f6fa186f77409407a7eb7", - "Price": 100000 - }, { "Id": "62a5c333ec21e50cad3b5dc6", "ParentId": "5b47574386f77428ca22b32f", "Price": 15000 }, + { + "Id": "62e14904c2699c0ec93adc47", + "ParentId": "5b5f796a86f774093f2ed3c0", + "Price": 31000 + }, + { + "Id": "62e2969582ebf260c20539c2", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 2100 + }, + { + "Id": "633a98eab8b0506e48497c1a", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2900 + }, + { + "Id": "63626d904aa74b8fe30ab426", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 20000 + }, + { + "Id": "63737f448b28897f2802b874", + "ParentId": "5b5f701386f774093f2ecf0f", + "Price": 54398 + }, + { + "Id": "6386120cd6baa055ad1e201c", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 7700 + }, + { + "Id": "63920105a83e15700a00f168", + "ParentId": "5b5f7a0886f77409407a7f96", + "Price": 100000 + }, + { + "Id": "63d3d44a2a49307baf09386d", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 31567 + }, + { + "Id": "641074a07fd350b98c0b3f96", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 5697 + }, + { + "Id": "64785e7c19d732620e045e15", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 20142 + }, + { + "Id": "6492e3a97df7d749100e29ee", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 7174 + }, + { + "Id": "6492efb8cfcf7c89e701abf3", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 1245 + }, + { + "Id": "649ec107961514b22506b10c", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 2384 + }, + { + "Id": "649ec2da59cbb3c813042dca", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 920 + }, + { + "Id": "64acea16c4eda9354b0226b0", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "64b8ee384b75259c590fa89b", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 220 + }, + { + "Id": "634f036a517ccc8a960fc746", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 1750 + }, + { + "Id": "644674a13d52156624001fbc", + "ParentId": "5b5f78e986f77447ed5636b1", + "Price": 58147 + }, + { + "Id": "619f4bffd25cbd424731fb97", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 750 + }, + { + "Id": "61a64428a8c6aa1b795f0ba1", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 15703 + }, + { + "Id": "622b3c081b89c677a33bcda6", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 4000 + }, + { + "Id": "622f128cec80d870d349b4e8", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 6900 + }, + { + "Id": "6241c2c2117ad530666a5108", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3113 + }, + { + "Id": "624c0b3340357b5f566e8766", + "ParentId": "5b5f79eb86f77447ed5636b7", + "Price": 2152 + }, + { + "Id": "625ec45bb14d7326ac20f572", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 1300 + }, + { + "Id": "625ff3046d721f05d93bf2ee", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3600 + }, + { + "Id": "625ff31daaaa8c1130599f64", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 4750 + }, + { + "Id": "6272370ee4013c5d7e31f418", + "ParentId": "5b5f737886f774093e6cb4fb", + "Price": 8246 + }, + { + "Id": "627e14b21713922ded6f2c15", + "ParentId": "5b5f798886f77447ed5636b5", + "Price": 22500 + }, + { + "Id": "62811fbf09427b40ab14e767", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 7000 + }, + { + "Id": "62850c28da09541f43158cca", + "ParentId": "5b5f748386f774093e6cb501", + "Price": 95000 + }, + { + "Id": "628a83c29179c324ed269508", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 21300 + }, + { + "Id": "628d0618d1ba6e4fa07ce5a4", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 3584 + }, + { + "Id": "62a0a124de7ac81993580542", + "ParentId": "5b47574386f77428ca22b341", + "Price": 72000 + }, + { + "Id": "62e2a754b6c0ee2f230cee0f", + "ParentId": "5b5f72f786f77447ec5d7702", + "Price": 3000 + }, + { + "Id": "637b620db7afa97bfc3d7009", + "ParentId": "5b47574386f77428ca22b33a", + "Price": 60000 + }, + { + "Id": "637ba19df7ca6372bf2613d7", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 2850 + }, + { + "Id": "63a39dfe3901f439517cafba", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 14331 + }, + { + "Id": "63a39e1d234195315d4020bd", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 5136 + }, + { + "Id": "648987d673c462723909a151", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6374a822e629013b9c0645c8", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 2350 + }, + { + "Id": "637b6d610aef6cfc5e02dd14", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 4253 + }, + { + "Id": "63d3ce281fe77d0f2801859e", + "ParentId": "5b5f760586f774093e6cb509", + "Price": 6756 + }, + { + "Id": "63f5ed14534b2c3d5479a677", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 30124 + }, + { + "Id": "64637076203536ad5600c990", + "ParentId": "5b5f79a486f77409407a7f94", + "Price": 72360 + }, + { + "Id": "649ec30cb013f04a700e60fb", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 4313 + }, + { + "Id": "64b7af734b75259c590fa895", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 101 + }, + { + "Id": "64ccc24de61ea448b507d34d", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 86724 + }, + { + "Id": "619cbfccbedcde2f5b3f7bdd", + "ParentId": "5b47574386f77428ca22b2f6", + "Price": 132000 + }, + { + "Id": "61f7b85367ddd414173fdb36", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 2000 + }, + { + "Id": "62386b7153757417e93a4e9f", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 4000 + }, + { + "Id": "624c09cfbc2e27219346d955", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 74 + }, + { + "Id": "6259bdcabd28e4721447a2aa", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2300 + }, + { + "Id": "628e4e576d783146b124c64d", + "ParentId": "5b5f6f3c86f774094242ef87", + "Price": 79350 + }, + { + "Id": "62a5c2c98ec41a51b34739c0", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 15000 + }, + { + "Id": "63075cc5962d0247b029dc2a", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 5200 + }, { "Id": "630f291b9f66a28b37094bb8", "ParentId": "5b5f724c86f774093f2ecf15", @@ -15236,26 +14986,6 @@ "ParentId": "5b5f761f86f774094242f1a1", "Price": 900 }, - { - "Id": "62e7c7f3c34ea971710c32fc", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 25567 - }, - { - "Id": "62e14904c2699c0ec93adc47", - "ParentId": "5b5f796a86f774093f2ed3c0", - "Price": 31000 - }, - { - "Id": "62e7c8f91cd3fde4d503d690", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 4000 - }, - { - "Id": "62e2969582ebf260c20539c2", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 2100 - }, { "Id": "637f57a68d137b27f70c4968", "ParentId": "5b5f75e486f77447ec5d7712", @@ -15266,51 +14996,6 @@ "ParentId": "5b5f757486f774093e6cb507", "Price": 1750 }, - { - "Id": "630764fea987397c0816d219", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 2300 - }, - { - "Id": "633a98eab8b0506e48497c1a", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 2900 - }, - { - "Id": "630765cb962d0247b029dc45", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 850 - }, - { - "Id": "63626d904aa74b8fe30ab426", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 20000 - }, - { - "Id": "63737f448b28897f2802b874", - "ParentId": "5b5f701386f774093f2ecf0f", - "Price": 54398 - }, - { - "Id": "630f2982cdb9e392db0cbcc7", - "ParentId": "5b5f731a86f774093e6cb4f9", - "Price": 42965 - }, - { - "Id": "63888bbd28e5cc32cc09d2b6", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 32000 - }, - { - "Id": "6386120cd6baa055ad1e201c", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 7700 - }, - { - "Id": "6389c85357baa773a825b356", - "ParentId": "5b47574386f77428ca22b2ef", - "Price": 300000 - }, { "Id": "6389c92d52123d5dd17f8876", "ParentId": "5b47574386f77428ca22b341", @@ -15321,26 +15006,6 @@ "ParentId": "5c518ec986f7743b68682ce2", "Price": 1500000 }, - { - "Id": "63920105a83e15700a00f168", - "ParentId": "5b5f7a0886f77409407a7f96", - "Price": 100000 - }, - { - "Id": "6389f1dfc879ce63f72fc43e", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 6600 - }, - { - "Id": "63d3d44a2a49307baf09386d", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 31567 - }, - { - "Id": "63a39f18c2d53c2c6839c1d3", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 21554 - }, { "Id": "63a39667c9b3aa4b61683e98", "ParentId": "5c518ec986f7743b68682ce2", @@ -15371,21 +15036,6 @@ "ParentId": "5b47574386f77428ca22b33c", "Price": 1000 }, - { - "Id": "641074a07fd350b98c0b3f96", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 5697 - }, - { - "Id": "64898602f09d032aa9399d56", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "64785e7c19d732620e045e15", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 20142 - }, { "Id": "64aceab0426a303417060654", "ParentId": "5b47574386f77428ca22b33c", @@ -15396,26 +15046,6 @@ "ParentId": "5b47574386f77428ca22b33c", "Price": 1000 }, - { - "Id": "64119cdbdcf48d656f0aa272", - "ParentId": "5b5f764186f77447ec5d7714", - "Price": 1014 - }, - { - "Id": "6492e3a97df7d749100e29ee", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 7174 - }, - { - "Id": "64119d672c6d6f921a0929fb", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 350 - }, - { - "Id": "6492efb8cfcf7c89e701abf3", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 1245 - }, { "Id": "64c196ad26a15b84aa07132f", "ParentId": "5b5f731a86f774093e6cb4f9", @@ -15426,26 +15056,6 @@ "ParentId": "5b619f1a86f77450a702a6f3", "Price": 55000 }, - { - "Id": "6491c6f6ef312a876705191b", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 24800 - }, - { - "Id": "649ec107961514b22506b10c", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 2384 - }, - { - "Id": "64a536392d2c4e6e970f4121", - "ParentId": "5b5f6f8786f77447ed563642", - "Price": 18771 - }, - { - "Id": "649ec2da59cbb3c813042dca", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 920 - }, { "Id": "6393262086e646067c176aa2", "ParentId": "5b619f1a86f77450a702a6f3", @@ -15456,26 +15066,141 @@ "ParentId": "5b5f755f86f77447ec5d770e", "Price": 7410 }, + { + "Id": "61bf7b6302b3924be92fa8c3", + "ParentId": "5b47574386f77428ca22b2ee", + "Price": 5000 + }, + { + "Id": "6217726288ed9f0845317459", + "ParentId": "5b5f79eb86f77447ed5636b7", + "Price": 5732 + }, + { + "Id": "62178be9d0050232da3485d9", + "ParentId": "5b5f79eb86f77447ed5636b7", + "Price": 10000 + }, + { + "Id": "622b38c56762c718e457e246", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 18600 + }, + { + "Id": "624c09da2cec124eb67c1046", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 74 + }, + { + "Id": "6259c3d8012d6678ec38eeb8", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 2100 + }, + { + "Id": "628120fd5631d45211793c9f", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 9700 + }, + { + "Id": "628b9c37a733087d0d7fe84b", + "ParentId": "5b5f78e986f77447ed5636b1", + "Price": 31000 + }, + { + "Id": "62963c18dbc8ab5f0d382d0b", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 72000 + }, + { + "Id": "62a091170b9d3c46de5b6cf2", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 51000 + }, + { + "Id": "62a09e974f842e1bd12da3f0", + "ParentId": "5b47574386f77428ca22b341", + "Price": 69000 + }, + { + "Id": "634959225289190e5e773b3b", + "ParentId": "5b5f6fa186f77409407a7eb7", + "Price": 100000 + }, + { + "Id": "62e7c7f3c34ea971710c32fc", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 25567 + }, + { + "Id": "62e7c8f91cd3fde4d503d690", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 4000 + }, + { + "Id": "630764fea987397c0816d219", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 2300 + }, + { + "Id": "630765cb962d0247b029dc45", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 850 + }, + { + "Id": "630f2982cdb9e392db0cbcc7", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 42965 + }, + { + "Id": "63888bbd28e5cc32cc09d2b6", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 32000 + }, + { + "Id": "6389c85357baa773a825b356", + "ParentId": "5b47574386f77428ca22b2ef", + "Price": 300000 + }, + { + "Id": "6389f1dfc879ce63f72fc43e", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 6600 + }, + { + "Id": "63a39f18c2d53c2c6839c1d3", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 21554 + }, + { + "Id": "64898602f09d032aa9399d56", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "64119cdbdcf48d656f0aa272", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 1014 + }, + { + "Id": "64119d672c6d6f921a0929fb", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 350 + }, + { + "Id": "6491c6f6ef312a876705191b", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 24800 + }, + { + "Id": "64a536392d2c4e6e970f4121", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 18771 + }, { "Id": "64acea09c4eda9354b0226ad", "ParentId": "5b47574386f77428ca22b33c", "Price": 1000 }, - { - "Id": "64acea16c4eda9354b0226b0", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "64b8ee384b75259c590fa89b", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 220 - }, - { - "Id": "634f036a517ccc8a960fc746", - "ParentId": "5b5f760586f774093e6cb509", - "Price": 1750 - }, { "Id": "64b7bbb74b75259c590fa897", "ParentId": "5b47574386f77428ca22b33b", @@ -15491,16 +15216,291 @@ "ParentId": "5c518ec986f7743b68682ce2", "Price": 6666 }, - { - "Id": "644674a13d52156624001fbc", - "ParentId": "5b5f78e986f77447ed5636b1", - "Price": 58147 - }, { "Id": "63a943cead5cc12f22161ff7", "ParentId": "5b619f1a86f77450a702a6f3", "Price": 58000 }, + { + "Id": "619f4d304c58466fe1228437", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 502 + }, + { + "Id": "622f02437762f55aaa68ac85", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1000 + }, + { + "Id": "6231670f0b8aa5472d060095", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 1250 + }, + { + "Id": "626becf9582c3e319310b837", + "ParentId": "5b5f73ab86f774094242f195", + "Price": 13258 + }, + { + "Id": "628121434fa03b6b6c35dc6a", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 58000 + }, + { + "Id": "628c9ab845c59e5b80768a81", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 7900 + }, + { + "Id": "62a09dd4621468534a797ac7", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 35000 + }, + { + "Id": "62a09ee4cf4a99369e262453", + "ParentId": "5b47574386f77428ca22b2f0", + "Price": 8000 + }, + { + "Id": "62a61bbf8ec41a51b34758d2", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 21000 + }, + { + "Id": "62a61c988ec41a51b34758d5", + "ParentId": "5b47574386f77428ca22b331", + "Price": 20700 + }, + { + "Id": "62e7c880f68e7a0676050c7c", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 1000 + }, + { + "Id": "62e910aaf957f2915e0a5e36", + "ParentId": "5b47574386f77428ca22b345", + "Price": 1000000 + }, + { + "Id": "62ed189fb3608410ef5a2bfc", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1000 + }, + { + "Id": "61a00bcb177fb945751bbe6a", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 0 + }, + { + "Id": "630f28f0cadb1fe05e06f004", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 4200 + }, + { + "Id": "61f804acfcba9556ea304cb8", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 3800 + }, + { + "Id": "63877c99e785640d436458ea", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 60000 + }, + { + "Id": "620109578d82e67e7911abf2", + "ParentId": "5b5f79eb86f77447ed5636b7", + "Price": 9878 + }, + { + "Id": "6389c8c5dbfd5e4b95197e6b", + "ParentId": "5b47574386f77428ca22b341", + "Price": 750000 + }, + { + "Id": "63a39f6e64283b5e9c56b289", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 39144 + }, + { + "Id": "6489879db5a2df1c815a04ef", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6499849fc93611967b034949", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 45162 + }, + { + "Id": "62330b3ed4dc74626d570b95", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 142 + }, + { + "Id": "64aceac0c4eda9354b0226b3", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "62389bc9423ed1685422dc57", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 5000 + }, + { + "Id": "64ca3d3954fc657e230529cc", + "ParentId": "5b5f79a486f77409407a7f94", + "Price": 80143 + }, + { + "Id": "62444cb99f47004c781903eb", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1573 + }, + { + "Id": "64ccc1d4a0f13c24561edf27", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 17423 + }, + { + "Id": "6259c2c1d714855d182bad85", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 13500 + }, + { + "Id": "634f04d82e5def262d0b30c6", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1703 + }, + { + "Id": "634f06262e5def262d0b30ca", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 1109 + }, + { + "Id": "626673016f1edc06f30cf6d5", + "ParentId": "5b5f731a86f774093e6cb4f9", + "Price": 71000 + }, + { + "Id": "628b9c7d45122232a872358f", + "ParentId": "5b5f6f8786f77447ed563642", + "Price": 6189 + }, + { + "Id": "62987da96188c076bc0d8c51", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 97000 + }, + { + "Id": "62987e26a77ec735f90a2995", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 21070 + }, + { + "Id": "62e27a7865f0b1592a49e17b", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 1220 + }, + { + "Id": "62e7c72df68e7a0676050c77", + "ParentId": "5b5f764186f77447ec5d7714", + "Price": 3800 + }, + { + "Id": "62ebd290c427473eff0baafb", + "ParentId": "5b5f740a86f77447ec5d7706", + "Price": 9000 + }, + { + "Id": "630767c37d50ff5e8a1ea71a", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 2956 + }, + { + "Id": "63088377b5cd696784087147", + "ParentId": "5b5f792486f77447ed5636b3", + "Price": 8200 + }, + { + "Id": "6333f05d1bc0e6217a0e9d34", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 28500 + }, + { + "Id": "633ec7c2a6918cb895019c6c", + "ParentId": "5b5f792486f77447ed5636b3", + "Price": 30443 + }, + { + "Id": "634e61b0767cb15c4601a877", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 2000 + }, + { + "Id": "637f57c532b66e7e320a6676", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 5640 + }, + { + "Id": "6389c8fb46b54c634724d847", + "ParentId": "5b47574386f77428ca22b341", + "Price": 500000 + }, + { + "Id": "63969c9019971040b005049b", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 5225 + }, + { + "Id": "63a71e86b7f4570d3a293169", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 65812 + }, + { + "Id": "637784c5f7b3f4ac1a0d1a9a", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 3214 + }, + { + "Id": "63f4ba71f31d4a33b87bd046", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 8124 + }, + { + "Id": "646371779f5f0ea59a04c204", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 764 + }, + { + "Id": "64acea0d03378853630da53b", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "64b8f7968532cf95ee0a0dbf", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 270 + }, + { + "Id": "64b8f7c241772715af0f9c3d", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 190 + }, + { + "Id": "628393620d8524273e7eb028", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 4500 + }, + { + "Id": "634eff66517ccc8a960fc735", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 3920 + }, + { + "Id": "6399f54b0a36db13c823ad21", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 1000000 + }, { "Id": "64527a3a7da7133e5a09ca99", "ParentId": "5b5f731a86f774093e6cb4f9", @@ -15511,41 +15511,61 @@ "ParentId": "5b5f755f86f77447ec5d770e", "Price": 2125 }, + { + "Id": "64afd81707e2cf40e903a316", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 14521 + }, + { + "Id": "645122f6d4928d46d30be3ff", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 16250 + }, { "Id": "644675573d52156624001fc9", "ParentId": "5b5f75e486f77447ec5d7712", "Price": 1652 }, { - "Id": "64f09c02b63b74469b6c149f", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 32000 - }, - { - "Id": "6448f2f6d4928d46d30be3f6", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 1734 - }, - { - "Id": "64afd81707e2cf40e903a316", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 14521 + "Id": "6450ec2e7da7133e5a09ca96", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 4499 }, { "Id": "645123013d52156624001fd1", "ParentId": "5b5f75c686f774094242f19f", "Price": 17015 }, + { + "Id": "6448f2f6d4928d46d30be3f6", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 1734 + }, + { + "Id": "64ad2d8d7e2fcecf0305533f", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 0 + }, + { + "Id": "6452519e3d52156624001fd5", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1696 + }, + { + "Id": "64ad2dac6f9247c2f4012439", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 0 + }, + { + "Id": "64f09c02b63b74469b6c149f", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 32000 + }, { "Id": "6451167ad4928d46d30be3fd", "ParentId": "5b5f757486f774093e6cb507", "Price": 2655 }, - { - "Id": "64d0b40fbe2eed70e254e2d4", - "ParentId": "5b47574386f77428ca22b345", - "Price": 100000 - }, { "Id": "64942bfc6ee699f6890dff95", "ParentId": "5b5f724c86f774093f2ecf15", @@ -15676,6 +15696,16 @@ "ParentId": "6564b96a189fe36f356d177c", "Price": 4702 }, + { + "Id": "6450f21a3d52156624001fcf", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 1418 + }, + { + "Id": "647de824196bf69818044c93", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 11532 + }, { "Id": "657333302cc8dfad2c0a3d9b", "ParentId": "6564b96a189fe36f356d177c", @@ -15707,960 +15737,10 @@ "Price": 7797 }, { - "Id": "6450ec2e7da7133e5a09ca96", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 4499 - }, - { - "Id": "6452519e3d52156624001fd5", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1696 - }, - { - "Id": "645122f6d4928d46d30be3ff", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 16250 - }, - { - "Id": "64ad2d8d7e2fcecf0305533f", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 0 - }, - { - "Id": "6450f21a3d52156624001fcf", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 1418 - }, - { - "Id": "64ad2dac6f9247c2f4012439", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 0 - }, - { - "Id": "647de824196bf69818044c93", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 11532 - }, - { - "Id": "647def638295ebcb5b02f05b", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 3958 - }, - { - "Id": "6494094948796d891603e59f", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 5492 - }, - { - "Id": "651bfe4d1065f87f082e7209", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 12428 - }, - { - "Id": "653ed19d22e1ef3d9002c328", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 1761 - }, - { - "Id": "654a8ba90337d53f9102c2b2", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 0 - }, - { - "Id": "655c673673a43e23e857aebd", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 50000 - }, - { - "Id": "655dccfdbdcc6b5df71382b6", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 9547 - }, - { - "Id": "656ddcf0f02d7bcea90bf395", - "ParentId": "5b5f6f6c86f774093f2ecf0b", - "Price": 27351 - }, - { - "Id": "656f603f94b480b8a500c0d6", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 15207 - }, - { - "Id": "657023bebfc87b3a34093207", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570243fcfc010a0f50069fb", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702469c5d7d4cb4d07855b", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657024d8c5d7d4cb4d078567", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570253ec5d7d4cb4d078573", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702546cfc010a0f5006a1f", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702572c5d7d4cb4d078576", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657025ebc5d7d4cb4d078588", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657026251419851aef03e72a", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702629cfc010a0f5006a47", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702630cfc010a0f5006a4a", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65703d866584602f7d057a8a", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 10177 - }, - { - "Id": "65705cea4916448ae1050897", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 1726 - }, - { - "Id": "657089638db3adca1009f4ca", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 74802 - }, - { - "Id": "6570f79c4c65ab77a6015121", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2930 - }, - { - "Id": "6570fa1f4c65ab77a601512f", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 13071 - }, - { - "Id": "6571138e818110db4600aa71", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 19675 - }, - { - "Id": "657119fea330b8c9060f7afc", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8297 - }, - { - "Id": "65711bc79eb8c145180dbba1", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 10555 - }, - { - "Id": "6571dbda88ead79fcf091d75", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 5689 - }, - { - "Id": "6572fca39a866b80ab07eb65", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 4465 - }, - { - "Id": "65730c0e292ecadbfa09ad49", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 14152 - }, - { - "Id": "65731b4fcea9255e2102360e", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 14675 - }, - { - "Id": "657322a4cea9255e21023651", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 25171 - }, - { - "Id": "6575c326c6700bd6b40e8a80", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 5235 - }, - { - "Id": "6575c366c6700bd6b40e8a8c", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 7734 - }, - { - "Id": "6575c3dfdc9932aed601c5f8", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 7734 - }, - { - "Id": "6575da159e27f4a85e081131", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 11918 - }, - { - "Id": "6575ea7c60703324250610e2", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 25345 - }, - { - "Id": "64afdcb83efdfea28601d041", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 72426 - }, - { - "Id": "6513f13a8cb24472490ee32f", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 842 - }, - { - "Id": "653ecef836fae5a82f02b869", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 12609 - }, - { - "Id": "654a8b60f414fcea4004d793", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 0 - }, - { - "Id": "654a8b80f414fcea4004d797", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 1448 - }, - { - "Id": "655200ba0ef76cf7be09d528", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 48141 - }, - { - "Id": "655c67782a1356436041c9c5", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 50000 - }, - { - "Id": "657023f81419851aef03e6f1", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657024011419851aef03e6f4", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702432bfc87b3a3409321c", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657024431419851aef03e6fd", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657024581419851aef03e700", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702479c5d7d4cb4d07855e", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657025cfbfc87b3a34093253", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570264d1419851aef03e736", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657049d23425b19bbc0502f0", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 20540 - }, - { - "Id": "65705cb314f2ed6d7d0b773c", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 1450 - }, - { - "Id": "6570df9c615f54368b04fca9", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 23295 - }, - { - "Id": "6570e479a6560e4ee50c2b02", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 22540 - }, - { - "Id": "6570fb22584a51c23e03251f", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 4868 - }, - { - "Id": "6570fbdd74d84423df065f60", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 4123 - }, - { - "Id": "65730c2b292ecadbfa09ad50", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 3913 - }, - { - "Id": "65731038292ecadbfa09b391", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 3329 - }, - { - "Id": "6573337f2cc8dfad2c0a3da7", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 7128 - }, - { - "Id": "6575d598b15fef3dd4051678", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 19127 - }, - { - "Id": "6575d9e7945bf78edd04c42f", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 17012 - }, - { - "Id": "6575dd64945bf78edd04c438", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 10670 - }, - { - "Id": "6575dd6e9d3a0ddf660b9047", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 10670 - }, - { - "Id": "6516e9bc5901745209404287", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 5498 - }, - { - "Id": "6529370c405a5f51dd023db8", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 9614 - }, - { - "Id": "653ecc425a1690d9d90491e4", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 1585 - }, - { - "Id": "653ecd065a1690d9d90491e6", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 1015 - }, - { - "Id": "654a90aff4f81a421b0a7c86", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8972 - }, - { - "Id": "6551fec55d0cf82e51014288", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 48141 - }, - { - "Id": "656fa0fb498d1b7e3e071d9c", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 16079 - }, - { - "Id": "657023f1bfc87b3a34093210", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570246fcfc010a0f5006a01", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657024a4bfc87b3a3409322c", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657024aebfc87b3a3409322f", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657024b8bfc87b3a34093232", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657024f5cfc010a0f5006a10", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702524cfc010a0f5006a16", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570259fcfc010a0f5006a32", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570266bc5d7d4cb4d078594", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657045741bd9beedc40b7299", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 13262 - }, - { - "Id": "6570e83223c1f638ef0b0ede", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 21009 - }, - { - "Id": "657112a4818110db4600aa66", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 27685 - }, - { - "Id": "6572e059371fccfbf909d5dc", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 21623 - }, - { - "Id": "6572eb0e55beba16bc04079f", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 11678 - }, - { - "Id": "65732e30dd8739f6440ef383", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8541 - }, - { - "Id": "6573333eca0ca984940a2d57", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8375 - }, - { - "Id": "6575c2be52b7f8c76a05ee25", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 21060 - }, - { - "Id": "6575c2d852b7f8c76a05ee2d", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 7734 - }, - { - "Id": "6575c385dc9932aed601c5f0", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8567 - }, - { - "Id": "6575c3b3dc9932aed601c5f4", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 21060 - }, - { - "Id": "6575c3fd52b7f8c76a05ee3d", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8575 - }, - { - "Id": "648ae3e356c6310a830fc291", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 1450 - }, - { - "Id": "64afee8e9f589807e30dc68a", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 0 - }, - { - "Id": "65290f395ae2ae97b80fdf2d", - "ParentId": "5b5f78fc86f77409407a7f90", - "Price": 21300 - }, - { - "Id": "6529302b8c26af6326029fb7", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 529 - }, - { - "Id": "65293c7a17e14363030ad308", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 5332 - }, - { - "Id": "65392f611406374f82152ba5", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 4587 - }, - { - "Id": "654a8976f414fcea4004d78b", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 9395 - }, - { - "Id": "655746010177119f4a097ff7", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 37084 - }, - { - "Id": "655c66e40b2de553b618d4b8", - "ParentId": "5b47574386f77428ca22b2f1", + "Id": "64d0b40fbe2eed70e254e2d4", + "ParentId": "5b47574386f77428ca22b345", "Price": 100000 }, - { - "Id": "656f9d5900d62bcd2e02407c", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 12580 - }, - { - "Id": "656fa53d94b480b8a500c0e4", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 36807 - }, - { - "Id": "656fad8c498d1b7e3e071da0", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 18620 - }, - { - "Id": "6570248dcfc010a0f5006a04", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702566bfc87b3a3409324d", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657025a4bfc87b3a34093250", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65704de13e7bba58ea0285c8", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 7528 - }, - { - "Id": "65707fc348c7a887f2010432", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 11349 - }, - { - "Id": "657112234269e9a568089eac", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 27685 - }, - { - "Id": "657119d49eb8c145180dbb95", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8297 - }, - { - "Id": "6571bde39837cc51b800c212", - "ParentId": "5b47574386f77428ca22b32f", - "Price": 6523 - }, - { - "Id": "6572e048371fccfbf909d5d8", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 21623 - }, - { - "Id": "6572f1edea457732140ce875", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2513 - }, - { - "Id": "65731b6b6042b0f210020ef6", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 7122 - }, - { - "Id": "65731b716e709cddd001ec47", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 7122 - }, - { - "Id": "657322988c1cc6dcd9098b2d", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 25171 - }, - { - "Id": "6575c2e4efc786cd9101a5dd", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 7734 - }, - { - "Id": "6575d9cf0546f8b1de093df2", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 11069 - }, - { - "Id": "6575da07945bf78edd04c433", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 11918 - }, - { - "Id": "647db1eca8d3399c380d195c", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 5194 - }, - { - "Id": "64807a29e5ffe165600abc97", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 11732 - }, - { - "Id": "64943b74e9998d641b0412ed", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 13052 - }, - { - "Id": "64afef49977493a0ee026217", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 0 - }, - { - "Id": "6513ef33e06849f06c0957ca", - "ParentId": "5b5f79a486f77409407a7f94", - "Price": 22638 - }, - { - "Id": "6516e9d7e239bd0c487e3766", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 7422 - }, - { - "Id": "651a8bf3a8520e48047bf708", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 6754 - }, - { - "Id": "6529109524cbe3c74a05e5b7", - "ParentId": "5b5f751486f77447ec5d770c", - "Price": 1578 - }, - { - "Id": "652911675ae2ae97b80fdf3c", - "ParentId": "5b5f761f86f774094242f1a1", - "Price": 2400 - }, - { - "Id": "6540d2162ae6d96b540afcaf", - "ParentId": "5b5f7a0886f77409407a7f96", - "Price": 22386 - }, - { - "Id": "655c663a6689c676ce57af85", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 75000 - }, - { - "Id": "656f66b5c6baea13cd07e108", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 53531 - }, - { - "Id": "656fb21fa0dce000a2020f7c", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 16842 - }, - { - "Id": "657023decfc010a0f50069ec", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570249f1419851aef03e709", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657024b31419851aef03e70f", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657024ecc5d7d4cb4d07856d", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702577cfc010a0f5006a2c", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570257cc5d7d4cb4d078579", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657025c4c5d7d4cb4d078582", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702614c5d7d4cb4d07858b", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570261dc5d7d4cb4d07858e", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702656c5d7d4cb4d078591", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65705c3c14f2ed6d7d0b7738", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 7528 - }, - { - "Id": "6570e90b3a5689d85f08db97", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 13680 - }, - { - "Id": "6570f35cd67d0309980a7acb", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 10707 - }, - { - "Id": "657112fa818110db4600aa6b", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 19675 - }, - { - "Id": "6572e53c73c0eabb700109a4", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 3402 - }, - { - "Id": "6572fc989a866b80ab07eb61", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 4465 - }, - { - "Id": "6575c2adefc786cd9101a5d9", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 21060 - }, - { - "Id": "6575c373dc9932aed601c5ec", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 7734 - }, - { - "Id": "6575e72660703324250610c7", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 120745 - }, - { - "Id": "6575ea3060703324250610da", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 63262 - }, - { - "Id": "6513f153e63f29908d0ffaba", - "ParentId": "5b5f746686f77447ec5d7708", - "Price": 576 - }, - { - "Id": "6529243824cbe3c74a05e5c1", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 1124 - }, - { - "Id": "655c669103999d3c810c025b", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 100000 - }, - { - "Id": "656efaf54772930db4031ff5", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 32703 - }, - { - "Id": "656f63c027aed95beb08f62c", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 51402 - }, - { - "Id": "656fb0bd7c2d57afe200c0dc", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 17254 - }, - { - "Id": "6570247ebfc87b3a34093229", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702495c5d7d4cb4d078561", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702536c5d7d4cb4d078570", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570259bc5d7d4cb4d07857f", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657025c9cfc010a0f5006a38", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570460471369562b300ce9f", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2995 - }, - { - "Id": "657080ca12755ae0d907ad5e", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2874 - }, - { - "Id": "6570e8a623c1f638ef0b0ee6", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 4439 - }, - { - "Id": "6570f3890b4ae5847f060dad", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 3777 - }, - { - "Id": "657112ce22996eaf110881fb", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 27685 - }, - { - "Id": "6571133d22996eaf11088200", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 19675 - }, - { - "Id": "65711b07a330b8c9060f7b01", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 10555 - }, - { - "Id": "65719f9ef392ad76c50a2ec8", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 32040 - }, - { - "Id": "6572f1e10103b4a3270332df", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2513 - }, - { - "Id": "6572fc8c9a866b80ab07eb5d", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 10289 - }, - { - "Id": "65730c2213a2f660f60bea96", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 14152 - }, - { - "Id": "65730c35292ecadbfa09ad54", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 3913 - }, - { - "Id": "65731b576e709cddd001ec3f", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 5233 - }, - { - "Id": "657322acd9d89ff7ac0d961b", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8879 - }, - { - "Id": "657322b7d9d89ff7ac0d961f", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8879 - }, - { - "Id": "65749ccf33fdc9c0cf06d3ca", - "ParentId": "5b47574386f77428ca22b330", - "Price": 3753 - }, - { - "Id": "6575c2cd52b7f8c76a05ee29", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 7734 - }, - { - "Id": "6575d57a16c2762fba00581c", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 20594 - }, { "Id": "645e0c6b3b381ede770e1cc9", "ParentId": "5b5f78e986f77447ed5636b1", @@ -16936,6 +16016,331 @@ "ParentId": "6564b96a189fe36f356d177c", "Price": 25343 }, + { + "Id": "647def638295ebcb5b02f05b", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 3958 + }, + { + "Id": "6494094948796d891603e59f", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 5492 + }, + { + "Id": "651bfe4d1065f87f082e7209", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 12428 + }, + { + "Id": "653ed19d22e1ef3d9002c328", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 1761 + }, + { + "Id": "654a8ba90337d53f9102c2b2", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 0 + }, + { + "Id": "655c673673a43e23e857aebd", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 50000 + }, + { + "Id": "655dccfdbdcc6b5df71382b6", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 9547 + }, + { + "Id": "656ddcf0f02d7bcea90bf395", + "ParentId": "5b5f6f6c86f774093f2ecf0b", + "Price": 27351 + }, + { + "Id": "656f603f94b480b8a500c0d6", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 15207 + }, + { + "Id": "657023bebfc87b3a34093207", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6570243fcfc010a0f50069fb", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702469c5d7d4cb4d07855b", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657024d8c5d7d4cb4d078567", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6570253ec5d7d4cb4d078573", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702546cfc010a0f5006a1f", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702572c5d7d4cb4d078576", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657025ebc5d7d4cb4d078588", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657026251419851aef03e72a", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702629cfc010a0f5006a47", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702630cfc010a0f5006a4a", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65703d866584602f7d057a8a", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 10177 + }, + { + "Id": "65705cea4916448ae1050897", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 1726 + }, + { + "Id": "657089638db3adca1009f4ca", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 74802 + }, + { + "Id": "6570f79c4c65ab77a6015121", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 2930 + }, + { + "Id": "6570fa1f4c65ab77a601512f", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 13071 + }, + { + "Id": "6571138e818110db4600aa71", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 19675 + }, + { + "Id": "657119fea330b8c9060f7afc", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 8297 + }, + { + "Id": "65711bc79eb8c145180dbba1", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 10555 + }, + { + "Id": "6571dbda88ead79fcf091d75", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 5689 + }, + { + "Id": "6572fca39a866b80ab07eb65", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 4465 + }, + { + "Id": "65730c0e292ecadbfa09ad49", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 14152 + }, + { + "Id": "65731b4fcea9255e2102360e", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 14675 + }, + { + "Id": "657322a4cea9255e21023651", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 25171 + }, + { + "Id": "6575c326c6700bd6b40e8a80", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 5235 + }, + { + "Id": "6575c366c6700bd6b40e8a8c", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 7734 + }, + { + "Id": "6575c3dfdc9932aed601c5f8", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 7734 + }, + { + "Id": "6575da159e27f4a85e081131", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 11918 + }, + { + "Id": "6575ea7c60703324250610e2", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 25345 + }, + { + "Id": "64527a263d52156624001fd7", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 484 + }, + { + "Id": "647dba3142c479dde701b654", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 6736 + }, + { + "Id": "64f5b4f71a5f313cb144c06c", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 69000 + }, + { + "Id": "6513f05a94c72326990a3866", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 1175 + }, + { + "Id": "651bf5617b3b552ef6712cb7", + "ParentId": "5b5f751486f77447ec5d770c", + "Price": 4408 + }, + { + "Id": "65293c38fc460e50a509cb25", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 3716 + }, + { + "Id": "653931da5db71d30ab1d6296", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 4357 + }, + { + "Id": "653ed132896b99b40a0292e6", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 13908 + }, + { + "Id": "65434a4e4e3a01736a6c9706", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 870 + }, + { + "Id": "655f13e0a246670fb0373245", + "ParentId": "5b5f742686f774093e6cb4ff", + "Price": 31501 + }, + { + "Id": "6570241bcfc010a0f50069f5", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657024921419851aef03e706", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6570255dbfc87b3a3409324a", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657025a81419851aef03e724", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6570265f1419851aef03e739", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65708070f65e2491bf00972c", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 1536 + }, + { + "Id": "6570e5100b57c03ec90b970a", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 22540 + }, + { + "Id": "6570e8e7ab49e964120b4563", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 4439 + }, + { + "Id": "6571dbd388ead79fcf091d71", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 5689 + }, + { + "Id": "6572eb1b04ee6483ef039882", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 11678 + }, + { + "Id": "65732e05d0acf75aea06c87f", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 7773 + }, + { + "Id": "6575bca0dc9932aed601c5d7", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 34389 + }, + { + "Id": "6575d561b15fef3dd4051670", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 49949 + }, + { + "Id": "6575d589b15fef3dd4051674", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 20594 + }, + { + "Id": "6575d5a616c2762fba005820", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 23530 + }, + { + "Id": "6575d9b8945bf78edd04c427", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 31019 + }, + { + "Id": "6575ea5cf6a13a7b7100adc8", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 11804 + }, { "Id": "64ad2dba0b9840e4c80c2485", "ParentId": "6564b96a189fe36f356d177c", @@ -17106,16 +16511,1001 @@ "ParentId": "6564b96a189fe36f356d177c", "Price": 11804 }, + { + "Id": "64afdcb83efdfea28601d041", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 72426 + }, + { + "Id": "6513f13a8cb24472490ee32f", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 842 + }, + { + "Id": "653ecef836fae5a82f02b869", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 12609 + }, + { + "Id": "654a8b60f414fcea4004d793", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 0 + }, + { + "Id": "654a8b80f414fcea4004d797", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 1448 + }, + { + "Id": "655200ba0ef76cf7be09d528", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 48141 + }, + { + "Id": "655c67782a1356436041c9c5", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 50000 + }, + { + "Id": "657023f81419851aef03e6f1", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657024011419851aef03e6f4", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702432bfc87b3a3409321c", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657024431419851aef03e6fd", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657024581419851aef03e700", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702479c5d7d4cb4d07855e", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657025cfbfc87b3a34093253", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6570264d1419851aef03e736", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657049d23425b19bbc0502f0", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 20540 + }, + { + "Id": "65705cb314f2ed6d7d0b773c", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 1450 + }, + { + "Id": "6570df9c615f54368b04fca9", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 23295 + }, + { + "Id": "6570e479a6560e4ee50c2b02", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 22540 + }, + { + "Id": "6570fb22584a51c23e03251f", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 4868 + }, + { + "Id": "6570fbdd74d84423df065f60", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 4123 + }, + { + "Id": "65730c2b292ecadbfa09ad50", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 3913 + }, + { + "Id": "65731038292ecadbfa09b391", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 3329 + }, + { + "Id": "6573337f2cc8dfad2c0a3da7", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 7128 + }, + { + "Id": "6575d598b15fef3dd4051678", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 19127 + }, + { + "Id": "6575d9e7945bf78edd04c42f", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 17012 + }, + { + "Id": "6575dd64945bf78edd04c438", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 10670 + }, + { + "Id": "6575dd6e9d3a0ddf660b9047", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 10670 + }, + { + "Id": "648ae3e356c6310a830fc291", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 1450 + }, + { + "Id": "64afee8e9f589807e30dc68a", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 0 + }, + { + "Id": "65290f395ae2ae97b80fdf2d", + "ParentId": "5b5f78fc86f77409407a7f90", + "Price": 21300 + }, + { + "Id": "6529302b8c26af6326029fb7", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 529 + }, + { + "Id": "65293c7a17e14363030ad308", + "ParentId": "5b5f754a86f774094242f19b", + "Price": 5332 + }, + { + "Id": "65392f611406374f82152ba5", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 4587 + }, + { + "Id": "654a8976f414fcea4004d78b", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 9395 + }, + { + "Id": "655746010177119f4a097ff7", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 37084 + }, + { + "Id": "655c66e40b2de553b618d4b8", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 100000 + }, + { + "Id": "656f9d5900d62bcd2e02407c", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 12580 + }, + { + "Id": "656fa53d94b480b8a500c0e4", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 36807 + }, + { + "Id": "656fad8c498d1b7e3e071da0", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 18620 + }, + { + "Id": "6570248dcfc010a0f5006a04", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702566bfc87b3a3409324d", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657025a4bfc87b3a34093250", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65704de13e7bba58ea0285c8", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 7528 + }, + { + "Id": "65707fc348c7a887f2010432", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 11349 + }, + { + "Id": "657112234269e9a568089eac", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 27685 + }, + { + "Id": "657119d49eb8c145180dbb95", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 8297 + }, + { + "Id": "6571bde39837cc51b800c212", + "ParentId": "5b47574386f77428ca22b32f", + "Price": 6523 + }, + { + "Id": "6572e048371fccfbf909d5d8", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 21623 + }, + { + "Id": "6572f1edea457732140ce875", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 2513 + }, + { + "Id": "65731b6b6042b0f210020ef6", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 7122 + }, + { + "Id": "65731b716e709cddd001ec47", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 7122 + }, + { + "Id": "657322988c1cc6dcd9098b2d", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 25171 + }, + { + "Id": "6575c2e4efc786cd9101a5dd", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 7734 + }, + { + "Id": "6575d9cf0546f8b1de093df2", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 11069 + }, + { + "Id": "6575da07945bf78edd04c433", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 11918 + }, + { + "Id": "6513f153e63f29908d0ffaba", + "ParentId": "5b5f746686f77447ec5d7708", + "Price": 576 + }, + { + "Id": "6529243824cbe3c74a05e5c1", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 1124 + }, + { + "Id": "655c669103999d3c810c025b", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 100000 + }, + { + "Id": "656efaf54772930db4031ff5", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 32703 + }, + { + "Id": "656f63c027aed95beb08f62c", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 51402 + }, + { + "Id": "656fb0bd7c2d57afe200c0dc", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 17254 + }, + { + "Id": "6570247ebfc87b3a34093229", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702495c5d7d4cb4d078561", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702536c5d7d4cb4d078570", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6570259bc5d7d4cb4d07857f", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657025c9cfc010a0f5006a38", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6570460471369562b300ce9f", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 2995 + }, + { + "Id": "657080ca12755ae0d907ad5e", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 2874 + }, + { + "Id": "6570e8a623c1f638ef0b0ee6", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 4439 + }, + { + "Id": "6570f3890b4ae5847f060dad", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 3777 + }, + { + "Id": "657112ce22996eaf110881fb", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 27685 + }, + { + "Id": "6571133d22996eaf11088200", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 19675 + }, + { + "Id": "65711b07a330b8c9060f7b01", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 10555 + }, + { + "Id": "65719f9ef392ad76c50a2ec8", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 32040 + }, + { + "Id": "6572f1e10103b4a3270332df", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 2513 + }, + { + "Id": "6572fc8c9a866b80ab07eb5d", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 10289 + }, + { + "Id": "65730c2213a2f660f60bea96", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 14152 + }, + { + "Id": "65730c35292ecadbfa09ad54", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 3913 + }, + { + "Id": "65731b576e709cddd001ec3f", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 5233 + }, + { + "Id": "657322acd9d89ff7ac0d961b", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 8879 + }, + { + "Id": "657322b7d9d89ff7ac0d961f", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 8879 + }, + { + "Id": "65749ccf33fdc9c0cf06d3ca", + "ParentId": "5b47574386f77428ca22b330", + "Price": 3753 + }, + { + "Id": "6575c2cd52b7f8c76a05ee29", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 7734 + }, + { + "Id": "6575d57a16c2762fba00581c", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 20594 + }, + { + "Id": "64afeecb977493a0ee026213", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 0 + }, + { + "Id": "65169d5b30425317755f8e25", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 5750 + }, + { + "Id": "6516b129609aaf354b34b3a8", + "ParentId": "5b5f761f86f774094242f1a1", + "Price": 1240 + }, + { + "Id": "652910565ae2ae97b80fdf35", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 24272 + }, + { + "Id": "652910ef50dc782999054b97", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 11675 + }, + { + "Id": "654a4a964b446df1ad03f192", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 49626 + }, + { + "Id": "655c67ab0d37ca5135388f4b", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 100000 + }, + { + "Id": "6567e7681265c8a131069b0f", + "ParentId": "5b5f748386f774093e6cb501", + "Price": 68601 + }, + { + "Id": "656f611f94b480b8a500c0db", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 34756 + }, + { + "Id": "656fd7c32668ef0402028fb9", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 8074 + }, + { + "Id": "657023c61419851aef03e6eb", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657023d6cfc010a0f50069e9", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6570240a1419851aef03e6f7", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702420bfc87b3a34093219", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657024c81419851aef03e712", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657024e8cfc010a0f5006a0d", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657024f01419851aef03e715", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6570252dbfc87b3a34093241", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657025421419851aef03e71e", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65703fa06584602f7d057a8e", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 10177 + }, + { + "Id": "657044e971369562b300ce9b", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 13262 + }, + { + "Id": "65708122f65e2491bf009755", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 1982 + }, + { + "Id": "6570880f4a747dbb63005ee5", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 20415 + }, + { + "Id": "65708b4c4a747dbb63005ef3", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 7730 + }, + { + "Id": "6570900858b315e8b70a8a98", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65711b489eb8c145180dbb9d", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 10555 + }, + { + "Id": "6571bac34076795e5e073843", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 1428 + }, + { + "Id": "6572e5221b5bc1185508c24f", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 8994 + }, + { + "Id": "6572f1f7ea457732140ce879", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 5369 + }, + { + "Id": "6573334aca0ca984940a2d5b", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 4635 + }, + { + "Id": "6575c30352b7f8c76a05ee31", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 8575 + }, + { + "Id": "6575c35bc6700bd6b40e8a88", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 7734 + }, + { + "Id": "6575ce45dc9932aed601c616", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 60819 + }, + { + "Id": "6575ce5befc786cd9101a671", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 17488 + }, + { + "Id": "6575d5b316c2762fba005824", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 16191 + }, + { + "Id": "654a8ae00337d53f9102c2aa", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 3718 + }, + { + "Id": "654a8b0b0337d53f9102c2ae", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 9395 + }, + { + "Id": "655c652d60d0ac437100fed7", + "ParentId": "5b47574386f77428ca22b2f1", + "Price": 75000 + }, + { + "Id": "656fa61e94b480b8a500c0e8", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 68217 + }, + { + "Id": "656fafe3498d1b7e3e071da4", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 69705 + }, + { + "Id": "65702426cfc010a0f50069f8", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702474bfc87b3a34093226", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6570251ccfc010a0f5006a13", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702532cfc010a0f5006a19", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657025bbcfc010a0f5006a35", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657026451419851aef03e733", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702681bfc87b3a3409325f", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702fe593b7ea9c330f4ce8", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 8313 + }, + { + "Id": "657080a212755ae0d907ad04", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 1536 + }, + { + "Id": "6570a88c8f221f3b210353b7", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 37850 + }, + { + "Id": "6570df294cc0d2ab1e05ed74", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 23295 + }, + { + "Id": "6570e0610b57c03ec90b96ef", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 35986 + }, + { + "Id": "6570f30b0921c914bf07964c", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 10707 + }, + { + "Id": "6570f6e774d84423df065f21", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 16718 + }, + { + "Id": "6570fb8f4c65ab77a601514d", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 2631 + }, + { + "Id": "6571199565daf6aa960c9b10", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 8297 + }, + { + "Id": "65719f0775149d62ce0a670b", + "ParentId": "5b47574386f77428ca22b330", + "Price": 3115 + }, + { + "Id": "6572e06819b4b511af012f8d", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 4883 + }, + { + "Id": "6572eb3b04ee6483ef03988a", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 2649 + }, + { + "Id": "6572fc809a866b80ab07eb59", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 10289 + }, + { + "Id": "65732688d9d89ff7ac0d9c4c", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 26204 + }, + { + "Id": "65733375b7a8d286530e3dd7", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 7128 + }, + { + "Id": "6575c2f7efc786cd9101a5e1", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 8575 + }, + { + "Id": "6575c34bc6700bd6b40e8a84", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 21060 + }, + { + "Id": "6575c390efc786cd9101a5e9", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 5235 + }, + { + "Id": "6575ce9db15fef3dd4051628", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 18957 + }, + { + "Id": "6575d9a79e27f4a85e08112d", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 31019 + }, + { + "Id": "6575d9f816c2762fba00588d", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 6824 + }, + { + "Id": "6575dd519e27f4a85e081146", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 29821 + }, + { + "Id": "6575ef599c7cad336508e453", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 25343 + }, + { + "Id": "64ad2dd30b9840e4c80c2489", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 0 + }, + { + "Id": "64afc71497cf3a403c01ff38", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 61955 + }, + { + "Id": "65266fd43341ed9aa903dd56", + "ParentId": "5b5f75c686f774094242f19f", + "Price": 8824 + }, + { + "Id": "6529366450dc782999054ba0", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 1316 + }, + { + "Id": "653ece125a1690d9d90491e8", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 1268 + }, + { + "Id": "654a4dea7c17dec2f50cc86a", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 12418 + }, + { + "Id": "65573fa5655447403702a816", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 39146 + }, + { + "Id": "6557458f83942d705f0c4962", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 8804 + }, + { + "Id": "6557519ac9b1d9bdcb0777e1", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 0 + }, + { + "Id": "6567e751a715f85433025998", + "ParentId": "5b5f755f86f77447ec5d770e", + "Price": 5683 + }, + { + "Id": "657023dabfc87b3a3409320d", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657023e31419851aef03e6ee", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702452cfc010a0f50069fe", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657024f9bfc87b3a3409323b", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657025961419851aef03e721", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702606cfc010a0f5006a3e", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6570260c1419851aef03e727", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702640cfc010a0f5006a4d", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6570305d93b7ea9c330f4ced", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 1877 + }, + { + "Id": "65703fe46a912c8b5c03468b", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 2298 + }, + { + "Id": "6570e5674cc0d2ab1e05edbb", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 6301 + }, + { + "Id": "6570fc41d3eefd23430f8c83", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 4123 + }, + { + "Id": "6571baa74cb80d995d0a1490", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 8180 + }, + { + "Id": "6572eb865b5eac12f10a03ee", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 5658 + }, + { + "Id": "657326bc5d3a3129fb05f36b", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 5995 + }, + { + "Id": "65749cb8e0423b9ebe0c79c9", + "ParentId": "5b47574386f77428ca22b330", + "Price": 3612 + }, + { + "Id": "6575bc88c6700bd6b40e8a57", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 34389 + }, + { + "Id": "64ad2dc66f9247c2f401243d", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 0 + }, + { + "Id": "64f07f7726cfa02c506f8ac0", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 69000 + }, + { + "Id": "6516e971a3d4c6497930b450", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 6175 + }, + { + "Id": "6529113b5ae2ae97b80fdf39", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 4830 + }, + { + "Id": "654a9189bcc67a392b056c79", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 8972 + }, + { + "Id": "656f9fa0498d1b7e3e071d98", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 18241 + }, + { + "Id": "6570243bbfc87b3a3409321f", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6570249bcfc010a0f5006a07", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657024a91419851aef03e70c", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65702558cfc010a0f5006a25", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, { "Id": "646f62fee779812413011ab7", "ParentId": "5b5f73ab86f774094242f195", "Price": 7503 }, + { + "Id": "657025dabfc87b3a34093256", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657026341419851aef03e730", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, { "Id": "648067db042be0705c0b3009", "ParentId": "5b5f71de86f774093f2ecf13", "Price": 3325 }, + { + "Id": "65703472c9030b928a0a8a78", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 1877 + }, + { + "Id": "657045b97e80617cee095bda", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 2995 + }, + { + "Id": "6571b27a6d84a2b8b6007f92", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 8180 + }, { "Id": "65268d8ecb944ff1e90ea385", "ParentId": "5b5f79a486f77409407a7f94", @@ -17126,6 +17516,11 @@ "ParentId": "5b5f760586f774093e6cb509", "Price": 4995 }, + { + "Id": "6571dbe07c02ae206002502e", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 1239 + }, { "Id": "6529348224cbe3c74a05e5c4", "ParentId": "5b5f757486f774093e6cb507", @@ -17136,6 +17531,11 @@ "ParentId": "5b5f764186f77447ec5d7714", "Price": 5060 }, + { + "Id": "6572f1ca4c8d903cc60c874e", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 11081 + }, { "Id": "655df24fdf80b12750626d0a", "ParentId": "5b5f71de86f774093f2ecf13", @@ -17146,6 +17546,11 @@ "ParentId": "5b5f704686f77447ec5d76d7", "Price": 40355 }, + { + "Id": "657333232cc8dfad2c0a3d97", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 22088 + }, { "Id": "657023ccbfc87b3a3409320a", "ParentId": "5b47574386f77428ca22b33c", @@ -17156,6 +17561,11 @@ "ParentId": "5b47574386f77428ca22b33c", "Price": 1000 }, + { + "Id": "6575a6ca8778e96ded05a802", + "ParentId": "5b619f1a86f77450a702a6f3", + "Price": 4500 + }, { "Id": "65702520bfc87b3a3409323e", "ParentId": "5b47574386f77428ca22b33c", @@ -17166,11 +17576,21 @@ "ParentId": "5b47574386f77428ca22b33c", "Price": 1000 }, + { + "Id": "6575c3cdc6700bd6b40e8a90", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 7734 + }, { "Id": "65702591c5d7d4cb4d07857c", "ParentId": "5b47574386f77428ca22b33c", "Price": 1000 }, + { + "Id": "6575d56b16c2762fba005818", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 49949 + }, { "Id": "657025d4c5d7d4cb4d078585", "ParentId": "5b47574386f77428ca22b33c", @@ -17272,735 +17692,335 @@ "Price": 22637 }, { - "Id": "64ad2dc66f9247c2f401243d", + "Id": "6516e9bc5901745209404287", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 5498 + }, + { + "Id": "647db1eca8d3399c380d195c", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 5194 + }, + { + "Id": "6529370c405a5f51dd023db8", + "ParentId": "5b5f757486f774093e6cb507", + "Price": 9614 + }, + { + "Id": "64807a29e5ffe165600abc97", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 11732 + }, + { + "Id": "653ecc425a1690d9d90491e4", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 1585 + }, + { + "Id": "64943b74e9998d641b0412ed", + "ParentId": "5b5f724c86f774093f2ecf15", + "Price": 13052 + }, + { + "Id": "64afef49977493a0ee026217", "ParentId": "6564b96a189fe36f356d177c", "Price": 0 }, { - "Id": "64f07f7726cfa02c506f8ac0", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 69000 + "Id": "6513ef33e06849f06c0957ca", + "ParentId": "5b5f79a486f77409407a7f94", + "Price": 22638 }, { - "Id": "6516e971a3d4c6497930b450", + "Id": "6516e9d7e239bd0c487e3766", "ParentId": "5b5f757486f774093e6cb507", - "Price": 6175 + "Price": 7422 }, { - "Id": "6529113b5ae2ae97b80fdf39", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 4830 + "Id": "653ecd065a1690d9d90491e6", + "ParentId": "5b5f75e486f77447ec5d7712", + "Price": 1015 }, { - "Id": "654a9189bcc67a392b056c79", + "Id": "651a8bf3a8520e48047bf708", + "ParentId": "5b5f71de86f774093f2ecf13", + "Price": 6754 + }, + { + "Id": "654a90aff4f81a421b0a7c86", "ParentId": "6564b96a189fe36f356d177c", "Price": 8972 }, { - "Id": "656f9fa0498d1b7e3e071d98", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 18241 - }, - { - "Id": "6570243bbfc87b3a3409321f", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570249bcfc010a0f5006a07", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657024a91419851aef03e70c", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702558cfc010a0f5006a25", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657025dabfc87b3a34093256", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657026341419851aef03e730", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65703472c9030b928a0a8a78", + "Id": "6551fec55d0cf82e51014288", "ParentId": "6564b96a189fe36f356d177c", - "Price": 1877 + "Price": 48141 }, { - "Id": "657045b97e80617cee095bda", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2995 - }, - { - "Id": "6571b27a6d84a2b8b6007f92", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8180 - }, - { - "Id": "6571dbe07c02ae206002502e", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 1239 - }, - { - "Id": "6572f1ca4c8d903cc60c874e", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 11081 - }, - { - "Id": "657333232cc8dfad2c0a3d97", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 22088 - }, - { - "Id": "6575a6ca8778e96ded05a802", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 4500 - }, - { - "Id": "6575c3cdc6700bd6b40e8a90", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 7734 - }, - { - "Id": "6575d56b16c2762fba005818", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 49949 - }, - { - "Id": "64527a263d52156624001fd7", - "ParentId": "5b5f724c86f774093f2ecf15", - "Price": 484 - }, - { - "Id": "647dba3142c479dde701b654", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 6736 - }, - { - "Id": "64f5b4f71a5f313cb144c06c", - "ParentId": "5b619f1a86f77450a702a6f3", - "Price": 69000 - }, - { - "Id": "6513f05a94c72326990a3866", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 1175 - }, - { - "Id": "651bf5617b3b552ef6712cb7", + "Id": "6529109524cbe3c74a05e5b7", "ParentId": "5b5f751486f77447ec5d770c", - "Price": 4408 + "Price": 1578 }, { - "Id": "65293c38fc460e50a509cb25", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 3716 - }, - { - "Id": "653931da5db71d30ab1d6296", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 4357 - }, - { - "Id": "653ed132896b99b40a0292e6", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 13908 - }, - { - "Id": "65434a4e4e3a01736a6c9706", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 870 - }, - { - "Id": "655f13e0a246670fb0373245", - "ParentId": "5b5f742686f774093e6cb4ff", - "Price": 31501 - }, - { - "Id": "6570241bcfc010a0f50069f5", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657024921419851aef03e706", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570255dbfc87b3a3409324a", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657025a81419851aef03e724", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570265f1419851aef03e739", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65708070f65e2491bf00972c", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 1536 - }, - { - "Id": "6570e5100b57c03ec90b970a", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 22540 - }, - { - "Id": "6570e8e7ab49e964120b4563", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 4439 - }, - { - "Id": "6571dbd388ead79fcf091d71", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 5689 - }, - { - "Id": "6572eb1b04ee6483ef039882", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 11678 - }, - { - "Id": "65732e05d0acf75aea06c87f", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 7773 - }, - { - "Id": "6575bca0dc9932aed601c5d7", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 34389 - }, - { - "Id": "6575d561b15fef3dd4051670", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 49949 - }, - { - "Id": "6575d589b15fef3dd4051674", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 20594 - }, - { - "Id": "6575d5a616c2762fba005820", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 23530 - }, - { - "Id": "6575d9b8945bf78edd04c427", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 31019 - }, - { - "Id": "6575ea5cf6a13a7b7100adc8", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 11804 - }, - { - "Id": "64ad2dd30b9840e4c80c2489", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 0 - }, - { - "Id": "64afc71497cf3a403c01ff38", + "Id": "656fa0fb498d1b7e3e071d9c", "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 61955 + "Price": 16079 }, { - "Id": "65266fd43341ed9aa903dd56", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 8824 - }, - { - "Id": "6529366450dc782999054ba0", - "ParentId": "5b5f757486f774093e6cb507", - "Price": 1316 - }, - { - "Id": "653ece125a1690d9d90491e8", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 1268 - }, - { - "Id": "654a4dea7c17dec2f50cc86a", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 12418 - }, - { - "Id": "65573fa5655447403702a816", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 39146 - }, - { - "Id": "6557458f83942d705f0c4962", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 8804 - }, - { - "Id": "6557519ac9b1d9bdcb0777e1", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 0 - }, - { - "Id": "6567e751a715f85433025998", - "ParentId": "5b5f755f86f77447ec5d770e", - "Price": 5683 - }, - { - "Id": "657023dabfc87b3a3409320d", + "Id": "657023f1bfc87b3a34093210", "ParentId": "5b47574386f77428ca22b33c", "Price": 1000 }, { - "Id": "657023e31419851aef03e6ee", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702452cfc010a0f50069fe", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657024f9bfc87b3a3409323b", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "64afeecb977493a0ee026213", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 0 - }, - { - "Id": "65169d5b30425317755f8e25", - "ParentId": "5b5f71de86f774093f2ecf13", - "Price": 5750 - }, - { - "Id": "654a8ae00337d53f9102c2aa", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 3718 - }, - { - "Id": "657025961419851aef03e721", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702606cfc010a0f5006a3e", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570260c1419851aef03e727", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702640cfc010a0f5006a4d", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570305d93b7ea9c330f4ced", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 1877 - }, - { - "Id": "65703fe46a912c8b5c03468b", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2298 - }, - { - "Id": "6570e5674cc0d2ab1e05edbb", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 6301 - }, - { - "Id": "6570fc41d3eefd23430f8c83", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 4123 - }, - { - "Id": "6571baa74cb80d995d0a1490", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8180 - }, - { - "Id": "654a8b0b0337d53f9102c2ae", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 9395 - }, - { - "Id": "6516b129609aaf354b34b3a8", + "Id": "652911675ae2ae97b80fdf3c", "ParentId": "5b5f761f86f774094242f1a1", - "Price": 1240 + "Price": 2400 }, { - "Id": "655c652d60d0ac437100fed7", + "Id": "6570246fcfc010a0f5006a01", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657024a4bfc87b3a3409322c", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "6540d2162ae6d96b540afcaf", + "ParentId": "5b5f7a0886f77409407a7f96", + "Price": 22386 + }, + { + "Id": "657024aebfc87b3a3409322f", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657024b8bfc87b3a34093232", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "655c663a6689c676ce57af85", "ParentId": "5b47574386f77428ca22b2f1", "Price": 75000 }, { - "Id": "6572eb865b5eac12f10a03ee", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 5658 + "Id": "657024f5cfc010a0f5006a10", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 }, { - "Id": "657326bc5d3a3129fb05f36b", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 5995 - }, - { - "Id": "65749cb8e0423b9ebe0c79c9", - "ParentId": "5b47574386f77428ca22b330", - "Price": 3612 - }, - { - "Id": "656fa61e94b480b8a500c0e8", + "Id": "656f66b5c6baea13cd07e108", "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 68217 + "Price": 53531 }, { - "Id": "656fafe3498d1b7e3e071da4", + "Id": "65702524cfc010a0f5006a16", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "656fb21fa0dce000a2020f7c", "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 69705 + "Price": 16842 }, { - "Id": "652910565ae2ae97b80fdf35", - "ParentId": "5b5f75c686f774094242f19f", - "Price": 24272 - }, - { - "Id": "6575bc88c6700bd6b40e8a57", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 34389 - }, - { - "Id": "65702426cfc010a0f50069f8", + "Id": "6570259fcfc010a0f5006a32", "ParentId": "5b47574386f77428ca22b33c", "Price": 1000 }, { - "Id": "652910ef50dc782999054b97", - "ParentId": "5b5f75e486f77447ec5d7712", - "Price": 11675 - }, - { - "Id": "65702474bfc87b3a34093226", + "Id": "657023decfc010a0f50069ec", "ParentId": "5b47574386f77428ca22b33c", "Price": 1000 }, { - "Id": "654a4a964b446df1ad03f192", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 49626 - }, - { - "Id": "6570251ccfc010a0f5006a13", + "Id": "6570266bc5d7d4cb4d078594", "ParentId": "5b47574386f77428ca22b33c", "Price": 1000 }, { - "Id": "65702532cfc010a0f5006a19", + "Id": "6570249f1419851aef03e709", "ParentId": "5b47574386f77428ca22b33c", "Price": 1000 }, { - "Id": "655c67ab0d37ca5135388f4b", - "ParentId": "5b47574386f77428ca22b2f1", - "Price": 100000 - }, - { - "Id": "657025bbcfc010a0f5006a35", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6567e7681265c8a131069b0f", - "ParentId": "5b5f748386f774093e6cb501", - "Price": 68601 - }, - { - "Id": "657026451419851aef03e733", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65702681bfc87b3a3409325f", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "656f611f94b480b8a500c0db", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 34756 - }, - { - "Id": "65702fe593b7ea9c330f4ce8", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8313 - }, - { - "Id": "657080a212755ae0d907ad04", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 1536 - }, - { - "Id": "656fd7c32668ef0402028fb9", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8074 - }, - { - "Id": "6570a88c8f221f3b210353b7", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 37850 - }, - { - "Id": "6570df294cc0d2ab1e05ed74", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 23295 - }, - { - "Id": "657023c61419851aef03e6eb", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570e0610b57c03ec90b96ef", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 35986 - }, - { - "Id": "6570f30b0921c914bf07964c", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 10707 - }, - { - "Id": "657023d6cfc010a0f50069e9", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570f6e774d84423df065f21", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 16718 - }, - { - "Id": "6570240a1419851aef03e6f7", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6570fb8f4c65ab77a601514d", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2631 - }, - { - "Id": "6571199565daf6aa960c9b10", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8297 - }, - { - "Id": "65702420bfc87b3a34093219", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65719f0775149d62ce0a670b", - "ParentId": "5b47574386f77428ca22b330", - "Price": 3115 - }, - { - "Id": "6572e06819b4b511af012f8d", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 4883 - }, - { - "Id": "657024c81419851aef03e712", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6572eb3b04ee6483ef03988a", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2649 - }, - { - "Id": "6572fc809a866b80ab07eb59", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 10289 - }, - { - "Id": "657024e8cfc010a0f5006a0d", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "65732688d9d89ff7ac0d9c4c", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 26204 - }, - { - "Id": "65733375b7a8d286530e3dd7", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 7128 - }, - { - "Id": "657024f01419851aef03e715", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6575c2f7efc786cd9101a5e1", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8575 - }, - { - "Id": "6575c34bc6700bd6b40e8a84", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 21060 - }, - { - "Id": "6570252dbfc87b3a34093241", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657025421419851aef03e71e", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "6575c390efc786cd9101a5e9", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 5235 - }, - { - "Id": "65703fa06584602f7d057a8e", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 10177 - }, - { - "Id": "657044e971369562b300ce9b", + "Id": "657045741bd9beedc40b7299", "ParentId": "6564b96a189fe36f356d177c", "Price": 13262 }, { - "Id": "6575ce9db15fef3dd4051628", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 18957 - }, - { - "Id": "65708122f65e2491bf009755", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 1982 - }, - { - "Id": "6570880f4a747dbb63005ee5", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 20415 - }, - { - "Id": "65708b4c4a747dbb63005ef3", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 7730 - }, - { - "Id": "6575d9a79e27f4a85e08112d", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 31019 - }, - { - "Id": "6570900858b315e8b70a8a98", + "Id": "657024b31419851aef03e70f", "ParentId": "5b47574386f77428ca22b33c", "Price": 1000 }, { - "Id": "6575d9f816c2762fba00588d", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 6824 + "Id": "657024ecc5d7d4cb4d07856d", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 }, { - "Id": "6575dd519e27f4a85e081146", + "Id": "6570e83223c1f638ef0b0ede", "ParentId": "6564b96a189fe36f356d177c", - "Price": 29821 + "Price": 21009 }, { - "Id": "65711b489eb8c145180dbb9d", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 10555 + "Id": "65702577cfc010a0f5006a2c", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 }, { - "Id": "6575ef599c7cad336508e453", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 25343 + "Id": "6570257cc5d7d4cb4d078579", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 }, { - "Id": "6571bac34076795e5e073843", + "Id": "657112a4818110db4600aa66", "ParentId": "6564b96a189fe36f356d177c", - "Price": 1428 + "Price": 27685 }, { - "Id": "6572e5221b5bc1185508c24f", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8994 + "Id": "657025c4c5d7d4cb4d078582", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 }, { - "Id": "6572f1f7ea457732140ce879", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 5369 + "Id": "65702614c5d7d4cb4d07858b", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 }, { - "Id": "6573334aca0ca984940a2d5b", + "Id": "6572e059371fccfbf909d5dc", "ParentId": "6564b96a189fe36f356d177c", - "Price": 4635 + "Price": 21623 }, { - "Id": "6575c30352b7f8c76a05ee31", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 8575 + "Id": "6570261dc5d7d4cb4d07858e", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 }, { - "Id": "6575c35bc6700bd6b40e8a88", + "Id": "6572eb0e55beba16bc04079f", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 11678 + }, + { + "Id": "65702656c5d7d4cb4d078591", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "65705c3c14f2ed6d7d0b7738", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 7528 + }, + { + "Id": "65732e30dd8739f6440ef383", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 8541 + }, + { + "Id": "6570e90b3a5689d85f08db97", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 13680 + }, + { + "Id": "6573333eca0ca984940a2d57", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 8375 + }, + { + "Id": "6570f35cd67d0309980a7acb", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 10707 + }, + { + "Id": "657112fa818110db4600aa6b", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 19675 + }, + { + "Id": "6575c2be52b7f8c76a05ee25", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 21060 + }, + { + "Id": "6572e53c73c0eabb700109a4", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 3402 + }, + { + "Id": "6572fc989a866b80ab07eb61", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 4465 + }, + { + "Id": "6575c2d852b7f8c76a05ee2d", "ParentId": "6564b96a189fe36f356d177c", "Price": 7734 }, { - "Id": "6575ce45dc9932aed601c616", + "Id": "6575c385dc9932aed601c5f0", "ParentId": "6564b96a189fe36f356d177c", - "Price": 60819 + "Price": 8567 }, { - "Id": "6575ce5befc786cd9101a671", + "Id": "6575c3b3dc9932aed601c5f4", "ParentId": "6564b96a189fe36f356d177c", - "Price": 17488 + "Price": 21060 }, { - "Id": "6575d5b316c2762fba005824", + "Id": "6575c3fd52b7f8c76a05ee3d", "ParentId": "6564b96a189fe36f356d177c", - "Price": 16191 + "Price": 8575 + }, + { + "Id": "6575c2adefc786cd9101a5d9", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 21060 + }, + { + "Id": "6575c373dc9932aed601c5ec", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 7734 + }, + { + "Id": "6575e72660703324250610c7", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 120745 + }, + { + "Id": "6575ea3060703324250610da", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 63262 }, { "Id": "6576f96220d53a5b8f3e395e", "ParentId": "5b47574386f77428ca22b33b", "Price": 140 }, + { + "Id": "6575f5e1da698a4e98067869", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 94954 + }, + { + "Id": "6575f2649cfdfe416f0399b8", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 14957 + }, + { + "Id": "6575ef78da698a4e980677eb", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 12178 + }, + { + "Id": "657642b0e6d5dd75f40688a5", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 49916 + }, { "Id": "657ba75e23918923cb0df573", "ParentId": "6564b96a189fe36f356d177c", @@ -18016,121 +18036,6 @@ "ParentId": "6564b96a189fe36f356d177c", "Price": 24766 }, - { - "Id": "6575f5e1da698a4e98067869", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 94954 - }, - { - "Id": "6575f2649cfdfe416f0399b8", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 14957 - }, - { - "Id": "65764275d8537eb26a0355e9", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 49916 - }, - { - "Id": "6575ef78da698a4e980677eb", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 12178 - }, - { - "Id": "657642b0e6d5dd75f40688a5", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 49916 - }, - { - "Id": "6575f26d9c7cad336508e480", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 14957 - }, - { - "Id": "65764e1e2bc38ef78e076489", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 29022 - }, - { - "Id": "657ba5439ba22f103e08139f", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2533 - }, - { - "Id": "6576f4708ca9c4381d16cd9d", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 788 - }, - { - "Id": "65764c39526e320fbe035777", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2552 - }, - { - "Id": "6576500f526e320fbe03577f", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 5424 - }, - { - "Id": "657bbefeb30eca9763051189", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 52405 - }, - { - "Id": "657f925dada5fadd1f07a57a", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 14123 - }, - { - "Id": "657f92e7f4c82973640b2354", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 14123 - }, - { - "Id": "657f9a94ada5fadd1f07a589", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 28284 - }, - { - "Id": "6576504b526e320fbe035783", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 5424 - }, - { - "Id": "6579847c5a0e5879d12f2873", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657bb92fa1c61ee0c303631f", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 15269 - }, - { - "Id": "657f8ec5f4c82973640b234c", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 45173 - }, - { - "Id": "657fa009d4caf976440afe3a", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 24763 - }, - { - "Id": "65818e4e566d2de69901b1b1", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2185 - }, - { - "Id": "6582dc4b6ba9e979af6b79f4", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 31254 - }, - { - "Id": "6582dc5740562727a654ebb1", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 19020 - }, { "Id": "65764bc22bc38ef78e076485", "ParentId": "6564b96a189fe36f356d177c", @@ -18182,9 +18087,59 @@ "Price": 49876 }, { - "Id": "66015072e9f84d5680039678", - "ParentId": "5b5f792486f77447ed5636b3", - "Price": 4097 + "Id": "65764275d8537eb26a0355e9", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 49916 + }, + { + "Id": "6575f26d9c7cad336508e480", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 14957 + }, + { + "Id": "6576504b526e320fbe035783", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 5424 + }, + { + "Id": "6579847c5a0e5879d12f2873", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657bb92fa1c61ee0c303631f", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 15269 + }, + { + "Id": "657f8ec5f4c82973640b234c", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 45173 + }, + { + "Id": "657fa009d4caf976440afe3a", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 24763 + }, + { + "Id": "65818e4e566d2de69901b1b1", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 2185 + }, + { + "Id": "6582dc4b6ba9e979af6b79f4", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 31254 + }, + { + "Id": "6582dc5740562727a654ebb1", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 19020 + }, + { + "Id": "657ba5439ba22f103e08139f", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 2533 }, { "Id": "6575f25ada698a4e98067836", @@ -18242,19 +18197,19 @@ "Price": 11769 }, { - "Id": "657ba096e57570b7f80a17fb", + "Id": "65764c39526e320fbe035777", "ParentId": "6564b96a189fe36f356d177c", - "Price": 1900 + "Price": 2552 }, { - "Id": "6575f24ff6a13a7b7100b09e", + "Id": "65764e1e2bc38ef78e076489", "ParentId": "6564b96a189fe36f356d177c", - "Price": 43838 + "Price": 29022 }, { - "Id": "657643732bc38ef78e076477", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 11420 + "Id": "6576f4708ca9c4381d16cd9d", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 788 }, { "Id": "6575f5cbf6a13a7b7100b0bf", @@ -18276,6 +18231,36 @@ "ParentId": "6564b96a189fe36f356d177c", "Price": 25707 }, + { + "Id": "6576500f526e320fbe03577f", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 5424 + }, + { + "Id": "657bbefeb30eca9763051189", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 52405 + }, + { + "Id": "657f925dada5fadd1f07a57a", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 14123 + }, + { + "Id": "657f92e7f4c82973640b2354", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 14123 + }, + { + "Id": "657f9a94ada5fadd1f07a589", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 28284 + }, + { + "Id": "6575f24ff6a13a7b7100b09e", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 43838 + }, { "Id": "657bb7d7b30eca9763051176", "ParentId": "6564b96a189fe36f356d177c", @@ -18292,14 +18277,59 @@ "Price": 25000 }, { - "Id": "65764a4cd8537eb26a0355ee", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 21694 + "Id": "6576f93989f0062e741ba952", + "ParentId": "5b47574386f77428ca22b33b", + "Price": 273 }, { - "Id": "6575ef7f9c7cad336508e457", + "Id": "657b28d25f444d6dff0c6c77", + "ParentId": "5b5f704686f77447ec5d76d7", + "Price": 42641 + }, + { + "Id": "657f8b94f92cd718b70154ff", "ParentId": "6564b96a189fe36f356d177c", - "Price": 12178 + "Price": 23394 + }, + { + "Id": "657fa04ac6679fefb3051e24", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 24763 + }, + { + "Id": "658199aa38c79576a2569e13", + "ParentId": "5c518ec986f7743b68682ce2", + "Price": 19020 + }, + { + "Id": "657643732bc38ef78e076477", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 11420 + }, + { + "Id": "657ba096e57570b7f80a17fb", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 1900 + }, + { + "Id": "657984a50fbff513dd435765", + "ParentId": "5b47574386f77428ca22b33c", + "Price": 1000 + }, + { + "Id": "657ba8eab7e9ca9a02045bfd", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 2185 + }, + { + "Id": "657bc2e7b30eca976305118d", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 56367 + }, + { + "Id": "65815f0e647e3d7246384e14", + "ParentId": "5b47574386f77428ca22b336", + "Price": 8912 }, { "Id": "657ba145e57570b7f80a17ff", @@ -18336,121 +18366,41 @@ "ParentId": "5c518ec986f7743b68682ce2", "Price": 15679 }, - { - "Id": "657984a50fbff513dd435765", - "ParentId": "5b47574386f77428ca22b33c", - "Price": 1000 - }, - { - "Id": "657ba8eab7e9ca9a02045bfd", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2185 - }, - { - "Id": "657bc2e7b30eca976305118d", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 56367 - }, - { - "Id": "65815f0e647e3d7246384e14", - "ParentId": "5b47574386f77428ca22b336", - "Price": 8912 - }, - { - "Id": "6576f93989f0062e741ba952", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 273 - }, - { - "Id": "657b28d25f444d6dff0c6c77", - "ParentId": "5b5f704686f77447ec5d76d7", - "Price": 42641 - }, - { - "Id": "657f8b94f92cd718b70154ff", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 23394 - }, - { - "Id": "657fa04ac6679fefb3051e24", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 24763 - }, - { - "Id": "658199aa38c79576a2569e13", - "ParentId": "5c518ec986f7743b68682ce2", - "Price": 19020 - }, - { - "Id": "65ddcc9cfa85b9f17d0dfb07", - "ParentId": "5b47574386f77428ca22b345", - "Price": 100000 - }, - { - "Id": "657ba18923918923cb0df568", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 1900 - }, - { - "Id": "657ba57af58ba5a62501079e", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2533 - }, - { - "Id": "657ba6c3c6f689d3a205b857", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2446 - }, - { - "Id": "657baecbc6f689d3a205b863", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 9855 - }, - { - "Id": "657bbad7a1c61ee0c3036323", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 24377 - }, - { - "Id": "657bc06daab96fccee08be9b", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 53200 - }, - { - "Id": "657bc2c5a1c61ee0c3036333", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 56367 - }, - { - "Id": "657f9ef6c6679fefb3051e1f", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 30914 - }, - { - "Id": "657fa07387e11c61f70bface", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 24763 - }, - { - "Id": "658188edf026a90c1708c827", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 2446 - }, { "Id": "657f8a8d7db258e5600fe33d", "ParentId": "6564b96a189fe36f356d177c", "Price": 24766 }, + { + "Id": "6575ef7f9c7cad336508e457", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 12178 + }, + { + "Id": "65764a4cd8537eb26a0355ee", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 21694 + }, { "Id": "657643a220cc24d17102b14c", "ParentId": "6564b96a189fe36f356d177c", "Price": 11420 }, + { + "Id": "657ba18923918923cb0df568", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 1900 + }, { "Id": "657b22485f444d6dff0c6c2f", "ParentId": "5b5f704686f77447ec5d76d7", "Price": 11201 }, + { + "Id": "657ba57af58ba5a62501079e", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 2533 + }, { "Id": "657b2797c3dbcb01d60c35ea", "ParentId": "5b5f704686f77447ec5d76d7", @@ -18471,41 +18421,76 @@ "ParentId": "6564b96a189fe36f356d177c", "Price": 45173 }, + { + "Id": "657ba6c3c6f689d3a205b857", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 2446 + }, { "Id": "657f9605f4c82973640b2358", "ParentId": "6564b96a189fe36f356d177c", "Price": 24776 }, + { + "Id": "657baecbc6f689d3a205b863", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 9855 + }, + { + "Id": "657bbad7a1c61ee0c3036323", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 24377 + }, + { + "Id": "657bc06daab96fccee08be9b", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 53200 + }, + { + "Id": "657bc2c5a1c61ee0c3036333", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 56367 + }, { "Id": "657fa0fcd4caf976440afe3e", "ParentId": "6564b96a189fe36f356d177c", "Price": 16522 }, { - "Id": "6601546f86889319850bd566", - "ParentId": "5b47574386f77428ca22b33b", - "Price": 1 - }, - { - "Id": "66015dc4aaad2f54cb04c56a", - "ParentId": "5b5f754a86f774094242f19b", - "Price": 940 - }, - { - "Id": "657bc107aab96fccee08be9f", + "Id": "657f9ef6c6679fefb3051e1f", "ParentId": "6564b96a189fe36f356d177c", - "Price": 53200 + "Price": 30914 + }, + { + "Id": "657fa07387e11c61f70bface", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 24763 + }, + { + "Id": "658188edf026a90c1708c827", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 2446 }, { "Id": "6576434820cc24d17102b148", "ParentId": "6564b96a189fe36f356d177c", "Price": 11420 }, + { + "Id": "657bc107aab96fccee08be9f", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 53200 + }, { "Id": "65764fae2bc38ef78e07648d", "ParentId": "6564b96a189fe36f356d177c", "Price": 21648 }, + { + "Id": "657fa186d4caf976440afe42", + "ParentId": "6564b96a189fe36f356d177c", + "Price": 16522 + }, { "Id": "657ba737b7e9ca9a02045bf6", "ParentId": "6564b96a189fe36f356d177c", @@ -18516,11 +18501,6 @@ "ParentId": "6564b96a189fe36f356d177c", "Price": 2185 }, - { - "Id": "657fa186d4caf976440afe42", - "ParentId": "6564b96a189fe36f356d177c", - "Price": 16522 - }, { "Id": "657bab6ec6f689d3a205b85f", "ParentId": "6564b96a189fe36f356d177c", diff --git a/project/assets/database/templates/items.json b/project/assets/database/templates/items.json index 315282f4..2b3ad7fb 100644 --- a/project/assets/database/templates/items.json +++ b/project/assets/database/templates/items.json @@ -61,147 +61,23 @@ "IsUnremovable": false } }, - "5b800ed086f7747baf6e2f9e": { - "_id": "5b800ed086f7747baf6e2f9e", - "_name": "mount_hex_hexagon_short", + "57a3459f245977764a01f703": { + "_id": "57a3459f245977764a01f703", + "_name": "mount_vss_zenit_b3", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.07, + "Name": "mount_vss_zenit_b3", + "ShortName": "mount_vss_zenit_b3", + "Description": "mount_vss_zenit_b3", + "Weight": 0.04, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_hex_hexagon_short.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5b800ed086f7747baf6e2fa0", - "_parent": "5b800ed086f7747baf6e2f9e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "622b3c081b89c677a33bcda6": { - "_id": "622b3c081b89c677a33bcda6", - "_name": "mount_g36_hk_std", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_m14_ultimak_m8_forward_optic_mount", - "ShortName": "mount_m14_ultimak_m8_forward_optic_mount", - "Description": "mount_m14_ultimak_m8_forward_optic_mount", - "Weight": 0.312, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_g36_hk_std.bundle", + "path": "assets/content/items/mods/mounts/mount_vss_zenit_b3.bundle", "rcid": "" }, "UsePrefab": { @@ -247,826 +123,10 @@ "IsUnremovable": false, "Grids": [], "Slots": [ - { - "_name": "mod_scope", - "_id": "622b3c081b89c677a33bcda8", - "_parent": "622b3c081b89c677a33bcda6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "626bb8532c923541184624b4", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "62811f461d5df4475f46a332", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_tactical", - "_id": "622b3c081b89c677a33bcda9", - "_parent": "622b3c081b89c677a33bcda6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "623167c3be36ef48135b1295", - "_parent": "622b3c081b89c677a33bcda6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "623166e08c43374ca1567195" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "623167e6b404d749377721b3", - "_parent": "622b3c081b89c677a33bcda6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6231670f0b8aa5472d060095" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "58a5c12e86f7745d585a2b9e": { - "_id": "58a5c12e86f7745d585a2b9e", - "_name": "mount_mpx_4_inch_rail", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_mpx_2_inch_rail", - "ShortName": "mount_mpx_2_inch_rail", - "Description": "mount_mpx_2_inch_rail", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_mpx_4_inch_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "58a5c12e86f7745d585a2b9f", - "_parent": "58a5c12e86f7745d585a2b9e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5d0a29ead7ad1a0026013f27": { - "_id": "5d0a29ead7ad1a0026013f27", - "_name": "mount_dovetail_kmz_1p59_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_jp_enterprises_ftsm_30mm", - "ShortName": "mount_all_jp_enterprises_ftsm_30mm", - "Description": "mount_all_jp_enterprises_ftsm_30mm", - "Weight": 0.41, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_dovetail_kmz_1p59_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5827272a24597748c74bdeea", - "58272b392459774b4c7b3ccd", - "5d2c76ed48f03532f2136169", - "5d2c770c48f0354b4a07c100", - "5d2c772c48f0355d95672c25", - "5649af884bdc2d1b2b8b4589", - "5839a7742459773cf9693481", - "59985a6c86f77414ec448d17" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5d0a29ead7ad1a0026013f29", - "_parent": "5d0a29ead7ad1a0026013f27", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d0a3a58d7ad1a669c15ca14", - "5d0a3e8cd7ad1a6f6a3d35bd" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "5b3f7bf05acfc433000ecf6b": { - "_id": "5b3f7bf05acfc433000ecf6b", - "_name": "mount_mosin_kochetov_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_acog_trijicon_rm35", - "ShortName": "mount_acog_trijicon_rm35", - "Description": "mount_acog_trijicon_rm35", - "Weight": 0.02, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_mosin_kochetov_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount", - "_id": "5b3f7da55acfc4330140c249", - "_parent": "5b3f7bf05acfc433000ecf6b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d024f5cd7ad1a04a067e91a", - "5b3f7c005acfc4704b4a1de8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "616584766ef05c2ce828ef57": { - "_id": "616584766ef05c2ce828ef57", - "_name": "mount_all_aimpoint_qrp2_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_aimpoint_h1_t1_weaver", - "ShortName": "mount_all_aimpoint_h1_t1_weaver", - "Description": "mount_all_aimpoint_h1_t1_weaver", - "Weight": 0.098, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_aimpoint_qrp2_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "616584766ef05c2ce828ef59", - "_parent": "616584766ef05c2ce828ef57", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61659f79d92c473c770213ee", - "5c7d55de2e221644f31bff68", - "5c7d560b2e22160bc12c6139" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "5b84038986f774774913b0c1": { - "_id": "5b84038986f774774913b0c1", - "_name": "mount_hex_hexagon_short_red", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_hex_hexagon_short_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5b84038986f774774913b0c3", - "_parent": "5b84038986f774774913b0c1", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "626becf9582c3e319310b837", - "5cc9c20cd7f00c001336c65d", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "6267c6396b642f77f56f5c1c", - "57d17e212459775a1179a0f5", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5de8fc0b205ddc616a6bc51b": { - "_id": "5de8fc0b205ddc616a6bc51b", - "_name": "mount_mp9_bt_mp9_side_rail", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_mp9_bt_mp9_side_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5de8fc0b205ddc616a6bc51d", - "_parent": "5de8fc0b205ddc616a6bc51b", + "_id": "57a3460e24597776ce718f59", + "_parent": "57a3459f245977764a01f703", "_props": { "filters": [ { @@ -1109,7 +169,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, + "Ergonomics": -1, "Velocity": 0, "RaidModdable": true, "ToolModdable": true, @@ -1123,7 +183,7 @@ "HeatFactor": 1, "CoolFactor": 1 }, - "_proto": "55f96d6f4bdc2d5f408b4578" + "_proto": "576a7c512459771e796e0e17" }, "61f804acfcba9556ea304cb8": { "_id": "61f804acfcba9556ea304cb8", @@ -1281,23 +341,1237 @@ }, "_proto": "5649a2464bdc2d91118b45a8" }, - "5dfe14f30b92095fd441edaf": { - "_id": "5dfe14f30b92095fd441edaf", - "_name": "mount_7mm_etmi_019", + "61965d9058ef8c428c287e0d": { + "_id": "61965d9058ef8c428c287e0d", + "_name": "mount_mk16_pws_srx", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_all_zenit_b18", - "ShortName": "mount_all_zenit_b18", - "Description": "mount_all_zenit_b18\n", - "Weight": 0.053, + "Name": "mount_mk16_pws_srx", + "ShortName": "mount_mk16_pws_srx", + "Description": "mount_mk16_pws_srx", + "Weight": 0.224, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_7mm_etmi_019.bundle", + "path": "assets/content/items/mods/mounts/mount_mk16_pws_srx.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "6183fc15d3a39d50044c13e9", + "618168b350224f204c1da4d8" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical_000", + "_id": "61965d9058ef8c428c287e0f", + "_parent": "61965d9058ef8c428c287e0d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "61965d9058ef8c428c287e10", + "_parent": "61965d9058ef8c428c287e0d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "61966a6fed0429009f544bb7", + "_parent": "61965d9058ef8c428c287e0d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_003", + "_id": "61966ad27b9de81629025334", + "_parent": "61965d9058ef8c428c287e0d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.95, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "58a5c12e86f7745d585a2b9e": { + "_id": "58a5c12e86f7745d585a2b9e", + "_name": "mount_mpx_4_inch_rail", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_mpx_2_inch_rail", + "ShortName": "mount_mpx_2_inch_rail", + "Description": "mount_mpx_2_inch_rail", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_mpx_4_inch_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "58a5c12e86f7745d585a2b9f", + "_parent": "58a5c12e86f7745d585a2b9e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5b84038986f774774913b0c1": { + "_id": "5b84038986f774774913b0c1", + "_name": "mount_hex_hexagon_short_red", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_hex_hexagon_short_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5b84038986f774774913b0c3", + "_parent": "5b84038986f774774913b0c1", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "626becf9582c3e319310b837", + "5cc9c20cd7f00c001336c65d", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "6267c6396b642f77f56f5c1c", + "57d17e212459775a1179a0f5", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5b3f7bf05acfc433000ecf6b": { + "_id": "5b3f7bf05acfc433000ecf6b", + "_name": "mount_mosin_kochetov_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_acog_trijicon_rm35", + "ShortName": "mount_acog_trijicon_rm35", + "Description": "mount_acog_trijicon_rm35", + "Weight": 0.02, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_mosin_kochetov_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount", + "_id": "5b3f7da55acfc4330140c249", + "_parent": "5b3f7bf05acfc433000ecf6b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d024f5cd7ad1a04a067e91a", + "5b3f7c005acfc4704b4a1de8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "5de8fc0b205ddc616a6bc51b": { + "_id": "5de8fc0b205ddc616a6bc51b", + "_name": "mount_mp9_bt_mp9_side_rail", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_mp9_bt_mp9_side_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5de8fc0b205ddc616a6bc51d", + "_parent": "5de8fc0b205ddc616a6bc51b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "616584766ef05c2ce828ef57": { + "_id": "616584766ef05c2ce828ef57", + "_name": "mount_all_aimpoint_qrp2_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_aimpoint_h1_t1_weaver", + "ShortName": "mount_all_aimpoint_h1_t1_weaver", + "Description": "mount_all_aimpoint_h1_t1_weaver", + "Weight": 0.098, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_aimpoint_qrp2_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "616584766ef05c2ce828ef59", + "_parent": "616584766ef05c2ce828ef57", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61659f79d92c473c770213ee", + "5c7d55de2e221644f31bff68", + "5c7d560b2e22160bc12c6139" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "5d0a29ead7ad1a0026013f27": { + "_id": "5d0a29ead7ad1a0026013f27", + "_name": "mount_dovetail_kmz_1p59_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_jp_enterprises_ftsm_30mm", + "ShortName": "mount_all_jp_enterprises_ftsm_30mm", + "Description": "mount_all_jp_enterprises_ftsm_30mm", + "Weight": 0.41, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_dovetail_kmz_1p59_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5827272a24597748c74bdeea", + "58272b392459774b4c7b3ccd", + "5d2c76ed48f03532f2136169", + "5d2c770c48f0354b4a07c100", + "5d2c772c48f0355d95672c25", + "5649af884bdc2d1b2b8b4589", + "5839a7742459773cf9693481", + "59985a6c86f77414ec448d17" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5d0a29ead7ad1a0026013f29", + "_parent": "5d0a29ead7ad1a0026013f27", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d0a3a58d7ad1a669c15ca14", + "5d0a3e8cd7ad1a6f6a3d35bd" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "593d1fa786f7746da62d61ac": { + "_id": "593d1fa786f7746da62d61ac", + "_name": "mount_sks_utg_socom_rail", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_sks_utg_socom_rail", + "ShortName": "mount_sks_utg_socom_rail", + "Description": "mount_sks_utg_socom_rail", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_sks_utg_socom_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "653ece125a1690d9d90491e8", + "653ecd065a1690d9d90491e6" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "593d1fa786f7746da62d61ad", + "_parent": "593d1fa786f7746da62d61ac", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "64785e7c19d732620e045e15", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "593d209886f7746ccd73e1cf", + "_parent": "593d1fa786f7746da62d61ac", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "593d20ca86f7746d946c00e3", + "_parent": "593d1fa786f7746da62d61ac", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "593d20d786f7746bc72e89fe", + "_parent": "593d1fa786f7746da62d61ac", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_003", + "_id": "593d20e586f7746cfb12602d", + "_parent": "593d1fa786f7746da62d61ac", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5dff77c759400025ea5150cf": { + "_id": "5dff77c759400025ea5150cf", + "_name": "mount_all_utg_rings_25_4mm", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_utg_rings_25_4mm", + "ShortName": "mount_all_utg_rings_25_4mm", + "Description": "mount_all_utg_rings_25_4mm", + "Weight": 0.19, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_utg_rings_25_4mm.bundle", "rcid": "" }, "UsePrefab": { @@ -1345,38 +1619,1030 @@ "Slots": [ { "_name": "mod_scope", - "_id": "5dfe14f30b92095fd441edb1", - "_parent": "5dfe14f30b92095fd441edaf", + "_id": "5dff77c759400025ea5150d1", + "_parent": "5dff77c759400025ea5150cf", "_props": { "filters": [ { "Shift": 0, "Filter": [ + "5dff772da3651922b360bf91" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "59db7eed86f77461f8380365": { + "_id": "59db7eed86f77461f8380365", + "_name": "mount_all_trijicon_ta51", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_trijicon_ta51", + "ShortName": "mount_all_trijicon_ta51", + "Description": "mount_all_trijicon_ta51", + "Weight": 0.113, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_trijicon_ta51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "59db7eed86f77461f8380366", + "_parent": "59db7eed86f77461f8380365", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c05293e0db83400232fff80", + "5c052a900db834001a66acbd", + "59db7e1086f77448be30ddf3" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "5addbffe5acfc4001714dfac": { + "_id": "5addbffe5acfc4001714dfac", + "_name": "mount_m14_sage_m14dcsb_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_m14_sage_m14dcsb_mount", + "ShortName": "mount_m14_sage_m14dcsb_mount", + "Description": "mount_m14_sage_m14dcsb_mount", + "Weight": 0.22, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_m14_sage_m14dcsb_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5addbffe5acfc4001714dfae", + "_parent": "5addbffe5acfc4001714dfac", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", "58491f3324597764bc48fa02", "584924ec24597768f12ae244", "5b30b0dc5acfc400153b7124", "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", "570fd721d2720bc5458b4596", "57ae0171245977343c27bfcf", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", "58d39d3d86f77445bb794ae7", "616554fe50224f204c1da2aa", "5c7d55f52e221644f31bff6a", "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "653931da5db71d30ab1d6296", + "65392f611406374f82152ba5", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57a3459f245977764a01f703" + }, + "57ee59b42459771c7b045da5": { + "_id": "57ee59b42459771c7b045da5", + "_name": "mount_pp-91_rotor_43_kedr_ris", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_pp-91_rotor_43_kedr_ris", + "ShortName": "mount_pp-91_rotor_43_kedr_ris", + "Description": "mount_pp-91_rotor_43_kedr_ris", + "Weight": 0.04, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_pp-91_rotor_43_kedr_ris.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "57ee5b312459771afb5bad87", + "_parent": "57ee59b42459771c7b045da5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", "577d128124597739d65d0e56", "58d2664f86f7747fec5834f6", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "57ee5b702459771c30246a12", + "_parent": "57ee59b42459771c7b045da5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57a3459f245977764a01f703" + }, + "5fc53954f8b6a877a729eaeb": { + "_id": "5fc53954f8b6a877a729eaeb", + "_name": "mount_ump_hk_bottom_rail_std", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_ump_hk_bottom_rail_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5fc53954f8b6a877a729eaed", + "_parent": "5fc53954f8b6a877a729eaeb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5b800ebc86f774394e230a90": { + "_id": "5b800ebc86f774394e230a90", + "_name": "mount_hex_hexagon_medium", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_hex_hexagon_medium", + "ShortName": "mount_hex_hexagon_medium", + "Description": "mount_hex_hexagon_medium", + "Weight": 0.075, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_hex_hexagon_medium.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5b800ebc86f774394e230a92", + "_parent": "5b800ebc86f774394e230a90", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5a7893c1c585673f2b5c374d": { + "_id": "5a7893c1c585673f2b5c374d", + "_name": "mount_870_utg_mtu028sg", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_870_utg_mtu028sg", + "ShortName": "mount_870_utg_mtu028sg", + "Description": "mount_870_utg_mtu028sg", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_870_utg_mtu028sg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5a789403c5856700186c65d6", + "_parent": "5a7893c1c585673f2b5c374d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15" + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57a3459f245977764a01f703" + }, + "5926dad986f7741f82604363": { + "_id": "5926dad986f7741f82604363", + "_name": "mount_hk_mfi_universal", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_hk_mfi_universal", + "ShortName": "mount_hk_mfi_universal", + "Description": "mount_hk_mfi_universal", + "Weight": 0.071, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_hk_mfi_universal.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5926dad986f7741f82604364", + "_parent": "5926dad986f7741f82604363", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245" ] } ] @@ -1407,7 +2673,131 @@ "HeatFactor": 1, "CoolFactor": 1 }, - "_proto": "57ffaea724597779f52b3a4d" + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5b800ed086f7747baf6e2f9e": { + "_id": "5b800ed086f7747baf6e2f9e", + "_name": "mount_hex_hexagon_short", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_hex_hexagon_short.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5b800ed086f7747baf6e2fa0", + "_parent": "5b800ed086f7747baf6e2f9e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" }, "5eeb2ff5ea4f8b73c827350b": { "_id": "5eeb2ff5ea4f8b73c827350b", @@ -1798,674 +3188,6 @@ }, "_proto": "57a3459f245977764a01f703" }, - "5a7893c1c585673f2b5c374d": { - "_id": "5a7893c1c585673f2b5c374d", - "_name": "mount_870_utg_mtu028sg", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_870_utg_mtu028sg", - "ShortName": "mount_870_utg_mtu028sg", - "Description": "mount_870_utg_mtu028sg", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_870_utg_mtu028sg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5a789403c5856700186c65d6", - "_parent": "5a7893c1c585673f2b5c374d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "57a3459f245977764a01f703": { - "_id": "57a3459f245977764a01f703", - "_name": "mount_vss_zenit_b3", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_vss_zenit_b3", - "ShortName": "mount_vss_zenit_b3", - "Description": "mount_vss_zenit_b3", - "Weight": 0.04, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_vss_zenit_b3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "57a3460e24597776ce718f59", - "_parent": "57a3459f245977764a01f703", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "576a7c512459771e796e0e17" - }, - "5926dad986f7741f82604363": { - "_id": "5926dad986f7741f82604363", - "_name": "mount_hk_mfi_universal", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_hk_mfi_universal", - "ShortName": "mount_hk_mfi_universal", - "Description": "mount_hk_mfi_universal", - "Weight": 0.071, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_hk_mfi_universal.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5926dad986f7741f82604364", - "_parent": "5926dad986f7741f82604363", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "619621a4de3cdf1d2614a7a7": { - "_id": "619621a4de3cdf1d2614a7a7", - "_name": "mount_usp_hk_elite_compensator", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_glock_um_tactical_um3_sight_mount", - "ShortName": "mount_glock_um_tactical_um3_sight_mount", - "Description": "mount_glock_um_tactical_um3_sight_mount", - "Weight": 0.31, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_usp_hk_elite_compensator.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5fc4b97bab884124df0cd5e3", - "6194ef39de3cdf1d2614a768", - "6194efe07c6c7b169525f11b", - "6194eff92d2c397d6600348b" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -10, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -8, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "619624b26db0f2477964e6b0": { - "_id": "619624b26db0f2477964e6b0", - "_name": "mount_usp_hk_match_compensator", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_glock_um_tactical_um3_sight_mount", - "ShortName": "mount_glock_um_tactical_um3_sight_mount", - "Description": "mount_glock_um_tactical_um3_sight_mount", - "Weight": 0.34, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_usp_hk_match_compensator.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5fc4b97bab884124df0cd5e3", - "6194ef39de3cdf1d2614a768", - "6194efe07c6c7b169525f11b", - "6194eff92d2c397d6600348b" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "619624b26db0f2477964e6b3", - "_parent": "619624b26db0f2477964e6b0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -15, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -12, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, "62444cb99f47004c781903eb": { "_id": "62444cb99f47004c781903eb", "_name": "mount_g36_hk_bottom_rail_std", @@ -2602,23 +3324,231 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, - "58a56f8d86f774651579314c": { - "_id": "58a56f8d86f774651579314c", - "_name": "mount_mpx_2_inch_rail", + "619624b26db0f2477964e6b0": { + "_id": "619624b26db0f2477964e6b0", + "_name": "mount_usp_hk_match_compensator", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_mpx_2_inch_rail", - "ShortName": "mount_mpx_2_inch_rail", - "Description": "mount_mpx_2_inch_rail", - "Weight": 0.07, + "Name": "mount_glock_um_tactical_um3_sight_mount", + "ShortName": "mount_glock_um_tactical_um3_sight_mount", + "Description": "mount_glock_um_tactical_um3_sight_mount", + "Weight": 0.34, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_mpx_2_inch_rail.bundle", + "path": "assets/content/items/mods/mounts/mount_usp_hk_match_compensator.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5fc4b97bab884124df0cd5e3", + "6194ef39de3cdf1d2614a768", + "6194efe07c6c7b169525f11b", + "6194eff92d2c397d6600348b" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "619624b26db0f2477964e6b3", + "_parent": "619624b26db0f2477964e6b0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -15, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -12, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "619621a4de3cdf1d2614a7a7": { + "_id": "619621a4de3cdf1d2614a7a7", + "_name": "mount_usp_hk_elite_compensator", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_glock_um_tactical_um3_sight_mount", + "ShortName": "mount_glock_um_tactical_um3_sight_mount", + "Description": "mount_glock_um_tactical_um3_sight_mount", + "Weight": 0.31, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_usp_hk_elite_compensator.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5fc4b97bab884124df0cd5e3", + "6194ef39de3cdf1d2614a768", + "6194efe07c6c7b169525f11b", + "6194eff92d2c397d6600348b" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -10, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -8, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "5a7ad4af51dfba0013379717": { + "_id": "5a7ad4af51dfba0013379717", + "_name": "mount_glock_aimtech_base_glock", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_glock_aimtech_base_glock", + "ShortName": "mount_glock_aimtech_base_glock", + "Description": "mount_glock_aimtech_base_glock", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_glock_aimtech_base_glock.bundle", "rcid": "" }, "UsePrefab": { @@ -2665,9 +3595,337 @@ "Grids": [], "Slots": [ { - "_name": "mod_tactical", - "_id": "58a56f8d86f774651579314d", - "_parent": "58a56f8d86f774651579314c", + "_name": "mod_scope", + "_id": "5a7ad4af51dfba0013379719", + "_parent": "5a7ad4af51dfba0013379717", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "5bc5a372d4351e44f824d17f": { + "_id": "5bc5a372d4351e44f824d17f", + "_name": "mount_mosin_aim_sports_mng", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_mosin_aim_sports_mng", + "ShortName": "mount_mosin_aim_sports_mng", + "Description": "mount_mosin_aim_sports_mng", + "Weight": 0.074, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_mosin_aim_sports_mng.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5bc5a372d4351e44f824d181", + "_parent": "5bc5a372d4351e44f824d17f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "64785e7c19d732620e045e15", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57a3459f245977764a01f703" + }, + "5bbdb811d4351e45020113c7": { + "_id": "5bbdb811d4351e45020113c7", + "_name": "mount_mosin_aim_sports_tri_rail", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_mosin_aim_sports_tri_rail", + "ShortName": "mount_mosin_aim_sports_tri_rail", + "Description": "mount_mosin_aim_sports_tri_rail", + "Weight": 0.18, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_mosin_aim_sports_tri_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5d024f5cd7ad1a04a067e91a", + "5b3f7c005acfc4704b4a1de8" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5bbdb811d4351e45020113c9", + "_parent": "5bbdb811d4351e45020113c7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5bbdbb25d4351e0034778ed6", + "_parent": "5bbdb811d4351e45020113c7", "_props": { "filters": [ { @@ -2676,6 +3934,46 @@ "5a800961159bd4315e3a1657", "57fd23e32459772d0805bcf1", "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5bbdbb2dd4351e00334caa94", + "_parent": "5bbdb811d4351e45020113c7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", "5c06595c0db834001a66af6c", "5cc9c20cd7f00c001336c65d", "5d2369418abbc306c62e0c80", @@ -2710,7 +4008,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, + "Ergonomics": -2, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -2724,7 +4022,560 @@ "HeatFactor": 1, "CoolFactor": 1 }, - "_proto": "55f96d6f4bdc2d5f408b4578" + "_proto": "57a3459f245977764a01f703" + }, + "65392f611406374f82152ba5": { + "_id": "65392f611406374f82152ba5", + "_name": "mount_all_gbrs_hydra_micro_kit", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_jp_enterprises_ftsm_30mm", + "ShortName": "mount_all_jp_enterprises_ftsm_30mm", + "Description": "mount_all_jp_enterprises_ftsm_30mm", + "Weight": 0.141, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_gbrs_hydra_micro_kit.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5ae30bad5acfc400185c2dc4" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "6539301abf39af1cea1f1326", + "_parent": "65392f611406374f82152ba5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "65393038e5e89511d0676bf6", + "_parent": "65392f611406374f82152ba5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61657230d92c473c770213d7", + "58d399e486f77442e0016fe7", + "5b3116595acfc40019476364", + "58d39b0386f77443380bf13c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "5c86592b2e2216000e69e77c": { + "_id": "5c86592b2e2216000e69e77c", + "_name": "mount_all_iea_kh_f_34mm", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "ShortName": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "Description": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "Weight": 0.199, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_iea_kh_f_34mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5c86592b2e2216000e69e77e", + "_parent": "5c86592b2e2216000e69e77c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "56ea70acd2720b844b8b4594", + "5aa66be6e5b5b0214e506e97", + "61714eec290d254f5e6b2ffc" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "5a33b2c9c4a282000c5a9511": { + "_id": "5a33b2c9c4a282000c5a9511", + "_name": "mount_all_trijicon_rm33", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_trijicon_rm33", + "ShortName": "mount_all_trijicon_rm33", + "Description": "mount_all_trijicon_rm33", + "Weight": 0.017, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_trijicon_rm33.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5a33b2c9c4a282000c5a9512", + "_parent": "5a33b2c9c4a282000c5a9511", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a32aa8bc4a2826c6e06d737" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "5a1ead28fcdbcb001912fa9f": { + "_id": "5a1ead28fcdbcb001912fa9f", + "_name": "mount_all_unv_dloc_ird", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_unv_dloc_ird", + "ShortName": "mount_all_unv_dloc_ird", + "Description": "mount_all_unv_dloc_ird", + "Weight": 0.113, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_unv_dloc_ird.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5a1ead28fcdbcb001912faa0", + "_parent": "5a1ead28fcdbcb001912fa9f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a1eaa87fcdbcb001865f75e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "58d39d3d86f77445bb794ae7": { + "_id": "58d39d3d86f77445bb794ae7", + "_name": "mount_all_aimpoint_h1_t1_weaver", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_aimpoint_h1_t1_weaver", + "ShortName": "mount_all_aimpoint_h1_t1_weaver", + "Description": "mount_all_aimpoint_h1_t1_weaver", + "Weight": 0.015, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_aimpoint_h1_t1_weaver.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "58d39d3d86f77445bb794ae8", + "_parent": "58d39d3d86f77445bb794ae7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61657230d92c473c770213d7", + "58d399e486f77442e0016fe7", + "5b3116595acfc40019476364", + "58d39b0386f77443380bf13c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" }, "59eb7ebe86f7740b373438ce": { "_id": "59eb7ebe86f7740b373438ce", @@ -2945,320 +4796,6 @@ }, "_proto": "576a7c512459771e796e0e17" }, - "5a33b2c9c4a282000c5a9511": { - "_id": "5a33b2c9c4a282000c5a9511", - "_name": "mount_all_trijicon_rm33", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_trijicon_rm33", - "ShortName": "mount_all_trijicon_rm33", - "Description": "mount_all_trijicon_rm33", - "Weight": 0.017, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_trijicon_rm33.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5a33b2c9c4a282000c5a9512", - "_parent": "5a33b2c9c4a282000c5a9511", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a32aa8bc4a2826c6e06d737" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "5c86592b2e2216000e69e77c": { - "_id": "5c86592b2e2216000e69e77c", - "_name": "mount_all_iea_kh_f_34mm", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "ShortName": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "Description": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "Weight": 0.199, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_iea_kh_f_34mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5c86592b2e2216000e69e77e", - "_parent": "5c86592b2e2216000e69e77c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "56ea70acd2720b844b8b4594", - "5aa66be6e5b5b0214e506e97", - "61714eec290d254f5e6b2ffc" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "5a1ead28fcdbcb001912fa9f": { - "_id": "5a1ead28fcdbcb001912fa9f", - "_name": "mount_all_unv_dloc_ird", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_unv_dloc_ird", - "ShortName": "mount_all_unv_dloc_ird", - "Description": "mount_all_unv_dloc_ird", - "Weight": 0.113, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_unv_dloc_ird.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5a1ead28fcdbcb001912faa0", - "_parent": "5a1ead28fcdbcb001912fa9f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a1eaa87fcdbcb001865f75e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, "59c63b4486f7747afb151c1c": { "_id": "59c63b4486f7747afb151c1c", "_name": "mount_mp5sd_bt_tri_rail_ring", @@ -3450,113 +4987,6 @@ }, "_proto": "576a7c512459771e796e0e17" }, - "58d39d3d86f77445bb794ae7": { - "_id": "58d39d3d86f77445bb794ae7", - "_name": "mount_all_aimpoint_h1_t1_weaver", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_aimpoint_h1_t1_weaver", - "ShortName": "mount_all_aimpoint_h1_t1_weaver", - "Description": "mount_all_aimpoint_h1_t1_weaver", - "Weight": 0.015, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_aimpoint_h1_t1_weaver.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "58d39d3d86f77445bb794ae8", - "_parent": "58d39d3d86f77445bb794ae7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61657230d92c473c770213d7", - "58d399e486f77442e0016fe7", - "5b3116595acfc40019476364", - "58d39b0386f77443380bf13c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, "5c90c3622e221601da359851": { "_id": "5c90c3622e221601da359851", "_name": "mount_dovetail_zenit_b13v", @@ -3994,2174 +5424,6 @@ }, "_proto": "5649a2464bdc2d91118b45a8" }, - "5a7ad4af51dfba0013379717": { - "_id": "5a7ad4af51dfba0013379717", - "_name": "mount_glock_aimtech_base_glock", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_glock_aimtech_base_glock", - "ShortName": "mount_glock_aimtech_base_glock", - "Description": "mount_glock_aimtech_base_glock", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_glock_aimtech_base_glock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5a7ad4af51dfba0013379719", - "_parent": "5a7ad4af51dfba0013379717", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "5bc5a372d4351e44f824d17f": { - "_id": "5bc5a372d4351e44f824d17f", - "_name": "mount_mosin_aim_sports_mng", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_mosin_aim_sports_mng", - "ShortName": "mount_mosin_aim_sports_mng", - "Description": "mount_mosin_aim_sports_mng", - "Weight": 0.074, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_mosin_aim_sports_mng.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5bc5a372d4351e44f824d181", - "_parent": "5bc5a372d4351e44f824d17f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "5649a2464bdc2d91118b45a8": { - "_id": "5649a2464bdc2d91118b45a8", - "_name": "mount_all_ncstar_mpr45", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_ncstar_mpr45", - "ShortName": "mount_all_ncstar_mpr45", - "Description": "mount_all_ncstar_mpr45", - "Weight": 0.04, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_ncstar_mpr45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5649dc074bdc2d1b2b8b458f", - "_parent": "5649a2464bdc2d91118b45a8", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "576a7c512459771e796e0e17": { - "_id": "576a7c512459771e796e0e17", - "_name": "mount_mp443_zenit_b8", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_mp443_zenit_b8", - "ShortName": "mount_mp443_zenit_b8", - "Description": "mount_mp443_zenit_b8", - "Weight": 0.04, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_mp443_zenit_b8.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "576a7ca92459771e796e0e18", - "_parent": "576a7c512459771e796e0e17", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cc9c20cd7f00c001336c65d", - "5a800961159bd4315e3a1657", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5a7b4900e899ef197b331a2a", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "61965d9058ef8c428c287e0d": { - "_id": "61965d9058ef8c428c287e0d", - "_name": "mount_mk16_pws_srx", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_mk16_pws_srx", - "ShortName": "mount_mk16_pws_srx", - "Description": "mount_mk16_pws_srx", - "Weight": 0.224, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_mk16_pws_srx.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "6183fc15d3a39d50044c13e9", - "618168b350224f204c1da4d8" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical_000", - "_id": "61965d9058ef8c428c287e0f", - "_parent": "61965d9058ef8c428c287e0d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "61965d9058ef8c428c287e10", - "_parent": "61965d9058ef8c428c287e0d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "61966a6fed0429009f544bb7", - "_parent": "61965d9058ef8c428c287e0d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_003", - "_id": "61966ad27b9de81629025334", - "_parent": "61965d9058ef8c428c287e0d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.95, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "57ffaea724597779f52b3a4d": { - "_id": "57ffaea724597779f52b3a4d", - "_name": "mount_all_zenit_b12", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_zenit_b12", - "ShortName": "mount_all_zenit_b12", - "Description": "mount_all_zenit_b12", - "Weight": 0.087, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_zenit_b12.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "57ffaeb824597779fd511db1", - "_parent": "57ffaea724597779f52b3a4d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "57ffb5d624597702841ea407", - "_parent": "57ffaea724597779f52b3a4d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "5e569a132642e66b0b68015c": { - "_id": "5e569a132642e66b0b68015c", - "_name": "mount_svd_caa_drg_l_1", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.075, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_svd_caa_drg_l_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical_000", - "_id": "5e569a132642e66b0b68015e", - "_parent": "5e569a132642e66b0b68015c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5c61a40d2e2216001403158d": { - "_id": "5c61a40d2e2216001403158d", - "_name": "mount_dovetail_zenit_b13", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_ak_tactica_tula_10000", - "ShortName": "mount_ak_tactica_tula_10000", - "Description": "mount_ak_tactica_tula_10000", - "Weight": 0.175, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_dovetail_zenit_b13.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5c61a40d2e2216001403158f", - "_parent": "5c61a40d2e2216001403158d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "57d17e212459775a1179a0f5": { - "_id": "57d17e212459775a1179a0f5", - "_name": "mount_all_noname_25mm_ring", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_noname_25mm_ring", - "ShortName": "mount_all_noname_25mm_ring", - "Description": "mount_all_noname_25mm_ring", - "Weight": 0.085, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_noname_25mm_ring.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_flashlight", - "_id": "57d17f852459775aba1dae06", - "_parent": "57d17e212459775a1179a0f5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59d790f486f77403cb06aec6", - "57d17c5e2459775a5c57d17d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57c69dd424597774c03b7bbc" - }, - "5a33b652c4a28232996e407c": { - "_id": "5a33b652c4a28232996e407c", - "_name": "mount_all_trijicon_ac32062", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_p226_trijicon_rm50", - "ShortName": "mount_p226_trijicon_rm50", - "Description": "mount_p226_trijicon_rm50", - "Weight": 0.017, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_trijicon_ac32062.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5a33b652c4a28232996e407d", - "_parent": "5a33b652c4a28232996e407c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a32aa8bc4a2826c6e06d737" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "616554fe50224f204c1da2aa": { - "_id": "616554fe50224f204c1da2aa", - "_name": "mount_all_aimpoint_h2_weaver", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_aimpoint_h2_weaver", - "ShortName": "mount_all_aimpoint_h2_weaver", - "Description": "mount_all_aimpoint_h2_weaver", - "Weight": 0.015, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_aimpoint_h2_weaver.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "616554fe50224f204c1da2ac", - "_parent": "616554fe50224f204c1da2aa", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61657230d92c473c770213d7", - "58d399e486f77442e0016fe7", - "5b3116595acfc40019476364", - "58d39b0386f77443380bf13c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "59db7eed86f77461f8380365": { - "_id": "59db7eed86f77461f8380365", - "_name": "mount_all_trijicon_ta51", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_trijicon_ta51", - "ShortName": "mount_all_trijicon_ta51", - "Description": "mount_all_trijicon_ta51", - "Weight": 0.113, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_trijicon_ta51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "59db7eed86f77461f8380366", - "_parent": "59db7eed86f77461f8380365", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c05293e0db83400232fff80", - "5c052a900db834001a66acbd", - "59db7e1086f77448be30ddf3" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "5addbffe5acfc4001714dfac": { - "_id": "5addbffe5acfc4001714dfac", - "_name": "mount_m14_sage_m14dcsb_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_m14_sage_m14dcsb_mount", - "ShortName": "mount_m14_sage_m14dcsb_mount", - "Description": "mount_m14_sage_m14dcsb_mount", - "Weight": 0.22, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_m14_sage_m14dcsb_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5addbffe5acfc4001714dfae", - "_parent": "5addbffe5acfc4001714dfac", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "653931da5db71d30ab1d6296", - "65392f611406374f82152ba5", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "5fc53954f8b6a877a729eaeb": { - "_id": "5fc53954f8b6a877a729eaeb", - "_name": "mount_ump_hk_bottom_rail_std", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_ump_hk_bottom_rail_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5fc53954f8b6a877a729eaed", - "_parent": "5fc53954f8b6a877a729eaeb", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "57ee59b42459771c7b045da5": { - "_id": "57ee59b42459771c7b045da5", - "_name": "mount_pp-91_rotor_43_kedr_ris", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_pp-91_rotor_43_kedr_ris", - "ShortName": "mount_pp-91_rotor_43_kedr_ris", - "Description": "mount_pp-91_rotor_43_kedr_ris", - "Weight": 0.04, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_pp-91_rotor_43_kedr_ris.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "57ee5b312459771afb5bad87", - "_parent": "57ee59b42459771c7b045da5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "57ee5b702459771c30246a12", - "_parent": "57ee59b42459771c7b045da5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "5b800ebc86f774394e230a90": { - "_id": "5b800ebc86f774394e230a90", - "_name": "mount_hex_hexagon_medium", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_hex_hexagon_medium", - "ShortName": "mount_hex_hexagon_medium", - "Description": "mount_hex_hexagon_medium", - "Weight": 0.075, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_hex_hexagon_medium.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5b800ebc86f774394e230a92", - "_parent": "5b800ebc86f774394e230a90", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, "62e281349ecd3f493f6df954": { "_id": "62e281349ecd3f493f6df954", "_name": "mount_sr2m_zenit_b17", @@ -6693,112 +5955,6 @@ }, "_proto": "5649a2464bdc2d91118b45a8" }, - "5a16b8a9fcdbcb00165aa6ca": { - "_id": "5a16b8a9fcdbcb00165aa6ca", - "_name": "nvg_norotos_tatm_universal", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "nvg_norotos_tatm_universal", - "ShortName": "nvg_norotos_tatm_universal", - "Description": "nvg_norotos_tatm_universal", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/equipment/customizable/norotos_tatm/nvg_norotos_tatm_universal.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_nvg", - "_id": "5a17e7c0fcdbcb001a3b00e4", - "_parent": "5a16b8a9fcdbcb00165aa6ca", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0695860db834001b735461", - "5a16b93dfcdbcbcae6687261", - "5c11046cd174af02a012e42b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, "609a4b4fe2ff132951242d04": { "_id": "609a4b4fe2ff132951242d04", "_name": "mount_dovetail_arbalet_vpo_102", @@ -6953,6 +6109,676 @@ }, "_proto": "57a3459f245977764a01f703" }, + "5a16b8a9fcdbcb00165aa6ca": { + "_id": "5a16b8a9fcdbcb00165aa6ca", + "_name": "nvg_norotos_tatm_universal", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "nvg_norotos_tatm_universal", + "ShortName": "nvg_norotos_tatm_universal", + "Description": "nvg_norotos_tatm_universal", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/equipment/customizable/norotos_tatm/nvg_norotos_tatm_universal.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_nvg", + "_id": "5a17e7c0fcdbcb001a3b00e4", + "_parent": "5a16b8a9fcdbcb00165aa6ca", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0695860db834001b735461", + "5a16b93dfcdbcbcae6687261", + "5c11046cd174af02a012e42b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "58a56f8d86f774651579314c": { + "_id": "58a56f8d86f774651579314c", + "_name": "mount_mpx_2_inch_rail", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_mpx_2_inch_rail", + "ShortName": "mount_mpx_2_inch_rail", + "Description": "mount_mpx_2_inch_rail", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_mpx_2_inch_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "58a56f8d86f774651579314d", + "_parent": "58a56f8d86f774651579314c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "622b3c081b89c677a33bcda6": { + "_id": "622b3c081b89c677a33bcda6", + "_name": "mount_g36_hk_std", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_m14_ultimak_m8_forward_optic_mount", + "ShortName": "mount_m14_ultimak_m8_forward_optic_mount", + "Description": "mount_m14_ultimak_m8_forward_optic_mount", + "Weight": 0.312, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_g36_hk_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "622b3c081b89c677a33bcda8", + "_parent": "622b3c081b89c677a33bcda6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "626bb8532c923541184624b4", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "62811f461d5df4475f46a332", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "622b3c081b89c677a33bcda9", + "_parent": "622b3c081b89c677a33bcda6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "623167c3be36ef48135b1295", + "_parent": "622b3c081b89c677a33bcda6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "623166e08c43374ca1567195" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "623167e6b404d749377721b3", + "_parent": "622b3c081b89c677a33bcda6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6231670f0b8aa5472d060095" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57a3459f245977764a01f703" + }, + "5a33b652c4a28232996e407c": { + "_id": "5a33b652c4a28232996e407c", + "_name": "mount_all_trijicon_ac32062", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_p226_trijicon_rm50", + "ShortName": "mount_p226_trijicon_rm50", + "Description": "mount_p226_trijicon_rm50", + "Weight": 0.017, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_trijicon_ac32062.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5a33b652c4a28232996e407d", + "_parent": "5a33b652c4a28232996e407c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a32aa8bc4a2826c6e06d737" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "616554fe50224f204c1da2aa": { + "_id": "616554fe50224f204c1da2aa", + "_name": "mount_all_aimpoint_h2_weaver", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_aimpoint_h2_weaver", + "ShortName": "mount_all_aimpoint_h2_weaver", + "Description": "mount_all_aimpoint_h2_weaver", + "Weight": 0.015, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_aimpoint_h2_weaver.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "616554fe50224f204c1da2ac", + "_parent": "616554fe50224f204c1da2aa", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61657230d92c473c770213d7", + "58d399e486f77442e0016fe7", + "5b3116595acfc40019476364", + "58d39b0386f77443380bf13c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, "57ffb0062459777a045af529": { "_id": "57ffb0062459777a045af529", "_name": "mount_all_zenit_b18", @@ -7307,6 +7133,286 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, + "5a9fc7e6a2750c0032157184": { + "_id": "5a9fc7e6a2750c0032157184", + "_name": "mount_vss_zenit_b3_combo", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_vss_zenit_b3_combo", + "ShortName": "mount_vss_zenit_b3_combo", + "Description": "mount_vss_zenit_b3_combo", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_vss_zenit_b3_combo.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5a9fc7e6a2750c0032157186", + "_parent": "5a9fc7e6a2750c0032157184", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5a9fc846a2750c00171b3faa", + "_parent": "5a9fc7e6a2750c0032157184", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "576a7c512459771e796e0e17" + }, + "5dfe14f30b92095fd441edaf": { + "_id": "5dfe14f30b92095fd441edaf", + "_name": "mount_7mm_etmi_019", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_zenit_b18", + "ShortName": "mount_all_zenit_b18", + "Description": "mount_all_zenit_b18\n", + "Weight": 0.053, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_7mm_etmi_019.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5dfe14f30b92095fd441edb1", + "_parent": "5dfe14f30b92095fd441edaf", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "5d2da1e948f035477b1ce2ba", + "584984812459776a704a82a6", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b2c9c4a282000c5a9511", + "64785e7c19d732620e045e15" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57ffaea724597779f52b3a4d" + }, "57c69dd424597774c03b7bbc": { "_id": "57c69dd424597774c03b7bbc", "_name": "mount_all_lobaev_dvl_std", @@ -7640,6 +7746,811 @@ }, "_proto": "57a3459f245977764a01f703" }, + "576a7c512459771e796e0e17": { + "_id": "576a7c512459771e796e0e17", + "_name": "mount_mp443_zenit_b8", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_mp443_zenit_b8", + "ShortName": "mount_mp443_zenit_b8", + "Description": "mount_mp443_zenit_b8", + "Weight": 0.04, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_mp443_zenit_b8.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "576a7ca92459771e796e0e18", + "_parent": "576a7c512459771e796e0e17", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cc9c20cd7f00c001336c65d", + "5a800961159bd4315e3a1657", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5a7b4900e899ef197b331a2a", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "5e569a132642e66b0b68015c": { + "_id": "5e569a132642e66b0b68015c", + "_name": "mount_svd_caa_drg_l_1", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.075, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_svd_caa_drg_l_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical_000", + "_id": "5e569a132642e66b0b68015e", + "_parent": "5e569a132642e66b0b68015c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "57ffaea724597779f52b3a4d": { + "_id": "57ffaea724597779f52b3a4d", + "_name": "mount_all_zenit_b12", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_zenit_b12", + "ShortName": "mount_all_zenit_b12", + "Description": "mount_all_zenit_b12", + "Weight": 0.087, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_zenit_b12.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "57ffaeb824597779fd511db1", + "_parent": "57ffaea724597779f52b3a4d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "64785e7c19d732620e045e15", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "57ffb5d624597702841ea407", + "_parent": "57ffaea724597779f52b3a4d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57a3459f245977764a01f703" + }, + "5649a2464bdc2d91118b45a8": { + "_id": "5649a2464bdc2d91118b45a8", + "_name": "mount_all_ncstar_mpr45", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_ncstar_mpr45", + "ShortName": "mount_all_ncstar_mpr45", + "Description": "mount_all_ncstar_mpr45", + "Weight": 0.04, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_ncstar_mpr45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5649dc074bdc2d1b2b8b458f", + "_parent": "5649a2464bdc2d91118b45a8", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "57d17e212459775a1179a0f5": { + "_id": "57d17e212459775a1179a0f5", + "_name": "mount_all_noname_25mm_ring", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_noname_25mm_ring", + "ShortName": "mount_all_noname_25mm_ring", + "Description": "mount_all_noname_25mm_ring", + "Weight": 0.085, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_noname_25mm_ring.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_flashlight", + "_id": "57d17f852459775aba1dae06", + "_parent": "57d17e212459775a1179a0f5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59d790f486f77403cb06aec6", + "57d17c5e2459775a5c57d17d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57c69dd424597774c03b7bbc" + }, + "5c61a40d2e2216001403158d": { + "_id": "5c61a40d2e2216001403158d", + "_name": "mount_dovetail_zenit_b13", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_ak_tactica_tula_10000", + "ShortName": "mount_ak_tactica_tula_10000", + "Description": "mount_ak_tactica_tula_10000", + "Weight": 0.175, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_dovetail_zenit_b13.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5c61a40d2e2216001403158f", + "_parent": "5c61a40d2e2216001403158d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, "55d48a634bdc2d8b2f8b456a": { "_id": "55d48a634bdc2d8b2f8b456a", "_name": "mount_all_custom_top_rail_13", @@ -7789,917 +8700,6 @@ "CoolFactor": 1 } }, - "5bbdb811d4351e45020113c7": { - "_id": "5bbdb811d4351e45020113c7", - "_name": "mount_mosin_aim_sports_tri_rail", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_mosin_aim_sports_tri_rail", - "ShortName": "mount_mosin_aim_sports_tri_rail", - "Description": "mount_mosin_aim_sports_tri_rail", - "Weight": 0.18, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_mosin_aim_sports_tri_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5d024f5cd7ad1a04a067e91a", - "5b3f7c005acfc4704b4a1de8" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5bbdb811d4351e45020113c9", - "_parent": "5bbdb811d4351e45020113c7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5bbdbb25d4351e0034778ed6", - "_parent": "5bbdb811d4351e45020113c7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "5bbdbb2dd4351e00334caa94", - "_parent": "5bbdb811d4351e45020113c7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "65392f611406374f82152ba5": { - "_id": "65392f611406374f82152ba5", - "_name": "mount_all_gbrs_hydra_micro_kit", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_jp_enterprises_ftsm_30mm", - "ShortName": "mount_all_jp_enterprises_ftsm_30mm", - "Description": "mount_all_jp_enterprises_ftsm_30mm", - "Weight": 0.141, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_gbrs_hydra_micro_kit.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5ae30bad5acfc400185c2dc4" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "6539301abf39af1cea1f1326", - "_parent": "65392f611406374f82152ba5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "65393038e5e89511d0676bf6", - "_parent": "65392f611406374f82152ba5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61657230d92c473c770213d7", - "58d399e486f77442e0016fe7", - "5b3116595acfc40019476364", - "58d39b0386f77443380bf13c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "593d1fa786f7746da62d61ac": { - "_id": "593d1fa786f7746da62d61ac", - "_name": "mount_sks_utg_socom_rail", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_sks_utg_socom_rail", - "ShortName": "mount_sks_utg_socom_rail", - "Description": "mount_sks_utg_socom_rail", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_sks_utg_socom_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "653ece125a1690d9d90491e8", - "653ecd065a1690d9d90491e6" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "593d1fa786f7746da62d61ad", - "_parent": "593d1fa786f7746da62d61ac", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "593d209886f7746ccd73e1cf", - "_parent": "593d1fa786f7746da62d61ac", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "593d20ca86f7746d946c00e3", - "_parent": "593d1fa786f7746da62d61ac", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "593d20d786f7746bc72e89fe", - "_parent": "593d1fa786f7746da62d61ac", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_003", - "_id": "593d20e586f7746cfb12602d", - "_parent": "593d1fa786f7746da62d61ac", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5dff77c759400025ea5150cf": { - "_id": "5dff77c759400025ea5150cf", - "_name": "mount_all_utg_rings_25_4mm", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_utg_rings_25_4mm", - "ShortName": "mount_all_utg_rings_25_4mm", - "Description": "mount_all_utg_rings_25_4mm", - "Weight": 0.19, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_utg_rings_25_4mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5dff77c759400025ea5150d1", - "_parent": "5dff77c759400025ea5150cf", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5dff772da3651922b360bf91" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "5a9fc7e6a2750c0032157184": { - "_id": "5a9fc7e6a2750c0032157184", - "_name": "mount_vss_zenit_b3_combo", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_vss_zenit_b3_combo", - "ShortName": "mount_vss_zenit_b3_combo", - "Description": "mount_vss_zenit_b3_combo", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_vss_zenit_b3_combo.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5a9fc7e6a2750c0032157186", - "_parent": "5a9fc7e6a2750c0032157184", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5a9fc846a2750c00171b3faa", - "_parent": "5a9fc7e6a2750c0032157184", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "576a7c512459771e796e0e17" - }, "5a32aa0cc4a28232996e405f": { "_id": "5a32aa0cc4a28232996e405f", "_name": "mount_p226_trijicon_rm50", @@ -9071,6 +9071,110 @@ }, "_proto": "57a3459f245977764a01f703" }, + "5a16b93dfcdbcbcae6687261": { + "_id": "5a16b93dfcdbcbcae6687261", + "_name": "nvg_norotos_dual_dovetail_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "nvg_norotos_dual_dovetail_mount", + "ShortName": "nvg_norotos_dual_dovetail_mount", + "Description": "nvg_norotos_dual_dovetail_mount", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/equipment/customizable/norotos_dual_dovetail/nvg_norotos_dual_dovetail_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_nvg", + "_id": "5a17e7e9fcdbcb0017581849", + "_parent": "5a16b93dfcdbcbcae6687261", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57235b6f24597759bf5a30f1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, "625ed7c64d9b6612df732146": { "_id": "625ed7c64d9b6612df732146", "_name": "mount_m3_benelli_sport_top_rail", @@ -9453,6 +9557,234 @@ }, "_proto": "5649a2464bdc2d91118b45a8" }, + "5c0695860db834001b735461": { + "_id": "5c0695860db834001b735461", + "_name": "nvg_custom_pnv10t_dovetail_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "nvg_custom_pnv10t_dovetail_mount", + "ShortName": "nvg_custom_pnv10t_dovetail_mount", + "Description": "nvg_custom_pnv10t_dovetail_mount", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/equipment/customizable/nvg_custom_pnv10t_dovetail_mount/nvg_custom_pnv10t_dovetail_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_nvg", + "_id": "5c0695860db834001b735463", + "_parent": "5c0695860db834001b735461", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0696830db834001d23f5da" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5cc70146e4a949000d73bf6b": { + "_id": "5cc70146e4a949000d73bf6b", + "_name": "mount_p90_fn_receiver_side_rail_std", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_p90_fn_receiver_side_rail_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5cc70146e4a949000d73bf6d", + "_parent": "5cc70146e4a949000d73bf6b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, "55d48ebc4bdc2d8c2f8b456c": { "_id": "55d48ebc4bdc2d8c2f8b456c", "_name": "mount_mr133_deltatech_sprut", @@ -9653,23 +9985,167 @@ }, "_proto": "55d48c344bdc2d8b2f8b456b" }, - "5c0695860db834001b735461": { - "_id": "5c0695860db834001b735461", - "_name": "nvg_custom_pnv10t_dovetail_mount", + "5a789261c5856700186c65d3": { + "_id": "5a789261c5856700186c65d3", + "_name": "mount_12g_mesa_tactical_magazine_clamp", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "nvg_custom_pnv10t_dovetail_mount", - "ShortName": "nvg_custom_pnv10t_dovetail_mount", - "Description": "nvg_custom_pnv10t_dovetail_mount", - "Weight": 0.08, + "Name": "mount_12g_mesa_tactical_magazine_clamp", + "ShortName": "mount_12g_mesa_tactical_magazine_clamp", + "Description": "mount_12g_mesa_tactical_magazine_clamp", + "Weight": 0.087, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/equipment/customizable/nvg_custom_pnv10t_dovetail_mount/nvg_custom_pnv10t_dovetail_mount.bundle", + "path": "assets/content/items/mods/mounts/mount_12g_mesa_tactical_magazine_clamp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical_000", + "_id": "5a789338c5856700137e6785", + "_parent": "5a789261c5856700186c65d3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5a789345c58567001601718f", + "_parent": "5a789261c5856700186c65d3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57a3459f245977764a01f703" + }, + "5c7d560b2e22160bc12c6139": { + "_id": "5c7d560b2e22160bc12c6139", + "_name": "mount_base_aimpoint_standart_spacer", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_base_aimpoint_h1_t1_spacer", + "ShortName": "mount_base_aimpoint_h1_t1_spacer", + "Description": "mount_base_aimpoint_h1_t1_spacer", + "Weight": 0.025, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_base_aimpoint_standart_spacer.bundle", "rcid": "" }, "UsePrefab": { @@ -9716,15 +10192,1282 @@ "Grids": [], "Slots": [ { - "_name": "mod_nvg", - "_id": "5c0695860db834001b735463", - "_parent": "5c0695860db834001b735461", + "_name": "mod_scope", + "_id": "5c7d560b2e22160bc12c613b", + "_parent": "5c7d560b2e22160bc12c6139", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5c0696830db834001d23f5da" + "61659f79d92c473c770213ee", + "5c7d55de2e221644f31bff68" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "618a75c9a3884f56c957ca1b": { + "_id": "618a75c9a3884f56c957ca1b", + "_name": "mount_dovetail_npz_1p78_1_mount_std", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_dovetail_pilad_043_02", + "ShortName": "mount_dovetail_pilad_043_02", + "Description": "mount_dovetail_pilad_043_02", + "Weight": 0.04, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_dovetail_npz_1p78_1_mount_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "6113d6c3290d254f5e6b27db", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5dff8db859400025ea5150d4", + "5f6331e097199b7db2128dc2", + "5a957c3fa2750c00137fa5f7", + "5dfcd0e547101c39625f66f9", + "5d2c76ed48f03532f2136169", + "5d2c770c48f0354b4a07c100", + "5d2c772c48f0355d95672c25", + "5649af884bdc2d1b2b8b4589", + "59985a6c86f77414ec448d17" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "618a75c9a3884f56c957ca1d", + "_parent": "618a75c9a3884f56c957ca1b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "618a75f0bd321d49084cd399" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57a3459f245977764a01f703" + }, + "5dff8db859400025ea5150d4": { + "_id": "5dff8db859400025ea5150d4", + "_name": "mount_dovetail_sag_svd_low_sidemount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_dovetail_sag_svd_low_sidemount", + "ShortName": "mount_dovetail_sag_svd_low_sidemount", + "Description": "mount_dovetail_sag_svd_low_sidemount", + "Weight": 0.165, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_dovetail_sag_svd_low_sidemount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5dff8db859400025ea5150d6", + "_parent": "5dff8db859400025ea5150d4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5ef369b08cef260c0642acaf": { + "_id": "5ef369b08cef260c0642acaf", + "_name": "mount_m1911_ncstar_1911_trigger_guard_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_m1911_ncstar_1911_trigger_guard_mount", + "ShortName": "mount_m1911_ncstar_1911_trigger_guard_mount", + "Description": "mount_m1911_ncstar_1911_trigger_guard_mount", + "Weight": 0.04, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_m1911_ncstar_1911_trigger_guard_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5ef369b08cef260c0642acb1", + "_parent": "5ef369b08cef260c0642acaf", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5a7b4900e899ef197b331a2a", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "5b31163c5acfc400153b71cb": { + "_id": "5b31163c5acfc400153b71cb", + "_name": "mount_all_sig_romeo_4_base_weaver", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_sig_romeo_4_base_weaver", + "ShortName": "mount_all_sig_romeo_4_base_weaver", + "Description": "mount_all_sig_romeo_4_base_weaver", + "Weight": 0.015, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_sig_romeo_4_base_weaver.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5b31163c5acfc400153b71cd", + "_parent": "5b31163c5acfc400153b71cb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61657230d92c473c770213d7", + "58d399e486f77442e0016fe7", + "5b3116595acfc40019476364" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "5a7b4900e899ef197b331a2a": { + "_id": "5a7b4900e899ef197b331a2a", + "_name": "mount_glock_um_tactical_um3_sight_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_glock_um_tactical_um3_sight_mount", + "ShortName": "mount_glock_um_tactical_um3_sight_mount", + "Description": "mount_glock_um_tactical_um3_sight_mount", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_glock_um_tactical_um3_sight_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [ + "59bffbb386f77435b379b9c2" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5a7b4900e899ef197b331a2c", + "_parent": "5a7b4900e899ef197b331a2a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5a7c10d7e899ef001433145f", + "_parent": "5a7b4900e899ef197b331a2a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "60785ce5132d4d12c81fd918": { + "_id": "60785ce5132d4d12c81fd918", + "_name": "mount_mp155_kalashnikov_ultima_top_rail", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_590_bat_rb7m", + "ShortName": "mount_590_bat_rb7m", + "Description": "mount_590_bat_rb7m", + "Weight": 0.45, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_mp155_kalashnikov_ultima_top_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "60785ce5132d4d12c81fd91a", + "_parent": "60785ce5132d4d12c81fd918", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "60785ce5132d4d12c81fd91c", + "_parent": "60785ce5132d4d12c81fd918", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "60785ce5132d4d12c81fd91d", + "_parent": "60785ce5132d4d12c81fd918", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "60785ce5132d4d12c81fd91f", + "_parent": "60785ce5132d4d12c81fd918", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "606f26752535c57a13424d22" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "60785ce5132d4d12c81fd920", + "_parent": "60785ce5132d4d12c81fd918", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "60785ce5132d4d12c81fd921", + "_parent": "60785ce5132d4d12c81fd918", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61817865d3a39d50044c13a4", + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.982, + "CoolFactor": 1.012 + }, + "_proto": "57a3459f245977764a01f703" + }, + "5fbb976df9986c4cff3fe5f2": { + "_id": "5fbb976df9986c4cff3fe5f2", + "_name": "mount_vector_kriss_bottom_rail", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_vector_kriss_bottom_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5fbb976df9986c4cff3fe5f4", + "_parent": "5fbb976df9986c4cff3fe5f2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "62ebba1fb658e07ef9082b5a": { + "_id": "62ebba1fb658e07ef9082b5a", + "_name": "mount_aug_steyr_aug_a3_m1_short_rail", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_p226_sig_sauer_bridge_mount", + "ShortName": "mount_p226_sig_sauer_bridge_mount", + "Description": "mount_p226_sig_sauer_bridge_mount", + "Weight": 0.114, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_aug_steyr_aug_a3_m1_short_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "62ebba1fb658e07ef9082b5b", + "_parent": "62ebba1fb658e07ef9082b5a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "626bb8532c923541184624b4", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5a37ca54c4a282000d72296a", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245" ] } ] @@ -9755,25 +11498,431 @@ "HeatFactor": 1, "CoolFactor": 1 }, - "_proto": "55f96d6f4bdc2d5f408b4578" + "_proto": "5649a2464bdc2d91118b45a8" }, - "5cc70146e4a949000d73bf6b": { - "_id": "5cc70146e4a949000d73bf6b", - "_name": "mount_p90_fn_receiver_side_rail_std", + "5addc00b5acfc4001669f144": { + "_id": "5addc00b5acfc4001669f144", + "_name": "mount_m14_vltor_casv_14_rail", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.07, + "Name": "mount_m14_vltor_casv_14_rail", + "ShortName": "mount_m14_vltor_casv_14_rail", + "Description": "mount_m14_vltor_casv_14_rail", + "Weight": 0.096, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_m14_vltor_casv_14_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope_000", + "_id": "5addc46d5acfc4001a5fc58f", + "_parent": "5addc00b5acfc4001669f144", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope_001", + "_id": "5addc47e5acfc400185c28f0", + "_parent": "5addc00b5acfc4001669f144", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "64785e7c19d732620e045e15", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5ade06285acfc40015621dc1", + "_parent": "5addc00b5acfc4001669f144", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5ade06625acfc408fb139834", + "_parent": "5addc00b5acfc4001669f144", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be4575acfc400161d0832", + "5b7be4645acfc400170e2dcc" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5ade06715acfc4001a5fc645", + "_parent": "5addc00b5acfc4001669f144", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be4575acfc400161d0832", + "5b7be4645acfc400170e2dcc" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57a3459f245977764a01f703" + }, + "5f2aa493cd375f14e15eea72": { + "_id": "5f2aa493cd375f14e15eea72", + "_name": "mount_rfb_kel_tec_bottom_rail_std", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_vltor_6_inch_casv_rail_section", + "ShortName": "mount_keymod_vltor_6_inch_casv_rail_section", + "Description": "mount_keymod_vltor_6_inch_casv_rail_section", + "Weight": 0.075, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_p90_fn_receiver_side_rail_std.bundle", + "path": "assets/content/items/mods/mounts/mount_rfb_kel_tec_bottom_rail_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5f2aa493cd375f14e15eea74", + "_parent": "5f2aa493cd375f14e15eea72", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "5c791e872e2216001219c40a", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5b4736a986f774040571e998": { + "_id": "5b4736a986f774040571e998", + "_name": "mount_qars_troy_qars_3,2_inch_rail_section", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_qars_troy_qars_3,2_inch_rail_section", + "ShortName": "mount_qars_troy_qars_3,2_inch_rail_section", + "Description": "mount_qars_troy_qars_3,2_inch_rail_section", + "Weight": 0.045, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_qars_troy_qars_3,2_inch_rail_section.bundle", "rcid": "" }, "UsePrefab": { @@ -9821,8 +11970,848 @@ "Slots": [ { "_name": "mod_tactical", - "_id": "5cc70146e4a949000d73bf6d", - "_parent": "5cc70146e4a949000d73bf6b", + "_id": "5b4736a986f774040571e99a", + "_parent": "5b4736a986f774040571e998", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "62444cd3674028188b052799": { + "_id": "62444cd3674028188b052799", + "_name": "mount_g36_hk_side_rail_std", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_ump_hk_side_rail_std", + "ShortName": "mount_ump_hk_side_rail_std", + "Description": "mount_ump_hk_side_rail_std", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_g36_hk_side_rail_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "62444cd3674028188b05279b", + "_parent": "62444cd3674028188b052799", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6267c6396b642f77f56f5c1c", + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "626becf9582c3e319310b837", + "5cc9c20cd7f00c001336c65d", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "63fc449f5bd61c6cf3784a88": { + "_id": "63fc449f5bd61c6cf3784a88", + "_name": "mount_all_armasight_zeus_pro_qd_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_trijicon_rm33mount_all_armasight_un_nv_ir_qd_mount", + "ShortName": "mount_all_armasight_un_nv_ir_qd_mount", + "Description": "mount_all_armasight_un_nv_ir_qd_mount", + "Weight": 0.017, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_armasight_zeus_pro_qd_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [ + "55d5f46a4bdc2d1b198b4567", + "5ae30bad5acfc400185c2dc4" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "63fc449f5bd61c6cf3784a89", + "_parent": "63fc449f5bd61c6cf3784a88", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "63fc44e2429a8a166c7f61e6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "61816df1d3a39d50044c139e": { + "_id": "61816df1d3a39d50044c139e", + "_name": "mount_mk16_fn_scar_bottom_rail_std", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_6_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_6_inch_rail_section", + "Description": "mount_keymod_strike_industries_6_inch_rail_section", + "Weight": 0.075, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_mk16_fn_scar_bottom_rail_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "61816df1d3a39d50044c13a0", + "_parent": "61816df1d3a39d50044c139e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "5a7dbfc1159bd40016548fde", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "61966e6818a3974e5e742806", + "_parent": "61816df1d3a39d50044c139e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61965d9058ef8c428c287e0d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5d024f5cd7ad1a04a067e91a": { + "_id": "5d024f5cd7ad1a04a067e91a", + "_name": "mount_kochetov_arbalet_patriot_k_w", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_ak_tactica_tula_10000", + "ShortName": "mount_ak_tactica_tula_10000", + "Description": "mount_ak_tactica_tula_10000", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_kochetov_arbalet_patriot_k_w.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5bc5a372d4351e44f824d17f", + "5bbdb811d4351e45020113c7" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5d024f5cd7ad1a04a067e91c", + "_parent": "5d024f5cd7ad1a04a067e91a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "64785e7c19d732620e045e15", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5addbfd15acfc40015621bde": { + "_id": "5addbfd15acfc40015621bde", + "_name": "mount_m14_amega_mounts_mini_scout_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_m14_amega_mounts_mini_scout_mount", + "ShortName": "mount_m14_amega_mounts_mini_scout_mount", + "Description": "mount_m14_amega_mounts_mini_scout_mount", + "Weight": 0.18, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_m14_amega_mounts_mini_scout_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5addbfd15acfc40015621be0", + "_parent": "5addbfd15acfc40015621bde", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "64785e7c19d732620e045e15", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5addc1045acfc4001669f148", + "_parent": "5addbfd15acfc40015621bde", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57a3459f245977764a01f703" + }, + "5df35eb2b11454561e3923e2": { + "_id": "5df35eb2b11454561e3923e2", + "_name": "mount_orsis_orsis_rail_section_med", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_orsis_orsis_rail_section_med.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5df35eb2b11454561e3923e4", + "_parent": "5df35eb2b11454561e3923e2", "_props": { "filters": [ { @@ -10292,1049 +13281,6 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, - "6196255558ef8c428c287d1c": { - "_id": "6196255558ef8c428c287d1c", - "_name": "mount_usp_hk_usp_rail_adapter", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_glock_um_tactical_um3_sight_mount", - "ShortName": "mount_glock_um_tactical_um3_sight_mount", - "Description": "mount_glock_um_tactical_um3_sight_mount", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_usp_hk_usp_rail_adapter.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "6196255558ef8c428c287d1e", - "_parent": "6196255558ef8c428c287d1c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "622f02437762f55aaa68ac85": { - "_id": "622f02437762f55aaa68ac85", - "_name": "mount_g36_hk_magwell_std", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_acog_trijicon_rm35", - "ShortName": "mount_acog_trijicon_rm35", - "Description": "mount_acog_trijicon_rm35", - "Weight": 0.02, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_g36_hk_magwell_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "55d4887d4bdc2d962f8b4570", - "61840bedd92c473c77021635", - "61840d85568c120fdd2962a5", - "5c05413a0db834001c390617", - "5c6d450c2e221600114c997d", - "5c6d42cb2e2216000e69d7d1", - "59c1383d86f774290a37e0ca", - "5aaa5e60e5b5b000140293d6", - "5448c1d04bdc2dff2f8b4569", - "5aaa5dfee5b5b000140293d3", - "5d1340b3d7ad1a0b52682ed7", - "544a378f4bdc2d30388b4567", - "5d1340bdd7ad1a0e8d245aab", - "55802d5f4bdc2dac148b458e", - "5d1340cad7ad1a0b0b249869", - "5c6592372e221600133e47d7", - "544a37c44bdc2d25388b4567", - "5c6d46132e221601da357d56" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0.5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "5c471c2d2e22164bef5d077f": { - "_id": "5c471c2d2e22164bef5d077f", - "_name": "mount_svd_izhmash_svd_s_lower_band_std", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_burris_ar_p_e_p_r_30mm", - "ShortName": "mount_all_burris_ar_p_e_p_r_30mm", - "Description": "mount_all_burris_ar_p_e_p_r_30mm", - "Weight": 0.246, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_svd_izhmash_svd_s_lower_band_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_handguard", - "_id": "5c471e662e22161b267d9bd0", - "_parent": "5c471c2d2e22164bef5d077f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5e5699df2161e06ac158df6f", - "5e56991336989c75ab4f03f6", - "5c471c6c2e221602b66cd9ae" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5c47256b2e221602b3137e84", - "_parent": "5c471c2d2e22164bef5d077f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649d9a14bdc2d79388b4580", - "5c471b7e2e2216152006e46c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "641dc35e19604f20c800be18": { - "_id": "641dc35e19604f20c800be18", - "_name": "mount_svt40_toz_tokarev_pu_base", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_acog_trijicon_rm35", - "ShortName": "mount_acog_trijicon_rm35", - "Description": "mount_acog_trijicon_rm35", - "Weight": 0.02, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_svt40_toz_tokarev_pu_base.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "641dc35e19604f20c800be19", - "_parent": "641dc35e19604f20c800be18", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b3f7c1c5acfc40dc5296b1d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "5fbb976df9986c4cff3fe5f2": { - "_id": "5fbb976df9986c4cff3fe5f2", - "_name": "mount_vector_kriss_bottom_rail", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_vector_kriss_bottom_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5fbb976df9986c4cff3fe5f4", - "_parent": "5fbb976df9986c4cff3fe5f2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5f2aa493cd375f14e15eea72": { - "_id": "5f2aa493cd375f14e15eea72", - "_name": "mount_rfb_kel_tec_bottom_rail_std", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_vltor_6_inch_casv_rail_section", - "ShortName": "mount_keymod_vltor_6_inch_casv_rail_section", - "Description": "mount_keymod_vltor_6_inch_casv_rail_section", - "Weight": 0.075, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_rfb_kel_tec_bottom_rail_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5f2aa493cd375f14e15eea74", - "_parent": "5f2aa493cd375f14e15eea72", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "5c791e872e2216001219c40a", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5c61627a2e22160012542c55": { - "_id": "5c61627a2e22160012542c55", - "_name": "mount_dovetail_noname_toz106_angled_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_ak_tactica_tula_10000", - "ShortName": "mount_ak_tactica_tula_10000", - "Description": "mount_ak_tactica_tula_10000", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_dovetail_noname_toz106_angled_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5947db3f86f77447880cf76f", - "57486e672459770abd687134", - "576fd4ec2459777f0b518431", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "57acb6222459771ec34b5cb0" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5c61627a2e22160012542c57", - "_parent": "5c61627a2e22160012542c55", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "62ebba1fb658e07ef9082b5a": { - "_id": "62ebba1fb658e07ef9082b5a", - "_name": "mount_aug_steyr_aug_a3_m1_short_rail", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_p226_sig_sauer_bridge_mount", - "ShortName": "mount_p226_sig_sauer_bridge_mount", - "Description": "mount_p226_sig_sauer_bridge_mount", - "Weight": 0.114, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_aug_steyr_aug_a3_m1_short_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "62ebba1fb658e07ef9082b5b", - "_parent": "62ebba1fb658e07ef9082b5a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "626bb8532c923541184624b4", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5a37ca54c4a282000d72296a", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, "5beecbb80db834001d2c465e": { "_id": "5beecbb80db834001d2c465e", "_name": "mount_rpk16_izhmash_rpk16_side_rail", @@ -11459,23 +13405,23 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, - "5b8403a086f7747ff856f4e2": { - "_id": "5b8403a086f7747ff856f4e2", - "_name": "mount_hex_hexagon_medium_red", + "5a27bad7c4a282000b15184b": { + "_id": "5a27bad7c4a282000b15184b", + "_name": "mount_sr1mp_tochmash_std_4_rail", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_hex_hexagon_medium", - "ShortName": "mount_hex_hexagon_medium", - "Description": "mount_hex_hexagon_medium", - "Weight": 0.075, + "Name": "mount_sr1mp_tochmash_std_4_rail", + "ShortName": "mount_sr1mp_tochmash_std_4_rail", + "Description": "mount_sr1mp_tochmash_std_4_rail", + "Weight": 0.04, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_hex_hexagon_medium_red.bundle", + "path": "assets/content/items/mods/mounts/mount_sr1mp_tochmash_std_4_rail.bundle", "rcid": "" }, "UsePrefab": { @@ -11493,7 +13439,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 5, - "ExamineExperience": 5, + "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -11522,46 +13468,25 @@ "Grids": [], "Slots": [ { - "_name": "mod_foregrip", - "_id": "5b8403a086f7747ff856f4e4", - "_parent": "5b8403a086f7747ff856f4e2", + "_name": "mod_tactical_000", + "_id": "5a27bad7c4a282000b15184c", + "_parent": "5a27bad7c4a282000b15184b", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "648067db042be0705c0b3009", - "64807a29e5ffe165600abc97", - "64806bdd26c80811d408d37a", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb" ] } ] @@ -11569,103 +13494,111 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5b3b6dc75acfc47a8773fb1e": { - "_id": "5b3b6dc75acfc47a8773fb1e", - "_name": "mount_all_armasight_un_nv_ir_qd_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_trijicon_rm33mount_all_armasight_un_nv_ir_qd_mount", - "ShortName": "mount_all_armasight_un_nv_ir_qd_mount", - "Description": "mount_all_armasight_un_nv_ir_qd_mount", - "Weight": 0.017, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_armasight_un_nv_ir_qd_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ + }, { - "_name": "mod_scope", - "_id": "5b3b6dc75acfc47a8773fb20", - "_parent": "5b3b6dc75acfc47a8773fb1e", + "_name": "mod_mount", + "_id": "5a27bad7c4a282000b15184d", + "_parent": "5a27bad7c4a282000b15184b", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5b3b6e495acfc4330140bd88" + "5a27b3d0c4a282000d721ec1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5a27bb66c4a28200741e1e56", + "_parent": "5a27bad7c4a282000b15184b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "5a27bb70c4a28232996e3c76", + "_parent": "5a27bad7c4a282000b15184b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5a27bb79c4a282000e496f7b", + "_parent": "5a27bad7c4a282000b15184b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "584984812459776a704a82a6", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5a33b2c9c4a282000c5a9511" ] } ] @@ -11698,23 +13631,23 @@ }, "_proto": "5649a2464bdc2d91118b45a8" }, - "5d7b6bafa4b93652786f4c76": { - "_id": "5d7b6bafa4b93652786f4c76", - "_name": "mount_57_fn_mk2_rmr_dovetail_mount", + "622b3d5cf9cfc87d675d2de9": { + "_id": "622b3d5cf9cfc87d675d2de9", + "_name": "mount_g36_hk_extendable_folding_sight", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_57_fn_mk2_rmr_dovetail_mount", - "ShortName": "mount_57_fn_mk2_rmr_dovetail_mount", - "Description": "mount_57_fn_mk2_rmr_dovetail_mount", - "Weight": 0.12, + "Name": "mount_m14_ultimak_m8_forward_optic_mount", + "ShortName": "mount_m14_ultimak_m8_forward_optic_mount", + "Description": "mount_m14_ultimak_m8_forward_optic_mount", + "Weight": 0.453, "BackgroundColor": "blue", - "Width": 1, + "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_57_fn_mk2_rmr_dovetail_mount.bundle", + "path": "assets/content/items/mods/mounts/mount_g36_hk_extendable_folding_sight.bundle", "rcid": "" }, "UsePrefab": { @@ -11732,7 +13665,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 5, - "ExamineExperience": 5, + "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -11762,14 +13695,120 @@ "Slots": [ { "_name": "mod_scope", - "_id": "5d7b6bb0a4b93652786f4c78", - "_parent": "5d7b6bafa4b93652786f4c76", + "_id": "622b3d5cf9cfc87d675d2deb", + "_parent": "622b3d5cf9cfc87d675d2de9", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a32aa8bc4a2826c6e06d737" + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "626bb8532c923541184624b4", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "62811f461d5df4475f46a332", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "622b3d5cf9cfc87d675d2dec", + "_parent": "622b3d5cf9cfc87d675d2de9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "622b4b705066e61cac73a756", + "_parent": "622b3d5cf9cfc87d675d2de9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" ] } ] @@ -11786,10 +13825,10 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, + "Ergonomics": -1, "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, + "RaidModdable": false, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -11800,25 +13839,25 @@ "HeatFactor": 1, "CoolFactor": 1 }, - "_proto": "5649a2464bdc2d91118b45a8" + "_proto": "57a3459f245977764a01f703" }, - "646f6322f43d0c5d62063715": { - "_id": "646f6322f43d0c5d62063715", - "_name": "mount_all_zenit_kr2_gen_1", + "5fc5396e900b1d5091531e72": { + "_id": "5fc5396e900b1d5091531e72", + "_name": "mount_ump_hk_side_rail_std", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_all_aimpoint_h2_weaver", - "ShortName": "mount_all_aimpoint_h2_weaver", - "Description": "mount_all_aimpoint_h2_weaver", - "Weight": 0.036, + "Name": "mount_ump_hk_side_rail_std", + "ShortName": "mount_ump_hk_side_rail_std", + "Description": "mount_ump_hk_side_rail_std", + "Weight": 0.05, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_zenit_kr2_gen_1.bundle", + "path": "assets/content/items/mods/mounts/mount_ump_hk_side_rail_std.bundle", "rcid": "" }, "UsePrefab": { @@ -11866,14 +13905,34 @@ "Slots": [ { "_name": "mod_tactical", - "_id": "646f6322f43d0c5d62063716", - "_parent": "646f6322f43d0c5d62063715", + "_id": "5fc5396e900b1d5091531e74", + "_parent": "5fc5396e900b1d5091531e72", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "646f62fee779812413011ab7" + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" ] } ] @@ -11904,25 +13963,218 @@ "HeatFactor": 1, "CoolFactor": 1 }, - "_proto": "5649a2464bdc2d91118b45a8" + "_proto": "55f96d6f4bdc2d5f408b4578" }, - "615d8da4d3a39d50044c10e8": { - "_id": "615d8da4d3a39d50044c10e8", - "_name": "mount_glock_tango_down_aam_01_acro_mount", + "591ee00d86f774592f7b841e": { + "_id": "591ee00d86f774592f7b841e", + "_name": "mount_dovetail_aksion_kobra", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_glock_aimtech_base_glock", - "ShortName": "mount_glock_aimtech_base_glock", - "Description": "mount_glock_aimtech_base_glock", - "Weight": 0.007, + "Name": "mount_dovetail_aksion_kobra", + "ShortName": "mount_dovetail_aksion_kobra", + "Description": "mount_dovetail_aksion_kobra", + "Weight": 0.043, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_glock_tango_down_aam_01_acro_mount.bundle", + "path": "assets/content/items/mods/mounts/mount_dovetail_aksion_kobra.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "591ee00d86f774592f7b841f", + "_parent": "591ee00d86f774592f7b841e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "626bb8532c923541184624b4", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "591ee09186f77460a130cccc", + "_parent": "591ee00d86f774592f7b841e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57a3459f245977764a01f703" + }, + "58d2664f86f7747fec5834f6": { + "_id": "58d2664f86f7747fec5834f6", + "_name": "mount_all_leupold_deltapoint_weaver", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_leupold_deltapoint_weaver", + "ShortName": "mount_all_leupold_deltapoint_weaver", + "Description": "mount_all_leupold_deltapoint_weaver", + "Weight": 0.045, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_leupold_deltapoint_weaver.bundle", "rcid": "" }, "UsePrefab": { @@ -11970,14 +14222,14 @@ "Slots": [ { "_name": "mod_scope", - "_id": "615d8da4d3a39d50044c10ea", - "_parent": "615d8da4d3a39d50044c10e8", + "_id": "58d2664f86f7747fec5834f7", + "_parent": "58d2664f86f7747fec5834f6", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "616442e4faa1272e43152193" + "58d268fc86f774111273f8c2" ] } ] @@ -12010,6 +14262,2477 @@ }, "_proto": "5649a2464bdc2d91118b45a8" }, + "5cdeaca5d7f00c00b61c4b70": { + "_id": "5cdeaca5d7f00c00b61c4b70", + "_name": "mount_m700_magpul_pro_700_inline_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_m700_abarms_mod_x_scope_mount_rail", + "ShortName": "mount_m700_abarms_mod_x_scope_mount_rail", + "Description": "mount_m700_abarms_mod_x_scope_mount_rail", + "Weight": 0.28, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_m700_magpul_pro_700_inline_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5947db3f86f77447880cf76f", + "57486e672459770abd687134", + "576fd4ec2459777f0b518431", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "57acb6222459771ec34b5cb0" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical_000", + "_id": "5cdeaf21d7f00c000d36bb0f", + "_parent": "5cdeaca5d7f00c00b61c4b70", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5cdeaf5ed7f00c000d36bb11", + "_parent": "5cdeaca5d7f00c00b61c4b70", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5f2aa49f9b44de6b1b4e68d4": { + "_id": "5f2aa49f9b44de6b1b4e68d4", + "_name": "mount_rfb_ket_tec_rfb_scope_mount_std", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_rfb_ket_tec_rfb_scope_mount_std", + "ShortName": "mount_rfb_ket_tec_rfb_scope_mount_std", + "Description": "mount_rfb_ket_tec_rfb_scope_mount_std", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_rfb_ket_tec_rfb_scope_mount_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5947db3f86f77447880cf76f", + "57486e672459770abd687134", + "576fd4ec2459777f0b518431", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "57acb6222459771ec34b5cb0" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5f2aa49f9b44de6b1b4e68d6", + "_parent": "5f2aa49f9b44de6b1b4e68d4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5f2aa49f9b44de6b1b4e68d7", + "_parent": "5f2aa49f9b44de6b1b4e68d4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61817865d3a39d50044c13a4", + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5f3299579f54ae5b29276e19", + "_parent": "5f2aa49f9b44de6b1b4e68d4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5b3a08b25acfc4001754880c": { + "_id": "5b3a08b25acfc4001754880c", + "_name": "mount_p226_sig_sauer_bridge_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_p226_sig_sauer_bridge_mount", + "ShortName": "mount_p226_sig_sauer_bridge_mount", + "Description": "mount_p226_sig_sauer_bridge_mount", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_p226_sig_sauer_bridge_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5b3a08b25acfc4001754880e", + "_parent": "5b3a08b25acfc4001754880c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5b3a08b25acfc4001754880f", + "_parent": "5b3a08b25acfc4001754880c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "5a966ec8a2750c00171b3f36": { + "_id": "5a966ec8a2750c00171b3f36", + "_name": "mount_mp5_bt_mounting_rail_nar_low_profile_long", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_mp5_bt_mounting_rail_nar_low_profile_long", + "ShortName": "mount_mp5_bt_mounting_rail_nar_low_profile_long", + "Description": "mount_mp5_bt_mounting_rail_nar_low_profile_long", + "Weight": 0.223, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_mp5_bt_mounting_rail_nar_low_profile_long.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5926d2be86f774134d668e4e" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5a966ec8a2750c00171b3f38", + "_parent": "5a966ec8a2750c00171b3f36", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1.5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5c1cdd302e221602b3137250": { + "_id": "5c1cdd302e221602b3137250", + "_name": "mount_all_kiba_compact_scope_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_trijicon_ta51", + "ShortName": "mount_all_trijicon_ta51", + "Description": "mount_all_trijicon_ta51", + "Weight": 0.11, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_primary_arms_compact_scope_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5c1cdd302e221602b3137252", + "_parent": "5c1cdd302e221602b3137250", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c1cdd512e22161b267d91ae", + "5c05293e0db83400232fff80", + "5c052a900db834001a66acbd", + "59db7e1086f77448be30ddf3" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "5cc7012ae4a949001252b43e": { + "_id": "5cc7012ae4a949001252b43e", + "_name": "mount_p90_fn_effen_90_side_rail", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_p90_fn_effen_90_side_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5cc7012ae4a949001252b440", + "_parent": "5cc7012ae4a949001252b43e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "577d128124597739d65d0e56": { + "_id": "577d128124597739d65d0e56", + "_name": "mount_all_burris_fast_fire_weaver", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_burris_fast_fire_weaver", + "ShortName": "mount_all_burris_fast_fire_weaver", + "Description": "mount_all_burris_fast_fire_weaver", + "Weight": 0.017, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_burris_fast_fire_weaver.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "577d13f724597739ba176c31", + "_parent": "577d128124597739d65d0e56", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "577d141e24597739c5255e01" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "5df35ea9c41b2312ea3334d8": { + "_id": "5df35ea9c41b2312ea3334d8", + "_name": "mount_orsis_orsis_rail_section_long", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_orsis_orsis_rail_section_long.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5df35ea9c41b2312ea3334da", + "_parent": "5df35ea9c41b2312ea3334d8", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5df35e970b92095fd441e4d2": { + "_id": "5df35e970b92095fd441e4d2", + "_name": "mount_t5000_orsis_scope_mount_rail_std", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_m700_abarms_mod_x_scope_mount_rail", + "ShortName": "mount_m700_abarms_mod_x_scope_mount_rail", + "Description": "mount_m700_abarms_mod_x_scope_mount_rail", + "Weight": 0.14, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_t5000_orsis_scope_mount_rail_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5947db3f86f77447880cf76f", + "57486e672459770abd687134", + "576fd4ec2459777f0b518431", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "57acb6222459771ec34b5cb0" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5df35e970b92095fd441e4d4", + "_parent": "5df35e970b92095fd441e4d2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5d133067d7ad1a33013f95b4": { + "_id": "5d133067d7ad1a33013f95b4", + "_name": "mount_urx_kac_3_inch_rail_section", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_urx_kac_3_inch_rail_section", + "ShortName": "mount_urx_kac_3_inch_rail_section", + "Description": "mount_urx_kac_3_inch_rail_section", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_urx_kac_3_inch_rail_section.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5d133067d7ad1a33013f95b6", + "_parent": "5d133067d7ad1a33013f95b4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5a27b281c4a28200741e1e52": { + "_id": "5a27b281c4a28200741e1e52", + "_name": "mount_sr1mp_tochmash_std_1_rail", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_sr1mp_tochmash_std_1_rail", + "ShortName": "mount_sr1mp_tochmash_std_1_rail", + "Description": "mount_sr1mp_tochmash_std_1_rail", + "Weight": 0.04, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_sr1mp_tochmash_std_1_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical_000", + "_id": "5a27b281c4a28200741e1e53", + "_parent": "5a27b281c4a28200741e1e52", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5a27b35cc4a28232996e3c73", + "_parent": "5a27b281c4a28200741e1e52", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a27b3d0c4a282000d721ec1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "63d114019e35b334d82302f7": { + "_id": "63d114019e35b334d82302f7", + "_name": "mount_dovetail_sag_ak_sidemount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_dovetail_sag_svd_low_sidemount", + "ShortName": "mount_dovetail_sag_svd_low_sidemount", + "Description": "mount_dovetail_sag_svd_low_sidemount", + "Weight": 0.165, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_dovetail_sag_ak_sidemount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [ + "5e569a0156edd02abe09f27d", + "6113d6c3290d254f5e6b27db", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5dff8db859400025ea5150d4", + "6389f1dfc879ce63f72fc43e", + "5d2c770c48f0354b4a07c100", + "5649af884bdc2d1b2b8b4589", + "5d2c76ed48f03532f2136169", + "5649d9a14bdc2d79388b4580", + "5dfcd0e547101c39625f66f9", + "5827272a24597748c74bdeea", + "5a957c3fa2750c00137fa5f7", + "5f6331e097199b7db2128dc2", + "5d2c772c48f0355d95672c25", + "58272b392459774b4c7b3ccd", + "5f63418ef5750b524b45f116", + "58272b842459774abc128d50" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "63d114019e35b334d82302f8", + "_parent": "63d114019e35b334d82302f7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "64785e7c19d732620e045e15", + "6478641c19d732620e045e17", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "638db77630c4240f9e06f8b6": { + "_id": "638db77630c4240f9e06f8b6", + "_name": "mount_dovetail_sag_bit_bracket", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_dovetail_sag_svd_low_sidemount", + "ShortName": "mount_dovetail_sag_svd_low_sidemount", + "Description": "mount_dovetail_sag_svd_low_sidemount", + "Weight": 0.075, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_dovetail_sag_bit_bracket.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "5d2c76ed48f03532f2136169", + "5d2c770c48f0354b4a07c100", + "5d2c772c48f0355d95672c25", + "5649af884bdc2d1b2b8b4589", + "5dff8db859400025ea5150d4", + "5dfcd0e547101c39625f66f9", + "5827272a24597748c74bdeea", + "59985a6c86f77414ec448d17", + "5a957c3fa2750c00137fa5f7", + "5f6331e097199b7db2128dc2", + "5e569a0156edd02abe09f27d" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "638db77630c4240f9e06f8b7", + "_parent": "638db77630c4240f9e06f8b6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "5a1ead28fcdbcb001912fa9f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -0.5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5fce0f9b55375d18a253eff2": { + "_id": "5fce0f9b55375d18a253eff2", + "_name": "mount_vector_kriss_side_rail", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_ump_hk_side_rail_std", + "ShortName": "mount_ump_hk_side_rail_std", + "Description": "mount_ump_hk_side_rail_std", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_vector_kriss_side_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5fce0f9b55375d18a253eff4", + "_parent": "5fce0f9b55375d18a253eff2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5a37ca54c4a282000d72296a": { + "_id": "5a37ca54c4a282000d72296a", + "_name": "mount_all_jp_enterprises_ftsm_30mm", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_jp_enterprises_ftsm_30mm", + "ShortName": "mount_all_jp_enterprises_ftsm_30mm", + "Description": "mount_all_jp_enterprises_ftsm_30mm", + "Weight": 0.194, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_jp_enterprises_ftsm_30mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 1, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope_000", + "_id": "5a37ce4ac4a282000b1521c9", + "_parent": "5a37ca54c4a282000d72296a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b2388675acfc4771e1be0be", + "5b3b99475acfc432ff4dcbee", + "5a37cb10c4a282329a73b4e7", + "57c5ac0824597754771e88a9", + "618ba27d9008e4636a67f61d", + "617151c1d92c473c770214ab", + "6567e7681265c8a131069b0f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope_001", + "_id": "5a37ce53c4a282000d72296e", + "_parent": "5a37ca54c4a282000d72296a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "58d268fc86f774111273f8c2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "5cc7015ae4a949001152b4c6": { + "_id": "5cc7015ae4a949001152b4c6", + "_name": "mount_p90_fn_receiver_top_rail_std", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.27, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_p90_fn_receiver_top_rail_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5cc83b46d7f00c000d3a6b5e", + "_parent": "5cc7015ae4a949001152b4c6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5c5952732e2216398b5abda2", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "626bb8532c923541184624b4", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5cc83b50d7f00c000e257555", + "_parent": "5cc7015ae4a949001152b4c6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5cc83b5dd7f00c000f5f5edb", + "_parent": "5cc7015ae4a949001152b4c6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61817865d3a39d50044c13a4", + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5b3b99265acfc4704b4a1afb": { + "_id": "5b3b99265acfc4704b4a1afb", + "_name": "mount_all_nightforce_x_treme_duty_ultralite_30mm", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "ShortName": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "Description": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "Weight": 0.19, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_nightforce_x_treme_duty_ultralite_30mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5b3b99265acfc4704b4a1afd", + "_parent": "5b3b99265acfc4704b4a1afb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b2388675acfc4771e1be0be", + "5b3b99475acfc432ff4dcbee", + "5a37cb10c4a282329a73b4e7", + "57c5ac0824597754771e88a9", + "618ba27d9008e4636a67f61d", + "617151c1d92c473c770214ab", + "6567e7681265c8a131069b0f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, "5fbb978207e8a97d1f0902d3": { "_id": "5fbb978207e8a97d1f0902d3", "_name": "mount_vector_kriss_mk5_modular_rail", @@ -12945,6 +17668,1547 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, + "65434a4e4e3a01736a6c9706": { + "_id": "65434a4e4e3a01736a6c9706", + "_name": "mount_lenok_hartman_lenok_weaver_70mm", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.019, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_lenok_hartman_lenok_weaver_70mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "65434a4e4e3a01736a6c9707", + "_parent": "65434a4e4e3a01736a6c9706", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "6415d33eda439c6a97048b5b": { + "_id": "6415d33eda439c6a97048b5b", + "_name": "mount_sks_choate_sks_scope_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_ak_tactica_tula_10000", + "ShortName": "mount_ak_tactica_tula_10000", + "Description": "mount_ak_tactica_tula_10000", + "Weight": 0.175, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_sks_choate_sks_scope_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [ + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "591ee00d86f774592f7b841e", + "609a4b4fe2ff132951242d04", + "5e569a2e56edd02abe09f280", + "5d0a29ead7ad1a0026013f27", + "5c61627a2e22160012542c55", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "63d114019e35b334d82302f7", + "638db77630c4240f9e06f8b6", + "5c61a40d2e2216001403158d", + "5dff8db859400025ea5150d4", + "5c90c3622e221601da359851" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "6415d33eda439c6a97048b5c", + "_parent": "6415d33eda439c6a97048b5b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "5b3b6dc75acfc47a8773fb1e", + "5a37ca54c4a282000d72296a", + "5b3b99265acfc4704b4a1afb", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5dff77c759400025ea5150cf" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "62ed1921b3608410ef5a2c04": { + "_id": "62ed1921b3608410ef5a2c04", + "_name": "mount_sr2m_tochmash_med_rail", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.06, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_sr2m_tochmash_med_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "62ed1921b3608410ef5a2c05", + "_parent": "62ed1921b3608410ef5a2c04", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5b3a337e5acfc4704b4a19a0", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "587e08ee245977446b4410cf": { + "_id": "587e08ee245977446b4410cf", + "_name": "mount_sks_molot_op_sks_std", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_sks_molot_op_sks_std", + "ShortName": "mount_sks_molot_op_sks_std", + "Description": "mount_sks_molot_op_sks_std", + "Weight": 0.02, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_sks_molot_op_sks_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "587e08ee245977446b4410d0", + "_parent": "587e08ee245977446b4410cf", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "638db77630c4240f9e06f8b6", + "63d114019e35b334d82302f7", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57a3459f245977764a01f703" + }, + "5c6162682e22160010261a2b": { + "_id": "5c6162682e22160010261a2b", + "_name": "mount_toz-106_noname_dovetail_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_toz-106_noname_dovetail_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5c618c5b2e221600133e3dac", + "_parent": "5c6162682e22160010261a2b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c61627a2e22160012542c55" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "618b9643526131765025ab35": { + "_id": "618b9643526131765025ab35", + "_name": "mount_all_geissele_super_precision_30mm", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_jp_enterprises_ftsm_30mm", + "ShortName": "mount_all_jp_enterprises_ftsm_30mm", + "Description": "mount_all_jp_enterprises_ftsm_30mm", + "Weight": 0.194, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_geissele_super_precision_30mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5ae30bad5acfc400185c2dc4" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "618b9643526131765025ab37", + "_parent": "618b9643526131765025ab35", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b2388675acfc4771e1be0be", + "5b3b99475acfc432ff4dcbee", + "5a37cb10c4a282329a73b4e7", + "57c5ac0824597754771e88a9", + "618ba27d9008e4636a67f61d", + "617151c1d92c473c770214ab", + "6567e7681265c8a131069b0f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "618ba83fb766fe04084b015b", + "_parent": "618b9643526131765025ab35", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "618b9671d14d6d5ab879c5ea", + "618ba91477b82356f91ae0e8", + "618b9682a3884f56c957ca78", + "618ba92152ecee1505530bd3" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0.5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "5a398b75c4a282000a51a266": { + "_id": "5a398b75c4a282000a51a266", + "_name": "helmet_ops_core_picatinny_rail_adapter", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "helmet_ops_core_single_clamp_rail_adapter", + "ShortName": "helmet_ops_core_single_clamp_rail_adapter", + "Description": "helmet_ops_core_single_clamp_rail_adapter", + "Weight": 0.02, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/equipment/helmet_opscore_fast/item_equipment_helmet_opscore_picatinny_rail_adapter.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a16b7e1fcdbcb00165aa6c9" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount", + "_id": "5a398b8ac4a282fbd16a3866", + "_parent": "5a398b75c4a282000a51a266", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "56def37dd2720bec348b456a", + "560d657b4bdc2da74d8b4572", + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "626becf9582c3e319310b837", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "6196255558ef8c428c287d1c": { + "_id": "6196255558ef8c428c287d1c", + "_name": "mount_usp_hk_usp_rail_adapter", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_glock_um_tactical_um3_sight_mount", + "ShortName": "mount_glock_um_tactical_um3_sight_mount", + "Description": "mount_glock_um_tactical_um3_sight_mount", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_usp_hk_usp_rail_adapter.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "6196255558ef8c428c287d1e", + "_parent": "6196255558ef8c428c287d1c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "622f02437762f55aaa68ac85": { + "_id": "622f02437762f55aaa68ac85", + "_name": "mount_g36_hk_magwell_std", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_acog_trijicon_rm35", + "ShortName": "mount_acog_trijicon_rm35", + "Description": "mount_acog_trijicon_rm35", + "Weight": 0.02, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_g36_hk_magwell_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "55d4887d4bdc2d962f8b4570", + "61840bedd92c473c77021635", + "61840d85568c120fdd2962a5", + "5c05413a0db834001c390617", + "5c6d450c2e221600114c997d", + "5c6d42cb2e2216000e69d7d1", + "59c1383d86f774290a37e0ca", + "5aaa5e60e5b5b000140293d6", + "5448c1d04bdc2dff2f8b4569", + "5aaa5dfee5b5b000140293d3", + "5d1340b3d7ad1a0b52682ed7", + "544a378f4bdc2d30388b4567", + "5d1340bdd7ad1a0e8d245aab", + "55802d5f4bdc2dac148b458e", + "5d1340cad7ad1a0b0b249869", + "5c6592372e221600133e47d7", + "544a37c44bdc2d25388b4567", + "5c6d46132e221601da357d56" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0.5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "5c471c2d2e22164bef5d077f": { + "_id": "5c471c2d2e22164bef5d077f", + "_name": "mount_svd_izhmash_svd_s_lower_band_std", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_burris_ar_p_e_p_r_30mm", + "ShortName": "mount_all_burris_ar_p_e_p_r_30mm", + "Description": "mount_all_burris_ar_p_e_p_r_30mm", + "Weight": 0.246, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_svd_izhmash_svd_s_lower_band_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_handguard", + "_id": "5c471e662e22161b267d9bd0", + "_parent": "5c471c2d2e22164bef5d077f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5e5699df2161e06ac158df6f", + "5e56991336989c75ab4f03f6", + "5c471c6c2e221602b66cd9ae" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5c47256b2e221602b3137e84", + "_parent": "5c471c2d2e22164bef5d077f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649d9a14bdc2d79388b4580", + "5c471b7e2e2216152006e46c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "641dc35e19604f20c800be18": { + "_id": "641dc35e19604f20c800be18", + "_name": "mount_svt40_toz_tokarev_pu_base", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_acog_trijicon_rm35", + "ShortName": "mount_acog_trijicon_rm35", + "Description": "mount_acog_trijicon_rm35", + "Weight": 0.02, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_svt40_toz_tokarev_pu_base.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "641dc35e19604f20c800be19", + "_parent": "641dc35e19604f20c800be18", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b3f7c1c5acfc40dc5296b1d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "5b8403a086f7747ff856f4e2": { + "_id": "5b8403a086f7747ff856f4e2", + "_name": "mount_hex_hexagon_medium_red", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_hex_hexagon_medium", + "ShortName": "mount_hex_hexagon_medium", + "Description": "mount_hex_hexagon_medium", + "Weight": 0.075, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_hex_hexagon_medium_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5b8403a086f7747ff856f4e4", + "_parent": "5b8403a086f7747ff856f4e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "648067db042be0705c0b3009", + "64807a29e5ffe165600abc97", + "64806bdd26c80811d408d37a", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5b3b6dc75acfc47a8773fb1e": { + "_id": "5b3b6dc75acfc47a8773fb1e", + "_name": "mount_all_armasight_un_nv_ir_qd_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_trijicon_rm33mount_all_armasight_un_nv_ir_qd_mount", + "ShortName": "mount_all_armasight_un_nv_ir_qd_mount", + "Description": "mount_all_armasight_un_nv_ir_qd_mount", + "Weight": 0.017, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_armasight_un_nv_ir_qd_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5b3b6dc75acfc47a8773fb20", + "_parent": "5b3b6dc75acfc47a8773fb1e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b3b6e495acfc4330140bd88" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, "622f039199f4ea1a4d6c9a17": { "_id": "622f039199f4ea1a4d6c9a17", "_name": "mount_g36_hk_magwell_ar15_conversion", @@ -13521,1244 +19785,15 @@ }, "_proto": "5649a2464bdc2d91118b45a8" }, - "5a27bad7c4a282000b15184b": { - "_id": "5a27bad7c4a282000b15184b", - "_name": "mount_sr1mp_tochmash_std_4_rail", + "5d7b6bafa4b93652786f4c76": { + "_id": "5d7b6bafa4b93652786f4c76", + "_name": "mount_57_fn_mk2_rmr_dovetail_mount", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_sr1mp_tochmash_std_4_rail", - "ShortName": "mount_sr1mp_tochmash_std_4_rail", - "Description": "mount_sr1mp_tochmash_std_4_rail", - "Weight": 0.04, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_sr1mp_tochmash_std_4_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical_000", - "_id": "5a27bad7c4a282000b15184c", - "_parent": "5a27bad7c4a282000b15184b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5a27bad7c4a282000b15184d", - "_parent": "5a27bad7c4a282000b15184b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a27b3d0c4a282000d721ec1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "5a27bb66c4a28200741e1e56", - "_parent": "5a27bad7c4a282000b15184b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "5a27bb70c4a28232996e3c76", - "_parent": "5a27bad7c4a282000b15184b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5a27bb79c4a282000e496f7b", - "_parent": "5a27bad7c4a282000b15184b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "584984812459776a704a82a6", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "622b3d5cf9cfc87d675d2de9": { - "_id": "622b3d5cf9cfc87d675d2de9", - "_name": "mount_g36_hk_extendable_folding_sight", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_m14_ultimak_m8_forward_optic_mount", - "ShortName": "mount_m14_ultimak_m8_forward_optic_mount", - "Description": "mount_m14_ultimak_m8_forward_optic_mount", - "Weight": 0.453, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_g36_hk_extendable_folding_sight.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "622b3d5cf9cfc87d675d2deb", - "_parent": "622b3d5cf9cfc87d675d2de9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "626bb8532c923541184624b4", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "62811f461d5df4475f46a332", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "622b3d5cf9cfc87d675d2dec", - "_parent": "622b3d5cf9cfc87d675d2de9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "622b4b705066e61cac73a756", - "_parent": "622b3d5cf9cfc87d675d2de9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "591ee00d86f774592f7b841e": { - "_id": "591ee00d86f774592f7b841e", - "_name": "mount_dovetail_aksion_kobra", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_dovetail_aksion_kobra", - "ShortName": "mount_dovetail_aksion_kobra", - "Description": "mount_dovetail_aksion_kobra", - "Weight": 0.043, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_dovetail_aksion_kobra.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "591ee00d86f774592f7b841f", - "_parent": "591ee00d86f774592f7b841e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "626bb8532c923541184624b4", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "591ee09186f77460a130cccc", - "_parent": "591ee00d86f774592f7b841e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": true, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "5fc5396e900b1d5091531e72": { - "_id": "5fc5396e900b1d5091531e72", - "_name": "mount_ump_hk_side_rail_std", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_ump_hk_side_rail_std", - "ShortName": "mount_ump_hk_side_rail_std", - "Description": "mount_ump_hk_side_rail_std", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_ump_hk_side_rail_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5fc5396e900b1d5091531e74", - "_parent": "5fc5396e900b1d5091531e72", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "58d2664f86f7747fec5834f6": { - "_id": "58d2664f86f7747fec5834f6", - "_name": "mount_all_leupold_deltapoint_weaver", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_leupold_deltapoint_weaver", - "ShortName": "mount_all_leupold_deltapoint_weaver", - "Description": "mount_all_leupold_deltapoint_weaver", - "Weight": 0.045, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_leupold_deltapoint_weaver.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "58d2664f86f7747fec5834f7", - "_parent": "58d2664f86f7747fec5834f6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "58d268fc86f774111273f8c2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "5cdeaca5d7f00c00b61c4b70": { - "_id": "5cdeaca5d7f00c00b61c4b70", - "_name": "mount_m700_magpul_pro_700_inline_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_m700_abarms_mod_x_scope_mount_rail", - "ShortName": "mount_m700_abarms_mod_x_scope_mount_rail", - "Description": "mount_m700_abarms_mod_x_scope_mount_rail", - "Weight": 0.28, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_m700_magpul_pro_700_inline_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5947db3f86f77447880cf76f", - "57486e672459770abd687134", - "576fd4ec2459777f0b518431", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "57acb6222459771ec34b5cb0" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical_000", - "_id": "5cdeaf21d7f00c000d36bb0f", - "_parent": "5cdeaca5d7f00c00b61c4b70", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5cdeaf5ed7f00c000d36bb11", - "_parent": "5cdeaca5d7f00c00b61c4b70", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5f2aa49f9b44de6b1b4e68d4": { - "_id": "5f2aa49f9b44de6b1b4e68d4", - "_name": "mount_rfb_ket_tec_rfb_scope_mount_std", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_rfb_ket_tec_rfb_scope_mount_std", - "ShortName": "mount_rfb_ket_tec_rfb_scope_mount_std", - "Description": "mount_rfb_ket_tec_rfb_scope_mount_std", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_rfb_ket_tec_rfb_scope_mount_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5947db3f86f77447880cf76f", - "57486e672459770abd687134", - "576fd4ec2459777f0b518431", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "57acb6222459771ec34b5cb0" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5f2aa49f9b44de6b1b4e68d6", - "_parent": "5f2aa49f9b44de6b1b4e68d4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5f2aa49f9b44de6b1b4e68d7", - "_parent": "5f2aa49f9b44de6b1b4e68d4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61817865d3a39d50044c13a4", - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5f3299579f54ae5b29276e19", - "_parent": "5f2aa49f9b44de6b1b4e68d4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5b3a08b25acfc4001754880c": { - "_id": "5b3a08b25acfc4001754880c", - "_name": "mount_p226_sig_sauer_bridge_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_p226_sig_sauer_bridge_mount", - "ShortName": "mount_p226_sig_sauer_bridge_mount", - "Description": "mount_p226_sig_sauer_bridge_mount", + "Name": "mount_57_fn_mk2_rmr_dovetail_mount", + "ShortName": "mount_57_fn_mk2_rmr_dovetail_mount", + "Description": "mount_57_fn_mk2_rmr_dovetail_mount", "Weight": 0.12, "BackgroundColor": "blue", "Width": 1, @@ -14766,7 +19801,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_p226_sig_sauer_bridge_mount.bundle", + "path": "assets/content/items/mods/mounts/mount_57_fn_mk2_rmr_dovetail_mount.bundle", "rcid": "" }, "UsePrefab": { @@ -14814,1601 +19849,14 @@ "Slots": [ { "_name": "mod_scope", - "_id": "5b3a08b25acfc4001754880e", - "_parent": "5b3a08b25acfc4001754880c", + "_id": "5d7b6bb0a4b93652786f4c78", + "_parent": "5d7b6bafa4b93652786f4c76", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5b3a08b25acfc4001754880f", - "_parent": "5b3a08b25acfc4001754880c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "6086b5392535c57a13424d70": { - "_id": "6086b5392535c57a13424d70", - "_name": "mount_cust_custom_guns_short_rail_section", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_cust_custom_guns_short_rail_section", - "ShortName": "mount_cust_custom_guns_short_rail_section", - "Description": "mount_cust_custom_guns_short_rail_section", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_cust_custom_guns_short_rail_section.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "6086b5392535c57a13424d72", - "_parent": "6086b5392535c57a13424d70", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5a966ec8a2750c00171b3f36": { - "_id": "5a966ec8a2750c00171b3f36", - "_name": "mount_mp5_bt_mounting_rail_nar_low_profile_long", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_mp5_bt_mounting_rail_nar_low_profile_long", - "ShortName": "mount_mp5_bt_mounting_rail_nar_low_profile_long", - "Description": "mount_mp5_bt_mounting_rail_nar_low_profile_long", - "Weight": 0.223, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_mp5_bt_mounting_rail_nar_low_profile_long.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5926d2be86f774134d668e4e" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5a966ec8a2750c00171b3f38", - "_parent": "5a966ec8a2750c00171b3f36", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1.5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "638db77630c4240f9e06f8b6": { - "_id": "638db77630c4240f9e06f8b6", - "_name": "mount_dovetail_sag_bit_bracket", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_dovetail_sag_svd_low_sidemount", - "ShortName": "mount_dovetail_sag_svd_low_sidemount", - "Description": "mount_dovetail_sag_svd_low_sidemount", - "Weight": 0.075, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_dovetail_sag_bit_bracket.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "5d2c76ed48f03532f2136169", - "5d2c770c48f0354b4a07c100", - "5d2c772c48f0355d95672c25", - "5649af884bdc2d1b2b8b4589", - "5dff8db859400025ea5150d4", - "5dfcd0e547101c39625f66f9", - "5827272a24597748c74bdeea", - "59985a6c86f77414ec448d17", - "5a957c3fa2750c00137fa5f7", - "5f6331e097199b7db2128dc2", - "5e569a0156edd02abe09f27d" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "638db77630c4240f9e06f8b7", - "_parent": "638db77630c4240f9e06f8b6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "5a1ead28fcdbcb001912fa9f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -0.5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": true, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5a27b281c4a28200741e1e52": { - "_id": "5a27b281c4a28200741e1e52", - "_name": "mount_sr1mp_tochmash_std_1_rail", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_sr1mp_tochmash_std_1_rail", - "ShortName": "mount_sr1mp_tochmash_std_1_rail", - "Description": "mount_sr1mp_tochmash_std_1_rail", - "Weight": 0.04, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_sr1mp_tochmash_std_1_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical_000", - "_id": "5a27b281c4a28200741e1e53", - "_parent": "5a27b281c4a28200741e1e52", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5a27b35cc4a28232996e3c73", - "_parent": "5a27b281c4a28200741e1e52", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a27b3d0c4a282000d721ec1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "63d114019e35b334d82302f7": { - "_id": "63d114019e35b334d82302f7", - "_name": "mount_dovetail_sag_ak_sidemount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_dovetail_sag_svd_low_sidemount", - "ShortName": "mount_dovetail_sag_svd_low_sidemount", - "Description": "mount_dovetail_sag_svd_low_sidemount", - "Weight": 0.165, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_dovetail_sag_ak_sidemount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [ - "5e569a0156edd02abe09f27d", - "6113d6c3290d254f5e6b27db", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5dff8db859400025ea5150d4", - "6389f1dfc879ce63f72fc43e", - "5d2c770c48f0354b4a07c100", - "5649af884bdc2d1b2b8b4589", - "5d2c76ed48f03532f2136169", - "5649d9a14bdc2d79388b4580", - "5dfcd0e547101c39625f66f9", - "5827272a24597748c74bdeea", - "5a957c3fa2750c00137fa5f7", - "5f6331e097199b7db2128dc2", - "5d2c772c48f0355d95672c25", - "58272b392459774b4c7b3ccd", - "5f63418ef5750b524b45f116", - "58272b842459774abc128d50" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "63d114019e35b334d82302f8", - "_parent": "63d114019e35b334d82302f7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "64785e7c19d732620e045e15", - "6478641c19d732620e045e17", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": true, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5fce0f9b55375d18a253eff2": { - "_id": "5fce0f9b55375d18a253eff2", - "_name": "mount_vector_kriss_side_rail", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_ump_hk_side_rail_std", - "ShortName": "mount_ump_hk_side_rail_std", - "Description": "mount_ump_hk_side_rail_std", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_vector_kriss_side_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5fce0f9b55375d18a253eff4", - "_parent": "5fce0f9b55375d18a253eff2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5a37ca54c4a282000d72296a": { - "_id": "5a37ca54c4a282000d72296a", - "_name": "mount_all_jp_enterprises_ftsm_30mm", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_jp_enterprises_ftsm_30mm", - "ShortName": "mount_all_jp_enterprises_ftsm_30mm", - "Description": "mount_all_jp_enterprises_ftsm_30mm", - "Weight": 0.194, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_jp_enterprises_ftsm_30mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 1, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope_000", - "_id": "5a37ce4ac4a282000b1521c9", - "_parent": "5a37ca54c4a282000d72296a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b2388675acfc4771e1be0be", - "5b3b99475acfc432ff4dcbee", - "5a37cb10c4a282329a73b4e7", - "57c5ac0824597754771e88a9", - "618ba27d9008e4636a67f61d", - "617151c1d92c473c770214ab", - "6567e7681265c8a131069b0f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope_001", - "_id": "5a37ce53c4a282000d72296e", - "_parent": "5a37ca54c4a282000d72296a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "58d268fc86f774111273f8c2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "5cc7015ae4a949001152b4c6": { - "_id": "5cc7015ae4a949001152b4c6", - "_name": "mount_p90_fn_receiver_top_rail_std", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.27, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_p90_fn_receiver_top_rail_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5cc83b46d7f00c000d3a6b5e", - "_parent": "5cc7015ae4a949001152b4c6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5c5952732e2216398b5abda2", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "626bb8532c923541184624b4", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5cc83b50d7f00c000e257555", - "_parent": "5cc7015ae4a949001152b4c6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5cc83b5dd7f00c000f5f5edb", - "_parent": "5cc7015ae4a949001152b4c6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61817865d3a39d50044c13a4", - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5c1cdd302e221602b3137250": { - "_id": "5c1cdd302e221602b3137250", - "_name": "mount_all_kiba_compact_scope_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_trijicon_ta51", - "ShortName": "mount_all_trijicon_ta51", - "Description": "mount_all_trijicon_ta51", - "Weight": 0.11, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_primary_arms_compact_scope_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5c1cdd302e221602b3137252", - "_parent": "5c1cdd302e221602b3137250", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c1cdd512e22161b267d91ae", - "5c05293e0db83400232fff80", - "5c052a900db834001a66acbd", - "59db7e1086f77448be30ddf3" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "5cc7012ae4a949001252b43e": { - "_id": "5cc7012ae4a949001252b43e", - "_name": "mount_p90_fn_effen_90_side_rail", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_p90_fn_effen_90_side_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5cc7012ae4a949001252b440", - "_parent": "5cc7012ae4a949001252b43e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "577d128124597739d65d0e56": { - "_id": "577d128124597739d65d0e56", - "_name": "mount_all_burris_fast_fire_weaver", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_burris_fast_fire_weaver", - "ShortName": "mount_all_burris_fast_fire_weaver", - "Description": "mount_all_burris_fast_fire_weaver", - "Weight": 0.017, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_burris_fast_fire_weaver.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "577d13f724597739ba176c31", - "_parent": "577d128124597739d65d0e56", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "577d141e24597739c5255e01" + "5a32aa8bc4a2826c6e06d737" ] } ] @@ -16441,23 +19889,23 @@ }, "_proto": "5649a2464bdc2d91118b45a8" }, - "5df35ea9c41b2312ea3334d8": { - "_id": "5df35ea9c41b2312ea3334d8", - "_name": "mount_orsis_orsis_rail_section_long", + "646f6322f43d0c5d62063715": { + "_id": "646f6322f43d0c5d62063715", + "_name": "mount_all_zenit_kr2_gen_1", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.05, + "Name": "mount_all_aimpoint_h2_weaver", + "ShortName": "mount_all_aimpoint_h2_weaver", + "Description": "mount_all_aimpoint_h2_weaver", + "Weight": 0.036, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_orsis_orsis_rail_section_long.bundle", + "path": "assets/content/items/mods/mounts/mount_all_zenit_kr2_gen_1.bundle", "rcid": "" }, "UsePrefab": { @@ -16505,938 +19953,14 @@ "Slots": [ { "_name": "mod_tactical", - "_id": "5df35ea9c41b2312ea3334da", - "_parent": "5df35ea9c41b2312ea3334d8", + "_id": "646f6322f43d0c5d62063716", + "_parent": "646f6322f43d0c5d62063715", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5df35e970b92095fd441e4d2": { - "_id": "5df35e970b92095fd441e4d2", - "_name": "mount_t5000_orsis_scope_mount_rail_std", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_m700_abarms_mod_x_scope_mount_rail", - "ShortName": "mount_m700_abarms_mod_x_scope_mount_rail", - "Description": "mount_m700_abarms_mod_x_scope_mount_rail", - "Weight": 0.14, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_t5000_orsis_scope_mount_rail_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5947db3f86f77447880cf76f", - "57486e672459770abd687134", - "576fd4ec2459777f0b518431", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "57acb6222459771ec34b5cb0" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5df35e970b92095fd441e4d4", - "_parent": "5df35e970b92095fd441e4d2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5d133067d7ad1a33013f95b4": { - "_id": "5d133067d7ad1a33013f95b4", - "_name": "mount_urx_kac_3_inch_rail_section", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_urx_kac_3_inch_rail_section", - "ShortName": "mount_urx_kac_3_inch_rail_section", - "Description": "mount_urx_kac_3_inch_rail_section", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_urx_kac_3_inch_rail_section.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5d133067d7ad1a33013f95b6", - "_parent": "5d133067d7ad1a33013f95b4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5addc00b5acfc4001669f144": { - "_id": "5addc00b5acfc4001669f144", - "_name": "mount_m14_vltor_casv_14_rail", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_m14_vltor_casv_14_rail", - "ShortName": "mount_m14_vltor_casv_14_rail", - "Description": "mount_m14_vltor_casv_14_rail", - "Weight": 0.096, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_m14_vltor_casv_14_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope_000", - "_id": "5addc46d5acfc4001a5fc58f", - "_parent": "5addc00b5acfc4001669f144", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope_001", - "_id": "5addc47e5acfc400185c28f0", - "_parent": "5addc00b5acfc4001669f144", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5ade06285acfc40015621dc1", - "_parent": "5addc00b5acfc4001669f144", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5ade06625acfc408fb139834", - "_parent": "5addc00b5acfc4001669f144", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be4575acfc400161d0832", - "5b7be4645acfc400170e2dcc" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5ade06715acfc4001a5fc645", - "_parent": "5addc00b5acfc4001669f144", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be4575acfc400161d0832", - "5b7be4645acfc400170e2dcc" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "5a16b93dfcdbcbcae6687261": { - "_id": "5a16b93dfcdbcbcae6687261", - "_name": "nvg_norotos_dual_dovetail_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "nvg_norotos_dual_dovetail_mount", - "ShortName": "nvg_norotos_dual_dovetail_mount", - "Description": "nvg_norotos_dual_dovetail_mount", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/equipment/customizable/norotos_dual_dovetail/nvg_norotos_dual_dovetail_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_nvg", - "_id": "5a17e7e9fcdbcb0017581849", - "_parent": "5a16b93dfcdbcbcae6687261", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57235b6f24597759bf5a30f1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "62444cd3674028188b052799": { - "_id": "62444cd3674028188b052799", - "_name": "mount_g36_hk_side_rail_std", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_ump_hk_side_rail_std", - "ShortName": "mount_ump_hk_side_rail_std", - "Description": "mount_ump_hk_side_rail_std", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_g36_hk_side_rail_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "62444cd3674028188b05279b", - "_parent": "62444cd3674028188b052799", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6267c6396b642f77f56f5c1c", - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "626becf9582c3e319310b837", - "5cc9c20cd7f00c001336c65d", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "63fc449f5bd61c6cf3784a88": { - "_id": "63fc449f5bd61c6cf3784a88", - "_name": "mount_all_armasight_zeus_pro_qd_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_trijicon_rm33mount_all_armasight_un_nv_ir_qd_mount", - "ShortName": "mount_all_armasight_un_nv_ir_qd_mount", - "Description": "mount_all_armasight_un_nv_ir_qd_mount", - "Weight": 0.017, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_armasight_zeus_pro_qd_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [ - "55d5f46a4bdc2d1b198b4567", - "5ae30bad5acfc400185c2dc4" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "63fc449f5bd61c6cf3784a89", - "_parent": "63fc449f5bd61c6cf3784a88", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "63fc44e2429a8a166c7f61e6" + "646f62fee779812413011ab7" ] } ] @@ -17469,2592 +19993,6 @@ }, "_proto": "5649a2464bdc2d91118b45a8" }, - "61816df1d3a39d50044c139e": { - "_id": "61816df1d3a39d50044c139e", - "_name": "mount_mk16_fn_scar_bottom_rail_std", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_6_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_6_inch_rail_section", - "Description": "mount_keymod_strike_industries_6_inch_rail_section", - "Weight": 0.075, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_mk16_fn_scar_bottom_rail_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "61816df1d3a39d50044c13a0", - "_parent": "61816df1d3a39d50044c139e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "5a7dbfc1159bd40016548fde", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "61966e6818a3974e5e742806", - "_parent": "61816df1d3a39d50044c139e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61965d9058ef8c428c287e0d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5d024f5cd7ad1a04a067e91a": { - "_id": "5d024f5cd7ad1a04a067e91a", - "_name": "mount_kochetov_arbalet_patriot_k_w", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_ak_tactica_tula_10000", - "ShortName": "mount_ak_tactica_tula_10000", - "Description": "mount_ak_tactica_tula_10000", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_kochetov_arbalet_patriot_k_w.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5bc5a372d4351e44f824d17f", - "5bbdb811d4351e45020113c7" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5d024f5cd7ad1a04a067e91c", - "_parent": "5d024f5cd7ad1a04a067e91a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "64785e7c19d732620e045e15", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5addbfd15acfc40015621bde": { - "_id": "5addbfd15acfc40015621bde", - "_name": "mount_m14_amega_mounts_mini_scout_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_m14_amega_mounts_mini_scout_mount", - "ShortName": "mount_m14_amega_mounts_mini_scout_mount", - "Description": "mount_m14_amega_mounts_mini_scout_mount", - "Weight": 0.18, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_m14_amega_mounts_mini_scout_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5addbfd15acfc40015621be0", - "_parent": "5addbfd15acfc40015621bde", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5addc1045acfc4001669f148", - "_parent": "5addbfd15acfc40015621bde", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "5df35eb2b11454561e3923e2": { - "_id": "5df35eb2b11454561e3923e2", - "_name": "mount_orsis_orsis_rail_section_med", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_orsis_orsis_rail_section_med.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5df35eb2b11454561e3923e4", - "_parent": "5df35eb2b11454561e3923e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5b7be4645acfc400170e2dcc": { - "_id": "5b7be4645acfc400170e2dcc", - "_name": "mount_casv_vltor_4_inch_picatinny_rail_section", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.06, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_casv_vltor_4_inch_picatinny_rail_section.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5b7be4645acfc400170e2dce", - "_parent": "5b7be4645acfc400170e2dcc", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5ab24ef9e5b5b00fe93c9209": { - "_id": "5ab24ef9e5b5b00fe93c9209", - "_name": "mount_m1a_springfield_armory_socom_16_upper", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_m1a_springfield_armory_socom_16_upper", - "ShortName": "mount_m1a_springfield_armory_socom_16_upper", - "Description": "mount_m1a_springfield_armory_socom_16_upper", - "Weight": 0.096, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_m1a_springfield_armory_socom_16_upper.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5ab24ef9e5b5b00fe93c920b", - "_parent": "5ab24ef9e5b5b00fe93c9209", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15", - "644a3df63b0b6f03e101e065", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "5a789261c5856700186c65d3": { - "_id": "5a789261c5856700186c65d3", - "_name": "mount_12g_mesa_tactical_magazine_clamp", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_12g_mesa_tactical_magazine_clamp", - "ShortName": "mount_12g_mesa_tactical_magazine_clamp", - "Description": "mount_12g_mesa_tactical_magazine_clamp", - "Weight": 0.087, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_12g_mesa_tactical_magazine_clamp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical_000", - "_id": "5a789338c5856700137e6785", - "_parent": "5a789261c5856700186c65d3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "5a789345c58567001601718f", - "_parent": "5a789261c5856700186c65d3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "5c7d560b2e22160bc12c6139": { - "_id": "5c7d560b2e22160bc12c6139", - "_name": "mount_base_aimpoint_standart_spacer", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_base_aimpoint_h1_t1_spacer", - "ShortName": "mount_base_aimpoint_h1_t1_spacer", - "Description": "mount_base_aimpoint_h1_t1_spacer", - "Weight": 0.025, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_base_aimpoint_standart_spacer.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5c7d560b2e22160bc12c613b", - "_parent": "5c7d560b2e22160bc12c6139", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61659f79d92c473c770213ee", - "5c7d55de2e221644f31bff68" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "618a75c9a3884f56c957ca1b": { - "_id": "618a75c9a3884f56c957ca1b", - "_name": "mount_dovetail_npz_1p78_1_mount_std", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_dovetail_pilad_043_02", - "ShortName": "mount_dovetail_pilad_043_02", - "Description": "mount_dovetail_pilad_043_02", - "Weight": 0.04, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_dovetail_npz_1p78_1_mount_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "6113d6c3290d254f5e6b27db", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5dff8db859400025ea5150d4", - "5f6331e097199b7db2128dc2", - "5a957c3fa2750c00137fa5f7", - "5dfcd0e547101c39625f66f9", - "5d2c76ed48f03532f2136169", - "5d2c770c48f0354b4a07c100", - "5d2c772c48f0355d95672c25", - "5649af884bdc2d1b2b8b4589", - "59985a6c86f77414ec448d17" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "618a75c9a3884f56c957ca1d", - "_parent": "618a75c9a3884f56c957ca1b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "618a75f0bd321d49084cd399" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": true, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "5dff8db859400025ea5150d4": { - "_id": "5dff8db859400025ea5150d4", - "_name": "mount_dovetail_sag_svd_low_sidemount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_dovetail_sag_svd_low_sidemount", - "ShortName": "mount_dovetail_sag_svd_low_sidemount", - "Description": "mount_dovetail_sag_svd_low_sidemount", - "Weight": 0.165, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_dovetail_sag_svd_low_sidemount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5dff8db859400025ea5150d6", - "_parent": "5dff8db859400025ea5150d4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "587e08ee245977446b4410cf": { - "_id": "587e08ee245977446b4410cf", - "_name": "mount_sks_molot_op_sks_std", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_sks_molot_op_sks_std", - "ShortName": "mount_sks_molot_op_sks_std", - "Description": "mount_sks_molot_op_sks_std", - "Weight": 0.02, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_sks_molot_op_sks_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "587e08ee245977446b4410d0", - "_parent": "587e08ee245977446b4410cf", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "638db77630c4240f9e06f8b6", - "63d114019e35b334d82302f7", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "62ed1921b3608410ef5a2c04": { - "_id": "62ed1921b3608410ef5a2c04", - "_name": "mount_sr2m_tochmash_med_rail", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.06, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_sr2m_tochmash_med_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "62ed1921b3608410ef5a2c05", - "_parent": "62ed1921b3608410ef5a2c04", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5b3a337e5acfc4704b4a19a0", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5c6162682e22160010261a2b": { - "_id": "5c6162682e22160010261a2b", - "_name": "mount_toz-106_noname_dovetail_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_toz-106_noname_dovetail_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5c618c5b2e221600133e3dac", - "_parent": "5c6162682e22160010261a2b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c61627a2e22160012542c55" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "618b9643526131765025ab35": { - "_id": "618b9643526131765025ab35", - "_name": "mount_all_geissele_super_precision_30mm", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_jp_enterprises_ftsm_30mm", - "ShortName": "mount_all_jp_enterprises_ftsm_30mm", - "Description": "mount_all_jp_enterprises_ftsm_30mm", - "Weight": 0.194, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_geissele_super_precision_30mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5ae30bad5acfc400185c2dc4" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "618b9643526131765025ab37", - "_parent": "618b9643526131765025ab35", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b2388675acfc4771e1be0be", - "5b3b99475acfc432ff4dcbee", - "5a37cb10c4a282329a73b4e7", - "57c5ac0824597754771e88a9", - "618ba27d9008e4636a67f61d", - "617151c1d92c473c770214ab", - "6567e7681265c8a131069b0f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "618ba83fb766fe04084b015b", - "_parent": "618b9643526131765025ab35", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "618b9671d14d6d5ab879c5ea", - "618ba91477b82356f91ae0e8", - "618b9682a3884f56c957ca78", - "618ba92152ecee1505530bd3" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0.5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "5a398b75c4a282000a51a266": { - "_id": "5a398b75c4a282000a51a266", - "_name": "helmet_ops_core_picatinny_rail_adapter", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "helmet_ops_core_single_clamp_rail_adapter", - "ShortName": "helmet_ops_core_single_clamp_rail_adapter", - "Description": "helmet_ops_core_single_clamp_rail_adapter", - "Weight": 0.02, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/equipment/helmet_opscore_fast/item_equipment_helmet_opscore_picatinny_rail_adapter.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a16b7e1fcdbcb00165aa6c9" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount", - "_id": "5a398b8ac4a282fbd16a3866", - "_parent": "5a398b75c4a282000a51a266", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "56def37dd2720bec348b456a", - "560d657b4bdc2da74d8b4572", - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "626becf9582c3e319310b837", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "5b31163c5acfc400153b71cb": { - "_id": "5b31163c5acfc400153b71cb", - "_name": "mount_all_sig_romeo_4_base_weaver", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_sig_romeo_4_base_weaver", - "ShortName": "mount_all_sig_romeo_4_base_weaver", - "Description": "mount_all_sig_romeo_4_base_weaver", - "Weight": 0.015, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_sig_romeo_4_base_weaver.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5b31163c5acfc400153b71cd", - "_parent": "5b31163c5acfc400153b71cb", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61657230d92c473c770213d7", - "58d399e486f77442e0016fe7", - "5b3116595acfc40019476364" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "5a7b4900e899ef197b331a2a": { - "_id": "5a7b4900e899ef197b331a2a", - "_name": "mount_glock_um_tactical_um3_sight_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_glock_um_tactical_um3_sight_mount", - "ShortName": "mount_glock_um_tactical_um3_sight_mount", - "Description": "mount_glock_um_tactical_um3_sight_mount", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_glock_um_tactical_um3_sight_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [ - "59bffbb386f77435b379b9c2" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5a7b4900e899ef197b331a2c", - "_parent": "5a7b4900e899ef197b331a2a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5a7c10d7e899ef001433145f", - "_parent": "5a7b4900e899ef197b331a2a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "60785ce5132d4d12c81fd918": { - "_id": "60785ce5132d4d12c81fd918", - "_name": "mount_mp155_kalashnikov_ultima_top_rail", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_590_bat_rb7m", - "ShortName": "mount_590_bat_rb7m", - "Description": "mount_590_bat_rb7m", - "Weight": 0.45, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_mp155_kalashnikov_ultima_top_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "60785ce5132d4d12c81fd91a", - "_parent": "60785ce5132d4d12c81fd918", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "60785ce5132d4d12c81fd91c", - "_parent": "60785ce5132d4d12c81fd918", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "60785ce5132d4d12c81fd91d", - "_parent": "60785ce5132d4d12c81fd918", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "60785ce5132d4d12c81fd91f", - "_parent": "60785ce5132d4d12c81fd918", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "606f26752535c57a13424d22" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "60785ce5132d4d12c81fd920", - "_parent": "60785ce5132d4d12c81fd918", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "60785ce5132d4d12c81fd921", - "_parent": "60785ce5132d4d12c81fd918", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61817865d3a39d50044c13a4", - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.982, - "CoolFactor": 1.012 - }, - "_proto": "57a3459f245977764a01f703" - }, "5b7be4895acfc400170e2dd5": { "_id": "5b7be4895acfc400170e2dd5", "_name": "mount_m_lok_magpul_4,1_inch_picatinny_rail_section", @@ -20190,23 +20128,23 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, - "6567e751a715f85433025998": { - "_id": "6567e751a715f85433025998", - "_name": "mount_all_sig_alpha4_ultralight_30mm", + "6171407e50224f204c1da3c5": { + "_id": "6171407e50224f204c1da3c5", + "_name": "mount_all_recknagel_era_tac_one_piece_mount_30mm", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { "Name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", "ShortName": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", "Description": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "Weight": 0.19, + "Weight": 0.25, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_sig_alpha4_ultralight_30mm.bundle", + "path": "assets/content/items/mods/mounts/mount_all_recknagel_era_tac_one_piece_mount_30mm.bundle", "rcid": "" }, "UsePrefab": { @@ -20230,7 +20168,7 @@ "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, - "ExtraSizeUp": 0, + "ExtraSizeUp": 1, "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, @@ -20253,9 +20191,9 @@ "Grids": [], "Slots": [ { - "_name": "mod_scope", - "_id": "6567e751a715f85433025999", - "_parent": "6567e751a715f85433025998", + "_name": "mod_scope_000", + "_id": "6171407e50224f204c1da3c7", + "_parent": "6171407e50224f204c1da3c5", "_props": { "filters": [ { @@ -20275,6 +20213,58 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope_001", + "_id": "6171407e50224f204c1da3c8", + "_parent": "6171407e50224f204c1da3c5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "61605d88ffa6e502ac5e7eeb", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "61714b2467085e45ef140b2c", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope_002", + "_id": "6171407e50224f204c1da3c9", + "_parent": "6171407e50224f204c1da3c5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "61605d88ffa6e502ac5e7eeb", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "61714b2467085e45ef140b2c", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, @@ -20284,7 +20274,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": 0, "Velocity": 0, "RaidModdable": true, "ToolModdable": true, @@ -20300,23 +20290,23 @@ }, "_proto": "577d128124597739d65d0e56" }, - "5c0102b20db834001d23eebc": { - "_id": "5c0102b20db834001d23eebc", - "_name": "mount_rahg_remington_4_inch_rahg_rail_section", + "5b30bc285acfc47a8608615d": { + "_id": "5b30bc285acfc47a8608615d", + "_name": "mount_mk10_alexander_arms_10_inch_rail_section", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.07, + "Name": "mount_mk10_alexander_arms_10_inch_rail_section", + "ShortName": "mount_mk10_alexander_arms_10_inch_rail_section", + "Description": "mount_mk10_alexander_arms_10_inch_rail_section", + "Weight": 0.09, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_rahg_remington_4_inch_rahg_rail_section.bundle", + "path": "assets/content/items/mods/mounts/mount_mk10_alexander_arms_10_inch_rail_section.bundle", "rcid": "" }, "UsePrefab": { @@ -20364,8 +20354,8 @@ "Slots": [ { "_name": "mod_foregrip", - "_id": "5c0102b20db834001d23eebe", - "_parent": "5c0102b20db834001d23eebc", + "_id": "5b30bc285acfc47a8608615f", + "_parent": "5b30bc285acfc47a8608615d", "_props": { "filters": [ { @@ -20374,6 +20364,7 @@ "5c7fc87d2e221644f31c0298", "5cda9bcfd7f00c0c0b53e900", "59f8a37386f7747af3328f06", + "5a7dbfc1159bd40016548fde", "619386379fb0c665d5490dbe", "5c87ca002e221600114cb150", "588226d124597767ad33f787", @@ -20383,7 +20374,6 @@ "59fc48e086f77463b1118392", "5fce0cf655375d18a253eff0", "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", "5c791e872e2216001219c40a", "558032614bdc2de7118b4585", "58c157be86f77403c74b2bb6", @@ -20397,10 +20387,11 @@ "5c1bc5fb2e221602b1779b32", "5c1bc7432e221602b412949d", "5c1bc7752e221602b1779b34", - "64807a29e5ffe165600abc97", "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", "648067db042be0705c0b3009", "65169d5b30425317755f8e25", + "5b057b4f5acfc4771e1bd3e9", "655df24fdf80b12750626d0a", "655dccfdbdcc6b5df71382b6" ] @@ -20410,6 +20401,44 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5b30bda35acfc40dc5295771", + "_parent": "5b30bc285acfc47a8608615d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, @@ -20419,7 +20448,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, + "Ergonomics": -1, "Velocity": 0, "RaidModdable": true, "ToolModdable": true, @@ -20435,225 +20464,23 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, - "5bfebc530db834001d23eb65": { - "_id": "5bfebc530db834001d23eb65", - "_name": "mount_m700_weaver_extended_multi_slot_base", + "6269545d0e57f218e4548ca2": { + "_id": "6269545d0e57f218e4548ca2", + "_name": "mount_m_lok_magpul_offset_light_optic_mount", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_m700_weaver_extended_multi_slot_base", - "ShortName": "mount_m700_weaver_extended_multi_slot_base", - "Description": "mount_m700_weaver_extended_multi_slot_base", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_m700_weaver_extended_multi_slot_base.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5947db3f86f77447880cf76f", - "57486e672459770abd687134", - "576fd4ec2459777f0b518431", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "57acb6222459771ec34b5cb0" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5bfebc530db834001d23eb67", - "_parent": "5bfebc530db834001d23eb65", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5cf10c62d7f00c065b4220c0", - "_parent": "5bfebc530db834001d23eb65", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "61714b2467085e45ef140b2c": { - "_id": "61714b2467085e45ef140b2c", - "_name": "mount_all_recknagel_era_tac_aimpoint_t1_sunshade_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_aimpoint_h1_t1_weaver", - "ShortName": "mount_all_aimpoint_h1_t1_weaver", - "Description": "mount_all_aimpoint_h1_t1_weaver", - "Weight": 0.015, + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.037, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_recknagel_era_tac_aimpoint_t1_sunshade_mount.bundle", + "path": "assets/content/items/mods/mounts/mount_m_lok_magpul_offset_light_optic_mount.bundle", "rcid": "" }, "UsePrefab": { @@ -20683,9 +20510,7 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5ae30bad5acfc400185c2dc4" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -20702,15 +20527,28 @@ "Grids": [], "Slots": [ { - "_name": "mod_scope", - "_id": "61714b2467085e45ef140b2e", - "_parent": "61714b2467085e45ef140b2c", + "_name": "mod_tactical", + "_id": "6269545d0e57f218e4548ca4", + "_parent": "6269545d0e57f218e4548ca2", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "58d399e486f77442e0016fe7" + "5a800961159bd4315e3a1657", + "626becf9582c3e319310b837", + "5cc9c20cd7f00c001336c65d", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "57d17e212459775a1179a0f5", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" ] } ] @@ -20741,7 +20579,131 @@ "HeatFactor": 1, "CoolFactor": 1 }, - "_proto": "5649a2464bdc2d91118b45a8" + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5b7be4575acfc400161d0832": { + "_id": "5b7be4575acfc400161d0832", + "_name": "mount_casv_vltor_2_inch_picatinny_rail_section", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_casv_vltor_2_inch_picatinny_rail_section.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5b7be4575acfc400161d0834", + "_parent": "5b7be4575acfc400161d0832", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" }, "6388c5d19c00405f4717c0f0": { "_id": "6388c5d19c00405f4717c0f0", @@ -20879,288 +20841,6 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, - "5addbfe15acfc4001a5fc58b": { - "_id": "5addbfe15acfc4001a5fc58b", - "_name": "mount_m14_arms_18_low_profile_scope_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_m1a_springfield_armory_socom_16_upper", - "ShortName": "mount_m1a_springfield_armory_socom_16_upper", - "Description": "mount_m1a_springfield_armory_socom_16_upper", - "Weight": 0.22, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_m14_arms_18_low_profile_scope_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5addbffe5acfc4001714dfac", - "5addc00b5acfc4001669f144", - "5ab372a310e891001717f0d8" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5addbfe15acfc4001a5fc58d", - "_parent": "5addbfe15acfc4001a5fc58b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57a3459f245977764a01f703" - }, - "634f04d82e5def262d0b30c6": { - "_id": "634f04d82e5def262d0b30c6", - "_name": "mount_sks_toz_sks_rear_sight_block", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_sks_toz_sks_rear_sight_block", - "ShortName": "mount_sks_toz_sks_rear_sight_block", - "Description": "mount_sks_toz_sks_rear_sight_block", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_sks_toz_sks_rear_sight_block.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_gas_block", - "_id": "634f04d82e5def262d0b30c7", - "_parent": "634f04d82e5def262d0b30c6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "634f036a517ccc8a960fc746", - "634f02d7517ccc8a960fc744" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "634f04d82e5def262d0b30c8", - "_parent": "634f04d82e5def262d0b30c6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "574db213245977459a2f3f5d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, "5b7be46e5acfc400170e2dcf": { "_id": "5b7be46e5acfc400170e2dcf", "_name": "mount_casv_vltor_5_inch_picatinny_rail_section", @@ -21297,147 +20977,15 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, - "653931da5db71d30ab1d6296": { - "_id": "653931da5db71d30ab1d6296", - "_name": "mount_all_gbrs_hydra_micro_kit_fde", + "6086b5392535c57a13424d70": { + "_id": "6086b5392535c57a13424d70", + "_name": "mount_cust_custom_guns_short_rail_section", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_all_jp_enterprises_ftsm_30mm", - "ShortName": "mount_all_jp_enterprises_ftsm_30mm", - "Description": "mount_all_jp_enterprises_ftsm_30mm", - "Weight": 0.141, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_gbrs_hydra_micro_kit_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5ae30bad5acfc400185c2dc4" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "653931da5db71d30ab1d6297", - "_parent": "653931da5db71d30ab1d6296", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "653931da5db71d30ab1d6298", - "_parent": "653931da5db71d30ab1d6296", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61657230d92c473c770213d7", - "58d399e486f77442e0016fe7", - "5b3116595acfc40019476364", - "58d39b0386f77443380bf13c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "5b7be47f5acfc400170e2dd2": { - "_id": "5b7be47f5acfc400170e2dd2", - "_name": "mount_m_lok_magpul_2,5_inch_picatinny_rail_section", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Name": "mount_cust_custom_guns_short_rail_section", + "ShortName": "mount_cust_custom_guns_short_rail_section", + "Description": "mount_cust_custom_guns_short_rail_section", "Weight": 0.05, "BackgroundColor": "blue", "Width": 1, @@ -21445,7 +20993,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_m_lok_magpul_2,5_inch_picatinny_rail_section.bundle", + "path": "assets/content/items/mods/mounts/mount_cust_custom_guns_short_rail_section.bundle", "rcid": "" }, "UsePrefab": { @@ -21493,8 +21041,8 @@ "Slots": [ { "_name": "mod_tactical", - "_id": "5b7be47f5acfc400170e2dd4", - "_parent": "5b7be47f5acfc400170e2dd2", + "_id": "6086b5392535c57a13424d72", + "_parent": "6086b5392535c57a13424d70", "_props": { "filters": [ { @@ -21553,23 +21101,23 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, - "5addbfef5acfc400185c2857": { - "_id": "5addbfef5acfc400185c2857", - "_name": "mount_m14_leapers_utg_4_point_locking_deluxe_scope_mount", + "623c2f4242aee3103f1c44b7": { + "_id": "623c2f4242aee3103f1c44b7", + "_name": "mount_keymod_cnc_guns_medium_rail_section", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_m14_leapers_utg_4_point_locking_deluxe_scope_mount", - "ShortName": "mount_m14_leapers_utg_4_point_locking_deluxe_scope_mount", - "Description": "mount_m14_leapers_utg_4_point_locking_deluxe_scope_mount", - "Weight": 0.25, + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.07, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_m14_leapers_utg_4_point_locking_deluxe_scope_mount.bundle", + "path": "assets/content/items/mods/mounts/mount_keymod_cnc_guns_medium_rail_section.bundle", "rcid": "" }, "UsePrefab": { @@ -21587,7 +21135,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 5, - "ExamineExperience": 3, + "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -21599,12 +21147,7 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5addbffe5acfc4001714dfac", - "5addc00b5acfc4001669f144", - "5addc7005acfc4001669f275", - "5ab372a310e891001717f0d8" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -21621,80 +21164,35 @@ "Grids": [], "Slots": [ { - "_name": "mod_scope", - "_id": "5addbfef5acfc400185c2859", - "_parent": "5addbfef5acfc400185c2857", + "_name": "mod_tactical", + "_id": "623c2f4242aee3103f1c44b9", + "_parent": "623c2f4242aee3103f1c44b7", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245" + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "5a7b483fe899ef0016170d15", + "56def37dd2720bec348b456a", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" ] } ] @@ -21711,7 +21209,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -2, + "Ergonomics": 0, "Velocity": 0, "RaidModdable": true, "ToolModdable": true, @@ -21725,7 +21223,7 @@ "HeatFactor": 1, "CoolFactor": 1 }, - "_proto": "57a3459f245977764a01f703" + "_proto": "55f96d6f4bdc2d5f408b4578" }, "5bfebc5e0db834001a6694e5": { "_id": "5bfebc5e0db834001a6694e5", @@ -21960,23 +21458,23 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, - "628120dd308cb521f87a8fa1": { - "_id": "628120dd308cb521f87a8fa1", - "_name": "mount_keyslot_accuracy_international_adapter_kit_medium_rail_pb", + "634f05a21f9f536910079b56": { + "_id": "634f05a21f9f536910079b56", + "_name": "mount_sks_molot_sks_rear_sight_block", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_keymod_vltor_4_inch_casv_rail_section", - "ShortName": "mount_keymod_vltor_4_inch_casv_rail_section", - "Description": "mount_keymod_vltor_4_inch_casv_rail_section", - "Weight": 0.07, + "Name": "mount_sks_toz_sks_rear_sight_block", + "ShortName": "mount_sks_toz_sks_rear_sight_block", + "Description": "mount_sks_toz_sks_rear_sight_block", + "Weight": 0.25, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_keyslot_accuracy_international_adapter_kit_medium_rail_pb.bundle", + "path": "assets/content/items/mods/mounts/mount_sks_molot_sks_rear_sight_block.bundle", "rcid": "" }, "UsePrefab": { @@ -21993,8 +21491,8 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, + "LootExperience": 10, + "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -22005,7 +21503,7 @@ "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, + "CanRequireOnRagfair": true, "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -22023,35 +21521,34 @@ "Grids": [], "Slots": [ { - "_name": "mod_tactical_000", - "_id": "628120dd308cb521f87a8fa2", - "_parent": "628120dd308cb521f87a8fa1", + "_name": "mod_gas_block", + "_id": "634f05a21f9f536910079b57", + "_parent": "634f05a21f9f536910079b56", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "626becf9582c3e319310b837", - "5cc9c20cd7f00c001336c65d", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "6267c6396b642f77f56f5c1c", - "57d17e212459775a1179a0f5", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" + "634f036a517ccc8a960fc746", + "634f02d7517ccc8a960fc744" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "634f05a21f9f536910079b58", + "_parent": "634f05a21f9f536910079b56", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "574db213245977459a2f3f5d" ] } ] @@ -22068,7 +21565,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, + "Ergonomics": -1, "Velocity": 0, "RaidModdable": true, "ToolModdable": true, @@ -22082,7 +21579,7 @@ "HeatFactor": 1, "CoolFactor": 1 }, - "_proto": "55f96d6f4bdc2d5f408b4578" + "_proto": "577d128124597739d65d0e56" }, "59e0bdb186f774156f04ce82": { "_id": "59e0bdb186f774156f04ce82", @@ -22208,146 +21705,23 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, - "634f05a21f9f536910079b56": { - "_id": "634f05a21f9f536910079b56", - "_name": "mount_sks_molot_sks_rear_sight_block", + "628120dd308cb521f87a8fa1": { + "_id": "628120dd308cb521f87a8fa1", + "_name": "mount_keyslot_accuracy_international_adapter_kit_medium_rail_pb", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_sks_toz_sks_rear_sight_block", - "ShortName": "mount_sks_toz_sks_rear_sight_block", - "Description": "mount_sks_toz_sks_rear_sight_block", - "Weight": 0.25, + "Name": "mount_keymod_vltor_4_inch_casv_rail_section", + "ShortName": "mount_keymod_vltor_4_inch_casv_rail_section", + "Description": "mount_keymod_vltor_4_inch_casv_rail_section", + "Weight": 0.07, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_sks_molot_sks_rear_sight_block.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_gas_block", - "_id": "634f05a21f9f536910079b57", - "_parent": "634f05a21f9f536910079b56", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "634f036a517ccc8a960fc746", - "634f02d7517ccc8a960fc744" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "634f05a21f9f536910079b58", - "_parent": "634f05a21f9f536910079b56", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "574db213245977459a2f3f5d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "5a9d6d13a2750c00164f6b03": { - "_id": "5a9d6d13a2750c00164f6b03", - "_name": "mount_keymod_strike_industries_6_inch_rail_section", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_6_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_6_inch_rail_section", - "Description": "mount_keymod_strike_industries_6_inch_rail_section", - "Weight": 0.075, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_keymod_strike_industries_6_inch_rail_section.bundle", + "path": "assets/content/items/mods/mounts/mount_keyslot_accuracy_international_adapter_kit_medium_rail_pb.bundle", "rcid": "" }, "UsePrefab": { @@ -22394,145 +21768,9 @@ "Grids": [], "Slots": [ { - "_name": "mod_foregrip", - "_id": "5a9d6d13a2750c00164f6b05", - "_parent": "5a9d6d13a2750c00164f6b03", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "5a7dbfc1159bd40016548fde", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5b4736a986f774040571e998": { - "_id": "5b4736a986f774040571e998", - "_name": "mount_qars_troy_qars_3,2_inch_rail_section", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_qars_troy_qars_3,2_inch_rail_section", - "ShortName": "mount_qars_troy_qars_3,2_inch_rail_section", - "Description": "mount_qars_troy_qars_3,2_inch_rail_section", - "Weight": 0.045, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_qars_troy_qars_3,2_inch_rail_section.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5b4736a986f774040571e99a", - "_parent": "5b4736a986f774040571e998", + "_name": "mod_tactical_000", + "_id": "628120dd308cb521f87a8fa2", + "_parent": "628120dd308cb521f87a8fa1", "_props": { "filters": [ { @@ -22542,7 +21780,10 @@ "57fd23e32459772d0805bcf1", "544909bb4bdc2d6f028b4577", "5c06595c0db834001a66af6c", + "626becf9582c3e319310b837", "5cc9c20cd7f00c001336c65d", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", "5d2369418abbc306c62e0c80", "5b07dd285acfc4001754240d", "56def37dd2720bec348b456a", @@ -22552,11 +21793,8 @@ "560d657b4bdc2da74d8b4572", "5b3a337e5acfc4704b4a19a0", "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", + "57d17e212459775a1179a0f5", "644a3df63b0b6f03e101e065", "646f6322f43d0c5d62063715" ] @@ -22591,23 +21829,23 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, - "6171407e50224f204c1da3c5": { - "_id": "6171407e50224f204c1da3c5", - "_name": "mount_all_recknagel_era_tac_one_piece_mount_30mm", + "618ba92152ecee1505530bd3": { + "_id": "618ba92152ecee1505530bd3", + "_name": "mount_geissele_reptilia_rof_90_trijicon_30mm_ddc", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "ShortName": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "Description": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "Weight": 0.25, + "Name": "mount_acog_trijicon_rm35", + "ShortName": "mount_acog_trijicon_rm35", + "Description": "mount_acog_trijicon_rm35", + "Weight": 0.02, "BackgroundColor": "blue", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_recknagel_era_tac_one_piece_mount_30mm.bundle", + "path": "assets/content/items/mods/mounts/mount_geissele_reptilia_rof_90_trijicon_30mm_ddc.bundle", "rcid": "" }, "UsePrefab": { @@ -22625,13 +21863,13 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 5, - "ExamineExperience": 3, + "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, - "ExtraSizeUp": 1, + "ExtraSizeUp": 0, "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, @@ -22654,73 +21892,15 @@ "Grids": [], "Slots": [ { - "_name": "mod_scope_000", - "_id": "6171407e50224f204c1da3c7", - "_parent": "6171407e50224f204c1da3c5", + "_name": "mod_scope", + "_id": "618ba92152ecee1505530bd5", + "_parent": "618ba92152ecee1505530bd3", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5b2388675acfc4771e1be0be", - "5b3b99475acfc432ff4dcbee", - "5a37cb10c4a282329a73b4e7", - "57c5ac0824597754771e88a9", - "618ba27d9008e4636a67f61d", - "617151c1d92c473c770214ab", - "6567e7681265c8a131069b0f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope_001", - "_id": "6171407e50224f204c1da3c8", - "_parent": "6171407e50224f204c1da3c5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "61605d88ffa6e502ac5e7eeb", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "61714b2467085e45ef140b2c", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope_002", - "_id": "6171407e50224f204c1da3c9", - "_parent": "6171407e50224f204c1da3c5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "61605d88ffa6e502ac5e7eeb", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "61714b2467085e45ef140b2c", - "5a33b2c9c4a282000c5a9511" + "5a32aa8bc4a2826c6e06d737" ] } ] @@ -22751,7 +21931,7 @@ "HeatFactor": 1, "CoolFactor": 1 }, - "_proto": "577d128124597739d65d0e56" + "_proto": "5649a2464bdc2d91118b45a8" }, "5cde7b43d7f00c000d36b93e": { "_id": "5cde7b43d7f00c000d36b93e", @@ -22958,6 +22138,429 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, + "5c61627a2e22160012542c55": { + "_id": "5c61627a2e22160012542c55", + "_name": "mount_dovetail_noname_toz106_angled_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_ak_tactica_tula_10000", + "ShortName": "mount_ak_tactica_tula_10000", + "Description": "mount_ak_tactica_tula_10000", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_dovetail_noname_toz106_angled_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5947db3f86f77447880cf76f", + "57486e672459770abd687134", + "576fd4ec2459777f0b518431", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "57acb6222459771ec34b5cb0" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5c61627a2e22160012542c57", + "_parent": "5c61627a2e22160012542c55", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "6567e751a715f85433025998": { + "_id": "6567e751a715f85433025998", + "_name": "mount_all_sig_alpha4_ultralight_30mm", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "ShortName": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "Description": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "Weight": 0.19, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_sig_alpha4_ultralight_30mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "6567e751a715f85433025999", + "_parent": "6567e751a715f85433025998", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b2388675acfc4771e1be0be", + "5b3b99475acfc432ff4dcbee", + "5a37cb10c4a282329a73b4e7", + "57c5ac0824597754771e88a9", + "618ba27d9008e4636a67f61d", + "617151c1d92c473c770214ab", + "6567e7681265c8a131069b0f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "5a9d6d13a2750c00164f6b03": { + "_id": "5a9d6d13a2750c00164f6b03", + "_name": "mount_keymod_strike_industries_6_inch_rail_section", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_6_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_6_inch_rail_section", + "Description": "mount_keymod_strike_industries_6_inch_rail_section", + "Weight": 0.075, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_keymod_strike_industries_6_inch_rail_section.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5a9d6d13a2750c00164f6b05", + "_parent": "5a9d6d13a2750c00164f6b03", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "5a7dbfc1159bd40016548fde", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, "618b9671d14d6d5ab879c5ea": { "_id": "618b9671d14d6d5ab879c5ea", "_name": "mount_geissele_geissele_super_precision_top_ring_cap_30mm", @@ -23043,6 +22646,96 @@ }, "_proto": "5649a2464bdc2d91118b45a8" }, + "5926d40686f7740f152b6b7e": { + "_id": "5926d40686f7740f152b6b7e", + "_name": "stock_mp5_hk_a3_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_mp5_hk_a3_std", + "ShortName": "stock_mp5_hk_a3_std", + "Description": "stock_mp5_hk_a3_std", + "Weight": 0.43, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_mp5_hk_a3_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -23, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, "5b39f8db5acfc40016387a1b": { "_id": "5b39f8db5acfc40016387a1b", "_name": "stock_ar15_vltor_emod", @@ -23222,23 +22915,23 @@ "DurabilityBurnModificator": 1 } }, - "5b30bc285acfc47a8608615d": { - "_id": "5b30bc285acfc47a8608615d", - "_name": "mount_mk10_alexander_arms_10_inch_rail_section", + "5bfebc530db834001d23eb65": { + "_id": "5bfebc530db834001d23eb65", + "_name": "mount_m700_weaver_extended_multi_slot_base", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_mk10_alexander_arms_10_inch_rail_section", - "ShortName": "mount_mk10_alexander_arms_10_inch_rail_section", - "Description": "mount_mk10_alexander_arms_10_inch_rail_section", + "Name": "mount_m700_weaver_extended_multi_slot_base", + "ShortName": "mount_m700_weaver_extended_multi_slot_base", + "Description": "mount_m700_weaver_extended_multi_slot_base", "Weight": 0.09, "BackgroundColor": "blue", - "Width": 1, + "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_mk10_alexander_arms_10_inch_rail_section.bundle", + "path": "assets/content/items/mods/mounts/mount_m700_weaver_extended_multi_slot_base.bundle", "rcid": "" }, "UsePrefab": { @@ -23268,7 +22961,14 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [], + "ConflictingItems": [ + "5947db3f86f77447880cf76f", + "57486e672459770abd687134", + "576fd4ec2459777f0b518431", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "57acb6222459771ec34b5cb0" + ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -23285,47 +22985,81 @@ "Grids": [], "Slots": [ { - "_name": "mod_foregrip", - "_id": "5b30bc285acfc47a8608615f", - "_parent": "5b30bc285acfc47a8608615d", + "_name": "mod_scope", + "_id": "5bfebc530db834001d23eb67", + "_parent": "5bfebc530db834001d23eb65", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "5a7dbfc1159bd40016548fde", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "5b057b4f5acfc4771e1bd3e9", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245" ] } ] @@ -23335,35 +23069,22 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_tactical", - "_id": "5b30bda35acfc40dc5295771", - "_parent": "5b30bc285acfc47a8608615d", + "_name": "mod_sight_rear", + "_id": "5cf10c62d7f00c065b4220c0", + "_parent": "5bfebc530db834001d23eb65", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347" ] } ] @@ -23380,9 +23101,9 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": 0, "Velocity": 0, - "RaidModdable": true, + "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -23486,405 +23207,23 @@ }, "_proto": "56083be64bdc2d20478b456f" }, - "612781056f3d944a17348d60": { - "_id": "612781056f3d944a17348d60", - "_name": "stock_mc255_ckib_255_std_wood", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak74_izhmash_ak74_std_wood", - "ShortName": "stock_ak74_izhmash_ak74_std_wood", - "Description": "stock_ak74_izhmash_ak74_std_wood", - "Weight": 0.45, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mc255_ckib_255_std_wood.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -23, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 0.3, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "61713cc4d8e3106d9806c109": { - "_id": "61713cc4d8e3106d9806c109", - "_name": "mount_all_recknagel_era_tac_one_piece_mount_34mm", + "6267c6396b642f77f56f5c1c": { + "_id": "6267c6396b642f77f56f5c1c", + "_name": "mount_all_dd_offset_flashlight_mount_25mm", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "ShortName": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "Description": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_recknagel_era_tac_one_piece_mount_34mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 1, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope_000", - "_id": "61713cc4d8e3106d9806c10b", - "_parent": "61713cc4d8e3106d9806c109", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "56ea70acd2720b844b8b4594", - "5aa66be6e5b5b0214e506e97", - "61714eec290d254f5e6b2ffc", - "62850c28da09541f43158cca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope_001", - "_id": "61713cc4d8e3106d9806c10c", - "_parent": "61713cc4d8e3106d9806c109", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "61605d88ffa6e502ac5e7eeb", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "61714b2467085e45ef140b2c", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope_002", - "_id": "61713cc4d8e3106d9806c10d", - "_parent": "61713cc4d8e3106d9806c109", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "61605d88ffa6e502ac5e7eeb", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "61714b2467085e45ef140b2c", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "618bab21526131765025ab3f": { - "_id": "618bab21526131765025ab3f", - "_name": "mount_all_geissele_super_precision_30mm_ddc", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_jp_enterprises_ftsm_30mm", - "ShortName": "mount_all_jp_enterprises_ftsm_30mm", - "Description": "mount_all_jp_enterprises_ftsm_30mm", - "Weight": 0.194, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_geissele_super_precision_30mm_ddc.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5ae30bad5acfc400185c2dc4" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "618bab21526131765025ab41", - "_parent": "618bab21526131765025ab3f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b2388675acfc4771e1be0be", - "5b3b99475acfc432ff4dcbee", - "5a37cb10c4a282329a73b4e7", - "57c5ac0824597754771e88a9", - "618ba27d9008e4636a67f61d", - "617151c1d92c473c770214ab", - "6567e7681265c8a131069b0f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "618bab21526131765025ab42", - "_parent": "618bab21526131765025ab3f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "618b9671d14d6d5ab879c5ea", - "618ba91477b82356f91ae0e8", - "618b9682a3884f56c957ca78", - "618ba92152ecee1505530bd3" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0.5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "6388c4ac8d895f557a0c6515": { - "_id": "6388c4ac8d895f557a0c6515", - "_name": "mount_pri_precision_reflex_bottom_rail_section_gen3", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_vltor_6_inch_casv_rail_section", - "ShortName": "mount_keymod_vltor_6_inch_casv_rail_section", - "Description": "mount_keymod_vltor_6_inch_casv_rail_section", - "Weight": 0.075, + "Name": "mount_all_noname_25mm_ring", + "ShortName": "mount_all_noname_25mm_ring", + "Description": "mount_all_noname_25mm_ring", + "Weight": 0.06, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_pri_precision_reflex_bottom_rail_section_gen3.bundle", + "path": "assets/content/items/mods/mounts/mount_all_dd_offset_flashlight_mount_25mm.bundle", "rcid": "" }, "UsePrefab": { @@ -23902,7 +23241,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 5, - "ExamineExperience": 5, + "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -23931,42 +23270,16 @@ "Grids": [], "Slots": [ { - "_name": "mod_foregrip", - "_id": "6388c4ac8d895f557a0c6516", - "_parent": "6388c4ac8d895f557a0c6515", + "_name": "mod_flashlight", + "_id": "6267c6396b642f77f56f5c1e", + "_parent": "6267c6396b642f77f56f5c1c", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" + "59d790f486f77403cb06aec6", + "57d17c5e2459775a5c57d17d" ] } ] @@ -23983,227 +23296,13 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5947c73886f7747701588af5": { - "_id": "5947c73886f7747701588af5", - "_name": "stock_ar15_mft_bus", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_mft_bus", - "ShortName": "stock_ar15_mft_bus", - "Description": "stock_ar15_mft_bus", - "Weight": 0.255, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_mft_bus.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -22, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, + "Ergonomics": -1, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b2314bdc2d79388b4576" - }, - "5b7be4575acfc400161d0832": { - "_id": "5b7be4575acfc400161d0832", - "_name": "mount_casv_vltor_2_inch_picatinny_rail_section", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_casv_vltor_2_inch_picatinny_rail_section.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5b7be4575acfc400161d0834", - "_parent": "5b7be4575acfc400161d0832", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, @@ -24211,953 +23310,7 @@ "HeatFactor": 1, "CoolFactor": 1 }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5ef5d994dfbc9f3c660ded95": { - "_id": "5ef5d994dfbc9f3c660ded95", - "_name": "mount_m1911_weigand_weig_a_tinny_1911_scope_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_glock_aimtech_base_glock", - "ShortName": "mount_glock_aimtech_base_glock", - "Description": "mount_glock_aimtech_base_glock", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_m1911_weigand_weig_a_tinny_1911_scope_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5ef369b08cef260c0642acaf" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5ef5d994dfbc9f3c660ded97", - "_parent": "5ef5d994dfbc9f3c660ded95", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "5b3b99265acfc4704b4a1afb": { - "_id": "5b3b99265acfc4704b4a1afb", - "_name": "mount_all_nightforce_x_treme_duty_ultralite_30mm", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "ShortName": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "Description": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "Weight": 0.19, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_nightforce_x_treme_duty_ultralite_30mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5b3b99265acfc4704b4a1afd", - "_parent": "5b3b99265acfc4704b4a1afb", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b2388675acfc4771e1be0be", - "5b3b99475acfc432ff4dcbee", - "5a37cb10c4a282329a73b4e7", - "57c5ac0824597754771e88a9", - "618ba27d9008e4636a67f61d", - "617151c1d92c473c770214ab", - "6567e7681265c8a131069b0f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "623c2f4242aee3103f1c44b7": { - "_id": "623c2f4242aee3103f1c44b7", - "_name": "mount_keymod_cnc_guns_medium_rail_section", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_keymod_cnc_guns_medium_rail_section.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "623c2f4242aee3103f1c44b9", - "_parent": "623c2f4242aee3103f1c44b7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "5a7b483fe899ef0016170d15", - "56def37dd2720bec348b456a", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5e569a0156edd02abe09f27d": { - "_id": "5e569a0156edd02abe09f27d", - "_name": "mount_svd_izhmash_svd_modernized_kit_rail", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_svd_izhmash_svd_modernized_kit_rail", - "ShortName": "mount_svd_izhmash_svd_modernized_kit_rail", - "Description": "mount_svd_izhmash_svd_modernized_kit_rail", - "Weight": 0.24, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_svd_izhmash_svd_modernized_kit_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5649d9a14bdc2d79388b4580", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5e569a2e56edd02abe09f280", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "5dff8db859400025ea5150d4", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5e569a0156edd02abe09f27f", - "_parent": "5e569a0156edd02abe09f27d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "618ba91477b82356f91ae0e8": { - "_id": "618ba91477b82356f91ae0e8", - "_name": "mount_geissele_geissele_super_precision_top_ring_cap_30mm_ddc", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_acog_trijicon_rm35", - "ShortName": "mount_acog_trijicon_rm35", - "Description": "mount_acog_trijicon_rm35", - "Weight": 0.02, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_geissele_geissele_super_precision_top_ring_cap_30mm_ddc.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5ae30bad5acfc400185c2dc4" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0.5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "59ff3b6a86f77477562ff5ed": { - "_id": "59ff3b6a86f77477562ff5ed", - "_name": "stock_akms_izhmash_akms_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_akms_izhmash_akms_std", - "ShortName": "stock_akms_izhmash_akms_std", - "Description": "stock_akms_izhmash_akms_std", - "Weight": 0.6, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_akms_izhmash_akms_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5a3fed8a86f7740f81628ac6", - "_parent": "59ff3b6a86f77477562ff5ed", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a0c59791526d8dba737bba7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -21, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "5ae30c9a5acfc408fb139a03": { - "_id": "5ae30c9a5acfc408fb139a03", - "_name": "stock_ar15_lmt_sopmod", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_lmt_sopmod", - "ShortName": "stock_ar15_lmt_sopmod", - "Description": "stock_ar15_lmt_sopmod", - "Weight": 0.148, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_lmt_sopmod.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -20, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "623c2f652febb22c2777d8d7": { - "_id": "623c2f652febb22c2777d8d7", - "_name": "mount_keymod_cnc_guns_short_rail_section", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_keymod_cnc_guns_short_rail_section.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "623c2f652febb22c2777d8d9", - "_parent": "623c2f652febb22c2777d8d7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5b07dd285acfc4001754240d", - "5d2369418abbc306c62e0c80", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" + "_proto": "57c69dd424597774c03b7bbc" }, "6388c4478d895f557a0c6512": { "_id": "6388c4478d895f557a0c6512", @@ -25283,23 +23436,23 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, - "62811f461d5df4475f46a332": { - "_id": "62811f461d5df4475f46a332", - "_name": "mount_all_accuracy_international_ax50_scope_mount_34mm_pb", + "61714b2467085e45ef140b2c": { + "_id": "61714b2467085e45ef140b2c", + "_name": "mount_all_recknagel_era_tac_aimpoint_t1_sunshade_mount", "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "ShortName": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "Description": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "Weight": 0.23, + "Name": "mount_all_aimpoint_h1_t1_weaver", + "ShortName": "mount_all_aimpoint_h1_t1_weaver", + "Description": "mount_all_aimpoint_h1_t1_weaver", + "Weight": 0.015, "BackgroundColor": "blue", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_accuracy_international_ax50_scope_mount_34mm_pb.bundle", + "path": "assets/content/items/mods/mounts/mount_all_recknagel_era_tac_aimpoint_t1_sunshade_mount.bundle", "rcid": "" }, "UsePrefab": { @@ -25317,7 +23470,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 5, - "ExamineExperience": 3, + "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -25329,7 +23482,9 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [], + "ConflictingItems": [ + "5ae30bad5acfc400185c2dc4" + ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -25347,17 +23502,14 @@ "Slots": [ { "_name": "mod_scope", - "_id": "62811f461d5df4475f46a333", - "_parent": "62811f461d5df4475f46a332", + "_id": "61714b2467085e45ef140b2e", + "_parent": "61714b2467085e45ef140b2c", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "56ea70acd2720b844b8b4594", - "5aa66be6e5b5b0214e506e97", - "61714eec290d254f5e6b2ffc", - "62850c28da09541f43158cca" + "58d399e486f77442e0016fe7" ] } ] @@ -25374,122 +23526,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "5ef369b08cef260c0642acaf": { - "_id": "5ef369b08cef260c0642acaf", - "_name": "mount_m1911_ncstar_1911_trigger_guard_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_m1911_ncstar_1911_trigger_guard_mount", - "ShortName": "mount_m1911_ncstar_1911_trigger_guard_mount", - "Description": "mount_m1911_ncstar_1911_trigger_guard_mount", - "Weight": 0.04, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_m1911_ncstar_1911_trigger_guard_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5ef369b08cef260c0642acb1", - "_parent": "5ef369b08cef260c0642acaf", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5a7b4900e899ef197b331a2a", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": 0, "Velocity": 0, "RaidModdable": true, "ToolModdable": true, @@ -25505,1058 +23542,6 @@ }, "_proto": "5649a2464bdc2d91118b45a8" }, - "59e0be5d86f7742d48765bd2": { - "_id": "59e0be5d86f7742d48765bd2", - "_name": "mount_keymod_vltor_4_inch_casv_rail_section", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_vltor_4_inch_casv_rail_section", - "ShortName": "mount_keymod_vltor_4_inch_casv_rail_section", - "Description": "mount_keymod_vltor_4_inch_casv_rail_section", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_keymod_vltor_4_inch_casv_rail_section.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "59e0be5d86f7742d48765bd3", - "_parent": "59e0be5d86f7742d48765bd2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5b4736b986f77405cb415c10": { - "_id": "5b4736b986f77405cb415c10", - "_name": "mount_qars_troy_qars_4,2_inch_rail_section", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_qars_troy_qars_4,2_inch_rail_section", - "ShortName": "mount_qars_troy_qars_4,2_inch_rail_section", - "Description": "mount_qars_troy_qars_4,2_inch_rail_section", - "Weight": 0.065, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_qars_troy_qars_4,2_inch_rail_section.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5b4736b986f77405cb415c12", - "_parent": "5b4736b986f77405cb415c10", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5c064c400db834001d23f468": { - "_id": "5c064c400db834001d23f468", - "_name": "mount_all_larue_picatinny_raiser_qd_lt101", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_ak_tactica_tula_10000", - "ShortName": "mount_ak_tactica_tula_10000", - "Description": "mount_ak_tactica_tula_10000", - "Weight": 0.11, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_larue_picatinny_raiser_qd_lt101.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5c064c400db834001d23f46a", - "_parent": "5c064c400db834001d23f468", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5aa66c72e5b5b00016327c93": { - "_id": "5aa66c72e5b5b00016327c93", - "_name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_multimount_34mm", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "ShortName": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "Description": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_multimount_34mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 1, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope_000", - "_id": "5aa66c90e5b5b00016327c96", - "_parent": "5aa66c72e5b5b00016327c93", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "56ea70acd2720b844b8b4594", - "5aa66be6e5b5b0214e506e97", - "61714eec290d254f5e6b2ffc", - "62850c28da09541f43158cca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope_001", - "_id": "5aa66c9ce5b5b00015693125", - "_parent": "5aa66c72e5b5b00016327c93", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "61605d88ffa6e502ac5e7eeb", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope_002", - "_id": "5aa66cabe5b5b055d0630d82", - "_parent": "5aa66c72e5b5b00016327c93", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope_003", - "_id": "5aa66cb7e5b5b0214e506e99", - "_parent": "5aa66c72e5b5b00016327c93", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "577d128124597739d65d0e56" - }, - "6267c6396b642f77f56f5c1c": { - "_id": "6267c6396b642f77f56f5c1c", - "_name": "mount_all_dd_offset_flashlight_mount_25mm", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_all_noname_25mm_ring", - "ShortName": "mount_all_noname_25mm_ring", - "Description": "mount_all_noname_25mm_ring", - "Weight": 0.06, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_all_dd_offset_flashlight_mount_25mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_flashlight", - "_id": "6267c6396b642f77f56f5c1e", - "_parent": "6267c6396b642f77f56f5c1c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59d790f486f77403cb06aec6", - "57d17c5e2459775a5c57d17d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "57c69dd424597774c03b7bbc" - }, - "653ed19d22e1ef3d9002c328": { - "_id": "653ed19d22e1ef3d9002c328", - "_name": "mount_sks_tapco_intrafuse_sks_railed_bottom_rail", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_sks_tapco_intrafuse_sks_railed_bottom_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "653ed19d22e1ef3d9002c329", - "_parent": "653ed19d22e1ef3d9002c328", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "65169d5b30425317755f8e25", - "648067db042be0705c0b3009", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5fc2369685fd526b824a5713": { - "_id": "5fc2369685fd526b824a5713", - "_name": "stock_ar15_b5_precision", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_b5_precision", - "ShortName": "stock_ar15_b5_precision", - "Description": "stock_ar15_b5_precision", - "Weight": 0.16, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_b5_precision.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -24, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "6269545d0e57f218e4548ca2": { - "_id": "6269545d0e57f218e4548ca2", - "_name": "mount_m_lok_magpul_offset_light_optic_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.037, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_m_lok_magpul_offset_light_optic_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "6269545d0e57f218e4548ca4", - "_parent": "6269545d0e57f218e4548ca2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "626becf9582c3e319310b837", - "5cc9c20cd7f00c001336c65d", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "57d17e212459775a1179a0f5", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, "628120d309427b40ab14e76d": { "_id": "628120d309427b40ab14e76d", "_name": "mount_keyslot_accuracy_international_adapter_kit_short_rail_pb", @@ -26681,6 +23666,419 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, + "5addbfef5acfc400185c2857": { + "_id": "5addbfef5acfc400185c2857", + "_name": "mount_m14_leapers_utg_4_point_locking_deluxe_scope_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_m14_leapers_utg_4_point_locking_deluxe_scope_mount", + "ShortName": "mount_m14_leapers_utg_4_point_locking_deluxe_scope_mount", + "Description": "mount_m14_leapers_utg_4_point_locking_deluxe_scope_mount", + "Weight": 0.25, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_m14_leapers_utg_4_point_locking_deluxe_scope_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5addbffe5acfc4001714dfac", + "5addc00b5acfc4001669f144", + "5addc7005acfc4001669f275", + "5ab372a310e891001717f0d8" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5addbfef5acfc400185c2859", + "_parent": "5addbfef5acfc400185c2857", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57a3459f245977764a01f703" + }, + "653931da5db71d30ab1d6296": { + "_id": "653931da5db71d30ab1d6296", + "_name": "mount_all_gbrs_hydra_micro_kit_fde", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_jp_enterprises_ftsm_30mm", + "ShortName": "mount_all_jp_enterprises_ftsm_30mm", + "Description": "mount_all_jp_enterprises_ftsm_30mm", + "Weight": 0.141, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_gbrs_hydra_micro_kit_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5ae30bad5acfc400185c2dc4" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "653931da5db71d30ab1d6297", + "_parent": "653931da5db71d30ab1d6296", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "653931da5db71d30ab1d6298", + "_parent": "653931da5db71d30ab1d6296", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61657230d92c473c770213d7", + "58d399e486f77442e0016fe7", + "5b3116595acfc40019476364", + "58d39b0386f77443380bf13c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "5a398ab9c4a282000c5a9842": { + "_id": "5a398ab9c4a282000c5a9842", + "_name": "helmet_ops_core_single_clamp_rail_adapter", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "helmet_ops_core_single_clamp_rail_adapter", + "ShortName": "helmet_ops_core_single_clamp_rail_adapter", + "Description": "helmet_ops_core_single_clamp_rail_adapter", + "Weight": 0.02, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/equipment/helmet_opscore_fast/item_equipment_helmet_opscore_single_clamp_rail_adapter.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a16b7e1fcdbcb00165aa6c9" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_flashlight", + "_id": "5a398b3ec4a282329a73b54f", + "_parent": "5a398ab9c4a282000c5a9842", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59d790f486f77403cb06aec6", + "57d17c5e2459775a5c57d17d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, "5a9d6d21a2750c00137fa649": { "_id": "5a9d6d21a2750c00137fa649", "_name": "mount_keymod_strike_industries_bridge_rail_section", @@ -26992,113 +24390,6 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, - "5a398ab9c4a282000c5a9842": { - "_id": "5a398ab9c4a282000c5a9842", - "_name": "helmet_ops_core_single_clamp_rail_adapter", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "helmet_ops_core_single_clamp_rail_adapter", - "ShortName": "helmet_ops_core_single_clamp_rail_adapter", - "Description": "helmet_ops_core_single_clamp_rail_adapter", - "Weight": 0.02, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/equipment/helmet_opscore_fast/item_equipment_helmet_opscore_single_clamp_rail_adapter.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a16b7e1fcdbcb00165aa6c9" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_flashlight", - "_id": "5a398b3ec4a282329a73b54f", - "_parent": "5a398ab9c4a282000c5a9842", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59d790f486f77403cb06aec6", - "57d17c5e2459775a5c57d17d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, "5aa66a9be5b5b0214e506e89": { "_id": "5aa66a9be5b5b0214e506e89", "_name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", @@ -27206,6 +24497,1589 @@ }, "_proto": "577d128124597739d65d0e56" }, + "5a78813bc5856700186c4abe": { + "_id": "5a78813bc5856700186c4abe", + "_name": "stock_870_magpul_sga", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_870_magpul_sga", + "ShortName": "stock_870_magpul_sga", + "Description": "stock_870_magpul_sga", + "Weight": 0.5, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_870_magpul_sga.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 1, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -29, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083be64bdc2d20478b456f" + }, + "6388c4ac8d895f557a0c6515": { + "_id": "6388c4ac8d895f557a0c6515", + "_name": "mount_pri_precision_reflex_bottom_rail_section_gen3", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_vltor_6_inch_casv_rail_section", + "ShortName": "mount_keymod_vltor_6_inch_casv_rail_section", + "Description": "mount_keymod_vltor_6_inch_casv_rail_section", + "Weight": 0.075, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_pri_precision_reflex_bottom_rail_section_gen3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "6388c4ac8d895f557a0c6516", + "_parent": "6388c4ac8d895f557a0c6515", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5addbfe15acfc4001a5fc58b": { + "_id": "5addbfe15acfc4001a5fc58b", + "_name": "mount_m14_arms_18_low_profile_scope_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_m1a_springfield_armory_socom_16_upper", + "ShortName": "mount_m1a_springfield_armory_socom_16_upper", + "Description": "mount_m1a_springfield_armory_socom_16_upper", + "Weight": 0.22, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_m14_arms_18_low_profile_scope_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5addbffe5acfc4001714dfac", + "5addc00b5acfc4001669f144", + "5ab372a310e891001717f0d8" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5addbfe15acfc4001a5fc58d", + "_parent": "5addbfe15acfc4001a5fc58b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57a3459f245977764a01f703" + }, + "618bab21526131765025ab3f": { + "_id": "618bab21526131765025ab3f", + "_name": "mount_all_geissele_super_precision_30mm_ddc", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_jp_enterprises_ftsm_30mm", + "ShortName": "mount_all_jp_enterprises_ftsm_30mm", + "Description": "mount_all_jp_enterprises_ftsm_30mm", + "Weight": 0.194, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_geissele_super_precision_30mm_ddc.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5ae30bad5acfc400185c2dc4" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "618bab21526131765025ab41", + "_parent": "618bab21526131765025ab3f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b2388675acfc4771e1be0be", + "5b3b99475acfc432ff4dcbee", + "5a37cb10c4a282329a73b4e7", + "57c5ac0824597754771e88a9", + "618ba27d9008e4636a67f61d", + "617151c1d92c473c770214ab", + "6567e7681265c8a131069b0f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "618bab21526131765025ab42", + "_parent": "618bab21526131765025ab3f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "618b9671d14d6d5ab879c5ea", + "618ba91477b82356f91ae0e8", + "618b9682a3884f56c957ca78", + "618ba92152ecee1505530bd3" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0.5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "61713cc4d8e3106d9806c109": { + "_id": "61713cc4d8e3106d9806c109", + "_name": "mount_all_recknagel_era_tac_one_piece_mount_34mm", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "ShortName": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "Description": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "Weight": 0.25, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_recknagel_era_tac_one_piece_mount_34mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 1, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope_000", + "_id": "61713cc4d8e3106d9806c10b", + "_parent": "61713cc4d8e3106d9806c109", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "56ea70acd2720b844b8b4594", + "5aa66be6e5b5b0214e506e97", + "61714eec290d254f5e6b2ffc", + "62850c28da09541f43158cca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope_001", + "_id": "61713cc4d8e3106d9806c10c", + "_parent": "61713cc4d8e3106d9806c109", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "61605d88ffa6e502ac5e7eeb", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "61714b2467085e45ef140b2c", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope_002", + "_id": "61713cc4d8e3106d9806c10d", + "_parent": "61713cc4d8e3106d9806c109", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "61605d88ffa6e502ac5e7eeb", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "61714b2467085e45ef140b2c", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "5c0102b20db834001d23eebc": { + "_id": "5c0102b20db834001d23eebc", + "_name": "mount_rahg_remington_4_inch_rahg_rail_section", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_rahg_remington_4_inch_rahg_rail_section.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5c0102b20db834001d23eebe", + "_parent": "5c0102b20db834001d23eebc", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64807a29e5ffe165600abc97", + "64806bdd26c80811d408d37a", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5ef5d994dfbc9f3c660ded95": { + "_id": "5ef5d994dfbc9f3c660ded95", + "_name": "mount_m1911_weigand_weig_a_tinny_1911_scope_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_glock_aimtech_base_glock", + "ShortName": "mount_glock_aimtech_base_glock", + "Description": "mount_glock_aimtech_base_glock", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_m1911_weigand_weig_a_tinny_1911_scope_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5ef369b08cef260c0642acaf" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5ef5d994dfbc9f3c660ded97", + "_parent": "5ef5d994dfbc9f3c660ded95", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "5e569a0156edd02abe09f27d": { + "_id": "5e569a0156edd02abe09f27d", + "_name": "mount_svd_izhmash_svd_modernized_kit_rail", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_svd_izhmash_svd_modernized_kit_rail", + "ShortName": "mount_svd_izhmash_svd_modernized_kit_rail", + "Description": "mount_svd_izhmash_svd_modernized_kit_rail", + "Weight": 0.24, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_svd_izhmash_svd_modernized_kit_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5649d9a14bdc2d79388b4580", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5e569a2e56edd02abe09f280", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "5dff8db859400025ea5150d4", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5e569a0156edd02abe09f27f", + "_parent": "5e569a0156edd02abe09f27d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5b7be4645acfc400170e2dcc": { + "_id": "5b7be4645acfc400170e2dcc", + "_name": "mount_casv_vltor_4_inch_picatinny_rail_section", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.06, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_casv_vltor_4_inch_picatinny_rail_section.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5b7be4645acfc400170e2dce", + "_parent": "5b7be4645acfc400170e2dcc", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5ab24ef9e5b5b00fe93c9209": { + "_id": "5ab24ef9e5b5b00fe93c9209", + "_name": "mount_m1a_springfield_armory_socom_16_upper", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_m1a_springfield_armory_socom_16_upper", + "ShortName": "mount_m1a_springfield_armory_socom_16_upper", + "Description": "mount_m1a_springfield_armory_socom_16_upper", + "Weight": 0.096, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_m1a_springfield_armory_socom_16_upper.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5ab24ef9e5b5b00fe93c920b", + "_parent": "5ab24ef9e5b5b00fe93c9209", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "64785e7c19d732620e045e15", + "644a3df63b0b6f03e101e065", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "57a3459f245977764a01f703" + }, + "618ba91477b82356f91ae0e8": { + "_id": "618ba91477b82356f91ae0e8", + "_name": "mount_geissele_geissele_super_precision_top_ring_cap_30mm_ddc", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_acog_trijicon_rm35", + "ShortName": "mount_acog_trijicon_rm35", + "Description": "mount_acog_trijicon_rm35", + "Weight": 0.02, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_geissele_geissele_super_precision_top_ring_cap_30mm_ddc.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5ae30bad5acfc400185c2dc4" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0.5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "634f04d82e5def262d0b30c6": { + "_id": "634f04d82e5def262d0b30c6", + "_name": "mount_sks_toz_sks_rear_sight_block", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_sks_toz_sks_rear_sight_block", + "ShortName": "mount_sks_toz_sks_rear_sight_block", + "Description": "mount_sks_toz_sks_rear_sight_block", + "Weight": 0.25, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_sks_toz_sks_rear_sight_block.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_gas_block", + "_id": "634f04d82e5def262d0b30c7", + "_parent": "634f04d82e5def262d0b30c6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "634f036a517ccc8a960fc746", + "634f02d7517ccc8a960fc744" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "634f04d82e5def262d0b30c8", + "_parent": "634f04d82e5def262d0b30c6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "574db213245977459a2f3f5d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, "618b9682a3884f56c957ca78": { "_id": "618b9682a3884f56c957ca78", "_name": "mount_geissele_reptilia_rof_90_trijicon_30mm", @@ -27310,644 +26184,23 @@ }, "_proto": "5649a2464bdc2d91118b45a8" }, - "628120c21d5df4475f46a337": { - "_id": "628120c21d5df4475f46a337", - "_name": "mount_keyslot_accuracy_international_at_x_forend_rail_pb", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_keyslot_accuracy_international_at_x_forend_rail_pb.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_front", - "_id": "62820f043e69a0418a7cb5f7", - "_parent": "628120c21d5df4475f46a337", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "62820f043e69a0418a7cb5f8", - "_parent": "628120c21d5df4475f46a337", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5c0102aa0db834001b734ba1": { - "_id": "5c0102aa0db834001b734ba1", - "_name": "mount_rahg_remington_2_inch_rahg_rail_section", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_rahg_remington_2_inch_rahg_rail_section.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5c0102aa0db834001b734ba3", - "_parent": "5c0102aa0db834001b734ba1", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "6415d33eda439c6a97048b5b": { - "_id": "6415d33eda439c6a97048b5b", - "_name": "mount_sks_choate_sks_scope_mount", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_ak_tactica_tula_10000", - "ShortName": "mount_ak_tactica_tula_10000", - "Description": "mount_ak_tactica_tula_10000", - "Weight": 0.175, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_sks_choate_sks_scope_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [ - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "591ee00d86f774592f7b841e", - "609a4b4fe2ff132951242d04", - "5e569a2e56edd02abe09f280", - "5d0a29ead7ad1a0026013f27", - "5c61627a2e22160012542c55", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "63d114019e35b334d82302f7", - "638db77630c4240f9e06f8b6", - "5c61a40d2e2216001403158d", - "5dff8db859400025ea5150d4", - "5c90c3622e221601da359851" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "6415d33eda439c6a97048b5c", - "_parent": "6415d33eda439c6a97048b5b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "5b3b6dc75acfc47a8773fb1e", - "5a37ca54c4a282000d72296a", - "5b3b99265acfc4704b4a1afb", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5dff77c759400025ea5150cf" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "618ba92152ecee1505530bd3": { - "_id": "618ba92152ecee1505530bd3", - "_name": "mount_geissele_reptilia_rof_90_trijicon_30mm_ddc", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_acog_trijicon_rm35", - "ShortName": "mount_acog_trijicon_rm35", - "Description": "mount_acog_trijicon_rm35", - "Weight": 0.02, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_geissele_reptilia_rof_90_trijicon_30mm_ddc.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "618ba92152ecee1505530bd5", - "_parent": "618ba92152ecee1505530bd3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a32aa8bc4a2826c6e06d737" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649a2464bdc2d91118b45a8" - }, - "65434a4e4e3a01736a6c9706": { - "_id": "65434a4e4e3a01736a6c9706", - "_name": "mount_lenok_hartman_lenok_weaver_70mm", - "_parent": "55818b224bdc2dde698b456f", - "_type": "Item", - "_props": { - "Name": "mount_keymod_strike_industries_4_inch_rail_section", - "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", - "Description": "mount_keymod_strike_industries_4_inch_rail_section", - "Weight": 0.019, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mounts/mount_lenok_hartman_lenok_weaver_70mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "65434a4e4e3a01736a6c9707", - "_parent": "65434a4e4e3a01736a6c9706", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55f96d6f4bdc2d5f408b4578" - }, - "5c5db6f82e2216003a0fe914": { - "_id": "5c5db6f82e2216003a0fe914", - "_name": "stock_mpx_pmm_ulss", + "5bcf0213d4351e0085327c17": { + "_id": "5bcf0213d4351e0085327c17", + "_name": "stock_mp7_hk_a1_std", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_all_sig_mpx_mcx_early_type", - "ShortName": "stock_all_sig_mpx_mcx_early_type", - "Description": "stock_all_sig_mpx_mcx_early_type", - "Weight": 0.462, + "Name": "stock_mp7_hk_a1_std", + "ShortName": "stock_mp7_hk_a1_std", + "Description": "stock_mp7_hk_a1_std", + "Weight": 0.2, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mpx_pmm_ulss.bundle", + "path": "assets/content/items/mods/stocks/stock_mp7_hk_a1_std.bundle", "rcid": "" }, "UsePrefab": { @@ -27965,7 +26218,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 2, + "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -27997,12 +26250,12 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -23, + "Recoil": -12, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": 3, "Velocity": 0, - "RaidModdable": true, + "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -28014,138 +26267,13 @@ "IsShoulderContact": true, "Foldable": false, "Retractable": false, - "SizeReduceRight": 0, + "SizeReduceRight": 1, "HeatFactor": 1, "CoolFactor": 1, "DurabilityBurnModificator": 1 }, "_proto": "5649b0fc4bdc2d17108b4588" }, - "5649b2314bdc2d79388b4576": { - "_id": "5649b2314bdc2d79388b4576", - "_name": "stock_ak_utg_sfs_adapter", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak_utg_sfs_adapter", - "ShortName": "stock_ak_utg_sfs_adapter", - "Description": "stock_ak_utg_sfs_adapter", - "Weight": 0.31, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_utg_sfs_adapter.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5649db764bdc2d363b8b4583", - "_parent": "5649b2314bdc2d79388b4576", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ade1442459771557167e15", - "5a33ca0fc4a282000d72292f", - "5c0faeddd174af02a962601f", - "5649be884bdc2d79388b4577", - "5d120a10d7ad1a4e1026ba85", - "5b0800175acfc400153aebd4", - "5bb20e58d4351e00320205d7", - "5947e98b86f774778f1448bc", - "5947eab886f77475961d96c5", - "5ef1ba28c64c5d0dfc0571a5", - "602e3f1254072b51b239f713", - "5c793fb92e221644f31bfb64", - "5c793fc42e221600114ca25d", - "591aef7986f774139d495f03", - "591af10186f774139d495f0e", - "627254cc9c563e6e442c398f", - "638de3603a1a4031d8260b8c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b1c04bdc2d16268b457c" - }, "59e0bed186f774156f04ce84": { "_id": "59e0bed186f774156f04ce84", "_name": "mount_keymod_vltor_6_inch_casv_rail_section", @@ -28282,6 +26410,1390 @@ }, "_proto": "55f96d6f4bdc2d5f408b4578" }, + "615d8da4d3a39d50044c10e8": { + "_id": "615d8da4d3a39d50044c10e8", + "_name": "mount_glock_tango_down_aam_01_acro_mount", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_glock_aimtech_base_glock", + "ShortName": "mount_glock_aimtech_base_glock", + "Description": "mount_glock_aimtech_base_glock", + "Weight": 0.007, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_glock_tango_down_aam_01_acro_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "615d8da4d3a39d50044c10ea", + "_parent": "615d8da4d3a39d50044c10e8", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "616442e4faa1272e43152193" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649a2464bdc2d91118b45a8" + }, + "59ecc3dd86f7746dc827481c": { + "_id": "59ecc3dd86f7746dc827481c", + "_name": "stock_ak_zenit_pt-3", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_aks74u_izhmash_aks74u_std", + "ShortName": "stock_aks74u_izhmash_aks74u_std", + "Description": "stock_aks74u_izhmash_aks74u_std", + "Weight": 0.218, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak_zenit_pt-3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -27, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 11, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "623c2f652febb22c2777d8d7": { + "_id": "623c2f652febb22c2777d8d7", + "_name": "mount_keymod_cnc_guns_short_rail_section", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_keymod_cnc_guns_short_rail_section.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "623c2f652febb22c2777d8d9", + "_parent": "623c2f652febb22c2777d8d7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5b07dd285acfc4001754240d", + "5d2369418abbc306c62e0c80", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5c064c400db834001d23f468": { + "_id": "5c064c400db834001d23f468", + "_name": "mount_all_larue_picatinny_raiser_qd_lt101", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_ak_tactica_tula_10000", + "ShortName": "mount_ak_tactica_tula_10000", + "Description": "mount_ak_tactica_tula_10000", + "Weight": 0.11, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_larue_picatinny_raiser_qd_lt101.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5c064c400db834001d23f46a", + "_parent": "5c064c400db834001d23f468", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "59e0be5d86f7742d48765bd2": { + "_id": "59e0be5d86f7742d48765bd2", + "_name": "mount_keymod_vltor_4_inch_casv_rail_section", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_vltor_4_inch_casv_rail_section", + "ShortName": "mount_keymod_vltor_4_inch_casv_rail_section", + "Description": "mount_keymod_vltor_4_inch_casv_rail_section", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_keymod_vltor_4_inch_casv_rail_section.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "59e0be5d86f7742d48765bd3", + "_parent": "59e0be5d86f7742d48765bd2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "62811f461d5df4475f46a332": { + "_id": "62811f461d5df4475f46a332", + "_name": "mount_all_accuracy_international_ax50_scope_mount_34mm_pb", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "ShortName": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "Description": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "Weight": 0.23, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_accuracy_international_ax50_scope_mount_34mm_pb.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "62811f461d5df4475f46a333", + "_parent": "62811f461d5df4475f46a332", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "56ea70acd2720b844b8b4594", + "5aa66be6e5b5b0214e506e97", + "61714eec290d254f5e6b2ffc", + "62850c28da09541f43158cca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "5b4736b986f77405cb415c10": { + "_id": "5b4736b986f77405cb415c10", + "_name": "mount_qars_troy_qars_4,2_inch_rail_section", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_qars_troy_qars_4,2_inch_rail_section", + "ShortName": "mount_qars_troy_qars_4,2_inch_rail_section", + "Description": "mount_qars_troy_qars_4,2_inch_rail_section", + "Weight": 0.065, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_qars_troy_qars_4,2_inch_rail_section.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5b4736b986f77405cb415c12", + "_parent": "5b4736b986f77405cb415c10", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5aa66c72e5b5b00016327c93": { + "_id": "5aa66c72e5b5b00016327c93", + "_name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_multimount_34mm", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "ShortName": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "Description": "mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_34mm", + "Weight": 0.25, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_all_nightforce_x_treme_duty_ultralite_one_piece_magmount_multimount_34mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 1, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope_000", + "_id": "5aa66c90e5b5b00016327c96", + "_parent": "5aa66c72e5b5b00016327c93", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "56ea70acd2720b844b8b4594", + "5aa66be6e5b5b0214e506e97", + "61714eec290d254f5e6b2ffc", + "62850c28da09541f43158cca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope_001", + "_id": "5aa66c9ce5b5b00015693125", + "_parent": "5aa66c72e5b5b00016327c93", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "61605d88ffa6e502ac5e7eeb", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope_002", + "_id": "5aa66cabe5b5b055d0630d82", + "_parent": "5aa66c72e5b5b00016327c93", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope_003", + "_id": "5aa66cb7e5b5b0214e506e99", + "_parent": "5aa66c72e5b5b00016327c93", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "577d128124597739d65d0e56" + }, + "653ed19d22e1ef3d9002c328": { + "_id": "653ed19d22e1ef3d9002c328", + "_name": "mount_sks_tapco_intrafuse_sks_railed_bottom_rail", + "_parent": "55818b224bdc2dde698b456f", + "_type": "Item", + "_props": { + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mounts/mount_sks_tapco_intrafuse_sks_railed_bottom_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "653ed19d22e1ef3d9002c329", + "_parent": "653ed19d22e1ef3d9002c328", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "65169d5b30425317755f8e25", + "648067db042be0705c0b3009", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5ac78eaf5acfc4001926317a": { + "_id": "5ac78eaf5acfc4001926317a", + "_name": "stock_ak_zenit_pt-3m_lock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak_zenit_pt-3m_lock", + "ShortName": "stock_ak_zenit_pt-3m_lock", + "Description": "stock_ak_zenit_pt-3m_lock", + "Weight": 0.03, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak_zenit_pt-3_lock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5ac78eaf5acfc4001926317c", + "_parent": "5ac78eaf5acfc4001926317a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59ecc3dd86f7746dc827481c", + "5b222d405acfc400153af4fe" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b1c04bdc2d16268b457c" + }, + "59ff3b6a86f77477562ff5ed": { + "_id": "59ff3b6a86f77477562ff5ed", + "_name": "stock_akms_izhmash_akms_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_akms_izhmash_akms_std", + "ShortName": "stock_akms_izhmash_akms_std", + "Description": "stock_akms_izhmash_akms_std", + "Weight": 0.6, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_akms_izhmash_akms_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5a3fed8a86f7740f81628ac6", + "_parent": "59ff3b6a86f77477562ff5ed", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a0c59791526d8dba737bba7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -21, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, "6269220d70b6c02e665f2635": { "_id": "6269220d70b6c02e665f2635", "_name": "mount_m_lok_magpul_cantilever_rail_light_mount", @@ -28563,23 +28075,23 @@ }, "_proto": "57a3459f245977764a01f703" }, - "59ecc3dd86f7746dc827481c": { - "_id": "59ecc3dd86f7746dc827481c", - "_name": "stock_ak_zenit_pt-3", - "_parent": "55818a594bdc2db9688b456a", + "628120c21d5df4475f46a337": { + "_id": "628120c21d5df4475f46a337", + "_name": "mount_keyslot_accuracy_international_at_x_forend_rail_pb", + "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "stock_aks74u_izhmash_aks74u_std", - "ShortName": "stock_aks74u_izhmash_aks74u_std", - "Description": "stock_aks74u_izhmash_aks74u_std", - "Weight": 0.218, + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.07, "BackgroundColor": "blue", - "Width": 2, + "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_zenit_pt-3.bundle", + "path": "assets/content/items/mods/mounts/mount_keyslot_accuracy_international_at_x_forend_rail_pb.bundle", "rcid": "" }, "UsePrefab": { @@ -28596,196 +28108,16 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -27, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 11, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "56083be64bdc2d20478b456f": { - "_id": "56083be64bdc2d20478b456f", - "_name": "stock_mr133_plastic_long", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "Приклад пластиковый МР-133/153", - "ShortName": "133/153 Пл.п.", - "Description": "Пластиковый приклад с резиновым тыльником, для ружей МР-133 и МР-153 производства ИжМех.", - "Weight": 0.46, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mr133_plastic_long.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 1, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -24, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "638de3603a1a4031d8260b8c": { - "_id": "638de3603a1a4031d8260b8c", - "_name": "stock_ar15_rtm_atp_buffer_tube", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_colt_stock_tube_A2", - "ShortName": "stock_ar15_colt_stock_tube_A2", - "Description": "stock_ar15_colt_stock_tube_A2", - "Weight": 0.115, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_rtm_atp_buffer_tube.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, + "LootExperience": 5, "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, + "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, + "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, @@ -28806,42 +28138,46 @@ "Grids": [], "Slots": [ { - "_name": "mod_stock_000", - "_id": "638de3603a1a4031d8260b8d", - "_parent": "638de3603a1a4031d8260b8c", + "_name": "mod_sight_front", + "_id": "62820f043e69a0418a7cb5f7", + "_parent": "628120c21d5df4475f46a337", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5fc2369685fd526b824a5713", - "606587d11246154cad35d635", - "602e620f9b513876d4338d9a", - "5a9eb32da2750c00171b3f9c", - "5bfe86df0db834001b734685", - "55d4ae6c4bdc2d8b2f8b456e", - "5c87a07c2e2216001219d4a2", - "5bb20e70d4351e0035629f8f", - "5beec8c20db834001d2c465c", - "5ae30c9a5acfc408fb139a03", - "5d135e83d7ad1a21b83f42d8", - "5d135ecbd7ad1a21c176542e", - "56eabf3bd2720b75698b4569", - "58d2946386f774496974c37e", - "58d2946c86f7744e271174b5", - "58d2947686f774485c6a1ee5", - "58d2947e86f77447aa070d53", - "5d44069ca4b9361ebd26fc37", - "5d4406a8a4b9361e4f6eb8b7", - "5947c73886f7747701588af5", - "5c793fde2e221601da358614", - "5b39f8db5acfc40016387a1b", - "628a85ee6b1d481ff772e9d5", - "5fbbaa86f9986c4cff3fe5f6", - "5fce16961f152d4312622bc9", - "6516e91f609aaf354b34b3e2", - "6516e971a3d4c6497930b450", - "6529370c405a5f51dd023db8" + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "62820f043e69a0418a7cb5f8", + "_parent": "628120c21d5df4475f46a337", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" ] } ] @@ -28855,47 +28191,42 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -1.5, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": 0, "Velocity": 0, - "RaidModdable": false, + "RaidModdable": true, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, - "HasShoulderContact": true, + "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 0.97 + "CoolFactor": 1 }, - "_proto": "5649b2314bdc2d79388b4576" + "_proto": "55f96d6f4bdc2d5f408b4578" }, - "5b222d405acfc400153af4fe": { - "_id": "5b222d405acfc400153af4fe", - "_name": "stock_ak_zenit_pt_1", - "_parent": "55818a594bdc2db9688b456a", + "5b7be47f5acfc400170e2dd2": { + "_id": "5b7be47f5acfc400170e2dd2", + "_name": "mount_m_lok_magpul_2,5_inch_picatinny_rail_section", + "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "stock_ak_zenit_pt_1", - "ShortName": "stock_ak_zenit_pt_1", - "Description": "stock_ak_zenit_pt_1", - "Weight": 0.29, + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.05, "BackgroundColor": "blue", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_zenit_pt_1.bundle", + "path": "assets/content/items/mods/mounts/mount_m_lok_magpul_2,5_inch_picatinny_rail_section.bundle", "rcid": "" }, "UsePrefab": { @@ -28912,13 +28243,13 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, + "LootExperience": 5, + "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, + "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, @@ -28942,15 +28273,35 @@ "Grids": [], "Slots": [ { - "_name": "mod_stock_000", - "_id": "6572d76bf1a7570edd43dc17", - "_parent": "5b222d405acfc400153af4fe", + "_name": "mod_tactical", + "_id": "5b7be47f5acfc400170e2dd4", + "_parent": "5b7be47f5acfc400170e2dd2", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a0c59791526d8dba737bba7" + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" ] } ] @@ -28964,47 +28315,42 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -26, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 9, + "Ergonomics": 0, "Velocity": 0, - "RaidModdable": false, + "RaidModdable": true, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, - "HasShoulderContact": true, + "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 + "CoolFactor": 1 }, - "_proto": "5649b0fc4bdc2d17108b4588" + "_proto": "55f96d6f4bdc2d5f408b4578" }, - "5a7880d0c5856700142fdd9d": { - "_id": "5a7880d0c5856700142fdd9d", - "_name": "stock_870_remington_sps_12g", - "_parent": "55818a594bdc2db9688b456a", + "5c0102aa0db834001b734ba1": { + "_id": "5c0102aa0db834001b734ba1", + "_name": "mount_rahg_remington_2_inch_rahg_rail_section", + "_parent": "55818b224bdc2dde698b456f", "_type": "Item", "_props": { - "Name": "stock_870_remington_sps_12g", - "ShortName": "stock_870_remington_sps_12g", - "Description": "stock_870_remington_sps_12g\n", - "Weight": 0.64, + "Name": "mount_keymod_strike_industries_4_inch_rail_section", + "ShortName": "mount_keymod_strike_industries_4_inch_rail_section", + "Description": "mount_keymod_strike_industries_4_inch_rail_section", + "Weight": 0.05, "BackgroundColor": "blue", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_870_remington_sps_12g.bundle", + "path": "assets/content/items/mods/mounts/mount_rahg_remington_2_inch_rahg_rail_section.bundle", "rcid": "" }, "UsePrefab": { @@ -29021,13 +28367,13 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 1, + "LootExperience": 5, + "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, + "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, @@ -29049,22 +28395,181 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5c0102aa0db834001b734ba3", + "_parent": "5c0102aa0db834001b734ba1", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -24, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 6, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55f96d6f4bdc2d5f408b4578" + }, + "5649b2314bdc2d79388b4576": { + "_id": "5649b2314bdc2d79388b4576", + "_name": "stock_ak_utg_sfs_adapter", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak_utg_sfs_adapter", + "ShortName": "stock_ak_utg_sfs_adapter", + "Description": "stock_ak_utg_sfs_adapter", + "Weight": 0.31, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak_utg_sfs_adapter.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5649db764bdc2d363b8b4583", + "_parent": "5649b2314bdc2d79388b4576", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ade1442459771557167e15", + "5a33ca0fc4a282000d72292f", + "5c0faeddd174af02a962601f", + "5649be884bdc2d79388b4577", + "5d120a10d7ad1a4e1026ba85", + "5b0800175acfc400153aebd4", + "5bb20e58d4351e00320205d7", + "5947e98b86f774778f1448bc", + "5947eab886f77475961d96c5", + "5ef1ba28c64c5d0dfc0571a5", + "602e3f1254072b51b239f713", + "5c793fb92e221644f31bfb64", + "5c793fc42e221600114ca25d", + "591aef7986f774139d495f03", + "591af10186f774139d495f0e", + "627254cc9c563e6e442c398f", + "638de3603a1a4031d8260b8c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, - "HasShoulderContact": true, + "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, @@ -29076,7 +28581,7 @@ "CoolFactor": 1, "DurabilityBurnModificator": 1 }, - "_proto": "56083be64bdc2d20478b456f" + "_proto": "5649b1c04bdc2d16268b457c" }, "617153016c780c1e710c9a2f": { "_id": "617153016c780c1e710c9a2f", @@ -29188,1054 +28693,6 @@ }, "_proto": "5649b2314bdc2d79388b4576" }, - "6197b229af1f5202c57a9bea": { - "_id": "6197b229af1f5202c57a9bea", - "_name": "stock_svd_s_lynxarms_sch_svd_s", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak_utg_sfs_adapter", - "ShortName": "stock_ak_utg_sfs_adapter", - "Description": "stock_ak_utg_sfs_adapter", - "Weight": 0.127, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_svd_s_lynxarms_sch_svd_s.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "6197b229af1f5202c57a9bec", - "_parent": "6197b229af1f5202c57a9bea", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ade1442459771557167e15", - "5a33ca0fc4a282000d72292f", - "5c0faeddd174af02a962601f", - "5649be884bdc2d79388b4577", - "5d120a10d7ad1a4e1026ba85", - "5b0800175acfc400153aebd4", - "5bb20e58d4351e00320205d7", - "5947e98b86f774778f1448bc", - "5947eab886f77475961d96c5", - "5ef1ba28c64c5d0dfc0571a5", - "602e3f1254072b51b239f713", - "5c793fb92e221644f31bfb64", - "5c793fc42e221600114ca25d", - "591aef7986f774139d495f03", - "591af10186f774139d495f0e", - "627254cc9c563e6e442c398f", - "638de3603a1a4031d8260b8c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -0.5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b1c04bdc2d16268b457c" - }, - "61f803b8ced75b2e852e35f8": { - "_id": "61f803b8ced75b2e852e35f8", - "_name": "stock_mp18_izhmash_plastic", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "Приклад деревянный МР-133/153", - "ShortName": "133/153 Д.п.", - "Description": "Деревянный приклад для ружей МР-133 и МР-153 производства ИжМех с резиновым тыльником.", - "Weight": 0.47, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mp18_izhmash_plastic.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 1, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -22, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083be64bdc2d20478b456f" - }, - "6492e3a97df7d749100e29ee": { - "_id": "6492e3a97df7d749100e29ee", - "_name": "stock_pk_zid_plastic_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak74_izhmash_ak74_std_wood", - "ShortName": "stock_ak74_izhmash_ak74_std_wood", - "Description": "stock_ak74_izhmash_ak74_std_wood", - "Weight": 0.5, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_pk_zid_plastic_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -20, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4.5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "5e848db4681bea2ada00daa9": { - "_id": "5e848db4681bea2ada00daa9", - "_name": "stock_ks23_toz_ks23_std_wood", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ks23_toz_ks23_std_wood", - "ShortName": "stock_ks23_toz_ks23_std_wood", - "Description": "stock_ks23_toz_ks23_std_wood\n", - "Weight": 0.44, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ks23_toz_ks23_std_wood.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 1, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -24, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083be64bdc2d20478b456f" - }, - "606587e18900dc2d9a55b65f": { - "_id": "606587e18900dc2d9a55b65f", - "_name": "stock_ar15_cmmg_mil_spec_tube", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_cmmg_mil_spec_tube", - "ShortName": "stock_ar15_cmmg_mil_spec_tube", - "Description": "stock_ar15_cmmg_mil_spec_tube", - "Weight": 0.132, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_cmmg_mil_spec_tube.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock_000", - "_id": "606587e18900dc2d9a55b661", - "_parent": "606587e18900dc2d9a55b65f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc2369685fd526b824a5713", - "606587d11246154cad35d635", - "5a9eb32da2750c00171b3f9c", - "5bfe86df0db834001b734685", - "55d4ae6c4bdc2d8b2f8b456e", - "5c87a07c2e2216001219d4a2", - "5bb20e70d4351e0035629f8f", - "5beec8c20db834001d2c465c", - "5fbbaa86f9986c4cff3fe5f6", - "5fce16961f152d4312622bc9", - "5ae30c9a5acfc408fb139a03", - "5d135e83d7ad1a21b83f42d8", - "5d135ecbd7ad1a21c176542e", - "56eabf3bd2720b75698b4569", - "58d2946386f774496974c37e", - "58d2946c86f7744e271174b5", - "58d2947686f774485c6a1ee5", - "58d2947e86f77447aa070d53", - "5d44069ca4b9361ebd26fc37", - "5d4406a8a4b9361e4f6eb8b7", - "5947c73886f7747701588af5", - "5c793fde2e221601da358614", - "5b39f8db5acfc40016387a1b", - "628a85ee6b1d481ff772e9d5", - "602e620f9b513876d4338d9a", - "6516e91f609aaf354b34b3e2", - "6516e971a3d4c6497930b450", - "6529370c405a5f51dd023db8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b2314bdc2d79388b4576" - }, - "5cdeac22d7f00c000f26168f": { - "_id": "5cdeac22d7f00c000f26168f", - "_name": "stock_m700_magpul_pro_700_chasiss", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_m700_magpul_pro_700_chasiss", - "ShortName": "stock_m700_magpul_pro_700_chasiss", - "Description": "stock_m700_magpul_pro_700_chasiss", - "Weight": 1.72, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_m700_magpul_pro_700_chasiss.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5d25af8f8abbc3055079fec5", - "5cf12a15d7f00c05464b293f", - "5bfeaa0f0db834001b734927", - "5bfea7ad0db834001c38f1ee" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5cdeac22d7f00c000f261691", - "_parent": "5cdeac22d7f00c000f26168f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cdeac42d7f00c000d36ba73" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "5cdeac22d7f00c000f261692", - "_parent": "5cdeac22d7f00c000f26168f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cdeac5cd7f00c000f261694" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5cdeae19d7f00c0010373edb", - "_parent": "5cdeac22d7f00c000f26168f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cdeaca5d7f00c00b61c4b70" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5cdeae20d7f00c0010373edc", - "_parent": "5cdeac22d7f00c000f26168f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5cdeae29d7f00c000e7ce171", - "_parent": "5cdeac22d7f00c000f26168f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "5cdeae32d7f00c000f261696", - "_parent": "5cdeac22d7f00c000f26168f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5cdeae39d7f00c00110a6077", - "_parent": "5cdeac22d7f00c000f26168f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8e529829226ceb67c319", - "651a8bf3a8520e48047bf708" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 22, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 0.957, - "CoolFactor": 1.039, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649be884bdc2d79388b4577" - }, - "5b7d63cf5acfc4001876c8df": { - "_id": "5b7d63cf5acfc4001876c8df", - "_name": "stock_sa58_ds_arms_para_folding_stock", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_sa58_ds_arms_para_folding_stock", - "ShortName": "stock_sa58_ds_arms_para_folding_stock", - "Description": "stock_sa58_ds_arms_para_folding_stock", - "Weight": 0.8, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_sa58_ds_arms_para_folding_stock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -22, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 1, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "61f7b234ea4ab34f2f59c3ec": { - "_id": "61f7b234ea4ab34f2f59c3ec", - "_name": "stock_mp18_izhmash_wood", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "Приклад деревянный МР-133/153", - "ShortName": "133/153 Д.п.", - "Description": "Деревянный приклад для ружей МР-133 и МР-153 производства ИжМех с резиновым тыльником.", - "Weight": 0.56, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mp18_izhmash_wood.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 1, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -22, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083be64bdc2d20478b456f" - }, - "59e89d0986f77427600d226e": { - "_id": "59e89d0986f77427600d226e", - "_name": "stock_ak_molot_vpo_209", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak_molot_vpo_209", - "ShortName": "stock_ak_molot_vpo_209", - "Description": "stock_ak_molot_vpo_209", - "Weight": 0.45, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_molot_vpo_209.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5a0d579f1526d800a31710bb", - "_parent": "59e89d0986f77427600d226e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a0c59791526d8dba737bba7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 90, - "Accuracy": 0, - "Recoil": -22, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, "5d0236dad7ad1a0940739d29": { "_id": "5d0236dad7ad1a0940739d29", "_name": "stock_sks_fab_defence_uas_sks", @@ -30614,23 +29071,23 @@ }, "_proto": "55d4ae6c4bdc2d8b2f8b456e" }, - "5c471b5d2e221602b21d4e14": { - "_id": "5c471b5d2e221602b21d4e14", - "_name": "stock_svd_s_izhmash_svd_s_std", + "59e89d0986f77427600d226e": { + "_id": "59e89d0986f77427600d226e", + "_name": "stock_ak_molot_vpo_209", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_ak74m_izhmash_ak74m_std", - "ShortName": "stock_ak74m_izhmash_ak74m_std", - "Description": "stock_ak74m_izhmash_ak74m_std", - "Weight": 0.35, + "Name": "stock_ak_molot_vpo_209", + "ShortName": "stock_ak_molot_vpo_209", + "Description": "stock_ak_molot_vpo_209", + "Weight": 0.45, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_svd_s_izhmash_svd_s_std.bundle", + "path": "assets/content/items/mods/stocks/stock_ak_molot_vpo_209.bundle", "rcid": "" }, "UsePrefab": { @@ -30648,7 +29105,116 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 3, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5a0d579f1526d800a31710bb", + "_parent": "59e89d0986f77427600d226e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a0c59791526d8dba737bba7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 90, + "Accuracy": 0, + "Recoil": -22, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "61f7b234ea4ab34f2f59c3ec": { + "_id": "61f7b234ea4ab34f2f59c3ec", + "_name": "stock_mp18_izhmash_wood", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "Приклад деревянный МР-133/153", + "ShortName": "133/153 Д.п.", + "Description": "Деревянный приклад для ружей МР-133 и МР-153 производства ИжМех с резиновым тыльником.", + "Weight": 0.56, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_mp18_izhmash_wood.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 1, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -30683,7 +29249,7 @@ "Recoil": -22, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 8, + "Ergonomics": 6, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -30694,15 +29260,15 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "IsShoulderContact": true, + "IsShoulderContact": false, "Foldable": false, "Retractable": false, - "SizeReduceRight": 1, + "SizeReduceRight": 0, "HeatFactor": 1, "CoolFactor": 1, "DurabilityBurnModificator": 1 }, - "_proto": "5649b0fc4bdc2d17108b4588" + "_proto": "56083be64bdc2d20478b456f" }, "628b9a40717774443b15e9f2": { "_id": "628b9a40717774443b15e9f2", @@ -30840,6 +29406,96 @@ }, "_proto": "5649b2314bdc2d79388b4576" }, + "5c471b5d2e221602b21d4e14": { + "_id": "5c471b5d2e221602b21d4e14", + "_name": "stock_svd_s_izhmash_svd_s_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak74m_izhmash_ak74m_std", + "ShortName": "stock_ak74m_izhmash_ak74m_std", + "Description": "stock_ak74m_izhmash_ak74m_std", + "Weight": 0.35, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_svd_s_izhmash_svd_s_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -22, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 1, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, "5d25d0ac8abbc3054f3e61f7": { "_id": "5d25d0ac8abbc3054f3e61f7", "_name": "stock_m700_ai_at_aics_chasiss", @@ -30956,23 +29612,23 @@ }, "_proto": "56083be64bdc2d20478b456f" }, - "5926d40686f7740f152b6b7e": { - "_id": "5926d40686f7740f152b6b7e", - "_name": "stock_mp5_hk_a3_std", + "6492d7847363b8a52206bc52": { + "_id": "6492d7847363b8a52206bc52", + "_name": "stock_pk_zenit_pt2_classic", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_mp5_hk_a3_std", - "ShortName": "stock_mp5_hk_a3_std", - "Description": "stock_mp5_hk_a3_std", - "Weight": 0.43, + "Name": "stock_ak74_izhmash_ak74_std_wood", + "ShortName": "stock_ak74_izhmash_ak74_std_wood", + "Description": "stock_ak74_izhmash_ak74_std_wood", + "Weight": 0.643, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mp5_hk_a3_std.bundle", + "path": "assets/content/items/mods/stocks/stock_pk_zenit_pt2_classic.bundle", "rcid": "" }, "UsePrefab": { @@ -31017,17 +29673,58 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_stock_000", + "_id": "6492d7ff7df7d749100e29db", + "_parent": "6492d7847363b8a52206bc52", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a0c59791526d8dba737bba7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistolgrip_000", + "_id": "6492d7ff7df7d749100e29dc", + "_parent": "6492d7847363b8a52206bc52", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649ad3f4bdc2df8348b4585", + "59e62cc886f77440d40b52a1", + "59e6318286f77444dd62c4cc", + "5649ade84bdc2d1b2b8b4587", + "57e3dba62459770f0c32322b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -23, + "Recoil": -21, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 7, + "Ergonomics": -3, "Velocity": 0, - "RaidModdable": true, + "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -31046,23 +29743,23 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, - "602e3f1254072b51b239f713": { - "_id": "602e3f1254072b51b239f713", - "_name": "stock_ar15_stm_com_spec_std", + "56083be64bdc2d20478b456f": { + "_id": "56083be64bdc2d20478b456f", + "_name": "stock_mr133_plastic_long", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_ar15_stm_com_spec_std", - "ShortName": "stock_ar15_stm_com_spec_std", - "Description": "stock_ar15_stm_com_spec_std", - "Weight": 0.162, + "Name": "Приклад пластиковый МР-133/153", + "ShortName": "133/153 Пл.п.", + "Description": "Пластиковый приклад с резиновым тыльником, для ружей МР-133 и МР-153 производства ИжМех.", + "Weight": 0.46, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_stmarms_com_spec_std.bundle", + "path": "assets/content/items/mods/stocks/stock_mr133_plastic_long.bundle", "rcid": "" }, "UsePrefab": { @@ -31080,7 +29777,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 5, + "ExamineExperience": 1, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -31088,7 +29785,7 @@ "ExtraSizeRight": 1, "ExtraSizeUp": 0, "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, + "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, @@ -31107,61 +29804,15 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_stock_000", - "_id": "602e3f1254072b51b239f715", - "_parent": "602e3f1254072b51b239f713", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc2369685fd526b824a5713", - "606587d11246154cad35d635", - "602e620f9b513876d4338d9a", - "5a9eb32da2750c00171b3f9c", - "5bfe86df0db834001b734685", - "55d4ae6c4bdc2d8b2f8b456e", - "5c87a07c2e2216001219d4a2", - "5bb20e70d4351e0035629f8f", - "5beec8c20db834001d2c465c", - "5fbbaa86f9986c4cff3fe5f6", - "5fce16961f152d4312622bc9", - "5ae30c9a5acfc408fb139a03", - "5d135e83d7ad1a21b83f42d8", - "5d135ecbd7ad1a21c176542e", - "56eabf3bd2720b75698b4569", - "58d2946386f774496974c37e", - "58d2946c86f7744e271174b5", - "58d2947686f774485c6a1ee5", - "58d2947e86f77447aa070d53", - "5d44069ca4b9361ebd26fc37", - "5d4406a8a4b9361e4f6eb8b7", - "5947c73886f7747701588af5", - "5c793fde2e221601da358614", - "5b39f8db5acfc40016387a1b", - "628a85ee6b1d481ff772e9d5", - "6516e91f609aaf354b34b3e2", - "6516e971a3d4c6497930b450", - "6529370c405a5f51dd023db8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -1, + "Recoil": -24, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, + "Ergonomics": 6, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -31180,7 +29831,7 @@ "CoolFactor": 1, "DurabilityBurnModificator": 1 }, - "_proto": "5649b2314bdc2d79388b4576" + "_proto": "55d4ae6c4bdc2d8b2f8b456e" }, "5addc7005acfc4001669f275": { "_id": "5addc7005acfc4001669f275", @@ -31472,6 +30123,142 @@ }, "_proto": "5649be884bdc2d79388b4577" }, + "602e3f1254072b51b239f713": { + "_id": "602e3f1254072b51b239f713", + "_name": "stock_ar15_stm_com_spec_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_stm_com_spec_std", + "ShortName": "stock_ar15_stm_com_spec_std", + "Description": "stock_ar15_stm_com_spec_std", + "Weight": 0.162, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_stmarms_com_spec_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock_000", + "_id": "602e3f1254072b51b239f715", + "_parent": "602e3f1254072b51b239f713", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fc2369685fd526b824a5713", + "606587d11246154cad35d635", + "602e620f9b513876d4338d9a", + "5a9eb32da2750c00171b3f9c", + "5bfe86df0db834001b734685", + "55d4ae6c4bdc2d8b2f8b456e", + "5c87a07c2e2216001219d4a2", + "5bb20e70d4351e0035629f8f", + "5beec8c20db834001d2c465c", + "5fbbaa86f9986c4cff3fe5f6", + "5fce16961f152d4312622bc9", + "5ae30c9a5acfc408fb139a03", + "5d135e83d7ad1a21b83f42d8", + "5d135ecbd7ad1a21c176542e", + "56eabf3bd2720b75698b4569", + "58d2946386f774496974c37e", + "58d2946c86f7744e271174b5", + "58d2947686f774485c6a1ee5", + "58d2947e86f77447aa070d53", + "5d44069ca4b9361ebd26fc37", + "5d4406a8a4b9361e4f6eb8b7", + "5947c73886f7747701588af5", + "5c793fde2e221601da358614", + "5b39f8db5acfc40016387a1b", + "628a85ee6b1d481ff772e9d5", + "6516e91f609aaf354b34b3e2", + "6516e971a3d4c6497930b450", + "6529370c405a5f51dd023db8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b2314bdc2d79388b4576" + }, "58d2946386f774496974c37e": { "_id": "58d2946386f774496974c37e", "_name": "stock_ar15_magpul_moe_carbine_fde", @@ -31581,23 +30368,23 @@ }, "_proto": "55d4ae6c4bdc2d8b2f8b456e" }, - "623b2e9d11c3296b440d1638": { - "_id": "623b2e9d11c3296b440d1638", - "_name": "stock_sv-98_cnc_guns_ov_sv98", + "638de3603a1a4031d8260b8c": { + "_id": "638de3603a1a4031d8260b8c", + "_name": "stock_ar15_rtm_atp_buffer_tube", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "SKS stock", - "ShortName": "SKS stock", - "Description": "SKS stock", - "Weight": 0.55, + "Name": "stock_ar15_colt_stock_tube_A2", + "ShortName": "stock_ar15_colt_stock_tube_A2", + "Description": "stock_ar15_colt_stock_tube_A2", + "Weight": 0.115, "BackgroundColor": "blue", - "Width": 3, + "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_sv-98_cnc_guns_ov_sv98.bundle", + "path": "assets/content/items/mods/stocks/stock_ar15_rtm_atp_buffer_tube.bundle", "rcid": "" }, "UsePrefab": { @@ -31614,16 +30401,16 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, + "LootExperience": 10, + "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, - "ExtraSizeRight": 2, + "ExtraSizeRight": 1, "ExtraSizeUp": 0, "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, + "ExtraSizeForceAdd": true, "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, @@ -31643,76 +30430,43 @@ "IsUnremovable": false, "Grids": [], "Slots": [ - { - "_name": "mod_handguard", - "_id": "623c3ca32e96be66a800672f", - "_parent": "623b2e9d11c3296b440d1638", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "623c3c1f37b4b31470357737" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "623c3cc6f081de3a00443028", - "_parent": "623b2e9d11c3296b440d1638", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "623c3be0484b5003161840dc", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_stock_000", - "_id": "624c2a8809cd027dff2f8cd9", - "_parent": "623b2e9d11c3296b440d1638", + "_id": "638de3603a1a4031d8260b8d", + "_parent": "638de3603a1a4031d8260b8c", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "624c29ce09cd027dff2f8cd7" + "5fc2369685fd526b824a5713", + "606587d11246154cad35d635", + "602e620f9b513876d4338d9a", + "5a9eb32da2750c00171b3f9c", + "5bfe86df0db834001b734685", + "55d4ae6c4bdc2d8b2f8b456e", + "5c87a07c2e2216001219d4a2", + "5bb20e70d4351e0035629f8f", + "5beec8c20db834001d2c465c", + "5ae30c9a5acfc408fb139a03", + "5d135e83d7ad1a21b83f42d8", + "5d135ecbd7ad1a21c176542e", + "56eabf3bd2720b75698b4569", + "58d2946386f774496974c37e", + "58d2946c86f7744e271174b5", + "58d2947686f774485c6a1ee5", + "58d2947e86f77447aa070d53", + "5d44069ca4b9361ebd26fc37", + "5d4406a8a4b9361e4f6eb8b7", + "5947c73886f7747701588af5", + "5c793fde2e221601da358614", + "5b39f8db5acfc40016387a1b", + "628a85ee6b1d481ff772e9d5", + "5fbbaa86f9986c4cff3fe5f6", + "5fce16961f152d4312622bc9", + "6516e91f609aaf354b34b3e2", + "6516e971a3d4c6497930b450", + "6529370c405a5f51dd023db8" ] } ] @@ -31726,47 +30480,47 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -4, + "Recoil": -1.5, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 10, + "Ergonomics": 0, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, - "IsAnimated": true, + "IsAnimated": false, "HasShoulderContact": true, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": true, + "IsShoulderContact": false, + "Foldable": false, "Retractable": false, - "SizeReduceRight": 1, - "HeatFactor": 1.052, - "CoolFactor": 0.953, - "DurabilityBurnModificator": 1 + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 0.97 }, - "_proto": "56083cba4bdc2de22e8b456f" + "_proto": "5649b2314bdc2d79388b4576" }, - "57dc347d245977596754e7a1": { - "_id": "57dc347d245977596754e7a1", - "_name": "stock_aks74u_izhmash_aks74u_std", + "61f803b8ced75b2e852e35f8": { + "_id": "61f803b8ced75b2e852e35f8", + "_name": "stock_mp18_izhmash_plastic", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_aks74u_izhmash_aks74u_std", - "ShortName": "stock_aks74u_izhmash_aks74u_std", - "Description": "stock_aks74u_izhmash_aks74u_std", - "Weight": 0.218, + "Name": "Приклад деревянный МР-133/153", + "ShortName": "133/153 Д.п.", + "Description": "Деревянный приклад для ружей МР-133 и МР-153 производства ИжМех с резиновым тыльником.", + "Weight": 0.47, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_aks74u_izhmash_aks74u_std.bundle", + "path": "assets/content/items/mods/stocks/stock_mp18_izhmash_plastic.bundle", "rcid": "" }, "UsePrefab": { @@ -31784,7 +30538,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 3, + "ExamineExperience": 1, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -31811,18 +30565,134 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -22, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083be64bdc2d20478b456f" + }, + "606587e18900dc2d9a55b65f": { + "_id": "606587e18900dc2d9a55b65f", + "_name": "stock_ar15_cmmg_mil_spec_tube", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_cmmg_mil_spec_tube", + "ShortName": "stock_ar15_cmmg_mil_spec_tube", + "Description": "stock_ar15_cmmg_mil_spec_tube", + "Weight": 0.132, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_cmmg_mil_spec_tube.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], "Slots": [ { - "_name": "mod_stock", - "_id": "5a0d587d1526d8dbaf658738", - "_parent": "57dc347d245977596754e7a1", + "_name": "mod_stock_000", + "_id": "606587e18900dc2d9a55b661", + "_parent": "606587e18900dc2d9a55b65f", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a0c59791526d8dba737bba7", - "6494094948796d891603e59f" + "5fc2369685fd526b824a5713", + "606587d11246154cad35d635", + "5a9eb32da2750c00171b3f9c", + "5bfe86df0db834001b734685", + "55d4ae6c4bdc2d8b2f8b456e", + "5c87a07c2e2216001219d4a2", + "5bb20e70d4351e0035629f8f", + "5beec8c20db834001d2c465c", + "5fbbaa86f9986c4cff3fe5f6", + "5fce16961f152d4312622bc9", + "5ae30c9a5acfc408fb139a03", + "5d135e83d7ad1a21b83f42d8", + "5d135ecbd7ad1a21c176542e", + "56eabf3bd2720b75698b4569", + "58d2946386f774496974c37e", + "58d2946c86f7744e271174b5", + "58d2947686f774485c6a1ee5", + "58d2947e86f77447aa070d53", + "5d44069ca4b9361ebd26fc37", + "5d4406a8a4b9361e4f6eb8b7", + "5947c73886f7747701588af5", + "5c793fde2e221601da358614", + "5b39f8db5acfc40016387a1b", + "628a85ee6b1d481ff772e9d5", + "602e620f9b513876d4338d9a", + "6516e91f609aaf354b34b3e2", + "6516e971a3d4c6497930b450", + "6529370c405a5f51dd023db8" ] } ] @@ -31836,10 +30706,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -21, + "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 10, + "Ergonomics": 0, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -31850,33 +30720,158 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "IsShoulderContact": true, + "IsShoulderContact": false, "Foldable": false, "Retractable": false, - "SizeReduceRight": 1, + "SizeReduceRight": 0, "HeatFactor": 1, "CoolFactor": 1, "DurabilityBurnModificator": 1 }, - "_proto": "5649b0fc4bdc2d17108b4588" + "_proto": "5649b2314bdc2d79388b4576" }, - "5926d3c686f77410de68ebc8": { - "_id": "5926d3c686f77410de68ebc8", - "_name": "stock_mp5_hk_a2_std", + "6197b229af1f5202c57a9bea": { + "_id": "6197b229af1f5202c57a9bea", + "_name": "stock_svd_s_lynxarms_sch_svd_s", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_mp5_hk_a2_std", - "ShortName": "stock_mp5_hk_a2_std", - "Description": "stock_mp5_hk_a2_std", - "Weight": 0.396, + "Name": "stock_ak_utg_sfs_adapter", + "ShortName": "stock_ak_utg_sfs_adapter", + "Description": "stock_ak_utg_sfs_adapter", + "Weight": 0.127, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_svd_s_lynxarms_sch_svd_s.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "6197b229af1f5202c57a9bec", + "_parent": "6197b229af1f5202c57a9bea", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ade1442459771557167e15", + "5a33ca0fc4a282000d72292f", + "5c0faeddd174af02a962601f", + "5649be884bdc2d79388b4577", + "5d120a10d7ad1a4e1026ba85", + "5b0800175acfc400153aebd4", + "5bb20e58d4351e00320205d7", + "5947e98b86f774778f1448bc", + "5947eab886f77475961d96c5", + "5ef1ba28c64c5d0dfc0571a5", + "602e3f1254072b51b239f713", + "5c793fb92e221644f31bfb64", + "5c793fc42e221600114ca25d", + "591aef7986f774139d495f03", + "591af10186f774139d495f0e", + "627254cc9c563e6e442c398f", + "638de3603a1a4031d8260b8c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -0.5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b1c04bdc2d16268b457c" + }, + "6492e3a97df7d749100e29ee": { + "_id": "6492e3a97df7d749100e29ee", + "_name": "stock_pk_zid_plastic_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak74_izhmash_ak74_std_wood", + "ShortName": "stock_ak74_izhmash_ak74_std_wood", + "Description": "stock_ak74_izhmash_ak74_std_wood", + "Weight": 0.5, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mp5_hk_a2_std.bundle", + "path": "assets/content/items/mods/stocks/stock_pk_zid_plastic_std.bundle", "rcid": "" }, "UsePrefab": { @@ -31926,12 +30921,12 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -24, + "Recoil": -20, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 6, + "Ergonomics": 4.5, "Velocity": 0, - "RaidModdable": true, + "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -31950,23 +30945,113 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, - "622f14e899892a7f9e08f6c5": { - "_id": "622f14e899892a7f9e08f6c5", - "_name": "stock_g36_hk_kv_3_adjustable", + "5e848db4681bea2ada00daa9": { + "_id": "5e848db4681bea2ada00daa9", + "_name": "stock_ks23_toz_ks23_std_wood", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_ak74m_izhmash_ak74m_std", - "ShortName": "stock_ak74m_izhmash_ak74m_std", - "Description": "stock_ak74m_izhmash_ak74m_std", - "Weight": 0.907, + "Name": "stock_ks23_toz_ks23_std_wood", + "ShortName": "stock_ks23_toz_ks23_std_wood", + "Description": "stock_ks23_toz_ks23_std_wood\n", + "Weight": 0.44, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_g36_hk_kv_3_adjustable.bundle", + "path": "assets/content/items/mods/stocks/stock_ks23_toz_ks23_std_wood.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 1, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -24, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083be64bdc2d20478b456f" + }, + "5b7d63cf5acfc4001876c8df": { + "_id": "5b7d63cf5acfc4001876c8df", + "_name": "stock_sa58_ds_arms_para_folding_stock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_sa58_ds_arms_para_folding_stock", + "ShortName": "stock_sa58_ds_arms_para_folding_stock", + "Description": "stock_sa58_ds_arms_para_folding_stock", + "Weight": 0.8, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_sa58_ds_arms_para_folding_stock.bundle", "rcid": "" }, "UsePrefab": { @@ -32019,13 +31104,13 @@ "Recoil": -22, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 1, + "Ergonomics": 3, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, - "IsAnimated": true, + "IsAnimated": false, "HasShoulderContact": true, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, @@ -32040,113 +31125,23 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, - "5fbcc429900b1d5091531dd7": { - "_id": "5fbcc429900b1d5091531dd7", - "_name": "stock_all_sig_telescoping_stock", + "5a7880d0c5856700142fdd9d": { + "_id": "5a7880d0c5856700142fdd9d", + "_name": "stock_870_remington_sps_12g", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_all_sig_mpx_mcx_early_type", - "ShortName": "stock_all_sig_mpx_mcx_early_type", - "Description": "stock_all_sig_mpx_mcx_early_type", - "Weight": 0.336, + "Name": "stock_870_remington_sps_12g", + "ShortName": "stock_870_remington_sps_12g", + "Description": "stock_870_remington_sps_12g\n", + "Weight": 0.64, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_all_sig_telescoping_stock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -20, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "5e848dc4e4dbc5266a4ec63d": { - "_id": "5e848dc4e4dbc5266a4ec63d", - "_name": "stock_ks23_toz_ks23_std_metal", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ks23_toz_ks23_std_metal", - "ShortName": "stock_ks23_toz_ks23_std_metal", - "Description": "stock_ks23_toz_ks23_std_metal", - "Weight": 0.26, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ks23_toz_ks23_std_metal.bundle", + "path": "assets/content/items/mods/stocks/stock_870_remington_sps_12g.bundle", "rcid": "" }, "UsePrefab": { @@ -32196,10 +31191,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -18, + "Recoil": -24, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 11, + "Ergonomics": 6, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -32220,1049 +31215,6 @@ }, "_proto": "56083be64bdc2d20478b456f" }, - "6452519e3d52156624001fd5": { - "_id": "6452519e3d52156624001fd5", - "_name": "stock_vsk94_kbp_vsk94_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "", - "ShortName": "", - "Description": "", - "Weight": 0.7, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_vsk94_kbp_vsk94_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -23, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 15, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "57616ca52459773c69055192" - }, - "5cc700cae4a949035e43ba72": { - "_id": "5cc700cae4a949035e43ba72", - "_name": "stock_p90_fn_p90_butt_pad_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak_izhmash_6g15u_butt_pad", - "ShortName": "stock_ak_izhmash_6g15u_butt_pad", - "Description": "stock_ak_izhmash_6g15u_butt_pad", - "Weight": 0.06, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_p90_fn_p90_butt_pad_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": true, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "58d2912286f7744e27117493" - }, - "5a78813bc5856700186c4abe": { - "_id": "5a78813bc5856700186c4abe", - "_name": "stock_870_magpul_sga", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_870_magpul_sga", - "ShortName": "stock_870_magpul_sga", - "Description": "stock_870_magpul_sga", - "Weight": 0.5, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_870_magpul_sga.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 1, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -29, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083be64bdc2d20478b456f" - }, - "646371a9f2404ab67905c8e6": { - "_id": "646371a9f2404ab67905c8e6", - "_name": "stock_pk_zid_wood_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak74_izhmash_ak74_std_wood", - "ShortName": "stock_ak74_izhmash_ak74_std_wood", - "Description": "stock_ak74_izhmash_ak74_std_wood", - "Weight": 0.6, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_pk_zid_wood_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -20, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "58ac1bf086f77420ed183f9f": { - "_id": "58ac1bf086f77420ed183f9f", - "_name": "stock_all_sig_folding_knuckle", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "Переходник ME для АК", - "ShortName": "МЕ4", - "Description": "Адаптер для установки трубы под телескопические приклады на АК с нескладными прикладами.", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_all_sig_folding_knuckle.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "58ac1bf086f77420ed183fa0", - "_parent": "58ac1bf086f77420ed183f9f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ade1442459771557167e15", - "5a33ca0fc4a282000d72292f", - "5c0faeddd174af02a962601f", - "5649be884bdc2d79388b4577", - "5d120a10d7ad1a4e1026ba85", - "5b0800175acfc400153aebd4", - "5947e98b86f774778f1448bc", - "5947eab886f77475961d96c5", - "5ef1ba28c64c5d0dfc0571a5", - "602e3f1254072b51b239f713", - "5c793fb92e221644f31bfb64", - "5c793fc42e221600114ca25d", - "591aef7986f774139d495f03", - "591af10186f774139d495f0e", - "627254cc9c563e6e442c398f", - "638de3603a1a4031d8260b8c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b1c04bdc2d16268b457c" - }, - "617154aa1cb55961fa0fdb3b": { - "_id": "617154aa1cb55961fa0fdb3b", - "_name": "stock_417_hk_417_concave_e2", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_hk_slim_line", - "ShortName": "stock_ar15_hk_slim_line", - "Description": "stock_ar15_hk_slim_line", - "Weight": 0.39, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_417_hk_417_concave_e2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -23, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "5b222d335acfc4771e1be099": { - "_id": "5b222d335acfc4771e1be099", - "_name": "stock_ak_zenit_pt_1_lock_fixed", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak_zenit_pt_1_lock_fixed", - "ShortName": "stock_ak_zenit_pt_1_lock_fixed", - "Description": "stock_ak_zenit_pt_1_lock_fixed\n", - "Weight": 0.03, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_zenit_pt_1_lock_fixed.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5b222d335acfc4771e1be09b", - "_parent": "5b222d335acfc4771e1be099", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b222d405acfc400153af4fe" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b1c04bdc2d16268b457c" - }, - "606587d11246154cad35d635": { - "_id": "606587d11246154cad35d635", - "_name": "stock_ar15_cmmg_ripstock_micro", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_cmmg_ripstock_micro", - "ShortName": "stock_ar15_cmmg_ripstock_micro", - "Description": "stock_ar15_cmmg_ripstock_micro", - "Weight": 0.28, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_cmmg_ripstock_micro.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -19, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "5adf23995acfc400185c2aeb": { - "_id": "5adf23995acfc400185c2aeb", - "_name": "stock_toz-106_toz_full_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_toz-106_toz_short_std_wood", - "ShortName": "stock_toz-106_toz_short_std_wood", - "Description": "stock_toz-106_toz_short_std_wood", - "Weight": 1.25, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_toz-106_toz_full_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -27, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 2, - "HeatFactor": 1.032, - "CoolFactor": 0.966, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "5beec8c20db834001d2c465c": { - "_id": "5beec8c20db834001d2c465c", - "_name": "stock_ar15_izhmash_ak12_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_lmt_sopmod", - "ShortName": "stock_ar15_lmt_sopmod", - "Description": "stock_ar15_lmt_sopmod", - "Weight": 0.148, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_izhmash_ak12_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -21, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "618167616ef05c2ce828f1a8": { - "_id": "618167616ef05c2ce828f1a8", - "_name": "stock_mk16_fn_scar_stock_butt_pad", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak74m_izhmash_ak74m_std", - "ShortName": "stock_ak74m_izhmash_ak74m_std", - "Description": "stock_ak74m_izhmash_ak74m_std", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mk16_fn_scar_stock_butt_pad.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, "5b7d64555acfc4001876c8e2": { "_id": "5b7d64555acfc4001876c8e2", "_name": "stock_sa58_ds_arms_para_brs", @@ -33443,23 +31395,23 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, - "599851db86f77467372f0a18": { - "_id": "599851db86f77467372f0a18", - "_name": "stock_pp-19-01_izhmash_vityaz_std", + "612781056f3d944a17348d60": { + "_id": "612781056f3d944a17348d60", + "_name": "stock_mc255_ckib_255_std_wood", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_pp-19-01_izhmash_vityaz_std", - "ShortName": "stock_pp-19-01_izhmash_vityaz_std", - "Description": "stock_pp-19-01_izhmash_vityaz_std", - "Weight": 0.218, + "Name": "stock_ak74_izhmash_ak74_std_wood", + "ShortName": "stock_ak74_izhmash_ak74_std_wood", + "Description": "stock_ak74_izhmash_ak74_std_wood", + "Weight": 0.45, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_pp-19-01_izhmash_vityaz_std.bundle", + "path": "assets/content/items/mods/stocks/stock_mc255_ckib_255_std_wood.bundle", "rcid": "" }, "UsePrefab": { @@ -33504,18 +31456,107 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -23, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 0.3, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "5b222d405acfc400153af4fe": { + "_id": "5b222d405acfc400153af4fe", + "_name": "stock_ak_zenit_pt_1", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak_zenit_pt_1", + "ShortName": "stock_ak_zenit_pt_1", + "Description": "stock_ak_zenit_pt_1", + "Weight": 0.29, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak_zenit_pt_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], "Slots": [ { - "_name": "mod_stock", - "_id": "5a0d58a01526d8dba31fe3bc", - "_parent": "599851db86f77467372f0a18", + "_name": "mod_stock_000", + "_id": "6572d76bf1a7570edd43dc17", + "_parent": "5b222d405acfc400153af4fe", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a0c59791526d8dba737bba7", - "6494094948796d891603e59f" + "5a0c59791526d8dba737bba7" ] } ] @@ -33529,12 +31570,12 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -24, + "Recoil": -26, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 6, + "Ergonomics": 9, "Velocity": 0, - "RaidModdable": true, + "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -33643,105 +31684,15 @@ }, "_proto": "55d4ae6c4bdc2d8b2f8b456e" }, - "6410745d5dd49d77bd078485": { - "_id": "6410745d5dd49d77bd078485", - "_name": "stock_avt40_toz_wood_std", + "59e6227d86f77440d64f5dc2": { + "_id": "59e6227d86f77440d64f5dc2", + "_name": "stock_ak_molot_vepr_km_vpo_136", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "SKS stock", - "ShortName": "SKS stock", - "Description": "SKS stock", - "Weight": 1.217, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_avt40_toz_wood_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -18, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1.11, - "CoolFactor": 0.95, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083cba4bdc2de22e8b456f" - }, - "59d6514b86f774171a068a08": { - "_id": "59d6514b86f774171a068a08", - "_name": "stock_ak_izhmash_akm_std_wood", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak_izhmash_akm_std_wood", - "ShortName": "stock_ak_izhmash_akm_std_wood", - "Description": "stock_ak_izhmash_akm_std_wood", + "Name": "stock_ak_molot_vepr_km_vpo_136", + "ShortName": "stock_ak_molot_vepr_km_vpo_136", + "Description": "stock_ak_molot_vepr_km_vpo_136", "Weight": 0.45, "BackgroundColor": "blue", "Width": 2, @@ -33749,7 +31700,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_izhmash_akm_std_wood.bundle", + "path": "assets/content/items/mods/stocks/stock_ak_molot_vepr_km_vpo_136.bundle", "rcid": "" }, "UsePrefab": { @@ -33797,8 +31748,8 @@ "Slots": [ { "_name": "mod_stock", - "_id": "5a0d574c1526d8dba31fe3bb", - "_parent": "59d6514b86f774171a068a08", + "_id": "5a0d577f1526d805dc1ebada", + "_parent": "59e6227d86f77440d64f5dc2", "_props": { "filters": [ { @@ -33816,7 +31767,7 @@ ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, + "Durability": 90, "Accuracy": 0, "Recoil": -22, "Loudness": 0, @@ -34022,15 +31973,105 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, - "59e6227d86f77440d64f5dc2": { - "_id": "59e6227d86f77440d64f5dc2", - "_name": "stock_ak_molot_vepr_km_vpo_136", + "6410745d5dd49d77bd078485": { + "_id": "6410745d5dd49d77bd078485", + "_name": "stock_avt40_toz_wood_std", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_ak_molot_vepr_km_vpo_136", - "ShortName": "stock_ak_molot_vepr_km_vpo_136", - "Description": "stock_ak_molot_vepr_km_vpo_136", + "Name": "SKS stock", + "ShortName": "SKS stock", + "Description": "SKS stock", + "Weight": 1.217, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_avt40_toz_wood_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -18, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1.11, + "CoolFactor": 0.95, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083cba4bdc2de22e8b456f" + }, + "59d6514b86f774171a068a08": { + "_id": "59d6514b86f774171a068a08", + "_name": "stock_ak_izhmash_akm_std_wood", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak_izhmash_akm_std_wood", + "ShortName": "stock_ak_izhmash_akm_std_wood", + "Description": "stock_ak_izhmash_akm_std_wood", "Weight": 0.45, "BackgroundColor": "blue", "Width": 2, @@ -34038,7 +32079,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_molot_vepr_km_vpo_136.bundle", + "path": "assets/content/items/mods/stocks/stock_ak_izhmash_akm_std_wood.bundle", "rcid": "" }, "UsePrefab": { @@ -34086,8 +32127,8 @@ "Slots": [ { "_name": "mod_stock", - "_id": "5a0d577f1526d805dc1ebada", - "_parent": "59e6227d86f77440d64f5dc2", + "_id": "5a0d574c1526d8dba31fe3bb", + "_parent": "59d6514b86f774171a068a08", "_props": { "filters": [ { @@ -34105,7 +32146,7 @@ ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "Durability": 90, + "Durability": 100, "Accuracy": 0, "Recoil": -22, "Loudness": 0, @@ -34221,6 +32262,2315 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, + "5e848dc4e4dbc5266a4ec63d": { + "_id": "5e848dc4e4dbc5266a4ec63d", + "_name": "stock_ks23_toz_ks23_std_metal", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ks23_toz_ks23_std_metal", + "ShortName": "stock_ks23_toz_ks23_std_metal", + "Description": "stock_ks23_toz_ks23_std_metal", + "Weight": 0.26, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ks23_toz_ks23_std_metal.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 1, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -18, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 11, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083be64bdc2d20478b456f" + }, + "5cc700cae4a949035e43ba72": { + "_id": "5cc700cae4a949035e43ba72", + "_name": "stock_p90_fn_p90_butt_pad_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak_izhmash_6g15u_butt_pad", + "ShortName": "stock_ak_izhmash_6g15u_butt_pad", + "Description": "stock_ak_izhmash_6g15u_butt_pad", + "Weight": 0.06, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_p90_fn_p90_butt_pad_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "58d2912286f7744e27117493" + }, + "5fbcc429900b1d5091531dd7": { + "_id": "5fbcc429900b1d5091531dd7", + "_name": "stock_all_sig_telescoping_stock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_all_sig_mpx_mcx_early_type", + "ShortName": "stock_all_sig_mpx_mcx_early_type", + "Description": "stock_all_sig_mpx_mcx_early_type", + "Weight": 0.336, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_all_sig_telescoping_stock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -20, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "622f14e899892a7f9e08f6c5": { + "_id": "622f14e899892a7f9e08f6c5", + "_name": "stock_g36_hk_kv_3_adjustable", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak74m_izhmash_ak74m_std", + "ShortName": "stock_ak74m_izhmash_ak74m_std", + "Description": "stock_ak74m_izhmash_ak74m_std", + "Weight": 0.907, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_g36_hk_kv_3_adjustable.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -22, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 1, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "62e292e7b6c0ee2f230cee00": { + "_id": "62e292e7b6c0ee2f230cee00", + "_name": "stock_sr2m_tochmash_sr2m_stock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_akms_izhmash_akms_std", + "ShortName": "stock_akms_izhmash_akms_std", + "Description": "stock_akms_izhmash_akms_std", + "Weight": 0.21, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_sr2m_tochmash_sr2m_stock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -19, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "5bb20e58d4351e00320205d7": { + "_id": "5bb20e58d4351e00320205d7", + "_name": "stock_ar15_hk_enhanced_stock_tube", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_colt_stock_tube_A2", + "ShortName": "stock_ar15_colt_stock_tube_A2", + "Description": "stock_ar15_colt_stock_tube_A2", + "Weight": 0.162, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_hk_enhanced_stock_tube.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock_000", + "_id": "5bb20e58d4351e00320205d9", + "_parent": "5bb20e58d4351e00320205d7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fc2369685fd526b824a5713", + "606587d11246154cad35d635", + "602e620f9b513876d4338d9a", + "5a9eb32da2750c00171b3f9c", + "5bfe86df0db834001b734685", + "55d4ae6c4bdc2d8b2f8b456e", + "5c87a07c2e2216001219d4a2", + "5bb20e70d4351e0035629f8f", + "5beec8c20db834001d2c465c", + "5ae30c9a5acfc408fb139a03", + "5d135e83d7ad1a21b83f42d8", + "5d135ecbd7ad1a21c176542e", + "56eabf3bd2720b75698b4569", + "58d2946386f774496974c37e", + "58d2946c86f7744e271174b5", + "58d2947686f774485c6a1ee5", + "58d2947e86f77447aa070d53", + "5d44069ca4b9361ebd26fc37", + "5d4406a8a4b9361e4f6eb8b7", + "5947c73886f7747701588af5", + "5c793fde2e221601da358614", + "5b39f8db5acfc40016387a1b", + "628a85ee6b1d481ff772e9d5", + "5fbbaa86f9986c4cff3fe5f6", + "5fce16961f152d4312622bc9", + "6516e91f609aaf354b34b3e2", + "6516e971a3d4c6497930b450", + "6529370c405a5f51dd023db8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 0.98 + }, + "_proto": "5649b2314bdc2d79388b4576" + }, + "623b2e9d11c3296b440d1638": { + "_id": "623b2e9d11c3296b440d1638", + "_name": "stock_sv-98_cnc_guns_ov_sv98", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "SKS stock", + "ShortName": "SKS stock", + "Description": "SKS stock", + "Weight": 0.55, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_sv-98_cnc_guns_ov_sv98.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 2, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_handguard", + "_id": "623c3ca32e96be66a800672f", + "_parent": "623b2e9d11c3296b440d1638", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "623c3c1f37b4b31470357737" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "623c3cc6f081de3a00443028", + "_parent": "623b2e9d11c3296b440d1638", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "623c3be0484b5003161840dc", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock_000", + "_id": "624c2a8809cd027dff2f8cd9", + "_parent": "623b2e9d11c3296b440d1638", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "624c29ce09cd027dff2f8cd7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": true, + "Retractable": false, + "SizeReduceRight": 1, + "HeatFactor": 1.052, + "CoolFactor": 0.953, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083cba4bdc2de22e8b456f" + }, + "5cf50fc5d7f00c056c53f83c": { + "_id": "5cf50fc5d7f00c056c53f83c", + "_name": "stock_ak_caa_akts_ak74", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "Труба приклада Colt", + "ShortName": "CST", + "Description": "Труба для установки телескопических прикладов производства компании Colt.", + "Weight": 0.25, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak_caa_akts_ak74.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5cf50fc5d7f00c056c53f83e", + "_parent": "5cf50fc5d7f00c056c53f83c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fc2369685fd526b824a5713", + "602e620f9b513876d4338d9a", + "5a9eb32da2750c00171b3f9c", + "5bfe86df0db834001b734685", + "55d4ae6c4bdc2d8b2f8b456e", + "5c87a07c2e2216001219d4a2", + "5bb20e70d4351e0035629f8f", + "5beec8c20db834001d2c465c", + "5fbbaa86f9986c4cff3fe5f6", + "5fce16961f152d4312622bc9", + "5ae30c9a5acfc408fb139a03", + "5d135e83d7ad1a21b83f42d8", + "5d135ecbd7ad1a21c176542e", + "56eabf3bd2720b75698b4569", + "58d2946386f774496974c37e", + "58d2946c86f7744e271174b5", + "58d2947686f774485c6a1ee5", + "58d2947e86f77447aa070d53", + "5d44069ca4b9361ebd26fc37", + "5d4406a8a4b9361e4f6eb8b7", + "5947c73886f7747701588af5", + "5c793fde2e221601da358614", + "5b39f8db5acfc40016387a1b", + "628a85ee6b1d481ff772e9d5", + "606587d11246154cad35d635", + "6516e971a3d4c6497930b450", + "6516e91f609aaf354b34b3e2", + "6529370c405a5f51dd023db8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b2314bdc2d79388b4576" + }, + "646371a9f2404ab67905c8e6": { + "_id": "646371a9f2404ab67905c8e6", + "_name": "stock_pk_zid_wood_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak74_izhmash_ak74_std_wood", + "ShortName": "stock_ak74_izhmash_ak74_std_wood", + "Description": "stock_ak74_izhmash_ak74_std_wood", + "Weight": 0.6, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_pk_zid_wood_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -20, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "5a33cae9c4a28232980eb086": { + "_id": "5a33cae9c4a28232980eb086", + "_name": "stock_ar15_magpul_prs_gen2_fde", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_magpul_prs_gen2_fde", + "ShortName": "stock_ar15_magpul_prs_gen2_fde", + "Description": "stock_ar15_magpul_prs_gen2_fde", + "Weight": 0.79, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_magpul_prs_gen2_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -24, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "5fc2369685fd526b824a5713": { + "_id": "5fc2369685fd526b824a5713", + "_name": "stock_ar15_b5_precision", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_b5_precision", + "ShortName": "stock_ar15_b5_precision", + "Description": "stock_ar15_b5_precision", + "Weight": 0.16, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_b5_precision.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -24, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "5b222d335acfc4771e1be099": { + "_id": "5b222d335acfc4771e1be099", + "_name": "stock_ak_zenit_pt_1_lock_fixed", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak_zenit_pt_1_lock_fixed", + "ShortName": "stock_ak_zenit_pt_1_lock_fixed", + "Description": "stock_ak_zenit_pt_1_lock_fixed\n", + "Weight": 0.03, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak_zenit_pt_1_lock_fixed.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5b222d335acfc4771e1be09b", + "_parent": "5b222d335acfc4771e1be099", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b222d405acfc400153af4fe" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b1c04bdc2d16268b457c" + }, + "5649be884bdc2d79388b4577": { + "_id": "5649be884bdc2d79388b4577", + "_name": "stock_ar15_colt_stock_tube_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "Труба приклада Colt", + "ShortName": "CST", + "Description": "Труба для установки телескопических прикладов производства компании Colt.", + "Weight": 0.162, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_colt_stock_tube_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock_000", + "_id": "5649dbce4bdc2d9d198b456c", + "_parent": "5649be884bdc2d79388b4577", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fc2369685fd526b824a5713", + "606587d11246154cad35d635", + "5a9eb32da2750c00171b3f9c", + "5bfe86df0db834001b734685", + "55d4ae6c4bdc2d8b2f8b456e", + "5c87a07c2e2216001219d4a2", + "5bb20e70d4351e0035629f8f", + "5beec8c20db834001d2c465c", + "5fbbaa86f9986c4cff3fe5f6", + "5fce16961f152d4312622bc9", + "5ae30c9a5acfc408fb139a03", + "5d135e83d7ad1a21b83f42d8", + "5d135ecbd7ad1a21c176542e", + "56eabf3bd2720b75698b4569", + "58d2946386f774496974c37e", + "58d2946c86f7744e271174b5", + "58d2947686f774485c6a1ee5", + "58d2947e86f77447aa070d53", + "5d44069ca4b9361ebd26fc37", + "5d4406a8a4b9361e4f6eb8b7", + "5947c73886f7747701588af5", + "5c793fde2e221601da358614", + "5b39f8db5acfc40016387a1b", + "628a85ee6b1d481ff772e9d5", + "602e620f9b513876d4338d9a", + "6516e91f609aaf354b34b3e2", + "6516e971a3d4c6497930b450", + "6529370c405a5f51dd023db8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b2314bdc2d79388b4576" + }, + "58ac1bf086f77420ed183f9f": { + "_id": "58ac1bf086f77420ed183f9f", + "_name": "stock_all_sig_folding_knuckle", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "Переходник ME для АК", + "ShortName": "МЕ4", + "Description": "Адаптер для установки трубы под телескопические приклады на АК с нескладными прикладами.", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_all_sig_folding_knuckle.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "58ac1bf086f77420ed183fa0", + "_parent": "58ac1bf086f77420ed183f9f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ade1442459771557167e15", + "5a33ca0fc4a282000d72292f", + "5c0faeddd174af02a962601f", + "5649be884bdc2d79388b4577", + "5d120a10d7ad1a4e1026ba85", + "5b0800175acfc400153aebd4", + "5947e98b86f774778f1448bc", + "5947eab886f77475961d96c5", + "5ef1ba28c64c5d0dfc0571a5", + "602e3f1254072b51b239f713", + "5c793fb92e221644f31bfb64", + "5c793fc42e221600114ca25d", + "591aef7986f774139d495f03", + "591af10186f774139d495f0e", + "627254cc9c563e6e442c398f", + "638de3603a1a4031d8260b8c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b1c04bdc2d16268b457c" + }, + "5abcd472d8ce8700166032ae": { + "_id": "5abcd472d8ce8700166032ae", + "_name": "stock_akms_izhmash_akmsn_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_akms_izhmash_akms_std", + "ShortName": "stock_akms_izhmash_akms_std", + "Description": "stock_akms_izhmash_akms_std", + "Weight": 0.6, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_akms_izhmash_akmsn_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5abcd472d8ce8700166032b0", + "_parent": "5abcd472d8ce8700166032ae", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a0c59791526d8dba737bba7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -21, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "606587d11246154cad35d635": { + "_id": "606587d11246154cad35d635", + "_name": "stock_ar15_cmmg_ripstock_micro", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_cmmg_ripstock_micro", + "ShortName": "stock_ar15_cmmg_ripstock_micro", + "Description": "stock_ar15_cmmg_ripstock_micro", + "Weight": 0.28, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_cmmg_ripstock_micro.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -19, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "5adf23995acfc400185c2aeb": { + "_id": "5adf23995acfc400185c2aeb", + "_name": "stock_toz-106_toz_full_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_toz-106_toz_short_std_wood", + "ShortName": "stock_toz-106_toz_short_std_wood", + "Description": "stock_toz-106_toz_short_std_wood", + "Weight": 1.25, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_toz-106_toz_full_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -27, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 2, + "HeatFactor": 1.032, + "CoolFactor": 0.966, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "59ecc28286f7746d7a68aa8c": { + "_id": "59ecc28286f7746d7a68aa8c", + "_name": "stock_ak_zenit_pt-3_lock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak_zenit_pt-3_lock", + "ShortName": "stock_ak_zenit_pt-3_lock", + "Description": "stock_ak_zenit_pt-3_lock\n\n", + "Weight": 0.03, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak_zenit_pt-3_lock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "59ecc28286f7746d7a68aa8d", + "_parent": "59ecc28286f7746d7a68aa8c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59ecc3dd86f7746dc827481c", + "5b222d405acfc400153af4fe" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b1c04bdc2d16268b457c" + }, + "617154aa1cb55961fa0fdb3b": { + "_id": "617154aa1cb55961fa0fdb3b", + "_name": "stock_417_hk_417_concave_e2", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_hk_slim_line", + "ShortName": "stock_ar15_hk_slim_line", + "Description": "stock_ar15_hk_slim_line", + "Weight": 0.39, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_417_hk_417_concave_e2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -23, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "5beec8c20db834001d2c465c": { + "_id": "5beec8c20db834001d2c465c", + "_name": "stock_ar15_izhmash_ak12_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_lmt_sopmod", + "ShortName": "stock_ar15_lmt_sopmod", + "Description": "stock_ar15_lmt_sopmod", + "Weight": 0.148, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_izhmash_ak12_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -21, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "618167616ef05c2ce828f1a8": { + "_id": "618167616ef05c2ce828f1a8", + "_name": "stock_mk16_fn_scar_stock_butt_pad", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak74m_izhmash_ak74m_std", + "ShortName": "stock_ak74m_izhmash_ak74m_std", + "Description": "stock_ak74m_izhmash_ak74m_std", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_mk16_fn_scar_stock_butt_pad.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "5cc700b9e4a949000f0f0f25": { + "_id": "5cc700b9e4a949000f0f0f25", + "_name": "stock_p90_fn_p90_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak74_izhmash_ak74_std_plastic", + "ShortName": "stock_ak74_izhmash_ak74_std_plastic", + "Description": "stock_ak74_izhmash_ak74_std_plastic", + "Weight": 0.4, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_p90_fn_p90_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock_000", + "_id": "5cc83904d7f00c000d3a6b5b", + "_parent": "5cc700b9e4a949000f0f0f25", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cc700d4e4a949000f0f0f28", + "5cc700cae4a949035e43ba72" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 26, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1.042, + "CoolFactor": 0.961, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, "5c0e2ff6d174af02a1659d4a": { "_id": "5c0e2ff6d174af02a1659d4a", "_name": "stock_ar15_adar_wood_v1", @@ -34350,6 +34700,96 @@ }, "_proto": "55d4ae6c4bdc2d8b2f8b456e" }, + "5947c73886f7747701588af5": { + "_id": "5947c73886f7747701588af5", + "_name": "stock_ar15_mft_bus", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_mft_bus", + "ShortName": "stock_ar15_mft_bus", + "Description": "stock_ar15_mft_bus", + "Weight": 0.255, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_mft_bus.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -22, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b2314bdc2d79388b4576" + }, "5bb20e70d4351e0035629f8f": { "_id": "5bb20e70d4351e0035629f8f", "_name": "stock_ar15_hk_slim_line", @@ -34588,342 +35028,6 @@ }, "_proto": "5649be884bdc2d79388b4577" }, - "5cc700b9e4a949000f0f0f25": { - "_id": "5cc700b9e4a949000f0f0f25", - "_name": "stock_p90_fn_p90_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak74_izhmash_ak74_std_plastic", - "ShortName": "stock_ak74_izhmash_ak74_std_plastic", - "Description": "stock_ak74_izhmash_ak74_std_plastic", - "Weight": 0.4, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_p90_fn_p90_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock_000", - "_id": "5cc83904d7f00c000d3a6b5b", - "_parent": "5cc700b9e4a949000f0f0f25", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cc700d4e4a949000f0f0f28", - "5cc700cae4a949035e43ba72" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 26, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1.042, - "CoolFactor": 0.961, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "57ade1442459771557167e15": { - "_id": "57ade1442459771557167e15", - "_name": "stock_ar15_armacon_baskak", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_armacon_baskak", - "ShortName": "stock_ar15_armacon_baskak", - "Description": "stock_ar15_armacon_baskak", - "Weight": 0.27, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_armacon_baskak.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -25, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649be884bdc2d79388b4577" - }, - "5c0faeddd174af02a962601f": { - "_id": "5c0faeddd174af02a962601f", - "_name": "stock_ar15_colt_stock_tube_com", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "Труба приклада Colt", - "ShortName": "CST", - "Description": "Труба для установки телескопических прикладов производства компании Colt.", - "Weight": 0.19, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_colt_stock_tube_com.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock_000", - "_id": "5c0faeddd174af02a9626021", - "_parent": "5c0faeddd174af02a962601f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc2369685fd526b824a5713", - "606587d11246154cad35d635", - "5a9eb32da2750c00171b3f9c", - "5bfe86df0db834001b734685", - "55d4ae6c4bdc2d8b2f8b456e", - "5c87a07c2e2216001219d4a2", - "5bb20e70d4351e0035629f8f", - "5beec8c20db834001d2c465c", - "5ae30c9a5acfc408fb139a03", - "5d135e83d7ad1a21b83f42d8", - "5d135ecbd7ad1a21c176542e", - "56eabf3bd2720b75698b4569", - "58d2946386f774496974c37e", - "58d2946c86f7744e271174b5", - "58d2947686f774485c6a1ee5", - "58d2947e86f77447aa070d53", - "5d44069ca4b9361ebd26fc37", - "5d4406a8a4b9361e4f6eb8b7", - "5947c73886f7747701588af5", - "5c793fde2e221601da358614", - "5b39f8db5acfc40016387a1b", - "628a85ee6b1d481ff772e9d5", - "602e620f9b513876d4338d9a", - "5fce16961f152d4312622bc9", - "5fbbaa86f9986c4cff3fe5f6", - "6516e91f609aaf354b34b3e2", - "6516e971a3d4c6497930b450", - "6529370c405a5f51dd023db8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b2314bdc2d79388b4576" - }, "5b0e794b5acfc47a877359b2": { "_id": "5b0e794b5acfc47a877359b2", "_name": "stock_ak_magpul_zhukov_s", @@ -35104,6 +35208,96 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, + "57ade1442459771557167e15": { + "_id": "57ade1442459771557167e15", + "_name": "stock_ar15_armacon_baskak", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_armacon_baskak", + "ShortName": "stock_ar15_armacon_baskak", + "Description": "stock_ar15_armacon_baskak", + "Weight": 0.27, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_armacon_baskak.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -25, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649be884bdc2d79388b4577" + }, "5e217ba4c1434648c13568cd": { "_id": "5e217ba4c1434648c13568cd", "_name": "stock_ak_hexagon_kocherga_red", @@ -35194,23 +35388,23 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, - "653ecef836fae5a82f02b869": { - "_id": "653ecef836fae5a82f02b869", - "_name": "stock_sks_ati_monte_carlo", + "5c0faeddd174af02a962601f": { + "_id": "5c0faeddd174af02a962601f", + "_name": "stock_ar15_colt_stock_tube_com", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_sks_molot_op_sks_std", - "ShortName": "stock_sks_molot_op_sks_std", - "Description": "stock_sks_molot_op_sks_std", - "Weight": 1.1, + "Name": "Труба приклада Colt", + "ShortName": "CST", + "Description": "Труба для установки телескопических прикладов производства компании Colt.", + "Weight": 0.19, "BackgroundColor": "blue", - "Width": 4, + "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_sks_ati_monte_carlo.bundle", + "path": "assets/content/items/mods/stocks/stock_ar15_colt_stock_tube_com.bundle", "rcid": "" }, "UsePrefab": { @@ -35228,7 +35422,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 2, + "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -35236,10 +35430,10 @@ "ExtraSizeRight": 1, "ExtraSizeUp": 0, "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, + "ExtraSizeForceAdd": true, "MergesWithChildren": true, "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, + "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -35255,15 +35449,61 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_stock_000", + "_id": "5c0faeddd174af02a9626021", + "_parent": "5c0faeddd174af02a962601f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fc2369685fd526b824a5713", + "606587d11246154cad35d635", + "5a9eb32da2750c00171b3f9c", + "5bfe86df0db834001b734685", + "55d4ae6c4bdc2d8b2f8b456e", + "5c87a07c2e2216001219d4a2", + "5bb20e70d4351e0035629f8f", + "5beec8c20db834001d2c465c", + "5ae30c9a5acfc408fb139a03", + "5d135e83d7ad1a21b83f42d8", + "5d135ecbd7ad1a21c176542e", + "56eabf3bd2720b75698b4569", + "58d2946386f774496974c37e", + "58d2946c86f7744e271174b5", + "58d2947686f774485c6a1ee5", + "58d2947e86f77447aa070d53", + "5d44069ca4b9361ebd26fc37", + "5d4406a8a4b9361e4f6eb8b7", + "5947c73886f7747701588af5", + "5c793fde2e221601da358614", + "5b39f8db5acfc40016387a1b", + "628a85ee6b1d481ff772e9d5", + "602e620f9b513876d4338d9a", + "5fce16961f152d4312622bc9", + "5fbbaa86f9986c4cff3fe5f6", + "6516e91f609aaf354b34b3e2", + "6516e971a3d4c6497930b450", + "6529370c405a5f51dd023db8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -20, + "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 18, + "Ergonomics": 0, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -35278,119 +35518,29 @@ "Foldable": false, "Retractable": false, "SizeReduceRight": 0, - "HeatFactor": 1.036, - "CoolFactor": 0.965, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083cba4bdc2de22e8b456f" - }, - "5b7d645e5acfc400170e2f90": { - "_id": "5b7d645e5acfc400170e2f90", - "_name": "stock_sa58_ds_arms_humpback_stock", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_sa58_ds_arms_humpback_stock", - "ShortName": "stock_sa58_ds_arms_humpback_stock", - "Description": "stock_sa58_ds_arms_humpback_stock", - "Weight": 0.8, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_sa58_ds_arms_humpback_stock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -22, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 1, "HeatFactor": 1, "CoolFactor": 1, "DurabilityBurnModificator": 1 }, - "_proto": "5649b0fc4bdc2d17108b4588" + "_proto": "5649b2314bdc2d79388b4576" }, - "58889d0c2459775bc215d981": { - "_id": "58889d0c2459775bc215d981", - "_name": "stock_dvl-10_lobaev_dvl-10_std", + "5926d3c686f77410de68ebc8": { + "_id": "5926d3c686f77410de68ebc8", + "_name": "stock_mp5_hk_a2_std", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_dvl-10_lobaev_dvl-10_std", - "ShortName": "stock_dvl-10_lobaev_dvl-10_std", - "Description": "stock_dvl-10_lobaev_dvl-10_std", - "Weight": 0.167, + "Name": "stock_mp5_hk_a2_std", + "ShortName": "stock_mp5_hk_a2_std", + "Description": "stock_mp5_hk_a2_std", + "Weight": 0.396, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_dvl-10_lobaev_dvl-10_std.bundle", + "path": "assets/content/items/mods/stocks/stock_mp5_hk_a2_std.bundle", "rcid": "" }, "UsePrefab": { @@ -35440,103 +35590,13 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -25, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 12, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 1, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "5a33cae9c4a28232980eb086": { - "_id": "5a33cae9c4a28232980eb086", - "_name": "stock_ar15_magpul_prs_gen2_fde", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_magpul_prs_gen2_fde", - "ShortName": "stock_ar15_magpul_prs_gen2_fde", - "Description": "stock_ar15_magpul_prs_gen2_fde", - "Weight": 0.79, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_magpul_prs_gen2_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, "Recoil": -24, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 2, + "Ergonomics": 6, "Velocity": 0, "RaidModdable": true, - "ToolModdable": false, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -35552,25 +35612,25 @@ "CoolFactor": 1, "DurabilityBurnModificator": 1 }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" + "_proto": "5649b0fc4bdc2d17108b4588" }, - "5ac78eaf5acfc4001926317a": { - "_id": "5ac78eaf5acfc4001926317a", - "_name": "stock_ak_zenit_pt-3m_lock", + "56083a334bdc2dc8488b4571": { + "_id": "56083a334bdc2dc8488b4571", + "_name": "stock_mr133_pistol_plastic", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_ak_zenit_pt-3m_lock", - "ShortName": "stock_ak_zenit_pt-3m_lock", - "Description": "stock_ak_zenit_pt-3m_lock", - "Weight": 0.03, + "Name": "Пластиковая рукоятка МР-133/153", + "ShortName": "Пл.Р. 133/153", + "Description": "Пластиковая рукоятка для ружей МР-133 и МР-153 для замены штатного приклада. Производства ИжМех.", + "Weight": 0.1, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_zenit_pt-3_lock.bundle", + "path": "assets/content/items/mods/stocks/stock_mr133_pistol_plastic.bundle", "rcid": "" }, "UsePrefab": { @@ -35588,7 +35648,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 5, - "ExamineExperience": 4, + "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -35617,16 +35677,19 @@ "Grids": [], "Slots": [ { - "_name": "mod_stock", - "_id": "5ac78eaf5acfc4001926317c", - "_parent": "5ac78eaf5acfc4001926317a", + "_name": "mod_scope", + "_id": "560d416f4bdc2d26448b4575", + "_parent": "56083a334bdc2dc8488b4571", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "59ecc3dd86f7746dc827481c", - "5b222d405acfc400153af4fe" + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5a33b2c9c4a282000c5a9511" ] } ] @@ -35640,10 +35703,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -6, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, + "Ergonomics": 11, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -35662,7 +35725,7 @@ "CoolFactor": 1, "DurabilityBurnModificator": 1 }, - "_proto": "5649b1c04bdc2d16268b457c" + "_proto": "55d4ae6c4bdc2d8b2f8b456e" }, "5ab372a310e891001717f0d8": { "_id": "5ab372a310e891001717f0d8", @@ -36174,6 +36237,96 @@ }, "_proto": "5649be884bdc2d79388b4577" }, + "58889d0c2459775bc215d981": { + "_id": "58889d0c2459775bc215d981", + "_name": "stock_dvl-10_lobaev_dvl-10_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_dvl-10_lobaev_dvl-10_std", + "ShortName": "stock_dvl-10_lobaev_dvl-10_std", + "Description": "stock_dvl-10_lobaev_dvl-10_std", + "Weight": 0.167, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_dvl-10_lobaev_dvl-10_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -25, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 12, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 1, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, "5d44069ca4b9361ebd26fc37": { "_id": "5d44069ca4b9361ebd26fc37", "_name": "stock_ar15_magpul_prs_gen3", @@ -36264,717 +36417,23 @@ }, "_proto": "55d4ae6c4bdc2d8b2f8b456e" }, - "56083a334bdc2dc8488b4571": { - "_id": "56083a334bdc2dc8488b4571", - "_name": "stock_mr133_pistol_plastic", + "5ae096d95acfc400185c2c81": { + "_id": "5ae096d95acfc400185c2c81", + "_name": "stock_mosin_izhmash_mosin_std_wood", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "Пластиковая рукоятка МР-133/153", - "ShortName": "Пл.Р. 133/153", - "Description": "Пластиковая рукоятка для ружей МР-133 и МР-153 для замены штатного приклада. Производства ИжМех.", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mr133_pistol_plastic.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "560d416f4bdc2d26448b4575", - "_parent": "56083a334bdc2dc8488b4571", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 11, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "5cf50fc5d7f00c056c53f83c": { - "_id": "5cf50fc5d7f00c056c53f83c", - "_name": "stock_ak_caa_akts_ak74", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "Труба приклада Colt", - "ShortName": "CST", - "Description": "Труба для установки телескопических прикладов производства компании Colt.", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_caa_akts_ak74.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5cf50fc5d7f00c056c53f83e", - "_parent": "5cf50fc5d7f00c056c53f83c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc2369685fd526b824a5713", - "602e620f9b513876d4338d9a", - "5a9eb32da2750c00171b3f9c", - "5bfe86df0db834001b734685", - "55d4ae6c4bdc2d8b2f8b456e", - "5c87a07c2e2216001219d4a2", - "5bb20e70d4351e0035629f8f", - "5beec8c20db834001d2c465c", - "5fbbaa86f9986c4cff3fe5f6", - "5fce16961f152d4312622bc9", - "5ae30c9a5acfc408fb139a03", - "5d135e83d7ad1a21b83f42d8", - "5d135ecbd7ad1a21c176542e", - "56eabf3bd2720b75698b4569", - "58d2946386f774496974c37e", - "58d2946c86f7744e271174b5", - "58d2947686f774485c6a1ee5", - "58d2947e86f77447aa070d53", - "5d44069ca4b9361ebd26fc37", - "5d4406a8a4b9361e4f6eb8b7", - "5947c73886f7747701588af5", - "5c793fde2e221601da358614", - "5b39f8db5acfc40016387a1b", - "628a85ee6b1d481ff772e9d5", - "606587d11246154cad35d635", - "6516e971a3d4c6497930b450", - "6516e91f609aaf354b34b3e2", - "6529370c405a5f51dd023db8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b2314bdc2d79388b4576" - }, - "59ecc28286f7746d7a68aa8c": { - "_id": "59ecc28286f7746d7a68aa8c", - "_name": "stock_ak_zenit_pt-3_lock", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak_zenit_pt-3_lock", - "ShortName": "stock_ak_zenit_pt-3_lock", - "Description": "stock_ak_zenit_pt-3_lock\n\n", - "Weight": 0.03, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_zenit_pt-3_lock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "59ecc28286f7746d7a68aa8d", - "_parent": "59ecc28286f7746d7a68aa8c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59ecc3dd86f7746dc827481c", - "5b222d405acfc400153af4fe" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b1c04bdc2d16268b457c" - }, - "5abcd472d8ce8700166032ae": { - "_id": "5abcd472d8ce8700166032ae", - "_name": "stock_akms_izhmash_akmsn_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_akms_izhmash_akms_std", - "ShortName": "stock_akms_izhmash_akms_std", - "Description": "stock_akms_izhmash_akms_std", - "Weight": 0.6, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_akms_izhmash_akmsn_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5abcd472d8ce8700166032b0", - "_parent": "5abcd472d8ce8700166032ae", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a0c59791526d8dba737bba7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -21, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "611a31ce5b7ffe001b4649d1": { - "_id": "611a31ce5b7ffe001b4649d1", - "_name": "stock_mr43_izhmeh_mr43_buttpad", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_magpul_rubber_butt_pad", - "ShortName": "stock_ar15_magpul_rubber_butt_pad", - "Description": "stock_ar15_magpul_rubber_butt_pad", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mr43_izhmeh_mr43_buttpad.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "58d2912286f7744e27117493" - }, - "5649be884bdc2d79388b4577": { - "_id": "5649be884bdc2d79388b4577", - "_name": "stock_ar15_colt_stock_tube_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "Труба приклада Colt", - "ShortName": "CST", - "Description": "Труба для установки телескопических прикладов производства компании Colt.", - "Weight": 0.162, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_colt_stock_tube_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock_000", - "_id": "5649dbce4bdc2d9d198b456c", - "_parent": "5649be884bdc2d79388b4577", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc2369685fd526b824a5713", - "606587d11246154cad35d635", - "5a9eb32da2750c00171b3f9c", - "5bfe86df0db834001b734685", - "55d4ae6c4bdc2d8b2f8b456e", - "5c87a07c2e2216001219d4a2", - "5bb20e70d4351e0035629f8f", - "5beec8c20db834001d2c465c", - "5fbbaa86f9986c4cff3fe5f6", - "5fce16961f152d4312622bc9", - "5ae30c9a5acfc408fb139a03", - "5d135e83d7ad1a21b83f42d8", - "5d135ecbd7ad1a21c176542e", - "56eabf3bd2720b75698b4569", - "58d2946386f774496974c37e", - "58d2946c86f7744e271174b5", - "58d2947686f774485c6a1ee5", - "58d2947e86f77447aa070d53", - "5d44069ca4b9361ebd26fc37", - "5d4406a8a4b9361e4f6eb8b7", - "5947c73886f7747701588af5", - "5c793fde2e221601da358614", - "5b39f8db5acfc40016387a1b", - "628a85ee6b1d481ff772e9d5", - "602e620f9b513876d4338d9a", - "6516e91f609aaf354b34b3e2", - "6516e971a3d4c6497930b450", - "6529370c405a5f51dd023db8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b2314bdc2d79388b4576" - }, - "587e0531245977466077a0f7": { - "_id": "587e0531245977466077a0f7", - "_name": "stock_sks_molot_op_sks_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_sks_molot_op_sks_std", - "ShortName": "stock_sks_molot_op_sks_std", - "Description": "stock_sks_molot_op_sks_std", - "Weight": 0.703, + "Name": "stock_toz-106_toz_short_std_wood", + "ShortName": "stock_toz-106_toz_short_std_wood", + "Description": "stock_toz-106_toz_short_std_wood", + "Weight": 1.75, "BackgroundColor": "blue", "Width": 4, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_sks_molot_op_sks_std.bundle", + "path": "assets/content/items/mods/stocks/stock_mosin_izhmash_mosin_std_wood.bundle", "rcid": "" }, "UsePrefab": { @@ -36991,102 +36450,12 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -11, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1.041, - "CoolFactor": 0.961, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083cba4bdc2de22e8b456f" - }, - "61816734d8e3106d9806c1f3": { - "_id": "61816734d8e3106d9806c1f3", - "_name": "stock_mk16_fn_scar_folding_stock", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_mk16_fn_scar_folding_stock", - "ShortName": "stock_mk16_fn_scar_folding_stock", - "Description": "stock_mk16_fn_scar_folding_stock", - "Weight": 0.35, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mk16_fn_scar_folding_stock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, + "LootExperience": 20, "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 0, + "ExtraSizeLeft": 4, "ExtraSizeRight": 1, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -37094,159 +36463,10 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock_001", - "_id": "61816792568c120fdd29491e", - "_parent": "61816734d8e3106d9806c1f3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "618167528004cc50514c34f9", - "61825d136ef05c2ce828f1cc" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock_002", - "_id": "6181679e6ef05c2ce828f1ab", - "_parent": "61816734d8e3106d9806c1f3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "618167441cb55961fa0fdc71", - "61825d24d3a39d50044c13af" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 1, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "619b69037b9de8162902673e": { - "_id": "619b69037b9de8162902673e", - "_name": "stock_ak_hera_arms_cqr47", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ar15_hera_arms_cqr", - "ShortName": "pistolgrip_ar15_hera_arms_cqr", - "Description": "pistolgrip_ar15_hera_arms_cqr", - "Weight": 0.525, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_hera_arms_cqr47.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, "ConflictingItems": [ - "5649b0fc4bdc2d17108b4588", - "5cbdb1b0ae9215000d50e105", - "5649b1c04bdc2d16268b457c", - "5ac50c185acfc400163398d4", - "5cf518cfd7f00c065b422214", - "5cf50fc5d7f00c056c53f83c", - "5b04473a5acfc40018632f70", - "5e217ba4c1434648c13568cd", - "59d6514b86f774171a068a08", - "5b0e794b5acfc47a877359b2", - "59e6227d86f77440d64f5dc2", - "59e89d0986f77427600d226e", - "6087e2a5232e5a31c233d552", - "5649b2314bdc2d79388b4576", - "59ecc28286f7746d7a68aa8c", - "5ac78eaf5acfc4001926317a", - "5b222d405acfc400153af4fe", - "5b222d335acfc4771e1be099", - "59ff3b6a86f77477562ff5ed", - "5abcd472d8ce8700166032ae", - "5ab626e4d8ce87272e4c6e43", - "57dc347d245977596754e7a1", - "628a6678ccaab13006640e49" + "5bfd4cbe0db834001b73449f", + "5bfd4cd60db834001c38f095", + "5bfd4cc90db834001d23e846" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -37262,305 +36482,17 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -25, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 16, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55802f5d4bdc2dac148b458f" - }, - "5947eab886f77475961d96c5": { - "_id": "5947eab886f77475961d96c5", - "_name": "stock_ar15_magpul_ubr_gen2_fde", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_magpul_ubr_gen2_blk", - "ShortName": "stock_ar15_magpul_ubr_gen2_blk", - "Description": "stock_ar15_magpul_ubr_gen2_blk", - "Weight": 0.61, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_magpul_ubr_gen2_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -23, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 0.99 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "622f140da5958f63c67f1735": { - "_id": "622f140da5958f63c67f1735", - "_name": "stock_g36_hk_buttstock_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak74m_izhmash_ak74m_std", - "ShortName": "stock_ak74m_izhmash_ak74m_std", - "Description": "stock_ak74m_izhmash_ak74m_std", - "Weight": 0.454, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_g36_hk_buttstock_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -19, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 1, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "5afd7ded5acfc40017541f5e": { - "_id": "5afd7ded5acfc40017541f5e", - "_name": "stock_sks_tapco_intrafuse_sks_railed", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_sks_tapco_intrafuse_sks_railed", - "ShortName": "stock_sks_tapco_intrafuse_sks_railed", - "Description": "stock_sks_tapco_intrafuse_sks_railed", - "Weight": 0.75, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_sks_tapco_intrafuse_sks_railed.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], "Slots": [ { "_name": "mod_stock", - "_id": "5afd80565acfc40018632e25", - "_parent": "5afd7ded5acfc40017541f5e", + "_id": "5bbde8d8d4351e00367fb72e", + "_parent": "5ae096d95acfc400185c2c81", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5afd7e095acfc40017541f61" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5afd808a5acfc4001946e0ec", - "_parent": "5afd7ded5acfc40017541f5e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "653ed19d22e1ef3d9002c328" + "5bbde409d4351e003562b036" ] } ] @@ -37571,19 +36503,19 @@ }, { "_name": "mod_pistol_grip", - "_id": "5afeb1b65acfc4771e1bd219", - "_parent": "5afd7ded5acfc40017541f5e", + "_id": "5bbde96dd4351e003562b03a", + "_parent": "5ae096d95acfc400185c2c81", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5afd7e445acfc4001637e35a" + "5bbde41ed4351e003562b038" ] } ] }, - "_required": true, + "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" } @@ -37592,10 +36524,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -4, + "Recoil": -20, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 17, + "Ergonomics": 10, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -37606,192 +36538,12 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1.034, - "CoolFactor": 0.969, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083cba4bdc2de22e8b456f" - }, - "5fb6558ad6f0b2136f2d7eb7": { - "_id": "5fb6558ad6f0b2136f2d7eb7", - "_name": "stock_vector_kriss_gen_2_folding_stock", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_magpul_moe_carbine_blk", - "ShortName": "stock_ar15_magpul_moe_carbine_blk", - "Description": "stock_ar15_magpul_moe_carbine_blk", - "Weight": 0.3, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_vector_kriss_gen_2_folding_stock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -22, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 1, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "62e2969582ebf260c20539c2": { - "_id": "62e2969582ebf260c20539c2", - "_name": "stock_sr2m_tochmash_sr2mp_stock", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_akms_izhmash_akms_std", - "ShortName": "stock_akms_izhmash_akms_std", - "Description": "stock_akms_izhmash_akms_std", - "Weight": 0.204, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_sr2m_tochmash_sr2mp_stock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -19, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, "IsShoulderContact": true, "Foldable": false, "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, + "SizeReduceRight": 2, + "HeatFactor": 1.099, + "CoolFactor": 0.908, "DurabilityBurnModificator": 1 }, "_proto": "5649b0fc4bdc2d17108b4588" @@ -37886,6 +36638,96 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, + "5ae30c9a5acfc408fb139a03": { + "_id": "5ae30c9a5acfc408fb139a03", + "_name": "stock_ar15_lmt_sopmod", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_lmt_sopmod", + "ShortName": "stock_ar15_lmt_sopmod", + "Description": "stock_ar15_lmt_sopmod", + "Weight": 0.148, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_lmt_sopmod.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -20, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, "5a33e75ac4a2826c6e06d759": { "_id": "5a33e75ac4a2826c6e06d759", "_name": "stock_ar15_hera_arms_cqr", @@ -38105,205 +36947,6 @@ }, "_proto": "5649be884bdc2d79388b4577" }, - "602e620f9b513876d4338d9a": { - "_id": "602e620f9b513876d4338d9a", - "_name": "stock_ar15_fab_defense_gl_core", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_fab_defense_gl_shock", - "ShortName": "stock_ar15_fab_defense_gl_shock", - "Description": "stock_ar15_fab_defense_gl_shock", - "Weight": 0.271, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_fab_defense_gl_core.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -19, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 15, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "5ac50c185acfc400163398d4": { - "_id": "5ac50c185acfc400163398d4", - "_name": "stock_ak74m_izhmash_ak74m_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak74m_izhmash_ak74m_std", - "ShortName": "stock_ak74m_izhmash_ak74m_std", - "Description": "stock_ak74m_izhmash_ak74m_std", - "Weight": 0.35, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak74m_izhmash_ak74m_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5ac50c185acfc400163398d6", - "_parent": "5ac50c185acfc400163398d4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a0c59791526d8dba737bba7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -22, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 1, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, "5ab626e4d8ce87272e4c6e43": { "_id": "5ab626e4d8ce87272e4c6e43", "_name": "stock_aks74_izhmash_aks74_std", @@ -38414,6 +37057,295 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, + "5ac50c185acfc400163398d4": { + "_id": "5ac50c185acfc400163398d4", + "_name": "stock_ak74m_izhmash_ak74m_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak74m_izhmash_ak74m_std", + "ShortName": "stock_ak74m_izhmash_ak74m_std", + "Description": "stock_ak74m_izhmash_ak74m_std", + "Weight": 0.35, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak74m_izhmash_ak74m_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5ac50c185acfc400163398d6", + "_parent": "5ac50c185acfc400163398d4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a0c59791526d8dba737bba7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -22, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 1, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "602e620f9b513876d4338d9a": { + "_id": "602e620f9b513876d4338d9a", + "_name": "stock_ar15_fab_defense_gl_core", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_fab_defense_gl_shock", + "ShortName": "stock_ar15_fab_defense_gl_shock", + "Description": "stock_ar15_fab_defense_gl_shock", + "Weight": 0.271, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_fab_defense_gl_core.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -19, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 15, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "6451167ad4928d46d30be3fd": { + "_id": "6451167ad4928d46d30be3fd", + "_name": "stock_9a91_kbp_9a91_stock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_val_tochmash_val_std", + "ShortName": "stock_val_tochmash_val_std", + "Description": "stock_val_tochmash_val_std", + "Weight": 0.5, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_9a91_kbp_9a91_stock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -20, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "578395e82459774a0e553c7b" + }, "5b7d63de5acfc400170e2f8d": { "_id": "5b7d63de5acfc400170e2f8d", "_name": "stock_sa58_ds_arms_para_spr_stock", @@ -38504,23 +37436,23 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, - "5cf518cfd7f00c065b422214": { - "_id": "5cf518cfd7f00c065b422214", - "_name": "stock_ak_caa_akts", + "622f140da5958f63c67f1735": { + "_id": "622f140da5958f63c67f1735", + "_name": "stock_g36_hk_buttstock_std", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_ak_caa_akts", - "ShortName": "stock_ak_caa_akts", - "Description": "stock_ak_caa_akts", - "Weight": 0.24, + "Name": "stock_ak74m_izhmash_ak74m_std", + "ShortName": "stock_ak74m_izhmash_ak74m_std", + "Description": "stock_ak74m_izhmash_ak74m_std", + "Weight": 0.454, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_caa_akts.bundle", + "path": "assets/content/items/mods/stocks/stock_g36_hk_buttstock_std.bundle", "rcid": "" }, "UsePrefab": { @@ -38538,7 +37470,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 5, + "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -38546,7 +37478,7 @@ "ExtraSizeRight": 1, "ExtraSizeUp": 0, "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, + "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, @@ -38565,98 +37497,52 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5cf518cfd7f00c065b422216", - "_parent": "5cf518cfd7f00c065b422214", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc2369685fd526b824a5713", - "602e620f9b513876d4338d9a", - "5a9eb32da2750c00171b3f9c", - "5bfe86df0db834001b734685", - "55d4ae6c4bdc2d8b2f8b456e", - "5c87a07c2e2216001219d4a2", - "5bb20e70d4351e0035629f8f", - "5beec8c20db834001d2c465c", - "5fbbaa86f9986c4cff3fe5f6", - "5fce16961f152d4312622bc9", - "5ae30c9a5acfc408fb139a03", - "5d135e83d7ad1a21b83f42d8", - "5d135ecbd7ad1a21c176542e", - "56eabf3bd2720b75698b4569", - "58d2946386f774496974c37e", - "58d2946c86f7744e271174b5", - "58d2947686f774485c6a1ee5", - "58d2947e86f77447aa070d53", - "5d44069ca4b9361ebd26fc37", - "5d4406a8a4b9361e4f6eb8b7", - "5947c73886f7747701588af5", - "5c793fde2e221601da358614", - "5b39f8db5acfc40016387a1b", - "628a85ee6b1d481ff772e9d5", - "606587d11246154cad35d635", - "6516e91f609aaf354b34b3e2", - "6516e971a3d4c6497930b450", - "6529370c405a5f51dd023db8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -2, + "Recoil": -19, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": 7, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, - "IsAnimated": false, + "IsAnimated": true, "HasShoulderContact": true, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "IsShoulderContact": false, + "IsShoulderContact": true, "Foldable": false, "Retractable": false, - "SizeReduceRight": 0, + "SizeReduceRight": 1, "HeatFactor": 1, "CoolFactor": 1, "DurabilityBurnModificator": 1 }, - "_proto": "5649b2314bdc2d79388b4576" + "_proto": "5649b0fc4bdc2d17108b4588" }, - "5e87116b81c4ed43e83cefdd": { - "_id": "5e87116b81c4ed43e83cefdd", - "_name": "stock_590_mossberg_590a1_std", + "5947eab886f77475961d96c5": { + "_id": "5947eab886f77475961d96c5", + "_name": "stock_ar15_magpul_ubr_gen2_fde", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_590_mossberg_590a1_std", - "ShortName": "stock_590_mossberg_590a1_std", - "Description": "stock_590_mossberg_590a1_std\n", - "Weight": 0.64, + "Name": "stock_ar15_magpul_ubr_gen2_blk", + "ShortName": "stock_ar15_magpul_ubr_gen2_blk", + "Description": "stock_ar15_magpul_ubr_gen2_blk", + "Weight": 0.61, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_590_mossberg_590a1_std.bundle", + "path": "assets/content/items/mods/stocks/stock_ar15_magpul_ubr_gen2_fde.bundle", "rcid": "" }, "UsePrefab": { @@ -38674,7 +37560,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 1, + "ExamineExperience": 4, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -38682,7 +37568,7 @@ "ExtraSizeRight": 1, "ExtraSizeUp": 0, "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, + "ExtraSizeForceAdd": true, "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, @@ -38720,33 +37606,33 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "IsShoulderContact": false, + "IsShoulderContact": true, "Foldable": false, "Retractable": false, "SizeReduceRight": 0, "HeatFactor": 1, "CoolFactor": 1, - "DurabilityBurnModificator": 1 + "DurabilityBurnModificator": 0.99 }, - "_proto": "56083be64bdc2d20478b456f" + "_proto": "55d4ae6c4bdc2d8b2f8b456e" }, - "5cde739cd7f00c0010373bd3": { - "_id": "5cde739cd7f00c0010373bd3", - "_name": "stock_m700_abarms_mrs_mod_x_gen_3", + "619b69037b9de8162902673e": { + "_id": "619b69037b9de8162902673e", + "_name": "stock_ak_hera_arms_cqr47", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_m700_abarms_mrs_mod_x_gen_3", - "ShortName": "stock_m700_abarms_mrs_mod_x_gen_3", - "Description": "stock_m700_abarms_mrs_mod_x_gen_3", - "Weight": 0.9, + "Name": "pistolgrip_ar15_hera_arms_cqr", + "ShortName": "pistolgrip_ar15_hera_arms_cqr", + "Description": "pistolgrip_ar15_hera_arms_cqr", + "Weight": 0.525, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_m700_abarms_mrs_mod_x_gen_3.bundle", + "path": "assets/content/items/mods/stocks/stock_ak_hera_arms_cqr47.bundle", "rcid": "" }, "UsePrefab": { @@ -38764,7 +37650,301 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5649b0fc4bdc2d17108b4588", + "5cbdb1b0ae9215000d50e105", + "5649b1c04bdc2d16268b457c", + "5ac50c185acfc400163398d4", + "5cf518cfd7f00c065b422214", + "5cf50fc5d7f00c056c53f83c", + "5b04473a5acfc40018632f70", + "5e217ba4c1434648c13568cd", + "59d6514b86f774171a068a08", + "5b0e794b5acfc47a877359b2", + "59e6227d86f77440d64f5dc2", + "59e89d0986f77427600d226e", + "6087e2a5232e5a31c233d552", + "5649b2314bdc2d79388b4576", + "59ecc28286f7746d7a68aa8c", + "5ac78eaf5acfc4001926317a", + "5b222d405acfc400153af4fe", + "5b222d335acfc4771e1be099", + "59ff3b6a86f77477562ff5ed", + "5abcd472d8ce8700166032ae", + "5ab626e4d8ce87272e4c6e43", + "57dc347d245977596754e7a1", + "628a6678ccaab13006640e49" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -25, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 16, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55802f5d4bdc2dac148b458f" + }, + "5fb6558ad6f0b2136f2d7eb7": { + "_id": "5fb6558ad6f0b2136f2d7eb7", + "_name": "stock_vector_kriss_gen_2_folding_stock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_magpul_moe_carbine_blk", + "ShortName": "stock_ar15_magpul_moe_carbine_blk", + "Description": "stock_ar15_magpul_moe_carbine_blk", + "Weight": 0.3, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_vector_kriss_gen_2_folding_stock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -22, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 1, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "5fc3e4ee7283c4046c5814af": { + "_id": "5fc3e4ee7283c4046c5814af", + "_name": "stock_ump_hk_ump_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak74m_izhmash_ak74m_std", + "ShortName": "stock_ak74m_izhmash_ak74m_std", + "Description": "stock_ak74m_izhmash_ak74m_std", + "Weight": 0.25, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ump_hk_ump_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -24, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 1, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "5a0c59791526d8dba737bba7": { + "_id": "5a0c59791526d8dba737bba7", + "_name": "stock_ak_izhmash_6g15u_butt_pad", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak_izhmash_6g15u_butt_pad", + "ShortName": "stock_ak_izhmash_6g15u_butt_pad", + "Description": "stock_ak_izhmash_6g15u_butt_pad", + "Weight": 0.155, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak_izhmash_6g15u_butt_pad.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -38776,11 +37956,98 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "58d2912286f7744e27117493" + }, + "5ea03e9400685063ec28bfa4": { + "_id": "5ea03e9400685063ec28bfa4", + "_name": "stock_ppsh_zis_ppsh41_std_wood", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_toz-106_toz_short_std_wood", + "ShortName": "stock_toz-106_toz_short_std_wood", + "Description": "stock_toz-106_toz_short_std_wood", + "Weight": 1.05, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ppsh_zis_ppsh41_std_wood.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, "ConflictingItems": [ - "5d25af8f8abbc3055079fec5", - "5cf12a15d7f00c05464b293f", - "5bfeaa0f0db834001b734927", - "5bfea7ad0db834001c38f1ee" + "5b3f7bf05acfc433000ecf6b" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -38796,29 +38063,107 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -20, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 28, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 2, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "61faa91878830f069b6b7967": { + "_id": "61faa91878830f069b6b7967", + "_name": "stock_sv-98_izhmash_wood", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "SKS stock", + "ShortName": "SKS stock", + "Description": "SKS stock", + "Weight": 2.913, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_sv-98_izhmash_wood.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 2, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], "Slots": [ { - "_name": "mod_stock", - "_id": "5cde739cd7f00c0010373bd5", - "_parent": "5cde739cd7f00c0010373bd3", + "_name": "mod_bipod", + "_id": "61faaaa4236a9954fd4e94df", + "_parent": "61faa91878830f069b6b7967", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a33ca0fc4a282000d72292f", - "5c0faeddd174af02a962601f", - "5649be884bdc2d79388b4577", - "5d120a10d7ad1a4e1026ba85", - "5b0800175acfc400153aebd4", - "5947e98b86f774778f1448bc", - "5947eab886f77475961d96c5", - "5ef1ba28c64c5d0dfc0571a5", - "5c793fb92e221644f31bfb64", - "5c793fc42e221600114ca25d", - "5cde77a9d7f00c000f261009", - "627254cc9c563e6e442c398f", - "638de3603a1a4031d8260b8c" + "56ea8222d2720b69698b4567" ] } ] @@ -38826,66 +38171,16 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "5cde7dc1d7f00c0010373bdd", - "_parent": "5cde739cd7f00c0010373bd3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5bb20e18d4351e00320205d5", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "615d8faecabb9b7ad90f4d5d", - "5b07db875acfc40dc528a5f6", - "63f5feead259b42f0b4d6d0f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "5cde7f37d7f00c000f261266", - "_parent": "5cde739cd7f00c0010373bd3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cde7afdd7f00c000d36b89d" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -6, + "Recoil": -20, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 13, + "Ergonomics": 6, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -38900,11 +38195,371 @@ "Foldable": false, "Retractable": false, "SizeReduceRight": 0, + "HeatFactor": 1.175, + "CoolFactor": 0.91, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083cba4bdc2de22e8b456f" + }, + "5d135e83d7ad1a21b83f42d8": { + "_id": "5d135e83d7ad1a21b83f42d8", + "_name": "stock_ar15_magpul_ctr_carbine", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_magpul_moe_carbine_blk", + "ShortName": "stock_ar15_magpul_moe_carbine_blk", + "Description": "stock_ar15_magpul_moe_carbine_blk", + "Weight": 0.226, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_magpul_ctr_carbine.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -22, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, "HeatFactor": 1, "CoolFactor": 1, "DurabilityBurnModificator": 1 }, - "_proto": "5649be884bdc2d79388b4577" + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "5d1c702ad7ad1a632267f429": { + "_id": "5d1c702ad7ad1a632267f429", + "_name": "stock_glock_fab_defence_glr_17", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_glock_fab_defence_glr_17", + "ShortName": "stock_glock_fab_defence_glr_17", + "Description": "stock_glock_fab_defence_glr_17", + "Weight": 0.39, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_glock_fab_defence_glr_17.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -23, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "574dad8024597745964bf05c": { + "_id": "574dad8024597745964bf05c", + "_name": "stock_sks_toz_sks_std_wood", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "SKS stock", + "ShortName": "SKS stock", + "Description": "SKS stock", + "Weight": 0.703, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_sks_toz_sks_std_wood.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -11, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1.041, + "CoolFactor": 0.961, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083cba4bdc2de22e8b456f" + }, + "624c29ce09cd027dff2f8cd7": { + "_id": "624c29ce09cd027dff2f8cd7", + "_name": "stock_cnc_cnc_guns_m12b", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_dvl-10_lobaev_dvl-10_std", + "ShortName": "stock_dvl-10_lobaev_dvl-10_std", + "Description": "stock_dvl-10_lobaev_dvl-10_std", + "Weight": 1.04, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_cnc_cnc_guns_m12b.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -20, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 12, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 1, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" }, "5bd704e7209c4d00d7167c31": { "_id": "5bd704e7209c4d00d7167c31", @@ -38996,23 +38651,23 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, - "624c29ce09cd027dff2f8cd7": { - "_id": "624c29ce09cd027dff2f8cd7", - "_name": "stock_cnc_cnc_guns_m12b", + "5d4406a8a4b9361e4f6eb8b7": { + "_id": "5d4406a8a4b9361e4f6eb8b7", + "_name": "stock_ar15_magpul_prs_gen3_gry", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_dvl-10_lobaev_dvl-10_std", - "ShortName": "stock_dvl-10_lobaev_dvl-10_std", - "Description": "stock_dvl-10_lobaev_dvl-10_std", - "Weight": 1.04, + "Name": "stock_ar15_magpul_prs_gen2_fde", + "ShortName": "stock_ar15_magpul_prs_gen2_fde", + "Description": "stock_ar15_magpul_prs_gen2_fde", + "Weight": 0.78, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_cnc_cnc_guns_m12b.bundle", + "path": "assets/content/items/mods/stocks/stock_ar15_magpul_prs_gen3_gry.bundle", "rcid": "" }, "UsePrefab": { @@ -39030,12 +38685,12 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 2, + "ExamineExperience": 4, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, + "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, @@ -39062,16 +38717,16 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -20, + "Recoil": -24, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 12, + "Ergonomics": 3, "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, + "RaidModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, - "IsAnimated": true, + "IsAnimated": false, "HasShoulderContact": true, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, @@ -39079,7 +38734,7 @@ "IsShoulderContact": true, "Foldable": false, "Retractable": false, - "SizeReduceRight": 1, + "SizeReduceRight": 0, "HeatFactor": 1, "CoolFactor": 1, "DurabilityBurnModificator": 1 @@ -39356,96 +39011,6 @@ }, "_proto": "55d4ae6c4bdc2d8b2f8b456e" }, - "5d4406a8a4b9361e4f6eb8b7": { - "_id": "5d4406a8a4b9361e4f6eb8b7", - "_name": "stock_ar15_magpul_prs_gen3_gry", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_magpul_prs_gen2_fde", - "ShortName": "stock_ar15_magpul_prs_gen2_fde", - "Description": "stock_ar15_magpul_prs_gen2_fde", - "Weight": 0.78, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_magpul_prs_gen3_gry.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -24, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, "5947e98b86f774778f1448bc": { "_id": "5947e98b86f774778f1448bc", "_name": "stock_ar15_magpul_ubr_gen2_blk", @@ -39536,23 +39101,448 @@ }, "_proto": "55d4ae6c4bdc2d8b2f8b456e" }, - "5bcf0213d4351e0085327c17": { - "_id": "5bcf0213d4351e0085327c17", - "_name": "stock_mp7_hk_a1_std", + "56eabf3bd2720b75698b4569": { + "_id": "56eabf3bd2720b75698b4569", + "_name": "stock_ar15_magpul_moe_carbine_blk", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_mp7_hk_a1_std", - "ShortName": "stock_mp7_hk_a1_std", - "Description": "stock_mp7_hk_a1_std", - "Weight": 0.2, + "Name": "stock_ar15_magpul_moe_carbine_blk", + "ShortName": "stock_ar15_magpul_moe_carbine_blk", + "Description": "stock_ar15_magpul_moe_carbine_blk", + "Weight": 0.226, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mp7_hk_a1_std.bundle", + "path": "assets/content/items/mods/stocks/stock_ar15_magpul_moe_carbine_blk.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "58d2910886f7744e27117492", + "_parent": "56eabf3bd2720b75698b4569", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "58d2912286f7744e27117493" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -21, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "5c5db6ee2e221600113fba54": { + "_id": "5c5db6ee2e221600113fba54", + "_name": "stock_mpx_maxim_defence_cqb_stock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_all_sig_mpx_mcx_early_type", + "ShortName": "stock_all_sig_mpx_mcx_early_type", + "Description": "stock_all_sig_mpx_mcx_early_type", + "Weight": 0.501, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_mpx_maxim_defence_cqb_stock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -21, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 15, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "5cf518cfd7f00c065b422214": { + "_id": "5cf518cfd7f00c065b422214", + "_name": "stock_ak_caa_akts", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak_caa_akts", + "ShortName": "stock_ak_caa_akts", + "Description": "stock_ak_caa_akts", + "Weight": 0.24, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak_caa_akts.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5cf518cfd7f00c065b422216", + "_parent": "5cf518cfd7f00c065b422214", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fc2369685fd526b824a5713", + "602e620f9b513876d4338d9a", + "5a9eb32da2750c00171b3f9c", + "5bfe86df0db834001b734685", + "55d4ae6c4bdc2d8b2f8b456e", + "5c87a07c2e2216001219d4a2", + "5bb20e70d4351e0035629f8f", + "5beec8c20db834001d2c465c", + "5fbbaa86f9986c4cff3fe5f6", + "5fce16961f152d4312622bc9", + "5ae30c9a5acfc408fb139a03", + "5d135e83d7ad1a21b83f42d8", + "5d135ecbd7ad1a21c176542e", + "56eabf3bd2720b75698b4569", + "58d2946386f774496974c37e", + "58d2946c86f7744e271174b5", + "58d2947686f774485c6a1ee5", + "58d2947e86f77447aa070d53", + "5d44069ca4b9361ebd26fc37", + "5d4406a8a4b9361e4f6eb8b7", + "5947c73886f7747701588af5", + "5c793fde2e221601da358614", + "5b39f8db5acfc40016387a1b", + "628a85ee6b1d481ff772e9d5", + "606587d11246154cad35d635", + "6516e91f609aaf354b34b3e2", + "6516e971a3d4c6497930b450", + "6529370c405a5f51dd023db8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b2314bdc2d79388b4576" + }, + "5c5db6f82e2216003a0fe914": { + "_id": "5c5db6f82e2216003a0fe914", + "_name": "stock_mpx_pmm_ulss", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_all_sig_mpx_mcx_early_type", + "ShortName": "stock_all_sig_mpx_mcx_early_type", + "Description": "stock_all_sig_mpx_mcx_early_type", + "Weight": 0.462, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_mpx_pmm_ulss.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -23, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "57dc347d245977596754e7a1": { + "_id": "57dc347d245977596754e7a1", + "_name": "stock_aks74u_izhmash_aks74u_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_aks74u_izhmash_aks74u_std", + "ShortName": "stock_aks74u_izhmash_aks74u_std", + "Description": "stock_aks74u_izhmash_aks74u_std", + "Weight": 0.218, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_aks74u_izhmash_aks74u_std.bundle", "rcid": "" }, "UsePrefab": { @@ -39597,21 +39587,41 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5a0d587d1526d8dbaf658738", + "_parent": "57dc347d245977596754e7a1", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a0c59791526d8dba737bba7", + "6494094948796d891603e59f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -12, + "Recoil": -21, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 3, + "Ergonomics": 10, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, - "IsAnimated": true, + "IsAnimated": false, "HasShoulderContact": true, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, @@ -39626,6 +39636,117 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, + "5a33ca0fc4a282000d72292f": { + "_id": "5a33ca0fc4a282000d72292f", + "_name": "stock_ar15_colt_stock_tube_A2", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_colt_stock_tube_A2", + "ShortName": "stock_ar15_colt_stock_tube_A2", + "Description": "stock_ar15_colt_stock_tube_A2", + "Weight": 0.162, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_colt_stock_tube_a2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5a33ce14c4a282329a73b4bb", + "_parent": "5a33ca0fc4a282000d72292f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a33cae9c4a28232980eb086", + "5d44069ca4b9361ebd26fc37", + "5d4406a8a4b9361e4f6eb8b7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 0.99 + }, + "_proto": "5649b2314bdc2d79388b4576" + }, "5eea217fc64c5d0dfc05712a": { "_id": "5eea217fc64c5d0dfc05712a", "_name": "stock_590_magpul_sga", @@ -39896,113 +40017,23 @@ }, "_proto": "578395e82459774a0e553c7b" }, - "5fc3e4ee7283c4046c5814af": { - "_id": "5fc3e4ee7283c4046c5814af", - "_name": "stock_ump_hk_ump_std", + "58d2912286f7744e27117493": { + "_id": "58d2912286f7744e27117493", + "_name": "stock_ar15_magpul_rubber_butt_pad", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_ak74m_izhmash_ak74m_std", - "ShortName": "stock_ak74m_izhmash_ak74m_std", - "Description": "stock_ak74m_izhmash_ak74m_std", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ump_hk_ump_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -24, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 1, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "5a0c59791526d8dba737bba7": { - "_id": "5a0c59791526d8dba737bba7", - "_name": "stock_ak_izhmash_6g15u_butt_pad", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak_izhmash_6g15u_butt_pad", - "ShortName": "stock_ak_izhmash_6g15u_butt_pad", - "Description": "stock_ak_izhmash_6g15u_butt_pad", - "Weight": 0.155, + "Name": "stock_ar15_magpul_rubber_butt_pad", + "ShortName": "stock_ar15_magpul_rubber_butt_pad", + "Description": "stock_ar15_magpul_rubber_butt_pad", + "Weight": 0.055, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_izhmash_6g15u_butt_pad.bundle", + "path": "assets/content/items/mods/stocks/stock_ar15_magpul_rubber_butt_pad.bundle", "rcid": "" }, "UsePrefab": { @@ -40052,47 +40083,46 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -1, + "Recoil": -2, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": 2, "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": true, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "IsShoulderContact": true, + "IsShoulderContact": false, "Foldable": false, "Retractable": false, "SizeReduceRight": 0, "HeatFactor": 1, "CoolFactor": 1, "DurabilityBurnModificator": 1 - }, - "_proto": "58d2912286f7744e27117493" + } }, - "5d135e83d7ad1a21b83f42d8": { - "_id": "5d135e83d7ad1a21b83f42d8", - "_name": "stock_ar15_magpul_ctr_carbine", + "5bfe86df0db834001b734685": { + "_id": "5bfe86df0db834001b734685", + "_name": "stock_ar15_fab_defense_glr_16_s", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_ar15_magpul_moe_carbine_blk", - "ShortName": "stock_ar15_magpul_moe_carbine_blk", - "Description": "stock_ar15_magpul_moe_carbine_blk", - "Weight": 0.226, + "Name": "stock_ar15_fab_defense_gl_shock", + "ShortName": "stock_ar15_fab_defense_gl_shock", + "Description": "stock_ar15_fab_defense_gl_shock", + "Weight": 0.276, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_magpul_ctr_carbine.bundle", + "path": "assets/content/items/mods/stocks/stock_ar15_fab_defense_glr_16_s.bundle", "rcid": "" }, "UsePrefab": { @@ -40142,10 +40172,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -22, + "Recoil": -20, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 10, + "Ergonomics": 13, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -40156,7 +40186,7 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "IsShoulderContact": false, + "IsShoulderContact": true, "Foldable": false, "Retractable": false, "SizeReduceRight": 0, @@ -40166,737 +40196,23 @@ }, "_proto": "55d4ae6c4bdc2d8b2f8b456e" }, - "61faa91878830f069b6b7967": { - "_id": "61faa91878830f069b6b7967", - "_name": "stock_sv-98_izhmash_wood", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "SKS stock", - "ShortName": "SKS stock", - "Description": "SKS stock", - "Weight": 2.913, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_sv-98_izhmash_wood.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 2, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_bipod", - "_id": "61faaaa4236a9954fd4e94df", - "_parent": "61faa91878830f069b6b7967", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "56ea8222d2720b69698b4567" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -20, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1.175, - "CoolFactor": 0.91, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083cba4bdc2de22e8b456f" - }, - "5d1c702ad7ad1a632267f429": { - "_id": "5d1c702ad7ad1a632267f429", - "_name": "stock_glock_fab_defence_glr_17", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_glock_fab_defence_glr_17", - "ShortName": "stock_glock_fab_defence_glr_17", - "Description": "stock_glock_fab_defence_glr_17", - "Weight": 0.39, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_glock_fab_defence_glr_17.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -23, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "5ea03e9400685063ec28bfa4": { - "_id": "5ea03e9400685063ec28bfa4", - "_name": "stock_ppsh_zis_ppsh41_std_wood", + "5bfd35380db83400232fe5cc": { + "_id": "5bfd35380db83400232fe5cc", + "_name": "stock_mosin_izhmash_mosin_infantry_wood", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { "Name": "stock_toz-106_toz_short_std_wood", "ShortName": "stock_toz-106_toz_short_std_wood", "Description": "stock_toz-106_toz_short_std_wood", - "Weight": 1.05, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ppsh_zis_ppsh41_std_wood.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5b3f7bf05acfc433000ecf6b" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -20, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 28, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 2, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "574dad8024597745964bf05c": { - "_id": "574dad8024597745964bf05c", - "_name": "stock_sks_toz_sks_std_wood", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "SKS stock", - "ShortName": "SKS stock", - "Description": "SKS stock", - "Weight": 0.703, + "Weight": 1.8, "BackgroundColor": "blue", "Width": 4, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_sks_toz_sks_std_wood.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -11, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1.041, - "CoolFactor": 0.961, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083cba4bdc2de22e8b456f" - }, - "6513f1798cb24472490ee331": { - "_id": "6513f1798cb24472490ee331", - "_name": "stock_rpd_zid_rpd_wood_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ar15_hera_arms_cqr", - "ShortName": "pistolgrip_ar15_hera_arms_cqr", - "Description": "pistolgrip_ar15_hera_arms_cqr", - "Weight": 1.12, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_rpd_zid_rpd_wood_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistolgrip", - "_id": "6513f8f6e63f29908d0ffabd", - "_parent": "6513f1798cb24472490ee331", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6513f13a8cb24472490ee32f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -22, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 16, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55802f5d4bdc2dac148b458f" - }, - "6451167ad4928d46d30be3fd": { - "_id": "6451167ad4928d46d30be3fd", - "_name": "stock_9a91_kbp_9a91_stock", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_val_tochmash_val_std", - "ShortName": "stock_val_tochmash_val_std", - "Description": "stock_val_tochmash_val_std", - "Weight": 0.5, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_9a91_kbp_9a91_stock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -20, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "578395e82459774a0e553c7b" - }, - "5beec8b20db834001961942a": { - "_id": "5beec8b20db834001961942a", - "_name": "stock_rpk16_izhmash_rpk_stock_tube", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_colt_stock_tube_A2", - "ShortName": "stock_ar15_colt_stock_tube_A2", - "Description": "stock_ar15_colt_stock_tube_A2", - "Weight": 0.142, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_rpk16_izhmash_rpk_stock_tube.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5beec8b20db834001961942c", - "_parent": "5beec8b20db834001961942a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "602e620f9b513876d4338d9a", - "5a9eb32da2750c00171b3f9c", - "5bfe86df0db834001b734685", - "55d4ae6c4bdc2d8b2f8b456e", - "5c87a07c2e2216001219d4a2", - "5bb20e70d4351e0035629f8f", - "5beec8c20db834001d2c465c", - "5ae30c9a5acfc408fb139a03", - "5d135e83d7ad1a21b83f42d8", - "5d135ecbd7ad1a21c176542e", - "56eabf3bd2720b75698b4569", - "58d2946386f774496974c37e", - "58d2946c86f7744e271174b5", - "58d2947686f774485c6a1ee5", - "58d2947e86f77447aa070d53", - "5947c73886f7747701588af5", - "5c793fde2e221601da358614", - "5b39f8db5acfc40016387a1b", - "5fbbaa86f9986c4cff3fe5f6", - "5fce16961f152d4312622bc9", - "5fc2369685fd526b824a5713", - "606587d11246154cad35d635", - "628a85ee6b1d481ff772e9d5", - "5d44069ca4b9361ebd26fc37", - "5d4406a8a4b9361e4f6eb8b7", - "6529370c405a5f51dd023db8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 1, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b2314bdc2d79388b4576" - }, - "5ae096d95acfc400185c2c81": { - "_id": "5ae096d95acfc400185c2c81", - "_name": "stock_mosin_izhmash_mosin_std_wood", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_toz-106_toz_short_std_wood", - "ShortName": "stock_toz-106_toz_short_std_wood", - "Description": "stock_toz-106_toz_short_std_wood", - "Weight": 1.75, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mosin_izhmash_mosin_std_wood.bundle", + "path": "assets/content/items/mods/stocks/stock_mosin_izhmash_mosin_infantry_wood.bundle", "rcid": "" }, "UsePrefab": { @@ -40927,6 +40243,7 @@ "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [ + "5b3f7bf05acfc433000ecf6b", "5bfd4cbe0db834001b73449f", "5bfd4cd60db834001c38f095", "5bfd4cc90db834001d23e846" @@ -40948,8 +40265,8 @@ "Slots": [ { "_name": "mod_stock", - "_id": "5bbde8d8d4351e00367fb72e", - "_parent": "5ae096d95acfc400185c2c81", + "_id": "5bfd35380db83400232fe5ce", + "_parent": "5bfd35380db83400232fe5cc", "_props": { "filters": [ { @@ -40966,8 +40283,8 @@ }, { "_name": "mod_pistol_grip", - "_id": "5bbde96dd4351e003562b03a", - "_parent": "5ae096d95acfc400185c2c81", + "_id": "5bfd35380db83400232fe5cf", + "_parent": "5bfd35380db83400232fe5cc", "_props": { "filters": [ { @@ -40990,7 +40307,7 @@ "Recoil": -20, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 10, + "Ergonomics": 9, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -41011,6 +40328,296 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, + "599851db86f77467372f0a18": { + "_id": "599851db86f77467372f0a18", + "_name": "stock_pp-19-01_izhmash_vityaz_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_pp-19-01_izhmash_vityaz_std", + "ShortName": "stock_pp-19-01_izhmash_vityaz_std", + "Description": "stock_pp-19-01_izhmash_vityaz_std", + "Weight": 0.218, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_pp-19-01_izhmash_vityaz_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5a0d58a01526d8dba31fe3bc", + "_parent": "599851db86f77467372f0a18", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a0c59791526d8dba737bba7", + "6494094948796d891603e59f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -24, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "6452519e3d52156624001fd5": { + "_id": "6452519e3d52156624001fd5", + "_name": "stock_vsk94_kbp_vsk94_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "", + "ShortName": "", + "Description": "", + "Weight": 0.7, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_vsk94_kbp_vsk94_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -23, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 15, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "57616ca52459773c69055192" + }, + "5cc700d4e4a949000f0f0f28": { + "_id": "5cc700d4e4a949000f0f0f28", + "_name": "stock_p90_damage industries_butt_pad", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak_izhmash_6g15u_butt_pad", + "ShortName": "stock_ak_izhmash_6g15u_butt_pad", + "Description": "stock_ak_izhmash_6g15u_butt_pad", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_p90_damage industries_butt_pad.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "58d2912286f7744e27117493" + }, "58d2947e86f77447aa070d53": { "_id": "58d2947e86f77447aa070d53", "_name": "stock_ar15_magpul_moe_carbine_sg", @@ -41120,96 +40727,6 @@ }, "_proto": "55d4ae6c4bdc2d8b2f8b456e" }, - "5cc700d4e4a949000f0f0f28": { - "_id": "5cc700d4e4a949000f0f0f28", - "_name": "stock_p90_damage industries_butt_pad", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak_izhmash_6g15u_butt_pad", - "ShortName": "stock_ak_izhmash_6g15u_butt_pad", - "Description": "stock_ak_izhmash_6g15u_butt_pad", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_p90_damage industries_butt_pad.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": true, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "58d2912286f7744e27117493" - }, "6529366450dc782999054ba0": { "_id": "6529366450dc782999054ba0", "_name": "stock_base_sig_low_profile_tube_ct", @@ -41892,23 +41409,23 @@ }, "_proto": "55802f624bdc2d1c128b4580" }, - "618167441cb55961fa0fdc71": { - "_id": "618167441cb55961fa0fdc71", - "_name": "stock_mk16_fn_scar_folding_stock_cheek", + "6513f1798cb24472490ee331": { + "_id": "6513f1798cb24472490ee331", + "_name": "stock_rpd_zid_rpd_wood_std", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_ak74m_izhmash_ak74m_std", - "ShortName": "stock_ak74m_izhmash_ak74m_std", - "Description": "stock_ak74m_izhmash_ak74m_std", - "Weight": 0.06, + "Name": "pistolgrip_ar15_hera_arms_cqr", + "ShortName": "pistolgrip_ar15_hera_arms_cqr", + "Description": "pistolgrip_ar15_hera_arms_cqr", + "Weight": 1.12, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mk16_fn_scar_folding_stock_cheek.bundle", + "path": "assets/content/items/mods/stocks/stock_rpd_zid_rpd_wood_std.bundle", "rcid": "" }, "UsePrefab": { @@ -41926,15 +41443,15 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 3, + "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, + "ExtraSizeRight": 1, "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": true, "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, @@ -41953,97 +41470,26 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "5fce16961f152d4312622bc9": { - "_id": "5fce16961f152d4312622bc9", - "_name": "stock_ar15_kriss_defiance_ds150_fde", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_magpul_moe_carbine_blk", - "ShortName": "stock_ar15_magpul_moe_carbine_blk", - "Description": "stock_ar15_magpul_moe_carbine_blk", - "Weight": 0.4, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_kriss_defiance_ds150_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_pistolgrip", + "_id": "6513f8f6e63f29908d0ffabd", + "_parent": "6513f1798cb24472490ee331", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6513f13a8cb24472490ee32f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, @@ -42051,1756 +41497,7 @@ "Recoil": -22, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "5aaf8e43e5b5b00015693246": { - "_id": "5aaf8e43e5b5b00015693246", - "_name": "stock_m1a_springfield_armory_socom_16", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_m1a_springfield_armory_socom_16", - "ShortName": "stock_m1a_springfield_armory_socom_16", - "Description": "stock_m1a_springfield_armory_socom_16", - "Weight": 1.004, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_m1a_springfield_armory_socom_16.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount", - "_id": "5ab24fe2e5b5b000173b8b67", - "_parent": "5aaf8e43e5b5b00015693246", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5addbfd15acfc40015621bde", - "5addbfbb5acfc400194dbcf7", - "5addc00b5acfc4001669f144", - "5ab24ef9e5b5b00fe93c9209" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -25, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 20, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 0.97, - "CoolFactor": 1.02, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649be884bdc2d79388b4577" - }, - "5bfeb32b0db834001a6694d9": { - "_id": "5bfeb32b0db834001a6694d9", - "_name": "stock_m700_hogue_overmolded_ghillie_green_pillar_bedded_stock", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_m700_hogue_overmolded_ghillie_green_pillar_bedded_stock", - "ShortName": "stock_m700_hogue_overmolded_ghillie_green_pillar_bedded_stock", - "Description": "stock_m700_hogue_overmolded_ghillie_green_pillar_bedded_stock", - "Weight": 1.8, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_m700_hogue_overmolded_ghillie_green_pillar_bedded_stock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5d25a6538abbc306c62e630d", - "5d25a4a98abbc30b917421a4", - "5d25a7b88abbc3054f3e60bc", - "5ce69cbad7f00c00b61c5098", - "5d25a6a48abbc306c62e6310", - "5d25af8f8abbc3055079fec5", - "5cf12a15d7f00c05464b293f" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5c091fb40db834001f274773", - "_parent": "5bfeb32b0db834001a6694d9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -21, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 14, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 2, - "HeatFactor": 1.021, - "CoolFactor": 0.984, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "649ec87d8007560a9001ab36": { - "_id": "649ec87d8007560a9001ab36", - "_name": "stock_ak12_izhmash_ak12_stock_tube_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_colt_stock_tube_A2", - "ShortName": "stock_ar15_colt_stock_tube_A2", - "Description": "stock_ar15_colt_stock_tube_A2", - "Weight": 0.142, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak12_izhmash_ak12_stock_tube_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "649ec87d8007560a9001ab37", - "_parent": "649ec87d8007560a9001ab36", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "602e620f9b513876d4338d9a", - "5a9eb32da2750c00171b3f9c", - "5bfe86df0db834001b734685", - "55d4ae6c4bdc2d8b2f8b456e", - "5c87a07c2e2216001219d4a2", - "5bb20e70d4351e0035629f8f", - "5beec8c20db834001d2c465c", - "5ae30c9a5acfc408fb139a03", - "5d135e83d7ad1a21b83f42d8", - "5d135ecbd7ad1a21c176542e", - "56eabf3bd2720b75698b4569", - "58d2946386f774496974c37e", - "58d2946c86f7744e271174b5", - "58d2947686f774485c6a1ee5", - "58d2947e86f77447aa070d53", - "5947c73886f7747701588af5", - "5c793fde2e221601da358614", - "5b39f8db5acfc40016387a1b", - "5fbbaa86f9986c4cff3fe5f6", - "5fce16961f152d4312622bc9", - "5fc2369685fd526b824a5713", - "606587d11246154cad35d635", - "628a85ee6b1d481ff772e9d5", - "5d44069ca4b9361ebd26fc37", - "5d4406a8a4b9361e4f6eb8b7", - "6516e91f609aaf354b34b3e2", - "6516e971a3d4c6497930b450", - "6529370c405a5f51dd023db8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 1, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b2314bdc2d79388b4576" - }, - "6181688c6c780c1e710c9b04": { - "_id": "6181688c6c780c1e710c9b04", - "_name": "charge_mk16_fn_charging_handle_std", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "Рукоятка затвора РП-1 для АК и совместимых", - "ShortName": "Рукоятка затвора РП-1", - "Description": "Рукоятка затвора РП-1 от компании Зенит. Совместима со всеми моделями автомата Калашникова и карабинами, созданными на базе АК. \nРП-1 увеличивает штатную рукоятку затвора улучшая эргономику оружия, делает обращение с ним более удобным.", - "Weight": 0.017, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_mk16_fn_charging_handle_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d44fd14bdc2d962f8b456e" - }, - "5b2240bf5acfc40dc528af69": { - "_id": "5b2240bf5acfc40dc528af69", - "_name": "charge_ar15_radian_raptor_ambidextrous_charging_handle", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "charge_ar15_radian_raptor_ambidextrous_charging_handle", - "ShortName": "charge_ar15_radian_raptor_ambidextrous_charging_handle", - "Description": "charge_ar15_radian_raptor_ambidextrous_charging_handle", - "Weight": 0.04, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_ar15_radian_raptor_ambidextrous_charging_handle.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55802f624bdc2d1c128b4580" - }, - "5c07c9660db834001a66b588": { - "_id": "5c07c9660db834001a66b588", - "_name": "stock_mp5_hk_pistol_end_cap", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_mp5_hk_a2_std", - "ShortName": "stock_mp5_hk_a2_std", - "Description": "stock_mp5_hk_a2_std", - "Weight": 0.18, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mp5_hk_pistol_end_cap.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "5addc7ac5acfc400194dbd90": { - "_id": "5addc7ac5acfc400194dbd90", - "_name": "stock_m14_sage_ebr_m14alcs_buttstock", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_m14_sage_ebr_m14alcs", - "ShortName": "stock_m14_sage_ebr_m14alcs", - "Description": "stock_m14_sage_ebr_m14alcs", - "Weight": 1.004, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_m14_sage_ebr_m14alcs_buttstock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "5addcb195acfc40015621da4", - "_parent": "5addc7ac5acfc400194dbd90", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5addc7db5acfc4001669f279" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -21, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 17, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649be884bdc2d79388b4577" - }, - "58d2947686f774485c6a1ee5": { - "_id": "58d2947686f774485c6a1ee5", - "_name": "stock_ar15_magpul_moe_carbine_od", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_magpul_moe_carbine_blk", - "ShortName": "stock_ar15_magpul_moe_carbine_blk", - "Description": "stock_ar15_magpul_moe_carbine_blk", - "Weight": 0.226, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_magpul_moe_carbine_od.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "58d2947686f774485c6a1ee6", - "_parent": "58d2947686f774485c6a1ee5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "58d2912286f7744e27117493" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -21, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "62811e2510e26c1f344e6554": { - "_id": "62811e2510e26c1f344e6554", - "_name": "pistolgrip_ax_accuracy_international_ax_pistol_grip_pb", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_590_mesa_leo_stock_adapter_gen1", - "ShortName": "stock_590_mesa_leo_stock_adapter_gen1", - "Description": "stock_590_mesa_leo_stock_adapter_gen1", - "Weight": 0.22, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ax_accuracy_international_ax_pistol_grip_pb.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 1, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "62811e2510e26c1f344e6555", - "_parent": "62811e2510e26c1f344e6554", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62811f828193841aca4a45c3" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "62815b5f308cb521f87a8faf", - "_parent": "62811e2510e26c1f344e6554", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6281204f308cb521f87a8f9b" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": true, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083be64bdc2d20478b456f" - }, - "61715e7e67085e45ef140b33": { - "_id": "61715e7e67085e45ef140b33", - "_name": "stock_417_hk_417_adjustable_buttstock_cheek", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_hk_slim_line", - "ShortName": "stock_ar15_hk_slim_line", - "Description": "stock_ar15_hk_slim_line", - "Weight": 0.057, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_417_hk_417_adjustable_buttstock_cheek.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "5cf13123d7f00c1085616a50": { - "_id": "5cf13123d7f00c1085616a50", - "_name": "stock_m700_promag_archangel_precision_stock", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_870_remington_sps_12g", - "ShortName": "stock_870_remington_sps_12g", - "Description": "stock_870_remington_sps_12g\n", - "Weight": 2.2, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_m700_promag_archangel_precision_stock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 1, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5d25a6538abbc306c62e630d", - "5d25a4a98abbc30b917421a4", - "5d25a7b88abbc3054f3e60bc", - "5ce69cbad7f00c00b61c5098", - "5d25a6a48abbc306c62e6310", - "5bfeaa0f0db834001b734927", - "5bfea7ad0db834001c38f1ee" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -25, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 28, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 0.941, - "CoolFactor": 1.065, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083be64bdc2d20478b456f" - }, - "5648ac824bdc2ded0b8b457d": { - "_id": "5648ac824bdc2ded0b8b457d", - "_name": "charge_ak_zenit_rp1", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "Рукоятка затвора РП-1 для АК и совместимых", - "ShortName": "Рукоятка затвора РП-1", - "Description": "Рукоятка затвора РП-1 от компании Зенит. Совместима со всеми моделями автомата Калашникова и карабинами, созданными на базе АК. \nРП-1 увеличивает штатную рукоятку затвора улучшая эргономику оружия, делает обращение с ним более удобным.", - "Weight": 0.017, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_ak_zenit_rp1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d44fd14bdc2d962f8b456e" - }, - "5de922d4b11454561e39239f": { - "_id": "5de922d4b11454561e39239f", - "_name": "charge_mp9_bt_mp9_charging_handle_std", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "Рукоятка заряжания Colt AR-15 для AR-15 и совместимых", - "ShortName": "Рукоятка заряжания AR-15", - "Description": "Стандартная рукоятка заряжания для оружия на базе AR-15 и совместимых.", - "Weight": 0.02, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_mp9_bt_mp9_charging_handle_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55802f624bdc2d1c128b4580" - }, - "5cc6ea78e4a949000e1ea3c1": { - "_id": "5cc6ea78e4a949000e1ea3c1", - "_name": "charge_p90_fn_p90_std", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "charge_p90_fn_p90_std", - "ShortName": "charge_p90_fn_p90_std", - "Description": "charge_p90_fn_p90_std", - "Weight": 0.017, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_p90_fn_p90_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d44fd14bdc2d962f8b456e" - }, - "5d44334ba4b9362b346d1948": { - "_id": "5d44334ba4b9362b346d1948", - "_name": "charge_ar15_radian_raptor_ambidextrous_charging_handle_gry", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "charge_ar15_radian_raptor_ambidextrous_charging_handle_gry", - "ShortName": "charge_ar15_radian_raptor_ambidextrous_charging_handle_gry", - "Description": "charge_ar15_radian_raptor_ambidextrous_charging_handle_gry", - "Weight": 0.04, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_ar15_radian_raptor_ambidextrous_charging_handle_gry.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55802f624bdc2d1c128b4580" - }, - "5a33ca0fc4a282000d72292f": { - "_id": "5a33ca0fc4a282000d72292f", - "_name": "stock_ar15_colt_stock_tube_A2", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_colt_stock_tube_A2", - "ShortName": "stock_ar15_colt_stock_tube_A2", - "Description": "stock_ar15_colt_stock_tube_A2", - "Weight": 0.162, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_colt_stock_tube_a2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5a33ce14c4a282329a73b4bb", - "_parent": "5a33ca0fc4a282000d72292f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a33cae9c4a28232980eb086", - "5d44069ca4b9361ebd26fc37", - "5d4406a8a4b9361e4f6eb8b7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 0.99 - }, - "_proto": "5649b2314bdc2d79388b4576" - }, - "6492d7847363b8a52206bc52": { - "_id": "6492d7847363b8a52206bc52", - "_name": "stock_pk_zenit_pt2_classic", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak74_izhmash_ak74_std_wood", - "ShortName": "stock_ak74_izhmash_ak74_std_wood", - "Description": "stock_ak74_izhmash_ak74_std_wood", - "Weight": 0.643, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_pk_zenit_pt2_classic.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock_000", - "_id": "6492d7ff7df7d749100e29db", - "_parent": "6492d7847363b8a52206bc52", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a0c59791526d8dba737bba7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistolgrip_000", - "_id": "6492d7ff7df7d749100e29dc", - "_parent": "6492d7847363b8a52206bc52", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649ad3f4bdc2df8348b4585", - "59e62cc886f77440d40b52a1", - "59e6318286f77444dd62c4cc", - "5649ade84bdc2d1b2b8b4587", - "57e3dba62459770f0c32322b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -21, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, + "Ergonomics": 16, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -43819,7 +41516,7 @@ "CoolFactor": 1, "DurabilityBurnModificator": 1 }, - "_proto": "5649b0fc4bdc2d17108b4588" + "_proto": "55802f5d4bdc2dac148b458f" }, "5cdeac42d7f00c000d36ba73": { "_id": "5cdeac42d7f00c000d36ba73", @@ -43911,96 +41608,6 @@ }, "_proto": "55d4ae6c4bdc2d8b2f8b456e" }, - "627254cc9c563e6e442c398f": { - "_id": "627254cc9c563e6e442c398f", - "_name": "stock_ar15_strike_industries_viper_pdw_stock", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_troy_m7a1_pdw_blk", - "ShortName": "stock_ar15_troy_m7a1_pdw_blk", - "Description": "stock_ar15_troy_m7a1_pdw_blk", - "Weight": 0.573, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_strike_industries_viper_pdw_stock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -18, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 21, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649be884bdc2d79388b4577" - }, "5c793fc42e221600114ca25d": { "_id": "5c793fc42e221600114ca25d", "_name": "stock_ar15_strike_industries_advanced_receiver_extension_red", @@ -44137,6 +41744,96 @@ }, "_proto": "5649b2314bdc2d79388b4576" }, + "627254cc9c563e6e442c398f": { + "_id": "627254cc9c563e6e442c398f", + "_name": "stock_ar15_strike_industries_viper_pdw_stock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_troy_m7a1_pdw_blk", + "ShortName": "stock_ar15_troy_m7a1_pdw_blk", + "Description": "stock_ar15_troy_m7a1_pdw_blk", + "Weight": 0.573, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_strike_industries_viper_pdw_stock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -18, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 21, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649be884bdc2d79388b4577" + }, "5d2f2d5748f03572ec0c0139": { "_id": "5d2f2d5748f03572ec0c0139", "_name": "charge_mp5k_hk_kurtz_std", @@ -44389,23 +42086,23 @@ }, "_proto": "55802f624bdc2d1c128b4580" }, - "56eabf3bd2720b75698b4569": { - "_id": "56eabf3bd2720b75698b4569", - "_name": "stock_ar15_magpul_moe_carbine_blk", + "5b7d645e5acfc400170e2f90": { + "_id": "5b7d645e5acfc400170e2f90", + "_name": "stock_sa58_ds_arms_humpback_stock", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_ar15_magpul_moe_carbine_blk", - "ShortName": "stock_ar15_magpul_moe_carbine_blk", - "Description": "stock_ar15_magpul_moe_carbine_blk", - "Weight": 0.226, + "Name": "stock_sa58_ds_arms_humpback_stock", + "ShortName": "stock_sa58_ds_arms_humpback_stock", + "Description": "stock_sa58_ds_arms_humpback_stock", + "Weight": 0.8, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_magpul_moe_carbine_blk.bundle", + "path": "assets/content/items/mods/stocks/stock_sa58_ds_arms_humpback_stock.bundle", "rcid": "" }, "UsePrefab": { @@ -44423,116 +42120,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "58d2910886f7744e27117492", - "_parent": "56eabf3bd2720b75698b4569", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "58d2912286f7744e27117493" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -21, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "5ae35b315acfc4001714e8b0": { - "_id": "5ae35b315acfc4001714e8b0", - "_name": "stock_870_mesa_leo_stock_adapter", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_870_mesa_leo_stock_adapter", - "ShortName": "stock_870_mesa_leo_stock_adapter", - "Description": "stock_870_mesa_leo_stock_adapter", - "Weight": 0.4, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_870_mesa_leo_stock_adapter.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 1, + "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -44559,93 +42147,15 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5ae35bb95acfc4039d663364", - "_parent": "5ae35b315acfc4001714e8b0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "602e620f9b513876d4338d9a", - "5a9eb32da2750c00171b3f9c", - "5bfe86df0db834001b734685", - "55d4ae6c4bdc2d8b2f8b456e", - "5c87a07c2e2216001219d4a2", - "5bb20e70d4351e0035629f8f", - "5fbbaa86f9986c4cff3fe5f6", - "5fce16961f152d4312622bc9", - "5ae30c9a5acfc408fb139a03", - "5d135e83d7ad1a21b83f42d8", - "5d135ecbd7ad1a21c176542e", - "56eabf3bd2720b75698b4569", - "58d2946386f774496974c37e", - "58d2946c86f7744e271174b5", - "58d2947686f774485c6a1ee5", - "58d2947e86f77447aa070d53", - "5d44069ca4b9361ebd26fc37", - "5d4406a8a4b9361e4f6eb8b7", - "5947c73886f7747701588af5", - "5c793fde2e221601da358614", - "5b39f8db5acfc40016387a1b", - "5beec8c20db834001d2c465c", - "628a85ee6b1d481ff772e9d5", - "606587d11246154cad35d635", - "5fc2369685fd526b824a5713", - "6516e91f609aaf354b34b3e2", - "6516e971a3d4c6497930b450", - "6529370c405a5f51dd023db8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "5ae35c615acfc408fb139ab7", - "_parent": "5ae35b315acfc4001714e8b0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5bb20e18d4351e00320205d5", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "615d8faecabb9b7ad90f4d5d", - "5b07db875acfc40dc528a5f6", - "63f5feead259b42f0b4d6d0f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -22, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 10, + "Ergonomics": -4, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -44656,747 +42166,33 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083be64bdc2d20478b456f" - }, - "5df35e59c41b2312ea3334d5": { - "_id": "5df35e59c41b2312ea3334d5", - "_name": "stock_t5000_orsis_t5000_se_chassis", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_870_remington_sps_12g", - "ShortName": "stock_870_remington_sps_12g", - "Description": "stock_870_remington_sps_12g\n", - "Weight": 0.64, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_t5000_orsis_t5000_se_chassis.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 1, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5d25af8f8abbc3055079fec5", - "5cf12a15d7f00c05464b293f", - "5bfeaa0f0db834001b734927", - "5bfea7ad0db834001c38f1ee" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_handguard", - "_id": "5df389abdfc58d14537c203a", - "_parent": "5df35e59c41b2312ea3334d5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5df25d3bfd6b4e6e2276dc9a" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "5df389bdfd6b4e6e2276dcb2", - "_parent": "5df35e59c41b2312ea3334d5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5df38a5fb74cd90030650cb6" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock_axis", - "_id": "5df389c823295c755a015895", - "_parent": "5df35e59c41b2312ea3334d5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5df35ddddfc58d14537c2036" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 16, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, "IsShoulderContact": true, - "Foldable": true, + "Foldable": false, "Retractable": false, "SizeReduceRight": 1, "HeatFactor": 1, "CoolFactor": 1, "DurabilityBurnModificator": 1 }, - "_proto": "56083be64bdc2d20478b456f" - }, - "5bfd36290db834001966869a": { - "_id": "5bfd36290db834001966869a", - "_name": "stock_mosin_izhmash_mosin_sniper_sawn_off_wood", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_toz-106_toz_short_std_wood", - "ShortName": "stock_toz-106_toz_short_std_wood", - "Description": "stock_toz-106_toz_short_std_wood", - "Weight": 0.85, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mosin_izhmash_mosin_sniper_sawn_off_wood.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "5bfd36290db834001966869d", - "_parent": "5bfd36290db834001966869a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bbde41ed4351e003562b038" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 16, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 2, - "HeatFactor": 1.079, - "CoolFactor": 0.918, - "DurabilityBurnModificator": 1 - }, "_proto": "5649b0fc4bdc2d17108b4588" }, - "618167528004cc50514c34f9": { - "_id": "618167528004cc50514c34f9", - "_name": "stock_mk16_fn_scar_folding_stock_extension", + "5c07c9660db834001a66b588": { + "_id": "5c07c9660db834001a66b588", + "_name": "stock_mp5_hk_pistol_end_cap", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_ak74m_izhmash_ak74m_std", - "ShortName": "stock_ak74m_izhmash_ak74m_std", - "Description": "stock_ak74m_izhmash_ak74m_std", - "Weight": 0.3, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mk16_fn_scar_folding_stock_extension.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "618167528004cc50514c34fb", - "_parent": "618167528004cc50514c34f9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "618167616ef05c2ce828f1a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -17, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "5c793fb92e221644f31bfb64": { - "_id": "5c793fb92e221644f31bfb64", - "_name": "stock_ar15_strike_industries_advanced_receiver_extension", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_colt_stock_tube_A2", - "ShortName": "stock_ar15_colt_stock_tube_A2", - "Description": "stock_ar15_colt_stock_tube_A2", - "Weight": 0.11, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_strike_industries_advenced_receiver_extension.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock_000", - "_id": "5c793fb92e221644f31bfb66", - "_parent": "5c793fb92e221644f31bfb64", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc2369685fd526b824a5713", - "606587d11246154cad35d635", - "602e620f9b513876d4338d9a", - "5a9eb32da2750c00171b3f9c", - "5bfe86df0db834001b734685", - "55d4ae6c4bdc2d8b2f8b456e", - "5c87a07c2e2216001219d4a2", - "5bb20e70d4351e0035629f8f", - "5beec8c20db834001d2c465c", - "5fbbaa86f9986c4cff3fe5f6", - "5fce16961f152d4312622bc9", - "5ae30c9a5acfc408fb139a03", - "5d135e83d7ad1a21b83f42d8", - "5d135ecbd7ad1a21c176542e", - "56eabf3bd2720b75698b4569", - "58d2946386f774496974c37e", - "58d2946c86f7744e271174b5", - "58d2947686f774485c6a1ee5", - "58d2947e86f77447aa070d53", - "5d44069ca4b9361ebd26fc37", - "5d4406a8a4b9361e4f6eb8b7", - "5947c73886f7747701588af5", - "5c793fde2e221601da358614", - "5b39f8db5acfc40016387a1b", - "628a85ee6b1d481ff772e9d5", - "6516e91f609aaf354b34b3e2", - "6516e971a3d4c6497930b450", - "6529370c405a5f51dd023db8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 0.98 - }, - "_proto": "5649b2314bdc2d79388b4576" - }, - "628a6678ccaab13006640e49": { - "_id": "628a6678ccaab13006640e49", - "_name": "stock_ak_rifle_dynamics_ak_to_m4_stock_adapter_gen_2", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_sa58_ds_arms_para_folding_buffer_tube_adapter", - "ShortName": "stock_sa58_ds_arms_para_folding_buffer_tube_adapter", - "Description": "stock_sa58_ds_arms_para_folding_buffer_tube_adapter", - "Weight": 0.23, + "Name": "stock_mp5_hk_a2_std", + "ShortName": "stock_mp5_hk_a2_std", + "Description": "stock_mp5_hk_a2_std", + "Weight": 0.18, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_rifle_dynamics_ak_to_m4_stock_adapter_gen_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "628a6678ccaab13006640e4a", - "_parent": "628a6678ccaab13006640e49", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ade1442459771557167e15", - "5a33ca0fc4a282000d72292f", - "5649be884bdc2d79388b4577", - "5d120a10d7ad1a4e1026ba85", - "5b0800175acfc400153aebd4", - "5bb20e58d4351e00320205d7", - "5947e98b86f774778f1448bc", - "5947eab886f77475961d96c5", - "5ef1ba28c64c5d0dfc0571a5", - "602e3f1254072b51b239f713", - "5c793fb92e221644f31bfb64", - "5c793fc42e221600114ca25d", - "627254cc9c563e6e442c398f", - "591aef7986f774139d495f03", - "591af10186f774139d495f0e", - "606587e18900dc2d9a55b65f", - "5c0faeddd174af02a962601f", - "638de3603a1a4031d8260b8c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b1c04bdc2d16268b457c" - }, - "58949fac86f77409483e16aa": { - "_id": "58949fac86f77409483e16aa", - "_name": "charge_mpx_sig_mpx_single_latch", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "charge_mpx_sig_mpx_double_latch", - "ShortName": "charge_mpx_sig_mpx_double_latch", - "Description": "charge_mpx_sig_mpx_double_latch", - "Weight": 0.032, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_mpx_sig_mpx_single_latch.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55802f624bdc2d1c128b4580" - }, - "6130ca3fd92c473c77020dbd": { - "_id": "6130ca3fd92c473c77020dbd", - "_name": "charge_ak_css_knurled_charging_handle", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "Рукоятка затвора РП-1 для АК и совместимых", - "ShortName": "Рукоятка затвора РП-1", - "Description": "Рукоятка затвора РП-1 от компании Зенит. Совместима со всеми моделями автомата Калашникова и карабинами, созданными на базе АК. \nРП-1 увеличивает штатную рукоятку затвора улучшая эргономику оружия, делает обращение с ним более удобным.", - "Weight": 0.015, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_ak_css_knurled_charging_handle.bundle", + "path": "assets/content/items/mods/stocks/stock_mp5_hk_pistol_end_cap.bundle", "rcid": "" }, "UsePrefab": { @@ -45451,7 +42247,7 @@ "EffectiveDistance": 0, "Ergonomics": 3, "Velocity": 0, - "RaidModdable": true, + "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -45460,27 +42256,33 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, "DurabilityBurnModificator": 1 }, - "_proto": "55d44fd14bdc2d962f8b456e" + "_proto": "5649b0fc4bdc2d17108b4588" }, - "651bf5617b3b552ef6712cb7": { - "_id": "651bf5617b3b552ef6712cb7", - "_name": "charge_ar15_dd_grip_n_rip_charging_handle", - "_parent": "55818a6f4bdc2db9688b456b", + "587e0531245977466077a0f7": { + "_id": "587e0531245977466077a0f7", + "_name": "stock_sks_molot_op_sks_std", + "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "charge_ar15_radian_raptor_ambidextrous_charging_handle", - "ShortName": "charge_ar15_radian_raptor_ambidextrous_charging_handle", - "Description": "charge_ar15_radian_raptor_ambidextrous_charging_handle", - "Weight": 0.043, + "Name": "stock_sks_molot_op_sks_std", + "ShortName": "stock_sks_molot_op_sks_std", + "Description": "stock_sks_molot_op_sks_std", + "Weight": 0.703, "BackgroundColor": "blue", - "Width": 1, + "Width": 4, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/charges/charge_ar15_dd_grip_n_rip_charging_handle.bundle", + "path": "assets/content/items/mods/stocks/stock_sks_molot_op_sks_std.bundle", "rcid": "" }, "UsePrefab": { @@ -45497,19 +42299,19 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, + "LootExperience": 10, "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, + "ExtraSizeRight": 1, "ExtraSizeUp": 0, "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, + "CanRequireOnRagfair": true, "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -45530,23 +42332,29 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -11, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 2, + "Ergonomics": 6, "Velocity": 0, "RaidModdable": false, - "ToolModdable": false, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, - "HasShoulderContact": false, + "HasShoulderContact": true, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1.041, + "CoolFactor": 0.961, "DurabilityBurnModificator": 1 }, - "_proto": "55802f624bdc2d1c128b4580" + "_proto": "56083cba4bdc2de22e8b456f" }, "5fbcc437d724d907e2077d5c": { "_id": "5fbcc437d724d907e2077d5c", @@ -45638,23 +42446,23 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, - "617155ee50224f204c1da3cd": { - "_id": "617155ee50224f204c1da3cd", - "_name": "stock_417_hk_417_adjustable_buttstock", + "5cdeac22d7f00c000f26168f": { + "_id": "5cdeac22d7f00c000f26168f", + "_name": "stock_m700_magpul_pro_700_chasiss", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_ar15_hk_slim_line", - "ShortName": "stock_ar15_hk_slim_line", - "Description": "stock_ar15_hk_slim_line", - "Weight": 0.907, + "Name": "stock_m700_magpul_pro_700_chasiss", + "ShortName": "stock_m700_magpul_pro_700_chasiss", + "Description": "stock_m700_magpul_pro_700_chasiss", + "Weight": 1.72, "BackgroundColor": "blue", - "Width": 2, + "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_417_hk_417_adjustable_buttstock.bundle", + "path": "assets/content/items/mods/stocks/stock_m700_magpul_pro_700_chasiss.bundle", "rcid": "" }, "UsePrefab": { @@ -45671,12 +42479,12 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, + "LootExperience": 15, + "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 0, + "ExtraSizeLeft": 1, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -45684,386 +42492,12 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock_000", - "_id": "61715f51d92c473c770214af", - "_parent": "617155ee50224f204c1da3cd", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61715e7e67085e45ef140b33" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } + "ConflictingItems": [ + "5d25af8f8abbc3055079fec5", + "5cf12a15d7f00c05464b293f", + "5bfeaa0f0db834001b734927", + "5bfea7ad0db834001c38f1ee" ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -23, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "607d5a891246154cad35d6aa": { - "_id": "607d5a891246154cad35d6aa", - "_name": "stock_mp155_izhmeh_monte_carlo_walnut", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "Приклад деревянный МР-133/153", - "ShortName": "133/153 Д.п.", - "Description": "Деревянный приклад для ружей МР-133 и МР-153 производства ИжМех с резиновым тыльником.", - "Weight": 0.64, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mp155_izhmeh_monte_carlo_walnut.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 1, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -24, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083be64bdc2d20478b456f" - }, - "5a788169c5856700142fdd9e": { - "_id": "5a788169c5856700142fdd9e", - "_name": "stock_870_shockwave_technologies_raptor_grip", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_870_shockwave_technologies_raptor_grip", - "ShortName": "stock_870_shockwave_technologies_raptor_grip", - "Description": "stock_870_shockwave_technologies_raptor_grip\n", - "Weight": 0.4, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_870_shockwave_technologies_raptor_grip.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 1, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083be64bdc2d20478b456f" - }, - "653ed132896b99b40a0292e6": { - "_id": "653ed132896b99b40a0292e6", - "_name": "stock_fab_fab_defence_uas_folding_stock", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak_magpul_zhukov_s", - "ShortName": "stock_ak_magpul_zhukov_s", - "Description": "stock_ak_magpul_zhukov_s", - "Weight": 0.4, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_fab_fab_defence_uas_folding_stock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -20, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 15, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "62811e335631d45211793c95": { - "_id": "62811e335631d45211793c95", - "_name": "pistolgrip_ax_gtac_ax_pistol_grip_adapter_pb", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_590_mesa_leo_stock_adapter_gen1", - "ShortName": "stock_590_mesa_leo_stock_adapter_gen1", - "Description": "stock_590_mesa_leo_stock_adapter_gen1", - "Weight": 0.15, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ax_gtac_ax_pistol_grip_adapter_pb.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 1, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -46080,15 +42514,15 @@ "Grids": [], "Slots": [ { - "_name": "mod_stock_000", - "_id": "62811e335631d45211793c96", - "_parent": "62811e335631d45211793c95", + "_name": "mod_stock", + "_id": "5cdeac22d7f00c000f261691", + "_parent": "5cdeac22d7f00c000f26168f", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "62811f828193841aca4a45c3" + "5cdeac42d7f00c000d36ba73" ] } ] @@ -46099,29 +42533,14 @@ }, { "_name": "mod_pistol_grip", - "_id": "62811e335631d45211793c97", - "_parent": "62811e335631d45211793c95", + "_id": "5cdeac22d7f00c000f261692", + "_parent": "5cdeac22d7f00c000f26168f", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5bb20e18d4351e00320205d5", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "59db3a1d86f77429e05b4e92", - "615d8faecabb9b7ad90f4d5d", - "5b07db875acfc40dc528a5f6", - "63f5feead259b42f0b4d6d0f" + "5cdeac5cd7f00c000f261694" ] } ] @@ -46131,124 +42550,93 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_reciever", - "_id": "62815b828193841aca4a45c9", - "_parent": "62811e335631d45211793c95", + "_name": "mod_mount_000", + "_id": "5cdeae19d7f00c0010373edb", + "_parent": "5cdeac22d7f00c000f26168f", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "6281204f308cb521f87a8f9b" + "5cdeaca5d7f00c00b61c4b70" ] } ] }, - "_required": true, + "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": true, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "56083be64bdc2d20478b456f" - }, - "6529348224cbe3c74a05e5c4": { - "_id": "6529348224cbe3c74a05e5c4", - "_name": "stock_all_sig_stock_locking_hinge_assembly", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "Переходник ME для АК", - "ShortName": "МЕ4", - "Description": "Адаптер для установки трубы под телескопические приклады на АК с нескладными прикладами.", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_all_sig_stock_locking_hinge_assembly.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ + }, { - "_name": "mod_stock", - "_id": "6529348224cbe3c74a05e5c5", - "_parent": "6529348224cbe3c74a05e5c4", + "_name": "mod_mount_001", + "_id": "5cdeae20d7f00c0010373edc", + "_parent": "5cdeac22d7f00c000f26168f", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "6529366450dc782999054ba0" + "5b7be47f5acfc400170e2dd2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5cdeae29d7f00c000e7ce171", + "_parent": "5cdeac22d7f00c000f26168f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_003", + "_id": "5cdeae32d7f00c000f261696", + "_parent": "5cdeac22d7f00c000f26168f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5cdeae39d7f00c00110a6077", + "_parent": "5cdeac22d7f00c000f26168f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8e529829226ceb67c319", + "651a8bf3a8520e48047bf708" ] } ] @@ -46262,568 +42650,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -5, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b1c04bdc2d16268b457c" - }, - "6516e971a3d4c6497930b450": { - "_id": "6516e971a3d4c6497930b450", - "_name": "stock_ar15_dd_enhanced_collapsible_buttstock_fde", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_magpul_moe_carbine_blk", - "ShortName": "stock_ar15_magpul_moe_carbine_blk", - "Description": "stock_ar15_magpul_moe_carbine_blk", - "Weight": 0.227, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_dd_enhanced_collapsible_buttstock_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c0e2ff6d174af02a1659d4a", - "5a33e75ac4a2826c6e06d759" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock_000", - "_id": "6516e971a3d4c6497930b451", - "_parent": "6516e971a3d4c6497930b450", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6516e9bc5901745209404287", - "6516e9d7e239bd0c487e3766" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -20, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 14, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "606587bd6d0bd7580617bacc": { - "_id": "606587bd6d0bd7580617bacc", - "_name": "charge_mk47_cmmg_mid_charging_handle", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "charge_mk47_cmmg_mid_charging_handle", - "ShortName": "charge_mk47_cmmg_mid_charging_handle", - "Description": "charge_mk47_cmmg_mid_charging_handle", - "Weight": 0.03, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_mk47_cmmg_mid_charging_handle.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55802f624bdc2d1c128b4580" - }, - "5cc6ea85e4a949000e1ea3c3": { - "_id": "5cc6ea85e4a949000e1ea3c3", - "_name": "charge_p90_km_the_handler", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "Рукоятка затвора РП-1 для АК и совместимых", - "ShortName": "Рукоятка затвора РП-1", - "Description": "Рукоятка затвора РП-1 от компании Зенит. Совместима со всеми моделями автомата Калашникова и карабинами, созданными на базе АК. \nРП-1 увеличивает штатную рукоятку затвора улучшая эргономику оружия, делает обращение с ним более удобным.", - "Weight": 0.019, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_p90_km_the_handler.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d44fd14bdc2d962f8b456e" - }, - "5c0faf68d174af02a96260b8": { - "_id": "5c0faf68d174af02a96260b8", - "_name": "charge_ar15_adar_charging_handle", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "Рукоятка заряжания Colt AR-15 для AR-15 и совместимых", - "ShortName": "Рукоятка заряжания AR-15", - "Description": "Стандартная рукоятка заряжания для оружия на базе AR-15 и совместимых.", - "Weight": 0.039, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_ar15_colt_charging_handle.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55802f624bdc2d1c128b4580" - }, - "5f633ff5c444ce7e3c30a006": { - "_id": "5f633ff5c444ce7e3c30a006", - "_name": "charge_ar15_rainer_arms_avalanche_mod2", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "charge_ar15_rainer_arms_avalanche_mod2", - "ShortName": "charge_ar15_rainer_arms_avalanche_mod2", - "Description": "charge_ar15_rainer_arms_avalanche_mod2", - "Weight": 0.028, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_ar15_rainer_arms_avalanche_mod2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55802f624bdc2d1c128b4580" - }, - "5d120a10d7ad1a4e1026ba85": { - "_id": "5d120a10d7ad1a4e1026ba85", - "_name": "stock_ar15_double_star_ace_socom_gen_4", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_armacon_baskak", - "ShortName": "stock_ar15_armacon_baskak", - "Description": "stock_ar15_armacon_baskak", - "Weight": 0.47, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_double_star_ace_socom_gen_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5d120bb5d7ad1a77b74dc8db", - "_parent": "5d120a10d7ad1a4e1026ba85", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d120a28d7ad1a1c8962e295" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -22, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, + "Ergonomics": 22, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -46838,585 +42668,12 @@ "Foldable": false, "Retractable": false, "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 0.98 + "HeatFactor": 0.957, + "CoolFactor": 1.039, + "DurabilityBurnModificator": 1 }, "_proto": "5649be884bdc2d79388b4577" }, - "5d135ecbd7ad1a21c176542e": { - "_id": "5d135ecbd7ad1a21c176542e", - "_name": "stock_ar15_magpul_ctr_carbine_fde", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_magpul_moe_carbine_blk", - "ShortName": "stock_ar15_magpul_moe_carbine_blk", - "Description": "stock_ar15_magpul_moe_carbine_blk", - "Weight": 0.226, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_magpul_ctr_carbine_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -22, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "5df35ddddfc58d14537c2036": { - "_id": "5df35ddddfc58d14537c2036", - "_name": "stock_t5000_orsis_t5000_se_folding_stock_std", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_dvl-10_lobaev_dvl-10_std", - "ShortName": "stock_dvl-10_lobaev_dvl-10_std", - "Description": "stock_dvl-10_lobaev_dvl-10_std", - "Weight": 0.31, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_t5000_orsis_t5000_se_folding_stock_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -18, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 11, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 1, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "61825d136ef05c2ce828f1cc": { - "_id": "61825d136ef05c2ce828f1cc", - "_name": "stock_mk16_fn_scar_folding_stock_extension_fde", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak74m_izhmash_ak74m_std", - "ShortName": "stock_ak74m_izhmash_ak74m_std", - "Description": "stock_ak74m_izhmash_ak74m_std", - "Weight": 0.3, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mk16_fn_scar_folding_stock_extension_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "61825d136ef05c2ce828f1ce", - "_parent": "61825d136ef05c2ce828f1cc", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "618167616ef05c2ce828f1a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -17, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "5c793fde2e221601da358614": { - "_id": "5c793fde2e221601da358614", - "_name": "stock_ar15_strike_industries_viper_mod_1", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_hk_slim_line", - "ShortName": "stock_ar15_hk_slim_line", - "Description": "stock_ar15_hk_slim_line", - "Weight": 0.188, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_strike_industries_viper_mod_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -21, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 11, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "6386300124a1dc425c00577a": { - "_id": "6386300124a1dc425c00577a", - "_name": "stock_ak_izhmash_ak100_triangle_stock", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_aks74_izhmash_aks74_std", - "ShortName": "stock_aks74_izhmash_aks74_std", - "Description": "stock_aks74_izhmash_aks74_std", - "Weight": 0.264, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_izhmash_ak100_triangle_stock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "6386300124a1dc425c00577b", - "_parent": "6386300124a1dc425c00577a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a0c59791526d8dba737bba7", - "6494094948796d891603e59f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -21, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 1, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "5df8e053bb49d91fb446d6a6": { - "_id": "5df8e053bb49d91fb446d6a6", - "_name": "charge_ar10_kac_charging_handle_std", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "Рукоятка заряжания Colt AR-15 для AR-15 и совместимых", - "ShortName": "Рукоятка заряжания AR-15", - "Description": "Стандартная рукоятка заряжания для оружия на базе AR-15 и совместимых.", - "Weight": 0.041, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_ar10_kac_charging_handle_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55802f624bdc2d1c128b4580" - }, "58949edd86f77409483e16a9": { "_id": "58949edd86f77409483e16a9", "_name": "charge_mpx_sig_mpx_double_latch", @@ -47501,6 +42758,96 @@ }, "_proto": "55802f624bdc2d1c128b4580" }, + "62e2969582ebf260c20539c2": { + "_id": "62e2969582ebf260c20539c2", + "_name": "stock_sr2m_tochmash_sr2mp_stock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_akms_izhmash_akms_std", + "ShortName": "stock_akms_izhmash_akms_std", + "Description": "stock_akms_izhmash_akms_std", + "Weight": 0.204, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_sr2m_tochmash_sr2mp_stock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -19, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, "591af10186f774139d495f0e": { "_id": "591af10186f774139d495f0e", "_name": "stock_ar15_troy_m7a1_pdw_fde", @@ -48457,6 +43804,1917 @@ "DurabilityBurnModificator": 1 } }, + "5c99f3592e221644fc633070": { + "_id": "5c99f3592e221644fc633070", + "_name": "stock_toz-106_pafnuch_mosin_custom", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_toz-106_toz_full_std", + "ShortName": "stock_toz-106_toz_full_std", + "Description": "stock_toz-106_toz_full_std", + "Weight": 1.29, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_toz-106_pafnuch_mosin_custom.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5c9e1cd7ae921500134b20f5", + "_parent": "5c99f3592e221644fc633070", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bbde409d4351e003562b036" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -29, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1.043, + "CoolFactor": 0.955, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "5649b0fc4bdc2d17108b4588": { + "_id": "5649b0fc4bdc2d17108b4588", + "_name": "stock_ak74_izhmash_ak74_std_plastic", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak74_izhmash_ak74_std_plastic", + "ShortName": "stock_ak74_izhmash_ak74_std_plastic", + "Description": "stock_ak74_izhmash_ak74_std_plastic", + "Weight": 0.35, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak74_izhmash_ak74_std_plastic.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5a0d56941526d8dba31fe3ba", + "_parent": "5649b0fc4bdc2d17108b4588", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a0c59791526d8dba737bba7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -22, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "5cde739cd7f00c0010373bd3": { + "_id": "5cde739cd7f00c0010373bd3", + "_name": "stock_m700_abarms_mrs_mod_x_gen_3", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_m700_abarms_mrs_mod_x_gen_3", + "ShortName": "stock_m700_abarms_mrs_mod_x_gen_3", + "Description": "stock_m700_abarms_mrs_mod_x_gen_3", + "Weight": 0.9, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_m700_abarms_mrs_mod_x_gen_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5d25af8f8abbc3055079fec5", + "5cf12a15d7f00c05464b293f", + "5bfeaa0f0db834001b734927", + "5bfea7ad0db834001c38f1ee" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5cde739cd7f00c0010373bd5", + "_parent": "5cde739cd7f00c0010373bd3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a33ca0fc4a282000d72292f", + "5c0faeddd174af02a962601f", + "5649be884bdc2d79388b4577", + "5d120a10d7ad1a4e1026ba85", + "5b0800175acfc400153aebd4", + "5947e98b86f774778f1448bc", + "5947eab886f77475961d96c5", + "5ef1ba28c64c5d0dfc0571a5", + "5c793fb92e221644f31bfb64", + "5c793fc42e221600114ca25d", + "5cde77a9d7f00c000f261009", + "627254cc9c563e6e442c398f", + "638de3603a1a4031d8260b8c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "5cde7dc1d7f00c0010373bdd", + "_parent": "5cde739cd7f00c0010373bd3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5bb20e18d4351e00320205d5", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "615d8faecabb9b7ad90f4d5d", + "5b07db875acfc40dc528a5f6", + "63f5feead259b42f0b4d6d0f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "5cde7f37d7f00c000f261266", + "_parent": "5cde739cd7f00c0010373bd3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cde7afdd7f00c000d36b89d" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 13, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649be884bdc2d79388b4577" + }, + "625eb0faa6e3a82193267ad9": { + "_id": "625eb0faa6e3a82193267ad9", + "_name": "stock_m3_benelli_pistol_grip_synthetic_stock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_akms_izhmash_akms_std", + "ShortName": "stock_akms_izhmash_akms_std", + "Description": "stock_akms_izhmash_akms_std", + "Weight": 1.043, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_m3_benelli_pistol_grip_synthetic_stock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -25, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "5649b1c04bdc2d16268b457c": { + "_id": "5649b1c04bdc2d16268b457c", + "_name": "stock_ak74_izhmash_ak74_std_wood", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak74_izhmash_ak74_std_wood", + "ShortName": "stock_ak74_izhmash_ak74_std_wood", + "Description": "stock_ak74_izhmash_ak74_std_wood", + "Weight": 0.45, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak74_izhmash_ak74_std_wood.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5a0d56c91526d8dbaf658737", + "_parent": "5649b1c04bdc2d16268b457c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a0c59791526d8dba737bba7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -22, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "5cde77a9d7f00c000f261009": { + "_id": "5cde77a9d7f00c000f261009", + "_name": "stock_m700_abarms_mod_x_side_folder", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_sa58_ds_arms_para_folding_buffer_tube_adapter", + "ShortName": "stock_sa58_ds_arms_para_folding_buffer_tube_adapter", + "Description": "stock_sa58_ds_arms_para_folding_buffer_tube_adapter", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_m700_abarms_mod_x_side_folder.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5cde77a9d7f00c000f26100b", + "_parent": "5cde77a9d7f00c000f261009", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ade1442459771557167e15", + "5a33ca0fc4a282000d72292f", + "5c0faeddd174af02a962601f", + "5649be884bdc2d79388b4577", + "5d120a10d7ad1a4e1026ba85", + "5b0800175acfc400153aebd4", + "5947e98b86f774778f1448bc", + "5947eab886f77475961d96c5", + "5ef1ba28c64c5d0dfc0571a5", + "5c793fb92e221644f31bfb64", + "5c793fc42e221600114ca25d", + "591aef7986f774139d495f03", + "591af10186f774139d495f0e", + "627254cc9c563e6e442c398f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b1c04bdc2d16268b457c" + }, + "5df35e59c41b2312ea3334d5": { + "_id": "5df35e59c41b2312ea3334d5", + "_name": "stock_t5000_orsis_t5000_se_chassis", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_870_remington_sps_12g", + "ShortName": "stock_870_remington_sps_12g", + "Description": "stock_870_remington_sps_12g\n", + "Weight": 0.64, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_t5000_orsis_t5000_se_chassis.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 1, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5d25af8f8abbc3055079fec5", + "5cf12a15d7f00c05464b293f", + "5bfeaa0f0db834001b734927", + "5bfea7ad0db834001c38f1ee" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_handguard", + "_id": "5df389abdfc58d14537c203a", + "_parent": "5df35e59c41b2312ea3334d5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5df25d3bfd6b4e6e2276dc9a" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "5df389bdfd6b4e6e2276dcb2", + "_parent": "5df35e59c41b2312ea3334d5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5df38a5fb74cd90030650cb6" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock_axis", + "_id": "5df389c823295c755a015895", + "_parent": "5df35e59c41b2312ea3334d5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5df35ddddfc58d14537c2036" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 16, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": true, + "Retractable": false, + "SizeReduceRight": 1, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083be64bdc2d20478b456f" + }, + "5beec8b20db834001961942a": { + "_id": "5beec8b20db834001961942a", + "_name": "stock_rpk16_izhmash_rpk_stock_tube", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_colt_stock_tube_A2", + "ShortName": "stock_ar15_colt_stock_tube_A2", + "Description": "stock_ar15_colt_stock_tube_A2", + "Weight": 0.142, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_rpk16_izhmash_rpk_stock_tube.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5beec8b20db834001961942c", + "_parent": "5beec8b20db834001961942a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "602e620f9b513876d4338d9a", + "5a9eb32da2750c00171b3f9c", + "5bfe86df0db834001b734685", + "55d4ae6c4bdc2d8b2f8b456e", + "5c87a07c2e2216001219d4a2", + "5bb20e70d4351e0035629f8f", + "5beec8c20db834001d2c465c", + "5ae30c9a5acfc408fb139a03", + "5d135e83d7ad1a21b83f42d8", + "5d135ecbd7ad1a21c176542e", + "56eabf3bd2720b75698b4569", + "58d2946386f774496974c37e", + "58d2946c86f7744e271174b5", + "58d2947686f774485c6a1ee5", + "58d2947e86f77447aa070d53", + "5947c73886f7747701588af5", + "5c793fde2e221601da358614", + "5b39f8db5acfc40016387a1b", + "5fbbaa86f9986c4cff3fe5f6", + "5fce16961f152d4312622bc9", + "5fc2369685fd526b824a5713", + "606587d11246154cad35d635", + "628a85ee6b1d481ff772e9d5", + "5d44069ca4b9361ebd26fc37", + "5d4406a8a4b9361e4f6eb8b7", + "6529370c405a5f51dd023db8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 1, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b2314bdc2d79388b4576" + }, + "5bfd36290db834001966869a": { + "_id": "5bfd36290db834001966869a", + "_name": "stock_mosin_izhmash_mosin_sniper_sawn_off_wood", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_toz-106_toz_short_std_wood", + "ShortName": "stock_toz-106_toz_short_std_wood", + "Description": "stock_toz-106_toz_short_std_wood", + "Weight": 0.85, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_mosin_izhmash_mosin_sniper_sawn_off_wood.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "5bfd36290db834001966869d", + "_parent": "5bfd36290db834001966869a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bbde41ed4351e003562b038" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 16, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 2, + "HeatFactor": 1.079, + "CoolFactor": 0.918, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "618167528004cc50514c34f9": { + "_id": "618167528004cc50514c34f9", + "_name": "stock_mk16_fn_scar_folding_stock_extension", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak74m_izhmash_ak74m_std", + "ShortName": "stock_ak74m_izhmash_ak74m_std", + "Description": "stock_ak74m_izhmash_ak74m_std", + "Weight": 0.3, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_mk16_fn_scar_folding_stock_extension.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "618167528004cc50514c34fb", + "_parent": "618167528004cc50514c34f9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "618167616ef05c2ce828f1a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -17, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "5c793fb92e221644f31bfb64": { + "_id": "5c793fb92e221644f31bfb64", + "_name": "stock_ar15_strike_industries_advanced_receiver_extension", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_colt_stock_tube_A2", + "ShortName": "stock_ar15_colt_stock_tube_A2", + "Description": "stock_ar15_colt_stock_tube_A2", + "Weight": 0.11, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_strike_industries_advenced_receiver_extension.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock_000", + "_id": "5c793fb92e221644f31bfb66", + "_parent": "5c793fb92e221644f31bfb64", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fc2369685fd526b824a5713", + "606587d11246154cad35d635", + "602e620f9b513876d4338d9a", + "5a9eb32da2750c00171b3f9c", + "5bfe86df0db834001b734685", + "55d4ae6c4bdc2d8b2f8b456e", + "5c87a07c2e2216001219d4a2", + "5bb20e70d4351e0035629f8f", + "5beec8c20db834001d2c465c", + "5fbbaa86f9986c4cff3fe5f6", + "5fce16961f152d4312622bc9", + "5ae30c9a5acfc408fb139a03", + "5d135e83d7ad1a21b83f42d8", + "5d135ecbd7ad1a21c176542e", + "56eabf3bd2720b75698b4569", + "58d2946386f774496974c37e", + "58d2946c86f7744e271174b5", + "58d2947686f774485c6a1ee5", + "58d2947e86f77447aa070d53", + "5d44069ca4b9361ebd26fc37", + "5d4406a8a4b9361e4f6eb8b7", + "5947c73886f7747701588af5", + "5c793fde2e221601da358614", + "5b39f8db5acfc40016387a1b", + "628a85ee6b1d481ff772e9d5", + "6516e91f609aaf354b34b3e2", + "6516e971a3d4c6497930b450", + "6529370c405a5f51dd023db8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 0.98 + }, + "_proto": "5649b2314bdc2d79388b4576" + }, + "628a6678ccaab13006640e49": { + "_id": "628a6678ccaab13006640e49", + "_name": "stock_ak_rifle_dynamics_ak_to_m4_stock_adapter_gen_2", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_sa58_ds_arms_para_folding_buffer_tube_adapter", + "ShortName": "stock_sa58_ds_arms_para_folding_buffer_tube_adapter", + "Description": "stock_sa58_ds_arms_para_folding_buffer_tube_adapter", + "Weight": 0.23, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak_rifle_dynamics_ak_to_m4_stock_adapter_gen_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "628a6678ccaab13006640e4a", + "_parent": "628a6678ccaab13006640e49", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ade1442459771557167e15", + "5a33ca0fc4a282000d72292f", + "5649be884bdc2d79388b4577", + "5d120a10d7ad1a4e1026ba85", + "5b0800175acfc400153aebd4", + "5bb20e58d4351e00320205d7", + "5947e98b86f774778f1448bc", + "5947eab886f77475961d96c5", + "5ef1ba28c64c5d0dfc0571a5", + "602e3f1254072b51b239f713", + "5c793fb92e221644f31bfb64", + "5c793fc42e221600114ca25d", + "627254cc9c563e6e442c398f", + "591aef7986f774139d495f03", + "591af10186f774139d495f0e", + "606587e18900dc2d9a55b65f", + "5c0faeddd174af02a962601f", + "638de3603a1a4031d8260b8c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b1c04bdc2d16268b457c" + }, + "58949fac86f77409483e16aa": { + "_id": "58949fac86f77409483e16aa", + "_name": "charge_mpx_sig_mpx_single_latch", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "charge_mpx_sig_mpx_double_latch", + "ShortName": "charge_mpx_sig_mpx_double_latch", + "Description": "charge_mpx_sig_mpx_double_latch", + "Weight": 0.032, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_mpx_sig_mpx_single_latch.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55802f624bdc2d1c128b4580" + }, + "6130ca3fd92c473c77020dbd": { + "_id": "6130ca3fd92c473c77020dbd", + "_name": "charge_ak_css_knurled_charging_handle", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "Рукоятка затвора РП-1 для АК и совместимых", + "ShortName": "Рукоятка затвора РП-1", + "Description": "Рукоятка затвора РП-1 от компании Зенит. Совместима со всеми моделями автомата Калашникова и карабинами, созданными на базе АК. \nРП-1 увеличивает штатную рукоятку затвора улучшая эргономику оружия, делает обращение с ним более удобным.", + "Weight": 0.015, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_ak_css_knurled_charging_handle.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d44fd14bdc2d962f8b456e" + }, + "651bf5617b3b552ef6712cb7": { + "_id": "651bf5617b3b552ef6712cb7", + "_name": "charge_ar15_dd_grip_n_rip_charging_handle", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "charge_ar15_radian_raptor_ambidextrous_charging_handle", + "ShortName": "charge_ar15_radian_raptor_ambidextrous_charging_handle", + "Description": "charge_ar15_radian_raptor_ambidextrous_charging_handle", + "Weight": 0.043, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_ar15_dd_grip_n_rip_charging_handle.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55802f624bdc2d1c128b4580" + }, + "653ecef836fae5a82f02b869": { + "_id": "653ecef836fae5a82f02b869", + "_name": "stock_sks_ati_monte_carlo", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_sks_molot_op_sks_std", + "ShortName": "stock_sks_molot_op_sks_std", + "Description": "stock_sks_molot_op_sks_std", + "Weight": 1.1, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_sks_ati_monte_carlo.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -20, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 18, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1.036, + "CoolFactor": 0.965, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083cba4bdc2de22e8b456f" + }, + "5fb655a72b1b027b1f50bd06": { + "_id": "5fb655a72b1b027b1f50bd06", + "_name": "stock_vector_kriss_pistol_sling_adapter", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_magpul_moe_carbine_blk", + "ShortName": "stock_ar15_magpul_moe_carbine_blk", + "Description": "stock_ar15_magpul_moe_carbine_blk", + "Weight": 0.25, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_vector_kriss_pistol_sling_adapter.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, "5bfd384c0db834001a6691d3": { "_id": "5bfd384c0db834001a6691d3", "_name": "stock_mosin_izhmash_mosin_carabine_wood", @@ -48824,96 +46082,6 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, - "5fb655a72b1b027b1f50bd06": { - "_id": "5fb655a72b1b027b1f50bd06", - "_name": "stock_vector_kriss_pistol_sling_adapter", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_magpul_moe_carbine_blk", - "ShortName": "stock_ar15_magpul_moe_carbine_blk", - "Description": "stock_ar15_magpul_moe_carbine_blk", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_vector_kriss_pistol_sling_adapter.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, "62e7c880f68e7a0676050c7c": { "_id": "62e7c880f68e7a0676050c7c", "_name": "charge_aug_steyr_a1_handle", @@ -48998,23 +46166,23 @@ }, "_proto": "55d44fd14bdc2d962f8b456e" }, - "5bb20e58d4351e00320205d7": { - "_id": "5bb20e58d4351e00320205d7", - "_name": "stock_ar15_hk_enhanced_stock_tube", + "5addc7ac5acfc400194dbd90": { + "_id": "5addc7ac5acfc400194dbd90", + "_name": "stock_m14_sage_ebr_m14alcs_buttstock", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_ar15_colt_stock_tube_A2", - "ShortName": "stock_ar15_colt_stock_tube_A2", - "Description": "stock_ar15_colt_stock_tube_A2", - "Weight": 0.162, + "Name": "stock_m14_sage_ebr_m14alcs", + "ShortName": "stock_m14_sage_ebr_m14alcs", + "Description": "stock_m14_sage_ebr_m14alcs", + "Weight": 1.004, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_hk_enhanced_stock_tube.bundle", + "path": "assets/content/items/mods/stocks/stock_m14_sage_ebr_m14alcs_buttstock.bundle", "rcid": "" }, "UsePrefab": { @@ -49061,47 +46229,20 @@ "Grids": [], "Slots": [ { - "_name": "mod_stock_000", - "_id": "5bb20e58d4351e00320205d9", - "_parent": "5bb20e58d4351e00320205d7", + "_name": "mod_pistol_grip", + "_id": "5addcb195acfc40015621da4", + "_parent": "5addc7ac5acfc400194dbd90", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5fc2369685fd526b824a5713", - "606587d11246154cad35d635", - "602e620f9b513876d4338d9a", - "5a9eb32da2750c00171b3f9c", - "5bfe86df0db834001b734685", - "55d4ae6c4bdc2d8b2f8b456e", - "5c87a07c2e2216001219d4a2", - "5bb20e70d4351e0035629f8f", - "5beec8c20db834001d2c465c", - "5ae30c9a5acfc408fb139a03", - "5d135e83d7ad1a21b83f42d8", - "5d135ecbd7ad1a21c176542e", - "56eabf3bd2720b75698b4569", - "58d2946386f774496974c37e", - "58d2946c86f7744e271174b5", - "58d2947686f774485c6a1ee5", - "58d2947e86f77447aa070d53", - "5d44069ca4b9361ebd26fc37", - "5d4406a8a4b9361e4f6eb8b7", - "5947c73886f7747701588af5", - "5c793fde2e221601da358614", - "5b39f8db5acfc40016387a1b", - "628a85ee6b1d481ff772e9d5", - "5fbbaa86f9986c4cff3fe5f6", - "5fce16961f152d4312622bc9", - "6516e91f609aaf354b34b3e2", - "6516e971a3d4c6497930b450", - "6529370c405a5f51dd023db8" + "5addc7db5acfc4001669f279" ] } ] }, - "_required": false, + "_required": true, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" } @@ -49110,10 +46251,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -2, + "Recoil": -21, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, + "Ergonomics": 17, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -49130,27 +46271,27 @@ "SizeReduceRight": 0, "HeatFactor": 1, "CoolFactor": 1, - "DurabilityBurnModificator": 0.98 + "DurabilityBurnModificator": 1 }, - "_proto": "5649b2314bdc2d79388b4576" + "_proto": "5649be884bdc2d79388b4577" }, - "62e292e7b6c0ee2f230cee00": { - "_id": "62e292e7b6c0ee2f230cee00", - "_name": "stock_sr2m_tochmash_sr2m_stock", + "58d2947686f774485c6a1ee5": { + "_id": "58d2947686f774485c6a1ee5", + "_name": "stock_ar15_magpul_moe_carbine_od", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_akms_izhmash_akms_std", - "ShortName": "stock_akms_izhmash_akms_std", - "Description": "stock_akms_izhmash_akms_std", - "Weight": 0.21, + "Name": "stock_ar15_magpul_moe_carbine_blk", + "ShortName": "stock_ar15_magpul_moe_carbine_blk", + "Description": "stock_ar15_magpul_moe_carbine_blk", + "Weight": 0.226, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_sr2m_tochmash_sr2m_stock.bundle", + "path": "assets/content/items/mods/stocks/stock_ar15_magpul_moe_carbine_od.bundle", "rcid": "" }, "UsePrefab": { @@ -49168,12 +46309,12 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 3, + "ExamineExperience": 4, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, + "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, @@ -49195,15 +46336,161 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "58d2947686f774485c6a1ee6", + "_parent": "58d2947686f774485c6a1ee5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "58d2912286f7744e27117493" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -19, + "Recoil": -21, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 7, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "62811e2510e26c1f344e6554": { + "_id": "62811e2510e26c1f344e6554", + "_name": "pistolgrip_ax_accuracy_international_ax_pistol_grip_pb", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_590_mesa_leo_stock_adapter_gen1", + "ShortName": "stock_590_mesa_leo_stock_adapter_gen1", + "Description": "stock_590_mesa_leo_stock_adapter_gen1", + "Weight": 0.22, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ax_accuracy_international_ax_pistol_grip_pb.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 1, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "62811e2510e26c1f344e6555", + "_parent": "62811e2510e26c1f344e6554", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62811f828193841aca4a45c3" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "62815b5f308cb521f87a8faf", + "_parent": "62811e2510e26c1f344e6554", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6281204f308cb521f87a8f9b" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -49214,33 +46501,33 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, + "IsShoulderContact": false, + "Foldable": true, "Retractable": false, "SizeReduceRight": 0, "HeatFactor": 1, "CoolFactor": 1, "DurabilityBurnModificator": 1 }, - "_proto": "5649b0fc4bdc2d17108b4588" + "_proto": "56083be64bdc2d20478b456f" }, - "5cde77a9d7f00c000f261009": { - "_id": "5cde77a9d7f00c000f261009", - "_name": "stock_m700_abarms_mod_x_side_folder", + "61715e7e67085e45ef140b33": { + "_id": "61715e7e67085e45ef140b33", + "_name": "stock_417_hk_417_adjustable_buttstock_cheek", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_sa58_ds_arms_para_folding_buffer_tube_adapter", - "ShortName": "stock_sa58_ds_arms_para_folding_buffer_tube_adapter", - "Description": "stock_sa58_ds_arms_para_folding_buffer_tube_adapter", - "Weight": 0.12, + "Name": "stock_ar15_hk_slim_line", + "ShortName": "stock_ar15_hk_slim_line", + "Description": "stock_ar15_hk_slim_line", + "Weight": 0.057, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_m700_abarms_mod_x_side_folder.bundle", + "path": "assets/content/items/mods/stocks/stock_417_hk_417_adjustable_buttstock_cheek.bundle", "rcid": "" }, "UsePrefab": { @@ -49285,30 +46572,541 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "5cf13123d7f00c1085616a50": { + "_id": "5cf13123d7f00c1085616a50", + "_name": "stock_m700_promag_archangel_precision_stock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_870_remington_sps_12g", + "ShortName": "stock_870_remington_sps_12g", + "Description": "stock_870_remington_sps_12g\n", + "Weight": 2.2, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_m700_promag_archangel_precision_stock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 1, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5d25a6538abbc306c62e630d", + "5d25a4a98abbc30b917421a4", + "5d25a7b88abbc3054f3e60bc", + "5ce69cbad7f00c00b61c5098", + "5d25a6a48abbc306c62e6310", + "5bfeaa0f0db834001b734927", + "5bfea7ad0db834001c38f1ee" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -25, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 28, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 0.941, + "CoolFactor": 1.065, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083be64bdc2d20478b456f" + }, + "5648ac824bdc2ded0b8b457d": { + "_id": "5648ac824bdc2ded0b8b457d", + "_name": "charge_ak_zenit_rp1", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "Рукоятка затвора РП-1 для АК и совместимых", + "ShortName": "Рукоятка затвора РП-1", + "Description": "Рукоятка затвора РП-1 от компании Зенит. Совместима со всеми моделями автомата Калашникова и карабинами, созданными на базе АК. \nРП-1 увеличивает штатную рукоятку затвора улучшая эргономику оружия, делает обращение с ним более удобным.", + "Weight": 0.017, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_ak_zenit_rp1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d44fd14bdc2d962f8b456e" + }, + "5de922d4b11454561e39239f": { + "_id": "5de922d4b11454561e39239f", + "_name": "charge_mp9_bt_mp9_charging_handle_std", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "Рукоятка заряжания Colt AR-15 для AR-15 и совместимых", + "ShortName": "Рукоятка заряжания AR-15", + "Description": "Стандартная рукоятка заряжания для оружия на базе AR-15 и совместимых.", + "Weight": 0.02, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_mp9_bt_mp9_charging_handle_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55802f624bdc2d1c128b4580" + }, + "5cc6ea78e4a949000e1ea3c1": { + "_id": "5cc6ea78e4a949000e1ea3c1", + "_name": "charge_p90_fn_p90_std", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "charge_p90_fn_p90_std", + "ShortName": "charge_p90_fn_p90_std", + "Description": "charge_p90_fn_p90_std", + "Weight": 0.017, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_p90_fn_p90_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d44fd14bdc2d962f8b456e" + }, + "5d44334ba4b9362b346d1948": { + "_id": "5d44334ba4b9362b346d1948", + "_name": "charge_ar15_radian_raptor_ambidextrous_charging_handle_gry", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "charge_ar15_radian_raptor_ambidextrous_charging_handle_gry", + "ShortName": "charge_ar15_radian_raptor_ambidextrous_charging_handle_gry", + "Description": "charge_ar15_radian_raptor_ambidextrous_charging_handle_gry", + "Weight": 0.04, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_ar15_radian_raptor_ambidextrous_charging_handle_gry.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55802f624bdc2d1c128b4580" + }, + "5d120a10d7ad1a4e1026ba85": { + "_id": "5d120a10d7ad1a4e1026ba85", + "_name": "stock_ar15_double_star_ace_socom_gen_4", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_armacon_baskak", + "ShortName": "stock_ar15_armacon_baskak", + "Description": "stock_ar15_armacon_baskak", + "Weight": 0.47, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_double_star_ace_socom_gen_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], "Slots": [ { "_name": "mod_stock", - "_id": "5cde77a9d7f00c000f26100b", - "_parent": "5cde77a9d7f00c000f261009", + "_id": "5d120bb5d7ad1a77b74dc8db", + "_parent": "5d120a10d7ad1a4e1026ba85", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "57ade1442459771557167e15", - "5a33ca0fc4a282000d72292f", - "5c0faeddd174af02a962601f", - "5649be884bdc2d79388b4577", - "5d120a10d7ad1a4e1026ba85", - "5b0800175acfc400153aebd4", - "5947e98b86f774778f1448bc", - "5947eab886f77475961d96c5", - "5ef1ba28c64c5d0dfc0571a5", - "5c793fb92e221644f31bfb64", - "5c793fc42e221600114ca25d", - "591aef7986f774139d495f03", - "591af10186f774139d495f0e", - "627254cc9c563e6e442c398f" + "5d120a28d7ad1a1c8962e295" ] } ] @@ -49322,17 +47120,107 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -22, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": 4, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 0.98 + }, + "_proto": "5649be884bdc2d79388b4577" + }, + "5d135ecbd7ad1a21c176542e": { + "_id": "5d135ecbd7ad1a21c176542e", + "_name": "stock_ar15_magpul_ctr_carbine_fde", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_magpul_moe_carbine_blk", + "ShortName": "stock_ar15_magpul_moe_carbine_blk", + "Description": "stock_ar15_magpul_moe_carbine_blk", + "Weight": 0.226, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_magpul_ctr_carbine_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -22, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, @@ -49344,25 +47232,170 @@ "CoolFactor": 1, "DurabilityBurnModificator": 1 }, - "_proto": "5649b1c04bdc2d16268b457c" + "_proto": "55d4ae6c4bdc2d8b2f8b456e" }, - "5649b1c04bdc2d16268b457c": { - "_id": "5649b1c04bdc2d16268b457c", - "_name": "stock_ak74_izhmash_ak74_std_wood", + "5afd7ded5acfc40017541f5e": { + "_id": "5afd7ded5acfc40017541f5e", + "_name": "stock_sks_tapco_intrafuse_sks_railed", "_parent": "55818a594bdc2db9688b456a", "_type": "Item", "_props": { - "Name": "stock_ak74_izhmash_ak74_std_wood", - "ShortName": "stock_ak74_izhmash_ak74_std_wood", - "Description": "stock_ak74_izhmash_ak74_std_wood", - "Weight": 0.45, + "Name": "stock_sks_tapco_intrafuse_sks_railed", + "ShortName": "stock_sks_tapco_intrafuse_sks_railed", + "Description": "stock_sks_tapco_intrafuse_sks_railed", + "Weight": 0.75, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_sks_tapco_intrafuse_sks_railed.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5afd80565acfc40018632e25", + "_parent": "5afd7ded5acfc40017541f5e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5afd7e095acfc40017541f61" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5afd808a5acfc4001946e0ec", + "_parent": "5afd7ded5acfc40017541f5e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "653ed19d22e1ef3d9002c328" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "5afeb1b65acfc4771e1bd219", + "_parent": "5afd7ded5acfc40017541f5e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5afd7e445acfc4001637e35a" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 17, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1.034, + "CoolFactor": 0.969, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083cba4bdc2de22e8b456f" + }, + "5df35ddddfc58d14537c2036": { + "_id": "5df35ddddfc58d14537c2036", + "_name": "stock_t5000_orsis_t5000_se_folding_stock_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_dvl-10_lobaev_dvl-10_std", + "ShortName": "stock_dvl-10_lobaev_dvl-10_std", + "Description": "stock_dvl-10_lobaev_dvl-10_std", + "Weight": 0.31, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak74_izhmash_ak74_std_wood.bundle", + "path": "assets/content/items/mods/stocks/stock_t5000_orsis_t5000_se_folding_stock_std.bundle", "rcid": "" }, "UsePrefab": { @@ -49388,6 +47421,295 @@ "ExtraSizeRight": 1, "ExtraSizeUp": 0, "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -18, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 11, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 1, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "61825d136ef05c2ce828f1cc": { + "_id": "61825d136ef05c2ce828f1cc", + "_name": "stock_mk16_fn_scar_folding_stock_extension_fde", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak74m_izhmash_ak74m_std", + "ShortName": "stock_ak74m_izhmash_ak74m_std", + "Description": "stock_ak74m_izhmash_ak74m_std", + "Weight": 0.3, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_mk16_fn_scar_folding_stock_extension_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "61825d136ef05c2ce828f1ce", + "_parent": "61825d136ef05c2ce828f1cc", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "618167616ef05c2ce828f1a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -17, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "5c793fde2e221601da358614": { + "_id": "5c793fde2e221601da358614", + "_name": "stock_ar15_strike_industries_viper_mod_1", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_hk_slim_line", + "ShortName": "stock_ar15_hk_slim_line", + "Description": "stock_ar15_hk_slim_line", + "Weight": 0.188, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_strike_industries_viper_mod_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -21, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 11, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "6386300124a1dc425c00577a": { + "_id": "6386300124a1dc425c00577a", + "_name": "stock_ak_izhmash_ak100_triangle_stock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_aks74_izhmash_aks74_std", + "ShortName": "stock_aks74_izhmash_aks74_std", + "Description": "stock_aks74_izhmash_aks74_std", + "Weight": 0.264, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak_izhmash_ak100_triangle_stock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, @@ -49410,14 +47732,15 @@ "Slots": [ { "_name": "mod_stock", - "_id": "5a0d56c91526d8dbaf658737", - "_parent": "5649b1c04bdc2d16268b457c", + "_id": "6386300124a1dc425c00577b", + "_parent": "6386300124a1dc425c00577a", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a0c59791526d8dba737bba7" + "5a0c59791526d8dba737bba7", + "6494094948796d891603e59f" ] } ] @@ -49431,12 +47754,12 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -22, + "Recoil": -21, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 3, + "Ergonomics": 10, "Velocity": 0, - "RaidModdable": true, + "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -49448,30 +47771,30 @@ "IsShoulderContact": true, "Foldable": false, "Retractable": false, - "SizeReduceRight": 0, + "SizeReduceRight": 1, "HeatFactor": 1, "CoolFactor": 1, "DurabilityBurnModificator": 1 }, "_proto": "5649b0fc4bdc2d17108b4588" }, - "625eb0faa6e3a82193267ad9": { - "_id": "625eb0faa6e3a82193267ad9", - "_name": "stock_m3_benelli_pistol_grip_synthetic_stock", - "_parent": "55818a594bdc2db9688b456a", + "5df8e053bb49d91fb446d6a6": { + "_id": "5df8e053bb49d91fb446d6a6", + "_name": "charge_ar10_kac_charging_handle_std", + "_parent": "55818a6f4bdc2db9688b456b", "_type": "Item", "_props": { - "Name": "stock_akms_izhmash_akms_std", - "ShortName": "stock_akms_izhmash_akms_std", - "Description": "stock_akms_izhmash_akms_std", - "Weight": 1.043, + "Name": "Рукоятка заряжания Colt AR-15 для AR-15 и совместимых", + "ShortName": "Рукоятка заряжания AR-15", + "Description": "Стандартная рукоятка заряжания для оружия на базе AR-15 и совместимых.", + "Weight": 0.041, "BackgroundColor": "blue", - "Width": 2, - "Height": 2, + "Width": 1, + "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/stocks/stock_m3_benelli_pistol_grip_synthetic_stock.bundle", + "path": "assets/content/items/mods/charges/charge_ar10_kac_charging_handle_std.bundle", "rcid": "" }, "UsePrefab": { @@ -49488,15 +47811,15 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 3, + "LootExperience": 5, + "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, + "ExtraSizeRight": 0, "ExtraSizeUp": 0, - "ExtraSizeDown": 1, + "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, @@ -49521,29 +47844,23 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -25, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 6, + "Ergonomics": 0, "Velocity": 0, "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": true, + "ToolModdable": false, + "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, - "HasShoulderContact": true, + "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, "DurabilityBurnModificator": 1 }, - "_proto": "5649b0fc4bdc2d17108b4588" + "_proto": "55802f624bdc2d1c128b4580" }, "5de655be4a9f347bc92edb88": { "_id": "5de655be4a9f347bc92edb88", @@ -49918,15 +48235,741 @@ }, "_proto": "55802f624bdc2d1c128b4580" }, - "6529109524cbe3c74a05e5b7": { - "_id": "6529109524cbe3c74a05e5b7", - "_name": "charge_spear_sig_spear_std", + "5bae13bad4351e00320204af": { + "_id": "5bae13bad4351e00320204af", + "_name": "stock_mosin_promag_archangel_opfor_prs", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_mosin_promag_archangel_opfor_prs", + "ShortName": "stock_mosin_promag_archangel_opfor_prs", + "Description": "stock_mosin_promag_archangel_opfor_prs", + "Weight": 2, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_mosin_promag_archangel_opfor_prs.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -27, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 40, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 0.941, + "CoolFactor": 1.063, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "58d2946c86f7744e271174b5": { + "_id": "58d2946c86f7744e271174b5", + "_name": "stock_ar15_magpul_moe_carbine_fg", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_magpul_moe_carbine_blk", + "ShortName": "stock_ar15_magpul_moe_carbine_blk", + "Description": "stock_ar15_magpul_moe_carbine_blk", + "Weight": 0.226, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_magpul_moe_carbine_fg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "58d2946c86f7744e271174b6", + "_parent": "58d2946c86f7744e271174b5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "58d2912286f7744e27117493" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -21, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "61825d24d3a39d50044c13af": { + "_id": "61825d24d3a39d50044c13af", + "_name": "stock_mk16_fn_scar_folding_stock_cheek_fde", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak74m_izhmash_ak74m_std", + "ShortName": "stock_ak74m_izhmash_ak74m_std", + "Description": "stock_ak74m_izhmash_ak74m_std", + "Weight": 0.06, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_mk16_fn_scar_folding_stock_cheek_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "5c503af12e221602b177ca02": { + "_id": "5c503af12e221602b177ca02", + "_name": "stock_vepr_molot_vpo-101_std_wood", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_toz-106_toz_short_std_wood", + "ShortName": "stock_toz-106_toz_short_std_wood", + "Description": "stock_toz-106_toz_short_std_wood", + "Weight": 1.25, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_vepr_molot_vpo-101_std_wood.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -22, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 18, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 2, + "HeatFactor": 1.052, + "CoolFactor": 0.951, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "5f63405df5750b524b45f114": { + "_id": "5f63405df5750b524b45f114", + "_name": "stock_vepr_pflevsha_svd_type_walnut", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_vepr_pflevsha_svd_type_walnut", + "ShortName": "stock_vepr_pflevsha_svd_type_walnut", + "Description": "stock_vepr_pflevsha_svd_type_walnut", + "Weight": 1.07, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_vepr_pflevsha_svd_type_walnut.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -25, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 21, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 2, + "HeatFactor": 1.049, + "CoolFactor": 0.958, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "6516e9bc5901745209404287": { + "_id": "6516e9bc5901745209404287", + "_name": "stock_base_dd_thicker_convex_shape_buttpad_12mm", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_magpul_rubber_butt_pad", + "ShortName": "stock_ar15_magpul_rubber_butt_pad", + "Description": "stock_ar15_magpul_rubber_butt_pad", + "Weight": 0.055, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_base_dd_thicker_convex_shape_buttpad_12mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + } + }, + "5c5db6b32e221600102611a0": { + "_id": "5c5db6b32e221600102611a0", + "_name": "charge_mpx_geissele_sch", "_parent": "55818a6f4bdc2db9688b456b", "_type": "Item", "_props": { - "Name": "charge_mcx_sig_mcx_std", - "ShortName": "charge_mcx_sig_mcx_std", - "Description": "charge_mcx_sig_mcx_std", + "Name": "charge_mpx_sig_mpx_double_latch", + "ShortName": "charge_mpx_sig_mpx_double_latch", + "Description": "charge_mpx_sig_mpx_double_latch", + "Weight": 0.03, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_mpx_geissele_sch.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55802f624bdc2d1c128b4580" + }, + "62ebbc53e3c1e1ec7c02c44f": { + "_id": "62ebbc53e3c1e1ec7c02c44f", + "_name": "charge_aug_steyr_a3_handle", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "Рукоятка затвора РП-1 для АК и совместимых", + "ShortName": "Рукоятка затвора РП-1", + "Description": "Рукоятка затвора РП-1 от компании Зенит. Совместима со всеми моделями автомата Калашникова и карабинами, созданными на базе АК. \nРП-1 увеличивает штатную рукоятку затвора улучшая эргономику оружия, делает обращение с ним более удобным.", + "Weight": 0.011, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_aug_steyr_a3_handle.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d44fd14bdc2d962f8b456e" + }, + "55d44fd14bdc2d962f8b456e": { + "_id": "55d44fd14bdc2d962f8b456e", + "_name": "charge_ar15_colt_charging_handle", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "Рукоятка заряжания Colt AR-15 для AR-15 и совместимых", + "ShortName": "Рукоятка заряжания AR-15", + "Description": "Стандартная рукоятка заряжания для оружия на базе AR-15 и совместимых.", "Weight": 0.035, "BackgroundColor": "blue", "Width": 1, @@ -49934,7 +48977,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/charges/charge_spear_sig_spear_std.bundle", + "path": "assets/content/items/mods/charges/charge_ar15_colt_charging_handle.bundle", "rcid": "" }, "UsePrefab": { @@ -50002,6 +49045,3068 @@ }, "_proto": "55802f624bdc2d1c128b4580" }, + "5bb20dbcd4351e44f824c04e": { + "_id": "5bb20dbcd4351e44f824c04e", + "_name": "charge_ar15_hk_extended_latch_charging_handle", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "charge_ar15_badger_ordnance_tactical_latch", + "ShortName": "BOTLcharge_ar15_badger_ordnance_tactical_latch", + "Description": "The Badger Ordnance Tactical Charging Handle is optimized for use with Mil Spec AR-15/M16/M4 platform rifles and features our popular Gen I Tactical Latch preinstalled. All components are machined from 6061 Alloy and Mil Spec Type III Hardcoat Anodized.", + "Weight": 0.064, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_ar15_hk_extended_latch_charging_handle.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d44fd14bdc2d962f8b456e" + }, + "611a31ce5b7ffe001b4649d1": { + "_id": "611a31ce5b7ffe001b4649d1", + "_name": "stock_mr43_izhmeh_mr43_buttpad", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_magpul_rubber_butt_pad", + "ShortName": "stock_ar15_magpul_rubber_butt_pad", + "Description": "stock_ar15_magpul_rubber_butt_pad", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_mr43_izhmeh_mr43_buttpad.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "58d2912286f7744e27117493" + }, + "61816734d8e3106d9806c1f3": { + "_id": "61816734d8e3106d9806c1f3", + "_name": "stock_mk16_fn_scar_folding_stock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_mk16_fn_scar_folding_stock", + "ShortName": "stock_mk16_fn_scar_folding_stock", + "Description": "stock_mk16_fn_scar_folding_stock", + "Weight": 0.35, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_mk16_fn_scar_folding_stock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock_001", + "_id": "61816792568c120fdd29491e", + "_parent": "61816734d8e3106d9806c1f3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "618167528004cc50514c34f9", + "61825d136ef05c2ce828f1cc" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock_002", + "_id": "6181679e6ef05c2ce828f1ab", + "_parent": "61816734d8e3106d9806c1f3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "618167441cb55961fa0fdc71", + "61825d24d3a39d50044c13af" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 1, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "617155ee50224f204c1da3cd": { + "_id": "617155ee50224f204c1da3cd", + "_name": "stock_417_hk_417_adjustable_buttstock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_hk_slim_line", + "ShortName": "stock_ar15_hk_slim_line", + "Description": "stock_ar15_hk_slim_line", + "Weight": 0.907, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_417_hk_417_adjustable_buttstock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock_000", + "_id": "61715f51d92c473c770214af", + "_parent": "617155ee50224f204c1da3cd", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61715e7e67085e45ef140b33" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -23, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "607d5a891246154cad35d6aa": { + "_id": "607d5a891246154cad35d6aa", + "_name": "stock_mp155_izhmeh_monte_carlo_walnut", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "Приклад деревянный МР-133/153", + "ShortName": "133/153 Д.п.", + "Description": "Деревянный приклад для ружей МР-133 и МР-153 производства ИжМех с резиновым тыльником.", + "Weight": 0.64, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_mp155_izhmeh_monte_carlo_walnut.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 1, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -24, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083be64bdc2d20478b456f" + }, + "618167441cb55961fa0fdc71": { + "_id": "618167441cb55961fa0fdc71", + "_name": "stock_mk16_fn_scar_folding_stock_cheek", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak74m_izhmash_ak74m_std", + "ShortName": "stock_ak74m_izhmash_ak74m_std", + "Description": "stock_ak74m_izhmash_ak74m_std", + "Weight": 0.06, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_mk16_fn_scar_folding_stock_cheek.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "5bfeb32b0db834001a6694d9": { + "_id": "5bfeb32b0db834001a6694d9", + "_name": "stock_m700_hogue_overmolded_ghillie_green_pillar_bedded_stock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_m700_hogue_overmolded_ghillie_green_pillar_bedded_stock", + "ShortName": "stock_m700_hogue_overmolded_ghillie_green_pillar_bedded_stock", + "Description": "stock_m700_hogue_overmolded_ghillie_green_pillar_bedded_stock", + "Weight": 1.8, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_m700_hogue_overmolded_ghillie_green_pillar_bedded_stock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5d25a6538abbc306c62e630d", + "5d25a4a98abbc30b917421a4", + "5d25a7b88abbc3054f3e60bc", + "5ce69cbad7f00c00b61c5098", + "5d25a6a48abbc306c62e6310", + "5d25af8f8abbc3055079fec5", + "5cf12a15d7f00c05464b293f" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5c091fb40db834001f274773", + "_parent": "5bfeb32b0db834001a6694d9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -21, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 14, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 2, + "HeatFactor": 1.021, + "CoolFactor": 0.984, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "5a788169c5856700142fdd9e": { + "_id": "5a788169c5856700142fdd9e", + "_name": "stock_870_shockwave_technologies_raptor_grip", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_870_shockwave_technologies_raptor_grip", + "ShortName": "stock_870_shockwave_technologies_raptor_grip", + "Description": "stock_870_shockwave_technologies_raptor_grip\n", + "Weight": 0.4, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_870_shockwave_technologies_raptor_grip.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 1, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083be64bdc2d20478b456f" + }, + "649ec87d8007560a9001ab36": { + "_id": "649ec87d8007560a9001ab36", + "_name": "stock_ak12_izhmash_ak12_stock_tube_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_colt_stock_tube_A2", + "ShortName": "stock_ar15_colt_stock_tube_A2", + "Description": "stock_ar15_colt_stock_tube_A2", + "Weight": 0.142, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak12_izhmash_ak12_stock_tube_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "649ec87d8007560a9001ab37", + "_parent": "649ec87d8007560a9001ab36", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "602e620f9b513876d4338d9a", + "5a9eb32da2750c00171b3f9c", + "5bfe86df0db834001b734685", + "55d4ae6c4bdc2d8b2f8b456e", + "5c87a07c2e2216001219d4a2", + "5bb20e70d4351e0035629f8f", + "5beec8c20db834001d2c465c", + "5ae30c9a5acfc408fb139a03", + "5d135e83d7ad1a21b83f42d8", + "5d135ecbd7ad1a21c176542e", + "56eabf3bd2720b75698b4569", + "58d2946386f774496974c37e", + "58d2946c86f7744e271174b5", + "58d2947686f774485c6a1ee5", + "58d2947e86f77447aa070d53", + "5947c73886f7747701588af5", + "5c793fde2e221601da358614", + "5b39f8db5acfc40016387a1b", + "5fbbaa86f9986c4cff3fe5f6", + "5fce16961f152d4312622bc9", + "5fc2369685fd526b824a5713", + "606587d11246154cad35d635", + "628a85ee6b1d481ff772e9d5", + "5d44069ca4b9361ebd26fc37", + "5d4406a8a4b9361e4f6eb8b7", + "6516e91f609aaf354b34b3e2", + "6516e971a3d4c6497930b450", + "6529370c405a5f51dd023db8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 1, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b2314bdc2d79388b4576" + }, + "5fce16961f152d4312622bc9": { + "_id": "5fce16961f152d4312622bc9", + "_name": "stock_ar15_kriss_defiance_ds150_fde", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_magpul_moe_carbine_blk", + "ShortName": "stock_ar15_magpul_moe_carbine_blk", + "Description": "stock_ar15_magpul_moe_carbine_blk", + "Weight": 0.4, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_kriss_defiance_ds150_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -22, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "62811e335631d45211793c95": { + "_id": "62811e335631d45211793c95", + "_name": "pistolgrip_ax_gtac_ax_pistol_grip_adapter_pb", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_590_mesa_leo_stock_adapter_gen1", + "ShortName": "stock_590_mesa_leo_stock_adapter_gen1", + "Description": "stock_590_mesa_leo_stock_adapter_gen1", + "Weight": 0.15, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ax_gtac_ax_pistol_grip_adapter_pb.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 1, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock_000", + "_id": "62811e335631d45211793c96", + "_parent": "62811e335631d45211793c95", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62811f828193841aca4a45c3" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "62811e335631d45211793c97", + "_parent": "62811e335631d45211793c95", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5bb20e18d4351e00320205d5", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "59db3a1d86f77429e05b4e92", + "615d8faecabb9b7ad90f4d5d", + "5b07db875acfc40dc528a5f6", + "63f5feead259b42f0b4d6d0f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "62815b828193841aca4a45c9", + "_parent": "62811e335631d45211793c95", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6281204f308cb521f87a8f9b" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": true, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083be64bdc2d20478b456f" + }, + "5aaf8e43e5b5b00015693246": { + "_id": "5aaf8e43e5b5b00015693246", + "_name": "stock_m1a_springfield_armory_socom_16", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_m1a_springfield_armory_socom_16", + "ShortName": "stock_m1a_springfield_armory_socom_16", + "Description": "stock_m1a_springfield_armory_socom_16", + "Weight": 1.004, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_m1a_springfield_armory_socom_16.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount", + "_id": "5ab24fe2e5b5b000173b8b67", + "_parent": "5aaf8e43e5b5b00015693246", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5addbfd15acfc40015621bde", + "5addbfbb5acfc400194dbcf7", + "5addc00b5acfc4001669f144", + "5ab24ef9e5b5b00fe93c9209" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -25, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 20, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 0.97, + "CoolFactor": 1.02, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649be884bdc2d79388b4577" + }, + "6181688c6c780c1e710c9b04": { + "_id": "6181688c6c780c1e710c9b04", + "_name": "charge_mk16_fn_charging_handle_std", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "Рукоятка затвора РП-1 для АК и совместимых", + "ShortName": "Рукоятка затвора РП-1", + "Description": "Рукоятка затвора РП-1 от компании Зенит. Совместима со всеми моделями автомата Калашникова и карабинами, созданными на базе АК. \nРП-1 увеличивает штатную рукоятку затвора улучшая эргономику оружия, делает обращение с ним более удобным.", + "Weight": 0.017, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_mk16_fn_charging_handle_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d44fd14bdc2d962f8b456e" + }, + "5b2240bf5acfc40dc528af69": { + "_id": "5b2240bf5acfc40dc528af69", + "_name": "charge_ar15_radian_raptor_ambidextrous_charging_handle", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "charge_ar15_radian_raptor_ambidextrous_charging_handle", + "ShortName": "charge_ar15_radian_raptor_ambidextrous_charging_handle", + "Description": "charge_ar15_radian_raptor_ambidextrous_charging_handle", + "Weight": 0.04, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_ar15_radian_raptor_ambidextrous_charging_handle.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55802f624bdc2d1c128b4580" + }, + "653ed132896b99b40a0292e6": { + "_id": "653ed132896b99b40a0292e6", + "_name": "stock_fab_fab_defence_uas_folding_stock", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak_magpul_zhukov_s", + "ShortName": "stock_ak_magpul_zhukov_s", + "Description": "stock_ak_magpul_zhukov_s", + "Weight": 0.4, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_fab_fab_defence_uas_folding_stock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -20, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 15, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b0fc4bdc2d17108b4588" + }, + "6516e971a3d4c6497930b450": { + "_id": "6516e971a3d4c6497930b450", + "_name": "stock_ar15_dd_enhanced_collapsible_buttstock_fde", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_magpul_moe_carbine_blk", + "ShortName": "stock_ar15_magpul_moe_carbine_blk", + "Description": "stock_ar15_magpul_moe_carbine_blk", + "Weight": 0.227, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_dd_enhanced_collapsible_buttstock_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c0e2ff6d174af02a1659d4a", + "5a33e75ac4a2826c6e06d759" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock_000", + "_id": "6516e971a3d4c6497930b451", + "_parent": "6516e971a3d4c6497930b450", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6516e9bc5901745209404287", + "6516e9d7e239bd0c487e3766" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -20, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 14, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "6529348224cbe3c74a05e5c4": { + "_id": "6529348224cbe3c74a05e5c4", + "_name": "stock_all_sig_stock_locking_hinge_assembly", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "Переходник ME для АК", + "ShortName": "МЕ4", + "Description": "Адаптер для установки трубы под телескопические приклады на АК с нескладными прикладами.", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_all_sig_stock_locking_hinge_assembly.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "6529348224cbe3c74a05e5c5", + "_parent": "6529348224cbe3c74a05e5c4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6529366450dc782999054ba0" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b1c04bdc2d16268b457c" + }, + "606587bd6d0bd7580617bacc": { + "_id": "606587bd6d0bd7580617bacc", + "_name": "charge_mk47_cmmg_mid_charging_handle", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "charge_mk47_cmmg_mid_charging_handle", + "ShortName": "charge_mk47_cmmg_mid_charging_handle", + "Description": "charge_mk47_cmmg_mid_charging_handle", + "Weight": 0.03, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_mk47_cmmg_mid_charging_handle.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55802f624bdc2d1c128b4580" + }, + "5cc6ea85e4a949000e1ea3c3": { + "_id": "5cc6ea85e4a949000e1ea3c3", + "_name": "charge_p90_km_the_handler", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "Рукоятка затвора РП-1 для АК и совместимых", + "ShortName": "Рукоятка затвора РП-1", + "Description": "Рукоятка затвора РП-1 от компании Зенит. Совместима со всеми моделями автомата Калашникова и карабинами, созданными на базе АК. \nРП-1 увеличивает штатную рукоятку затвора улучшая эргономику оружия, делает обращение с ним более удобным.", + "Weight": 0.019, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_p90_km_the_handler.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d44fd14bdc2d962f8b456e" + }, + "5c0faf68d174af02a96260b8": { + "_id": "5c0faf68d174af02a96260b8", + "_name": "charge_ar15_adar_charging_handle", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "Рукоятка заряжания Colt AR-15 для AR-15 и совместимых", + "ShortName": "Рукоятка заряжания AR-15", + "Description": "Стандартная рукоятка заряжания для оружия на базе AR-15 и совместимых.", + "Weight": 0.039, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_ar15_colt_charging_handle.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55802f624bdc2d1c128b4580" + }, + "5f633ff5c444ce7e3c30a006": { + "_id": "5f633ff5c444ce7e3c30a006", + "_name": "charge_ar15_rainer_arms_avalanche_mod2", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "charge_ar15_rainer_arms_avalanche_mod2", + "ShortName": "charge_ar15_rainer_arms_avalanche_mod2", + "Description": "charge_ar15_rainer_arms_avalanche_mod2", + "Weight": 0.028, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_ar15_rainer_arms_avalanche_mod2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55802f624bdc2d1c128b4580" + }, + "5ae35b315acfc4001714e8b0": { + "_id": "5ae35b315acfc4001714e8b0", + "_name": "stock_870_mesa_leo_stock_adapter", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_870_mesa_leo_stock_adapter", + "ShortName": "stock_870_mesa_leo_stock_adapter", + "Description": "stock_870_mesa_leo_stock_adapter", + "Weight": 0.4, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_870_mesa_leo_stock_adapter.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 1, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5ae35bb95acfc4039d663364", + "_parent": "5ae35b315acfc4001714e8b0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "602e620f9b513876d4338d9a", + "5a9eb32da2750c00171b3f9c", + "5bfe86df0db834001b734685", + "55d4ae6c4bdc2d8b2f8b456e", + "5c87a07c2e2216001219d4a2", + "5bb20e70d4351e0035629f8f", + "5fbbaa86f9986c4cff3fe5f6", + "5fce16961f152d4312622bc9", + "5ae30c9a5acfc408fb139a03", + "5d135e83d7ad1a21b83f42d8", + "5d135ecbd7ad1a21c176542e", + "56eabf3bd2720b75698b4569", + "58d2946386f774496974c37e", + "58d2946c86f7744e271174b5", + "58d2947686f774485c6a1ee5", + "58d2947e86f77447aa070d53", + "5d44069ca4b9361ebd26fc37", + "5d4406a8a4b9361e4f6eb8b7", + "5947c73886f7747701588af5", + "5c793fde2e221601da358614", + "5b39f8db5acfc40016387a1b", + "5beec8c20db834001d2c465c", + "628a85ee6b1d481ff772e9d5", + "606587d11246154cad35d635", + "5fc2369685fd526b824a5713", + "6516e91f609aaf354b34b3e2", + "6516e971a3d4c6497930b450", + "6529370c405a5f51dd023db8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "5ae35c615acfc408fb139ab7", + "_parent": "5ae35b315acfc4001714e8b0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5bb20e18d4351e00320205d5", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "615d8faecabb9b7ad90f4d5d", + "5b07db875acfc40dc528a5f6", + "63f5feead259b42f0b4d6d0f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083be64bdc2d20478b456f" + }, + "62811f828193841aca4a45c3": { + "_id": "62811f828193841aca4a45c3", + "_name": "stock_ax_accuracy_international_ax_butt_stock_pb", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "Приклад High Standard M4SS", + "ShortName": "M4SS", + "Description": "Телескопический приклад High Standard M4SS во всем повторяет классический приклад M4A1 за исключением мелких деталей в геометрии.", + "Weight": 0.52, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ax_accuracy_international_ax_butt_stock_pb.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -19, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 1, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + } + }, + "5d120a28d7ad1a1c8962e295": { + "_id": "5d120a28d7ad1a1c8962e295", + "_name": "stock_ace_double_star_ace_recoil_pad_05", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_magpul_rubber_butt_pad", + "ShortName": "stock_ar15_magpul_rubber_butt_pad", + "Description": "stock_ar15_magpul_rubber_butt_pad", + "Weight": 0.22, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ace_double_star_ace_recoil_pad_05.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "58d2912286f7744e27117493" + }, + "5ef1ba28c64c5d0dfc0571a5": { + "_id": "5ef1ba28c64c5d0dfc0571a5", + "_name": "stock_ar15_mesa_crosshair_hydraulic_buffer_tube", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ar15_mesa_crosshair_hydraulic_buffer_tube", + "ShortName": "stock_ar15_mesa_crosshair_hydraulic_buffer_tube", + "Description": "stock_ar15_mesa_crosshair_hydraulic_buffer_tube", + "Weight": 0.3, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ar15_mesa_crosshair_hydraulic_buffer_tube.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5ef1ba28c64c5d0dfc0571a7", + "_parent": "5ef1ba28c64c5d0dfc0571a5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fc2369685fd526b824a5713", + "602e620f9b513876d4338d9a", + "5a9eb32da2750c00171b3f9c", + "5bfe86df0db834001b734685", + "55d4ae6c4bdc2d8b2f8b456e", + "5c87a07c2e2216001219d4a2", + "5bb20e70d4351e0035629f8f", + "5beec8c20db834001d2c465c", + "5fbbaa86f9986c4cff3fe5f6", + "5fce16961f152d4312622bc9", + "5ae30c9a5acfc408fb139a03", + "5d135e83d7ad1a21b83f42d8", + "5d135ecbd7ad1a21c176542e", + "56eabf3bd2720b75698b4569", + "58d2946386f774496974c37e", + "58d2946c86f7744e271174b5", + "58d2947686f774485c6a1ee5", + "58d2947e86f77447aa070d53", + "5d44069ca4b9361ebd26fc37", + "5d4406a8a4b9361e4f6eb8b7", + "5947c73886f7747701588af5", + "5c793fde2e221601da358614", + "5b39f8db5acfc40016387a1b", + "628a85ee6b1d481ff772e9d5", + "606587d11246154cad35d635", + "6516e91f609aaf354b34b3e2", + "6516e971a3d4c6497930b450", + "6529370c405a5f51dd023db8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2.5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "5649b2314bdc2d79388b4576" + }, + "5cbdb1b0ae9215000d50e105": { + "_id": "5cbdb1b0ae9215000d50e105", + "_name": "stock_ak74_izhmash_ak74_std_plum", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak74_izhmash_ak74_std_plastic", + "ShortName": "stock_ak74_izhmash_ak74_std_plastic", + "Description": "stock_ak74_izhmash_ak74_std_plastic", + "Weight": 0.35, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak74_izhmash_ak74_std_plum.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5cbdb1b0ae9215000d50e107", + "_parent": "5cbdb1b0ae9215000d50e105", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a0c59791526d8dba737bba7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -22, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d4ae6c4bdc2d8b2f8b456e" + }, + "6494094948796d891603e59f": { + "_id": "6494094948796d891603e59f", + "_name": "stock_ak_custom_arms_st_ef74_butt_extension", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_ak_izhmash_6g15u_butt_pad", + "ShortName": "stock_ak_izhmash_6g15u_butt_pad", + "Description": "stock_ak_izhmash_6g15u_butt_pad", + "Weight": 0.055, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_ak_custom_arms_st_ef74_butt_extension.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": true, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "58d2912286f7744e27117493" + }, + "5fbcc640016cce60e8341acc": { + "_id": "5fbcc640016cce60e8341acc", + "_name": "charge_mcx_sig_mcx_std", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "charge_mcx_sig_mcx_std", + "ShortName": "charge_mcx_sig_mcx_std", + "Description": "charge_mcx_sig_mcx_std", + "Weight": 0.035, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_mcx_sig_mcx_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55802f624bdc2d1c128b4580" + }, + "5926c32286f774616e42de99": { + "_id": "5926c32286f774616e42de99", + "_name": "charge_mp5_hk_mp5_std", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "charge_mp5_hk_mp5_std", + "ShortName": "charge_mp5_hk_mp5_std", + "Description": "charge_mp5_hk_mp5_std", + "Weight": 0.126, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_mp5_hk_mp5_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55802f624bdc2d1c128b4580" + }, + "56ea7165d2720b6e518b4583": { + "_id": "56ea7165d2720b6e518b4583", + "_name": "charge_ar15_badger_ordnance_tactical_latch", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "charge_ar15_badger_ordnance_tactical_latch", + "ShortName": "BOTLcharge_ar15_badger_ordnance_tactical_latch", + "Description": "The Badger Ordnance Tactical Charging Handle is optimized for use with Mil Spec AR-15/M16/M4 platform rifles and features our popular Gen I Tactical Latch preinstalled. All components are machined from 6061 Alloy and Mil Spec Type III Hardcoat Anodized.", + "Weight": 0.064, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_ar15_badger_ordnance_tactical_latch.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55d44fd14bdc2d962f8b456e" + }, "6087e2a5232e5a31c233d552": { "_id": "6087e2a5232e5a31c233d552", "_name": "stock_ak_promag_archangel_opfor_aa47", @@ -50092,6 +52197,96 @@ }, "_proto": "5649b0fc4bdc2d17108b4588" }, + "5e87116b81c4ed43e83cefdd": { + "_id": "5e87116b81c4ed43e83cefdd", + "_name": "stock_590_mossberg_590a1_std", + "_parent": "55818a594bdc2db9688b456a", + "_type": "Item", + "_props": { + "Name": "stock_590_mossberg_590a1_std", + "ShortName": "stock_590_mossberg_590a1_std", + "Description": "stock_590_mossberg_590a1_std\n", + "Weight": 0.64, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/stocks/stock_590_mossberg_590a1_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 1, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 1, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -23, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": true, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "IsShoulderContact": false, + "Foldable": false, + "Retractable": false, + "SizeReduceRight": 0, + "HeatFactor": 1, + "CoolFactor": 1, + "DurabilityBurnModificator": 1 + }, + "_proto": "56083be64bdc2d20478b456f" + }, "5fb655b748c711690e3a8d5a": { "_id": "5fb655b748c711690e3a8d5a", "_name": "stock_vector_kriss_non_folding_adapter", @@ -50947,2783 +53142,6 @@ }, "_proto": "55802f624bdc2d1c128b4580" }, - "5bae13bad4351e00320204af": { - "_id": "5bae13bad4351e00320204af", - "_name": "stock_mosin_promag_archangel_opfor_prs", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_mosin_promag_archangel_opfor_prs", - "ShortName": "stock_mosin_promag_archangel_opfor_prs", - "Description": "stock_mosin_promag_archangel_opfor_prs", - "Weight": 2, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mosin_promag_archangel_opfor_prs.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -27, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 40, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 0.941, - "CoolFactor": 1.063, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "58d2946c86f7744e271174b5": { - "_id": "58d2946c86f7744e271174b5", - "_name": "stock_ar15_magpul_moe_carbine_fg", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_magpul_moe_carbine_blk", - "ShortName": "stock_ar15_magpul_moe_carbine_blk", - "Description": "stock_ar15_magpul_moe_carbine_blk", - "Weight": 0.226, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_magpul_moe_carbine_fg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "58d2946c86f7744e271174b6", - "_parent": "58d2946c86f7744e271174b5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "58d2912286f7744e27117493" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -21, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "5c5db6ee2e221600113fba54": { - "_id": "5c5db6ee2e221600113fba54", - "_name": "stock_mpx_maxim_defence_cqb_stock", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_all_sig_mpx_mcx_early_type", - "ShortName": "stock_all_sig_mpx_mcx_early_type", - "Description": "stock_all_sig_mpx_mcx_early_type", - "Weight": 0.501, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mpx_maxim_defence_cqb_stock.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -21, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 15, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "5c99f3592e221644fc633070": { - "_id": "5c99f3592e221644fc633070", - "_name": "stock_toz-106_pafnuch_mosin_custom", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_toz-106_toz_full_std", - "ShortName": "stock_toz-106_toz_full_std", - "Description": "stock_toz-106_toz_full_std", - "Weight": 1.29, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_toz-106_pafnuch_mosin_custom.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5c9e1cd7ae921500134b20f5", - "_parent": "5c99f3592e221644fc633070", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bbde409d4351e003562b036" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -29, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1.043, - "CoolFactor": 0.955, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "61825d24d3a39d50044c13af": { - "_id": "61825d24d3a39d50044c13af", - "_name": "stock_mk16_fn_scar_folding_stock_cheek_fde", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak74m_izhmash_ak74m_std", - "ShortName": "stock_ak74m_izhmash_ak74m_std", - "Description": "stock_ak74m_izhmash_ak74m_std", - "Weight": 0.06, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mk16_fn_scar_folding_stock_cheek_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "5c503af12e221602b177ca02": { - "_id": "5c503af12e221602b177ca02", - "_name": "stock_vepr_molot_vpo-101_std_wood", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_toz-106_toz_short_std_wood", - "ShortName": "stock_toz-106_toz_short_std_wood", - "Description": "stock_toz-106_toz_short_std_wood", - "Weight": 1.25, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_vepr_molot_vpo-101_std_wood.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -22, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 18, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 2, - "HeatFactor": 1.052, - "CoolFactor": 0.951, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "5f63405df5750b524b45f114": { - "_id": "5f63405df5750b524b45f114", - "_name": "stock_vepr_pflevsha_svd_type_walnut", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_vepr_pflevsha_svd_type_walnut", - "ShortName": "stock_vepr_pflevsha_svd_type_walnut", - "Description": "stock_vepr_pflevsha_svd_type_walnut", - "Weight": 1.07, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_vepr_pflevsha_svd_type_walnut.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -25, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 21, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 2, - "HeatFactor": 1.049, - "CoolFactor": 0.958, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "6516e9bc5901745209404287": { - "_id": "6516e9bc5901745209404287", - "_name": "stock_base_dd_thicker_convex_shape_buttpad_12mm", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_magpul_rubber_butt_pad", - "ShortName": "stock_ar15_magpul_rubber_butt_pad", - "Description": "stock_ar15_magpul_rubber_butt_pad", - "Weight": 0.055, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_base_dd_thicker_convex_shape_buttpad_12mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - } - }, - "5c5db6b32e221600102611a0": { - "_id": "5c5db6b32e221600102611a0", - "_name": "charge_mpx_geissele_sch", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "charge_mpx_sig_mpx_double_latch", - "ShortName": "charge_mpx_sig_mpx_double_latch", - "Description": "charge_mpx_sig_mpx_double_latch", - "Weight": 0.03, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_mpx_geissele_sch.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55802f624bdc2d1c128b4580" - }, - "62ebbc53e3c1e1ec7c02c44f": { - "_id": "62ebbc53e3c1e1ec7c02c44f", - "_name": "charge_aug_steyr_a3_handle", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "Рукоятка затвора РП-1 для АК и совместимых", - "ShortName": "Рукоятка затвора РП-1", - "Description": "Рукоятка затвора РП-1 от компании Зенит. Совместима со всеми моделями автомата Калашникова и карабинами, созданными на базе АК. \nРП-1 увеличивает штатную рукоятку затвора улучшая эргономику оружия, делает обращение с ним более удобным.", - "Weight": 0.011, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_aug_steyr_a3_handle.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d44fd14bdc2d962f8b456e" - }, - "55d44fd14bdc2d962f8b456e": { - "_id": "55d44fd14bdc2d962f8b456e", - "_name": "charge_ar15_colt_charging_handle", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "Рукоятка заряжания Colt AR-15 для AR-15 и совместимых", - "ShortName": "Рукоятка заряжания AR-15", - "Description": "Стандартная рукоятка заряжания для оружия на базе AR-15 и совместимых.", - "Weight": 0.035, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_ar15_colt_charging_handle.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55802f624bdc2d1c128b4580" - }, - "5bb20dbcd4351e44f824c04e": { - "_id": "5bb20dbcd4351e44f824c04e", - "_name": "charge_ar15_hk_extended_latch_charging_handle", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "charge_ar15_badger_ordnance_tactical_latch", - "ShortName": "BOTLcharge_ar15_badger_ordnance_tactical_latch", - "Description": "The Badger Ordnance Tactical Charging Handle is optimized for use with Mil Spec AR-15/M16/M4 platform rifles and features our popular Gen I Tactical Latch preinstalled. All components are machined from 6061 Alloy and Mil Spec Type III Hardcoat Anodized.", - "Weight": 0.064, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_ar15_hk_extended_latch_charging_handle.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d44fd14bdc2d962f8b456e" - }, - "58d2912286f7744e27117493": { - "_id": "58d2912286f7744e27117493", - "_name": "stock_ar15_magpul_rubber_butt_pad", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_magpul_rubber_butt_pad", - "ShortName": "stock_ar15_magpul_rubber_butt_pad", - "Description": "stock_ar15_magpul_rubber_butt_pad", - "Weight": 0.055, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_magpul_rubber_butt_pad.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - } - }, - "5bfe86df0db834001b734685": { - "_id": "5bfe86df0db834001b734685", - "_name": "stock_ar15_fab_defense_glr_16_s", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_fab_defense_gl_shock", - "ShortName": "stock_ar15_fab_defense_gl_shock", - "Description": "stock_ar15_fab_defense_gl_shock", - "Weight": 0.276, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_fab_defense_glr_16_s.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -20, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 13, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "5649b0fc4bdc2d17108b4588": { - "_id": "5649b0fc4bdc2d17108b4588", - "_name": "stock_ak74_izhmash_ak74_std_plastic", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak74_izhmash_ak74_std_plastic", - "ShortName": "stock_ak74_izhmash_ak74_std_plastic", - "Description": "stock_ak74_izhmash_ak74_std_plastic", - "Weight": 0.35, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak74_izhmash_ak74_std_plastic.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5a0d56941526d8dba31fe3ba", - "_parent": "5649b0fc4bdc2d17108b4588", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a0c59791526d8dba737bba7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -22, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "5bfd35380db83400232fe5cc": { - "_id": "5bfd35380db83400232fe5cc", - "_name": "stock_mosin_izhmash_mosin_infantry_wood", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_toz-106_toz_short_std_wood", - "ShortName": "stock_toz-106_toz_short_std_wood", - "Description": "stock_toz-106_toz_short_std_wood", - "Weight": 1.8, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_mosin_izhmash_mosin_infantry_wood.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 4, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5b3f7bf05acfc433000ecf6b", - "5bfd4cbe0db834001b73449f", - "5bfd4cd60db834001c38f095", - "5bfd4cc90db834001d23e846" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5bfd35380db83400232fe5ce", - "_parent": "5bfd35380db83400232fe5cc", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bbde409d4351e003562b036" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "5bfd35380db83400232fe5cf", - "_parent": "5bfd35380db83400232fe5cc", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bbde41ed4351e003562b038" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -20, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 2, - "HeatFactor": 1.099, - "CoolFactor": 0.908, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b0fc4bdc2d17108b4588" - }, - "62811f828193841aca4a45c3": { - "_id": "62811f828193841aca4a45c3", - "_name": "stock_ax_accuracy_international_ax_butt_stock_pb", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "Приклад High Standard M4SS", - "ShortName": "M4SS", - "Description": "Телескопический приклад High Standard M4SS во всем повторяет классический приклад M4A1 за исключением мелких деталей в геометрии.", - "Weight": 0.52, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ax_accuracy_international_ax_butt_stock_pb.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -19, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 1, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - } - }, - "5ef1ba28c64c5d0dfc0571a5": { - "_id": "5ef1ba28c64c5d0dfc0571a5", - "_name": "stock_ar15_mesa_crosshair_hydraulic_buffer_tube", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_mesa_crosshair_hydraulic_buffer_tube", - "ShortName": "stock_ar15_mesa_crosshair_hydraulic_buffer_tube", - "Description": "stock_ar15_mesa_crosshair_hydraulic_buffer_tube", - "Weight": 0.3, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ar15_mesa_crosshair_hydraulic_buffer_tube.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5ef1ba28c64c5d0dfc0571a7", - "_parent": "5ef1ba28c64c5d0dfc0571a5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc2369685fd526b824a5713", - "602e620f9b513876d4338d9a", - "5a9eb32da2750c00171b3f9c", - "5bfe86df0db834001b734685", - "55d4ae6c4bdc2d8b2f8b456e", - "5c87a07c2e2216001219d4a2", - "5bb20e70d4351e0035629f8f", - "5beec8c20db834001d2c465c", - "5fbbaa86f9986c4cff3fe5f6", - "5fce16961f152d4312622bc9", - "5ae30c9a5acfc408fb139a03", - "5d135e83d7ad1a21b83f42d8", - "5d135ecbd7ad1a21c176542e", - "56eabf3bd2720b75698b4569", - "58d2946386f774496974c37e", - "58d2946c86f7744e271174b5", - "58d2947686f774485c6a1ee5", - "58d2947e86f77447aa070d53", - "5d44069ca4b9361ebd26fc37", - "5d4406a8a4b9361e4f6eb8b7", - "5947c73886f7747701588af5", - "5c793fde2e221601da358614", - "5b39f8db5acfc40016387a1b", - "628a85ee6b1d481ff772e9d5", - "606587d11246154cad35d635", - "6516e91f609aaf354b34b3e2", - "6516e971a3d4c6497930b450", - "6529370c405a5f51dd023db8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2.5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "5649b2314bdc2d79388b4576" - }, - "5d120a28d7ad1a1c8962e295": { - "_id": "5d120a28d7ad1a1c8962e295", - "_name": "stock_ace_double_star_ace_recoil_pad_05", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ar15_magpul_rubber_butt_pad", - "ShortName": "stock_ar15_magpul_rubber_butt_pad", - "Description": "stock_ar15_magpul_rubber_butt_pad", - "Weight": 0.22, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ace_double_star_ace_recoil_pad_05.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "58d2912286f7744e27117493" - }, - "6494094948796d891603e59f": { - "_id": "6494094948796d891603e59f", - "_name": "stock_ak_custom_arms_st_ef74_butt_extension", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak_izhmash_6g15u_butt_pad", - "ShortName": "stock_ak_izhmash_6g15u_butt_pad", - "Description": "stock_ak_izhmash_6g15u_butt_pad", - "Weight": 0.055, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak_custom_arms_st_ef74_butt_extension.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": true, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": true, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "58d2912286f7744e27117493" - }, - "5cbdb1b0ae9215000d50e105": { - "_id": "5cbdb1b0ae9215000d50e105", - "_name": "stock_ak74_izhmash_ak74_std_plum", - "_parent": "55818a594bdc2db9688b456a", - "_type": "Item", - "_props": { - "Name": "stock_ak74_izhmash_ak74_std_plastic", - "ShortName": "stock_ak74_izhmash_ak74_std_plastic", - "Description": "stock_ak74_izhmash_ak74_std_plastic", - "Weight": 0.35, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/stocks/stock_ak74_izhmash_ak74_std_plum.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 1, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_stock", - "_id": "5cbdb1b0ae9215000d50e107", - "_parent": "5cbdb1b0ae9215000d50e105", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a0c59791526d8dba737bba7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -22, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": true, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "IsShoulderContact": false, - "Foldable": false, - "Retractable": false, - "SizeReduceRight": 0, - "HeatFactor": 1, - "CoolFactor": 1, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d4ae6c4bdc2d8b2f8b456e" - }, - "5fbcc640016cce60e8341acc": { - "_id": "5fbcc640016cce60e8341acc", - "_name": "charge_mcx_sig_mcx_std", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "charge_mcx_sig_mcx_std", - "ShortName": "charge_mcx_sig_mcx_std", - "Description": "charge_mcx_sig_mcx_std", - "Weight": 0.035, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_mcx_sig_mcx_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55802f624bdc2d1c128b4580" - }, - "5926c32286f774616e42de99": { - "_id": "5926c32286f774616e42de99", - "_name": "charge_mp5_hk_mp5_std", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "charge_mp5_hk_mp5_std", - "ShortName": "charge_mp5_hk_mp5_std", - "Description": "charge_mp5_hk_mp5_std", - "Weight": 0.126, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_mp5_hk_mp5_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55802f624bdc2d1c128b4580" - }, - "56ea7165d2720b6e518b4583": { - "_id": "56ea7165d2720b6e518b4583", - "_name": "charge_ar15_badger_ordnance_tactical_latch", - "_parent": "55818a6f4bdc2db9688b456b", - "_type": "Item", - "_props": { - "Name": "charge_ar15_badger_ordnance_tactical_latch", - "ShortName": "BOTLcharge_ar15_badger_ordnance_tactical_latch", - "Description": "The Badger Ordnance Tactical Charging Handle is optimized for use with Mil Spec AR-15/M16/M4 platform rifles and features our popular Gen I Tactical Latch preinstalled. All components are machined from 6061 Alloy and Mil Spec Type III Hardcoat Anodized.", - "Weight": 0.064, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/charges/charge_ar15_badger_ordnance_tactical_latch.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1 - }, - "_proto": "55d44fd14bdc2d962f8b456e" - }, - "619f54a1d25cbd424731fb99": { - "_id": "619f54a1d25cbd424731fb99", - "_name": "mag_rhino_chiappa_rhino_cylinder_9x33r_6", - "_parent": "610720f290b75a49ff2e5e25", - "_type": "Item", - "_props": { - "Name": "mag_mc_255_cillinder_5", - "ShortName": "mag_mc_255_cillinder_5", - "Description": "mag_mc_255_cillinder_5", - "Weight": 0.11, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_rhino_chiappa_rhino_cylinder_9x33r_6.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "camora_000", - "_id": "619f54a1d25cbd424731fb9b", - "_parent": "619f54a1d25cbd424731fb99", - "_props": { - "filters": [ - { - "Filter": [ - "62330b3ed4dc74626d570b95", - "62330bfadc5883093563729b", - "62330c18744e5e31df12f516", - "62330c40bdd19b369e1e53d1" - ], - "MaxStackCount": 1 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - }, - { - "_name": "camora_001", - "_id": "619f54a1d25cbd424731fb9c", - "_parent": "619f54a1d25cbd424731fb99", - "_props": { - "filters": [ - { - "Filter": [ - "62330b3ed4dc74626d570b95", - "62330bfadc5883093563729b", - "62330c18744e5e31df12f516", - "62330c40bdd19b369e1e53d1" - ], - "MaxStackCount": 1 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - }, - { - "_name": "camora_002", - "_id": "619f54a1d25cbd424731fb9d", - "_parent": "619f54a1d25cbd424731fb99", - "_props": { - "filters": [ - { - "Filter": [ - "62330b3ed4dc74626d570b95", - "62330bfadc5883093563729b", - "62330c18744e5e31df12f516", - "62330c40bdd19b369e1e53d1" - ], - "MaxStackCount": 1 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - }, - { - "_name": "camora_003", - "_id": "619f54a1d25cbd424731fb9e", - "_parent": "619f54a1d25cbd424731fb99", - "_props": { - "filters": [ - { - "Filter": [ - "62330b3ed4dc74626d570b95", - "62330bfadc5883093563729b", - "62330c18744e5e31df12f516", - "62330c40bdd19b369e1e53d1" - ], - "MaxStackCount": 1 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - }, - { - "_name": "camora_004", - "_id": "619f54a1d25cbd424731fb9f", - "_parent": "619f54a1d25cbd424731fb99", - "_props": { - "filters": [ - { - "Filter": [ - "62330b3ed4dc74626d570b95", - "62330bfadc5883093563729b", - "62330c18744e5e31df12f516", - "62330c40bdd19b369e1e53d1" - ], - "MaxStackCount": 1 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - }, - { - "_name": "camora_005", - "_id": "61a5f8f6d629293c9830ad4a", - "_parent": "619f54a1d25cbd424731fb99", - "_props": { - "filters": [ - { - "Filter": [ - "62330b3ed4dc74626d570b95", - "62330bfadc5883093563729b", - "62330c18744e5e31df12f516", - "62330c40bdd19b369e1e53d1" - ], - "MaxStackCount": 1 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "619f54a1d25cbd424731fba0", - "_parent": "619f54a1d25cbd424731fb99", - "_max_count": 6, - "_props": { - "filters": [ - { - "Filter": [ - "62330b3ed4dc74626d570b95", - "62330bfadc5883093563729b", - "62330c18744e5e31df12f516", - "62330c40bdd19b369e1e53d1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "InternalMagazine", - "VisibleAmmoRangesString": "", - "MalfunctionChance": 0, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d4837c4bdc2d1d4e8b456c" - }, - "5882163e24597758206fee8c": { - "_id": "5882163e24597758206fee8c", - "_name": "mag_mr153_izhmeh_12g_5", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Удлиннитель магазина МР-153 12к для МР-153 до 8 ми патронов", - "ShortName": "МР153x8", - "Description": "Удлиннитель магазина МР-153", - "Weight": 0.93, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mr153_izhmeh_12g_5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5882163e24597758206fee8d", - "_parent": "5882163e24597758206fee8c", - "_max_count": 5, - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "InternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.05, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "56deee15d2720bee328b4567" - }, - "5ba2657ed4351e0035628ff2": { - "_id": "5ba2657ed4351e0035628ff2", - "_name": "mag_mp7_hk_std_46x30_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_mp7_hk_std_46x30_20", - "ShortName": "mag_mp7_hk_std_46x30_20", - "Description": "mag_mp7_hk_std_46x30_20", - "Weight": 0.15, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mp7_hk_std_46x30_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 1, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5ba2657ed4351e0035628ff4", - "_parent": "5ba2657ed4351e0035628ff2", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "5ba26812d4351e003201fef1", - "5ba26835d4351e0035628ff5", - "5ba2678ad4351e44f824b344", - "5ba26844d4351e00334c9475", - "64b6979341772715af0f9c39" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.03, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, "624c3074dbbd335e8e6becf3": { "_id": "624c3074dbbd335e8e6becf3", "_name": "mag_rhino_chiappa_rhino_cylinder_9x19", @@ -54266,23 +53684,23 @@ }, "_proto": "55d4837c4bdc2d1d4e8b456c" }, - "62e7e7bbe6da9612f743f1e0": { - "_id": "62e7e7bbe6da9612f743f1e0", - "_name": "launcher_ak_toz_gp25_40_vog", - "_parent": "55818b014bdc2ddc698b456b", + "619f54a1d25cbd424731fb99": { + "_id": "619f54a1d25cbd424731fb99", + "_name": "mag_rhino_chiappa_rhino_cylinder_9x33r_6", + "_parent": "610720f290b75a49ff2e5e25", "_type": "Item", "_props": { - "Name": "launcher_ak_toz_gp25_40_vog ", - "ShortName": "launcher_ak_toz_gp25_40_vog ", - "Description": "", - "Weight": 1.4, - "BackgroundColor": "blue", - "Width": 2, + "Name": "mag_mc_255_cillinder_5", + "ShortName": "mag_mc_255_cillinder_5", + "Description": "mag_mc_255_cillinder_5", + "Weight": 0.11, + "BackgroundColor": "yellow", + "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "mod", + "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/weapons/gp25/launcher_ak_toz_gp25_40_vog_container.bundle", + "path": "assets/content/items/mods/magazines/mag_rhino_chiappa_rhino_cylinder_9x33r_6.bundle", "rcid": "" }, "UsePrefab": { @@ -54299,8 +53717,8 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, + "LootExperience": 5, + "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -54310,76 +53728,255 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, - "CanSellOnRagfair": false, + "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "5a7dbfc1159bd40016548fde", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "615d8fd3290d254f5e6b2edc", - "5fc0f9b5d724d907e2077d82", - "5fc0f9cbd6fa9c00c571bb90", - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b237e425acfc4771e1be0b6", - "5cf656f2d7f00c06585fb6eb", - "5d4aab30a4b9365435358c55", - "5a9d6d13a2750c00164f6b03", - "5a9d6d21a2750c00137fa649", - "59e0bed186f774156f04ce84", - "5b7be4895acfc400170e2dd5", - "5cf4e3f3d7f00c06595bc7f0", - "5648ae314bdc2d3d1c8b457f", - "5d2c829448f0353a5c7d6674", - "5b800e9286f7747a8b04f3ff", - "5b80242286f77429445e0b47", - "59fb375986f7741b681b81a6", - "57cff947245977638e6f2a19", - "57cffd8224597763b03fc609", - "57cffddc24597763133760c6", - "57cffe0024597763b03fc60b", - "57cffe20245977632f391a9d", - "5c9a07572e221644f31c4b32", - "5c9a1c3a2e2216000e69fb6a", - "5c9a1c422e221600106f69f0", - "5f6331e097199b7db2128dc2", - "5c17664f2e2216398b5a7e3c", - "5efaf417aeb21837e749c7f2", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "65169d5b30425317755f8e25", - "648067db042be0705c0b3009", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "camora_000", + "_id": "619f54a1d25cbd424731fb9b", + "_parent": "619f54a1d25cbd424731fb99", + "_props": { + "filters": [ + { + "Filter": [ + "62330b3ed4dc74626d570b95", + "62330bfadc5883093563729b", + "62330c18744e5e31df12f516", + "62330c40bdd19b369e1e53d1" + ], + "MaxStackCount": 1 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + }, + { + "_name": "camora_001", + "_id": "619f54a1d25cbd424731fb9c", + "_parent": "619f54a1d25cbd424731fb99", + "_props": { + "filters": [ + { + "Filter": [ + "62330b3ed4dc74626d570b95", + "62330bfadc5883093563729b", + "62330c18744e5e31df12f516", + "62330c40bdd19b369e1e53d1" + ], + "MaxStackCount": 1 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + }, + { + "_name": "camora_002", + "_id": "619f54a1d25cbd424731fb9d", + "_parent": "619f54a1d25cbd424731fb99", + "_props": { + "filters": [ + { + "Filter": [ + "62330b3ed4dc74626d570b95", + "62330bfadc5883093563729b", + "62330c18744e5e31df12f516", + "62330c40bdd19b369e1e53d1" + ], + "MaxStackCount": 1 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + }, + { + "_name": "camora_003", + "_id": "619f54a1d25cbd424731fb9e", + "_parent": "619f54a1d25cbd424731fb99", + "_props": { + "filters": [ + { + "Filter": [ + "62330b3ed4dc74626d570b95", + "62330bfadc5883093563729b", + "62330c18744e5e31df12f516", + "62330c40bdd19b369e1e53d1" + ], + "MaxStackCount": 1 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + }, + { + "_name": "camora_004", + "_id": "619f54a1d25cbd424731fb9f", + "_parent": "619f54a1d25cbd424731fb99", + "_props": { + "filters": [ + { + "Filter": [ + "62330b3ed4dc74626d570b95", + "62330bfadc5883093563729b", + "62330c18744e5e31df12f516", + "62330c40bdd19b369e1e53d1" + ], + "MaxStackCount": 1 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + }, + { + "_name": "camora_005", + "_id": "61a5f8f6d629293c9830ad4a", + "_parent": "619f54a1d25cbd424731fb99", + "_props": { + "filters": [ + { + "Filter": [ + "62330b3ed4dc74626d570b95", + "62330bfadc5883093563729b", + "62330c18744e5e31df12f516", + "62330c40bdd19b369e1e53d1" + ], + "MaxStackCount": 1 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "619f54a1d25cbd424731fba0", + "_parent": "619f54a1d25cbd424731fb99", + "_max_count": 6, + "_props": { + "filters": [ + { + "Filter": [ + "62330b3ed4dc74626d570b95", + "62330bfadc5883093563729b", + "62330c18744e5e31df12f516", + "62330c40bdd19b369e1e53d1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "InternalMagazine", + "VisibleAmmoRangesString": "", + "MalfunctionChance": 0, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d4837c4bdc2d1d4e8b456c" + }, + "5882163e24597758206fee8c": { + "_id": "5882163e24597758206fee8c", + "_name": "mag_mr153_izhmeh_12g_5", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Удлиннитель магазина МР-153 12к для МР-153 до 8 ми патронов", + "ShortName": "МР153x8", + "Description": "Удлиннитель магазина МР-153", + "Weight": 0.93, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_mr153_izhmeh_12g_5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -54399,42 +53996,317 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -8, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -35, + "Ergonomics": -1, "Velocity": 0, - "RaidModdable": false, + "RaidModdable": true, "ToolModdable": false, - "BlocksFolding": true, + "BlocksFolding": false, "BlocksCollapsible": false, - "IsAnimated": true, + "IsAnimated": false, "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "LinkedWeapon": "639af924d0446708ee62294e", - "UseAmmoWithoutShell": true, - "Chambers": [ + "magAnimationIndex": 0, + "Cartridges": [ { - "_name": "patron_in_weapon", - "_id": "62e7e7bbe6da9612f743f1e1", - "_parent": "62e7e7bbe6da9612f743f1e0", + "_name": "cartridges", + "_id": "5882163e24597758206fee8d", + "_parent": "5882163e24597758206fee8c", + "_max_count": 5, "_props": { "filters": [ { "Filter": [ - "5656eb674bdc2d35148b457c" + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" ] } ] }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" + "_proto": "5748538b2459770af276a261" } - ] - } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "InternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.05, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "56deee15d2720bee328b4567" + }, + "5ba2657ed4351e0035628ff2": { + "_id": "5ba2657ed4351e0035628ff2", + "_name": "mag_mp7_hk_std_46x30_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_mp7_hk_std_46x30_20", + "ShortName": "mag_mp7_hk_std_46x30_20", + "Description": "mag_mp7_hk_std_46x30_20", + "Weight": 0.15, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_mp7_hk_std_46x30_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 1, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5ba2657ed4351e0035628ff4", + "_parent": "5ba2657ed4351e0035628ff2", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "5ba26812d4351e003201fef1", + "5ba26835d4351e0035628ff5", + "5ba2678ad4351e44f824b344", + "5ba26844d4351e00334c9475", + "64b6979341772715af0f9c39" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.03, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, + "62307b7b10d2321fa8741921": { + "_id": "62307b7b10d2321fa8741921", + "_name": "mag_g36_hk_std_556x45_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин Colt AR-15 5.56x45 STANAG на 30 патронов", + "ShortName": "5.56x45 Colt AR-15", + "Description": "30-ти зарядный металлический магазин Colt AR-15 выполненный по стандарту STANAG 4179, под патрон 5.56х45.\nСтандарт STANAG 4179 был принят членами НАТО в 1980 г., что бы дать возможность союзникам унифицировать боеприпасы и магазины на уровне отдельных солдат.", + "Weight": 0.14, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_g36_hk_std_556x45_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 7, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "62307b7b10d2321fa8741923", + "_parent": "62307b7b10d2321fa8741921", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.08, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55802d5f4bdc2dac148b458e" }, "60dc519adf4c47305f6d410d": { "_id": "60dc519adf4c47305f6d410d", @@ -54871,1334 +54743,6 @@ }, "_proto": "55d484b44bdc2d1d4e8b456d" }, - "5648b62b4bdc2d9d488b4585": { - "_id": "5648b62b4bdc2d9d488b4585", - "_name": "launcher_ak74_izhmash_gp34", - "_parent": "55818b014bdc2ddc698b456b", - "_type": "Item", - "_props": { - "Name": "ГП-34", - "ShortName": "ГП-34", - "Description": "", - "Weight": 1.4, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/weapons/gp34/launcher_ak74_izhmash_gp34_40_vog_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -8, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -32, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": true, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "LinkedWeapon": "5e81ebcd8e146c7080625e15", - "UseAmmoWithoutShell": true, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "627b9f2404cc37663c08db68", - "_parent": "5648b62b4bdc2d9d488b4585", - "_props": { - "filters": [ - { - "Filter": [ - "5656eb674bdc2d35148b457c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ] - } - }, - "633ec6ee025b096d320a3b15": { - "_id": "633ec6ee025b096d320a3b15", - "_name": "mag_rsh12_kbp_rsh12_cylinder_127x55_5", - "_parent": "610720f290b75a49ff2e5e25", - "_type": "Item", - "_props": { - "Name": "mag_mc_255_cillinder_5", - "ShortName": "mag_mc_255_cillinder_5", - "Description": "mag_mc_255_cillinder_5", - "Weight": 0.23, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_rsh12_kbp_rsh12_cylinder_127x55_5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "camora_000", - "_id": "633ec6ee025b096d320a3b16", - "_parent": "633ec6ee025b096d320a3b15", - "_props": { - "filters": [ - { - "Filter": [ - "5cadf6ddae9215051e1c23b2", - "5cadf6e5ae921500113bb973", - "5cadf6eeae921500134b2799" - ], - "MaxStackCount": 1 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - }, - { - "_name": "camora_001", - "_id": "633ec6ee025b096d320a3b17", - "_parent": "633ec6ee025b096d320a3b15", - "_props": { - "filters": [ - { - "Filter": [ - "5cadf6ddae9215051e1c23b2", - "5cadf6e5ae921500113bb973", - "5cadf6eeae921500134b2799" - ], - "MaxStackCount": 1 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - }, - { - "_name": "camora_002", - "_id": "633ec6ee025b096d320a3b18", - "_parent": "633ec6ee025b096d320a3b15", - "_props": { - "filters": [ - { - "Filter": [ - "5cadf6ddae9215051e1c23b2", - "5cadf6e5ae921500113bb973", - "5cadf6eeae921500134b2799" - ], - "MaxStackCount": 1 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - }, - { - "_name": "camora_003", - "_id": "633ec6ee025b096d320a3b19", - "_parent": "633ec6ee025b096d320a3b15", - "_props": { - "filters": [ - { - "Filter": [ - "5cadf6ddae9215051e1c23b2", - "5cadf6eeae921500134b2799", - "5cadf6e5ae921500113bb973" - ], - "MaxStackCount": 1 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - }, - { - "_name": "camora_004", - "_id": "633ec6ee025b096d320a3b1a", - "_parent": "633ec6ee025b096d320a3b15", - "_props": { - "filters": [ - { - "Filter": [ - "5cadf6ddae9215051e1c23b2", - "5cadf6e5ae921500113bb973", - "5cadf6eeae921500134b2799" - ], - "MaxStackCount": 1 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "633ec6ee025b096d320a3b1c", - "_parent": "633ec6ee025b096d320a3b15", - "_max_count": 5, - "_props": { - "filters": [ - { - "Filter": [ - "5cadf6ddae9215051e1c23b2", - "5cadf6e5ae921500113bb973", - "5cadf6eeae921500134b2799" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "InternalMagazine", - "VisibleAmmoRangesString": "", - "MalfunctionChance": 0, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d4837c4bdc2d1d4e8b456c" - }, - "5888988e24597752fe43a6fa": { - "_id": "5888988e24597752fe43a6fa", - "_name": "mag_dvl-10_lobaev_308_10", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_dvl-10_lobaev_308_10", - "ShortName": "mag_dvl-10_lobaev_308_10", - "Description": "mag_dvl-10_lobaev_308_10", - "Weight": 0.5, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_dvl-10_lobaev_308_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5888988e24597752fe43a6fb", - "_parent": "5888988e24597752fe43a6fa", - "_max_count": 10, - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -15, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.05, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "559ba5b34bdc2d1f1a8b4582" - }, - "5882163824597757561aa922": { - "_id": "5882163824597757561aa922", - "_name": "mag_mr153_izhmeh_12g_6", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Удлиннитель магазина МР-153 12к для МР-153 до 8 ми патронов", - "ShortName": "МР153x8", - "Description": "Удлиннитель магазина МР-153", - "Weight": 0.124, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mr153_izhmeh_12g_6.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5882163824597757561aa923", - "_parent": "5882163824597757561aa922", - "_max_count": 6, - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "InternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.06, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "56deee15d2720bee328b4567" - }, - "5ac66c5d5acfc4001718d314": { - "_id": "5ac66c5d5acfc4001718d314", - "_name": "mag_ak_izhmash_6L29_556x45_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ak_izhmash_6L29_556x45_30", - "ShortName": "mag_ak_izhmash_6L29_556x45_30", - "Description": "mag_ak_izhmash_6L29_556x45_30", - "Weight": 0.215, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak_izhmash_6l29_556x45_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5ac66c5d5acfc4001718d316", - "_parent": "5ac66c5d5acfc4001718d314", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.098, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "564ca9df4bdc2d35148b4569": { - "_id": "564ca9df4bdc2d35148b4569", - "_name": "mag_ak74_izhmash_6L18_545x39_45", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Магазин 6Л18 5.45x39 для АК-74 и совместимых на 45 патронов", - "ShortName": "5.45x39 6Л18", - "Description": "45-ти зарядный бакелитовый магазин Ижмаш 6Л26, под патрон 5.45x39 для АК-74 и совместимых. Штатный магазин для РПК-74.", - "Weight": 0.3, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak74_izhmash_6l18_545x39_45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 2, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -7, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 1, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "574880482459771f661283c4", - "_parent": "564ca9df4bdc2d35148b4569", - "_max_count": 45, - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 15, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.158, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d481904bdc2d8c2f8b456a" - }, - "5ba26586d4351e44f824b340": { - "_id": "5ba26586d4351e44f824b340", - "_name": "mag_mp7_hk_std_46x30_40", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_mp7_hk_std_46x30_20", - "ShortName": "mag_mp7_hk_std_46x30_20", - "Description": "mag_mp7_hk_std_46x30_20", - "Weight": 0.2, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mp7_hk_std_46x30_40.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 2, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5ba26586d4351e44f824b342", - "_parent": "5ba26586d4351e44f824b340", - "_max_count": 40, - "_props": { - "filters": [ - { - "Filter": [ - "5ba26812d4351e003201fef1", - "5ba26835d4351e0035628ff5", - "5ba2678ad4351e44f824b344", - "5ba26844d4351e00334c9475", - "64b6979341772715af0f9c39" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.05, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, - "5df8f535bb49d91fb446d6b0": { - "_id": "5df8f535bb49d91fb446d6b0", - "_name": "mag_ar10_kac_steel_762x51_10", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", - "ShortName": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", - "Description": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20\n", - "Weight": 0.41, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ar10_kac_steel_762x51_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 1, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5df8f535bb49d91fb446d6b2", - "_parent": "5df8f535bb49d91fb446d6b0", - "_max_count": 10, - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1", - "6529243824cbe3c74a05e5c1", - "6529302b8c26af6326029fb7" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.05, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c1d04bdc2dff2f8b4569" - }, - "55d480c04bdc2d1d4e8b456a": { - "_id": "55d480c04bdc2d1d4e8b456a", - "_name": "mag_ak74_izhmash_6L23_545x39_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Магазин 6Л23 5.45x39 для АК-74 и совместимых на 30 патронов", - "ShortName": "5.45x39 6Л23", - "Description": "30-ти зарядный полимерный магазин Ижмаш 6Л23, под патрон 5.45x39 для АК-74 и совместимых.", - "Weight": 0.215, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak74_izhmash_6l23_545x39_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "57487be52459771f613b6652", - "_parent": "55d480c04bdc2d1d4e8b456a", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.08, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55802d5f4bdc2dac148b458e" - }, - "62307b7b10d2321fa8741921": { - "_id": "62307b7b10d2321fa8741921", - "_name": "mag_g36_hk_std_556x45_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Магазин Colt AR-15 5.56x45 STANAG на 30 патронов", - "ShortName": "5.56x45 Colt AR-15", - "Description": "30-ти зарядный металлический магазин Colt AR-15 выполненный по стандарту STANAG 4179, под патрон 5.56х45.\nСтандарт STANAG 4179 был принят членами НАТО в 1980 г., что бы дать возможность союзникам унифицировать боеприпасы и магазины на уровне отдельных солдат.", - "Weight": 0.14, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_g36_hk_std_556x45_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 7, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "62307b7b10d2321fa8741923", - "_parent": "62307b7b10d2321fa8741921", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.08, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55802d5f4bdc2dac148b458e" - }, "5882163224597757561aa920": { "_id": "5882163224597757561aa920", "_name": "mag_mr153_izhmeh_12g_7", @@ -56960,23 +55504,242 @@ }, "_proto": "55d480c04bdc2d1d4e8b456a" }, - "55d484b44bdc2d1d4e8b456d": { - "_id": "55d484b44bdc2d1d4e8b456d", - "_name": "mag_mr133_izhmeh_12g_6", + "633ec6ee025b096d320a3b15": { + "_id": "633ec6ee025b096d320a3b15", + "_name": "mag_rsh12_kbp_rsh12_cylinder_127x55_5", + "_parent": "610720f290b75a49ff2e5e25", + "_type": "Item", + "_props": { + "Name": "mag_mc_255_cillinder_5", + "ShortName": "mag_mc_255_cillinder_5", + "Description": "mag_mc_255_cillinder_5", + "Weight": 0.23, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_rsh12_kbp_rsh12_cylinder_127x55_5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "camora_000", + "_id": "633ec6ee025b096d320a3b16", + "_parent": "633ec6ee025b096d320a3b15", + "_props": { + "filters": [ + { + "Filter": [ + "5cadf6ddae9215051e1c23b2", + "5cadf6e5ae921500113bb973", + "5cadf6eeae921500134b2799" + ], + "MaxStackCount": 1 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + }, + { + "_name": "camora_001", + "_id": "633ec6ee025b096d320a3b17", + "_parent": "633ec6ee025b096d320a3b15", + "_props": { + "filters": [ + { + "Filter": [ + "5cadf6ddae9215051e1c23b2", + "5cadf6e5ae921500113bb973", + "5cadf6eeae921500134b2799" + ], + "MaxStackCount": 1 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + }, + { + "_name": "camora_002", + "_id": "633ec6ee025b096d320a3b18", + "_parent": "633ec6ee025b096d320a3b15", + "_props": { + "filters": [ + { + "Filter": [ + "5cadf6ddae9215051e1c23b2", + "5cadf6e5ae921500113bb973", + "5cadf6eeae921500134b2799" + ], + "MaxStackCount": 1 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + }, + { + "_name": "camora_003", + "_id": "633ec6ee025b096d320a3b19", + "_parent": "633ec6ee025b096d320a3b15", + "_props": { + "filters": [ + { + "Filter": [ + "5cadf6ddae9215051e1c23b2", + "5cadf6eeae921500134b2799", + "5cadf6e5ae921500113bb973" + ], + "MaxStackCount": 1 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + }, + { + "_name": "camora_004", + "_id": "633ec6ee025b096d320a3b1a", + "_parent": "633ec6ee025b096d320a3b15", + "_props": { + "filters": [ + { + "Filter": [ + "5cadf6ddae9215051e1c23b2", + "5cadf6e5ae921500113bb973", + "5cadf6eeae921500134b2799" + ], + "MaxStackCount": 1 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "633ec6ee025b096d320a3b1c", + "_parent": "633ec6ee025b096d320a3b15", + "_max_count": 5, + "_props": { + "filters": [ + { + "Filter": [ + "5cadf6ddae9215051e1c23b2", + "5cadf6e5ae921500113bb973", + "5cadf6eeae921500134b2799" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "InternalMagazine", + "VisibleAmmoRangesString": "", + "MalfunctionChance": 0, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d4837c4bdc2d1d4e8b456c" + }, + "5882163824597757561aa922": { + "_id": "5882163824597757561aa922", + "_name": "mag_mr153_izhmeh_12g_6", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "Магазин МР-133х6 12к для МР-133 на 6 патронов", - "ShortName": "12к МР-133х6", - "Description": "6-ти зарядный трубчатый магазин Ижмех для МР-133, под патрон 12к.", - "Weight": 0.2, + "Name": "Удлиннитель магазина МР-153 12к для МР-153 до 8 ми патронов", + "ShortName": "МР153x8", + "Description": "Удлиннитель магазина МР-153", + "Weight": 0.124, "BackgroundColor": "yellow", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mag_plastic", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mr133_izhmeh_12g_6.bundle", + "path": "assets/content/items/mods/magazines/mag_mr153_izhmeh_12g_6.bundle", "rcid": "" }, "UsePrefab": { @@ -57029,7 +55792,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": -3, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -57044,8 +55807,8 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "57487c4f2459771f6f1cac31", - "_parent": "55d484b44bdc2d1d4e8b456d", + "_id": "5882163824597757561aa923", + "_parent": "5882163824597757561aa922", "_max_count": 6, "_props": { "filters": [ @@ -57083,32 +55846,32 @@ "CheckOverride": 0, "ReloadMagType": "InternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.01, + "MalfunctionChance": 0.06, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "55d4837c4bdc2d1d4e8b456c" + "_proto": "56deee15d2720bee328b4567" }, - "6259bdcabd28e4721447a2aa": { - "_id": "6259bdcabd28e4721447a2aa", - "_name": "mag_m3_benelli_std_12g_7", + "5ac66c5d5acfc4001718d314": { + "_id": "5ac66c5d5acfc4001718d314", + "_name": "mag_ak_izhmash_6L29_556x45_30", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_870_remington_magazie_extension_12g_7", - "ShortName": "mag_870_remington_magazie_extension_12g_7", - "Description": "mag_870_remington_magazie_extension_12g_7", - "Weight": 0.227, + "Name": "mag_ak_izhmash_6L29_556x45_30", + "ShortName": "mag_ak_izhmash_6L29_556x45_30", + "Description": "mag_ak_izhmash_6L29_556x45_30", + "Weight": 0.215, "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, + "Width": 1, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "magazine_metal", + "ItemSound": "mag_plastic", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_m3_benelli_std_12g_7.bundle", + "path": "assets/content/items/mods/magazines/mag_ak_izhmash_6l29_556x45_30.bundle", "rcid": "" }, "UsePrefab": { @@ -57130,7 +55893,133 @@ "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 1, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5ac66c5d5acfc4001718d316", + "_parent": "5ac66c5d5acfc4001718d314", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.098, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, + "5888988e24597752fe43a6fa": { + "_id": "5888988e24597752fe43a6fa", + "_name": "mag_dvl-10_lobaev_308_10", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_dvl-10_lobaev_308_10", + "ShortName": "mag_dvl-10_lobaev_308_10", + "Description": "mag_dvl-10_lobaev_308_10", + "Weight": 0.5, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_dvl-10_lobaev_308_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -57161,10 +56050,10 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -2, + "Ergonomics": -3, "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, + "RaidModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -57176,30 +56065,20 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "6259bdcabd28e4721447a2ab", - "_parent": "6259bdcabd28e4721447a2aa", - "_max_count": 7, + "_id": "5888988e24597752fe43a6fb", + "_parent": "5888988e24597752fe43a6fa", + "_max_count": 10, "_props": { "filters": [ { "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" ] } ] @@ -57207,22 +56086,22 @@ "_proto": "5748538b2459770af276a261" } ], - "CanFast": false, + "CanFast": true, "CanHit": false, "CanAdmin": false, - "LoadUnloadModifier": 0, + "LoadUnloadModifier": -15, "CheckTimeModifier": 0, "CheckOverride": 0, - "ReloadMagType": "InternalMagazine", + "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.01, + "MalfunctionChance": 0.05, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "55d4837c4bdc2d1d4e8b456c" + "_proto": "559ba5b34bdc2d1f1a8b4582" }, "627a137bf21bc425b06ab944": { "_id": "627a137bf21bc425b06ab944", @@ -57231,6 +56110,254 @@ "_type": "Node", "_props": {} }, + "564ca9df4bdc2d35148b4569": { + "_id": "564ca9df4bdc2d35148b4569", + "_name": "mag_ak74_izhmash_6L18_545x39_45", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин 6Л18 5.45x39 для АК-74 и совместимых на 45 патронов", + "ShortName": "5.45x39 6Л18", + "Description": "45-ти зарядный бакелитовый магазин Ижмаш 6Л26, под патрон 5.45x39 для АК-74 и совместимых. Штатный магазин для РПК-74.", + "Weight": 0.3, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ak74_izhmash_6l18_545x39_45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 2, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 1, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "574880482459771f661283c4", + "_parent": "564ca9df4bdc2d35148b4569", + "_max_count": 45, + "_props": { + "filters": [ + { + "Filter": [ + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 15, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.158, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d481904bdc2d8c2f8b456a" + }, + "5ba26586d4351e44f824b340": { + "_id": "5ba26586d4351e44f824b340", + "_name": "mag_mp7_hk_std_46x30_40", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_mp7_hk_std_46x30_20", + "ShortName": "mag_mp7_hk_std_46x30_20", + "Description": "mag_mp7_hk_std_46x30_20", + "Weight": 0.2, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_mp7_hk_std_46x30_40.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 2, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5ba26586d4351e44f824b342", + "_parent": "5ba26586d4351e44f824b340", + "_max_count": 40, + "_props": { + "filters": [ + { + "Filter": [ + "5ba26812d4351e003201fef1", + "5ba26835d4351e0035628ff5", + "5ba2678ad4351e44f824b344", + "5ba26844d4351e00334c9475", + "64b6979341772715af0f9c39" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.05, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, "5bfea7ad0db834001c38f1ee": { "_id": "5bfea7ad0db834001c38f1ee", "_name": "mag_m700_wyatt_762x51_5", @@ -57353,6 +56480,258 @@ }, "_proto": "559ba5b34bdc2d1f1a8b4582" }, + "5df8f535bb49d91fb446d6b0": { + "_id": "5df8f535bb49d91fb446d6b0", + "_name": "mag_ar10_kac_steel_762x51_10", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", + "ShortName": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", + "Description": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20\n", + "Weight": 0.41, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ar10_kac_steel_762x51_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 1, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5df8f535bb49d91fb446d6b2", + "_parent": "5df8f535bb49d91fb446d6b0", + "_max_count": 10, + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1", + "6529243824cbe3c74a05e5c1", + "6529302b8c26af6326029fb7" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.05, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c1d04bdc2dff2f8b4569" + }, + "55d480c04bdc2d1d4e8b456a": { + "_id": "55d480c04bdc2d1d4e8b456a", + "_name": "mag_ak74_izhmash_6L23_545x39_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин 6Л23 5.45x39 для АК-74 и совместимых на 30 патронов", + "ShortName": "5.45x39 6Л23", + "Description": "30-ти зарядный полимерный магазин Ижмаш 6Л23, под патрон 5.45x39 для АК-74 и совместимых.", + "Weight": 0.215, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ak74_izhmash_6l23_545x39_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "57487be52459771f613b6652", + "_parent": "55d480c04bdc2d1d4e8b456a", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.08, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55802d5f4bdc2dac148b458e" + }, "5d2f213448f0355009199284": { "_id": "5d2f213448f0355009199284", "_name": "mag_mp5_hk_kurtz_std_9x19_20", @@ -57477,386 +56856,6 @@ }, "_proto": "5448c12b4bdc2d02308b456f" }, - "56deeefcd2720bc8328b4568": { - "_id": "56deeefcd2720bc8328b4568", - "_name": "mag_mr153_izhmeh_12g_8", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Удлиннитель магазина МР-153 12к для МР-153 до 8 ми патронов", - "ShortName": "МР153x8", - "Description": "Удлиннитель магазина МР-153", - "Weight": 0.3, - "BackgroundColor": "yellow", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mr153_izhmeh_12g_8.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "574880d12459771f661283c5", - "_parent": "56deeefcd2720bc8328b4568", - "_max_count": 8, - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "InternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.1, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "56deee15d2720bee328b4567" - }, - "5cbdc23eae9215001136a407": { - "_id": "5cbdc23eae9215001136a407", - "_name": "mag_ak_molot_rpk_drum_762x39_75", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ak_molot_rpk_drum_762x39_75", - "ShortName": "mag_ak_molot_rpk_drum_762x39_75", - "Description": "mag_ak_molot_rpk_drum_762x39_75", - "Weight": 0.9, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak_molot_rpk_drum_762x39_75.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -26, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": true, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 5, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5cbdc23eae9215001136a409", - "_parent": "5cbdc23eae9215001136a407", - "_max_count": 75, - "_props": { - "filters": [ - { - "Filter": [ - "59e655cb86f77411dc52a77b", - "59e6542b86f77411dc52a77a", - "59e6658b86f77411d949b250", - "5f0596629e22f464da6bbdd9", - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af5a8532cf95ee0a0dbd", - "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 90, - "CheckTimeModifier": 30, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.41, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "5ba264f6d4351e0034777d52": { - "_id": "5ba264f6d4351e0034777d52", - "_name": "mag_mp7_hk_std_46x30_20", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_mp7_hk_std_46x30_20", - "ShortName": "mag_mp7_hk_std_46x30_20", - "Description": "mag_mp7_hk_std_46x30_20", - "Weight": 0.1, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mp7_hk_std_46x30_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5ba264f6d4351e0034777d54", - "_parent": "5ba264f6d4351e0034777d52", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5ba26812d4351e003201fef1", - "5ba26835d4351e0035628ff5", - "5ba2678ad4351e44f824b344", - "5ba26844d4351e00334c9475", - "64b6979341772715af0f9c39" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.02, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, "6357c98711fb55120211f7e1": { "_id": "6357c98711fb55120211f7e1", "_name": "launcher_ar15_colt_m203_40x46", @@ -57996,6 +56995,380 @@ ] } }, + "6529109524cbe3c74a05e5b7": { + "_id": "6529109524cbe3c74a05e5b7", + "_name": "charge_spear_sig_spear_std", + "_parent": "55818a6f4bdc2db9688b456b", + "_type": "Item", + "_props": { + "Name": "charge_mcx_sig_mcx_std", + "ShortName": "charge_mcx_sig_mcx_std", + "Description": "charge_mcx_sig_mcx_std", + "Weight": 0.035, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/charges/charge_spear_sig_spear_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1 + }, + "_proto": "55802f624bdc2d1c128b4580" + }, + "5ba264f6d4351e0034777d52": { + "_id": "5ba264f6d4351e0034777d52", + "_name": "mag_mp7_hk_std_46x30_20", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_mp7_hk_std_46x30_20", + "ShortName": "mag_mp7_hk_std_46x30_20", + "Description": "mag_mp7_hk_std_46x30_20", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_mp7_hk_std_46x30_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5ba264f6d4351e0034777d54", + "_parent": "5ba264f6d4351e0034777d52", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5ba26812d4351e003201fef1", + "5ba26835d4351e0035628ff5", + "5ba2678ad4351e44f824b344", + "5ba26844d4351e00334c9475", + "64b6979341772715af0f9c39" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.02, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, + "62e7e7bbe6da9612f743f1e0": { + "_id": "62e7e7bbe6da9612f743f1e0", + "_name": "launcher_ak_toz_gp25_40_vog", + "_parent": "55818b014bdc2ddc698b456b", + "_type": "Item", + "_props": { + "Name": "launcher_ak_toz_gp25_40_vog ", + "ShortName": "launcher_ak_toz_gp25_40_vog ", + "Description": "", + "Weight": 1.4, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/weapons/gp25/launcher_ak_toz_gp25_40_vog_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "5a7dbfc1159bd40016548fde", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "615d8fd3290d254f5e6b2edc", + "5fc0f9b5d724d907e2077d82", + "5fc0f9cbd6fa9c00c571bb90", + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b237e425acfc4771e1be0b6", + "5cf656f2d7f00c06585fb6eb", + "5d4aab30a4b9365435358c55", + "5a9d6d13a2750c00164f6b03", + "5a9d6d21a2750c00137fa649", + "59e0bed186f774156f04ce84", + "5b7be4895acfc400170e2dd5", + "5cf4e3f3d7f00c06595bc7f0", + "5648ae314bdc2d3d1c8b457f", + "5d2c829448f0353a5c7d6674", + "5b800e9286f7747a8b04f3ff", + "5b80242286f77429445e0b47", + "59fb375986f7741b681b81a6", + "57cff947245977638e6f2a19", + "57cffd8224597763b03fc609", + "57cffddc24597763133760c6", + "57cffe0024597763b03fc60b", + "57cffe20245977632f391a9d", + "5c9a07572e221644f31c4b32", + "5c9a1c3a2e2216000e69fb6a", + "5c9a1c422e221600106f69f0", + "5f6331e097199b7db2128dc2", + "5c17664f2e2216398b5a7e3c", + "5efaf417aeb21837e749c7f2", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "65169d5b30425317755f8e25", + "648067db042be0705c0b3009", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -8, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -35, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "LinkedWeapon": "639af924d0446708ee62294e", + "UseAmmoWithoutShell": true, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "62e7e7bbe6da9612f743f1e1", + "_parent": "62e7e7bbe6da9612f743f1e0", + "_props": { + "filters": [ + { + "Filter": [ + "5656eb674bdc2d35148b457c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ] + } + }, "5bfeaa0f0db834001b734927": { "_id": "5bfeaa0f0db834001b734927", "_name": "mag_m700_wyatt_762x51_10", @@ -58375,6 +57748,633 @@ }, "_proto": "559ba5b34bdc2d1f1a8b4582" }, + "5648b62b4bdc2d9d488b4585": { + "_id": "5648b62b4bdc2d9d488b4585", + "_name": "launcher_ak74_izhmash_gp34", + "_parent": "55818b014bdc2ddc698b456b", + "_type": "Item", + "_props": { + "Name": "ГП-34", + "ShortName": "ГП-34", + "Description": "", + "Weight": 1.4, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/weapons/gp34/launcher_ak74_izhmash_gp34_40_vog_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -8, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -32, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "LinkedWeapon": "5e81ebcd8e146c7080625e15", + "UseAmmoWithoutShell": true, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "627b9f2404cc37663c08db68", + "_parent": "5648b62b4bdc2d9d488b4585", + "_props": { + "filters": [ + { + "Filter": [ + "5656eb674bdc2d35148b457c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ] + } + }, + "55d484b44bdc2d1d4e8b456d": { + "_id": "55d484b44bdc2d1d4e8b456d", + "_name": "mag_mr133_izhmeh_12g_6", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин МР-133х6 12к для МР-133 на 6 патронов", + "ShortName": "12к МР-133х6", + "Description": "6-ти зарядный трубчатый магазин Ижмех для МР-133, под патрон 12к.", + "Weight": 0.2, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_mr133_izhmeh_12g_6.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "57487c4f2459771f6f1cac31", + "_parent": "55d484b44bdc2d1d4e8b456d", + "_max_count": 6, + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "InternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.01, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d4837c4bdc2d1d4e8b456c" + }, + "6259bdcabd28e4721447a2aa": { + "_id": "6259bdcabd28e4721447a2aa", + "_name": "mag_m3_benelli_std_12g_7", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_870_remington_magazie_extension_12g_7", + "ShortName": "mag_870_remington_magazie_extension_12g_7", + "Description": "mag_870_remington_magazie_extension_12g_7", + "Weight": 0.227, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_m3_benelli_std_12g_7.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "6259bdcabd28e4721447a2ab", + "_parent": "6259bdcabd28e4721447a2aa", + "_max_count": 7, + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "InternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.01, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d4837c4bdc2d1d4e8b456c" + }, + "56deeefcd2720bc8328b4568": { + "_id": "56deeefcd2720bc8328b4568", + "_name": "mag_mr153_izhmeh_12g_8", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Удлиннитель магазина МР-153 12к для МР-153 до 8 ми патронов", + "ShortName": "МР153x8", + "Description": "Удлиннитель магазина МР-153", + "Weight": 0.3, + "BackgroundColor": "yellow", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_mr153_izhmeh_12g_8.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "574880d12459771f661283c5", + "_parent": "56deeefcd2720bc8328b4568", + "_max_count": 8, + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "InternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.1, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "56deee15d2720bee328b4567" + }, + "5cbdc23eae9215001136a407": { + "_id": "5cbdc23eae9215001136a407", + "_name": "mag_ak_molot_rpk_drum_762x39_75", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_ak_molot_rpk_drum_762x39_75", + "ShortName": "mag_ak_molot_rpk_drum_762x39_75", + "Description": "mag_ak_molot_rpk_drum_762x39_75", + "Weight": 0.9, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ak_molot_rpk_drum_762x39_75.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -26, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 5, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5cbdc23eae9215001136a409", + "_parent": "5cbdc23eae9215001136a407", + "_max_count": 75, + "_props": { + "filters": [ + { + "Filter": [ + "59e655cb86f77411dc52a77b", + "59e6542b86f77411dc52a77a", + "59e6658b86f77411d949b250", + "5f0596629e22f464da6bbdd9", + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af5a8532cf95ee0a0dbd", + "64b7af434b75259c590fa893", + "64b7af734b75259c590fa895" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 90, + "CheckTimeModifier": 30, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.41, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, "5de8eac42a78646d96665d91": { "_id": "5de8eac42a78646d96665d91", "_name": "mag_mp9_bt_mp9_std_9x19_30", @@ -58499,6 +58499,752 @@ }, "_proto": "5448c12b4bdc2d02308b456f" }, + "5df8f541c41b2312ea3335e3": { + "_id": "5df8f541c41b2312ea3335e3", + "_name": "mag_ar10_kac_steel_762x51_20", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", + "ShortName": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", + "Description": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20\n", + "Weight": 0.52, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ar10_kac_steel_762x51_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 2, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5df8f541c41b2312ea3335e5", + "_parent": "5df8f541c41b2312ea3335e3", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1", + "6529243824cbe3c74a05e5c1", + "6529302b8c26af6326029fb7" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.08, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c1d04bdc2dff2f8b4569" + }, + "5de8ea8ffd6b4e6e2276dc35": { + "_id": "5de8ea8ffd6b4e6e2276dc35", + "_name": "mag_mp9_bt_mp9_std_9x19_20", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_pp-91_zmz_pp-91_std_9x18pm_20", + "ShortName": "mag_pp-91_zmz_pp-91_std_9x18pm_20", + "Description": "mag_pp-91_zmz_pp-91_std_9x18pm_20", + "Weight": 0.067, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_mp9_bt_mp9_std_9x19_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 1, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5de8ea8ffd6b4e6e2276dc37", + "_parent": "5de8ea8ffd6b4e6e2276dc35", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.02, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, + "5f647d9f8499b57dc40ddb93": { + "_id": "5f647d9f8499b57dc40ddb93", + "_name": "mag_ks23_toz_ks23_std_23x75_3", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_ks23_toz_ks23_std_23x75_3", + "ShortName": "mag_ks23_toz_ks23_std_23x75_3", + "Description": "mag_ks23_toz_ks23_std_23x75_3", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ks23_toz_ks23_std_23x75_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5f647d9f8499b57dc40ddb95", + "_parent": "5f647d9f8499b57dc40ddb93", + "_max_count": 3, + "_props": { + "filters": [ + { + "Filter": [ + "5e85aa1a988a8701445df1f5", + "5e85aac65505fa48730d8af2", + "5e85a9a6eacf8c039e4e2ac1", + "5f647f31b6238e5dd066e196", + "5e85a9f4add9fe03027d9bf1", + "5f647fd3f6e4ab66c82faed6" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "InternalMagazine", + "VisibleAmmoRangesString": "", + "MalfunctionChance": 0.05, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d4837c4bdc2d1d4e8b456c" + }, + "633a98eab8b0506e48497c1a": { + "_id": "633a98eab8b0506e48497c1a", + "_name": "mag_sr2m_tochmash_9x21_20", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_pp-91_zmz_pp-91_std_9x18pm_20", + "ShortName": "mag_pp-91_zmz_pp-91_std_9x18pm_20", + "Description": "mag_pp-91_zmz_pp-91_std_9x18pm_20", + "Weight": 0.13, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_sr2m_tochmash_9x21_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "633a98eab8b0506e48497c1b", + "_parent": "633a98eab8b0506e48497c1a", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5a269f97c4a282000b151807", + "5a26abfac4a28232980eabff", + "5a26ac06c4a282000c5a90a8", + "5a26ac0ec4a28200741e1e18", + "6576f93989f0062e741ba952", + "6576f4708ca9c4381d16cd9d" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.035, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, + "5c5db6552e2216001026119d": { + "_id": "5c5db6552e2216001026119d", + "_name": "mag_mpx_sig_mag_std_9x19_20", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_mpx_sig_mpx_std_9x19_30", + "ShortName": "mag_mpx_sig_mpx_std_9x19_30", + "Description": "mag_mpx_sig_mpx_std_9x19_30", + "Weight": 0.14, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_mpx_sig_mag_std_9x19_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5c5db6552e2216001026119f", + "_parent": "5c5db6552e2216001026119d", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": -50, + "CheckOverride": 1, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.03, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, + "6076c87f232e5a31c233d50e": { + "_id": "6076c87f232e5a31c233d50e", + "_name": "mag_mp155_kalashnikov_12g_6", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Удлиннитель магазина МР-153 12к для МР-153 до 8 ми патронов", + "ShortName": "МР153x8", + "Description": "Удлиннитель магазина МР-153", + "Weight": 0.124, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_mp155_kalashnikov_12g_6.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "6076c87f232e5a31c233d510", + "_parent": "6076c87f232e5a31c233d50e", + "_max_count": 6, + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "InternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.05, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "56deee15d2720bee328b4567" + }, "57838f9f2459774a150289a0": { "_id": "57838f9f2459774a150289a0", "_name": "mag_vss_tochmash_6L25_9x39_20", @@ -58752,752 +59498,6 @@ }, "_proto": "55d4837c4bdc2d1d4e8b456c" }, - "5df8f541c41b2312ea3335e3": { - "_id": "5df8f541c41b2312ea3335e3", - "_name": "mag_ar10_kac_steel_762x51_20", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", - "ShortName": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", - "Description": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20\n", - "Weight": 0.52, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ar10_kac_steel_762x51_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 2, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5df8f541c41b2312ea3335e5", - "_parent": "5df8f541c41b2312ea3335e3", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1", - "6529243824cbe3c74a05e5c1", - "6529302b8c26af6326029fb7" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.08, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c1d04bdc2dff2f8b4569" - }, - "633a98eab8b0506e48497c1a": { - "_id": "633a98eab8b0506e48497c1a", - "_name": "mag_sr2m_tochmash_9x21_20", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_pp-91_zmz_pp-91_std_9x18pm_20", - "ShortName": "mag_pp-91_zmz_pp-91_std_9x18pm_20", - "Description": "mag_pp-91_zmz_pp-91_std_9x18pm_20", - "Weight": 0.13, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_sr2m_tochmash_9x21_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "633a98eab8b0506e48497c1b", - "_parent": "633a98eab8b0506e48497c1a", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5a269f97c4a282000b151807", - "5a26abfac4a28232980eabff", - "5a26ac06c4a282000c5a90a8", - "5a26ac0ec4a28200741e1e18", - "6576f93989f0062e741ba952", - "6576f4708ca9c4381d16cd9d" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.035, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, - "6076c87f232e5a31c233d50e": { - "_id": "6076c87f232e5a31c233d50e", - "_name": "mag_mp155_kalashnikov_12g_6", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Удлиннитель магазина МР-153 12к для МР-153 до 8 ми патронов", - "ShortName": "МР153x8", - "Description": "Удлиннитель магазина МР-153", - "Weight": 0.124, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mp155_kalashnikov_12g_6.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "6076c87f232e5a31c233d510", - "_parent": "6076c87f232e5a31c233d50e", - "_max_count": 6, - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "InternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.05, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "56deee15d2720bee328b4567" - }, - "5c5db6552e2216001026119d": { - "_id": "5c5db6552e2216001026119d", - "_name": "mag_mpx_sig_mag_std_9x19_20", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_mpx_sig_mpx_std_9x19_30", - "ShortName": "mag_mpx_sig_mpx_std_9x19_30", - "Description": "mag_mpx_sig_mpx_std_9x19_30", - "Weight": 0.14, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mpx_sig_mag_std_9x19_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5c5db6552e2216001026119f", - "_parent": "5c5db6552e2216001026119d", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": -50, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.03, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, - "5de8ea8ffd6b4e6e2276dc35": { - "_id": "5de8ea8ffd6b4e6e2276dc35", - "_name": "mag_mp9_bt_mp9_std_9x19_20", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_pp-91_zmz_pp-91_std_9x18pm_20", - "ShortName": "mag_pp-91_zmz_pp-91_std_9x18pm_20", - "Description": "mag_pp-91_zmz_pp-91_std_9x18pm_20", - "Weight": 0.067, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mp9_bt_mp9_std_9x19_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 1, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5de8ea8ffd6b4e6e2276dc37", - "_parent": "5de8ea8ffd6b4e6e2276dc35", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.02, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, - "5f647d9f8499b57dc40ddb93": { - "_id": "5f647d9f8499b57dc40ddb93", - "_name": "mag_ks23_toz_ks23_std_23x75_3", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ks23_toz_ks23_std_23x75_3", - "ShortName": "mag_ks23_toz_ks23_std_23x75_3", - "Description": "mag_ks23_toz_ks23_std_23x75_3", - "Weight": 0.1, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ks23_toz_ks23_std_23x75_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5f647d9f8499b57dc40ddb95", - "_parent": "5f647d9f8499b57dc40ddb93", - "_max_count": 3, - "_props": { - "filters": [ - { - "Filter": [ - "5e85aa1a988a8701445df1f5", - "5e85aac65505fa48730d8af2", - "5e85a9a6eacf8c039e4e2ac1", - "5f647f31b6238e5dd066e196", - "5e85a9f4add9fe03027d9bf1", - "5f647fd3f6e4ab66c82faed6" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "InternalMagazine", - "VisibleAmmoRangesString": "", - "MalfunctionChance": 0.05, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d4837c4bdc2d1d4e8b456c" - }, "5cf12a15d7f00c05464b293f": { "_id": "5cf12a15d7f00c05464b293f", "_name": "mag_m700_promag_aa70_762x51_20", @@ -59742,6 +59742,128 @@ }, "_proto": "55d480c04bdc2d1d4e8b456a" }, + "5d25a4a98abbc30b917421a4": { + "_id": "5d25a4a98abbc30b917421a4", + "_name": "mag_m700_ai_aics_762x51_5", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_m700_ai_aics_762x51_5", + "ShortName": "mag_m700_ai_aics_762x51_5", + "Description": "mag_m700_ai_aics_762x51_5", + "Weight": 0.3, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_m700_ai_aics_762x51_5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 3, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5d25a4a98abbc30b917421a6", + "_parent": "5d25a4a98abbc30b917421a4", + "_max_count": 5, + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -15, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.02, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "559ba5b34bdc2d1f1a8b4582" + }, "5b7c2d1d5acfc43d1028532a": { "_id": "5b7c2d1d5acfc43d1028532a", "_name": "mag_fal_mmw_fal_sa58_762x51_20", @@ -60495,6 +60617,764 @@ }, "_proto": "55d480c04bdc2d1d4e8b456a" }, + "617131a4568c120fdd29482d": { + "_id": "617131a4568c120fdd29482d", + "_name": "mag_417_hk_417_std_762x51_20", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", + "ShortName": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", + "Description": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20\n", + "Weight": 0.16, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_417_hk_417_std_762x51_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 1, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "617131a4568c120fdd29482f", + "_parent": "617131a4568c120fdd29482d", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 1, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.04, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c1d04bdc2dff2f8b4569" + }, + "59fafc5086f7740dbe19f6c3": { + "_id": "59fafc5086f7740dbe19f6c3", + "_name": "mag_ak_us_palm_ak30_762x39_blk", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_ak_us_palm_ak30_762x39_blk", + "ShortName": "mag_ak_us_palm_ak30_762x39_blk", + "Description": "mag_ak_us_palm_ak30_762x39_blk", + "Weight": 0.2, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ak_us_palm_ak30_762x39_blk.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "59fafc5086f7740dbe19f6c4", + "_parent": "59fafc5086f7740dbe19f6c3", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "59e655cb86f77411dc52a77b", + "59e6542b86f77411dc52a77a", + "59e6658b86f77411d949b250", + "5f0596629e22f464da6bbdd9", + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af5a8532cf95ee0a0dbd", + "64b7af434b75259c590fa893", + "64b7af734b75259c590fa895" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": true, + "CanAdmin": false, + "LoadUnloadModifier": -10, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.03, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, + "62e7c98b550c8218d602cbb4": { + "_id": "62e7c98b550c8218d602cbb4", + "_name": "mag_aug_steyr_std_556x45_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", + "ShortName": "5.56x45 PMAG GEN M3 30", + "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", + "Weight": 0.13, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_aug_steyr_std_556x45_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "62e7c98b550c8218d602cbb5", + "_parent": "62e7c98b550c8218d602cbb4", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302", + "5fbe3ffdf8b6a877a729ea82", + "5fd20ff893a8961fc660a954", + "619636be6db0f2477964e710", + "6196364158ef8c428c287d9f", + "6196365d58ef8c428c287da1", + "64b8725c4b75259c590fa899" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.08, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55802d5f4bdc2dac148b458e" + }, + "61695095d92c473c7702147a": { + "_id": "61695095d92c473c7702147a", + "_name": "mag_sks_kci_drum_762x39_75", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_sks_tapco_mag6610_762x39_10", + "ShortName": "mag_sks_tapco_mag6610_762x39_10", + "Description": "mag_sks_tapco_mag6610_762x39_10", + "Weight": 1.043, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "magazine_drum", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_sks_kci_drum_762x39_75.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -17, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 2, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "61695095d92c473c7702147c", + "_parent": "61695095d92c473c7702147a", + "_max_count": 75, + "_props": { + "filters": [ + { + "Filter": [ + "59e655cb86f77411dc52a77b", + "59e6542b86f77411dc52a77a", + "59e6658b86f77411d949b250", + "5f0596629e22f464da6bbdd9", + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af5a8532cf95ee0a0dbd", + "64b7af434b75259c590fa893", + "64b7af734b75259c590fa895" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 35, + "CheckTimeModifier": 35, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.299, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, + "57616a9e2459773c7a400234": { + "_id": "57616a9e2459773c7a400234", + "_name": "mag_saiga12_izhmash_Sb5_12x76_5", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_saiga12_izhmash_Sb5_12x76_5", + "ShortName": "mag_saiga12_izhmash_Sb5_12x76_5", + "Description": "mag_saiga12_izhmash_Sb5_12x76_5", + "Weight": 0.19, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_saiga12_izhmash_sb5_12x76_5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "57616b2e2459773cae04eae4", + "_parent": "57616a9e2459773c7a400234", + "_max_count": 5, + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -15, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.01, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "564ca99c4bdc2d16268b4589" + }, + "5d52d479a4b936793d58c76b": { + "_id": "5d52d479a4b936793d58c76b", + "_name": "mag_ags30_zid_ags30_snail_std_30x29_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_ags30_zid_ags30_snail_std_30x29_30", + "ShortName": "mag_ags30_zid_ags30_snail_std_30x29_30", + "Description": "mag_ags30_zid_ags30_snail_std_30x29_30", + "Weight": 0.088, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ags30_zid_ags30_snail_std_30x29_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5d52d479a4b936793d58c76d", + "_parent": "5d52d479a4b936793d58c76b", + "_max_count": 99, + "_props": { + "filters": [ + { + "Filter": [ + "5d70e500a4b9364de70d38ce" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": true + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, "5894a05586f774094708ef75": { "_id": "5894a05586f774094708ef75", "_name": "mag_mpx_sig_mpx_std_9x19_30", @@ -61366,23 +62246,23 @@ }, "_proto": "55d480c04bdc2d1d4e8b456a" }, - "59fafc5086f7740dbe19f6c3": { - "_id": "59fafc5086f7740dbe19f6c3", - "_name": "mag_ak_us_palm_ak30_762x39_blk", + "55d481904bdc2d8c2f8b456a": { + "_id": "55d481904bdc2d8c2f8b456a", + "_name": "mag_ak74_izhmash_6L26_545x39_45", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_ak_us_palm_ak30_762x39_blk", - "ShortName": "mag_ak_us_palm_ak30_762x39_blk", - "Description": "mag_ak_us_palm_ak30_762x39_blk", - "Weight": 0.2, + "Name": "Магазин 6Л26 5.45x39 для АК-74 и совместимых на 45 патронов", + "ShortName": "5.45x39 6Л26", + "Description": "45-ти зарядный полимерный магазин Ижмаш 6Л26, под патрон 5.45x39 для АК-74 и совместимых.", + "Weight": 0.3, "BackgroundColor": "yellow", "Width": 1, - "Height": 2, + "Height": 3, "StackMaxSize": 1, "ItemSound": "mag_plastic", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak_us_palm_ak30_762x39_blk.bundle", + "path": "assets/content/items/mods/magazines/mag_ak74_izhmash_6l26_545x39_45.bundle", "rcid": "" }, "UsePrefab": { @@ -61399,7 +62279,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, + "LootExperience": 15, "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, @@ -61407,7 +62287,7 @@ "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, - "ExtraSizeDown": 1, + "ExtraSizeDown": 2, "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, @@ -61435,7 +62315,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": -8, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -61450,26 +62330,26 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "59fafc5086f7740dbe19f6c4", - "_parent": "59fafc5086f7740dbe19f6c3", - "_max_count": 30, + "_id": "57487c0a2459771f6d7b4341", + "_parent": "55d481904bdc2d8c2f8b456a", + "_max_count": 45, "_props": { "filters": [ { "Filter": [ - "59e655cb86f77411dc52a77b", - "59e6542b86f77411dc52a77a", - "59e6658b86f77411d949b250", - "5f0596629e22f464da6bbdd9", - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af5a8532cf95ee0a0dbd", - "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895" + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" ] } ] @@ -61478,14 +62358,14 @@ } ], "CanFast": true, - "CanHit": true, + "CanHit": false, "CanAdmin": false, - "LoadUnloadModifier": -10, - "CheckTimeModifier": 0, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 15, "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.03, + "MalfunctionChance": 0.151, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, @@ -61494,23 +62374,23 @@ }, "_proto": "55d480c04bdc2d1d4e8b456a" }, - "62e7c98b550c8218d602cbb4": { - "_id": "62e7c98b550c8218d602cbb4", - "_name": "mag_aug_steyr_std_556x45_30", + "5fc3e466187fea44d52eda90": { + "_id": "5fc3e466187fea44d52eda90", + "_name": "mag_ump_hk_ump_1143x23_25", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", - "ShortName": "5.56x45 PMAG GEN M3 30", - "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", - "Weight": 0.13, + "Name": "mag_ump_hk_ump_1143x23_25", + "ShortName": "mag_ump_hk_ump_1143x23_25", + "Description": "mag_ump_hk_ump_1143x23_25", + "Weight": 0.17, "BackgroundColor": "yellow", "Width": 1, "Height": 2, "StackMaxSize": 1, "ItemSound": "mag_plastic", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_aug_steyr_std_556x45_30.bundle", + "path": "assets/content/items/mods/magazines/mag_ump_hk_ump_1143x23_25.bundle", "rcid": "" }, "UsePrefab": { @@ -61578,9 +62458,253 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "62e7c98b550c8218d602cbb5", - "_parent": "62e7c98b550c8218d602cbb4", - "_max_count": 30, + "_id": "5fc3e466187fea44d52eda92", + "_parent": "5fc3e466187fea44d52eda90", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "5e81f423763d9f754677bf2e", + "5efb0cabfb3e451d70735af5", + "5efb0fc6aeb21837e749c801", + "5efb0d4f4bc50b58e81710f3", + "5ea2a8e200685063ec28c05a" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 1, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-25", + "MalfunctionChance": 0.015, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, + "5de8eaadbbaf010b10528a6d": { + "_id": "5de8eaadbbaf010b10528a6d", + "_name": "mag_mp9_bt_mp9_std_9x19_25", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_pp-91_zmz_pp-91_std_9x18pm_20", + "ShortName": "mag_pp-91_zmz_pp-91_std_9x18pm_20", + "Description": "mag_pp-91_zmz_pp-91_std_9x18pm_20", + "Weight": 0.072, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_mp9_bt_mp9_std_9x19_25.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 2, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5de8eaadbbaf010b10528a6f", + "_parent": "5de8eaadbbaf010b10528a6d", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.03, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, + "630e1adbbd357927e4007c09": { + "_id": "630e1adbbd357927e4007c09", + "_name": "mag_aug_steyr_std_556x45_10", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", + "ShortName": "5.56x45 PMAG GEN M3 30", + "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_aug_steyr_std_556x45_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 1, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "630e1adbbd357927e4007c0a", + "_parent": "630e1adbbd357927e4007c09", + "_max_count": 10, "_props": { "filters": [ { @@ -61626,523 +62750,23 @@ }, "_proto": "55802d5f4bdc2dac148b458e" }, - "61695095d92c473c7702147a": { - "_id": "61695095d92c473c7702147a", - "_name": "mag_sks_kci_drum_762x39_75", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_sks_tapco_mag6610_762x39_10", - "ShortName": "mag_sks_tapco_mag6610_762x39_10", - "Description": "mag_sks_tapco_mag6610_762x39_10", - "Weight": 1.043, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "magazine_drum", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_sks_kci_drum_762x39_75.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -17, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 2, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "61695095d92c473c7702147c", - "_parent": "61695095d92c473c7702147a", - "_max_count": 75, - "_props": { - "filters": [ - { - "Filter": [ - "59e655cb86f77411dc52a77b", - "59e6542b86f77411dc52a77a", - "59e6658b86f77411d949b250", - "5f0596629e22f464da6bbdd9", - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af5a8532cf95ee0a0dbd", - "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 35, - "CheckTimeModifier": 35, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.299, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "57616a9e2459773c7a400234": { - "_id": "57616a9e2459773c7a400234", - "_name": "mag_saiga12_izhmash_Sb5_12x76_5", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_saiga12_izhmash_Sb5_12x76_5", - "ShortName": "mag_saiga12_izhmash_Sb5_12x76_5", - "Description": "mag_saiga12_izhmash_Sb5_12x76_5", - "Weight": 0.19, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_saiga12_izhmash_sb5_12x76_5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "57616b2e2459773cae04eae4", - "_parent": "57616a9e2459773c7a400234", - "_max_count": 5, - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -15, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.01, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "564ca99c4bdc2d16268b4589" - }, - "630769c4962d0247b029dc60": { - "_id": "630769c4962d0247b029dc60", - "_name": "mag_glock_glock_big_stick_9x19_24_fde", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_glock_glock_std_9x19_17", - "ShortName": "mag_glock_glock_std_9x19_17", - "Description": "mag_glock_glock_std_9x19_17", - "Weight": 0.112, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_glock_glock_big_stick_9x19_24_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 1, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "630769c4962d0247b029dc61", - "_parent": "630769c4962d0247b029dc60", - "_max_count": 24, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -10, - "CheckTimeModifier": -30, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.182, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, - "5d52d479a4b936793d58c76b": { - "_id": "5d52d479a4b936793d58c76b", - "_name": "mag_ags30_zid_ags30_snail_std_30x29_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ags30_zid_ags30_snail_std_30x29_30", - "ShortName": "mag_ags30_zid_ags30_snail_std_30x29_30", - "Description": "mag_ags30_zid_ags30_snail_std_30x29_30", - "Weight": 0.088, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ags30_zid_ags30_snail_std_30x29_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5d52d479a4b936793d58c76d", - "_parent": "5d52d479a4b936793d58c76b", - "_max_count": 99, - "_props": { - "filters": [ - { - "Filter": [ - "5d70e500a4b9364de70d38ce" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": true - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, - "56d59948d2720bb7418b4582": { - "_id": "56d59948d2720bb7418b4582", - "_name": "mag_p226_sig_std_9x19_15", + "5cadc2e0ae9215051e1c21e7": { + "_id": "5cadc2e0ae9215051e1c21e7", + "_name": "mag_m9_beretta_m9a3_std_9x19_17", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { "Name": "Магазин стандартный 9х19 для P226 на 15 патронов", "ShortName": "9х19 P226", "Description": "бла бла бла", - "Weight": 0.096, + "Weight": 0.082, "BackgroundColor": "yellow", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_p226_sig_std_9x19_15.bundle", + "path": "assets/content/items/mods/magazines/mag_m9_beretta_m9a3_std_9x19_17.bundle", "rcid": "" }, "UsePrefab": { @@ -62210,9 +62834,9 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "574880652459771f6e0b87c4", - "_parent": "56d59948d2720bb7418b4582", - "_max_count": 15, + "_id": "5cadc2e0ae9215051e1c21e9", + "_parent": "5cadc2e0ae9215051e1c21e7", + "_max_count": 17, "_props": { "filters": [ { @@ -62250,23 +62874,23 @@ }, "_proto": "5448c12b4bdc2d02308b456f" }, - "630767c37d50ff5e8a1ea71a": { - "_id": "630767c37d50ff5e8a1ea71a", - "_name": "mag_glock_glock_big_stick_9x19_31_fde", + "5c920e902e221644f31c3c99": { + "_id": "5c920e902e221644f31c3c99", + "_name": "mag_p226_sig_extended_mag_9x19_20", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_glock_glock_std_9x19_17", - "ShortName": "mag_glock_glock_std_9x19_17", - "Description": "mag_glock_glock_std_9x19_17", - "Weight": 0.14, + "Name": "mag_p226_sig_extended_mag_9x19_20", + "ShortName": "mag_p226_sig_extended_mag_9x19_20", + "Description": "mag_p226_sig_extended_mag_9x19_20", + "Weight": 0.11, "BackgroundColor": "yellow", "Width": 1, - "Height": 2, + "Height": 1, "StackMaxSize": 1, "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_glock_glock_big_stick_9x19_31_fde.bundle", + "path": "assets/content/items/mods/magazines/mag_p226_sig_extended_mag_9x19_20.bundle", "rcid": "" }, "UsePrefab": { @@ -62283,7 +62907,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, + "LootExperience": 5, "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, @@ -62291,7 +62915,7 @@ "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, - "ExtraSizeDown": 1, + "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, @@ -62319,7 +62943,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -5, + "Ergonomics": -3, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -62330,13 +62954,13 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "magAnimationIndex": 2, + "magAnimationIndex": 1, "Cartridges": [ { "_name": "cartridges", - "_id": "630767c37d50ff5e8a1ea71b", - "_parent": "630767c37d50ff5e8a1ea71a", - "_max_count": 31, + "_id": "5c920e902e221644f31c3c9b", + "_parent": "5c920e902e221644f31c3c99", + "_max_count": 20, "_props": { "filters": [ { @@ -62360,12 +62984,12 @@ "CanFast": true, "CanHit": false, "CanAdmin": false, - "LoadUnloadModifier": -10, - "CheckTimeModifier": -30, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, "CheckOverride": 1, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.182, + "MalfunctionChance": 0.01, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, @@ -62374,23 +62998,23 @@ }, "_proto": "5448c12b4bdc2d02308b456f" }, - "5a17fb03fcdbcbcae668728f": { - "_id": "5a17fb03fcdbcbcae668728f", - "_name": "mag_aps_molot_aps_apb_std_9x18pm_20", + "5c503ad32e2216398b5aada2": { + "_id": "5c503ad32e2216398b5aada2", + "_name": "mag_vepr_molot_308_win_std_762x51_10", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_aps_molot_aps_apb_std_9x18pm_20", - "ShortName": "mag_aps_molot_aps_apb_std_9x18pm_20", - "Description": "mag_aps_molot_aps_apb_std_9x18pm_20", - "Weight": 0.044, + "Name": "mag_ak_custom_sawed_off_762x39_10", + "ShortName": "mag_ak_custom_sawed_off_762x39_10", + "Description": "mag_ak_custom_sawed_off_762x39_10", + "Weight": 0.2, "BackgroundColor": "yellow", "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "magazine_metal", + "ItemSound": "mag_plastic", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_aps_molot_aps_apb_std_9x18pm_20.bundle", + "path": "assets/content/items/mods/magazines/mag_vepr_molot_308_win_std_762x51_10.bundle", "rcid": "" }, "UsePrefab": { @@ -62458,27 +63082,20 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "5a17fb03fcdbcbcae6687290", - "_parent": "5a17fb03fcdbcbcae668728f", - "_max_count": 20, + "_id": "5c503ad32e2216398b5aada4", + "_parent": "5c503ad32e2216398b5aada2", + "_max_count": 10, "_props": { "filters": [ { "Filter": [ - "573718ba2459775a75491131", - "573719df2459775a626ccbc2", - "57371aab2459775a77142f22", - "57371b192459775a9f58a5e0", - "57371e4124597760ff7b25f1", - "57371eb62459776125652ac1", - "57371f8d24597761006c6a81", - "5737201124597760fc4431f1", - "5737207f24597760ff7b25f2", - "57371f2b24597761224311f1", - "573719762459775a626ccbc1", - "573720e02459776143012541", - "57372140245977611f70ee91", - "5737218f245977612125ba51" + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" ] } ] @@ -62490,168 +63107,36 @@ "CanHit": false, "CanAdmin": false, "LoadUnloadModifier": 0, - "CheckTimeModifier": -30, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-1;4-4;6-6;8-8;10-10;12-12;14-14;16-16;18-18;20-20", - "MalfunctionChance": 0.088, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, - "5c6d46132e221601da357d56": { - "_id": "5c6d46132e221601da357d56", - "_name": "mag_stanag_troy_battlemag_556x45_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", - "ShortName": "5.56x45 PMAG GEN M3 30", - "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", - "Weight": 0.138, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_stanag_troy_battlemag_556x45_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5c6d46132e221601da357d58", - "_parent": "5c6d46132e221601da357d56", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302", - "5fbe3ffdf8b6a877a729ea82", - "5fd20ff893a8961fc660a954", - "619636be6db0f2477964e710", - "6196364158ef8c428c287d9f", - "6196365d58ef8c428c287da1", - "64b8725c4b75259c590fa899" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -10, - "CheckTimeModifier": 0, + "CheckTimeModifier": -15, "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.02, + "MalfunctionChance": 0.05, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "55802d5f4bdc2dac148b458e" + "_proto": "55d480c04bdc2d1d4e8b456a" }, - "5fb651dc85f90547f674b6f4": { - "_id": "5fb651dc85f90547f674b6f4", - "_name": "mag_glock_kriss_magex_g30_1143x23_30", + "5a7ad2e851dfba0016153692": { + "_id": "5a7ad2e851dfba0016153692", + "_name": "mag_glock_glock_big_stick_9x19_33", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_glock_kriss_magex_g30_1143x23_30", - "ShortName": "mag_glock_kriss_magex_g30_1143x23_30", - "Description": "mag_glock_kriss_magex_g30_1143x23_30", - "Weight": 0.18, + "Name": "mag_glock_glock_std_9x19_17", + "ShortName": "mag_glock_glock_std_9x19_17", + "Description": "mag_glock_glock_std_9x19_17", + "Weight": 0.15, "BackgroundColor": "yellow", "Width": 1, "Height": 2, "StackMaxSize": 1, "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_glock_kriss_magex_g30_1143x23_30.bundle", + "path": "assets/content/items/mods/magazines/mag_glock_glock_big_stick_9x19_33.bundle", "rcid": "" }, "UsePrefab": { @@ -62704,7 +63189,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -5, + "Ergonomics": -6, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -62719,18 +63204,22 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "5fb651dc85f90547f674b6f6", - "_parent": "5fb651dc85f90547f674b6f4", - "_max_count": 30, + "_id": "5a7ad2e851dfba0016153694", + "_parent": "5a7ad2e851dfba0016153692", + "_max_count": 33, "_props": { "filters": [ { "Filter": [ - "5e81f423763d9f754677bf2e", - "5efb0cabfb3e451d70735af5", - "5efb0fc6aeb21837e749c801", - "5efb0d4f4bc50b58e81710f3", - "5ea2a8e200685063ec28c05a" + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" ] } ] @@ -62741,12 +63230,12 @@ "CanFast": true, "CanHit": false, "CanAdmin": false, - "LoadUnloadModifier": -25, + "LoadUnloadModifier": -10, "CheckTimeModifier": -30, "CheckOverride": 1, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.169, + "MalfunctionChance": 0.182, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, @@ -62755,134 +63244,6 @@ }, "_proto": "5448c12b4bdc2d02308b456f" }, - "5cbdaf89ae9215000e5b9c94": { - "_id": "5cbdaf89ae9215000e5b9c94", - "_name": "mag_ak74_izhmash_6L23_plum_545x39_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Магазин 6Л23 5.45x39 для АК-74 и совместимых на 30 патронов", - "ShortName": "5.45x39 6Л23", - "Description": "30-ти зарядный полимерный магазин Ижмаш 6Л23, под патрон 5.45x39 для АК-74 и совместимых.", - "Weight": 0.215, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak74_izhmash_6l23_plum_545x39_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5cbdaf89ae9215000e5b9c96", - "_parent": "5cbdaf89ae9215000e5b9c94", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.06, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55802d5f4bdc2dac148b458e" - }, "5b7bef9c5acfc43d102852ec": { "_id": "5b7bef9c5acfc43d102852ec", "_name": "mag_fal_x_products_x_fal_762x51_50", @@ -63127,508 +63488,6 @@ }, "_proto": "55d480c04bdc2d1d4e8b456a" }, - "602286df23506e50807090c6": { - "_id": "602286df23506e50807090c6", - "_name": "mag_pl15_izhmash_pl15_std_9x19_16", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_glock_glock_std_9x19_17", - "ShortName": "mag_glock_glock_std_9x19_17", - "Description": "mag_glock_glock_std_9x19_17", - "Weight": 0.096, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_pl15_izhmash_pl15_std_9x19_16.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "602286df23506e50807090c8", - "_parent": "602286df23506e50807090c6", - "_max_count": 16, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -10, - "CheckTimeModifier": -20, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.02, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, - "587df583245977373c4f1129": { - "_id": "587df583245977373c4f1129", - "_name": "mag_sks_tapco_mag6610_762x39_20", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_sks_tapco_mag6610_762x39_10", - "ShortName": "mag_sks_tapco_mag6610_762x39_10", - "Description": "mag_sks_tapco_mag6610_762x39_10", - "Weight": 0.112, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_sks_tapco_mag6610_762x39_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 1, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "587df583245977373c4f112a", - "_parent": "587df583245977373c4f1129", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "59e655cb86f77411dc52a77b", - "59e6542b86f77411dc52a77a", - "59e6658b86f77411d949b250", - "5f0596629e22f464da6bbdd9", - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af5a8532cf95ee0a0dbd", - "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 10, - "CheckTimeModifier": 10, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.07, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "5cfe8010d7ad1a59283b14c6": { - "_id": "5cfe8010d7ad1a59283b14c6", - "_name": "mag_ak_x_products_x_47_drum_762x39_50", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_x_products_x_47_drum_762x39_50", - "ShortName": "mag_x_products_x_47_drum_762x39_50", - "Description": "mag_x_products_x_47_drum_762x39_50\n", - "Weight": 0.7, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak_x_products_x_47_drum_762x39_50.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -15, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 6, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5cfe8010d7ad1a59283b14c8", - "_parent": "5cfe8010d7ad1a59283b14c6", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "59e655cb86f77411dc52a77b", - "59e6542b86f77411dc52a77a", - "59e6658b86f77411d949b250", - "5f0596629e22f464da6bbdd9", - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af5a8532cf95ee0a0dbd", - "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 15, - "CheckTimeModifier": 20, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.28, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c1d04bdc2dff2f8b4569" - }, - "5addcce35acfc4001a5fc635": { - "_id": "5addcce35acfc4001a5fc635", - "_name": "mag_m14_triple_k_m14_magazine_762x51_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_m14_triple_k_m14_magazine_762x51_30", - "ShortName": "mag_m14_triple_k_m14_magazine_762x51_30", - "Description": "mag_m14_triple_k_m14_magazine_762x51_30\n", - "Weight": 0.34, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_m14_triple_k_m14_magazine_762x51_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 1, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5addcce35acfc4001a5fc637", - "_parent": "5addcce35acfc4001a5fc635", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.08, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c1d04bdc2dff2f8b4569" - }, "5c5db6652e221600113fba51": { "_id": "5c5db6652e221600113fba51", "_name": "mag_mpx_tti_sig_mag_w_base_pad_9x19_41", @@ -64005,145 +63864,23 @@ }, "_proto": "55d480c04bdc2d1d4e8b456a" }, - "5d25a4a98abbc30b917421a4": { - "_id": "5d25a4a98abbc30b917421a4", - "_name": "mag_m700_ai_aics_762x51_5", + "6183d53f1cb55961fa0fdcda": { + "_id": "6183d53f1cb55961fa0fdcda", + "_name": "mag_mk17_fn_mk17_std_762x51_20_fde", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_m700_ai_aics_762x51_5", - "ShortName": "mag_m700_ai_aics_762x51_5", - "Description": "mag_m700_ai_aics_762x51_5", - "Weight": 0.3, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_m700_ai_aics_762x51_5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 3, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5d25a4a98abbc30b917421a6", - "_parent": "5d25a4a98abbc30b917421a4", - "_max_count": 5, - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -15, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.02, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "559ba5b34bdc2d1f1a8b4582" - }, - "617131a4568c120fdd29482d": { - "_id": "617131a4568c120fdd29482d", - "_name": "mag_417_hk_417_std_762x51_20", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", - "ShortName": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", - "Description": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20\n", - "Weight": 0.16, + "Name": "mag_ash12_ckib_ash12_std_127x55_10", + "ShortName": "mag_ash12_ckib_ash12_std_127x55_10", + "Description": "mag_ash12_ckib_ash12_std_127x55_10", + "Weight": 0.35, "BackgroundColor": "yellow", "Width": 1, "Height": 2, "StackMaxSize": 1, - "ItemSound": "mag_plastic", + "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_417_hk_417_std_762x51_20.bundle", + "path": "assets/content/items/mods/magazines/mag_mk17_fn_mk17_std_762x51_20_fde.bundle", "rcid": "" }, "UsePrefab": { @@ -64196,7 +63933,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -3, + "Ergonomics": -4, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -64207,12 +63944,12 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "magAnimationIndex": 1, + "magAnimationIndex": 0, "Cartridges": [ { "_name": "cartridges", - "_id": "617131a4568c120fdd29482f", - "_parent": "617131a4568c120fdd29482d", + "_id": "6183d53f1cb55961fa0fdcdc", + "_parent": "6183d53f1cb55961fa0fdcda", "_max_count": 20, "_props": { "filters": [ @@ -64237,35 +63974,35 @@ "CanAdmin": false, "LoadUnloadModifier": 0, "CheckTimeModifier": 0, - "CheckOverride": 1, + "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.04, + "MalfunctionChance": 0.015, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "5448c1d04bdc2dff2f8b4569" + "_proto": "55d480c04bdc2d1d4e8b456a" }, - "55d481904bdc2d8c2f8b456a": { - "_id": "55d481904bdc2d8c2f8b456a", - "_name": "mag_ak74_izhmash_6L26_545x39_45", + "5a966f51a2750c00156aacf6": { + "_id": "5a966f51a2750c00156aacf6", + "_name": "mag_saiga12_pro_mag_sai_02_12x76_10", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "Магазин 6Л26 5.45x39 для АК-74 и совместимых на 45 патронов", - "ShortName": "5.45x39 6Л26", - "Description": "45-ти зарядный полимерный магазин Ижмаш 6Л26, под патрон 5.45x39 для АК-74 и совместимых.", - "Weight": 0.3, + "Name": "mag_saiga12_pro_mag_sai_02_12x76_10", + "ShortName": "mag_saiga12_pro_mag_sai_02_12x76_10", + "Description": "mag_saiga12_pro_mag_sai_02_12x76_10", + "Weight": 0.21, "BackgroundColor": "yellow", "Width": 1, "Height": 3, "StackMaxSize": 1, "ItemSound": "mag_plastic", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak74_izhmash_6l26_545x39_45.bundle", + "path": "assets/content/items/mods/magazines/mag_saiga12_pro_mag_sai_02_12x76_10.bundle", "rcid": "" }, "UsePrefab": { @@ -64318,7 +64055,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -8, + "Ergonomics": -7, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -64329,150 +64066,34 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "magAnimationIndex": 0, + "magAnimationIndex": 1, "Cartridges": [ { "_name": "cartridges", - "_id": "57487c0a2459771f6d7b4341", - "_parent": "55d481904bdc2d8c2f8b456a", - "_max_count": 45, + "_id": "5a966f51a2750c00156aacf8", + "_parent": "5a966f51a2750c00156aacf6", + "_max_count": 10, "_props": { "filters": [ { "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 15, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.151, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "5fc3e466187fea44d52eda90": { - "_id": "5fc3e466187fea44d52eda90", - "_name": "mag_ump_hk_ump_1143x23_25", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ump_hk_ump_1143x23_25", - "ShortName": "mag_ump_hk_ump_1143x23_25", - "Description": "mag_ump_hk_ump_1143x23_25", - "Weight": 0.17, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ump_hk_ump_1143x23_25.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5fc3e466187fea44d52eda92", - "_parent": "5fc3e466187fea44d52eda90", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "5e81f423763d9f754677bf2e", - "5efb0cabfb3e451d70735af5", - "5efb0fc6aeb21837e749c801", - "5efb0d4f4bc50b58e81710f3", - "5ea2a8e200685063ec28c05a" + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" ] } ] @@ -64485,35 +64106,35 @@ "CanAdmin": false, "LoadUnloadModifier": 0, "CheckTimeModifier": 0, - "CheckOverride": 1, + "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-25", - "MalfunctionChance": 0.015, + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.05, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "5448c12b4bdc2d02308b456f" + "_proto": "564ca99c4bdc2d16268b4589" }, - "5cadc2e0ae9215051e1c21e7": { - "_id": "5cadc2e0ae9215051e1c21e7", - "_name": "mag_m9_beretta_m9a3_std_9x19_17", + "56d59948d2720bb7418b4582": { + "_id": "56d59948d2720bb7418b4582", + "_name": "mag_p226_sig_std_9x19_15", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { "Name": "Магазин стандартный 9х19 для P226 на 15 патронов", "ShortName": "9х19 P226", "Description": "бла бла бла", - "Weight": 0.082, + "Weight": 0.096, "BackgroundColor": "yellow", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_m9_beretta_m9a3_std_9x19_17.bundle", + "path": "assets/content/items/mods/magazines/mag_p226_sig_std_9x19_15.bundle", "rcid": "" }, "UsePrefab": { @@ -64581,9 +64202,9 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "5cadc2e0ae9215051e1c21e9", - "_parent": "5cadc2e0ae9215051e1c21e7", - "_max_count": 17, + "_id": "574880652459771f6e0b87c4", + "_parent": "56d59948d2720bb7418b4582", + "_max_count": 15, "_props": { "filters": [ { @@ -64621,23 +64242,23 @@ }, "_proto": "5448c12b4bdc2d02308b456f" }, - "5de8eaadbbaf010b10528a6d": { - "_id": "5de8eaadbbaf010b10528a6d", - "_name": "mag_mp9_bt_mp9_std_9x19_25", + "5fb651dc85f90547f674b6f4": { + "_id": "5fb651dc85f90547f674b6f4", + "_name": "mag_glock_kriss_magex_g30_1143x23_30", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_pp-91_zmz_pp-91_std_9x18pm_20", - "ShortName": "mag_pp-91_zmz_pp-91_std_9x18pm_20", - "Description": "mag_pp-91_zmz_pp-91_std_9x18pm_20", - "Weight": 0.072, + "Name": "mag_glock_kriss_magex_g30_1143x23_30", + "ShortName": "mag_glock_kriss_magex_g30_1143x23_30", + "Description": "mag_glock_kriss_magex_g30_1143x23_30", + "Weight": 0.18, "BackgroundColor": "yellow", "Width": 1, "Height": 2, "StackMaxSize": 1, - "ItemSound": "mag_plastic", + "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mp9_bt_mp9_std_9x19_25.bundle", + "path": "assets/content/items/mods/magazines/mag_glock_kriss_magex_g30_1143x23_30.bundle", "rcid": "" }, "UsePrefab": { @@ -64690,7 +64311,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 1, + "Ergonomics": -5, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -64705,9 +64326,1133 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "5de8eaadbbaf010b10528a6f", - "_parent": "5de8eaadbbaf010b10528a6d", - "_max_count": 25, + "_id": "5fb651dc85f90547f674b6f6", + "_parent": "5fb651dc85f90547f674b6f4", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "5e81f423763d9f754677bf2e", + "5efb0cabfb3e451d70735af5", + "5efb0fc6aeb21837e749c801", + "5efb0d4f4bc50b58e81710f3", + "5ea2a8e200685063ec28c05a" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -25, + "CheckTimeModifier": -30, + "CheckOverride": 1, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.169, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, + "5cbdaf89ae9215000e5b9c94": { + "_id": "5cbdaf89ae9215000e5b9c94", + "_name": "mag_ak74_izhmash_6L23_plum_545x39_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин 6Л23 5.45x39 для АК-74 и совместимых на 30 патронов", + "ShortName": "5.45x39 6Л23", + "Description": "30-ти зарядный полимерный магазин Ижмаш 6Л23, под патрон 5.45x39 для АК-74 и совместимых.", + "Weight": 0.215, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ak74_izhmash_6l23_plum_545x39_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5cbdaf89ae9215000e5b9c96", + "_parent": "5cbdaf89ae9215000e5b9c94", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.06, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55802d5f4bdc2dac148b458e" + }, + "5aaf8a0be5b5b00015693243": { + "_id": "5aaf8a0be5b5b00015693243", + "_name": "mag_m14_springfield_armory_762x51_20", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_m1a_springfield_armory_762x51_20", + "ShortName": "mag_m1a_springfield_armory_762x51_20", + "Description": "mag_m1a_springfield_armory_762x51_20\n", + "Weight": 0.226, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_m14_springfield_armory_762x51_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5aaf8a0be5b5b00015693245", + "_parent": "5aaf8a0be5b5b00015693243", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.05, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c1d04bdc2dff2f8b4569" + }, + "5bed61680db834001d2c45ab": { + "_id": "5bed61680db834001d2c45ab", + "_name": "mag_ak_izhmash_ak12_std_545x39_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_ak_izhmash_ak12_std_545x39_30", + "ShortName": "mag_ak_izhmash_ak12_std_545x39_30", + "Description": "mag_ak_izhmash_ak12_std_545x39_30", + "Weight": 0.19, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ak_izhmash_ak12_std_545x39_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2.5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 4, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5bed61680db834001d2c45ad", + "_parent": "5bed61680db834001d2c45ab", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -10, + "CheckTimeModifier": -20, + "CheckOverride": 1, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.02, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55802d5f4bdc2dac148b458e" + }, + "57d1519e24597714373db79d": { + "_id": "57d1519e24597714373db79d", + "_name": "mag_pp-91_zmz_pp-91_std_9x18pm_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_pp-91_zmz_pp-91_std_9x18pm_30", + "ShortName": "mag_pp-91_zmz_pp-91_std_9x18pm_30", + "Description": "mag_pp-91_zmz_pp-91_std_9x18pm_30", + "Weight": 0.128, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_pp-91_zmz_pp-91_std_9x18pm_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "57d15ad52459775a79095e23", + "_parent": "57d1519e24597714373db79d", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "573718ba2459775a75491131", + "573719df2459775a626ccbc2", + "57371aab2459775a77142f22", + "57371b192459775a9f58a5e0", + "57371e4124597760ff7b25f1", + "57371eb62459776125652ac1", + "57371f8d24597761006c6a81", + "5737201124597760fc4431f1", + "5737207f24597760ff7b25f2", + "57371f2b24597761224311f1", + "573719762459775a626ccbc1", + "573720e02459776143012541", + "57372140245977611f70ee91", + "5737218f245977612125ba51" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.04, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "57d14e1724597714010c3f4b" + }, + "5a7882dcc5856700177af662": { + "_id": "5a7882dcc5856700177af662", + "_name": "mag_870_remington_magazie_cap_12g_4", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_870_remington_magazie_cap_12g_4", + "ShortName": "mag_870_remington_magazie_cap_12g_4", + "Description": "mag_870_remington_magazie_cap_12g_4", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_870_remington_magazie_cap_12g_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5a7882dcc5856700177af663", + "_parent": "5a7882dcc5856700177af662", + "_max_count": 4, + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "InternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.01, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d4837c4bdc2d1d4e8b456c" + }, + "5ef3448ab37dfd6af863525c": { + "_id": "5ef3448ab37dfd6af863525c", + "_name": "mag_m1911_mec_gar_extended_1143x23_11", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_m1911_mec_gar_extended_1143x23_11", + "ShortName": "mag_m1911_mec_gar_extended_1143x23_11", + "Description": "mag_m1911_mec_gar_extended_1143x23_11", + "Weight": 0.24, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_m1911_mec_gar_extended_1143x23_11.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 1, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5ef3448bb37dfd6af863525e", + "_parent": "5ef3448ab37dfd6af863525c", + "_max_count": 11, + "_props": { + "filters": [ + { + "Filter": [ + "5e81f423763d9f754677bf2e", + "5efb0cabfb3e451d70735af5", + "5efb0fc6aeb21837e749c801", + "5efb0d4f4bc50b58e81710f3", + "5ea2a8e200685063ec28c05a" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -25, + "CheckTimeModifier": -20, + "CheckOverride": 1, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.07, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, + "5c5db6742e2216000f1b2852": { + "_id": "5c5db6742e2216000f1b2852", + "_name": "mag_mpx_f5_mpx_drum_9x19_50", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_mpx_sig_mpx_std_9x19_30", + "ShortName": "mag_mpx_sig_mpx_std_9x19_30", + "Description": "mag_mpx_sig_mpx_std_9x19_30", + "Weight": 0.65, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_mpx_f5_mpx_drum_9x19_50.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -15, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 2, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5c5db6742e2216000f1b2854", + "_parent": "5c5db6742e2216000f1b2852", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 30, + "CheckTimeModifier": 15, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.168, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, + "6450ec2e7da7133e5a09ca96": { + "_id": "6450ec2e7da7133e5a09ca96", + "_name": "mag_9a91_kbp_9a91_std_9x39_20", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "", + "ShortName": "", + "Description": "", + "Weight": 0.3, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_9a91_kbp_9a91_std_9x39_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 1, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "6450ec2e7da7133e5a09ca97", + "_parent": "6450ec2e7da7133e5a09ca96", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5c0d688c86f77413ae3407b2", + "61962d879bb3d20b0946d385", + "57a0dfb82459774d3078b56c", + "57a0e5022459774d1673f889", + "5c0d668f86f7747ccb7f13b2", + "6576f96220d53a5b8f3e395e" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.19, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "57838f0b2459774a256959b2" + }, + "5de8e8dafd6b4e6e2276dc32": { + "_id": "5de8e8dafd6b4e6e2276dc32", + "_name": "mag_mp9_bt_mp9_std_9x19_15", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_mp9_bt_mp9_std_9x19_15", + "ShortName": "mag_mp9_bt_mp9_std_9x19_15", + "Description": "mag_mp9_bt_mp9_std_9x19_15", + "Weight": 0.06, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_mp9_bt_mp9_std_9x19_15.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5de8e8dafd6b4e6e2276dc34", + "_parent": "5de8e8dafd6b4e6e2276dc32", + "_max_count": 15, "_props": { "filters": [ { @@ -64736,7 +65481,7 @@ "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.03, + "MalfunctionChance": 0.01, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, @@ -64745,15 +65490,15 @@ }, "_proto": "5448c12b4bdc2d02308b456f" }, - "630e1adbbd357927e4007c09": { - "_id": "630e1adbbd357927e4007c09", - "_name": "mag_aug_steyr_std_556x45_10", + "617130016c780c1e710c9a24": { + "_id": "617130016c780c1e710c9a24", + "_name": "mag_417_hk_417_std_762x51_10", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", - "ShortName": "5.56x45 PMAG GEN M3 30", - "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", + "Name": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", + "ShortName": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", + "Description": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20\n", "Weight": 0.1, "BackgroundColor": "yellow", "Width": 1, @@ -64761,7 +65506,7 @@ "StackMaxSize": 1, "ItemSound": "mag_plastic", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_aug_steyr_std_556x45_10.bundle", + "path": "assets/content/items/mods/magazines/mag_417_hk_417_std_762x51_10.bundle", "rcid": "" }, "UsePrefab": { @@ -64786,7 +65531,7 @@ "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, - "ExtraSizeDown": 0, + "ExtraSizeDown": 1, "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, @@ -64825,268 +65570,12 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "magAnimationIndex": 1, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "630e1adbbd357927e4007c0a", - "_parent": "630e1adbbd357927e4007c09", - "_max_count": 10, - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302", - "5fbe3ffdf8b6a877a729ea82", - "5fd20ff893a8961fc660a954", - "619636be6db0f2477964e710", - "6196364158ef8c428c287d9f", - "6196365d58ef8c428c287da1", - "64b8725c4b75259c590fa899" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.08, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55802d5f4bdc2dac148b458e" - }, - "5c920e902e221644f31c3c99": { - "_id": "5c920e902e221644f31c3c99", - "_name": "mag_p226_sig_extended_mag_9x19_20", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_p226_sig_extended_mag_9x19_20", - "ShortName": "mag_p226_sig_extended_mag_9x19_20", - "Description": "mag_p226_sig_extended_mag_9x19_20", - "Weight": 0.11, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_p226_sig_extended_mag_9x19_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 1, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5c920e902e221644f31c3c9b", - "_parent": "5c920e902e221644f31c3c99", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.01, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, - "5c503ad32e2216398b5aada2": { - "_id": "5c503ad32e2216398b5aada2", - "_name": "mag_vepr_molot_308_win_std_762x51_10", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ak_custom_sawed_off_762x39_10", - "ShortName": "mag_ak_custom_sawed_off_762x39_10", - "Description": "mag_ak_custom_sawed_off_762x39_10", - "Weight": 0.2, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_vepr_molot_308_win_std_762x51_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, "magAnimationIndex": 0, "Cartridges": [ { "_name": "cartridges", - "_id": "5c503ad32e2216398b5aada4", - "_parent": "5c503ad32e2216398b5aada2", + "_id": "617130016c780c1e710c9a26", + "_parent": "617130016c780c1e710c9a24", "_max_count": 10, "_props": { "filters": [ @@ -65110,36 +65599,36 @@ "CanHit": false, "CanAdmin": false, "LoadUnloadModifier": 0, - "CheckTimeModifier": -15, - "CheckOverride": 0, + "CheckTimeModifier": 0, + "CheckOverride": 1, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.05, + "MalfunctionChance": 0.02, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "55d480c04bdc2d1d4e8b456a" + "_proto": "5448c1d04bdc2dff2f8b4569" }, - "5a7ad2e851dfba0016153692": { - "_id": "5a7ad2e851dfba0016153692", - "_name": "mag_glock_glock_big_stick_9x19_33", + "5b7d37845acfc400170e2f87": { + "_id": "5b7d37845acfc400170e2f87", + "_name": "mag_fal_sarco_fal_l1a1_orig_762x51_30", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_glock_glock_std_9x19_17", - "ShortName": "mag_glock_glock_std_9x19_17", - "Description": "mag_glock_glock_std_9x19_17", - "Weight": 0.15, + "Name": "mag_fal_ds_arms_fal_sa58_762x51_20", + "ShortName": "mag_fal_ds_arms_fal_sa58_762x51_20", + "Description": "mag_fal_ds_arms_fal_sa58_762x51_20\n", + "Weight": 0.49, "BackgroundColor": "yellow", "Width": 1, "Height": 2, "StackMaxSize": 1, "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_glock_glock_big_stick_9x19_33.bundle", + "path": "assets/content/items/mods/magazines/mag_fal_sarco_fal_l1a1_orig_762x51_30.bundle", "rcid": "" }, "UsePrefab": { @@ -65192,7 +65681,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -6, + "Ergonomics": -8, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -65207,143 +65696,20 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "5a7ad2e851dfba0016153694", - "_parent": "5a7ad2e851dfba0016153692", - "_max_count": 33, + "_id": "5b7d37845acfc400170e2f89", + "_parent": "5b7d37845acfc400170e2f87", + "_max_count": 30, "_props": { "filters": [ { "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -10, - "CheckTimeModifier": -30, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.182, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, - "57838f0b2459774a256959b2": { - "_id": "57838f0b2459774a256959b2", - "_name": "mag_vss_tochmash_6L24_9x39_10", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "", - "ShortName": "", - "Description": "", - "Weight": 0.25, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_vss_tochmash_6l24_9x39_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "57838f872459774a256959b3", - "_parent": "57838f0b2459774a256959b2", - "_max_count": 10, - "_props": { - "filters": [ - { - "Filter": [ - "5c0d688c86f77413ae3407b2", - "61962d879bb3d20b0946d385", - "57a0dfb82459774d3078b56c", - "57a0e5022459774d1673f889", - "5c0d668f86f7747ccb7f13b2", - "6576f96220d53a5b8f3e395e" + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" ] } ] @@ -65359,32 +65725,32 @@ "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.12, + "MalfunctionChance": 0.179, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "55d480c04bdc2d1d4e8b456a" + "_proto": "5448c1d04bdc2dff2f8b4569" }, - "59f99a7d86f7745b134aa97b": { - "_id": "59f99a7d86f7745b134aa97b", - "_name": "mag_sr1mp_tochmash_std_9x21_18", + "5ac66bea5acfc43b321d4aec": { + "_id": "5ac66bea5acfc43b321d4aec", + "_name": "mag_ak_izhmash_ak103_std_762x39_30", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_sr1mp_tochmash_std_9x21_18", - "ShortName": "mag_sr1mp_tochmash_std_9x21_18", - "Description": "mag_sr1mp_tochmash_std_9x21_18", - "Weight": 0.105, + "Name": "mag_ak_izhmash_ak103_std_762x39_30", + "ShortName": "mag_ak_izhmash_ak103_std_762x39_30", + "Description": "mag_ak_izhmash_ak103_std_762x39_30", + "Weight": 0.215, "BackgroundColor": "yellow", "Width": 1, - "Height": 1, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "magazine_metal", + "ItemSound": "mag_plastic", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_sr1mp_tochmash_std_9x21_18.bundle", + "path": "assets/content/items/mods/magazines/mag_ak_izhmash_ak103_std_762x39_30.bundle", "rcid": "" }, "UsePrefab": { @@ -65401,7 +65767,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, + "LootExperience": 10, "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, @@ -65409,7 +65775,7 @@ "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, - "ExtraSizeDown": 0, + "ExtraSizeDown": 1, "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, @@ -65437,7 +65803,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": -3, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -65452,130 +65818,9 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "59f99a7d86f7745b134aa97c", - "_parent": "59f99a7d86f7745b134aa97b", - "_max_count": 18, - "_props": { - "filters": [ - { - "Filter": [ - "5a269f97c4a282000b151807", - "5a26abfac4a28232980eabff", - "5a26ac06c4a282000c5a90a8", - "5a26ac0ec4a28200741e1e18", - "6576f4708ca9c4381d16cd9d", - "6576f93989f0062e741ba952" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": -20, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-1;4-5;8-10;13-15;18-20", - "MalfunctionChance": 0.02, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "56d59948d2720bb7418b4582" - }, - "5c6175362e221600133e3b94": { - "_id": "5c6175362e221600133e3b94", - "_name": "mag_ak_promag_ak_a_16_drum_762x39_73", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ak_izhmash_ak12_std_545x39_30", - "ShortName": "mag_ak_izhmash_ak12_std_545x39_30", - "Description": "mag_ak_izhmash_ak12_std_545x39_30", - "Weight": 0.72, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak_promag_ak_a_16_drum_762x39_73.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 2, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -18, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 5, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5c6175362e221600133e3b96", - "_parent": "5c6175362e221600133e3b94", - "_max_count": 73, + "_id": "5ac66bea5acfc43b321d4aee", + "_parent": "5ac66bea5acfc43b321d4aec", + "_max_count": 30, "_props": { "filters": [ { @@ -65603,37 +65848,37 @@ "CanFast": true, "CanHit": false, "CanAdmin": false, - "LoadUnloadModifier": 60, - "CheckTimeModifier": 15, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.35, + "MalfunctionChance": 0.08, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "55802d5f4bdc2dac148b458e" + "_proto": "55d480c04bdc2d1d4e8b456a" }, - "55d482194bdc2d1d4e8b456b": { - "_id": "55d482194bdc2d1d4e8b456b", - "_name": "mag_ak74_izhmash_6L31_545x39_60", + "5b7bef5d5acfc43bca7067a3": { + "_id": "5b7bef5d5acfc43bca7067a3", + "_name": "mag_fal_ds_arms_fal_sa58_762x51_30", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "Магазин 6Л31 5.45x39 для АК-74 и совместимых на 60 патронов", - "ShortName": "5.45x39 AK74 6Л31", - "Description": "60-ти зарядный четырехрядный полимерный магазин Ижмаш 6Л31, под патрон 5.45x39 для АК-74 и совместимых. Выпущен малой партией и не попавший в серийное производство.", - "Weight": 0.3, + "Name": "mag_fal_ds_arms_fal_sa58_762x51_20", + "ShortName": "mag_fal_ds_arms_fal_sa58_762x51_20", + "Description": "mag_fal_ds_arms_fal_sa58_762x51_20\n", + "Weight": 0.49, "BackgroundColor": "yellow", "Width": 1, "Height": 2, "StackMaxSize": 1, - "ItemSound": "mag_plastic", + "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak74_izhmash_6l31_545x39_60.bundle", + "path": "assets/content/items/mods/magazines/mag_fal_ds_arms_fal_sa58_762x51_30.bundle", "rcid": "" }, "UsePrefab": { @@ -65686,7 +65931,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -16, + "Ergonomics": -9, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -65701,137 +65946,9 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "57487c212459771f6d7b4342", - "_parent": "55d482194bdc2d1d4e8b456b", - "_max_count": 60, - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 85, - "CheckTimeModifier": 20, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.299, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d481904bdc2d8c2f8b456a" - }, - "5d25af8f8abbc3055079fec5": { - "_id": "5d25af8f8abbc3055079fec5", - "_name": "mag_m700_promag_aa70_762x51_10", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_dvl-10_lobaev_308_10", - "ShortName": "mag_dvl-10_lobaev_308_10", - "Description": "mag_dvl-10_lobaev_308_10", - "Weight": 0.5, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_m700_promag_aa70_762x51_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 2, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5d25af8f8abbc3055079fec7", - "_parent": "5d25af8f8abbc3055079fec5", - "_max_count": 10, + "_id": "5b7bef5d5acfc43bca7067a5", + "_parent": "5b7bef5d5acfc43bca7067a3", + "_max_count": 30, "_props": { "filters": [ { @@ -65853,273 +65970,23 @@ "CanFast": true, "CanHit": false, "CanAdmin": false, - "LoadUnloadModifier": -15, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.03, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "559ba5b34bdc2d1f1a8b4582" - }, - "630e295c984633f1fb0e7c30": { - "_id": "630e295c984633f1fb0e7c30", - "_name": "mag_aug_steyr_std_556x45_42", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", - "ShortName": "5.56x45 PMAG GEN M3 30", - "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", - "Weight": 0.142, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_aug_steyr_std_556x45_42.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -7, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "630e295c984633f1fb0e7c31", - "_parent": "630e295c984633f1fb0e7c30", - "_max_count": 42, - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302", - "5fbe3ffdf8b6a877a729ea82", - "5fd20ff893a8961fc660a954", - "619636be6db0f2477964e710", - "6196364158ef8c428c287d9f", - "6196365d58ef8c428c287da1", - "64b8725c4b75259c590fa899" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, "LoadUnloadModifier": 0, "CheckTimeModifier": 0, "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.08, + "MalfunctionChance": 0.2, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "55802d5f4bdc2dac148b458e" + "_proto": "5448c1d04bdc2dff2f8b4569" }, - "5caf1109ae9215753c44119f": { - "_id": "5caf1109ae9215753c44119f", - "_name": "mag_ash12_ckib_ash12_std_127x55_20", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ash12_ckib_ash12_std_127x55_10", - "ShortName": "mag_ash12_ckib_ash12_std_127x55_10", - "Description": "mag_ash12_ckib_ash12_std_127x55_10", - "Weight": 0.5, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ash12_ckib_ash12_std_127x55_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -7, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 1, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5caf1109ae9215753c4411a1", - "_parent": "5caf1109ae9215753c44119f", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5cadf6ddae9215051e1c23b2", - "5cadf6e5ae921500113bb973", - "5cadf6eeae921500134b2799" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 15, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.188, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "61840bedd92c473c77021635": { - "_id": "61840bedd92c473c77021635", - "_name": "mag_stanag_fn_mk16_std_556x45_30", + "55d4887d4bdc2d962f8b4570": { + "_id": "55d4887d4bdc2d962f8b4570", + "_name": "mag_stanag_colt_ar15_std_556x45_30", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { @@ -66131,9 +65998,9 @@ "Width": 1, "Height": 2, "StackMaxSize": 1, - "ItemSound": "magazine_metal", + "ItemSound": "mag_plastic", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_stanag_fn_mk16_std_556x45_30.bundle", + "path": "assets/content/items/mods/magazines/mag_stanag_colt_ar15_std_556x45_30.bundle", "rcid": "" }, "UsePrefab": { @@ -66201,8 +66068,8 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "61840bedd92c473c77021637", - "_parent": "61840bedd92c473c77021635", + "_id": "574880192459771f661283c3", + "_parent": "55d4887d4bdc2d962f8b4570", "_max_count": 30, "_props": { "filters": [ @@ -66249,23 +66116,23 @@ }, "_proto": "55802d5f4bdc2dac148b458e" }, - "5fc23426900b1d5091531e15": { - "_id": "5fc23426900b1d5091531e15", - "_name": "mag_mk18_sword_mjolnir_std_86x70_10", + "576a5ed62459771e9c2096cb": { + "_id": "576a5ed62459771e9c2096cb", + "_name": "mag_mp443_izhmeh_std_9x19_18", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_mk18_sword_mjolnir_std_86x70_10", - "ShortName": "mag_mk18_sword_mjolnir_std_86x70_10", - "Description": "mag_mk18_sword_mjolnir_std_86x70_10", - "Weight": 0.6, + "Name": "mag_mp443_izhmeh_std_9x19_18", + "ShortName": "mag_mp443_izhmeh_std_9x19_18", + "Description": "mag_mp443_izhmeh_std_9x19_18", + "Weight": 0.105, "BackgroundColor": "yellow", "Width": 1, - "Height": 2, + "Height": 1, "StackMaxSize": 1, "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mk18_sword_mjolnir_std_86x70_10.bundle", + "path": "assets/content/items/mods/magazines/mag_mp443_izhmeh_std_9x19_18.bundle", "rcid": "" }, "UsePrefab": { @@ -66282,7 +66149,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, + "LootExperience": 5, "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, @@ -66318,7 +66185,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -6, + "Ergonomics": -1, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -66329,21 +66196,270 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "magAnimationIndex": 6, + "magAnimationIndex": 0, "Cartridges": [ { "_name": "cartridges", - "_id": "5fc23426900b1d5091531e17", - "_parent": "5fc23426900b1d5091531e15", - "_max_count": 10, + "_id": "576a62b72459771e7c64ef26", + "_parent": "576a5ed62459771e9c2096cb", + "_max_count": 18, "_props": { "filters": [ { "Filter": [ - "5fc382a9d724d907e2077dab", - "5fc275cf85fd526b824a571a", - "5fc382c1016cce60e8341b20", - "5fc382b6d6fa9c00c571bbc3" + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 1, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.04, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "56d59948d2720bb7418b4582" + }, + "646372518610c40fc20204e8": { + "_id": "646372518610c40fc20204e8", + "_name": "mag_pkm_zid_pk_std_762x54r_100", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин полимерный 7.62х54R для СВ-98 на 10 патронов", + "ShortName": "7.62х54R полимерный", + "Description": "Стандартный полимерный магазин производства Ижмаш для винтовки СВ-98, под патрон 7.62х54R.", + "Weight": 1.5, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_pkm_zid_pk_std_762x54r_100.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 2, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -30, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "646372518610c40fc20204e9", + "_parent": "646372518610c40fc20204e8", + "_max_count": 100, + "_props": { + "filters": [ + { + "Filter": [ + "5e023d34e8a400319a28ed44", + "5e023d48186a883be655e551", + "5e023cf8186a883be655e54f", + "59e77a2386f7742ee578960a", + "5887431f2459777e1612938f", + "560d61e84bdc2da74d8b4571", + "64b8f7c241772715af0f9c3d", + "64b8f7968532cf95ee0a0dbf", + "64b8f7b5389d7ffd620ccba2" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.01, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": true, + "BeltMagazineRefreshCount": 25, + "IsMagazineForStationaryWeapon": false + } + }, + "5a9e81fba2750c00164f6b11": { + "_id": "5a9e81fba2750c00164f6b11", + "_name": "mag_vss_tochmash_sr3m130_9x39_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_vss_tochmash_sr3m130_9x39_30", + "ShortName": "mag_vss_tochmash_sr3m130_9x39_30", + "Description": "mag_vss_tochmash_sr3m130_9x39_30", + "Weight": 0.45, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_vss_tochmash_sr3m130_9x39_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 1, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5a9e81fba2750c00164f6b13", + "_parent": "5a9e81fba2750c00164f6b11", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "5c0d688c86f77413ae3407b2", + "61962d879bb3d20b0946d385", + "57a0dfb82459774d3078b56c", + "57a0e5022459774d1673f889", + "5c0d668f86f7747ccb7f13b2", + "6576f96220d53a5b8f3e395e" ] } ] @@ -66359,14 +66475,262 @@ "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.04, + "MalfunctionChance": 0.273, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "55802d5f4bdc2dac148b458e" + "_proto": "57838f0b2459774a256959b2" + }, + "5ae0973a5acfc4001562206c": { + "_id": "5ae0973a5acfc4001562206c", + "_name": "mag_mosin_izhmash_mosin_std_762x54_4", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_mosin_izhmash_mosin_std_762x54_4", + "ShortName": "mag_mosin_izhmash_mosin_std_762x54_4", + "Description": "mag_mosin_izhmash_mosin_std_762x54_4", + "Weight": 0.4, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_mosin_izhmash_mosin_std_762x54_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5bae13bad4351e00320204af" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5ae0973a5acfc4001562206e", + "_parent": "5ae0973a5acfc4001562206c", + "_max_count": 5, + "_props": { + "filters": [ + { + "Filter": [ + "5e023d34e8a400319a28ed44", + "5e023d48186a883be655e551", + "5e023cf8186a883be655e54f", + "59e77a2386f7742ee578960a", + "5887431f2459777e1612938f", + "560d61e84bdc2da74d8b4571", + "64b8f7c241772715af0f9c3d", + "64b8f7968532cf95ee0a0dbf", + "64b8f7b5389d7ffd620ccba2" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "InternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.03, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d4837c4bdc2d1d4e8b456c" + }, + "5d3eb5eca4b9363b1f22f8e4": { + "_id": "5d3eb5eca4b9363b1f22f8e4", + "_name": "mag_57_fn_five_seven_std_57x28_20", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_57_fn_five_seven_std_57x28_20", + "ShortName": "mag_57_fn_five_seven_std_57x28_20", + "Description": "mag_57_fn_five_seven_std_57x28_20", + "Weight": 0.088, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_57_fn_five_seven_std_57x28_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5d3eb5eca4b9363b1f22f8e6", + "_parent": "5d3eb5eca4b9363b1f22f8e4", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5cc80f53e4a949000e1ea4f8", + "5cc86832d7f00c000d3a6e6c", + "5cc86840d7f00c002412c56c", + "5cc80f67e4a949035e43bbba", + "5cc80f38e4a949001152b560", + "5cc80f8fe4a949033b0224a2", + "5cc80f79e4a949033c7343b2" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 1, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.02, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" }, "625ff2eb9f5537057932257d": { "_id": "625ff2eb9f5537057932257d", @@ -67130,128 +67494,6 @@ }, "_proto": "56d59948d2720bb7418b4582" }, - "5d25a7b88abbc3054f3e60bc": { - "_id": "5d25a7b88abbc3054f3e60bc", - "_name": "mag_m700_magpul_pmag_762_ac_762x51_10", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_dvl-10_lobaev_308_10", - "ShortName": "mag_dvl-10_lobaev_308_10", - "Description": "mag_dvl-10_lobaev_308_10", - "Weight": 0.12, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_m700_magpul_pmag_762_ac_762x51_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 4, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5d25a7b88abbc3054f3e60be", - "_parent": "5d25a7b88abbc3054f3e60bc", - "_max_count": 10, - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -30, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.01, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "559ba5b34bdc2d1f1a8b4582" - }, "599860ac86f77436b225ed1a": { "_id": "599860ac86f77436b225ed1a", "_name": "mag_pp-19-01_izhmash_vityaz_std_9x19_30", @@ -67493,23 +67735,1023 @@ }, "_proto": "55d4837c4bdc2d1d4e8b456c" }, - "5de8e8dafd6b4e6e2276dc32": { - "_id": "5de8e8dafd6b4e6e2276dc32", - "_name": "mag_mp9_bt_mp9_std_9x19_15", + "5a0060fc86f7745793204432": { + "_id": "5a0060fc86f7745793204432", + "_name": "mag_ak_izhmash_akms_aluminium_762x39_30", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_mp9_bt_mp9_std_9x19_15", - "ShortName": "mag_mp9_bt_mp9_std_9x19_15", - "Description": "mag_mp9_bt_mp9_std_9x19_15", - "Weight": 0.06, + "Name": "mag_ak_izhmash_akms_aluminium_762x39_30", + "ShortName": "mag_ak_izhmash_akms_aluminium_762x39_30", + "Description": "mag_ak_izhmash_akms_aluminium_762x39_30", + "Weight": 0.17, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ak_izhmash_akms_aluminium_762x39_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5a12db2986f7745d0e0cf654", + "_parent": "5a0060fc86f7745793204432", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "59e655cb86f77411dc52a77b", + "59e6542b86f77411dc52a77a", + "59e6658b86f77411d949b250", + "5f0596629e22f464da6bbdd9", + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af5a8532cf95ee0a0dbd", + "64b7af434b75259c590fa893", + "64b7af734b75259c590fa895" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -5, + "CheckTimeModifier": -5, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.04, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, + "55d482194bdc2d1d4e8b456b": { + "_id": "55d482194bdc2d1d4e8b456b", + "_name": "mag_ak74_izhmash_6L31_545x39_60", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин 6Л31 5.45x39 для АК-74 и совместимых на 60 патронов", + "ShortName": "5.45x39 AK74 6Л31", + "Description": "60-ти зарядный четырехрядный полимерный магазин Ижмаш 6Л31, под патрон 5.45x39 для АК-74 и совместимых. Выпущен малой партией и не попавший в серийное производство.", + "Weight": 0.3, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ak74_izhmash_6l31_545x39_60.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -16, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 2, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "57487c212459771f6d7b4342", + "_parent": "55d482194bdc2d1d4e8b456b", + "_max_count": 60, + "_props": { + "filters": [ + { + "Filter": [ + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 85, + "CheckTimeModifier": 20, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.299, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d481904bdc2d8c2f8b456a" + }, + "5d25af8f8abbc3055079fec5": { + "_id": "5d25af8f8abbc3055079fec5", + "_name": "mag_m700_promag_aa70_762x51_10", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_dvl-10_lobaev_308_10", + "ShortName": "mag_dvl-10_lobaev_308_10", + "Description": "mag_dvl-10_lobaev_308_10", + "Weight": 0.5, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_m700_promag_aa70_762x51_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 2, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5d25af8f8abbc3055079fec7", + "_parent": "5d25af8f8abbc3055079fec5", + "_max_count": 10, + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -15, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.03, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "559ba5b34bdc2d1f1a8b4582" + }, + "57838f0b2459774a256959b2": { + "_id": "57838f0b2459774a256959b2", + "_name": "mag_vss_tochmash_6L24_9x39_10", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "", + "ShortName": "", + "Description": "", + "Weight": 0.25, "BackgroundColor": "yellow", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mag_plastic", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mp9_bt_mp9_std_9x19_15.bundle", + "path": "assets/content/items/mods/magazines/mag_vss_tochmash_6l24_9x39_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "57838f872459774a256959b3", + "_parent": "57838f0b2459774a256959b2", + "_max_count": 10, + "_props": { + "filters": [ + { + "Filter": [ + "5c0d688c86f77413ae3407b2", + "61962d879bb3d20b0946d385", + "57a0dfb82459774d3078b56c", + "57a0e5022459774d1673f889", + "5c0d668f86f7747ccb7f13b2", + "6576f96220d53a5b8f3e395e" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.12, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, + "630e295c984633f1fb0e7c30": { + "_id": "630e295c984633f1fb0e7c30", + "_name": "mag_aug_steyr_std_556x45_42", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", + "ShortName": "5.56x45 PMAG GEN M3 30", + "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", + "Weight": 0.142, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_aug_steyr_std_556x45_42.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "630e295c984633f1fb0e7c31", + "_parent": "630e295c984633f1fb0e7c30", + "_max_count": 42, + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302", + "5fbe3ffdf8b6a877a729ea82", + "5fd20ff893a8961fc660a954", + "619636be6db0f2477964e710", + "6196364158ef8c428c287d9f", + "6196365d58ef8c428c287da1", + "64b8725c4b75259c590fa899" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.08, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55802d5f4bdc2dac148b458e" + }, + "5caf1109ae9215753c44119f": { + "_id": "5caf1109ae9215753c44119f", + "_name": "mag_ash12_ckib_ash12_std_127x55_20", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_ash12_ckib_ash12_std_127x55_10", + "ShortName": "mag_ash12_ckib_ash12_std_127x55_10", + "Description": "mag_ash12_ckib_ash12_std_127x55_10", + "Weight": 0.5, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ash12_ckib_ash12_std_127x55_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 1, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5caf1109ae9215753c4411a1", + "_parent": "5caf1109ae9215753c44119f", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5cadf6ddae9215051e1c23b2", + "5cadf6e5ae921500113bb973", + "5cadf6eeae921500134b2799" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 15, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.188, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, + "61840bedd92c473c77021635": { + "_id": "61840bedd92c473c77021635", + "_name": "mag_stanag_fn_mk16_std_556x45_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин Colt AR-15 5.56x45 STANAG на 30 патронов", + "ShortName": "5.56x45 Colt AR-15", + "Description": "30-ти зарядный металлический магазин Colt AR-15 выполненный по стандарту STANAG 4179, под патрон 5.56х45.\nСтандарт STANAG 4179 был принят членами НАТО в 1980 г., что бы дать возможность союзникам унифицировать боеприпасы и магазины на уровне отдельных солдат.", + "Weight": 0.117, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_stanag_fn_mk16_std_556x45_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "61840bedd92c473c77021637", + "_parent": "61840bedd92c473c77021635", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302", + "5fbe3ffdf8b6a877a729ea82", + "5fd20ff893a8961fc660a954", + "619636be6db0f2477964e710", + "6196364158ef8c428c287d9f", + "6196365d58ef8c428c287da1", + "64b8725c4b75259c590fa899" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.08, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55802d5f4bdc2dac148b458e" + }, + "5fc23426900b1d5091531e15": { + "_id": "5fc23426900b1d5091531e15", + "_name": "mag_mk18_sword_mjolnir_std_86x70_10", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_mk18_sword_mjolnir_std_86x70_10", + "ShortName": "mag_mk18_sword_mjolnir_std_86x70_10", + "Description": "mag_mk18_sword_mjolnir_std_86x70_10", + "Weight": 0.6, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_mk18_sword_mjolnir_std_86x70_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 6, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5fc23426900b1d5091531e17", + "_parent": "5fc23426900b1d5091531e15", + "_max_count": 10, + "_props": { + "filters": [ + { + "Filter": [ + "5fc382a9d724d907e2077dab", + "5fc275cf85fd526b824a571a", + "5fc382c1016cce60e8341b20", + "5fc382b6d6fa9c00c571bbc3" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.04, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55802d5f4bdc2dac148b458e" + }, + "59f99a7d86f7745b134aa97b": { + "_id": "59f99a7d86f7745b134aa97b", + "_name": "mag_sr1mp_tochmash_std_9x21_18", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_sr1mp_tochmash_std_9x21_18", + "ShortName": "mag_sr1mp_tochmash_std_9x21_18", + "Description": "mag_sr1mp_tochmash_std_9x21_18", + "Weight": 0.105, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_sr1mp_tochmash_std_9x21_18.bundle", "rcid": "" }, "UsePrefab": { @@ -67562,7 +68804,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 4, + "Ergonomics": -1, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -67577,22 +68819,19 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "5de8e8dafd6b4e6e2276dc34", - "_parent": "5de8e8dafd6b4e6e2276dc32", - "_max_count": 15, + "_id": "59f99a7d86f7745b134aa97c", + "_parent": "59f99a7d86f7745b134aa97b", + "_max_count": 18, "_props": { "filters": [ { "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" + "5a269f97c4a282000b151807", + "5a26abfac4a28232980eabff", + "5a26ac06c4a282000c5a90a8", + "5a26ac0ec4a28200741e1e18", + "6576f4708ca9c4381d16cd9d", + "6576f93989f0062e741ba952" ] } ] @@ -67604,36 +68843,304 @@ "CanHit": false, "CanAdmin": false, "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, + "CheckTimeModifier": -20, + "CheckOverride": 1, "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.01, + "VisibleAmmoRangesString": "1-1;4-5;8-10;13-15;18-20", + "MalfunctionChance": 0.02, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "5448c12b4bdc2d02308b456f" + "_proto": "56d59948d2720bb7418b4582" }, - "617130016c780c1e710c9a24": { - "_id": "617130016c780c1e710c9a24", - "_name": "mag_417_hk_417_std_762x51_10", + "59c1383d86f774290a37e0ca": { + "_id": "59c1383d86f774290a37e0ca", + "_name": "mag_stanag_magpul_pmag_d-60_556x45_60", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", - "ShortName": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", - "Description": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20\n", - "Weight": 0.1, + "Name": "mag_stanag_magpul_pmag_d-60_556x45_60", + "ShortName": "mag_stanag_magpul_pmag_d-60_556x45_60", + "Description": "mag_stanag_magpul_pmag_d-60_556x45_60", + "Weight": 0.58, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_stanag_magpul_pmag_d-60_556x45_60.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -16, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 5, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "59c1383d86f774290a37e0cb", + "_parent": "59c1383d86f774290a37e0ca", + "_max_count": 60, + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302", + "5fbe3ffdf8b6a877a729ea82", + "5fd20ff893a8961fc660a954", + "619636be6db0f2477964e710", + "6196364158ef8c428c287d9f", + "6196365d58ef8c428c287da1", + "64b8725c4b75259c590fa899" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 60, + "CheckTimeModifier": 20, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.3, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55802d5f4bdc2dac148b458e" + }, + "625ff3046d721f05d93bf2ee": { + "_id": "625ff3046d721f05d93bf2ee", + "_name": "mag_m3_benelli_magazine_extension_12g_11", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_870_remington_magazie_extension_12g_7", + "ShortName": "mag_870_remington_magazie_extension_12g_7", + "Description": "mag_870_remington_magazie_extension_12g_7", + "Weight": 0.299, + "BackgroundColor": "yellow", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_m3_tonisystem_magazine_extension_12g_11.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5b363dea5acfc4771e1c5e7e", + "59c0ec5b86f77435b128bfca", + "58272d7f2459774f6311ddfd" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "625ff3046d721f05d93bf2f0", + "_parent": "625ff3046d721f05d93bf2ee", + "_max_count": 11, + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "InternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.012, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d4837c4bdc2d1d4e8b456c" + }, + "5fb651b52b1b027b1f50bcff": { + "_id": "5fb651b52b1b027b1f50bcff", + "_name": "mag_glock_glock_21_std_1143x23_13", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_glock_glock_21_std_1143x23_13", + "ShortName": "mag_glock_glock_21_std_1143x23_13", + "Description": "mag_glock_glock_21_std_1143x23_13", + "Weight": 0.096, "BackgroundColor": "yellow", "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "mag_plastic", + "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_417_hk_417_std_762x51_10.bundle", + "path": "assets/content/items/mods/magazines/mag_glock_glock_21_std_1143x23_13.bundle", "rcid": "" }, "UsePrefab": { @@ -67658,6 +69165,126 @@ "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5fb651b52b1b027b1f50bd01", + "_parent": "5fb651b52b1b027b1f50bcff", + "_max_count": 13, + "_props": { + "filters": [ + { + "Filter": [ + "5e81f423763d9f754677bf2e", + "5efb0cabfb3e451d70735af5", + "5efb0fc6aeb21837e749c801", + "5efb0d4f4bc50b58e81710f3", + "5ea2a8e200685063ec28c05a" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -10, + "CheckTimeModifier": -20, + "CheckOverride": 1, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.05, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, + "64b9e265c94d0d15c5027e35": { + "_id": "64b9e265c94d0d15c5027e35", + "_name": "mag_ak74_deltatech_saiga_mk_545_20_545x39_20", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин 6Л20 5.45x39 для АК-74 и совместимых на 30 патронов", + "ShortName": "5.45x39 6Л20", + "Description": "30-ти зарядный бакелитовый магазин Ижмаш 6Л20, под патрон 5.45x39 для АК-74 и совместимых.", + "Weight": 0.13, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ak74_deltatech_saiga_mk_545_20_545x39_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, "ExtraSizeDown": 1, "ExtraSizeForceAdd": false, "MergesWithChildren": true, @@ -67701,265 +69328,26 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "617130016c780c1e710c9a26", - "_parent": "617130016c780c1e710c9a24", - "_max_count": 10, - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.02, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c1d04bdc2dff2f8b4569" - }, - "5c5db6742e2216000f1b2852": { - "_id": "5c5db6742e2216000f1b2852", - "_name": "mag_mpx_f5_mpx_drum_9x19_50", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_mpx_sig_mpx_std_9x19_30", - "ShortName": "mag_mpx_sig_mpx_std_9x19_30", - "Description": "mag_mpx_sig_mpx_std_9x19_30", - "Weight": 0.65, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mpx_f5_mpx_drum_9x19_50.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -15, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 2, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5c5db6742e2216000f1b2854", - "_parent": "5c5db6742e2216000f1b2852", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 30, - "CheckTimeModifier": 15, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.168, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, - "6450ec2e7da7133e5a09ca96": { - "_id": "6450ec2e7da7133e5a09ca96", - "_name": "mag_9a91_kbp_9a91_std_9x39_20", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "", - "ShortName": "", - "Description": "", - "Weight": 0.3, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_9a91_kbp_9a91_std_9x39_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 1, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "6450ec2e7da7133e5a09ca97", - "_parent": "6450ec2e7da7133e5a09ca96", + "_id": "64b9e265c94d0d15c5027e36", + "_parent": "64b9e265c94d0d15c5027e35", "_max_count": 20, "_props": { "filters": [ { "Filter": [ - "5c0d688c86f77413ae3407b2", - "61962d879bb3d20b0946d385", - "57a0dfb82459774d3078b56c", - "57a0e5022459774d1673f889", - "5c0d668f86f7747ccb7f13b2", - "6576f96220d53a5b8f3e395e" + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" ] } ] @@ -67970,759 +69358,19 @@ "CanFast": true, "CanHit": false, "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, + "LoadUnloadModifier": -15, + "CheckTimeModifier": -10, "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.19, + "MalfunctionChance": 0.08, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "57838f0b2459774a256959b2" - }, - "576a5ed62459771e9c2096cb": { - "_id": "576a5ed62459771e9c2096cb", - "_name": "mag_mp443_izhmeh_std_9x19_18", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_mp443_izhmeh_std_9x19_18", - "ShortName": "mag_mp443_izhmeh_std_9x19_18", - "Description": "mag_mp443_izhmeh_std_9x19_18", - "Weight": 0.105, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mp443_izhmeh_std_9x19_18.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "576a62b72459771e7c64ef26", - "_parent": "576a5ed62459771e9c2096cb", - "_max_count": 18, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.04, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "56d59948d2720bb7418b4582" - }, - "646372518610c40fc20204e8": { - "_id": "646372518610c40fc20204e8", - "_name": "mag_pkm_zid_pk_std_762x54r_100", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Магазин полимерный 7.62х54R для СВ-98 на 10 патронов", - "ShortName": "7.62х54R полимерный", - "Description": "Стандартный полимерный магазин производства Ижмаш для винтовки СВ-98, под патрон 7.62х54R.", - "Weight": 1.5, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_pkm_zid_pk_std_762x54r_100.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 2, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -30, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "646372518610c40fc20204e9", - "_parent": "646372518610c40fc20204e8", - "_max_count": 100, - "_props": { - "filters": [ - { - "Filter": [ - "5e023d34e8a400319a28ed44", - "5e023d48186a883be655e551", - "5e023cf8186a883be655e54f", - "59e77a2386f7742ee578960a", - "5887431f2459777e1612938f", - "560d61e84bdc2da74d8b4571", - "64b8f7c241772715af0f9c3d", - "64b8f7968532cf95ee0a0dbf", - "64b8f7b5389d7ffd620ccba2" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.01, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": true, - "BeltMagazineRefreshCount": 25, - "IsMagazineForStationaryWeapon": false - } - }, - "63076701a987397c0816d21b": { - "_id": "63076701a987397c0816d21b", - "_name": "mag_glock_glock_w_pad_9x19_19_fde", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_glock_glock_std_9x19_17", - "ShortName": "mag_glock_glock_std_9x19_17", - "Description": "mag_glock_glock_std_9x19_17", - "Weight": 0.106, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_glock_glock_w_pad_9x19_19_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1.5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "63076701a987397c0816d21c", - "_parent": "63076701a987397c0816d21b", - "_max_count": 19, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -10, - "CheckTimeModifier": -20, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.085, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, - "5a9e81fba2750c00164f6b11": { - "_id": "5a9e81fba2750c00164f6b11", - "_name": "mag_vss_tochmash_sr3m130_9x39_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_vss_tochmash_sr3m130_9x39_30", - "ShortName": "mag_vss_tochmash_sr3m130_9x39_30", - "Description": "mag_vss_tochmash_sr3m130_9x39_30", - "Weight": 0.45, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_vss_tochmash_sr3m130_9x39_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 1, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5a9e81fba2750c00164f6b13", - "_parent": "5a9e81fba2750c00164f6b11", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "5c0d688c86f77413ae3407b2", - "61962d879bb3d20b0946d385", - "57a0dfb82459774d3078b56c", - "57a0e5022459774d1673f889", - "5c0d668f86f7747ccb7f13b2", - "6576f96220d53a5b8f3e395e" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.273, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "57838f0b2459774a256959b2" - }, - "5ae0973a5acfc4001562206c": { - "_id": "5ae0973a5acfc4001562206c", - "_name": "mag_mosin_izhmash_mosin_std_762x54_4", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_mosin_izhmash_mosin_std_762x54_4", - "ShortName": "mag_mosin_izhmash_mosin_std_762x54_4", - "Description": "mag_mosin_izhmash_mosin_std_762x54_4", - "Weight": 0.4, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mosin_izhmash_mosin_std_762x54_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5bae13bad4351e00320204af" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5ae0973a5acfc4001562206e", - "_parent": "5ae0973a5acfc4001562206c", - "_max_count": 5, - "_props": { - "filters": [ - { - "Filter": [ - "5e023d34e8a400319a28ed44", - "5e023d48186a883be655e551", - "5e023cf8186a883be655e54f", - "59e77a2386f7742ee578960a", - "5887431f2459777e1612938f", - "560d61e84bdc2da74d8b4571", - "64b8f7c241772715af0f9c3d", - "64b8f7968532cf95ee0a0dbf", - "64b8f7b5389d7ffd620ccba2" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "InternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.03, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d4837c4bdc2d1d4e8b456c" - }, - "5d3eb5eca4b9363b1f22f8e4": { - "_id": "5d3eb5eca4b9363b1f22f8e4", - "_name": "mag_57_fn_five_seven_std_57x28_20", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_57_fn_five_seven_std_57x28_20", - "ShortName": "mag_57_fn_five_seven_std_57x28_20", - "Description": "mag_57_fn_five_seven_std_57x28_20", - "Weight": 0.088, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_57_fn_five_seven_std_57x28_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5d3eb5eca4b9363b1f22f8e6", - "_parent": "5d3eb5eca4b9363b1f22f8e4", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5cc80f53e4a949000e1ea4f8", - "5cc86832d7f00c000d3a6e6c", - "5cc86840d7f00c002412c56c", - "5cc80f67e4a949035e43bbba", - "5cc80f38e4a949001152b560", - "5cc80f8fe4a949033b0224a2", - "5cc80f79e4a949033c7343b2" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.02, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" + "_proto": "55d480c04bdc2d1d4e8b456a" }, "5aaa5e60e5b5b000140293d6": { "_id": "5aaa5e60e5b5b000140293d6", @@ -68987,283 +69635,23 @@ "IsMagazineForStationaryWeapon": false } }, - "64b9e265c94d0d15c5027e35": { - "_id": "64b9e265c94d0d15c5027e35", - "_name": "mag_ak74_deltatech_saiga_mk_545_20_545x39_20", - "_parent": "5448bc234bdc2d3c308b4569", + "611a30addbdd8440277441dc": { + "_id": "611a30addbdd8440277441dc", + "_name": "barrel_mr43e-1c_750mm", + "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "Магазин 6Л20 5.45x39 для АК-74 и совместимых на 30 патронов", - "ShortName": "5.45x39 6Л20", - "Description": "30-ти зарядный бакелитовый магазин Ижмаш 6Л20, под патрон 5.45x39 для АК-74 и совместимых.", - "Weight": 0.13, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak74_deltatech_saiga_mk_545_20_545x39_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "64b9e265c94d0d15c5027e36", - "_parent": "64b9e265c94d0d15c5027e35", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -15, - "CheckTimeModifier": -10, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.08, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "59c1383d86f774290a37e0ca": { - "_id": "59c1383d86f774290a37e0ca", - "_name": "mag_stanag_magpul_pmag_d-60_556x45_60", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_stanag_magpul_pmag_d-60_556x45_60", - "ShortName": "mag_stanag_magpul_pmag_d-60_556x45_60", - "Description": "mag_stanag_magpul_pmag_d-60_556x45_60", - "Weight": 0.58, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_stanag_magpul_pmag_d-60_556x45_60.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -16, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 5, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "59c1383d86f774290a37e0cb", - "_parent": "59c1383d86f774290a37e0ca", - "_max_count": 60, - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302", - "5fbe3ffdf8b6a877a729ea82", - "5fd20ff893a8961fc660a954", - "619636be6db0f2477964e710", - "6196364158ef8c428c287d9f", - "6196365d58ef8c428c287da1", - "64b8725c4b75259c590fa899" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 60, - "CheckTimeModifier": 20, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.3, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55802d5f4bdc2dac148b458e" - }, - "5fb651b52b1b027b1f50bcff": { - "_id": "5fb651b52b1b027b1f50bcff", - "_name": "mag_glock_glock_21_std_1143x23_13", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_glock_glock_21_std_1143x23_13", - "ShortName": "mag_glock_glock_21_std_1143x23_13", - "Description": "mag_glock_glock_21_std_1143x23_13", - "Weight": 0.096, - "BackgroundColor": "yellow", - "Width": 1, + "Name": "Ствол 725мм для ружья МР-43е-1с 12к", + "ShortName": "725мм МР-43е-1с 12к", + "Description": "Ствол для двухствольного ружья МР-43е-1с под патрон 12-го калибра, длинной 725мм.", + "Weight": 1.65, + "BackgroundColor": "blue", + "Width": 5, "Height": 1, "StackMaxSize": 1, - "ItemSound": "magazine_metal", + "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_glock_glock_21_std_1143x23_13.bundle", + "path": "assets/content/items/mods/barrels/barrel_mr43e-1c_750mm.bundle", "rcid": "" }, "UsePrefab": { @@ -69280,12 +69668,12 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, + "LootExperience": 25, + "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 0, + "ExtraSizeLeft": 4, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -69313,11 +69701,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -14, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, + "Ergonomics": -11, + "Velocity": 17, "RaidModdable": true, "ToolModdable": false, "BlocksFolding": false, @@ -69327,63 +69715,34 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5fb651b52b1b027b1f50bd01", - "_parent": "5fb651b52b1b027b1f50bcff", - "_max_count": 13, - "_props": { - "filters": [ - { - "Filter": [ - "5e81f423763d9f754677bf2e", - "5efb0cabfb3e451d70735af5", - "5efb0fc6aeb21837e749c801", - "5efb0d4f4bc50b58e81710f3", - "5ea2a8e200685063ec28c05a" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -10, - "CheckTimeModifier": -20, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.05, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false + "CenterOfImpact": 0.31, + "ShotgunDispersion": 1.17, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.779, + "CoolFactor": 0.817, + "DeviationCurve": 2.25, + "DeviationMax": 11 }, - "_proto": "5448c12b4bdc2d02308b456f" + "_proto": "55d447bb4bdc2d892f8b456f" }, - "625ff3046d721f05d93bf2ee": { - "_id": "625ff3046d721f05d93bf2ee", - "_name": "mag_m3_benelli_magazine_extension_12g_11", - "_parent": "5448bc234bdc2d3c308b4569", + "5cc701aae4a949000e1ea45c": { + "_id": "5cc701aae4a949000e1ea45c", + "_name": "barrel_p90_264mm_57x28", + "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "mag_870_remington_magazie_extension_12g_7", - "ShortName": "mag_870_remington_magazie_extension_12g_7", - "Description": "mag_870_remington_magazie_extension_12g_7", - "Weight": 0.299, - "BackgroundColor": "yellow", - "Width": 3, + "Name": "barrel_416_hk_419mm_556x45", + "ShortName": "barrel_416_hk_419mm_556x45", + "Description": "barrel_416_hk_419mm_556x45", + "Weight": 0.5, + "BackgroundColor": "blue", + "Width": 2, "Height": 1, "StackMaxSize": 1, - "ItemSound": "magazine_metal", + "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_m3_tonisystem_magazine_extension_12g_11.bundle", + "path": "assets/content/items/mods/barrels/barrel_p90_264mm_57x28.bundle", "rcid": "" }, "UsePrefab": { @@ -69400,12 +69759,12 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, + "LootExperience": 10, + "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 2, + "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -69414,9 +69773,11 @@ "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [ - "5b363dea5acfc4771e1c5e7e", - "59c0ec5b86f77435b128bfca", - "58272d7f2459774f6311ddfd" + "5c6d10e82e221601da357b07", + "5bb20dfcd4351e00334c9e24", + "5c6d11072e2216000e69d2e4", + "5c6d11152e2216000f2003e7", + "5c6c2c9c2e2216000f2002e4" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -69432,16 +69793,35 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5cc701aae4a949000e1ea45e", + "_parent": "5cc701aae4a949000e1ea45c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cc82796e24e8d000f5859a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -5, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -3, - "Velocity": 0, + "Velocity": 1.2, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -69451,281 +69831,16 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "625ff3046d721f05d93bf2f0", - "_parent": "625ff3046d721f05d93bf2ee", - "_max_count": 11, - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "InternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.012, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d4837c4bdc2d1d4e8b456c" - }, - "6076c1b9f2cb2e02a42acedc": { - "_id": "6076c1b9f2cb2e02a42acedc", - "_name": "barrel_mp155_510mm_12g", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 510мм для МР-133 12к ", - "ShortName": "510мм МР-133", - "Description": "Стандартный заводской ствол для ружья МР-133 длинной 510мм.", - "Weight": 0.8, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mp155_510mm_12g.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "6076c1b9f2cb2e02a42acede", - "_parent": "6076c1b9f2cb2e02a42acedc", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0111ab0db834001966914d", - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": 5.4, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.62, - "ShotgunDispersion": 1.55, + "CenterOfImpact": 0.12, + "ShotgunDispersion": 1, "IsSilencer": false, - "DurabilityBurnModificator": 0.95, - "HeatFactor": 0.92, - "CoolFactor": 0.96, - "DeviationCurve": 3, - "DeviationMax": 9 + "DurabilityBurnModificator": 1, + "HeatFactor": 0.97, + "CoolFactor": 1.03, + "DeviationCurve": 2.1, + "DeviationMax": 12 }, - "_proto": "55d448594bdc2d8c2f8b4569" - }, - "560836484bdc2d20478b456e": { - "_id": "560836484bdc2d20478b456e", - "_name": "barrel_mr133_540mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 540мм для МР-133 12к ", - "ShortName": "540мм МР-133", - "Description": "Стандартный заводской ствол для ружья МР-133 длинной 540мм.", - "Weight": 0.8, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr133_540mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "56e31542d2720b5d058b4569", - "_parent": "560836484bdc2d20478b456e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0111ab0db834001966914d", - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3.5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -6, - "Velocity": 8.1, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.6, - "ShotgunDispersion": 1.5, - "IsSilencer": false, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 0.9, - "CoolFactor": 0.94, - "DeviationCurve": 3, - "DeviationMax": 9 - }, - "_proto": "55d4491a4bdc2d882f8b456e" + "_proto": "55d35ee94bdc2d61338b4568" }, "5fbbfabed5cb881a7363194e": { "_id": "5fbbfabed5cb881a7363194e", @@ -69858,129 +69973,6 @@ }, "_proto": "55d35ee94bdc2d61338b4568" }, - "5c6161fb2e221600113fbde5": { - "_id": "5c6161fb2e221600113fbde5", - "_name": "mag_toz-106_mc_20-01_sb3_20x70_5", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_toz-106_mc_20-01_sb3_20x70_4", - "ShortName": "mag_toz-106_mc_20-01_sb3_20x70_4", - "Description": "mag_toz-106_mc_20-01_sb3_20x70_4", - "Weight": 0.13, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_toz-106_mc_20-01_sb3_20x70_5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 2, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5c6161fb2e221600113fbde7", - "_parent": "5c6161fb2e221600113fbde5", - "_max_count": 5, - "_props": { - "filters": [ - { - "Filter": [ - "5a38ebd9c4a282000d722a5b", - "5d6e695fa4b936359b35d852", - "5d6e69b9a4b9361bc8618958", - "5d6e69c7a4b9360b6c0d54e4", - "5d6e6a5fa4b93614ec501745", - "5d6e6a53a4b9361bd473feec", - "5d6e6a42a4b9364f07165f52", - "5d6e6a05a4b93618084f58d0" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -10, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.06, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "559ba5b34bdc2d1f1a8b4582" - }, "5d1340b3d7ad1a0b52682ed7": { "_id": "5d1340b3d7ad1a0b52682ed7", "_name": "mag_stanag_magpul_pmag_gen_m3_556x45_30_fde", @@ -70113,6 +70105,129 @@ }, "_proto": "55802d5f4bdc2dac148b458e" }, + "5c6161fb2e221600113fbde5": { + "_id": "5c6161fb2e221600113fbde5", + "_name": "mag_toz-106_mc_20-01_sb3_20x70_5", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_toz-106_mc_20-01_sb3_20x70_4", + "ShortName": "mag_toz-106_mc_20-01_sb3_20x70_4", + "Description": "mag_toz-106_mc_20-01_sb3_20x70_4", + "Weight": 0.13, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_toz-106_mc_20-01_sb3_20x70_5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 2, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5c6161fb2e221600113fbde7", + "_parent": "5c6161fb2e221600113fbde5", + "_max_count": 5, + "_props": { + "filters": [ + { + "Filter": [ + "5a38ebd9c4a282000d722a5b", + "5d6e695fa4b936359b35d852", + "5d6e69b9a4b9361bc8618958", + "5d6e69c7a4b9360b6c0d54e4", + "5d6e6a5fa4b93614ec501745", + "5d6e6a53a4b9361bd473feec", + "5d6e6a42a4b9364f07165f52", + "5d6e6a05a4b93618084f58d0" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -10, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.06, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "559ba5b34bdc2d1f1a8b4582" + }, "5998529a86f774647f44f421": { "_id": "5998529a86f774647f44f421", "_name": "mag_pp-19-01_izhmash_izh-9x19_sb7_9x19_10", @@ -70237,23 +70352,399 @@ }, "_proto": "5448c12b4bdc2d02308b456f" }, - "57d14e1724597714010c3f4b": { - "_id": "57d14e1724597714010c3f4b", - "_name": "mag_pp-91_zmz_pp-91_std_9x18pm_20", + "630769c4962d0247b029dc60": { + "_id": "630769c4962d0247b029dc60", + "_name": "mag_glock_glock_big_stick_9x19_24_fde", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_pp-91_zmz_pp-91_std_9x18pm_20", - "ShortName": "mag_pp-91_zmz_pp-91_std_9x18pm_20", - "Description": "mag_pp-91_zmz_pp-91_std_9x18pm_20", - "Weight": 0.103, + "Name": "mag_glock_glock_std_9x19_17", + "ShortName": "mag_glock_glock_std_9x19_17", + "Description": "mag_glock_glock_std_9x19_17", + "Weight": 0.112, "BackgroundColor": "yellow", "Width": 1, - "Height": 1, + "Height": 2, "StackMaxSize": 1, "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_pp-91_zmz_pp-91_std_9x18pm_20.bundle", + "path": "assets/content/items/mods/magazines/mag_glock_glock_big_stick_9x19_24_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 1, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "630769c4962d0247b029dc61", + "_parent": "630769c4962d0247b029dc60", + "_max_count": 24, + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -10, + "CheckTimeModifier": -30, + "CheckOverride": 1, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.182, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, + "59d625f086f774661516605d": { + "_id": "59d625f086f774661516605d", + "_name": "mag_ak_izhmash_ak_std_55_762x39_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_ak_izhmash_ak_std_55_762x39_30", + "ShortName": "mag_ak_izhmash_ak_std_55_762x39_30", + "Description": "mag_ak_izhmash_ak_std_55_762x39_30", + "Weight": 0.37, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ak_izhmash_ak_std_55_762x39_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "59d625f086f774661516605e", + "_parent": "59d625f086f774661516605d", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "59e655cb86f77411dc52a77b", + "59e6542b86f77411dc52a77a", + "59e6658b86f77411d949b250", + "5f0596629e22f464da6bbdd9", + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af734b75259c590fa895", + "64b7af434b75259c590fa893", + "64b7af5a8532cf95ee0a0dbd" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.09, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, + "630767c37d50ff5e8a1ea71a": { + "_id": "630767c37d50ff5e8a1ea71a", + "_name": "mag_glock_glock_big_stick_9x19_31_fde", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_glock_glock_std_9x19_17", + "ShortName": "mag_glock_glock_std_9x19_17", + "Description": "mag_glock_glock_std_9x19_17", + "Weight": 0.14, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_glock_glock_big_stick_9x19_31_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 2, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "630767c37d50ff5e8a1ea71b", + "_parent": "630767c37d50ff5e8a1ea71a", + "_max_count": 31, + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -10, + "CheckTimeModifier": -30, + "CheckOverride": 1, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.182, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, + "6513f0a194c72326990a3868": { + "_id": "6513f0a194c72326990a3868", + "_name": "mag_rpd_zid_rpd_762x39_100", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин полимерный 7.62х54R для СВ-98 на 10 патронов", + "ShortName": "7.62х54R полимерный", + "Description": "Стандартный полимерный магазин производства Ижмаш для винтовки СВ-98, под патрон 7.62х54R.", + "Weight": 0.8, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_rpd_zid_rpd_762x39_100.bundle", "rcid": "" }, "UsePrefab": { @@ -70306,13 +70797,13 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 5, + "Ergonomics": -25, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, - "IsAnimated": false, + "IsAnimated": true, "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, @@ -70321,27 +70812,22 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "57d14e6b24597714020ae825", - "_parent": "57d14e1724597714010c3f4b", - "_max_count": 20, + "_id": "6513f0a194c72326990a3869", + "_parent": "6513f0a194c72326990a3868", + "_max_count": 100, "_props": { "filters": [ { "Filter": [ - "573718ba2459775a75491131", - "573719df2459775a626ccbc2", - "57371aab2459775a77142f22", - "57371b192459775a9f58a5e0", - "57371e4124597760ff7b25f1", - "57371eb62459776125652ac1", - "57371f8d24597761006c6a81", - "5737201124597760fc4431f1", - "5737207f24597760ff7b25f2", - "57371f2b24597761224311f1", - "573719762459775a626ccbc1", - "573720e02459776143012541", - "57372140245977611f70ee91", - "5737218f245977612125ba51" + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "64b7af5a8532cf95ee0a0dbd", + "601aa3d2b2bcb34913271e6d", + "64b7af434b75259c590fa893", + "64b7af734b75259c590fa895" ] } ] @@ -70357,7 +70843,1121 @@ "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.03, + "MalfunctionChance": 0.01, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": true, + "BeltMagazineRefreshCount": 50, + "IsMagazineForStationaryWeapon": false + } + }, + "5c6175362e221600133e3b94": { + "_id": "5c6175362e221600133e3b94", + "_name": "mag_ak_promag_ak_a_16_drum_762x39_73", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_ak_izhmash_ak12_std_545x39_30", + "ShortName": "mag_ak_izhmash_ak12_std_545x39_30", + "Description": "mag_ak_izhmash_ak12_std_545x39_30", + "Weight": 0.72, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ak_promag_ak_a_16_drum_762x39_73.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 2, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -18, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 5, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5c6175362e221600133e3b96", + "_parent": "5c6175362e221600133e3b94", + "_max_count": 73, + "_props": { + "filters": [ + { + "Filter": [ + "59e655cb86f77411dc52a77b", + "59e6542b86f77411dc52a77a", + "59e6658b86f77411d949b250", + "5f0596629e22f464da6bbdd9", + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af5a8532cf95ee0a0dbd", + "64b7af434b75259c590fa893", + "64b7af734b75259c590fa895" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 60, + "CheckTimeModifier": 15, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.35, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55802d5f4bdc2dac148b458e" + }, + "5de653abf76fdc1ce94a5a2a": { + "_id": "5de653abf76fdc1ce94a5a2a", + "_name": "mag_vpo215_molot_vpo_215_366tkm_4", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_ak_custom_sawed_off_762x39_10", + "ShortName": "mag_ak_custom_sawed_off_762x39_10", + "Description": "mag_ak_custom_sawed_off_762x39_10", + "Weight": 0.2, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_vpo215_molot_vpo_215_366tkm_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5de653abf76fdc1ce94a5a2c", + "_parent": "5de653abf76fdc1ce94a5a2a", + "_max_count": 4, + "_props": { + "filters": [ + { + "Filter": [ + "59e655cb86f77411dc52a77b", + "59e6542b86f77411dc52a77a", + "59e6658b86f77411d949b250", + "5f0596629e22f464da6bbdd9" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": -15, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.04, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, + "6241c2c2117ad530666a5108": { + "_id": "6241c2c2117ad530666a5108", + "_name": "mag_stanag_maopul_pmag_airsoft_6_30_fde", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_stanag_maopul_pmag_airsoft_6_30_fde", + "ShortName": "mag_stanag_maopul_pmag_airsoft_6_30_fde", + "Description": "mag_stanag_maopul_pmag_airsoft_6_30_fde", + "Weight": 0.138, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_stanag_maopul_pmag_airsoft_6_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "6241c2c2117ad530666a5109", + "_parent": "6241c2c2117ad530666a5108", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "6241c316234b593b5676b637" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-2", + "MalfunctionChance": 0.08, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55802d5f4bdc2dac148b458e" + }, + "5d25a7b88abbc3054f3e60bc": { + "_id": "5d25a7b88abbc3054f3e60bc", + "_name": "mag_m700_magpul_pmag_762_ac_762x51_10", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_dvl-10_lobaev_308_10", + "ShortName": "mag_dvl-10_lobaev_308_10", + "Description": "mag_dvl-10_lobaev_308_10", + "Weight": 0.12, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_m700_magpul_pmag_762_ac_762x51_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 4, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5d25a7b88abbc3054f3e60be", + "_parent": "5d25a7b88abbc3054f3e60bc", + "_max_count": 10, + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -30, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.01, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "559ba5b34bdc2d1f1a8b4582" + }, + "5caf1041ae92157c28402e3f": { + "_id": "5caf1041ae92157c28402e3f", + "_name": "mag_ash12_ckib_ash12_std_127x55_10", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_ash12_ckib_ash12_std_127x55_10", + "ShortName": "mag_ash12_ckib_ash12_std_127x55_10", + "Description": "mag_ash12_ckib_ash12_std_127x55_10", + "Weight": 0.35, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ash12_ckib_ash12_std_127x55_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5caf1041ae92157c28402e41", + "_parent": "5caf1041ae92157c28402e3f", + "_max_count": 10, + "_props": { + "filters": [ + { + "Filter": [ + "5cadf6ddae9215051e1c23b2", + "5cadf6e5ae921500113bb973", + "5cadf6eeae921500134b2799" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.05, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, + "5c6592372e221600133e47d7": { + "_id": "5c6592372e221600133e47d7", + "_name": "mag_stanag_surefire_mag5_556x45_100", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_stanag_surefire_mag5_556x45_100", + "ShortName": "mag_stanag_surefire_mag5_556x45_100", + "Description": "mag_stanag_surefire_mag5_556x45_100", + "Weight": 0.27, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_stanag_surefire_mag5_556x45_100.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 2, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -27, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 4, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5c6592372e221600133e47d9", + "_parent": "5c6592372e221600133e47d7", + "_max_count": 100, + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302", + "5fbe3ffdf8b6a877a729ea82", + "5fd20ff893a8961fc660a954", + "619636be6db0f2477964e710", + "6196364158ef8c428c287d9f", + "6196365d58ef8c428c287da1", + "64b8725c4b75259c590fa899" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 30, + "CheckTimeModifier": 30, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.45, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "544a37c44bdc2d25388b4567" + }, + "5c05413a0db834001c390617": { + "_id": "5c05413a0db834001c390617", + "_name": "mag_stanag_hk_416_steel_maritime_556x45_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин Colt AR-15 5.56x45 STANAG на 30 патронов", + "ShortName": "5.56x45 Colt AR-15", + "Description": "30-ти зарядный металлический магазин Colt AR-15 выполненный по стандарту STANAG 4179, под патрон 5.56х45.\nСтандарт STANAG 4179 был принят членами НАТО в 1980 г., что бы дать возможность союзникам унифицировать боеприпасы и магазины на уровне отдельных солдат.", + "Weight": 0.32, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_stanag_hk_416_steel_maritime_556x45_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5c05413a0db834001c390619", + "_parent": "5c05413a0db834001c390617", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302", + "5fbe3ffdf8b6a877a729ea82", + "5fd20ff893a8961fc660a954", + "619636be6db0f2477964e710", + "6196364158ef8c428c287d9f", + "6196365d58ef8c428c287da1", + "64b8725c4b75259c590fa899" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -10, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.06, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55802d5f4bdc2dac148b458e" + }, + "5c471c442e221602b542a6f8": { + "_id": "5c471c442e221602b542a6f8", + "_name": "mag_svd_izhmash_svd_std_762x54_10", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин Сайга 545 5.45x39 для АК-74 и совместимых на 10 патронов", + "ShortName": "5.45x39 Сайга 545", + "Description": "10-ти зарядный полимерный магазин Ижмаш Сайга 545, для одноименного гражданского карабина на базе АК, под патрон 5.45x39.", + "Weight": 0.112, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_svd_izhmash_svd_std_762x54_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5c471c442e221602b542a6fa", + "_parent": "5c471c442e221602b542a6f8", + "_max_count": 10, + "_props": { + "filters": [ + { + "Filter": [ + "5e023d34e8a400319a28ed44", + "5e023d48186a883be655e551", + "5e023cf8186a883be655e54f", + "59e77a2386f7742ee578960a", + "5887431f2459777e1612938f", + "560d61e84bdc2da74d8b4571", + "64b8f7c241772715af0f9c3d", + "64b8f7968532cf95ee0a0dbf", + "64b8f7b5389d7ffd620ccba2" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -15, + "CheckTimeModifier": -15, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.02, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, + "5c0672ed0db834001b7353f3": { + "_id": "5c0672ed0db834001b7353f3", + "_name": "mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30", + "ShortName": "mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30", + "Description": "mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30", + "Weight": 0.109, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5c0672ed0db834001b7353f5", + "_parent": "5c0672ed0db834001b7353f3", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -15, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.09, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, @@ -70366,6 +71966,663 @@ }, "_proto": "5448c12b4bdc2d02308b456f" }, + "5d1340cad7ad1a0b0b249869": { + "_id": "5d1340cad7ad1a0b0b249869", + "_name": "mag_stanag_magpul_pmag_gen_m3_window_556x45_30_fde", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", + "ShortName": "5.56x45 PMAG GEN M3 30", + "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", + "Weight": 0.138, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_stanag_magpul_pmag_gen_m3_window_556x45_30_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5d1340cad7ad1a0b0b24986b", + "_parent": "5d1340cad7ad1a0b0b249869", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302", + "5fbe3ffdf8b6a877a729ea82", + "5fd20ff893a8961fc660a954", + "619636be6db0f2477964e710", + "6196364158ef8c428c287d9f", + "6196365d58ef8c428c287da1", + "64b8725c4b75259c590fa899" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": -35, + "CheckOverride": 1, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-1;18-30", + "MalfunctionChance": 0.08, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55802d5f4bdc2dac148b458e" + }, + "544a378f4bdc2d30388b4567": { + "_id": "544a378f4bdc2d30388b4567", + "_name": "mag_stanag_magpul_pmag_gen_m3_556x45_40", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин PMAG GEN M3 40 5.56х45 STANAG на 40 патронов", + "ShortName": "5.56х45 PMAG GEN M3 40", + "Description": "40-ка зарядный полимерный магазин Magpul PMAG GEN M3 40, под патрон 5.56х45.\n", + "Weight": 0.2, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_stanag_magpul_pmag_gen_m3_556x45_40.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 2, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 3, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "57487b1f2459771f624a51e1", + "_parent": "544a378f4bdc2d30388b4567", + "_max_count": 40, + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302", + "5fbe3ffdf8b6a877a729ea82", + "5fd20ff893a8961fc660a954", + "619636be6db0f2477964e710", + "6196364158ef8c428c287d9f", + "6196365d58ef8c428c287da1", + "64b8725c4b75259c590fa899" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 10, + "CheckTimeModifier": 15, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.17, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + } + }, + "587df3a12459772c28142567": { + "_id": "587df3a12459772c28142567", + "_name": "mag_sks_toz_std_internal_762x39_10", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_sks_toz_std_internal_762x39_10", + "ShortName": "mag_sks_toz_std_internal_762x39_10", + "Description": "mag_sks_toz_std_internal_762x39_10", + "Weight": 0.185, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_sks_toz_std_internal_762x39_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "587df3a12459772c28142568", + "_parent": "587df3a12459772c28142567", + "_max_count": 10, + "_props": { + "filters": [ + { + "Filter": [ + "59e655cb86f77411dc52a77b", + "59e6542b86f77411dc52a77a", + "59e6658b86f77411d949b250", + "5f0596629e22f464da6bbdd9", + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af5a8532cf95ee0a0dbd", + "64b7af434b75259c590fa893", + "64b7af734b75259c590fa895" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "InternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.02, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, + "55818a604bdc2db5418b457e": { + "_id": "55818a604bdc2db5418b457e", + "_name": "Shaft", + "_parent": "55802f3e4bdc2de7118b4584", + "_type": "Node", + "_props": {} + }, + "5888956924597752983e182d": { + "_id": "5888956924597752983e182d", + "_name": "barrel_dvl-10_m2_660mm", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_dvl-10_m2_660mm", + "ShortName": "barrel_dvl-10_m2_660mm", + "Description": "barrel_dvl-10_m2_660mm", + "Weight": 2.88, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_dvl-10_m2_660mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5888956924597752983e182e", + "_parent": "5888956924597752983e182d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5888996c24597754281f9419" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "5888958d24597752fe43a6f2", + "_parent": "5888956924597752983e182d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5888976c24597754281f93f5" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -13, + "Velocity": 11.5, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.013, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1.05, + "HeatFactor": 0.82, + "CoolFactor": 0.86, + "DeviationCurve": 1, + "DeviationMax": 33 + }, + "_proto": "55d3632e4bdc2d972f8b4569" + }, + "588200cf2459774414733d55": { + "_id": "588200cf2459774414733d55", + "_name": "barrel_mr153_710mm", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_mr153_710mm", + "ShortName": "barrel_mr153_710mm", + "Description": "barrel_mr153_710mm", + "Weight": 1.35, + "BackgroundColor": "blue", + "Width": 5, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mr153_710mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 25, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "588200cf2459774414733d56", + "_parent": "588200cf2459774414733d55", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0111ab0db834001966914d", + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5dfe4131f0dd306e765a2e38", + "_parent": "588200cf2459774414733d55", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "609b9e31506cf869cf3eaf41", + "5dfe14f30b92095fd441edaf" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -9, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -16, + "Velocity": 15.21, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.42, + "ShotgunDispersion": 1.25, + "IsSilencer": false, + "DurabilityBurnModificator": 1.04, + "HeatFactor": 0.84, + "CoolFactor": 0.88, + "DeviationCurve": 2.5, + "DeviationMax": 10 + }, + "_proto": "5608379a4bdc2d26448b4569" + }, "5c503ac82e221602b21d6e9a": { "_id": "5c503ac82e221602b21d6e9a", "_name": "mag_vepr_molot_308_win_std_762x51_5", @@ -70875,151 +73132,23 @@ }, "_proto": "559ba5b34bdc2d1f1a8b4582" }, - "59d625f086f774661516605d": { - "_id": "59d625f086f774661516605d", - "_name": "mag_ak_izhmash_ak_std_55_762x39_30", + "57d14e1724597714010c3f4b": { + "_id": "57d14e1724597714010c3f4b", + "_name": "mag_pp-91_zmz_pp-91_std_9x18pm_20", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_ak_izhmash_ak_std_55_762x39_30", - "ShortName": "mag_ak_izhmash_ak_std_55_762x39_30", - "Description": "mag_ak_izhmash_ak_std_55_762x39_30", - "Weight": 0.37, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak_izhmash_ak_std_55_762x39_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "59d625f086f774661516605e", - "_parent": "59d625f086f774661516605d", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "59e655cb86f77411dc52a77b", - "59e6542b86f77411dc52a77a", - "59e6658b86f77411d949b250", - "5f0596629e22f464da6bbdd9", - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af734b75259c590fa895", - "64b7af434b75259c590fa893", - "64b7af5a8532cf95ee0a0dbd" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.09, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "5c471c442e221602b542a6f8": { - "_id": "5c471c442e221602b542a6f8", - "_name": "mag_svd_izhmash_svd_std_762x54_10", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Магазин Сайга 545 5.45x39 для АК-74 и совместимых на 10 патронов", - "ShortName": "5.45x39 Сайга 545", - "Description": "10-ти зарядный полимерный магазин Ижмаш Сайга 545, для одноименного гражданского карабина на базе АК, под патрон 5.45x39.", - "Weight": 0.112, + "Name": "mag_pp-91_zmz_pp-91_std_9x18pm_20", + "ShortName": "mag_pp-91_zmz_pp-91_std_9x18pm_20", + "Description": "mag_pp-91_zmz_pp-91_std_9x18pm_20", + "Weight": 0.103, "BackgroundColor": "yellow", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_svd_izhmash_svd_std_762x54_10.bundle", + "path": "assets/content/items/mods/magazines/mag_pp-91_zmz_pp-91_std_9x18pm_20.bundle", "rcid": "" }, "UsePrefab": { @@ -71072,7 +73201,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": 5, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -71087,22 +73216,27 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "5c471c442e221602b542a6fa", - "_parent": "5c471c442e221602b542a6f8", - "_max_count": 10, + "_id": "57d14e6b24597714020ae825", + "_parent": "57d14e1724597714010c3f4b", + "_max_count": 20, "_props": { "filters": [ { "Filter": [ - "5e023d34e8a400319a28ed44", - "5e023d48186a883be655e551", - "5e023cf8186a883be655e54f", - "59e77a2386f7742ee578960a", - "5887431f2459777e1612938f", - "560d61e84bdc2da74d8b4571", - "64b8f7c241772715af0f9c3d", - "64b8f7968532cf95ee0a0dbf", - "64b8f7b5389d7ffd620ccba2" + "573718ba2459775a75491131", + "573719df2459775a626ccbc2", + "57371aab2459775a77142f22", + "57371b192459775a9f58a5e0", + "57371e4124597760ff7b25f1", + "57371eb62459776125652ac1", + "57371f8d24597761006c6a81", + "5737201124597760fc4431f1", + "5737207f24597760ff7b25f2", + "57371f2b24597761224311f1", + "573719762459775a626ccbc1", + "573720e02459776143012541", + "57372140245977611f70ee91", + "5737218f245977612125ba51" ] } ] @@ -71113,136 +73247,12 @@ "CanFast": true, "CanHit": false, "CanAdmin": false, - "LoadUnloadModifier": -15, - "CheckTimeModifier": -15, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.02, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "5c0672ed0db834001b7353f3": { - "_id": "5c0672ed0db834001b7353f3", - "_name": "mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30", - "ShortName": "mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30", - "Description": "mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30", - "Weight": 0.109, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5c0672ed0db834001b7353f5", - "_parent": "5c0672ed0db834001b7353f3", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -15, + "LoadUnloadModifier": 0, "CheckTimeModifier": 0, "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.09, + "MalfunctionChance": 0.03, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, @@ -71251,1366 +73261,6 @@ }, "_proto": "5448c12b4bdc2d02308b456f" }, - "5d1340cad7ad1a0b0b249869": { - "_id": "5d1340cad7ad1a0b0b249869", - "_name": "mag_stanag_magpul_pmag_gen_m3_window_556x45_30_fde", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", - "ShortName": "5.56x45 PMAG GEN M3 30", - "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", - "Weight": 0.138, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_stanag_magpul_pmag_gen_m3_window_556x45_30_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5d1340cad7ad1a0b0b24986b", - "_parent": "5d1340cad7ad1a0b0b249869", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302", - "5fbe3ffdf8b6a877a729ea82", - "5fd20ff893a8961fc660a954", - "619636be6db0f2477964e710", - "6196364158ef8c428c287d9f", - "6196365d58ef8c428c287da1", - "64b8725c4b75259c590fa899" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": -35, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-1;18-30", - "MalfunctionChance": 0.08, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55802d5f4bdc2dac148b458e" - }, - "587df3a12459772c28142567": { - "_id": "587df3a12459772c28142567", - "_name": "mag_sks_toz_std_internal_762x39_10", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_sks_toz_std_internal_762x39_10", - "ShortName": "mag_sks_toz_std_internal_762x39_10", - "Description": "mag_sks_toz_std_internal_762x39_10", - "Weight": 0.185, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_sks_toz_std_internal_762x39_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "587df3a12459772c28142568", - "_parent": "587df3a12459772c28142567", - "_max_count": 10, - "_props": { - "filters": [ - { - "Filter": [ - "59e655cb86f77411dc52a77b", - "59e6542b86f77411dc52a77a", - "59e6658b86f77411d949b250", - "5f0596629e22f464da6bbdd9", - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af5a8532cf95ee0a0dbd", - "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "InternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.02, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "544a378f4bdc2d30388b4567": { - "_id": "544a378f4bdc2d30388b4567", - "_name": "mag_stanag_magpul_pmag_gen_m3_556x45_40", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Магазин PMAG GEN M3 40 5.56х45 STANAG на 40 патронов", - "ShortName": "5.56х45 PMAG GEN M3 40", - "Description": "40-ка зарядный полимерный магазин Magpul PMAG GEN M3 40, под патрон 5.56х45.\n", - "Weight": 0.2, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_stanag_magpul_pmag_gen_m3_556x45_40.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 2, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -7, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 3, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "57487b1f2459771f624a51e1", - "_parent": "544a378f4bdc2d30388b4567", - "_max_count": 40, - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302", - "5fbe3ffdf8b6a877a729ea82", - "5fd20ff893a8961fc660a954", - "619636be6db0f2477964e710", - "6196364158ef8c428c287d9f", - "6196365d58ef8c428c287da1", - "64b8725c4b75259c590fa899" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 10, - "CheckTimeModifier": 15, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.17, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - } - }, - "55818a604bdc2db5418b457e": { - "_id": "55818a604bdc2db5418b457e", - "_name": "Shaft", - "_parent": "55802f3e4bdc2de7118b4584", - "_type": "Node", - "_props": {} - }, - "588200cf2459774414733d55": { - "_id": "588200cf2459774414733d55", - "_name": "barrel_mr153_710mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_mr153_710mm", - "ShortName": "barrel_mr153_710mm", - "Description": "barrel_mr153_710mm", - "Weight": 1.35, - "BackgroundColor": "blue", - "Width": 5, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr153_710mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 25, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "588200cf2459774414733d56", - "_parent": "588200cf2459774414733d55", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0111ab0db834001966914d", - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5dfe4131f0dd306e765a2e38", - "_parent": "588200cf2459774414733d55", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "609b9e31506cf869cf3eaf41", - "5dfe14f30b92095fd441edaf" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -9, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -16, - "Velocity": 15.21, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.42, - "ShotgunDispersion": 1.25, - "IsSilencer": false, - "DurabilityBurnModificator": 1.04, - "HeatFactor": 0.84, - "CoolFactor": 0.88, - "DeviationCurve": 2.5, - "DeviationMax": 10 - }, - "_proto": "5608379a4bdc2d26448b4569" - }, - "5888956924597752983e182d": { - "_id": "5888956924597752983e182d", - "_name": "barrel_dvl-10_m2_660mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_dvl-10_m2_660mm", - "ShortName": "barrel_dvl-10_m2_660mm", - "Description": "barrel_dvl-10_m2_660mm", - "Weight": 2.88, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_dvl-10_m2_660mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5888956924597752983e182e", - "_parent": "5888956924597752983e182d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5888996c24597754281f9419" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "5888958d24597752fe43a6f2", - "_parent": "5888956924597752983e182d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5888976c24597754281f93f5" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -13, - "Velocity": 11.5, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.013, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1.05, - "HeatFactor": 0.82, - "CoolFactor": 0.86, - "DeviationCurve": 1, - "DeviationMax": 33 - }, - "_proto": "55d3632e4bdc2d972f8b4569" - }, - "6183d53f1cb55961fa0fdcda": { - "_id": "6183d53f1cb55961fa0fdcda", - "_name": "mag_mk17_fn_mk17_std_762x51_20_fde", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ash12_ckib_ash12_std_127x55_10", - "ShortName": "mag_ash12_ckib_ash12_std_127x55_10", - "Description": "mag_ash12_ckib_ash12_std_127x55_10", - "Weight": 0.35, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_mk17_fn_mk17_std_762x51_20_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "6183d53f1cb55961fa0fdcdc", - "_parent": "6183d53f1cb55961fa0fdcda", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.015, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "5aaf8a0be5b5b00015693243": { - "_id": "5aaf8a0be5b5b00015693243", - "_name": "mag_m14_springfield_armory_762x51_20", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_m1a_springfield_armory_762x51_20", - "ShortName": "mag_m1a_springfield_armory_762x51_20", - "Description": "mag_m1a_springfield_armory_762x51_20\n", - "Weight": 0.226, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_m14_springfield_armory_762x51_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5aaf8a0be5b5b00015693245", - "_parent": "5aaf8a0be5b5b00015693243", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.05, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c1d04bdc2dff2f8b4569" - }, - "64b9cf0ac12b9c38db26923a": { - "_id": "64b9cf0ac12b9c38db26923a", - "_name": "mag_ak_magpul_pmag_20_ak_akm_gen_m3_762x39_20", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30", - "ShortName": "mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30", - "Description": "mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30", - "Weight": 0.141, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak_magpul_pmag_20_ak_akm_gen_m3_762x39_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "64b9cf0ac12b9c38db26923b", - "_parent": "64b9cf0ac12b9c38db26923a", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "59e655cb86f77411dc52a77b", - "59e6542b86f77411dc52a77a", - "59e6658b86f77411d949b250", - "5f0596629e22f464da6bbdd9", - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895", - "64b7af5a8532cf95ee0a0dbd" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -15, - "CheckTimeModifier": -10, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.087, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "5addccf45acfc400185c2989": { - "_id": "5addccf45acfc400185c2989", - "_name": "mag_m14_x_products_drum_magazine_m14_762x51_50", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_m14_x_products_drum_magazine_m14_762x51_50", - "ShortName": "mag_m14_x_products_drum_magazine_m14_762x51_50", - "Description": "mag_m14_x_products_drum_magazine_m14_762x51_50\n", - "Weight": 0.7, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_m14_x_products_drum_magazine_m14_762x51_50.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -17, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 2, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5addccf45acfc400185c298b", - "_parent": "5addccf45acfc400185c2989", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 40, - "CheckTimeModifier": 15, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-2;19-27", - "MalfunctionChance": 0.256, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c1d04bdc2dff2f8b4569" - }, - "55d447bb4bdc2d892f8b456f": { - "_id": "55d447bb4bdc2d892f8b456f", - "_name": "barrel_mr43e-1c_725mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 725мм для ружья МР-43е-1с 12к", - "ShortName": "725мм МР-43е-1с 12к", - "Description": "Ствол для двухствольного ружья МР-43е-1с под патрон 12-го калибра, длинной 725мм.", - "Weight": 1.6, - "BackgroundColor": "blue", - "Width": 5, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr43e-1c_725mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 25, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 4, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -12, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -9, - "Velocity": 15.21, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.38, - "ShotgunDispersion": 1.33, - "IsSilencer": false, - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.798, - "CoolFactor": 0.836, - "DeviationCurve": 2.5, - "DeviationMax": 10 - } - }, - "5de653abf76fdc1ce94a5a2a": { - "_id": "5de653abf76fdc1ce94a5a2a", - "_name": "mag_vpo215_molot_vpo_215_366tkm_4", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ak_custom_sawed_off_762x39_10", - "ShortName": "mag_ak_custom_sawed_off_762x39_10", - "Description": "mag_ak_custom_sawed_off_762x39_10", - "Weight": 0.2, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_vpo215_molot_vpo_215_366tkm_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5de653abf76fdc1ce94a5a2c", - "_parent": "5de653abf76fdc1ce94a5a2a", - "_max_count": 4, - "_props": { - "filters": [ - { - "Filter": [ - "59e655cb86f77411dc52a77b", - "59e6542b86f77411dc52a77a", - "59e6658b86f77411d949b250", - "5f0596629e22f464da6bbdd9" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": -15, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.04, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, "6193d3149fb0c665d5490e32": { "_id": "6193d3149fb0c665d5490e32", "_name": "mag_usp_hk_usp_tactical_1143x23_12", @@ -73122,135 +73772,6 @@ }, "_proto": "55d480c04bdc2d1d4e8b456a" }, - "628120f210e26c1f344e6558": { - "_id": "628120f210e26c1f344e6558", - "_name": "mag_ax_accuracy_international_ax_762x51_10_pb", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_m700_ai_aics_762x51_10", - "ShortName": "mag_m700_ai_aics_762x51_10", - "Description": "mag_m700_ai_aics_762x51_10", - "Weight": 0.5, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ax_accuracy_international_ax_762x51_10_pb.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5fc382a9d724d907e2077dab", - "5fc275cf85fd526b824a571a", - "5fc382c1016cce60e8341b20", - "5fc382b6d6fa9c00c571bbc3", - "628121434fa03b6b6c35dc6a", - "62811cd7308cb521f87a8f99" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "628120f210e26c1f344e6559", - "_parent": "628120f210e26c1f344e6558", - "_max_count": 10, - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -15, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.02, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "559ba5b34bdc2d1f1a8b4582" - }, "5b7bef1e5acfc43d82528402": { "_id": "5b7bef1e5acfc43d82528402", "_name": "mag_fal_ds_arms_fal_sa58_762x51_10", @@ -73501,6 +74022,135 @@ }, "_proto": "55802d5f4bdc2dac148b458e" }, + "628120f210e26c1f344e6558": { + "_id": "628120f210e26c1f344e6558", + "_name": "mag_ax_accuracy_international_ax_762x51_10_pb", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_m700_ai_aics_762x51_10", + "ShortName": "mag_m700_ai_aics_762x51_10", + "Description": "mag_m700_ai_aics_762x51_10", + "Weight": 0.5, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ax_accuracy_international_ax_762x51_10_pb.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5fc382a9d724d907e2077dab", + "5fc275cf85fd526b824a571a", + "5fc382c1016cce60e8341b20", + "5fc382b6d6fa9c00c571bbc3", + "628121434fa03b6b6c35dc6a", + "62811cd7308cb521f87a8f99" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "628120f210e26c1f344e6559", + "_parent": "628120f210e26c1f344e6558", + "_max_count": 10, + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -15, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.02, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "559ba5b34bdc2d1f1a8b4582" + }, "55818b014bdc2ddc698b456b": { "_id": "55818b014bdc2ddc698b456b", "_name": "Launcher", @@ -73664,522 +74314,6 @@ }, "_proto": "55d3632e4bdc2d972f8b4569" }, - "588200c224597743990da9ed": { - "_id": "588200c224597743990da9ed", - "_name": "barrel_mr153_660mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_mr153_660mm", - "ShortName": "barrel_mr153_660mm", - "Description": "barrel_mr153_660mm", - "Weight": 1.25, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr153_660mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "588200c224597743990da9ee", - "_parent": "588200c224597743990da9ed", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0111ab0db834001966914d", - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5dfe411973d8eb11426f59b2", - "_parent": "588200c224597743990da9ed", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "609b9e31506cf869cf3eaf41", - "5dfe14f30b92095fd441edaf" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -12, - "Velocity": 12.5, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.5, - "ShotgunDispersion": 1.35, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.86, - "CoolFactor": 0.9, - "DeviationCurve": 2.5, - "DeviationMax": 10 - }, - "_proto": "5608379a4bdc2d26448b4569" - }, - "5b7d37845acfc400170e2f87": { - "_id": "5b7d37845acfc400170e2f87", - "_name": "mag_fal_sarco_fal_l1a1_orig_762x51_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_fal_ds_arms_fal_sa58_762x51_20", - "ShortName": "mag_fal_ds_arms_fal_sa58_762x51_20", - "Description": "mag_fal_ds_arms_fal_sa58_762x51_20\n", - "Weight": 0.49, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_fal_sarco_fal_l1a1_orig_762x51_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -8, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 2, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5b7d37845acfc400170e2f89", - "_parent": "5b7d37845acfc400170e2f87", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.179, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c1d04bdc2dff2f8b4569" - }, - "55802d5f4bdc2dac148b458e": { - "_id": "55802d5f4bdc2dac148b458e", - "_name": "mag_stanag_magpul_pmag_gen_m3_window_556x45_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", - "ShortName": "5.56x45 PMAG GEN M3 30", - "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", - "Weight": 0.138, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_stanag_magpul_pmag_gen_m3_window_556x45_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "57487b732459771f613b6651", - "_parent": "55802d5f4bdc2dac148b458e", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302", - "5fbe3ffdf8b6a877a729ea82", - "5fd20ff893a8961fc660a954", - "619636be6db0f2477964e710", - "6196364158ef8c428c287d9f", - "6196365d58ef8c428c287da1", - "64b8725c4b75259c590fa899" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": -35, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-1;18-30", - "MalfunctionChance": 0.08, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - } - }, - "5c6592372e221600133e47d7": { - "_id": "5c6592372e221600133e47d7", - "_name": "mag_stanag_surefire_mag5_556x45_100", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_stanag_surefire_mag5_556x45_100", - "ShortName": "mag_stanag_surefire_mag5_556x45_100", - "Description": "mag_stanag_surefire_mag5_556x45_100", - "Weight": 0.27, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_stanag_surefire_mag5_556x45_100.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 2, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -27, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 4, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5c6592372e221600133e47d9", - "_parent": "5c6592372e221600133e47d7", - "_max_count": 100, - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302", - "5fbe3ffdf8b6a877a729ea82", - "5fd20ff893a8961fc660a954", - "619636be6db0f2477964e710", - "6196364158ef8c428c287d9f", - "6196365d58ef8c428c287da1", - "64b8725c4b75259c590fa899" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 30, - "CheckTimeModifier": 30, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.45, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "544a37c44bdc2d25388b4567" - }, "5c0548ae0db834001966a3c2": { "_id": "5c0548ae0db834001966a3c2", "_name": "mag_ak_arsenal_cwp_mag_556x45_30", @@ -74443,793 +74577,23 @@ "DurabilityBurnModificator": 1 } }, - "5caf1041ae92157c28402e3f": { - "_id": "5caf1041ae92157c28402e3f", - "_name": "mag_ash12_ckib_ash12_std_127x55_10", + "5a17fb03fcdbcbcae668728f": { + "_id": "5a17fb03fcdbcbcae668728f", + "_name": "mag_aps_molot_aps_apb_std_9x18pm_20", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_ash12_ckib_ash12_std_127x55_10", - "ShortName": "mag_ash12_ckib_ash12_std_127x55_10", - "Description": "mag_ash12_ckib_ash12_std_127x55_10", - "Weight": 0.35, + "Name": "mag_aps_molot_aps_apb_std_9x18pm_20", + "ShortName": "mag_aps_molot_aps_apb_std_9x18pm_20", + "Description": "mag_aps_molot_aps_apb_std_9x18pm_20", + "Weight": 0.044, "BackgroundColor": "yellow", "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ash12_ckib_ash12_std_127x55_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5caf1041ae92157c28402e41", - "_parent": "5caf1041ae92157c28402e3f", - "_max_count": 10, - "_props": { - "filters": [ - { - "Filter": [ - "5cadf6ddae9215051e1c23b2", - "5cadf6e5ae921500113bb973", - "5cadf6eeae921500134b2799" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.05, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "5a0060fc86f7745793204432": { - "_id": "5a0060fc86f7745793204432", - "_name": "mag_ak_izhmash_akms_aluminium_762x39_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ak_izhmash_akms_aluminium_762x39_30", - "ShortName": "mag_ak_izhmash_akms_aluminium_762x39_30", - "Description": "mag_ak_izhmash_akms_aluminium_762x39_30", - "Weight": 0.17, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak_izhmash_akms_aluminium_762x39_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5a12db2986f7745d0e0cf654", - "_parent": "5a0060fc86f7745793204432", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "59e655cb86f77411dc52a77b", - "59e6542b86f77411dc52a77a", - "59e6658b86f77411d949b250", - "5f0596629e22f464da6bbdd9", - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af5a8532cf95ee0a0dbd", - "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -5, - "CheckTimeModifier": -5, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.04, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "5c05413a0db834001c390617": { - "_id": "5c05413a0db834001c390617", - "_name": "mag_stanag_hk_416_steel_maritime_556x45_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Магазин Colt AR-15 5.56x45 STANAG на 30 патронов", - "ShortName": "5.56x45 Colt AR-15", - "Description": "30-ти зарядный металлический магазин Colt AR-15 выполненный по стандарту STANAG 4179, под патрон 5.56х45.\nСтандарт STANAG 4179 был принят членами НАТО в 1980 г., что бы дать возможность союзникам унифицировать боеприпасы и магазины на уровне отдельных солдат.", - "Weight": 0.32, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, + "Height": 1, "StackMaxSize": 1, "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_stanag_hk_416_steel_maritime_556x45_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5c05413a0db834001c390619", - "_parent": "5c05413a0db834001c390617", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302", - "5fbe3ffdf8b6a877a729ea82", - "5fd20ff893a8961fc660a954", - "619636be6db0f2477964e710", - "6196364158ef8c428c287d9f", - "6196365d58ef8c428c287da1", - "64b8725c4b75259c590fa899" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -10, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.06, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55802d5f4bdc2dac148b458e" - }, - "5c6d42cb2e2216000e69d7d1": { - "_id": "5c6d42cb2e2216000e69d7d1", - "_name": "mag_stanag_hk_polymer_mag_556x45_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", - "ShortName": "5.56x45 PMAG GEN M3 30", - "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", - "Weight": 0.17, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_stanag_hk_polymer_mag_556x45_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5c6d42cb2e2216000e69d7d3", - "_parent": "5c6d42cb2e2216000e69d7d1", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302", - "5fbe3ffdf8b6a877a729ea82", - "5fd20ff893a8961fc660a954", - "619636be6db0f2477964e710", - "6196364158ef8c428c287d9f", - "6196365d58ef8c428c287da1", - "64b8725c4b75259c590fa899" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 20, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.05, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55802d5f4bdc2dac148b458e" - }, - "59d6272486f77466146386ff": { - "_id": "59d6272486f77466146386ff", - "_name": "mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30", - "ShortName": "mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30", - "Description": "mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30", - "Weight": 0.2, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1.5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "59d6272486f7746614638700", - "_parent": "59d6272486f77466146386ff", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "59e655cb86f77411dc52a77b", - "59e6542b86f77411dc52a77a", - "59e6658b86f77411d949b250", - "5f0596629e22f464da6bbdd9", - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af5a8532cf95ee0a0dbd", - "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -10, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.106, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "5a78832ec5856700155a6ca3": { - "_id": "5a78832ec5856700155a6ca3", - "_name": "mag_870_remington_magazie_extension_12g_10", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_870_remington_magazie_extension_12g_10", - "ShortName": "mag_870_remington_magazie_extension_12g_10", - "Description": "mag_870_remington_magazie_extension_12g_10", - "Weight": 0.4, - "BackgroundColor": "yellow", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_870_remington_magazie_extension_12g_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5a78832ec5856700155a6ca4", - "_parent": "5a78832ec5856700155a6ca3", - "_max_count": 10, - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "InternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.01, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d4837c4bdc2d1d4e8b456c" - }, - "66015dc4aaad2f54cb04c56a": { - "_id": "66015dc4aaad2f54cb04c56a", - "_name": "mag_pd_ussr_toygun_std_20x1mm_18", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Магазин 90-93 9х18ПМ для ПМ на 8 патронов", - "ShortName": "9х18ПМ 90-93", - "Description": "8-ми зарядный стандартный магазин 90-93 для пистолета ПМ производства Ижмех. Имеет окно на боковой стороне для контроля количества боеприпасов.", - "Weight": 0.005, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_pd_ussr_toygun_std_20x1mm_18.bundle", + "path": "assets/content/items/mods/magazines/mag_aps_molot_aps_apb_std_9x18pm_20.bundle", "rcid": "" }, "UsePrefab": { @@ -75282,9 +74646,9 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": -3, "Velocity": 0, - "RaidModdable": false, + "RaidModdable": true, "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, @@ -75297,1106 +74661,9 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "66015dc4aaad2f54cb04c56b", - "_parent": "66015dc4aaad2f54cb04c56a", + "_id": "5a17fb03fcdbcbcae6687290", + "_parent": "5a17fb03fcdbcbcae668728f", "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "6601546f86889319850bd566" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -20, - "CheckTimeModifier": -20, - "CheckOverride": 1, - "ReloadMagType": "InternalMagazine", - "VisibleAmmoRangesString": "1-1;4-8", - "MalfunctionChance": 0, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - } - }, - "560836fb4bdc2d773f8b4569": { - "_id": "560836fb4bdc2d773f8b4569", - "_name": "barrel_mr133_660mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 660мм для ружья МР-133 12к", - "ShortName": "660мм МР-133", - "Description": "Стандартный заводской ствол для ружья МР-133 под патрон 12-го калибра, длинной 660мм.", - "Weight": 1.2, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr133_610mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "56e3156fd2720b6c058b4569", - "_parent": "560836fb4bdc2d773f8b4569", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0111ab0db834001966914d", - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -12, - "Velocity": 13.5, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.5, - "ShotgunDispersion": 1.3, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.86, - "CoolFactor": 0.9, - "DeviationCurve": 2.5, - "DeviationMax": 10 - }, - "_proto": "55d448594bdc2d8c2f8b4569" - }, - "5cc701d7e4a94900100ac4e7": { - "_id": "5cc701d7e4a94900100ac4e7", - "_name": "barrel_p90_407mm_57x28", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_416_hk_419mm_556x45", - "ShortName": "barrel_416_hk_419mm_556x45", - "Description": "barrel_416_hk_419mm_556x45", - "Weight": 0.8, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_p90_407mm_57x28.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c6d10e82e221601da357b07", - "5bb20dfcd4351e00334c9e24", - "5c6d11072e2216000e69d2e4", - "5c6d11152e2216000f2003e7", - "5c6c2c9c2e2216000f2002e4" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -13, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -13, - "Velocity": 2.2, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.038, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1.1, - "HeatFactor": 0.92, - "CoolFactor": 0.96, - "DeviationCurve": 1.75, - "DeviationMax": 17 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "588200af24597742fa221dfb": { - "_id": "588200af24597742fa221dfb", - "_name": "barrel_mr153_610mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_mr153_610mm", - "ShortName": "barrel_mr153_610mm", - "Description": "barrel_mr153_610mm", - "Weight": 1.25, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr153_610mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "588200af24597742fa221dfc", - "_parent": "588200af24597742fa221dfb", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0111ab0db834001966914d", - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5dfe40fefca8e055d15b75ae", - "_parent": "588200af24597742fa221dfb", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "609b9e31506cf869cf3eaf41", - "5dfe14f30b92095fd441edaf" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -7, - "Velocity": 9.8, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.58, - "ShotgunDispersion": 1.4, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.88, - "CoolFactor": 0.92, - "DeviationCurve": 2.5, - "DeviationMax": 10 - }, - "_proto": "5608379a4bdc2d26448b4569" - }, - "5888945a2459774bf43ba385": { - "_id": "5888945a2459774bf43ba385", - "_name": "barrel_dvl-10_500mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_dvl-10_500mm", - "ShortName": "barrel_dvl-10_500mm", - "Description": "barrel_dvl-10_500mm", - "Weight": 2.9, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_dvl-10_500mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5888945a2459774bf43ba386", - "_parent": "5888945a2459774bf43ba385", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "58889c7324597754281f9439" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_bipod", - "_id": "588894872459774e6610d115", - "_parent": "5888945a2459774bf43ba385", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5888961624597754281f93f3" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -10, - "Velocity": 8.4, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.022, - "ShotgunDispersion": 1, - "IsSilencer": true, - "DurabilityBurnModificator": 1.61, - "HeatFactor": 0.95, - "CoolFactor": 0.9, - "DeviationCurve": 1, - "DeviationMax": 33 - }, - "_proto": "55d3632e4bdc2d972f8b4569" - }, - "5fbbfacda56d053a3543f799": { - "_id": "5fbbfacda56d053a3543f799", - "_name": "barrel_mcx_229mm_762x35", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_mcx_229mm_762x35", - "ShortName": "barrel_mcx_229mm_762x35", - "Description": "barrel_mcx_229mm_762x35", - "Weight": 0.479, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mcx_229mm_762x35.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5fbbfacda56d053a3543f79b", - "_parent": "5fbbfacda56d053a3543f799", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5dfa3cd1b33c0951220c079b", - "5fbc22ccf24b94483f726483", - "5fbe7618d6fa9c00c571bb6c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_gas_block", - "_id": "5fbbfacda56d053a3543f79c", - "_parent": "5fbbfacda56d053a3543f799", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fbc210bf24b94483f726481" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -6, - "Velocity": -12.31, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.08, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.02, - "CoolFactor": 1.03, - "DeviationCurve": 1.6, - "DeviationMax": 19 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "5c0673fb0db8340023300271": { - "_id": "5c0673fb0db8340023300271", - "_name": "mag_pp-19-01_pufgun_mag_sg-919_20_9x19_20", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30", - "ShortName": "mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30", - "Description": "mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30", - "Weight": 0.085, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_pp-19-01_pufgun_mag_sg-919_20_9x19_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5c0673fb0db8340023300273", - "_parent": "5c0673fb0db8340023300271", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -15, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.08, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, - "5bed61680db834001d2c45ab": { - "_id": "5bed61680db834001d2c45ab", - "_name": "mag_ak_izhmash_ak12_std_545x39_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ak_izhmash_ak12_std_545x39_30", - "ShortName": "mag_ak_izhmash_ak12_std_545x39_30", - "Description": "mag_ak_izhmash_ak12_std_545x39_30", - "Weight": 0.19, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak_izhmash_ak12_std_545x39_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2.5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 4, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5bed61680db834001d2c45ad", - "_parent": "5bed61680db834001d2c45ab", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -10, - "CheckTimeModifier": -20, - "CheckOverride": 1, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.02, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55802d5f4bdc2dac148b458e" - }, - "5a966f51a2750c00156aacf6": { - "_id": "5a966f51a2750c00156aacf6", - "_name": "mag_saiga12_pro_mag_sai_02_12x76_10", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_saiga12_pro_mag_sai_02_12x76_10", - "ShortName": "mag_saiga12_pro_mag_sai_02_12x76_10", - "Description": "mag_saiga12_pro_mag_sai_02_12x76_10", - "Weight": 0.21, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_saiga12_pro_mag_sai_02_12x76_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 2, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -7, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 1, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5a966f51a2750c00156aacf8", - "_parent": "5a966f51a2750c00156aacf6", - "_max_count": 10, - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.05, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "564ca99c4bdc2d16268b4589" - }, - "57d1519e24597714373db79d": { - "_id": "57d1519e24597714373db79d", - "_name": "mag_pp-91_zmz_pp-91_std_9x18pm_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_pp-91_zmz_pp-91_std_9x18pm_30", - "ShortName": "mag_pp-91_zmz_pp-91_std_9x18pm_30", - "Description": "mag_pp-91_zmz_pp-91_std_9x18pm_30", - "Weight": 0.128, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_pp-91_zmz_pp-91_std_9x18pm_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "57d15ad52459775a79095e23", - "_parent": "57d1519e24597714373db79d", - "_max_count": 30, "_props": { "filters": [ { @@ -76426,36 +74693,36 @@ "CanHit": false, "CanAdmin": false, "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, + "CheckTimeModifier": -30, + "CheckOverride": 1, "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.04, + "VisibleAmmoRangesString": "1-1;4-4;6-6;8-8;10-10;12-12;14-14;16-16;18-18;20-20", + "MalfunctionChance": 0.088, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "57d14e1724597714010c3f4b" + "_proto": "5448c12b4bdc2d02308b456f" }, - "6513f0a194c72326990a3868": { - "_id": "6513f0a194c72326990a3868", - "_name": "mag_rpd_zid_rpd_762x39_100", + "5c6d46132e221601da357d56": { + "_id": "5c6d46132e221601da357d56", + "_name": "mag_stanag_troy_battlemag_556x45_30", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "Магазин полимерный 7.62х54R для СВ-98 на 10 патронов", - "ShortName": "7.62х54R полимерный", - "Description": "Стандартный полимерный магазин производства Ижмаш для винтовки СВ-98, под патрон 7.62х54R.", - "Weight": 0.8, + "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", + "ShortName": "5.56x45 PMAG GEN M3 30", + "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", + "Weight": 0.138, "BackgroundColor": "yellow", - "Width": 2, + "Width": 1, "Height": 2, "StackMaxSize": 1, "ItemSound": "mag_plastic", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_rpd_zid_rpd_762x39_100.bundle", + "path": "assets/content/items/mods/magazines/mag_stanag_troy_battlemag_556x45_30.bundle", "rcid": "" }, "UsePrefab": { @@ -76472,7 +74739,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, + "LootExperience": 10, "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, @@ -76508,130 +74775,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -25, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "6513f0a194c72326990a3869", - "_parent": "6513f0a194c72326990a3868", - "_max_count": 100, - "_props": { - "filters": [ - { - "Filter": [ - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "64b7af5a8532cf95ee0a0dbd", - "601aa3d2b2bcb34913271e6d", - "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.01, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": true, - "BeltMagazineRefreshCount": 50, - "IsMagazineForStationaryWeapon": false - } - }, - "5a7882dcc5856700177af662": { - "_id": "5a7882dcc5856700177af662", - "_name": "mag_870_remington_magazie_cap_12g_4", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_870_remington_magazie_cap_12g_4", - "ShortName": "mag_870_remington_magazie_cap_12g_4", - "Description": "mag_870_remington_magazie_cap_12g_4", - "Weight": 0.1, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_870_remington_magazie_cap_12g_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": -2, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -76646,150 +74790,30 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "5a7882dcc5856700177af663", - "_parent": "5a7882dcc5856700177af662", - "_max_count": 4, + "_id": "5c6d46132e221601da357d58", + "_parent": "5c6d46132e221601da357d56", + "_max_count": 30, "_props": { "filters": [ { "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "InternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.01, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d4837c4bdc2d1d4e8b456c" - }, - "5ef3448ab37dfd6af863525c": { - "_id": "5ef3448ab37dfd6af863525c", - "_name": "mag_m1911_mec_gar_extended_1143x23_11", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_m1911_mec_gar_extended_1143x23_11", - "ShortName": "mag_m1911_mec_gar_extended_1143x23_11", - "Description": "mag_m1911_mec_gar_extended_1143x23_11", - "Weight": 0.24, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_m1911_mec_gar_extended_1143x23_11.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 1, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5ef3448bb37dfd6af863525e", - "_parent": "5ef3448ab37dfd6af863525c", - "_max_count": 11, - "_props": { - "filters": [ - { - "Filter": [ - "5e81f423763d9f754677bf2e", - "5efb0cabfb3e451d70735af5", - "5efb0fc6aeb21837e749c801", - "5efb0d4f4bc50b58e81710f3", - "5ea2a8e200685063ec28c05a" + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302", + "5fbe3ffdf8b6a877a729ea82", + "5fd20ff893a8961fc660a954", + "619636be6db0f2477964e710", + "6196364158ef8c428c287d9f", + "6196365d58ef8c428c287da1", + "64b8725c4b75259c590fa899" ] } ] @@ -76800,19 +74824,19 @@ "CanFast": true, "CanHit": false, "CanAdmin": false, - "LoadUnloadModifier": -25, - "CheckTimeModifier": -20, - "CheckOverride": 1, + "LoadUnloadModifier": -10, + "CheckTimeModifier": 0, + "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.07, + "MalfunctionChance": 0.02, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "5448c12b4bdc2d02308b456f" + "_proto": "55802d5f4bdc2dac148b458e" }, "5c88f24b2e22160bc12c69a6": { "_id": "5c88f24b2e22160bc12c69a6", @@ -77070,129 +75094,6 @@ }, "_proto": "544a378f4bdc2d30388b4567" }, - "5a38ed75c4a28232996e40c6": { - "_id": "5a38ed75c4a28232996e40c6", - "_name": "mag_toz-106_mc_20-01_sb3_20x70_4", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_toz-106_mc_20-01_sb3_20x70_4", - "ShortName": "mag_toz-106_mc_20-01_sb3_20x70_4", - "Description": "mag_toz-106_mc_20-01_sb3_20x70_4", - "Weight": 0.11, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_toz-106_mc_20-01_sb3_20x70_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 1, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5a38ed75c4a28232996e40c7", - "_parent": "5a38ed75c4a28232996e40c6", - "_max_count": 4, - "_props": { - "filters": [ - { - "Filter": [ - "5a38ebd9c4a282000d722a5b", - "5d6e695fa4b936359b35d852", - "5d6e69b9a4b9361bc8618958", - "5d6e69c7a4b9360b6c0d54e4", - "5d6e6a5fa4b93614ec501745", - "5d6e6a53a4b9361bd473feec", - "5d6e6a42a4b9364f07165f52", - "5d6e6a05a4b93618084f58d0" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -20, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.052, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "559ba5b34bdc2d1f1a8b4582" - }, "641074a07fd350b98c0b3f96": { "_id": "641074a07fd350b98c0b3f96", "_name": "mag_svt40_toz_svt40_std_762x54r_15", @@ -77317,398 +75218,6 @@ }, "_proto": "55d480c04bdc2d1d4e8b456a" }, - "5a718f958dc32e00094b97e7": { - "_id": "5a718f958dc32e00094b97e7", - "_name": "mag_glock_sgmt_glock_drum_50_9x19_50", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_glock_sgmt_glock_drum_50_9x19_50", - "ShortName": "mag_glock_sgmt_glock_drum_50_9x19_50", - "Description": "mag_glock_sgmt_glock_drum_50_9x19_50", - "Weight": 0.6, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_glock_sgmt_glock_drum_50_9x19_50.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -19, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 3, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5a718f958dc32e00094b97e8", - "_parent": "5a718f958dc32e00094b97e7", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -10, - "CheckTimeModifier": 20, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.208, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c12b4bdc2d02308b456f" - }, - "625ff31daaaa8c1130599f64": { - "_id": "625ff31daaaa8c1130599f64", - "_name": "mag_m3_benelli_magazine_extension_12g_13", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_870_remington_magazie_extension_12g_7", - "ShortName": "mag_870_remington_magazie_extension_12g_7", - "Description": "mag_870_remington_magazie_extension_12g_7", - "Weight": 0.34, - "BackgroundColor": "yellow", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "magazine_metal", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_m3_tonisystem_magazine_extension_12g_13.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5b363dea5acfc4771e1c5e7e", - "59c0ec5b86f77435b128bfca", - "58272d7f2459774f6311ddfd" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "625ff31daaaa8c1130599f66", - "_parent": "625ff31daaaa8c1130599f64", - "_max_count": 13, - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "InternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.013, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d4837c4bdc2d1d4e8b456c" - }, - "5c6d450c2e221600114c997d": { - "_id": "5c6d450c2e221600114c997d", - "_name": "mag_stanag_hk_gen_2_pm_556x45_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", - "ShortName": "5.56x45 PMAG GEN M3 30", - "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", - "Weight": 0.16, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_stanag_hk_gen_2_pm_556x45_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5c6d450c2e221600114c997f", - "_parent": "5c6d450c2e221600114c997d", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302", - "5fbe3ffdf8b6a877a729ea82", - "5fd20ff893a8961fc660a954", - "619636be6db0f2477964e710", - "6196364158ef8c428c287d9f", - "6196365d58ef8c428c287da1", - "64b8725c4b75259c590fa899" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.07, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55802d5f4bdc2dac148b458e" - }, "5448bc234bdc2d3c308b4569": { "_id": "5448bc234bdc2d3c308b4569", "_name": "Magazine", @@ -77733,15 +75242,238 @@ "IsMagazineForStationaryWeapon": false } }, - "55818b224bdc2dde698b456f": { - "_id": "55818b224bdc2dde698b456f", - "_name": "Mount", - "_parent": "55802f3e4bdc2de7118b4584", - "_type": "Node", + "55d4491a4bdc2d882f8b456e": { + "_id": "55d4491a4bdc2d882f8b456e", + "_name": "barrel_mr133_510mm", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", "_props": { - "HeatFactor": 1, - "CoolFactor": 1 - } + "Name": "Ствол 510мм для МР-133 12к ", + "ShortName": "510мм МР-133", + "Description": "Стандартный заводской ствол для ружья МР-133 длинной 510мм.", + "Weight": 0.8, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mr133_510mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "560d63bc4bdc2d773f8b4574", + "_parent": "55d4491a4bdc2d882f8b456e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0111ab0db834001966914d", + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 5.4, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.62, + "ShotgunDispersion": 1.55, + "IsSilencer": false, + "DurabilityBurnModificator": 0.95, + "HeatFactor": 0.92, + "CoolFactor": 0.96, + "DeviationCurve": 3, + "DeviationMax": 9 + }, + "_proto": "55d448594bdc2d8c2f8b4569" + }, + "5c5db5962e2216000e5e46eb": { + "_id": "5c5db5962e2216000e5e46eb", + "_name": "barrel_mpx_165mm_9x19", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_mpx_203mm", + "ShortName": "barrel_mpx_203mm", + "Description": "barrel_mpx_203mm", + "Weight": 0.19, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mpx_165mm_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c59529a2e221602b177d160", + "5c5db6302e2216000e5e47f0", + "5c5db63a2e2216000f1b284a" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5c5db5962e2216000e5e46ed", + "_parent": "5c5db5962e2216000e5e46eb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cf6935bd7f00c06585fb791", + "5b3a16655acfc40016387a2a", + "58949dea86f77409483e16a8", + "59bffc1f86f77435b128b872", + "5c7e8fab2e22165df16b889b", + "5a9fb739a2750c003215717f", + "5c6165902e22160010261b28", + "5a32a064c4a28200741e22de" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": -10, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.2, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 0.85, + "HeatFactor": 1.04, + "CoolFactor": 1.07, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "55d35ee94bdc2d61338b4568" }, "5d440b93a4b9364276578d4b": { "_id": "5d440b93a4b9364276578d4b", @@ -77914,306 +75646,23 @@ }, "_proto": "55d3632e4bdc2d972f8b4569" }, - "55d4491a4bdc2d882f8b456e": { - "_id": "55d4491a4bdc2d882f8b456e", - "_name": "barrel_mr133_510mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 510мм для МР-133 12к ", - "ShortName": "510мм МР-133", - "Description": "Стандартный заводской ствол для ружья МР-133 длинной 510мм.", - "Weight": 0.8, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr133_510mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "560d63bc4bdc2d773f8b4574", - "_parent": "55d4491a4bdc2d882f8b456e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0111ab0db834001966914d", - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": 5.4, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.62, - "ShotgunDispersion": 1.55, - "IsSilencer": false, - "DurabilityBurnModificator": 0.95, - "HeatFactor": 0.92, - "CoolFactor": 0.96, - "DeviationCurve": 3, - "DeviationMax": 9 - }, - "_proto": "55d448594bdc2d8c2f8b4569" - }, - "5d440b9fa4b93601354d480c": { - "_id": "5d440b9fa4b93601354d480c", - "_name": "barrel_ar15_508mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_ar15_508mm", - "ShortName": "barrel_ar15_508mm", - "Description": "barrel_ar15_508mm", - "Weight": 0.91, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_ar15_508mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 4, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c0e2f5cd174af02a012cfc9", - "5ae30db85acfc408fb139a05", - "55d459824bdc2d892f8b4573", - "5c78f2792e221600106f4683", - "5c78f26f2e221601da3581d1", - "5d00e0cbd7ad1a6c6566a42d", - "5d00f63bd7ad1a59283b1c1e" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5d440b9fa4b93601354d480e", - "_parent": "5d440b9fa4b93601354d480c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b3a16655acfc40016387a2a", - "5c7e5f112e221600106f4ede", - "5c0fafb6d174af02a96260ba", - "612e0cfc8004cc50514c2d9e", - "5cf6937cd7f00c056c53fb39", - "544a38634bdc2d58388b4568", - "5cff9e5ed7ad1a09407397d4", - "5c48a2a42e221602b66d1e07", - "5f6372e2865db925d54f3869", - "615d8e2f1cb55961fa0fd9a4", - "56ea8180d2720bf2698b456a", - "5d02676dd7ad1a049e54f6dc", - "56ea6fafd2720b844b8b4593", - "5943ee5a86f77413872d25ec", - "609269c3b0e443224b421cc1", - "5c7fb51d2e2216001219ce11", - "5ea172e498dacb342978818e", - "5c6d710d2e22165df16b81e7", - "612e0e55a112697a4b3a66e7", - "5d440625a4b9361eec4ae6c5", - "5cc9b815d7f00c000e2579d6", - "5a7c147ce899ef00150bd8b8", - "5c7954d52e221600106f4cc7", - "59bffc1f86f77435b128b872", - "5a9fbb84a2750c00137fa685", - "626667e87379c44d557b7550", - "62669bccdb9ebb4daa44cd14", - "626a74340be03179a165e30c", - "6386120cd6baa055ad1e201c", - "63ac5c9658d0485fc039f0b8", - "6405ff6bd4578826ec3e377a", - "64943b74e9998d641b0412ed" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_gas_block", - "_id": "5d440b9fa4b93601354d480f", - "_parent": "5d440b9fa4b93601354d480c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ae30e795acfc408fb139a0b", - "56eabcd4d2720b66698b4574", - "5d00ec68d7ad1a04a067e5be", - "56ea8d2fd2720b7c698b4570", - "63d3ce281fe77d0f2801859e" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -29, - "Velocity": -3.1, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.032, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1.05, - "HeatFactor": 0.94, - "CoolFactor": 0.94, - "DeviationCurve": 1.35, - "DeviationMax": 23 - }, - "_proto": "55d3632e4bdc2d972f8b4569" - }, - "5ac66bea5acfc43b321d4aec": { - "_id": "5ac66bea5acfc43b321d4aec", - "_name": "mag_ak_izhmash_ak103_std_762x39_30", + "64b9cf0ac12b9c38db26923a": { + "_id": "64b9cf0ac12b9c38db26923a", + "_name": "mag_ak_magpul_pmag_20_ak_akm_gen_m3_762x39_20", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_ak_izhmash_ak103_std_762x39_30", - "ShortName": "mag_ak_izhmash_ak103_std_762x39_30", - "Description": "mag_ak_izhmash_ak103_std_762x39_30", - "Weight": 0.215, + "Name": "mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30", + "ShortName": "mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30", + "Description": "mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30", + "Weight": 0.141, "BackgroundColor": "yellow", "Width": 1, "Height": 2, "StackMaxSize": 1, "ItemSound": "mag_plastic", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak_izhmash_ak103_std_762x39_30.bundle", + "path": "assets/content/items/mods/magazines/mag_ak_magpul_pmag_20_ak_akm_gen_m3_762x39_20.bundle", "rcid": "" }, "UsePrefab": { @@ -78266,7 +75715,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -3, + "Ergonomics": 2, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -78281,9 +75730,9 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "5ac66bea5acfc43b321d4aee", - "_parent": "5ac66bea5acfc43b321d4aec", - "_max_count": 30, + "_id": "64b9cf0ac12b9c38db26923b", + "_parent": "64b9cf0ac12b9c38db26923a", + "_max_count": 20, "_props": { "filters": [ { @@ -78298,9 +75747,9 @@ "59e4cf5286f7741778269d8a", "59e4d24686f7741776641ac7", "601aa3d2b2bcb34913271e6d", - "64b7af5a8532cf95ee0a0dbd", "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895" + "64b7af734b75259c590fa895", + "64b7af5a8532cf95ee0a0dbd" ] } ] @@ -78311,12 +75760,12 @@ "CanFast": true, "CanHit": false, "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, + "LoadUnloadModifier": -15, + "CheckTimeModifier": -10, "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.08, + "MalfunctionChance": 0.087, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, @@ -78325,23 +75774,23 @@ }, "_proto": "55d480c04bdc2d1d4e8b456a" }, - "5b7bef5d5acfc43bca7067a3": { - "_id": "5b7bef5d5acfc43bca7067a3", - "_name": "mag_fal_ds_arms_fal_sa58_762x51_30", + "5addccf45acfc400185c2989": { + "_id": "5addccf45acfc400185c2989", + "_name": "mag_m14_x_products_drum_magazine_m14_762x51_50", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_fal_ds_arms_fal_sa58_762x51_20", - "ShortName": "mag_fal_ds_arms_fal_sa58_762x51_20", - "Description": "mag_fal_ds_arms_fal_sa58_762x51_20\n", - "Weight": 0.49, + "Name": "mag_m14_x_products_drum_magazine_m14_762x51_50", + "ShortName": "mag_m14_x_products_drum_magazine_m14_762x51_50", + "Description": "mag_m14_x_products_drum_magazine_m14_762x51_50\n", + "Weight": 0.7, "BackgroundColor": "yellow", "Width": 1, "Height": 2, "StackMaxSize": 1, "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_fal_ds_arms_fal_sa58_762x51_30.bundle", + "path": "assets/content/items/mods/magazines/mag_m14_x_products_drum_magazine_m14_762x51_50.bundle", "rcid": "" }, "UsePrefab": { @@ -78394,7 +75843,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -9, + "Ergonomics": -17, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -78409,9 +75858,9 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "5b7bef5d5acfc43bca7067a5", - "_parent": "5b7bef5d5acfc43bca7067a3", - "_max_count": 30, + "_id": "5addccf45acfc400185c298b", + "_parent": "5addccf45acfc400185c2989", + "_max_count": 50, "_props": { "filters": [ { @@ -78433,12 +75882,12 @@ "CanFast": true, "CanHit": false, "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, + "LoadUnloadModifier": 40, + "CheckTimeModifier": 15, "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.2, + "VisibleAmmoRangesString": "1-2;19-27", + "MalfunctionChance": 0.256, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, @@ -78447,23 +75896,23 @@ }, "_proto": "5448c1d04bdc2dff2f8b4569" }, - "65293c38fc460e50a509cb25": { - "_id": "65293c38fc460e50a509cb25", - "_name": "mag_ar10_lancer_l7_awm_762x51_20", - "_parent": "5448bc234bdc2d3c308b4569", + "55d447bb4bdc2d892f8b456f": { + "_id": "55d447bb4bdc2d892f8b456f", + "_name": "barrel_mr43e-1c_725mm", + "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", - "ShortName": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", - "Description": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20\n", - "Weight": 0.35, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, + "Name": "Ствол 725мм для ружья МР-43е-1с 12к", + "ShortName": "725мм МР-43е-1с 12к", + "Description": "Ствол для двухствольного ружья МР-43е-1с под патрон 12-го калибра, длинной 725мм.", + "Weight": 1.6, + "BackgroundColor": "blue", + "Width": 5, + "Height": 1, "StackMaxSize": 1, - "ItemSound": "mag_plastic", + "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ar10_lancer_l7_awm_762x51_20.bundle", + "path": "assets/content/items/mods/barrels/barrel_mr43e-1c_725mm.bundle", "rcid": "" }, "UsePrefab": { @@ -78480,15 +75929,15 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, + "LootExperience": 25, + "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 0, + "ExtraSizeLeft": 4, "ExtraSizeRight": 0, "ExtraSizeUp": 0, - "ExtraSizeDown": 1, + "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, @@ -78513,11 +75962,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -12, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, + "Ergonomics": -9, + "Velocity": 15.21, "RaidModdable": true, "ToolModdable": false, "BlocksFolding": false, @@ -78527,67 +75976,33 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "magAnimationIndex": 3, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "65293c38fc460e50a509cb26", - "_parent": "65293c38fc460e50a509cb25", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1", - "6529243824cbe3c74a05e5c1", - "6529302b8c26af6326029fb7" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.02, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "5448c1d04bdc2dff2f8b4569" + "CenterOfImpact": 0.38, + "ShotgunDispersion": 1.33, + "IsSilencer": false, + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.798, + "CoolFactor": 0.836, + "DeviationCurve": 2.5, + "DeviationMax": 10 + } }, - "55d4887d4bdc2d962f8b4570": { - "_id": "55d4887d4bdc2d962f8b4570", - "_name": "mag_stanag_colt_ar15_std_556x45_30", + "55802d5f4bdc2dac148b458e": { + "_id": "55802d5f4bdc2dac148b458e", + "_name": "mag_stanag_magpul_pmag_gen_m3_window_556x45_30", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "Магазин Colt AR-15 5.56x45 STANAG на 30 патронов", - "ShortName": "5.56x45 Colt AR-15", - "Description": "30-ти зарядный металлический магазин Colt AR-15 выполненный по стандарту STANAG 4179, под патрон 5.56х45.\nСтандарт STANAG 4179 был принят членами НАТО в 1980 г., что бы дать возможность союзникам унифицировать боеприпасы и магазины на уровне отдельных солдат.", - "Weight": 0.117, + "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", + "ShortName": "5.56x45 PMAG GEN M3 30", + "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", + "Weight": 0.138, "BackgroundColor": "yellow", "Width": 1, "Height": 2, "StackMaxSize": 1, "ItemSound": "mag_plastic", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_stanag_colt_ar15_std_556x45_30.bundle", + "path": "assets/content/items/mods/magazines/mag_stanag_magpul_pmag_gen_m3_window_556x45_30.bundle", "rcid": "" }, "UsePrefab": { @@ -78655,8 +76070,8 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "574880192459771f661283c3", - "_parent": "55d4887d4bdc2d962f8b4570", + "_id": "57487b732459771f613b6651", + "_parent": "55802d5f4bdc2dac148b458e", "_max_count": 30, "_props": { "filters": [ @@ -78690,394 +76105,17 @@ "CanHit": false, "CanAdmin": false, "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.08, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55802d5f4bdc2dac148b458e" - }, - "6241c2c2117ad530666a5108": { - "_id": "6241c2c2117ad530666a5108", - "_name": "mag_stanag_maopul_pmag_airsoft_6_30_fde", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_stanag_maopul_pmag_airsoft_6_30_fde", - "ShortName": "mag_stanag_maopul_pmag_airsoft_6_30_fde", - "Description": "mag_stanag_maopul_pmag_airsoft_6_30_fde", - "Weight": 0.138, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_stanag_maopul_pmag_airsoft_6_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "6241c2c2117ad530666a5109", - "_parent": "6241c2c2117ad530666a5108", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "6241c316234b593b5676b637" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-2", - "MalfunctionChance": 0.08, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55802d5f4bdc2dac148b458e" - }, - "6272874a6c47bd74f92e2087": { - "_id": "6272874a6c47bd74f92e2087", - "_name": "mag_ak_fab_defense_ultimag_ak_30r_762x39_30", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_ak_izhmash_ak_std_55_762x39_30", - "ShortName": "mag_ak_izhmash_ak_std_55_762x39_30", - "Description": "mag_ak_izhmash_ak_std_55_762x39_30", - "Weight": 0.156, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_ak_fab_defense_ultimag_ak_30r_762x39_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "6272874a6c47bd74f92e2089", - "_parent": "6272874a6c47bd74f92e2087", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "59e655cb86f77411dc52a77b", - "59e6542b86f77411dc52a77a", - "59e6658b86f77411d949b250", - "5f0596629e22f464da6bbdd9", - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af5a8532cf95ee0a0dbd", - "64b7af734b75259c590fa895", - "64b7af434b75259c590fa893" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, + "CheckTimeModifier": -35, "CheckOverride": 1, "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.09, + "VisibleAmmoRangesString": "1-1;18-30", + "MalfunctionChance": 0.08, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d480c04bdc2d1d4e8b456a" - }, - "5a78830bc5856700137e4c90": { - "_id": "5a78830bc5856700137e4c90", - "_name": "mag_870_remington_magazie_extension_12g_7", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_870_remington_magazie_extension_12g_7", - "ShortName": "mag_870_remington_magazie_extension_12g_7", - "Description": "mag_870_remington_magazie_extension_12g_7", - "Weight": 0.3, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_870_remington_magazie_extension_12g_7.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 0, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5a78830bc5856700137e4c91", - "_parent": "5a78830bc5856700137e4c90", - "_max_count": 7, - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": false, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "InternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.01, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "55d4837c4bdc2d1d4e8b456c" + } }, "5b1fb3e15acfc4001637f068": { "_id": "5b1fb3e15acfc4001637f068", @@ -79207,23 +76245,23 @@ }, "_proto": "55d480c04bdc2d1d4e8b456a" }, - "6422e1ea3c0f06190302161a": { - "_id": "6422e1ea3c0f06190302161a", - "_name": "mag_svt40_toz_svt40_std_762x54r_10", + "65293c38fc460e50a509cb25": { + "_id": "65293c38fc460e50a509cb25", + "_name": "mag_ar10_lancer_l7_awm_762x51_20", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_sks_tapco_mag6610_762x39_10", - "ShortName": "mag_sks_tapco_mag6610_762x39_10", - "Description": "mag_sks_tapco_mag6610_762x39_10", - "Weight": 0.28, + "Name": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", + "ShortName": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20", + "Description": "mag_ar10_magpul_pmag_sr_gen_3_762x51_20\n", + "Weight": 0.35, "BackgroundColor": "yellow", "Width": 1, - "Height": 1, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "magazine_metal", + "ItemSound": "mag_plastic", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_svt40_toz_svt40_std_762x54r_10.bundle", + "path": "assets/content/items/mods/magazines/mag_ar10_lancer_l7_awm_762x51_20.bundle", "rcid": "" }, "UsePrefab": { @@ -79248,7 +76286,7 @@ "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, - "ExtraSizeDown": 0, + "ExtraSizeDown": 1, "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, @@ -79276,7 +76314,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -5, + "Ergonomics": -2, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -79287,26 +76325,26 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "magAnimationIndex": 0, + "magAnimationIndex": 3, "Cartridges": [ { "_name": "cartridges", - "_id": "6422e1ea3c0f06190302161b", - "_parent": "6422e1ea3c0f06190302161a", - "_max_count": 10, + "_id": "65293c38fc460e50a509cb26", + "_parent": "65293c38fc460e50a509cb25", + "_max_count": 20, "_props": { "filters": [ { "Filter": [ - "5e023d34e8a400319a28ed44", - "5e023d48186a883be655e551", - "5e023cf8186a883be655e54f", - "59e77a2386f7742ee578960a", - "5887431f2459777e1612938f", - "560d61e84bdc2da74d8b4571", - "64b8f7c241772715af0f9c3d", - "64b8f7b5389d7ffd620ccba2", - "64b8f7968532cf95ee0a0dbf" + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1", + "6529243824cbe3c74a05e5c1", + "6529302b8c26af6326029fb7" ] } ] @@ -79314,22 +76352,22 @@ "_proto": "5748538b2459770af276a261" } ], - "CanFast": false, + "CanFast": true, "CanHit": false, "CanAdmin": false, - "LoadUnloadModifier": 10, - "CheckTimeModifier": 10, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.07, + "MalfunctionChance": 0.02, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "55d480c04bdc2d1d4e8b456a" + "_proto": "5448c1d04bdc2dff2f8b4569" }, "65293c7a17e14363030ad308": { "_id": "65293c7a17e14363030ad308", @@ -79817,23 +76855,23 @@ }, "_proto": "55d35ee94bdc2d61338b4568" }, - "5a38ee51c4a282000c5a955c": { - "_id": "5a38ee51c4a282000c5a955c", - "_name": "mag_toz-106_mc_20-01_sb3_20x70_2", + "602286df23506e50807090c6": { + "_id": "602286df23506e50807090c6", + "_name": "mag_pl15_izhmash_pl15_std_9x19_16", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_toz-106_mc_20-01_sb3_20x70_2", - "ShortName": "mag_toz-106_mc_20-01_sb3_20x70_2", - "Description": "mag_toz-106_mc_20-01_sb3_20x70_2", - "Weight": 0.095, + "Name": "mag_glock_glock_std_9x19_17", + "ShortName": "mag_glock_glock_std_9x19_17", + "Description": "mag_glock_glock_std_9x19_17", + "Weight": 0.096, "BackgroundColor": "yellow", "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "mag_plastic", + "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_toz-106_mc_20-01_sb3_20x70_2.bundle", + "path": "assets/content/items/mods/magazines/mag_pl15_izhmash_pl15_std_9x19_16.bundle", "rcid": "" }, "UsePrefab": { @@ -79886,7 +76924,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 4, + "Ergonomics": -1, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -79901,21 +76939,22 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "5a38ee51c4a282000c5a955d", - "_parent": "5a38ee51c4a282000c5a955c", - "_max_count": 2, + "_id": "602286df23506e50807090c8", + "_parent": "602286df23506e50807090c6", + "_max_count": 16, "_props": { "filters": [ { "Filter": [ - "5a38ebd9c4a282000d722a5b", - "5d6e695fa4b936359b35d852", - "5d6e69b9a4b9361bc8618958", - "5d6e69c7a4b9360b6c0d54e4", - "5d6e6a5fa4b93614ec501745", - "5d6e6a53a4b9361bd473feec", - "5d6e6a42a4b9364f07165f52", - "5d6e6a05a4b93618084f58d0" + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" ] } ] @@ -79926,159 +76965,37 @@ "CanFast": true, "CanHit": false, "CanAdmin": false, - "LoadUnloadModifier": -20, - "CheckTimeModifier": 0, - "CheckOverride": 0, + "LoadUnloadModifier": -10, + "CheckTimeModifier": -20, + "CheckOverride": 1, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.033, + "MalfunctionChance": 0.02, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, "BeltMagazineRefreshCount": 0, "IsMagazineForStationaryWeapon": false }, - "_proto": "559ba5b34bdc2d1f1a8b4582" + "_proto": "5448c12b4bdc2d02308b456f" }, - "5ce69cbad7f00c00b61c5098": { - "_id": "5ce69cbad7f00c00b61c5098", - "_name": "mag_m700_magpul_pmag_762_ac_762x51_5", + "587df583245977373c4f1129": { + "_id": "587df583245977373c4f1129", + "_name": "mag_sks_tapco_mag6610_762x39_20", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_dvl-10_lobaev_308_10", - "ShortName": "mag_dvl-10_lobaev_308_10", - "Description": "mag_dvl-10_lobaev_308_10", - "Weight": 0.09, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mag_plastic", - "Prefab": { - "path": "assets/content/items/mods/magazines/mag_m700_magpul_pmag_762_ac_762x51_5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "magAnimationIndex": 5, - "Cartridges": [ - { - "_name": "cartridges", - "_id": "5ce69cbad7f00c00b61c509a", - "_parent": "5ce69cbad7f00c00b61c5098", - "_max_count": 5, - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ], - "CanFast": true, - "CanHit": false, - "CanAdmin": false, - "LoadUnloadModifier": -30, - "CheckTimeModifier": 0, - "CheckOverride": 0, - "ReloadMagType": "ExternalMagazine", - "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.01, - "TagColor": 0, - "TagName": "", - "MagazineWithBelt": false, - "BeltMagazineRefreshCount": 0, - "IsMagazineForStationaryWeapon": false - }, - "_proto": "559ba5b34bdc2d1f1a8b4582" - }, - "5b099ac65acfc400186331e1": { - "_id": "5b099ac65acfc400186331e1", - "_name": "mag_fal_ds_arms_fal_sa58_762x51_20", - "_parent": "5448bc234bdc2d3c308b4569", - "_type": "Item", - "_props": { - "Name": "mag_fal_ds_arms_fal_sa58_762x51_20", - "ShortName": "mag_fal_ds_arms_fal_sa58_762x51_20", - "Description": "mag_fal_ds_arms_fal_sa58_762x51_20\n", - "Weight": 0.35, + "Name": "mag_sks_tapco_mag6610_762x39_10", + "ShortName": "mag_sks_tapco_mag6610_762x39_10", + "Description": "mag_sks_tapco_mag6610_762x39_10", + "Weight": 0.112, "BackgroundColor": "yellow", "Width": 1, "Height": 2, "StackMaxSize": 1, "ItemSound": "mag_plastic", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_fal_ds_arms_fal_sa58_762x51_20.bundle", + "path": "assets/content/items/mods/magazines/mag_sks_tapco_mag6610_762x39_10.bundle", "rcid": "" }, "UsePrefab": { @@ -80142,24 +77059,158 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "magAnimationIndex": 0, + "magAnimationIndex": 1, "Cartridges": [ { "_name": "cartridges", - "_id": "5b099ac65acfc400186331e3", - "_parent": "5b099ac65acfc400186331e1", + "_id": "587df583245977373c4f112a", + "_parent": "587df583245977373c4f1129", "_max_count": 20, "_props": { "filters": [ { "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" + "59e655cb86f77411dc52a77b", + "59e6542b86f77411dc52a77a", + "59e6658b86f77411d949b250", + "5f0596629e22f464da6bbdd9", + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af5a8532cf95ee0a0dbd", + "64b7af434b75259c590fa893", + "64b7af734b75259c590fa895" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 10, + "CheckTimeModifier": 10, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.07, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, + "5cfe8010d7ad1a59283b14c6": { + "_id": "5cfe8010d7ad1a59283b14c6", + "_name": "mag_ak_x_products_x_47_drum_762x39_50", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_x_products_x_47_drum_762x39_50", + "ShortName": "mag_x_products_x_47_drum_762x39_50", + "Description": "mag_x_products_x_47_drum_762x39_50\n", + "Weight": 0.7, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ak_x_products_x_47_drum_762x39_50.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -15, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 6, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5cfe8010d7ad1a59283b14c8", + "_parent": "5cfe8010d7ad1a59283b14c6", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "59e655cb86f77411dc52a77b", + "59e6542b86f77411dc52a77a", + "59e6658b86f77411d949b250", + "5f0596629e22f464da6bbdd9", + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af5a8532cf95ee0a0dbd", + "64b7af434b75259c590fa893", + "64b7af734b75259c590fa895" ] } ] @@ -80170,12 +77221,12 @@ "CanFast": true, "CanHit": false, "CanAdmin": false, - "LoadUnloadModifier": 0, - "CheckTimeModifier": 0, + "LoadUnloadModifier": 15, + "CheckTimeModifier": 20, "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.15, + "MalfunctionChance": 0.28, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, @@ -80184,23 +77235,23 @@ }, "_proto": "5448c1d04bdc2dff2f8b4569" }, - "64b9e2037fdfb81df81e3c25": { - "_id": "64b9e2037fdfb81df81e3c25", - "_name": "mag_m14_springfield_armory_762x51_10", + "5addcce35acfc4001a5fc635": { + "_id": "5addcce35acfc4001a5fc635", + "_name": "mag_m14_triple_k_m14_magazine_762x51_30", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "mag_m1a_springfield_armory_762x51_20", - "ShortName": "mag_m1a_springfield_armory_762x51_20", - "Description": "mag_m1a_springfield_armory_762x51_20\n", - "Weight": 0.159, + "Name": "mag_m14_triple_k_m14_magazine_762x51_30", + "ShortName": "mag_m14_triple_k_m14_magazine_762x51_30", + "Description": "mag_m14_triple_k_m14_magazine_762x51_30\n", + "Weight": 0.34, "BackgroundColor": "yellow", "Width": 1, - "Height": 1, + "Height": 2, "StackMaxSize": 1, "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_m14_springfield_armory_762x51_10.bundle", + "path": "assets/content/items/mods/magazines/mag_m14_triple_k_m14_magazine_762x51_30.bundle", "rcid": "" }, "UsePrefab": { @@ -80253,7 +77304,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 4, + "Ergonomics": -6, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -80264,13 +77315,13 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "magAnimationIndex": 3, + "magAnimationIndex": 1, "Cartridges": [ { "_name": "cartridges", - "_id": "64b9e2037fdfb81df81e3c26", - "_parent": "64b9e2037fdfb81df81e3c25", - "_max_count": 10, + "_id": "5addcce35acfc4001a5fc637", + "_parent": "5addcce35acfc4001a5fc635", + "_max_count": 30, "_props": { "filters": [ { @@ -80292,12 +77343,12 @@ "CanFast": true, "CanHit": false, "CanAdmin": false, - "LoadUnloadModifier": -10, - "CheckTimeModifier": -10, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.03, + "MalfunctionChance": 0.08, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, @@ -80306,23 +77357,406 @@ }, "_proto": "5448c1d04bdc2dff2f8b4569" }, - "61840d85568c120fdd2962a5": { - "_id": "61840d85568c120fdd2962a5", - "_name": "mag_stanag_fn_mk16_std_556x45_30_fde", + "5a38ed75c4a28232996e40c6": { + "_id": "5a38ed75c4a28232996e40c6", + "_name": "mag_toz-106_mc_20-01_sb3_20x70_4", "_parent": "5448bc234bdc2d3c308b4569", "_type": "Item", "_props": { - "Name": "Магазин Colt AR-15 5.56x45 STANAG на 30 патронов", - "ShortName": "5.56x45 Colt AR-15", - "Description": "30-ти зарядный металлический магазин Colt AR-15 выполненный по стандарту STANAG 4179, под патрон 5.56х45.\nСтандарт STANAG 4179 был принят членами НАТО в 1980 г., что бы дать возможность союзникам унифицировать боеприпасы и магазины на уровне отдельных солдат.", - "Weight": 0.117, + "Name": "mag_toz-106_mc_20-01_sb3_20x70_4", + "ShortName": "mag_toz-106_mc_20-01_sb3_20x70_4", + "Description": "mag_toz-106_mc_20-01_sb3_20x70_4", + "Weight": 0.11, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_toz-106_mc_20-01_sb3_20x70_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 1, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5a38ed75c4a28232996e40c7", + "_parent": "5a38ed75c4a28232996e40c6", + "_max_count": 4, + "_props": { + "filters": [ + { + "Filter": [ + "5a38ebd9c4a282000d722a5b", + "5d6e695fa4b936359b35d852", + "5d6e69b9a4b9361bc8618958", + "5d6e69c7a4b9360b6c0d54e4", + "5d6e6a5fa4b93614ec501745", + "5d6e6a53a4b9361bd473feec", + "5d6e6a42a4b9364f07165f52", + "5d6e6a05a4b93618084f58d0" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -20, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.052, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "559ba5b34bdc2d1f1a8b4582" + }, + "5a718f958dc32e00094b97e7": { + "_id": "5a718f958dc32e00094b97e7", + "_name": "mag_glock_sgmt_glock_drum_50_9x19_50", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_glock_sgmt_glock_drum_50_9x19_50", + "ShortName": "mag_glock_sgmt_glock_drum_50_9x19_50", + "Description": "mag_glock_sgmt_glock_drum_50_9x19_50", + "Weight": 0.6, "BackgroundColor": "yellow", "Width": 1, "Height": 2, "StackMaxSize": 1, "ItemSound": "magazine_metal", "Prefab": { - "path": "assets/content/items/mods/magazines/mag_stanag_fn_mk16_std_556x45_30_fde.bundle", + "path": "assets/content/items/mods/magazines/mag_glock_sgmt_glock_drum_50_9x19_50.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -19, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 3, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5a718f958dc32e00094b97e8", + "_parent": "5a718f958dc32e00094b97e7", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -10, + "CheckTimeModifier": 20, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.208, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, + "625ff31daaaa8c1130599f64": { + "_id": "625ff31daaaa8c1130599f64", + "_name": "mag_m3_benelli_magazine_extension_12g_13", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_870_remington_magazie_extension_12g_7", + "ShortName": "mag_870_remington_magazie_extension_12g_7", + "Description": "mag_870_remington_magazie_extension_12g_7", + "Weight": 0.34, + "BackgroundColor": "yellow", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_m3_tonisystem_magazine_extension_12g_13.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5b363dea5acfc4771e1c5e7e", + "59c0ec5b86f77435b128bfca", + "58272d7f2459774f6311ddfd" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "625ff31daaaa8c1130599f66", + "_parent": "625ff31daaaa8c1130599f64", + "_max_count": 13, + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "InternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.013, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d4837c4bdc2d1d4e8b456c" + }, + "5c6d450c2e221600114c997d": { + "_id": "5c6d450c2e221600114c997d", + "_name": "mag_stanag_hk_gen_2_pm_556x45_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", + "ShortName": "5.56x45 PMAG GEN M3 30", + "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", + "Weight": 0.16, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_stanag_hk_gen_2_pm_556x45_30.bundle", "rcid": "" }, "UsePrefab": { @@ -80390,8 +77824,8 @@ "Cartridges": [ { "_name": "cartridges", - "_id": "61840d85568c120fdd2962a7", - "_parent": "61840d85568c120fdd2962a5", + "_id": "5c6d450c2e221600114c997f", + "_parent": "5c6d450c2e221600114c997d", "_max_count": 30, "_props": { "filters": [ @@ -80421,7 +77855,7 @@ "_proto": "5748538b2459770af276a261" } ], - "CanFast": false, + "CanFast": true, "CanHit": false, "CanAdmin": false, "LoadUnloadModifier": 0, @@ -80429,7 +77863,7 @@ "CheckOverride": 0, "ReloadMagType": "ExternalMagazine", "VisibleAmmoRangesString": "1-3", - "MalfunctionChance": 0.08, + "MalfunctionChance": 0.07, "TagColor": 0, "TagName": "", "MagazineWithBelt": false, @@ -80438,23 +77872,33 @@ }, "_proto": "55802d5f4bdc2dac148b458e" }, - "5c0e2f94d174af029f650d56": { - "_id": "5c0e2f94d174af029f650d56", - "_name": "barrel_ar15_adar_406mm", + "55818b224bdc2dde698b456f": { + "_id": "55818b224bdc2dde698b456f", + "_name": "Mount", + "_parent": "55802f3e4bdc2de7118b4584", + "_type": "Node", + "_props": { + "HeatFactor": 1, + "CoolFactor": 1 + } + }, + "5d440b9fa4b93601354d480c": { + "_id": "5d440b9fa4b93601354d480c", + "_name": "barrel_ar15_508mm", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "Ствол 370мм для AR-15 и совместимых 5.56х45", - "ShortName": "370мм AR-15 5.56х45", - "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 370мм. Соответствует стандартному стволу для M4A1.\n", - "Weight": 0.594, + "Name": "barrel_ar15_508mm", + "ShortName": "barrel_ar15_508mm", + "Description": "barrel_ar15_508mm", + "Weight": 0.91, "BackgroundColor": "blue", - "Width": 3, + "Width": 4, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_ar15_adar_406mm.bundle", + "path": "assets/content/items/mods/barrels/barrel_ar15_508mm.bundle", "rcid": "" }, "UsePrefab": { @@ -80471,12 +77915,12 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 15, + "LootExperience": 20, "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 3, + "ExtraSizeLeft": 4, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -80485,8 +77929,13 @@ "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [ + "5c0e2f5cd174af02a012cfc9", "5ae30db85acfc408fb139a05", - "55d459824bdc2d892f8b4573" + "55d459824bdc2d892f8b4573", + "5c78f2792e221600106f4683", + "5c78f26f2e221601da3581d1", + "5d00e0cbd7ad1a6c6566a42d", + "5d00f63bd7ad1a59283b1c1e" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -80505,8 +77954,8 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "5c0e2f94d174af029f650d58", - "_parent": "5c0e2f94d174af029f650d56", + "_id": "5d440b9fa4b93601354d480e", + "_parent": "5d440b9fa4b93601354d480c", "_props": { "filters": [ { @@ -80554,8 +78003,8 @@ }, { "_name": "mod_gas_block", - "_id": "5c0e2f94d174af029f650d59", - "_parent": "5c0e2f94d174af029f650d56", + "_id": "5d440b9fa4b93601354d480f", + "_parent": "5d440b9fa4b93601354d480c", "_props": { "filters": [ { @@ -80579,11 +78028,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -4, + "Recoil": -6, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -15, - "Velocity": -5.48, + "Ergonomics": -29, + "Velocity": -3.1, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -80593,17 +78042,705 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.064, + "CenterOfImpact": 0.032, "ShotgunDispersion": 1, "IsSilencer": false, - "DurabilityBurnModificator": 1.04, - "HeatFactor": 0.98, - "CoolFactor": 0.99, + "DurabilityBurnModificator": 1.05, + "HeatFactor": 0.94, + "CoolFactor": 0.94, "DeviationCurve": 1.35, "DeviationMax": 23 }, "_proto": "55d3632e4bdc2d972f8b4569" }, + "6272874a6c47bd74f92e2087": { + "_id": "6272874a6c47bd74f92e2087", + "_name": "mag_ak_fab_defense_ultimag_ak_30r_762x39_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_ak_izhmash_ak_std_55_762x39_30", + "ShortName": "mag_ak_izhmash_ak_std_55_762x39_30", + "Description": "mag_ak_izhmash_ak_std_55_762x39_30", + "Weight": 0.156, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ak_fab_defense_ultimag_ak_30r_762x39_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "6272874a6c47bd74f92e2089", + "_parent": "6272874a6c47bd74f92e2087", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "59e655cb86f77411dc52a77b", + "59e6542b86f77411dc52a77a", + "59e6658b86f77411d949b250", + "5f0596629e22f464da6bbdd9", + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af5a8532cf95ee0a0dbd", + "64b7af734b75259c590fa895", + "64b7af434b75259c590fa893" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 1, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.09, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, + "5a78830bc5856700137e4c90": { + "_id": "5a78830bc5856700137e4c90", + "_name": "mag_870_remington_magazie_extension_12g_7", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_870_remington_magazie_extension_12g_7", + "ShortName": "mag_870_remington_magazie_extension_12g_7", + "Description": "mag_870_remington_magazie_extension_12g_7", + "Weight": 0.3, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_870_remington_magazie_extension_12g_7.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5a78830bc5856700137e4c91", + "_parent": "5a78830bc5856700137e4c90", + "_max_count": 7, + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "InternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.01, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d4837c4bdc2d1d4e8b456c" + }, + "6422e1ea3c0f06190302161a": { + "_id": "6422e1ea3c0f06190302161a", + "_name": "mag_svt40_toz_svt40_std_762x54r_10", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_sks_tapco_mag6610_762x39_10", + "ShortName": "mag_sks_tapco_mag6610_762x39_10", + "Description": "mag_sks_tapco_mag6610_762x39_10", + "Weight": 0.28, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_svt40_toz_svt40_std_762x54r_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "6422e1ea3c0f06190302161b", + "_parent": "6422e1ea3c0f06190302161a", + "_max_count": 10, + "_props": { + "filters": [ + { + "Filter": [ + "5e023d34e8a400319a28ed44", + "5e023d48186a883be655e551", + "5e023cf8186a883be655e54f", + "59e77a2386f7742ee578960a", + "5887431f2459777e1612938f", + "560d61e84bdc2da74d8b4571", + "64b8f7c241772715af0f9c3d", + "64b8f7b5389d7ffd620ccba2", + "64b8f7968532cf95ee0a0dbf" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 10, + "CheckTimeModifier": 10, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.07, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, + "55d3632e4bdc2d972f8b4569": { + "_id": "55d3632e4bdc2d972f8b4569", + "_name": "barrel_ar15_370mm", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 370мм для AR-15 и совместимых 5.56х45", + "ShortName": "370мм AR-15 5.56х45", + "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 370мм. Соответствует стандартному стволу для M4A1.\n", + "Weight": 0.509, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_ar15_370mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "55dc9adc4bdc2d86028b4576", + "_parent": "55d3632e4bdc2d972f8b4569", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b3a16655acfc40016387a2a", + "5c7e5f112e221600106f4ede", + "5c0fafb6d174af02a96260ba", + "612e0cfc8004cc50514c2d9e", + "5cf6937cd7f00c056c53fb39", + "544a38634bdc2d58388b4568", + "5cff9e5ed7ad1a09407397d4", + "5c48a2a42e221602b66d1e07", + "5f6372e2865db925d54f3869", + "615d8e2f1cb55961fa0fd9a4", + "56ea8180d2720bf2698b456a", + "5d02676dd7ad1a049e54f6dc", + "56ea6fafd2720b844b8b4593", + "5943ee5a86f77413872d25ec", + "609269c3b0e443224b421cc1", + "5c7fb51d2e2216001219ce11", + "5ea172e498dacb342978818e", + "5c6d710d2e22165df16b81e7", + "612e0e55a112697a4b3a66e7", + "5d440625a4b9361eec4ae6c5", + "5cc9b815d7f00c000e2579d6", + "5a7c147ce899ef00150bd8b8", + "5c7954d52e221600106f4cc7", + "59bffc1f86f77435b128b872", + "5a9fbb84a2750c00137fa685", + "626667e87379c44d557b7550", + "62669bccdb9ebb4daa44cd14", + "626a74340be03179a165e30c", + "6386120cd6baa055ad1e201c", + "63ac5c9658d0485fc039f0b8", + "6405ff6bd4578826ec3e377a", + "64943b74e9998d641b0412ed" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_gas_block", + "_id": "56ea8e89d2720b75698b4568", + "_parent": "55d3632e4bdc2d972f8b4569", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ae30e795acfc408fb139a0b", + "56eabcd4d2720b66698b4574", + "5d00ec68d7ad1a04a067e5be", + "56ea8d2fd2720b7c698b4570", + "63d3ce281fe77d0f2801859e" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_launcher", + "_id": "6357cd4b6bd1f226843c249f", + "_parent": "55d3632e4bdc2d972f8b4569", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6357c98711fb55120211f7e1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -14, + "Velocity": -6.48, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.053, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 0.96, + "HeatFactor": 1.02, + "CoolFactor": 1.03, + "DeviationCurve": 1.35, + "DeviationMax": 23 + } + }, + "5c0673fb0db8340023300271": { + "_id": "5c0673fb0db8340023300271", + "_name": "mag_pp-19-01_pufgun_mag_sg-919_20_9x19_20", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30", + "ShortName": "mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30", + "Description": "mag_pp-19-01_pufgun_mag_sg-919_30_9x19_30", + "Weight": 0.085, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_pp-19-01_pufgun_mag_sg-919_20_9x19_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5c0673fb0db8340023300273", + "_parent": "5c0673fb0db8340023300271", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -15, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.08, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, "5e81c4ca763d9f754677befa": { "_id": "5e81c4ca763d9f754677befa", "_name": "mag_m1911_colt_m1911a1_std_1143x23_7", @@ -81112,6 +79249,266 @@ "DurabilityBurnModificator": 1 } }, + "56deec93d2720bec348b4568": { + "_id": "56deec93d2720bec348b4568", + "_name": "barrel_mr153_750mm", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 750мм для ружья МР-153 12к", + "ShortName": "750мм МР-153 12к", + "Description": "Стандартный заводской ствол для ружья МР-153 длинной 750мм под патрон 12-го калибра.", + "Weight": 1.55, + "BackgroundColor": "blue", + "Width": 5, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mr153_750mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 25, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "56deed28d2720bbd328b4568", + "_parent": "56deec93d2720bec348b4568", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0111ab0db834001966914d", + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5dfe4173a3651922b360bf8c", + "_parent": "56deec93d2720bec348b4568", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "609b9e31506cf869cf3eaf41", + "5dfe14f30b92095fd441edaf" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -10, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -20, + "Velocity": 17.91, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.3, + "ShotgunDispersion": 1.2, + "IsSilencer": false, + "DurabilityBurnModificator": 1.1, + "HeatFactor": 0.82, + "CoolFactor": 0.86, + "DeviationCurve": 2.5, + "DeviationMax": 10 + }, + "_proto": "5608379a4bdc2d26448b4569" + }, + "612368f58b401f4f51239b33": { + "_id": "612368f58b401f4f51239b33", + "_name": "barrel_mc255_755mm_12g", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 750мм для ружья МР-133 12к с прицельной планкой", + "ShortName": "750мм МР-133 12к", + "Description": "Стандартный заводской ствол для ружья МР-133 длинной 750мм под патрон 12-го калибра, с широкой прицельной планкой.", + "Weight": 1.55, + "BackgroundColor": "blue", + "Width": 5, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mc255_755mm_12g.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 25, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "612368f58b401f4f51239b35", + "_parent": "612368f58b401f4f51239b33", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "619d36da53b4d42ee724fae4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "619d3a31142be829c6730450", + "_parent": "612368f58b401f4f51239b33", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "609b9e31506cf869cf3eaf41", + "5dfe14f30b92095fd441edaf" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -10, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -18, + "Velocity": 18.9, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.28, + "ShotgunDispersion": 1.05, + "IsSilencer": false, + "DurabilityBurnModificator": 1.08, + "HeatFactor": 0.82, + "CoolFactor": 0.86, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "560837544bdc2de22e8b456e" + }, "5c5db5c62e22160012542255": { "_id": "5c5db5c62e22160012542255", "_name": "barrel_mpx_355mm_9x19", @@ -81229,6 +79626,97 @@ }, "_proto": "55d35ee94bdc2d61338b4568" }, + "5e848d1c264f7c180b5e35a9": { + "_id": "5e848d1c264f7c180b5e35a9", + "_name": "barrel_ks23_510mm_23x75", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_ks23_510mm_23x75", + "ShortName": "barrel_ks23_510mm_23x75", + "Description": "barrel_ks23_510mm_23x75", + "Weight": 0.91, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_ks23_510mm_23x75.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": 1.4, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.75, + "ShotgunDispersion": 1.62, + "IsSilencer": false, + "DurabilityBurnModificator": 0.91, + "HeatFactor": 0.88, + "CoolFactor": 0.92, + "DeviationCurve": 3, + "DeviationMax": 9 + }, + "_proto": "55d448594bdc2d8c2f8b4569" + }, "5a34fae7c4a2826c6e06d760": { "_id": "5a34fae7c4a2826c6e06d760", "_name": "barrel_ar10_558mm", @@ -81382,23 +79870,23 @@ }, "_proto": "55d3632e4bdc2d972f8b4569" }, - "612368f58b401f4f51239b33": { - "_id": "612368f58b401f4f51239b33", - "_name": "barrel_mc255_755mm_12g", + "55d448594bdc2d8c2f8b4569": { + "_id": "55d448594bdc2d8c2f8b4569", + "_name": "barrel_mr133_610mm", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "Ствол 750мм для ружья МР-133 12к с прицельной планкой", - "ShortName": "750мм МР-133 12к", - "Description": "Стандартный заводской ствол для ружья МР-133 длинной 750мм под патрон 12-го калибра, с широкой прицельной планкой.", - "Weight": 1.55, + "Name": "Ствол 610мм для ружья МР-133 12к", + "ShortName": "610мм МР-133", + "Description": "Стандартный заводской ствол для ружья МР-133 под патрон 12-го калибра, длинной 610мм.", + "Weight": 1.2, "BackgroundColor": "blue", - "Width": 5, + "Width": 4, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mc255_755mm_12g.bundle", + "path": "assets/content/items/mods/barrels/barrel_mr133_610mm.bundle", "rcid": "" }, "UsePrefab": { @@ -81415,12 +79903,12 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 25, + "LootExperience": 20, "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 3, + "ExtraSizeLeft": 2, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -81446,33 +79934,16 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "612368f58b401f4f51239b35", - "_parent": "612368f58b401f4f51239b33", + "_id": "56e31509d2720b4c098b4567", + "_parent": "55d448594bdc2d8c2f8b4569", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "619d36da53b4d42ee724fae4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "619d3a31142be829c6730450", - "_parent": "612368f58b401f4f51239b33", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "609b9e31506cf869cf3eaf41", - "5dfe14f30b92095fd441edaf" + "5c0111ab0db834001966914d", + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" ] } ] @@ -81486,11 +79957,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -10, + "Recoil": -4, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -18, - "Velocity": 18.9, + "Ergonomics": -7, + "Velocity": 10.8, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -81500,16 +79971,16 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.28, - "ShotgunDispersion": 1.05, + "CenterOfImpact": 0.58, + "ShotgunDispersion": 1.4, "IsSilencer": false, - "DurabilityBurnModificator": 1.08, - "HeatFactor": 0.82, - "CoolFactor": 0.86, - "DeviationCurve": 2.25, - "DeviationMax": 11 + "DurabilityBurnModificator": 1, + "HeatFactor": 0.88, + "CoolFactor": 0.92, + "DeviationCurve": 2.5, + "DeviationMax": 10 }, - "_proto": "560837544bdc2de22e8b456e" + "_proto": "55d447bb4bdc2d892f8b456f" }, "5894a2c386f77427140b8342": { "_id": "5894a2c386f77427140b8342", @@ -81632,23 +80103,1272 @@ }, "_proto": "55d35ee94bdc2d61338b4568" }, - "5cc701aae4a949000e1ea45c": { - "_id": "5cc701aae4a949000e1ea45c", - "_name": "barrel_p90_264mm_57x28", + "5c6d42cb2e2216000e69d7d1": { + "_id": "5c6d42cb2e2216000e69d7d1", + "_name": "mag_stanag_hk_polymer_mag_556x45_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин PMAG GEN M3 30 5.56x45 STANAG на 30 патронов", + "ShortName": "5.56x45 PMAG GEN M3 30", + "Description": "30-ти зарядный полимерный магазин Magpul PMAG GEN M3 30, под патрон 5.56х45 с окном для контроля количества боеприпасов.", + "Weight": 0.17, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_stanag_hk_polymer_mag_556x45_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5c6d42cb2e2216000e69d7d3", + "_parent": "5c6d42cb2e2216000e69d7d1", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302", + "5fbe3ffdf8b6a877a729ea82", + "5fd20ff893a8961fc660a954", + "619636be6db0f2477964e710", + "6196364158ef8c428c287d9f", + "6196365d58ef8c428c287da1", + "64b8725c4b75259c590fa899" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 20, + "CheckOverride": 1, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.05, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55802d5f4bdc2dac148b458e" + }, + "63076701a987397c0816d21b": { + "_id": "63076701a987397c0816d21b", + "_name": "mag_glock_glock_w_pad_9x19_19_fde", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_glock_glock_std_9x19_17", + "ShortName": "mag_glock_glock_std_9x19_17", + "Description": "mag_glock_glock_std_9x19_17", + "Weight": 0.106, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_glock_glock_w_pad_9x19_19_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1.5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "63076701a987397c0816d21c", + "_parent": "63076701a987397c0816d21b", + "_max_count": 19, + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -10, + "CheckTimeModifier": -20, + "CheckOverride": 1, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.085, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c12b4bdc2d02308b456f" + }, + "5a38ee51c4a282000c5a955c": { + "_id": "5a38ee51c4a282000c5a955c", + "_name": "mag_toz-106_mc_20-01_sb3_20x70_2", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_toz-106_mc_20-01_sb3_20x70_2", + "ShortName": "mag_toz-106_mc_20-01_sb3_20x70_2", + "Description": "mag_toz-106_mc_20-01_sb3_20x70_2", + "Weight": 0.095, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_toz-106_mc_20-01_sb3_20x70_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5a38ee51c4a282000c5a955d", + "_parent": "5a38ee51c4a282000c5a955c", + "_max_count": 2, + "_props": { + "filters": [ + { + "Filter": [ + "5a38ebd9c4a282000d722a5b", + "5d6e695fa4b936359b35d852", + "5d6e69b9a4b9361bc8618958", + "5d6e69c7a4b9360b6c0d54e4", + "5d6e6a5fa4b93614ec501745", + "5d6e6a53a4b9361bd473feec", + "5d6e6a42a4b9364f07165f52", + "5d6e6a05a4b93618084f58d0" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -20, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.033, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "559ba5b34bdc2d1f1a8b4582" + }, + "5ce69cbad7f00c00b61c5098": { + "_id": "5ce69cbad7f00c00b61c5098", + "_name": "mag_m700_magpul_pmag_762_ac_762x51_5", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_dvl-10_lobaev_308_10", + "ShortName": "mag_dvl-10_lobaev_308_10", + "Description": "mag_dvl-10_lobaev_308_10", + "Weight": 0.09, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_m700_magpul_pmag_762_ac_762x51_5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 5, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5ce69cbad7f00c00b61c509a", + "_parent": "5ce69cbad7f00c00b61c5098", + "_max_count": 5, + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -30, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.01, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "559ba5b34bdc2d1f1a8b4582" + }, + "5b099ac65acfc400186331e1": { + "_id": "5b099ac65acfc400186331e1", + "_name": "mag_fal_ds_arms_fal_sa58_762x51_20", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_fal_ds_arms_fal_sa58_762x51_20", + "ShortName": "mag_fal_ds_arms_fal_sa58_762x51_20", + "Description": "mag_fal_ds_arms_fal_sa58_762x51_20\n", + "Weight": 0.35, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_fal_ds_arms_fal_sa58_762x51_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5b099ac65acfc400186331e3", + "_parent": "5b099ac65acfc400186331e1", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.15, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c1d04bdc2dff2f8b4569" + }, + "59d6272486f77466146386ff": { + "_id": "59d6272486f77466146386ff", + "_name": "mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30", + "ShortName": "mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30", + "Description": "mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30", + "Weight": 0.2, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_ak_magpul_pmag_30_ak_akm_gen_m3_762x39_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1.5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "59d6272486f7746614638700", + "_parent": "59d6272486f77466146386ff", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "59e655cb86f77411dc52a77b", + "59e6542b86f77411dc52a77a", + "59e6658b86f77411d949b250", + "5f0596629e22f464da6bbdd9", + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af5a8532cf95ee0a0dbd", + "64b7af434b75259c590fa893", + "64b7af734b75259c590fa895" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -10, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.106, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d480c04bdc2d1d4e8b456a" + }, + "64b9e2037fdfb81df81e3c25": { + "_id": "64b9e2037fdfb81df81e3c25", + "_name": "mag_m14_springfield_armory_762x51_10", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_m1a_springfield_armory_762x51_20", + "ShortName": "mag_m1a_springfield_armory_762x51_20", + "Description": "mag_m1a_springfield_armory_762x51_20\n", + "Weight": 0.159, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_m14_springfield_armory_762x51_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 3, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "64b9e2037fdfb81df81e3c26", + "_parent": "64b9e2037fdfb81df81e3c25", + "_max_count": 10, + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": true, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": -10, + "CheckTimeModifier": -10, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.03, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "5448c1d04bdc2dff2f8b4569" + }, + "61840d85568c120fdd2962a5": { + "_id": "61840d85568c120fdd2962a5", + "_name": "mag_stanag_fn_mk16_std_556x45_30_fde", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "Магазин Colt AR-15 5.56x45 STANAG на 30 патронов", + "ShortName": "5.56x45 Colt AR-15", + "Description": "30-ти зарядный металлический магазин Colt AR-15 выполненный по стандарту STANAG 4179, под патрон 5.56х45.\nСтандарт STANAG 4179 был принят членами НАТО в 1980 г., что бы дать возможность союзникам унифицировать боеприпасы и магазины на уровне отдельных солдат.", + "Weight": 0.117, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "magazine_metal", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_stanag_fn_mk16_std_556x45_30_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "61840d85568c120fdd2962a7", + "_parent": "61840d85568c120fdd2962a5", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302", + "5fbe3ffdf8b6a877a729ea82", + "5fd20ff893a8961fc660a954", + "619636be6db0f2477964e710", + "6196364158ef8c428c287d9f", + "6196365d58ef8c428c287da1", + "64b8725c4b75259c590fa899" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "ExternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.08, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55802d5f4bdc2dac148b458e" + }, + "5a78832ec5856700155a6ca3": { + "_id": "5a78832ec5856700155a6ca3", + "_name": "mag_870_remington_magazie_extension_12g_10", + "_parent": "5448bc234bdc2d3c308b4569", + "_type": "Item", + "_props": { + "Name": "mag_870_remington_magazie_extension_12g_10", + "ShortName": "mag_870_remington_magazie_extension_12g_10", + "Description": "mag_870_remington_magazie_extension_12g_10", + "Weight": 0.4, + "BackgroundColor": "yellow", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mag_plastic", + "Prefab": { + "path": "assets/content/items/mods/magazines/mag_870_remington_magazie_extension_12g_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "magAnimationIndex": 0, + "Cartridges": [ + { + "_name": "cartridges", + "_id": "5a78832ec5856700155a6ca4", + "_parent": "5a78832ec5856700155a6ca3", + "_max_count": 10, + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ], + "CanFast": false, + "CanHit": false, + "CanAdmin": false, + "LoadUnloadModifier": 0, + "CheckTimeModifier": 0, + "CheckOverride": 0, + "ReloadMagType": "InternalMagazine", + "VisibleAmmoRangesString": "1-3", + "MalfunctionChance": 0.01, + "TagColor": 0, + "TagName": "", + "MagazineWithBelt": false, + "BeltMagazineRefreshCount": 0, + "IsMagazineForStationaryWeapon": false + }, + "_proto": "55d4837c4bdc2d1d4e8b456c" + }, + "560836fb4bdc2d773f8b4569": { + "_id": "560836fb4bdc2d773f8b4569", + "_name": "barrel_mr133_660mm", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "barrel_416_hk_419mm_556x45", - "ShortName": "barrel_416_hk_419mm_556x45", - "Description": "barrel_416_hk_419mm_556x45", - "Weight": 0.5, + "Name": "Ствол 660мм для ружья МР-133 12к", + "ShortName": "660мм МР-133", + "Description": "Стандартный заводской ствол для ружья МР-133 под патрон 12-го калибра, длинной 660мм.", + "Weight": 1.2, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mr133_610mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "56e3156fd2720b6c058b4569", + "_parent": "560836fb4bdc2d773f8b4569", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0111ab0db834001966914d", + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -12, + "Velocity": 13.5, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.5, + "ShotgunDispersion": 1.3, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.86, + "CoolFactor": 0.9, + "DeviationCurve": 2.5, + "DeviationMax": 10 + }, + "_proto": "55d448594bdc2d8c2f8b4569" + }, + "5fbbfacda56d053a3543f799": { + "_id": "5fbbfacda56d053a3543f799", + "_name": "barrel_mcx_229mm_762x35", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_mcx_229mm_762x35", + "ShortName": "barrel_mcx_229mm_762x35", + "Description": "barrel_mcx_229mm_762x35", + "Weight": 0.479, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_p90_264mm_57x28.bundle", + "path": "assets/content/items/mods/barrels/barrel_mcx_229mm_762x35.bundle", "rcid": "" }, "UsePrefab": { @@ -81670,7 +81390,137 @@ "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5fbbfacda56d053a3543f79b", + "_parent": "5fbbfacda56d053a3543f799", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5dfa3cd1b33c0951220c079b", + "5fbc22ccf24b94483f726483", + "5fbe7618d6fa9c00c571bb6c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_gas_block", + "_id": "5fbbfacda56d053a3543f79c", + "_parent": "5fbbfacda56d053a3543f799", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fbc210bf24b94483f726481" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -6, + "Velocity": -12.31, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.08, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.02, + "CoolFactor": 1.03, + "DeviationCurve": 1.6, + "DeviationMax": 19 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "5c0e2f94d174af029f650d56": { + "_id": "5c0e2f94d174af029f650d56", + "_name": "barrel_ar15_adar_406mm", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 370мм для AR-15 и совместимых 5.56х45", + "ShortName": "370мм AR-15 5.56х45", + "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 370мм. Соответствует стандартному стволу для M4A1.\n", + "Weight": 0.594, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_ar15_adar_406mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -81679,11 +81529,8 @@ "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [ - "5c6d10e82e221601da357b07", - "5bb20dfcd4351e00334c9e24", - "5c6d11072e2216000e69d2e4", - "5c6d11152e2216000f2003e7", - "5c6c2c9c2e2216000f2002e4" + "5ae30db85acfc408fb139a05", + "55d459824bdc2d892f8b4573" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -81702,14 +81549,198 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "5cc701aae4a949000e1ea45e", - "_parent": "5cc701aae4a949000e1ea45c", + "_id": "5c0e2f94d174af029f650d58", + "_parent": "5c0e2f94d174af029f650d56", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5cc82796e24e8d000f5859a8" + "5b3a16655acfc40016387a2a", + "5c7e5f112e221600106f4ede", + "5c0fafb6d174af02a96260ba", + "612e0cfc8004cc50514c2d9e", + "5cf6937cd7f00c056c53fb39", + "544a38634bdc2d58388b4568", + "5cff9e5ed7ad1a09407397d4", + "5c48a2a42e221602b66d1e07", + "5f6372e2865db925d54f3869", + "615d8e2f1cb55961fa0fd9a4", + "56ea8180d2720bf2698b456a", + "5d02676dd7ad1a049e54f6dc", + "56ea6fafd2720b844b8b4593", + "5943ee5a86f77413872d25ec", + "609269c3b0e443224b421cc1", + "5c7fb51d2e2216001219ce11", + "5ea172e498dacb342978818e", + "5c6d710d2e22165df16b81e7", + "612e0e55a112697a4b3a66e7", + "5d440625a4b9361eec4ae6c5", + "5cc9b815d7f00c000e2579d6", + "5a7c147ce899ef00150bd8b8", + "5c7954d52e221600106f4cc7", + "59bffc1f86f77435b128b872", + "5a9fbb84a2750c00137fa685", + "626667e87379c44d557b7550", + "62669bccdb9ebb4daa44cd14", + "626a74340be03179a165e30c", + "6386120cd6baa055ad1e201c", + "63ac5c9658d0485fc039f0b8", + "6405ff6bd4578826ec3e377a", + "64943b74e9998d641b0412ed" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_gas_block", + "_id": "5c0e2f94d174af029f650d59", + "_parent": "5c0e2f94d174af029f650d56", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ae30e795acfc408fb139a0b", + "56eabcd4d2720b66698b4574", + "5d00ec68d7ad1a04a067e5be", + "56ea8d2fd2720b7c698b4570", + "63d3ce281fe77d0f2801859e" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -15, + "Velocity": -5.48, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.064, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1.04, + "HeatFactor": 0.98, + "CoolFactor": 0.99, + "DeviationCurve": 1.35, + "DeviationMax": 23 + }, + "_proto": "55d3632e4bdc2d972f8b4569" + }, + "588200af24597742fa221dfb": { + "_id": "588200af24597742fa221dfb", + "_name": "barrel_mr153_610mm", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_mr153_610mm", + "ShortName": "barrel_mr153_610mm", + "Description": "barrel_mr153_610mm", + "Weight": 1.25, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mr153_610mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "588200af24597742fa221dfc", + "_parent": "588200af24597742fa221dfb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0111ab0db834001966914d", + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5dfe40fefca8e055d15b75ae", + "_parent": "588200af24597742fa221dfb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "609b9e31506cf869cf3eaf41", + "5dfe14f30b92095fd441edaf" ] } ] @@ -81723,11 +81754,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -5, + "Recoil": -4, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 1.2, + "Ergonomics": -7, + "Velocity": 9.8, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -81737,16 +81768,128 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.12, - "ShotgunDispersion": 1, + "CenterOfImpact": 0.58, + "ShotgunDispersion": 1.4, "IsSilencer": false, "DurabilityBurnModificator": 1, - "HeatFactor": 0.97, - "CoolFactor": 1.03, - "DeviationCurve": 2.1, - "DeviationMax": 12 + "HeatFactor": 0.88, + "CoolFactor": 0.92, + "DeviationCurve": 2.5, + "DeviationMax": 10 }, - "_proto": "55d35ee94bdc2d61338b4568" + "_proto": "5608379a4bdc2d26448b4569" + }, + "6076c1b9f2cb2e02a42acedc": { + "_id": "6076c1b9f2cb2e02a42acedc", + "_name": "barrel_mp155_510mm_12g", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 510мм для МР-133 12к ", + "ShortName": "510мм МР-133", + "Description": "Стандартный заводской ствол для ружья МР-133 длинной 510мм.", + "Weight": 0.8, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mp155_510mm_12g.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "6076c1b9f2cb2e02a42acede", + "_parent": "6076c1b9f2cb2e02a42acedc", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0111ab0db834001966914d", + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 5.4, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.62, + "ShotgunDispersion": 1.55, + "IsSilencer": false, + "DurabilityBurnModificator": 0.95, + "HeatFactor": 0.92, + "CoolFactor": 0.96, + "DeviationCurve": 3, + "DeviationMax": 9 + }, + "_proto": "55d448594bdc2d8c2f8b4569" }, "5e848d2eea0a7c419c2f9bfd": { "_id": "5e848d2eea0a7c419c2f9bfd", @@ -81839,377 +81982,6 @@ }, "_proto": "55d448594bdc2d8c2f8b4569" }, - "611a30addbdd8440277441dc": { - "_id": "611a30addbdd8440277441dc", - "_name": "barrel_mr43e-1c_750mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 725мм для ружья МР-43е-1с 12к", - "ShortName": "725мм МР-43е-1с 12к", - "Description": "Ствол для двухствольного ружья МР-43е-1с под патрон 12-го калибра, длинной 725мм.", - "Weight": 1.65, - "BackgroundColor": "blue", - "Width": 5, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr43e-1c_750mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 25, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 4, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -14, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -11, - "Velocity": 17, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.31, - "ShotgunDispersion": 1.17, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.779, - "CoolFactor": 0.817, - "DeviationCurve": 2.25, - "DeviationMax": 11 - }, - "_proto": "55d447bb4bdc2d892f8b456f" - }, - "61702be9faa1272e431522c3": { - "_id": "61702be9faa1272e431522c3", - "_name": "barrel_417_hk_421mm_762x51", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_416_hk_279mm_556x45", - "ShortName": "barrel_416_hk_279mm_556x45", - "Description": "barrel_416_hk_279mm_556x45", - "Weight": 0.572, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_417_hk_421mm_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "61702be9faa1272e431522c5", - "_parent": "61702be9faa1272e431522c3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "612e0d3767085e45ef14057f", - "61713308d92c473c770214a0", - "5b7d693d5acfc43bca706a3d", - "5a34fd2bc4a282329a73b4c5", - "6065c6e7132d4d12c81fd8e1", - "5d1f819086f7744b355c219b", - "5dcbe965e4ed22586443a79d", - "5d026791d7ad1a04a067ea63", - "5dfa3cd1b33c0951220c079b", - "6130c43c67085e45ef1405a1", - "5cdd7685d7f00c000f260ed2", - "5c878e9d2e2216000f201903", - "5d02677ad7ad1a04a15c0f95", - "5bbdb8bdd4351e4502011460", - "5cdd7693d7f00c0010373aa5", - "607ffb988900dc2d9a55b6e4", - "615d8eb350224f204c1da1cf", - "612e0e3c290d254f5e6b291d", - "5d443f8fa4b93678dd4a01aa", - "5c7954d52e221600106f4cc7", - "5fbc22ccf24b94483f726483", - "59bffc1f86f77435b128b872", - "5cf78496d7f00c065703d6ca", - "5fbe7618d6fa9c00c571bb6c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_gas_block", - "_id": "61702be9faa1272e431522c6", - "_parent": "61702be9faa1272e431522c3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61702f1b67085e45ef140b26" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -13, - "Velocity": -6.58, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.033, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 0.82, - "HeatFactor": 0.93, - "CoolFactor": 0.98, - "DeviationCurve": 1.1, - "DeviationMax": 30 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "61f4012adfc9f01a816adda1": { - "_id": "61f4012adfc9f01a816adda1", - "_name": "barrel_mp18_600mm_762x54r", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 660мм для ружья МР-133 12к с прицельной планкой", - "ShortName": "660мм МР-133 12к", - "Description": "Стандартный заводской ствол для ружья МР-133 длинной 660мм под патрон 12-го калибра, с широкой прицельной планкой.", - "Weight": 1.35, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mp18_600mm_762x54r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_handguard", - "_id": "61f7b8e6618893307a6e01c1", - "_parent": "61f4012adfc9f01a816adda1", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61f8024263dc1250e26eb029", - "61f7b85367ddd414173fdb36" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "61f8d29fd8304f1daf1c0534", - "_parent": "61f4012adfc9f01a816adda1", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61f804acfcba9556ea304cb8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -8, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -13, - "Velocity": 10.5, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.09, - "ShotgunDispersion": 1.3, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.9, - "CoolFactor": 0.94, - "DeviationCurve": 2.5, - "DeviationMax": 10 - }, - "_proto": "55d449444bdc2d962f8b456d" - }, "55d35ee94bdc2d61338b4568": { "_id": "55d35ee94bdc2d61338b4568", "_name": "barrel_ar15_260mm", @@ -82372,6 +82144,787 @@ "DeviationMax": 22 } }, + "560836484bdc2d20478b456e": { + "_id": "560836484bdc2d20478b456e", + "_name": "barrel_mr133_540mm", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 540мм для МР-133 12к ", + "ShortName": "540мм МР-133", + "Description": "Стандартный заводской ствол для ружья МР-133 длинной 540мм.", + "Weight": 0.8, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mr133_540mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "56e31542d2720b5d058b4569", + "_parent": "560836484bdc2d20478b456e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0111ab0db834001966914d", + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3.5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -6, + "Velocity": 8.1, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.6, + "ShotgunDispersion": 1.5, + "IsSilencer": false, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 0.9, + "CoolFactor": 0.94, + "DeviationCurve": 3, + "DeviationMax": 9 + }, + "_proto": "55d4491a4bdc2d882f8b456e" + }, + "5e81c519cb2b95385c177551": { + "_id": "5e81c519cb2b95385c177551", + "_name": "barrel_m1911a1_127mm_1143x23", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_glock_glock_114mm_9x19_std", + "ShortName": "barrel_glock_glock_114mm_9x19_std", + "Description": "barrel_glock_glock_114mm_9x19_std\n", + "Weight": 0.095, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_m1911a1_127mm_1143x23.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": -1.28, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.35, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.1, + "CoolFactor": 1.15, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "61702be9faa1272e431522c3": { + "_id": "61702be9faa1272e431522c3", + "_name": "barrel_417_hk_421mm_762x51", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_416_hk_279mm_556x45", + "ShortName": "barrel_416_hk_279mm_556x45", + "Description": "barrel_416_hk_279mm_556x45", + "Weight": 0.572, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_417_hk_421mm_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "61702be9faa1272e431522c5", + "_parent": "61702be9faa1272e431522c3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "612e0d3767085e45ef14057f", + "61713308d92c473c770214a0", + "5b7d693d5acfc43bca706a3d", + "5a34fd2bc4a282329a73b4c5", + "6065c6e7132d4d12c81fd8e1", + "5d1f819086f7744b355c219b", + "5dcbe965e4ed22586443a79d", + "5d026791d7ad1a04a067ea63", + "5dfa3cd1b33c0951220c079b", + "6130c43c67085e45ef1405a1", + "5cdd7685d7f00c000f260ed2", + "5c878e9d2e2216000f201903", + "5d02677ad7ad1a04a15c0f95", + "5bbdb8bdd4351e4502011460", + "5cdd7693d7f00c0010373aa5", + "607ffb988900dc2d9a55b6e4", + "615d8eb350224f204c1da1cf", + "612e0e3c290d254f5e6b291d", + "5d443f8fa4b93678dd4a01aa", + "5c7954d52e221600106f4cc7", + "5fbc22ccf24b94483f726483", + "59bffc1f86f77435b128b872", + "5cf78496d7f00c065703d6ca", + "5fbe7618d6fa9c00c571bb6c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_gas_block", + "_id": "61702be9faa1272e431522c6", + "_parent": "61702be9faa1272e431522c3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61702f1b67085e45ef140b26" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -13, + "Velocity": -6.58, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.033, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 0.82, + "HeatFactor": 0.93, + "CoolFactor": 0.98, + "DeviationCurve": 1.1, + "DeviationMax": 30 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "588200c224597743990da9ed": { + "_id": "588200c224597743990da9ed", + "_name": "barrel_mr153_660mm", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_mr153_660mm", + "ShortName": "barrel_mr153_660mm", + "Description": "barrel_mr153_660mm", + "Weight": 1.25, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mr153_660mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "588200c224597743990da9ee", + "_parent": "588200c224597743990da9ed", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0111ab0db834001966914d", + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5dfe411973d8eb11426f59b2", + "_parent": "588200c224597743990da9ed", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "609b9e31506cf869cf3eaf41", + "5dfe14f30b92095fd441edaf" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -12, + "Velocity": 12.5, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.5, + "ShotgunDispersion": 1.35, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.86, + "CoolFactor": 0.9, + "DeviationCurve": 2.5, + "DeviationMax": 10 + }, + "_proto": "5608379a4bdc2d26448b4569" + }, + "5bb20da5d4351e0035629dbf": { + "_id": "5bb20da5d4351e0035629dbf", + "_name": "barrel_416_hk_419mm_556x45", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_416_hk_419mm_556x45", + "ShortName": "barrel_416_hk_419mm_556x45", + "Description": "barrel_416_hk_419mm_556x45", + "Weight": 1.05, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_416_hk_419mm_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c6d10e82e221601da357b07", + "5bb20dfcd4351e00334c9e24", + "5c6d11072e2216000e69d2e4", + "5c6d11152e2216000f2003e7", + "5c6c2c9c2e2216000f2002e4" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5bb20da5d4351e0035629dc1", + "_parent": "5bb20da5d4351e0035629dbf", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b3a16655acfc40016387a2a", + "5c7e5f112e221600106f4ede", + "5c0fafb6d174af02a96260ba", + "612e0cfc8004cc50514c2d9e", + "5cf6937cd7f00c056c53fb39", + "544a38634bdc2d58388b4568", + "5cff9e5ed7ad1a09407397d4", + "5c48a2a42e221602b66d1e07", + "5f6372e2865db925d54f3869", + "615d8e2f1cb55961fa0fd9a4", + "56ea8180d2720bf2698b456a", + "5d02676dd7ad1a049e54f6dc", + "56ea6fafd2720b844b8b4593", + "5943ee5a86f77413872d25ec", + "609269c3b0e443224b421cc1", + "5c7fb51d2e2216001219ce11", + "5ea172e498dacb342978818e", + "5c6d710d2e22165df16b81e7", + "612e0e55a112697a4b3a66e7", + "5d440625a4b9361eec4ae6c5", + "5cc9b815d7f00c000e2579d6", + "5a7c147ce899ef00150bd8b8", + "5c7954d52e221600106f4cc7", + "59bffc1f86f77435b128b872", + "5a9fbb84a2750c00137fa685", + "626667e87379c44d557b7550", + "62669bccdb9ebb4daa44cd14", + "626a74340be03179a165e30c", + "6386120cd6baa055ad1e201c", + "63ac5c9658d0485fc039f0b8", + "6405ff6bd4578826ec3e377a", + "64943b74e9998d641b0412ed" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_gas_block", + "_id": "5bb20da5d4351e0035629dc2", + "_parent": "5bb20da5d4351e0035629dbf", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bb20dcad4351e3bac1212da" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -20, + "Velocity": -5, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.045, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.98, + "CoolFactor": 0.99, + "DeviationCurve": 1.35, + "DeviationMax": 23 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "560835c74bdc2dc8488b456f": { + "_id": "560835c74bdc2dc8488b456f", + "_name": "barrel_mr133_510mm_plank", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 510мм для ружья МР-133 12к с прицельной планкой", + "ShortName": "510мм МР-133 12к", + "Description": "Стандартный заводской ствол для ружья МР-133 длинной 510мм под патрон 12-го калибра, с широкой прицельной планкой.", + "Weight": 0.85, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mr133_510mm_plank.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "564e840e4bdc2df55a8b4567", + "_parent": "560835c74bdc2dc8488b456f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0111ab0db834001966914d", + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5dfe1e7859400025ea5150b2", + "_parent": "560835c74bdc2dc8488b456f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "609b9e31506cf869cf3eaf41", + "5dfe14f30b92095fd441edaf" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 5.4, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.62, + "ShotgunDispersion": 1.55, + "IsSilencer": false, + "DurabilityBurnModificator": 0.95, + "HeatFactor": 0.92, + "CoolFactor": 0.96, + "DeviationCurve": 3, + "DeviationMax": 9 + }, + "_proto": "55d449444bdc2d962f8b456d" + }, "6183b084a112697a4b3a6e6c": { "_id": "6183b084a112697a4b3a6e6c", "_name": "barrel_mk17_fn_508mm_762x51", @@ -82523,6 +83076,289 @@ }, "_proto": "55d3632e4bdc2d972f8b4569" }, + "560836b64bdc2d57468b4567": { + "_id": "560836b64bdc2d57468b4567", + "_name": "barrel_mr133_540mm_plank", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 540мм для ружья МР-133 12к с прицельной планкой", + "ShortName": "540мм МР-133 12к", + "Description": "Стандартный заводской ствол для ружья МР-133 длинной 540мм под патрон 12-го калибра, с широкой прицельной планкой.", + "Weight": 0.85, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mr133_540mm_plank.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "56e31556d2720b4c098b4568", + "_parent": "560836b64bdc2d57468b4567", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0111ab0db834001966914d", + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5dfe4008fca8e055d15b75ac", + "_parent": "560836b64bdc2d57468b4567", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "609b9e31506cf869cf3eaf41", + "5dfe14f30b92095fd441edaf" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3.5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 8.1, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.6, + "ShotgunDispersion": 1.5, + "IsSilencer": false, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 0.9, + "CoolFactor": 0.94, + "DeviationCurve": 3, + "DeviationMax": 9 + }, + "_proto": "560835c74bdc2dc8488b456f" + }, + "6183b0711cb55961fa0fdcad": { + "_id": "6183b0711cb55961fa0fdcad", + "_name": "barrel_mk17_fn_406mm_762x51", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_mk17_fn_406mm_762x51", + "ShortName": "barrel_mk17_fn_406mm_762x51", + "Description": "barrel_mk17_fn_406mm_762x51", + "Weight": 1.12, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mk17_fn_406mm_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "6183b0711cb55961fa0fdcaf", + "_parent": "6183b0711cb55961fa0fdcad", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "612e0d3767085e45ef14057f", + "5b7d693d5acfc43bca706a3d", + "5a34fd2bc4a282329a73b4c5", + "618178aa1cb55961fa0fdc80", + "6065c6e7132d4d12c81fd8e1", + "5d1f819086f7744b355c219b", + "5dcbe965e4ed22586443a79d", + "5d026791d7ad1a04a067ea63", + "5dfa3cd1b33c0951220c079b", + "6130c43c67085e45ef1405a1", + "5cdd7685d7f00c000f260ed2", + "5c878e9d2e2216000f201903", + "5d02677ad7ad1a04a15c0f95", + "5bbdb8bdd4351e4502011460", + "5cdd7693d7f00c0010373aa5", + "607ffb988900dc2d9a55b6e4", + "615d8eb350224f204c1da1cf", + "612e0e3c290d254f5e6b291d", + "5d443f8fa4b93678dd4a01aa", + "5c7954d52e221600106f4cc7", + "5fbc22ccf24b94483f726483", + "59bffc1f86f77435b128b872", + "5cf78496d7f00c065703d6ca", + "5fbe7618d6fa9c00c571bb6c", + "628a66b41d5e41750e314f34" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "6183b0711cb55961fa0fdcb0", + "_parent": "6183b0711cb55961fa0fdcad", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61816fcad92c473c770215cc" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -13, + "Velocity": -6.48, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.05, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.94, + "CoolFactor": 0.94, + "DeviationCurve": 1.35, + "DeviationMax": 23 + }, + "_proto": "55d3632e4bdc2d972f8b4569" + }, "5c48a2852e221602b21d5923": { "_id": "5c48a2852e221602b21d5923", "_name": "barrel_mdr_dt_406mm_556x45", @@ -82664,23 +83500,23 @@ }, "_proto": "55d3632e4bdc2d972f8b4569" }, - "6194ef39de3cdf1d2614a768": { - "_id": "6194ef39de3cdf1d2614a768", - "_name": "barrel_hk_usp_112mm_1143x23_std", + "560837824bdc2d57468b4568": { + "_id": "560837824bdc2d57468b4568", + "_name": "barrel_mr133_750mm", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "barrel_glock_glock_114mm_9x19_std", - "ShortName": "barrel_glock_glock_114mm_9x19_std", - "Description": "barrel_glock_glock_114mm_9x19_std\n", - "Weight": 0.113, + "Name": "Ствол 750мм для ружья МР-133 12к", + "ShortName": "750мм МР-133", + "Description": "Стандартный заводской ствол для ружья МР-133 под патрон 12-го калибра, длинной 750мм.", + "Weight": 1.5, "BackgroundColor": "blue", - "Width": 1, + "Width": 5, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_hk_usp_112mm_1143x23_std.bundle", + "path": "assets/content/items/mods/barrels/barrel_mr133_750mm.bundle", "rcid": "" }, "UsePrefab": { @@ -82697,7 +83533,119 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, + "LootExperience": 25, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "56e315b2d2720b6c058b456b", + "_parent": "560837824bdc2d57468b4568", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0111ab0db834001966914d", + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -10, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -19, + "Velocity": 18.9, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.3, + "ShotgunDispersion": 1.1, + "IsSilencer": false, + "DurabilityBurnModificator": 1.1, + "HeatFactor": 0.82, + "CoolFactor": 0.86, + "DeviationCurve": 2.5, + "DeviationMax": 10 + }, + "_proto": "5608373c4bdc2dc8488b4570" + }, + "5e87071478f43e51ca2de5e1": { + "_id": "5e87071478f43e51ca2de5e1", + "_name": "barrel_590_590a1_std_508mm_12g", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_870_extra_barrel_355mm", + "ShortName": "barrel_870_extra_barrel_355mm", + "Description": "barrel_870_extra_barrel_355mm", + "Weight": 0.8, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_590_590a1_std_508mm_12g.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": true, + "QuestItem": false, + "LootExperience": 15, "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, @@ -82725,16 +83673,35 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_sight_front", + "_id": "5e8720f1e2db31558c75a4ef", + "_parent": "5e87071478f43e51ca2de5e1", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5e8708d4ae379e67d22e0102" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 0, - "Recoil": -2, + "Accuracy": 5, + "Recoil": -6, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": -2.28, + "Ergonomics": -8, + "Velocity": 5.2, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -82744,16 +83711,169 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.28, + "CenterOfImpact": 0.52, + "ShotgunDispersion": 1.4, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.92, + "CoolFactor": 0.96, + "DeviationCurve": 2.5, + "DeviationMax": 10 + }, + "_proto": "55d448594bdc2d8c2f8b4569" + }, + "5df917564a9f347bc92edca3": { + "_id": "5df917564a9f347bc92edca3", + "_name": "barrel_ar10_kac_406mm_762x51", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 370мм для AR-15 и совместимых 5.56х45", + "ShortName": "370мм AR-15 5.56х45", + "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 370мм. Соответствует стандартному стволу для M4A1.\n", + "Weight": 1.02, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_ar10_kac_406mm_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5df917564a9f347bc92edca5", + "_parent": "5df917564a9f347bc92edca3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "612e0d3767085e45ef14057f", + "5b7d693d5acfc43bca706a3d", + "5a34fd2bc4a282329a73b4c5", + "6065c6e7132d4d12c81fd8e1", + "5d1f819086f7744b355c219b", + "5dcbe965e4ed22586443a79d", + "5d026791d7ad1a04a067ea63", + "5dfa3cd1b33c0951220c079b", + "6130c43c67085e45ef1405a1", + "5cdd7685d7f00c000f260ed2", + "5c878e9d2e2216000f201903", + "5d02677ad7ad1a04a15c0f95", + "5bbdb8bdd4351e4502011460", + "5cdd7693d7f00c0010373aa5", + "607ffb988900dc2d9a55b6e4", + "615d8eb350224f204c1da1cf", + "612e0e3c290d254f5e6b291d", + "5d443f8fa4b93678dd4a01aa", + "5c7954d52e221600106f4cc7", + "5fbc22ccf24b94483f726483", + "59bffc1f86f77435b128b872", + "5cf78496d7f00c065703d6ca", + "5fbe7618d6fa9c00c571bb6c", + "628a66b41d5e41750e314f34" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_gas_block", + "_id": "5df917564a9f347bc92edca6", + "_parent": "5df917564a9f347bc92edca3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6065dc8a132d4d12c81fd8e3", + "5a34fbadc4a28200741e230a", + "5dfa3d45dfc58d14537c20b0" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -12, + "Velocity": -6.48, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.045, "ShotgunDispersion": 1, "IsSilencer": false, "DurabilityBurnModificator": 1, - "HeatFactor": 1.14, - "CoolFactor": 1.21, - "DeviationCurve": 2.25, - "DeviationMax": 11 + "HeatFactor": 0.93, + "CoolFactor": 0.98, + "DeviationCurve": 1.1, + "DeviationMax": 30 }, - "_proto": "55d35ee94bdc2d61338b4568" + "_proto": "55d3632e4bdc2d972f8b4569" }, "58aeaaa886f7744fc1560f81": { "_id": "58aeaaa886f7744fc1560f81", @@ -82869,23 +83989,23 @@ }, "_proto": "55d35ee94bdc2d61338b4568" }, - "560837824bdc2d57468b4568": { - "_id": "560837824bdc2d57468b4568", - "_name": "barrel_mr133_750mm", + "6259c2c1d714855d182bad85": { + "_id": "6259c2c1d714855d182bad85", + "_name": "barrel_m3_benelli_500mm_12g", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "Ствол 750мм для ружья МР-133 12к", - "ShortName": "750мм МР-133", - "Description": "Стандартный заводской ствол для ружья МР-133 под патрон 12-го калибра, длинной 750мм.", - "Weight": 1.5, + "Name": "barrel_870_extra_barrel_355mm", + "ShortName": "barrel_870_extra_barrel_355mm", + "Description": "barrel_870_extra_barrel_355mm", + "Weight": 0.8, "BackgroundColor": "blue", - "Width": 5, + "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr133_750mm.bundle", + "path": "assets/content/items/mods/barrels/barrel_m3_benelli_500mm_12g.bundle", "rcid": "" }, "UsePrefab": { @@ -82902,12 +84022,12 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 25, + "LootExperience": 15, "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 3, + "ExtraSizeLeft": 1, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -82933,8 +84053,8 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "56e315b2d2720b6c058b456b", - "_parent": "560837824bdc2d57468b4568", + "_id": "62a30b8311bd27063b4c40a6", + "_parent": "6259c2c1d714855d182bad85", "_props": { "filters": [ { @@ -82956,11 +84076,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -10, + "Recoil": -7, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -19, - "Velocity": 18.9, + "Ergonomics": -8, + "Velocity": 6.4, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -82970,34 +84090,34 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.3, - "ShotgunDispersion": 1.1, + "CenterOfImpact": 0.53, + "ShotgunDispersion": 1.37, "IsSilencer": false, - "DurabilityBurnModificator": 1.1, - "HeatFactor": 0.82, - "CoolFactor": 0.86, + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.95, + "CoolFactor": 1.02, "DeviationCurve": 2.5, - "DeviationMax": 10 + "DeviationMax": 9 }, - "_proto": "5608373c4bdc2dc8488b4570" + "_proto": "55d448594bdc2d8c2f8b4569" }, - "5c5db5852e2216003a0fe71a": { - "_id": "5c5db5852e2216003a0fe71a", - "_name": "barrel_mpx_114mm_9x19", + "5888945a2459774bf43ba385": { + "_id": "5888945a2459774bf43ba385", + "_name": "barrel_dvl-10_500mm", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "barrel_mpx_203mm", - "ShortName": "barrel_mpx_203mm", - "Description": "barrel_mpx_203mm", - "Weight": 0.16, + "Name": "barrel_dvl-10_500mm", + "ShortName": "barrel_dvl-10_500mm", + "Description": "barrel_dvl-10_500mm", + "Weight": 2.9, "BackgroundColor": "blue", - "Width": 1, + "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mpx_114mm_9x19.bundle", + "path": "assets/content/items/mods/barrels/barrel_dvl-10_500mm.bundle", "rcid": "" }, "UsePrefab": { @@ -83014,12 +84134,12 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, + "LootExperience": 15, "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 1, + "ExtraSizeLeft": 2, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -83027,13 +84147,7 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c59529a2e221602b177d160", - "5c5db6302e2216000e5e47f0", - "5c5db63a2e2216000f1b284a", - "5c5db5fc2e2216000f1b2842", - "5894a42086f77426d2590762" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -83051,21 +84165,32 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "5c5db5862e2216003a0fe71c", - "_parent": "5c5db5852e2216003a0fe71a", + "_id": "5888945a2459774bf43ba386", + "_parent": "5888945a2459774bf43ba385", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5cf6935bd7f00c06585fb791", - "5b3a16655acfc40016387a2a", - "58949dea86f77409483e16a8", - "59bffc1f86f77435b128b872", - "5c7e8fab2e22165df16b889b", - "5a9fb739a2750c003215717f", - "5c6165902e22160010261b28", - "5a32a064c4a28200741e22de" + "58889c7324597754281f9439" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_bipod", + "_id": "588894872459774e6610d115", + "_parent": "5888945a2459774bf43ba385", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5888961624597754281f93f3" ] } ] @@ -83079,11 +84204,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -4, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": -16, + "Ergonomics": -10, + "Velocity": 8.4, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -83093,16 +84218,16 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.25, + "CenterOfImpact": 0.022, "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 0.78, - "HeatFactor": 1.06, - "CoolFactor": 1.09, - "DeviationCurve": 2.25, - "DeviationMax": 11 + "IsSilencer": true, + "DurabilityBurnModificator": 1.61, + "HeatFactor": 0.95, + "CoolFactor": 0.9, + "DeviationCurve": 1, + "DeviationMax": 33 }, - "_proto": "55d35ee94bdc2d61338b4568" + "_proto": "55d3632e4bdc2d972f8b4569" }, "5fc23678ab884124df0cd590": { "_id": "5fc23678ab884124df0cd590", @@ -83242,488 +84367,23 @@ }, "_proto": "55d3632e4bdc2d972f8b4569" }, - "5d3eb5b6a4b9361eab311902": { - "_id": "5d3eb5b6a4b9361eab311902", - "_name": "barrel_57_fn_120mm_57x28", + "622b379bf9cfc87d675d2de5": { + "_id": "622b379bf9cfc87d675d2de5", + "_name": "barrel_g36_hk_228mm_556x45", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "barrel_p226_112mm_threaded_9x19", - "ShortName": "barrel_p226_112mm_threaded_9x19", - "Description": "barrel_p226_112mm_threaded_9x19", - "Weight": 0.17, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_57_fn_120mm_57x28.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": -1.28, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.24, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.12, - "CoolFactor": 1.18, - "DeviationCurve": 2.25, - "DeviationMax": 11 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "56deec93d2720bec348b4568": { - "_id": "56deec93d2720bec348b4568", - "_name": "barrel_mr153_750mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 750мм для ружья МР-153 12к", - "ShortName": "750мм МР-153 12к", - "Description": "Стандартный заводской ствол для ружья МР-153 длинной 750мм под патрон 12-го калибра.", - "Weight": 1.55, - "BackgroundColor": "blue", - "Width": 5, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr153_750mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 25, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "56deed28d2720bbd328b4568", - "_parent": "56deec93d2720bec348b4568", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0111ab0db834001966914d", - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5dfe4173a3651922b360bf8c", - "_parent": "56deec93d2720bec348b4568", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "609b9e31506cf869cf3eaf41", - "5dfe14f30b92095fd441edaf" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -10, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -20, - "Velocity": 17.91, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.3, - "ShotgunDispersion": 1.2, - "IsSilencer": false, - "DurabilityBurnModificator": 1.1, - "HeatFactor": 0.82, - "CoolFactor": 0.86, - "DeviationCurve": 2.5, - "DeviationMax": 10 - }, - "_proto": "5608379a4bdc2d26448b4569" - }, - "560835c74bdc2dc8488b456f": { - "_id": "560835c74bdc2dc8488b456f", - "_name": "barrel_mr133_510mm_plank", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 510мм для ружья МР-133 12к с прицельной планкой", - "ShortName": "510мм МР-133 12к", - "Description": "Стандартный заводской ствол для ружья МР-133 длинной 510мм под патрон 12-го калибра, с широкой прицельной планкой.", - "Weight": 0.85, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr133_510mm_plank.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "564e840e4bdc2df55a8b4567", - "_parent": "560835c74bdc2dc8488b456f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0111ab0db834001966914d", - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5dfe1e7859400025ea5150b2", - "_parent": "560835c74bdc2dc8488b456f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "609b9e31506cf869cf3eaf41", - "5dfe14f30b92095fd441edaf" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 5.4, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.62, - "ShotgunDispersion": 1.55, - "IsSilencer": false, - "DurabilityBurnModificator": 0.95, - "HeatFactor": 0.92, - "CoolFactor": 0.96, - "DeviationCurve": 3, - "DeviationMax": 9 - }, - "_proto": "55d449444bdc2d962f8b456d" - }, - "6259c2c1d714855d182bad85": { - "_id": "6259c2c1d714855d182bad85", - "_name": "barrel_m3_benelli_500mm_12g", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_870_extra_barrel_355mm", - "ShortName": "barrel_870_extra_barrel_355mm", - "Description": "barrel_870_extra_barrel_355mm", - "Weight": 0.8, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_m3_benelli_500mm_12g.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "62a30b8311bd27063b4c40a6", - "_parent": "6259c2c1d714855d182bad85", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0111ab0db834001966914d", - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -7, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -8, - "Velocity": 6.4, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.53, - "ShotgunDispersion": 1.37, - "IsSilencer": false, - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.95, - "CoolFactor": 1.02, - "DeviationCurve": 2.5, - "DeviationMax": 9 - }, - "_proto": "55d448594bdc2d8c2f8b4569" - }, - "5c5db5962e2216000e5e46eb": { - "_id": "5c5db5962e2216000e5e46eb", - "_name": "barrel_mpx_165mm_9x19", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_mpx_203mm", - "ShortName": "barrel_mpx_203mm", - "Description": "barrel_mpx_203mm", - "Weight": 0.19, + "Name": "Ствол 260мм для AR-15 и совместимых 5.56х45", + "ShortName": "260мм AR-15 5.56х45", + "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 260мм. Соответствует стандартному стволу для M4 CQBR.\n", + "Weight": 0.39, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mpx_165mm_9x19.bundle", + "path": "assets/content/items/mods/barrels/barrel_g36_hk_228mm_556x45.bundle", "rcid": "" }, "UsePrefab": { @@ -83745,7 +84405,7 @@ "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 2, + "ExtraSizeLeft": 1, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -83753,11 +84413,7 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c59529a2e221602b177d160", - "5c5db6302e2216000e5e47f0", - "5c5db63a2e2216000f1b284a" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -83775,21 +84431,48 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "5c5db5962e2216000e5e46ed", - "_parent": "5c5db5962e2216000e5e46eb", + "_id": "622b379bf9cfc87d675d2de7", + "_parent": "622b379bf9cfc87d675d2de5", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5cf6935bd7f00c06585fb791", "5b3a16655acfc40016387a2a", - "58949dea86f77409483e16a8", + "5c7e5f112e221600106f4ede", + "5c0fafb6d174af02a96260ba", + "612e0cfc8004cc50514c2d9e", + "5cf6937cd7f00c056c53fb39", + "544a38634bdc2d58388b4568", + "5cff9e5ed7ad1a09407397d4", + "5c48a2a42e221602b66d1e07", + "5f6372e2865db925d54f3869", + "615d8e2f1cb55961fa0fd9a4", + "56ea8180d2720bf2698b456a", + "626667e87379c44d557b7550", + "5d02676dd7ad1a049e54f6dc", + "56ea6fafd2720b844b8b4593", + "5943ee5a86f77413872d25ec", + "609269c3b0e443224b421cc1", + "5c7fb51d2e2216001219ce11", + "5ea172e498dacb342978818e", + "5c6d710d2e22165df16b81e7", + "62669bccdb9ebb4daa44cd14", + "612e0e55a112697a4b3a66e7", + "5d440625a4b9361eec4ae6c5", + "5cc9b815d7f00c000e2579d6", + "5a7c147ce899ef00150bd8b8", + "626a74340be03179a165e30c", + "622f128cec80d870d349b4e8", + "622f0ee47762f55aaa68ac87", + "622f07cfae33bc505b2c4dd5", + "5c7954d52e221600106f4cc7", "59bffc1f86f77435b128b872", - "5c7e8fab2e22165df16b889b", - "5a9fb739a2750c003215717f", - "5c6165902e22160010261b28", - "5a32a064c4a28200741e22de" + "5a9fbb84a2750c00137fa685", + "6386120cd6baa055ad1e201c", + "63ac5c9658d0485fc039f0b8", + "6405ff6bd4578826ec3e377a", + "64943b74e9998d641b0412ed" ] } ] @@ -83797,17 +84480,35 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_gas_block", + "_id": "622b379bf9cfc87d675d2de8", + "_parent": "622b379bf9cfc87d675d2de5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "622b327b267a1b13a44abea3" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -1, + "Recoil": -2, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": -10, + "Ergonomics": -8, + "Velocity": -16.31, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -83817,14 +84518,14 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.2, + "CenterOfImpact": 0.08, "ShotgunDispersion": 1, "IsSilencer": false, - "DurabilityBurnModificator": 0.85, - "HeatFactor": 1.04, - "CoolFactor": 1.07, - "DeviationCurve": 2.25, - "DeviationMax": 11 + "DurabilityBurnModificator": 0.86, + "HeatFactor": 1.11, + "CoolFactor": 1.06, + "DeviationCurve": 1.4, + "DeviationMax": 22 }, "_proto": "55d35ee94bdc2d61338b4568" }, @@ -83980,23 +84681,23 @@ }, "_proto": "55d3632e4bdc2d972f8b4569" }, - "6065878ac9cf8012264142fd": { - "_id": "6065878ac9cf8012264142fd", - "_name": "barrel_mk47_cmmg_409mm_762x39", + "603372f153a60014f970616d": { + "_id": "603372f153a60014f970616d", + "_name": "barrel_stm9_stmarms_355mm_9x19", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "barrel_mk47_cmmg_409mm_762x39", - "ShortName": "barrel_mk47_cmmg_409mm_762x39", - "Description": "barrel_mk47_cmmg_409mm_762x39", - "Weight": 1.13, + "Name": "Ствол 370мм для AR-15 и совместимых 5.56х45", + "ShortName": "370мм AR-15 5.56х45", + "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 370мм. Соответствует стандартному стволу для M4A1.\n", + "Weight": 0.6, "BackgroundColor": "blue", "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mk47_cmmg_409mm_762x39.bundle", + "path": "assets/content/items/mods/barrels/barrel_stm9_stmarms_355mm_9x19.bundle", "rcid": "" }, "UsePrefab": { @@ -84026,7 +84727,13 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [], + "ConflictingItems": [ + "5ea16ada09aa976f2e7a51be", + "5d4405f0a4b9361e6a4e6bd9", + "5c78f2492e221600114c9f04", + "595cfa8b86f77427437e845b", + "595cf16b86f77427440c32e2" + ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -84044,36 +84751,19 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "6065878ac9cf8012264142ff", - "_parent": "6065878ac9cf8012264142fd", + "_id": "603372f153a60014f970616f", + "_parent": "603372f153a60014f970616d", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5b7d693d5acfc43bca706a3d", - "5a34fd2bc4a282329a73b4c5", - "6065c6e7132d4d12c81fd8e1", - "5d1f819086f7744b355c219b", - "5dcbe965e4ed22586443a79d", - "5d026791d7ad1a04a067ea63", - "5dfa3cd1b33c0951220c079b", - "5cdd7685d7f00c000f260ed2", - "5c878e9d2e2216000f201903", - "5d02677ad7ad1a04a15c0f95", - "5bbdb8bdd4351e4502011460", - "5cdd7693d7f00c0010373aa5", - "607ffb988900dc2d9a55b6e4", - "615d8eb350224f204c1da1cf", - "5d443f8fa4b93678dd4a01aa", + "60337f5dce399e10262255d1", + "5fbbc3324e8a554c40648348", "5c7954d52e221600106f4cc7", - "5fbc22ccf24b94483f726483", - "59bffc1f86f77435b128b872", - "5fbe7618d6fa9c00c571bb6c", - "612e0e3c290d254f5e6b291d", - "6130c43c67085e45ef1405a1", - "628a66b41d5e41750e314f34", - "618178aa1cb55961fa0fdc80" + "5a9fb739a2750c003215717f", + "5c6165902e22160010261b28", + "5a32a064c4a28200741e22de" ] } ] @@ -84081,36 +84771,17 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_gas_block", - "_id": "6065878ac9cf801226414300", - "_parent": "6065878ac9cf8012264142fd", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6065dc8a132d4d12c81fd8e3", - "5dfa3d45dfc58d14537c20b0" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -4, + "Recoil": -8, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -19, - "Velocity": -6.48, + "Ergonomics": -15, + "Velocity": 3.2, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -84120,14 +84791,14 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.05, + "CenterOfImpact": 0.055, "ShotgunDispersion": 1, "IsSilencer": false, "DurabilityBurnModificator": 1, "HeatFactor": 0.94, - "CoolFactor": 0.99, - "DeviationCurve": 1.35, - "DeviationMax": 23 + "CoolFactor": 0.98, + "DeviationCurve": 1.75, + "DeviationMax": 17 }, "_proto": "55d3632e4bdc2d972f8b4569" }, @@ -84451,23 +85122,23 @@ }, "_proto": "55d35ee94bdc2d61338b4568" }, - "603372f153a60014f970616d": { - "_id": "603372f153a60014f970616d", - "_name": "barrel_stm9_stmarms_355mm_9x19", + "5580169d4bdc2d9d138b4585": { + "_id": "5580169d4bdc2d9d138b4585", + "_name": "barrel_mr43e-1c_510mm", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "Ствол 370мм для AR-15 и совместимых 5.56х45", - "ShortName": "370мм AR-15 5.56х45", - "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 370мм. Соответствует стандартному стволу для M4A1.\n", - "Weight": 0.6, + "Name": "Ствол 510мм для МР-43е-1с 12к", + "ShortName": "510мм МР-43е-1с 12к", + "Description": "Ствол для двухствольного ружья МР-43е-1с под патрон 12-го калибра, длинной 510мм.", + "Weight": 1.4, "BackgroundColor": "blue", "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_stm9_stmarms_355mm_9x19.bundle", + "path": "assets/content/items/mods/barrels/barrel_mr43e-1c_510mm.bundle", "rcid": "" }, "UsePrefab": { @@ -84489,7 +85160,7 @@ "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 3, + "ExtraSizeLeft": 2, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -84497,13 +85168,7 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5ea16ada09aa976f2e7a51be", - "5d4405f0a4b9361e6a4e6bd9", - "5c78f2492e221600114c9f04", - "595cfa8b86f77427437e845b", - "595cf16b86f77427440c32e2" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -84518,42 +85183,18 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "603372f153a60014f970616f", - "_parent": "603372f153a60014f970616d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "60337f5dce399e10262255d1", - "5fbbc3324e8a554c40648348", - "5c7954d52e221600106f4cc7", - "5a9fb739a2750c003215717f", - "5c6165902e22160010261b28", - "5a32a064c4a28200741e22de" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -8, + "Recoil": -5, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -15, - "Velocity": 3.2, - "RaidModdable": false, - "ToolModdable": true, + "Ergonomics": -5, + "Velocity": 7, + "RaidModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -84561,34 +85202,33 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.055, - "ShotgunDispersion": 1, + "CenterOfImpact": 0.51, + "ShotgunDispersion": 1.45, "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.94, - "CoolFactor": 0.98, - "DeviationCurve": 1.75, - "DeviationMax": 17 - }, - "_proto": "55d3632e4bdc2d972f8b4569" + "DurabilityBurnModificator": 0.89, + "HeatFactor": 0.874, + "CoolFactor": 0.912, + "DeviationCurve": 2.5, + "DeviationMax": 10 + } }, - "55d3632e4bdc2d972f8b4569": { - "_id": "55d3632e4bdc2d972f8b4569", - "_name": "barrel_ar15_370mm", + "5cadc1c6ae9215000f2775a4": { + "_id": "5cadc1c6ae9215000f2775a4", + "_name": "barrel_m9_127mm_m9a3_std_9x19", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "Ствол 370мм для AR-15 и совместимых 5.56х45", - "ShortName": "370мм AR-15 5.56х45", - "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 370мм. Соответствует стандартному стволу для M4A1.\n", - "Weight": 0.509, + "Name": "barrel_p226_112mm_threaded_9x19", + "ShortName": "barrel_p226_112mm_threaded_9x19", + "Description": "barrel_p226_112mm_threaded_9x19", + "Weight": 0.2, "BackgroundColor": "blue", - "Width": 3, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_ar15_370mm.bundle", + "path": "assets/content/items/mods/barrels/barrel_m9_127mm_m9a3_std_9x19.bundle", "rcid": "" }, "UsePrefab": { @@ -84605,12 +85245,12 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 15, + "LootExperience": 5, "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 3, + "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -84636,85 +85276,18 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "55dc9adc4bdc2d86028b4576", - "_parent": "55d3632e4bdc2d972f8b4569", + "_id": "5cadc1c6ae9215000f2775a6", + "_parent": "5cadc1c6ae9215000f2775a4", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5b3a16655acfc40016387a2a", - "5c7e5f112e221600106f4ede", - "5c0fafb6d174af02a96260ba", - "612e0cfc8004cc50514c2d9e", - "5cf6937cd7f00c056c53fb39", - "544a38634bdc2d58388b4568", - "5cff9e5ed7ad1a09407397d4", - "5c48a2a42e221602b66d1e07", - "5f6372e2865db925d54f3869", - "615d8e2f1cb55961fa0fd9a4", - "56ea8180d2720bf2698b456a", - "5d02676dd7ad1a049e54f6dc", - "56ea6fafd2720b844b8b4593", - "5943ee5a86f77413872d25ec", - "609269c3b0e443224b421cc1", - "5c7fb51d2e2216001219ce11", - "5ea172e498dacb342978818e", - "5c6d710d2e22165df16b81e7", - "612e0e55a112697a4b3a66e7", - "5d440625a4b9361eec4ae6c5", - "5cc9b815d7f00c000e2579d6", - "5a7c147ce899ef00150bd8b8", - "5c7954d52e221600106f4cc7", - "59bffc1f86f77435b128b872", - "5a9fbb84a2750c00137fa685", - "626667e87379c44d557b7550", - "62669bccdb9ebb4daa44cd14", - "626a74340be03179a165e30c", - "6386120cd6baa055ad1e201c", - "63ac5c9658d0485fc039f0b8", - "6405ff6bd4578826ec3e377a", - "64943b74e9998d641b0412ed" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_gas_block", - "_id": "56ea8e89d2720b75698b4568", - "_parent": "55d3632e4bdc2d972f8b4569", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ae30e795acfc408fb139a0b", - "56eabcd4d2720b66698b4574", - "5d00ec68d7ad1a04a067e5be", - "56ea8d2fd2720b7c698b4570", - "63d3ce281fe77d0f2801859e" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_launcher", - "_id": "6357cd4b6bd1f226843c249f", - "_parent": "55d3632e4bdc2d972f8b4569", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6357c98711fb55120211f7e1" + "5cadc390ae921500126a77f1", + "5c7e8fab2e22165df16b889b", + "5a33a8ebc4a282000c5a950d", + "5c6165902e22160010261b28", + "5a32a064c4a28200741e22de" ] } ] @@ -84731,10 +85304,10 @@ "Recoil": -3, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -14, - "Velocity": -6.48, - "RaidModdable": false, - "ToolModdable": true, + "Ergonomics": -4, + "Velocity": -2.4, + "RaidModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -84742,15 +85315,16 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.053, + "CenterOfImpact": 0.29, "ShotgunDispersion": 1, "IsSilencer": false, - "DurabilityBurnModificator": 0.96, - "HeatFactor": 1.02, - "CoolFactor": 1.03, - "DeviationCurve": 1.35, - "DeviationMax": 23 - } + "DurabilityBurnModificator": 1, + "HeatFactor": 1.1, + "CoolFactor": 1.15, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "55d35ee94bdc2d61338b4568" }, "5608373c4bdc2dc8488b4570": { "_id": "5608373c4bdc2dc8488b4570", @@ -85024,210 +85598,6 @@ }, "_proto": "55d3632e4bdc2d972f8b4569" }, - "5580169d4bdc2d9d138b4585": { - "_id": "5580169d4bdc2d9d138b4585", - "_name": "barrel_mr43e-1c_510mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 510мм для МР-43е-1с 12к", - "ShortName": "510мм МР-43е-1с 12к", - "Description": "Ствол для двухствольного ружья МР-43е-1с под патрон 12-го калибра, длинной 510мм.", - "Weight": 1.4, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr43e-1c_510mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": 7, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.51, - "ShotgunDispersion": 1.45, - "IsSilencer": false, - "DurabilityBurnModificator": 0.89, - "HeatFactor": 0.874, - "CoolFactor": 0.912, - "DeviationCurve": 2.5, - "DeviationMax": 10 - } - }, - "5cadc1c6ae9215000f2775a4": { - "_id": "5cadc1c6ae9215000f2775a4", - "_name": "barrel_m9_127mm_m9a3_std_9x19", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_p226_112mm_threaded_9x19", - "ShortName": "barrel_p226_112mm_threaded_9x19", - "Description": "barrel_p226_112mm_threaded_9x19", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_m9_127mm_m9a3_std_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5cadc1c6ae9215000f2775a6", - "_parent": "5cadc1c6ae9215000f2775a4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cadc390ae921500126a77f1", - "5c7e8fab2e22165df16b889b", - "5a33a8ebc4a282000c5a950d", - "5c6165902e22160010261b28", - "5a32a064c4a28200741e22de" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": -2.4, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.29, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.1, - "CoolFactor": 1.15, - "DeviationCurve": 2.25, - "DeviationMax": 11 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, "5bb20d9cd4351e00334c9d8a": { "_id": "5bb20d9cd4351e00334c9d8a", "_name": "barrel_416_hk_368mm_556x45", @@ -85546,266 +85916,23 @@ }, "_proto": "55d3632e4bdc2d972f8b4569" }, - "5dcbe9431e1f4616d354987e": { - "_id": "5dcbe9431e1f4616d354987e", - "_name": "barrel_mdr_dt_406mm_762x51", + "5cc701d7e4a94900100ac4e7": { + "_id": "5cc701d7e4a94900100ac4e7", + "_name": "barrel_p90_407mm_57x28", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "Ствол 370мм для AR-15 и совместимых 5.56х45", - "ShortName": "370мм AR-15 5.56х45", - "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 370мм. Соответствует стандартному стволу для M4A1.\n", - "Weight": 0.62, + "Name": "barrel_416_hk_419mm_556x45", + "ShortName": "barrel_416_hk_419mm_556x45", + "Description": "barrel_416_hk_419mm_556x45", + "Weight": 0.8, "BackgroundColor": "blue", "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mdr_dt_406mm_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5dcbe9431e1f4616d3549880", - "_parent": "5dcbe9431e1f4616d354987e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "612e0d3767085e45ef14057f", - "5b3a16655acfc40016387a2a", - "5b7d693d5acfc43bca706a3d", - "5a34fd2bc4a282329a73b4c5", - "6065c6e7132d4d12c81fd8e1", - "5d1f819086f7744b355c219b", - "5dcbe965e4ed22586443a79d", - "5d026791d7ad1a04a067ea63", - "5dfa3cd1b33c0951220c079b", - "6130c43c67085e45ef1405a1", - "5cdd7685d7f00c000f260ed2", - "5c878e9d2e2216000f201903", - "5d02677ad7ad1a04a15c0f95", - "5bbdb8bdd4351e4502011460", - "5cdd7693d7f00c0010373aa5", - "607ffb988900dc2d9a55b6e4", - "615d8eb350224f204c1da1cf", - "612e0e3c290d254f5e6b291d", - "5d443f8fa4b93678dd4a01aa", - "5c7954d52e221600106f4cc7", - "59bffc1f86f77435b128b872", - "5cf78496d7f00c065703d6ca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -10, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -6, - "Velocity": -5.58, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.04, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.94, - "CoolFactor": 0.94, - "DeviationCurve": 1.35, - "DeviationMax": 23 - }, - "_proto": "55d3632e4bdc2d972f8b4569" - }, - "55d448594bdc2d8c2f8b4569": { - "_id": "55d448594bdc2d8c2f8b4569", - "_name": "barrel_mr133_610mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 610мм для ружья МР-133 12к", - "ShortName": "610мм МР-133", - "Description": "Стандартный заводской ствол для ружья МР-133 под патрон 12-го калибра, длинной 610мм.", - "Weight": 1.2, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr133_610mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "56e31509d2720b4c098b4567", - "_parent": "55d448594bdc2d8c2f8b4569", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0111ab0db834001966914d", - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -7, - "Velocity": 10.8, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.58, - "ShotgunDispersion": 1.4, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.88, - "CoolFactor": 0.92, - "DeviationCurve": 2.5, - "DeviationMax": 10 - }, - "_proto": "55d447bb4bdc2d892f8b456f" - }, - "5e848d1c264f7c180b5e35a9": { - "_id": "5e848d1c264f7c180b5e35a9", - "_name": "barrel_ks23_510mm_23x75", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_ks23_510mm_23x75", - "ShortName": "barrel_ks23_510mm_23x75", - "Description": "barrel_ks23_510mm_23x75", - "Weight": 0.91, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_ks23_510mm_23x75.bundle", + "path": "assets/content/items/mods/barrels/barrel_p90_407mm_57x28.bundle", "rcid": "" }, "UsePrefab": { @@ -85835,7 +85962,13 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [], + "ConflictingItems": [ + "5c6d10e82e221601da357b07", + "5bb20dfcd4351e00334c9e24", + "5c6d11072e2216000e69d2e4", + "5c6d11152e2216000f2003e7", + "5c6c2c9c2e2216000f2002e4" + ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -85855,11 +85988,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -4, + "Recoil": -13, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 1.4, + "Ergonomics": -13, + "Velocity": 2.2, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -85869,16 +86002,139 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.75, - "ShotgunDispersion": 1.62, + "CenterOfImpact": 0.038, + "ShotgunDispersion": 1, "IsSilencer": false, - "DurabilityBurnModificator": 0.91, - "HeatFactor": 0.88, - "CoolFactor": 0.92, - "DeviationCurve": 3, - "DeviationMax": 9 + "DurabilityBurnModificator": 1.1, + "HeatFactor": 0.92, + "CoolFactor": 0.96, + "DeviationCurve": 1.75, + "DeviationMax": 17 }, - "_proto": "55d448594bdc2d8c2f8b4569" + "_proto": "55d35ee94bdc2d61338b4568" + }, + "5c5db5852e2216003a0fe71a": { + "_id": "5c5db5852e2216003a0fe71a", + "_name": "barrel_mpx_114mm_9x19", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_mpx_203mm", + "ShortName": "barrel_mpx_203mm", + "Description": "barrel_mpx_203mm", + "Weight": 0.16, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mpx_114mm_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c59529a2e221602b177d160", + "5c5db6302e2216000e5e47f0", + "5c5db63a2e2216000f1b284a", + "5c5db5fc2e2216000f1b2842", + "5894a42086f77426d2590762" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5c5db5862e2216003a0fe71c", + "_parent": "5c5db5852e2216003a0fe71a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cf6935bd7f00c06585fb791", + "5b3a16655acfc40016387a2a", + "58949dea86f77409483e16a8", + "59bffc1f86f77435b128b872", + "5c7e8fab2e22165df16b889b", + "5a9fb739a2750c003215717f", + "5c6165902e22160010261b28", + "5a32a064c4a28200741e22de" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": -16, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.25, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 0.78, + "HeatFactor": 1.06, + "CoolFactor": 1.09, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "55d35ee94bdc2d61338b4568" }, "5a787f25c5856700186c4ab9": { "_id": "5a787f25c5856700186c4ab9", @@ -85971,23 +86227,183 @@ }, "_proto": "55d448594bdc2d8c2f8b4569" }, - "5e81c519cb2b95385c177551": { - "_id": "5e81c519cb2b95385c177551", - "_name": "barrel_m1911a1_127mm_1143x23", + "6183fc15d3a39d50044c13e9": { + "_id": "6183fc15d3a39d50044c13e9", + "_name": "barrel_mk16_fn_254mm_556x45", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "barrel_glock_glock_114mm_9x19_std", - "ShortName": "barrel_glock_glock_114mm_9x19_std", - "Description": "barrel_glock_glock_114mm_9x19_std\n", - "Weight": 0.095, + "Name": "barrel_mk16_fn_254mm_556x45", + "ShortName": "barrel_mk16_fn_254mm_556x45", + "Description": "barrel_mk16_fn_254mm_556x45", + "Weight": 0.9, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mk16_fn_254mm_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "6183fc15d3a39d50044c13eb", + "_parent": "6183fc15d3a39d50044c13e9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b3a16655acfc40016387a2a", + "5c7e5f112e221600106f4ede", + "5c0fafb6d174af02a96260ba", + "612e0cfc8004cc50514c2d9e", + "5cf6937cd7f00c056c53fb39", + "544a38634bdc2d58388b4568", + "5cff9e5ed7ad1a09407397d4", + "5c48a2a42e221602b66d1e07", + "5f6372e2865db925d54f3869", + "618407a850224f204c1da549", + "615d8e2f1cb55961fa0fd9a4", + "56ea8180d2720bf2698b456a", + "5d02676dd7ad1a049e54f6dc", + "56ea6fafd2720b844b8b4593", + "5943ee5a86f77413872d25ec", + "609269c3b0e443224b421cc1", + "5c7fb51d2e2216001219ce11", + "5ea172e498dacb342978818e", + "5c6d710d2e22165df16b81e7", + "612e0e55a112697a4b3a66e7", + "5d440625a4b9361eec4ae6c5", + "5cc9b815d7f00c000e2579d6", + "5a7c147ce899ef00150bd8b8", + "5c7954d52e221600106f4cc7", + "59bffc1f86f77435b128b872", + "5a9fbb84a2750c00137fa685", + "626667e87379c44d557b7550", + "62669bccdb9ebb4daa44cd14", + "626a74340be03179a165e30c", + "6386120cd6baa055ad1e201c", + "63ac5c9658d0485fc039f0b8", + "6405ff6bd4578826ec3e377a", + "64943b74e9998d641b0412ed" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "6183fce9faa1272e4315240f", + "_parent": "6183fc15d3a39d50044c13e9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61816fcad92c473c770215cc" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": -15, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.078, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 0.82, + "HeatFactor": 1.06, + "CoolFactor": 1.09, + "DeviationCurve": 1.6, + "DeviationMax": 19 + }, + "_proto": "55d3632e4bdc2d972f8b4569" + }, + "5d3eb5b6a4b9361eab311902": { + "_id": "5d3eb5b6a4b9361eab311902", + "_name": "barrel_57_fn_120mm_57x28", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_p226_112mm_threaded_9x19", + "ShortName": "barrel_p226_112mm_threaded_9x19", + "Description": "barrel_p226_112mm_threaded_9x19", + "Weight": 0.17, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_m1911a1_127mm_1143x23.bundle", + "path": "assets/content/items/mods/barrels/barrel_57_fn_120mm_57x28.bundle", "rcid": "" }, "UsePrefab": { @@ -86040,10 +86456,10 @@ "Recoil": -3, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -5, + "Ergonomics": 0, "Velocity": -1.28, - "RaidModdable": false, - "ToolModdable": true, + "RaidModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -86051,34 +86467,34 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.35, + "CenterOfImpact": 0.24, "ShotgunDispersion": 1, "IsSilencer": false, "DurabilityBurnModificator": 1, - "HeatFactor": 1.1, - "CoolFactor": 1.15, + "HeatFactor": 1.12, + "CoolFactor": 1.18, "DeviationCurve": 2.25, "DeviationMax": 11 }, "_proto": "55d35ee94bdc2d61338b4568" }, - "5e87071478f43e51ca2de5e1": { - "_id": "5e87071478f43e51ca2de5e1", - "_name": "barrel_590_590a1_std_508mm_12g", + "61f4012adfc9f01a816adda1": { + "_id": "61f4012adfc9f01a816adda1", + "_name": "barrel_mp18_600mm_762x54r", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "barrel_870_extra_barrel_355mm", - "ShortName": "barrel_870_extra_barrel_355mm", - "Description": "barrel_870_extra_barrel_355mm", - "Weight": 0.8, + "Name": "Ствол 660мм для ружья МР-133 12к с прицельной планкой", + "ShortName": "660мм МР-133 12к", + "Description": "Стандартный заводской ствол для ружья МР-133 длинной 660мм под патрон 12-го калибра, с широкой прицельной планкой.", + "Weight": 1.35, "BackgroundColor": "blue", - "Width": 3, + "Width": 4, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_590_590a1_std_508mm_12g.bundle", + "path": "assets/content/items/mods/barrels/barrel_mp18_600mm_762x54r.bundle", "rcid": "" }, "UsePrefab": { @@ -86093,9 +86509,269 @@ "IsUnsaleable": false, "IsUnbuyable": false, "IsUngivable": false, - "IsLockedafterEquip": true, + "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 15, + "LootExperience": 20, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_handguard", + "_id": "61f7b8e6618893307a6e01c1", + "_parent": "61f4012adfc9f01a816adda1", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61f8024263dc1250e26eb029", + "61f7b85367ddd414173fdb36" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "61f8d29fd8304f1daf1c0534", + "_parent": "61f4012adfc9f01a816adda1", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61f804acfcba9556ea304cb8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -8, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -13, + "Velocity": 10.5, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.09, + "ShotgunDispersion": 1.3, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.9, + "CoolFactor": 0.94, + "DeviationCurve": 2.5, + "DeviationMax": 10 + }, + "_proto": "55d449444bdc2d962f8b456d" + }, + "560837154bdc2da74d8b4568": { + "_id": "560837154bdc2da74d8b4568", + "_name": "barrel_mr133_660mm_plank", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 660мм для ружья МР-133 12к с прицельной планкой", + "ShortName": "660мм МР-133 12к", + "Description": "Стандартный заводской ствол для ружья МР-133 длинной 660мм под патрон 12-го калибра, с широкой прицельной планкой.", + "Weight": 1.25, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mr133_660mm_plank.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "56e31582d2720b42068b4569", + "_parent": "560837154bdc2da74d8b4568", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0111ab0db834001966914d", + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5dfe4057e9dc277128008b42", + "_parent": "560837154bdc2da74d8b4568", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "609b9e31506cf869cf3eaf41", + "5dfe14f30b92095fd441edaf" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -10, + "Velocity": 13.5, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.5, + "ShotgunDispersion": 1.3, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.86, + "CoolFactor": 0.9, + "DeviationCurve": 2.5, + "DeviationMax": 10 + }, + "_proto": "55d449444bdc2d962f8b456d" + }, + "5a6b60158dc32e000a31138b": { + "_id": "5a6b60158dc32e000a31138b", + "_name": "barrel_glock_glock_114mm_9x19_compensated", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_glock_glock_114mm_9x19_std", + "ShortName": "barrel_glock_glock_114mm_9x19_std", + "Description": "barrel_glock_glock_114mm_9x19_std\n", + "Weight": 0.18, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_glock_glock_114mm_9x19_compensated.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, @@ -86123,331 +86799,7 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_sight_front", - "_id": "5e8720f1e2db31558c75a4ef", - "_parent": "5e87071478f43e51ca2de5e1", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5e8708d4ae379e67d22e0102" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 5, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -8, - "Velocity": 5.2, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.52, - "ShotgunDispersion": 1.4, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.92, - "CoolFactor": 0.96, - "DeviationCurve": 2.5, - "DeviationMax": 10 - }, - "_proto": "55d448594bdc2d8c2f8b4569" - }, - "6183b0711cb55961fa0fdcad": { - "_id": "6183b0711cb55961fa0fdcad", - "_name": "barrel_mk17_fn_406mm_762x51", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_mk17_fn_406mm_762x51", - "ShortName": "barrel_mk17_fn_406mm_762x51", - "Description": "barrel_mk17_fn_406mm_762x51", - "Weight": 1.12, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mk17_fn_406mm_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "6183b0711cb55961fa0fdcaf", - "_parent": "6183b0711cb55961fa0fdcad", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "612e0d3767085e45ef14057f", - "5b7d693d5acfc43bca706a3d", - "5a34fd2bc4a282329a73b4c5", - "618178aa1cb55961fa0fdc80", - "6065c6e7132d4d12c81fd8e1", - "5d1f819086f7744b355c219b", - "5dcbe965e4ed22586443a79d", - "5d026791d7ad1a04a067ea63", - "5dfa3cd1b33c0951220c079b", - "6130c43c67085e45ef1405a1", - "5cdd7685d7f00c000f260ed2", - "5c878e9d2e2216000f201903", - "5d02677ad7ad1a04a15c0f95", - "5bbdb8bdd4351e4502011460", - "5cdd7693d7f00c0010373aa5", - "607ffb988900dc2d9a55b6e4", - "615d8eb350224f204c1da1cf", - "612e0e3c290d254f5e6b291d", - "5d443f8fa4b93678dd4a01aa", - "5c7954d52e221600106f4cc7", - "5fbc22ccf24b94483f726483", - "59bffc1f86f77435b128b872", - "5cf78496d7f00c065703d6ca", - "5fbe7618d6fa9c00c571bb6c", - "628a66b41d5e41750e314f34" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "6183b0711cb55961fa0fdcb0", - "_parent": "6183b0711cb55961fa0fdcad", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61816fcad92c473c770215cc" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -13, - "Velocity": -6.48, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.05, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.94, - "CoolFactor": 0.94, - "DeviationCurve": 1.35, - "DeviationMax": 23 - }, - "_proto": "55d3632e4bdc2d972f8b4569" - }, - "5df917564a9f347bc92edca3": { - "_id": "5df917564a9f347bc92edca3", - "_name": "barrel_ar10_kac_406mm_762x51", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 370мм для AR-15 и совместимых 5.56х45", - "ShortName": "370мм AR-15 5.56х45", - "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 370мм. Соответствует стандартному стволу для M4A1.\n", - "Weight": 1.02, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_ar10_kac_406mm_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5df917564a9f347bc92edca5", - "_parent": "5df917564a9f347bc92edca3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "612e0d3767085e45ef14057f", - "5b7d693d5acfc43bca706a3d", - "5a34fd2bc4a282329a73b4c5", - "6065c6e7132d4d12c81fd8e1", - "5d1f819086f7744b355c219b", - "5dcbe965e4ed22586443a79d", - "5d026791d7ad1a04a067ea63", - "5dfa3cd1b33c0951220c079b", - "6130c43c67085e45ef1405a1", - "5cdd7685d7f00c000f260ed2", - "5c878e9d2e2216000f201903", - "5d02677ad7ad1a04a15c0f95", - "5bbdb8bdd4351e4502011460", - "5cdd7693d7f00c0010373aa5", - "607ffb988900dc2d9a55b6e4", - "615d8eb350224f204c1da1cf", - "612e0e3c290d254f5e6b291d", - "5d443f8fa4b93678dd4a01aa", - "5c7954d52e221600106f4cc7", - "5fbc22ccf24b94483f726483", - "59bffc1f86f77435b128b872", - "5cf78496d7f00c065703d6ca", - "5fbe7618d6fa9c00c571bb6c", - "628a66b41d5e41750e314f34" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_gas_block", - "_id": "5df917564a9f347bc92edca6", - "_parent": "5df917564a9f347bc92edca3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6065dc8a132d4d12c81fd8e3", - "5a34fbadc4a28200741e230a", - "5dfa3d45dfc58d14537c20b0" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, @@ -86455,10 +86807,10 @@ "Recoil": -5, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -12, - "Velocity": -6.48, - "RaidModdable": false, - "ToolModdable": true, + "Ergonomics": -5, + "Velocity": -4.28, + "RaidModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -86466,34 +86818,34 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.045, + "CenterOfImpact": 0.35, "ShotgunDispersion": 1, "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.93, - "CoolFactor": 0.98, - "DeviationCurve": 1.1, - "DeviationMax": 30 + "DurabilityBurnModificator": 0.9, + "HeatFactor": 1.14, + "CoolFactor": 1.21, + "DeviationCurve": 2.25, + "DeviationMax": 11 }, - "_proto": "55d3632e4bdc2d972f8b4569" + "_proto": "55d35ee94bdc2d61338b4568" }, - "5bb20da5d4351e0035629dbf": { - "_id": "5bb20da5d4351e0035629dbf", - "_name": "barrel_416_hk_419mm_556x45", - "_parent": "555ef6e44bdc2de9068b457e", + "62386b2adf47d66e835094b2": { + "_id": "62386b2adf47d66e835094b2", + "_name": "handguard_g36_hk_c", + "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "barrel_416_hk_419mm_556x45", - "ShortName": "barrel_416_hk_419mm_556x45", - "Description": "barrel_416_hk_419mm_556x45", - "Weight": 1.05, + "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Weight": 0.23, "BackgroundColor": "blue", - "Width": 3, + "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_416_hk_419mm_556x45.bundle", + "path": "assets/content/items/mods/handguards/handguard_g36_hk_c.bundle", "rcid": "" }, "UsePrefab": { @@ -86510,12 +86862,12 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, + "LootExperience": 10, + "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 3, + "ExtraSizeLeft": 1, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -86524,11 +86876,9 @@ "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [ - "5c6d10e82e221601da357b07", - "5bb20dfcd4351e00334c9e24", - "5c6d11072e2216000e69d2e4", - "5c6d11152e2216000f2003e7", - "5c6c2c9c2e2216000f2002e4" + "5a7dbfc1159bd40016548fde", + "622b3858034a3e17ad0b81f5", + "622b38c56762c718e457e246" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -86546,46 +86896,15 @@ "Grids": [], "Slots": [ { - "_name": "mod_muzzle", - "_id": "5bb20da5d4351e0035629dc1", - "_parent": "5bb20da5d4351e0035629dbf", + "_name": "mod_mount_000", + "_id": "62444de49f47004c781903ee", + "_parent": "62386b2adf47d66e835094b2", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5b3a16655acfc40016387a2a", - "5c7e5f112e221600106f4ede", - "5c0fafb6d174af02a96260ba", - "612e0cfc8004cc50514c2d9e", - "5cf6937cd7f00c056c53fb39", - "544a38634bdc2d58388b4568", - "5cff9e5ed7ad1a09407397d4", - "5c48a2a42e221602b66d1e07", - "5f6372e2865db925d54f3869", - "615d8e2f1cb55961fa0fd9a4", - "56ea8180d2720bf2698b456a", - "5d02676dd7ad1a049e54f6dc", - "56ea6fafd2720b844b8b4593", - "5943ee5a86f77413872d25ec", - "609269c3b0e443224b421cc1", - "5c7fb51d2e2216001219ce11", - "5ea172e498dacb342978818e", - "5c6d710d2e22165df16b81e7", - "612e0e55a112697a4b3a66e7", - "5d440625a4b9361eec4ae6c5", - "5cc9b815d7f00c000e2579d6", - "5a7c147ce899ef00150bd8b8", - "5c7954d52e221600106f4cc7", - "59bffc1f86f77435b128b872", - "5a9fbb84a2750c00137fa685", - "626667e87379c44d557b7550", - "62669bccdb9ebb4daa44cd14", - "626a74340be03179a165e30c", - "6386120cd6baa055ad1e201c", - "63ac5c9658d0485fc039f0b8", - "6405ff6bd4578826ec3e377a", - "64943b74e9998d641b0412ed" + "62444cb99f47004c781903eb" ] } ] @@ -86595,20 +86914,56 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_gas_block", - "_id": "5bb20da5d4351e0035629dc2", - "_parent": "5bb20da5d4351e0035629dbf", + "_name": "mod_mount_001", + "_id": "62444e307ba9d00d6d62b17a", + "_parent": "62386b2adf47d66e835094b2", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5bb20dcad4351e3bac1212da" + "62444cd3674028188b052799" ] } ] }, - "_required": true, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "62444e4fd9d6d1219f41bbca", + "_parent": "62386b2adf47d66e835094b2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62444cd3674028188b052799" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "62444e6dfce68a1dc533dacb", + "_parent": "62386b2adf47d66e835094b2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "622f16a1a5958f63c67f1737" + ] + } + ] + }, + "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" } @@ -86617,12 +86972,12 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -5, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -20, - "Velocity": -5, - "RaidModdable": false, + "Ergonomics": 12, + "Velocity": 0, + "RaidModdable": true, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -86631,16 +86986,10 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.045, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.98, - "CoolFactor": 0.99, - "DeviationCurve": 1.35, - "DeviationMax": 23 + "HeatFactor": 1.07, + "CoolFactor": 1 }, - "_proto": "55d35ee94bdc2d61338b4568" + "_proto": "55d459824bdc2d892f8b4573" }, "5ae09bff5acfc4001562219d": { "_id": "5ae09bff5acfc4001562219d", @@ -86799,23 +87148,23 @@ }, "_proto": "55d448594bdc2d8c2f8b4569" }, - "5beec2820db834001b095426": { - "_id": "5beec2820db834001b095426", - "_name": "barrel_rpk16_izhmash_550mm", + "6183fd911cb55961fa0fdce9": { + "_id": "6183fd911cb55961fa0fdce9", + "_name": "barrel_mk16_fn_355mm_556x45", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "barrel_rpk16_izhmash_550mm", - "ShortName": "barrel_rpk16_izhmash_550mm", - "Description": "barrel_rpk16_izhmash_550mm", - "Weight": 0.65, + "Name": "barrel_mk16_fn_254mm_556x45", + "ShortName": "barrel_mk16_fn_254mm_556x45", + "Description": "barrel_mk16_fn_254mm_556x45", + "Weight": 1, "BackgroundColor": "blue", "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_rpk16_izhmash_550mm.bundle", + "path": "assets/content/items/mods/barrels/barrel_mk16_fn_355mm_556x45.bundle", "rcid": "" }, "UsePrefab": { @@ -86837,11 +87186,11 @@ "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 3, + "ExtraSizeLeft": 1, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, + "ExtraSizeForceAdd": true, "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, @@ -86863,513 +87212,8 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "5beec2820db834001b095428", - "_parent": "5beec2820db834001b095426", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac72e945acfc43f3b691116", - "5ac7655e5acfc40016339a19", - "5649aa744bdc2ded0b8b457e", - "5943eeeb86f77412d6384f6b", - "5cc9a96cd7f00c011c04e04a", - "5649ab884bdc2ded0b8b457f", - "5beec3420db834001b095429", - "593d493f86f7745e6b2ceb22", - "564caa3d4bdc2d17108b458e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -7, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -11, - "Velocity": -5, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.032, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1.1, - "HeatFactor": 0.92, - "CoolFactor": 0.93, - "DeviationCurve": 1.35, - "DeviationMax": 23 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "5a787fdfc5856700142fdd9a": { - "_id": "5a787fdfc5856700142fdd9a", - "_name": "barrel_870_vent_rib_barrel_cut_off_325mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_870_extra_barrel_355mm", - "ShortName": "barrel_870_extra_barrel_355mm", - "Description": "barrel_870_extra_barrel_355mm", - "Weight": 0.8, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_870_vent_rib_barrel_cut_off_325mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": true, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "60acceb31a425a107168ef67", - "_parent": "5a787fdfc5856700142fdd9a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "609b9e31506cf869cf3eaf41" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 2.4, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.65, - "ShotgunDispersion": 1.6, - "IsSilencer": false, - "DurabilityBurnModificator": 0.82, - "HeatFactor": 0.98, - "CoolFactor": 1.04, - "DeviationCurve": 3, - "DeviationMax": 9 - }, - "_proto": "55d448594bdc2d8c2f8b4569" - }, - "5a6b5f868dc32e000a311389": { - "_id": "5a6b5f868dc32e000a311389", - "_name": "barrel_glock_glock_114mm_9x19_std", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_glock_glock_114mm_9x19_std", - "ShortName": "barrel_glock_glock_114mm_9x19_std", - "Description": "barrel_glock_glock_114mm_9x19_std\n", - "Weight": 0.18, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_glock_glock_114mm_9x19_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": -2.28, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.34, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.14, - "CoolFactor": 1.21, - "DeviationCurve": 2.25, - "DeviationMax": 11 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "5b1fa9ea5acfc40018633c0a": { - "_id": "5b1fa9ea5acfc40018633c0a", - "_name": "barrel_glock_glock_18c_114mm_9x19_std", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_glock_18_250mm_9x19_std", - "ShortName": "barrel_glock_18_250mm_9x19_std", - "Description": "barrel_glock_18_250mm_9x19_std\n", - "Weight": 0.18, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_glock_glock_18c_114mm_9x19_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": -4.28, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.35, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 0.94, - "HeatFactor": 1.14, - "CoolFactor": 1.21, - "DeviationCurve": 2.25, - "DeviationMax": 11 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "5f3e7801153b8571434a924c": { - "_id": "5f3e7801153b8571434a924c", - "_name": "barrel_m1911a1_127mm_national_match_1143x23", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_m1911a1_127mm_national_match_1143x23", - "ShortName": "barrel_m1911a1_127mm_national_match_1143x23", - "Description": "barrel_m1911a1_127mm_national_match_1143x23", - "Weight": 0.11, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_m1911a1_127mm_national_match_1143x23.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": -1.08, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.3, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 0.9, - "HeatFactor": 1.1, - "CoolFactor": 1.15, - "DeviationCurve": 2.25, - "DeviationMax": 11 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "63d3ce0446bd475bcb50f55f": { - "_id": "63d3ce0446bd475bcb50f55f", - "_name": "barrel_ar15_ba_hanson_carbine_pro_348mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 370мм для AR-15 и совместимых 5.56х45", - "ShortName": "370мм AR-15 5.56х45", - "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 370мм. Соответствует стандартному стволу для M4A1.\n", - "Weight": 0.509, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_ar15_ba_hanson_carbine_pro_348mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [ - "640b20359ab20e15ee445fa9", - "6034e3d953a60014f970617b", - "595cfa8b86f77427437e845b" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "63d3ce0446bd475bcb50f560", - "_parent": "63d3ce0446bd475bcb50f55f", + "_id": "6183fd911cb55961fa0fdceb", + "_parent": "6183fd911cb55961fa0fdce9", "_props": { "filters": [ { @@ -87384,6 +87228,7 @@ "5cff9e5ed7ad1a09407397d4", "5c48a2a42e221602b66d1e07", "5f6372e2865db925d54f3869", + "618407a850224f204c1da549", "615d8e2f1cb55961fa0fd9a4", "56ea8180d2720bf2698b456a", "5d02676dd7ad1a049e54f6dc", @@ -87416,36 +87261,15 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_gas_block", - "_id": "63d3ce0446bd475bcb50f561", - "_parent": "63d3ce0446bd475bcb50f55f", + "_name": "mod_sight_front", + "_id": "6183fd911cb55961fa0fdcec", + "_parent": "6183fd911cb55961fa0fdce9", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5ae30e795acfc408fb139a0b", - "56eabcd4d2720b66698b4574", - "56ea8d2fd2720b7c698b4570", - "63d3ce281fe77d0f2801859e" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_launcher", - "_id": "63d3ce0446bd475bcb50f562", - "_parent": "63d3ce0446bd475bcb50f55f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6357c98711fb55120211f7e1" + "61816fcad92c473c770215cc" ] } ] @@ -87459,11 +87283,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -3, + "Recoil": -4, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -12, - "Velocity": -6.98, + "Ergonomics": -13, + "Velocity": -8, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -87473,33 +87297,34 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.045, + "CenterOfImpact": 0.058, "ShotgunDispersion": 1, "IsSilencer": false, - "DurabilityBurnModificator": 0.96, + "DurabilityBurnModificator": 0.94, "HeatFactor": 1.02, "CoolFactor": 1.03, "DeviationCurve": 1.35, "DeviationMax": 23 - } + }, + "_proto": "55d3632e4bdc2d972f8b4569" }, - "6410758c857473525b08bb77": { - "_id": "6410758c857473525b08bb77", - "_name": "barrel_svt40_toz_625mm_762x54r", + "6065878ac9cf8012264142fd": { + "_id": "6065878ac9cf8012264142fd", + "_name": "barrel_mk47_cmmg_409mm_762x39", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", - "ShortName": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", - "Description": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", - "Weight": 1.33, + "Name": "barrel_mk47_cmmg_409mm_762x39", + "ShortName": "barrel_mk47_cmmg_409mm_762x39", + "Description": "barrel_mk47_cmmg_409mm_762x39", + "Weight": 1.13, "BackgroundColor": "blue", "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_svt40_toz_625mm_762x54r.bundle", + "path": "assets/content/items/mods/barrels/barrel_mk47_cmmg_409mm_762x39.bundle", "rcid": "" }, "UsePrefab": { @@ -87516,7 +87341,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 110, + "LootExperience": 15, "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, @@ -87547,32 +87372,36 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "6410758c857473525b08bb7a", - "_parent": "6410758c857473525b08bb77", + "_id": "6065878ac9cf8012264142ff", + "_parent": "6065878ac9cf8012264142fd", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "64119d1f2c6d6f921a0929f8" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "64119e5f2085aee50a044bd7", - "_parent": "6410758c857473525b08bb77", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "64119d90dcf48d656f0aa275" + "5b7d693d5acfc43bca706a3d", + "5a34fd2bc4a282329a73b4c5", + "6065c6e7132d4d12c81fd8e1", + "5d1f819086f7744b355c219b", + "5dcbe965e4ed22586443a79d", + "5d026791d7ad1a04a067ea63", + "5dfa3cd1b33c0951220c079b", + "5cdd7685d7f00c000f260ed2", + "5c878e9d2e2216000f201903", + "5d02677ad7ad1a04a15c0f95", + "5bbdb8bdd4351e4502011460", + "5cdd7693d7f00c0010373aa5", + "607ffb988900dc2d9a55b6e4", + "615d8eb350224f204c1da1cf", + "5d443f8fa4b93678dd4a01aa", + "5c7954d52e221600106f4cc7", + "5fbc22ccf24b94483f726483", + "59bffc1f86f77435b128b872", + "5fbe7618d6fa9c00c571bb6c", + "612e0e3c290d254f5e6b291d", + "6130c43c67085e45ef1405a1", + "628a66b41d5e41750e314f34", + "618178aa1cb55961fa0fdc80" ] } ] @@ -87580,17 +87409,36 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_gas_block", + "_id": "6065878ac9cf801226414300", + "_parent": "6065878ac9cf8012264142fd", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6065dc8a132d4d12c81fd8e3", + "5dfa3d45dfc58d14537c20b0" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -10, + "Recoil": -4, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -7, - "Velocity": 8.2, + "Ergonomics": -19, + "Velocity": -6.48, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -87600,34 +87448,34 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.038, - "ShotgunDispersion": 1.9, + "CenterOfImpact": 0.05, + "ShotgunDispersion": 1, "IsSilencer": false, "DurabilityBurnModificator": 1, - "HeatFactor": 0.84, - "CoolFactor": 0.89, - "DeviationCurve": 1.1, - "DeviationMax": 33 + "HeatFactor": 0.94, + "CoolFactor": 0.99, + "DeviationCurve": 1.35, + "DeviationMax": 23 }, - "_proto": "55d448594bdc2d8c2f8b4569" + "_proto": "55d3632e4bdc2d972f8b4569" }, - "6231654c71b5bc3baa1078e5": { - "_id": "6231654c71b5bc3baa1078e5", - "_name": "handguard_g36_hk_heatshield_a1", - "_parent": "55818a104bdc2db9688b4569", + "6194f02d9bb3d20b0946d2f0": { + "_id": "6194f02d9bb3d20b0946d2f0", + "_name": "barrel_hk_usp_153mm_1143x23_match", + "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Weight": 0.38, + "Name": "barrel_glock_glock_114mm_9x19_std", + "ShortName": "barrel_glock_glock_114mm_9x19_std", + "Description": "barrel_glock_glock_114mm_9x19_std\n", + "Weight": 0.17, "BackgroundColor": "blue", - "Width": 3, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_g36_hk_heatshield_a1.bundle", + "path": "assets/content/items/mods/barrels/barrel_hk_usp_153mm_1143x23_match.bundle", "rcid": "" }, "UsePrefab": { @@ -87644,12 +87492,12 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 3, + "LootExperience": 5, + "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 2, + "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -87657,10 +87505,7 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "622b379bf9cfc87d675d2de5", - "622b3858034a3e17ad0b81f5" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -87675,36 +87520,17 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_bipod", - "_id": "623167968c43374ca1567197", - "_parent": "6231654c71b5bc3baa1078e5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "622b397c9a3d4327e41843b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 0, - "Recoil": -2, + "Accuracy": 2, + "Recoil": -4, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": true, + "Ergonomics": -7, + "Velocity": 1.28, + "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -87713,28 +87539,34 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 0.975, - "CoolFactor": 1.12 + "CenterOfImpact": 0.23, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1.06, + "CoolFactor": 1.09, + "DeviationCurve": 2.25, + "DeviationMax": 11 }, - "_proto": "55d459824bdc2d892f8b4573" + "_proto": "55d35ee94bdc2d61338b4568" }, - "560836b64bdc2d57468b4567": { - "_id": "560836b64bdc2d57468b4567", - "_name": "barrel_mr133_540mm_plank", + "5de65547883dde217541644b": { + "_id": "5de65547883dde217541644b", + "_name": "barrel_vpo215_600mm_366tkm", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "Ствол 540мм для ружья МР-133 12к с прицельной планкой", - "ShortName": "540мм МР-133 12к", - "Description": "Стандартный заводской ствол для ружья МР-133 длинной 540мм под патрон 12-го калибра, с широкой прицельной планкой.", - "Weight": 0.85, + "Name": "barrel_m700_remington_heavy_threaded_508mm", + "ShortName": "barrel_m700_remington_heavy_threaded_508mm", + "Description": "barrel_m700_remington_heavy_threaded_508mm", + "Weight": 1.2, "BackgroundColor": "blue", "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr133_540mm_plank.bundle", + "path": "assets/content/items/mods/barrels/barrel_vpo215_600mm_366tkm.bundle", "rcid": "" }, "UsePrefab": { @@ -87756,7 +87588,7 @@ "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 1, + "ExtraSizeLeft": 3, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -87782,8 +87614,119 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "56e31556d2720b4c098b4568", - "_parent": "560836b64bdc2d57468b4567", + "_id": "5de65547883dde217541644d", + "_parent": "5de65547883dde217541644b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5de6556a205ddc616a6bc4f7", + "5a9fbb74a2750c0032157181" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -7, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -8, + "Velocity": 6.48, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.041, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.83, + "CoolFactor": 0.88, + "DeviationCurve": 1, + "DeviationMax": 33 + }, + "_proto": "55d3632e4bdc2d972f8b4569" + }, + "55d449444bdc2d962f8b456d": { + "_id": "55d449444bdc2d962f8b456d", + "_name": "barrel_mr133_610mm_plank", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 610мм для ружья МР-133 12к с прицельной планкой", + "ShortName": "610мм МР-133 12к", + "Description": "Стандартный заводской ствол для ружья МР-133 длинной 610мм под патрон 12-го калибра, с широкой прицельной планкой.", + "Weight": 1.25, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mr133_610mm_plank.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "56e31524d2720b5e068b4570", + "_parent": "55d449444bdc2d962f8b456d", "_props": { "filters": [ { @@ -87802,8 +87745,8 @@ }, { "_name": "mod_mount", - "_id": "5dfe4008fca8e055d15b75ac", - "_parent": "560836b64bdc2d57468b4567", + "_id": "5dfe4036b33c0951220c0912", + "_parent": "55d449444bdc2d962f8b456d", "_props": { "filters": [ { @@ -87824,11 +87767,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -3.5, + "Recoil": -4, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": 8.1, + "Ergonomics": -6, + "Velocity": 10.8, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -87838,16 +87781,605 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.6, - "ShotgunDispersion": 1.5, + "CenterOfImpact": 0.58, + "ShotgunDispersion": 1.4, "IsSilencer": false, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 0.9, - "CoolFactor": 0.94, - "DeviationCurve": 3, - "DeviationMax": 9 + "DurabilityBurnModificator": 1, + "HeatFactor": 0.88, + "CoolFactor": 0.92, + "DeviationCurve": 2.5, + "DeviationMax": 10 }, - "_proto": "560835c74bdc2dc8488b456f" + "_proto": "55d448594bdc2d8c2f8b4569" + }, + "5fbbc366ca32ed67276c1557": { + "_id": "5fbbc366ca32ed67276c1557", + "_name": "barrel_vector_140mm_9x19", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_vector_140mm_1143x23", + "ShortName": "barrel_vector_140mm_1143x23", + "Description": "barrel_vector_140mm_1143x23\n", + "Weight": 0.16, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_vector_140mm_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5fbbc366ca32ed67276c1559", + "_parent": "5fbbc366ca32ed67276c1557", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cf6935bd7f00c06585fb791", + "5fbbc3324e8a554c40648348", + "5c7954d52e221600106f4cc7", + "5fbbc34106bde7524f03cbe9", + "5a9fb739a2750c003215717f", + "5c6165902e22160010261b28", + "5a32a064c4a28200741e22de" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": -2.48, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.19, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 0.95, + "HeatFactor": 1.05, + "CoolFactor": 1.08, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "602a95fe4e02ce1eaa358729": { + "_id": "602a95fe4e02ce1eaa358729", + "_name": "barrel_pl15_izhmash_112mm_threaded_9x19", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_glock_alpha_wolf_114mm_threaded_9x19", + "ShortName": "barrel_glock_alpha_wolf_114mm_threaded_9x19", + "Description": "barrel_glock_alpha_wolf_114mm_threaded_9x19", + "Weight": 0.18, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_pl15_izhmash_112mm_threaded_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "602a95fe4e02ce1eaa35872b", + "_parent": "602a95fe4e02ce1eaa358729", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7e8fab2e22165df16b889b", + "5a33a8ebc4a282000c5a950d", + "602a97060ddce744014caf6f", + "5c6165902e22160010261b28", + "5a32a064c4a28200741e22de" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": -2.28, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.32, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.14, + "CoolFactor": 1.21, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "5b099a765acfc47a8607efe3": { + "_id": "5b099a765acfc47a8607efe3", + "_name": "barrel_sa58_ds_arms_medium_contour_280mm", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_sa58_ds_arms_medium_contour_280mm", + "ShortName": "barrel_sa58_ds_arms_medium_contour_280mm", + "Description": "barrel_sa58_ds_arms_medium_contour_280mm", + "Weight": 0.409, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_sa58_ds_arms_medium_contour_280mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5b7be2345acfc400196d524a", + "5b7bebc85acfc43bca706666", + "5b7d671b5acfc43d82528ddd", + "5b7bed205acfc400161d08cc", + "5b7bedd75acfc43d825283f9", + "5b7be1ca5acfc400170e2d2f" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5b099a765acfc47a8607efe5", + "_parent": "5b099a765acfc47a8607efe3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "612e0d3767085e45ef14057f", + "5b7d693d5acfc43bca706a3d", + "5a34fd2bc4a282329a73b4c5", + "5d1f819086f7744b355c219b", + "5dcbe965e4ed22586443a79d", + "5d026791d7ad1a04a067ea63", + "5dfa3cd1b33c0951220c079b", + "6130c43c67085e45ef1405a1", + "5cdd7685d7f00c000f260ed2", + "5c878e9d2e2216000f201903", + "5d02677ad7ad1a04a15c0f95", + "5bbdb8bdd4351e4502011460", + "5cdd7693d7f00c0010373aa5", + "615d8eb350224f204c1da1cf", + "612e0e3c290d254f5e6b291d", + "5d443f8fa4b93678dd4a01aa", + "5b7d68af5acfc400170e30c3", + "5b099b7d5acfc400186331e4", + "5c7954d52e221600106f4cc7", + "59bffc1f86f77435b128b872", + "5cf78496d7f00c065703d6ca", + "618178aa1cb55961fa0fdc80", + "6065c6e7132d4d12c81fd8e1", + "628a66b41d5e41750e314f34", + "607ffb988900dc2d9a55b6e4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 2, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -8, + "Velocity": -12, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.08, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 0.85, + "HeatFactor": 0.98, + "CoolFactor": 0.99, + "DeviationCurve": 1.6, + "DeviationMax": 19 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "603372b4da11d6478d5a07ff": { + "_id": "603372b4da11d6478d5a07ff", + "_name": "barrel_stm9_stmarms_266mm_9x19", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_stm9_stmarms_266mm_9x19", + "ShortName": "barrel_stm9_stmarms_266mm_9x19", + "Description": "barrel_stm9_stmarms_266mm_9x19", + "Weight": 0.409, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_stm9_stmarms_266mm_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5b2cfa535acfc432ff4db7a0", + "5c9a25172e2216000f20314e", + "5ea16ada09aa976f2e7a51be", + "5a329052c4a28200741e22d3", + "5d122e7bd7ad1a07102d6d7f", + "5d4405f0a4b9361e6a4e6bd9", + "5c78f2492e221600114c9f04", + "5c78f2612e221600114c9f0d", + "6087e0336d0bd7580617bb7a", + "595cfa8b86f77427437e845b", + "595cf16b86f77427440c32e2" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "603372b4da11d6478d5a0801", + "_parent": "603372b4da11d6478d5a07ff", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "60337f5dce399e10262255d1", + "5fbbc3324e8a554c40648348", + "5c7954d52e221600106f4cc7", + "5a9fb739a2750c003215717f", + "5c6165902e22160010261b28", + "5a32a064c4a28200741e22de" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -10, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.11, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 0.81, + "HeatFactor": 0.97, + "CoolFactor": 1.03, + "DeviationCurve": 2.1, + "DeviationMax": 12 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "6194ef39de3cdf1d2614a768": { + "_id": "6194ef39de3cdf1d2614a768", + "_name": "barrel_hk_usp_112mm_1143x23_std", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_glock_glock_114mm_9x19_std", + "ShortName": "barrel_glock_glock_114mm_9x19_std", + "Description": "barrel_glock_glock_114mm_9x19_std\n", + "Weight": 0.113, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_hk_usp_112mm_1143x23_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": -2.28, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.28, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.14, + "CoolFactor": 1.21, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "55d35ee94bdc2d61338b4568" }, "5fbbc383d5cb881a7363194a": { "_id": "5fbbc383d5cb881a7363194a", @@ -88533,903 +89065,6 @@ }, "_proto": "55d35ee94bdc2d61338b4568" }, - "6194eff92d2c397d6600348b": { - "_id": "6194eff92d2c397d6600348b", - "_name": "barrel_hk_usp_132mm_1143x23_expert", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_glock_glock_114mm_9x19_std", - "ShortName": "barrel_glock_glock_114mm_9x19_std", - "Description": "barrel_glock_glock_114mm_9x19_std\n", - "Weight": 0.141, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_hk_usp_132mm_1143x23_expert.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2.5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": -1.58, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.26, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.1, - "CoolFactor": 1.15, - "DeviationCurve": 2.25, - "DeviationMax": 11 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "6183fc15d3a39d50044c13e9": { - "_id": "6183fc15d3a39d50044c13e9", - "_name": "barrel_mk16_fn_254mm_556x45", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_mk16_fn_254mm_556x45", - "ShortName": "barrel_mk16_fn_254mm_556x45", - "Description": "barrel_mk16_fn_254mm_556x45", - "Weight": 0.9, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mk16_fn_254mm_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "6183fc15d3a39d50044c13eb", - "_parent": "6183fc15d3a39d50044c13e9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b3a16655acfc40016387a2a", - "5c7e5f112e221600106f4ede", - "5c0fafb6d174af02a96260ba", - "612e0cfc8004cc50514c2d9e", - "5cf6937cd7f00c056c53fb39", - "544a38634bdc2d58388b4568", - "5cff9e5ed7ad1a09407397d4", - "5c48a2a42e221602b66d1e07", - "5f6372e2865db925d54f3869", - "618407a850224f204c1da549", - "615d8e2f1cb55961fa0fd9a4", - "56ea8180d2720bf2698b456a", - "5d02676dd7ad1a049e54f6dc", - "56ea6fafd2720b844b8b4593", - "5943ee5a86f77413872d25ec", - "609269c3b0e443224b421cc1", - "5c7fb51d2e2216001219ce11", - "5ea172e498dacb342978818e", - "5c6d710d2e22165df16b81e7", - "612e0e55a112697a4b3a66e7", - "5d440625a4b9361eec4ae6c5", - "5cc9b815d7f00c000e2579d6", - "5a7c147ce899ef00150bd8b8", - "5c7954d52e221600106f4cc7", - "59bffc1f86f77435b128b872", - "5a9fbb84a2750c00137fa685", - "626667e87379c44d557b7550", - "62669bccdb9ebb4daa44cd14", - "626a74340be03179a165e30c", - "6386120cd6baa055ad1e201c", - "63ac5c9658d0485fc039f0b8", - "6405ff6bd4578826ec3e377a", - "64943b74e9998d641b0412ed" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "6183fce9faa1272e4315240f", - "_parent": "6183fc15d3a39d50044c13e9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61816fcad92c473c770215cc" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": -15, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.078, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 0.82, - "HeatFactor": 1.06, - "CoolFactor": 1.09, - "DeviationCurve": 1.6, - "DeviationMax": 19 - }, - "_proto": "55d3632e4bdc2d972f8b4569" - }, - "560837154bdc2da74d8b4568": { - "_id": "560837154bdc2da74d8b4568", - "_name": "barrel_mr133_660mm_plank", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 660мм для ружья МР-133 12к с прицельной планкой", - "ShortName": "660мм МР-133 12к", - "Description": "Стандартный заводской ствол для ружья МР-133 длинной 660мм под патрон 12-го калибра, с широкой прицельной планкой.", - "Weight": 1.25, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr133_660mm_plank.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "56e31582d2720b42068b4569", - "_parent": "560837154bdc2da74d8b4568", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0111ab0db834001966914d", - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5dfe4057e9dc277128008b42", - "_parent": "560837154bdc2da74d8b4568", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "609b9e31506cf869cf3eaf41", - "5dfe14f30b92095fd441edaf" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -10, - "Velocity": 13.5, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.5, - "ShotgunDispersion": 1.3, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.86, - "CoolFactor": 0.9, - "DeviationCurve": 2.5, - "DeviationMax": 10 - }, - "_proto": "55d449444bdc2d962f8b456d" - }, - "5df256570dee1b22f862e9c4": { - "_id": "5df256570dee1b22f862e9c4", - "_name": "barrel_t5000_660mm_762x51", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_t5000_660mm_762x51", - "ShortName": "barrel_t5000_660mm_762x51", - "Description": "barrel_t5000_660mm_762x51", - "Weight": 2.7, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_t5000_660mm_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5df256570dee1b22f862e9c6", - "_parent": "5df256570dee1b22f862e9c4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "612e0d3767085e45ef14057f", - "5b7d693d5acfc43bca706a3d", - "5a34fd2bc4a282329a73b4c5", - "5d1f819086f7744b355c219b", - "5dcbe965e4ed22586443a79d", - "5d026791d7ad1a04a067ea63", - "5dfa3cd1b33c0951220c079b", - "6130c43c67085e45ef1405a1", - "5cdd7685d7f00c000f260ed2", - "5c878e9d2e2216000f201903", - "5d02677ad7ad1a04a15c0f95", - "5bbdb8bdd4351e4502011460", - "5cdd7693d7f00c0010373aa5", - "615d8eb350224f204c1da1cf", - "612e0e3c290d254f5e6b291d", - "5d443f8fa4b93678dd4a01aa", - "5df35e7f2a78646d96665dd4", - "5c7954d52e221600106f4cc7", - "59bffc1f86f77435b128b872", - "5fbc22ccf24b94483f726483" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -10, - "Velocity": 11.5, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.019, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.82, - "CoolFactor": 0.86, - "DeviationCurve": 1, - "DeviationMax": 33 - }, - "_proto": "55d3632e4bdc2d972f8b4569" - }, - "5a6b60158dc32e000a31138b": { - "_id": "5a6b60158dc32e000a31138b", - "_name": "barrel_glock_glock_114mm_9x19_compensated", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_glock_glock_114mm_9x19_std", - "ShortName": "barrel_glock_glock_114mm_9x19_std", - "Description": "barrel_glock_glock_114mm_9x19_std\n", - "Weight": 0.18, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_glock_glock_114mm_9x19_compensated.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": -4.28, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.35, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 0.9, - "HeatFactor": 1.14, - "CoolFactor": 1.21, - "DeviationCurve": 2.25, - "DeviationMax": 11 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "63d3d44a2a49307baf09386d": { - "_id": "63d3d44a2a49307baf09386d", - "_name": "barrel_ar15_ba_hanson_carbine_pro_406mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_ar15_457mm", - "ShortName": "barrel_ar15_457mm", - "Description": "barrel_ar15_457mm", - "Weight": 0.78, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_ar15_ba_hanson_carbine_pro_406mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [ - "5ae30db85acfc408fb139a05", - "55d459824bdc2d892f8b4573", - "5c78f2792e221600106f4683", - "5d00e0cbd7ad1a6c6566a42d", - "5d00f63bd7ad1a59283b1c1e" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "63d3d44a2a49307baf09386e", - "_parent": "63d3d44a2a49307baf09386d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b3a16655acfc40016387a2a", - "5c7e5f112e221600106f4ede", - "5c0fafb6d174af02a96260ba", - "612e0cfc8004cc50514c2d9e", - "5cf6937cd7f00c056c53fb39", - "544a38634bdc2d58388b4568", - "5cff9e5ed7ad1a09407397d4", - "5c48a2a42e221602b66d1e07", - "5f6372e2865db925d54f3869", - "615d8e2f1cb55961fa0fd9a4", - "56ea8180d2720bf2698b456a", - "5d02676dd7ad1a049e54f6dc", - "56ea6fafd2720b844b8b4593", - "5943ee5a86f77413872d25ec", - "609269c3b0e443224b421cc1", - "5c7fb51d2e2216001219ce11", - "5ea172e498dacb342978818e", - "5c6d710d2e22165df16b81e7", - "612e0e55a112697a4b3a66e7", - "5d440625a4b9361eec4ae6c5", - "5cc9b815d7f00c000e2579d6", - "5a7c147ce899ef00150bd8b8", - "5c7954d52e221600106f4cc7", - "59bffc1f86f77435b128b872", - "5a9fbb84a2750c00137fa685", - "626667e87379c44d557b7550", - "62669bccdb9ebb4daa44cd14", - "626a74340be03179a165e30c", - "6386120cd6baa055ad1e201c", - "63ac5c9658d0485fc039f0b8", - "6405ff6bd4578826ec3e377a", - "64943b74e9998d641b0412ed" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_gas_block", - "_id": "63d3d44a2a49307baf09386f", - "_parent": "63d3d44a2a49307baf09386d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "56eabcd4d2720b66698b4574", - "63d3ce281fe77d0f2801859e" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -15, - "Velocity": -5.48, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.03, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.96, - "CoolFactor": 0.96, - "DeviationCurve": 1.35, - "DeviationMax": 23 - }, - "_proto": "55d3632e4bdc2d972f8b4569" - }, - "57cffddc24597763133760c6": { - "_id": "57cffddc24597763133760c6", - "_name": "handguard_ak_magpul_moe_ak_od", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_magpul_moe_ak_od", - "ShortName": "handguard_ak_magpul_moe_ak_od", - "Description": "handguard_ak_magpul_moe_ak_od", - "Weight": 0.221, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_magpul_moe_ak_od.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_003", - "_id": "57cffe8e245977638e6f2a32", - "_parent": "57cffddc24597763133760c6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8e529829226ceb67c319", - "651a8bf3a8520e48047bf708" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5b7d24145acfc400161d0a87", - "_parent": "57cffddc24597763133760c6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.053, - "CoolFactor": 1.018 - }, - "_proto": "57cffd8224597763b03fc609" - }, "6194f017ed0429009f543eaa": { "_id": "6194f017ed0429009f543eaa", "_name": "barrel_hk_usp_153mm_1143x23_elite", @@ -89656,23 +89291,23 @@ }, "_proto": "55d3632e4bdc2d972f8b4569" }, - "6194f02d9bb3d20b0946d2f0": { - "_id": "6194f02d9bb3d20b0946d2f0", - "_name": "barrel_hk_usp_153mm_1143x23_match", + "6194eff92d2c397d6600348b": { + "_id": "6194eff92d2c397d6600348b", + "_name": "barrel_hk_usp_132mm_1143x23_expert", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { "Name": "barrel_glock_glock_114mm_9x19_std", "ShortName": "barrel_glock_glock_114mm_9x19_std", "Description": "barrel_glock_glock_114mm_9x19_std\n", - "Weight": 0.17, + "Weight": 0.141, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_hk_usp_153mm_1143x23_match.bundle", + "path": "assets/content/items/mods/barrels/barrel_hk_usp_132mm_1143x23_expert.bundle", "rcid": "" }, "UsePrefab": { @@ -89721,12 +89356,12 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 2, - "Recoil": -4, + "Accuracy": 0, + "Recoil": -2.5, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -7, - "Velocity": 1.28, + "Ergonomics": -4, + "Velocity": -1.58, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -89736,34 +89371,34 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.23, + "CenterOfImpact": 0.26, "ShotgunDispersion": 1, "IsSilencer": false, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1.06, - "CoolFactor": 1.09, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.1, + "CoolFactor": 1.15, "DeviationCurve": 2.25, "DeviationMax": 11 }, "_proto": "55d35ee94bdc2d61338b4568" }, - "5de65547883dde217541644b": { - "_id": "5de65547883dde217541644b", - "_name": "barrel_vpo215_600mm_366tkm", + "5df256570dee1b22f862e9c4": { + "_id": "5df256570dee1b22f862e9c4", + "_name": "barrel_t5000_660mm_762x51", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "barrel_m700_remington_heavy_threaded_508mm", - "ShortName": "barrel_m700_remington_heavy_threaded_508mm", - "Description": "barrel_m700_remington_heavy_threaded_508mm", - "Weight": 1.2, + "Name": "barrel_t5000_660mm_762x51", + "ShortName": "barrel_t5000_660mm_762x51", + "Description": "barrel_t5000_660mm_762x51", + "Weight": 2.7, "BackgroundColor": "blue", "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_vpo215_600mm_366tkm.bundle", + "path": "assets/content/items/mods/barrels/barrel_t5000_660mm_762x51.bundle", "rcid": "" }, "UsePrefab": { @@ -89811,15 +89446,33 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "5de65547883dde217541644d", - "_parent": "5de65547883dde217541644b", + "_id": "5df256570dee1b22f862e9c6", + "_parent": "5df256570dee1b22f862e9c4", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5de6556a205ddc616a6bc4f7", - "5a9fbb74a2750c0032157181" + "612e0d3767085e45ef14057f", + "5b7d693d5acfc43bca706a3d", + "5a34fd2bc4a282329a73b4c5", + "5d1f819086f7744b355c219b", + "5dcbe965e4ed22586443a79d", + "5d026791d7ad1a04a067ea63", + "5dfa3cd1b33c0951220c079b", + "6130c43c67085e45ef1405a1", + "5cdd7685d7f00c000f260ed2", + "5c878e9d2e2216000f201903", + "5d02677ad7ad1a04a15c0f95", + "5bbdb8bdd4351e4502011460", + "5cdd7693d7f00c0010373aa5", + "615d8eb350224f204c1da1cf", + "612e0e3c290d254f5e6b291d", + "5d443f8fa4b93678dd4a01aa", + "5df35e7f2a78646d96665dd4", + "5c7954d52e221600106f4cc7", + "59bffc1f86f77435b128b872", + "5fbc22ccf24b94483f726483" ] } ] @@ -89833,11 +89486,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -7, + "Recoil": -5, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -8, - "Velocity": 6.48, + "Ergonomics": -10, + "Velocity": 11.5, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -89847,34 +89500,34 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.041, + "CenterOfImpact": 0.019, "ShotgunDispersion": 1, "IsSilencer": false, "DurabilityBurnModificator": 1, - "HeatFactor": 0.83, - "CoolFactor": 0.88, + "HeatFactor": 0.82, + "CoolFactor": 0.86, "DeviationCurve": 1, "DeviationMax": 33 }, "_proto": "55d3632e4bdc2d972f8b4569" }, - "5fbbc366ca32ed67276c1557": { - "_id": "5fbbc366ca32ed67276c1557", - "_name": "barrel_vector_140mm_9x19", + "63d3d44a2a49307baf09386d": { + "_id": "63d3d44a2a49307baf09386d", + "_name": "barrel_ar15_ba_hanson_carbine_pro_406mm", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "barrel_vector_140mm_1143x23", - "ShortName": "barrel_vector_140mm_1143x23", - "Description": "barrel_vector_140mm_1143x23\n", - "Weight": 0.16, + "Name": "barrel_ar15_457mm", + "ShortName": "barrel_ar15_457mm", + "Description": "barrel_ar15_457mm", + "Weight": 0.78, "BackgroundColor": "blue", - "Width": 2, + "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_vector_140mm_9x19.bundle", + "path": "assets/content/items/mods/barrels/barrel_ar15_ba_hanson_carbine_pro_406mm.bundle", "rcid": "" }, "UsePrefab": { @@ -89891,12 +89544,178 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, + "LootExperience": 20, "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [ + "5ae30db85acfc408fb139a05", + "55d459824bdc2d892f8b4573", + "5c78f2792e221600106f4683", + "5d00e0cbd7ad1a6c6566a42d", + "5d00f63bd7ad1a59283b1c1e" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "63d3d44a2a49307baf09386e", + "_parent": "63d3d44a2a49307baf09386d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b3a16655acfc40016387a2a", + "5c7e5f112e221600106f4ede", + "5c0fafb6d174af02a96260ba", + "612e0cfc8004cc50514c2d9e", + "5cf6937cd7f00c056c53fb39", + "544a38634bdc2d58388b4568", + "5cff9e5ed7ad1a09407397d4", + "5c48a2a42e221602b66d1e07", + "5f6372e2865db925d54f3869", + "615d8e2f1cb55961fa0fd9a4", + "56ea8180d2720bf2698b456a", + "5d02676dd7ad1a049e54f6dc", + "56ea6fafd2720b844b8b4593", + "5943ee5a86f77413872d25ec", + "609269c3b0e443224b421cc1", + "5c7fb51d2e2216001219ce11", + "5ea172e498dacb342978818e", + "5c6d710d2e22165df16b81e7", + "612e0e55a112697a4b3a66e7", + "5d440625a4b9361eec4ae6c5", + "5cc9b815d7f00c000e2579d6", + "5a7c147ce899ef00150bd8b8", + "5c7954d52e221600106f4cc7", + "59bffc1f86f77435b128b872", + "5a9fbb84a2750c00137fa685", + "626667e87379c44d557b7550", + "62669bccdb9ebb4daa44cd14", + "626a74340be03179a165e30c", + "6386120cd6baa055ad1e201c", + "63ac5c9658d0485fc039f0b8", + "6405ff6bd4578826ec3e377a", + "64943b74e9998d641b0412ed" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_gas_block", + "_id": "63d3d44a2a49307baf09386f", + "_parent": "63d3d44a2a49307baf09386d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "56eabcd4d2720b66698b4574", + "63d3ce281fe77d0f2801859e" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -15, + "Velocity": -5.48, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.03, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.96, + "CoolFactor": 0.96, + "DeviationCurve": 1.35, + "DeviationMax": 23 + }, + "_proto": "55d3632e4bdc2d972f8b4569" + }, + "5dcbe9431e1f4616d354987e": { + "_id": "5dcbe9431e1f4616d354987e", + "_name": "barrel_mdr_dt_406mm_762x51", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 370мм для AR-15 и совместимых 5.56х45", + "ShortName": "370мм AR-15 5.56х45", + "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 370мм. Соответствует стандартному стволу для M4A1.\n", + "Weight": 0.62, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mdr_dt_406mm_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -89922,20 +89741,35 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "5fbbc366ca32ed67276c1559", - "_parent": "5fbbc366ca32ed67276c1557", + "_id": "5dcbe9431e1f4616d3549880", + "_parent": "5dcbe9431e1f4616d354987e", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5cf6935bd7f00c06585fb791", - "5fbbc3324e8a554c40648348", + "612e0d3767085e45ef14057f", + "5b3a16655acfc40016387a2a", + "5b7d693d5acfc43bca706a3d", + "5a34fd2bc4a282329a73b4c5", + "6065c6e7132d4d12c81fd8e1", + "5d1f819086f7744b355c219b", + "5dcbe965e4ed22586443a79d", + "5d026791d7ad1a04a067ea63", + "5dfa3cd1b33c0951220c079b", + "6130c43c67085e45ef1405a1", + "5cdd7685d7f00c000f260ed2", + "5c878e9d2e2216000f201903", + "5d02677ad7ad1a04a15c0f95", + "5bbdb8bdd4351e4502011460", + "5cdd7693d7f00c0010373aa5", + "607ffb988900dc2d9a55b6e4", + "615d8eb350224f204c1da1cf", + "612e0e3c290d254f5e6b291d", + "5d443f8fa4b93678dd4a01aa", "5c7954d52e221600106f4cc7", - "5fbbc34106bde7524f03cbe9", - "5a9fb739a2750c003215717f", - "5c6165902e22160010261b28", - "5a32a064c4a28200741e22de" + "59bffc1f86f77435b128b872", + "5cf78496d7f00c065703d6ca" ] } ] @@ -89949,11 +89783,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -3, + "Recoil": -10, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": -2.48, + "Ergonomics": -6, + "Velocity": -5.58, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -89963,26 +89797,163 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.19, + "CenterOfImpact": 0.04, "ShotgunDispersion": 1, "IsSilencer": false, - "DurabilityBurnModificator": 0.95, - "HeatFactor": 1.05, - "CoolFactor": 1.08, - "DeviationCurve": 2.25, - "DeviationMax": 11 + "DurabilityBurnModificator": 1, + "HeatFactor": 0.94, + "CoolFactor": 0.94, + "DeviationCurve": 1.35, + "DeviationMax": 23 }, - "_proto": "55d35ee94bdc2d61338b4568" + "_proto": "55d3632e4bdc2d972f8b4569" }, - "602a95fe4e02ce1eaa358729": { - "_id": "602a95fe4e02ce1eaa358729", - "_name": "barrel_pl15_izhmash_112mm_threaded_9x19", + "5b7be1265acfc400161d0798": { + "_id": "5b7be1265acfc400161d0798", + "_name": "barrel_sa58_ds_arms_medium_contour_533mm", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "barrel_glock_alpha_wolf_114mm_threaded_9x19", - "ShortName": "barrel_glock_alpha_wolf_114mm_threaded_9x19", - "Description": "barrel_glock_alpha_wolf_114mm_threaded_9x19", + "Name": "barrel_sa58_ds_arms_medium_contour_533mm", + "ShortName": "barrel_sa58_ds_arms_medium_contour_533mm", + "Description": "barrel_sa58_ds_arms_medium_contour_533mm", + "Weight": 0.784, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_sa58_ds_arms_medium_contour_533mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5b7bee755acfc400196d5383", + "5b099a9d5acfc47a8607efe7" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5b7be1265acfc400161d079a", + "_parent": "5b7be1265acfc400161d0798", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "612e0d3767085e45ef14057f", + "5b7d693d5acfc43bca706a3d", + "5a34fd2bc4a282329a73b4c5", + "5d1f819086f7744b355c219b", + "5dcbe965e4ed22586443a79d", + "5d026791d7ad1a04a067ea63", + "5dfa3cd1b33c0951220c079b", + "6130c43c67085e45ef1405a1", + "5cdd7685d7f00c000f260ed2", + "5c878e9d2e2216000f201903", + "5d02677ad7ad1a04a15c0f95", + "5bbdb8bdd4351e4502011460", + "5cdd7693d7f00c0010373aa5", + "615d8eb350224f204c1da1cf", + "612e0e3c290d254f5e6b291d", + "5d443f8fa4b93678dd4a01aa", + "5b7d68af5acfc400170e30c3", + "5b099b7d5acfc400186331e4", + "5c7954d52e221600106f4cc7", + "59bffc1f86f77435b128b872", + "5cf78496d7f00c065703d6ca", + "618178aa1cb55961fa0fdc80", + "6065c6e7132d4d12c81fd8e1", + "628a66b41d5e41750e314f34", + "607ffb988900dc2d9a55b6e4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 10, + "Recoil": -8, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -28, + "Velocity": -3, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.029, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1.1, + "HeatFactor": 0.88, + "CoolFactor": 0.91, + "DeviationCurve": 1.35, + "DeviationMax": 23 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "5a6b5e468dc32e001207faf5": { + "_id": "5a6b5e468dc32e001207faf5", + "_name": "barrel_glock_double_diamond_114mm_threaded_9x19", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_glock_double_diamond_114mm_threaded_9x19", + "ShortName": "barrel_glock_double_diamond_114mm_threaded_9x19", + "Description": "barrel_glock_double_diamond_114mm_threaded_9x19", "Weight": 0.18, "BackgroundColor": "blue", "Width": 1, @@ -89990,7 +89961,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_pl15_izhmash_112mm_threaded_9x19.bundle", + "path": "assets/content/items/mods/barrels/barrel_glock_double_diamond_114mm_threaded_9x19.bundle", "rcid": "" }, "UsePrefab": { @@ -90038,16 +90009,23 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "602a95fe4e02ce1eaa35872b", - "_parent": "602a95fe4e02ce1eaa358729", + "_id": "5a6b5e468dc32e001207faf6", + "_parent": "5a6b5e468dc32e001207faf5", "_props": { "filters": [ { "Shift": 0, "Filter": [ + "5a7ad0c451dfba0013379712", + "5a7037338dc32e000d46d257", + "5a70366c8dc32e001207fb06", + "5a705e128dc32e000d46d258", + "5a7ad1fb51dfba0013379715", + "5a6b585a8dc32e5a9c28b4f1", + "5a6b592c8dc32e00094b97bf", + "5a6b59a08dc32e000b452fb7", "5c7e8fab2e22165df16b889b", "5a33a8ebc4a282000c5a950d", - "602a97060ddce744014caf6f", "5c6165902e22160010261b28", "5a32a064c4a28200741e22de" ] @@ -90066,7 +90044,7 @@ "Recoil": -3, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -4, + "Ergonomics": -5, "Velocity": -2.28, "RaidModdable": true, "ToolModdable": false, @@ -90077,10 +90055,10 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.32, + "CenterOfImpact": 0.33, "ShotgunDispersion": 1, "IsSilencer": false, - "DurabilityBurnModificator": 1, + "DurabilityBurnModificator": 0.86, "HeatFactor": 1.14, "CoolFactor": 1.21, "DeviationCurve": 2.25, @@ -90088,23 +90066,23 @@ }, "_proto": "55d35ee94bdc2d61338b4568" }, - "5b099a765acfc47a8607efe3": { - "_id": "5b099a765acfc47a8607efe3", - "_name": "barrel_sa58_ds_arms_medium_contour_280mm", + "630e39c3bd357927e4007c15": { + "_id": "630e39c3bd357927e4007c15", + "_name": "barrel_aug_steyr_a3_417mm_556x45", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "barrel_sa58_ds_arms_medium_contour_280mm", - "ShortName": "barrel_sa58_ds_arms_medium_contour_280mm", - "Description": "barrel_sa58_ds_arms_medium_contour_280mm", - "Weight": 0.409, + "Name": "barrel_ar15_508mm", + "ShortName": "barrel_ar15_508mm", + "Description": "barrel_ar15_508mm", + "Weight": 0.53, "BackgroundColor": "blue", - "Width": 2, + "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_sa58_ds_arms_medium_contour_280mm.bundle", + "path": "assets/content/items/mods/barrels/barrel_aug_steyr_a3_417mm_556x45.bundle", "rcid": "" }, "UsePrefab": { @@ -90121,12 +90099,12 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, + "LootExperience": 15, "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 2, + "ExtraSizeLeft": 1, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -90134,14 +90112,7 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5b7be2345acfc400196d524a", - "5b7bebc85acfc43bca706666", - "5b7d671b5acfc43d82528ddd", - "5b7bed205acfc400161d08cc", - "5b7bedd75acfc43d825283f9", - "5b7be1ca5acfc400170e2d2f" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -90159,38 +90130,36 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "5b099a765acfc47a8607efe5", - "_parent": "5b099a765acfc47a8607efe3", + "_id": "630e39c3bd357927e4007c16", + "_parent": "630e39c3bd357927e4007c15", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "612e0d3767085e45ef14057f", - "5b7d693d5acfc43bca706a3d", - "5a34fd2bc4a282329a73b4c5", - "5d1f819086f7744b355c219b", - "5dcbe965e4ed22586443a79d", - "5d026791d7ad1a04a067ea63", - "5dfa3cd1b33c0951220c079b", - "6130c43c67085e45ef1405a1", - "5cdd7685d7f00c000f260ed2", - "5c878e9d2e2216000f201903", - "5d02677ad7ad1a04a15c0f95", - "5bbdb8bdd4351e4502011460", - "5cdd7693d7f00c0010373aa5", - "615d8eb350224f204c1da1cf", - "612e0e3c290d254f5e6b291d", - "5d443f8fa4b93678dd4a01aa", - "5b7d68af5acfc400170e30c3", - "5b099b7d5acfc400186331e4", - "5c7954d52e221600106f4cc7", - "59bffc1f86f77435b128b872", - "5cf78496d7f00c065703d6ca", - "618178aa1cb55961fa0fdc80", - "6065c6e7132d4d12c81fd8e1", - "628a66b41d5e41750e314f34", - "607ffb988900dc2d9a55b6e4" + "630f2872911356c17d06abc5", + "630f28f0cadb1fe05e06f004", + "630f291b9f66a28b37094bb8", + "630f27f04f3f6281050b94d7", + "634eba08f69c710e0108d386" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "634e63335f886a50850209b7", + "_parent": "630e39c3bd357927e4007c15", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "634e61b0767cb15c4601a877" ] } ] @@ -90203,49 +90172,49 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 2, - "Recoil": -2, + "Accuracy": 0, + "Recoil": -4, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -8, - "Velocity": -12, + "Ergonomics": -14, + "Velocity": -2.1, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, - "IsAnimated": false, + "IsAnimated": true, "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.08, + "CenterOfImpact": 0.046, "ShotgunDispersion": 1, "IsSilencer": false, - "DurabilityBurnModificator": 0.85, - "HeatFactor": 0.98, - "CoolFactor": 0.99, - "DeviationCurve": 1.6, - "DeviationMax": 19 + "DurabilityBurnModificator": 1.02, + "HeatFactor": 0.99, + "CoolFactor": 0.96, + "DeviationCurve": 1.35, + "DeviationMax": 23 }, - "_proto": "55d35ee94bdc2d61338b4568" + "_proto": "55d3632e4bdc2d972f8b4569" }, - "5efaf417aeb21837e749c7f2": { - "_id": "5efaf417aeb21837e749c7f2", - "_name": "handguard_ak_zenit_b30", - "_parent": "55818a104bdc2db9688b4569", + "5beec2820db834001b095426": { + "_id": "5beec2820db834001b095426", + "_name": "barrel_rpk16_izhmash_550mm", + "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "handguard_ak_zenit_b30", - "ShortName": "handguard_ak_zenit_b30", - "Description": "handguard_ak_zenit_b30", - "Weight": 0.39, + "Name": "barrel_rpk16_izhmash_550mm", + "ShortName": "barrel_rpk16_izhmash_550mm", + "Description": "barrel_rpk16_izhmash_550mm", + "Weight": 0.65, "BackgroundColor": "blue", - "Width": 2, + "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_zenit_b30.bundle", + "path": "assets/content/items/mods/barrels/barrel_rpk16_izhmash_550mm.bundle", "rcid": "" }, "UsePrefab": { @@ -90262,8 +90231,126 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5beec2820db834001b095428", + "_parent": "5beec2820db834001b095426", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac72e945acfc43f3b691116", + "5ac7655e5acfc40016339a19", + "5649aa744bdc2ded0b8b457e", + "5943eeeb86f77412d6384f6b", + "5cc9a96cd7f00c011c04e04a", + "5649ab884bdc2ded0b8b457f", + "5beec3420db834001b095429", + "593d493f86f7745e6b2ceb22", + "564caa3d4bdc2d17108b458e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -7, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -11, + "Velocity": -5, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.032, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1.1, + "HeatFactor": 0.92, + "CoolFactor": 0.93, + "DeviationCurve": 1.35, + "DeviationMax": 23 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "5a787fdfc5856700142fdd9a": { + "_id": "5a787fdfc5856700142fdd9a", + "_name": "barrel_870_vent_rib_barrel_cut_off_325mm", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_870_extra_barrel_355mm", + "ShortName": "barrel_870_extra_barrel_355mm", + "Description": "barrel_870_extra_barrel_355mm", + "Weight": 0.8, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_870_vent_rib_barrel_cut_off_325mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": true, + "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 3, + "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -90291,99 +90378,434 @@ "IsUnremovable": false, "Grids": [], "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5efaf417aeb21837e749c7f4", - "_parent": "5efaf417aeb21837e749c7f2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_scope", - "_id": "5efaf417aeb21837e749c7f5", - "_parent": "5efaf417aeb21837e749c7f2", + "_id": "60acceb31a425a107168ef67", + "_parent": "5a787fdfc5856700142fdd9a", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5a33b2c9c4a282000c5a9511", - "644a3df63b0b6f03e101e065", - "64785e7c19d732620e045e15", - "655f13e0a246670fb0373245" + "609b9e31506cf869cf3eaf41" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 2.4, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.65, + "ShotgunDispersion": 1.6, + "IsSilencer": false, + "DurabilityBurnModificator": 0.82, + "HeatFactor": 0.98, + "CoolFactor": 1.04, + "DeviationCurve": 3, + "DeviationMax": 9 + }, + "_proto": "55d448594bdc2d8c2f8b4569" + }, + "5a6b5f868dc32e000a311389": { + "_id": "5a6b5f868dc32e000a311389", + "_name": "barrel_glock_glock_114mm_9x19_std", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_glock_glock_114mm_9x19_std", + "ShortName": "barrel_glock_glock_114mm_9x19_std", + "Description": "barrel_glock_glock_114mm_9x19_std\n", + "Weight": 0.18, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_glock_glock_114mm_9x19_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": -2.28, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.34, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.14, + "CoolFactor": 1.21, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "5b1fa9ea5acfc40018633c0a": { + "_id": "5b1fa9ea5acfc40018633c0a", + "_name": "barrel_glock_glock_18c_114mm_9x19_std", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_glock_18_250mm_9x19_std", + "ShortName": "barrel_glock_18_250mm_9x19_std", + "Description": "barrel_glock_18_250mm_9x19_std\n", + "Weight": 0.18, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_glock_glock_18c_114mm_9x19_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": -4.28, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.35, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 0.94, + "HeatFactor": 1.14, + "CoolFactor": 1.21, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "5f3e7801153b8571434a924c": { + "_id": "5f3e7801153b8571434a924c", + "_name": "barrel_m1911a1_127mm_national_match_1143x23", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_m1911a1_127mm_national_match_1143x23", + "ShortName": "barrel_m1911a1_127mm_national_match_1143x23", + "Description": "barrel_m1911a1_127mm_national_match_1143x23", + "Weight": 0.11, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_m1911a1_127mm_national_match_1143x23.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": -1.08, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.3, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 0.9, + "HeatFactor": 1.1, + "CoolFactor": 1.15, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "63d3ce0446bd475bcb50f55f": { + "_id": "63d3ce0446bd475bcb50f55f", + "_name": "barrel_ar15_ba_hanson_carbine_pro_348mm", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 370мм для AR-15 и совместимых 5.56х45", + "ShortName": "370мм AR-15 5.56х45", + "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 370мм. Соответствует стандартному стволу для M4A1.\n", + "Weight": 0.509, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_ar15_ba_hanson_carbine_pro_348mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [ + "640b20359ab20e15ee445fa9", + "6034e3d953a60014f970617b", + "595cfa8b86f77427437e845b" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "63d3ce0446bd475bcb50f560", + "_parent": "63d3ce0446bd475bcb50f55f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b3a16655acfc40016387a2a", + "5c7e5f112e221600106f4ede", + "5c0fafb6d174af02a96260ba", + "612e0cfc8004cc50514c2d9e", + "5cf6937cd7f00c056c53fb39", + "544a38634bdc2d58388b4568", + "5cff9e5ed7ad1a09407397d4", + "5c48a2a42e221602b66d1e07", + "5f6372e2865db925d54f3869", + "615d8e2f1cb55961fa0fd9a4", + "56ea8180d2720bf2698b456a", + "5d02676dd7ad1a049e54f6dc", + "56ea6fafd2720b844b8b4593", + "5943ee5a86f77413872d25ec", + "609269c3b0e443224b421cc1", + "5c7fb51d2e2216001219ce11", + "5ea172e498dacb342978818e", + "5c6d710d2e22165df16b81e7", + "612e0e55a112697a4b3a66e7", + "5d440625a4b9361eec4ae6c5", + "5cc9b815d7f00c000e2579d6", + "5a7c147ce899ef00150bd8b8", + "5c7954d52e221600106f4cc7", + "59bffc1f86f77435b128b872", + "5a9fbb84a2750c00137fa685", + "626667e87379c44d557b7550", + "62669bccdb9ebb4daa44cd14", + "626a74340be03179a165e30c", + "6386120cd6baa055ad1e201c", + "63ac5c9658d0485fc039f0b8", + "6405ff6bd4578826ec3e377a", + "64943b74e9998d641b0412ed" ] } ] @@ -90393,112 +90815,36 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_tactical_001", - "_id": "5efaf417aeb21837e749c7f6", - "_parent": "5efaf417aeb21837e749c7f2", + "_name": "mod_gas_block", + "_id": "63d3ce0446bd475bcb50f561", + "_parent": "63d3ce0446bd475bcb50f55f", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" + "5ae30e795acfc408fb139a0b", + "56eabcd4d2720b66698b4574", + "56ea8d2fd2720b7c698b4570", + "63d3ce281fe77d0f2801859e" ] } ] }, - "_required": false, + "_required": true, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_tactical_002", - "_id": "5efaf417aeb21837e749c7f7", - "_parent": "5efaf417aeb21837e749c7f2", + "_name": "mod_launcher", + "_id": "63d3ce0446bd475bcb50f562", + "_parent": "63d3ce0446bd475bcb50f55f", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5efafe76a2f64932a722aa74", - "_parent": "5efaf417aeb21837e749c7f2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" + "6357c98711fb55120211f7e1" ] } ] @@ -90515,10 +90861,10 @@ "Recoil": -3, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, + "Ergonomics": -12, + "Velocity": -6.98, + "RaidModdable": false, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -90526,10 +90872,15 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 0.906, - "CoolFactor": 1.082 - }, - "_proto": "5648b1504bdc2d9d488b4584" + "CenterOfImpact": 0.045, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 0.96, + "HeatFactor": 1.02, + "CoolFactor": 1.03, + "DeviationCurve": 1.35, + "DeviationMax": 23 + } }, "622b3858034a3e17ad0b81f5": { "_id": "622b3858034a3e17ad0b81f5", @@ -90693,372 +91044,23 @@ }, "_proto": "55d35ee94bdc2d61338b4568" }, - "5ea02bb600685063ec28bfa1": { - "_id": "5ea02bb600685063ec28bfa1", - "_name": "barrel_ppsh_269mm_762x25", + "6410758c857473525b08bb77": { + "_id": "6410758c857473525b08bb77", + "_name": "barrel_svt40_toz_625mm_762x54r", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "barrel_ppsh_269mm_762x25", - "ShortName": "barrel_ppsh_269mm_762x25", - "Description": "barrel_ppsh_269mm_762x25", - "Weight": 0.51, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_ppsh_269mm_762x25.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": -2, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.21, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.97, - "CoolFactor": 1.03, - "DeviationCurve": 3.5, - "DeviationMax": 7.5 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "55d449444bdc2d962f8b456d": { - "_id": "55d449444bdc2d962f8b456d", - "_name": "barrel_mr133_610mm_plank", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 610мм для ружья МР-133 12к с прицельной планкой", - "ShortName": "610мм МР-133 12к", - "Description": "Стандартный заводской ствол для ружья МР-133 длинной 610мм под патрон 12-го калибра, с широкой прицельной планкой.", - "Weight": 1.25, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr133_610mm_plank.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "56e31524d2720b5e068b4570", - "_parent": "55d449444bdc2d962f8b456d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0111ab0db834001966914d", - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5dfe4036b33c0951220c0912", - "_parent": "55d449444bdc2d962f8b456d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "609b9e31506cf869cf3eaf41", - "5dfe14f30b92095fd441edaf" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -6, - "Velocity": 10.8, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.58, - "ShotgunDispersion": 1.4, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.88, - "CoolFactor": 0.92, - "DeviationCurve": 2.5, - "DeviationMax": 10 - }, - "_proto": "55d448594bdc2d8c2f8b4569" - }, - "603372b4da11d6478d5a07ff": { - "_id": "603372b4da11d6478d5a07ff", - "_name": "barrel_stm9_stmarms_266mm_9x19", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_stm9_stmarms_266mm_9x19", - "ShortName": "barrel_stm9_stmarms_266mm_9x19", - "Description": "barrel_stm9_stmarms_266mm_9x19", - "Weight": 0.409, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_stm9_stmarms_266mm_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5b2cfa535acfc432ff4db7a0", - "5c9a25172e2216000f20314e", - "5ea16ada09aa976f2e7a51be", - "5a329052c4a28200741e22d3", - "5d122e7bd7ad1a07102d6d7f", - "5d4405f0a4b9361e6a4e6bd9", - "5c78f2492e221600114c9f04", - "5c78f2612e221600114c9f0d", - "6087e0336d0bd7580617bb7a", - "595cfa8b86f77427437e845b", - "595cf16b86f77427440c32e2" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "603372b4da11d6478d5a0801", - "_parent": "603372b4da11d6478d5a07ff", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "60337f5dce399e10262255d1", - "5fbbc3324e8a554c40648348", - "5c7954d52e221600106f4cc7", - "5a9fb739a2750c003215717f", - "5c6165902e22160010261b28", - "5a32a064c4a28200741e22de" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -10, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.11, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 0.81, - "HeatFactor": 0.97, - "CoolFactor": 1.03, - "DeviationCurve": 2.1, - "DeviationMax": 12 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "6183fd911cb55961fa0fdce9": { - "_id": "6183fd911cb55961fa0fdce9", - "_name": "barrel_mk16_fn_355mm_556x45", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_mk16_fn_254mm_556x45", - "ShortName": "barrel_mk16_fn_254mm_556x45", - "Description": "barrel_mk16_fn_254mm_556x45", - "Weight": 1, + "Name": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", + "ShortName": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", + "Description": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", + "Weight": 1.33, "BackgroundColor": "blue", "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mk16_fn_355mm_556x45.bundle", + "path": "assets/content/items/mods/barrels/barrel_svt40_toz_625mm_762x54r.bundle", "rcid": "" }, "UsePrefab": { @@ -91075,16 +91077,16 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 15, + "LootExperience": 110, "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 1, + "ExtraSizeLeft": 3, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, + "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, @@ -91106,64 +91108,32 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "6183fd911cb55961fa0fdceb", - "_parent": "6183fd911cb55961fa0fdce9", + "_id": "6410758c857473525b08bb7a", + "_parent": "6410758c857473525b08bb77", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5b3a16655acfc40016387a2a", - "5c7e5f112e221600106f4ede", - "5c0fafb6d174af02a96260ba", - "612e0cfc8004cc50514c2d9e", - "5cf6937cd7f00c056c53fb39", - "544a38634bdc2d58388b4568", - "5cff9e5ed7ad1a09407397d4", - "5c48a2a42e221602b66d1e07", - "5f6372e2865db925d54f3869", - "618407a850224f204c1da549", - "615d8e2f1cb55961fa0fd9a4", - "56ea8180d2720bf2698b456a", - "5d02676dd7ad1a049e54f6dc", - "56ea6fafd2720b844b8b4593", - "5943ee5a86f77413872d25ec", - "609269c3b0e443224b421cc1", - "5c7fb51d2e2216001219ce11", - "5ea172e498dacb342978818e", - "5c6d710d2e22165df16b81e7", - "612e0e55a112697a4b3a66e7", - "5d440625a4b9361eec4ae6c5", - "5cc9b815d7f00c000e2579d6", - "5a7c147ce899ef00150bd8b8", - "5c7954d52e221600106f4cc7", - "59bffc1f86f77435b128b872", - "5a9fbb84a2750c00137fa685", - "626667e87379c44d557b7550", - "62669bccdb9ebb4daa44cd14", - "626a74340be03179a165e30c", - "6386120cd6baa055ad1e201c", - "63ac5c9658d0485fc039f0b8", - "6405ff6bd4578826ec3e377a", - "64943b74e9998d641b0412ed" + "64119d1f2c6d6f921a0929f8" ] } ] }, - "_required": false, + "_required": true, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_sight_front", - "_id": "6183fd911cb55961fa0fdcec", - "_parent": "6183fd911cb55961fa0fdce9", + "_name": "mod_sight_rear", + "_id": "64119e5f2085aee50a044bd7", + "_parent": "6410758c857473525b08bb77", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "61816fcad92c473c770215cc" + "64119d90dcf48d656f0aa275" ] } ] @@ -91177,11 +91147,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -4, + "Recoil": -10, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -13, - "Velocity": -8, + "Ergonomics": -7, + "Velocity": 8.2, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -91191,16 +91161,16 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.058, - "ShotgunDispersion": 1, + "CenterOfImpact": 0.038, + "ShotgunDispersion": 1.9, "IsSilencer": false, - "DurabilityBurnModificator": 0.94, - "HeatFactor": 1.02, - "CoolFactor": 1.03, - "DeviationCurve": 1.35, - "DeviationMax": 23 + "DurabilityBurnModificator": 1, + "HeatFactor": 0.84, + "CoolFactor": 0.89, + "DeviationCurve": 1.1, + "DeviationMax": 33 }, - "_proto": "55d3632e4bdc2d972f8b4569" + "_proto": "55d448594bdc2d8c2f8b4569" }, "5beec1bd0db834001e6006f3": { "_id": "5beec1bd0db834001e6006f3", @@ -91936,6 +91906,173 @@ }, "_proto": "55d448594bdc2d8c2f8b4569" }, + "5b800e9286f7747a8b04f3ff": { + "_id": "5b800e9286f7747a8b04f3ff", + "_name": "handguard_ak_hexagon_ak", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_hexagon_ak", + "ShortName": "handguard_ak_hexagon_ak", + "Description": "handguard_ak_hexagon_ak", + "Weight": 0.167, + "BackgroundColor": "violet", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_hexagon_ak.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "615d8f8567085e45ef1409ca", + "5ac66d015acfc400180ae6e4", + "5ac66d725acfc43b321d4b60", + "5ac66d9b5acfc4001633997a" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5b80116a86f77471817cf19b", + "_parent": "5b800e9286f7747a8b04f3ff", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b800ebc86f774394e230a90", + "5b8403a086f7747ff856f4e2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5b80117486f7746cc23d053e", + "_parent": "5b800e9286f7747a8b04f3ff", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b800ed086f7747baf6e2f9e", + "5b84038986f774774913b0c1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5b80117e86f7747217085892", + "_parent": "5b800e9286f7747a8b04f3ff", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b800ed086f7747baf6e2f9e", + "5b84038986f774774913b0c1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_003", + "_id": "5b80118a86f7747313089854", + "_parent": "5b800e9286f7747a8b04f3ff", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b800ed086f7747baf6e2f9e", + "5b84038986f774774913b0c1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 14, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.952, + "CoolFactor": 1.092 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, "646371faf2404ab67905c8e9": { "_id": "646371faf2404ab67905c8e9", "_name": "barrel_pkm_zid_std_658mm_762x54r", @@ -92048,23 +92185,23 @@ }, "_proto": "55d448594bdc2d8c2f8b4569" }, - "5b7be1265acfc400161d0798": { - "_id": "5b7be1265acfc400161d0798", - "_name": "barrel_sa58_ds_arms_medium_contour_533mm", + "5ea02bb600685063ec28bfa1": { + "_id": "5ea02bb600685063ec28bfa1", + "_name": "barrel_ppsh_269mm_762x25", "_parent": "555ef6e44bdc2de9068b457e", "_type": "Item", "_props": { - "Name": "barrel_sa58_ds_arms_medium_contour_533mm", - "ShortName": "barrel_sa58_ds_arms_medium_contour_533mm", - "Description": "barrel_sa58_ds_arms_medium_contour_533mm", - "Weight": 0.784, + "Name": "barrel_ppsh_269mm_762x25", + "ShortName": "barrel_ppsh_269mm_762x25", + "Description": "barrel_ppsh_269mm_762x25", + "Weight": 0.51, "BackgroundColor": "blue", - "Width": 4, + "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_sa58_ds_arms_medium_contour_533mm.bundle", + "path": "assets/content/items/mods/barrels/barrel_ppsh_269mm_762x25.bundle", "rcid": "" }, "UsePrefab": { @@ -92081,149 +92218,12 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 20, + "LootExperience": 10, "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5b7bee755acfc400196d5383", - "5b099a9d5acfc47a8607efe7" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5b7be1265acfc400161d079a", - "_parent": "5b7be1265acfc400161d0798", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "612e0d3767085e45ef14057f", - "5b7d693d5acfc43bca706a3d", - "5a34fd2bc4a282329a73b4c5", - "5d1f819086f7744b355c219b", - "5dcbe965e4ed22586443a79d", - "5d026791d7ad1a04a067ea63", - "5dfa3cd1b33c0951220c079b", - "6130c43c67085e45ef1405a1", - "5cdd7685d7f00c000f260ed2", - "5c878e9d2e2216000f201903", - "5d02677ad7ad1a04a15c0f95", - "5bbdb8bdd4351e4502011460", - "5cdd7693d7f00c0010373aa5", - "615d8eb350224f204c1da1cf", - "612e0e3c290d254f5e6b291d", - "5d443f8fa4b93678dd4a01aa", - "5b7d68af5acfc400170e30c3", - "5b099b7d5acfc400186331e4", - "5c7954d52e221600106f4cc7", - "59bffc1f86f77435b128b872", - "5cf78496d7f00c065703d6ca", - "618178aa1cb55961fa0fdc80", - "6065c6e7132d4d12c81fd8e1", - "628a66b41d5e41750e314f34", - "607ffb988900dc2d9a55b6e4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 10, - "Recoil": -8, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -28, - "Velocity": -3, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.029, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1.1, - "HeatFactor": 0.88, - "CoolFactor": 0.91, - "DeviationCurve": 1.35, - "DeviationMax": 23 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "5a6b5e468dc32e001207faf5": { - "_id": "5a6b5e468dc32e001207faf5", - "_name": "barrel_glock_double_diamond_114mm_threaded_9x19", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_glock_double_diamond_114mm_threaded_9x19", - "ShortName": "barrel_glock_double_diamond_114mm_threaded_9x19", - "Description": "barrel_glock_double_diamond_114mm_threaded_9x19", - "Weight": 0.18, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_glock_double_diamond_114mm_threaded_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, + "ExtraSizeLeft": 2, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -92246,37 +92246,7 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5a6b5e468dc32e001207faf6", - "_parent": "5a6b5e468dc32e001207faf5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7ad0c451dfba0013379712", - "5a7037338dc32e000d46d257", - "5a70366c8dc32e001207fb06", - "5a705e128dc32e000d46d258", - "5a7ad1fb51dfba0013379715", - "5a6b585a8dc32e5a9c28b4f1", - "5a6b592c8dc32e00094b97bf", - "5a6b59a08dc32e000b452fb7", - "5c7e8fab2e22165df16b889b", - "5a33a8ebc4a282000c5a950d", - "5c6165902e22160010261b28", - "5a32a064c4a28200741e22de" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, @@ -92285,9 +92255,9 @@ "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -5, - "Velocity": -2.28, - "RaidModdable": true, - "ToolModdable": false, + "Velocity": -2, + "RaidModdable": false, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -92295,149 +92265,17 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.33, + "CenterOfImpact": 0.21, "ShotgunDispersion": 1, "IsSilencer": false, - "DurabilityBurnModificator": 0.86, - "HeatFactor": 1.14, - "CoolFactor": 1.21, - "DeviationCurve": 2.25, - "DeviationMax": 11 + "DurabilityBurnModificator": 1, + "HeatFactor": 0.97, + "CoolFactor": 1.03, + "DeviationCurve": 3.5, + "DeviationMax": 7.5 }, "_proto": "55d35ee94bdc2d61338b4568" }, - "630e39c3bd357927e4007c15": { - "_id": "630e39c3bd357927e4007c15", - "_name": "barrel_aug_steyr_a3_417mm_556x45", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_ar15_508mm", - "ShortName": "barrel_ar15_508mm", - "Description": "barrel_ar15_508mm", - "Weight": 0.53, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_aug_steyr_a3_417mm_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "630e39c3bd357927e4007c16", - "_parent": "630e39c3bd357927e4007c15", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "630f2872911356c17d06abc5", - "630f28f0cadb1fe05e06f004", - "630f291b9f66a28b37094bb8", - "630f27f04f3f6281050b94d7", - "634eba08f69c710e0108d386" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "634e63335f886a50850209b7", - "_parent": "630e39c3bd357927e4007c15", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "634e61b0767cb15c4601a877" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -14, - "Velocity": -2.1, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.046, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1.02, - "HeatFactor": 0.99, - "CoolFactor": 0.96, - "DeviationCurve": 1.35, - "DeviationMax": 23 - }, - "_proto": "55d3632e4bdc2d972f8b4569" - }, "6194efe07c6c7b169525f11b": { "_id": "6194efe07c6c7b169525f11b", "_name": "barrel_hk_usp_129mm_1143x23_tactical", @@ -93056,1429 +92894,6 @@ }, "_proto": "55d448594bdc2d8c2f8b4569" }, - "62e7c7f3c34ea971710c32fc": { - "_id": "62e7c7f3c34ea971710c32fc", - "_name": "barrel_aug_steyr_a1_508mm_556x45", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_ar15_508mm", - "ShortName": "barrel_ar15_508mm", - "Description": "barrel_ar15_508mm", - "Weight": 0.83, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_aug_steyr_a1_508mm_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle_000", - "_id": "62e7c7f3c34ea971710c32fd", - "_parent": "62e7c7f3c34ea971710c32fc", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "630f2872911356c17d06abc5", - "630f28f0cadb1fe05e06f004", - "630f291b9f66a28b37094bb8", - "630f27f04f3f6281050b94d7", - "634eba08f69c710e0108d386" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle_001", - "_id": "630e3a5c984633f1fb0e7c38", - "_parent": "62e7c7f3c34ea971710c32fc", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "630f2982cdb9e392db0cbcc7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "634e86d5d21c889b5107d985", - "_parent": "62e7c7f3c34ea971710c32fc", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "634e61b0767cb15c4601a877" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -18, - "Velocity": -3.1, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.036, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1.04, - "HeatFactor": 0.98, - "CoolFactor": 0.98, - "DeviationCurve": 1.35, - "DeviationMax": 23 - }, - "_proto": "55d3632e4bdc2d972f8b4569" - }, - "622b379bf9cfc87d675d2de5": { - "_id": "622b379bf9cfc87d675d2de5", - "_name": "barrel_g36_hk_228mm_556x45", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 260мм для AR-15 и совместимых 5.56х45", - "ShortName": "260мм AR-15 5.56х45", - "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 260мм. Соответствует стандартному стволу для M4 CQBR.\n", - "Weight": 0.39, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_g36_hk_228mm_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "622b379bf9cfc87d675d2de7", - "_parent": "622b379bf9cfc87d675d2de5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b3a16655acfc40016387a2a", - "5c7e5f112e221600106f4ede", - "5c0fafb6d174af02a96260ba", - "612e0cfc8004cc50514c2d9e", - "5cf6937cd7f00c056c53fb39", - "544a38634bdc2d58388b4568", - "5cff9e5ed7ad1a09407397d4", - "5c48a2a42e221602b66d1e07", - "5f6372e2865db925d54f3869", - "615d8e2f1cb55961fa0fd9a4", - "56ea8180d2720bf2698b456a", - "626667e87379c44d557b7550", - "5d02676dd7ad1a049e54f6dc", - "56ea6fafd2720b844b8b4593", - "5943ee5a86f77413872d25ec", - "609269c3b0e443224b421cc1", - "5c7fb51d2e2216001219ce11", - "5ea172e498dacb342978818e", - "5c6d710d2e22165df16b81e7", - "62669bccdb9ebb4daa44cd14", - "612e0e55a112697a4b3a66e7", - "5d440625a4b9361eec4ae6c5", - "5cc9b815d7f00c000e2579d6", - "5a7c147ce899ef00150bd8b8", - "626a74340be03179a165e30c", - "622f128cec80d870d349b4e8", - "622f0ee47762f55aaa68ac87", - "622f07cfae33bc505b2c4dd5", - "5c7954d52e221600106f4cc7", - "59bffc1f86f77435b128b872", - "5a9fbb84a2750c00137fa685", - "6386120cd6baa055ad1e201c", - "63ac5c9658d0485fc039f0b8", - "6405ff6bd4578826ec3e377a", - "64943b74e9998d641b0412ed" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_gas_block", - "_id": "622b379bf9cfc87d675d2de8", - "_parent": "622b379bf9cfc87d675d2de5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "622b327b267a1b13a44abea3" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -8, - "Velocity": -16.31, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.08, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 0.86, - "HeatFactor": 1.11, - "CoolFactor": 1.06, - "DeviationCurve": 1.4, - "DeviationMax": 22 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "5fb653962b1b027b1f50bd03": { - "_id": "5fb653962b1b027b1f50bd03", - "_name": "barrel_vector_170mm_1143x23", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_vector_170mm_1143x23", - "ShortName": "barrel_vector_170mm_1143x23", - "Description": "barrel_vector_170mm_1143x23\n", - "Weight": 0.21, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_vector_170mm_1143x23.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5fb653962b1b027b1f50bd05", - "_parent": "5fb653962b1b027b1f50bd03", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fb65424956329274326f316", - "5fc4b992187fea44d52edaa9", - "5fb6548dd1409e5ca04b54f9" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": -0.78, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.19, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.04, - "CoolFactor": 1.07, - "DeviationCurve": 2.25, - "DeviationMax": 11 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "5a6b5ed88dc32e000c52ec86": { - "_id": "5a6b5ed88dc32e000c52ec86", - "_name": "barrel_glock_salient_arms_114mm_threaded_9x19", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_glock_salient_arms_114mm_threaded_9x19", - "ShortName": "barrel_glock_salient_arms_114mm_threaded_9x19", - "Description": "barrel_glock_salient_arms_114mm_threaded_9x19", - "Weight": 0.18, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_glock_salient_arms_114mm_threaded_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5a6b5ed88dc32e000c52ec87", - "_parent": "5a6b5ed88dc32e000c52ec86", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7ad0c451dfba0013379712", - "5a7037338dc32e000d46d257", - "5a70366c8dc32e001207fb06", - "5a705e128dc32e000d46d258", - "5a7ad1fb51dfba0013379715", - "5a6b585a8dc32e5a9c28b4f1", - "5a6b592c8dc32e00094b97bf", - "5a6b59a08dc32e000b452fb7", - "5c7e8fab2e22165df16b889b", - "5a33a8ebc4a282000c5a950d", - "5c6165902e22160010261b28", - "5a32a064c4a28200741e22de" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -8, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": -1.28, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.27, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 0.74, - "HeatFactor": 1.14, - "CoolFactor": 1.21, - "DeviationCurve": 2.25, - "DeviationMax": 11 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "5aaf9d53e5b5b00015042a52": { - "_id": "5aaf9d53e5b5b00015042a52", - "_name": "barrel_m1a_springfield_armory_6_groove_carbon_410mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_m1a_springfield_armory_6_groove_carbon_410mm", - "ShortName": "barrel_m1a_springfield_armory_6_groove_carbon_410mm", - "Description": "barrel_m1a_springfield_armory_6_groove_carbon_410mm", - "Weight": 1.04, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_m1a_springfield_armory_6_groove_carbon_410mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5aaf9d53e5b5b00015042a54", - "_parent": "5aaf9d53e5b5b00015042a52", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ab3afb2d8ce87001660304d", - "5aafa1c2e5b5b00015042a56" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -12, - "Velocity": -6.48, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.039, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.93, - "CoolFactor": 0.98, - "DeviationCurve": 1.1, - "DeviationMax": 30 - }, - "_proto": "55d3632e4bdc2d972f8b4569" - }, - "5c6d85e02e22165df16b81f4": { - "_id": "5c6d85e02e22165df16b81f4", - "_name": "barrel_416_hk_264mm_556x45", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_416_hk_279mm_556x45", - "ShortName": "barrel_416_hk_279mm_556x45", - "Description": "barrel_416_hk_279mm_556x45", - "Weight": 0.572, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_416_hk_264mm_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5f6339d53ada5942720e2dc3", - "5a34fe59c4a282000b1521a2", - "60926df0132d4d12c81fd9df", - "5c7955c22e221644f31bfd5e", - "57da93632459771cb65bf83f", - "57dbb57e2459774673234890", - "55d6190f4bdc2d87028b4567", - "55d614004bdc2d86028b4568", - "5ea17bbc09aa976f2e7a51cd", - "5d44064fa4b9361e4f6eb8b5", - "5cff9e84d7ad1a049e54ed55", - "5c6d10e82e221601da357b07", - "5bb20dfcd4351e00334c9e24", - "5c6d11072e2216000e69d2e4", - "5c6d11152e2216000f2003e7", - "5c6c2c9c2e2216000f2002e4" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5c6d85e02e22165df16b81f6", - "_parent": "5c6d85e02e22165df16b81f4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b3a16655acfc40016387a2a", - "5c7e5f112e221600106f4ede", - "5c0fafb6d174af02a96260ba", - "5cf6937cd7f00c056c53fb39", - "544a38634bdc2d58388b4568", - "5cff9e5ed7ad1a09407397d4", - "5c48a2a42e221602b66d1e07", - "5f6372e2865db925d54f3869", - "56ea8180d2720bf2698b456a", - "5d02676dd7ad1a049e54f6dc", - "609269c3b0e443224b421cc1", - "5c7fb51d2e2216001219ce11", - "5ea172e498dacb342978818e", - "5c6d710d2e22165df16b81e7", - "5d440625a4b9361eec4ae6c5", - "5cc9b815d7f00c000e2579d6", - "5a7c147ce899ef00150bd8b8", - "626667e87379c44d557b7550", - "62669bccdb9ebb4daa44cd14", - "626a74340be03179a165e30c", - "6386120cd6baa055ad1e201c", - "63ac5c9658d0485fc039f0b8", - "6405ff6bd4578826ec3e377a", - "64943b74e9998d641b0412ed" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_gas_block", - "_id": "5c6d85e02e22165df16b81f7", - "_parent": "5c6d85e02e22165df16b81f4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bb20dcad4351e3bac1212da" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": -18, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.073, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 0.82, - "HeatFactor": 1.06, - "CoolFactor": 1.09, - "DeviationCurve": 1.5, - "DeviationMax": 21 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "5f3e77f59103d430b93f94c1": { - "_id": "5f3e77f59103d430b93f94c1", - "_name": "barrel_m1911a1_141mm_threaded_1143x23", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_m1911a1_141mm_threaded_1143x23", - "ShortName": "barrel_m1911a1_141mm_threaded_1143x23", - "Description": "barrel_m1911a1_141mm_threaded_1143x23\n", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_m1911a1_141mm_threaded_1143x23.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5f3e889b6cda304dcc63405c", - "_parent": "5f3e77f59103d430b93f94c1", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc4b97bab884124df0cd5e3" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": -0.78, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.29, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.08, - "CoolFactor": 1.12, - "DeviationCurve": 2.25, - "DeviationMax": 11 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "5fc3e4a27283c4046c5814ab": { - "_id": "5fc3e4a27283c4046c5814ab", - "_name": "barrel_ump_200mm_1143x23", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 260мм для AR-15 и совместимых 5.56х45", - "ShortName": "260мм AR-15 5.56х45", - "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 260мм. Соответствует стандартному стволу для M4 CQBR.\n", - "Weight": 0.409, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_ump_200mm_1143x23.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "6166f70c50224f204c1da33e", - "_parent": "5fc3e4a27283c4046c5814ab", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130c4d51cb55961fa0fd49f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -6, - "Velocity": -15.31, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.16, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.03, - "CoolFactor": 1.06, - "DeviationCurve": 2.75, - "DeviationMax": 9.5 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "628121434fa03b6b6c35dc6a": { - "_id": "628121434fa03b6b6c35dc6a", - "_name": "barrel_ax_accuracy_international_686mm_86x70_pb", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_m700_remington_heavy_660mm", - "ShortName": "barrel_m700_remington_heavy_660mm", - "Description": "barrel_m700_remington_heavy_660mm", - "Weight": 1.93, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_ax_accuracy_international_686mm_86x70_pb.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 4, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "62820e07f779fc31497d1445", - "_parent": "628121434fa03b6b6c35dc6a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62812081d23f207deb0ab216", - "612e0d81290d254f5e6b291a", - "5fc23636016cce60e8341b05" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -18, - "Velocity": 5.6, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.011, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.05, - "CoolFactor": 0.94, - "DeviationCurve": 1, - "DeviationMax": 33 - }, - "_proto": "55d3632e4bdc2d972f8b4569" - }, - "5a787f7ac5856700177af660": { - "_id": "5a787f7ac5856700177af660", - "_name": "barrel_870_fixed_improved_cylinder_508mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_870_extra_barrel_355mm", - "ShortName": "barrel_870_extra_barrel_355mm", - "Description": "barrel_870_extra_barrel_355mm", - "Weight": 0.8, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_870_fixed_improved_cylinder_508mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": true, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5a787f7ac5856700177af661", - "_parent": "5a787f7ac5856700177af660", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0111ab0db834001966914d", - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5a7898b7c585673f2b5c3cb8", - "_parent": "5a787f7ac5856700177af660", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a789261c5856700186c65d3" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -8, - "Velocity": 5.4, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.55, - "ShotgunDispersion": 1.4, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.92, - "CoolFactor": 0.96, - "DeviationCurve": 2.5, - "DeviationMax": 10 - }, - "_proto": "55d448594bdc2d8c2f8b4569" - }, - "645123013d52156624001fd1": { - "_id": "645123013d52156624001fd1", - "_name": "barrel_9a91_kbp_vsk94_180mm_9x39", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 260мм для AR-15 и совместимых 5.56х45", - "ShortName": "260мм AR-15 5.56х45", - "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 260мм. Соответствует стандартному стволу для M4 CQBR.\n", - "Weight": 0.409, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_9a91_kbp_vsk94_180mm_9x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "645123013d52156624001fd2", - "_parent": "645123013d52156624001fd1", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "64527a263d52156624001fd7", - "64527a3a7da7133e5a09ca99" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "645b6051c42f3c94f80028db", - "_parent": "645123013d52156624001fd1", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "644675573d52156624001fc9", - "6448f2f6d4928d46d30be3f6" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": -16.31, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.127, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.084, - "CoolFactor": 1.125, - "DeviationCurve": 1.9, - "DeviationMax": 15.5 - } - }, "5c471cb32e221602b177afaa": { "_id": "5c471cb32e221602b177afaa", "_name": "barrel_svd_izhmash_565mm_762x54", @@ -94926,6 +93341,335 @@ }, "_proto": "55d35ee94bdc2d61338b4568" }, + "5d3eb59ea4b9361c284bb4b2": { + "_id": "5d3eb59ea4b9361c284bb4b2", + "_name": "barrel_57_fn_120mm_threaded_57x28", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_p226_112mm_threaded_9x19", + "ShortName": "barrel_p226_112mm_threaded_9x19", + "Description": "barrel_p226_112mm_threaded_9x19", + "Weight": 0.18, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_57_fn_120mm_threaded_57x28.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5d3eb59ea4b9361c284bb4b4", + "_parent": "5d3eb59ea4b9361c284bb4b2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d3ef698a4b9361182109872" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": -1.28, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.24, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.12, + "CoolFactor": 1.18, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "5a787ebcc5856700142fdd98": { + "_id": "5a787ebcc5856700142fdd98", + "_name": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", + "ShortName": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", + "Description": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5a787ebcc5856700142fdd99", + "_parent": "5a787ebcc5856700142fdd98", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5a7898f5c5856700177b1697", + "_parent": "5a787ebcc5856700142fdd98", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a789261c5856700186c65d3" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -7, + "Velocity": 5.4, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.55, + "ShotgunDispersion": 1.4, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.92, + "CoolFactor": 0.96, + "DeviationCurve": 2.5, + "DeviationMax": 10 + }, + "_proto": "55d448594bdc2d8c2f8b4569" + }, + "64748d02d1c009260702b526": { + "_id": "64748d02d1c009260702b526", + "_name": "barrel_mr43_sawed_off_310mm_12g", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 510мм для МР-43е-1с 12к", + "ShortName": "510мм МР-43е-1с 12к", + "Description": "Ствол для двухствольного ружья МР-43е-1с под патрон 12-го калибра, длинной 510мм.", + "Weight": 0.8, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mr43_sawed_off_310mm_12g.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 3, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.68, + "ShotgunDispersion": 1.65, + "IsSilencer": false, + "DurabilityBurnModificator": 0.75, + "HeatFactor": 0.931, + "CoolFactor": 0.988, + "DeviationCurve": 3, + "DeviationMax": 9 + } + }, "60658776f2cb2e02a42ace2b": { "_id": "60658776f2cb2e02a42ace2b", "_name": "barrel_mk47_cmmg_254mm_762x39", @@ -95085,116 +93829,6 @@ }, "_proto": "55d35ee94bdc2d61338b4568" }, - "5d3eb59ea4b9361c284bb4b2": { - "_id": "5d3eb59ea4b9361c284bb4b2", - "_name": "barrel_57_fn_120mm_threaded_57x28", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_p226_112mm_threaded_9x19", - "ShortName": "barrel_p226_112mm_threaded_9x19", - "Description": "barrel_p226_112mm_threaded_9x19", - "Weight": 0.18, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_57_fn_120mm_threaded_57x28.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5d3eb59ea4b9361c284bb4b4", - "_parent": "5d3eb59ea4b9361c284bb4b2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d3ef698a4b9361182109872" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": -1.28, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.24, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.12, - "CoolFactor": 1.18, - "DeviationCurve": 2.25, - "DeviationMax": 11 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, "5d2702e88abbc31ed91efc44": { "_id": "5d2702e88abbc31ed91efc44", "_name": "barrel_m700_shilen_stainless_660mm", @@ -95286,135 +93920,6 @@ }, "_proto": "55d3632e4bdc2d972f8b4569" }, - "5a787ebcc5856700142fdd98": { - "_id": "5a787ebcc5856700142fdd98", - "_name": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", - "ShortName": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", - "Description": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5a787ebcc5856700142fdd99", - "_parent": "5a787ebcc5856700142fdd98", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5a7898f5c5856700177b1697", - "_parent": "5a787ebcc5856700142fdd98", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a789261c5856700186c65d3" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -7, - "Velocity": 5.4, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.55, - "ShotgunDispersion": 1.4, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.92, - "CoolFactor": 0.96, - "DeviationCurve": 2.5, - "DeviationMax": 10 - }, - "_proto": "55d448594bdc2d8c2f8b4569" - }, "5a6b5b8a8dc32e001207faf3": { "_id": "5a6b5b8a8dc32e001207faf3", "_name": "barrel_glock_alpha_wolf_114mm_threaded_9x19", @@ -95688,96 +94193,6 @@ }, "_proto": "55d448594bdc2d8c2f8b4569" }, - "64748d02d1c009260702b526": { - "_id": "64748d02d1c009260702b526", - "_name": "barrel_mr43_sawed_off_310mm_12g", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 510мм для МР-43е-1с 12к", - "ShortName": "510мм МР-43е-1с 12к", - "Description": "Ствол для двухствольного ружья МР-43е-1с под патрон 12-го калибра, длинной 510мм.", - "Weight": 0.8, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr43_sawed_off_310mm_12g.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 3, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.68, - "ShotgunDispersion": 1.65, - "IsSilencer": false, - "DurabilityBurnModificator": 0.75, - "HeatFactor": 0.931, - "CoolFactor": 0.988, - "DeviationCurve": 3, - "DeviationMax": 9 - } - }, "6513eff1e06849f06c0957d4": { "_id": "6513eff1e06849f06c0957d4", "_name": "barrel_rpd_zid_rpd_520mm_762x39", @@ -95906,6 +94321,2800 @@ }, "_proto": "55d448594bdc2d8c2f8b4569" }, + "5c6d85e02e22165df16b81f4": { + "_id": "5c6d85e02e22165df16b81f4", + "_name": "barrel_416_hk_264mm_556x45", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_416_hk_279mm_556x45", + "ShortName": "barrel_416_hk_279mm_556x45", + "Description": "barrel_416_hk_279mm_556x45", + "Weight": 0.572, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_416_hk_264mm_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5f6339d53ada5942720e2dc3", + "5a34fe59c4a282000b1521a2", + "60926df0132d4d12c81fd9df", + "5c7955c22e221644f31bfd5e", + "57da93632459771cb65bf83f", + "57dbb57e2459774673234890", + "55d6190f4bdc2d87028b4567", + "55d614004bdc2d86028b4568", + "5ea17bbc09aa976f2e7a51cd", + "5d44064fa4b9361e4f6eb8b5", + "5cff9e84d7ad1a049e54ed55", + "5c6d10e82e221601da357b07", + "5bb20dfcd4351e00334c9e24", + "5c6d11072e2216000e69d2e4", + "5c6d11152e2216000f2003e7", + "5c6c2c9c2e2216000f2002e4" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5c6d85e02e22165df16b81f6", + "_parent": "5c6d85e02e22165df16b81f4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b3a16655acfc40016387a2a", + "5c7e5f112e221600106f4ede", + "5c0fafb6d174af02a96260ba", + "5cf6937cd7f00c056c53fb39", + "544a38634bdc2d58388b4568", + "5cff9e5ed7ad1a09407397d4", + "5c48a2a42e221602b66d1e07", + "5f6372e2865db925d54f3869", + "56ea8180d2720bf2698b456a", + "5d02676dd7ad1a049e54f6dc", + "609269c3b0e443224b421cc1", + "5c7fb51d2e2216001219ce11", + "5ea172e498dacb342978818e", + "5c6d710d2e22165df16b81e7", + "5d440625a4b9361eec4ae6c5", + "5cc9b815d7f00c000e2579d6", + "5a7c147ce899ef00150bd8b8", + "626667e87379c44d557b7550", + "62669bccdb9ebb4daa44cd14", + "626a74340be03179a165e30c", + "6386120cd6baa055ad1e201c", + "63ac5c9658d0485fc039f0b8", + "6405ff6bd4578826ec3e377a", + "64943b74e9998d641b0412ed" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_gas_block", + "_id": "5c6d85e02e22165df16b81f7", + "_parent": "5c6d85e02e22165df16b81f4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bb20dcad4351e3bac1212da" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": -18, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.073, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 0.82, + "HeatFactor": 1.06, + "CoolFactor": 1.09, + "DeviationCurve": 1.5, + "DeviationMax": 21 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "5fb653962b1b027b1f50bd03": { + "_id": "5fb653962b1b027b1f50bd03", + "_name": "barrel_vector_170mm_1143x23", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_vector_170mm_1143x23", + "ShortName": "barrel_vector_170mm_1143x23", + "Description": "barrel_vector_170mm_1143x23\n", + "Weight": 0.21, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_vector_170mm_1143x23.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5fb653962b1b027b1f50bd05", + "_parent": "5fb653962b1b027b1f50bd03", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fb65424956329274326f316", + "5fc4b992187fea44d52edaa9", + "5fb6548dd1409e5ca04b54f9" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": -0.78, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.19, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.04, + "CoolFactor": 1.07, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "5f3e77f59103d430b93f94c1": { + "_id": "5f3e77f59103d430b93f94c1", + "_name": "barrel_m1911a1_141mm_threaded_1143x23", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_m1911a1_141mm_threaded_1143x23", + "ShortName": "barrel_m1911a1_141mm_threaded_1143x23", + "Description": "barrel_m1911a1_141mm_threaded_1143x23\n", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_m1911a1_141mm_threaded_1143x23.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5f3e889b6cda304dcc63405c", + "_parent": "5f3e77f59103d430b93f94c1", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fc4b97bab884124df0cd5e3" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": -0.78, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.29, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.08, + "CoolFactor": 1.12, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "5a6b5ed88dc32e000c52ec86": { + "_id": "5a6b5ed88dc32e000c52ec86", + "_name": "barrel_glock_salient_arms_114mm_threaded_9x19", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_glock_salient_arms_114mm_threaded_9x19", + "ShortName": "barrel_glock_salient_arms_114mm_threaded_9x19", + "Description": "barrel_glock_salient_arms_114mm_threaded_9x19", + "Weight": 0.18, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_glock_salient_arms_114mm_threaded_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5a6b5ed88dc32e000c52ec87", + "_parent": "5a6b5ed88dc32e000c52ec86", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7ad0c451dfba0013379712", + "5a7037338dc32e000d46d257", + "5a70366c8dc32e001207fb06", + "5a705e128dc32e000d46d258", + "5a7ad1fb51dfba0013379715", + "5a6b585a8dc32e5a9c28b4f1", + "5a6b592c8dc32e00094b97bf", + "5a6b59a08dc32e000b452fb7", + "5c7e8fab2e22165df16b889b", + "5a33a8ebc4a282000c5a950d", + "5c6165902e22160010261b28", + "5a32a064c4a28200741e22de" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -8, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": -1.28, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.27, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 0.74, + "HeatFactor": 1.14, + "CoolFactor": 1.21, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "5fc3e4a27283c4046c5814ab": { + "_id": "5fc3e4a27283c4046c5814ab", + "_name": "barrel_ump_200mm_1143x23", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 260мм для AR-15 и совместимых 5.56х45", + "ShortName": "260мм AR-15 5.56х45", + "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 260мм. Соответствует стандартному стволу для M4 CQBR.\n", + "Weight": 0.409, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_ump_200mm_1143x23.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "6166f70c50224f204c1da33e", + "_parent": "5fc3e4a27283c4046c5814ab", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130c4d51cb55961fa0fd49f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -6, + "Velocity": -15.31, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.16, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.03, + "CoolFactor": 1.06, + "DeviationCurve": 2.75, + "DeviationMax": 9.5 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "628121434fa03b6b6c35dc6a": { + "_id": "628121434fa03b6b6c35dc6a", + "_name": "barrel_ax_accuracy_international_686mm_86x70_pb", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_m700_remington_heavy_660mm", + "ShortName": "barrel_m700_remington_heavy_660mm", + "Description": "barrel_m700_remington_heavy_660mm", + "Weight": 1.93, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_ax_accuracy_international_686mm_86x70_pb.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 4, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "62820e07f779fc31497d1445", + "_parent": "628121434fa03b6b6c35dc6a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62812081d23f207deb0ab216", + "612e0d81290d254f5e6b291a", + "5fc23636016cce60e8341b05" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -18, + "Velocity": 5.6, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.011, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.05, + "CoolFactor": 0.94, + "DeviationCurve": 1, + "DeviationMax": 33 + }, + "_proto": "55d3632e4bdc2d972f8b4569" + }, + "5a787f7ac5856700177af660": { + "_id": "5a787f7ac5856700177af660", + "_name": "barrel_870_fixed_improved_cylinder_508mm", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_870_extra_barrel_355mm", + "ShortName": "barrel_870_extra_barrel_355mm", + "Description": "barrel_870_extra_barrel_355mm", + "Weight": 0.8, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_870_fixed_improved_cylinder_508mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": true, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5a787f7ac5856700177af661", + "_parent": "5a787f7ac5856700177af660", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0111ab0db834001966914d", + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5a7898b7c585673f2b5c3cb8", + "_parent": "5a787f7ac5856700177af660", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a789261c5856700186c65d3" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -8, + "Velocity": 5.4, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.55, + "ShotgunDispersion": 1.4, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.92, + "CoolFactor": 0.96, + "DeviationCurve": 2.5, + "DeviationMax": 10 + }, + "_proto": "55d448594bdc2d8c2f8b4569" + }, + "5aaf9d53e5b5b00015042a52": { + "_id": "5aaf9d53e5b5b00015042a52", + "_name": "barrel_m1a_springfield_armory_6_groove_carbon_410mm", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_m1a_springfield_armory_6_groove_carbon_410mm", + "ShortName": "barrel_m1a_springfield_armory_6_groove_carbon_410mm", + "Description": "barrel_m1a_springfield_armory_6_groove_carbon_410mm", + "Weight": 1.04, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_m1a_springfield_armory_6_groove_carbon_410mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5aaf9d53e5b5b00015042a54", + "_parent": "5aaf9d53e5b5b00015042a52", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ab3afb2d8ce87001660304d", + "5aafa1c2e5b5b00015042a56" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -12, + "Velocity": -6.48, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.039, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.93, + "CoolFactor": 0.98, + "DeviationCurve": 1.1, + "DeviationMax": 30 + }, + "_proto": "55d3632e4bdc2d972f8b4569" + }, + "645123013d52156624001fd1": { + "_id": "645123013d52156624001fd1", + "_name": "barrel_9a91_kbp_vsk94_180mm_9x39", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 260мм для AR-15 и совместимых 5.56х45", + "ShortName": "260мм AR-15 5.56х45", + "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 260мм. Соответствует стандартному стволу для M4 CQBR.\n", + "Weight": 0.409, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_9a91_kbp_vsk94_180mm_9x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "645123013d52156624001fd2", + "_parent": "645123013d52156624001fd1", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "64527a263d52156624001fd7", + "64527a3a7da7133e5a09ca99" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "645b6051c42f3c94f80028db", + "_parent": "645123013d52156624001fd1", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "644675573d52156624001fc9", + "6448f2f6d4928d46d30be3f6" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": -16.31, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.127, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.084, + "CoolFactor": 1.125, + "DeviationCurve": 1.9, + "DeviationMax": 15.5 + } + }, + "5bb20de5d4351e0035629e59": { + "_id": "5bb20de5d4351e0035629e59", + "_name": "handguard_416_hk_quad_rail", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_416_hk_quad_rail", + "ShortName": "handguard_416_hk_quad_rail", + "Description": "handguard_416_hk_quad_rail", + "Weight": 0.399, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_416_hk_quad_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5bb20de5d4351e0035629e5b", + "_parent": "5bb20de5d4351e0035629e59", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "5a7dbfc1159bd40016548fde", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64807a29e5ffe165600abc97", + "64806bdd26c80811d408d37a", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5bb20de5d4351e0035629e5c", + "_parent": "5bb20de5d4351e0035629e59", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5bb20de5d4351e0035629e5f", + "_parent": "5bb20de5d4351e0035629e59", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5bb210a4d4351e44f824c181", + "_parent": "5bb20de5d4351e0035629e59", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5bb210f6d4351e00320205da", + "_parent": "5bb20de5d4351e0035629e59", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "5bb2110fd4351e44f824c182", + "_parent": "5bb20de5d4351e0035629e59", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.976, + "CoolFactor": 1.01 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5c617a5f2e2216000f1e81b3": { + "_id": "5c617a5f2e2216000f1e81b3", + "_name": "handguard_ak_zenit_b10", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_aks74u_zenit_b11", + "ShortName": "handguard_aks74u_zenit_b11", + "Description": "handguard_aks74u_zenit_b11", + "Weight": 0.15, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_zenit_b10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5c617a5f2e2216000f1e81b5", + "_parent": "5c617a5f2e2216000f1e81b3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5c617ab82e2216000e37f5a3", + "_parent": "5c617a5f2e2216000f1e81b3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "57ffaea724597779f52b3a4d", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.023, + "CoolFactor": 1.006 + }, + "_proto": "57dc32dc245977596d4ef3d3" + }, + "571a279b24597720b4066566": { + "_id": "571a279b24597720b4066566", + "_name": "barrel_tt_116mm_762x25tt_threaded", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол кустарный 116мм с резьбой для ТТ 7.62х25 ТТ", + "ShortName": "116мм куст. ТТ 7.62х25 ТТ", + "Description": "Изготовленный кустарным методом ствол для пистолета ТТ, с резьбой для установки глушителя.", + "Weight": 0.062, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_tt_116mm_762x25tt_threaded.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "571a29612459771fd90bb671", + "_parent": "571a279b24597720b4066566", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "571a28e524597720b4066567" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3.25, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": -2.31, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.27, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.12, + "CoolFactor": 1.18, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "571a26d524597720680fbe8a" + }, + "5b3baf8f5acfc40dc5296692": { + "_id": "5b3baf8f5acfc40dc5296692", + "_name": "barrel_tt_gold_116mm_762x25tt_std", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "золотой Ствол 116мм для ТТ 7.62х25 ТТ", + "ShortName": "116мм ТТ 7.62х25 ТТ", + "Description": "Штатный ствол для пистолета ТТ.", + "Weight": 0.06, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_tt_gold_116mm_762x25tt_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": -2.32, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.35, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.12, + "CoolFactor": 1.18, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "56d5a1f7d2720bb3418b456a" + }, + "634f02331f9f536910079b51": { + "_id": "634f02331f9f536910079b51", + "_name": "barrel_sks_toz_520mm_762x39", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_sks_toz_520mm_762x39", + "ShortName": "barrel_sks_toz_520mm_762x39", + "Description": "barrel_sks_toz_520mm_762x39", + "Weight": 1.5, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_sks_toz_520mm_762x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 110, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "634f02331f9f536910079b52", + "_parent": "634f02331f9f536910079b51", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "634f05a21f9f536910079b56", + "634f04d82e5def262d0b30c6" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "634f02331f9f536910079b53", + "_parent": "634f02331f9f536910079b51", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "593d1fa786f7746da62d61ac" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "634f02331f9f536910079b54", + "_parent": "634f02331f9f536910079b51", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cf67cadd7f00c065a5abab7", + "593d490386f7745ee97a1555" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -8, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -8, + "Velocity": 8.2, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.05, + "ShotgunDispersion": 1.9, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.9, + "CoolFactor": 0.92, + "DeviationCurve": 1.35, + "DeviationMax": 23 + }, + "_proto": "55d448594bdc2d8c2f8b4569" + }, + "6130c3dffaa1272e43151c7d": { + "_id": "6130c3dffaa1272e43151c7d", + "_name": "barrel_ump_203mm_threaded_1143x23", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 260мм для AR-15 и совместимых 5.56х45", + "ShortName": "260мм AR-15 5.56х45", + "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 260мм. Соответствует стандартному стволу для M4 CQBR.\n", + "Weight": 0.415, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_ump_203mm_threaded_1143x23.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "6130c6a16c780c1e710c93b2", + "_parent": "6130c3dffaa1272e43151c7d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fb65424956329274326f316", + "5fc4b992187fea44d52edaa9", + "5fb6548dd1409e5ca04b54f9" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": -15.1, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.158, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.03, + "CoolFactor": 1.06, + "DeviationCurve": 2.5, + "DeviationMax": 10 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "5fb65363d1409e5ca04b54f5": { + "_id": "5fb65363d1409e5ca04b54f5", + "_name": "barrel_vector_140mm_1143x23", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_vector_140mm_1143x23", + "ShortName": "barrel_vector_140mm_1143x23", + "Description": "barrel_vector_140mm_1143x23\n", + "Weight": 0.17, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_vector_140mm_1143x23.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5fb65363d1409e5ca04b54f7", + "_parent": "5fb65363d1409e5ca04b54f5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fb65424956329274326f316", + "5fc4b992187fea44d52edaa9", + "5fb6548dd1409e5ca04b54f9" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": -2.78, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.2, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 0.95, + "HeatFactor": 1.05, + "CoolFactor": 1.08, + "DeviationCurve": 2.25, + "DeviationMax": 11 + }, + "_proto": "55d35ee94bdc2d61338b4568" + }, + "5608379a4bdc2d26448b4569": { + "_id": "5608379a4bdc2d26448b4569", + "_name": "barrel_mr133_750mm_plank", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "Ствол 750мм для ружья МР-133 12к с прицельной планкой", + "ShortName": "750мм МР-133 12к", + "Description": "Стандартный заводской ствол для ружья МР-133 длинной 750мм под патрон 12-го калибра, с широкой прицельной планкой.", + "Weight": 1.55, + "BackgroundColor": "blue", + "Width": 5, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_mr133_750mm_plank.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 25, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "56e315d5d2720b5d058b456a", + "_parent": "5608379a4bdc2d26448b4569", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0111ab0db834001966914d", + "560838c94bdc2d77798b4569", + "5b363dea5acfc4771e1c5e7e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5dfe40b6fca8e055d15b75ad", + "_parent": "5608379a4bdc2d26448b4569", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "609b9e31506cf869cf3eaf41", + "5dfe14f30b92095fd441edaf" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -10, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -17, + "Velocity": 18.9, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.3, + "ShotgunDispersion": 1.1, + "IsSilencer": false, + "DurabilityBurnModificator": 1.1, + "HeatFactor": 0.82, + "CoolFactor": 0.86, + "DeviationCurve": 2.5, + "DeviationMax": 10 + }, + "_proto": "560837544bdc2de22e8b456e" + }, + "6333f05d1bc0e6217a0e9d34": { + "_id": "6333f05d1bc0e6217a0e9d34", + "_name": "barrel_aug_steyr_a1_417mm_556x45", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_ar15_508mm", + "ShortName": "barrel_ar15_508mm", + "Description": "barrel_ar15_508mm", + "Weight": 0.535, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_aug_steyr_a1_417mm_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "6333f05d1bc0e6217a0e9d35", + "_parent": "6333f05d1bc0e6217a0e9d34", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "630f2872911356c17d06abc5", + "630f28f0cadb1fe05e06f004", + "630f291b9f66a28b37094bb8", + "630f27f04f3f6281050b94d7", + "634eba08f69c710e0108d386" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "634e86e6767cb15c4601a887", + "_parent": "6333f05d1bc0e6217a0e9d34", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "634e61b0767cb15c4601a877" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -14, + "Velocity": -2.1, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.048, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1.04, + "HeatFactor": 0.98, + "CoolFactor": 0.98, + "DeviationCurve": 1.35, + "DeviationMax": 23 + }, + "_proto": "55d3632e4bdc2d972f8b4569" + }, + "64639a9aab86f8fd4300146c": { + "_id": "64639a9aab86f8fd4300146c", + "_name": "barrel_pkp_zid_std_658mm_762x54r", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", + "ShortName": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", + "Description": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", + "Weight": 3.2, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_pkp_zid_std_658mm_762x54r.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "6492c6dd60fdb10a020621a2" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -8.5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -8.5, + "Velocity": 11, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.028, + "ShotgunDispersion": 1.9, + "IsSilencer": false, + "DurabilityBurnModificator": 0.94, + "HeatFactor": 0.78, + "CoolFactor": 0.88, + "DeviationCurve": 1.35, + "DeviationMax": 23 + }, + "_proto": "55d448594bdc2d8c2f8b4569" + }, + "5a788068c5856700137e4c8f": { + "_id": "5a788068c5856700137e4c8f", + "_name": "handguard_870_magpul_moe_870", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_870_magpul_moe_870", + "ShortName": "handguard_870_magpul_moe_870", + "Description": "handguard_870_magpul_moe_870", + "Weight": 0.6, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_870_magpul_moe_870.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5a788c7fc5856700137e621c", + "_parent": "5a788068c5856700137e4c8f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5b7d2ae05acfc4001a5c401d", + "_parent": "5a788068c5856700137e4c8f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5b7d2ae95acfc43d102853db", + "_parent": "5a788068c5856700137e4c8f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 13, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.025, + "CoolFactor": 0.981 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "62e7c7f3c34ea971710c32fc": { + "_id": "62e7c7f3c34ea971710c32fc", + "_name": "barrel_aug_steyr_a1_508mm_556x45", + "_parent": "555ef6e44bdc2de9068b457e", + "_type": "Item", + "_props": { + "Name": "barrel_ar15_508mm", + "ShortName": "barrel_ar15_508mm", + "Description": "barrel_ar15_508mm", + "Weight": 0.83, + "BackgroundColor": "blue", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/barrels/barrel_aug_steyr_a1_508mm_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle_000", + "_id": "62e7c7f3c34ea971710c32fd", + "_parent": "62e7c7f3c34ea971710c32fc", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "630f2872911356c17d06abc5", + "630f28f0cadb1fe05e06f004", + "630f291b9f66a28b37094bb8", + "630f27f04f3f6281050b94d7", + "634eba08f69c710e0108d386" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle_001", + "_id": "630e3a5c984633f1fb0e7c38", + "_parent": "62e7c7f3c34ea971710c32fc", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "630f2982cdb9e392db0cbcc7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "634e86d5d21c889b5107d985", + "_parent": "62e7c7f3c34ea971710c32fc", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "634e61b0767cb15c4601a877" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -18, + "Velocity": -3.1, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CenterOfImpact": 0.036, + "ShotgunDispersion": 1, + "IsSilencer": false, + "DurabilityBurnModificator": 1.04, + "HeatFactor": 0.98, + "CoolFactor": 0.98, + "DeviationCurve": 1.35, + "DeviationMax": 23 + }, + "_proto": "55d3632e4bdc2d972f8b4569" + }, "5b7be1125acfc4001876c0e5": { "_id": "5b7be1125acfc4001876c0e5", "_name": "barrel_sa58_ds_arms_medium_contour_406mm", @@ -96310,23 +97519,23 @@ }, "_proto": "55d448594bdc2d8c2f8b4569" }, - "6130c3dffaa1272e43151c7d": { - "_id": "6130c3dffaa1272e43151c7d", - "_name": "barrel_ump_203mm_threaded_1143x23", - "_parent": "555ef6e44bdc2de9068b457e", + "5a329052c4a28200741e22d3": { + "_id": "5a329052c4a28200741e22d3", + "_name": "handguard_ar15_jp_rsass_std_fde", + "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "Ствол 260мм для AR-15 и совместимых 5.56х45", - "ShortName": "260мм AR-15 5.56х45", - "Description": "Ствол для оружия на базе AR-15 под патрон 5.56х45 NATO длинной 260мм. Соответствует стандартному стволу для M4 CQBR.\n", - "Weight": 0.415, + "Name": "handguard_ar15_jp_rsass_std_fde", + "ShortName": "handguard_ar15_jp_rsass_std_fde", + "Description": "handguard_ar15_jp_rsass_std_fde", + "Weight": 0.31, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_ump_203mm_threaded_1143x23.bundle", + "path": "assets/content/items/mods/handguards/handguard_ar15_jp_rsass_std_fde.bundle", "rcid": "" }, "UsePrefab": { @@ -96344,695 +97553,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "6130c6a16c780c1e710c93b2", - "_parent": "6130c3dffaa1272e43151c7d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fb65424956329274326f316", - "5fc4b992187fea44d52edaa9", - "5fb6548dd1409e5ca04b54f9" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": -15.1, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.158, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.03, - "CoolFactor": 1.06, - "DeviationCurve": 2.5, - "DeviationMax": 10 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "5fb65363d1409e5ca04b54f5": { - "_id": "5fb65363d1409e5ca04b54f5", - "_name": "barrel_vector_140mm_1143x23", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_vector_140mm_1143x23", - "ShortName": "barrel_vector_140mm_1143x23", - "Description": "barrel_vector_140mm_1143x23\n", - "Weight": 0.17, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_vector_140mm_1143x23.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5fb65363d1409e5ca04b54f7", - "_parent": "5fb65363d1409e5ca04b54f5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fb65424956329274326f316", - "5fc4b992187fea44d52edaa9", - "5fb6548dd1409e5ca04b54f9" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": -2.78, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.2, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 0.95, - "HeatFactor": 1.05, - "CoolFactor": 1.08, - "DeviationCurve": 2.25, - "DeviationMax": 11 - }, - "_proto": "55d35ee94bdc2d61338b4568" - }, - "5608379a4bdc2d26448b4569": { - "_id": "5608379a4bdc2d26448b4569", - "_name": "barrel_mr133_750mm_plank", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол 750мм для ружья МР-133 12к с прицельной планкой", - "ShortName": "750мм МР-133 12к", - "Description": "Стандартный заводской ствол для ружья МР-133 длинной 750мм под патрон 12-го калибра, с широкой прицельной планкой.", - "Weight": 1.55, - "BackgroundColor": "blue", - "Width": 5, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_mr133_750mm_plank.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 25, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "56e315d5d2720b5d058b456a", - "_parent": "5608379a4bdc2d26448b4569", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0111ab0db834001966914d", - "560838c94bdc2d77798b4569", - "5b363dea5acfc4771e1c5e7e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5dfe40b6fca8e055d15b75ad", - "_parent": "5608379a4bdc2d26448b4569", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "609b9e31506cf869cf3eaf41", - "5dfe14f30b92095fd441edaf" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -10, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -17, - "Velocity": 18.9, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.3, - "ShotgunDispersion": 1.1, - "IsSilencer": false, - "DurabilityBurnModificator": 1.1, - "HeatFactor": 0.82, - "CoolFactor": 0.86, - "DeviationCurve": 2.5, - "DeviationMax": 10 - }, - "_proto": "560837544bdc2de22e8b456e" - }, - "571a279b24597720b4066566": { - "_id": "571a279b24597720b4066566", - "_name": "barrel_tt_116mm_762x25tt_threaded", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "Ствол кустарный 116мм с резьбой для ТТ 7.62х25 ТТ", - "ShortName": "116мм куст. ТТ 7.62х25 ТТ", - "Description": "Изготовленный кустарным методом ствол для пистолета ТТ, с резьбой для установки глушителя.", - "Weight": 0.062, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_tt_116mm_762x25tt_threaded.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "571a29612459771fd90bb671", - "_parent": "571a279b24597720b4066566", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "571a28e524597720b4066567" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3.25, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": -2.31, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.27, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.12, - "CoolFactor": 1.18, - "DeviationCurve": 2.25, - "DeviationMax": 11 - }, - "_proto": "571a26d524597720680fbe8a" - }, - "6333f05d1bc0e6217a0e9d34": { - "_id": "6333f05d1bc0e6217a0e9d34", - "_name": "barrel_aug_steyr_a1_417mm_556x45", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_ar15_508mm", - "ShortName": "barrel_ar15_508mm", - "Description": "barrel_ar15_508mm", - "Weight": 0.535, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_aug_steyr_a1_417mm_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "6333f05d1bc0e6217a0e9d35", - "_parent": "6333f05d1bc0e6217a0e9d34", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "630f2872911356c17d06abc5", - "630f28f0cadb1fe05e06f004", - "630f291b9f66a28b37094bb8", - "630f27f04f3f6281050b94d7", - "634eba08f69c710e0108d386" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "634e86e6767cb15c4601a887", - "_parent": "6333f05d1bc0e6217a0e9d34", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "634e61b0767cb15c4601a877" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -14, - "Velocity": -2.1, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.048, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1.04, - "HeatFactor": 0.98, - "CoolFactor": 0.98, - "DeviationCurve": 1.35, - "DeviationMax": 23 - }, - "_proto": "55d3632e4bdc2d972f8b4569" - }, - "5b3baf8f5acfc40dc5296692": { - "_id": "5b3baf8f5acfc40dc5296692", - "_name": "barrel_tt_gold_116mm_762x25tt_std", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "золотой Ствол 116мм для ТТ 7.62х25 ТТ", - "ShortName": "116мм ТТ 7.62х25 ТТ", - "Description": "Штатный ствол для пистолета ТТ.", - "Weight": 0.06, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_tt_gold_116mm_762x25tt_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": -2.32, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.35, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.12, - "CoolFactor": 1.18, - "DeviationCurve": 2.25, - "DeviationMax": 11 - }, - "_proto": "56d5a1f7d2720bb3418b456a" - }, - "634f02331f9f536910079b51": { - "_id": "634f02331f9f536910079b51", - "_name": "barrel_sks_toz_520mm_762x39", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_sks_toz_520mm_762x39", - "ShortName": "barrel_sks_toz_520mm_762x39", - "Description": "barrel_sks_toz_520mm_762x39", - "Weight": 1.5, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_sks_toz_520mm_762x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 110, - "ExamineExperience": 6, + "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -97043,7 +97564,7 @@ "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, + "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -97061,34 +97582,100 @@ "Grids": [], "Slots": [ { - "_name": "mod_mount_000", - "_id": "634f02331f9f536910079b52", - "_parent": "634f02331f9f536910079b51", + "_name": "mod_foregrip", + "_id": "5a329052c4a28200741e22d4", + "_parent": "5a329052c4a28200741e22d3", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "634f05a21f9f536910079b56", - "634f04d82e5def262d0b30c6" + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5c0102b20db834001d23eebc", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" ] } ] }, - "_required": true, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5a329052c4a28200741e22d5", + "_parent": "5a329052c4a28200741e22d3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5a329052c4a28200741e22d9", + "_parent": "5a329052c4a28200741e22d3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5c0103bc0db834001a6698c1", + "_parent": "5a329052c4a28200741e22d3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0102aa0db834001b734ba1" + ] + } + ] + }, + "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, { "_name": "mod_mount_001", - "_id": "634f02331f9f536910079b53", - "_parent": "634f02331f9f536910079b51", + "_id": "5c0103d20db834001b734cd0", + "_parent": "5a329052c4a28200741e22d3", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "593d1fa786f7746da62d61ac" + "5c0102aa0db834001b734ba1" ] } ] @@ -97098,16 +97685,51 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_muzzle", - "_id": "634f02331f9f536910079b54", - "_parent": "634f02331f9f536910079b51", + "_name": "mod_mount_002", + "_id": "5c0103dc0db834001b734cd1", + "_parent": "5a329052c4a28200741e22d3", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5cf67cadd7f00c065a5abab7", - "593d490386f7745ee97a1555" + "5c0102aa0db834001b734ba1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_003", + "_id": "5c0103e40db834001c38f747", + "_parent": "5a329052c4a28200741e22d3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0102aa0db834001b734ba1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_004", + "_id": "5c0103f60db834001d23eec4", + "_parent": "5a329052c4a28200741e22d3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0102aa0db834001b734ba1" ] } ] @@ -97121,11 +97743,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -8, + "Recoil": -2, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -8, - "Velocity": 8.2, + "Ergonomics": 5, + "Velocity": 0, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -97135,127 +97757,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "CenterOfImpact": 0.05, - "ShotgunDispersion": 1.9, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.9, - "CoolFactor": 0.92, - "DeviationCurve": 1.35, - "DeviationMax": 23 + "HeatFactor": 0.975, + "CoolFactor": 1.038 }, - "_proto": "55d448594bdc2d8c2f8b4569" + "_proto": "55d459824bdc2d892f8b4573" }, - "64639a9aab86f8fd4300146c": { - "_id": "64639a9aab86f8fd4300146c", - "_name": "barrel_pkp_zid_std_658mm_762x54r", - "_parent": "555ef6e44bdc2de9068b457e", - "_type": "Item", - "_props": { - "Name": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", - "ShortName": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", - "Description": "barrel_870_express_rifle_sights_fixed_improved_cylinder_508mm", - "Weight": 3.2, - "BackgroundColor": "blue", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/barrels/barrel_pkp_zid_std_658mm_762x54r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "6492c6dd60fdb10a020621a2" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -8.5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -8.5, - "Velocity": 11, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CenterOfImpact": 0.028, - "ShotgunDispersion": 1.9, - "IsSilencer": false, - "DurabilityBurnModificator": 0.94, - "HeatFactor": 0.78, - "CoolFactor": 0.88, - "DeviationCurve": 1.35, - "DeviationMax": 23 - }, - "_proto": "55d448594bdc2d8c2f8b4569" - }, - "5d010d1cd7ad1a59283b1ce7": { - "_id": "5d010d1cd7ad1a59283b1ce7", - "_name": "handguard_mp5_caa_hx5", + "5efaf417aeb21837e749c7f2": { + "_id": "5efaf417aeb21837e749c7f2", + "_name": "handguard_ak_zenit_b30", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_mp5_bt_tl_99_3x_nar", - "ShortName": "handguard_mp5_bt_tl_99_3x_nar", - "Description": "handguard_mp5_bt_tl_99_3x_nar", - "Weight": 0.308, + "Name": "handguard_ak_zenit_b30", + "ShortName": "handguard_ak_zenit_b30", + "Description": "handguard_ak_zenit_b30", + "Weight": 0.39, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mp5_caa_hx5.bundle", + "path": "assets/content/items/mods/handguards/handguard_ak_zenit_b30.bundle", "rcid": "" }, "UsePrefab": { @@ -97303,8 +97826,1530 @@ "Slots": [ { "_name": "mod_foregrip", - "_id": "5d010d1cd7ad1a59283b1ce9", - "_parent": "5d010d1cd7ad1a59283b1ce7", + "_id": "5efaf417aeb21837e749c7f4", + "_parent": "5efaf417aeb21837e749c7f2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5efaf417aeb21837e749c7f5", + "_parent": "5efaf417aeb21837e749c7f2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5a33b2c9c4a282000c5a9511", + "644a3df63b0b6f03e101e065", + "64785e7c19d732620e045e15", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5efaf417aeb21837e749c7f6", + "_parent": "5efaf417aeb21837e749c7f2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "5efaf417aeb21837e749c7f7", + "_parent": "5efaf417aeb21837e749c7f2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5efafe76a2f64932a722aa74", + "_parent": "5efaf417aeb21837e749c7f2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.906, + "CoolFactor": 1.082 + }, + "_proto": "5648b1504bdc2d9d488b4584" + }, + "57cffddc24597763133760c6": { + "_id": "57cffddc24597763133760c6", + "_name": "handguard_ak_magpul_moe_ak_od", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_magpul_moe_ak_od", + "ShortName": "handguard_ak_magpul_moe_ak_od", + "Description": "handguard_ak_magpul_moe_ak_od", + "Weight": 0.221, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_magpul_moe_ak_od.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_003", + "_id": "57cffe8e245977638e6f2a32", + "_parent": "57cffddc24597763133760c6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8e529829226ceb67c319", + "651a8bf3a8520e48047bf708" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5b7d24145acfc400161d0a87", + "_parent": "57cffddc24597763133760c6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.053, + "CoolFactor": 1.018 + }, + "_proto": "57cffd8224597763b03fc609" + }, + "5a957c3fa2750c00137fa5f7": { + "_id": "5a957c3fa2750c00137fa5f7", + "_name": "handguard_aks74u_caa_xrsu47su", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_aks74u_caa_xrsu47su", + "ShortName": "handguard_aks74u_caa_xrsu47su", + "Description": "handguard_aks74u_caa_xrsu47su", + "Weight": 0.52, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_aks74u_caa_xrsu47su.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5a96724ca2750c00156aacf9", + "_parent": "5a957c3fa2750c00137fa5f7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64807a29e5ffe165600abc97", + "64806bdd26c80811d408d37a", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5a96725ba2750c00141e0776", + "_parent": "5a957c3fa2750c00137fa5f7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "626bb8532c923541184624b4", + "63fc449f5bd61c6cf3784a88", + "64785e7c19d732620e045e15", + "6478641c19d732620e045e17", + "6477772ea8a38bb2050ed4db", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5a967268a2750c00321570f7", + "_parent": "5a957c3fa2750c00137fa5f7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5a967274a2750c00164f6ac4", + "_parent": "5a957c3fa2750c00137fa5f7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "5a967280a2750c00141e0777", + "_parent": "5a957c3fa2750c00137fa5f7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "5d2da1e948f035477b1ce2ba", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5a33b2c9c4a282000c5a9511", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.931, + "CoolFactor": 1.088 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, + "5c17664f2e2216398b5a7e3c": { + "_id": "5c17664f2e2216398b5a7e3c", + "_name": "handguard_ak_vltor_cmrd", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_vltor_cmrd", + "ShortName": "handguard_ak_vltor_cmrd", + "Description": "handguard_ak_vltor_cmrd", + "Weight": 0.397, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_vltor_cmrd.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5ac66d015acfc400180ae6e4", + "5ac66d725acfc43b321d4b60", + "5ac66d9b5acfc4001633997a" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5c17664f2e2216398b5a7e40", + "_parent": "5c17664f2e2216398b5a7e3c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "615d8fd3290d254f5e6b2edc", + "5fc0f9b5d724d907e2077d82", + "5fc0f9cbd6fa9c00c571bb90", + "5a9d6d13a2750c00164f6b03", + "59e0bed186f774156f04ce84" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5c17664f2e2216398b5a7e41", + "_parent": "5c17664f2e2216398b5a7e3c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5c17664f2e2216398b5a7e42", + "_parent": "5c17664f2e2216398b5a7e3c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_003", + "_id": "5c17664f2e2216398b5a7e43", + "_parent": "5c17664f2e2216398b5a7e3c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.93, + "CoolFactor": 1.02 + }, + "_proto": "5648ae314bdc2d3d1c8b457f" + }, + "55d459824bdc2d892f8b4573": { + "_id": "55d459824bdc2d892f8b4573", + "_name": "handguard_ar15_kac_ris", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Knight's Armament KAC RIS для AR-15 и совместимых", + "ShortName": "KAC RIS", + "Description": "Цевье Knight's Armament KAC RIS является штатным цевьем M4A1. Однако может быть установлено на большинство оружия на базе AR-15, при необходимой длине ствола. Снабжено 4-мя направляющими для крепления дополнительного оборудования и экраном для отвода тепла.", + "Weight": 0.226, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_kac_ris.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "55f57a484bdc2d0b288b46bd", + "_parent": "55d459824bdc2d892f8b4573", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_2", + "_id": "55f57a5d4bdc2d972b8b4571", + "_parent": "55d459824bdc2d892f8b4573", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "56e3165fd2720b6c058b456c", + "_parent": "55d459824bdc2d892f8b4573", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_003", + "_id": "5c3f46b62e221602b66cd67d", + "_parent": "55d459824bdc2d892f8b4573", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "6396b327bb1d2e47460319f4", + "_parent": "55d459824bdc2d892f8b4573", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "637f57b78d137b27f70c496a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.018, + "CoolFactor": 1.01 + } + }, + "5c48a14f2e2216152006edd7": { + "_id": "5c48a14f2e2216152006edd7", + "_name": "handguard_mdr_dt_mdr_std", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", + "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Weight": 0.269, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_mdr_dt_mdr_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5c48a14f2e2216152006edd9", + "_parent": "5c48a14f2e2216152006edd7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8e529829226ceb67c319", + "651a8bf3a8520e48047bf708" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5c48a14f2e2216152006edda", + "_parent": "5c48a14f2e2216152006edd7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5c48a14f2e2216152006eddb", + "_parent": "5c48a14f2e2216152006edd7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5c48a14f2e2216152006eddd", + "_parent": "5c48a14f2e2216152006edd7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5c48a2252e22161b267da217", + "_parent": "5c48a14f2e2216152006edd7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.038, + "CoolFactor": 0.968 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "61f8024263dc1250e26eb029": { + "_id": "61f8024263dc1250e26eb029", + "_name": "handguard_mp18_izhmash_plastic", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_mp5_hk_sd", + "ShortName": "handguard_mp5_hk_sd", + "Description": "handguard_mp5_hk_sd", + "Weight": 0.13, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_mp18_izhmash_plastic.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.044, + "CoolFactor": 0.942 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, + "55d45d3f4bdc2d972f8b456c": { + "_id": "55d45d3f4bdc2d972f8b456c", + "_name": "handguard_mr133_izhmeh_std", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Ижмех МР-133 Бук для МР-133", + "ShortName": "МР-133 Бук", + "Description": "Стандартное цевье производства Ижмех выполненное из бука для гладкоствольного ружья МР-133.", + "Weight": 0.8, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_mr133_izhmeh_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.029, + "CoolFactor": 0.97 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "55d45f484bdc2d972f8b456d": { + "_id": "55d45f484bdc2d972f8b456d", + "_name": "handguard_mr133_custom_rail", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Кастом МР-133 пластик для МР-133 с направляющими", + "ShortName": "Кастом МР-133 пластик", + "Description": "Нестандартное полимерное цевье, стороннего производства для гладкоствольного ружья МР-133. Снабжено 2-мя короткими и одной длинной направляющими для крепления дополнительного оборудования.", + "Weight": 0.5, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_mr133_custom_rail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "560d47ba4bdc2d26448b4576", + "_parent": "55d45f484bdc2d972f8b456d", "_props": { "filters": [ { @@ -97352,27 +99397,22 @@ }, { "_name": "mod_tactical_000", - "_id": "5d010d1cd7ad1a59283b1cea", - "_parent": "5d010d1cd7ad1a59283b1ce7", + "_id": "560d493e4bdc2d26448b4577", + "_parent": "55d45f484bdc2d972f8b456d", "_props": { "filters": [ { "Shift": 0, "Filter": [ "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", "5cc9c20cd7f00c001336c65d", "5d2369418abbc306c62e0c80", "5b07dd285acfc4001754240d", "56def37dd2720bec348b456a", "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", "5a5f1ce64f39f90b401987bc", "560d657b4bdc2da74d8b4572", "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", "57d17e212459775a1179a0f5", "6267c6396b642f77f56f5c1c", "6272370ee4013c5d7e31f418", @@ -97390,8 +99430,663 @@ }, { "_name": "mod_tactical_001", - "_id": "5d010d1cd7ad1a59283b1ceb", - "_parent": "5d010d1cd7ad1a59283b1ce7", + "_id": "560d49504bdc2dcc4c8b4598", + "_parent": "55d45f484bdc2d972f8b456d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.027, + "CoolFactor": 0.97 + }, + "_proto": "55d45d3f4bdc2d972f8b456c" + }, + "6259c4347d6aab70bc23a190": { + "_id": "6259c4347d6aab70bc23a190", + "_name": "handguard_m3_benelli_forend_std", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_870_remington_12g_speedfeed_short", + "ShortName": "handguard_870_remington_12g_speedfeed_short", + "Description": "handguard_870_remington_12g_speedfeed_short", + "Weight": 0.136, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_m3_benelli_forend_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.02, + "CoolFactor": 0.99 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5926f34786f77469195bfe92": { + "_id": "5926f34786f77469195bfe92", + "_name": "handguard_mp5_hk_sd", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_mp5_hk_sd", + "ShortName": "handguard_mp5_hk_sd", + "Description": "handguard_mp5_hk_sd", + "Weight": 0.13, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_mp5_hk_sd.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.038, + "CoolFactor": 0.978 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, + "57cffe20245977632f391a9d": { + "_id": "57cffe20245977632f391a9d", + "_name": "handguard_ak_magpul_moe_ak_sg", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_magpul_moe_ak_sg", + "ShortName": "handguard_ak_magpul_moe_ak_sg", + "Description": "handguard_ak_magpul_moe_ak_sg", + "Weight": 0.221, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_magpul_moe_ak_sg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_003", + "_id": "57cffeb624597763887ef4c9", + "_parent": "57cffe20245977632f391a9d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5b7d247a5acfc4001510988c", + "_parent": "57cffe20245977632f391a9d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.053, + "CoolFactor": 1.018 + }, + "_proto": "57cffe0024597763b03fc60b" + }, + "5926c36d86f77467a92a8629": { + "_id": "5926c36d86f77467a92a8629", + "_name": "handguard_mp5_hk_wide_tropical", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_mp5_hk_wide_tropical", + "ShortName": "handguard_mp5_hk_wide_tropical", + "Description": "handguard_mp5_hk_wide_tropical", + "Weight": 0.241, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_mp5_hk_wide_tropical.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.03, + "CoolFactor": 0.982 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, + "5c78f2492e221600114c9f04": { + "_id": "5c78f2492e221600114c9f04", + "_name": "handguard_ar15_sai_qd_rail_long", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Weight": 0.355, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_sai_qd_rail_long.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a34fbadc4a28200741e230a", + "5ae30e795acfc408fb139a0b", + "56ea8d2fd2720b7c698b4570", + "55d35ee94bdc2d61338b4568" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5c78f2492e221600114c9f06", + "_parent": "5c78f2492e221600114c9f04", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5c78f2492e221600114c9f07", + "_parent": "5c78f2492e221600114c9f04", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5c78f2492e221600114c9f0a", + "_parent": "5c78f2492e221600114c9f04", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5c78f2492e221600114c9f0b", + "_parent": "5c78f2492e221600114c9f04", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5c78f2492e221600114c9f0c", + "_parent": "5c78f2492e221600114c9f04", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5c78f3aa2e221600106f468c", + "_parent": "5c78f2492e221600114c9f04", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c78f2882e22165df16b832e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5c7904482e221600114ca117", + "_parent": "5c78f2492e221600114c9f04", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5c7904552e221644fc630f9e", + "_parent": "5c78f2492e221600114c9f04", "_props": { "filters": [ { @@ -97428,14 +100123,17 @@ }, { "_name": "mod_tactical_002", - "_id": "5d010d98d7ad1a0940739c7a", - "_parent": "5d010d1cd7ad1a59283b1ce7", + "_id": "5c79048b2e2216000f200d3b", + "_parent": "5c78f2492e221600114c9f04", "_props": { "filters": [ { "Shift": 0, "Filter": [ "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", "5cc9c20cd7f00c001336c65d", "5d2369418abbc306c62e0c80", "5b07dd285acfc4001754240d", @@ -97444,6 +100142,8 @@ "61605d88ffa6e502ac5e7eeb", "5a5f1ce64f39f90b401987bc", "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", "57d17e212459775a1179a0f5", "6267c6396b642f77f56f5c1c", "6272370ee4013c5d7e31f418", @@ -97461,14 +100161,17 @@ }, { "_name": "mod_tactical_003", - "_id": "5d010dacd7ad1a6f1b72d2f2", - "_parent": "5d010d1cd7ad1a59283b1ce7", + "_id": "5c7905762e22160bc12c5e32", + "_parent": "5c78f2492e221600114c9f04", "_props": { "filters": [ { "Shift": 0, "Filter": [ "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", "5cc9c20cd7f00c001336c65d", "5d2369418abbc306c62e0c80", "5b07dd285acfc4001754240d", @@ -97477,6 +100180,8 @@ "61605d88ffa6e502ac5e7eeb", "5a5f1ce64f39f90b401987bc", "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", "57d17e212459775a1179a0f5", "6267c6396b642f77f56f5c1c", "6272370ee4013c5d7e31f418", @@ -97500,7 +100205,7 @@ "Recoil": -3, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 13, + "Ergonomics": 12, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -97511,28 +100216,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 0.98, - "CoolFactor": 1 + "HeatFactor": 0.968, + "CoolFactor": 1.069 }, - "_proto": "5648b0744bdc2d363b8b4578" + "_proto": "55d459824bdc2d892f8b4573" }, - "5a788068c5856700137e4c8f": { - "_id": "5a788068c5856700137e4c8f", - "_name": "handguard_870_magpul_moe_870", + "637ba19df7ca6372bf2613d7": { + "_id": "637ba19df7ca6372bf2613d7", + "_name": "handguard_sr2m_tochmash_std_blk", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_870_magpul_moe_870", - "ShortName": "handguard_870_magpul_moe_870", - "Description": "handguard_870_magpul_moe_870", - "Weight": 0.6, + "Name": "Цевье Ижмех МР-153 Полимерное для МР-133", + "ShortName": "МР-133 Полимер", + "Description": "Стандартное цевье производства Ижмех выполненное из полимера для гладкоствольного ружья МР-153.", + "Weight": 0.12, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_870_magpul_moe_870.bundle", + "path": "assets/content/items/mods/handguards/handguard_sr2m_tochmash_std_blk.bundle", "rcid": "" }, "UsePrefab": { @@ -97578,41 +100283,17 @@ "IsUnremovable": false, "Grids": [], "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5a788c7fc5856700137e621c", - "_parent": "5a788068c5856700137e4c8f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_mount_000", - "_id": "5b7d2ae05acfc4001a5c401d", - "_parent": "5a788068c5856700137e4c8f", + "_id": "637ba19df7ca6372bf2613d8", + "_parent": "637ba19df7ca6372bf2613d7", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" + "62ed1921b3608410ef5a2c04", + "62ed189fb3608410ef5a2bfc" ] } ] @@ -97623,15 +100304,15 @@ }, { "_name": "mod_mount_001", - "_id": "5b7d2ae95acfc43d102853db", - "_parent": "5a788068c5856700137e4c8f", + "_id": "637ba19df7ca6372bf2613d9", + "_parent": "637ba19df7ca6372bf2613d7", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" + "62ed1921b3608410ef5a2c04", + "62ed189fb3608410ef5a2bfc" ] } ] @@ -97648,10 +100329,10 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 13, + "Ergonomics": 5, "Velocity": 0, "RaidModdable": false, - "ToolModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -97659,28 +100340,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.025, + "HeatFactor": 1.022, "CoolFactor": 0.981 }, - "_proto": "55d459824bdc2d892f8b4573" + "_proto": "55d45d3f4bdc2d972f8b456c" }, - "5c617a5f2e2216000f1e81b3": { - "_id": "5c617a5f2e2216000f1e81b3", - "_name": "handguard_ak_zenit_b10", + "5d4aaa73a4b9365392071175": { + "_id": "5d4aaa73a4b9365392071175", + "_name": "handguard_ak_tdi_akm_l_gld", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_aks74u_zenit_b11", - "ShortName": "handguard_aks74u_zenit_b11", - "Description": "handguard_aks74u_zenit_b11", - "Weight": 0.15, + "Name": "handguard_ak_tdi_akm_l", + "ShortName": "handguard_ak_tdi_akm_l", + "Description": "handguard_ak_tdi_akm_l", + "Weight": 0.221, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_zenit_b10.bundle", + "path": "assets/content/items/mods/handguards/handguard_ak_tdi_akm_l_gld.bundle", "rcid": "" }, "UsePrefab": { @@ -97728,45 +100409,20 @@ "Slots": [ { "_name": "mod_foregrip", - "_id": "5c617a5f2e2216000f1e81b5", - "_parent": "5c617a5f2e2216000f1e81b3", + "_id": "5d4aaa73a4b9365392071177", + "_parent": "5d4aaa73a4b9365392071175", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" ] } ] @@ -97776,9 +100432,137 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_tactical", - "_id": "5c617ab82e2216000e37f5a3", - "_parent": "5c617a5f2e2216000f1e81b3", + "_name": "mod_mount_001", + "_id": "5d4aaa73a4b9365392071179", + "_parent": "5d4aaa73a4b9365392071175", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.986, + "CoolFactor": 1.032 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, + "5c9a25172e2216000f20314e": { + "_id": "5c9a25172e2216000f20314e", + "_name": "handguard_ar15_dd_ris_ii_12,25", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Daniel Defence RIS II 9.5 для AR-15 и совместимых", + "ShortName": "RIS II 9.5", + "Description": "Цевье Daniel Defence RIS II 9.5. Является частью программы SOPMOD Block II для замены штатного цевья карабина M4CQBR или Mk18 в подразделениях US SOCOM. Выполнено из легкого и прочного авиационного алюминия. Снабжено 4-мя направляющими для крепления дополнительного оборудования. Данный вариант цевья не совместим с подствольным гранатометом М203.", + "Weight": 0.352, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_dd_ris_ii_12,25.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a34fbadc4a28200741e230a", + "5ae30e795acfc408fb139a0b", + "56ea8d2fd2720b7c698b4570", + "55d35ee94bdc2d61338b4568" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5c9a25172e2216000f203151", + "_parent": "5c9a25172e2216000f20314e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5c9a25172e2216000f203152", + "_parent": "5c9a25172e2216000f20314e", "_props": { "filters": [ { @@ -97799,7 +100583,6 @@ "5b3a337e5acfc4704b4a19a0", "5c5952732e2216398b5abda2", "57d17e212459775a1179a0f5", - "57ffaea724597779f52b3a4d", "6267c6396b642f77f56f5c1c", "6272370ee4013c5d7e31f418", "6272379924e29f06af4d5ecb", @@ -97813,16 +100596,360 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "5c9a25172e2216000f203153", + "_parent": "5c9a25172e2216000f20314e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5c9a25172e2216000f203154", + "_parent": "5c9a25172e2216000f20314e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5c9a25172e2216000f203155", + "_parent": "5c9a25172e2216000f20314e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "6396a8fdfeadbf21a603539b", + "_parent": "5c9a25172e2216000f20314e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "638f2003bbd47aeb9e0ff637" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -1, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 3, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.968, + "CoolFactor": 1.044 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "6231654c71b5bc3baa1078e5": { + "_id": "6231654c71b5bc3baa1078e5", + "_name": "handguard_g36_hk_heatshield_a1", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Weight": 0.38, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_g36_hk_heatshield_a1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "622b379bf9cfc87d675d2de5", + "622b3858034a3e17ad0b81f5" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_bipod", + "_id": "623167968c43374ca1567197", + "_parent": "6231654c71b5bc3baa1078e5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "622b397c9a3d4327e41843b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.975, + "CoolFactor": 1.12 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "57cffe0024597763b03fc60b": { + "_id": "57cffe0024597763b03fc60b", + "_name": "handguard_ak_magpul_moe_ak_plm", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_magpul_moe_ak_plm", + "ShortName": "handguard_ak_magpul_moe_ak_plm", + "Description": "handguard_ak_magpul_moe_ak_plm", + "Weight": 0.221, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_magpul_moe_ak_plm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_003", + "_id": "57cffe9f24597763b31685de", + "_parent": "57cffe0024597763b03fc60b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5b7d243e5acfc4001a5c4014", + "_parent": "57cffe0024597763b03fc60b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -97833,10 +100960,139 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.023, - "CoolFactor": 1.006 + "HeatFactor": 1.053, + "CoolFactor": 1.018 }, - "_proto": "57dc32dc245977596d4ef3d3" + "_proto": "57cffddc24597763133760c6" + }, + "5d4aaa54a4b9365392071170": { + "_id": "5d4aaa54a4b9365392071170", + "_name": "handguard_ak_tdi_akm_l_red", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_tdi_akm_l", + "ShortName": "handguard_ak_tdi_akm_l", + "Description": "handguard_ak_tdi_akm_l", + "Weight": 0.221, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_tdi_akm_l_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5d4aaa54a4b9365392071172", + "_parent": "5d4aaa54a4b9365392071170", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5d4aaa54a4b9365392071174", + "_parent": "5d4aaa54a4b9365392071170", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.986, + "CoolFactor": 1.032 + }, + "_proto": "5648b0744bdc2d363b8b4578" }, "5f6331e097199b7db2128dc2": { "_id": "5f6331e097199b7db2128dc2", @@ -98196,1518 +101452,6 @@ }, "_proto": "5648b0744bdc2d363b8b4578" }, - "62386b7153757417e93a4e9f": { - "_id": "62386b7153757417e93a4e9f", - "_name": "handguard_g36_hk_k", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Weight": 0.28, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_g36_hk_k.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "622b379bf9cfc87d675d2de5", - "622b38c56762c718e457e246" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "62444e8e4b411719ea425cbb", - "_parent": "62386b7153757417e93a4e9f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62444cb99f47004c781903eb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "62444e9f674028188b05279d", - "_parent": "62386b7153757417e93a4e9f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62444cd3674028188b052799" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "62444eaf4b411719ea425cbc", - "_parent": "62386b7153757417e93a4e9f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62444cd3674028188b052799" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "62444edc7ba9d00d6d62b17b", - "_parent": "62386b7153757417e93a4e9f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "622f16a1a5958f63c67f1737" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.05, - "CoolFactor": 1.056 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5bb20de5d4351e0035629e59": { - "_id": "5bb20de5d4351e0035629e59", - "_name": "handguard_416_hk_quad_rail", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_416_hk_quad_rail", - "ShortName": "handguard_416_hk_quad_rail", - "Description": "handguard_416_hk_quad_rail", - "Weight": 0.399, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_416_hk_quad_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5bb20de5d4351e0035629e5b", - "_parent": "5bb20de5d4351e0035629e59", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "5a7dbfc1159bd40016548fde", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64807a29e5ffe165600abc97", - "64806bdd26c80811d408d37a", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5bb20de5d4351e0035629e5c", - "_parent": "5bb20de5d4351e0035629e59", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5bb20de5d4351e0035629e5f", - "_parent": "5bb20de5d4351e0035629e59", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5bb210a4d4351e44f824c181", - "_parent": "5bb20de5d4351e0035629e59", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "5bb210f6d4351e00320205da", - "_parent": "5bb20de5d4351e0035629e59", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "5bb2110fd4351e44f824c182", - "_parent": "5bb20de5d4351e0035629e59", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.976, - "CoolFactor": 1.01 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "57cff947245977638e6f2a19": { - "_id": "57cff947245977638e6f2a19", - "_name": "handguard_ak_magpul_moe_ak_blk", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_magpul_moe_ak_blk", - "ShortName": "handguard_ak_magpul_moe_ak_blk", - "Description": "handguard_ak_magpul_moe_ak_blk", - "Weight": 0.221, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_magpul_moe_ak_blk.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_003", - "_id": "57cffb3524597763887ef4c0", - "_parent": "57cff947245977638e6f2a19", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8e529829226ceb67c319", - "651a8bf3a8520e48047bf708" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5b7d23735acfc400196d5845", - "_parent": "57cff947245977638e6f2a19", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.053, - "CoolFactor": 1.018 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "6491c6f6ef312a876705191b": { - "_id": "6491c6f6ef312a876705191b", - "_name": "handguard_pk_zenit_b50", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Knight's Armament KAC RIS для AR-15 и совместимых", - "ShortName": "KAC RIS", - "Description": "Цевье Knight's Armament KAC RIS является штатным цевьем M4A1. Однако может быть установлено на большинство оружия на базе AR-15, при необходимой длине ствола. Снабжено 4-мя направляющими для крепления дополнительного оборудования и экраном для отвода тепла.", - "Weight": 0.36, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_pk_zenit_b50.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical_000", - "_id": "6491c6f6ef312a876705191d", - "_parent": "6491c6f6ef312a876705191b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "6491c6f6ef312a876705191e", - "_parent": "6491c6f6ef312a876705191b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6492c8bba6e68e06fb0bae87", - "6492c6dd60fdb10a020621a2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "6491c77400a3073ac706d2d6", - "_parent": "6491c6f6ef312a876705191b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "6491c77400a3073ac706d2d7", - "_parent": "6491c6f6ef312a876705191b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c1cd46f2e22164bef5cfedb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.03, - "CoolFactor": 1.025 - } - }, - "5d1b198cd7ad1a604869ad72": { - "_id": "5d1b198cd7ad1a604869ad72", - "_name": "handguard_ak_tdi_akm_l", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_tdi_akm_l", - "ShortName": "handguard_ak_tdi_akm_l", - "Description": "handguard_ak_tdi_akm_l", - "Weight": 0.221, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_tdi_akm_l.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5d1b1b62d7ad1a604869ad76", - "_parent": "5d1b198cd7ad1a604869ad72", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5d1b1b7ad7ad1a604869ad77", - "_parent": "5d1b198cd7ad1a604869ad72", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.986, - "CoolFactor": 1.032 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "5c0e2f5cd174af02a012cfc9": { - "_id": "5c0e2f5cd174af02a012cfc9", - "_name": "handguard_ar15_adar_wood_v1", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar15_colt_m4_length_std", - "ShortName": "handguard_ar15_colt_m4_length_std", - "Description": "handguard_ar15_colt_m4_length_std", - "Weight": 0.385, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_adar_wood_v1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "55d35ee94bdc2d61338b4568", - "55d3632e4bdc2d972f8b4569", - "63d3ce0446bd475bcb50f55f" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.074, - "CoolFactor": 0.968 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "62e15547db1a5c41971c1b5e": { - "_id": "62e15547db1a5c41971c1b5e", - "_name": "handguard_sr2m_tochmash_std", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Ижмех МР-153 Полимерное для МР-133", - "ShortName": "МР-133 Полимер", - "Description": "Стандартное цевье производства Ижмех выполненное из полимера для гладкоствольного ружья МР-153.", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_sr2m_tochmash_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "62ed19f695cc1748c83e65b4", - "_parent": "62e15547db1a5c41971c1b5e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62ed1921b3608410ef5a2c04", - "62ed189fb3608410ef5a2bfc" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "62ed19f695cc1748c83e65b5", - "_parent": "62e15547db1a5c41971c1b5e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62ed1921b3608410ef5a2c04", - "62ed189fb3608410ef5a2bfc" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.022, - "CoolFactor": 0.981 - }, - "_proto": "55d45d3f4bdc2d972f8b456c" - }, - "5a788031c585673f2b5c1c79": { - "_id": "5a788031c585673f2b5c1c79", - "_name": "handguard_870_fab_defence_pr870", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Ижмех МР-133 Бук для МР-133", - "ShortName": "МР-133 Бук", - "Description": "Стандартное цевье производства Ижмех выполненное из бука для гладкоствольного ружья МР-133.", - "Weight": 0.8, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_870_fab_defence_pr870.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5a788896c5856700186c5b03", - "_parent": "5a788031c585673f2b5c1c79", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "648067db042be0705c0b3009", - "64807a29e5ffe165600abc97", - "64806bdd26c80811d408d37a", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "5a78891dc5856700160166b9", - "_parent": "5a788031c585673f2b5c1c79", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5a788c3bc5856700177b0baa", - "_parent": "5a788031c585673f2b5c1c79", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.022, - "CoolFactor": 0.989 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5c48a14f2e2216152006edd7": { - "_id": "5c48a14f2e2216152006edd7", - "_name": "handguard_mdr_dt_mdr_std", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", - "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Weight": 0.269, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mdr_dt_mdr_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5c48a14f2e2216152006edd9", - "_parent": "5c48a14f2e2216152006edd7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8e529829226ceb67c319", - "651a8bf3a8520e48047bf708" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5c48a14f2e2216152006edda", - "_parent": "5c48a14f2e2216152006edd7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5c48a14f2e2216152006eddb", - "_parent": "5c48a14f2e2216152006edd7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5c48a14f2e2216152006eddd", - "_parent": "5c48a14f2e2216152006edd7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5c48a2252e22161b267da217", - "_parent": "5c48a14f2e2216152006edd7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.038, - "CoolFactor": 0.968 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, "5648b4534bdc2d3d1c8b4580": { "_id": "5648b4534bdc2d3d1c8b4580", "_name": "handguard_ak_zenit_b10m_b19", @@ -99933,23 +101677,23 @@ }, "_proto": "5648b1504bdc2d9d488b4584" }, - "61f8024263dc1250e26eb029": { - "_id": "61f8024263dc1250e26eb029", - "_name": "handguard_mp18_izhmash_plastic", + "5d010d1cd7ad1a59283b1ce7": { + "_id": "5d010d1cd7ad1a59283b1ce7", + "_name": "handguard_mp5_caa_hx5", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_mp5_hk_sd", - "ShortName": "handguard_mp5_hk_sd", - "Description": "handguard_mp5_hk_sd", - "Weight": 0.13, + "Name": "handguard_mp5_bt_tl_99_3x_nar", + "ShortName": "handguard_mp5_bt_tl_99_3x_nar", + "Description": "handguard_mp5_bt_tl_99_3x_nar", + "Weight": 0.308, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mp18_izhmash_plastic.bundle", + "path": "assets/content/items/mods/handguards/handguard_mp5_caa_hx5.bundle", "rcid": "" }, "UsePrefab": { @@ -99994,7 +101738,328 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5d010d1cd7ad1a59283b1ce9", + "_parent": "5d010d1cd7ad1a59283b1ce7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5d010d1cd7ad1a59283b1cea", + "_parent": "5d010d1cd7ad1a59283b1ce7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5d010d1cd7ad1a59283b1ceb", + "_parent": "5d010d1cd7ad1a59283b1ce7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "5d010d98d7ad1a0940739c7a", + "_parent": "5d010d1cd7ad1a59283b1ce7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_003", + "_id": "5d010dacd7ad1a6f1b72d2f2", + "_parent": "5d010d1cd7ad1a59283b1ce7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 13, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.98, + "CoolFactor": 1 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, + "5d1b198cd7ad1a604869ad72": { + "_id": "5d1b198cd7ad1a604869ad72", + "_name": "handguard_ak_tdi_akm_l", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_tdi_akm_l", + "ShortName": "handguard_ak_tdi_akm_l", + "Description": "handguard_ak_tdi_akm_l", + "Weight": 0.221, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_tdi_akm_l.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5d1b1b62d7ad1a604869ad76", + "_parent": "5d1b198cd7ad1a604869ad72", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5d1b1b7ad7ad1a604869ad77", + "_parent": "5d1b198cd7ad1a604869ad72", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, @@ -100013,28 +102078,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.044, - "CoolFactor": 0.942 + "HeatFactor": 0.986, + "CoolFactor": 1.032 }, "_proto": "5648b0744bdc2d363b8b4578" }, - "62386b2adf47d66e835094b2": { - "_id": "62386b2adf47d66e835094b2", - "_name": "handguard_g36_hk_c", + "5dcbd6b46ec07c0c4347a564": { + "_id": "5dcbd6b46ec07c0c4347a564", + "_name": "handguard_mdr_dt_mdr_std_blk", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Weight": 0.23, + "Name": "handguard_mdr_dt_mdr_std_blk", + "ShortName": "handguard_mdr_dt_mdr_std_blk", + "Description": "handguard_mdr_dt_mdr_std_blk", + "Weight": 0.269, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_g36_hk_c.bundle", + "path": "assets/content/items/mods/handguards/handguard_mdr_dt_mdr_std_blk.bundle", "rcid": "" }, "UsePrefab": { @@ -100056,7 +102121,206 @@ "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 1, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5dcbd6b46ec07c0c4347a566", + "_parent": "5dcbd6b46ec07c0c4347a564", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8e529829226ceb67c319", + "651a8bf3a8520e48047bf708" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5dcbd6b46ec07c0c4347a567", + "_parent": "5dcbd6b46ec07c0c4347a564", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5dcbd6b46ec07c0c4347a568", + "_parent": "5dcbd6b46ec07c0c4347a564", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5dcbd6b46ec07c0c4347a569", + "_parent": "5dcbd6b46ec07c0c4347a564", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5dcbd6b46ec07c0c4347a56a", + "_parent": "5dcbd6b46ec07c0c4347a564", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.038, + "CoolFactor": 0.968 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5b80242286f77429445e0b47": { + "_id": "5b80242286f77429445e0b47", + "_name": "handguard_ak_hexagon_ak_red", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_hexagon_ak", + "ShortName": "handguard_ak_hexagon_ak", + "Description": "handguard_ak_hexagon_ak", + "Weight": 0.167, + "BackgroundColor": "violet", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_hexagon_ak_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -100065,9 +102329,10 @@ "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [ - "5a7dbfc1159bd40016548fde", - "622b3858034a3e17ad0b81f5", - "622b38c56762c718e457e246" + "615d8f8567085e45ef1409ca", + "5ac66d015acfc400180ae6e4", + "5ac66d725acfc43b321d4b60", + "5ac66d9b5acfc4001633997a" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -100086,14 +102351,15 @@ "Slots": [ { "_name": "mod_mount_000", - "_id": "62444de49f47004c781903ee", - "_parent": "62386b2adf47d66e835094b2", + "_id": "5b80242286f77429445e0b49", + "_parent": "5b80242286f77429445e0b47", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "62444cb99f47004c781903eb" + "5b800ebc86f774394e230a90", + "5b8403a086f7747ff856f4e2" ] } ] @@ -100104,14 +102370,15 @@ }, { "_name": "mod_mount_001", - "_id": "62444e307ba9d00d6d62b17a", - "_parent": "62386b2adf47d66e835094b2", + "_id": "5b80242286f77429445e0b4a", + "_parent": "5b80242286f77429445e0b47", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "62444cd3674028188b052799" + "5b800ed086f7747baf6e2f9e", + "5b84038986f774774913b0c1" ] } ] @@ -100122,14 +102389,15 @@ }, { "_name": "mod_mount_002", - "_id": "62444e4fd9d6d1219f41bbca", - "_parent": "62386b2adf47d66e835094b2", + "_id": "5b80242286f77429445e0b4b", + "_parent": "5b80242286f77429445e0b47", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "62444cd3674028188b052799" + "5b800ed086f7747baf6e2f9e", + "5b84038986f774774913b0c1" ] } ] @@ -100139,15 +102407,16 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_tactical", - "_id": "62444e6dfce68a1dc533dacb", - "_parent": "62386b2adf47d66e835094b2", + "_name": "mod_mount_003", + "_id": "5b80242286f77429445e0b4c", + "_parent": "5b80242286f77429445e0b47", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "622f16a1a5958f63c67f1737" + "5b800ed086f7747baf6e2f9e", + "5b84038986f774774913b0c1" ] } ] @@ -100161,12 +102430,12 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -3, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 12, + "Ergonomics": 15, "Velocity": 0, - "RaidModdable": true, + "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -100175,28 +102444,117 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.07, - "CoolFactor": 1 + "HeatFactor": 0.952, + "CoolFactor": 1.092 }, - "_proto": "55d459824bdc2d892f8b4573" + "_proto": "5648b0744bdc2d363b8b4578" }, - "55d459824bdc2d892f8b4573": { - "_id": "55d459824bdc2d892f8b4573", - "_name": "handguard_ar15_kac_ris", + "5c0e2f5cd174af02a012cfc9": { + "_id": "5c0e2f5cd174af02a012cfc9", + "_name": "handguard_ar15_adar_wood_v1", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "Цевье Knight's Armament KAC RIS для AR-15 и совместимых", - "ShortName": "KAC RIS", - "Description": "Цевье Knight's Armament KAC RIS является штатным цевьем M4A1. Однако может быть установлено на большинство оружия на базе AR-15, при необходимой длине ствола. Снабжено 4-мя направляющими для крепления дополнительного оборудования и экраном для отвода тепла.", - "Weight": 0.226, + "Name": "handguard_ar15_colt_m4_length_std", + "ShortName": "handguard_ar15_colt_m4_length_std", + "Description": "handguard_ar15_colt_m4_length_std", + "Weight": 0.385, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_kac_ris.bundle", + "path": "assets/content/items/mods/handguards/handguard_ar15_adar_wood_v1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "55d35ee94bdc2d61338b4568", + "55d3632e4bdc2d972f8b4569", + "63d3ce0446bd475bcb50f55f" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.074, + "CoolFactor": 0.968 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "6491c6f6ef312a876705191b": { + "_id": "6491c6f6ef312a876705191b", + "_name": "handguard_pk_zenit_b50", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Knight's Armament KAC RIS для AR-15 и совместимых", + "ShortName": "KAC RIS", + "Description": "Цевье Knight's Armament KAC RIS является штатным цевьем M4A1. Однако может быть установлено на большинство оружия на базе AR-15, при необходимой длине ствола. Снабжено 4-мя направляющими для крепления дополнительного оборудования и экраном для отвода тепла.", + "Weight": 0.36, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_pk_zenit_b50.bundle", "rcid": "" }, "UsePrefab": { @@ -100242,10 +102600,283 @@ "IsUnremovable": false, "Grids": [], "Slots": [ + { + "_name": "mod_tactical_000", + "_id": "6491c6f6ef312a876705191d", + "_parent": "6491c6f6ef312a876705191b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "6491c6f6ef312a876705191e", + "_parent": "6491c6f6ef312a876705191b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6492c8bba6e68e06fb0bae87", + "6492c6dd60fdb10a020621a2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "6491c77400a3073ac706d2d6", + "_parent": "6491c6f6ef312a876705191b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "6491c77400a3073ac706d2d7", + "_parent": "6491c6f6ef312a876705191b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c1cd46f2e22164bef5cfedb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.03, + "CoolFactor": 1.025 + } + }, + "5b7bedd75acfc43d825283f9": { + "_id": "5b7bedd75acfc43d825283f9", + "_name": "handguard_fal_vltor_casv_fal", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", + "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Weight": 0.224, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_fal_vltor_casv_fal.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5b7bedd75acfc43d825283fb", + "_parent": "5b7bedd75acfc43d825283f9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be46e5acfc400170e2dcf" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5b7bedd75acfc43d825283fc", + "_parent": "5b7bedd75acfc43d825283f9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be4575acfc400161d0832", + "5b7be4645acfc400170e2dcc" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5b7bedd75acfc43d825283fd", + "_parent": "5b7bedd75acfc43d825283f9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be4575acfc400161d0832", + "5b7be4645acfc400170e2dcc" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_003", + "_id": "5b7bedd75acfc43d825283fe", + "_parent": "5b7bedd75acfc43d825283f9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be4575acfc400161d0832", + "5b7be4645acfc400170e2dcc" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, { "_name": "mod_tactical", - "_id": "55f57a484bdc2d0b288b46bd", - "_parent": "55d459824bdc2d892f8b4573", + "_id": "5b7bedd75acfc43d825283ff", + "_parent": "5b7bedd75acfc43d825283f9", "_props": { "filters": [ { @@ -100268,30 +102899,129 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_tactical_2", - "_id": "55f57a5d4bdc2d972b8b4571", - "_parent": "55d459824bdc2d892f8b4573", + "_name": "mod_scope", + "_id": "5b7bedd75acfc43d82528400", + "_parent": "5b7bedd75acfc43d825283f9", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.994, + "CoolFactor": 1.02 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "62e15547db1a5c41971c1b5e": { + "_id": "62e15547db1a5c41971c1b5e", + "_name": "handguard_sr2m_tochmash_std", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Ижмех МР-153 Полимерное для МР-133", + "ShortName": "МР-133 Полимер", + "Description": "Стандартное цевье производства Ижмех выполненное из полимера для гладкоствольного ружья МР-153.", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_sr2m_tochmash_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "62ed19f695cc1748c83e65b4", + "_parent": "62e15547db1a5c41971c1b5e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62ed1921b3608410ef5a2c04", + "62ed189fb3608410ef5a2bfc" ] } ] @@ -100301,66 +103031,16 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_mount", - "_id": "56e3165fd2720b6c058b456c", - "_parent": "55d459824bdc2d892f8b4573", + "_name": "mod_mount_001", + "_id": "62ed19f695cc1748c83e65b5", + "_parent": "62e15547db1a5c41971c1b5e", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_003", - "_id": "5c3f46b62e221602b66cd67d", - "_parent": "55d459824bdc2d892f8b4573", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "6396b327bb1d2e47460319f4", - "_parent": "55d459824bdc2d892f8b4573", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "637f57b78d137b27f70c496a" + "62ed1921b3608410ef5a2c04", + "62ed189fb3608410ef5a2bfc" ] } ] @@ -100377,7 +103057,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 1, + "Ergonomics": 5, "Velocity": 0, "RaidModdable": false, "ToolModdable": false, @@ -100388,9 +103068,171 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.018, - "CoolFactor": 1.01 - } + "HeatFactor": 1.022, + "CoolFactor": 0.981 + }, + "_proto": "55d45d3f4bdc2d972f8b456c" + }, + "62386b7153757417e93a4e9f": { + "_id": "62386b7153757417e93a4e9f", + "_name": "handguard_g36_hk_k", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Weight": 0.28, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_g36_hk_k.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "622b379bf9cfc87d675d2de5", + "622b38c56762c718e457e246" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "62444e8e4b411719ea425cbb", + "_parent": "62386b7153757417e93a4e9f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62444cb99f47004c781903eb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "62444e9f674028188b05279d", + "_parent": "62386b7153757417e93a4e9f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62444cd3674028188b052799" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "62444eaf4b411719ea425cbc", + "_parent": "62386b7153757417e93a4e9f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62444cd3674028188b052799" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "62444edc7ba9d00d6d62b17b", + "_parent": "62386b7153757417e93a4e9f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "622f16a1a5958f63c67f1737" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.05, + "CoolFactor": 1.056 + }, + "_proto": "55d459824bdc2d892f8b4573" }, "5eea21647547d6330471b3c9": { "_id": "5eea21647547d6330471b3c9", @@ -100540,265 +103382,23 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, - "59fb375986f7741b681b81a6": { - "_id": "59fb375986f7741b681b81a6", - "_name": "handguard_ak_krebs_ufm_akm_long", + "5cdaa99dd7f00c002412d0b2": { + "_id": "5cdaa99dd7f00c002412d0b2", + "_name": "handguard_ash12_ckib_ash12_std", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_ak_krebs_ufm_akm_long", - "ShortName": "handguard_ak_krebs_ufm_akm_long", - "Description": "handguard_ak_krebs_ufm_akm_long", - "Weight": 0.26, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_krebs_ufm_akm_long.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5a01b35c86f7745084256bb5", - "_parent": "59fb375986f7741b681b81a6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5a01b37a86f77450561fda0d", - "_parent": "59fb375986f7741b681b81a6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5a01b38d86f774504b2bebce", - "_parent": "59fb375986f7741b681b81a6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "615d8fd3290d254f5e6b2edc", - "5fc0f9b5d724d907e2077d82", - "5fc0f9cbd6fa9c00c571bb90", - "5a9d6d13a2750c00164f6b03", - "59e0bed186f774156f04ce84" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5a01b39786f77450561fda0e", - "_parent": "59fb375986f7741b681b81a6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5a01b3a386f774665a2eea7d", - "_parent": "59fb375986f7741b681b81a6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "5a01b3ae86f7742a0c7a0244", - "_parent": "59fb375986f7741b681b81a6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 11, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.943, - "CoolFactor": 1.04 - }, - "_proto": "5648ae314bdc2d3d1c8b457f" - }, - "57ffa9f4245977728561e844": { - "_id": "57ffa9f4245977728561e844", - "_name": "handguard_aks74u_zenit_b11", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_aks74u_zenit_b11", - "ShortName": "handguard_aks74u_zenit_b11", - "Description": "handguard_aks74u_zenit_b11", - "Weight": 0.15, + "Name": "handguard_ak_izhmash_ak100_rail_plastic", + "ShortName": "handguard_ak_izhmash_ak100_rail_plastic", + "Description": "handguard_ak_izhmash_ak100_rail_plastic", + "Weight": 0.27, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_aks74u_zenit_b11.bundle", + "path": "assets/content/items/mods/handguards/handguard_ash12_ckib_ash12_std.bundle", "rcid": "" }, "UsePrefab": { @@ -100846,8 +103446,8 @@ "Slots": [ { "_name": "mod_foregrip", - "_id": "57ffad2224597779db60ceb4", - "_parent": "57ffa9f4245977728561e844", + "_id": "5cdaa99dd7f00c002412d0b4", + "_parent": "5cdaa99dd7f00c002412d0b2", "_props": { "filters": [ { @@ -100856,6 +103456,143 @@ "5c7fc87d2e221644f31c0298", "5cda9bcfd7f00c0c0b53e900", "59f8a37386f7747af3328f06", + "5a7dbfc1159bd40016548fde", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64807a29e5ffe165600abc97", + "64806bdd26c80811d408d37a", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655dccfdbdcc6b5df71382b6", + "655df24fdf80b12750626d0a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.034, + "CoolFactor": 0.972 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, + "637f57b78d137b27f70c496a": { + "_id": "637f57b78d137b27f70c496a", + "_name": "handguard_ar15_kac_ris_lower", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Knight's Armament KAC RIS для AR-15 и совместимых", + "ShortName": "KAC RIS", + "Description": "Цевье Knight's Armament KAC RIS является штатным цевьем M4A1. Однако может быть установлено на большинство оружия на базе AR-15, при необходимой длине ствола. Снабжено 4-мя направляющими для крепления дополнительного оборудования и экраном для отвода тепла.", + "Weight": 0.097, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_kac_ris_lower.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "637f57b78d137b27f70c496d", + "_parent": "637f57b78d137b27f70c496a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "5a7dbfc1159bd40016548fde", "619386379fb0c665d5490dbe", "5c87ca002e221600114cb150", "588226d124597767ad33f787", @@ -100883,85 +103620,8 @@ "64807a29e5ffe165600abc97", "648067db042be0705c0b3009", "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "57ffad2e24597779f33d0f38", - "_parent": "57ffa9f4245977728561e844", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "57ffaea724597779f52b3a4d", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "57ffad5624597779f63b6528", - "_parent": "57ffa9f4245977728561e844", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" + "655dccfdbdcc6b5df71382b6", + "655df24fdf80b12750626d0a" ] } ] @@ -100975,10 +103635,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -1, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 3, + "Ergonomics": 4, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -100989,28 +103649,278 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 0.994, - "CoolFactor": 0.97 - }, - "_proto": "57dc32dc245977596d4ef3d3" + "HeatFactor": 1.013, + "CoolFactor": 1.002 + } }, - "57cffe0024597763b03fc60b": { - "_id": "57cffe0024597763b03fc60b", - "_name": "handguard_ak_magpul_moe_ak_plm", + "588b56d02459771481110ae2": { + "_id": "588b56d02459771481110ae2", + "_name": "handguard_ar15_dd_ris_ii_9,5_blk", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_ak_magpul_moe_ak_plm", - "ShortName": "handguard_ak_magpul_moe_ak_plm", - "Description": "handguard_ak_magpul_moe_ak_plm", - "Weight": 0.221, + "Name": "Цевье Daniel Defence RIS II 9.5 для AR-15 и совместимых", + "ShortName": "RIS II 9.5", + "Description": "Цевье Daniel Defence RIS II 9.5. Является частью программы SOPMOD Block II для замены штатного цевья карабина M4CQBR или Mk18 в подразделениях US SOCOM. Выполнено из легкого и прочного авиационного алюминия. Снабжено 4-мя направляющими для крепления дополнительного оборудования. Данный вариант цевья не совместим с подствольным гранатометом М203.", + "Weight": 0.279, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_dd_ris_ii_9,5_blk.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "588b56d02459771481110ae4", + "_parent": "588b56d02459771481110ae2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical001", + "_id": "588b56d02459771481110ae5", + "_parent": "588b56d02459771481110ae2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "626becf9582c3e319310b837", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical002", + "_id": "588b56d02459771481110ae6", + "_parent": "588b56d02459771481110ae2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "626becf9582c3e319310b837", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "588b56d02459771481110ae7", + "_parent": "588b56d02459771481110ae2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "588b56d02459771481110ae8", + "_parent": "588b56d02459771481110ae2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "6396ac4a6a00541d900be575", + "_parent": "588b56d02459771481110ae2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "638f1ff84822287cad04be9d", + "6396aaa9a52ace83df0840ab" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.987, + "CoolFactor": 1.021 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5cbda9f4ae9215000e5b9bfc": { + "_id": "5cbda9f4ae9215000e5b9bfc", + "_name": "handguard_ak_izhmash_ak74_std_plum", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье пполимерное для AK-74", + "ShortName": "AK-74 пл.ц.", + "Description": "Полимерное цевье для автомата АК-74 производства Ижмаш, пришедшее на смену классическому деревянному.", + "Weight": 0.25, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_magpul_moe_ak_plm.bundle", + "path": "assets/content/items/mods/handguards/handguard_ak_izhmash_ak74_std_plum.bundle", "rcid": "" }, "UsePrefab": { @@ -101055,59 +103965,15 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_mount_003", - "_id": "57cffe9f24597763b31685de", - "_parent": "57cffe0024597763b03fc60b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5b7d243e5acfc4001a5c4014", - "_parent": "57cffe0024597763b03fc60b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -2, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 10, + "Ergonomics": 5, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -101118,10 +103984,10 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.053, - "CoolFactor": 1.018 + "HeatFactor": 1.045, + "CoolFactor": 0.962 }, - "_proto": "57cffddc24597763133760c6" + "_proto": "5648b0744bdc2d363b8b4578" }, "5d123102d7ad1a004e475fe5": { "_id": "5d123102d7ad1a004e475fe5", @@ -101396,23 +104262,23 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, - "57cffe20245977632f391a9d": { - "_id": "57cffe20245977632f391a9d", - "_name": "handguard_ak_magpul_moe_ak_sg", + "5d2f259b48f0355a844acd74": { + "_id": "5d2f259b48f0355a844acd74", + "_name": "handguard_mp5k_hk_kurtz_grip_std", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_ak_magpul_moe_ak_sg", - "ShortName": "handguard_ak_magpul_moe_ak_sg", - "Description": "handguard_ak_magpul_moe_ak_sg", - "Weight": 0.221, + "Name": "handguard_mp5_hk_wide_tropical", + "ShortName": "handguard_mp5_hk_wide_tropical", + "Description": "handguard_mp5_hk_wide_tropical", + "Weight": 0.241, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_magpul_moe_ak_sg.bundle", + "path": "assets/content/items/mods/handguards/handguard_mp5k_hk_kurtz_grip_std.bundle", "rcid": "" }, "UsePrefab": { @@ -101457,59 +104323,15 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_mount_003", - "_id": "57cffeb624597763887ef4c9", - "_parent": "57cffe20245977632f391a9d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5b7d247a5acfc4001510988c", - "_parent": "57cffe20245977632f391a9d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -2, + "Recoil": -3, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 10, + "Ergonomics": 12, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -101520,28 +104342,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.053, - "CoolFactor": 1.018 + "HeatFactor": 1.042, + "CoolFactor": 0.961 }, - "_proto": "57cffe0024597763b03fc60b" + "_proto": "5648b0744bdc2d363b8b4578" }, - "5b800e9286f7747a8b04f3ff": { - "_id": "5b800e9286f7747a8b04f3ff", - "_name": "handguard_ak_hexagon_ak", + "637f57a68d137b27f70c4968": { + "_id": "637f57a68d137b27f70c4968", + "_name": "handguard_ar15_colt_m4_length_std_lower", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_ak_hexagon_ak", - "ShortName": "handguard_ak_hexagon_ak", - "Description": "handguard_ak_hexagon_ak", - "Weight": 0.167, - "BackgroundColor": "violet", + "Name": "handguard_ar15_colt_m4_length_std", + "ShortName": "handguard_ar15_colt_m4_length_std", + "Description": "handguard_ar15_colt_m4_length_std", + "Weight": 0.129, + "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_hexagon_ak.bundle", + "path": "assets/content/items/mods/handguards/handguard_ar15_colt_m4_length_std_lower.bundle", "rcid": "" }, "UsePrefab": { @@ -101559,6 +104381,195 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.029, + "CoolFactor": 0.986 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5ae30db85acfc408fb139a05": { + "_id": "5ae30db85acfc408fb139a05", + "_name": "handguard_ar15_colt_m4_length_std", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ar15_colt_m4_length_std", + "ShortName": "handguard_ar15_colt_m4_length_std", + "Description": "handguard_ar15_colt_m4_length_std", + "Weight": 0.193, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_colt_m4_length_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_handguard", + "_id": "638f211c4822287cad04bea5", + "_parent": "5ae30db85acfc408fb139a05", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "637f57a68d137b27f70c4968" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.032, + "CoolFactor": 0.991 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5d15ce51d7ad1a1eff619092": { + "_id": "5d15ce51d7ad1a1eff619092", + "_name": "handguard_aks74u_alfa_arms_goliaf", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_aks74u_zenit_b11", + "ShortName": "handguard_aks74u_zenit_b11", + "Description": "handguard_aks74u_zenit_b11", + "Weight": 0.15, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_aks74u_alfa_arms_goliaf.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, @@ -101572,10 +104583,17 @@ "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [ - "615d8f8567085e45ef1409ca", - "5ac66d015acfc400180ae6e4", - "5ac66d725acfc43b321d4b60", - "5ac66d9b5acfc4001633997a" + "5ac72e945acfc43f3b691116", + "5ac7655e5acfc40016339a19", + "5649aa744bdc2ded0b8b457e", + "5f633f791b231926f2329f13", + "5943eeeb86f77412d6384f6b", + "5cc9a96cd7f00c011c04e04a", + "615d8f5dd92c473c770212ef", + "5649ab884bdc2ded0b8b457f", + "593d493f86f7745e6b2ceb22", + "57ffb0e42459777d047111c5", + "615d8f8567085e45ef1409ca" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -101591,428 +104609,11 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5b80116a86f77471817cf19b", - "_parent": "5b800e9286f7747a8b04f3ff", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b800ebc86f774394e230a90", - "5b8403a086f7747ff856f4e2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5b80117486f7746cc23d053e", - "_parent": "5b800e9286f7747a8b04f3ff", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b800ed086f7747baf6e2f9e", - "5b84038986f774774913b0c1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5b80117e86f7747217085892", - "_parent": "5b800e9286f7747a8b04f3ff", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b800ed086f7747baf6e2f9e", - "5b84038986f774774913b0c1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "5b80118a86f7747313089854", - "_parent": "5b800e9286f7747a8b04f3ff", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b800ed086f7747baf6e2f9e", - "5b84038986f774774913b0c1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 14, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.952, - "CoolFactor": 1.092 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "6259c4347d6aab70bc23a190": { - "_id": "6259c4347d6aab70bc23a190", - "_name": "handguard_m3_benelli_forend_std", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_870_remington_12g_speedfeed_short", - "ShortName": "handguard_870_remington_12g_speedfeed_short", - "Description": "handguard_870_remington_12g_speedfeed_short", - "Weight": 0.136, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_m3_benelli_forend_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.02, - "CoolFactor": 0.99 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "55d45d3f4bdc2d972f8b456c": { - "_id": "55d45d3f4bdc2d972f8b456c", - "_name": "handguard_mr133_izhmeh_std", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Ижмех МР-133 Бук для МР-133", - "ShortName": "МР-133 Бук", - "Description": "Стандартное цевье производства Ижмех выполненное из бука для гладкоствольного ружья МР-133.", - "Weight": 0.8, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mr133_izhmeh_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.029, - "CoolFactor": 0.97 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5926f34786f77469195bfe92": { - "_id": "5926f34786f77469195bfe92", - "_name": "handguard_mp5_hk_sd", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_mp5_hk_sd", - "ShortName": "handguard_mp5_hk_sd", - "Description": "handguard_mp5_hk_sd", - "Weight": 0.13, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mp5_hk_sd.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.038, - "CoolFactor": 0.978 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "55d45f484bdc2d972f8b456d": { - "_id": "55d45f484bdc2d972f8b456d", - "_name": "handguard_mr133_custom_rail", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Кастом МР-133 пластик для МР-133 с направляющими", - "ShortName": "Кастом МР-133 пластик", - "Description": "Нестандартное полимерное цевье, стороннего производства для гладкоствольного ружья МР-133. Снабжено 2-мя короткими и одной длинной направляющими для крепления дополнительного оборудования.", - "Weight": 0.5, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mr133_custom_rail.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], "Slots": [ { "_name": "mod_foregrip", - "_id": "560d47ba4bdc2d26448b4576", - "_parent": "55d45f484bdc2d972f8b456d", + "_id": "5d15ce51d7ad1a1eff619094", + "_parent": "5d15ce51d7ad1a1eff619092", "_props": { "filters": [ { @@ -102060,548 +104661,8 @@ }, { "_name": "mod_tactical_000", - "_id": "560d493e4bdc2d26448b4577", - "_parent": "55d45f484bdc2d972f8b456d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "560d49504bdc2dcc4c8b4598", - "_parent": "55d45f484bdc2d972f8b456d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.027, - "CoolFactor": 0.97 - }, - "_proto": "55d45d3f4bdc2d972f8b456c" - }, - "5926c36d86f77467a92a8629": { - "_id": "5926c36d86f77467a92a8629", - "_name": "handguard_mp5_hk_wide_tropical", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_mp5_hk_wide_tropical", - "ShortName": "handguard_mp5_hk_wide_tropical", - "Description": "handguard_mp5_hk_wide_tropical", - "Weight": 0.241, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mp5_hk_wide_tropical.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.03, - "CoolFactor": 0.982 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "5c17664f2e2216398b5a7e3c": { - "_id": "5c17664f2e2216398b5a7e3c", - "_name": "handguard_ak_vltor_cmrd", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_vltor_cmrd", - "ShortName": "handguard_ak_vltor_cmrd", - "Description": "handguard_ak_vltor_cmrd", - "Weight": 0.397, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_vltor_cmrd.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5ac66d015acfc400180ae6e4", - "5ac66d725acfc43b321d4b60", - "5ac66d9b5acfc4001633997a" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5c17664f2e2216398b5a7e40", - "_parent": "5c17664f2e2216398b5a7e3c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "615d8fd3290d254f5e6b2edc", - "5fc0f9b5d724d907e2077d82", - "5fc0f9cbd6fa9c00c571bb90", - "5a9d6d13a2750c00164f6b03", - "59e0bed186f774156f04ce84" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5c17664f2e2216398b5a7e41", - "_parent": "5c17664f2e2216398b5a7e3c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5c17664f2e2216398b5a7e42", - "_parent": "5c17664f2e2216398b5a7e3c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "5c17664f2e2216398b5a7e43", - "_parent": "5c17664f2e2216398b5a7e3c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.93, - "CoolFactor": 1.02 - }, - "_proto": "5648ae314bdc2d3d1c8b457f" - }, - "5c78f2492e221600114c9f04": { - "_id": "5c78f2492e221600114c9f04", - "_name": "handguard_ar15_sai_qd_rail_long", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Weight": 0.355, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_sai_qd_rail_long.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a34fbadc4a28200741e230a", - "5ae30e795acfc408fb139a0b", - "56ea8d2fd2720b7c698b4570", - "55d35ee94bdc2d61338b4568" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5c78f2492e221600114c9f06", - "_parent": "5c78f2492e221600114c9f04", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5c78f2492e221600114c9f07", - "_parent": "5c78f2492e221600114c9f04", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5c78f2492e221600114c9f0a", - "_parent": "5c78f2492e221600114c9f04", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5c78f2492e221600114c9f0b", - "_parent": "5c78f2492e221600114c9f04", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5c78f2492e221600114c9f0c", - "_parent": "5c78f2492e221600114c9f04", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5c78f3aa2e221600106f468c", - "_parent": "5c78f2492e221600114c9f04", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c78f2882e22165df16b832e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5c7904482e221600114ca117", - "_parent": "5c78f2492e221600114c9f04", + "_id": "5d15ce51d7ad1a1eff619095", + "_parent": "5d15ce51d7ad1a1eff619092", "_props": { "filters": [ { @@ -102609,9 +104670,9 @@ "Filter": [ "57fd23e32459772d0805bcf1", "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", "5c06595c0db834001a66af6c", "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", "5c5952732e2216398b5abda2", "644a3df63b0b6f03e101e065" ] @@ -102624,8 +104685,8 @@ }, { "_name": "mod_tactical_001", - "_id": "5c7904552e221644fc630f9e", - "_parent": "5c78f2492e221600114c9f04", + "_id": "5d15ce51d7ad1a1eff619096", + "_parent": "5d15ce51d7ad1a1eff619092", "_props": { "filters": [ { @@ -102662,8 +104723,8 @@ }, { "_name": "mod_tactical_002", - "_id": "5c79048b2e2216000f200d3b", - "_parent": "5c78f2492e221600114c9f04", + "_id": "5d247bbf8abbc305645f3b24", + "_parent": "5d15ce51d7ad1a1eff619092", "_props": { "filters": [ { @@ -102672,6 +104733,7 @@ "5a800961159bd4315e3a1657", "57fd23e32459772d0805bcf1", "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", "5c06595c0db834001a66af6c", "5cc9c20cd7f00c001336c65d", "5d2369418abbc306c62e0c80", @@ -102700,8 +104762,8 @@ }, { "_name": "mod_tactical_003", - "_id": "5c7905762e22160bc12c5e32", - "_parent": "5c78f2492e221600114c9f04", + "_id": "5d2dcff048f03505c610c3b8", + "_parent": "5d15ce51d7ad1a1eff619092", "_props": { "filters": [ { @@ -102735,544 +104797,11 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 12, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.968, - "CoolFactor": 1.069 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5a329052c4a28200741e22d3": { - "_id": "5a329052c4a28200741e22d3", - "_name": "handguard_ar15_jp_rsass_std_fde", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar15_jp_rsass_std_fde", - "ShortName": "handguard_ar15_jp_rsass_std_fde", - "Description": "handguard_ar15_jp_rsass_std_fde", - "Weight": 0.31, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_jp_rsass_std_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5a329052c4a28200741e22d4", - "_parent": "5a329052c4a28200741e22d3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5c0102b20db834001d23eebc", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" }, { "_name": "mod_scope", - "_id": "5a329052c4a28200741e22d5", - "_parent": "5a329052c4a28200741e22d3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5a329052c4a28200741e22d9", - "_parent": "5a329052c4a28200741e22d3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5c0103bc0db834001a6698c1", - "_parent": "5a329052c4a28200741e22d3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0102aa0db834001b734ba1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5c0103d20db834001b734cd0", - "_parent": "5a329052c4a28200741e22d3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0102aa0db834001b734ba1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5c0103dc0db834001b734cd1", - "_parent": "5a329052c4a28200741e22d3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0102aa0db834001b734ba1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "5c0103e40db834001c38f747", - "_parent": "5a329052c4a28200741e22d3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0102aa0db834001b734ba1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_004", - "_id": "5c0103f60db834001d23eec4", - "_parent": "5a329052c4a28200741e22d3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0102aa0db834001b734ba1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.975, - "CoolFactor": 1.038 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5a957c3fa2750c00137fa5f7": { - "_id": "5a957c3fa2750c00137fa5f7", - "_name": "handguard_aks74u_caa_xrsu47su", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_aks74u_caa_xrsu47su", - "ShortName": "handguard_aks74u_caa_xrsu47su", - "Description": "handguard_aks74u_caa_xrsu47su", - "Weight": 0.52, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_aks74u_caa_xrsu47su.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5a96724ca2750c00156aacf9", - "_parent": "5a957c3fa2750c00137fa5f7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64807a29e5ffe165600abc97", - "64806bdd26c80811d408d37a", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5a96725ba2750c00141e0776", - "_parent": "5a957c3fa2750c00137fa5f7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "626bb8532c923541184624b4", - "63fc449f5bd61c6cf3784a88", - "64785e7c19d732620e045e15", - "6478641c19d732620e045e17", - "6477772ea8a38bb2050ed4db", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5a967268a2750c00321570f7", - "_parent": "5a957c3fa2750c00137fa5f7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "5a967274a2750c00164f6ac4", - "_parent": "5a957c3fa2750c00137fa5f7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "5a967280a2750c00141e0777", - "_parent": "5a957c3fa2750c00137fa5f7", + "_id": "5d2dd07348f035444e05603c", + "_parent": "5d15ce51d7ad1a1eff619092", "_props": { "filters": [ { @@ -103285,15 +104814,8 @@ "6165ac8c290d254f5e6b2f6c", "5d2da1e948f035477b1ce2ba", "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", "570fd721d2720bc5458b4596", "57ae0171245977343c27bfcf", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", "58d39d3d86f77445bb794ae7", "616554fe50224f204c1da2aa", "5c7d55f52e221644f31bff6a", @@ -103303,9 +104825,11 @@ "58d2664f86f7747fec5834f6", "5649a2464bdc2d91118b45a8", "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", "5a33b2c9c4a282000c5a9511", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" + "64785e7c19d732620e045e15", + "655f13e0a246670fb0373245" ] } ] @@ -103319,139 +104843,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -3, + "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": true, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.931, - "CoolFactor": 1.088 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "5d4aaa54a4b9365392071170": { - "_id": "5d4aaa54a4b9365392071170", - "_name": "handguard_ak_tdi_akm_l_red", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_tdi_akm_l", - "ShortName": "handguard_ak_tdi_akm_l", - "Description": "handguard_ak_tdi_akm_l", - "Weight": 0.221, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_tdi_akm_l_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5d4aaa54a4b9365392071172", - "_parent": "5d4aaa54a4b9365392071170", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5d4aaa54a4b9365392071174", - "_parent": "5d4aaa54a4b9365392071170", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, + "Ergonomics": 3, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -103462,28 +104857,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 0.986, - "CoolFactor": 1.032 + "HeatFactor": 1.01, + "CoolFactor": 1.064 }, - "_proto": "5648b0744bdc2d363b8b4578" + "_proto": "57dc32dc245977596d4ef3d3" }, - "5dcbd6b46ec07c0c4347a564": { - "_id": "5dcbd6b46ec07c0c4347a564", - "_name": "handguard_mdr_dt_mdr_std_blk", + "5fbc226eca32ed67276c155d": { + "_id": "5fbc226eca32ed67276c155d", + "_name": "handguard_mcx_sig_gen1_8_inch_keymod", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_mdr_dt_mdr_std_blk", - "ShortName": "handguard_mdr_dt_mdr_std_blk", - "Description": "handguard_mdr_dt_mdr_std_blk", - "Weight": 0.269, + "Name": "handguard_mcx_sig_gen1_8_inch_keymod", + "ShortName": "handguard_mcx_sig_gen1_8_inch_keymod", + "Description": "handguard_mcx_sig_gen1_8_inch_keymod", + "Weight": 0.39, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mdr_dt_mdr_std_blk.bundle", + "path": "assets/content/items/mods/handguards/handguard_mcx_sig_gen1_8_inch_keymod.bundle", "rcid": "" }, "UsePrefab": { @@ -103505,7 +104900,7 @@ "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 2, + "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -103531,20 +104926,17 @@ "Slots": [ { "_name": "mod_mount_000", - "_id": "5dcbd6b46ec07c0c4347a566", - "_parent": "5dcbd6b46ec07c0c4347a564", + "_id": "5fbc226eca32ed67276c155f", + "_parent": "5fbc226eca32ed67276c155d", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8e529829226ceb67c319", - "651a8bf3a8520e48047bf708" + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" ] } ] @@ -103555,59 +104947,17 @@ }, { "_name": "mod_mount_001", - "_id": "5dcbd6b46ec07c0c4347a567", - "_parent": "5dcbd6b46ec07c0c4347a564", + "_id": "5fbc226eca32ed67276c1560", + "_parent": "5fbc226eca32ed67276c155d", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5dcbd6b46ec07c0c4347a568", - "_parent": "5dcbd6b46ec07c0c4347a564", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5dcbd6b46ec07c0c4347a569", - "_parent": "5dcbd6b46ec07c0c4347a564", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" ] } ] @@ -103618,8 +104968,8 @@ }, { "_name": "mod_sight_front", - "_id": "5dcbd6b46ec07c0c4347a56a", - "_parent": "5dcbd6b46ec07c0c4347a564", + "_id": "5fbc226eca32ed67276c1566", + "_parent": "5fbc226eca32ed67276c155d", "_props": { "filters": [ { @@ -103641,13 +104991,36 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5fbc226eca32ed67276c1567", + "_parent": "5fbc226eca32ed67276c155d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "615d8fd3290d254f5e6b2edc", + "5fc0f9b5d724d907e2077d82", + "5fc0f9cbd6fa9c00c571bb90", + "5a9d6d13a2750c00164f6b03", + "59e0bed186f774156f04ce84", + "623c2f4242aee3103f1c44b7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -1, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": 9, @@ -103661,1495 +105034,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.038, - "CoolFactor": 0.968 + "HeatFactor": 0.973, + "CoolFactor": 1.022 }, "_proto": "55d459824bdc2d892f8b4573" }, - "5b7bee755acfc400196d5383": { - "_id": "5b7bee755acfc400196d5383", - "_name": "handguard_fal_vltor_casv_fas", + "5c6d11072e2216000e69d2e4": { + "_id": "5c6d11072e2216000e69d2e4", + "_name": "handguard_416_midwest_m_lok_13,5_inch", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Weight": 0.232, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_fal_vltor_casv_fas.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5b7bee755acfc400196d5385", - "_parent": "5b7bee755acfc400196d5383", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be46e5acfc400170e2dcf" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5b7bee755acfc400196d5386", - "_parent": "5b7bee755acfc400196d5383", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be4575acfc400161d0832", - "5b7be4645acfc400170e2dcc" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5b7bee755acfc400196d5387", - "_parent": "5b7bee755acfc400196d5383", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be4575acfc400161d0832", - "5b7be4645acfc400170e2dcc" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5b7bee755acfc400196d538a", - "_parent": "5b7bee755acfc400196d5383", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 14, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.99, - "CoolFactor": 1.012 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5cdaa99dd7f00c002412d0b2": { - "_id": "5cdaa99dd7f00c002412d0b2", - "_name": "handguard_ash12_ckib_ash12_std", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_izhmash_ak100_rail_plastic", - "ShortName": "handguard_ak_izhmash_ak100_rail_plastic", - "Description": "handguard_ak_izhmash_ak100_rail_plastic", - "Weight": 0.27, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ash12_ckib_ash12_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5cdaa99dd7f00c002412d0b4", - "_parent": "5cdaa99dd7f00c002412d0b2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "5a7dbfc1159bd40016548fde", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64807a29e5ffe165600abc97", - "64806bdd26c80811d408d37a", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655dccfdbdcc6b5df71382b6", - "655df24fdf80b12750626d0a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.034, - "CoolFactor": 0.972 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "61f7b85367ddd414173fdb36": { - "_id": "61f7b85367ddd414173fdb36", - "_name": "handguard_mp18_izhmash_wood", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_mp5_hk_sd", - "ShortName": "handguard_mp5_hk_sd", - "Description": "handguard_mp5_hk_sd", - "Weight": 0.182, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mp18_izhmash_wood.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.075, - "CoolFactor": 0.924 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "653ecd065a1690d9d90491e6": { - "_id": "653ecd065a1690d9d90491e6", - "_name": "handguard_sks_tapco_gas_cover", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_sks_molot_op_sks_std", - "ShortName": "handguard_sks_molot_op_sks_std", - "Description": "handguard_sks_molot_op_sks_std", - "Weight": 0.22, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_sks_tapco_gas_cover.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "653ecd7436fae5a82f02b868", - "_parent": "653ecd065a1690d9d90491e6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5a33b2c9c4a282000c5a9511", - "644a3df63b0b6f03e101e065", - "64785e7c19d732620e045e15", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.006, - "CoolFactor": 0.99 - }, - "_proto": "5648ae314bdc2d3d1c8b457f" - }, - "5c9a1c3a2e2216000e69fb6a": { - "_id": "5c9a1c3a2e2216000e69fb6a", - "_name": "handguard_ak_magpul_zhukov_u_fde", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_magpul_moe_ak_blk", - "ShortName": "handguard_ak_magpul_moe_ak_blk", - "Description": "handguard_ak_magpul_moe_ak_blk", - "Weight": 0.31, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_magpul_zhukov_u_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "59984ab886f7743e98271174" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5c9a1c3a2e2216000e69fb6c", - "_parent": "5c9a1c3a2e2216000e69fb6a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5c9a1c3a2e2216000e69fb6d", - "_parent": "5c9a1c3a2e2216000e69fb6a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5c9a1c3a2e2216000e69fb6e", - "_parent": "5c9a1c3a2e2216000e69fb6a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 14, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.072, - "CoolFactor": 1.027 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "5cbda9f4ae9215000e5b9bfc": { - "_id": "5cbda9f4ae9215000e5b9bfc", - "_name": "handguard_ak_izhmash_ak74_std_plum", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье пполимерное для AK-74", - "ShortName": "AK-74 пл.ц.", - "Description": "Полимерное цевье для автомата АК-74 производства Ижмаш, пришедшее на смену классическому деревянному.", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_izhmash_ak74_std_plum.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.045, - "CoolFactor": 0.962 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "63f4ba71f31d4a33b87bd046": { - "_id": "63f4ba71f31d4a33b87bd046", - "_name": "handguard_ar15_aeroknox_ax15_4_m_lok", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", - "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Weight": 0.103, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_aeroknox_ax15_4_m_lok.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [ - "55d3632e4bdc2d972f8b4569", - "5d440b93a4b9364276578d4b", - "5d440b9fa4b93601354d480c", - "5c0e2f94d174af029f650d56", - "63d3ce0446bd475bcb50f55f", - "63d3d44a2a49307baf09386d" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "63f4ba71f31d4a33b87bd049", - "_parent": "63f4ba71f31d4a33b87bd046", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 13, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.921, - "CoolFactor": 1.094 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "588b56d02459771481110ae2": { - "_id": "588b56d02459771481110ae2", - "_name": "handguard_ar15_dd_ris_ii_9,5_blk", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Daniel Defence RIS II 9.5 для AR-15 и совместимых", - "ShortName": "RIS II 9.5", - "Description": "Цевье Daniel Defence RIS II 9.5. Является частью программы SOPMOD Block II для замены штатного цевья карабина M4CQBR или Mk18 в подразделениях US SOCOM. Выполнено из легкого и прочного авиационного алюминия. Снабжено 4-мя направляющими для крепления дополнительного оборудования. Данный вариант цевья не совместим с подствольным гранатометом М203.", - "Weight": 0.279, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_dd_ris_ii_9,5_blk.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "588b56d02459771481110ae4", - "_parent": "588b56d02459771481110ae2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical001", - "_id": "588b56d02459771481110ae5", - "_parent": "588b56d02459771481110ae2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "626becf9582c3e319310b837", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical002", - "_id": "588b56d02459771481110ae6", - "_parent": "588b56d02459771481110ae2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "626becf9582c3e319310b837", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "588b56d02459771481110ae7", - "_parent": "588b56d02459771481110ae2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "588b56d02459771481110ae8", - "_parent": "588b56d02459771481110ae2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "6396ac4a6a00541d900be575", - "_parent": "588b56d02459771481110ae2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "638f1ff84822287cad04be9d", - "6396aaa9a52ace83df0840ab" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.987, - "CoolFactor": 1.021 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5e848d51e4dbc5266a4ec63b": { - "_id": "5e848d51e4dbc5266a4ec63b", - "_name": "handguard_ks23_toz_ks23m_std", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_870_remington_12g_speedfeed_short", - "ShortName": "handguard_870_remington_12g_speedfeed_short", - "Description": "handguard_870_remington_12g_speedfeed_short", - "Weight": 0.58, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ks23_toz_ks23m_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.018, - "CoolFactor": 0.981 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5c6d5d8b2e221644fc630b39": { - "_id": "5c6d5d8b2e221644fc630b39", - "_name": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Weight": 0.209, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_stngr_vypr_m_lok_10_inch.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a34fbadc4a28200741e230a", - "5ae30e795acfc408fb139a0b", - "56ea8d2fd2720b7c698b4570" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5c6d5d8b2e221644fc630b3b", - "_parent": "5c6d5d8b2e221644fc630b39", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5c6d5d8b2e221644fc630b3c", - "_parent": "5c6d5d8b2e221644fc630b39", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5c6d5d8b2e221644fc630b3d", - "_parent": "5c6d5d8b2e221644fc630b39", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5c6d5d8b2e221644fc630b3e", - "_parent": "5c6d5d8b2e221644fc630b39", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5c6d5d8b2e221644fc630b3f", - "_parent": "5c6d5d8b2e221644fc630b39", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5c6d5d8b2e221644fc630b40", - "_parent": "5c6d5d8b2e221644fc630b39", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5c6d5d8b2e221644fc630b41", - "_parent": "5c6d5d8b2e221644fc630b39", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.985, - "CoolFactor": 1.055 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "595cfa8b86f77427437e845b": { - "_id": "595cfa8b86f77427437e845b", - "_name": "handguard_ar15_war_sport_lvoa_c_blk", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar15_war_sport_lvoa_s_blk", - "ShortName": "handguard_ar15_war_sport_lvoa_s_blk", - "Description": "handguard_ar15_war_sport_lvoa_s_blk", - "Weight": 0.58, + "Weight": 0.37, "BackgroundColor": "blue", "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_war_sport_lvoa_c_blk.bundle", + "path": "assets/content/items/mods/handguards/handguard_416_midwest_m_lok_13,5_inch.bundle", "rcid": "" }, "UsePrefab": { @@ -105180,8 +105086,9 @@ "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [ - "5a9fbb84a2750c00137fa685", - "55d35ee94bdc2d61338b4568" + "5c6d85e02e22165df16b81f4", + "5bb20d92d4351e00853263eb", + "5bb20d9cd4351e00334c9d8a" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -105199,15 +105106,57 @@ "Grids": [], "Slots": [ { - "_name": "mod_scope", - "_id": "595cfa8b86f77427437e845c", - "_parent": "595cfa8b86f77427437e845b", + "_name": "mod_mount_000", + "_id": "5c6d11072e2216000e69d2e6", + "_parent": "5c6d11072e2216000e69d2e4", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5649a2464bdc2d91118b45a8" + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5c6d11072e2216000e69d2e7", + "_parent": "5c6d11072e2216000e69d2e4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5c6d11072e2216000e69d2e8", + "_parent": "5c6d11072e2216000e69d2e4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" ] } ] @@ -105218,8 +105167,8 @@ }, { "_name": "mod_tactical", - "_id": "595cfa8b86f77427437e845d", - "_parent": "595cfa8b86f77427437e845b", + "_id": "5c6d11072e2216000e69d2ea", + "_parent": "5c6d11072e2216000e69d2e4", "_props": { "filters": [ { @@ -105242,15 +105191,15 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_mount_000", - "_id": "59e0c03b86f774156f04ce87", - "_parent": "595cfa8b86f77427437e845b", + "_name": "mod_scope", + "_id": "5c6d11072e2216000e69d2eb", + "_parent": "5c6d11072e2216000e69d2e4", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "59e0bed186f774156f04ce84" + "5649a2464bdc2d91118b45a8" ] } ] @@ -105260,57 +105209,21 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_mount_002", - "_id": "59e0c04386f7742d48765bd5", - "_parent": "595cfa8b86f77427437e845b", + "_name": "mod_foregrip", + "_id": "5c6d14ad2e2216001219b4c9", + "_parent": "5c6d11072e2216000e69d2e4", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "59e0c04986f774157255cc33", - "_parent": "595cfa8b86f77427437e845b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_004", - "_id": "59e0c05086f774156f04ce88", - "_parent": "595cfa8b86f77427437e845b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" ] } ] @@ -105321,8 +105234,8 @@ }, { "_name": "mod_sight_front", - "_id": "5c164e3d2e221602b5428c3d", - "_parent": "595cfa8b86f77427437e845b", + "_id": "5c6d14d62e221644f31bf663", + "_parent": "5c6d11072e2216000e69d2e4", "_props": { "filters": [ { @@ -105350,7 +105263,7 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -2, + "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": 10, @@ -105364,8 +105277,8 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 0.942, - "CoolFactor": 1.06 + "HeatFactor": 0.969, + "CoolFactor": 1.103 }, "_proto": "55d459824bdc2d892f8b4573" }, @@ -105679,6 +105592,252 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, + "5df916dfbb49d91fb446d6b9": { + "_id": "5df916dfbb49d91fb446d6b9", + "_name": "handguard_ar10_kac_urx4_14_5_inch", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ar10_kac_urx4_14_5_inch", + "ShortName": "handguard_ar10_kac_urx4_14_5_inch", + "Description": "handguard_ar10_kac_urx4_14_5_inch", + "Weight": 0.42, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar10_kac_urx4_14_5_inch.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a34fbadc4a28200741e230a", + "5ae30e795acfc408fb139a0b", + "56ea8d2fd2720b7c698b4570", + "55d35ee94bdc2d61338b4568", + "55d3632e4bdc2d972f8b4569", + "5c0e2f94d174af029f650d56" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5df916dfbb49d91fb446d6bb", + "_parent": "5df916dfbb49d91fb446d6b9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5df916dfbb49d91fb446d6bc", + "_parent": "5df916dfbb49d91fb446d6b9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5df916dfbb49d91fb446d6bd", + "_parent": "5df916dfbb49d91fb446d6b9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269545d0e57f218e4548ca2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5df916dfbb49d91fb446d6be", + "_parent": "5df916dfbb49d91fb446d6b9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269545d0e57f218e4548ca2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5df916dfbb49d91fb446d6c1", + "_parent": "5df916dfbb49d91fb446d6b9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5df916dfbb49d91fb446d6c2", + "_parent": "5df916dfbb49d91fb446d6b9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5df916dfbb49d91fb446d6c3", + "_parent": "5df916dfbb49d91fb446d6b9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269545d0e57f218e4548ca2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 1, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.965, + "CoolFactor": 1.03 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, "5bb20df1d4351e00347787d5": { "_id": "5bb20df1d4351e00347787d5", "_name": "handguard_416_hk_quad_rail_w_sight", @@ -105935,6 +106094,575 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, + "55f84c3c4bdc2d5f408b4576": { + "_id": "55f84c3c4bdc2d5f408b4576", + "_name": "handguard_ar15_dd_ris_ii_9,5", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Daniel Defence RIS II 9.5 для AR-15 и совместимых", + "ShortName": "RIS II 9.5", + "Description": "Цевье Daniel Defence RIS II 9.5. Является частью программы SOPMOD Block II для замены штатного цевья карабина M4CQBR или Mk18 в подразделениях US SOCOM. Выполнено из легкого и прочного авиационного алюминия. Снабжено 4-мя направляющими для крепления дополнительного оборудования. Данный вариант цевья не совместим с подствольным гранатометом М203.", + "Weight": 0.279, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_dd_ris_ii_9,5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5649d7694bdc2d79388b457f", + "_parent": "55f84c3c4bdc2d5f408b4576", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical001", + "_id": "5649d79a4bdc2d3d1c8b4587", + "_parent": "55f84c3c4bdc2d5f408b4576", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical002", + "_id": "5649d7a74bdc2d3b4c8b457d", + "_parent": "55f84c3c4bdc2d5f408b4576", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "56eaab87d2720b69698b456f", + "_parent": "55f84c3c4bdc2d5f408b4576", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "56eaacd2d2720b69698b4570", + "_parent": "55f84c3c4bdc2d5f408b4576", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "6396aa72feadbf21a603539c", + "_parent": "55f84c3c4bdc2d5f408b4576", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "638f1ff84822287cad04be9d", + "6396aaa9a52ace83df0840ab" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.987, + "CoolFactor": 1.021 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5f2aa47a200e2c0ee46efa71": { + "_id": "5f2aa47a200e2c0ee46efa71", + "_name": "handguard_rfb_kel_tec_rfb_std", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_magpul_moe_ak_fde", + "ShortName": "handguard_ak_magpul_moe_ak_fde", + "Description": "handguard_ak_magpul_moe_ak_fde", + "Weight": 0.221, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_rfb_kel_tec_rfb_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5f3299142beb5b0b30768687", + "_parent": "5f2aa47a200e2c0ee46efa71", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f2aa493cd375f14e15eea72" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 16, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.018, + "CoolFactor": 1.053 + }, + "_proto": "57cff947245977638e6f2a19" + }, + "5c5db6302e2216000e5e47f0": { + "_id": "5c5db6302e2216000e5e47f0", + "_name": "handguard_mpx_midwest_10,5_inch_m_lok", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_mpx_lancer_oem_14_inch", + "ShortName": "handguard_mpx_lancer_oem_14_inch", + "Description": "handguard_mpx_lancer_oem_14_inch", + "Weight": 0.226, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_mpx_midwest_10,5_inch_m_lok.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5c5db6302e2216000e5e47f2", + "_parent": "5c5db6302e2216000e5e47f0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5c5db6302e2216000e5e47f3", + "_parent": "5c5db6302e2216000e5e47f0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5c5db6302e2216000e5e47f4", + "_parent": "5c5db6302e2216000e5e47f0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_003", + "_id": "5c5db6302e2216000e5e47f5", + "_parent": "5c5db6302e2216000e5e47f0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5c5db6302e2216000e5e47f7", + "_parent": "5c5db6302e2216000e5e47f0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be4895acfc400170e2dd5", + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "651a8e529829226ceb67c319", + "651a8bf3a8520e48047bf708" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5c5dbb612e22167712247c32", + "_parent": "5c5db6302e2216000e5e47f0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.964, + "CoolFactor": 1.044 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, "57cffd8224597763b03fc609": { "_id": "57cffd8224597763b03fc609", "_name": "handguard_ak_magpul_moe_ak_fde", @@ -106272,724 +107000,23 @@ }, "_proto": "5648b0744bdc2d363b8b4578" }, - "637ba19df7ca6372bf2613d7": { - "_id": "637ba19df7ca6372bf2613d7", - "_name": "handguard_sr2m_tochmash_std_blk", + "61712eae6c780c1e710c9a1d": { + "_id": "61712eae6c780c1e710c9a1d", + "_name": "handguard_417_hk_417_patrol_rail", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "Цевье Ижмех МР-153 Полимерное для МР-133", - "ShortName": "МР-133 Полимер", - "Description": "Стандартное цевье производства Ижмех выполненное из полимера для гладкоствольного ружья МР-153.", - "Weight": 0.12, + "Name": "handguard_416_hk_quad_rail_w_sight", + "ShortName": "handguard_416_hk_quad_rail_w_sight", + "Description": "handguard_416_hk_quad_rail_w_sight", + "Weight": 0.43, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_sr2m_tochmash_std_blk.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "637ba19df7ca6372bf2613d8", - "_parent": "637ba19df7ca6372bf2613d7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62ed1921b3608410ef5a2c04", - "62ed189fb3608410ef5a2bfc" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "637ba19df7ca6372bf2613d9", - "_parent": "637ba19df7ca6372bf2613d7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62ed1921b3608410ef5a2c04", - "62ed189fb3608410ef5a2bfc" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.022, - "CoolFactor": 0.981 - }, - "_proto": "55d45d3f4bdc2d972f8b456c" - }, - "5c59529a2e221602b177d160": { - "_id": "5c59529a2e221602b177d160", - "_name": "handguard_mpx_lancer_oem_14_inch", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_mpx_lancer_oem_14_inch", - "ShortName": "handguard_mpx_lancer_oem_14_inch", - "Description": "handguard_mpx_lancer_oem_14_inch", - "Weight": 0.144, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mpx_lancer_oem_14_inch.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5c59529a2e221602b177d162", - "_parent": "5c59529a2e221602b177d160", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5c59529a2e221602b177d163", - "_parent": "5c59529a2e221602b177d160", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5c59529a2e221602b177d164", - "_parent": "5c59529a2e221602b177d160", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "5c59529a2e221602b177d165", - "_parent": "5c59529a2e221602b177d160", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_004", - "_id": "5c5954702e2216398b5abdb8", - "_parent": "5c59529a2e221602b177d160", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5c59548d2e221602b21d773c", - "_parent": "5c59529a2e221602b177d160", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be4895acfc400170e2dd5", - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "651a8e529829226ceb67c319", - "651a8bf3a8520e48047bf708" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 12, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.025, - "CoolFactor": 1 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5a9d6d34a2750c00141e07da": { - "_id": "5a9d6d34a2750c00141e07da", - "_name": "handguard_ak_strike_industries_trax_2", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_strike_industries_trax_2", - "ShortName": "handguard_ak_strike_industries_trax_2", - "Description": "handguard_ak_strike_industries_trax_2", - "Weight": 0.26, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_strike_industries_trax_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5ac66d015acfc400180ae6e4", - "5ac66d725acfc43b321d4b60", - "5ac66d9b5acfc4001633997a", - "59984ab886f7743e98271174", - "59f9cabd86f7743a10721f46" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5a9d6d34a2750c00141e07dd", - "_parent": "5a9d6d34a2750c00141e07da", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5a9d6d34a2750c00141e07de", - "_parent": "5a9d6d34a2750c00141e07da", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5a9d6e00a2750c00164f6b06", - "_parent": "5a9d6d34a2750c00141e07da", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.966, - "CoolFactor": 1.02 - }, - "_proto": "5648b1504bdc2d9d488b4584" - }, - "5a9548c9159bd400133e97b3": { - "_id": "5a9548c9159bd400133e97b3", - "_name": "handguard_mp5_bt_tl_99_3x_nar", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_mp5_bt_tl_99_3x_nar", - "ShortName": "handguard_mp5_bt_tl_99_3x_nar", - "Description": "handguard_mp5_bt_tl_99_3x_nar", - "Weight": 0.278, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mp5_bt_tl_99_3x_nar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5a954924159bd400133e97b5", - "_parent": "5a9548c9159bd400133e97b3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5a954931159bd400160a65a2", - "_parent": "5a9548c9159bd400133e97b3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "5a95493e159bd42fda46a392", - "_parent": "5a9548c9159bd400133e97b3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.02, - "CoolFactor": 0.994 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "5b7bedd75acfc43d825283f9": { - "_id": "5b7bedd75acfc43d825283f9", - "_name": "handguard_fal_vltor_casv_fal", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", - "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Weight": 0.224, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_fal_vltor_casv_fal.bundle", + "path": "assets/content/items/mods/handguards/handguard_417_hk_417_patrol_rail.bundle", "rcid": "" }, "UsePrefab": { @@ -107036,15 +107063,47 @@ "Grids": [], "Slots": [ { - "_name": "mod_mount_000", - "_id": "5b7bedd75acfc43d825283fb", - "_parent": "5b7bedd75acfc43d825283f9", + "_name": "mod_foregrip", + "_id": "61712eae6c780c1e710c9a1f", + "_parent": "61712eae6c780c1e710c9a1d", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5b7be46e5acfc400170e2dcf" + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "5a7dbfc1159bd40016548fde", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" ] } ] @@ -107054,16 +107113,15 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_mount_001", - "_id": "5b7bedd75acfc43d825283fc", - "_parent": "5b7bedd75acfc43d825283f9", + "_name": "mod_scope", + "_id": "61712eae6c780c1e710c9a20", + "_parent": "61712eae6c780c1e710c9a1d", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5b7be4575acfc400161d0832", - "5b7be4645acfc400170e2dcc" + "5649a2464bdc2d91118b45a8" ] } ] @@ -107073,47 +107131,9 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_mount_002", - "_id": "5b7bedd75acfc43d825283fd", - "_parent": "5b7bedd75acfc43d825283f9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be4575acfc400161d0832", - "5b7be4645acfc400170e2dcc" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "5b7bedd75acfc43d825283fe", - "_parent": "5b7bedd75acfc43d825283f9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be4575acfc400161d0832", - "5b7be4645acfc400170e2dcc" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5b7bedd75acfc43d825283ff", - "_parent": "5b7bedd75acfc43d825283f9", + "_name": "mod_tactical_000", + "_id": "61712eae6c780c1e710c9a21", + "_parent": "61712eae6c780c1e710c9a1d", "_props": { "filters": [ { @@ -107136,24 +107156,74 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_scope", - "_id": "5b7bedd75acfc43d82528400", - "_parent": "5b7bedd75acfc43d825283f9", + "_name": "mod_tactical_001", + "_id": "61712eae6c780c1e710c9a22", + "_parent": "61712eae6c780c1e710c9a1d", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511" + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "61712eae6c780c1e710c9a23", + "_parent": "61712eae6c780c1e710c9a1d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" ] } ] @@ -107167,10 +107237,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -3, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 10, + "Ergonomics": 4, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -107181,11 +107251,178 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 0.994, - "CoolFactor": 1.02 + "HeatFactor": 1, + "CoolFactor": 1.056 }, "_proto": "55d459824bdc2d892f8b4573" }, + "5cbda392ae92155f3c17c39f": { + "_id": "5cbda392ae92155f3c17c39f", + "_name": "handguard_ak_izhmash_ak100_rail_plastic", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_izhmash_ak100_rail_plastic", + "ShortName": "handguard_ak_izhmash_ak100_rail_plastic", + "Description": "handguard_ak_izhmash_ak100_rail_plastic", + "Weight": 0.27, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_izhmash_ak100_rail_plastic.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5cbda485ae9215001039956b", + "_parent": "5cbda392ae92155f3c17c39f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5cbda4bfae9215000d50e06d", + "_parent": "5cbda392ae92155f3c17c39f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.045, + "CoolFactor": 0.962 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, "6389f1dfc879ce63f72fc43e": { "_id": "6389f1dfc879ce63f72fc43e", "_name": "handguard_ak_cnc_guns_ov_gp", @@ -107443,23 +107680,23 @@ }, "_proto": "5648b1504bdc2d9d488b4584" }, - "5894a42086f77426d2590762": { - "_id": "5894a42086f77426d2590762", - "_name": "handguard_mpx_sig_mpx_gen1_handguard", + "5a9548c9159bd400133e97b3": { + "_id": "5a9548c9159bd400133e97b3", + "_name": "handguard_mp5_bt_tl_99_3x_nar", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_mpx_sig_mpx_gen1_handguard", - "ShortName": "handguard_mpx_sig_mpx_gen1_handguard", - "Description": "handguard_mpx_sig_mpx_gen1_handguard", - "Weight": 0.302, + "Name": "handguard_mp5_bt_tl_99_3x_nar", + "ShortName": "handguard_mp5_bt_tl_99_3x_nar", + "Description": "handguard_mp5_bt_tl_99_3x_nar", + "Weight": 0.278, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mpx_sig_mpx_gen1_handguard.bundle", + "path": "assets/content/items/mods/handguards/handguard_mp5_bt_tl_99_3x_nar.bundle", "rcid": "" }, "UsePrefab": { @@ -107477,11 +107714,11 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 5, + "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 1, + "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -107506,22 +107743,46 @@ "Grids": [], "Slots": [ { - "_name": "mod_sight_front", - "_id": "5894a4b386f77427140b8345", - "_parent": "5894a42086f77426d2590762", + "_name": "mod_foregrip", + "_id": "5a954924159bd400133e97b5", + "_parent": "5a9548c9159bd400133e97b3", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" ] } ] @@ -107531,15 +107792,35 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_mount_000", - "_id": "58a5760886f77470e446628a", - "_parent": "5894a42086f77426d2590762", + "_name": "mod_tactical_000", + "_id": "5a954931159bd400160a65a2", + "_parent": "5a9548c9159bd400133e97b3", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "58a56f8d86f774651579314c" + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" ] } ] @@ -107549,33 +107830,35 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_mount_001", - "_id": "58a5761486f7746f8a5389ed", - "_parent": "5894a42086f77426d2590762", + "_name": "mod_tactical_001", + "_id": "5a95493e159bd42fda46a392", + "_parent": "5a9548c9159bd400133e97b3", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "58a5c12e86f7745d585a2b9e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "58d9119686f774372438568c", - "_parent": "5894a42086f77426d2590762", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "58a56f8d86f774651579314c" + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" ] } ] @@ -107592,9 +107875,275 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 7, + "Ergonomics": 6, "Velocity": 0, "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.02, + "CoolFactor": 0.994 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, + "5648ae314bdc2d3d1c8b457f": { + "_id": "5648ae314bdc2d3d1c8b457f", + "_name": "handguard_ak_caa_quad_rail_polymer", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье CAA RS47 для AK и совместимых", + "ShortName": "CAA RS47", + "Description": "Цевье RS47 от компании Command Arms из легкого полимера, подходит для большинства винтовок и карабинов выполненных на базе АК. Оснащено двумя длинными и двумя короткими направляющими для крепления доп. оборудования.", + "Weight": 0.22, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_caa_quad_rail_polymer.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5649d4c04bdc2d3d1c8b4586", + "_parent": "5648ae314bdc2d3d1c8b457f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5649d5094bdc2d16268b457d", + "_parent": "5648ae314bdc2d3d1c8b457f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b2c9c4a282000c5a9511", + "644a3df63b0b6f03e101e065", + "64785e7c19d732620e045e15", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5649d5494bdc2d1b2b8b458b", + "_parent": "5648ae314bdc2d3d1c8b457f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "5649d5534bdc2d9d198b4569", + "_parent": "5648ae314bdc2d3d1c8b457f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": true, "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, @@ -107603,11 +108152,96 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 0.976, - "CoolFactor": 1.016 + "HeatFactor": 1.032, + "CoolFactor": 1.035 }, "_proto": "55d459824bdc2d892f8b4573" }, + "6513f05a94c72326990a3866": { + "_id": "6513f05a94c72326990a3866", + "_name": "handguard_rpd_zid_std_wood", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье пполимерное для AK-74", + "ShortName": "AK-74 пл.ц.", + "Description": "Полимерное цевье для автомата АК-74 производства Ижмаш, пришедшее на смену классическому деревянному.", + "Weight": 0.25, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_rpd_zid_std_wood.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.055, + "CoolFactor": 0.962 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, "5648b0744bdc2d363b8b4578": { "_id": "5648b0744bdc2d363b8b4578", "_name": "handguard_ak_izhmash_ak74_std_wood", @@ -107693,6 +108327,2161 @@ }, "_proto": "5648ae314bdc2d3d1c8b457f" }, + "634f08a21f9f536910079b5a": { + "_id": "634f08a21f9f536910079b5a", + "_name": "handguard_sks_toz_sks_std_wood", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_sks_molot_op_sks_std", + "ShortName": "handguard_sks_molot_op_sks_std", + "Description": "handguard_sks_molot_op_sks_std", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_sks_toz_sks_std_wood.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.008, + "CoolFactor": 0.9885 + }, + "_proto": "5648ae314bdc2d3d1c8b457f" + }, + "57cff947245977638e6f2a19": { + "_id": "57cff947245977638e6f2a19", + "_name": "handguard_ak_magpul_moe_ak_blk", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_magpul_moe_ak_blk", + "ShortName": "handguard_ak_magpul_moe_ak_blk", + "Description": "handguard_ak_magpul_moe_ak_blk", + "Weight": 0.221, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_magpul_moe_ak_blk.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_003", + "_id": "57cffb3524597763887ef4c0", + "_parent": "57cff947245977638e6f2a19", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8e529829226ceb67c319", + "651a8bf3a8520e48047bf708" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5b7d23735acfc400196d5845", + "_parent": "57cff947245977638e6f2a19", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.053, + "CoolFactor": 1.018 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, + "595cfa8b86f77427437e845b": { + "_id": "595cfa8b86f77427437e845b", + "_name": "handguard_ar15_war_sport_lvoa_c_blk", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ar15_war_sport_lvoa_s_blk", + "ShortName": "handguard_ar15_war_sport_lvoa_s_blk", + "Description": "handguard_ar15_war_sport_lvoa_s_blk", + "Weight": 0.58, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_war_sport_lvoa_c_blk.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a9fbb84a2750c00137fa685", + "55d35ee94bdc2d61338b4568" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "595cfa8b86f77427437e845c", + "_parent": "595cfa8b86f77427437e845b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "595cfa8b86f77427437e845d", + "_parent": "595cfa8b86f77427437e845b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "59e0c03b86f774156f04ce87", + "_parent": "595cfa8b86f77427437e845b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59e0bed186f774156f04ce84" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "59e0c04386f7742d48765bd5", + "_parent": "595cfa8b86f77427437e845b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_003", + "_id": "59e0c04986f774157255cc33", + "_parent": "595cfa8b86f77427437e845b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_004", + "_id": "59e0c05086f774156f04ce88", + "_parent": "595cfa8b86f77427437e845b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5c164e3d2e221602b5428c3d", + "_parent": "595cfa8b86f77427437e845b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.942, + "CoolFactor": 1.06 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5e848d51e4dbc5266a4ec63b": { + "_id": "5e848d51e4dbc5266a4ec63b", + "_name": "handguard_ks23_toz_ks23m_std", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_870_remington_12g_speedfeed_short", + "ShortName": "handguard_870_remington_12g_speedfeed_short", + "Description": "handguard_870_remington_12g_speedfeed_short", + "Weight": 0.58, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ks23_toz_ks23m_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.018, + "CoolFactor": 0.981 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "638f2003bbd47aeb9e0ff637": { + "_id": "638f2003bbd47aeb9e0ff637", + "_name": "handguard_ar15_dd_ris_ii_12,25_lower", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Daniel Defence RIS II 9.5 для AR-15 и совместимых", + "ShortName": "RIS II 9.5", + "Description": "Цевье Daniel Defence RIS II 9.5. Является частью программы SOPMOD Block II для замены штатного цевья карабина M4CQBR или Mk18 в подразделениях US SOCOM. Выполнено из легкого и прочного авиационного алюминия. Снабжено 4-мя направляющими для крепления дополнительного оборудования. Данный вариант цевья не совместим с подствольным гранатометом М203.", + "Weight": 0.15, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_dd_ris_ii_12,25_lower.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "638f2003bbd47aeb9e0ff638", + "_parent": "638f2003bbd47aeb9e0ff637", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "5a7dbfc1159bd40016548fde", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_003", + "_id": "638f2003bbd47aeb9e0ff63e", + "_parent": "638f2003bbd47aeb9e0ff637", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "626becf9582c3e319310b837", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.975, + "CoolFactor": 1.033 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5a788031c585673f2b5c1c79": { + "_id": "5a788031c585673f2b5c1c79", + "_name": "handguard_870_fab_defence_pr870", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Ижмех МР-133 Бук для МР-133", + "ShortName": "МР-133 Бук", + "Description": "Стандартное цевье производства Ижмех выполненное из бука для гладкоствольного ружья МР-133.", + "Weight": 0.8, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_870_fab_defence_pr870.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5a788896c5856700186c5b03", + "_parent": "5a788031c585673f2b5c1c79", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "648067db042be0705c0b3009", + "64807a29e5ffe165600abc97", + "64806bdd26c80811d408d37a", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5a78891dc5856700160166b9", + "_parent": "5a788031c585673f2b5c1c79", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5a788c3bc5856700177b0baa", + "_parent": "5a788031c585673f2b5c1c79", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.022, + "CoolFactor": 0.989 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "56deed6ed2720b4c698b4583": { + "_id": "56deed6ed2720b4c698b4583", + "_name": "handguard_mr153_izhmeh_polymer", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Ижмех МР-153 Полимерное для МР-133", + "ShortName": "МР-133 Полимер", + "Description": "Стандартное цевье производства Ижмех выполненное из полимера для гладкоствольного ружья МР-153.", + "Weight": 0.31, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_mr153_izhmeh_polymer.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.022, + "CoolFactor": 0.981 + }, + "_proto": "55d45d3f4bdc2d972f8b456c" + }, + "5a9d56c8a2750c0032157146": { + "_id": "5a9d56c8a2750c0032157146", + "_name": "handguard_ak_strike_industries_trax_1", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_strike_industries_trax_1", + "ShortName": "handguard_ak_strike_industries_trax_1", + "Description": "handguard_ak_strike_industries_trax_1", + "Weight": 0.26, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_strike_industries_trax_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5a9d56c8a2750c0032157149", + "_parent": "5a9d56c8a2750c0032157146", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "644a3df63b0b6f03e101e065", + "64785e7c19d732620e045e15", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5a9d5769a2750c00156aad2f", + "_parent": "5a9d56c8a2750c0032157146", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "615d8fd3290d254f5e6b2edc", + "5fc0f9b5d724d907e2077d82", + "5fc0f9cbd6fa9c00c571bb90", + "5a9d6d13a2750c00164f6b03", + "5a9d6d21a2750c00137fa649", + "59e0bed186f774156f04ce84" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5a9d57b4a2750c00156aad30", + "_parent": "5a9d56c8a2750c0032157146", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.966, + "CoolFactor": 1.02 + }, + "_proto": "5648b1504bdc2d9d488b4584" + }, + "5c6d10e82e221601da357b07": { + "_id": "5c6d10e82e221601da357b07", + "_name": "handguard_416_hk_mrs_keymod_14_inch", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_416_hk_mrs_keymod_14_inch", + "ShortName": "handguard_416_hk_mrs_keymod_14_inch", + "Description": "handguard_416_hk_mrs_keymod_14_inch", + "Weight": 0.39, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_416_hk_mrs_keymod_14_inch.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5c6d10e82e221601da357b09", + "_parent": "5c6d10e82e221601da357b07", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5c6d10e82e221601da357b0a", + "_parent": "5c6d10e82e221601da357b07", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5c6d10e82e221601da357b0b", + "_parent": "5c6d10e82e221601da357b07", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_003", + "_id": "5c6d10e82e221601da357b0c", + "_parent": "5c6d10e82e221601da357b07", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_004", + "_id": "5c6d10e82e221601da357b0d", + "_parent": "5c6d10e82e221601da357b07", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5c6d16932e221601da357c10", + "_parent": "5c6d10e82e221601da357b07", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5c6d169c2e2216000f2004ee", + "_parent": "5c6d10e82e221601da357b07", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5c6d16a32e2216001219b4ca", + "_parent": "5c6d10e82e221601da357b07", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5c6d17862e221644fc6307fd", + "_parent": "5c6d10e82e221601da357b07", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "615d8fd3290d254f5e6b2edc", + "5fc0f9b5d724d907e2077d82", + "5fc0f9cbd6fa9c00c571bb90", + "5a9d6d13a2750c00164f6b03", + "59e0bed186f774156f04ce84" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.977, + "CoolFactor": 1.008 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "61f7b85367ddd414173fdb36": { + "_id": "61f7b85367ddd414173fdb36", + "_name": "handguard_mp18_izhmash_wood", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_mp5_hk_sd", + "ShortName": "handguard_mp5_hk_sd", + "Description": "handguard_mp5_hk_sd", + "Weight": 0.182, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_mp18_izhmash_wood.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.075, + "CoolFactor": 0.924 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, + "5c59529a2e221602b177d160": { + "_id": "5c59529a2e221602b177d160", + "_name": "handguard_mpx_lancer_oem_14_inch", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_mpx_lancer_oem_14_inch", + "ShortName": "handguard_mpx_lancer_oem_14_inch", + "Description": "handguard_mpx_lancer_oem_14_inch", + "Weight": 0.144, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_mpx_lancer_oem_14_inch.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5c59529a2e221602b177d162", + "_parent": "5c59529a2e221602b177d160", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5c59529a2e221602b177d163", + "_parent": "5c59529a2e221602b177d160", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5c59529a2e221602b177d164", + "_parent": "5c59529a2e221602b177d160", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_003", + "_id": "5c59529a2e221602b177d165", + "_parent": "5c59529a2e221602b177d160", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_004", + "_id": "5c5954702e2216398b5abdb8", + "_parent": "5c59529a2e221602b177d160", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5c59548d2e221602b21d773c", + "_parent": "5c59529a2e221602b177d160", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be4895acfc400170e2dd5", + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "651a8e529829226ceb67c319", + "651a8bf3a8520e48047bf708" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 12, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.025, + "CoolFactor": 1 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5b7bee755acfc400196d5383": { + "_id": "5b7bee755acfc400196d5383", + "_name": "handguard_fal_vltor_casv_fas", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", + "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Weight": 0.232, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_fal_vltor_casv_fas.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5b7bee755acfc400196d5385", + "_parent": "5b7bee755acfc400196d5383", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be46e5acfc400170e2dcf" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5b7bee755acfc400196d5386", + "_parent": "5b7bee755acfc400196d5383", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be4575acfc400161d0832", + "5b7be4645acfc400170e2dcc" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5b7bee755acfc400196d5387", + "_parent": "5b7bee755acfc400196d5383", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be4575acfc400161d0832", + "5b7be4645acfc400170e2dcc" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5b7bee755acfc400196d538a", + "_parent": "5b7bee755acfc400196d5383", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 14, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.99, + "CoolFactor": 1.012 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5cde7afdd7f00c000d36b89d": { + "_id": "5cde7afdd7f00c000d36b89d", + "_name": "handguard_m700_abarms_mrs_mod_x_gen_3", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_m700_abarms_mrs_mod_x_gen_3", + "ShortName": "handguard_m700_abarms_mrs_mod_x_gen_3", + "Description": "handguard_m700_abarms_mrs_mod_x_gen_3", + "Weight": 0.39, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_m700_abarms_mrs_mod_x_gen_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5bfebc530db834001d23eb65" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5cde7afdd7f00c000d36b89f", + "_parent": "5cde7afdd7f00c000d36b89d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f4242aee3103f1c44b7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5cde7afdd7f00c000d36b8a0", + "_parent": "5cde7afdd7f00c000d36b89d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5cde7afdd7f00c000d36b8a1", + "_parent": "5cde7afdd7f00c000d36b89d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5cde7afdd7f00c000d36b8a4", + "_parent": "5cde7afdd7f00c000d36b89d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5cde7afdd7f00c000d36b8a6", + "_parent": "5cde7afdd7f00c000d36b89d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5cde7afdd7f00c000d36b8a7", + "_parent": "5cde7afdd7f00c000d36b89d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "615d8fd3290d254f5e6b2edc", + "5fc0f9b5d724d907e2077d82", + "5fc0f9cbd6fa9c00c571bb90", + "5a9d6d13a2750c00164f6b03", + "59e0bed186f774156f04ce84" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.965, + "CoolFactor": 1.008 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, "5e5699df2161e06ac158df6f": { "_id": "5e5699df2161e06ac158df6f", "_name": "handguard_svd_caa_xrs_drg", @@ -108202,414 +110991,23 @@ }, "_proto": "5648b0744bdc2d363b8b4578" }, - "5b7bebc85acfc43bca706666": { - "_id": "5b7bebc85acfc43bca706666", - "_name": "handguard_fal_aim_sport_universal_m_lok", + "5c471c6c2e221602b66cd9ae": { + "_id": "5c471c6c2e221602b66cd9ae", + "_name": "handguard_svd_izhmash_svd_s_std", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", - "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Weight": 0.269, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_fal_aim_sport_universal_m_lok.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5b7bebc85acfc43bca706668", - "_parent": "5b7bebc85acfc43bca706666", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5b7bebc85acfc43bca706669", - "_parent": "5b7bebc85acfc43bca706666", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5b7bebc85acfc43bca70666a", - "_parent": "5b7bebc85acfc43bca706666", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "5b7bebc85acfc43bca70666b", - "_parent": "5b7bebc85acfc43bca706666", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5b7becb35acfc4001876c21b", - "_parent": "5b7bebc85acfc43bca706666", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5b7becbc5acfc43d825283f8", - "_parent": "5b7bebc85acfc43bca706666", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.028, - "CoolFactor": 1.024 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "637f57a68d137b27f70c4968": { - "_id": "637f57a68d137b27f70c4968", - "_name": "handguard_ar15_colt_m4_length_std_lower", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar15_colt_m4_length_std", - "ShortName": "handguard_ar15_colt_m4_length_std", - "Description": "handguard_ar15_colt_m4_length_std", - "Weight": 0.129, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_colt_m4_length_std_lower.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.029, - "CoolFactor": 0.986 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "634f03d40384a3ba4f06f874": { - "_id": "634f03d40384a3ba4f06f874", - "_name": "handguard_sks_molot_op_sks_std", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_sks_molot_op_sks_std", - "ShortName": "handguard_sks_molot_op_sks_std", - "Description": "handguard_sks_molot_op_sks_std", - "Weight": 0.1, + "Name": "Цевье пполимерное для AK-74", + "ShortName": "AK-74 пл.ц.", + "Description": "Полимерное цевье для автомата АК-74 производства Ижмаш, пришедшее на смену классическому деревянному.", + "Weight": 0.25, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_sks_molot_op_sks_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.008, - "CoolFactor": 0.9885 - }, - "_proto": "5648ae314bdc2d3d1c8b457f" - }, - "5d2f259b48f0355a844acd74": { - "_id": "5d2f259b48f0355a844acd74", - "_name": "handguard_mp5k_hk_kurtz_grip_std", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_mp5_hk_wide_tropical", - "ShortName": "handguard_mp5_hk_wide_tropical", - "Description": "handguard_mp5_hk_wide_tropical", - "Weight": 0.241, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mp5k_hk_kurtz_grip_std.bundle", + "path": "assets/content/items/mods/handguards/handguard_svd_izhmash_svd_s_std.bundle", "rcid": "" }, "UsePrefab": { @@ -108659,10 +111057,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -3, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 12, + "Ergonomics": 6, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -108673,903 +111071,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.042, - "CoolFactor": 0.961 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "5b80242286f77429445e0b47": { - "_id": "5b80242286f77429445e0b47", - "_name": "handguard_ak_hexagon_ak_red", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_hexagon_ak", - "ShortName": "handguard_ak_hexagon_ak", - "Description": "handguard_ak_hexagon_ak", - "Weight": 0.167, - "BackgroundColor": "violet", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_hexagon_ak_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "615d8f8567085e45ef1409ca", - "5ac66d015acfc400180ae6e4", - "5ac66d725acfc43b321d4b60", - "5ac66d9b5acfc4001633997a" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5b80242286f77429445e0b49", - "_parent": "5b80242286f77429445e0b47", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b800ebc86f774394e230a90", - "5b8403a086f7747ff856f4e2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5b80242286f77429445e0b4a", - "_parent": "5b80242286f77429445e0b47", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b800ed086f7747baf6e2f9e", - "5b84038986f774774913b0c1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5b80242286f77429445e0b4b", - "_parent": "5b80242286f77429445e0b47", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b800ed086f7747baf6e2f9e", - "5b84038986f774774913b0c1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "5b80242286f77429445e0b4c", - "_parent": "5b80242286f77429445e0b47", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b800ed086f7747baf6e2f9e", - "5b84038986f774774913b0c1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 15, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.952, - "CoolFactor": 1.092 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "5c9a25172e2216000f20314e": { - "_id": "5c9a25172e2216000f20314e", - "_name": "handguard_ar15_dd_ris_ii_12,25", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Daniel Defence RIS II 9.5 для AR-15 и совместимых", - "ShortName": "RIS II 9.5", - "Description": "Цевье Daniel Defence RIS II 9.5. Является частью программы SOPMOD Block II для замены штатного цевья карабина M4CQBR или Mk18 в подразделениях US SOCOM. Выполнено из легкого и прочного авиационного алюминия. Снабжено 4-мя направляющими для крепления дополнительного оборудования. Данный вариант цевья не совместим с подствольным гранатометом М203.", - "Weight": 0.352, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_dd_ris_ii_12,25.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a34fbadc4a28200741e230a", - "5ae30e795acfc408fb139a0b", - "56ea8d2fd2720b7c698b4570", - "55d35ee94bdc2d61338b4568" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5c9a25172e2216000f203151", - "_parent": "5c9a25172e2216000f20314e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "5c9a25172e2216000f203152", - "_parent": "5c9a25172e2216000f20314e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "5c9a25172e2216000f203153", - "_parent": "5c9a25172e2216000f20314e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5c9a25172e2216000f203154", - "_parent": "5c9a25172e2216000f20314e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5c9a25172e2216000f203155", - "_parent": "5c9a25172e2216000f20314e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "6396a8fdfeadbf21a603539b", - "_parent": "5c9a25172e2216000f20314e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "638f2003bbd47aeb9e0ff637" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.968, - "CoolFactor": 1.044 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "56deed6ed2720b4c698b4583": { - "_id": "56deed6ed2720b4c698b4583", - "_name": "handguard_mr153_izhmeh_polymer", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Ижмех МР-153 Полимерное для МР-133", - "ShortName": "МР-133 Полимер", - "Description": "Стандартное цевье производства Ижмех выполненное из полимера для гладкоствольного ружья МР-153.", - "Weight": 0.31, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mr153_izhmeh_polymer.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.022, - "CoolFactor": 0.981 - }, - "_proto": "55d45d3f4bdc2d972f8b456c" - }, - "5d00e0cbd7ad1a6c6566a42d": { - "_id": "5d00e0cbd7ad1a6c6566a42d", - "_name": "handguard_ar15_strike_industries_viper", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Weight": 0.077, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_strike_industries_viper.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c0e2f94d174af029f650d56" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5d00e0cbd7ad1a6c6566a42f", - "_parent": "5d00e0cbd7ad1a6c6566a42d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5d00e0cbd7ad1a6c6566a430", - "_parent": "5d00e0cbd7ad1a6c6566a42d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "63969cf819971040b005049e", - "_parent": "5d00e0cbd7ad1a6c6566a42d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "637f589af5ef8c33840d36d3", - "63969c9019971040b005049b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.008, - "CoolFactor": 1.031 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5cde7afdd7f00c000d36b89d": { - "_id": "5cde7afdd7f00c000d36b89d", - "_name": "handguard_m700_abarms_mrs_mod_x_gen_3", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_m700_abarms_mrs_mod_x_gen_3", - "ShortName": "handguard_m700_abarms_mrs_mod_x_gen_3", - "Description": "handguard_m700_abarms_mrs_mod_x_gen_3", - "Weight": 0.39, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_m700_abarms_mrs_mod_x_gen_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5bfebc530db834001d23eb65" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5cde7afdd7f00c000d36b89f", - "_parent": "5cde7afdd7f00c000d36b89d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f4242aee3103f1c44b7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5cde7afdd7f00c000d36b8a0", - "_parent": "5cde7afdd7f00c000d36b89d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5cde7afdd7f00c000d36b8a1", - "_parent": "5cde7afdd7f00c000d36b89d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5cde7afdd7f00c000d36b8a4", - "_parent": "5cde7afdd7f00c000d36b89d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5cde7afdd7f00c000d36b8a6", - "_parent": "5cde7afdd7f00c000d36b89d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5cde7afdd7f00c000d36b8a7", - "_parent": "5cde7afdd7f00c000d36b89d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "615d8fd3290d254f5e6b2edc", - "5fc0f9b5d724d907e2077d82", - "5fc0f9cbd6fa9c00c571bb90", - "5a9d6d13a2750c00164f6b03", - "59e0bed186f774156f04ce84" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.965, + "HeatFactor": 0.994, "CoolFactor": 1.008 }, - "_proto": "55d459824bdc2d892f8b4573" + "_proto": "5648b0744bdc2d363b8b4578" }, - "5a9d56c8a2750c0032157146": { - "_id": "5a9d56c8a2750c0032157146", - "_name": "handguard_ak_strike_industries_trax_1", + "59fb375986f7741b681b81a6": { + "_id": "59fb375986f7741b681b81a6", + "_name": "handguard_ak_krebs_ufm_akm_long", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_ak_strike_industries_trax_1", - "ShortName": "handguard_ak_strike_industries_trax_1", - "Description": "handguard_ak_strike_industries_trax_1", + "Name": "handguard_ak_krebs_ufm_akm_long", + "ShortName": "handguard_ak_krebs_ufm_akm_long", + "Description": "handguard_ak_krebs_ufm_akm_long", "Weight": 0.26, "BackgroundColor": "blue", - "Width": 1, + "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_strike_industries_trax_1.bundle", + "path": "assets/content/items/mods/handguards/handguard_ak_krebs_ufm_akm_long.bundle", "rcid": "" }, "UsePrefab": { @@ -109586,7 +111109,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, + "LootExperience": 10, "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, @@ -109617,8 +111140,8 @@ "Slots": [ { "_name": "mod_scope", - "_id": "5a9d56c8a2750c0032157149", - "_parent": "5a9d56c8a2750c0032157146", + "_id": "5a01b35c86f7745084256bb5", + "_parent": "59fb375986f7741b681b81a6", "_props": { "filters": [ { @@ -109640,12 +111163,6 @@ "59f9d81586f7744c7506ee62", "570fd721d2720bc5458b4596", "57ae0171245977343c27bfcf", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", "58d39d3d86f77445bb794ae7", "616554fe50224f204c1da2aa", "5c7d55f52e221644f31bff6a", @@ -109658,7 +111175,6 @@ "5b31163c5acfc400153b71cb", "5a33b652c4a28232996e407c", "5a33b2c9c4a282000c5a9511", - "644a3df63b0b6f03e101e065", "64785e7c19d732620e045e15", "655f13e0a246670fb0373245" ] @@ -109669,10 +111185,34 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, + { + "_name": "mod_tactical", + "_id": "5a01b37a86f77450561fda0d", + "_parent": "59fb375986f7741b681b81a6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, { "_name": "mod_mount_000", - "_id": "5a9d5769a2750c00156aad2f", - "_parent": "5a9d56c8a2750c0032157146", + "_id": "5a01b38d86f774504b2bebce", + "_parent": "59fb375986f7741b681b81a6", "_props": { "filters": [ { @@ -109682,7 +111222,6 @@ "5fc0f9b5d724d907e2077d82", "5fc0f9cbd6fa9c00c571bb90", "5a9d6d13a2750c00164f6b03", - "5a9d6d21a2750c00137fa649", "59e0bed186f774156f04ce84" ] } @@ -109692,10 +111231,52 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, + { + "_name": "mod_mount_001", + "_id": "5a01b39786f77450561fda0e", + "_parent": "59fb375986f7741b681b81a6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, { "_name": "mod_mount_002", - "_id": "5a9d57b4a2750c00156aad30", - "_parent": "5a9d56c8a2750c0032157146", + "_id": "5a01b3a386f774665a2eea7d", + "_parent": "59fb375986f7741b681b81a6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_003", + "_id": "5a01b3ae86f7742a0c7a0244", + "_parent": "59fb375986f7741b681b81a6", "_props": { "filters": [ { @@ -109718,12 +111299,12 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -2, + "Recoil": -3, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 6, + "Ergonomics": 11, "Velocity": 0, - "RaidModdable": true, + "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -109732,113 +111313,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 0.966, - "CoolFactor": 1.02 - }, - "_proto": "5648b1504bdc2d9d488b4584" - }, - "634f08a21f9f536910079b5a": { - "_id": "634f08a21f9f536910079b5a", - "_name": "handguard_sks_toz_sks_std_wood", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_sks_molot_op_sks_std", - "ShortName": "handguard_sks_molot_op_sks_std", - "Description": "handguard_sks_molot_op_sks_std", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_sks_toz_sks_std_wood.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.008, - "CoolFactor": 0.9885 + "HeatFactor": 0.943, + "CoolFactor": 1.04 }, "_proto": "5648ae314bdc2d3d1c8b457f" }, - "5d4aaa73a4b9365392071175": { - "_id": "5d4aaa73a4b9365392071175", - "_name": "handguard_ak_tdi_akm_l_gld", + "57ffa9f4245977728561e844": { + "_id": "57ffa9f4245977728561e844", + "_name": "handguard_aks74u_zenit_b11", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_ak_tdi_akm_l", - "ShortName": "handguard_ak_tdi_akm_l", - "Description": "handguard_ak_tdi_akm_l", - "Weight": 0.221, + "Name": "handguard_aks74u_zenit_b11", + "ShortName": "handguard_aks74u_zenit_b11", + "Description": "handguard_aks74u_zenit_b11", + "Weight": 0.15, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_tdi_akm_l_gld.bundle", + "path": "assets/content/items/mods/handguards/handguard_aks74u_zenit_b11.bundle", "rcid": "" }, "UsePrefab": { @@ -109886,137 +111382,8 @@ "Slots": [ { "_name": "mod_foregrip", - "_id": "5d4aaa73a4b9365392071177", - "_parent": "5d4aaa73a4b9365392071175", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5d4aaa73a4b9365392071179", - "_parent": "5d4aaa73a4b9365392071175", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.986, - "CoolFactor": 1.032 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "6396aaa9a52ace83df0840ab": { - "_id": "6396aaa9a52ace83df0840ab", - "_name": "handguard_ar15_dd_ris_ii_9,5_lower_blk", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Daniel Defence RIS II 9.5 для AR-15 и совместимых", - "ShortName": "RIS II 9.5", - "Description": "Цевье Daniel Defence RIS II 9.5. Является частью программы SOPMOD Block II для замены штатного цевья карабина M4CQBR или Mk18 в подразделениях US SOCOM. Выполнено из легкого и прочного авиационного алюминия. Снабжено 4-мя направляющими для крепления дополнительного оборудования. Данный вариант цевья не совместим с подствольным гранатометом М203.", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_dd_ris_ii_9,5_lower_blk.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "6396aaa9a52ace83df0840ac", - "_parent": "6396aaa9a52ace83df0840ab", + "_id": "57ffad2224597779db60ceb4", + "_parent": "57ffa9f4245977728561e844", "_props": { "filters": [ { @@ -110025,7 +111392,6 @@ "5c7fc87d2e221644f31c0298", "5cda9bcfd7f00c0c0b53e900", "59f8a37386f7747af3328f06", - "5a7dbfc1159bd40016548fde", "619386379fb0c665d5490dbe", "5c87ca002e221600114cb150", "588226d124597767ad33f787", @@ -110062,128 +111428,38 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.992, - "CoolFactor": 1.012 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "595cf16b86f77427440c32e2": { - "_id": "595cf16b86f77427440c32e2", - "_name": "handguard_ar15_war_sport_lvoa_s_blk", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar15_war_sport_lvoa_s_blk", - "ShortName": "handguard_ar15_war_sport_lvoa_s_blk", - "Description": "handguard_ar15_war_sport_lvoa_s_blk", - "Weight": 0.5, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_war_sport_lvoa_s_blk.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "595cf16b86f77427440c32e4", - "_parent": "595cf16b86f77427440c32e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_tactical", - "_id": "595cf16b86f77427440c32e8", - "_parent": "595cf16b86f77427440c32e2", + "_name": "mod_tactical_000", + "_id": "57ffad2e24597779f33d0f38", + "_parent": "57ffa9f4245977728561e844", "_props": { "filters": [ { "Shift": 0, "Filter": [ + "5a800961159bd4315e3a1657", "57fd23e32459772d0805bcf1", "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", "5a7b483fe899ef0016170d15", "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" + "57d17e212459775a1179a0f5", + "57ffaea724597779f52b3a4d", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" ] } ] @@ -110193,344 +111469,35 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_mount_000", - "_id": "59e0bf6986f774156f04ce86", - "_parent": "595cf16b86f77427440c32e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59e0bed186f774156f04ce84" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "59e0bfb886f7742d48765bd4", - "_parent": "595cf16b86f77427440c32e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "59e0bfbf86f774157255cc32", - "_parent": "595cf16b86f77427440c32e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_004", - "_id": "59e0bfc686f77415701de392", - "_parent": "595cf16b86f77427440c32e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5c164e7d2e221602b3136aba", - "_parent": "595cf16b86f77427440c32e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.95, - "CoolFactor": 1.02 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5c6d11072e2216000e69d2e4": { - "_id": "5c6d11072e2216000e69d2e4", - "_name": "handguard_416_midwest_m_lok_13,5_inch", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", - "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Weight": 0.37, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_416_midwest_m_lok_13,5_inch.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c6d85e02e22165df16b81f4", - "5bb20d92d4351e00853263eb", - "5bb20d9cd4351e00334c9d8a" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5c6d11072e2216000e69d2e6", - "_parent": "5c6d11072e2216000e69d2e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5c6d11072e2216000e69d2e7", - "_parent": "5c6d11072e2216000e69d2e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5c6d11072e2216000e69d2e8", - "_parent": "5c6d11072e2216000e69d2e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5c6d11072e2216000e69d2ea", - "_parent": "5c6d11072e2216000e69d2e4", + "_name": "mod_tactical_001", + "_id": "57ffad5624597779f63b6528", + "_parent": "57ffa9f4245977728561e844", "_props": { "filters": [ { "Shift": 0, "Filter": [ + "5a800961159bd4315e3a1657", "57fd23e32459772d0805bcf1", "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", "5a7b483fe899ef0016170d15", "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5c6d11072e2216000e69d2eb", - "_parent": "5c6d11072e2216000e69d2e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5c6d14ad2e2216001219b4c9", - "_parent": "5c6d11072e2216000e69d2e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5c6d14d62e221644f31bf663", - "_parent": "5c6d11072e2216000e69d2e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" ] } ] @@ -110547,320 +111514,7 @@ "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.969, - "CoolFactor": 1.103 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5fbc226eca32ed67276c155d": { - "_id": "5fbc226eca32ed67276c155d", - "_name": "handguard_mcx_sig_gen1_8_inch_keymod", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_mcx_sig_gen1_8_inch_keymod", - "ShortName": "handguard_mcx_sig_gen1_8_inch_keymod", - "Description": "handguard_mcx_sig_gen1_8_inch_keymod", - "Weight": 0.39, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mcx_sig_gen1_8_inch_keymod.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5fbc226eca32ed67276c155f", - "_parent": "5fbc226eca32ed67276c155d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5fbc226eca32ed67276c1560", - "_parent": "5fbc226eca32ed67276c155d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5fbc226eca32ed67276c1566", - "_parent": "5fbc226eca32ed67276c155d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5fbc226eca32ed67276c1567", - "_parent": "5fbc226eca32ed67276c155d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "615d8fd3290d254f5e6b2edc", - "5fc0f9b5d724d907e2077d82", - "5fc0f9cbd6fa9c00c571bb90", - "5a9d6d13a2750c00164f6b03", - "59e0bed186f774156f04ce84", - "623c2f4242aee3103f1c44b7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.973, - "CoolFactor": 1.022 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "637f57b78d137b27f70c496a": { - "_id": "637f57b78d137b27f70c496a", - "_name": "handguard_ar15_kac_ris_lower", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Knight's Armament KAC RIS для AR-15 и совместимых", - "ShortName": "KAC RIS", - "Description": "Цевье Knight's Armament KAC RIS является штатным цевьем M4A1. Однако может быть установлено на большинство оружия на базе AR-15, при необходимой длине ствола. Снабжено 4-мя направляющими для крепления дополнительного оборудования и экраном для отвода тепла.", - "Weight": 0.097, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_kac_ris_lower.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "637f57b78d137b27f70c496d", - "_parent": "637f57b78d137b27f70c496a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "5a7dbfc1159bd40016548fde", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655dccfdbdcc6b5df71382b6", - "655df24fdf80b12750626d0a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, + "Ergonomics": 3, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -110871,229 +111525,10 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.013, - "CoolFactor": 1.002 - } - }, - "6065880c132d4d12c81fd8da": { - "_id": "6065880c132d4d12c81fd8da", - "_name": "handguard_ar10_cmmg_mk3_rml9_m_lok", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar10_cmmg_mk3_rml9_m_lok", - "ShortName": "handguard_ar10_cmmg_mk3_rml9_m_lok", - "Description": "handguard_ar10_cmmg_mk3_rml9_m_lok", - "Weight": 0.155, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar10_cmmg_mk3_rml9_m_lok.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5ae30e795acfc408fb139a0b", - "56ea8d2fd2720b7c698b4570" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "6065880c132d4d12c81fd8dc", - "_parent": "6065880c132d4d12c81fd8da", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "6065880c132d4d12c81fd8dd", - "_parent": "6065880c132d4d12c81fd8da", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "6065880c132d4d12c81fd8de", - "_parent": "6065880c132d4d12c81fd8da", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "6065880c132d4d12c81fd8df", - "_parent": "6065880c132d4d12c81fd8da", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "6065880c132d4d12c81fd8e0", - "_parent": "6065880c132d4d12c81fd8da", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "6093ba3ef2cb2e02a42acfe4", - "_parent": "6065880c132d4d12c81fd8da", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.975, - "CoolFactor": 1.08 + "HeatFactor": 0.994, + "CoolFactor": 0.97 }, - "_proto": "55d459824bdc2d892f8b4573" + "_proto": "57dc32dc245977596d4ef3d3" }, "640b20359ab20e15ee445fa9": { "_id": "640b20359ab20e15ee445fa9", @@ -111342,6 +111777,91 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, + "6448f2f6d4928d46d30be3f6": { + "_id": "6448f2f6d4928d46d30be3f6", + "_name": "handguard_9a91_kbp_vsk94_std", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_hexagon_ak", + "ShortName": "handguard_ak_hexagon_ak", + "Description": "handguard_ak_hexagon_ak", + "Weight": 0.167, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_9a91_kbp_vsk94_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.04, + "CoolFactor": 0.965 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, "5fbc227aa56d053a3543f79e": { "_id": "5fbc227aa56d053a3543f79e", "_name": "handguard_mcx_sig_gen1_12_inch_keymod", @@ -111532,23 +112052,23 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, - "5c471c6c2e221602b66cd9ae": { - "_id": "5c471c6c2e221602b66cd9ae", - "_name": "handguard_svd_izhmash_svd_s_std", + "5beec3e30db8340019619424": { + "_id": "5beec3e30db8340019619424", + "_name": "handguard_rpk16_izhmash_rpk16_std", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "Цевье пполимерное для AK-74", - "ShortName": "AK-74 пл.ц.", - "Description": "Полимерное цевье для автомата АК-74 производства Ижмаш, пришедшее на смену классическому деревянному.", - "Weight": 0.25, + "Name": "handguard_ak_hexagon_ak", + "ShortName": "handguard_ak_hexagon_ak", + "Description": "handguard_ak_hexagon_ak", + "Weight": 0.167, "BackgroundColor": "blue", - "Width": 1, + "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_svd_izhmash_svd_s_std.bundle", + "path": "assets/content/items/mods/handguards/handguard_rpk16_izhmash_rpk16_std.bundle", "rcid": "" }, "UsePrefab": { @@ -111565,7 +112085,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, + "LootExperience": 10, "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, @@ -111593,18 +112113,166 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5beec3e30db8340019619426", + "_parent": "5beec3e30db8340019619424", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5beecbb80db834001d2c465e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5beec3e30db8340019619427", + "_parent": "5beec3e30db8340019619424", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5beecbb80db834001d2c465e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5beeccbb0db83400196194c7", + "_parent": "5beec3e30db8340019619424", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "64785e7c19d732620e045e15", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5bf27b580db834001961955e", + "_parent": "5beec3e30db8340019619424", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5bf2a0740db834001961993a", + "_parent": "5beec3e30db8340019619424", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": 6, "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, + "RaidModdable": false, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -111612,28 +112280,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 0.994, - "CoolFactor": 1.008 + "HeatFactor": 1.038, + "CoolFactor": 0.963 }, "_proto": "5648b0744bdc2d363b8b4578" }, - "619b5db699fb192e7430664f": { - "_id": "619b5db699fb192e7430664f", - "_name": "handguard_ar15_aeroknox_ax15_10,5_m_lok", + "595cf16b86f77427440c32e2": { + "_id": "595cf16b86f77427440c32e2", + "_name": "handguard_ar15_war_sport_lvoa_s_blk", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", - "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Weight": 0.343, + "Name": "handguard_ar15_war_sport_lvoa_s_blk", + "ShortName": "handguard_ar15_war_sport_lvoa_s_blk", + "Description": "handguard_ar15_war_sport_lvoa_s_blk", + "Weight": 0.5, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_aeroknox_ax15_10,5_m_lok.bundle", + "path": "assets/content/items/mods/handguards/handguard_ar15_war_sport_lvoa_s_blk.bundle", "rcid": "" }, "UsePrefab": { @@ -111655,6 +112323,239 @@ "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "595cf16b86f77427440c32e4", + "_parent": "595cf16b86f77427440c32e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "595cf16b86f77427440c32e8", + "_parent": "595cf16b86f77427440c32e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "59e0bf6986f774156f04ce86", + "_parent": "595cf16b86f77427440c32e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59e0bed186f774156f04ce84" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "59e0bfb886f7742d48765bd4", + "_parent": "595cf16b86f77427440c32e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_003", + "_id": "59e0bfbf86f774157255cc32", + "_parent": "595cf16b86f77427440c32e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_004", + "_id": "59e0bfc686f77415701de392", + "_parent": "595cf16b86f77427440c32e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59e0bdb186f774156f04ce82", + "59e0be5d86f7742d48765bd2", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5c164e7d2e221602b3136aba", + "_parent": "595cf16b86f77427440c32e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.95, + "CoolFactor": 1.02 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5c5db5f22e2216000e5e47e8": { + "_id": "5c5db5f22e2216000e5e47e8", + "_name": "handguard_mpx_midwest_4,5_inch_m_lok", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_mpx_lancer_oem_14_inch", + "ShortName": "handguard_mpx_lancer_oem_14_inch", + "Description": "handguard_mpx_lancer_oem_14_inch", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_mpx_midwest_4,5_inch_m_lok.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, "ExtraSizeLeft": 1, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -111663,12 +112564,7 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a34fbadc4a28200741e230a", - "5ae30e795acfc408fb139a0b", - "56ea8d2fd2720b7c698b4570", - "55d35ee94bdc2d61338b4568" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -111686,8 +112582,8 @@ "Slots": [ { "_name": "mod_mount_000", - "_id": "619b5db699fb192e74306651", - "_parent": "619b5db699fb192e7430664f", + "_id": "5c5db5f22e2216000e5e47ea", + "_parent": "5c5db5f22e2216000e5e47e8", "_props": { "filters": [ { @@ -111706,8 +112602,8 @@ }, { "_name": "mod_mount_001", - "_id": "619b5db699fb192e74306652", - "_parent": "619b5db699fb192e7430664f", + "_id": "5c5db5f22e2216000e5e47eb", + "_parent": "5c5db5f22e2216000e5e47e8", "_props": { "filters": [ { @@ -111725,39 +112621,17 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_tactical", - "_id": "619b5db699fb192e74306653", - "_parent": "619b5db699fb192e7430664f", + "_name": "mod_mount_002", + "_id": "5c5db5f22e2216000e5e47ec", + "_parent": "5c5db5f22e2216000e5e47e8", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "619b5db699fb192e74306654", - "_parent": "619b5db699fb192e7430664f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" ] } ] @@ -111768,8 +112642,8 @@ }, { "_name": "mod_sight_front", - "_id": "619b5db699fb192e74306655", - "_parent": "619b5db699fb192e7430664f", + "_id": "5c5dbb0c2e2216652a75c232", + "_parent": "5c5db5f22e2216000e5e47e8", "_props": { "filters": [ { @@ -111782,8 +112656,155 @@ "5bc09a30d4351e00367fb7c8", "5c18b90d2e2216152142466b", "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 15, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.991, + "CoolFactor": 1.004 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5888976c24597754281f93f5": { + "_id": "5888976c24597754281f93f5", + "_name": "handguard_dvl-10_lobaev_dvl-10_m2_std", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_dvl-10_lobaev_dvl-10_m2_std", + "ShortName": "handguard_dvl-10_lobaev_dvl-10_m2_std", + "Description": "handguard_dvl-10_lobaev_dvl-10_m2_std", + "Weight": 0.223, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_dvl-10_lobaev_dvl-10_m2_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical_000", + "_id": "5888983e24597752415de72a", + "_parent": "5888976c24597754281f93f5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5888984724597752415de72c", + "_parent": "5888976c24597754281f93f5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "626becf9582c3e319310b837", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" ] } ] @@ -111811,28 +112832,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 0.953, - "CoolFactor": 1.072 + "HeatFactor": 0.992, + "CoolFactor": 1.041 }, "_proto": "55d459824bdc2d892f8b4573" }, - "5c6d10fa2e221600106f3f23": { - "_id": "5c6d10fa2e221600106f3f23", - "_name": "handguard_416_midwest_m_lok_9_inch", + "6086b5731246154cad35d6c7": { + "_id": "6086b5731246154cad35d6c7", + "_name": "handguard_saiga12_custom_guns_type_340", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", - "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Weight": 0.28, + "Name": "handguard_saiga12_custom_guns_type_340", + "ShortName": "handguard_saiga12_custom_guns_type_340", + "Description": "handguard_saiga12_custom_guns_type_340", + "Weight": 0.24, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_416_midwest_m_lok_9_inch.bundle", + "path": "assets/content/items/mods/handguards/handguard_saiga12_custom_guns_type_340.bundle", "rcid": "" }, "UsePrefab": { @@ -111854,7 +112875,7 @@ "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 1, + "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -111878,38 +112899,16 @@ "IsUnremovable": false, "Grids": [], "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5c6d10fa2e221600106f3f25", - "_parent": "5c6d10fa2e221600106f3f23", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_mount_001", - "_id": "5c6d10fa2e221600106f3f26", - "_parent": "5c6d10fa2e221600106f3f23", + "_id": "60acc2771a425a107168ef64", + "_parent": "6086b5731246154cad35d6c7", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" + "6086b5392535c57a13424d70" ] } ] @@ -111919,22 +112918,15 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_tactical", - "_id": "5c6d10fa2e221600106f3f29", - "_parent": "5c6d10fa2e221600106f3f23", + "_name": "mod_mount_002", + "_id": "60acc2835e7d98225b738655", + "_parent": "6086b5731246154cad35d6c7", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" + "6086b5392535c57a13424d70" ] } ] @@ -111944,15 +112936,15 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_scope", - "_id": "5c6d10fa2e221600106f3f2a", - "_parent": "5c6d10fa2e221600106f3f23", + "_name": "mod_mount_003", + "_id": "60acc28fab5d1052a56d9c10", + "_parent": "6086b5731246154cad35d6c7", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5649a2464bdc2d91118b45a8" + "6086b5392535c57a13424d70" ] } ] @@ -111960,11 +112952,99 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" - }, + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.021, + "CoolFactor": 1 + }, + "_proto": "5827272a24597748c74bdeea" + }, + "5c9a1c3a2e2216000e69fb6a": { + "_id": "5c9a1c3a2e2216000e69fb6a", + "_name": "handguard_ak_magpul_zhukov_u_fde", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_magpul_moe_ak_blk", + "ShortName": "handguard_ak_magpul_moe_ak_blk", + "Description": "handguard_ak_magpul_moe_ak_blk", + "Weight": 0.31, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_magpul_zhukov_u_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "59984ab886f7743e98271174" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ { "_name": "mod_foregrip", - "_id": "5c6d15592e2216000e69d4e0", - "_parent": "5c6d10fa2e221600106f3f23", + "_id": "5c9a1c3a2e2216000e69fb6c", + "_parent": "5c9a1c3a2e2216000e69fb6a", "_props": { "filters": [ { @@ -111985,179 +113065,16 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, - { - "_name": "mod_sight_front", - "_id": "5c6d15652e221600114c982c", - "_parent": "5c6d10fa2e221600106f3f23", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.986, - "CoolFactor": 1.07 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5fc235db2770a0045c59c683": { - "_id": "5fc235db2770a0045c59c683", - "_name": "handguard_mk18_sword_mjolnir_18_inch", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_mk18_sword_mjolnir_18_inch", - "ShortName": "handguard_mk18_sword_mjolnir_18_inch", - "Description": "handguard_mk18_sword_mjolnir_18_inch", - "Weight": 0.42, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mk18_sword_mjolnir_18_inch.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a34fbadc4a28200741e230a", - "5ae30e795acfc408fb139a0b", - "56ea8d2fd2720b7c698b4570", - "55d35ee94bdc2d61338b4568", - "55d3632e4bdc2d972f8b4569", - "5c0e2f94d174af029f650d56" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5fc235db2770a0045c59c685", - "_parent": "5fc235db2770a0045c59c683", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5fc235db2770a0045c59c686", - "_parent": "5fc235db2770a0045c59c683", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_mount_000", - "_id": "5fc235db2770a0045c59c687", - "_parent": "5fc235db2770a0045c59c683", + "_id": "5c9a1c3a2e2216000e69fb6d", + "_parent": "5c9a1c3a2e2216000e69fb6a", "_props": { "filters": [ { "Shift": 0, "Filter": [ "5b7be47f5acfc400170e2dd2", - "6269545d0e57f218e4548ca2", "6269220d70b6c02e665f2635" ] } @@ -112167,87 +113084,16 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, - { - "_name": "mod_mount_002", - "_id": "5fc235db2770a0045c59c688", - "_parent": "5fc235db2770a0045c59c683", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269545d0e57f218e4548ca2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5fc235db2770a0045c59c689", - "_parent": "5fc235db2770a0045c59c683", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5fc235db2770a0045c59c68a", - "_parent": "5fc235db2770a0045c59c683", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8e529829226ceb67c319", - "651a8bf3a8520e48047bf708" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_mount_001", - "_id": "5fc235db2770a0045c59c68b", - "_parent": "5fc235db2770a0045c59c683", + "_id": "5c9a1c3a2e2216000e69fb6e", + "_parent": "5c9a1c3a2e2216000e69fb6a", "_props": { "filters": [ { "Shift": 0, "Filter": [ "5b7be47f5acfc400170e2dd2", - "6269545d0e57f218e4548ca2", "6269220d70b6c02e665f2635" ] } @@ -112261,264 +113107,14 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 1, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.908, - "CoolFactor": 1.097 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "55f84c3c4bdc2d5f408b4576": { - "_id": "55f84c3c4bdc2d5f408b4576", - "_name": "handguard_ar15_dd_ris_ii_9,5", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Daniel Defence RIS II 9.5 для AR-15 и совместимых", - "ShortName": "RIS II 9.5", - "Description": "Цевье Daniel Defence RIS II 9.5. Является частью программы SOPMOD Block II для замены штатного цевья карабина M4CQBR или Mk18 в подразделениях US SOCOM. Выполнено из легкого и прочного авиационного алюминия. Снабжено 4-мя направляющими для крепления дополнительного оборудования. Данный вариант цевья не совместим с подствольным гранатометом М203.", - "Weight": 0.279, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_dd_ris_ii_9,5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5649d7694bdc2d79388b457f", - "_parent": "55f84c3c4bdc2d5f408b4576", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical001", - "_id": "5649d79a4bdc2d3d1c8b4587", - "_parent": "55f84c3c4bdc2d5f408b4576", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical002", - "_id": "5649d7a74bdc2d3b4c8b457d", - "_parent": "55f84c3c4bdc2d5f408b4576", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "56eaab87d2720b69698b456f", - "_parent": "55f84c3c4bdc2d5f408b4576", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "56eaacd2d2720b69698b4570", - "_parent": "55f84c3c4bdc2d5f408b4576", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "6396aa72feadbf21a603539c", - "_parent": "55f84c3c4bdc2d5f408b4576", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "638f1ff84822287cad04be9d", - "6396aaa9a52ace83df0840ab" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 2, + "Ergonomics": 14, "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, + "RaidModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -112526,95 +113122,10 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 0.987, - "CoolFactor": 1.021 + "HeatFactor": 1.072, + "CoolFactor": 1.027 }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5b7bed205acfc400161d08cc": { - "_id": "5b7bed205acfc400161d08cc", - "_name": "handguard_fal_fn_original_stamped_steel", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_fal_fn_original_stamped_steel", - "ShortName": "handguard_fal_fn_original_stamped_steel", - "Description": "handguard_fal_fn_original_stamped_steel", - "Weight": 0.61, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_fal_fn_original_stamped_steel.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.038, - "CoolFactor": 0.975 - }, - "_proto": "55d459824bdc2d892f8b4573" + "_proto": "5648b0744bdc2d363b8b4578" }, "6123649463849f3d843da7c4": { "_id": "6123649463849f3d843da7c4", @@ -112701,23 +113212,23 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, - "5df916dfbb49d91fb446d6b9": { - "_id": "5df916dfbb49d91fb446d6b9", - "_name": "handguard_ar10_kac_urx4_14_5_inch", + "63f4ba71f31d4a33b87bd046": { + "_id": "63f4ba71f31d4a33b87bd046", + "_name": "handguard_ar15_aeroknox_ax15_4_m_lok", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_ar10_kac_urx4_14_5_inch", - "ShortName": "handguard_ar10_kac_urx4_14_5_inch", - "Description": "handguard_ar10_kac_urx4_14_5_inch", - "Weight": 0.42, + "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", + "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Weight": 0.103, "BackgroundColor": "blue", - "Width": 3, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar10_kac_urx4_14_5_inch.bundle", + "path": "assets/content/items/mods/handguards/handguard_ar15_aeroknox_ax15_4_m_lok.bundle", "rcid": "" }, "UsePrefab": { @@ -112734,26 +113245,26 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 15, + "LootExperience": 20, "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 3, + "ExtraSizeLeft": 1, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, + "CanRequireOnRagfair": true, "ConflictingItems": [ - "5a34fbadc4a28200741e230a", - "5ae30e795acfc408fb139a0b", - "56ea8d2fd2720b7c698b4570", - "55d35ee94bdc2d61338b4568", "55d3632e4bdc2d972f8b4569", - "5c0e2f94d174af029f650d56" + "5d440b93a4b9364276578d4b", + "5d440b9fa4b93601354d480c", + "5c0e2f94d174af029f650d56", + "63d3ce0446bd475bcb50f55f", + "63d3d44a2a49307baf09386d" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -112770,36 +113281,18 @@ "IsUnremovable": false, "Grids": [], "Slots": [ - { - "_name": "mod_scope", - "_id": "5df916dfbb49d91fb446d6bb", - "_parent": "5df916dfbb49d91fb446d6b9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_tactical", - "_id": "5df916dfbb49d91fb446d6bc", - "_parent": "5df916dfbb49d91fb446d6b9", + "_id": "63f4ba71f31d4a33b87bd049", + "_parent": "63f4ba71f31d4a33b87bd046", "_props": { "filters": [ { "Shift": 0, "Filter": [ + "5649a2464bdc2d91118b45a8", "57fd23e32459772d0805bcf1", "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", "5c06595c0db834001a66af6c", "5a7b483fe899ef0016170d15", "61605d88ffa6e502ac5e7eeb", @@ -112812,126 +113305,16 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5df916dfbb49d91fb446d6bd", - "_parent": "5df916dfbb49d91fb446d6b9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269545d0e57f218e4548ca2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5df916dfbb49d91fb446d6be", - "_parent": "5df916dfbb49d91fb446d6b9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269545d0e57f218e4548ca2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5df916dfbb49d91fb446d6c1", - "_parent": "5df916dfbb49d91fb446d6b9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5df916dfbb49d91fb446d6c2", - "_parent": "5df916dfbb49d91fb446d6b9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5df916dfbb49d91fb446d6c3", - "_parent": "5df916dfbb49d91fb446d6b9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269545d0e57f218e4548ca2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 1, - "Recoil": -1, + "Accuracy": 0, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 7, + "Ergonomics": 13, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -112942,28 +113325,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 0.965, - "CoolFactor": 1.03 + "HeatFactor": 0.921, + "CoolFactor": 1.094 }, "_proto": "55d459824bdc2d892f8b4573" }, - "61712eae6c780c1e710c9a1d": { - "_id": "61712eae6c780c1e710c9a1d", - "_name": "handguard_417_hk_417_patrol_rail", + "653ecd065a1690d9d90491e6": { + "_id": "653ecd065a1690d9d90491e6", + "_name": "handguard_sks_tapco_gas_cover", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_416_hk_quad_rail_w_sight", - "ShortName": "handguard_416_hk_quad_rail_w_sight", - "Description": "handguard_416_hk_quad_rail_w_sight", - "Weight": 0.43, + "Name": "handguard_sks_molot_op_sks_std", + "ShortName": "handguard_sks_molot_op_sks_std", + "Description": "handguard_sks_molot_op_sks_std", + "Weight": 0.22, "BackgroundColor": "blue", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_417_hk_417_patrol_rail.bundle", + "path": "assets/content/items/mods/handguards/handguard_sks_tapco_gas_cover.bundle", "rcid": "" }, "UsePrefab": { @@ -112985,14 +113368,14 @@ "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 1, + "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, + "CanRequireOnRagfair": true, "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -113010,167 +113393,48 @@ "Grids": [], "Slots": [ { - "_name": "mod_foregrip", - "_id": "61712eae6c780c1e710c9a1f", - "_parent": "61712eae6c780c1e710c9a1d", + "_name": "mod_tactical", + "_id": "653ecd7436fae5a82f02b868", + "_parent": "653ecd065a1690d9d90491e6", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "5a7dbfc1159bd40016548fde", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "61712eae6c780c1e710c9a20", - "_parent": "61712eae6c780c1e710c9a1d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "61712eae6c780c1e710c9a21", - "_parent": "61712eae6c780c1e710c9a1d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "61712eae6c780c1e710c9a22", - "_parent": "61712eae6c780c1e710c9a1d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", "57fd23e32459772d0805bcf1", "544909bb4bdc2d6f028b4577", "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5a33b2c9c4a282000c5a9511", "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "61712eae6c780c1e710c9a23", - "_parent": "61712eae6c780c1e710c9a1d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" + "64785e7c19d732620e045e15", + "655f13e0a246670fb0373245" ] } ] @@ -113189,8 +113453,8 @@ "EffectiveDistance": 0, "Ergonomics": 4, "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, + "RaidModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -113198,10 +113462,10 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1, - "CoolFactor": 1.056 + "HeatFactor": 1.006, + "CoolFactor": 0.99 }, - "_proto": "55d459824bdc2d892f8b4573" + "_proto": "5648ae314bdc2d3d1c8b457f" }, "5f6336bbda967c74a42e9932": { "_id": "5f6336bbda967c74a42e9932", @@ -113357,401 +113621,6 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, - "644675573d52156624001fc9": { - "_id": "644675573d52156624001fc9", - "_name": "handguard_9a91_kbp_9a91_std", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_hexagon_ak", - "ShortName": "handguard_ak_hexagon_ak", - "Description": "handguard_ak_hexagon_ak", - "Weight": 0.167, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_9a91_kbp_9a91_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.046, - "CoolFactor": 0.96 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "637f589af5ef8c33840d36d3": { - "_id": "637f589af5ef8c33840d36d3", - "_name": "handguard_ar15_strike_industries_viper_lower", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Weight": 0.094, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_strike_industries_viper_lower.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c0e2f94d174af029f650d56" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "637f589af5ef8c33840d36d6", - "_parent": "637f589af5ef8c33840d36d3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.018, - "CoolFactor": 1.01 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "6034e3cb0ddce744014cb870": { - "_id": "6034e3cb0ddce744014cb870", - "_name": "handguard_ar15_stmarms_9_inch_m_lok", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", - "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Weight": 0.155, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_stmarms_9_inch_m_lok.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a34fbadc4a28200741e230a", - "5ae30e795acfc408fb139a0b", - "56ea8d2fd2720b7c698b4570" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "6034e3cb0ddce744014cb872", - "_parent": "6034e3cb0ddce744014cb870", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "6034e3cb0ddce744014cb873", - "_parent": "6034e3cb0ddce744014cb870", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "6034e3cb0ddce744014cb874", - "_parent": "6034e3cb0ddce744014cb870", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "6034e3cb0ddce744014cb876", - "_parent": "6034e3cb0ddce744014cb870", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "6034e3cb0ddce744014cb877", - "_parent": "6034e3cb0ddce744014cb870", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.978, - "CoolFactor": 1.076 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, "5ea16ada09aa976f2e7a51be": { "_id": "5ea16ada09aa976f2e7a51be", "_name": "handguard_ar15_geissele_smr_mk16_135_inch", @@ -113996,6 +113865,401 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, + "637f589af5ef8c33840d36d3": { + "_id": "637f589af5ef8c33840d36d3", + "_name": "handguard_ar15_strike_industries_viper_lower", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Weight": 0.094, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_strike_industries_viper_lower.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c0e2f94d174af029f650d56" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "637f589af5ef8c33840d36d6", + "_parent": "637f589af5ef8c33840d36d3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.018, + "CoolFactor": 1.01 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "644675573d52156624001fc9": { + "_id": "644675573d52156624001fc9", + "_name": "handguard_9a91_kbp_9a91_std", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_hexagon_ak", + "ShortName": "handguard_ak_hexagon_ak", + "Description": "handguard_ak_hexagon_ak", + "Weight": 0.167, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_9a91_kbp_9a91_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.046, + "CoolFactor": 0.96 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, + "6034e3cb0ddce744014cb870": { + "_id": "6034e3cb0ddce744014cb870", + "_name": "handguard_ar15_stmarms_9_inch_m_lok", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", + "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Weight": 0.155, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_stmarms_9_inch_m_lok.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a34fbadc4a28200741e230a", + "5ae30e795acfc408fb139a0b", + "56ea8d2fd2720b7c698b4570" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "6034e3cb0ddce744014cb872", + "_parent": "6034e3cb0ddce744014cb870", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "6034e3cb0ddce744014cb873", + "_parent": "6034e3cb0ddce744014cb870", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "6034e3cb0ddce744014cb874", + "_parent": "6034e3cb0ddce744014cb870", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "6034e3cb0ddce744014cb876", + "_parent": "6034e3cb0ddce744014cb870", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "6034e3cb0ddce744014cb877", + "_parent": "6034e3cb0ddce744014cb870", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.978, + "CoolFactor": 1.076 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, "5df38a5fb74cd90030650cb6": { "_id": "5df38a5fb74cd90030650cb6", "_name": "pistolgrip_t5000_orsis_t5000_std", @@ -114245,23 +114509,812 @@ }, "_proto": "5649ade84bdc2d1b2b8b4587" }, - "638f2003bbd47aeb9e0ff637": { - "_id": "638f2003bbd47aeb9e0ff637", - "_name": "handguard_ar15_dd_ris_ii_12,25_lower", + "6065881d1246154cad35d637": { + "_id": "6065881d1246154cad35d637", + "_name": "handguard_ar10_cmmg_mk3_rml15_m_lok", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "Цевье Daniel Defence RIS II 9.5 для AR-15 и совместимых", - "ShortName": "RIS II 9.5", - "Description": "Цевье Daniel Defence RIS II 9.5. Является частью программы SOPMOD Block II для замены штатного цевья карабина M4CQBR или Mk18 в подразделениях US SOCOM. Выполнено из легкого и прочного авиационного алюминия. Снабжено 4-мя направляющими для крепления дополнительного оборудования. Данный вариант цевья не совместим с подствольным гранатометом М203.", - "Weight": 0.15, + "Name": "handguard_ar10_cmmg_mk3_rml15_m_lok", + "ShortName": "handguard_ar10_cmmg_mk3_rml15_m_lok", + "Description": "handguard_ar10_cmmg_mk3_rml15_m_lok", + "Weight": 0.22, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar10_cmmg_mk3_rml15_m_lok.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a34fbadc4a28200741e230a", + "5ae30e795acfc408fb139a0b", + "56ea8d2fd2720b7c698b4570", + "55d35ee94bdc2d61338b4568", + "55d3632e4bdc2d972f8b4569", + "603372b4da11d6478d5a07ff", + "603372d154072b51b239f9e1" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "6065881d1246154cad35d639", + "_parent": "6065881d1246154cad35d637", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "6065881d1246154cad35d63a", + "_parent": "6065881d1246154cad35d637", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "6065881d1246154cad35d63b", + "_parent": "6065881d1246154cad35d637", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "6065881d1246154cad35d63c", + "_parent": "6065881d1246154cad35d637", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "6065881d1246154cad35d63d", + "_parent": "6065881d1246154cad35d637", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "6065881d1246154cad35d63e", + "_parent": "6065881d1246154cad35d637", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "6093bae3b0e443224b421cde", + "_parent": "6065881d1246154cad35d637", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5.5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.962, + "CoolFactor": 1.108 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5c6d5d8b2e221644fc630b39": { + "_id": "5c6d5d8b2e221644fc630b39", + "_name": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Weight": 0.209, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_dd_ris_ii_12,25_lower.bundle", + "path": "assets/content/items/mods/handguards/handguard_ar15_stngr_vypr_m_lok_10_inch.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a34fbadc4a28200741e230a", + "5ae30e795acfc408fb139a0b", + "56ea8d2fd2720b7c698b4570" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5c6d5d8b2e221644fc630b3b", + "_parent": "5c6d5d8b2e221644fc630b39", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5c6d5d8b2e221644fc630b3c", + "_parent": "5c6d5d8b2e221644fc630b39", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5c6d5d8b2e221644fc630b3d", + "_parent": "5c6d5d8b2e221644fc630b39", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5c6d5d8b2e221644fc630b3e", + "_parent": "5c6d5d8b2e221644fc630b39", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5c6d5d8b2e221644fc630b3f", + "_parent": "5c6d5d8b2e221644fc630b39", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5c6d5d8b2e221644fc630b40", + "_parent": "5c6d5d8b2e221644fc630b39", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5c6d5d8b2e221644fc630b41", + "_parent": "5c6d5d8b2e221644fc630b39", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.985, + "CoolFactor": 1.055 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5a9d6d34a2750c00141e07da": { + "_id": "5a9d6d34a2750c00141e07da", + "_name": "handguard_ak_strike_industries_trax_2", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_strike_industries_trax_2", + "ShortName": "handguard_ak_strike_industries_trax_2", + "Description": "handguard_ak_strike_industries_trax_2", + "Weight": 0.26, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_strike_industries_trax_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5ac66d015acfc400180ae6e4", + "5ac66d725acfc43b321d4b60", + "5ac66d9b5acfc4001633997a", + "59984ab886f7743e98271174", + "59f9cabd86f7743a10721f46" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5a9d6d34a2750c00141e07dd", + "_parent": "5a9d6d34a2750c00141e07da", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5a9d6d34a2750c00141e07de", + "_parent": "5a9d6d34a2750c00141e07da", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a9d6d00a2750c5c985b5305", + "59e0bdb186f774156f04ce82", + "623c2f652febb22c2777d8d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5a9d6e00a2750c00164f6b06", + "_parent": "5a9d6d34a2750c00141e07da", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.966, + "CoolFactor": 1.02 + }, + "_proto": "5648b1504bdc2d9d488b4584" + }, + "5d00e0cbd7ad1a6c6566a42d": { + "_id": "5d00e0cbd7ad1a6c6566a42d", + "_name": "handguard_ar15_strike_industries_viper", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Weight": 0.077, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_strike_industries_viper.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c0e2f94d174af029f650d56" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5d00e0cbd7ad1a6c6566a42f", + "_parent": "5d00e0cbd7ad1a6c6566a42d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5d00e0cbd7ad1a6c6566a430", + "_parent": "5d00e0cbd7ad1a6c6566a42d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "63969cf819971040b005049e", + "_parent": "5d00e0cbd7ad1a6c6566a42d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "637f589af5ef8c33840d36d3", + "63969c9019971040b005049b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.008, + "CoolFactor": 1.031 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "634f03d40384a3ba4f06f874": { + "_id": "634f03d40384a3ba4f06f874", + "_name": "handguard_sks_molot_op_sks_std", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_sks_molot_op_sks_std", + "ShortName": "handguard_sks_molot_op_sks_std", + "Description": "handguard_sks_molot_op_sks_std", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_sks_molot_op_sks_std.bundle", "rcid": "" }, "UsePrefab": { @@ -114290,6 +115343,313 @@ "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.008, + "CoolFactor": 0.9885 + }, + "_proto": "5648ae314bdc2d3d1c8b457f" + }, + "6034e3d953a60014f970617b": { + "_id": "6034e3d953a60014f970617b", + "_name": "handguard_ar15_stmarms_15_inch_m_lok", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", + "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Weight": 0.22, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_stmarms_15_inch_m_lok.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a34fbadc4a28200741e230a", + "5ae30e795acfc408fb139a0b", + "56ea8d2fd2720b7c698b4570", + "55d35ee94bdc2d61338b4568", + "55d3632e4bdc2d972f8b4569", + "603372b4da11d6478d5a07ff", + "603372d154072b51b239f9e1" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "6034e3d953a60014f970617d", + "_parent": "6034e3d953a60014f970617b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "6034e3d953a60014f970617e", + "_parent": "6034e3d953a60014f970617b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "6034e3d953a60014f970617f", + "_parent": "6034e3d953a60014f970617b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "6034e3d953a60014f9706180", + "_parent": "6034e3d953a60014f970617b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "6034e3d953a60014f9706182", + "_parent": "6034e3d953a60014f970617b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "6034e3d953a60014f9706183", + "_parent": "6034e3d953a60014f970617b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5.5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.986, + "CoolFactor": 1.135 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5c9a26332e2216001219ea70": { + "_id": "5c9a26332e2216001219ea70", + "_name": "handguard_ar15_dd_ris_ii_fsp_9,5", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Daniel Defence RIS II 9.5 для AR-15 и совместимых", + "ShortName": "RIS II 9.5", + "Description": "Цевье Daniel Defence RIS II 9.5. Является частью программы SOPMOD Block II для замены штатного цевья карабина M4CQBR или Mk18 в подразделениях US SOCOM. Выполнено из легкого и прочного авиационного алюминия. Снабжено 4-мя направляющими для крепления дополнительного оборудования. Данный вариант цевья не совместим с подствольным гранатометом М203.", + "Weight": 0.3, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_dd_ris_ii_fsp_9,5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -114309,8 +115669,8 @@ "Slots": [ { "_name": "mod_foregrip", - "_id": "638f2003bbd47aeb9e0ff638", - "_parent": "638f2003bbd47aeb9e0ff637", + "_id": "5c9a26332e2216001219ea72", + "_parent": "5c9a26332e2216001219ea70", "_props": { "filters": [ { @@ -114357,256 +115717,10 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, - { - "_name": "mod_tactical_003", - "_id": "638f2003bbd47aeb9e0ff63e", - "_parent": "638f2003bbd47aeb9e0ff637", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "626becf9582c3e319310b837", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.975, - "CoolFactor": 1.033 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5d15ce51d7ad1a1eff619092": { - "_id": "5d15ce51d7ad1a1eff619092", - "_name": "handguard_aks74u_alfa_arms_goliaf", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_aks74u_zenit_b11", - "ShortName": "handguard_aks74u_zenit_b11", - "Description": "handguard_aks74u_zenit_b11", - "Weight": 0.15, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_aks74u_alfa_arms_goliaf.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5ac72e945acfc43f3b691116", - "5ac7655e5acfc40016339a19", - "5649aa744bdc2ded0b8b457e", - "5f633f791b231926f2329f13", - "5943eeeb86f77412d6384f6b", - "5cc9a96cd7f00c011c04e04a", - "615d8f5dd92c473c770212ef", - "5649ab884bdc2ded0b8b457f", - "593d493f86f7745e6b2ceb22", - "57ffb0e42459777d047111c5", - "615d8f8567085e45ef1409ca" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5d15ce51d7ad1a1eff619094", - "_parent": "5d15ce51d7ad1a1eff619092", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5d15ce51d7ad1a1eff619095", - "_parent": "5d15ce51d7ad1a1eff619092", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_tactical_001", - "_id": "5d15ce51d7ad1a1eff619096", - "_parent": "5d15ce51d7ad1a1eff619092", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "5d247bbf8abbc305645f3b24", - "_parent": "5d15ce51d7ad1a1eff619092", + "_id": "5c9a26332e2216001219ea74", + "_parent": "5c9a26332e2216001219ea70", "_props": { "filters": [ { @@ -114643,9 +115757,9 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_tactical_003", - "_id": "5d2dcff048f03505c610c3b8", - "_parent": "5d15ce51d7ad1a1eff619092", + "_name": "mod_tactical_002", + "_id": "5c9a26332e2216001219ea75", + "_parent": "5c9a26332e2216001219ea70", "_props": { "filters": [ { @@ -114681,37 +115795,22 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_scope", - "_id": "5d2dd07348f035444e05603c", - "_parent": "5d15ce51d7ad1a1eff619092", + "_name": "mod_tactical_000", + "_id": "5c9a26332e2216001219ea77", + "_parent": "5c9a26332e2216001219ea70", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "5d2da1e948f035477b1ce2ba", - "584984812459776a704a82a6", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15", - "655f13e0a246670fb0373245" + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" ] } ] @@ -114728,10 +115827,10 @@ "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 3, + "Ergonomics": 7, "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, + "RaidModdable": false, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -114739,10 +115838,180 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.01, - "CoolFactor": 1.064 + "HeatFactor": 0.988, + "CoolFactor": 1.039 }, - "_proto": "57dc32dc245977596d4ef3d3" + "_proto": "55d459824bdc2d892f8b4573" + }, + "607d5aa50494a626335e12ed": { + "_id": "607d5aa50494a626335e12ed", + "_name": "handguard_mp155_izhmeh_monte_carlo_walnut", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Ижмех МР-133 Бук для МР-133", + "ShortName": "МР-133 Бук", + "Description": "Стандартное цевье производства Ижмех выполненное из бука для гладкоствольного ружья МР-133.", + "Weight": 0.8, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_mp155_izhmeh_monte_carlo_walnut.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.041, + "CoolFactor": 0.992 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5a788089c5856700142fdd9c": { + "_id": "5a788089c5856700142fdd9c", + "_name": "handguard_870_remington_12g_speedfeed_short", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_870_remington_12g_speedfeed_short", + "ShortName": "handguard_870_remington_12g_speedfeed_short", + "Description": "handguard_870_remington_12g_speedfeed_short", + "Weight": 0.5, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_870_remington_12g_speedfeed_short.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.02, + "CoolFactor": 0.99 + }, + "_proto": "55d459824bdc2d892f8b4573" }, "5d122e7bd7ad1a07102d6d7f": { "_id": "5d122e7bd7ad1a07102d6d7f", @@ -115039,881 +116308,6 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, - "5c9a26332e2216001219ea70": { - "_id": "5c9a26332e2216001219ea70", - "_name": "handguard_ar15_dd_ris_ii_fsp_9,5", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Daniel Defence RIS II 9.5 для AR-15 и совместимых", - "ShortName": "RIS II 9.5", - "Description": "Цевье Daniel Defence RIS II 9.5. Является частью программы SOPMOD Block II для замены штатного цевья карабина M4CQBR или Mk18 в подразделениях US SOCOM. Выполнено из легкого и прочного авиационного алюминия. Снабжено 4-мя направляющими для крепления дополнительного оборудования. Данный вариант цевья не совместим с подствольным гранатометом М203.", - "Weight": 0.3, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_dd_ris_ii_fsp_9,5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5c9a26332e2216001219ea72", - "_parent": "5c9a26332e2216001219ea70", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "5a7dbfc1159bd40016548fde", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "5c9a26332e2216001219ea74", - "_parent": "5c9a26332e2216001219ea70", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "5c9a26332e2216001219ea75", - "_parent": "5c9a26332e2216001219ea70", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5c9a26332e2216001219ea77", - "_parent": "5c9a26332e2216001219ea70", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.988, - "CoolFactor": 1.039 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "6034e3d953a60014f970617b": { - "_id": "6034e3d953a60014f970617b", - "_name": "handguard_ar15_stmarms_15_inch_m_lok", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", - "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Weight": 0.22, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_stmarms_15_inch_m_lok.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a34fbadc4a28200741e230a", - "5ae30e795acfc408fb139a0b", - "56ea8d2fd2720b7c698b4570", - "55d35ee94bdc2d61338b4568", - "55d3632e4bdc2d972f8b4569", - "603372b4da11d6478d5a07ff", - "603372d154072b51b239f9e1" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "6034e3d953a60014f970617d", - "_parent": "6034e3d953a60014f970617b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "6034e3d953a60014f970617e", - "_parent": "6034e3d953a60014f970617b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "6034e3d953a60014f970617f", - "_parent": "6034e3d953a60014f970617b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "6034e3d953a60014f9706180", - "_parent": "6034e3d953a60014f970617b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "6034e3d953a60014f9706182", - "_parent": "6034e3d953a60014f970617b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "6034e3d953a60014f9706183", - "_parent": "6034e3d953a60014f970617b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5.5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.986, - "CoolFactor": 1.135 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "6065881d1246154cad35d637": { - "_id": "6065881d1246154cad35d637", - "_name": "handguard_ar10_cmmg_mk3_rml15_m_lok", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar10_cmmg_mk3_rml15_m_lok", - "ShortName": "handguard_ar10_cmmg_mk3_rml15_m_lok", - "Description": "handguard_ar10_cmmg_mk3_rml15_m_lok", - "Weight": 0.22, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar10_cmmg_mk3_rml15_m_lok.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a34fbadc4a28200741e230a", - "5ae30e795acfc408fb139a0b", - "56ea8d2fd2720b7c698b4570", - "55d35ee94bdc2d61338b4568", - "55d3632e4bdc2d972f8b4569", - "603372b4da11d6478d5a07ff", - "603372d154072b51b239f9e1" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "6065881d1246154cad35d639", - "_parent": "6065881d1246154cad35d637", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "6065881d1246154cad35d63a", - "_parent": "6065881d1246154cad35d637", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "6065881d1246154cad35d63b", - "_parent": "6065881d1246154cad35d637", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "6065881d1246154cad35d63c", - "_parent": "6065881d1246154cad35d637", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "6065881d1246154cad35d63d", - "_parent": "6065881d1246154cad35d637", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "6065881d1246154cad35d63e", - "_parent": "6065881d1246154cad35d637", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "6093bae3b0e443224b421cde", - "_parent": "6065881d1246154cad35d637", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5.5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.962, - "CoolFactor": 1.108 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "607d5aa50494a626335e12ed": { - "_id": "607d5aa50494a626335e12ed", - "_name": "handguard_mp155_izhmeh_monte_carlo_walnut", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Ижмех МР-133 Бук для МР-133", - "ShortName": "МР-133 Бук", - "Description": "Стандартное цевье производства Ижмех выполненное из бука для гладкоствольного ружья МР-133.", - "Weight": 0.8, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mp155_izhmeh_monte_carlo_walnut.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.041, - "CoolFactor": 0.992 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5a788089c5856700142fdd9c": { - "_id": "5a788089c5856700142fdd9c", - "_name": "handguard_870_remington_12g_speedfeed_short", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_870_remington_12g_speedfeed_short", - "ShortName": "handguard_870_remington_12g_speedfeed_short", - "Description": "handguard_870_remington_12g_speedfeed_short", - "Weight": 0.5, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_870_remington_12g_speedfeed_short.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.02, - "CoolFactor": 0.99 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, "647def638295ebcb5b02f05b": { "_id": "647def638295ebcb5b02f05b", "_name": "handguard_ar15_abarms_mod1_handguard_lower", @@ -116000,89 +116394,6 @@ "CoolFactor": 1.01 } }, - "5e2192a498a36665e8337386": { - "_id": "5e2192a498a36665e8337386", - "_name": "pistolgrip_ak_kgb_mg47_red", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", - "ShortName": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", - "Description": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", - "Weight": 0.153, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_kgb_mg47_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "5649ade84bdc2d1b2b8b4587" - }, "651580dc71a4f10aec4b6056": { "_id": "651580dc71a4f10aec4b6056", "_name": "pistolgrip_ak_pufgun_sg_m2", @@ -116166,6 +116477,89 @@ }, "_proto": "55d4b9964bdc2d1d4e8b456e" }, + "5e2192a498a36665e8337386": { + "_id": "5e2192a498a36665e8337386", + "_name": "pistolgrip_ak_kgb_mg47_red", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", + "ShortName": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", + "Description": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", + "Weight": 0.153, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_kgb_mg47_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "5649ade84bdc2d1b2b8b4587" + }, "5bffcf7a0db83400232fea79": { "_id": "5bffcf7a0db83400232fea79", "_name": "pistolgrip_tt_pm_laser_tt_206", @@ -116249,23 +116643,23 @@ }, "_proto": "571659bb2459771fb2755a12" }, - "5ae30db85acfc408fb139a05": { - "_id": "5ae30db85acfc408fb139a05", - "_name": "handguard_ar15_colt_m4_length_std", + "5b7bed205acfc400161d08cc": { + "_id": "5b7bed205acfc400161d08cc", + "_name": "handguard_fal_fn_original_stamped_steel", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_ar15_colt_m4_length_std", - "ShortName": "handguard_ar15_colt_m4_length_std", - "Description": "handguard_ar15_colt_m4_length_std", - "Weight": 0.193, + "Name": "handguard_fal_fn_original_stamped_steel", + "ShortName": "handguard_fal_fn_original_stamped_steel", + "Description": "handguard_fal_fn_original_stamped_steel", + "Weight": 0.61, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_colt_m4_length_std.bundle", + "path": "assets/content/items/mods/handguards/handguard_fal_fn_original_stamped_steel.bundle", "rcid": "" }, "UsePrefab": { @@ -116283,7 +116677,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 5, + "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -116310,26 +116704,7 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_handguard", - "_id": "638f211c4822287cad04bea5", - "_parent": "5ae30db85acfc408fb139a05", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "637f57a68d137b27f70c4968" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, @@ -116337,10 +116712,10 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 2, + "Ergonomics": 7, "Velocity": 0, "RaidModdable": false, - "ToolModdable": false, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -116348,28 +116723,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.032, - "CoolFactor": 0.991 + "HeatFactor": 1.038, + "CoolFactor": 0.975 }, "_proto": "55d459824bdc2d892f8b4573" }, - "5cbda392ae92155f3c17c39f": { - "_id": "5cbda392ae92155f3c17c39f", - "_name": "handguard_ak_izhmash_ak100_rail_plastic", + "6396aaa9a52ace83df0840ab": { + "_id": "6396aaa9a52ace83df0840ab", + "_name": "handguard_ar15_dd_ris_ii_9,5_lower_blk", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_ak_izhmash_ak100_rail_plastic", - "ShortName": "handguard_ak_izhmash_ak100_rail_plastic", - "Description": "handguard_ak_izhmash_ak100_rail_plastic", - "Weight": 0.27, + "Name": "Цевье Daniel Defence RIS II 9.5 для AR-15 и совместимых", + "ShortName": "RIS II 9.5", + "Description": "Цевье Daniel Defence RIS II 9.5. Является частью программы SOPMOD Block II для замены штатного цевья карабина M4CQBR или Mk18 в подразделениях US SOCOM. Выполнено из легкого и прочного авиационного алюминия. Снабжено 4-мя направляющими для крепления дополнительного оборудования. Данный вариант цевья не совместим с подствольным гранатометом М203.", + "Weight": 0.12, "BackgroundColor": "blue", - "Width": 1, + "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_izhmash_ak100_rail_plastic.bundle", + "path": "assets/content/items/mods/handguards/handguard_ar15_dd_ris_ii_9,5_lower_blk.bundle", "rcid": "" }, "UsePrefab": { @@ -116386,7 +116761,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, + "LootExperience": 10, "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, @@ -116417,8 +116792,8 @@ "Slots": [ { "_name": "mod_foregrip", - "_id": "5cbda485ae9215001039956b", - "_parent": "5cbda392ae92155f3c17c39f", + "_id": "6396aaa9a52ace83df0840ac", + "_parent": "6396aaa9a52ace83df0840ab", "_props": { "filters": [ { @@ -116427,8 +116802,13 @@ "5c7fc87d2e221644f31c0298", "5cda9bcfd7f00c0c0b53e900", "59f8a37386f7747af3328f06", + "5a7dbfc1159bd40016548fde", "619386379fb0c665d5490dbe", "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", "59fc48e086f77463b1118392", "5fce0cf655375d18a253eff0", "5cf4fb76d7f00c065703d3ac", @@ -116459,35 +116839,154 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" - }, + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.992, + "CoolFactor": 1.012 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5c78f26f2e221601da3581d1": { + "_id": "5c78f26f2e221601da3581d1", + "_name": "handguard_ar15_magpul_moe_sl_mid_length", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Weight": 0.23, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_magpul_moe_sl_mid_length.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a34fbadc4a28200741e230a", + "55d35ee94bdc2d61338b4568", + "55d3632e4bdc2d972f8b4569", + "63d3ce0446bd475bcb50f55f" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ { - "_name": "mod_tactical_000", - "_id": "5cbda4bfae9215000d50e06d", - "_parent": "5cbda392ae92155f3c17c39f", + "_name": "mod_mount_000", + "_id": "5c78f26f2e221601da3581d3", + "_parent": "5c78f26f2e221601da3581d1", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" + "5b7be47f5acfc400170e2dd2", + "6269545d0e57f218e4548ca2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5c78f26f2e221601da3581d4", + "_parent": "5c78f26f2e221601da3581d1", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269545d0e57f218e4548ca2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5c78f26f2e221601da3581d8", + "_parent": "5c78f26f2e221601da3581d1", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" ] } ] @@ -116501,10 +117000,160 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 5, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.064, + "CoolFactor": 1.021 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5c9a07572e221644f31c4b32": { + "_id": "5c9a07572e221644f31c4b32", + "_name": "handguard_ak_magpul_zhukov_u_blk", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_magpul_moe_ak_blk", + "ShortName": "handguard_ak_magpul_moe_ak_blk", + "Description": "handguard_ak_magpul_moe_ak_blk", + "Weight": 0.31, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_magpul_zhukov_u_blk.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "59984ab886f7743e98271174" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5c9a10862e221644fc633462", + "_parent": "5c9a07572e221644f31c4b32", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5c9a10942e221601da35a759", + "_parent": "5c9a07572e221644f31c4b32", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5c9a10a02e2216000e69fa68", + "_parent": "5c9a07572e221644f31c4b32", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 14, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -116515,11 +117164,285 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.045, - "CoolFactor": 0.962 + "HeatFactor": 1.072, + "CoolFactor": 1.027 }, "_proto": "5648b0744bdc2d363b8b4578" }, + "647dba3142c479dde701b654": { + "_id": "647dba3142c479dde701b654", + "_name": "handguard_ak_akademia_dominator", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_strike_industries_trax_1", + "ShortName": "handguard_ak_strike_industries_trax_1", + "Description": "handguard_ak_strike_industries_trax_1", + "Weight": 0.315, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_akademia_dominator.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5649af884bdc2d1b2b8b4589" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "647dba3142c479dde701b655", + "_parent": "647dba3142c479dde701b654", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "64785e7c19d732620e045e15", + "644a3df63b0b6f03e101e065", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "647dbadb758d39ce2b0f5102", + "_parent": "647dba3142c479dde701b654", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1.5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.971, + "CoolFactor": 1.01 + }, + "_proto": "5648b1504bdc2d9d488b4584" + }, + "59db3a1d86f77429e05b4e92": { + "_id": "59db3a1d86f77429e05b4e92", + "_name": "pistolgrip_ar15_naroh_arms_gral_s", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ar15_naroh_arms_gral_s", + "ShortName": "pistolgrip_ar15_naroh_arms_gral_s", + "Description": "pistolgrip_ar15_naroh_arms_gral_s", + "Weight": 0.092, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_naroh_arms_gral_s.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 15, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55802f5d4bdc2dac148b458f" + }, "623c3c1f37b4b31470357737": { "_id": "623c3c1f37b4b31470357737", "_name": "handguard_sv-98_cnc_guns_ov_unif_keymod", @@ -116672,6 +117595,91 @@ }, "_proto": "5648ae314bdc2d3d1c8b457f" }, + "59d64f2f86f77417193ef8b3": { + "_id": "59d64f2f86f77417193ef8b3", + "_name": "handguard_ak_izhmash_akm_std_wood", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_izhmash_akm_std_wood", + "ShortName": "handguard_ak_izhmash_akm_std_wood", + "Description": "handguard_ak_izhmash_akm_std_wood", + "Weight": 0.26, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_izhmash_akm_std_wood.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.054, + "CoolFactor": 0.95 + }, + "_proto": "5648ae314bdc2d3d1c8b457f" + }, "637f57c532b66e7e320a6676": { "_id": "637f57c532b66e7e320a6676", "_name": "handguard_ar15_kac_urx_31_10,75_inch_lower", @@ -116821,91 +117829,6 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, - "59d64f2f86f77417193ef8b3": { - "_id": "59d64f2f86f77417193ef8b3", - "_name": "handguard_ak_izhmash_akm_std_wood", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_izhmash_akm_std_wood", - "ShortName": "handguard_ak_izhmash_akm_std_wood", - "Description": "handguard_ak_izhmash_akm_std_wood", - "Weight": 0.26, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_izhmash_akm_std_wood.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.054, - "CoolFactor": 0.95 - }, - "_proto": "5648ae314bdc2d3d1c8b457f" - }, "5c5db63a2e2216000f1b284a": { "_id": "5c5db63a2e2216000f1b284a", "_name": "handguard_mpx_midwest_14_inch_m_lok", @@ -117852,6 +118775,89 @@ }, "_proto": "571659bb2459771fb2755a12" }, + "57e3dba62459770f0c32322b": { + "_id": "57e3dba62459770f0c32322b", + "_name": "pistolgrip_ak_izhmash_aks74u_std", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ak_izhmash_aks74u_std", + "ShortName": "pistolgrip_ak_izhmash_aks74u_std", + "Description": "pistolgrip_ak_izhmash_aks74u_std", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_izhmash_aks74_bakelit.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "5649ad3f4bdc2df8348b4585" + }, "5b099a9d5acfc47a8607efe7": { "_id": "5b099a9d5acfc47a8607efe7", "_name": "handguard_sa58_ds_arms_picatinny_quad_rail", @@ -118114,23 +119120,238 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, - "5f2aa47a200e2c0ee46efa71": { - "_id": "5f2aa47a200e2c0ee46efa71", - "_name": "handguard_rfb_kel_tec_rfb_std", + "5c5db5fc2e2216000f1b2842": { + "_id": "5c5db5fc2e2216000f1b2842", + "_name": "handguard_mpx_midwest_6,5_inch_m_lok", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_ak_magpul_moe_ak_fde", - "ShortName": "handguard_ak_magpul_moe_ak_fde", - "Description": "handguard_ak_magpul_moe_ak_fde", - "Weight": 0.221, + "Name": "handguard_mpx_lancer_oem_14_inch", + "ShortName": "handguard_mpx_lancer_oem_14_inch", + "Description": "handguard_mpx_lancer_oem_14_inch", + "Weight": 0.14, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_rfb_kel_tec_rfb_std.bundle", + "path": "assets/content/items/mods/handguards/handguard_mpx_midwest_6,5_inch_m_lok.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5c5db5fc2e2216000f1b2844", + "_parent": "5c5db5fc2e2216000f1b2842", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5c5db5fc2e2216000f1b2845", + "_parent": "5c5db5fc2e2216000f1b2842", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5c5db5fc2e2216000f1b2846", + "_parent": "5c5db5fc2e2216000f1b2842", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_003", + "_id": "5c5db5fc2e2216000f1b2847", + "_parent": "5c5db5fc2e2216000f1b2842", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5c5db5fc2e2216000f1b2849", + "_parent": "5c5db5fc2e2216000f1b2842", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be4895acfc400170e2dd5", + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5c5dbb382e2216000f1b2962", + "_parent": "5c5db5fc2e2216000f1b2842", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.98, + "CoolFactor": 1.03 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5f63418ef5750b524b45f116": { + "_id": "5f63418ef5750b524b45f116", + "_name": "handguard_saiga12_bravo18_saiga_handguard", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_saiga12_bravo18_saiga_handguard", + "ShortName": "handguard_saiga12_bravo18_saiga_handguard", + "Description": "handguard_saiga12_bravo18_saiga_handguard", + "Weight": 0.37, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_saiga12_bravo18_saiga_handguard.bundle", "rcid": "" }, "UsePrefab": { @@ -118160,197 +119381,13 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5f3299142beb5b0b30768687", - "_parent": "5f2aa47a200e2c0ee46efa71", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f2aa493cd375f14e15eea72" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 16, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.018, - "CoolFactor": 1.053 - }, - "_proto": "57cff947245977638e6f2a19" - }, - "6513f05a94c72326990a3866": { - "_id": "6513f05a94c72326990a3866", - "_name": "handguard_rpd_zid_std_wood", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье пполимерное для AK-74", - "ShortName": "AK-74 пл.ц.", - "Description": "Полимерное цевье для автомата АК-74 производства Ижмаш, пришедшее на смену классическому деревянному.", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_rpd_zid_std_wood.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.055, - "CoolFactor": 0.962 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "647dba3142c479dde701b654": { - "_id": "647dba3142c479dde701b654", - "_name": "handguard_ak_akademia_dominator", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_strike_industries_trax_1", - "ShortName": "handguard_ak_strike_industries_trax_1", - "Description": "handguard_ak_strike_industries_trax_1", - "Weight": 0.315, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_akademia_dominator.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, "ConflictingItems": [ - "5649af884bdc2d1b2b8b4589" + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5d0a29ead7ad1a0026013f27", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -118369,8 +119406,8 @@ "Slots": [ { "_name": "mod_scope", - "_id": "647dba3142c479dde701b655", - "_parent": "647dba3142c479dde701b654", + "_id": "5f63418ef5750b524b45f118", + "_parent": "5f63418ef5750b524b45f116", "_props": { "filters": [ { @@ -118392,12 +119429,6 @@ "59f9d81586f7744c7506ee62", "570fd721d2720bc5458b4596", "57ae0171245977343c27bfcf", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", "58d39d3d86f77445bb794ae7", "616554fe50224f204c1da2aa", "5c7d55f52e221644f31bff6a", @@ -118405,13 +119436,13 @@ "615d8d878004cc50514c3233", "577d128124597739d65d0e56", "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", + "5c1cdd302e221602b3137250", "61714b2467085e45ef140b2c", "5b31163c5acfc400153b71cb", "5a33b652c4a28232996e407c", "5a33b2c9c4a282000c5a9511", "64785e7c19d732620e045e15", - "644a3df63b0b6f03e101e065", + "6478641c19d732620e045e17", "655f13e0a246670fb0373245" ] } @@ -118423,8 +119454,8 @@ }, { "_name": "mod_foregrip", - "_id": "647dbadb758d39ce2b0f5102", - "_parent": "647dba3142c479dde701b654", + "_id": "5f63418ef5750b524b45f119", + "_parent": "5f63418ef5750b524b45f116", "_props": { "filters": [ { @@ -118469,18 +119500,192 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5f63418ef5750b524b45f11a", + "_parent": "5f63418ef5750b524b45f116", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5f63418ef5750b524b45f11b", + "_parent": "5f63418ef5750b524b45f116", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "5f63418ef5750b524b45f11c", + "_parent": "5f63418ef5750b524b45f116", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_003", + "_id": "5f635bd3ea26e63a816e457d", + "_parent": "5f63418ef5750b524b45f116", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_004", + "_id": "5f635bedf524050b633336e7", + "_parent": "5f63418ef5750b524b45f116", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -1.5, + "Recoil": -3, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 8, + "Ergonomics": 5, "Velocity": 0, - "RaidModdable": true, + "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -118489,28 +119694,284 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 0.971, - "CoolFactor": 1.01 + "HeatFactor": 1.049, + "CoolFactor": 1.082 }, - "_proto": "5648b1504bdc2d9d488b4584" + "_proto": "5827272a24597748c74bdeea" }, - "5c9a07572e221644f31c4b32": { - "_id": "5c9a07572e221644f31c4b32", - "_name": "handguard_ak_magpul_zhukov_u_blk", + "61703001d92c473c77021497": { + "_id": "61703001d92c473c77021497", + "_name": "handguard_417_hk_417_extended_free_float", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_ak_magpul_moe_ak_blk", - "ShortName": "handguard_ak_magpul_moe_ak_blk", - "Description": "handguard_ak_magpul_moe_ak_blk", - "Weight": 0.31, + "Name": "handguard_416_hk_quad_rail_w_sight", + "ShortName": "handguard_416_hk_quad_rail_w_sight", + "Description": "handguard_416_hk_quad_rail_w_sight", + "Weight": 0.55, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_417_hk_417_extended_free_float.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "61703001d92c473c7702149b", + "_parent": "61703001d92c473c77021497", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "5a7dbfc1159bd40016548fde", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "5cf4fb76d7f00c065703d3ac", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "61703001d92c473c7702149c", + "_parent": "61703001d92c473c77021497", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "61703001d92c473c7702149d", + "_parent": "61703001d92c473c77021497", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "61703001d92c473c7702149e", + "_parent": "61703001d92c473c77021497", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "61703001d92c473c7702149f", + "_parent": "61703001d92c473c77021497", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.041, + "CoolFactor": 1.033 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "647dd2b8a12ebf96c3031655": { + "_id": "647dd2b8a12ebf96c3031655", + "_name": "handguard_ak_alfa_arms_aspid", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_zenit_b30", + "ShortName": "handguard_ak_zenit_b30", + "Description": "handguard_ak_zenit_b30", + "Weight": 0.37, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_magpul_zhukov_u_blk.bundle", + "path": "assets/content/items/mods/handguards/handguard_ak_alfa_arms_aspid.bundle", "rcid": "" }, "UsePrefab": { @@ -118541,7 +120002,11 @@ "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [ - "59984ab886f7743e98271174" + "62e7e7bbe6da9612f743f1e0", + "5ac66d015acfc400180ae6e4", + "5ac66d725acfc43b321d4b60", + "5ac66d9b5acfc4001633997a", + "5649af884bdc2d1b2b8b4589" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -118560,8 +120025,922 @@ "Slots": [ { "_name": "mod_foregrip", - "_id": "5c9a10862e221644fc633462", - "_parent": "5c9a07572e221644f31c4b32", + "_id": "647dd2b8a12ebf96c3031656", + "_parent": "647dd2b8a12ebf96c3031655", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "647dd2b8a12ebf96c3031657", + "_parent": "647dd2b8a12ebf96c3031655", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5a33b2c9c4a282000c5a9511", + "64785e7c19d732620e045e15", + "644a3df63b0b6f03e101e065", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "647dd2b8a12ebf96c3031658", + "_parent": "647dd2b8a12ebf96c3031655", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "647dd2b8a12ebf96c3031659", + "_parent": "647dd2b8a12ebf96c3031655", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "647dd2b8a12ebf96c303165a", + "_parent": "647dd2b8a12ebf96c3031655", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2.5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.913, + "CoolFactor": 1.085 + }, + "_proto": "5648b1504bdc2d9d488b4584" + }, + "5bb20dfcd4351e00334c9e24": { + "_id": "5bb20dfcd4351e00334c9e24", + "_name": "handguard_416_hk_quad_rail_extended", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_416_hk_quad_rail_extended", + "ShortName": "handguard_416_hk_quad_rail_extended", + "Description": "handguard_416_hk_quad_rail_extended", + "Weight": 0.54, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_416_hk_quad_rail_extended.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5bb20d92d4351e00853263eb", + "5bb20d9cd4351e00334c9d8a", + "5bb20da5d4351e0035629dbf" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5bb20dfcd4351e00334c9e26", + "_parent": "5bb20dfcd4351e00334c9e24", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "5a7dbfc1159bd40016548fde", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "5cf4fb76d7f00c065703d3ac", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5bb20dfcd4351e00334c9e27", + "_parent": "5bb20dfcd4351e00334c9e24", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5bb20dfcd4351e00334c9e2a", + "_parent": "5bb20dfcd4351e00334c9e24", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5bb212b8d4351e00367faf08", + "_parent": "5bb20dfcd4351e00334c9e24", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5bb212bfd4351e00853263ef", + "_parent": "5bb20dfcd4351e00334c9e24", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "5bb212c5d4351e0034778875", + "_parent": "5bb20dfcd4351e00334c9e24", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.985, + "CoolFactor": 1.006 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "6087e0336d0bd7580617bb7a": { + "_id": "6087e0336d0bd7580617bb7a", + "_name": "handguard_ar15_unique_ars_wing_and_skull_12_inch", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ar15_unique_ars_wing_and_skull_12_inch", + "ShortName": "handguard_ar15_unique_ars_wing_and_skull_12_inch", + "Description": "handguard_ar15_unique_ars_wing_and_skull_12_inch", + "Weight": 0.25, + "BackgroundColor": "violet", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_unique_ars_wing_and_skull_12_inch.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a34fbadc4a28200741e230a", + "5ae30e795acfc408fb139a0b", + "5d00ec68d7ad1a04a067e5be", + "56ea8d2fd2720b7c698b4570", + "55d35ee94bdc2d61338b4568" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 15, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.964, + "CoolFactor": 1.046 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5b7d678a5acfc4001a5c4022": { + "_id": "5b7d678a5acfc4001a5c4022", + "_name": "pistolgrip_sa58_ds_arms_metric_std", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_sa58_ds_arms_metric_std", + "ShortName": "pistolgrip_sa58_ds_arms_metric_std", + "Description": "pistolgrip_sa58_ds_arms_metric_std", + "Weight": 0.11, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_sa58_ds_arms_metric_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "5649ade84bdc2d1b2b8b4587" + }, + "5d4405f0a4b9361e6a4e6bd9": { + "_id": "5d4405f0a4b9361e6a4e6bd9", + "_name": "handguard_ar15_lone_star_ion_lite_m_lok_16_inch", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ar15_lone_star_ion_lite_m_lok_16_inch", + "ShortName": "handguard_ar15_lone_star_ion_lite_m_lok_16_inch", + "Description": "handguard_ar15_lone_star_ion_lite_m_lok_16_inch", + "Weight": 0.38, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_lone_star_ion_lite_m_lok_16_inch.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 3, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a34fbadc4a28200741e230a", + "5ae30e795acfc408fb139a0b", + "56ea8d2fd2720b7c698b4570", + "55d35ee94bdc2d61338b4568", + "55d3632e4bdc2d972f8b4569", + "5c0e2f94d174af029f650d56", + "63d3ce0446bd475bcb50f55f", + "63d3d44a2a49307baf09386d" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5d4405f0a4b9361e6a4e6bdb", + "_parent": "5d4405f0a4b9361e6a4e6bd9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5d4405f0a4b9361e6a4e6bdc", + "_parent": "5d4405f0a4b9361e6a4e6bd9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5d4405f0a4b9361e6a4e6bdd", + "_parent": "5d4405f0a4b9361e6a4e6bd9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269545d0e57f218e4548ca2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5d4405f0a4b9361e6a4e6bde", + "_parent": "5d4405f0a4b9361e6a4e6bd9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269545d0e57f218e4548ca2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_003", + "_id": "5d4405f0a4b9361e6a4e6bdf", + "_parent": "5d4405f0a4b9361e6a4e6bd9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269545d0e57f218e4548ca2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_004", + "_id": "5d4405f0a4b9361e6a4e6be0", + "_parent": "5d4405f0a4b9361e6a4e6bd9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269545d0e57f218e4548ca2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5d4405f0a4b9361e6a4e6be1", + "_parent": "5d4405f0a4b9361e6a4e6bd9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5d440f5da4b9367e2e0ff589", + "_parent": "5d4405f0a4b9361e6a4e6bd9", "_props": { "filters": [ { @@ -118582,36 +120961,17 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, - { - "_name": "mod_mount_000", - "_id": "5c9a10942e221601da35a759", - "_parent": "5c9a07572e221644f31c4b32", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_mount_001", - "_id": "5c9a10a02e2216000e69fa68", - "_parent": "5c9a07572e221644f31c4b32", + "_id": "5d444418a4b93677c8374e16", + "_parent": "5d4405f0a4b9361e6a4e6bd9", "_props": { "filters": [ { "Shift": 0, "Filter": [ "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635" + "6269545d0e57f218e4548ca2" ] } ] @@ -118624,14 +120984,14 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 0, + "Accuracy": 1, "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 14, + "Ergonomics": 11, "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, + "RaidModdable": false, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -118639,28 +120999,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.072, - "CoolFactor": 1.027 + "HeatFactor": 0.961, + "CoolFactor": 1.12 }, - "_proto": "5648b0744bdc2d363b8b4578" + "_proto": "55d459824bdc2d892f8b4573" }, - "5c78f26f2e221601da3581d1": { - "_id": "5c78f26f2e221601da3581d1", - "_name": "handguard_ar15_magpul_moe_sl_mid_length", + "619b5db699fb192e7430664f": { + "_id": "619b5db699fb192e7430664f", + "_name": "handguard_ar15_aeroknox_ax15_10,5_m_lok", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Weight": 0.23, + "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", + "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Weight": 0.343, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_magpul_moe_sl_mid_length.bundle", + "path": "assets/content/items/mods/handguards/handguard_ar15_aeroknox_ax15_10,5_m_lok.bundle", "rcid": "" }, "UsePrefab": { @@ -118692,9 +121052,9 @@ "CanRequireOnRagfair": false, "ConflictingItems": [ "5a34fbadc4a28200741e230a", - "55d35ee94bdc2d61338b4568", - "55d3632e4bdc2d972f8b4569", - "63d3ce0446bd475bcb50f55f" + "5ae30e795acfc408fb139a0b", + "56ea8d2fd2720b7c698b4570", + "55d35ee94bdc2d61338b4568" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -118713,16 +121073,16 @@ "Slots": [ { "_name": "mod_mount_000", - "_id": "5c78f26f2e221601da3581d3", - "_parent": "5c78f26f2e221601da3581d1", + "_id": "619b5db699fb192e74306651", + "_parent": "619b5db699fb192e7430664f", "_props": { "filters": [ { "Shift": 0, "Filter": [ "5b7be47f5acfc400170e2dd2", - "6269545d0e57f218e4548ca2", - "6269220d70b6c02e665f2635" + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" ] } ] @@ -118733,16 +121093,34 @@ }, { "_name": "mod_mount_001", - "_id": "5c78f26f2e221601da3581d4", - "_parent": "5c78f26f2e221601da3581d1", + "_id": "619b5db699fb192e74306652", + "_parent": "619b5db699fb192e7430664f", "_props": { "filters": [ { "Shift": 0, "Filter": [ "5b7be47f5acfc400170e2dd2", - "6269545d0e57f218e4548ca2", - "6269220d70b6c02e665f2635" + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "619b5db699fb192e74306653", + "_parent": "619b5db699fb192e7430664f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" ] } ] @@ -118753,8 +121131,8 @@ }, { "_name": "mod_foregrip", - "_id": "5c78f26f2e221601da3581d8", - "_parent": "5c78f26f2e221601da3581d1", + "_id": "619b5db699fb192e74306654", + "_parent": "619b5db699fb192e7430664f", "_props": { "filters": [ { @@ -118774,18 +121152,44 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "619b5db699fb192e74306655", + "_parent": "619b5db699fb192e7430664f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -1, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 10, + "Ergonomics": 9, "Velocity": 0, - "RaidModdable": true, + "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -118794,194 +121198,463 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.064, - "CoolFactor": 1.021 + "HeatFactor": 0.953, + "CoolFactor": 1.072 }, "_proto": "55d459824bdc2d892f8b4573" }, - "602e71bd53a60014f9705bfa": { - "_id": "602e71bd53a60014f9705bfa", - "_name": "pistolgrip_ar15_dlg_123", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "Пистолетная рукоятка DI ECS FDE для AR-15 совместимых", - "ShortName": "ECS FDE", - "Description": "Полимерная пистолетная рукоятка ECS устанавливается на любое оружие совместимое с пистолетными рукоятками от AR-15. Единственное отличие от штатной рукоятки- цвет.", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_dlg_123.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5.5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "59db3a1d86f77429e05b4e92": { - "_id": "59db3a1d86f77429e05b4e92", - "_name": "pistolgrip_ar15_naroh_arms_gral_s", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ar15_naroh_arms_gral_s", - "ShortName": "pistolgrip_ar15_naroh_arms_gral_s", - "Description": "pistolgrip_ar15_naroh_arms_gral_s", - "Weight": 0.092, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_naroh_arms_gral_s.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 15, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55802f5d4bdc2dac148b458f" - }, - "5c6d10e82e221601da357b07": { - "_id": "5c6d10e82e221601da357b07", - "_name": "handguard_416_hk_mrs_keymod_14_inch", + "5827272a24597748c74bdeea": { + "_id": "5827272a24597748c74bdeea", + "_name": "handguard_saiga12_utg_pro_mtu002_long_top", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_416_hk_mrs_keymod_14_inch", - "ShortName": "handguard_416_hk_mrs_keymod_14_inch", - "Description": "handguard_416_hk_mrs_keymod_14_inch", - "Weight": 0.39, + "Name": "", + "ShortName": "", + "Description": "", + "Weight": 0.428, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_saiga12_utg_pro_mtu002_long_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "57486e672459770abd687134", + "591ee00d86f774592f7b841e", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5827296f2459774aba7098e9", + "_parent": "5827272a24597748c74bdeea", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "626bb8532c923541184624b4", + "64785e7c19d732620e045e15", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5827298e2459774a913ef5aa", + "_parent": "5827272a24597748c74bdeea", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "582729a52459774a8d5eb0b8", + "_parent": "5827272a24597748c74bdeea", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "582729b52459774abc128d33", + "_parent": "5827272a24597748c74bdeea", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "582729c624597749585f70e9", + "_parent": "5827272a24597748c74bdeea", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.036, + "CoolFactor": 1.042 + }, + "_proto": "576169e62459773c69055191" + }, + "647de824196bf69818044c93": { + "_id": "647de824196bf69818044c93", + "_name": "handguard_ar15_abarms_mod1_handguard", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Knight's Armament KAC RIS для AR-15 и совместимых", + "ShortName": "KAC RIS", + "Description": "Цевье Knight's Armament KAC RIS является штатным цевьем M4A1. Однако может быть установлено на большинство оружия на базе AR-15, при необходимой длине ствола. Снабжено 4-мя направляющими для крепления дополнительного оборудования и экраном для отвода тепла.", + "Weight": 0.094, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_abarms_mod1_handguard.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5d440b93a4b9364276578d4b", + "5d440b9fa4b93601354d480c", + "5c0e2f94d174af029f650d56", + "63d3d44a2a49307baf09386d" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_handguard", + "_id": "647de824196bf69818044c98", + "_parent": "647de824196bf69818044c93", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "647def638295ebcb5b02f05b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "647de92cd5c50b239601ca36", + "_parent": "647de824196bf69818044c93", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.005, + "CoolFactor": 1.025 + } + }, + "5c6c2c9c2e2216000f2002e4": { + "_id": "5c6c2c9c2e2216000f2002e4", + "_name": "handguard_416_troy_m_lok_13_inch_carbon_fiber", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", + "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Weight": 0.25, "BackgroundColor": "blue", "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_416_hk_mrs_keymod_14_inch.bundle", + "path": "assets/content/items/mods/handguards/handguard_416_troy_m_lok_13_inch_carbon_fiber.bundle", "rcid": "" }, "UsePrefab": { @@ -119029,17 +121702,16 @@ "Slots": [ { "_name": "mod_mount_000", - "_id": "5c6d10e82e221601da357b09", - "_parent": "5c6d10e82e221601da357b07", + "_id": "5c6c2c9c2e2216000f2002e6", + "_parent": "5c6c2c9c2e2216000f2002e4", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" ] } ] @@ -119050,17 +121722,16 @@ }, { "_name": "mod_mount_001", - "_id": "5c6d10e82e221601da357b0a", - "_parent": "5c6d10e82e221601da357b07", + "_id": "5c6c2c9c2e2216000f2002e7", + "_parent": "5c6c2c9c2e2216000f2002e4", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" ] } ] @@ -119071,59 +121742,16 @@ }, { "_name": "mod_mount_002", - "_id": "5c6d10e82e221601da357b0b", - "_parent": "5c6d10e82e221601da357b07", + "_id": "5c6c2c9c2e2216000f2002e8", + "_parent": "5c6c2c9c2e2216000f2002e4", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "5c6d10e82e221601da357b0c", - "_parent": "5c6d10e82e221601da357b07", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_004", - "_id": "5c6d10e82e221601da357b0d", - "_parent": "5c6d10e82e221601da357b07", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9d6d00a2750c5c985b5305", - "59e0bdb186f774156f04ce82", - "59e0be5d86f7742d48765bd2", - "623c2f652febb22c2777d8d7" + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" ] } ] @@ -119134,8 +121762,8 @@ }, { "_name": "mod_tactical", - "_id": "5c6d16932e221601da357c10", - "_parent": "5c6d10e82e221601da357b07", + "_id": "5c6c2c9c2e2216000f2002ea", + "_parent": "5c6c2c9c2e2216000f2002e4", "_props": { "filters": [ { @@ -119159,8 +121787,8 @@ }, { "_name": "mod_scope", - "_id": "5c6d169c2e2216000f2004ee", - "_parent": "5c6d10e82e221601da357b07", + "_id": "5c6c2c9c2e2216000f2002eb", + "_parent": "5c6c2c9c2e2216000f2002e4", "_props": { "filters": [ { @@ -119177,8 +121805,8 @@ }, { "_name": "mod_sight_front", - "_id": "5c6d16a32e2216001219b4ca", - "_parent": "5c6d10e82e221601da357b07", + "_id": "5c6d17282e221644f31bf664", + "_parent": "5c6c2c9c2e2216000f2002e4", "_props": { "filters": [ { @@ -119191,8 +121819,7 @@ "5bc09a30d4351e00367fb7c8", "5c18b90d2e2216152142466b", "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" + "5894a73486f77426d259076c" ] } ] @@ -119203,18 +121830,20 @@ }, { "_name": "mod_foregrip", - "_id": "5c6d17862e221644fc6307fd", - "_parent": "5c6d10e82e221601da357b07", + "_id": "5c6d17352e221644f31bf665", + "_parent": "5c6c2c9c2e2216000f2002e4", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "615d8fd3290d254f5e6b2edc", - "5fc0f9b5d724d907e2077d82", - "5fc0f9cbd6fa9c00c571bb90", - "5a9d6d13a2750c00164f6b03", - "59e0bed186f774156f04ce84" + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" ] } ] @@ -119228,7 +121857,361 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -3, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 14, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.017, + "CoolFactor": 1 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "637b6d610aef6cfc5e02dd14": { + "_id": "637b6d610aef6cfc5e02dd14", + "_name": "pistolgrip_pm_gct_pm_tactic_kit", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "Щечки ЦНИИ Точмаш Бакелитовые для ПБ", + "ShortName": "ПБ Бакелит", + "Description": "Штатные бакелитовые? щечки для пистолета ПБ.", + "Weight": 0.114, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_pm_gct_pm_tactic_kit.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "637b6db5c49199abef0ac784", + "_parent": "637b6d610aef6cfc5e02dd14", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7b483fe899ef0016170d15", + "5a7b4900e899ef197b331a2a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 12, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "5649ade84bdc2d1b2b8b4587" + }, + "6374a7e7417239a7bf00f042": { + "_id": "6374a7e7417239a7bf00f042", + "_name": "pistolgrip_pm_izhmeh_pm_std", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "Щечки ЦНИИ Точмаш Бакелитовые для ПБ", + "ShortName": "ПБ Бакелит", + "Description": "Штатные бакелитовые? щечки для пистолета ПБ.", + "Weight": 0.102, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_pm_izhmeh_pm_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "5649ade84bdc2d1b2b8b4587" + }, + "64cbad529f7cf7f75c077fd5": { + "_id": "64cbad529f7cf7f75c077fd5", + "_name": "pistolgrip_pkm_zid_pk_black", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ak_izhmash_ak74_bakelit", + "ShortName": "pistolgrip_ak_izhmash_ak74_bakelit", + "Description": "pistolgrip_ak_izhmash_ak74_bakelit", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_pkm_zid_pk_black.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "5addc7db5acfc4001669f279": { + "_id": "5addc7db5acfc4001669f279", + "_name": "pistolgrip_m14_sage_ebr_m14alcs_grip", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_m14_sage_ebr_m14alcs_grip", + "ShortName": "pistolgrip_m14_sage_ebr_m14alcs_grip", + "Description": "pistolgrip_m14_sage_ebr_m14alcs_grip", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_m14_sage_ebr_m14alcs_grip.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": 6, @@ -119241,11 +122224,113 @@ "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.977, - "CoolFactor": 1.008 + "UniqueAnimationModID": 0 }, - "_proto": "55d459824bdc2d892f8b4573" + "_proto": "55802f5d4bdc2dac148b458f" + }, + "606ee5c81246154cad35d65e": { + "_id": "606ee5c81246154cad35d65e", + "_name": "handguard_mp155_kalashnikov_ultima_handguard", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Ижмех МР-153 Полимерное для МР-133", + "ShortName": "МР-133 Полимер", + "Description": "Стандартное цевье производства Ижмех выполненное из полимера для гладкоствольного ружья МР-153.", + "Weight": 0.31, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_mp155_kalashnikov_ultima_handguard.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "607ea9218900dc2d9a55b6dd", + "_parent": "606ee5c81246154cad35d65e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "607ea812232e5a31c233d53c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.026, + "CoolFactor": 0.977 + }, + "_proto": "55d45d3f4bdc2d972f8b456c" }, "5d00ede1d7ad1a0940739a76": { "_id": "5d00ede1d7ad1a0940739a76", @@ -119532,110 +122617,6 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, - "606ee5c81246154cad35d65e": { - "_id": "606ee5c81246154cad35d65e", - "_name": "handguard_mp155_kalashnikov_ultima_handguard", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Ижмех МР-153 Полимерное для МР-133", - "ShortName": "МР-133 Полимер", - "Description": "Стандартное цевье производства Ижмех выполненное из полимера для гладкоствольного ружья МР-153.", - "Weight": 0.31, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mp155_kalashnikov_ultima_handguard.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "607ea9218900dc2d9a55b6dd", - "_parent": "606ee5c81246154cad35d65e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "607ea812232e5a31c233d53c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.026, - "CoolFactor": 0.977 - }, - "_proto": "55d45d3f4bdc2d972f8b456c" - }, "5e87076ce2db31558c75a11d": { "_id": "5e87076ce2db31558c75a11d", "_name": "handguard_590_mossberg_590a1_std", @@ -119953,89 +122934,6 @@ }, "_proto": "5648b0744bdc2d363b8b4578" }, - "56e05a6ed2720bd0748b4567": { - "_id": "56e05a6ed2720bd0748b4567", - "_name": "pistolgrip_pb_tochmash_pb_std", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "Щечки ЦНИИ Точмаш Бакелитовые для ПБ", - "ShortName": "ПБ Бакелит", - "Description": "Штатные бакелитовые? щечки для пистолета ПБ.", - "Weight": 0.102, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_pb_tochmash_pb_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "5649ade84bdc2d1b2b8b4587" - }, "5cf54404d7f00c108840b2ef": { "_id": "5cf54404d7f00c108840b2ef", "_name": "pistolgrip_ak_kgb_mg47", @@ -120368,6 +123266,392 @@ }, "_proto": "5649ade84bdc2d1b2b8b4587" }, + "5b7bebc85acfc43bca706666": { + "_id": "5b7bebc85acfc43bca706666", + "_name": "handguard_fal_aim_sport_universal_m_lok", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", + "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Weight": 0.269, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_fal_aim_sport_universal_m_lok.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5b7bebc85acfc43bca706668", + "_parent": "5b7bebc85acfc43bca706666", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5b7bebc85acfc43bca706669", + "_parent": "5b7bebc85acfc43bca706666", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5b7bebc85acfc43bca70666a", + "_parent": "5b7bebc85acfc43bca706666", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_003", + "_id": "5b7bebc85acfc43bca70666b", + "_parent": "5b7bebc85acfc43bca706666", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5b7becb35acfc4001876c21b", + "_parent": "5b7bebc85acfc43bca706666", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5b7becbc5acfc43d825283f8", + "_parent": "5b7bebc85acfc43bca706666", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.028, + "CoolFactor": 1.024 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5894a42086f77426d2590762": { + "_id": "5894a42086f77426d2590762", + "_name": "handguard_mpx_sig_mpx_gen1_handguard", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_mpx_sig_mpx_gen1_handguard", + "ShortName": "handguard_mpx_sig_mpx_gen1_handguard", + "Description": "handguard_mpx_sig_mpx_gen1_handguard", + "Weight": 0.302, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_mpx_sig_mpx_gen1_handguard.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_front", + "_id": "5894a4b386f77427140b8345", + "_parent": "5894a42086f77426d2590762", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "58a5760886f77470e446628a", + "_parent": "5894a42086f77426d2590762", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "58a56f8d86f774651579314c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "58a5761486f7746f8a5389ed", + "_parent": "5894a42086f77426d2590762", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "58a5c12e86f7745d585a2b9e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "58d9119686f774372438568c", + "_parent": "5894a42086f77426d2590762", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "58a56f8d86f774651579314c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.976, + "CoolFactor": 1.016 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, "58272b392459774b4c7b3ccd": { "_id": "58272b392459774b4c7b3ccd", "_name": "handguard_saiga12_utg_pro_mtu002_short_top", @@ -120805,309 +124089,6 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, - "5827272a24597748c74bdeea": { - "_id": "5827272a24597748c74bdeea", - "_name": "handguard_saiga12_utg_pro_mtu002_long_top", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "", - "ShortName": "", - "Description": "", - "Weight": 0.428, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_saiga12_utg_pro_mtu002_long_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "57486e672459770abd687134", - "591ee00d86f774592f7b841e", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5827296f2459774aba7098e9", - "_parent": "5827272a24597748c74bdeea", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "626bb8532c923541184624b4", - "64785e7c19d732620e045e15", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5827298e2459774a913ef5aa", - "_parent": "5827272a24597748c74bdeea", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "582729a52459774a8d5eb0b8", - "_parent": "5827272a24597748c74bdeea", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "582729b52459774abc128d33", - "_parent": "5827272a24597748c74bdeea", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "582729c624597749585f70e9", - "_parent": "5827272a24597748c74bdeea", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.036, - "CoolFactor": 1.042 - }, - "_proto": "576169e62459773c69055191" - }, "5b7be1ca5acfc400170e2d2f": { "_id": "5b7be1ca5acfc400170e2d2f", "_name": "handguard_sa58_ds_arms_picatinny_full_lenght_quad_rail", @@ -121408,376 +124389,6 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, - "647de824196bf69818044c93": { - "_id": "647de824196bf69818044c93", - "_name": "handguard_ar15_abarms_mod1_handguard", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Knight's Armament KAC RIS для AR-15 и совместимых", - "ShortName": "KAC RIS", - "Description": "Цевье Knight's Armament KAC RIS является штатным цевьем M4A1. Однако может быть установлено на большинство оружия на базе AR-15, при необходимой длине ствола. Снабжено 4-мя направляющими для крепления дополнительного оборудования и экраном для отвода тепла.", - "Weight": 0.094, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_abarms_mod1_handguard.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5d440b93a4b9364276578d4b", - "5d440b9fa4b93601354d480c", - "5c0e2f94d174af029f650d56", - "63d3d44a2a49307baf09386d" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_handguard", - "_id": "647de824196bf69818044c98", - "_parent": "647de824196bf69818044c93", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "647def638295ebcb5b02f05b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "647de92cd5c50b239601ca36", - "_parent": "647de824196bf69818044c93", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.005, - "CoolFactor": 1.025 - } - }, - "5c6c2c9c2e2216000f2002e4": { - "_id": "5c6c2c9c2e2216000f2002e4", - "_name": "handguard_416_troy_m_lok_13_inch_carbon_fiber", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", - "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_416_troy_m_lok_13_inch_carbon_fiber.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5c6c2c9c2e2216000f2002e6", - "_parent": "5c6c2c9c2e2216000f2002e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5c6c2c9c2e2216000f2002e7", - "_parent": "5c6c2c9c2e2216000f2002e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5c6c2c9c2e2216000f2002e8", - "_parent": "5c6c2c9c2e2216000f2002e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5c6c2c9c2e2216000f2002ea", - "_parent": "5c6c2c9c2e2216000f2002e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5c6c2c9c2e2216000f2002eb", - "_parent": "5c6c2c9c2e2216000f2002e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5c6d17282e221644f31bf664", - "_parent": "5c6c2c9c2e2216000f2002e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5c6d17352e221644f31bf665", - "_parent": "5c6c2c9c2e2216000f2002e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 14, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.017, - "CoolFactor": 1 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, "55d4b9964bdc2d1d4e8b456e": { "_id": "55d4b9964bdc2d1d4e8b456e", "_name": "pistolgrip_ar15_colt_a2", @@ -121861,109 +124472,6 @@ }, "_proto": "55802f5d4bdc2dac148b458f" }, - "637b6d610aef6cfc5e02dd14": { - "_id": "637b6d610aef6cfc5e02dd14", - "_name": "pistolgrip_pm_gct_pm_tactic_kit", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "Щечки ЦНИИ Точмаш Бакелитовые для ПБ", - "ShortName": "ПБ Бакелит", - "Description": "Штатные бакелитовые? щечки для пистолета ПБ.", - "Weight": 0.114, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_pm_gct_pm_tactic_kit.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "637b6db5c49199abef0ac784", - "_parent": "637b6d610aef6cfc5e02dd14", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7b483fe899ef0016170d15", - "5a7b4900e899ef197b331a2a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 12, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "5649ade84bdc2d1b2b8b4587" - }, "5a339805c4a2826c6e06d73d": { "_id": "5a339805c4a2826c6e06d73d", "_name": "pistolgrip_ar15_magpul_miad_gen_1_fde", @@ -122047,89 +124555,6 @@ }, "_proto": "55802f5d4bdc2dac148b458f" }, - "6374a7e7417239a7bf00f042": { - "_id": "6374a7e7417239a7bf00f042", - "_name": "pistolgrip_pm_izhmeh_pm_std", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "Щечки ЦНИИ Точмаш Бакелитовые для ПБ", - "ShortName": "ПБ Бакелит", - "Description": "Штатные бакелитовые? щечки для пистолета ПБ.", - "Weight": 0.102, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_pm_izhmeh_pm_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "5649ade84bdc2d1b2b8b4587" - }, "5947f92f86f77427344a76b1": { "_id": "5947f92f86f77427344a76b1", "_name": "pistolgrip_ak_tapco_saw_blk", @@ -122296,106 +124721,23 @@ }, "_proto": "55802f5d4bdc2dac148b458f" }, - "64cbad529f7cf7f75c077fd5": { - "_id": "64cbad529f7cf7f75c077fd5", - "_name": "pistolgrip_pkm_zid_pk_black", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ak_izhmash_ak74_bakelit", - "ShortName": "pistolgrip_ak_izhmash_ak74_bakelit", - "Description": "pistolgrip_ak_izhmash_ak74_bakelit", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_pkm_zid_pk_black.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "5ea16acdfadf1d18c87b0784": { - "_id": "5ea16acdfadf1d18c87b0784", - "_name": "handguard_ar15_geissele_smr_mk16_95_inch", + "6065880c132d4d12c81fd8da": { + "_id": "6065880c132d4d12c81fd8da", + "_name": "handguard_ar10_cmmg_mk3_rml9_m_lok", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", - "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Weight": 0.335, + "Name": "handguard_ar10_cmmg_mk3_rml9_m_lok", + "ShortName": "handguard_ar10_cmmg_mk3_rml9_m_lok", + "Description": "handguard_ar10_cmmg_mk3_rml9_m_lok", + "Weight": 0.155, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_geissele_smr_mk16_95_inch.bundle", + "path": "assets/content/items/mods/handguards/handguard_ar10_cmmg_mk3_rml9_m_lok.bundle", "rcid": "" }, "UsePrefab": { @@ -122426,7 +124768,6 @@ "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [ - "5a34fbadc4a28200741e230a", "5ae30e795acfc408fb139a0b", "56ea8d2fd2720b7c698b4570" ], @@ -122447,8 +124788,8 @@ "Slots": [ { "_name": "mod_mount_000", - "_id": "5ea16acdfadf1d18c87b0786", - "_parent": "5ea16acdfadf1d18c87b0784", + "_id": "6065880c132d4d12c81fd8dc", + "_parent": "6065880c132d4d12c81fd8da", "_props": { "filters": [ { @@ -122467,8 +124808,8 @@ }, { "_name": "mod_mount_001", - "_id": "5ea16acdfadf1d18c87b0787", - "_parent": "5ea16acdfadf1d18c87b0784", + "_id": "6065880c132d4d12c81fd8dd", + "_parent": "6065880c132d4d12c81fd8da", "_props": { "filters": [ { @@ -122487,18 +124828,16 @@ }, { "_name": "mod_tactical_000", - "_id": "5ea16acdfadf1d18c87b0788", - "_parent": "5ea16acdfadf1d18c87b0784", + "_id": "6065880c132d4d12c81fd8de", + "_parent": "6065880c132d4d12c81fd8da", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "57fd23e32459772d0805bcf1", "544909bb4bdc2d6f028b4577", "5d10b49bd7ad1a1a560708b0", "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", "61605d88ffa6e502ac5e7eeb", "5c5952732e2216398b5abda2", "644a3df63b0b6f03e101e065" @@ -122510,28 +124849,10 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, - { - "_name": "mod_scope", - "_id": "5ea16acdfadf1d18c87b0789", - "_parent": "5ea16acdfadf1d18c87b0784", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_foregrip", - "_id": "5ea16acdfadf1d18c87b078a", - "_parent": "5ea16acdfadf1d18c87b0784", + "_id": "6065880c132d4d12c81fd8df", + "_parent": "6065880c132d4d12c81fd8da", "_props": { "filters": [ { @@ -122554,8 +124875,8 @@ }, { "_name": "mod_sight_front", - "_id": "5ea16acdfadf1d18c87b078b", - "_parent": "5ea16acdfadf1d18c87b0784", + "_id": "6065880c132d4d12c81fd8e0", + "_parent": "6065880c132d4d12c81fd8da", "_props": { "filters": [ { @@ -122577,740 +124898,11 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.996, - "CoolFactor": 1.054 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "6086b5731246154cad35d6c7": { - "_id": "6086b5731246154cad35d6c7", - "_name": "handguard_saiga12_custom_guns_type_340", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_saiga12_custom_guns_type_340", - "ShortName": "handguard_saiga12_custom_guns_type_340", - "Description": "handguard_saiga12_custom_guns_type_340", - "Weight": 0.24, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_saiga12_custom_guns_type_340.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_001", - "_id": "60acc2771a425a107168ef64", - "_parent": "6086b5731246154cad35d6c7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6086b5392535c57a13424d70" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "60acc2835e7d98225b738655", - "_parent": "6086b5731246154cad35d6c7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6086b5392535c57a13424d70" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "60acc28fab5d1052a56d9c10", - "_parent": "6086b5731246154cad35d6c7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6086b5392535c57a13424d70" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.021, - "CoolFactor": 1 - }, - "_proto": "5827272a24597748c74bdeea" - }, - "5c5db5f22e2216000e5e47e8": { - "_id": "5c5db5f22e2216000e5e47e8", - "_name": "handguard_mpx_midwest_4,5_inch_m_lok", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_mpx_lancer_oem_14_inch", - "ShortName": "handguard_mpx_lancer_oem_14_inch", - "Description": "handguard_mpx_lancer_oem_14_inch", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mpx_midwest_4,5_inch_m_lok.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5c5db5f22e2216000e5e47ea", - "_parent": "5c5db5f22e2216000e5e47e8", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5c5db5f22e2216000e5e47eb", - "_parent": "5c5db5f22e2216000e5e47e8", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5c5db5f22e2216000e5e47ec", - "_parent": "5c5db5f22e2216000e5e47e8", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5c5dbb0c2e2216652a75c232", - "_parent": "5c5db5f22e2216000e5e47e8", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 15, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.991, - "CoolFactor": 1.004 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5648ae314bdc2d3d1c8b457f": { - "_id": "5648ae314bdc2d3d1c8b457f", - "_name": "handguard_ak_caa_quad_rail_polymer", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье CAA RS47 для AK и совместимых", - "ShortName": "CAA RS47", - "Description": "Цевье RS47 от компании Command Arms из легкого полимера, подходит для большинства винтовок и карабинов выполненных на базе АК. Оснащено двумя длинными и двумя короткими направляющими для крепления доп. оборудования.", - "Weight": 0.22, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_caa_quad_rail_polymer.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5649d4c04bdc2d3d1c8b4586", - "_parent": "5648ae314bdc2d3d1c8b457f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" }, { "_name": "mod_scope", - "_id": "5649d5094bdc2d16268b457d", - "_parent": "5648ae314bdc2d3d1c8b457f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b2c9c4a282000c5a9511", - "644a3df63b0b6f03e101e065", - "64785e7c19d732620e045e15", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "5649d5494bdc2d1b2b8b458b", - "_parent": "5648ae314bdc2d3d1c8b457f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "5649d5534bdc2d9d198b4569", - "_parent": "5648ae314bdc2d3d1c8b457f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.032, - "CoolFactor": 1.035 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "6034e3e20ddce744014cb878": { - "_id": "6034e3e20ddce744014cb878", - "_name": "handguard_ar15_stmarms_12_inch_m_lok", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", - "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_stmarms_12_inch_m_lok.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a34fbadc4a28200741e230a", - "5ae30e795acfc408fb139a0b", - "56ea8d2fd2720b7c698b4570", - "55d35ee94bdc2d61338b4568", - "603372b4da11d6478d5a07ff" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "6034e3e20ddce744014cb87a", - "_parent": "6034e3e20ddce744014cb878", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "6034e3e20ddce744014cb87b", - "_parent": "6034e3e20ddce744014cb878", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "6034e3e20ddce744014cb87c", - "_parent": "6034e3e20ddce744014cb878", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "6034e3e20ddce744014cb87d", - "_parent": "6034e3e20ddce744014cb878", + "_id": "6093ba3ef2cb2e02a42acfe4", + "_parent": "6065880c132d4d12c81fd8da", "_props": { "filters": [ { @@ -123324,56 +124916,6 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "6034e3e20ddce744014cb87f", - "_parent": "6034e3e20ddce744014cb878", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "6034e3e20ddce744014cb880", - "_parent": "6034e3e20ddce744014cb878", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, @@ -123383,1226 +124925,6 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 6.5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.982, - "CoolFactor": 1.115 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5648b1504bdc2d9d488b4584": { - "_id": "5648b1504bdc2d9d488b4584", - "_name": "handguard_ak_izhmash_ak74m_std_plastic", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье пполимерное для AK-74", - "ShortName": "AK-74 пл.ц.", - "Description": "Полимерное цевье для автомата АК-74 производства Ижмаш, пришедшее на смену классическому деревянному.", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_izhmash_ak74m_std_plastic.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.045, - "CoolFactor": 0.962 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "5cf4e3f3d7f00c06595bc7f0": { - "_id": "5cf4e3f3d7f00c06595bc7f0", - "_name": "handguard_ak_545_design_red_heat_agressor", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_545_design_red_heat_agressor", - "ShortName": "handguard_ak_545_design_red_heat_agressor", - "Description": "handguard_ak_545_design_red_heat_agressor", - "Weight": 0.26, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_545_design_red_heat_agressor.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5cf4e3f3d7f00c06595bc7f2", - "_parent": "5cf4e3f3d7f00c06595bc7f0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5cf4e3f3d7f00c06595bc7f3", - "_parent": "5cf4e3f3d7f00c06595bc7f0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15", - "644a3df63b0b6f03e101e065", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "5cf4e3f3d7f00c06595bc7f4", - "_parent": "5cf4e3f3d7f00c06595bc7f0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "5cf4e3f3d7f00c06595bc7f5", - "_parent": "5cf4e3f3d7f00c06595bc7f0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5cf4e4c5d7f00c05464b2942", - "_parent": "5cf4e3f3d7f00c06595bc7f0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_003", - "_id": "5cf4e4ced7f00c06595bc7f6", - "_parent": "5cf4e3f3d7f00c06595bc7f0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.92, - "CoolFactor": 1.086 - }, - "_proto": "5648b1504bdc2d9d488b4584" - }, - "57dc32dc245977596d4ef3d3": { - "_id": "57dc32dc245977596d4ef3d3", - "_name": "handguard_aks74u_izhmash_aks74u_std_wood", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_aks74u_izhmash_aks74u_std_wood", - "ShortName": "handguard_aks74u_izhmash_aks74u_std_wood", - "Description": "handguard_aks74u_izhmash_aks74u_std_wood", - "Weight": 0.116, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_aks74u_izhmash_aks74u_std_wood.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.052, - "CoolFactor": 0.953 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "637f57d2f5ef8c33840d36c4": { - "_id": "637f57d2f5ef8c33840d36c4", - "_name": "handguard_ar15_kac_urx_3_8_inch_lower", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar15_kac_urx_3_8_inch", - "ShortName": "handguard_ar15_kac_urx_3_8_inch", - "Description": "handguard_ar15_kac_urx_3_8_inch", - "Weight": 0.072, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_kac_urx_3_8_inch_lower.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a34fbadc4a28200741e230a", - "5ae30e795acfc408fb139a0b", - "56ea8d2fd2720b7c698b4570" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "637f57d2f5ef8c33840d36c7", - "_parent": "637f57d2f5ef8c33840d36c4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d123b7dd7ad1a004f01b262", - "5d124c1ad7ad1a12227c53a7", - "5d133067d7ad1a33013f95b4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_003", - "_id": "637f57d2f5ef8c33840d36cc", - "_parent": "637f57d2f5ef8c33840d36c4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.005, - "CoolFactor": 1.023 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "633ec8e4025b096d320a3b1e": { - "_id": "633ec8e4025b096d320a3b1e", - "_name": "pistolgrip_rsh12_kbp_rsh12_std", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_rhino_chiappa_std", - "ShortName": "pistolgrip_rhino_chiappa_std", - "Description": "pistolgrip_rhino_chiappa_std", - "Weight": 0.11, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_rsh12_kbp_rsh12_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "5a38eecdc4a282329a73b512": { - "_id": "5a38eecdc4a282329a73b512", - "_name": "pistolgrip_toz-106_toz_000_002", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_toz-106_toz_000_002", - "ShortName": "pistolgrip_toz-106_toz_000_002", - "Description": "pistolgrip_toz-106_toz_000_002", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_toz-106_toz_000_002.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "5894a51286f77426d13baf02": { - "_id": "5894a51286f77426d13baf02", - "_name": "pistolgrip_mpx_sig_mpx_std", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_mpx_sig_mpx_std", - "ShortName": "pistolgrip_mpx_sig_mpx_std", - "Description": "pistolgrip_mpx_sig_mpx_std", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_mpx_sig_mpx_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55802f5d4bdc2dac148b458f" - }, - "57c55f092459772d291a8463": { - "_id": "57c55f092459772d291a8463", - "_name": "pistolgrip_ar15_hogue_overmolded_ge", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ar15_hogue_overmolded_ge", - "ShortName": "pistolgrip_ar15_hogue_overmolded_ge", - "Description": "pistolgrip_ar15_hogue_overmolded_ge", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hogue_overmolded_ge.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "57c55efc2459772d2c6271e7" - }, - "5beec3e30db8340019619424": { - "_id": "5beec3e30db8340019619424", - "_name": "handguard_rpk16_izhmash_rpk16_std", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_hexagon_ak", - "ShortName": "handguard_ak_hexagon_ak", - "Description": "handguard_ak_hexagon_ak", - "Weight": 0.167, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_rpk16_izhmash_rpk16_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5beec3e30db8340019619426", - "_parent": "5beec3e30db8340019619424", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5beecbb80db834001d2c465e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5beec3e30db8340019619427", - "_parent": "5beec3e30db8340019619424", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5beecbb80db834001d2c465e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5beeccbb0db83400196194c7", - "_parent": "5beec3e30db8340019619424", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5bf27b580db834001961955e", - "_parent": "5beec3e30db8340019619424", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5bf2a0740db834001961993a", - "_parent": "5beec3e30db8340019619424", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, "Ergonomics": 6, "Velocity": 0, "RaidModdable": false, @@ -124614,28 +124936,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.038, - "CoolFactor": 0.963 + "HeatFactor": 0.975, + "CoolFactor": 1.08 }, - "_proto": "5648b0744bdc2d363b8b4578" + "_proto": "55d459824bdc2d892f8b4573" }, - "5c5db6302e2216000e5e47f0": { - "_id": "5c5db6302e2216000e5e47f0", - "_name": "handguard_mpx_midwest_10,5_inch_m_lok", + "59e898ee86f77427614bd225": { + "_id": "59e898ee86f77427614bd225", + "_name": "handguard_ak_molot_vepr_km_vpo_209", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_mpx_lancer_oem_14_inch", - "ShortName": "handguard_mpx_lancer_oem_14_inch", - "Description": "handguard_mpx_lancer_oem_14_inch", - "Weight": 0.226, + "Name": "handguard_ak_izhmash_akm_std_wood", + "ShortName": "handguard_ak_izhmash_akm_std_wood", + "Description": "handguard_ak_izhmash_akm_std_wood", + "Weight": 0.26, "BackgroundColor": "blue", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mpx_midwest_10,5_inch_m_lok.bundle", + "path": "assets/content/items/mods/handguards/handguard_ak_molot_vepr_km_vpo_209.bundle", "rcid": "" }, "UsePrefab": { @@ -124652,12 +124974,12 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, + "LootExperience": 5, "ExamineExperience": 3, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 2, + "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -124680,148 +125002,18 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5c5db6302e2216000e5e47f2", - "_parent": "5c5db6302e2216000e5e47f0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5c5db6302e2216000e5e47f3", - "_parent": "5c5db6302e2216000e5e47f0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5c5db6302e2216000e5e47f4", - "_parent": "5c5db6302e2216000e5e47f0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "5c5db6302e2216000e5e47f5", - "_parent": "5c5db6302e2216000e5e47f0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5c5db6302e2216000e5e47f7", - "_parent": "5c5db6302e2216000e5e47f0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be4895acfc400170e2dd5", - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "651a8e529829226ceb67c319", - "651a8bf3a8520e48047bf708" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5c5dbb612e22167712247c32", - "_parent": "5c5db6302e2216000e5e47f0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -2, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 9, + "Ergonomics": 4, "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, + "RaidModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -124829,28 +125021,28 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 0.964, - "CoolFactor": 1.044 + "HeatFactor": 1.054, + "CoolFactor": 0.95 }, - "_proto": "55d459824bdc2d892f8b4573" + "_proto": "5648ae314bdc2d3d1c8b457f" }, - "5f63418ef5750b524b45f116": { - "_id": "5f63418ef5750b524b45f116", - "_name": "handguard_saiga12_bravo18_saiga_handguard", + "653ecc425a1690d9d90491e4": { + "_id": "653ecc425a1690d9d90491e4", + "_name": "handguard_sks_ati_monte_carlo_cover", "_parent": "55818a104bdc2db9688b4569", "_type": "Item", "_props": { - "Name": "handguard_saiga12_bravo18_saiga_handguard", - "ShortName": "handguard_saiga12_bravo18_saiga_handguard", - "Description": "handguard_saiga12_bravo18_saiga_handguard", - "Weight": 0.37, + "Name": "handguard_sks_molot_op_sks_std", + "ShortName": "handguard_sks_molot_op_sks_std", + "Description": "handguard_sks_molot_op_sks_std", + "Weight": 0.1, "BackgroundColor": "blue", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_saiga12_bravo18_saiga_handguard.bundle", + "path": "assets/content/items/mods/handguards/handguard_sks_ati_monte_carlo_cover.bundle", "rcid": "" }, "UsePrefab": { @@ -124879,15 +125071,8 @@ "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5d0a29ead7ad1a0026013f27", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851" - ], + "CanRequireOnRagfair": true, + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -124902,290 +125087,18 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5f63418ef5750b524b45f118", - "_parent": "5f63418ef5750b524b45f116", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15", - "6478641c19d732620e045e17", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5f63418ef5750b524b45f119", - "_parent": "5f63418ef5750b524b45f116", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5f63418ef5750b524b45f11a", - "_parent": "5f63418ef5750b524b45f116", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "5f63418ef5750b524b45f11b", - "_parent": "5f63418ef5750b524b45f116", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "5f63418ef5750b524b45f11c", - "_parent": "5f63418ef5750b524b45f116", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_003", - "_id": "5f635bd3ea26e63a816e457d", - "_parent": "5f63418ef5750b524b45f116", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_004", - "_id": "5f635bedf524050b633336e7", - "_parent": "5f63418ef5750b524b45f116", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -3, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 5, + "Ergonomics": 6, "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, + "RaidModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -125193,10 +125106,10 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "HeatFactor": 1.049, - "CoolFactor": 1.082 + "HeatFactor": 1.007, + "CoolFactor": 0.988 }, - "_proto": "5827272a24597748c74bdeea" + "_proto": "5648ae314bdc2d3d1c8b457f" }, "5e56991336989c75ab4f03f6": { "_id": "5e56991336989c75ab4f03f6", @@ -125432,1409 +125345,6 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, - "5c5db5fc2e2216000f1b2842": { - "_id": "5c5db5fc2e2216000f1b2842", - "_name": "handguard_mpx_midwest_6,5_inch_m_lok", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_mpx_lancer_oem_14_inch", - "ShortName": "handguard_mpx_lancer_oem_14_inch", - "Description": "handguard_mpx_lancer_oem_14_inch", - "Weight": 0.14, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_mpx_midwest_6,5_inch_m_lok.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5c5db5fc2e2216000f1b2844", - "_parent": "5c5db5fc2e2216000f1b2842", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5c5db5fc2e2216000f1b2845", - "_parent": "5c5db5fc2e2216000f1b2842", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5c5db5fc2e2216000f1b2846", - "_parent": "5c5db5fc2e2216000f1b2842", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "5c5db5fc2e2216000f1b2847", - "_parent": "5c5db5fc2e2216000f1b2842", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269220d70b6c02e665f2635", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5c5db5fc2e2216000f1b2849", - "_parent": "5c5db5fc2e2216000f1b2842", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be4895acfc400170e2dd5", - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5c5dbb382e2216000f1b2962", - "_parent": "5c5db5fc2e2216000f1b2842", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.98, - "CoolFactor": 1.03 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "61703001d92c473c77021497": { - "_id": "61703001d92c473c77021497", - "_name": "handguard_417_hk_417_extended_free_float", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_416_hk_quad_rail_w_sight", - "ShortName": "handguard_416_hk_quad_rail_w_sight", - "Description": "handguard_416_hk_quad_rail_w_sight", - "Weight": 0.55, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_417_hk_417_extended_free_float.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "61703001d92c473c7702149b", - "_parent": "61703001d92c473c77021497", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "5a7dbfc1159bd40016548fde", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "5cf4fb76d7f00c065703d3ac", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "61703001d92c473c7702149c", - "_parent": "61703001d92c473c77021497", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "61703001d92c473c7702149d", - "_parent": "61703001d92c473c77021497", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "61703001d92c473c7702149e", - "_parent": "61703001d92c473c77021497", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "61703001d92c473c7702149f", - "_parent": "61703001d92c473c77021497", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.041, - "CoolFactor": 1.033 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "59e898ee86f77427614bd225": { - "_id": "59e898ee86f77427614bd225", - "_name": "handguard_ak_molot_vepr_km_vpo_209", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_izhmash_akm_std_wood", - "ShortName": "handguard_ak_izhmash_akm_std_wood", - "Description": "handguard_ak_izhmash_akm_std_wood", - "Weight": 0.26, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_molot_vepr_km_vpo_209.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.054, - "CoolFactor": 0.95 - }, - "_proto": "5648ae314bdc2d3d1c8b457f" - }, - "5bb20dfcd4351e00334c9e24": { - "_id": "5bb20dfcd4351e00334c9e24", - "_name": "handguard_416_hk_quad_rail_extended", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_416_hk_quad_rail_extended", - "ShortName": "handguard_416_hk_quad_rail_extended", - "Description": "handguard_416_hk_quad_rail_extended", - "Weight": 0.54, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_416_hk_quad_rail_extended.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5bb20d92d4351e00853263eb", - "5bb20d9cd4351e00334c9d8a", - "5bb20da5d4351e0035629dbf" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "5bb20dfcd4351e00334c9e26", - "_parent": "5bb20dfcd4351e00334c9e24", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "5a7dbfc1159bd40016548fde", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "5cf4fb76d7f00c065703d3ac", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5bb20dfcd4351e00334c9e27", - "_parent": "5bb20dfcd4351e00334c9e24", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5bb20dfcd4351e00334c9e2a", - "_parent": "5bb20dfcd4351e00334c9e24", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5bb212b8d4351e00367faf08", - "_parent": "5bb20dfcd4351e00334c9e24", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "5bb212bfd4351e00853263ef", - "_parent": "5bb20dfcd4351e00334c9e24", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "5bb212c5d4351e0034778875", - "_parent": "5bb20dfcd4351e00334c9e24", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.985, - "CoolFactor": 1.006 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "647dd2b8a12ebf96c3031655": { - "_id": "647dd2b8a12ebf96c3031655", - "_name": "handguard_ak_alfa_arms_aspid", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_zenit_b30", - "ShortName": "handguard_ak_zenit_b30", - "Description": "handguard_ak_zenit_b30", - "Weight": 0.37, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ak_alfa_arms_aspid.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "62e7e7bbe6da9612f743f1e0", - "5ac66d015acfc400180ae6e4", - "5ac66d725acfc43b321d4b60", - "5ac66d9b5acfc4001633997a", - "5649af884bdc2d1b2b8b4589" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "647dd2b8a12ebf96c3031656", - "_parent": "647dd2b8a12ebf96c3031655", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "647dd2b8a12ebf96c3031657", - "_parent": "647dd2b8a12ebf96c3031655", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15", - "644a3df63b0b6f03e101e065", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "647dd2b8a12ebf96c3031658", - "_parent": "647dd2b8a12ebf96c3031655", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "647dd2b8a12ebf96c3031659", - "_parent": "647dd2b8a12ebf96c3031655", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "647dd2b8a12ebf96c303165a", - "_parent": "647dd2b8a12ebf96c3031655", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2.5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.913, - "CoolFactor": 1.085 - }, - "_proto": "5648b1504bdc2d9d488b4584" - }, - "653ecc425a1690d9d90491e4": { - "_id": "653ecc425a1690d9d90491e4", - "_name": "handguard_sks_ati_monte_carlo_cover", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_sks_molot_op_sks_std", - "ShortName": "handguard_sks_molot_op_sks_std", - "Description": "handguard_sks_molot_op_sks_std", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_sks_ati_monte_carlo_cover.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.007, - "CoolFactor": 0.988 - }, - "_proto": "5648ae314bdc2d3d1c8b457f" - }, - "6087e0336d0bd7580617bb7a": { - "_id": "6087e0336d0bd7580617bb7a", - "_name": "handguard_ar15_unique_ars_wing_and_skull_12_inch", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar15_unique_ars_wing_and_skull_12_inch", - "ShortName": "handguard_ar15_unique_ars_wing_and_skull_12_inch", - "Description": "handguard_ar15_unique_ars_wing_and_skull_12_inch", - "Weight": 0.25, - "BackgroundColor": "violet", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_unique_ars_wing_and_skull_12_inch.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a34fbadc4a28200741e230a", - "5ae30e795acfc408fb139a0b", - "5d00ec68d7ad1a04a067e5be", - "56ea8d2fd2720b7c698b4570", - "55d35ee94bdc2d61338b4568" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 15, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.964, - "CoolFactor": 1.046 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5b7d678a5acfc4001a5c4022": { - "_id": "5b7d678a5acfc4001a5c4022", - "_name": "pistolgrip_sa58_ds_arms_metric_std", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_sa58_ds_arms_metric_std", - "ShortName": "pistolgrip_sa58_ds_arms_metric_std", - "Description": "pistolgrip_sa58_ds_arms_metric_std", - "Weight": 0.11, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_sa58_ds_arms_metric_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "5649ade84bdc2d1b2b8b4587" - }, "5c9a1c422e221600106f69f0": { "_id": "5c9a1c422e221600106f69f0", "_name": "handguard_ak_magpul_zhukov_u_plm", @@ -126985,6 +125495,169 @@ }, "_proto": "5648b0744bdc2d363b8b4578" }, + "63888bbd28e5cc32cc09d2b6": { + "_id": "63888bbd28e5cc32cc09d2b6", + "_name": "handguard_ar15_precision_reflex_carbon_fiber_delta_gen_3", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", + "Weight": 0.425, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_precision_reflex_carbon_fiber_delta_gen_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a34fbadc4a28200741e230a", + "55d35ee94bdc2d61338b4568", + "5ae30e795acfc408fb139a0b", + "56ea8d2fd2720b7c698b4570" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "63888bbd28e5cc32cc09d2b7", + "_parent": "63888bbd28e5cc32cc09d2b6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6388c5d19c00405f4717c0f0" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "63888bbd28e5cc32cc09d2b8", + "_parent": "63888bbd28e5cc32cc09d2b6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6388c4478d895f557a0c6512" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "63888c3def5ebe45d03b8af6", + "_parent": "63888bbd28e5cc32cc09d2b6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6388c4478d895f557a0c6512" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_003", + "_id": "63888c3def5ebe45d03b8af7", + "_parent": "63888bbd28e5cc32cc09d2b6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6388c4ac8d895f557a0c6515" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 14, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.03, + "CoolFactor": 1.25 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, "652910ef50dc782999054b97": { "_id": "652910ef50dc782999054b97", "_name": "handguard_mcx_sig_spear_m_lok", @@ -127161,169 +125834,6 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, - "63888bbd28e5cc32cc09d2b6": { - "_id": "63888bbd28e5cc32cc09d2b6", - "_name": "handguard_ar15_precision_reflex_carbon_fiber_delta_gen_3", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "ShortName": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Description": "handguard_ar15_stngr_vypr_m_lok_10_inch", - "Weight": 0.425, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_precision_reflex_carbon_fiber_delta_gen_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a34fbadc4a28200741e230a", - "55d35ee94bdc2d61338b4568", - "5ae30e795acfc408fb139a0b", - "56ea8d2fd2720b7c698b4570" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "63888bbd28e5cc32cc09d2b7", - "_parent": "63888bbd28e5cc32cc09d2b6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6388c5d19c00405f4717c0f0" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "63888bbd28e5cc32cc09d2b8", - "_parent": "63888bbd28e5cc32cc09d2b6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6388c4478d895f557a0c6512" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "63888c3def5ebe45d03b8af6", - "_parent": "63888bbd28e5cc32cc09d2b6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6388c4478d895f557a0c6512" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "63888c3def5ebe45d03b8af7", - "_parent": "63888bbd28e5cc32cc09d2b6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6388c4ac8d895f557a0c6515" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 14, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.03, - "CoolFactor": 1.25 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, "5c6d11152e2216000f2003e7": { "_id": "5c6d11152e2216000f2003e7", "_name": "handguard_416_strike_industries_crux_m_lok_15_inch", @@ -127869,6 +126379,172 @@ }, "_proto": "5649ade84bdc2d1b2b8b4587" }, + "5f6341043ada5942720e2dc5": { + "_id": "5f6341043ada5942720e2dc5", + "_name": "pistolgrip_ak_aeroknox_scorpius", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ak_aeroknox_scorpius", + "ShortName": "pistolgrip_ak_aeroknox_scorpius", + "Description": "pistolgrip_ak_aeroknox_scorpius", + "Weight": 0.14, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_aeroknox_scorpius.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 12, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "5649ade84bdc2d1b2b8b4587" + }, + "56d5a2bbd2720bb8418b456a": { + "_id": "56d5a2bbd2720bb8418b456a", + "_name": "pistolgrip_p226_sig_p226_std", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "Пистолетная рукоятка Sig Sauer черн. полимер для P226", + "ShortName": "GRIP226BLKPOL", + "Description": "бла бла бла", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_p226_sig_p226_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, "647db1eca8d3399c380d195c": { "_id": "647db1eca8d3399c380d195c", "_name": "handguard_aks74u_alfa_arms_goliaf_m_lok", @@ -128687,23 +127363,23 @@ }, "_proto": "55d4b9964bdc2d1d4e8b456e" }, - "5888976c24597754281f93f5": { - "_id": "5888976c24597754281f93f5", - "_name": "handguard_dvl-10_lobaev_dvl-10_m2_std", - "_parent": "55818a104bdc2db9688b4569", + "5c00076d0db834001d23ee1f": { + "_id": "5c00076d0db834001d23ee1f", + "_name": "pistolgrip_p226_sig_stainless_elite", + "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "handguard_dvl-10_lobaev_dvl-10_m2_std", - "ShortName": "handguard_dvl-10_lobaev_dvl-10_m2_std", - "Description": "handguard_dvl-10_lobaev_dvl-10_m2_std", - "Weight": 0.223, + "Name": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", + "ShortName": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", + "Description": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", + "Weight": 0.08, "BackgroundColor": "blue", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_dvl-10_lobaev_dvl-10_m2_std.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_p226_sig_stainless_elite.bundle", "rcid": "" }, "UsePrefab": { @@ -128720,156 +127396,8 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical_000", - "_id": "5888983e24597752415de72a", - "_parent": "5888976c24597754281f93f5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "5888984724597752415de72c", - "_parent": "5888976c24597754281f93f5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "626becf9582c3e319310b837", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.992, - "CoolFactor": 1.041 - }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "638f1ff84822287cad04be9d": { - "_id": "638f1ff84822287cad04be9d", - "_name": "handguard_ar15_dd_ris_ii_9,5_lower", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "Цевье Daniel Defence RIS II 9.5 для AR-15 и совместимых", - "ShortName": "RIS II 9.5", - "Description": "Цевье Daniel Defence RIS II 9.5. Является частью программы SOPMOD Block II для замены штатного цевья карабина M4CQBR или Mk18 в подразделениях US SOCOM. Выполнено из легкого и прочного авиационного алюминия. Снабжено 4-мя направляющими для крепления дополнительного оборудования. Данный вариант цевья не совместим с подствольным гранатометом М203.", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_dd_ris_ii_9,5_lower.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, + "LootExperience": 5, + "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -128896,66 +127424,15 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_foregrip", - "_id": "638f1ff84822287cad04be9e", - "_parent": "638f1ff84822287cad04be9d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "5a7dbfc1159bd40016548fde", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "64806bdd26c80811d408d37a", - "64807a29e5ffe165600abc97", - "648067db042be0705c0b3009", - "65169d5b30425317755f8e25", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -1, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 5, + "Ergonomics": 8, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -128965,298 +127442,9 @@ "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.992, - "CoolFactor": 1.012 + "UniqueAnimationModID": 0 }, - "_proto": "55d459824bdc2d892f8b4573" - }, - "5d4405f0a4b9361e6a4e6bd9": { - "_id": "5d4405f0a4b9361e6a4e6bd9", - "_name": "handguard_ar15_lone_star_ion_lite_m_lok_16_inch", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ar15_lone_star_ion_lite_m_lok_16_inch", - "ShortName": "handguard_ar15_lone_star_ion_lite_m_lok_16_inch", - "Description": "handguard_ar15_lone_star_ion_lite_m_lok_16_inch", - "Weight": 0.38, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_ar15_lone_star_ion_lite_m_lok_16_inch.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 3, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a34fbadc4a28200741e230a", - "5ae30e795acfc408fb139a0b", - "56ea8d2fd2720b7c698b4570", - "55d35ee94bdc2d61338b4568", - "55d3632e4bdc2d972f8b4569", - "5c0e2f94d174af029f650d56", - "63d3ce0446bd475bcb50f55f", - "63d3d44a2a49307baf09386d" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5d4405f0a4b9361e6a4e6bdb", - "_parent": "5d4405f0a4b9361e6a4e6bd9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5d4405f0a4b9361e6a4e6bdc", - "_parent": "5d4405f0a4b9361e6a4e6bd9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5d4405f0a4b9361e6a4e6bdd", - "_parent": "5d4405f0a4b9361e6a4e6bd9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269545d0e57f218e4548ca2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5d4405f0a4b9361e6a4e6bde", - "_parent": "5d4405f0a4b9361e6a4e6bd9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269545d0e57f218e4548ca2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_003", - "_id": "5d4405f0a4b9361e6a4e6bdf", - "_parent": "5d4405f0a4b9361e6a4e6bd9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269545d0e57f218e4548ca2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_004", - "_id": "5d4405f0a4b9361e6a4e6be0", - "_parent": "5d4405f0a4b9361e6a4e6bd9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269545d0e57f218e4548ca2", - "6269220d70b6c02e665f2635" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5d4405f0a4b9361e6a4e6be1", - "_parent": "5d4405f0a4b9361e6a4e6bd9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c", - "55d4af3a4bdc2d972f8b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5d440f5da4b9367e2e0ff589", - "_parent": "5d4405f0a4b9361e6a4e6bd9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57cffb66245977632f391a99", - "57cffcd624597763133760c5", - "57cffcdd24597763f5110006", - "57cffce524597763b31685d8", - "5b7be4895acfc400170e2dd5", - "651a8bf3a8520e48047bf708", - "651a8e529829226ceb67c319" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5d444418a4b93677c8374e16", - "_parent": "5d4405f0a4b9361e6a4e6bd9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2", - "6269545d0e57f218e4548ca2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 1, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 11, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 0.961, - "CoolFactor": 1.12 - }, - "_proto": "55d459824bdc2d892f8b4573" + "_proto": "55d4b9964bdc2d1d4e8b456e" }, "5b7be2345acfc400196d524a": { "_id": "5b7be2345acfc400196d524a", @@ -129641,6 +127829,142 @@ }, "_proto": "55d459824bdc2d892f8b4573" }, + "638f1ff84822287cad04be9d": { + "_id": "638f1ff84822287cad04be9d", + "_name": "handguard_ar15_dd_ris_ii_9,5_lower", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье Daniel Defence RIS II 9.5 для AR-15 и совместимых", + "ShortName": "RIS II 9.5", + "Description": "Цевье Daniel Defence RIS II 9.5. Является частью программы SOPMOD Block II для замены штатного цевья карабина M4CQBR или Mk18 в подразделениях US SOCOM. Выполнено из легкого и прочного авиационного алюминия. Снабжено 4-мя направляющими для крепления дополнительного оборудования. Данный вариант цевья не совместим с подствольным гранатометом М203.", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_dd_ris_ii_9,5_lower.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "638f1ff84822287cad04be9e", + "_parent": "638f1ff84822287cad04be9d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "5a7dbfc1159bd40016548fde", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.992, + "CoolFactor": 1.012 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, "5d00f63bd7ad1a59283b1c1e": { "_id": "5d00f63bd7ad1a59283b1c1e", "_name": "handguard_ar15_strike_industries_viper_fde", @@ -130314,6 +128638,1901 @@ }, "_proto": "55d4b9964bdc2d1d4e8b456e" }, + "5ea16acdfadf1d18c87b0784": { + "_id": "5ea16acdfadf1d18c87b0784", + "_name": "handguard_ar15_geissele_smr_mk16_95_inch", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", + "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Weight": 0.335, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_geissele_smr_mk16_95_inch.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a34fbadc4a28200741e230a", + "5ae30e795acfc408fb139a0b", + "56ea8d2fd2720b7c698b4570" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5ea16acdfadf1d18c87b0786", + "_parent": "5ea16acdfadf1d18c87b0784", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5ea16acdfadf1d18c87b0787", + "_parent": "5ea16acdfadf1d18c87b0784", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5ea16acdfadf1d18c87b0788", + "_parent": "5ea16acdfadf1d18c87b0784", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5ea16acdfadf1d18c87b0789", + "_parent": "5ea16acdfadf1d18c87b0784", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5ea16acdfadf1d18c87b078a", + "_parent": "5ea16acdfadf1d18c87b0784", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5ea16acdfadf1d18c87b078b", + "_parent": "5ea16acdfadf1d18c87b0784", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.996, + "CoolFactor": 1.054 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5648b1504bdc2d9d488b4584": { + "_id": "5648b1504bdc2d9d488b4584", + "_name": "handguard_ak_izhmash_ak74m_std_plastic", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "Цевье пполимерное для AK-74", + "ShortName": "AK-74 пл.ц.", + "Description": "Полимерное цевье для автомата АК-74 производства Ижмаш, пришедшее на смену классическому деревянному.", + "Weight": 0.25, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_izhmash_ak74m_std_plastic.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.045, + "CoolFactor": 0.962 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, + "5cf4e3f3d7f00c06595bc7f0": { + "_id": "5cf4e3f3d7f00c06595bc7f0", + "_name": "handguard_ak_545_design_red_heat_agressor", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ak_545_design_red_heat_agressor", + "ShortName": "handguard_ak_545_design_red_heat_agressor", + "Description": "handguard_ak_545_design_red_heat_agressor", + "Weight": 0.26, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ak_545_design_red_heat_agressor.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "5cf4e3f3d7f00c06595bc7f2", + "_parent": "5cf4e3f3d7f00c06595bc7f0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "64806bdd26c80811d408d37a", + "64807a29e5ffe165600abc97", + "648067db042be0705c0b3009", + "65169d5b30425317755f8e25", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5cf4e3f3d7f00c06595bc7f3", + "_parent": "5cf4e3f3d7f00c06595bc7f0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5a33b2c9c4a282000c5a9511", + "64785e7c19d732620e045e15", + "644a3df63b0b6f03e101e065", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5cf4e3f3d7f00c06595bc7f4", + "_parent": "5cf4e3f3d7f00c06595bc7f0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "5cf4e3f3d7f00c06595bc7f5", + "_parent": "5cf4e3f3d7f00c06595bc7f0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5cf4e4c5d7f00c05464b2942", + "_parent": "5cf4e3f3d7f00c06595bc7f0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_003", + "_id": "5cf4e4ced7f00c06595bc7f6", + "_parent": "5cf4e3f3d7f00c06595bc7f0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.92, + "CoolFactor": 1.086 + }, + "_proto": "5648b1504bdc2d9d488b4584" + }, + "637f57d2f5ef8c33840d36c4": { + "_id": "637f57d2f5ef8c33840d36c4", + "_name": "handguard_ar15_kac_urx_3_8_inch_lower", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_ar15_kac_urx_3_8_inch", + "ShortName": "handguard_ar15_kac_urx_3_8_inch", + "Description": "handguard_ar15_kac_urx_3_8_inch", + "Weight": 0.072, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_kac_urx_3_8_inch_lower.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a34fbadc4a28200741e230a", + "5ae30e795acfc408fb139a0b", + "56ea8d2fd2720b7c698b4570" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_foregrip", + "_id": "637f57d2f5ef8c33840d36c7", + "_parent": "637f57d2f5ef8c33840d36c4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d123b7dd7ad1a004f01b262", + "5d124c1ad7ad1a12227c53a7", + "5d133067d7ad1a33013f95b4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_003", + "_id": "637f57d2f5ef8c33840d36cc", + "_parent": "637f57d2f5ef8c33840d36c4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.005, + "CoolFactor": 1.023 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "57dc32dc245977596d4ef3d3": { + "_id": "57dc32dc245977596d4ef3d3", + "_name": "handguard_aks74u_izhmash_aks74u_std_wood", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_aks74u_izhmash_aks74u_std_wood", + "ShortName": "handguard_aks74u_izhmash_aks74u_std_wood", + "Description": "handguard_aks74u_izhmash_aks74u_std_wood", + "Weight": 0.116, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_aks74u_izhmash_aks74u_std_wood.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 1.052, + "CoolFactor": 0.953 + }, + "_proto": "5648b0744bdc2d363b8b4578" + }, + "6034e3e20ddce744014cb878": { + "_id": "6034e3e20ddce744014cb878", + "_name": "handguard_ar15_stmarms_12_inch_m_lok", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", + "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_ar15_stmarms_12_inch_m_lok.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a34fbadc4a28200741e230a", + "5ae30e795acfc408fb139a0b", + "56ea8d2fd2720b7c698b4570", + "55d35ee94bdc2d61338b4568", + "603372b4da11d6478d5a07ff" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "6034e3e20ddce744014cb87a", + "_parent": "6034e3e20ddce744014cb878", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "6034e3e20ddce744014cb87b", + "_parent": "6034e3e20ddce744014cb878", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "6034e3e20ddce744014cb87c", + "_parent": "6034e3e20ddce744014cb878", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "6034e3e20ddce744014cb87d", + "_parent": "6034e3e20ddce744014cb878", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "6034e3e20ddce744014cb87f", + "_parent": "6034e3e20ddce744014cb878", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "6034e3e20ddce744014cb880", + "_parent": "6034e3e20ddce744014cb878", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6.5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.982, + "CoolFactor": 1.115 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "633ec8e4025b096d320a3b1e": { + "_id": "633ec8e4025b096d320a3b1e", + "_name": "pistolgrip_rsh12_kbp_rsh12_std", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_rhino_chiappa_std", + "ShortName": "pistolgrip_rhino_chiappa_std", + "Description": "pistolgrip_rhino_chiappa_std", + "Weight": 0.11, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_rsh12_kbp_rsh12_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "5a38eecdc4a282329a73b512": { + "_id": "5a38eecdc4a282329a73b512", + "_name": "pistolgrip_toz-106_toz_000_002", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_toz-106_toz_000_002", + "ShortName": "pistolgrip_toz-106_toz_000_002", + "Description": "pistolgrip_toz-106_toz_000_002", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_toz-106_toz_000_002.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "5894a51286f77426d13baf02": { + "_id": "5894a51286f77426d13baf02", + "_name": "pistolgrip_mpx_sig_mpx_std", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_mpx_sig_mpx_std", + "ShortName": "pistolgrip_mpx_sig_mpx_std", + "Description": "pistolgrip_mpx_sig_mpx_std", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_mpx_sig_mpx_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55802f5d4bdc2dac148b458f" + }, + "57c55f092459772d291a8463": { + "_id": "57c55f092459772d291a8463", + "_name": "pistolgrip_ar15_hogue_overmolded_ge", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ar15_hogue_overmolded_ge", + "ShortName": "pistolgrip_ar15_hogue_overmolded_ge", + "Description": "pistolgrip_ar15_hogue_overmolded_ge", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hogue_overmolded_ge.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "57c55efc2459772d2c6271e7" + }, + "5fc235db2770a0045c59c683": { + "_id": "5fc235db2770a0045c59c683", + "_name": "handguard_mk18_sword_mjolnir_18_inch", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_mk18_sword_mjolnir_18_inch", + "ShortName": "handguard_mk18_sword_mjolnir_18_inch", + "Description": "handguard_mk18_sword_mjolnir_18_inch", + "Weight": 0.42, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_mk18_sword_mjolnir_18_inch.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a34fbadc4a28200741e230a", + "5ae30e795acfc408fb139a0b", + "56ea8d2fd2720b7c698b4570", + "55d35ee94bdc2d61338b4568", + "55d3632e4bdc2d972f8b4569", + "5c0e2f94d174af029f650d56" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5fc235db2770a0045c59c685", + "_parent": "5fc235db2770a0045c59c683", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5fc235db2770a0045c59c686", + "_parent": "5fc235db2770a0045c59c683", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5fc235db2770a0045c59c687", + "_parent": "5fc235db2770a0045c59c683", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269545d0e57f218e4548ca2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5fc235db2770a0045c59c688", + "_parent": "5fc235db2770a0045c59c683", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269545d0e57f218e4548ca2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5fc235db2770a0045c59c689", + "_parent": "5fc235db2770a0045c59c683", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5fc235db2770a0045c59c68a", + "_parent": "5fc235db2770a0045c59c683", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8e529829226ceb67c319", + "651a8bf3a8520e48047bf708" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5fc235db2770a0045c59c68b", + "_parent": "5fc235db2770a0045c59c683", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269545d0e57f218e4548ca2", + "6269220d70b6c02e665f2635" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 1, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.908, + "CoolFactor": 1.097 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, + "5c6d10fa2e221600106f3f23": { + "_id": "5c6d10fa2e221600106f3f23", + "_name": "handguard_416_midwest_m_lok_9_inch", + "_parent": "55818a104bdc2db9688b4569", + "_type": "Item", + "_props": { + "Name": "handguard_sa58_ds_arms_picatinny_quad_rail", + "ShortName": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Description": "handguard_sa58_ds_arms_picatinny_quad_rail", + "Weight": 0.28, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/handguards/handguard_416_midwest_m_lok_9_inch.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5c6d10fa2e221600106f3f25", + "_parent": "5c6d10fa2e221600106f3f23", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5c6d10fa2e221600106f3f26", + "_parent": "5c6d10fa2e221600106f3f23", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2", + "6269220d70b6c02e665f2635", + "6269545d0e57f218e4548ca2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5c6d10fa2e221600106f3f29", + "_parent": "5c6d10fa2e221600106f3f23", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5c6d10fa2e221600106f3f2a", + "_parent": "5c6d10fa2e221600106f3f23", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5c6d15592e2216000e69d4e0", + "_parent": "5c6d10fa2e221600106f3f23", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57cffb66245977632f391a99", + "57cffcd624597763133760c5", + "57cffcdd24597763f5110006", + "57cffce524597763b31685d8", + "5b7be4895acfc400170e2dd5", + "651a8bf3a8520e48047bf708", + "651a8e529829226ceb67c319" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5c6d15652e221600114c982c", + "_parent": "5c6d10fa2e221600106f3f23", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c", + "55d4af3a4bdc2d972f8b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "HeatFactor": 0.986, + "CoolFactor": 1.07 + }, + "_proto": "55d459824bdc2d892f8b4573" + }, "5df25d3bfd6b4e6e2276dc9a": { "_id": "5df25d3bfd6b4e6e2276dc9a", "_name": "handguard_t5000_orsis_t5000m_std", @@ -131326,108 +131545,23 @@ }, "_proto": "55d4b9964bdc2d1d4e8b456e" }, - "6448f2f6d4928d46d30be3f6": { - "_id": "6448f2f6d4928d46d30be3f6", - "_name": "handguard_9a91_kbp_vsk94_std", - "_parent": "55818a104bdc2db9688b4569", - "_type": "Item", - "_props": { - "Name": "handguard_ak_hexagon_ak", - "ShortName": "handguard_ak_hexagon_ak", - "Description": "handguard_ak_hexagon_ak", - "Weight": 0.167, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/handguards/handguard_9a91_kbp_vsk94_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "HeatFactor": 1.04, - "CoolFactor": 0.965 - }, - "_proto": "5648b0744bdc2d363b8b4578" - }, - "5f6341043ada5942720e2dc5": { - "_id": "5f6341043ada5942720e2dc5", - "_name": "pistolgrip_ak_aeroknox_scorpius", + "57c55f112459772d28133310": { + "_id": "57c55f112459772d28133310", + "_name": "pistolgrip_ar15_hogue_overmolded_gg", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "pistolgrip_ak_aeroknox_scorpius", - "ShortName": "pistolgrip_ak_aeroknox_scorpius", - "Description": "pistolgrip_ak_aeroknox_scorpius", - "Weight": 0.14, + "Name": "pistolgrip_ar15_hogue_overmolded_gg", + "ShortName": "pistolgrip_ar15_hogue_overmolded_gg", + "Description": "pistolgrip_ar15_hogue_overmolded_gg", + "Weight": 0.08, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_aeroknox_scorpius.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hogue_overmolded_gg.bundle", "rcid": "" }, "UsePrefab": { @@ -131480,7 +131614,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 12, + "Ergonomics": 9, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -131492,173 +131626,7 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0 }, - "_proto": "5649ade84bdc2d1b2b8b4587" - }, - "56d5a2bbd2720bb8418b456a": { - "_id": "56d5a2bbd2720bb8418b456a", - "_name": "pistolgrip_p226_sig_p226_std", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "Пистолетная рукоятка Sig Sauer черн. полимер для P226", - "ShortName": "GRIP226BLKPOL", - "Description": "бла бла бла", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_p226_sig_p226_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "5c0006470db834001a6697fe": { - "_id": "5c0006470db834001a6697fe", - "_name": "pistolgrip_p226_sig_emperor_scorpion", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", - "ShortName": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", - "Description": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_p226_sig_emperor_scorpion.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" + "_proto": "57c55f092459772d291a8463" }, "5649ae4a4bdc2d1b2b8b4588": { "_id": "5649ae4a4bdc2d1b2b8b4588", @@ -131743,23 +131711,23 @@ }, "_proto": "5649ade84bdc2d1b2b8b4587" }, - "576a63cd2459771e796e0e11": { - "_id": "576a63cd2459771e796e0e11", - "_name": "pistolgrip_mp443_izmeh_mp443_std", + "5cadc431ae921500113bb8d5": { + "_id": "5cadc431ae921500113bb8d5", + "_name": "pistolgrip_m9_beretta_m9a3_std", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "", - "ShortName": "", - "Description": "", - "Weight": 0.055, + "Name": "Пистолетная рукоятка Sig Sauer черн. полимер для P226", + "ShortName": "GRIP226BLKPOL", + "Description": "бла бла бла", + "Weight": 0.09, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_mp443_izmeh_mp443_std.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_m9_beretta_m9a3_std.bundle", "rcid": "" }, "UsePrefab": { @@ -131812,6 +131780,89 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "5c48a2c22e221602b313fb6c": { + "_id": "5c48a2c22e221602b313fb6c", + "_name": "pistolgrip_mdr_dt_mdr_std", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "Пистолетная рукоятка DI ECS FDE для AR-15 совместимых", + "ShortName": "ECS FDE", + "Description": "Полимерная пистолетная рукоятка ECS устанавливается на любое оружие совместимое с пистолетными рукоятками от AR-15. Единственное отличие от штатной рукоятки- цвет.", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_mdr_dt_mdr_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, "Ergonomics": 5, "Velocity": 0, "RaidModdable": false, @@ -131824,25 +131875,191 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0 }, - "_proto": "56d5a2bbd2720bb8418b456a" + "_proto": "55d4b9964bdc2d1d4e8b456e" }, - "628c9ab845c59e5b80768a81": { - "_id": "628c9ab845c59e5b80768a81", - "_name": "pistolgrip_ak_tango_down_ak_battle_grip_fde", + "57c55f172459772d27602381": { + "_id": "57c55f172459772d27602381", + "_name": "pistolgrip_ar15_hogue_overmolded_od", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "pistolgrip_ak_magpul_moe_ak", - "ShortName": "pistolgrip_ak_magpul_moe_ak", - "Description": "pistolgrip_ak_magpul_moe_ak", - "Weight": 0.11, + "Name": "pistolgrip_ar15_hogue_overmolded_od", + "ShortName": "pistolgrip_ar15_hogue_overmolded_od", + "Description": "pistolgrip_ar15_hogue_overmolded_od", + "Weight": 0.08, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_tango_down_ak_battle_grip_fde.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hogue_overmolded_od.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "57c55f112459772d28133310" + }, + "602e71bd53a60014f9705bfa": { + "_id": "602e71bd53a60014f9705bfa", + "_name": "pistolgrip_ar15_dlg_123", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "Пистолетная рукоятка DI ECS FDE для AR-15 совместимых", + "ShortName": "ECS FDE", + "Description": "Полимерная пистолетная рукоятка ECS устанавливается на любое оружие совместимое с пистолетными рукоятками от AR-15. Единственное отличие от штатной рукоятки- цвет.", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_dlg_123.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5.5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "5d023784d7ad1a049d4aa7f2": { + "_id": "5d023784d7ad1a049d4aa7f2", + "_name": "pistolgrip_vz58_fab_defence_ag_58", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ak_magpul_moe_ak", + "ShortName": "pistolgrip_ak_magpul_moe_ak", + "Description": "pistolgrip_ak_magpul_moe_ak", + "Weight": 0.113, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_vz58_fab_defence_ag_58.bundle", "rcid": "" }, "UsePrefab": { @@ -131909,23 +132126,106 @@ }, "_proto": "5649ade84bdc2d1b2b8b4587" }, - "5addc7db5acfc4001669f279": { - "_id": "5addc7db5acfc4001669f279", - "_name": "pistolgrip_m14_sage_ebr_m14alcs_grip", + "56e05a6ed2720bd0748b4567": { + "_id": "56e05a6ed2720bd0748b4567", + "_name": "pistolgrip_pb_tochmash_pb_std", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "pistolgrip_m14_sage_ebr_m14alcs_grip", - "ShortName": "pistolgrip_m14_sage_ebr_m14alcs_grip", - "Description": "pistolgrip_m14_sage_ebr_m14alcs_grip", - "Weight": 0.08, + "Name": "Щечки ЦНИИ Точмаш Бакелитовые для ПБ", + "ShortName": "ПБ Бакелит", + "Description": "Штатные бакелитовые? щечки для пистолета ПБ.", + "Weight": 0.102, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_m14_sage_ebr_m14alcs_grip.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_pb_tochmash_pb_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "5649ade84bdc2d1b2b8b4587" + }, + "615d8faecabb9b7ad90f4d5d": { + "_id": "615d8faecabb9b7ad90f4d5d", + "_name": "pistolgrip_ar15_tactical_dynamics_hexgrip", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ar15_f1_firearms_st1_skeletonized", + "ShortName": "pistolgrip_ar15_f1_firearms_st1_skeletonized", + "Description": "pistolgrip_ar15_f1_firearms_st1_skeletonized", + "Weight": 0.064, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_tactical_dynamics_hexgrip.bundle", "rcid": "" }, "UsePrefab": { @@ -131978,7 +132278,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 6, + "Ergonomics": 7, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -132075,147 +132375,23 @@ }, "_proto": "55802f5d4bdc2dac148b458f" }, - "6516b129609aaf354b34b3a8": { - "_id": "6516b129609aaf354b34b3a8", - "_name": "pistolgrip_svd_s_lynxarms_svd_s_to_ak_adapter", + "59e6318286f77444dd62c4cc": { + "_id": "59e6318286f77444dd62c4cc", + "_name": "pistolgrip_ak_molot_bakelit", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "pistolgrip_ak_izhmash_ak74_bakelit", - "ShortName": "pistolgrip_ak_izhmash_ak74_bakelit", - "Description": "pistolgrip_ak_izhmash_ak74_bakelit", - "Weight": 0.033, + "Name": "pistolgrip_ak_molot_bakelit", + "ShortName": "pistolgrip_ak_molot_bakelit", + "Description": "pistolgrip_ak_molot_bakelit", + "Weight": 0.07, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_svd_s_lynxarms_svd_s_to_ak_adapter.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistolgrip", - "_id": "6516b176caa50259d91deb76", - "_parent": "6516b129609aaf354b34b3a8", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056", - "623c3be0484b5003161840dc" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "6087e663132d4d12c81fd96b": { - "_id": "6087e663132d4d12c81fd96b", - "_name": "pistolgrip_ak_custom_arms_ags74_pro_stage_2", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ak_custom_arms_ags74_pro_stage_2", - "ShortName": "pistolgrip_ak_custom_arms_ags74_pro_stage_2", - "Description": "pistolgrip_ak_custom_arms_ags74_pro_stage_2", - "Weight": 0.15, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_custom_arms_ags74_pro_stage_2.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_molot_bakelit.bundle", "rcid": "" }, "UsePrefab": { @@ -132263,173 +132439,7 @@ "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 14, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "5649ade84bdc2d1b2b8b4587" - }, - "637784c5f7b3f4ac1a0d1a9a": { - "_id": "637784c5f7b3f4ac1a0d1a9a", - "_name": "pistolgrip_pm_fab_defence_pm_g", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "Щечки ЦНИИ Точмаш Бакелитовые для ПБ", - "ShortName": "ПБ Бакелит", - "Description": "Штатные бакелитовые? щечки для пистолета ПБ.", - "Weight": 0.072, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_pm_fab_defence_pm_g.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 10 - }, - "_proto": "5649ade84bdc2d1b2b8b4587" - }, - "646371779f5f0ea59a04c204": { - "_id": "646371779f5f0ea59a04c204", - "_name": "pistolgrip_pkm_zid_pk_std", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ak_izhmash_ak74_bakelit", - "ShortName": "pistolgrip_ak_izhmash_ak74_bakelit", - "Description": "pistolgrip_ak_izhmash_ak74_bakelit", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_pkm_zid_pk_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, + "Durability": 90, "Accuracy": 0, "Recoil": 0, "Loudness": 0, @@ -132448,89 +132458,6 @@ }, "_proto": "55d4b9964bdc2d1d4e8b456e" }, - "5c6d7b3d2e221600114c9b7d": { - "_id": "5c6d7b3d2e221600114c9b7d", - "_name": "pistolgrip_ar15_hk_grip_v2", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ar15_hk_grip_v2", - "ShortName": "pistolgrip_ar15_hk_grip_v2", - "Description": "pistolgrip_ar15_hk_grip_v2", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hk_grip_v2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, "5bbde41ed4351e003562b038": { "_id": "5bbde41ed4351e003562b038", "_name": "pistolgrip_mosin_tacfire_pgmn", @@ -132614,15 +132541,98 @@ }, "_proto": "55d4b9964bdc2d1d4e8b456e" }, - "57e3dba62459770f0c32322b": { - "_id": "57e3dba62459770f0c32322b", - "_name": "pistolgrip_ak_izhmash_aks74u_std", + "5dcbd6dddbd3d91b3e5468de": { + "_id": "5dcbd6dddbd3d91b3e5468de", + "_name": "pistolgrip_mdr_dt_mdr_std_blk", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "pistolgrip_ak_izhmash_aks74u_std", - "ShortName": "pistolgrip_ak_izhmash_aks74u_std", - "Description": "pistolgrip_ak_izhmash_aks74u_std", + "Name": "pistolgrip_mdr_dt_mdr_std_blk", + "ShortName": "pistolgrip_mdr_dt_mdr_std_blk", + "Description": "pistolgrip_mdr_dt_mdr_std_blk", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_mdr_dt_mdr_std_blk.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "5998517986f7746017232f7e": { + "_id": "5998517986f7746017232f7e", + "_name": "pistolgrip_pp-19-01_izhmash_vityaz_plastic", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_pp-19-01_izhmash_vityaz_plastic", + "ShortName": "pistolgrip_pp-19-01_izhmash_vityaz_plastic", + "Description": "pistolgrip_pp-19-01_izhmash_vityaz_plastic", "Weight": 0.07, "BackgroundColor": "blue", "Width": 1, @@ -132630,7 +132640,256 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_izhmash_aks74_bakelit.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_pp-19-01_izhmash_vityaz_plastic.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6.5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "571659bb2459771fb2755a12" + }, + "637784c5f7b3f4ac1a0d1a9a": { + "_id": "637784c5f7b3f4ac1a0d1a9a", + "_name": "pistolgrip_pm_fab_defence_pm_g", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "Щечки ЦНИИ Точмаш Бакелитовые для ПБ", + "ShortName": "ПБ Бакелит", + "Description": "Штатные бакелитовые? щечки для пистолета ПБ.", + "Weight": 0.072, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_pm_fab_defence_pm_g.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 10 + }, + "_proto": "5649ade84bdc2d1b2b8b4587" + }, + "648afce7ec6bb25b2608defb": { + "_id": "648afce7ec6bb25b2608defb", + "_name": "pistolgrip_pm_fab_defence_pm_g_od", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "Щечки ЦНИИ Точмаш Бакелитовые для ПБ", + "ShortName": "ПБ Бакелит", + "Description": "Штатные бакелитовые? щечки для пистолета ПБ.", + "Weight": 0.072, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_pm_fab_defence_pm_g_od.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 10, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 10 + }, + "_proto": "5649ade84bdc2d1b2b8b4587" + }, + "5649ade84bdc2d1b2b8b4587": { + "_id": "5649ade84bdc2d1b2b8b4587", + "_name": "pistolgrip_ak_izhmash_ak74_plastic", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "Пистолетная рукоятка Ижмаш Полимер для АК-74", + "ShortName": "АК74 Полимер", + "Description": "Полимерная пистолетная рукоятка Ижмаш для автомата АК-74 и других на его базе, пришедшая на смену бакелитовой.", + "Weight": 0.065, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_izhmash_ak74_plastic.bundle", "rcid": "" }, "UsePrefab": { @@ -132697,23 +132956,23 @@ }, "_proto": "5649ad3f4bdc2df8348b4585" }, - "5d023784d7ad1a049d4aa7f2": { - "_id": "5d023784d7ad1a049d4aa7f2", - "_name": "pistolgrip_vz58_fab_defence_ag_58", + "63f5feead259b42f0b4d6d0f": { + "_id": "63f5feead259b42f0b4d6d0f", + "_name": "pistolgrip_ar15_aeroknox_orion_grip", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "pistolgrip_ak_magpul_moe_ak", - "ShortName": "pistolgrip_ak_magpul_moe_ak", - "Description": "pistolgrip_ak_magpul_moe_ak", - "Weight": 0.113, + "Name": "Пистолетная рукоятка DI ECS FDE для AR-15 совместимых", + "ShortName": "ECS FDE", + "Description": "Полимерная пистолетная рукоятка ECS устанавливается на любое оружие совместимое с пистолетными рукоятками от AR-15. Единственное отличие от штатной рукоятки- цвет.", + "Weight": 0.08, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_vz58_fab_defence_ag_58.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_aeroknox_orion_grip.bundle", "rcid": "" }, "UsePrefab": { @@ -132730,7 +132989,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, + "LootExperience": 10, "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, @@ -132742,7 +133001,7 @@ "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, + "CanRequireOnRagfair": true, "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -132778,89 +133037,6 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0 }, - "_proto": "5649ade84bdc2d1b2b8b4587" - }, - "637ba29bf7ca6372bf2613db": { - "_id": "637ba29bf7ca6372bf2613db", - "_name": "pistolgrip_sr2m_tochmash_std_blk", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ak_molot_bakelit", - "ShortName": "pistolgrip_ak_molot_bakelit", - "Description": "pistolgrip_ak_molot_bakelit", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_sr2m_tochmash_std_blk.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 90, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, "_proto": "55d4b9964bdc2d1d4e8b456e" }, "5a17fc70fcdbcb0176308b3d": { @@ -132946,6 +133122,89 @@ }, "_proto": "5649ade84bdc2d1b2b8b4587" }, + "637ba29bf7ca6372bf2613db": { + "_id": "637ba29bf7ca6372bf2613db", + "_name": "pistolgrip_sr2m_tochmash_std_blk", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ak_molot_bakelit", + "ShortName": "pistolgrip_ak_molot_bakelit", + "Description": "pistolgrip_ak_molot_bakelit", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_sr2m_tochmash_std_blk.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 90, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, "5b7d679f5acfc4001a5c4024": { "_id": "5b7d679f5acfc4001a5c4024", "_name": "pistolgrip_fal_fab_defense_ag_fal", @@ -133029,172 +133288,6 @@ }, "_proto": "5649ade84bdc2d1b2b8b4587" }, - "63f5feead259b42f0b4d6d0f": { - "_id": "63f5feead259b42f0b4d6d0f", - "_name": "pistolgrip_ar15_aeroknox_orion_grip", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "Пистолетная рукоятка DI ECS FDE для AR-15 совместимых", - "ShortName": "ECS FDE", - "Description": "Полимерная пистолетная рукоятка ECS устанавливается на любое оружие совместимое с пистолетными рукоятками от AR-15. Единственное отличие от штатной рукоятки- цвет.", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_aeroknox_orion_grip.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 12, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "63f4da90f31d4a33b87bd054": { - "_id": "63f4da90f31d4a33b87bd054", - "_name": "pistolgrip_ak_mft_engage_ak47_pistol_grip", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ak_izhmash_ak74_bakelit", - "ShortName": "pistolgrip_ak_izhmash_ak74_bakelit", - "Description": "pistolgrip_ak_izhmash_ak74_bakelit", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_mft_engage_ak47_pistol_grip.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, "5e848d99865c0f329958c83b": { "_id": "5e848d99865c0f329958c83b", "_name": "pistolgrip_ks23_toz_ks23_plastic", @@ -133297,23 +133390,106 @@ }, "_proto": "5649ade84bdc2d1b2b8b4587" }, - "5cadc431ae921500113bb8d5": { - "_id": "5cadc431ae921500113bb8d5", - "_name": "pistolgrip_m9_beretta_m9a3_std", + "652911675ae2ae97b80fdf3c": { + "_id": "652911675ae2ae97b80fdf3c", + "_name": "pistolgrip_ar15_sig_reduced_angle_pistol_grip_ct", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "Пистолетная рукоятка Sig Sauer черн. полимер для P226", - "ShortName": "GRIP226BLKPOL", - "Description": "бла бла бла", - "Weight": 0.09, + "Name": "pistolgrip_ar15_sig_mcx_std", + "ShortName": "pistolgrip_ar15_sig_mcx_std", + "Description": "pistolgrip_ar15_sig_mcx_std", + "Weight": 0.08, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_m9_beretta_m9a3_std.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_sig_reduced_angle_pistol_grip_ct.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55802f5d4bdc2dac148b458f" + }, + "576a63cd2459771e796e0e11": { + "_id": "576a63cd2459771e796e0e11", + "_name": "pistolgrip_mp443_izmeh_mp443_std", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "", + "ShortName": "", + "Description": "", + "Weight": 0.055, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_mp443_izmeh_mp443_std.bundle", "rcid": "" }, "UsePrefab": { @@ -133366,7 +133542,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 4, + "Ergonomics": 5, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -133378,7 +133554,7 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0 }, - "_proto": "55d4b9964bdc2d1d4e8b456e" + "_proto": "56d5a2bbd2720bb8418b456a" }, "619f4ab2d25cbd424731fb95": { "_id": "619f4ab2d25cbd424731fb95", @@ -133463,264 +133639,15 @@ }, "_proto": "55d4b9964bdc2d1d4e8b456e" }, - "5c079ec50db834001966a706": { - "_id": "5c079ec50db834001966a706", - "_name": "pistolgrip_tt_razor_arms_rubber_grip", + "5c6d7b3d2e221600114c9b7d": { + "_id": "5c6d7b3d2e221600114c9b7d", + "_name": "pistolgrip_ar15_hk_grip_v2", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "pistolgrip_tt_razor_arms_rubber_grip", - "ShortName": "pistolgrip_tt_razor_arms_rubber_grip", - "Description": "pistolgrip_tt_razor_arms_rubber_grip", - "Weight": 0.06, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_tt_razor_arms_rubber_grip.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 13, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "571659bb2459771fb2755a12" - }, - "5cf508bfd7f00c056e24104e": { - "_id": "5cf508bfd7f00c056e24104e", - "_name": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip_fde", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", - "ShortName": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", - "Description": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", - "Weight": 0.091, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_strike_indsustries_enhanced_pistol_grip_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "5649ade84bdc2d1b2b8b4587" - }, - "5649ade84bdc2d1b2b8b4587": { - "_id": "5649ade84bdc2d1b2b8b4587", - "_name": "pistolgrip_ak_izhmash_ak74_plastic", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "Пистолетная рукоятка Ижмаш Полимер для АК-74", - "ShortName": "АК74 Полимер", - "Description": "Полимерная пистолетная рукоятка Ижмаш для автомата АК-74 и других на его базе, пришедшая на смену бакелитовой.", - "Weight": 0.065, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_izhmash_ak74_plastic.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "5649ad3f4bdc2df8348b4585" - }, - "57c55f172459772d27602381": { - "_id": "57c55f172459772d27602381", - "_name": "pistolgrip_ar15_hogue_overmolded_od", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ar15_hogue_overmolded_od", - "ShortName": "pistolgrip_ar15_hogue_overmolded_od", - "Description": "pistolgrip_ar15_hogue_overmolded_od", + "Name": "pistolgrip_ar15_hk_grip_v2", + "ShortName": "pistolgrip_ar15_hk_grip_v2", + "Description": "pistolgrip_ar15_hk_grip_v2", "Weight": 0.08, "BackgroundColor": "blue", "Width": 1, @@ -133728,7 +133655,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hogue_overmolded_od.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hk_grip_v2.bundle", "rcid": "" }, "UsePrefab": { @@ -133781,7 +133708,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 9, + "Ergonomics": 7, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -133793,7 +133720,7 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0 }, - "_proto": "57c55f112459772d28133310" + "_proto": "55d4b9964bdc2d1d4e8b456e" }, "5bb20e18d4351e00320205d5": { "_id": "5bb20e18d4351e00320205d5", @@ -133981,23 +133908,106 @@ }, "_proto": "5649ade84bdc2d1b2b8b4587" }, - "57c55f112459772d28133310": { - "_id": "57c55f112459772d28133310", - "_name": "pistolgrip_ar15_hogue_overmolded_gg", + "5ef366938cef260c0642acad": { + "_id": "5ef366938cef260c0642acad", + "_name": "pistolgrip_m1911_pachmayr_american_legend_grip_423", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "pistolgrip_ar15_hogue_overmolded_gg", - "ShortName": "pistolgrip_ar15_hogue_overmolded_gg", - "Description": "pistolgrip_ar15_hogue_overmolded_gg", - "Weight": 0.08, + "Name": "pistolgrip_m1911_colt_m1911a1_std", + "ShortName": "pistolgrip_m1911_colt_m1911a1_std", + "Description": "pistolgrip_m1911_colt_m1911a1_std", + "Weight": 0.2, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hogue_overmolded_gg.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_m1911_pachmayr_american_legend_grip_423.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "6087e663132d4d12c81fd96b": { + "_id": "6087e663132d4d12c81fd96b", + "_name": "pistolgrip_ak_custom_arms_ags74_pro_stage_2", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ak_custom_arms_ags74_pro_stage_2", + "ShortName": "pistolgrip_ak_custom_arms_ags74_pro_stage_2", + "Description": "pistolgrip_ak_custom_arms_ags74_pro_stage_2", + "Weight": 0.15, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_custom_arms_ags74_pro_stage_2.bundle", "rcid": "" }, "UsePrefab": { @@ -134050,7 +134060,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 9, + "Ergonomics": 14, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -134062,7 +134072,422 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0 }, - "_proto": "57c55f092459772d291a8463" + "_proto": "5649ade84bdc2d1b2b8b4587" + }, + "5cdeac5cd7f00c000f261694": { + "_id": "5cdeac5cd7f00c000f261694", + "_name": "pistolgrip_m700_magpul_pro_700_grip", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "Пистолетная рукоятка DI ECS FDE для AR-15 совместимых", + "ShortName": "ECS FDE", + "Description": "Полимерная пистолетная рукоятка ECS устанавливается на любое оружие совместимое с пистолетными рукоятками от AR-15. Единственное отличие от штатной рукоятки- цвет.", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_m700_magpul_pro_700_grip.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "5e81c6bf763d9f754677beff": { + "_id": "5e81c6bf763d9f754677beff", + "_name": "pistolgrip_m1911_colt_m1911a1_std", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_m1911_colt_m1911a1_std", + "ShortName": "pistolgrip_m1911_colt_m1911a1_std", + "Description": "pistolgrip_m1911_colt_m1911a1_std", + "Weight": 0.27, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_m1911_colt_m1911a1_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "5c0006470db834001a6697fe": { + "_id": "5c0006470db834001a6697fe", + "_name": "pistolgrip_p226_sig_emperor_scorpion", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", + "ShortName": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", + "Description": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_p226_sig_emperor_scorpion.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "6113cce3d92c473c770200c7": { + "_id": "6113cce3d92c473c770200c7", + "_name": "pistolgrip_ar15_f1_firearms_st2_skeletonized", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ar15_f1_firearms_st2_skeletonized", + "ShortName": "pistolgrip_ar15_f1_firearms_st2_skeletonized", + "Description": "pistolgrip_ar15_f1_firearms_st2_skeletonized", + "Weight": 0.085, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_f1_firearms_st2_skeletonized.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 12, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55802f5d4bdc2dac148b458f" + }, + "5d025cc1d7ad1a53845279ef": { + "_id": "5d025cc1d7ad1a53845279ef", + "_name": "pistolgrip_ar15_hk_ergo_psg1_style_grip", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ar15_hk_grip_v2", + "ShortName": "pistolgrip_ar15_hk_grip_v2", + "Description": "pistolgrip_ar15_hk_grip_v2", + "Weight": 0.11, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hk_ergo_psg1_style_grip.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 15, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" }, "6113c3586c780c1e710c90bc": { "_id": "6113c3586c780c1e710c90bc", @@ -134147,23 +134572,23 @@ }, "_proto": "55802f5d4bdc2dac148b458f" }, - "626a9cb151cb5849f6002890": { - "_id": "626a9cb151cb5849f6002890", - "_name": "pistolgrip_m1911_kiba_geneburn_custom_pad", + "6259c3d8012d6678ec38eeb8": { + "_id": "6259c3d8012d6678ec38eeb8", + "_name": "pistolgrip_m3_benelli_telescopic_stock_handle", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "pistolgrip_m1911_colt_m1911a1_std", - "ShortName": "pistolgrip_m1911_colt_m1911a1_std", - "Description": "pistolgrip_m1911_colt_m1911a1_std", - "Weight": 0.12, - "BackgroundColor": "violet", + "Name": "pistolgrip_ak_izhmash_ak74_bakelit", + "ShortName": "pistolgrip_ak_izhmash_ak74_bakelit", + "Description": "pistolgrip_ak_izhmash_ak74_bakelit", + "Weight": 0.135, + "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_m1911_kiba_geneburn_custom_pad.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_m3_benelli_telescopic_stock_handle.bundle", "rcid": "" }, "UsePrefab": { @@ -134172,7 +134597,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": false, + "ExaminedByDefault": true, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -134181,14 +134606,14 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 5, - "ExamineExperience": 100, + "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, - "ExtraSizeDown": 0, + "ExtraSizeDown": 1, "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, @@ -134216,7 +134641,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 4, + "Ergonomics": 10, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -134325,8 +134750,7 @@ "628a85ee6b1d481ff772e9d5", "6516e91f609aaf354b34b3e2", "6516e971a3d4c6497930b450", - "6529370c405a5f51dd023db8", - "602e620f9b513876d4338d9a" + "6529370c405a5f51dd023db8" ] } ] @@ -134357,23 +134781,23 @@ }, "_proto": "5649ade84bdc2d1b2b8b4587" }, - "5cdeac5cd7f00c000f261694": { - "_id": "5cdeac5cd7f00c000f261694", - "_name": "pistolgrip_m700_magpul_pro_700_grip", + "5b39ffbd5acfc47a8773fb06": { + "_id": "5b39ffbd5acfc47a8773fb06", + "_name": "pistolgrip_p226_hogue_p226_rubber_w_grooves", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "Пистолетная рукоятка DI ECS FDE для AR-15 совместимых", - "ShortName": "ECS FDE", - "Description": "Полимерная пистолетная рукоятка ECS устанавливается на любое оружие совместимое с пистолетными рукоятками от AR-15. Единственное отличие от штатной рукоятки- цвет.", - "Weight": 0.08, + "Name": "pistolgrip_p226_hogue_p226_rubber_w_grooves", + "ShortName": "pistolgrip_p226_hogue_p226_rubber_w_grooves", + "Description": "pistolgrip_p226_hogue_p226_rubber_w_grooves", + "Weight": 0.07, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_m700_magpul_pro_700_grip.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_p226_hogue_p226_rubber_w_grooves.bundle", "rcid": "" }, "UsePrefab": { @@ -134398,7 +134822,7 @@ "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, - "ExtraSizeDown": 1, + "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, @@ -134426,90 +134850,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "59e6318286f77444dd62c4cc": { - "_id": "59e6318286f77444dd62c4cc", - "_name": "pistolgrip_ak_molot_bakelit", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ak_molot_bakelit", - "ShortName": "pistolgrip_ak_molot_bakelit", - "Description": "pistolgrip_ak_molot_bakelit", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_molot_bakelit.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 90, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, + "Ergonomics": 10, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -134606,89 +134947,6 @@ }, "_proto": "5649ade84bdc2d1b2b8b4587" }, - "5c00076d0db834001d23ee1f": { - "_id": "5c00076d0db834001d23ee1f", - "_name": "pistolgrip_p226_sig_stainless_elite", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", - "ShortName": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", - "Description": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_p226_sig_stainless_elite.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, "57c9a89124597704ee6faec1": { "_id": "57c9a89124597704ee6faec1", "_name": "pistolgrip_p226_sig_p226_std_fde", @@ -134772,23 +135030,562 @@ }, "_proto": "56d5a2bbd2720bb8418b456a" }, - "6193dcd0f8ee7e52e4210a28": { - "_id": "6193dcd0f8ee7e52e4210a28", - "_name": "pistolgrip_ar15_hk_battle_grip_beavertail_ral", + "646371779f5f0ea59a04c204": { + "_id": "646371779f5f0ea59a04c204", + "_name": "pistolgrip_pkm_zid_pk_std", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "Пистолетная рукоятка DI ECS FDE для AR-15 совместимых", - "ShortName": "ECS FDE", - "Description": "Полимерная пистолетная рукоятка ECS устанавливается на любое оружие совместимое с пистолетными рукоятками от AR-15. Единственное отличие от штатной рукоятки- цвет.", - "Weight": 0.08, + "Name": "pistolgrip_ak_izhmash_ak74_bakelit", + "ShortName": "pistolgrip_ak_izhmash_ak74_bakelit", + "Description": "pistolgrip_ak_izhmash_ak74_bakelit", + "Weight": 0.09, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hk_battle_grip_beavertail_ral.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_pkm_zid_pk_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "6516b129609aaf354b34b3a8": { + "_id": "6516b129609aaf354b34b3a8", + "_name": "pistolgrip_svd_s_lynxarms_svd_s_to_ak_adapter", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ak_izhmash_ak74_bakelit", + "ShortName": "pistolgrip_ak_izhmash_ak74_bakelit", + "Description": "pistolgrip_ak_izhmash_ak74_bakelit", + "Weight": 0.033, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_svd_s_lynxarms_svd_s_to_ak_adapter.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistolgrip", + "_id": "6516b176caa50259d91deb76", + "_parent": "6516b129609aaf354b34b3a8", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056", + "623c3be0484b5003161840dc" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "5bffec120db834001c38f5fa": { + "_id": "5bffec120db834001c38f5fa", + "_name": "pistolgrip_p226_axelson_tactical_mk25", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_p226_axelson_tactical_mk25", + "ShortName": "pistolgrip_p226_axelson_tactical_mk25", + "Description": "pistolgrip_p226_axelson_tactical_mk25", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_p226_axelson_tactical_mk25.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "63f4da90f31d4a33b87bd054": { + "_id": "63f4da90f31d4a33b87bd054", + "_name": "pistolgrip_ak_mft_engage_ak47_pistol_grip", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ak_izhmash_ak74_bakelit", + "ShortName": "pistolgrip_ak_izhmash_ak74_bakelit", + "Description": "pistolgrip_ak_izhmash_ak74_bakelit", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_mft_engage_ak47_pistol_grip.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "5c079ec50db834001966a706": { + "_id": "5c079ec50db834001966a706", + "_name": "pistolgrip_tt_razor_arms_rubber_grip", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_tt_razor_arms_rubber_grip", + "ShortName": "pistolgrip_tt_razor_arms_rubber_grip", + "Description": "pistolgrip_tt_razor_arms_rubber_grip", + "Weight": 0.06, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_tt_razor_arms_rubber_grip.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 13, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "571659bb2459771fb2755a12" + }, + "628c9ab845c59e5b80768a81": { + "_id": "628c9ab845c59e5b80768a81", + "_name": "pistolgrip_ak_tango_down_ak_battle_grip_fde", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ak_magpul_moe_ak", + "ShortName": "pistolgrip_ak_magpul_moe_ak", + "Description": "pistolgrip_ak_magpul_moe_ak", + "Weight": 0.11, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_tango_down_ak_battle_grip_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 12, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "5649ade84bdc2d1b2b8b4587" + }, + "623c3be0484b5003161840dc": { + "_id": "623c3be0484b5003161840dc", + "_name": "pistolgrip_ak_fab_defence_agr_47", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ak_izhmash_ak74_bakelit", + "ShortName": "pistolgrip_ak_izhmash_ak74_bakelit", + "Description": "pistolgrip_ak_izhmash_ak74_bakelit", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_fab_defence_agr_47.bundle", "rcid": "" }, "UsePrefab": { @@ -134855,106 +135652,23 @@ }, "_proto": "55d4b9964bdc2d1d4e8b456e" }, - "5bffef760db8340019668fe4": { - "_id": "5bffef760db8340019668fe4", - "_name": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", + "5cf50850d7f00c056e24104c": { + "_id": "5cf50850d7f00c056e24104c", + "_name": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", - "ShortName": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", - "Description": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", - "Weight": 0.09, + "Name": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", + "ShortName": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", + "Description": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", + "Weight": 0.091, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_p226_hogue_chain_link_g10_g_mascus.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 12, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "5dcbd6dddbd3d91b3e5468de": { - "_id": "5dcbd6dddbd3d91b3e5468de", - "_name": "pistolgrip_mdr_dt_mdr_std_blk", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_mdr_dt_mdr_std_blk", - "ShortName": "pistolgrip_mdr_dt_mdr_std_blk", - "Description": "pistolgrip_mdr_dt_mdr_std_blk", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_mdr_dt_mdr_std_blk.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_strike_indsustries_enhanced_pistol_grip.bundle", "rcid": "" }, "UsePrefab": { @@ -135007,421 +135721,6 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "5c48a2c22e221602b313fb6c": { - "_id": "5c48a2c22e221602b313fb6c", - "_name": "pistolgrip_mdr_dt_mdr_std", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "Пистолетная рукоятка DI ECS FDE для AR-15 совместимых", - "ShortName": "ECS FDE", - "Description": "Полимерная пистолетная рукоятка ECS устанавливается на любое оружие совместимое с пистолетными рукоятками от AR-15. Единственное отличие от штатной рукоятки- цвет.", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_mdr_dt_mdr_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "6113cce3d92c473c770200c7": { - "_id": "6113cce3d92c473c770200c7", - "_name": "pistolgrip_ar15_f1_firearms_st2_skeletonized", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ar15_f1_firearms_st2_skeletonized", - "ShortName": "pistolgrip_ar15_f1_firearms_st2_skeletonized", - "Description": "pistolgrip_ar15_f1_firearms_st2_skeletonized", - "Weight": 0.085, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_f1_firearms_st2_skeletonized.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 12, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55802f5d4bdc2dac148b458f" - }, - "5998517986f7746017232f7e": { - "_id": "5998517986f7746017232f7e", - "_name": "pistolgrip_pp-19-01_izhmash_vityaz_plastic", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_pp-19-01_izhmash_vityaz_plastic", - "ShortName": "pistolgrip_pp-19-01_izhmash_vityaz_plastic", - "Description": "pistolgrip_pp-19-01_izhmash_vityaz_plastic", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_pp-19-01_izhmash_vityaz_plastic.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6.5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "571659bb2459771fb2755a12" - }, - "6113cc78d3a39d50044c065a": { - "_id": "6113cc78d3a39d50044c065a", - "_name": "pistolgrip_ar15_f1_firearms_st2_pc_skeletonized", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ar15_f1_firearms_st2_pc_skeletonized", - "ShortName": "pistolgrip_ar15_f1_firearms_st2_pc_skeletonized", - "Description": "pistolgrip_ar15_f1_firearms_st2_pc_skeletonized", - "Weight": 0.087, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_f1_firearms_st2_pc_skeletonized.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 13, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55802f5d4bdc2dac148b458f" - }, - "5ef366938cef260c0642acad": { - "_id": "5ef366938cef260c0642acad", - "_name": "pistolgrip_m1911_pachmayr_american_legend_grip_423", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_m1911_colt_m1911a1_std", - "ShortName": "pistolgrip_m1911_colt_m1911a1_std", - "Description": "pistolgrip_m1911_colt_m1911a1_std", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_m1911_pachmayr_american_legend_grip_423.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, "Ergonomics": 8, "Velocity": 0, "RaidModdable": false, @@ -135434,17 +135733,17 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0 }, - "_proto": "55d4b9964bdc2d1d4e8b456e" + "_proto": "5649ade84bdc2d1b2b8b4587" }, - "652911675ae2ae97b80fdf3c": { - "_id": "652911675ae2ae97b80fdf3c", - "_name": "pistolgrip_ar15_sig_reduced_angle_pistol_grip_ct", + "5bb20e0ed4351e3bac1212dc": { + "_id": "5bb20e0ed4351e3bac1212dc", + "_name": "pistolgrip_ar15_hk_battle_grip_beavertail", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "pistolgrip_ar15_sig_mcx_std", - "ShortName": "pistolgrip_ar15_sig_mcx_std", - "Description": "pistolgrip_ar15_sig_mcx_std", + "Name": "Пистолетная рукоятка DI ECS FDE для AR-15 совместимых", + "ShortName": "ECS FDE", + "Description": "Полимерная пистолетная рукоятка ECS устанавливается на любое оружие совместимое с пистолетными рукоятками от AR-15. Единственное отличие от штатной рукоятки- цвет.", "Weight": 0.08, "BackgroundColor": "blue", "Width": 1, @@ -135452,7 +135751,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_sig_reduced_angle_pistol_grip_ct.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hk_battle_grip_beavertail.bundle", "rcid": "" }, "UsePrefab": { @@ -135505,7 +135804,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 6, + "Ergonomics": 7, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -135517,25 +135816,25 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0 }, - "_proto": "55802f5d4bdc2dac148b458f" + "_proto": "55d4b9964bdc2d1d4e8b456e" }, - "6259c3d8012d6678ec38eeb8": { - "_id": "6259c3d8012d6678ec38eeb8", - "_name": "pistolgrip_m3_benelli_telescopic_stock_handle", + "5a7b4960e899ef197b331a2d": { + "_id": "5a7b4960e899ef197b331a2d", + "_name": "pistolgrip_glock_pachmayr_tactical_rubber_grip", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "pistolgrip_ak_izhmash_ak74_bakelit", - "ShortName": "pistolgrip_ak_izhmash_ak74_bakelit", - "Description": "pistolgrip_ak_izhmash_ak74_bakelit", - "Weight": 0.135, + "Name": "pistolgrip_glock_pachmayr_tactical_rubber_grip", + "ShortName": "pistolgrip_glock_pachmayr_tactical_rubber_grip", + "Description": "pistolgrip_glock_pachmayr_tactical_rubber_grip", + "Weight": 0.08, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_m3_benelli_telescopic_stock_handle.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_glock_pachmayr_tactical_rubber_grip.bundle", "rcid": "" }, "UsePrefab": { @@ -135560,7 +135859,7 @@ "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, - "ExtraSizeDown": 1, + "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, @@ -135588,7 +135887,90 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 10, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "626a9cb151cb5849f6002890": { + "_id": "626a9cb151cb5849f6002890", + "_name": "pistolgrip_m1911_kiba_geneburn_custom_pad", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_m1911_colt_m1911a1_std", + "ShortName": "pistolgrip_m1911_colt_m1911a1_std", + "Description": "pistolgrip_m1911_colt_m1911a1_std", + "Weight": 0.12, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_m1911_kiba_geneburn_custom_pad.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -135718,264 +136100,15 @@ }, "_proto": "55d4b9964bdc2d1d4e8b456e" }, - "57c55efc2459772d2c6271e7": { - "_id": "57c55efc2459772d2c6271e7", - "_name": "pistolgrip_ar15_hogue_overmolded_blk", + "59e62cc886f77440d40b52a1": { + "_id": "59e62cc886f77440d40b52a1", + "_name": "pistolgrip_ak_izhmash_akm_bakelit", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "pistolgrip_ar15_hogue_overmolded_blk", - "ShortName": "pistolgrip_ar15_hogue_overmolded_blk", - "Description": "pistolgrip_ar15_hogue_overmolded_blk", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hogue_overmolded_blk.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "57af48872459771f0b2ebf11" - }, - "5b07db875acfc40dc528a5f6": { - "_id": "5b07db875acfc40dc528a5f6", - "_name": "pistolgrip_ar15_tactical_dynamics_skeletonized_anodized", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ar15_tactical_dynamics_skeletonized_anodized", - "ShortName": "pistolgrip_ar15_tactical_dynamics_skeletonized_anodized", - "Description": "pistolgrip_ar15_tactical_dynamics_skeletonized_anodized", - "Weight": 0.038, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_tactical_dynamics_skeletonized_anodized.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55802f5d4bdc2dac148b458f" - }, - "5cf50850d7f00c056e24104c": { - "_id": "5cf50850d7f00c056e24104c", - "_name": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", - "ShortName": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", - "Description": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", - "Weight": 0.091, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_strike_indsustries_enhanced_pistol_grip.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "5649ade84bdc2d1b2b8b4587" - }, - "5649ad3f4bdc2df8348b4585": { - "_id": "5649ad3f4bdc2df8348b4585", - "_name": "pistolgrip_ak_izhmash_ak74_bakelit", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ak_izhmash_ak74_bakelit", - "ShortName": "pistolgrip_ak_izhmash_ak74_bakelit", - "Description": "pistolgrip_ak_izhmash_ak74_bakelit", + "Name": "pistolgrip_ak_izhmash_akm_bakelit", + "ShortName": "pistolgrip_ak_izhmash_akm_bakelit", + "Description": "pistolgrip_ak_izhmash_akm_bakelit", "Weight": 0.07, "BackgroundColor": "blue", "Width": 1, @@ -135983,7 +136116,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_izhmash_ak74_bakelit.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_izhmash_akm_bakelit.bundle", "rcid": "" }, "UsePrefab": { @@ -136050,89 +136183,6 @@ }, "_proto": "55d4b9964bdc2d1d4e8b456e" }, - "5bffec120db834001c38f5fa": { - "_id": "5bffec120db834001c38f5fa", - "_name": "pistolgrip_p226_axelson_tactical_mk25", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_p226_axelson_tactical_mk25", - "ShortName": "pistolgrip_p226_axelson_tactical_mk25", - "Description": "pistolgrip_p226_axelson_tactical_mk25", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_p226_axelson_tactical_mk25.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, "606eef46232e5a31c233d500": { "_id": "606eef46232e5a31c233d500", "_name": "pistolgrip_mp155_kalshnikov_ultima_pistol_grip", @@ -136239,468 +136289,9 @@ }, "_proto": "5649ade84bdc2d1b2b8b4587" }, - "648afce7ec6bb25b2608defb": { - "_id": "648afce7ec6bb25b2608defb", - "_name": "pistolgrip_pm_fab_defence_pm_g_od", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "Щечки ЦНИИ Точмаш Бакелитовые для ПБ", - "ShortName": "ПБ Бакелит", - "Description": "Штатные бакелитовые? щечки для пистолета ПБ.", - "Weight": 0.072, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_pm_fab_defence_pm_g_od.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 10, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 10 - }, - "_proto": "5649ade84bdc2d1b2b8b4587" - }, - "623c3be0484b5003161840dc": { - "_id": "623c3be0484b5003161840dc", - "_name": "pistolgrip_ak_fab_defence_agr_47", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ak_izhmash_ak74_bakelit", - "ShortName": "pistolgrip_ak_izhmash_ak74_bakelit", - "Description": "pistolgrip_ak_izhmash_ak74_bakelit", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_fab_defence_agr_47.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "628b9be6cff66b70c002b14c": { - "_id": "628b9be6cff66b70c002b14c", - "_name": "reciever_ak_sag_ak545_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "Крышка ствольной коробки Ижмаш для АК-74", - "ShortName": "Кск АК74", - "Description": "Штатная крышка ствольной коробки АК-74 производства Ижмаш.", - "Weight": 0.088, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_ak_sag_ak545_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "628b9c0d717774443b15e9f5", - "_parent": "628b9be6cff66b70c002b14c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "628b9471078f94059a4b9bfb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "628b9c21d4bff34e474e0f90", - "_parent": "628b9be6cff66b70c002b14c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "626bb8532c923541184624b4", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "62811f461d5df4475f46a332", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.99, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5649af094bdc2df8348b4586": { - "_id": "5649af094bdc2df8348b4586", - "_name": "reciever_ak74_izhmash_ak74_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "Крышка ствольной коробки Ижмаш для АК-74", - "ShortName": "Кск АК74", - "Description": "Штатная крышка ствольной коробки АК-74 производства Ижмаш.", - "Weight": 0.088, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_ak74_izhmash_ak74_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount", - "_id": "5649d89e4bdc2d3b4c8b457e", - "_parent": "5649af094bdc2df8348b4586", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "571659bb2459771fb2755a12": { - "_id": "571659bb2459771fb2755a12", - "_name": "pistolgrip_ar15_damage_industries_ecs_fde", + "6193dcd0f8ee7e52e4210a28": { + "_id": "6193dcd0f8ee7e52e4210a28", + "_name": "pistolgrip_ar15_hk_battle_grip_beavertail_ral", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { @@ -136714,7 +136305,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_damage_industries_ecs_fde.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hk_battle_grip_beavertail_ral.bundle", "rcid": "" }, "UsePrefab": { @@ -136767,1513 +136358,8 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 5.5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "5a7b4960e899ef197b331a2d": { - "_id": "5a7b4960e899ef197b331a2d", - "_name": "pistolgrip_glock_pachmayr_tactical_rubber_grip", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_glock_pachmayr_tactical_rubber_grip", - "ShortName": "pistolgrip_glock_pachmayr_tactical_rubber_grip", - "Description": "pistolgrip_glock_pachmayr_tactical_rubber_grip", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_glock_pachmayr_tactical_rubber_grip.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, "Ergonomics": 7, "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "5ac50da15acfc4001718d287": { - "_id": "5ac50da15acfc4001718d287", - "_name": "reciever_ak74_izhmash_ak74m_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_ak74_izhmash_ak74m_std", - "ShortName": "reciever_ak74_izhmash_ak74m_std", - "Description": "reciever_ak74_izhmash_ak74m_std", - "Weight": 0.088, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_ak74_izhmash_ak74m_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount", - "_id": "5ac50da15acfc4001718d289", - "_parent": "5ac50da15acfc4001718d287", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5926c0df86f77462f647f764": { - "_id": "5926c0df86f77462f647f764", - "_name": "reciever_mp5_hk_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_mp5_hk_std", - "ShortName": "reciever_mp5_hk_std", - "Description": "reciever_mp5_hk_std", - "Weight": 0.588, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_mp5_hk_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_handguard", - "_id": "5926c0df86f77462f647f767", - "_parent": "5926c0df86f77462f647f764", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a9548c9159bd400133e97b3", - "5d010d1cd7ad1a59283b1ce7", - "5926c36d86f77467a92a8629", - "5d19cd96d7ad1a4a992c9f52" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5926c0df86f77462f647f768", - "_parent": "5926c0df86f77462f647f764", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5926d2be86f774134d668e4e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5926c1c786f774641f04af45", - "_parent": "5926c0df86f77462f647f764", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5926d3c686f77410de68ebc8", - "5926d40686f7740f152b6b7e", - "5c07c9660db834001a66b588" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5926df9986f7742f6356f504", - "_parent": "5926c0df86f77462f647f764", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5926e16e86f7742f5a0f7ecb", - "5c0000c00db834001a6697fc" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5926dfdc86f7742eb80708a0", - "_parent": "5926c0df86f77462f647f764", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5926dad986f7741f82604363", - "5a966ec8a2750c00171b3f36" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.969, - "CoolFactor": 1.0815 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5926f2e086f7745aae644231": { - "_id": "5926f2e086f7745aae644231", - "_name": "reciever_mp5_hk_sd", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_mp5_hk_sd", - "ShortName": "reciever_mp5_hk_sd", - "Description": "reciever_mp5_hk_sd", - "Weight": 0.62, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_mp5_hk_sd.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_handguard", - "_id": "5926f2e086f7745aae644232", - "_parent": "5926f2e086f7745aae644231", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5926f34786f77469195bfe92" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5926f2e086f7745aae644233", - "_parent": "5926f2e086f7745aae644231", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5926d2be86f774134d668e4e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5926f2e086f7745aae644234", - "_parent": "5926f2e086f7745aae644231", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5926d3c686f77410de68ebc8", - "5926d40686f7740f152b6b7e", - "5c07c9660db834001a66b588" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5926f2e086f7745aae644235", - "_parent": "5926f2e086f7745aae644231", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5926d33d86f77410de68ebc0" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5926f2e086f7745aae644236", - "_parent": "5926f2e086f7745aae644231", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5926dad986f7741f82604363", - "5a966ec8a2750c00171b3f36" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": -33, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.987, - "CoolFactor": 1.1232 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5a7afa25e899ef00135e31b0": { - "_id": "5a7afa25e899ef00135e31b0", - "_name": "reciever_glock_polymer80_ps9", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_glock_polymer80_ps9", - "ShortName": "reciever_glock_polymer80_ps9", - "Description": "reciever_glock_polymer80_ps9", - "Weight": 0.355, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_glock_polymer80_ps9.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "5a7afa25e899ef00135e31b2", - "_parent": "5a7afa25e899ef00135e31b0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7d9122159bd4001438dbf4", - "5a6f5d528dc32e00094b97d9", - "5a7d912f159bd400165484f3", - "5a71e0fb8dc32e00094b97f2", - "630765cb962d0247b029dc45" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5a7afa25e899ef00135e31b3", - "_parent": "5a7afa25e899ef00135e31b0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7d90eb159bd400165484f1", - "5a6f58f68dc32e000a311390", - "5a7d9104159bd400134c8c21", - "5a71e0048dc32e000c52ecc8", - "630765777d50ff5e8a1ea718" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5a7b4c9ae899ef0016170fbc", - "_parent": "5a7afa25e899ef00135e31b0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7b32a2e899ef00135e345a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1.048, - "CoolFactor": 0.986 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5cf7acfcd7f00c1084477cf2": { - "_id": "5cf7acfcd7f00c1084477cf2", - "_name": "reciever_p90_fn_ps90_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_p90_fn_ps90_std", - "ShortName": "reciever_p90_fn_ps90_std", - "Description": "reciever_p90_fn_ps90_std", - "Weight": 0.31, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_p90_fn_ps90_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 1, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5cf7acfcd7f00c1084477cf4", - "_parent": "5cf7acfcd7f00c1084477cf2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cebec38d7f00c00110a652a", - "5cc7015ae4a949001152b4c6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5cf7acfcd7f00c1084477cf5", - "_parent": "5cf7acfcd7f00c1084477cf2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cc70146e4a949000d73bf6b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5cf7acfcd7f00c1084477cf6", - "_parent": "5cf7acfcd7f00c1084477cf2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cc70146e4a949000d73bf6b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.951, - "CoolFactor": 1.052 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "6194f5a318a3974e5e7421eb": { - "_id": "6194f5a318a3974e5e7421eb", - "_name": "reciever_usp_hk_match", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_glock_glock_17_std", - "ShortName": "reciever_glock_glock_17_std", - "Description": "reciever_glock_glock_17_std", - "Weight": 0.45, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_usp_hk_match.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "6194f5a318a3974e5e7421ed", - "_parent": "6194f5a318a3974e5e7421eb", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61963a852d2c397d660036ad", - "6194f2912d2c397d6600348d", - "6194f2df645b5d229654ad77" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "6194f5a318a3974e5e7421ee", - "_parent": "6194f5a318a3974e5e7421eb", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6194f35c18a3974e5e7421e6", - "6194f3286db0f2477964e67d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.958, - "CoolFactor": 1.06 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "6165adcdd3a39d50044c120f": { - "_id": "6165adcdd3a39d50044c120f", - "_name": "reciever_mk17_fn_scar_h_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_mk17_fn_scar_h_std", - "ShortName": "reciever_mk17_fn_scar_h_std", - "Description": "reciever_mk17_fn_scar_h_std", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_mk17_fn_scar_h_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "6165adcdd3a39d50044c1211", - "_parent": "6165adcdd3a39d50044c120f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "6165adcdd3a39d50044c1212", - "_parent": "6165adcdd3a39d50044c120f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "618168b350224f204c1da4d8", - "6183b0711cb55961fa0fdcad", - "6183b084a112697a4b3a6e6c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "6165adcdd3a39d50044c1214", - "_parent": "6165adcdd3a39d50044c120f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61817865d3a39d50044c13a4", - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347", - "55d5f46a4bdc2d1b198b4567", - "5ae30bad5acfc400185c2dc4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "61825bbdfaa1272e431523cc", - "_parent": "6165adcdd3a39d50044c120f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "61825bc967085e45ef140c64", - "_parent": "6165adcdd3a39d50044c120f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "61825bd5cabb9b7ad90f4fd1", - "_parent": "6165adcdd3a39d50044c120f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61816df1d3a39d50044c139e", - "619666f4af1f5202c57a952d" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "61825be1568c120fdd294938", - "_parent": "6165adcdd3a39d50044c120f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61816dfa6ef05c2ce828f1ad" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "61825bea6ef05c2ce828f1ca", - "_parent": "6165adcdd3a39d50044c120f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.984, - "CoolFactor": 1.017 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "6194f5722d2c397d6600348f": { - "_id": "6194f5722d2c397d6600348f", - "_name": "reciever_usp_hk_expert", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_glock_glock_17_std", - "ShortName": "reciever_glock_glock_17_std", - "Description": "reciever_glock_glock_17_std", - "Weight": 0.44, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_usp_hk_expert.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "619624b26db0f2477964e6b0", - "6194ef39de3cdf1d2614a768", - "6194efe07c6c7b169525f11b" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "6194f5722d2c397d66003491", - "_parent": "6194f5722d2c397d6600348f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6194f2912d2c397d6600348d", - "6194f2df645b5d229654ad77" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "6194f5722d2c397d66003492", - "_parent": "6194f5722d2c397d6600348f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6194f35c18a3974e5e7421e6", - "6194f3286db0f2477964e67d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.958, - "CoolFactor": 1.06 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "59e62cc886f77440d40b52a1": { - "_id": "59e62cc886f77440d40b52a1", - "_name": "pistolgrip_ak_izhmash_akm_bakelit", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ak_izhmash_akm_bakelit", - "ShortName": "pistolgrip_ak_izhmash_akm_bakelit", - "Description": "pistolgrip_ak_izhmash_akm_bakelit", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_izhmash_akm_bakelit.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, @@ -138529,23 +136615,23 @@ }, "_proto": "55d355e64bdc2d962f8b4569" }, - "5b39ffbd5acfc47a8773fb06": { - "_id": "5b39ffbd5acfc47a8773fb06", - "_name": "pistolgrip_p226_hogue_p226_rubber_w_grooves", + "57c55efc2459772d2c6271e7": { + "_id": "57c55efc2459772d2c6271e7", + "_name": "pistolgrip_ar15_hogue_overmolded_blk", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "pistolgrip_p226_hogue_p226_rubber_w_grooves", - "ShortName": "pistolgrip_p226_hogue_p226_rubber_w_grooves", - "Description": "pistolgrip_p226_hogue_p226_rubber_w_grooves", - "Weight": 0.07, + "Name": "pistolgrip_ar15_hogue_overmolded_blk", + "ShortName": "pistolgrip_ar15_hogue_overmolded_blk", + "Description": "pistolgrip_ar15_hogue_overmolded_blk", + "Weight": 0.08, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_p226_hogue_p226_rubber_w_grooves.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hogue_overmolded_blk.bundle", "rcid": "" }, "UsePrefab": { @@ -138570,7 +136656,7 @@ "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, - "ExtraSizeDown": 0, + "ExtraSizeDown": 1, "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, @@ -138598,7 +136684,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 10, + "Ergonomics": 9, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -138610,489 +136696,25 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0 }, - "_proto": "55d4b9964bdc2d1d4e8b456e" + "_proto": "57af48872459771f0b2ebf11" }, - "5bb20d53d4351e4502010a69": { - "_id": "5bb20d53d4351e4502010a69", - "_name": "reciever_ar15_hk_hk416a5_std", + "5a7afa25e899ef00135e31b0": { + "_id": "5a7afa25e899ef00135e31b0", + "_name": "reciever_glock_polymer80_ps9", "_parent": "55818a304bdc2db5418b457d", "_type": "Item", "_props": { - "Name": "reciever_ar15_hk_hk416a5_std", - "ShortName": "reciever_ar15_hk_hk416a5_std", - "Description": "reciever_ar15_hk_hk416a5_std", - "Weight": 0.27, + "Name": "reciever_glock_polymer80_ps9", + "ShortName": "reciever_glock_polymer80_ps9", + "Description": "reciever_glock_polymer80_ps9", + "Weight": 0.355, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_ar15_hk_hk416a5_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5bb20d53d4351e4502010a6b", - "_parent": "5bb20d53d4351e4502010a69", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "5bb20d53d4351e4502010a6c", - "_parent": "5bb20d53d4351e4502010a69", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c6d85e02e22165df16b81f4", - "5bb20d92d4351e00853263eb", - "5bb20d9cd4351e00334c9d8a", - "5bb20da5d4351e0035629dbf", - "5bb20dadd4351e00367faeff" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "5bb20d53d4351e4502010a6d", - "_parent": "5bb20d53d4351e4502010a69", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c6d10e82e221601da357b07", - "5bb20de5d4351e0035629e59", - "5bb20dfcd4351e00334c9e24", - "5bb20df1d4351e00347787d5", - "5c6d11072e2216000e69d2e4", - "5c6d10fa2e221600106f3f23", - "5c6d11152e2216000f2003e7", - "5c6c2c9c2e2216000f2002e4" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5bb20d53d4351e4502010a6e", - "_parent": "5bb20d53d4351e4502010a69", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347", - "55d5f46a4bdc2d1b198b4567", - "5ae30bad5acfc400185c2dc4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.986, - "CoolFactor": 1.014 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5649af884bdc2d1b2b8b4589": { - "_id": "5649af884bdc2d1b2b8b4589", - "_name": "reciever_ak_zenit_b33", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "Крышка ствольной коробки Зенит Б-33 для АК-74", - "ShortName": "Б-33", - "Description": "Цельнофрезерованная крышка ствольной коробки Б-33 от компании Зенит из комплекта обвязки для АК \"Классика\". Может быть установлена только совместно с цевьём Б-10М или Б-30.", - "Weight": 0.215, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_ak_zenit_b33.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5b237e425acfc4771e1be0b6", - "59ccfdba86f7747f2109a587", - "5cf656f2d7f00c06585fb6eb", - "5d4aab30a4b9365435358c55", - "5947db3f86f77447880cf76f", - "57486e672459770abd687134", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "5cf4e3f3d7f00c06595bc7f0", - "5648ae314bdc2d3d1c8b457f", - "5d2c829448f0353a5c7d6674", - "5b800e9286f7747a8b04f3ff", - "5b80242286f77429445e0b47", - "5cbda392ae92155f3c17c39f", - "5cbda9f4ae9215000e5b9bfc", - "5648b0744bdc2d363b8b4578", - "5648b1504bdc2d9d488b4584", - "59d64f2f86f77417193ef8b3", - "59fb375986f7741b681b81a6", - "57cff947245977638e6f2a19", - "57cffd8224597763b03fc609", - "57cffddc24597763133760c6", - "57cffe0024597763b03fc60b", - "57cffe20245977632f391a9d", - "5c9a07572e221644f31c4b32", - "5c9a1c3a2e2216000e69fb6a", - "5c9a1c422e221600106f69f0", - "59e6284f86f77440d569536f", - "59e898ee86f77427614bd225", - "5a9d56c8a2750c0032157146", - "5d1b198cd7ad1a604869ad72", - "5d4aaa73a4b9365392071175", - "5d4aaa54a4b9365392071170", - "5f6331e097199b7db2128dc2", - "5c17664f2e2216398b5a7e3c", - "5c617a5f2e2216000f1e81b3" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5649d8de4bdc2d3d1c8b4588", - "_parent": "5649af884bdc2d1b2b8b4589", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6478641c19d732620e045e17", - "6477772ea8a38bb2050ed4db", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1.5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649af094bdc2df8348b4586" - }, - "6193d382ed0429009f543e65": { - "_id": "6193d382ed0429009f543e65", - "_name": "reciever_usp_hk_usp_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_glock_glock_17_std", - "ShortName": "reciever_glock_glock_17_std", - "Description": "reciever_glock_glock_17_std", - "Weight": 0.409, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_usp_hk_usp_std.bundle", + "path": "assets/content/items/mods/recievers/reciever_glock_polymer80_ps9.bundle", "rcid": "" }, "UsePrefab": { @@ -139140,1337 +136762,8 @@ "Slots": [ { "_name": "mod_sight_rear", - "_id": "6193d382ed0429009f543e67", - "_parent": "6193d382ed0429009f543e65", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61963a852d2c397d660036ad", - "6194f2912d2c397d6600348d", - "6194f2df645b5d229654ad77" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "6193d382ed0429009f543e68", - "_parent": "6193d382ed0429009f543e65", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6194f35c18a3974e5e7421e6", - "6194f3286db0f2477964e67d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.96, - "CoolFactor": 1.06 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "6415c694da439c6a97048b56": { - "_id": "6415c694da439c6a97048b56", - "_name": "reciever_sks_utg_mtu017", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "Крышка ствольной коробки Зенит Б-33 для АК-74", - "ShortName": "Б-33", - "Description": "Цельнофрезерованная крышка ствольной коробки Б-33 от компании Зенит из комплекта обвязки для АК \"Классика\". Может быть установлена только совместно с цевьём Б-10М или Б-30.", - "Weight": 0.215, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_sks_utg_mtu017.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [ - "5b237e425acfc4771e1be0b6", - "59ccfdba86f7747f2109a587", - "5cf656f2d7f00c06585fb6eb", - "5d4aab30a4b9365435358c55", - "5947db3f86f77447880cf76f", - "57486e672459770abd687134", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "5dff8db859400025ea5150d4", - "638db77630c4240f9e06f8b6", - "63d114019e35b334d82302f7", - "5c61627a2e22160012542c55", - "618a75c9a3884f56c957ca1b", - "5e569a2e56edd02abe09f280", - "609a4b4fe2ff132951242d04", - "587e08ee245977446b4410cf", - "6415d33eda439c6a97048b5b" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "6415c694da439c6a97048b57", - "_parent": "6415c694da439c6a97048b56", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "64785e7c19d732620e045e15", - "6477772ea8a38bb2050ed4db", - "655f13e0a246670fb0373245", - "6478641c19d732620e045e17", - "63fc449f5bd61c6cf3784a88", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649af094bdc2df8348b4586" - }, - "618426d96c780c1e710c9b9f": { - "_id": "618426d96c780c1e710c9b9f", - "_name": "reciever_mk16_fn_scar_l_std_fde", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_mk17_fn_scar_h_std", - "ShortName": "reciever_mk17_fn_scar_h_std", - "Description": "reciever_mk17_fn_scar_h_std", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_mk16_fn_scar_l_std_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "618426d96c780c1e710c9ba1", - "_parent": "618426d96c780c1e710c9b9f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "618426d96c780c1e710c9ba2", - "_parent": "618426d96c780c1e710c9b9f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6183fc15d3a39d50044c13e9", - "6183fd911cb55961fa0fdce9", - "6183fd9e8004cc50514c358f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "618426d96c780c1e710c9ba3", - "_parent": "618426d96c780c1e710c9b9f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61817865d3a39d50044c13a4", - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347", - "55d5f46a4bdc2d1b198b4567", - "5ae30bad5acfc400185c2dc4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "618426d96c780c1e710c9ba4", - "_parent": "618426d96c780c1e710c9b9f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "618426d96c780c1e710c9ba5", - "_parent": "618426d96c780c1e710c9b9f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "618426d96c780c1e710c9ba6", - "_parent": "618426d96c780c1e710c9b9f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61816df1d3a39d50044c139e", - "619666f4af1f5202c57a952d" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "618426d96c780c1e710c9ba7", - "_parent": "618426d96c780c1e710c9b9f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61816dfa6ef05c2ce828f1ad" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "618426d96c780c1e710c9ba8", - "_parent": "618426d96c780c1e710c9b9f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.984, - "CoolFactor": 1.017 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "6194f5d418a3974e5e7421ef": { - "_id": "6194f5d418a3974e5e7421ef", - "_name": "reciever_usp_hk_elite", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_glock_glock_17_std", - "ShortName": "reciever_glock_glock_17_std", - "Description": "reciever_glock_glock_17_std", - "Weight": 0.55, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_usp_hk_elite.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "619624b26db0f2477964e6b0", - "6194ef39de3cdf1d2614a768", - "6194efe07c6c7b169525f11b", - "6194eff92d2c397d6600348b", - "6194f02d9bb3d20b0946d2f0" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "6194f5d418a3974e5e7421f1", - "_parent": "6194f5d418a3974e5e7421ef", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6194f2912d2c397d6600348d", - "6194f2df645b5d229654ad77" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "6194f5d418a3974e5e7421f2", - "_parent": "6194f5d418a3974e5e7421ef", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6194f35c18a3974e5e7421e6", - "6194f3286db0f2477964e67d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 5, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.95, - "CoolFactor": 1.06 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5c07a8770db8340023300450": { - "_id": "5c07a8770db8340023300450", - "_name": "reciever_ar15_noveske_gen3", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_ar15_noveske_gen3_stripped", - "ShortName": "reciever_ar15_noveske_gen3_stripped", - "Description": "reciever_ar15_noveske_gen3_stripped", - "Weight": 0.212, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_ar15_noveske_gen3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5c07a8770db8340023300452", - "_parent": "5c07a8770db8340023300450", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "5c07a8770db8340023300453", - "_parent": "5c07a8770db8340023300450", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d35ee94bdc2d61338b4568", - "55d3632e4bdc2d972f8b4569", - "5d440b93a4b9364276578d4b", - "5d440b9fa4b93601354d480c", - "5c0e2f94d174af029f650d56", - "63d3ce0446bd475bcb50f55f", - "63d3d44a2a49307baf09386d" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "5c07a8770db8340023300454", - "_parent": "5c07a8770db8340023300450", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0e2f5cd174af02a012cfc9", - "619b5db699fb192e7430664f", - "5b2cfa535acfc432ff4db7a0", - "5ae30db85acfc408fb139a05", - "55d459824bdc2d892f8b4573", - "5d122e7bd7ad1a07102d6d7f", - "5d123102d7ad1a004e475fe5", - "5d4405f0a4b9361e6a4e6bd9", - "5c78f2792e221600106f4683", - "5c78f26f2e221601da3581d1", - "5c78f2492e221600114c9f04", - "5c78f2612e221600114c9f0d", - "6034e3e20ddce744014cb878", - "6034e3d953a60014f970617b", - "6034e3cb0ddce744014cb870", - "5d00e0cbd7ad1a6c6566a42d", - "5d00f63bd7ad1a59283b1c1e", - "6087e0336d0bd7580617bb7a", - "595cfa8b86f77427437e845b", - "595cf16b86f77427440c32e2", - "63888bbd28e5cc32cc09d2b6", - "63f4ba71f31d4a33b87bd046", - "640b20359ab20e15ee445fa9", - "647de824196bf69818044c93" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5c07a8770db8340023300455", - "_parent": "5c07a8770db8340023300450", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347", - "55d5f46a4bdc2d1b198b4567", - "5ae30bad5acfc400185c2dc4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 13, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 0.979, - "CoolFactor": 1.017 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5f3e7823ddc4f03b010e2045": { - "_id": "5f3e7823ddc4f03b010e2045", - "_name": "reciever_m1911_colt_m45a1_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_m1911_colt_m45a1_std", - "ShortName": "reciever_m1911_colt_m45a1_std", - "Description": "reciever_m1911_colt_m45a1_std", - "Weight": 0.47, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_m1911_colt_m45a1_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "5f3e7823ddc4f03b010e2047", - "_parent": "5f3e7823ddc4f03b010e2045", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f3e7897ddc4f03b010e204a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5f3e7823ddc4f03b010e2048", - "_parent": "5f3e7823ddc4f03b010e2045", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f3e78a7fbf956000b716b8e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5f3e7823ddc4f03b010e2049", - "_parent": "5f3e7823ddc4f03b010e2045", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ef61964ec7f42238c31e0c1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.954, - "CoolFactor": 1.06 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5cc70102e4a949035e43ba74": { - "_id": "5cc70102e4a949035e43ba74", - "_name": "reciever_p90_fn_p90_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "Крышка ствольной коробки Ижмаш для АК-74", - "ShortName": "Кск АК74", - "Description": "Штатная крышка ствольной коробки АК-74 производства Ижмаш.", - "Weight": 0.31, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_p90_fn_p90_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 1, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "5cc83ab4d7f00c0012066ad5", - "_parent": "5cc70102e4a949035e43ba74", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cebec38d7f00c00110a652a", - "5cc7015ae4a949001152b4c6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5cc83ac0d7f00c000e257554", - "_parent": "5cc70102e4a949035e43ba74", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cc70146e4a949000d73bf6b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5cc83acbd7f00c000f5f5eda", - "_parent": "5cc70102e4a949035e43ba74", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cc70146e4a949000d73bf6b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.951, - "CoolFactor": 1.052 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5b1faa0f5acfc40dc528aeb5": { - "_id": "5b1faa0f5acfc40dc528aeb5", - "_name": "reciever_glock_glock_18c_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_glock_glock_18c_std", - "ShortName": "reciever_glock_glock_18c_std", - "Description": "reciever_glock_glock_18c_std", - "Weight": 0.32, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_glock_glock_18c_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "5b1faa0f5acfc40dc528aeb7", - "_parent": "5b1faa0f5acfc40dc528aeb5", + "_id": "5a7afa25e899ef00135e31b2", + "_parent": "5a7afa25e899ef00135e31b0", "_props": { "filters": [ { @@ -140491,8 +136784,8 @@ }, { "_name": "mod_sight_front", - "_id": "5b1faa0f5acfc40dc528aeb8", - "_parent": "5b1faa0f5acfc40dc528aeb5", + "_id": "5a7afa25e899ef00135e31b3", + "_parent": "5a7afa25e899ef00135e31b0", "_props": { "filters": [ { @@ -140510,49 +136803,67 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5a7b4c9ae899ef0016170fbc", + "_parent": "5a7afa25e899ef00135e31b0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7b32a2e899ef00135e345a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -2, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 3, + "Ergonomics": 5, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, - "IsAnimated": true, + "IsAnimated": false, "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.022, - "CoolFactor": 1.024 + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1.048, + "CoolFactor": 0.986 }, "_proto": "55d355e64bdc2d962f8b4569" }, - "6194f41f9fb0c665d5490e75": { - "_id": "6194f41f9fb0c665d5490e75", - "_name": "reciever_usp_hk_tactical", + "5926c0df86f77462f647f764": { + "_id": "5926c0df86f77462f647f764", + "_name": "reciever_mp5_hk_std", "_parent": "55818a304bdc2db5418b457d", "_type": "Item", "_props": { - "Name": "reciever_glock_glock_17_std", - "ShortName": "reciever_glock_glock_17_std", - "Description": "reciever_glock_glock_17_std", - "Weight": 0.472, + "Name": "reciever_mp5_hk_std", + "ShortName": "reciever_mp5_hk_std", + "Description": "reciever_mp5_hk_std", + "Weight": 0.588, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_usp_hk_tactical.bundle", + "path": "assets/content/items/mods/recievers/reciever_mp5_hk_std.bundle", "rcid": "" }, "UsePrefab": { @@ -140574,7 +136885,7 @@ "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 0, + "ExtraSizeLeft": 1, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, @@ -140599,17 +136910,36 @@ "Grids": [], "Slots": [ { - "_name": "mod_sight_rear", - "_id": "6194f41f9fb0c665d5490e77", - "_parent": "6194f41f9fb0c665d5490e75", + "_name": "mod_handguard", + "_id": "5926c0df86f77462f647f767", + "_parent": "5926c0df86f77462f647f764", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "61963a852d2c397d660036ad", - "6194f2912d2c397d6600348d", - "6194f2df645b5d229654ad77" + "5a9548c9159bd400133e97b3", + "5d010d1cd7ad1a59283b1ce7", + "5926c36d86f77467a92a8629", + "5d19cd96d7ad1a4a992c9f52" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5926c0df86f77462f647f768", + "_parent": "5926c0df86f77462f647f764", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5926d2be86f774134d668e4e" ] } ] @@ -140619,16 +136949,55 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_sight_front", - "_id": "6194f41f9fb0c665d5490e78", - "_parent": "6194f41f9fb0c665d5490e75", + "_name": "mod_stock", + "_id": "5926c1c786f774641f04af45", + "_parent": "5926c0df86f77462f647f764", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "6194f35c18a3974e5e7421e6", - "6194f3286db0f2477964e67d" + "5926d3c686f77410de68ebc8", + "5926d40686f7740f152b6b7e", + "5c07c9660db834001a66b588" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5926df9986f7742f6356f504", + "_parent": "5926c0df86f77462f647f764", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5926e16e86f7742f5a0f7ecb", + "5c0000c00db834001a6697fc" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5926dfdc86f7742eb80708a0", + "_parent": "5926c0df86f77462f647f764", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5926dad986f7741f82604363", + "5a966ec8a2750c00171b3f36" ] } ] @@ -140645,9 +137014,9 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 3, + "Ergonomics": 5, "Velocity": 0, - "RaidModdable": true, + "RaidModdable": false, "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, @@ -140656,355 +137025,29 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.99, - "HeatFactor": 0.956, - "CoolFactor": 1.06 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "618405198004cc50514c3594": { - "_id": "618405198004cc50514c3594", - "_name": "reciever_mk16_fn_scar_l_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_mk17_fn_scar_h_std", - "ShortName": "reciever_mk17_fn_scar_h_std", - "Description": "reciever_mk17_fn_scar_h_std", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_mk16_fn_scar_l_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "618405198004cc50514c3596", - "_parent": "618405198004cc50514c3594", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "618405198004cc50514c3597", - "_parent": "618405198004cc50514c3594", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6183fc15d3a39d50044c13e9", - "6183fd911cb55961fa0fdce9", - "6183fd9e8004cc50514c358f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "618405198004cc50514c3598", - "_parent": "618405198004cc50514c3594", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61817865d3a39d50044c13a4", - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347", - "55d5f46a4bdc2d1b198b4567", - "5ae30bad5acfc400185c2dc4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "618405198004cc50514c3599", - "_parent": "618405198004cc50514c3594", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "618405198004cc50514c359a", - "_parent": "618405198004cc50514c3594", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "618405198004cc50514c359b", - "_parent": "618405198004cc50514c3594", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61816df1d3a39d50044c139e", - "619666f4af1f5202c57a952d" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "618405198004cc50514c359c", - "_parent": "618405198004cc50514c3594", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61816dfa6ef05c2ce828f1ad" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "618405198004cc50514c359d", - "_parent": "618405198004cc50514c3594", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, "DurabilityBurnModificator": 1, - "HeatFactor": 0.984, - "CoolFactor": 1.017 + "HeatFactor": 0.969, + "CoolFactor": 1.0815 }, "_proto": "55d355e64bdc2d962f8b4569" }, - "5bb20e0ed4351e3bac1212dc": { - "_id": "5bb20e0ed4351e3bac1212dc", - "_name": "pistolgrip_ar15_hk_battle_grip_beavertail", + "5649ad3f4bdc2df8348b4585": { + "_id": "5649ad3f4bdc2df8348b4585", + "_name": "pistolgrip_ak_izhmash_ak74_bakelit", "_parent": "55818a684bdc2ddd698b456d", "_type": "Item", "_props": { - "Name": "Пистолетная рукоятка DI ECS FDE для AR-15 совместимых", - "ShortName": "ECS FDE", - "Description": "Полимерная пистолетная рукоятка ECS устанавливается на любое оружие совместимое с пистолетными рукоятками от AR-15. Единственное отличие от штатной рукоятки- цвет.", - "Weight": 0.08, + "Name": "pistolgrip_ak_izhmash_ak74_bakelit", + "ShortName": "pistolgrip_ak_izhmash_ak74_bakelit", + "Description": "pistolgrip_ak_izhmash_ak74_bakelit", + "Weight": 0.07, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hk_battle_grip_beavertail.bundle", + "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_izhmash_ak74_bakelit.bundle", "rcid": "" }, "UsePrefab": { @@ -141057,256 +137100,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "5d025cc1d7ad1a53845279ef": { - "_id": "5d025cc1d7ad1a53845279ef", - "_name": "pistolgrip_ar15_hk_ergo_psg1_style_grip", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ar15_hk_grip_v2", - "ShortName": "pistolgrip_ar15_hk_grip_v2", - "Description": "pistolgrip_ar15_hk_grip_v2", - "Weight": 0.11, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_hk_ergo_psg1_style_grip.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 15, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55d4b9964bdc2d1d4e8b456e" - }, - "615d8faecabb9b7ad90f4d5d": { - "_id": "615d8faecabb9b7ad90f4d5d", - "_name": "pistolgrip_ar15_tactical_dynamics_hexgrip", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_ar15_f1_firearms_st1_skeletonized", - "ShortName": "pistolgrip_ar15_f1_firearms_st1_skeletonized", - "Description": "pistolgrip_ar15_f1_firearms_st1_skeletonized", - "Weight": 0.064, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_tactical_dynamics_hexgrip.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 1, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "55802f5d4bdc2dac148b458f" - }, - "5e81c6bf763d9f754677beff": { - "_id": "5e81c6bf763d9f754677beff", - "_name": "pistolgrip_m1911_colt_m1911a1_std", - "_parent": "55818a684bdc2ddd698b456d", - "_type": "Item", - "_props": { - "Name": "pistolgrip_m1911_colt_m1911a1_std", - "ShortName": "pistolgrip_m1911_colt_m1911a1_std", - "Description": "pistolgrip_m1911_colt_m1911a1_std", - "Weight": 0.27, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/pistol grips/pistolgrip_m1911_colt_m1911a1_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, + "Ergonomics": 6, "Velocity": 0, "RaidModdable": false, "ToolModdable": true, @@ -141822,6 +137616,4281 @@ }, "_proto": "55d355e64bdc2d962f8b4569" }, + "6113cc78d3a39d50044c065a": { + "_id": "6113cc78d3a39d50044c065a", + "_name": "pistolgrip_ar15_f1_firearms_st2_pc_skeletonized", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ar15_f1_firearms_st2_pc_skeletonized", + "ShortName": "pistolgrip_ar15_f1_firearms_st2_pc_skeletonized", + "Description": "pistolgrip_ar15_f1_firearms_st2_pc_skeletonized", + "Weight": 0.087, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_f1_firearms_st2_pc_skeletonized.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 13, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55802f5d4bdc2dac148b458f" + }, + "628b9be6cff66b70c002b14c": { + "_id": "628b9be6cff66b70c002b14c", + "_name": "reciever_ak_sag_ak545_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "Крышка ствольной коробки Ижмаш для АК-74", + "ShortName": "Кск АК74", + "Description": "Штатная крышка ствольной коробки АК-74 производства Ижмаш.", + "Weight": 0.088, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_ak_sag_ak545_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "628b9c0d717774443b15e9f5", + "_parent": "628b9be6cff66b70c002b14c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "628b9471078f94059a4b9bfb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "628b9c21d4bff34e474e0f90", + "_parent": "628b9be6cff66b70c002b14c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "626bb8532c923541184624b4", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "62811f461d5df4475f46a332", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.99, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5649af094bdc2df8348b4586": { + "_id": "5649af094bdc2df8348b4586", + "_name": "reciever_ak74_izhmash_ak74_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "Крышка ствольной коробки Ижмаш для АК-74", + "ShortName": "Кск АК74", + "Description": "Штатная крышка ствольной коробки АК-74 производства Ижмаш.", + "Weight": 0.088, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_ak74_izhmash_ak74_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount", + "_id": "5649d89e4bdc2d3b4c8b457e", + "_parent": "5649af094bdc2df8348b4586", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5926f2e086f7745aae644231": { + "_id": "5926f2e086f7745aae644231", + "_name": "reciever_mp5_hk_sd", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_mp5_hk_sd", + "ShortName": "reciever_mp5_hk_sd", + "Description": "reciever_mp5_hk_sd", + "Weight": 0.62, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_mp5_hk_sd.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_handguard", + "_id": "5926f2e086f7745aae644232", + "_parent": "5926f2e086f7745aae644231", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5926f34786f77469195bfe92" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5926f2e086f7745aae644233", + "_parent": "5926f2e086f7745aae644231", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5926d2be86f774134d668e4e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5926f2e086f7745aae644234", + "_parent": "5926f2e086f7745aae644231", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5926d3c686f77410de68ebc8", + "5926d40686f7740f152b6b7e", + "5c07c9660db834001a66b588" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5926f2e086f7745aae644235", + "_parent": "5926f2e086f7745aae644231", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5926d33d86f77410de68ebc0" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5926f2e086f7745aae644236", + "_parent": "5926f2e086f7745aae644231", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5926dad986f7741f82604363", + "5a966ec8a2750c00171b3f36" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": -33, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.987, + "CoolFactor": 1.1232 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "618426d96c780c1e710c9b9f": { + "_id": "618426d96c780c1e710c9b9f", + "_name": "reciever_mk16_fn_scar_l_std_fde", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_mk17_fn_scar_h_std", + "ShortName": "reciever_mk17_fn_scar_h_std", + "Description": "reciever_mk17_fn_scar_h_std", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_mk16_fn_scar_l_std_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "618426d96c780c1e710c9ba1", + "_parent": "618426d96c780c1e710c9b9f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "618426d96c780c1e710c9ba2", + "_parent": "618426d96c780c1e710c9b9f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6183fc15d3a39d50044c13e9", + "6183fd911cb55961fa0fdce9", + "6183fd9e8004cc50514c358f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "618426d96c780c1e710c9ba3", + "_parent": "618426d96c780c1e710c9b9f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61817865d3a39d50044c13a4", + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347", + "55d5f46a4bdc2d1b198b4567", + "5ae30bad5acfc400185c2dc4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "618426d96c780c1e710c9ba4", + "_parent": "618426d96c780c1e710c9b9f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "618426d96c780c1e710c9ba5", + "_parent": "618426d96c780c1e710c9b9f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "618426d96c780c1e710c9ba6", + "_parent": "618426d96c780c1e710c9b9f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61816df1d3a39d50044c139e", + "619666f4af1f5202c57a952d" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "618426d96c780c1e710c9ba7", + "_parent": "618426d96c780c1e710c9b9f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61816dfa6ef05c2ce828f1ad" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "618426d96c780c1e710c9ba8", + "_parent": "618426d96c780c1e710c9b9f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.984, + "CoolFactor": 1.017 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "6415c694da439c6a97048b56": { + "_id": "6415c694da439c6a97048b56", + "_name": "reciever_sks_utg_mtu017", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "Крышка ствольной коробки Зенит Б-33 для АК-74", + "ShortName": "Б-33", + "Description": "Цельнофрезерованная крышка ствольной коробки Б-33 от компании Зенит из комплекта обвязки для АК \"Классика\". Может быть установлена только совместно с цевьём Б-10М или Б-30.", + "Weight": 0.215, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_sks_utg_mtu017.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [ + "5b237e425acfc4771e1be0b6", + "59ccfdba86f7747f2109a587", + "5cf656f2d7f00c06585fb6eb", + "5d4aab30a4b9365435358c55", + "5947db3f86f77447880cf76f", + "57486e672459770abd687134", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "5dff8db859400025ea5150d4", + "638db77630c4240f9e06f8b6", + "63d114019e35b334d82302f7", + "5c61627a2e22160012542c55", + "618a75c9a3884f56c957ca1b", + "5e569a2e56edd02abe09f280", + "609a4b4fe2ff132951242d04", + "587e08ee245977446b4410cf", + "6415d33eda439c6a97048b5b" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "6415c694da439c6a97048b57", + "_parent": "6415c694da439c6a97048b56", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "64785e7c19d732620e045e15", + "6477772ea8a38bb2050ed4db", + "655f13e0a246670fb0373245", + "6478641c19d732620e045e17", + "63fc449f5bd61c6cf3784a88", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649af094bdc2df8348b4586" + }, + "571659bb2459771fb2755a12": { + "_id": "571659bb2459771fb2755a12", + "_name": "pistolgrip_ar15_damage_industries_ecs_fde", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "Пистолетная рукоятка DI ECS FDE для AR-15 совместимых", + "ShortName": "ECS FDE", + "Description": "Полимерная пистолетная рукоятка ECS устанавливается на любое оружие совместимое с пистолетными рукоятками от AR-15. Единственное отличие от штатной рукоятки- цвет.", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_damage_industries_ecs_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5.5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "5ac50da15acfc4001718d287": { + "_id": "5ac50da15acfc4001718d287", + "_name": "reciever_ak74_izhmash_ak74m_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_ak74_izhmash_ak74m_std", + "ShortName": "reciever_ak74_izhmash_ak74m_std", + "Description": "reciever_ak74_izhmash_ak74m_std", + "Weight": 0.088, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_ak74_izhmash_ak74m_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount", + "_id": "5ac50da15acfc4001718d289", + "_parent": "5ac50da15acfc4001718d287", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5d2f261548f03576f500e7b7": { + "_id": "5d2f261548f03576f500e7b7", + "_name": "reciever_mp5k_hk_kurtz_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_mp5_hk_std", + "ShortName": "reciever_mp5_hk_std", + "Description": "reciever_mp5_hk_std", + "Weight": 0.45, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_mp5k_hk_kurtz_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_handguard", + "_id": "5d2f261548f03576f500e7b9", + "_parent": "5d2f261548f03576f500e7b7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d2f259b48f0355a844acd74" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5d2f261548f03576f500e7ba", + "_parent": "5d2f261548f03576f500e7b7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5926d2be86f774134d668e4e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5d2f261548f03576f500e7bb", + "_parent": "5d2f261548f03576f500e7b7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d2f25bc48f03502573e5d85" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5d2f261548f03576f500e7bd", + "_parent": "5d2f261548f03576f500e7b7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5926dad986f7741f82604363" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.0176, + "CoolFactor": 1.1227 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5bffef760db8340019668fe4": { + "_id": "5bffef760db8340019668fe4", + "_name": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", + "ShortName": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", + "Description": "pistolgrip_p226_hogue_chain_link_g10_g_mascus", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_p226_hogue_chain_link_g10_g_mascus.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 12, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55d4b9964bdc2d1d4e8b456e" + }, + "5cf508bfd7f00c056e24104e": { + "_id": "5cf508bfd7f00c056e24104e", + "_name": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip_fde", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", + "ShortName": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", + "Description": "pistolgrip_ak_strike_indsustries_enhanced_pistol_grip", + "Weight": 0.091, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ak_strike_indsustries_enhanced_pistol_grip_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "5649ade84bdc2d1b2b8b4587" + }, + "5b1faa0f5acfc40dc528aeb5": { + "_id": "5b1faa0f5acfc40dc528aeb5", + "_name": "reciever_glock_glock_18c_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_glock_glock_18c_std", + "ShortName": "reciever_glock_glock_18c_std", + "Description": "reciever_glock_glock_18c_std", + "Weight": 0.32, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_glock_glock_18c_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "5b1faa0f5acfc40dc528aeb7", + "_parent": "5b1faa0f5acfc40dc528aeb5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7d9122159bd4001438dbf4", + "5a6f5d528dc32e00094b97d9", + "5a7d912f159bd400165484f3", + "5a71e0fb8dc32e00094b97f2", + "630765cb962d0247b029dc45" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5b1faa0f5acfc40dc528aeb8", + "_parent": "5b1faa0f5acfc40dc528aeb5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7d90eb159bd400165484f1", + "5a6f58f68dc32e000a311390", + "5a7d9104159bd400134c8c21", + "5a71e0048dc32e000c52ecc8", + "630765777d50ff5e8a1ea718" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.022, + "CoolFactor": 1.024 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "6193d382ed0429009f543e65": { + "_id": "6193d382ed0429009f543e65", + "_name": "reciever_usp_hk_usp_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_glock_glock_17_std", + "ShortName": "reciever_glock_glock_17_std", + "Description": "reciever_glock_glock_17_std", + "Weight": 0.409, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_usp_hk_usp_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "6193d382ed0429009f543e67", + "_parent": "6193d382ed0429009f543e65", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61963a852d2c397d660036ad", + "6194f2912d2c397d6600348d", + "6194f2df645b5d229654ad77" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "6193d382ed0429009f543e68", + "_parent": "6193d382ed0429009f543e65", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6194f35c18a3974e5e7421e6", + "6194f3286db0f2477964e67d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.96, + "CoolFactor": 1.06 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5cc70102e4a949035e43ba74": { + "_id": "5cc70102e4a949035e43ba74", + "_name": "reciever_p90_fn_p90_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "Крышка ствольной коробки Ижмаш для АК-74", + "ShortName": "Кск АК74", + "Description": "Штатная крышка ствольной коробки АК-74 производства Ижмаш.", + "Weight": 0.31, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_p90_fn_p90_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 1, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5cc83ab4d7f00c0012066ad5", + "_parent": "5cc70102e4a949035e43ba74", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cebec38d7f00c00110a652a", + "5cc7015ae4a949001152b4c6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5cc83ac0d7f00c000e257554", + "_parent": "5cc70102e4a949035e43ba74", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cc70146e4a949000d73bf6b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5cc83acbd7f00c000f5f5eda", + "_parent": "5cc70102e4a949035e43ba74", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cc70146e4a949000d73bf6b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.951, + "CoolFactor": 1.052 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5649af884bdc2d1b2b8b4589": { + "_id": "5649af884bdc2d1b2b8b4589", + "_name": "reciever_ak_zenit_b33", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "Крышка ствольной коробки Зенит Б-33 для АК-74", + "ShortName": "Б-33", + "Description": "Цельнофрезерованная крышка ствольной коробки Б-33 от компании Зенит из комплекта обвязки для АК \"Классика\". Может быть установлена только совместно с цевьём Б-10М или Б-30.", + "Weight": 0.215, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_ak_zenit_b33.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5b237e425acfc4771e1be0b6", + "59ccfdba86f7747f2109a587", + "5cf656f2d7f00c06585fb6eb", + "5d4aab30a4b9365435358c55", + "5947db3f86f77447880cf76f", + "57486e672459770abd687134", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "5cf4e3f3d7f00c06595bc7f0", + "5648ae314bdc2d3d1c8b457f", + "5d2c829448f0353a5c7d6674", + "5b800e9286f7747a8b04f3ff", + "5b80242286f77429445e0b47", + "5cbda392ae92155f3c17c39f", + "5cbda9f4ae9215000e5b9bfc", + "5648b0744bdc2d363b8b4578", + "5648b1504bdc2d9d488b4584", + "59d64f2f86f77417193ef8b3", + "59fb375986f7741b681b81a6", + "57cff947245977638e6f2a19", + "57cffd8224597763b03fc609", + "57cffddc24597763133760c6", + "57cffe0024597763b03fc60b", + "57cffe20245977632f391a9d", + "5c9a07572e221644f31c4b32", + "5c9a1c3a2e2216000e69fb6a", + "5c9a1c422e221600106f69f0", + "59e6284f86f77440d569536f", + "59e898ee86f77427614bd225", + "5a9d56c8a2750c0032157146", + "5d1b198cd7ad1a604869ad72", + "5d4aaa73a4b9365392071175", + "5d4aaa54a4b9365392071170", + "5f6331e097199b7db2128dc2", + "5c17664f2e2216398b5a7e3c", + "5c617a5f2e2216000f1e81b3" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5649d8de4bdc2d3d1c8b4588", + "_parent": "5649af884bdc2d1b2b8b4589", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6478641c19d732620e045e17", + "6477772ea8a38bb2050ed4db", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1.5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649af094bdc2df8348b4586" + }, + "5c07a8770db8340023300450": { + "_id": "5c07a8770db8340023300450", + "_name": "reciever_ar15_noveske_gen3", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_ar15_noveske_gen3_stripped", + "ShortName": "reciever_ar15_noveske_gen3_stripped", + "Description": "reciever_ar15_noveske_gen3_stripped", + "Weight": 0.212, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_ar15_noveske_gen3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5c07a8770db8340023300452", + "_parent": "5c07a8770db8340023300450", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "5c07a8770db8340023300453", + "_parent": "5c07a8770db8340023300450", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d35ee94bdc2d61338b4568", + "55d3632e4bdc2d972f8b4569", + "5d440b93a4b9364276578d4b", + "5d440b9fa4b93601354d480c", + "5c0e2f94d174af029f650d56", + "63d3ce0446bd475bcb50f55f", + "63d3d44a2a49307baf09386d" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "5c07a8770db8340023300454", + "_parent": "5c07a8770db8340023300450", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0e2f5cd174af02a012cfc9", + "619b5db699fb192e7430664f", + "5b2cfa535acfc432ff4db7a0", + "5ae30db85acfc408fb139a05", + "55d459824bdc2d892f8b4573", + "5d122e7bd7ad1a07102d6d7f", + "5d123102d7ad1a004e475fe5", + "5d4405f0a4b9361e6a4e6bd9", + "5c78f2792e221600106f4683", + "5c78f26f2e221601da3581d1", + "5c78f2492e221600114c9f04", + "5c78f2612e221600114c9f0d", + "6034e3e20ddce744014cb878", + "6034e3d953a60014f970617b", + "6034e3cb0ddce744014cb870", + "5d00e0cbd7ad1a6c6566a42d", + "5d00f63bd7ad1a59283b1c1e", + "6087e0336d0bd7580617bb7a", + "595cfa8b86f77427437e845b", + "595cf16b86f77427440c32e2", + "63888bbd28e5cc32cc09d2b6", + "63f4ba71f31d4a33b87bd046", + "640b20359ab20e15ee445fa9", + "647de824196bf69818044c93" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5c07a8770db8340023300455", + "_parent": "5c07a8770db8340023300450", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347", + "55d5f46a4bdc2d1b198b4567", + "5ae30bad5acfc400185c2dc4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 13, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 0.979, + "CoolFactor": 1.017 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5bb20d53d4351e4502010a69": { + "_id": "5bb20d53d4351e4502010a69", + "_name": "reciever_ar15_hk_hk416a5_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_ar15_hk_hk416a5_std", + "ShortName": "reciever_ar15_hk_hk416a5_std", + "Description": "reciever_ar15_hk_hk416a5_std", + "Weight": 0.27, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_ar15_hk_hk416a5_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5bb20d53d4351e4502010a6b", + "_parent": "5bb20d53d4351e4502010a69", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "5bb20d53d4351e4502010a6c", + "_parent": "5bb20d53d4351e4502010a69", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c6d85e02e22165df16b81f4", + "5bb20d92d4351e00853263eb", + "5bb20d9cd4351e00334c9d8a", + "5bb20da5d4351e0035629dbf", + "5bb20dadd4351e00367faeff" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "5bb20d53d4351e4502010a6d", + "_parent": "5bb20d53d4351e4502010a69", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c6d10e82e221601da357b07", + "5bb20de5d4351e0035629e59", + "5bb20dfcd4351e00334c9e24", + "5bb20df1d4351e00347787d5", + "5c6d11072e2216000e69d2e4", + "5c6d10fa2e221600106f3f23", + "5c6d11152e2216000f2003e7", + "5c6c2c9c2e2216000f2002e4" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5bb20d53d4351e4502010a6e", + "_parent": "5bb20d53d4351e4502010a69", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347", + "55d5f46a4bdc2d1b198b4567", + "5ae30bad5acfc400185c2dc4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.986, + "CoolFactor": 1.014 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5f3e7823ddc4f03b010e2045": { + "_id": "5f3e7823ddc4f03b010e2045", + "_name": "reciever_m1911_colt_m45a1_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_m1911_colt_m45a1_std", + "ShortName": "reciever_m1911_colt_m45a1_std", + "Description": "reciever_m1911_colt_m45a1_std", + "Weight": 0.47, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_m1911_colt_m45a1_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "5f3e7823ddc4f03b010e2047", + "_parent": "5f3e7823ddc4f03b010e2045", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f3e7897ddc4f03b010e204a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5f3e7823ddc4f03b010e2048", + "_parent": "5f3e7823ddc4f03b010e2045", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f3e78a7fbf956000b716b8e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5f3e7823ddc4f03b010e2049", + "_parent": "5f3e7823ddc4f03b010e2045", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ef61964ec7f42238c31e0c1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.954, + "CoolFactor": 1.06 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "618405198004cc50514c3594": { + "_id": "618405198004cc50514c3594", + "_name": "reciever_mk16_fn_scar_l_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_mk17_fn_scar_h_std", + "ShortName": "reciever_mk17_fn_scar_h_std", + "Description": "reciever_mk17_fn_scar_h_std", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_mk16_fn_scar_l_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "618405198004cc50514c3596", + "_parent": "618405198004cc50514c3594", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "618405198004cc50514c3597", + "_parent": "618405198004cc50514c3594", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6183fc15d3a39d50044c13e9", + "6183fd911cb55961fa0fdce9", + "6183fd9e8004cc50514c358f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "618405198004cc50514c3598", + "_parent": "618405198004cc50514c3594", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61817865d3a39d50044c13a4", + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347", + "55d5f46a4bdc2d1b198b4567", + "5ae30bad5acfc400185c2dc4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "618405198004cc50514c3599", + "_parent": "618405198004cc50514c3594", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "618405198004cc50514c359a", + "_parent": "618405198004cc50514c3594", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "618405198004cc50514c359b", + "_parent": "618405198004cc50514c3594", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61816df1d3a39d50044c139e", + "619666f4af1f5202c57a952d" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "618405198004cc50514c359c", + "_parent": "618405198004cc50514c3594", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61816dfa6ef05c2ce828f1ad" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "618405198004cc50514c359d", + "_parent": "618405198004cc50514c3594", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.984, + "CoolFactor": 1.017 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "56d5a407d2720bb3418b456b": { + "_id": "56d5a407d2720bb3418b456b", + "_name": "reciever_p226_sig_p226r_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "Затвор Sig P226R 9x19 для пистолета P226", + "ShortName": "Затвор P226", + "Description": "бла бла бла", + "Weight": 0.19, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_p226_sig_p226r_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "56d5a80ed2720bd5418b456a", + "_parent": "56d5a407d2720bb3418b456b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c07b3850db834002330045b", + "56d5a77ed2720b90418b4568", + "56ea7293d2720b8d4b8b45ba", + "5a32aa0cc4a28232996e405f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "56d5a81cd2720bdc418b456a", + "_parent": "56d5a407d2720bb3418b456b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c07b36c0db834002a1259e9", + "56d5a661d2720bd8418b456b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.962, + "CoolFactor": 1.059 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5b07db875acfc40dc528a5f6": { + "_id": "5b07db875acfc40dc528a5f6", + "_name": "pistolgrip_ar15_tactical_dynamics_skeletonized_anodized", + "_parent": "55818a684bdc2ddd698b456d", + "_type": "Item", + "_props": { + "Name": "pistolgrip_ar15_tactical_dynamics_skeletonized_anodized", + "ShortName": "pistolgrip_ar15_tactical_dynamics_skeletonized_anodized", + "Description": "pistolgrip_ar15_tactical_dynamics_skeletonized_anodized", + "Weight": 0.038, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/pistol grips/pistolgrip_ar15_tactical_dynamics_skeletonized_anodized.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 1, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "55802f5d4bdc2dac148b458f" + }, + "6194f5d418a3974e5e7421ef": { + "_id": "6194f5d418a3974e5e7421ef", + "_name": "reciever_usp_hk_elite", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_glock_glock_17_std", + "ShortName": "reciever_glock_glock_17_std", + "Description": "reciever_glock_glock_17_std", + "Weight": 0.55, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_usp_hk_elite.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "619624b26db0f2477964e6b0", + "6194ef39de3cdf1d2614a768", + "6194efe07c6c7b169525f11b", + "6194eff92d2c397d6600348b", + "6194f02d9bb3d20b0946d2f0" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "6194f5d418a3974e5e7421f1", + "_parent": "6194f5d418a3974e5e7421ef", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6194f2912d2c397d6600348d", + "6194f2df645b5d229654ad77" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "6194f5d418a3974e5e7421f2", + "_parent": "6194f5d418a3974e5e7421ef", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6194f35c18a3974e5e7421e6", + "6194f3286db0f2477964e67d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 5, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.95, + "CoolFactor": 1.06 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "59985a6c86f77414ec448d17": { + "_id": "59985a6c86f77414ec448d17", + "_name": "reciever_pp-19-01_izhmash_vityaz_sn", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_pp-19-01_izhmash_vityaz_sn", + "ShortName": "reciever_pp-19-01_izhmash_vityaz_sn", + "Description": "reciever_pp-19-01_izhmash_vityaz_sn", + "Weight": 0.136, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_pp-19-01_izhmash_vityaz_sn.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "57acb6222459771ec34b5cb0", + "618a5d5852ecee1505530b2a", + "6544d4187c5457729210d277" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "59985a6c86f77414ec448d18", + "_parent": "59985a6c86f77414ec448d17", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649af094bdc2df8348b4586" + }, + "6194f5a318a3974e5e7421eb": { + "_id": "6194f5a318a3974e5e7421eb", + "_name": "reciever_usp_hk_match", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_glock_glock_17_std", + "ShortName": "reciever_glock_glock_17_std", + "Description": "reciever_glock_glock_17_std", + "Weight": 0.45, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_usp_hk_match.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "6194f5a318a3974e5e7421ed", + "_parent": "6194f5a318a3974e5e7421eb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61963a852d2c397d660036ad", + "6194f2912d2c397d6600348d", + "6194f2df645b5d229654ad77" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "6194f5a318a3974e5e7421ee", + "_parent": "6194f5a318a3974e5e7421eb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6194f35c18a3974e5e7421e6", + "6194f3286db0f2477964e67d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.958, + "CoolFactor": 1.06 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "6194f5722d2c397d6600348f": { + "_id": "6194f5722d2c397d6600348f", + "_name": "reciever_usp_hk_expert", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_glock_glock_17_std", + "ShortName": "reciever_glock_glock_17_std", + "Description": "reciever_glock_glock_17_std", + "Weight": 0.44, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_usp_hk_expert.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "619624b26db0f2477964e6b0", + "6194ef39de3cdf1d2614a768", + "6194efe07c6c7b169525f11b" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "6194f5722d2c397d66003491", + "_parent": "6194f5722d2c397d6600348f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6194f2912d2c397d6600348d", + "6194f2df645b5d229654ad77" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "6194f5722d2c397d66003492", + "_parent": "6194f5722d2c397d6600348f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6194f35c18a3974e5e7421e6", + "6194f3286db0f2477964e67d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.958, + "CoolFactor": 1.06 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "6165adcdd3a39d50044c120f": { + "_id": "6165adcdd3a39d50044c120f", + "_name": "reciever_mk17_fn_scar_h_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_mk17_fn_scar_h_std", + "ShortName": "reciever_mk17_fn_scar_h_std", + "Description": "reciever_mk17_fn_scar_h_std", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_mk17_fn_scar_h_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "6165adcdd3a39d50044c1211", + "_parent": "6165adcdd3a39d50044c120f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "6165adcdd3a39d50044c1212", + "_parent": "6165adcdd3a39d50044c120f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "618168b350224f204c1da4d8", + "6183b0711cb55961fa0fdcad", + "6183b084a112697a4b3a6e6c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "6165adcdd3a39d50044c1214", + "_parent": "6165adcdd3a39d50044c120f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61817865d3a39d50044c13a4", + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347", + "55d5f46a4bdc2d1b198b4567", + "5ae30bad5acfc400185c2dc4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "61825bbdfaa1272e431523cc", + "_parent": "6165adcdd3a39d50044c120f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "61825bc967085e45ef140c64", + "_parent": "6165adcdd3a39d50044c120f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "61825bd5cabb9b7ad90f4fd1", + "_parent": "6165adcdd3a39d50044c120f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61816df1d3a39d50044c139e", + "619666f4af1f5202c57a952d" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "61825be1568c120fdd294938", + "_parent": "6165adcdd3a39d50044c120f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61816dfa6ef05c2ce828f1ad" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "61825bea6ef05c2ce828f1ca", + "_parent": "6165adcdd3a39d50044c120f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.984, + "CoolFactor": 1.017 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, "5d4405aaa4b9361e6a4e6bd3": { "_id": "5d4405aaa4b9361e6a4e6bd3", "_name": "reciever_ar15_lone_star_tx15_lightweight", @@ -142087,23 +142156,258 @@ }, "_proto": "55d355e64bdc2d962f8b4569" }, - "5d2c770c48f0354b4a07c100": { - "_id": "5d2c770c48f0354b4a07c100", - "_name": "reciever_ak_fab_defence_pdc", + "5b7d6c105acfc40015109a5f": { + "_id": "5b7d6c105acfc40015109a5f", + "_name": "reciever_fal_fn_fal_dust_cover_std", "_parent": "55818a304bdc2db5418b457d", "_type": "Item", "_props": { - "Name": "Крышка ствольной коробки Зенит Б-33 для АК-74", - "ShortName": "Б-33", - "Description": "Цельнофрезерованная крышка ствольной коробки Б-33 от компании Зенит из комплекта обвязки для АК \"Классика\". Может быть установлена только совместно с цевьём Б-10М или Б-30.", - "Weight": 0.202, + "Name": "reciever_sa58_ds_arms_extreme_duty_scope_mount_extended", + "ShortName": "reciever_sa58_ds_arms_extreme_duty_scope_mount_extended", + "Description": "reciever_sa58_ds_arms_extreme_duty_scope_mount_extended", + "Weight": 0.175, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_ak_fab_defence_pdc.bundle", + "path": "assets/content/items/mods/recievers/reciever_fal_fn_fal_dust_cover_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649af094bdc2df8348b4586" + }, + "5a6f5f078dc32e00094b97dd": { + "_id": "5a6f5f078dc32e00094b97dd", + "_name": "reciever_glock_gspc_viper_slide_cut", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_glock_glock_17_std", + "ShortName": "reciever_glock_glock_17_std", + "Description": "reciever_glock_glock_17_std", + "Weight": 0.25, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_glock_gspc_viper_slide_cut.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "5a6f5f078dc32e00094b97de", + "_parent": "5a6f5f078dc32e00094b97dd", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7d9122159bd4001438dbf4", + "5a6f5d528dc32e00094b97d9", + "5a7d912f159bd400165484f3", + "5a71e0fb8dc32e00094b97f2", + "630765cb962d0247b029dc45" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5a6f5f078dc32e00094b97df", + "_parent": "5a6f5f078dc32e00094b97dd", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7d90eb159bd400165484f1", + "5a6f58f68dc32e000a311390", + "5a7d9104159bd400134c8c21", + "5a71e0048dc32e000c52ecc8", + "630765777d50ff5e8a1ea718" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5a7b4bd0e899ef00135e3700", + "_parent": "5a6f5f078dc32e00094b97dd", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7b32a2e899ef00135e345a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.975, + "CoolFactor": 1.083 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5839a7742459773cf9693481": { + "_id": "5839a7742459773cf9693481", + "_name": "reciever_aks74u_izhmash_aks74ub_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_aks74u_izhmash_aks74ub_std", + "ShortName": "reciever_aks74u_izhmash_aks74ub_std", + "Description": "reciever_aks74u_izhmash_aks74ub_std\n", + "Weight": 0.142, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_aks74u_izhmash_aks74ub_std.bundle", "rcid": "" }, "UsePrefab": { @@ -142134,17 +142438,10 @@ "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [ - "5947db3f86f77447880cf76f", "57486e672459770abd687134", - "5649d9a14bdc2d79388b4580", "5c82342f2e221644f31c060e", "576fd4ec2459777f0b518431", "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "57acb6222459771ec34b5cb0", "5c61a40d2e2216001403158d", "5c90c3622e221601da359851" ], @@ -142162,178 +142459,6 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5d2c770c48f0354b4a07c102", - "_parent": "5d2c770c48f0354b4a07c100", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6478641c19d732620e045e17", - "6477772ea8a38bb2050ed4db", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649af094bdc2df8348b4586" - }, - "634f05ca517ccc8a960fc748": { - "_id": "634f05ca517ccc8a960fc748", - "_name": "reciever_sks_toz_sks_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_ak74_izhmash_ak74m_std", - "ShortName": "reciever_ak74_izhmash_ak74m_std", - "Description": "reciever_ak74_izhmash_ak74m_std", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_sks_toz_sks_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], @@ -142342,6 +142467,155 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649af094bdc2df8348b4586" + }, + "5a702d198dc32e000b452fc3": { + "_id": "5a702d198dc32e000b452fc3", + "_name": "reciever_glock_lone_wolf_alphawolf", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_glock_lone_wolf_alphawolf", + "ShortName": "reciever_glock_lone_wolf_alphawolf", + "Description": "reciever_glock_lone_wolf_alphawolf", + "Weight": 0.19, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_glock_lone_wolf_alphawolf.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "5a702d198dc32e000b452fc4", + "_parent": "5a702d198dc32e000b452fc3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7d9122159bd4001438dbf4", + "5a6f5d528dc32e00094b97d9", + "5a7d912f159bd400165484f3", + "5a71e0fb8dc32e00094b97f2", + "630765cb962d0247b029dc45" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5a702d198dc32e000b452fc5", + "_parent": "5a702d198dc32e000b452fc3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7d90eb159bd400165484f1", + "5a6f58f68dc32e000a311390", + "5a7d9104159bd400134c8c21", + "5a71e0048dc32e000c52ecc8", + "630765777d50ff5e8a1ea718" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5a7b4c0fe899ef0014330f19", + "_parent": "5a702d198dc32e000b452fc3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7b32a2e899ef00135e345a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, "Ergonomics": 2, "Velocity": 0, "RaidModdable": true, @@ -142353,9 +142627,158 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 + "DurabilityBurnModificator": 0.99, + "HeatFactor": 0.962, + "CoolFactor": 1.06 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5a9685b1a2750c0032157104": { + "_id": "5a9685b1a2750c0032157104", + "_name": "reciever_glock_gspc_moto_slide_cut", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_glock_gspc_moto_slide_cut", + "ShortName": "reciever_glock_gspc_moto_slide_cut", + "Description": "reciever_glock_gspc_moto_slide_cut", + "Weight": 0.25, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_glock_gspc_moto_slide_cut.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "5a9685b1a2750c0032157106", + "_parent": "5a9685b1a2750c0032157104", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7d9122159bd4001438dbf4", + "5a6f5d528dc32e00094b97d9", + "5a7d912f159bd400165484f3", + "5a71e0fb8dc32e00094b97f2", + "630765cb962d0247b029dc45" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5a9685b1a2750c0032157107", + "_parent": "5a9685b1a2750c0032157104", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7d90eb159bd400165484f1", + "5a6f58f68dc32e000a311390", + "5a7d9104159bd400134c8c21", + "5a71e0048dc32e000c52ecc8", + "630765777d50ff5e8a1ea718" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5a9685b1a2750c0032157108", + "_parent": "5a9685b1a2750c0032157104", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7b32a2e899ef00135e345a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.978, + "CoolFactor": 1.078 }, "_proto": "55d355e64bdc2d962f8b4569" }, @@ -142787,23 +143210,23 @@ }, "_proto": "558032574bdc2d89578b458a" }, - "62811fbf09427b40ab14e767": { - "_id": "62811fbf09427b40ab14e767", - "_name": "reciever_ax_accuracy_international_axmc_upper_pb", + "5c010a700db834001d23ef5d": { + "_id": "5c010a700db834001d23ef5d", + "_name": "reciever_p226_sig_emperor_scorpion", "_parent": "55818a304bdc2db5418b457d", "_type": "Item", "_props": { - "Name": "Верхний ресивер Colt M4A1 5.56х45 для штурмовой винтовки M4A1", - "ShortName": "M4A1 Upper", - "Description": "Верхний ресивер для M4A1 производства компании Colt. Имеет направляющую для крепления дополнительного оборудования.", - "Weight": 0.38, + "Name": "Затвор Sig P226R 9x19 для пистолета P226", + "ShortName": "Затвор P226", + "Description": "бла бла бла", + "Weight": 0.22, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_ax_accuracy_international_axmc_upper_pb.bundle", + "path": "assets/content/items/mods/recievers/reciever_p226_sig_emperor_scorpion.bundle", "rcid": "" }, "UsePrefab": { @@ -142849,129 +143272,38 @@ "IsUnremovable": false, "Grids": [], "Slots": [ - { - "_name": "mod_scope", - "_id": "62811fbf09427b40ab14e768", - "_parent": "62811fbf09427b40ab14e767", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "626bb8532c923541184624b4", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "62811f461d5df4475f46a332", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "62811fbf09427b40ab14e769", - "_parent": "62811fbf09427b40ab14e767", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "628121434fa03b6b6c35dc6a" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_sight_rear", - "_id": "62811fbf09427b40ab14e76b", - "_parent": "62811fbf09427b40ab14e767", + "_id": "5c010a700db834001d23ef5f", + "_parent": "5c010a700db834001d23ef5d", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347", - "55d5f46a4bdc2d1b198b4567", - "5ae30bad5acfc400185c2dc4" + "5c07b3850db834002330045b", + "56d5a77ed2720b90418b4568", + "56ea7293d2720b8d4b8b45ba", + "5a32aa0cc4a28232996e405f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5c010a700db834001d23ef60", + "_parent": "5c010a700db834001d23ef5d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c07b36c0db834002a1259e9", + "56d5a661d2720bd8418b456b" ] } ] @@ -142985,516 +143317,25 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.989, - "CoolFactor": 1.01 - } - }, - "6281204f308cb521f87a8f9b": { - "_id": "6281204f308cb521f87a8f9b", - "_name": "reciever_ax_accuracy_international_axmc_std_86x70_pb", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "Верхний ресивер Colt M4A1 5.56х45 для штурмовой винтовки M4A1", - "ShortName": "M4A1 Upper", - "Description": "Верхний ресивер для M4A1 производства компании Colt. Имеет направляющую для крепления дополнительного оборудования.", - "Weight": 0.31, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_ax_accuracy_international_axmc_std_86x70_pb.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_handguard", - "_id": "6281204f308cb521f87a8f9e", - "_parent": "6281204f308cb521f87a8f9b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6281209662cba23f6c4d7a19" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "628157d3308cb521f87a8fab", - "_parent": "6281204f308cb521f87a8f9b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6281212a09427b40ab14e770" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "628157d3308cb521f87a8fac", - "_parent": "6281204f308cb521f87a8f9b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62811fbf09427b40ab14e767" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.989, - "CoolFactor": 1.01 - } - }, - "555ef6e44bdc2de9068b457e": { - "_id": "555ef6e44bdc2de9068b457e", - "_name": "Barrel", - "_parent": "55802f4a4bdc2ddb688b4569", - "_type": "Node", - "_props": { - "CenterOfImpact": 0.01, - "ShotgunDispersion": 1, - "IsSilencer": false, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1, - "DeviationCurve": 1, - "DeviationMax": 100 - } - }, - "5d0b5cd3d7ad1a3fe32ad263": { - "_id": "5d0b5cd3d7ad1a3fe32ad263", - "_name": "tactical_1p59_kmz_eyecup", - "_parent": "5a74651486f7744e73386dd1", - "_type": "Item", - "_props": { - "Name": "tactical_pso_belomo_eyecup", - "ShortName": "tactical_pso_belomo_eyecup", - "Description": "tactical_pso_belomo_eyecup", - "Weight": 0.005, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_1p59_kmz_eyecup.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ShiftsAimCamera": 0.01, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, - "646f62fee779812413011ab7": { - "_id": "646f62fee779812413011ab7", - "_name": "flashlight_base_zenit_2ds", - "_parent": "55818b084bdc2d5b648b4571", - "_type": "Item", - "_props": { - "Name": "flashlight_ultrafire_WF-501B", - "ShortName": "flashlight_ultrafire_WF-501B", - "Description": "flashlight_ultrafire_WF-501B", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/flashlights/flashlight_base_zenit_2ds.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ModesCount": 1 - } - }, - "57cffcdd24597763f5110006": { - "_id": "57cffcdd24597763f5110006", - "_name": "foregrip_m-lok_magpul_m-lok_afg_od", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_m-lok_magpul_m-lok_afg_blk", - "ShortName": "foregrip_m-lok_magpul_m-lok_afg_blk", - "Description": "foregrip_m-lok_magpul_m-lok_afg_blk", - "Weight": 0.042, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_m-lok_magpul_m-lok_afg_od.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "57cffcd624597763133760c5" - }, - "5c1bc5612e221602b5429350": { - "_id": "5c1bc5612e221602b5429350", - "_name": "foregrip_all_zenit_rk_1", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Weight": 0.17, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_zenit_rk_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, "Recoil": -3, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 1, + "Ergonomics": 2, "Velocity": 0, "RaidModdable": true, - "ToolModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.954, + "CoolFactor": 1.065 }, - "_proto": "558032614bdc2de7118b4585" + "_proto": "55d355e64bdc2d962f8b4569" }, "57c44f4f2459772d2c627113": { "_id": "57c44f4f2459772d2c627113", @@ -144770,23 +144611,275 @@ }, "_proto": "558032574bdc2d89578b458a" }, - "5de8e67c4a9f347bc92edbd7": { - "_id": "5de8e67c4a9f347bc92edbd7", - "_name": "reciever_mp9_bt_mp9_upper_std", + "5c0009510db834001966907f": { + "_id": "5c0009510db834001966907f", + "_name": "reciever_p226_sig_stainless_elite", "_parent": "55818a304bdc2db5418b457d", "_type": "Item", "_props": { - "Name": "Верхний ресивер Colt M4A1 5.56х45 для штурмовой винтовки M4A1", - "ShortName": "M4A1 Upper", - "Description": "Верхний ресивер для M4A1 производства компании Colt. Имеет направляющую для крепления дополнительного оборудования.", - "Weight": 0.27, + "Name": "Затвор Sig P226R 9x19 для пистолета P226", + "ShortName": "Затвор P226", + "Description": "бла бла бла", + "Weight": 0.22, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_mp9_bt_mp9_upper_std.bundle", + "path": "assets/content/items/mods/recievers/reciever_p226_sig_stainless_elite.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "5c0009510db8340019669081", + "_parent": "5c0009510db834001966907f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c07b3850db834002330045b", + "56d5a77ed2720b90418b4568", + "56ea7293d2720b8d4b8b45ba", + "5a32aa0cc4a28232996e405f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5c0009510db8340019669082", + "_parent": "5c0009510db834001966907f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c07b36c0db834002a1259e9", + "56d5a661d2720bd8418b456b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.957, + "CoolFactor": 1.065 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "60228924961b8d75ee233c32": { + "_id": "60228924961b8d75ee233c32", + "_name": "reciever_pl15_izhmash_pl15_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_57_fn_five_seven_cover_std", + "ShortName": "reciever_57_fn_five_seven_cover_std", + "Description": "reciever_57_fn_five_seven_cover_std", + "Weight": 0.16, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_pl15_izhmash_pl15_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "60228925961b8d75ee233c34", + "_parent": "60228924961b8d75ee233c32", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "60229948cacb6b0506369e27", + "602293f023506e50807090cb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "60228925961b8d75ee233c35", + "_parent": "60228924961b8d75ee233c32", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "60228a76d62c9b14ed777a66", + "60228a850ddce744014caf69" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.955, + "CoolFactor": 1.063 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5df8e4080b92095fd441e594": { + "_id": "5df8e4080b92095fd441e594", + "_name": "reciever_ar10_kac_sr25_upper_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_ar10_kac_sr25_upper_std", + "ShortName": "reciever_ar10_kac_sr25_upper_std", + "Description": "reciever_ar10_kac_sr25_upper_std", + "Weight": 0.65, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_ar10_kac_sr25_upper_std.bundle", "rcid": "" }, "UsePrefab": { @@ -144834,8 +144927,8 @@ "Slots": [ { "_name": "mod_scope", - "_id": "5de8e67c4a9f347bc92edbd9", - "_parent": "5de8e67c4a9f347bc92edbd7", + "_id": "5df8e4080b92095fd441e596", + "_parent": "5df8e4080b92095fd441e594", "_props": { "filters": [ { @@ -144867,6 +144960,7 @@ "570fd721d2720bc5458b4596", "57ae0171245977343c27bfcf", "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", "5d1b5e94d7ad1a2b865a96b0", "609bab8b455afd752b2e6138", "58d39d3d86f77445bb794ae7", @@ -144917,33 +145011,69 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_sight_rear", - "_id": "5de8e67c4a9f347bc92edbdc", - "_parent": "5de8e67c4a9f347bc92edbd7", + "_name": "mod_barrel", + "_id": "5df8e4080b92095fd441e597", + "_parent": "5df8e4080b92095fd441e594", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5de8fb539f98ac2bc659513a" + "5df917564a9f347bc92edca3", + "5dfa397fb11454561e39246c" ] } ] }, - "_required": false, + "_required": true, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_mount", - "_id": "5de91b5db33c0951220c0662", - "_parent": "5de8e67c4a9f347bc92edbd7", + "_name": "mod_handguard", + "_id": "5df8e4080b92095fd441e598", + "_parent": "5df8e4080b92095fd441e594", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5de8fc0b205ddc616a6bc51b" + "6065881d1246154cad35d637", + "6065880c132d4d12c81fd8da", + "5df916dfbb49d91fb446d6b9", + "5f6336bbda967c74a42e9932", + "5d00ede1d7ad1a0940739a76", + "5d00ef6dd7ad1a0940739b16", + "5a329052c4a28200741e22d3" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5df8e4080b92095fd441e599", + "_parent": "5df8e4080b92095fd441e594", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5894a81786f77427140b8347", + "55d5f46a4bdc2d1b198b4567", + "5ae30bad5acfc400185c2dc4", + "5fc0fa957283c4046c58147e", + "5fb6564947ce63734e3fa1da", + "61817865d3a39d50044c13a4" ] } ] @@ -144972,28 +145102,186 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "DurabilityBurnModificator": 1, - "HeatFactor": 1.042, - "CoolFactor": 0.963 + "HeatFactor": 0.9347, + "CoolFactor": 1.067 }, "_proto": "55d355e64bdc2d962f8b4569" }, - "5b7d6c105acfc40015109a5f": { - "_id": "5b7d6c105acfc40015109a5f", - "_name": "reciever_fal_fn_fal_dust_cover_std", + "62e7c72df68e7a0676050c77": { + "_id": "62e7c72df68e7a0676050c77", + "_name": "reciever_aug_steyr_aug_a3", "_parent": "55818a304bdc2db5418b457d", "_type": "Item", "_props": { - "Name": "reciever_sa58_ds_arms_extreme_duty_scope_mount_extended", - "ShortName": "reciever_sa58_ds_arms_extreme_duty_scope_mount_extended", - "Description": "reciever_sa58_ds_arms_extreme_duty_scope_mount_extended", - "Weight": 0.175, + "Name": "Крышка ствольной коробки Ижмаш для АК-74", + "ShortName": "Кск АК74", + "Description": "Штатная крышка ствольной коробки АК-74 производства Ижмаш.", + "Weight": 0.794, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_fal_fn_fal_dust_cover_std.bundle", + "path": "assets/content/items/mods/recievers/reciever_aug_steyr_aug_a3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_barrel", + "_id": "62e7c79cda5b3b57e805e2cb", + "_parent": "62e7c72df68e7a0676050c77", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62e7c7f3c34ea971710c32fc", + "630e39c3bd357927e4007c15", + "6333f05d1bc0e6217a0e9d34" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "62e7c79cda5b3b57e805e2cc", + "_parent": "62e7c72df68e7a0676050c77", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62e7c8f91cd3fde4d503d690", + "62ebba1fb658e07ef9082b5a", + "62ebd290c427473eff0baafb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "62e7c79cda5b3b57e805e2cd", + "_parent": "62e7c72df68e7a0676050c77", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "626becf9582c3e319310b837", + "5cc9c20cd7f00c001336c65d", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "57d17e212459775a1179a0f5", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.96, + "CoolFactor": 1.048 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "59bfe68886f7746004266202": { + "_id": "59bfe68886f7746004266202", + "_name": "reciever_ar15_vltor_mur-1s", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_ar15_vltor_mur-1s", + "ShortName": "reciever_ar15_vltor_mur-1s", + "Description": "reciever_ar15_vltor_mur-1s", + "Weight": 0.246, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_ar15_vltor_mur-1s.bundle", "rcid": "" }, "UsePrefab": { @@ -145038,15 +145326,565 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "59bfe68886f7746004266203", + "_parent": "59bfe68886f7746004266202", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "59bfe68886f7746004266204", + "_parent": "59bfe68886f7746004266202", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d35ee94bdc2d61338b4568", + "55d3632e4bdc2d972f8b4569", + "5d440b93a4b9364276578d4b", + "5d440b9fa4b93601354d480c", + "5c0e2f94d174af029f650d56", + "63d3ce0446bd475bcb50f55f", + "63d3d44a2a49307baf09386d" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "59bfe68886f7746004266205", + "_parent": "59bfe68886f7746004266202", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0e2f5cd174af02a012cfc9", + "619b5db699fb192e7430664f", + "5b2cfa535acfc432ff4db7a0", + "5ae30db85acfc408fb139a05", + "5c9a25172e2216000f20314e", + "55f84c3c4bdc2d5f408b4576", + "588b56d02459771481110ae2", + "5c9a26332e2216001219ea70", + "5ea16ada09aa976f2e7a51be", + "5ea16acdfadf1d18c87b0784", + "55d459824bdc2d892f8b4573", + "5d122e7bd7ad1a07102d6d7f", + "5d123102d7ad1a004e475fe5", + "5d4405f0a4b9361e6a4e6bd9", + "5c78f2792e221600106f4683", + "5c78f26f2e221601da3581d1", + "5c78f2492e221600114c9f04", + "5c78f2612e221600114c9f0d", + "6034e3e20ddce744014cb878", + "6034e3d953a60014f970617b", + "6034e3cb0ddce744014cb870", + "5c6d5d8b2e221644fc630b39", + "5d00e0cbd7ad1a6c6566a42d", + "5d00f63bd7ad1a59283b1c1e", + "6087e0336d0bd7580617bb7a", + "595cfa8b86f77427437e845b", + "595cf16b86f77427440c32e2", + "63888bbd28e5cc32cc09d2b6", + "63f4ba71f31d4a33b87bd046", + "640b20359ab20e15ee445fa9", + "647de824196bf69818044c93" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "59bfe68886f7746004266206", + "_parent": "59bfe68886f7746004266202", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347", + "55d5f46a4bdc2d1b198b4567", + "5ae30bad5acfc400185c2dc4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.975, + "CoolFactor": 1.02 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5d2c76ed48f03532f2136169": { + "_id": "5d2c76ed48f03532f2136169", + "_name": "reciever_ak_akademia_bastion", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "Крышка ствольной коробки Зенит Б-33 для АК-74", + "ShortName": "Б-33", + "Description": "Цельнофрезерованная крышка ствольной коробки Б-33 от компании Зенит из комплекта обвязки для АК \"Классика\". Может быть установлена только совместно с цевьём Б-10М или Б-30.", + "Weight": 0.237, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_ak_akademia_bastion.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5947db3f86f77447880cf76f", + "57486e672459770abd687134", + "5ac733a45acfc400192630e2", + "5649b0544bdc2d1b2b8b458a", + "5ac72e475acfc400180ae6fe", + "59d650cf86f7741b846413a4", + "5a0eb980fcdbcb001a3b00a6", + "59e8977386f77415a553c453", + "5649d9a14bdc2d79388b4580", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "628a7b23b0f75035732dd565", + "5bf3f59f0db834001a6fa060", + "649ec2cec93611967b03495e" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5d2c76ed48f03532f213616b", + "_parent": "5d2c76ed48f03532f2136169", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649af094bdc2df8348b4586" + }, + "622b397c9a3d4327e41843b6": { + "_id": "622b397c9a3d4327e41843b6", + "_name": "bipod_g36_hk_std", + "_parent": "55818afb4bdc2dde698b456d", + "_type": "Item", + "_props": { + "Name": "Сошки Ижмаш СВ-98", + "ShortName": "Сошки СВ-98", + "Description": "Написать", + "Weight": 0.226, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/bipods/bipod_g36_hk_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -2, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 2, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "56ea8222d2720b69698b4567" + }, + "5fc0f9cbd6fa9c00c571bb90": { + "_id": "5fc0f9cbd6fa9c00c571bb90", + "_name": "foregrip_keymod_sig_vertical_grip", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_keymod_sig_vertical_grip", + "ShortName": "foregrip_keymod_sig_vertical_grip", + "Description": "foregrip_keymod_sig_vertical_grip", + "Weight": 0.055, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_keymod_sig_vertical_grip.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, "Velocity": 0, "RaidModdable": true, "ToolModdable": true, @@ -145056,6 +145894,386 @@ "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032574bdc2d89578b458a" + }, + "5c1bc5fb2e221602b1779b32": { + "_id": "5c1bc5fb2e221602b1779b32", + "_name": "foregrip_all_zenit_rk_4", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Weight": 0.127, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_zenit_rk_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032614bdc2de7118b4585" + }, + "5a7dbfc1159bd40016548fde": { + "_id": "5a7dbfc1159bd40016548fde", + "_name": "foregrip_all_hera_arms_cqr_grip", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_hera_arms_cqr_grip", + "ShortName": "foregrip_all_hera_arms_cqr_grip", + "Description": "foregrip_all_hera_arms_cqr_grip\n", + "Weight": 0.167, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_hera_arms_cqr_grip.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "59fb375986f7741b681b81a6", + "5a9d56c8a2750c0032157146", + "5c501a4d2e221602b412b540", + "5b0bbe4e5acfc40dc528a72d", + "5c488a752e221602b412af63", + "5ac66cb05acfc40198510a10", + "5ac66d015acfc400180ae6e4", + "5ac66d2e5acfc43b321d4b53", + "5ac66d725acfc43b321d4b60", + "5ac66d9b5acfc4001633997a", + "5bf3e03b0db834001d2c4a9c", + "5ac4cd105acfc40016339859", + "5644bd2b4bdc2d3b4c8b4572", + "59d6088586f774275f37482f", + "5a0ec13bfcdbcb00165aa685", + "59ff346386f77477562ff5e2", + "5abcbc27d8ce8700182eceeb", + "5bf3e0490db83400196199af", + "5ab8e9fcd8ce870019439434", + "57dc2fa62459775949412633", + "5839a40f24597726f856b511", + "583990e32459771419544dd2", + "59e6687d86f77411d949b251", + "59e6152586f77473dc057aa1", + "5beed0f50db834001c062b12", + "5c46fbd72e2216398b5a8c9c", + "576165642459773c7a400233", + "59984ab886f7743e98271174", + "59f9cabd86f7743a10721f46", + "5bfea6e90db834001b7347f3" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032614bdc2de7118b4585" + }, + "5d2c770c48f0354b4a07c100": { + "_id": "5d2c770c48f0354b4a07c100", + "_name": "reciever_ak_fab_defence_pdc", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "Крышка ствольной коробки Зенит Б-33 для АК-74", + "ShortName": "Б-33", + "Description": "Цельнофрезерованная крышка ствольной коробки Б-33 от компании Зенит из комплекта обвязки для АК \"Классика\". Может быть установлена только совместно с цевьём Б-10М или Б-30.", + "Weight": 0.202, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_ak_fab_defence_pdc.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5947db3f86f77447880cf76f", + "57486e672459770abd687134", + "5649d9a14bdc2d79388b4580", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5d2c770c48f0354b4a07c102", + "_parent": "5d2c770c48f0354b4a07c100", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6478641c19d732620e045e17", + "6477772ea8a38bb2050ed4db", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "DurabilityBurnModificator": 0.97, "HeatFactor": 1, @@ -145340,6 +146558,355 @@ }, "_proto": "55d355e64bdc2d962f8b4569" }, + "5cf7acfcd7f00c1084477cf2": { + "_id": "5cf7acfcd7f00c1084477cf2", + "_name": "reciever_p90_fn_ps90_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_p90_fn_ps90_std", + "ShortName": "reciever_p90_fn_ps90_std", + "Description": "reciever_p90_fn_ps90_std", + "Weight": 0.31, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_p90_fn_ps90_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 1, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "5cf7acfcd7f00c1084477cf4", + "_parent": "5cf7acfcd7f00c1084477cf2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cebec38d7f00c00110a652a", + "5cc7015ae4a949001152b4c6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5cf7acfcd7f00c1084477cf5", + "_parent": "5cf7acfcd7f00c1084477cf2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cc70146e4a949000d73bf6b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5cf7acfcd7f00c1084477cf6", + "_parent": "5cf7acfcd7f00c1084477cf2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cc70146e4a949000d73bf6b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.951, + "CoolFactor": 1.052 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5de8e67c4a9f347bc92edbd7": { + "_id": "5de8e67c4a9f347bc92edbd7", + "_name": "reciever_mp9_bt_mp9_upper_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "Верхний ресивер Colt M4A1 5.56х45 для штурмовой винтовки M4A1", + "ShortName": "M4A1 Upper", + "Description": "Верхний ресивер для M4A1 производства компании Colt. Имеет направляющую для крепления дополнительного оборудования.", + "Weight": 0.27, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_mp9_bt_mp9_upper_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5de8e67c4a9f347bc92edbd9", + "_parent": "5de8e67c4a9f347bc92edbd7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5de8e67c4a9f347bc92edbdc", + "_parent": "5de8e67c4a9f347bc92edbd7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5de8fb539f98ac2bc659513a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5de91b5db33c0951220c0662", + "_parent": "5de8e67c4a9f347bc92edbd7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5de8fc0b205ddc616a6bc51b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.042, + "CoolFactor": 0.963 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, "55818a684bdc2ddd698b456d": { "_id": "55818a684bdc2ddd698b456d", "_name": "PistolGrip", @@ -145862,23 +147429,23 @@ }, "_proto": "558032574bdc2d89578b458a" }, - "6529119424cbe3c74a05e5bb": { - "_id": "6529119424cbe3c74a05e5bb", - "_name": "reciever_mcx_sig_spear_upper", - "_parent": "55818a304bdc2db5418b457d", + "5d124c01d7ad1a115c7d59fb": { + "_id": "5d124c01d7ad1a115c7d59fb", + "_name": "tactical_urx_kac_panel_short_fde", + "_parent": "5a74651486f7744e73386dd1", "_type": "Item", "_props": { - "Name": "Верхний ресивер Colt M4A1 5.56х45 для штурмовой винтовки M4A1", - "ShortName": "M4A1 Upper", - "Description": "Верхний ресивер для M4A1 производства компании Colt. Имеет направляющую для крепления дополнительного оборудования.", - "Weight": 0.27, + "Name": "tactical_pso_belomo_eyecup", + "ShortName": "tactical_pso_belomo_eyecup", + "Description": "tactical_pso_belomo_eyecup", + "Weight": 0.005, "BackgroundColor": "blue", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_mcx_sig_spear_upper.bundle", + "path": "assets/content/items/mods/tactical/tactical_urx_kac_panel_short_fde.bundle", "rcid": "" }, "UsePrefab": { @@ -145895,8 +147462,8 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, + "LootExperience": 5, + "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -145923,197 +147490,201 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "6529119424cbe3c74a05e5bc", - "_parent": "6529119424cbe3c74a05e5bb", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "6567e751a715f85433025998", - "655f13e0a246670fb0373245", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "6529119424cbe3c74a05e5bd", - "_parent": "6529119424cbe3c74a05e5bb", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "652910565ae2ae97b80fdf35" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "6529119424cbe3c74a05e5be", - "_parent": "6529119424cbe3c74a05e5bb", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "652910ef50dc782999054b97" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "6529119424cbe3c74a05e5bf", - "_parent": "6529119424cbe3c74a05e5bb", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347", - "55d5f46a4bdc2d1b198b4567", - "5ae30bad5acfc400185c2dc4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "65293d2817e14363030ad30b", - "_parent": "6529119424cbe3c74a05e5bb", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -1, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 5, + "Ergonomics": 2, "Velocity": 0, "RaidModdable": true, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, - "IsAnimated": true, + "IsAnimated": false, "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, + "ShiftsAimCamera": 0, "DurabilityBurnModificator": 1, - "HeatFactor": 0.989, - "CoolFactor": 1.01 - } + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, + "5ef32e4d1c1fd62aea6a150d": { + "_id": "5ef32e4d1c1fd62aea6a150d", + "_name": "trigger_m1911_caspian_trik_trigger", + "_parent": "5a74651486f7744e73386dd1", + "_type": "Item", + "_props": { + "Name": "trigger_m1911_caspian_trik_trigger", + "ShortName": "trigger_m1911_caspian_trik_trigger", + "Description": "trigger_m1911_caspian_trik_trigger", + "Weight": 0.015, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mechanics/trigger_m1911_caspian_trik_trigger.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ShiftsAimCamera": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, + "588226dd24597767ad33f789": { + "_id": "588226dd24597767ad33f789", + "_name": "foregrip_all_magpul_afg_fde", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "Тактическая рукоятка Magpul AFG", + "ShortName": "AFG", + "Description": "Тактическая рукоятка Magpul AFG (Angled Fore Grip). Позволяет удерживать оружие в более естественном для руки стрелка положении и по центральной оси ствола. Благодаря этому, помогает смягчить отдачу и повышает управляемость оружия.", + "Weight": 0.082, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_magpul_afg_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032574bdc2d89578b458a" }, "5c471bd12e221602b4129c3a": { "_id": "5c471bd12e221602b4129c3a", @@ -147470,6 +149041,89 @@ }, "_proto": "57cffb66245977632f391a99" }, + "59f8a37386f7747af3328f06": { + "_id": "59f8a37386f7747af3328f06", + "_name": "foregrip_all_fortis_shift", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_fortis_shift", + "ShortName": "foregrip_all_fortis_shift", + "Description": "foregrip_all_fortis_shift", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_fortis_shift.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1.5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032614bdc2de7118b4585" + }, "619386379fb0c665d5490dbe": { "_id": "619386379fb0c665d5490dbe", "_name": "foregrip_all_hk_sturmgriff_assault_grip", @@ -147553,191 +149207,23 @@ }, "_proto": "558032614bdc2de7118b4585" }, - "5a71e22f8dc32e00094b97f4": { - "_id": "5a71e22f8dc32e00094b97f4", - "_name": "reciever_glock_zev_tech_hex_rmr_cut_gen_3", + "6281204f308cb521f87a8f9b": { + "_id": "6281204f308cb521f87a8f9b", + "_name": "reciever_ax_accuracy_international_axmc_std_86x70_pb", "_parent": "55818a304bdc2db5418b457d", "_type": "Item", "_props": { - "Name": "reciever_glock_zev_tech_hex_rmr_cut_gen_3", - "ShortName": "reciever_glock_zev_tech_hex_rmr_cut_gen_3", - "Description": "reciever_glock_zev_tech_hex_rmr_cut_gen_3", - "Weight": 0.19, + "Name": "Верхний ресивер Colt M4A1 5.56х45 для штурмовой винтовки M4A1", + "ShortName": "M4A1 Upper", + "Description": "Верхний ресивер для M4A1 производства компании Colt. Имеет направляющую для крепления дополнительного оборудования.", + "Weight": 0.31, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_glock_zev_tech_hex_rmr_cut_gen_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "5a71e22f8dc32e00094b97f5", - "_parent": "5a71e22f8dc32e00094b97f4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7d9122159bd4001438dbf4", - "5a6f5d528dc32e00094b97d9", - "5a7d912f159bd400165484f3", - "5a71e0fb8dc32e00094b97f2", - "630765cb962d0247b029dc45" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5a71e22f8dc32e00094b97f6", - "_parent": "5a71e22f8dc32e00094b97f4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7d90eb159bd400165484f1", - "5a6f58f68dc32e000a311390", - "5a7d9104159bd400134c8c21", - "5a71e0048dc32e000c52ecc8", - "630765777d50ff5e8a1ea718" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5a71e41e8dc32e5a9c28b505", - "_parent": "5a71e22f8dc32e00094b97f4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a71e1868dc32e00094b97f3", - "5a32aa8bc4a2826c6e06d737" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5a7b4cdae899ef0193192896", - "_parent": "5a71e22f8dc32e00094b97f4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7b32a2e899ef00135e345a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.944, - "CoolFactor": 1.063 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5d2f261548f03576f500e7b7": { - "_id": "5d2f261548f03576f500e7b7", - "_name": "reciever_mp5k_hk_kurtz_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_mp5_hk_std", - "ShortName": "reciever_mp5_hk_std", - "Description": "reciever_mp5_hk_std", - "Weight": 0.45, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_mp5k_hk_kurtz_std.bundle", + "path": "assets/content/items/mods/recievers/reciever_ax_accuracy_international_axmc_std_86x70_pb.bundle", "rcid": "" }, "UsePrefab": { @@ -147785,14 +149271,14 @@ "Slots": [ { "_name": "mod_handguard", - "_id": "5d2f261548f03576f500e7b9", - "_parent": "5d2f261548f03576f500e7b7", + "_id": "6281204f308cb521f87a8f9e", + "_parent": "6281204f308cb521f87a8f9b", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5d2f259b48f0355a844acd74" + "6281209662cba23f6c4d7a19" ] } ] @@ -147802,33 +149288,15 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_sight_rear", - "_id": "5d2f261548f03576f500e7ba", - "_parent": "5d2f261548f03576f500e7b7", + "_name": "mod_foregrip", + "_id": "628157d3308cb521f87a8fab", + "_parent": "6281204f308cb521f87a8f9b", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5926d2be86f774134d668e4e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5d2f261548f03576f500e7bb", - "_parent": "5d2f261548f03576f500e7b7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d2f25bc48f03502573e5d85" + "6281212a09427b40ab14e770" ] } ] @@ -147838,169 +149306,20 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_mount", - "_id": "5d2f261548f03576f500e7bd", - "_parent": "5d2f261548f03576f500e7b7", + "_name": "mod_reciever", + "_id": "628157d3308cb521f87a8fac", + "_parent": "6281204f308cb521f87a8f9b", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5926dad986f7741f82604363" + "62811fbf09427b40ab14e767" ] } ] }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.0176, - "CoolFactor": 1.1227 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5a6f5f078dc32e00094b97dd": { - "_id": "5a6f5f078dc32e00094b97dd", - "_name": "reciever_glock_gspc_viper_slide_cut", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_glock_glock_17_std", - "ShortName": "reciever_glock_glock_17_std", - "Description": "reciever_glock_glock_17_std", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_glock_gspc_viper_slide_cut.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "5a6f5f078dc32e00094b97de", - "_parent": "5a6f5f078dc32e00094b97dd", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7d9122159bd4001438dbf4", - "5a6f5d528dc32e00094b97d9", - "5a7d912f159bd400165484f3", - "5a71e0fb8dc32e00094b97f2", - "630765cb962d0247b029dc45" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5a6f5f078dc32e00094b97df", - "_parent": "5a6f5f078dc32e00094b97dd", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7d90eb159bd400165484f1", - "5a6f58f68dc32e000a311390", - "5a7d9104159bd400134c8c21", - "5a71e0048dc32e000c52ecc8", - "630765777d50ff5e8a1ea718" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5a7b4bd0e899ef00135e3700", - "_parent": "5a6f5f078dc32e00094b97dd", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7b32a2e899ef00135e345a" - ] - } - ] - }, - "_required": false, + "_required": true, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" } @@ -148012,700 +149331,9 @@ "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.975, - "CoolFactor": 1.083 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5d2c76ed48f03532f2136169": { - "_id": "5d2c76ed48f03532f2136169", - "_name": "reciever_ak_akademia_bastion", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "Крышка ствольной коробки Зенит Б-33 для АК-74", - "ShortName": "Б-33", - "Description": "Цельнофрезерованная крышка ствольной коробки Б-33 от компании Зенит из комплекта обвязки для АК \"Классика\". Может быть установлена только совместно с цевьём Б-10М или Б-30.", - "Weight": 0.237, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_ak_akademia_bastion.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5947db3f86f77447880cf76f", - "57486e672459770abd687134", - "5ac733a45acfc400192630e2", - "5649b0544bdc2d1b2b8b458a", - "5ac72e475acfc400180ae6fe", - "59d650cf86f7741b846413a4", - "5a0eb980fcdbcb001a3b00a6", - "59e8977386f77415a553c453", - "5649d9a14bdc2d79388b4580", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "628a7b23b0f75035732dd565", - "5bf3f59f0db834001a6fa060", - "649ec2cec93611967b03495e" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5d2c76ed48f03532f213616b", - "_parent": "5d2c76ed48f03532f2136169", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649af094bdc2df8348b4586" - }, - "5c0009510db834001966907f": { - "_id": "5c0009510db834001966907f", - "_name": "reciever_p226_sig_stainless_elite", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "Затвор Sig P226R 9x19 для пистолета P226", - "ShortName": "Затвор P226", - "Description": "бла бла бла", - "Weight": 0.22, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_p226_sig_stainless_elite.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "5c0009510db8340019669081", - "_parent": "5c0009510db834001966907f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c07b3850db834002330045b", - "56d5a77ed2720b90418b4568", - "56ea7293d2720b8d4b8b45ba", - "5a32aa0cc4a28232996e405f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5c0009510db8340019669082", - "_parent": "5c0009510db834001966907f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c07b36c0db834002a1259e9", - "56d5a661d2720bd8418b456b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.957, - "CoolFactor": 1.065 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "60228924961b8d75ee233c32": { - "_id": "60228924961b8d75ee233c32", - "_name": "reciever_pl15_izhmash_pl15_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_57_fn_five_seven_cover_std", - "ShortName": "reciever_57_fn_five_seven_cover_std", - "Description": "reciever_57_fn_five_seven_cover_std", - "Weight": 0.16, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_pl15_izhmash_pl15_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "60228925961b8d75ee233c34", - "_parent": "60228924961b8d75ee233c32", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "60229948cacb6b0506369e27", - "602293f023506e50807090cb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "60228925961b8d75ee233c35", - "_parent": "60228924961b8d75ee233c32", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "60228a76d62c9b14ed777a66", - "60228a850ddce744014caf69" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, "Ergonomics": 4, "Velocity": 0, "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.955, - "CoolFactor": 1.063 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5df8e4080b92095fd441e594": { - "_id": "5df8e4080b92095fd441e594", - "_name": "reciever_ar10_kac_sr25_upper_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_ar10_kac_sr25_upper_std", - "ShortName": "reciever_ar10_kac_sr25_upper_std", - "Description": "reciever_ar10_kac_sr25_upper_std", - "Weight": 0.65, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_ar10_kac_sr25_upper_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5df8e4080b92095fd441e596", - "_parent": "5df8e4080b92095fd441e594", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "5df8e4080b92095fd441e597", - "_parent": "5df8e4080b92095fd441e594", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5df917564a9f347bc92edca3", - "5dfa397fb11454561e39246c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "5df8e4080b92095fd441e598", - "_parent": "5df8e4080b92095fd441e594", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6065881d1246154cad35d637", - "6065880c132d4d12c81fd8da", - "5df916dfbb49d91fb446d6b9", - "5f6336bbda967c74a42e9932", - "5d00ede1d7ad1a0940739a76", - "5d00ef6dd7ad1a0940739b16", - "5a329052c4a28200741e22d3" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5df8e4080b92095fd441e599", - "_parent": "5df8e4080b92095fd441e594", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5894a81786f77427140b8347", - "55d5f46a4bdc2d1b198b4567", - "5ae30bad5acfc400185c2dc4", - "5fc0fa957283c4046c58147e", - "5fb6564947ce63734e3fa1da", - "61817865d3a39d50044c13a4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -148715,172 +149343,29 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "DurabilityBurnModificator": 1, - "HeatFactor": 0.9347, - "CoolFactor": 1.067 - }, - "_proto": "55d355e64bdc2d962f8b4569" + "HeatFactor": 0.989, + "CoolFactor": 1.01 + } }, - "62e7c72df68e7a0676050c77": { - "_id": "62e7c72df68e7a0676050c77", - "_name": "reciever_aug_steyr_aug_a3", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", + "555ef6e44bdc2de9068b457e": { + "_id": "555ef6e44bdc2de9068b457e", + "_name": "Barrel", + "_parent": "55802f4a4bdc2ddb688b4569", + "_type": "Node", "_props": { - "Name": "Крышка ствольной коробки Ижмаш для АК-74", - "ShortName": "Кск АК74", - "Description": "Штатная крышка ствольной коробки АК-74 производства Ижмаш.", - "Weight": 0.794, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_aug_steyr_aug_a3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_barrel", - "_id": "62e7c79cda5b3b57e805e2cb", - "_parent": "62e7c72df68e7a0676050c77", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62e7c7f3c34ea971710c32fc", - "630e39c3bd357927e4007c15", - "6333f05d1bc0e6217a0e9d34" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "62e7c79cda5b3b57e805e2cc", - "_parent": "62e7c72df68e7a0676050c77", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62e7c8f91cd3fde4d503d690", - "62ebba1fb658e07ef9082b5a", - "62ebd290c427473eff0baafb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "62e7c79cda5b3b57e805e2cd", - "_parent": "62e7c72df68e7a0676050c77", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "626becf9582c3e319310b837", - "5cc9c20cd7f00c001336c65d", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "57d17e212459775a1179a0f5", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, + "CenterOfImpact": 0.01, + "ShotgunDispersion": 1, + "IsSilencer": false, "DurabilityBurnModificator": 1, - "HeatFactor": 0.96, - "CoolFactor": 1.048 - }, - "_proto": "55d355e64bdc2d962f8b4569" + "HeatFactor": 1, + "CoolFactor": 1, + "DeviationCurve": 1, + "DeviationMax": 100 + } }, - "5ba36f85d4351e0085325c81": { - "_id": "5ba36f85d4351e0085325c81", - "_name": "tactical_nspum_npz_eyecup", + "5d0b5cd3d7ad1a3fe32ad263": { + "_id": "5d0b5cd3d7ad1a3fe32ad263", + "_name": "tactical_1p59_kmz_eyecup", "_parent": "5a74651486f7744e73386dd1", "_type": "Item", "_props": { @@ -148894,453 +149379,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_nspum_npz_eyecup.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ShiftsAimCamera": 0.02, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, - "5e81c550763d9f754677befd": { - "_id": "5e81c550763d9f754677befd", - "_name": "hammer_m1911_colt_m1911a1_std", - "_parent": "5a74651486f7744e73386dd1", - "_type": "Item", - "_props": { - "Name": "hammer_m1911_colt_m1911a1_std", - "ShortName": "hammer_m1911_colt_m1911a1_std", - "Description": "hammer_m1911_colt_m1911a1_std", - "Weight": 0.018, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mechanics/hammer_m1911_colt_m1911a1_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ShiftsAimCamera": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, - "59bfe68886f7746004266202": { - "_id": "59bfe68886f7746004266202", - "_name": "reciever_ar15_vltor_mur-1s", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_ar15_vltor_mur-1s", - "ShortName": "reciever_ar15_vltor_mur-1s", - "Description": "reciever_ar15_vltor_mur-1s", - "Weight": 0.246, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_ar15_vltor_mur-1s.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "59bfe68886f7746004266203", - "_parent": "59bfe68886f7746004266202", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "59bfe68886f7746004266204", - "_parent": "59bfe68886f7746004266202", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d35ee94bdc2d61338b4568", - "55d3632e4bdc2d972f8b4569", - "5d440b93a4b9364276578d4b", - "5d440b9fa4b93601354d480c", - "5c0e2f94d174af029f650d56", - "63d3ce0446bd475bcb50f55f", - "63d3d44a2a49307baf09386d" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "59bfe68886f7746004266205", - "_parent": "59bfe68886f7746004266202", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0e2f5cd174af02a012cfc9", - "619b5db699fb192e7430664f", - "5b2cfa535acfc432ff4db7a0", - "5ae30db85acfc408fb139a05", - "5c9a25172e2216000f20314e", - "55f84c3c4bdc2d5f408b4576", - "588b56d02459771481110ae2", - "5c9a26332e2216001219ea70", - "5ea16ada09aa976f2e7a51be", - "5ea16acdfadf1d18c87b0784", - "55d459824bdc2d892f8b4573", - "5d122e7bd7ad1a07102d6d7f", - "5d123102d7ad1a004e475fe5", - "5d4405f0a4b9361e6a4e6bd9", - "5c78f2792e221600106f4683", - "5c78f26f2e221601da3581d1", - "5c78f2492e221600114c9f04", - "5c78f2612e221600114c9f0d", - "6034e3e20ddce744014cb878", - "6034e3d953a60014f970617b", - "6034e3cb0ddce744014cb870", - "5c6d5d8b2e221644fc630b39", - "5d00e0cbd7ad1a6c6566a42d", - "5d00f63bd7ad1a59283b1c1e", - "6087e0336d0bd7580617bb7a", - "595cfa8b86f77427437e845b", - "595cf16b86f77427440c32e2", - "63888bbd28e5cc32cc09d2b6", - "63f4ba71f31d4a33b87bd046", - "640b20359ab20e15ee445fa9", - "647de824196bf69818044c93" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "59bfe68886f7746004266206", - "_parent": "59bfe68886f7746004266202", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347", - "55d5f46a4bdc2d1b198b4567", - "5ae30bad5acfc400185c2dc4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.975, - "CoolFactor": 1.02 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5cf639aad7f00c065703d455": { - "_id": "5cf639aad7f00c065703d455", - "_name": "tactical_1p29_npz_eyecup", - "_parent": "5a74651486f7744e73386dd1", - "_type": "Item", - "_props": { - "Name": "tactical_pso_belomo_eyecup", - "ShortName": "tactical_pso_belomo_eyecup", - "Description": "tactical_pso_belomo_eyecup", - "Weight": 0.005, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_1p29_npz_eyecup.bundle", + "path": "assets/content/items/mods/tactical/tactical_1p59_kmz_eyecup.bundle", "rcid": "" }, "UsePrefab": { @@ -149411,23 +149450,23 @@ }, "_proto": "544909bb4bdc2d6f028b4577" }, - "622f16a1a5958f63c67f1737": { - "_id": "622f16a1a5958f63c67f1737", - "_name": "tactical_g36_hk_complete_hand_stop", - "_parent": "5a74651486f7744e73386dd1", + "646f62fee779812413011ab7": { + "_id": "646f62fee779812413011ab7", + "_name": "flashlight_base_zenit_2ds", + "_parent": "55818b084bdc2d5b648b4571", "_type": "Item", "_props": { - "Name": "tactical_glock_zev_tech_rmr_adapter_plate", - "ShortName": "tactical_glock_zev_tech_rmr_adapter_plate", - "Description": "tactical_glock_zev_tech_rmr_adapter_plate", - "Weight": 0.005, + "Name": "flashlight_ultrafire_WF-501B", + "ShortName": "flashlight_ultrafire_WF-501B", + "Description": "flashlight_ultrafire_WF-501B", + "Weight": 0.25, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_g36_hk_complete_hand_stop.bundle", + "path": "assets/content/items/mods/flashlights/flashlight_base_zenit_2ds.bundle", "rcid": "" }, "UsePrefab": { @@ -149445,7 +149484,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 5, - "ExamineExperience": 10, + "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -149480,10 +149519,10 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 1, + "Ergonomics": -2, "Velocity": 0, "RaidModdable": true, - "ToolModdable": false, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -149491,30 +149530,26 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "ShiftsAimCamera": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544909bb4bdc2d6f028b4577" + "ModesCount": 1 + } }, - "622b397c9a3d4327e41843b6": { - "_id": "622b397c9a3d4327e41843b6", - "_name": "bipod_g36_hk_std", - "_parent": "55818afb4bdc2dde698b456d", + "57cffcdd24597763f5110006": { + "_id": "57cffcdd24597763f5110006", + "_name": "foregrip_m-lok_magpul_m-lok_afg_od", + "_parent": "55818af64bdc2d5b648b4570", "_type": "Item", "_props": { - "Name": "Сошки Ижмаш СВ-98", - "ShortName": "Сошки СВ-98", - "Description": "Написать", - "Weight": 0.226, + "Name": "foregrip_m-lok_magpul_m-lok_afg_blk", + "ShortName": "foregrip_m-lok_magpul_m-lok_afg_blk", + "Description": "foregrip_m-lok_magpul_m-lok_afg_blk", + "Weight": 0.042, "BackgroundColor": "blue", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "generic", + "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/bipods/bipod_g36_hk_std.bundle", + "path": "assets/content/items/mods/foregrips/foregrip_m-lok_magpul_m-lok_afg_od.bundle", "rcid": "" }, "UsePrefab": { @@ -149532,7 +149567,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 10, + "ExamineExperience": 8, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -149567,258 +149602,7 @@ "Recoil": -2, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "56ea8222d2720b69698b4567" - }, - "6464d870bb2c580352070cc4": { - "_id": "6464d870bb2c580352070cc4", - "_name": "bipod_pkm_zid_pk_std", - "_parent": "55818afb4bdc2dde698b456d", - "_type": "Item", - "_props": { - "Name": "Сошки Ижмаш СВ-98", - "ShortName": "Сошки СВ-98", - "Description": "Написать", - "Weight": 0.47, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/bipods/bipod_pkm_zid_pk_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c1cd46f2e22164bef5cfedb" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "56ea8222d2720b69698b4567" - }, - "5cda9bcfd7f00c0c0b53e900": { - "_id": "5cda9bcfd7f00c0c0b53e900", - "_name": "foregrip_all_ckib_ash12_std", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_kac_vertical_grip", - "ShortName": "foregrip_all_kac_vertical_grip", - "Description": "foregrip_all_kac_vertical_grip", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_ckib_ash12_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032614bdc2de7118b4585" - }, - "5fc0f9cbd6fa9c00c571bb90": { - "_id": "5fc0f9cbd6fa9c00c571bb90", - "_name": "foregrip_keymod_sig_vertical_grip", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_keymod_sig_vertical_grip", - "ShortName": "foregrip_keymod_sig_vertical_grip", - "Description": "foregrip_keymod_sig_vertical_grip", - "Weight": 0.055, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_keymod_sig_vertical_grip.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, + "Ergonomics": 7, "Velocity": 0, "RaidModdable": true, "ToolModdable": true, @@ -149830,25 +149614,25 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0 }, - "_proto": "558032574bdc2d89578b458a" + "_proto": "57cffcd624597763133760c5" }, - "5c1bc5fb2e221602b1779b32": { - "_id": "5c1bc5fb2e221602b1779b32", - "_name": "foregrip_all_zenit_rk_4", + "5c1bc5612e221602b5429350": { + "_id": "5c1bc5612e221602b5429350", + "_name": "foregrip_all_zenit_rk_1", "_parent": "55818af64bdc2d5b648b4570", "_type": "Item", "_props": { "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Weight": 0.127, + "Weight": 0.17, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_zenit_rk_4.bundle", + "path": "assets/content/items/mods/foregrips/foregrip_all_zenit_rk_1.bundle", "rcid": "" }, "UsePrefab": { @@ -149898,10 +149682,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -2, + "Recoil": -3, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 4, + "Ergonomics": 1, "Velocity": 0, "RaidModdable": true, "ToolModdable": true, @@ -149915,968 +149699,6 @@ }, "_proto": "558032614bdc2de7118b4585" }, - "649ec2f3961514b22506b111": { - "_id": "649ec2f3961514b22506b111", - "_name": "reciever_ak12_izhmash_ak12_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "Крышка ствольной коробки Зенит Б-33 для АК-74", - "ShortName": "Б-33", - "Description": "Цельнофрезерованная крышка ствольной коробки Б-33 от компании Зенит из комплекта обвязки для АК \"Классика\". Может быть установлена только совместно с цевьём Б-10М или Б-30.", - "Weight": 0.215, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_ak12_izhmash_ak12_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "649ec2f3961514b22506b112", - "_parent": "649ec2f3961514b22506b111", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6478641c19d732620e045e17", - "6477772ea8a38bb2050ed4db", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "649ec2f3961514b22506b113", - "_parent": "649ec2f3961514b22506b111", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5beec9450db83400970084fd", - "649ec2da59cbb3c813042dca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 7, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.96, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649af094bdc2df8348b4586" - }, - "5c503d0a2e221602b542b7ef": { - "_id": "5c503d0a2e221602b542b7ef", - "_name": "reciever_vepr_molot_vpo-101_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "", - "ShortName": "", - "Description": "", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_vepr_molot_vpo-101_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649af094bdc2df8348b4586" - }, - "5bffe7c50db834001d23ece1": { - "_id": "5bffe7c50db834001d23ece1", - "_name": "reciever_p226_axelson_tactical_mk25", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "Затвор Sig P226R 9x19 для пистолета P226", - "ShortName": "Затвор P226", - "Description": "бла бла бла", - "Weight": 0.24, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_p226_axelson_tactical_mk25.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "5bffe7c50db834001d23ece3", - "_parent": "5bffe7c50db834001d23ece1", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c07b3850db834002330045b", - "56d5a77ed2720b90418b4568", - "56ea7293d2720b8d4b8b45ba", - "5a32aa0cc4a28232996e405f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5bffe7c50db834001d23ece4", - "_parent": "5bffe7c50db834001d23ece1", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c07b36c0db834002a1259e9", - "56d5a661d2720bd8418b456b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 0.95, - "CoolFactor": 1.065 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5fc278107283c4046c581489": { - "_id": "5fc278107283c4046c581489", - "_name": "reciever_mk18_sword_mjolnir_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_ar15_noveske_gen3_stripped", - "ShortName": "reciever_ar15_noveske_gen3_stripped", - "Description": "reciever_ar15_noveske_gen3_stripped", - "Weight": 0.45, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_mk18_sword_mjolnir_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5fc278107283c4046c58148b", - "_parent": "5fc278107283c4046c581489", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "5fc278107283c4046c58148c", - "_parent": "5fc278107283c4046c581489", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc23678ab884124df0cd590" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "5fc278107283c4046c58148d", - "_parent": "5fc278107283c4046c581489", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc235db2770a0045c59c683" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5fc278107283c4046c58148e", - "_parent": "5fc278107283c4046c581489", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347", - "55d5f46a4bdc2d1b198b4567", - "5ae30bad5acfc400185c2dc4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.9246, - "CoolFactor": 1.075 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5bfe86bd0db83400232fe959": { - "_id": "5bfe86bd0db83400232fe959", - "_name": "tactical_870_fab_defence_agr_870_cap", - "_parent": "5a74651486f7744e73386dd1", - "_type": "Item", - "_props": { - "Name": "tactical_pso_belomo_eyecup", - "ShortName": "tactical_pso_belomo_eyecup", - "Description": "tactical_pso_belomo_eyecup", - "Weight": 0.005, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_870_fab_defence_agr_870_cap.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ShiftsAimCamera": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, - "57616c112459773cce774d66": { - "_id": "57616c112459773cce774d66", - "_name": "reciever_saiga12_izhmash_saiga12k_10_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "", - "ShortName": "", - "Description": "", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_saiga12_izhmash_saiga12k_10_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649af094bdc2df8348b4586" - }, - "5a702d198dc32e000b452fc3": { - "_id": "5a702d198dc32e000b452fc3", - "_name": "reciever_glock_lone_wolf_alphawolf", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_glock_lone_wolf_alphawolf", - "ShortName": "reciever_glock_lone_wolf_alphawolf", - "Description": "reciever_glock_lone_wolf_alphawolf", - "Weight": 0.19, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_glock_lone_wolf_alphawolf.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "5a702d198dc32e000b452fc4", - "_parent": "5a702d198dc32e000b452fc3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7d9122159bd4001438dbf4", - "5a6f5d528dc32e00094b97d9", - "5a7d912f159bd400165484f3", - "5a71e0fb8dc32e00094b97f2", - "630765cb962d0247b029dc45" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5a702d198dc32e000b452fc5", - "_parent": "5a702d198dc32e000b452fc3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7d90eb159bd400165484f1", - "5a6f58f68dc32e000a311390", - "5a7d9104159bd400134c8c21", - "5a71e0048dc32e000c52ecc8", - "630765777d50ff5e8a1ea718" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5a7b4c0fe899ef0014330f19", - "_parent": "5a702d198dc32e000b452fc3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7b32a2e899ef00135e345a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.99, - "HeatFactor": 0.962, - "CoolFactor": 1.06 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, "62e27a7865f0b1592a49e17b": { "_id": "62e27a7865f0b1592a49e17b", "_name": "reciever_sr2m_tochmash_sr2_std", @@ -150983,6 +149805,309 @@ }, "_proto": "55d355e64bdc2d962f8b4569" }, + "62811fbf09427b40ab14e767": { + "_id": "62811fbf09427b40ab14e767", + "_name": "reciever_ax_accuracy_international_axmc_upper_pb", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "Верхний ресивер Colt M4A1 5.56х45 для штурмовой винтовки M4A1", + "ShortName": "M4A1 Upper", + "Description": "Верхний ресивер для M4A1 производства компании Colt. Имеет направляющую для крепления дополнительного оборудования.", + "Weight": 0.38, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_ax_accuracy_international_axmc_upper_pb.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "62811fbf09427b40ab14e768", + "_parent": "62811fbf09427b40ab14e767", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "626bb8532c923541184624b4", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "62811f461d5df4475f46a332", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "62811fbf09427b40ab14e769", + "_parent": "62811fbf09427b40ab14e767", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "628121434fa03b6b6c35dc6a" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "62811fbf09427b40ab14e76b", + "_parent": "62811fbf09427b40ab14e767", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347", + "55d5f46a4bdc2d1b198b4567", + "5ae30bad5acfc400185c2dc4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.989, + "CoolFactor": 1.01 + } + }, + "57616c112459773cce774d66": { + "_id": "57616c112459773cce774d66", + "_name": "reciever_saiga12_izhmash_saiga12k_10_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "", + "ShortName": "", + "Description": "", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_saiga12_izhmash_saiga12k_10_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649af094bdc2df8348b4586" + }, "60338ff388382f4fab3fd2c8": { "_id": "60338ff388382f4fab3fd2c8", "_name": "tactical_stm9_stmarms_magwell_gry", @@ -151070,6 +150195,89 @@ }, "_proto": "544909bb4bdc2d6f028b4577" }, + "5f6340d3ca442212f4047eb2": { + "_id": "5f6340d3ca442212f4047eb2", + "_name": "foregrip_all_td_aluminum_skeletonized", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_td_aluminum_skeletonized", + "ShortName": "foregrip_all_td_aluminum_skeletonized", + "Description": "foregrip_all_td_aluminum_skeletonized", + "Weight": 0.133, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_td_aluminum_skeletonized.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032614bdc2de7118b4585" + }, "5c1bc7752e221602b1779b34": { "_id": "5c1bc7752e221602b1779b34", "_name": "foregrip_all_zenit_rk_6", @@ -151153,23 +150361,299 @@ }, "_proto": "558032614bdc2de7118b4585" }, - "615d8dbd290d254f5e6b2ed6": { - "_id": "615d8dbd290d254f5e6b2ed6", - "_name": "reciever_glock_glock_17_mos_slide", + "5fbcc3e4d6fa9c00c571bb58": { + "_id": "5fbcc3e4d6fa9c00c571bb58", + "_name": "reciever_mcx_sig_mcx_gen1", "_parent": "55818a304bdc2db5418b457d", "_type": "Item", "_props": { - "Name": "reciever_glock_glock_17_std", - "ShortName": "reciever_glock_glock_17_std", - "Description": "reciever_glock_glock_17_std", - "Weight": 0.325, + "Name": "reciever_mpx_sig_mpx_gen1", + "ShortName": "reciever_mpx_sig_mpx_gen1", + "Description": "reciever_mpx_sig_mpx_gen1", + "Weight": 0.488, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_glock_glock_17_mos_slide.bundle", + "path": "assets/content/items/mods/recievers/reciever_mcx_sig_mcx_gen1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5fbcc3e4d6fa9c00c571bb5a", + "_parent": "5fbcc3e4d6fa9c00c571bb58", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "5fbcc3e4d6fa9c00c571bb5b", + "_parent": "5fbcc3e4d6fa9c00c571bb58", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fbbfabed5cb881a7363194e", + "5fbbfacda56d053a3543f799" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "5fbcc3e4d6fa9c00c571bb5c", + "_parent": "5fbcc3e4d6fa9c00c571bb58", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fbc227aa56d053a3543f79e", + "5fbc226eca32ed67276c155d" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5fbcc3e4d6fa9c00c571bb5d", + "_parent": "5fbcc3e4d6fa9c00c571bb58", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5fd9c705dc911e7ec961c45a", + "_parent": "5fbcc3e4d6fa9c00c571bb58", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "619502ff6db0f2477964e68a", + "_parent": "5fbcc3e4d6fa9c00c571bb58", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 0.989, + "CoolFactor": 1.01 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "602e63fb6335467b0c5ac94d": { + "_id": "602e63fb6335467b0c5ac94d", + "_name": "reciever_stm9_stmarms_stm9_machined_std_9x19", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_stm9_stmarms_stm9_machined_std_9x19", + "ShortName": "reciever_stm9_stmarms_stm9_machined_std_9x19", + "Description": "reciever_stm9_stmarms_stm9_machined_std_9x19", + "Weight": 0.27, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_stm9_stmarms_stm9_machined_std_9x19.bundle", "rcid": "" }, "UsePrefab": { @@ -151215,78 +150699,162 @@ "IsUnremovable": false, "Grids": [], "Slots": [ + { + "_name": "mod_scope", + "_id": "602e63fb6335467b0c5ac94f", + "_parent": "602e63fb6335467b0c5ac94d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "602e63fb6335467b0c5ac950", + "_parent": "602e63fb6335467b0c5ac94d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "603372b4da11d6478d5a07ff", + "603372d154072b51b239f9e1", + "603372f153a60014f970616d", + "603373004e02ce1eaa358814" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "602e63fb6335467b0c5ac951", + "_parent": "602e63fb6335467b0c5ac94d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b2cfa535acfc432ff4db7a0", + "5d122e7bd7ad1a07102d6d7f", + "5d123102d7ad1a004e475fe5", + "5d4405f0a4b9361e6a4e6bd9", + "5c78f2492e221600114c9f04", + "5c78f2612e221600114c9f0d", + "6034e3e20ddce744014cb878", + "6034e3d953a60014f970617b", + "6034e3cb0ddce744014cb870", + "6087e0336d0bd7580617bb7a", + "595cfa8b86f77427437e845b", + "595cf16b86f77427440c32e2", + "63f4ba71f31d4a33b87bd046" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, { "_name": "mod_sight_rear", - "_id": "615d8dbd290d254f5e6b2ed8", - "_parent": "615d8dbd290d254f5e6b2ed6", + "_id": "602e63fb6335467b0c5ac952", + "_parent": "602e63fb6335467b0c5ac94d", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a7d9122159bd4001438dbf4", - "5a6f5d528dc32e00094b97d9", - "5a7d912f159bd400165484f3", - "5a71e0fb8dc32e00094b97f2", - "630765cb962d0247b029dc45" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "615d8dbd290d254f5e6b2ed9", - "_parent": "615d8dbd290d254f5e6b2ed6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7d90eb159bd400165484f1", - "5a6f58f68dc32e000a311390", - "5a7d9104159bd400134c8c21", - "5a71e0048dc32e000c52ecc8", - "630765777d50ff5e8a1ea718" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "615d8dbd290d254f5e6b2eda", - "_parent": "615d8dbd290d254f5e6b2ed6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7b32a2e899ef00135e345a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "615ef1d1568c120fdd2946ed", - "_parent": "615d8dbd290d254f5e6b2ed6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "615d8da4d3a39d50044c10e8" + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347", + "55d5f46a4bdc2d1b198b4567", + "5ae30bad5acfc400185c2dc4" ] } ] @@ -151306,7 +150874,7 @@ "Ergonomics": 4, "Velocity": 0, "RaidModdable": true, - "ToolModdable": false, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -151315,28 +150883,28 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "DurabilityBurnModificator": 1, - "HeatFactor": 1.058, - "CoolFactor": 0.98 + "HeatFactor": 0.954, + "CoolFactor": 1.052 }, "_proto": "55d355e64bdc2d962f8b4569" }, - "59985a6c86f77414ec448d17": { - "_id": "59985a6c86f77414ec448d17", - "_name": "reciever_pp-19-01_izhmash_vityaz_sn", + "5b099bb25acfc400186331e8": { + "_id": "5b099bb25acfc400186331e8", + "_name": "reciever_sa58_ds_arms_extreme_duty_scope_mount_extended", "_parent": "55818a304bdc2db5418b457d", "_type": "Item", "_props": { - "Name": "reciever_pp-19-01_izhmash_vityaz_sn", - "ShortName": "reciever_pp-19-01_izhmash_vityaz_sn", - "Description": "reciever_pp-19-01_izhmash_vityaz_sn", - "Weight": 0.136, + "Name": "reciever_sa58_ds_arms_extreme_duty_scope_mount_extended", + "ShortName": "reciever_sa58_ds_arms_extreme_duty_scope_mount_extended", + "Description": "reciever_sa58_ds_arms_extreme_duty_scope_mount_extended", + "Weight": 0.215, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_pp-19-01_izhmash_vityaz_sn.bundle", + "path": "assets/content/items/mods/recievers/reciever_sa58_ds_arms_extreme_duty_scope_mount_extended.bundle", "rcid": "" }, "UsePrefab": { @@ -151366,19 +150934,7 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "57acb6222459771ec34b5cb0", - "618a5d5852ecee1505530b2a", - "6544d4187c5457729210d277" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -151396,8 +150952,8 @@ "Slots": [ { "_name": "mod_scope", - "_id": "59985a6c86f77414ec448d18", - "_parent": "59985a6c86f77414ec448d17", + "_id": "5b099bb25acfc400186331ea", + "_parent": "5b099bb25acfc400186331e8", "_props": { "filters": [ { @@ -151435,11 +150991,25 @@ "616554fe50224f204c1da2aa", "5c7d55f52e221644f31bff6a", "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", "5c1cdd302e221602b3137250", "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", "5b31163c5acfc400153b71cb", "5a33b652c4a28232996e407c", "5a33b2c9c4a282000c5a9511", @@ -151448,12 +151018,14 @@ "5dff77c759400025ea5150cf", "626bb8532c923541184624b4", "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", "6477772ea8a38bb2050ed4db", "6478641c19d732620e045e17", "64785e7c19d732620e045e15", "65392f611406374f82152ba5", "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245" + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" ] } ] @@ -151470,9 +151042,9 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 5, + "Ergonomics": 4, "Velocity": 0, - "RaidModdable": false, + "RaidModdable": true, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -151487,23 +151059,23 @@ }, "_proto": "5649af094bdc2df8348b4586" }, - "5c010a700db834001d23ef5d": { - "_id": "5c010a700db834001d23ef5d", - "_name": "reciever_p226_sig_emperor_scorpion", - "_parent": "55818a304bdc2db5418b457d", + "5c4eecde2e221602b3140418": { + "_id": "5c4eecde2e221602b3140418", + "_name": "tactical_sv98_izhmash_silencer_heat_shield_std", + "_parent": "5a74651486f7744e73386dd1", "_type": "Item", "_props": { - "Name": "Затвор Sig P226R 9x19 для пистолета P226", - "ShortName": "Затвор P226", - "Description": "бла бла бла", - "Weight": 0.22, + "Name": "tactical_pso_belomo_eyecup", + "ShortName": "tactical_pso_belomo_eyecup", + "Description": "tactical_pso_belomo_eyecup", + "Weight": 0.005, "BackgroundColor": "blue", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_p226_sig_emperor_scorpion.bundle", + "path": "assets/content/items/mods/tactical/tactical_sv98_izhmash_silencer_heat_shield_std.bundle", "rcid": "" }, "UsePrefab": { @@ -151520,8 +151092,8 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, + "LootExperience": 5, + "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -151548,59 +151120,18 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "5c010a700db834001d23ef5f", - "_parent": "5c010a700db834001d23ef5d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c07b3850db834002330045b", - "56d5a77ed2720b90418b4568", - "56ea7293d2720b8d4b8b45ba", - "5a32aa0cc4a28232996e405f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5c010a700db834001d23ef60", - "_parent": "5c010a700db834001d23ef5d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c07b36c0db834002a1259e9", - "56d5a661d2720bd8418b456b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -3, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": 2, "Velocity": 0, "RaidModdable": true, - "ToolModdable": false, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -151608,11 +151139,186 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.954, - "CoolFactor": 1.065 + "ShiftsAimCamera": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.98, + "CoolFactor": 1.06 }, - "_proto": "55d355e64bdc2d962f8b4569" + "_proto": "544909bb4bdc2d6f028b4577" + }, + "5b3cbc235acfc4001863ac44": { + "_id": "5b3cbc235acfc4001863ac44", + "_name": "tactical_vulcan_armasight_eyecup", + "_parent": "5a74651486f7744e73386dd1", + "_type": "Item", + "_props": { + "Name": "tactical_vulcan_armasight_eyecup", + "ShortName": "tactical_vulcan_armasight_eyecup", + "Description": "tactical_vulcan_armasight_eyecup", + "Weight": 0.005, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/tactical/tactical_vulcan_armasight_eyecup.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ShiftsAimCamera": 0.02, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, + "6193d3cded0429009f543e6a": { + "_id": "6193d3cded0429009f543e6a", + "_name": "trigger_usp_hk_usp_std_trigger", + "_parent": "5a74651486f7744e73386dd1", + "_type": "Item", + "_props": { + "Name": "trigger_m1911_colt_m45a1_std", + "ShortName": "trigger_m1911_colt_m45a1_std", + "Description": "trigger_m1911_colt_m45a1_std", + "Weight": 0.013, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mechanics/trigger_usp_hk_usp_std_trigger.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ShiftsAimCamera": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544909bb4bdc2d6f028b4577" }, "5c0125fc0db834001a669aa3": { "_id": "5c0125fc0db834001a669aa3", @@ -152103,6 +151809,426 @@ }, "_proto": "5649af094bdc2df8348b4586" }, + "6529119424cbe3c74a05e5bb": { + "_id": "6529119424cbe3c74a05e5bb", + "_name": "reciever_mcx_sig_spear_upper", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "Верхний ресивер Colt M4A1 5.56х45 для штурмовой винтовки M4A1", + "ShortName": "M4A1 Upper", + "Description": "Верхний ресивер для M4A1 производства компании Colt. Имеет направляющую для крепления дополнительного оборудования.", + "Weight": 0.27, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_mcx_sig_spear_upper.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "6529119424cbe3c74a05e5bc", + "_parent": "6529119424cbe3c74a05e5bb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "6567e751a715f85433025998", + "655f13e0a246670fb0373245", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "6529119424cbe3c74a05e5bd", + "_parent": "6529119424cbe3c74a05e5bb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "652910565ae2ae97b80fdf35" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "6529119424cbe3c74a05e5be", + "_parent": "6529119424cbe3c74a05e5bb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "652910ef50dc782999054b97" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "6529119424cbe3c74a05e5bf", + "_parent": "6529119424cbe3c74a05e5bb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347", + "55d5f46a4bdc2d1b198b4567", + "5ae30bad5acfc400185c2dc4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "65293d2817e14363030ad30b", + "_parent": "6529119424cbe3c74a05e5bb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649a2464bdc2d91118b45a8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.989, + "CoolFactor": 1.01 + } + }, + "615d8dbd290d254f5e6b2ed6": { + "_id": "615d8dbd290d254f5e6b2ed6", + "_name": "reciever_glock_glock_17_mos_slide", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_glock_glock_17_std", + "ShortName": "reciever_glock_glock_17_std", + "Description": "reciever_glock_glock_17_std", + "Weight": 0.325, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_glock_glock_17_mos_slide.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "615d8dbd290d254f5e6b2ed8", + "_parent": "615d8dbd290d254f5e6b2ed6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7d9122159bd4001438dbf4", + "5a6f5d528dc32e00094b97d9", + "5a7d912f159bd400165484f3", + "5a71e0fb8dc32e00094b97f2", + "630765cb962d0247b029dc45" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "615d8dbd290d254f5e6b2ed9", + "_parent": "615d8dbd290d254f5e6b2ed6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7d90eb159bd400165484f1", + "5a6f58f68dc32e000a311390", + "5a7d9104159bd400134c8c21", + "5a71e0048dc32e000c52ecc8", + "630765777d50ff5e8a1ea718" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "615d8dbd290d254f5e6b2eda", + "_parent": "615d8dbd290d254f5e6b2ed6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7b32a2e899ef00135e345a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "615ef1d1568c120fdd2946ed", + "_parent": "615d8dbd290d254f5e6b2ed6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "615d8da4d3a39d50044c10e8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.058, + "CoolFactor": 0.98 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, "5d124c1ad7ad1a12227c53a7": { "_id": "5d124c1ad7ad1a12227c53a7", "_name": "tactical_urx_kac_panel_hand_stop_fde", @@ -152617,6 +152743,1461 @@ }, "_proto": "558032614bdc2de7118b4585" }, + "634f05ca517ccc8a960fc748": { + "_id": "634f05ca517ccc8a960fc748", + "_name": "reciever_sks_toz_sks_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_ak74_izhmash_ak74m_std", + "ShortName": "reciever_ak74_izhmash_ak74m_std", + "Description": "reciever_ak74_izhmash_ak74m_std", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_sks_toz_sks_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5ba36f85d4351e0085325c81": { + "_id": "5ba36f85d4351e0085325c81", + "_name": "tactical_nspum_npz_eyecup", + "_parent": "5a74651486f7744e73386dd1", + "_type": "Item", + "_props": { + "Name": "tactical_pso_belomo_eyecup", + "ShortName": "tactical_pso_belomo_eyecup", + "Description": "tactical_pso_belomo_eyecup", + "Weight": 0.005, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/tactical/tactical_nspum_npz_eyecup.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ShiftsAimCamera": 0.02, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, + "5e81c550763d9f754677befd": { + "_id": "5e81c550763d9f754677befd", + "_name": "hammer_m1911_colt_m1911a1_std", + "_parent": "5a74651486f7744e73386dd1", + "_type": "Item", + "_props": { + "Name": "hammer_m1911_colt_m1911a1_std", + "ShortName": "hammer_m1911_colt_m1911a1_std", + "Description": "hammer_m1911_colt_m1911a1_std", + "Weight": 0.018, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mechanics/hammer_m1911_colt_m1911a1_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ShiftsAimCamera": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, + "5cf639aad7f00c065703d455": { + "_id": "5cf639aad7f00c065703d455", + "_name": "tactical_1p29_npz_eyecup", + "_parent": "5a74651486f7744e73386dd1", + "_type": "Item", + "_props": { + "Name": "tactical_pso_belomo_eyecup", + "ShortName": "tactical_pso_belomo_eyecup", + "Description": "tactical_pso_belomo_eyecup", + "Weight": 0.005, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/tactical/tactical_1p29_npz_eyecup.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ShiftsAimCamera": 0.01, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, + "622f16a1a5958f63c67f1737": { + "_id": "622f16a1a5958f63c67f1737", + "_name": "tactical_g36_hk_complete_hand_stop", + "_parent": "5a74651486f7744e73386dd1", + "_type": "Item", + "_props": { + "Name": "tactical_glock_zev_tech_rmr_adapter_plate", + "ShortName": "tactical_glock_zev_tech_rmr_adapter_plate", + "Description": "tactical_glock_zev_tech_rmr_adapter_plate", + "Weight": 0.005, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/tactical/tactical_g36_hk_complete_hand_stop.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ShiftsAimCamera": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, + "6464d870bb2c580352070cc4": { + "_id": "6464d870bb2c580352070cc4", + "_name": "bipod_pkm_zid_pk_std", + "_parent": "55818afb4bdc2dde698b456d", + "_type": "Item", + "_props": { + "Name": "Сошки Ижмаш СВ-98", + "ShortName": "Сошки СВ-98", + "Description": "Написать", + "Weight": 0.47, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/bipods/bipod_pkm_zid_pk_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c1cd46f2e22164bef5cfedb" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "56ea8222d2720b69698b4567" + }, + "5cda9bcfd7f00c0c0b53e900": { + "_id": "5cda9bcfd7f00c0c0b53e900", + "_name": "foregrip_all_ckib_ash12_std", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_kac_vertical_grip", + "ShortName": "foregrip_all_kac_vertical_grip", + "Description": "foregrip_all_kac_vertical_grip", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_ckib_ash12_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032614bdc2de7118b4585" + }, + "5c503d0a2e221602b542b7ef": { + "_id": "5c503d0a2e221602b542b7ef", + "_name": "reciever_vepr_molot_vpo-101_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "", + "ShortName": "", + "Description": "", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_vepr_molot_vpo-101_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649af094bdc2df8348b4586" + }, + "5bffe7c50db834001d23ece1": { + "_id": "5bffe7c50db834001d23ece1", + "_name": "reciever_p226_axelson_tactical_mk25", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "Затвор Sig P226R 9x19 для пистолета P226", + "ShortName": "Затвор P226", + "Description": "бла бла бла", + "Weight": 0.24, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_p226_axelson_tactical_mk25.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "5bffe7c50db834001d23ece3", + "_parent": "5bffe7c50db834001d23ece1", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c07b3850db834002330045b", + "56d5a77ed2720b90418b4568", + "56ea7293d2720b8d4b8b45ba", + "5a32aa0cc4a28232996e405f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5bffe7c50db834001d23ece4", + "_parent": "5bffe7c50db834001d23ece1", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c07b36c0db834002a1259e9", + "56d5a661d2720bd8418b456b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 0.95, + "CoolFactor": 1.065 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5fc278107283c4046c581489": { + "_id": "5fc278107283c4046c581489", + "_name": "reciever_mk18_sword_mjolnir_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_ar15_noveske_gen3_stripped", + "ShortName": "reciever_ar15_noveske_gen3_stripped", + "Description": "reciever_ar15_noveske_gen3_stripped", + "Weight": 0.45, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_mk18_sword_mjolnir_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5fc278107283c4046c58148b", + "_parent": "5fc278107283c4046c581489", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "5fc278107283c4046c58148c", + "_parent": "5fc278107283c4046c581489", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fc23678ab884124df0cd590" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "5fc278107283c4046c58148d", + "_parent": "5fc278107283c4046c581489", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fc235db2770a0045c59c683" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5fc278107283c4046c58148e", + "_parent": "5fc278107283c4046c581489", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347", + "55d5f46a4bdc2d1b198b4567", + "5ae30bad5acfc400185c2dc4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.9246, + "CoolFactor": 1.075 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "6194f41f9fb0c665d5490e75": { + "_id": "6194f41f9fb0c665d5490e75", + "_name": "reciever_usp_hk_tactical", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_glock_glock_17_std", + "ShortName": "reciever_glock_glock_17_std", + "Description": "reciever_glock_glock_17_std", + "Weight": 0.472, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_usp_hk_tactical.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "6194f41f9fb0c665d5490e77", + "_parent": "6194f41f9fb0c665d5490e75", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61963a852d2c397d660036ad", + "6194f2912d2c397d6600348d", + "6194f2df645b5d229654ad77" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "6194f41f9fb0c665d5490e78", + "_parent": "6194f41f9fb0c665d5490e75", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6194f35c18a3974e5e7421e6", + "6194f3286db0f2477964e67d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.99, + "HeatFactor": 0.956, + "CoolFactor": 1.06 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "649ec2f3961514b22506b111": { + "_id": "649ec2f3961514b22506b111", + "_name": "reciever_ak12_izhmash_ak12_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "Крышка ствольной коробки Зенит Б-33 для АК-74", + "ShortName": "Б-33", + "Description": "Цельнофрезерованная крышка ствольной коробки Б-33 от компании Зенит из комплекта обвязки для АК \"Классика\". Может быть установлена только совместно с цевьём Б-10М или Б-30.", + "Weight": 0.215, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_ak12_izhmash_ak12_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "649ec2f3961514b22506b112", + "_parent": "649ec2f3961514b22506b111", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6478641c19d732620e045e17", + "6477772ea8a38bb2050ed4db", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "649ec2f3961514b22506b113", + "_parent": "649ec2f3961514b22506b111", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5beec9450db83400970084fd", + "649ec2da59cbb3c813042dca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.96, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649af094bdc2df8348b4586" + }, + "5bfe86bd0db83400232fe959": { + "_id": "5bfe86bd0db83400232fe959", + "_name": "tactical_870_fab_defence_agr_870_cap", + "_parent": "5a74651486f7744e73386dd1", + "_type": "Item", + "_props": { + "Name": "tactical_pso_belomo_eyecup", + "ShortName": "tactical_pso_belomo_eyecup", + "Description": "tactical_pso_belomo_eyecup", + "Weight": 0.005, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/tactical/tactical_870_fab_defence_agr_870_cap.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ShiftsAimCamera": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, "5a7033908dc32e000a311392": { "_id": "5a7033908dc32e000a311392", "_name": "reciever_glock_lone_wolf_alphawolf_custom_pat_5", @@ -152766,231 +154347,23 @@ }, "_proto": "55d355e64bdc2d962f8b4569" }, - "6374a822e629013b9c0645c8": { - "_id": "6374a822e629013b9c0645c8", - "_name": "reciever_pm_izhmeh_pm_std", + "57dc334d245977597164366f": { + "_id": "57dc334d245977597164366f", + "_name": "reciever_aks74u_izhmash_aks74u_std", "_parent": "55818a304bdc2db5418b457d", "_type": "Item", "_props": { - "Name": "Затвор Sig P226R 9x19 для пистолета P226", - "ShortName": "Затвор P226", - "Description": "бла бла бла", - "Weight": 0.19, + "Name": "reciever_aks74u_izhmash_aks74u_std", + "ShortName": "reciever_aks74u_izhmash_aks74u_std", + "Description": "reciever_aks74u_izhmash_aks74u_std", + "Weight": 0.136, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_pm_izhmeh_pm_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "63c6ae0ace402fb40f05a109", - "_parent": "6374a822e629013b9c0645c8", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "63c6adcfb4ba094317063742" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1.081 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "59e6449086f7746c9f75e822": { - "_id": "59e6449086f7746c9f75e822", - "_name": "reciever_ak_molot_akm_type", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_ak_izhmash_akm_std", - "ShortName": "reciever_ak_izhmash_akm_std", - "Description": "reciever_ak_izhmash_akm_std", - "Weight": 0.088, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_ak_molot_akm_type.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount", - "_id": "59e6449086f7746c9f75e823", - "_parent": "59e6449086f7746c9f75e822", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 90, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5839a7742459773cf9693481": { - "_id": "5839a7742459773cf9693481", - "_name": "reciever_aks74u_izhmash_aks74ub_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_aks74u_izhmash_aks74ub_std", - "ShortName": "reciever_aks74u_izhmash_aks74ub_std", - "Description": "reciever_aks74u_izhmash_aks74ub_std\n", - "Weight": 0.142, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_aks74u_izhmash_aks74ub_std.bundle", + "path": "assets/content/items/mods/recievers/reciever_aks74u_izhmash_aks74u_std.bundle", "rcid": "" }, "UsePrefab": { @@ -153042,7 +154415,26 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "57ffa94b245977725b498add", + "_parent": "57dc334d245977597164366f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ffb0062459777a045af529" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, @@ -153067,514 +154459,6 @@ }, "_proto": "5649af094bdc2df8348b4586" }, - "5c0e2f26d174af02a9625114": { - "_id": "5c0e2f26d174af02a9625114", - "_name": "reciever_ar15_adar_2-15_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "Верхний ресивер Colt M4A1 5.56х45 для штурмовой винтовки M4A1", - "ShortName": "M4A1 Upper", - "Description": "Верхний ресивер для M4A1 производства компании Colt. Имеет направляющую для крепления дополнительного оборудования.", - "Weight": 0.27, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_ar15_adar_2-15_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5c0e2f26d174af02a9625116", - "_parent": "5c0e2f26d174af02a9625114", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "5c0e2f26d174af02a9625117", - "_parent": "5c0e2f26d174af02a9625114", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d35ee94bdc2d61338b4568", - "55d3632e4bdc2d972f8b4569", - "5d440b93a4b9364276578d4b", - "5d440b9fa4b93601354d480c", - "5c0e2f94d174af029f650d56", - "63d3ce0446bd475bcb50f55f", - "63d3d44a2a49307baf09386d" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "5c0e2f26d174af02a9625118", - "_parent": "5c0e2f26d174af02a9625114", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0e2f5cd174af02a012cfc9", - "619b5db699fb192e7430664f", - "5b2cfa535acfc432ff4db7a0", - "5ae30db85acfc408fb139a05", - "5c9a25172e2216000f20314e", - "55f84c3c4bdc2d5f408b4576", - "588b56d02459771481110ae2", - "5c9a26332e2216001219ea70", - "5ea16ada09aa976f2e7a51be", - "5ea16acdfadf1d18c87b0784", - "55d459824bdc2d892f8b4573", - "5d122e7bd7ad1a07102d6d7f", - "5d123102d7ad1a004e475fe5", - "5d4405f0a4b9361e6a4e6bd9", - "5c78f2792e221600106f4683", - "5c78f26f2e221601da3581d1", - "5c78f2492e221600114c9f04", - "5c78f2612e221600114c9f0d", - "6034e3e20ddce744014cb878", - "6034e3d953a60014f970617b", - "6034e3cb0ddce744014cb870", - "5c6d5d8b2e221644fc630b39", - "5d00e0cbd7ad1a6c6566a42d", - "5d00f63bd7ad1a59283b1c1e", - "6087e0336d0bd7580617bb7a", - "595cfa8b86f77427437e845b", - "595cf16b86f77427440c32e2", - "63888bbd28e5cc32cc09d2b6", - "63f4ba71f31d4a33b87bd046", - "640b20359ab20e15ee445fa9", - "647de824196bf69818044c93" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5c0e2f26d174af02a9625119", - "_parent": "5c0e2f26d174af02a9625114", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347", - "55d5f46a4bdc2d1b198b4567", - "5ae30bad5acfc400185c2dc4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1.01, - "HeatFactor": 0.991, - "CoolFactor": 1.008 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5a6f5e048dc32e00094b97da": { - "_id": "5a6f5e048dc32e00094b97da", - "_name": "reciever_glock_glock_17_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_glock_glock_17_std", - "ShortName": "reciever_glock_glock_17_std", - "Description": "reciever_glock_glock_17_std", - "Weight": 0.355, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_glock_glock_17_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "5a6f5e048dc32e00094b97db", - "_parent": "5a6f5e048dc32e00094b97da", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7d9122159bd4001438dbf4", - "5a6f5d528dc32e00094b97d9", - "5a7d912f159bd400165484f3", - "5a71e0fb8dc32e00094b97f2", - "630765cb962d0247b029dc45" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5a6f5e048dc32e00094b97dc", - "_parent": "5a6f5e048dc32e00094b97da", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7d90eb159bd400165484f1", - "5a6f58f68dc32e000a311390", - "5a7d9104159bd400134c8c21", - "5a71e0048dc32e000c52ecc8", - "630765777d50ff5e8a1ea718" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5a7b4b6be899ef0193192895", - "_parent": "5a6f5e048dc32e00094b97da", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7b32a2e899ef00135e345a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.058, - "CoolFactor": 0.98 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5d123b7dd7ad1a004f01b262": { - "_id": "5d123b7dd7ad1a004f01b262", - "_name": "tactical_urx_kac_panel_hand_stop", - "_parent": "5a74651486f7744e73386dd1", - "_type": "Item", - "_props": { - "Name": "tactical_pso_belomo_eyecup", - "ShortName": "tactical_pso_belomo_eyecup", - "Description": "tactical_pso_belomo_eyecup", - "Weight": 0.005, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_urx_kac_panel_hand_stop.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ShiftsAimCamera": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, "62ff9faffe938a24c90c10df": { "_id": "62ff9faffe938a24c90c10df", "_name": "tactical_sr2_killflash", @@ -153662,6 +154546,174 @@ }, "_proto": "544909bb4bdc2d6f028b4577" }, + "5a71e22f8dc32e00094b97f4": { + "_id": "5a71e22f8dc32e00094b97f4", + "_name": "reciever_glock_zev_tech_hex_rmr_cut_gen_3", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_glock_zev_tech_hex_rmr_cut_gen_3", + "ShortName": "reciever_glock_zev_tech_hex_rmr_cut_gen_3", + "Description": "reciever_glock_zev_tech_hex_rmr_cut_gen_3", + "Weight": 0.19, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_glock_zev_tech_hex_rmr_cut_gen_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "5a71e22f8dc32e00094b97f5", + "_parent": "5a71e22f8dc32e00094b97f4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7d9122159bd4001438dbf4", + "5a6f5d528dc32e00094b97d9", + "5a7d912f159bd400165484f3", + "5a71e0fb8dc32e00094b97f2", + "630765cb962d0247b029dc45" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5a71e22f8dc32e00094b97f6", + "_parent": "5a71e22f8dc32e00094b97f4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7d90eb159bd400165484f1", + "5a6f58f68dc32e000a311390", + "5a7d9104159bd400134c8c21", + "5a71e0048dc32e000c52ecc8", + "630765777d50ff5e8a1ea718" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5a71e41e8dc32e5a9c28b505", + "_parent": "5a71e22f8dc32e00094b97f4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a71e1868dc32e00094b97f3", + "5a32aa8bc4a2826c6e06d737" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5a7b4cdae899ef0193192896", + "_parent": "5a71e22f8dc32e00094b97f4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7b32a2e899ef00135e345a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.944, + "CoolFactor": 1.063 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, "5e81c539cb2b95385c177553": { "_id": "5e81c539cb2b95385c177553", "_name": "catch_m1911_colt_m1911a1_std", @@ -153749,93 +154801,6 @@ }, "_proto": "544909bb4bdc2d6f028b4577" }, - "5f3e777688ca2d00ad199d25": { - "_id": "5f3e777688ca2d00ad199d25", - "_name": "catch_m1911_colt_m45a1_std", - "_parent": "5a74651486f7744e73386dd1", - "_type": "Item", - "_props": { - "Name": "catch_m1911_colt_m45a1_std", - "ShortName": "catch_m1911_colt_m45a1_std", - "Description": "catch_m1911_colt_m45a1_std", - "Weight": 0.008, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mechanics/catch_m1911_colt_m45a1_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ShiftsAimCamera": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, "6193d5d4f8ee7e52e4210a1b": { "_id": "6193d5d4f8ee7e52e4210a1b", "_name": "catch_usp_hk_usp_std", @@ -153923,93 +154888,6 @@ }, "_proto": "544909bb4bdc2d6f028b4577" }, - "5ef35d2ac64c5d0dfc0571b0": { - "_id": "5ef35d2ac64c5d0dfc0571b0", - "_name": "hammer_m1911_wilson_retro_commander", - "_parent": "5a74651486f7744e73386dd1", - "_type": "Item", - "_props": { - "Name": "hammer_m1911_colt_m1911a1_std", - "ShortName": "hammer_m1911_colt_m1911a1_std", - "Description": "hammer_m1911_colt_m1911a1_std", - "Weight": 0.016, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mechanics/hammer_m1911_wilson_retro_commander.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ShiftsAimCamera": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, "63fc4533b10b17385349b565": { "_id": "63fc4533b10b17385349b565", "_name": "tactical_zeus_armasight_eyecup", @@ -154180,172 +155058,6 @@ }, "_proto": "558032614bdc2de7118b4585" }, - "634e61b0767cb15c4601a877": { - "_id": "634e61b0767cb15c4601a877", - "_name": "foregrip_aug_steyr_a1_foregrip", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_kac_vertical_grip", - "ShortName": "foregrip_all_kac_vertical_grip", - "Description": "foregrip_all_kac_vertical_grip", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_aug_steyr_a1_foregrip.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032614bdc2de7118b4585" - }, - "5c7fc87d2e221644f31c0298": { - "_id": "5c7fc87d2e221644f31c0298", - "_name": "foregrip_all_bcm_mod_3", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_vtac_uvg", - "ShortName": "foregrip_all_vtac_uvg", - "Description": "foregrip_all_vtac_uvg", - "Weight": 0.053, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_bcm_mod_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032614bdc2de7118b4585" - }, "5894a5b586f77426d2590767": { "_id": "5894a5b586f77426d2590767", "_name": "reciever_mpx_sig_mpx_gen1", @@ -154612,23 +155324,23 @@ }, "_proto": "55d355e64bdc2d962f8b4569" }, - "56d5a407d2720bb3418b456b": { - "_id": "56d5a407d2720bb3418b456b", - "_name": "reciever_p226_sig_p226r_std", - "_parent": "55818a304bdc2db5418b457d", + "5c7fc87d2e221644f31c0298": { + "_id": "5c7fc87d2e221644f31c0298", + "_name": "foregrip_all_bcm_mod_3", + "_parent": "55818af64bdc2d5b648b4570", "_type": "Item", "_props": { - "Name": "Затвор Sig P226R 9x19 для пистолета P226", - "ShortName": "Затвор P226", - "Description": "бла бла бла", - "Weight": 0.19, + "Name": "foregrip_all_vtac_uvg", + "ShortName": "foregrip_all_vtac_uvg", + "Description": "foregrip_all_vtac_uvg", + "Weight": 0.053, "BackgroundColor": "blue", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_p226_sig_p226r_std.bundle", + "path": "assets/content/items/mods/foregrips/foregrip_all_bcm_mod_3.bundle", "rcid": "" }, "UsePrefab": { @@ -154646,7 +155358,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 2, + "ExamineExperience": 6, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -154673,197 +155385,7 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "56d5a80ed2720bd5418b456a", - "_parent": "56d5a407d2720bb3418b456b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c07b3850db834002330045b", - "56d5a77ed2720b90418b4568", - "56ea7293d2720b8d4b8b45ba", - "5a32aa0cc4a28232996e405f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "56d5a81cd2720bdc418b456a", - "_parent": "56d5a407d2720bb3418b456b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c07b36c0db834002a1259e9", - "56d5a661d2720bd8418b456b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.962, - "CoolFactor": 1.059 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5a9685b1a2750c0032157104": { - "_id": "5a9685b1a2750c0032157104", - "_name": "reciever_glock_gspc_moto_slide_cut", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_glock_gspc_moto_slide_cut", - "ShortName": "reciever_glock_gspc_moto_slide_cut", - "Description": "reciever_glock_gspc_moto_slide_cut", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_glock_gspc_moto_slide_cut.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "5a9685b1a2750c0032157106", - "_parent": "5a9685b1a2750c0032157104", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7d9122159bd4001438dbf4", - "5a6f5d528dc32e00094b97d9", - "5a7d912f159bd400165484f3", - "5a71e0fb8dc32e00094b97f2", - "630765cb962d0247b029dc45" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5a9685b1a2750c0032157107", - "_parent": "5a9685b1a2750c0032157104", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7d90eb159bd400165484f1", - "5a6f58f68dc32e000a311390", - "5a7d9104159bd400134c8c21", - "5a71e0048dc32e000c52ecc8", - "630765777d50ff5e8a1ea718" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5a9685b1a2750c0032157108", - "_parent": "5a9685b1a2750c0032157104", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7b32a2e899ef00135e345a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, @@ -154871,7 +155393,7 @@ "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 5, + "Ergonomics": 6, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -154881,124 +155403,9 @@ "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.978, - "CoolFactor": 1.078 + "UniqueAnimationModID": 0 }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "57dc334d245977597164366f": { - "_id": "57dc334d245977597164366f", - "_name": "reciever_aks74u_izhmash_aks74u_std", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_aks74u_izhmash_aks74u_std", - "ShortName": "reciever_aks74u_izhmash_aks74u_std", - "Description": "reciever_aks74u_izhmash_aks74u_std", - "Weight": 0.136, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_aks74u_izhmash_aks74u_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "57486e672459770abd687134", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "57ffa94b245977725b498add", - "_parent": "57dc334d245977597164366f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ffb0062459777a045af529" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649af094bdc2df8348b4586" + "_proto": "558032614bdc2de7118b4585" }, "655cb6b5d680a544f30607fa": { "_id": "655cb6b5d680a544f30607fa", @@ -155536,23 +155943,23 @@ "ModesCount": 2 } }, - "59fc48e086f77463b1118392": { - "_id": "59fc48e086f77463b1118392", - "_name": "foregrip_all_magpul_rvg_blk", - "_parent": "55818af64bdc2d5b648b4570", + "5dfce88fe9dc277128008b2e": { + "_id": "5dfce88fe9dc277128008b2e", + "_name": "reciever_svd_izhmash_svd_s_cut_off", + "_parent": "55818a304bdc2db5418b457d", "_type": "Item", "_props": { - "Name": "foregrip_all_magpul_rvg_blk", - "ShortName": "foregrip_all_magpul_rvg_blk", - "Description": "foregrip_all_magpul_rvg_blk", - "Weight": 0.082, + "Name": "reciever_svd_izhmash_svd_s_cut_off", + "ShortName": "reciever_svd_izhmash_svd_s_cut_off", + "Description": "reciever_svd_izhmash_svd_s_cut_off", + "Weight": 0.05, "BackgroundColor": "blue", - "Width": 1, + "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_magpul_rvg.bundle", + "path": "assets/content/items/mods/recievers/reciever_svd_izhmash_svd_s_cut_off.bundle", "rcid": "" }, "UsePrefab": { @@ -155570,7 +155977,200 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 6, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c471c2d2e22164bef5d077f" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "6374a822e629013b9c0645c8": { + "_id": "6374a822e629013b9c0645c8", + "_name": "reciever_pm_izhmeh_pm_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "Затвор Sig P226R 9x19 для пистолета P226", + "ShortName": "Затвор P226", + "Description": "бла бла бла", + "Weight": 0.19, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_pm_izhmeh_pm_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "63c6ae0ace402fb40f05a109", + "_parent": "6374a822e629013b9c0645c8", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "63c6adcfb4ba094317063742" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1.081 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "59e6449086f7746c9f75e822": { + "_id": "59e6449086f7746c9f75e822", + "_name": "reciever_ak_molot_akm_type", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_ak_izhmash_akm_std", + "ShortName": "reciever_ak_izhmash_akm_std", + "Description": "reciever_ak_izhmash_akm_std", + "Weight": 0.088, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_ak_molot_akm_type.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -155597,15 +156197,304 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_mount", + "_id": "59e6449086f7746c9f75e823", + "_parent": "59e6449086f7746c9f75e822", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 90, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5c0e2f26d174af02a9625114": { + "_id": "5c0e2f26d174af02a9625114", + "_name": "reciever_ar15_adar_2-15_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "Верхний ресивер Colt M4A1 5.56х45 для штурмовой винтовки M4A1", + "ShortName": "M4A1 Upper", + "Description": "Верхний ресивер для M4A1 производства компании Colt. Имеет направляющую для крепления дополнительного оборудования.", + "Weight": 0.27, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_ar15_adar_2-15_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5c0e2f26d174af02a9625116", + "_parent": "5c0e2f26d174af02a9625114", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "5c0e2f26d174af02a9625117", + "_parent": "5c0e2f26d174af02a9625114", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d35ee94bdc2d61338b4568", + "55d3632e4bdc2d972f8b4569", + "5d440b93a4b9364276578d4b", + "5d440b9fa4b93601354d480c", + "5c0e2f94d174af029f650d56", + "63d3ce0446bd475bcb50f55f", + "63d3d44a2a49307baf09386d" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "5c0e2f26d174af02a9625118", + "_parent": "5c0e2f26d174af02a9625114", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0e2f5cd174af02a012cfc9", + "619b5db699fb192e7430664f", + "5b2cfa535acfc432ff4db7a0", + "5ae30db85acfc408fb139a05", + "5c9a25172e2216000f20314e", + "55f84c3c4bdc2d5f408b4576", + "588b56d02459771481110ae2", + "5c9a26332e2216001219ea70", + "5ea16ada09aa976f2e7a51be", + "5ea16acdfadf1d18c87b0784", + "55d459824bdc2d892f8b4573", + "5d122e7bd7ad1a07102d6d7f", + "5d123102d7ad1a004e475fe5", + "5d4405f0a4b9361e6a4e6bd9", + "5c78f2792e221600106f4683", + "5c78f26f2e221601da3581d1", + "5c78f2492e221600114c9f04", + "5c78f2612e221600114c9f0d", + "6034e3e20ddce744014cb878", + "6034e3d953a60014f970617b", + "6034e3cb0ddce744014cb870", + "5c6d5d8b2e221644fc630b39", + "5d00e0cbd7ad1a6c6566a42d", + "5d00f63bd7ad1a59283b1c1e", + "6087e0336d0bd7580617bb7a", + "595cfa8b86f77427437e845b", + "595cf16b86f77427440c32e2", + "63888bbd28e5cc32cc09d2b6", + "63f4ba71f31d4a33b87bd046", + "640b20359ab20e15ee445fa9", + "647de824196bf69818044c93" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5c0e2f26d174af02a9625119", + "_parent": "5c0e2f26d174af02a9625114", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347", + "55d5f46a4bdc2d1b198b4567", + "5ae30bad5acfc400185c2dc4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -2, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 7, + "Ergonomics": 4, "Velocity": 0, "RaidModdable": true, "ToolModdable": true, @@ -155615,9 +156504,161 @@ "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1.01, + "HeatFactor": 0.991, + "CoolFactor": 1.008 }, - "_proto": "558032574bdc2d89578b458a" + "_proto": "55d355e64bdc2d962f8b4569" + }, + "5a6f5e048dc32e00094b97da": { + "_id": "5a6f5e048dc32e00094b97da", + "_name": "reciever_glock_glock_17_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_glock_glock_17_std", + "ShortName": "reciever_glock_glock_17_std", + "Description": "reciever_glock_glock_17_std", + "Weight": 0.355, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_glock_glock_17_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "5a6f5e048dc32e00094b97db", + "_parent": "5a6f5e048dc32e00094b97da", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7d9122159bd4001438dbf4", + "5a6f5d528dc32e00094b97d9", + "5a7d912f159bd400165484f3", + "5a71e0fb8dc32e00094b97f2", + "630765cb962d0247b029dc45" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5a6f5e048dc32e00094b97dc", + "_parent": "5a6f5e048dc32e00094b97da", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7d90eb159bd400165484f1", + "5a6f58f68dc32e000a311390", + "5a7d9104159bd400134c8c21", + "5a71e0048dc32e000c52ecc8", + "630765777d50ff5e8a1ea718" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5a7b4b6be899ef0193192895", + "_parent": "5a6f5e048dc32e00094b97da", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7b32a2e899ef00135e345a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.058, + "CoolFactor": 0.98 + }, + "_proto": "55d355e64bdc2d962f8b4569" }, "5a71e4f48dc32e001207fb26": { "_id": "5a71e4f48dc32e001207fb26", @@ -155787,23 +156828,23 @@ }, "_proto": "55d355e64bdc2d962f8b4569" }, - "59985a8086f77414ec448d1a": { - "_id": "59985a8086f77414ec448d1a", - "_name": "reciever_pp-19-01_izhmash_vityaz_std", - "_parent": "55818a304bdc2db5418b457d", + "5d123b7dd7ad1a004f01b262": { + "_id": "5d123b7dd7ad1a004f01b262", + "_name": "tactical_urx_kac_panel_hand_stop", + "_parent": "5a74651486f7744e73386dd1", "_type": "Item", "_props": { - "Name": "reciever_pp-19-01_izhmash_vityaz_std", - "ShortName": "reciever_pp-19-01_izhmash_vityaz_std", - "Description": "reciever_pp-19-01_izhmash_vityaz_std", - "Weight": 0.136, + "Name": "tactical_pso_belomo_eyecup", + "ShortName": "tactical_pso_belomo_eyecup", + "Description": "tactical_pso_belomo_eyecup", + "Weight": 0.005, "BackgroundColor": "blue", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_pp-19-01_izhmash_vityaz_std.bundle", + "path": "assets/content/items/mods/tactical/tactical_urx_kac_panel_hand_stop.bundle", "rcid": "" }, "UsePrefab": { @@ -155820,8 +156861,8 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, + "LootExperience": 5, + "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -155853,12 +156894,12 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 3, + "Ergonomics": 4, "Velocity": 0, - "RaidModdable": false, + "RaidModdable": true, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -155867,99 +156908,12 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649af094bdc2df8348b4586" - }, - "5dfce88fe9dc277128008b2e": { - "_id": "5dfce88fe9dc277128008b2e", - "_name": "reciever_svd_izhmash_svd_s_cut_off", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_svd_izhmash_svd_s_cut_off", - "ShortName": "reciever_svd_izhmash_svd_s_cut_off", - "Description": "reciever_svd_izhmash_svd_s_cut_off", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_svd_izhmash_svd_s_cut_off.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c471c2d2e22164bef5d077f" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, + "ShiftsAimCamera": 0, "DurabilityBurnModificator": 1, - "HeatFactor": 1, + "HeatFactor": 0.99, "CoolFactor": 1 }, - "_proto": "55d355e64bdc2d962f8b4569" + "_proto": "544909bb4bdc2d6f028b4577" }, "5d2c772c48f0355d95672c25": { "_id": "5d2c772c48f0355d95672c25", @@ -156157,6 +157111,266 @@ }, "_proto": "5649af094bdc2df8348b4586" }, + "59985a8086f77414ec448d1a": { + "_id": "59985a8086f77414ec448d1a", + "_name": "reciever_pp-19-01_izhmash_vityaz_std", + "_parent": "55818a304bdc2db5418b457d", + "_type": "Item", + "_props": { + "Name": "reciever_pp-19-01_izhmash_vityaz_std", + "ShortName": "reciever_pp-19-01_izhmash_vityaz_std", + "Description": "reciever_pp-19-01_izhmash_vityaz_std", + "Weight": 0.136, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/recievers/reciever_pp-19-01_izhmash_vityaz_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649af094bdc2df8348b4586" + }, + "5f3e777688ca2d00ad199d25": { + "_id": "5f3e777688ca2d00ad199d25", + "_name": "catch_m1911_colt_m45a1_std", + "_parent": "5a74651486f7744e73386dd1", + "_type": "Item", + "_props": { + "Name": "catch_m1911_colt_m45a1_std", + "ShortName": "catch_m1911_colt_m45a1_std", + "Description": "catch_m1911_colt_m45a1_std", + "Weight": 0.008, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mechanics/catch_m1911_colt_m45a1_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ShiftsAimCamera": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, + "5ef35d2ac64c5d0dfc0571b0": { + "_id": "5ef35d2ac64c5d0dfc0571b0", + "_name": "hammer_m1911_wilson_retro_commander", + "_parent": "5a74651486f7744e73386dd1", + "_type": "Item", + "_props": { + "Name": "hammer_m1911_colt_m1911a1_std", + "ShortName": "hammer_m1911_colt_m1911a1_std", + "Description": "hammer_m1911_colt_m1911a1_std", + "Weight": 0.016, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/mechanics/hammer_m1911_wilson_retro_commander.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ShiftsAimCamera": 0, + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, "55818a304bdc2db5418b457d": { "_id": "55818a304bdc2db5418b457d", "_name": "Receiver", @@ -156168,6 +157382,89 @@ "CoolFactor": 1 } }, + "634e61b0767cb15c4601a877": { + "_id": "634e61b0767cb15c4601a877", + "_name": "foregrip_aug_steyr_a1_foregrip", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_kac_vertical_grip", + "ShortName": "foregrip_all_kac_vertical_grip", + "Description": "foregrip_all_kac_vertical_grip", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_aug_steyr_a1_foregrip.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032614bdc2de7118b4585" + }, "60785c0d232e5a31c233d51c": { "_id": "60785c0d232e5a31c233d51c", "_name": "tactical_mp155_kalshnikov_ultima_pistol_grip_rubberpad", @@ -156508,1305 +157805,6 @@ }, "_proto": "558032574bdc2d89578b458a" }, - "602e63fb6335467b0c5ac94d": { - "_id": "602e63fb6335467b0c5ac94d", - "_name": "reciever_stm9_stmarms_stm9_machined_std_9x19", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_stm9_stmarms_stm9_machined_std_9x19", - "ShortName": "reciever_stm9_stmarms_stm9_machined_std_9x19", - "Description": "reciever_stm9_stmarms_stm9_machined_std_9x19", - "Weight": 0.27, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_stm9_stmarms_stm9_machined_std_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "602e63fb6335467b0c5ac94f", - "_parent": "602e63fb6335467b0c5ac94d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "602e63fb6335467b0c5ac950", - "_parent": "602e63fb6335467b0c5ac94d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "603372b4da11d6478d5a07ff", - "603372d154072b51b239f9e1", - "603372f153a60014f970616d", - "603373004e02ce1eaa358814" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "602e63fb6335467b0c5ac951", - "_parent": "602e63fb6335467b0c5ac94d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b2cfa535acfc432ff4db7a0", - "5d122e7bd7ad1a07102d6d7f", - "5d123102d7ad1a004e475fe5", - "5d4405f0a4b9361e6a4e6bd9", - "5c78f2492e221600114c9f04", - "5c78f2612e221600114c9f0d", - "6034e3e20ddce744014cb878", - "6034e3d953a60014f970617b", - "6034e3cb0ddce744014cb870", - "6087e0336d0bd7580617bb7a", - "595cfa8b86f77427437e845b", - "595cf16b86f77427440c32e2", - "63f4ba71f31d4a33b87bd046" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "602e63fb6335467b0c5ac952", - "_parent": "602e63fb6335467b0c5ac94d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347", - "55d5f46a4bdc2d1b198b4567", - "5ae30bad5acfc400185c2dc4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.954, - "CoolFactor": 1.052 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5d124c01d7ad1a115c7d59fb": { - "_id": "5d124c01d7ad1a115c7d59fb", - "_name": "tactical_urx_kac_panel_short_fde", - "_parent": "5a74651486f7744e73386dd1", - "_type": "Item", - "_props": { - "Name": "tactical_pso_belomo_eyecup", - "ShortName": "tactical_pso_belomo_eyecup", - "Description": "tactical_pso_belomo_eyecup", - "Weight": 0.005, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_urx_kac_panel_short_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ShiftsAimCamera": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, - "5fbcc3e4d6fa9c00c571bb58": { - "_id": "5fbcc3e4d6fa9c00c571bb58", - "_name": "reciever_mcx_sig_mcx_gen1", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_mpx_sig_mpx_gen1", - "ShortName": "reciever_mpx_sig_mpx_gen1", - "Description": "reciever_mpx_sig_mpx_gen1", - "Weight": 0.488, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_mcx_sig_mcx_gen1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5fbcc3e4d6fa9c00c571bb5a", - "_parent": "5fbcc3e4d6fa9c00c571bb58", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "5fbcc3e4d6fa9c00c571bb5b", - "_parent": "5fbcc3e4d6fa9c00c571bb58", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fbbfabed5cb881a7363194e", - "5fbbfacda56d053a3543f799" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "5fbcc3e4d6fa9c00c571bb5c", - "_parent": "5fbcc3e4d6fa9c00c571bb58", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fbc227aa56d053a3543f79e", - "5fbc226eca32ed67276c155d" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5fbcc3e4d6fa9c00c571bb5d", - "_parent": "5fbcc3e4d6fa9c00c571bb58", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5fd9c705dc911e7ec961c45a", - "_parent": "5fbcc3e4d6fa9c00c571bb58", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "619502ff6db0f2477964e68a", - "_parent": "5fbcc3e4d6fa9c00c571bb58", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649a2464bdc2d91118b45a8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 0.989, - "CoolFactor": 1.01 - }, - "_proto": "55d355e64bdc2d962f8b4569" - }, - "5ef32e4d1c1fd62aea6a150d": { - "_id": "5ef32e4d1c1fd62aea6a150d", - "_name": "trigger_m1911_caspian_trik_trigger", - "_parent": "5a74651486f7744e73386dd1", - "_type": "Item", - "_props": { - "Name": "trigger_m1911_caspian_trik_trigger", - "ShortName": "trigger_m1911_caspian_trik_trigger", - "Description": "trigger_m1911_caspian_trik_trigger", - "Weight": 0.015, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mechanics/trigger_m1911_caspian_trik_trigger.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ShiftsAimCamera": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, - "5b099bb25acfc400186331e8": { - "_id": "5b099bb25acfc400186331e8", - "_name": "reciever_sa58_ds_arms_extreme_duty_scope_mount_extended", - "_parent": "55818a304bdc2db5418b457d", - "_type": "Item", - "_props": { - "Name": "reciever_sa58_ds_arms_extreme_duty_scope_mount_extended", - "ShortName": "reciever_sa58_ds_arms_extreme_duty_scope_mount_extended", - "Description": "reciever_sa58_ds_arms_extreme_duty_scope_mount_extended", - "Weight": 0.215, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/recievers/reciever_sa58_ds_arms_extreme_duty_scope_mount_extended.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5b099bb25acfc400186331ea", - "_parent": "5b099bb25acfc400186331e8", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "5649af094bdc2df8348b4586" - }, - "588226dd24597767ad33f789": { - "_id": "588226dd24597767ad33f789", - "_name": "foregrip_all_magpul_afg_fde", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "Тактическая рукоятка Magpul AFG", - "ShortName": "AFG", - "Description": "Тактическая рукоятка Magpul AFG (Angled Fore Grip). Позволяет удерживать оружие в более естественном для руки стрелка положении и по центральной оси ствола. Благодаря этому, помогает смягчить отдачу и повышает управляемость оружия.", - "Weight": 0.082, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_magpul_afg_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032574bdc2d89578b458a" - }, - "588226ef24597767af46e39c": { - "_id": "588226ef24597767af46e39c", - "_name": "foregrip_all_magpul_afg_od", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "Тактическая рукоятка Magpul AFG", - "ShortName": "AFG", - "Description": "Тактическая рукоятка Magpul AFG (Angled Fore Grip). Позволяет удерживать оружие в более естественном для руки стрелка положении и по центральной оси ствола. Благодаря этому, помогает смягчить отдачу и повышает управляемость оружия.", - "Weight": 0.082, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_magpul_afg_od.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032574bdc2d89578b458a" - }, - "5c4eecde2e221602b3140418": { - "_id": "5c4eecde2e221602b3140418", - "_name": "tactical_sv98_izhmash_silencer_heat_shield_std", - "_parent": "5a74651486f7744e73386dd1", - "_type": "Item", - "_props": { - "Name": "tactical_pso_belomo_eyecup", - "ShortName": "tactical_pso_belomo_eyecup", - "Description": "tactical_pso_belomo_eyecup", - "Weight": 0.005, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_sv98_izhmash_silencer_heat_shield_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ShiftsAimCamera": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.98, - "CoolFactor": 1.06 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, - "5b3cbc235acfc4001863ac44": { - "_id": "5b3cbc235acfc4001863ac44", - "_name": "tactical_vulcan_armasight_eyecup", - "_parent": "5a74651486f7744e73386dd1", - "_type": "Item", - "_props": { - "Name": "tactical_vulcan_armasight_eyecup", - "ShortName": "tactical_vulcan_armasight_eyecup", - "Description": "tactical_vulcan_armasight_eyecup", - "Weight": 0.005, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_vulcan_armasight_eyecup.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ShiftsAimCamera": 0.02, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, - "6193d3cded0429009f543e6a": { - "_id": "6193d3cded0429009f543e6a", - "_name": "trigger_usp_hk_usp_std_trigger", - "_parent": "5a74651486f7744e73386dd1", - "_type": "Item", - "_props": { - "Name": "trigger_m1911_colt_m45a1_std", - "ShortName": "trigger_m1911_colt_m45a1_std", - "Description": "trigger_m1911_colt_m45a1_std", - "Weight": 0.013, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/mechanics/trigger_usp_hk_usp_std_trigger.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ShiftsAimCamera": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, "58c157be86f77403c74b2bb6": { "_id": "58c157be86f77403c74b2bb6", "_name": "foregrip_all_tango_down_stubby_bgv_mk46k_fde", @@ -157890,23 +157888,23 @@ }, "_proto": "558032614bdc2de7118b4585" }, - "5a7dbfc1159bd40016548fde": { - "_id": "5a7dbfc1159bd40016548fde", - "_name": "foregrip_all_hera_arms_cqr_grip", + "5c1cd46f2e22164bef5cfedb": { + "_id": "5c1cd46f2e22164bef5cfedb", + "_name": "foregrip_all_zenit_b25u_rk_1", "_parent": "55818af64bdc2d5b648b4570", "_type": "Item", "_props": { - "Name": "foregrip_all_hera_arms_cqr_grip", - "ShortName": "foregrip_all_hera_arms_cqr_grip", - "Description": "foregrip_all_hera_arms_cqr_grip\n", - "Weight": 0.167, + "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Weight": 0.18, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_hera_arms_cqr_grip.bundle", + "path": "assets/content/items/mods/foregrips/foregrip_all_zenit_b25u_rk_1.bundle", "rcid": "" }, "UsePrefab": { @@ -157936,38 +157934,7 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "59fb375986f7741b681b81a6", - "5a9d56c8a2750c0032157146", - "5c501a4d2e221602b412b540", - "5b0bbe4e5acfc40dc528a72d", - "5c488a752e221602b412af63", - "5ac66cb05acfc40198510a10", - "5ac66d015acfc400180ae6e4", - "5ac66d2e5acfc43b321d4b53", - "5ac66d725acfc43b321d4b60", - "5ac66d9b5acfc4001633997a", - "5bf3e03b0db834001d2c4a9c", - "5ac4cd105acfc40016339859", - "5644bd2b4bdc2d3b4c8b4572", - "59d6088586f774275f37482f", - "5a0ec13bfcdbcb00165aa685", - "59ff346386f77477562ff5e2", - "5abcbc27d8ce8700182eceeb", - "5bf3e0490db83400196199af", - "5ab8e9fcd8ce870019439434", - "57dc2fa62459775949412633", - "5839a40f24597726f856b511", - "583990e32459771419544dd2", - "59e6687d86f77411d949b251", - "59e6152586f77473dc057aa1", - "5beed0f50db834001c062b12", - "5c46fbd72e2216398b5a8c9c", - "576165642459773c7a400233", - "59984ab886f7743e98271174", - "59f9cabd86f7743a10721f46", - "5bfea6e90db834001b7347f3" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -157990,10 +157957,93 @@ "Recoil": -3, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 4, + "Ergonomics": 2, "Velocity": 0, "RaidModdable": true, - "ToolModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 2 + }, + "_proto": "558032614bdc2de7118b4585" + }, + "5c1bc7432e221602b412949d": { + "_id": "5c1bc7432e221602b412949d", + "_name": "foregrip_all_zenit_rk_5", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Weight": 0.127, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_zenit_rk_5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -158087,23 +158137,521 @@ }, "_proto": "558032614bdc2de7118b4585" }, - "5c1bc7432e221602b412949d": { - "_id": "5c1bc7432e221602b412949d", - "_name": "foregrip_all_zenit_rk_5", + "5b057b4f5acfc4771e1bd3e9": { + "_id": "5b057b4f5acfc4771e1bd3e9", + "_name": "foregrip_all_stark_se_5_express_grip", "_parent": "55818af64bdc2d5b648b4570", "_type": "Item", "_props": { - "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Weight": 0.127, + "Name": "foregrip_all_stark_se_5_express_grip", + "ShortName": "foregrip_all_stark_se_5_express_grip", + "Description": "foregrip_all_stark_se_5_express_grip", + "Weight": 0.09, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_zenit_rk_5.bundle", + "path": "assets/content/items/mods/foregrips/foregrip_all_stark_se_5_express_grip.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 8, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032574bdc2d89578b458a" + }, + "5fce0cf655375d18a253eff0": { + "_id": "5fce0cf655375d18a253eff0", + "_name": "foregrip_all_magpul_rvg_fde", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_magpul_rvg_blk", + "ShortName": "foregrip_all_magpul_rvg_blk", + "Description": "foregrip_all_magpul_rvg_blk", + "Weight": 0.082, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_magpul_rvg_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032574bdc2d89578b458a" + }, + "651a8bf3a8520e48047bf708": { + "_id": "651a8bf3a8520e48047bf708", + "_name": "foregrip_m-lok_dd_enhanced_vertical_foregrip", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_magpul_rvg_blk", + "ShortName": "foregrip_all_magpul_rvg_blk", + "Description": "foregrip_all_magpul_rvg_blk", + "Weight": 0.028, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_m-lok_dd_enhanced_vertical_foregrip.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1.5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032574bdc2d89578b458a" + }, + "58c157c886f774032749fb06": { + "_id": "58c157c886f774032749fb06", + "_name": "foregrip_all_tango_down_stubby_bgv_mk46k_fg", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Weight": 0.072, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_tango_down_stubby_bgv_mk46k_fg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032614bdc2de7118b4585" + }, + "5c791e872e2216001219c40a": { + "_id": "5c791e872e2216001219c40a", + "_name": "foregrip_all_strike_industries_cobra_tactical", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_strike_industries_cobra_tactical", + "ShortName": "foregrip_all_strike_industries_cobra_tactical", + "Description": "foregrip_all_strike_industries_cobra_tactical", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_strike_industries_cobra_tactical.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032614bdc2de7118b4585" + }, + "59fc48e086f77463b1118392": { + "_id": "59fc48e086f77463b1118392", + "_name": "foregrip_all_magpul_rvg_blk", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_magpul_rvg_blk", + "ShortName": "foregrip_all_magpul_rvg_blk", + "Description": "foregrip_all_magpul_rvg_blk", + "Weight": 0.082, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_magpul_rvg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032574bdc2d89578b458a" + }, + "591af28e86f77414a27a9e1d": { + "_id": "591af28e86f77414a27a9e1d", + "_name": "foregrip_all_vtac_uvg", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_vtac_uvg", + "ShortName": "foregrip_all_vtac_uvg", + "Description": "foregrip_all_vtac_uvg", + "Weight": 0.107, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_vtac_uvg.bundle", "rcid": "" }, "UsePrefab": { @@ -158159,6 +158707,172 @@ "Ergonomics": 5, "Velocity": 0, "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032614bdc2de7118b4585" + }, + "588226ef24597767af46e39c": { + "_id": "588226ef24597767af46e39c", + "_name": "foregrip_all_magpul_afg_od", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "Тактическая рукоятка Magpul AFG", + "ShortName": "AFG", + "Description": "Тактическая рукоятка Magpul AFG (Angled Fore Grip). Позволяет удерживать оружие в более естественном для руки стрелка положении и по центральной оси ствола. Благодаря этому, помогает смягчить отдачу и повышает управляемость оружия.", + "Weight": 0.082, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_magpul_afg_od.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032574bdc2d89578b458a" + }, + "5c1bc5af2e221602b412949b": { + "_id": "5c1bc5af2e221602b412949b", + "_name": "foregrip_all_zenit_rk_2", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_zenit_rk_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -8, + "Velocity": 0, + "RaidModdable": true, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -158255,271 +158969,23 @@ }, "_proto": "558032614bdc2de7118b4585" }, - "558032614bdc2de7118b4585": { - "_id": "558032614bdc2de7118b4585", - "_name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "655df24fdf80b12750626d0a": { + "_id": "655df24fdf80b12750626d0a", + "_name": "foregrip_all_stark_se_5_express_grip_fde", "_parent": "55818af64bdc2d5b648b4570", "_type": "Item", "_props": { - "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Weight": 0.072, + "Name": "foregrip_all_stark_se_5_express_grip", + "ShortName": "foregrip_all_stark_se_5_express_grip", + "Description": "foregrip_all_stark_se_5_express_grip", + "Weight": 0.09, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_tango_down_stubby_bgv_mk46k_blk.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - } - }, - "58c157c886f774032749fb06": { - "_id": "58c157c886f774032749fb06", - "_name": "foregrip_all_tango_down_stubby_bgv_mk46k_fg", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Weight": 0.072, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_tango_down_stubby_bgv_mk46k_fg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032614bdc2de7118b4585" - }, - "651a8bf3a8520e48047bf708": { - "_id": "651a8bf3a8520e48047bf708", - "_name": "foregrip_m-lok_dd_enhanced_vertical_foregrip", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_magpul_rvg_blk", - "ShortName": "foregrip_all_magpul_rvg_blk", - "Description": "foregrip_all_magpul_rvg_blk", - "Weight": 0.028, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_m-lok_dd_enhanced_vertical_foregrip.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1.5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032574bdc2d89578b458a" - }, - "5fce0cf655375d18a253eff0": { - "_id": "5fce0cf655375d18a253eff0", - "_name": "foregrip_all_magpul_rvg_fde", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_magpul_rvg_blk", - "ShortName": "foregrip_all_magpul_rvg_blk", - "Description": "foregrip_all_magpul_rvg_blk", - "Weight": 0.082, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_magpul_rvg_fde.bundle", + "path": "assets/content/items/mods/foregrips/foregrip_all_stark_se_5_express_grip_fde.bundle", "rcid": "" }, "UsePrefab": { @@ -158572,7 +159038,7 @@ "Recoil": -2, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 7, + "Ergonomics": 8, "Velocity": 0, "RaidModdable": true, "ToolModdable": true, @@ -158586,23 +159052,106 @@ }, "_proto": "558032574bdc2d89578b458a" }, - "5c471c842e221615214259b5": { - "_id": "5c471c842e221615214259b5", - "_name": "gas_block_svd_izhmash_svd_s_std", + "655dccfdbdcc6b5df71382b6": { + "_id": "655dccfdbdcc6b5df71382b6", + "_name": "foregrip_all_strike_industries_cobra_tactical_fde", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_strike_industries_cobra_tactical", + "ShortName": "foregrip_all_strike_industries_cobra_tactical", + "Description": "foregrip_all_strike_industries_cobra_tactical", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_strike_industries_cobra_tactical_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 9, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032614bdc2de7118b4585" + }, + "622b327b267a1b13a44abea3": { + "_id": "622b327b267a1b13a44abea3", + "_name": "gas_block_g36_hk_std", "_parent": "56ea9461d2720b67698b456f", "_type": "Item", "_props": { - "Name": "gas_block_ak_izhmash_ak74_std", - "ShortName": "gas_block_ak_izhmash_ak74_std", - "Description": "gas_block_ak_izhmash_ak74_std", - "Weight": 0.12, + "Name": "gas_block_mcx_sig_mcx_std", + "ShortName": "gas_block_mcx_sig_mcx_std", + "Description": "gas_block_mcx_sig_mcx_std", + "Weight": 0.06, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_svd_izhmash_svd_s_std.bundle", + "path": "assets/content/items/mods/gasblock/gas_block_g36_hk_std.bundle", "rcid": "" }, "UsePrefab": { @@ -158652,13 +159201,13 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -2, + "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, + "Ergonomics": -1, "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, + "RaidModdable": false, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -158672,23 +159221,23 @@ }, "_proto": "56ea8d2fd2720b7c698b4570" }, - "5d00ec68d7ad1a04a067e5be": { - "_id": "5d00ec68d7ad1a04a067e5be", - "_name": "gas_block_ar15_jp_jpgs5b", + "652910bc24cbe3c74a05e5b9": { + "_id": "652910bc24cbe3c74a05e5b9", + "_name": "gas_block_mcx_sig_adjustable_gas_piston", "_parent": "56ea9461d2720b67698b456f", "_type": "Item", "_props": { - "Name": "gas_block_ar15_jp_jpgs5b", - "ShortName": "gas_block_ar15_jp_jpgs5b", - "Description": "gas_block_ar15_jp_jpgs5b", - "Weight": 0.064, + "Name": "gas_block_mcx_sig_mcx_std", + "ShortName": "gas_block_mcx_sig_mcx_std", + "Description": "gas_block_mcx_sig_mcx_std", + "Weight": 0.049, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_ar15_jp_jpgs5b.bundle", + "path": "assets/content/items/mods/gasblock/gas_block_mcx_sig_adjustable_gas_piston.bundle", "rcid": "" }, "UsePrefab": { @@ -158753,960 +159302,11 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "DurabilityBurnModificator": 1, - "HeatFactor": 0.99, - "CoolFactor": 1.008 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, - "59ccd11386f77428f24a488f": { - "_id": "59ccd11386f77428f24a488f", - "_name": "gas_block_ak_izhmash_pp-19-01_std", - "_parent": "56ea9461d2720b67698b456f", - "_type": "Item", - "_props": { - "Name": "gas_block_ak_izhmash_ak74_std", - "ShortName": "gas_block_ak_izhmash_ak74_std", - "Description": "gas_block_ak_izhmash_ak74_std", - "Weight": 0.11, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_ak_izhmash_pp-19-01_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_handguard", - "_id": "59ccd11386f77428f24a4890", - "_parent": "59ccd11386f77428f24a488f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5648ae314bdc2d3d1c8b457f", - "5d2c829448f0353a5c7d6674", - "5cbda392ae92155f3c17c39f", - "5cbda9f4ae9215000e5b9bfc", - "5648b0744bdc2d363b8b4578", - "5648b1504bdc2d9d488b4584", - "59d64f2f86f77417193ef8b3", - "57cff947245977638e6f2a19", - "57cffd8224597763b03fc609", - "57cffddc24597763133760c6", - "57cffe0024597763b03fc60b", - "57cffe20245977632f391a9d", - "5c9a07572e221644f31c4b32", - "5c9a1c3a2e2216000e69fb6a", - "5c9a1c422e221600106f69f0", - "59e6284f86f77440d569536f", - "59e898ee86f77427614bd225", - "5a9d56c8a2750c0032157146", - "5d1b198cd7ad1a604869ad72", - "5d4aaa73a4b9365392071175", - "5d4aaa54a4b9365392071170", - "5c617a5f2e2216000f1e81b3", - "5648b4534bdc2d3d1c8b4580", - "647dba3142c479dde701b654", - "651bfe4d1065f87f082e7209" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.985, - "CoolFactor": 1.013 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, - "591af28e86f77414a27a9e1d": { - "_id": "591af28e86f77414a27a9e1d", - "_name": "foregrip_all_vtac_uvg", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_vtac_uvg", - "ShortName": "foregrip_all_vtac_uvg", - "Description": "foregrip_all_vtac_uvg", - "Weight": 0.107, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_vtac_uvg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032614bdc2de7118b4585" - }, - "59ccfdba86f7747f2109a587": { - "_id": "59ccfdba86f7747f2109a587", - "_name": "gas_block_ak_ultimak_m1b", - "_parent": "56ea9461d2720b67698b456f", - "_type": "Item", - "_props": { - "Name": "gas_block_ak_izhmash_ak74_std", - "ShortName": "gas_block_ak_izhmash_ak74_std", - "Description": "gas_block_ak_izhmash_ak74_std", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_ak_ultimak_m1b.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "59ccfee786f7747f4375a4d8", - "_parent": "59ccfdba86f7747f2109a587", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5649a2464bdc2d91118b45a8", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "59ccfef686f7747ef96eef6c", - "_parent": "59ccfdba86f7747f2109a587", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 0.96, - "HeatFactor": 1.03, - "CoolFactor": 0.984 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, - "64806bdd26c80811d408d37a": { - "_id": "64806bdd26c80811d408d37a", - "_name": "foregrip_all_rtm_osovets_p2", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Weight": 0.127, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_rtm_osovets_p2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "62e7e7bbe6da9612f743f1e0" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032614bdc2de7118b4585" - }, - "5c1cd46f2e22164bef5cfedb": { - "_id": "5c1cd46f2e22164bef5cfedb", - "_name": "foregrip_all_zenit_b25u_rk_1", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Weight": 0.18, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_zenit_b25u_rk_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 2 - }, - "_proto": "558032614bdc2de7118b4585" - }, - "59d36a0086f7747e673f3946": { - "_id": "59d36a0086f7747e673f3946", - "_name": "gas_block_aksu_izhmash_aksu_std", - "_parent": "56ea9461d2720b67698b456f", - "_type": "Item", - "_props": { - "Name": "gas_block_ak_izhmash_ak74_std", - "ShortName": "gas_block_ak_izhmash_ak74_std", - "Description": "gas_block_ak_izhmash_ak74_std", - "Weight": 0.03, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_aksu_izhmash_aksu_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_handguard", - "_id": "59d36a0086f7747e673f3947", - "_parent": "59d36a0086f7747e673f3946", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d15ce51d7ad1a1eff619092", - "5a957c3fa2750c00137fa5f7", - "57dc32dc245977596d4ef3d3", - "57ffa9f4245977728561e844", - "647db1eca8d3399c380d195c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, "HeatFactor": 0.995, "CoolFactor": 1.004 }, "_proto": "56ea8d2fd2720b7c698b4570" }, - "59d64ec286f774171d1e0a42": { - "_id": "59d64ec286f774171d1e0a42", - "_name": "gas_block_ak_izhmash_akm_std", - "_parent": "56ea9461d2720b67698b456f", - "_type": "Item", - "_props": { - "Name": "gas_block_ak_izhmash_akm_std", - "ShortName": "gas_block_ak_izhmash_akm_std", - "Description": "gas_block_ak_izhmash_akm_std", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_ak_izhmash_akm_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_handguard", - "_id": "59d64ec286f774171d1e0a43", - "_parent": "59d64ec286f774171d1e0a42", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cf4e3f3d7f00c06595bc7f0", - "5648ae314bdc2d3d1c8b457f", - "5d2c829448f0353a5c7d6674", - "5b800e9286f7747a8b04f3ff", - "5b80242286f77429445e0b47", - "5cbda392ae92155f3c17c39f", - "5cbda9f4ae9215000e5b9bfc", - "5648b0744bdc2d363b8b4578", - "5648b1504bdc2d9d488b4584", - "59d64f2f86f77417193ef8b3", - "57cff947245977638e6f2a19", - "57cffd8224597763b03fc609", - "57cffddc24597763133760c6", - "57cffe0024597763b03fc60b", - "57cffe20245977632f391a9d", - "5c9a07572e221644f31c4b32", - "5c9a1c3a2e2216000e69fb6a", - "5c9a1c422e221600106f69f0", - "59e6284f86f77440d569536f", - "59e898ee86f77427614bd225", - "5a9d56c8a2750c0032157146", - "5d1b198cd7ad1a604869ad72", - "5d4aaa73a4b9365392071175", - "5d4aaa54a4b9365392071170", - "5f6331e097199b7db2128dc2", - "5c17664f2e2216398b5a7e3c", - "5c617a5f2e2216000f1e81b3", - "5648b4534bdc2d3d1c8b4580", - "5efaf417aeb21837e749c7f2", - "6389f1dfc879ce63f72fc43e", - "647dba3142c479dde701b654", - "647dd2b8a12ebf96c3031655" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.995, - "CoolFactor": 1.004 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, - "63d3ce281fe77d0f2801859e": { - "_id": "63d3ce281fe77d0f2801859e", - "_name": "gas_block_ar15_ba_lo_pro", - "_parent": "56ea9461d2720b67698b456f", - "_type": "Item", - "_props": { - "Name": "gas_block_ar15_dd_mk12_low_profile", - "ShortName": "gas_block_ar15_dd_mk12_low_profile", - "Description": "gas_block_ar15_dd_mk12_low_profile", - "Weight": 0.053, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_ar15_ba_lo_pro.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.98, - "CoolFactor": 1.01 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, - "560e620e4bdc2d724b8b456b": { - "_id": "560e620e4bdc2d724b8b456b", - "_name": "muzzle_sv-98_izhmash_std_762x54r", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_sv-98_izhmash_std_762x54r", - "ShortName": "muzzle_sv-98_izhmash_std_762x54r", - "Description": "muzzle_sv-98_izhmash_std_762x54r", - "Weight": 0.105, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_sv-98_izhmash_std_762x54r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, "628a83c29179c324ed269508": { "_id": "628a83c29179c324ed269508", "_name": "gas_block_akp_slr_ak_railed_gas_tube", @@ -160120,23 +159720,215 @@ }, "_proto": "56ea8d2fd2720b7c698b4570" }, - "5c1bc5af2e221602b412949b": { - "_id": "5c1bc5af2e221602b412949b", - "_name": "foregrip_all_zenit_rk_2", - "_parent": "55818af64bdc2d5b648b4570", + "5c0fafb6d174af02a96260ba": { + "_id": "5c0fafb6d174af02a96260ba", + "_name": "muzzle_ar15_adar_2_15_std_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Weight": 0.2, + "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", + "ShortName": "5.56x45 AR-15 USGI A2", + "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", + "Weight": 0.064, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_zenit_rk_2.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ar15_colt_usgi_a2_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "63861355f03e7c67551f1149", + "_parent": "5c0fafb6d174af02a96260ba", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "638612b607dfed1ccb7206ba" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5dfa3d45dfc58d14537c20b0": { + "_id": "5dfa3d45dfc58d14537c20b0", + "_name": "gas_block_ar10_kac_low_profile", + "_parent": "56ea9461d2720b67698b456f", + "_type": "Item", + "_props": { + "Name": "gas_block_ar10_kac_low_profile", + "ShortName": "gas_block_ar10_kac_low_profile", + "Description": "gas_block_ar10_kac_low_profile", + "Weight": 0.049, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/gasblock/gas_block_ar10_kac_low_profile.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.995, + "CoolFactor": 1.004 + }, + "_proto": "56ea8d2fd2720b7c698b4570" + }, + "558032614bdc2de7118b4585": { + "_id": "558032614bdc2de7118b4585", + "_name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Weight": 0.072, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_tango_down_stubby_bgv_mk46k_blk.bundle", "rcid": "" }, "UsePrefab": { @@ -160186,13 +159978,13 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -4, + "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -8, + "Ergonomics": 5, "Velocity": 0, "RaidModdable": true, - "ToolModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -160200,8 +159992,7 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0 - }, - "_proto": "558032614bdc2de7118b4585" + } }, "648067db042be0705c0b3009": { "_id": "648067db042be0705c0b3009", @@ -160371,89 +160162,6 @@ }, "_proto": "558032574bdc2d89578b458a" }, - "5c791e872e2216001219c40a": { - "_id": "5c791e872e2216001219c40a", - "_name": "foregrip_all_strike_industries_cobra_tactical", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_strike_industries_cobra_tactical", - "ShortName": "foregrip_all_strike_industries_cobra_tactical", - "Description": "foregrip_all_strike_industries_cobra_tactical", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_strike_industries_cobra_tactical.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 9, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032614bdc2de7118b4585" - }, "56ea8d2fd2720b7c698b4570": { "_id": "56ea8d2fd2720b7c698b4570", "_name": "gas_block_ar15_windham_weaponry_rail_gas_block", @@ -160681,122 +160389,6 @@ }, "_proto": "56ea8d2fd2720b7c698b4570" }, - "5a34fbadc4a28200741e230a": { - "_id": "5a34fbadc4a28200741e230a", - "_name": "gas_block_ar10_jp_jpgs6", - "_parent": "56ea9461d2720b67698b456f", - "_type": "Item", - "_props": { - "Name": "gas_block_ar15_windham_weaponry_rail_gas_block", - "ShortName": "gas_block_ar15_windham_weaponry_rail_gas_block", - "Description": "gas_block_ar15_windham_weaponry_rail_gas_block", - "Weight": 0.218, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_ar10_jp_jpgs6.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5b2cfa535acfc432ff4db7a0", - "595cfa8b86f77427437e845b", - "595cf16b86f77427440c32e2" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_front", - "_id": "5c1775d42e221602b17788d4", - "_parent": "5a34fbadc4a28200741e230a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.99, - "CoolFactor": 1.008 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, "5d4aab30a4b9365435358c55": { "_id": "5d4aab30a4b9365435358c55", "_name": "gas_block_ak_vs_vs_33c_wht", @@ -161013,23 +160605,139 @@ }, "_proto": "56ea8d2fd2720b7c698b4570" }, - "622b327b267a1b13a44abea3": { - "_id": "622b327b267a1b13a44abea3", - "_name": "gas_block_g36_hk_std", + "5a34fbadc4a28200741e230a": { + "_id": "5a34fbadc4a28200741e230a", + "_name": "gas_block_ar10_jp_jpgs6", "_parent": "56ea9461d2720b67698b456f", "_type": "Item", "_props": { - "Name": "gas_block_mcx_sig_mcx_std", - "ShortName": "gas_block_mcx_sig_mcx_std", - "Description": "gas_block_mcx_sig_mcx_std", - "Weight": 0.06, + "Name": "gas_block_ar15_windham_weaponry_rail_gas_block", + "ShortName": "gas_block_ar15_windham_weaponry_rail_gas_block", + "Description": "gas_block_ar15_windham_weaponry_rail_gas_block", + "Weight": 0.218, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_g36_hk_std.bundle", + "path": "assets/content/items/mods/gasblock/gas_block_ar10_jp_jpgs6.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5b2cfa535acfc432ff4db7a0", + "595cfa8b86f77427437e845b", + "595cf16b86f77427440c32e2" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_front", + "_id": "5c1775d42e221602b17788d4", + "_parent": "5a34fbadc4a28200741e230a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.99, + "CoolFactor": 1.008 + }, + "_proto": "56ea8d2fd2720b7c698b4570" + }, + "59ccfdba86f7747f2109a587": { + "_id": "59ccfdba86f7747f2109a587", + "_name": "gas_block_ak_ultimak_m1b", + "_parent": "56ea9461d2720b67698b456f", + "_type": "Item", + "_props": { + "Name": "gas_block_ak_izhmash_ak74_std", + "ShortName": "gas_block_ak_izhmash_ak74_std", + "Description": "gas_block_ak_izhmash_ak74_std", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/gasblock/gas_block_ak_ultimak_m1b.bundle", "rcid": "" }, "UsePrefab": { @@ -161074,514 +160782,72 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.995, - "CoolFactor": 1.004 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, - "652910bc24cbe3c74a05e5b9": { - "_id": "652910bc24cbe3c74a05e5b9", - "_name": "gas_block_mcx_sig_adjustable_gas_piston", - "_parent": "56ea9461d2720b67698b456f", - "_type": "Item", - "_props": { - "Name": "gas_block_mcx_sig_mcx_std", - "ShortName": "gas_block_mcx_sig_mcx_std", - "Description": "gas_block_mcx_sig_mcx_std", - "Weight": 0.049, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_mcx_sig_adjustable_gas_piston.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.995, - "CoolFactor": 1.004 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, - "5dfa3d45dfc58d14537c20b0": { - "_id": "5dfa3d45dfc58d14537c20b0", - "_name": "gas_block_ar10_kac_low_profile", - "_parent": "56ea9461d2720b67698b456f", - "_type": "Item", - "_props": { - "Name": "gas_block_ar10_kac_low_profile", - "ShortName": "gas_block_ar10_kac_low_profile", - "Description": "gas_block_ar10_kac_low_profile", - "Weight": 0.049, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_ar10_kac_low_profile.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.995, - "CoolFactor": 1.004 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, - "5b057b4f5acfc4771e1bd3e9": { - "_id": "5b057b4f5acfc4771e1bd3e9", - "_name": "foregrip_all_stark_se_5_express_grip", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_stark_se_5_express_grip", - "ShortName": "foregrip_all_stark_se_5_express_grip", - "Description": "foregrip_all_stark_se_5_express_grip", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_stark_se_5_express_grip.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032574bdc2d89578b458a" - }, - "655df24fdf80b12750626d0a": { - "_id": "655df24fdf80b12750626d0a", - "_name": "foregrip_all_stark_se_5_express_grip_fde", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_stark_se_5_express_grip", - "ShortName": "foregrip_all_stark_se_5_express_grip", - "Description": "foregrip_all_stark_se_5_express_grip", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_stark_se_5_express_grip_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032574bdc2d89578b458a" - }, - "59f8a37386f7747af3328f06": { - "_id": "59f8a37386f7747af3328f06", - "_name": "foregrip_all_fortis_shift", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_fortis_shift", - "ShortName": "foregrip_all_fortis_shift", - "Description": "foregrip_all_fortis_shift", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_fortis_shift.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1.5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 8, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032614bdc2de7118b4585" - }, - "655dccfdbdcc6b5df71382b6": { - "_id": "655dccfdbdcc6b5df71382b6", - "_name": "foregrip_all_strike_industries_cobra_tactical_fde", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_strike_industries_cobra_tactical", - "ShortName": "foregrip_all_strike_industries_cobra_tactical", - "Description": "foregrip_all_strike_industries_cobra_tactical", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_strike_industries_cobra_tactical_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "59ccfee786f7747f4375a4d8", + "_parent": "59ccfdba86f7747f2109a587", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5649a2464bdc2d91118b45a8", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "64785e7c19d732620e045e15", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "59ccfef686f7747ef96eef6c", + "_parent": "59ccfdba86f7747f2109a587", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, @@ -161589,7 +160855,7 @@ "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 9, + "Ergonomics": 6, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -161599,92 +160865,12 @@ "HasShoulderContact": false, "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 0.96, + "HeatFactor": 1.03, + "CoolFactor": 0.984 }, - "_proto": "558032614bdc2de7118b4585" - }, - "5c1bc4812e22164bef5cfde7": { - "_id": "5c1bc4812e22164bef5cfde7", - "_name": "foregrip_all_zenit_rk_0", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", - "Weight": 0.138, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_zenit_rk_0.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032614bdc2de7118b4585" + "_proto": "56ea8d2fd2720b7c698b4570" }, "5ae30e795acfc408fb139a0b": { "_id": "5ae30e795acfc408fb139a0b", @@ -161778,15 +160964,795 @@ }, "_proto": "56ea8d2fd2720b7c698b4570" }, - "5ba26acdd4351e003562908e": { - "_id": "5ba26acdd4351e003562908e", - "_name": "muzzle_mp7_hk_a1_std_46x30", + "64806bdd26c80811d408d37a": { + "_id": "64806bdd26c80811d408d37a", + "_name": "foregrip_all_rtm_osovets_p2", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Weight": 0.127, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_rtm_osovets_p2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "62e7e7bbe6da9612f743f1e0" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032614bdc2de7118b4585" + }, + "59d64ec286f774171d1e0a42": { + "_id": "59d64ec286f774171d1e0a42", + "_name": "gas_block_ak_izhmash_akm_std", + "_parent": "56ea9461d2720b67698b456f", + "_type": "Item", + "_props": { + "Name": "gas_block_ak_izhmash_akm_std", + "ShortName": "gas_block_ak_izhmash_akm_std", + "Description": "gas_block_ak_izhmash_akm_std", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/gasblock/gas_block_ak_izhmash_akm_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_handguard", + "_id": "59d64ec286f774171d1e0a43", + "_parent": "59d64ec286f774171d1e0a42", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cf4e3f3d7f00c06595bc7f0", + "5648ae314bdc2d3d1c8b457f", + "5d2c829448f0353a5c7d6674", + "5b800e9286f7747a8b04f3ff", + "5b80242286f77429445e0b47", + "5cbda392ae92155f3c17c39f", + "5cbda9f4ae9215000e5b9bfc", + "5648b0744bdc2d363b8b4578", + "5648b1504bdc2d9d488b4584", + "59d64f2f86f77417193ef8b3", + "57cff947245977638e6f2a19", + "57cffd8224597763b03fc609", + "57cffddc24597763133760c6", + "57cffe0024597763b03fc60b", + "57cffe20245977632f391a9d", + "5c9a07572e221644f31c4b32", + "5c9a1c3a2e2216000e69fb6a", + "5c9a1c422e221600106f69f0", + "59e6284f86f77440d569536f", + "59e898ee86f77427614bd225", + "5a9d56c8a2750c0032157146", + "5d1b198cd7ad1a604869ad72", + "5d4aaa73a4b9365392071175", + "5d4aaa54a4b9365392071170", + "5f6331e097199b7db2128dc2", + "5c17664f2e2216398b5a7e3c", + "5c617a5f2e2216000f1e81b3", + "5648b4534bdc2d3d1c8b4580", + "5efaf417aeb21837e749c7f2", + "6389f1dfc879ce63f72fc43e", + "647dba3142c479dde701b654", + "647dd2b8a12ebf96c3031655" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.995, + "CoolFactor": 1.004 + }, + "_proto": "56ea8d2fd2720b7c698b4570" + }, + "5cf4fb76d7f00c065703d3ac": { + "_id": "5cf4fb76d7f00c065703d3ac", + "_name": "foregrip_all_rtm_pillau", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_rtm_pillau", + "ShortName": "foregrip_all_rtm_pillau", + "Description": "foregrip_all_rtm_pillau", + "Weight": 0.065, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_rtm_pillau.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032614bdc2de7118b4585" + }, + "6065dc8a132d4d12c81fd8e3": { + "_id": "6065dc8a132d4d12c81fd8e3", + "_name": "gas_block_ar10_cmmg_low_profile", + "_parent": "56ea9461d2720b67698b456f", + "_type": "Item", + "_props": { + "Name": "gas_block_ar10_kac_low_profile", + "ShortName": "gas_block_ar10_kac_low_profile", + "Description": "gas_block_ar10_kac_low_profile", + "Weight": 0.095, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/gasblock/gas_block_ar10_cmmg_low_profile.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.995, + "CoolFactor": 1.004 + }, + "_proto": "56ea8d2fd2720b7c698b4570" + }, + "6281212a09427b40ab14e770": { + "_id": "6281212a09427b40ab14e770", + "_name": "foregrip_ax_accuracy_international_ax_base_pad_pb", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_kac_vertical_grip", + "ShortName": "foregrip_all_kac_vertical_grip", + "Description": "foregrip_all_kac_vertical_grip", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_ax_accuracy_international_ax_base_pad_pb.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032614bdc2de7118b4585" + }, + "5a01ad4786f77450561fda02": { + "_id": "5a01ad4786f77450561fda02", + "_name": "gas_block_ak_custom_ak_cut", + "_parent": "56ea9461d2720b67698b456f", + "_type": "Item", + "_props": { + "Name": "gas_block_ak_custom_ak_cut", + "ShortName": "gas_block_ak_custom_ak_cut", + "Description": "gas_block_ak_custom_ak_cut", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/gasblock/gas_block_ak_custom_ak_cut.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_handguard", + "_id": "5a01ad4786f77450561fda03", + "_parent": "5a01ad4786f77450561fda02", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59fb375986f7741b681b81a6", + "5a9d56c8a2750c0032157146", + "5f6331e097199b7db2128dc2", + "5c17664f2e2216398b5a7e3c", + "5648b4534bdc2d3d1c8b4580", + "5efaf417aeb21837e749c7f2", + "647dba3142c479dde701b654", + "647dd2b8a12ebf96c3031655" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.995, + "CoolFactor": 1.004 + }, + "_proto": "56ea8d2fd2720b7c698b4570" + }, + "63d3ce281fe77d0f2801859e": { + "_id": "63d3ce281fe77d0f2801859e", + "_name": "gas_block_ar15_ba_lo_pro", + "_parent": "56ea9461d2720b67698b456f", + "_type": "Item", + "_props": { + "Name": "gas_block_ar15_dd_mk12_low_profile", + "ShortName": "gas_block_ar15_dd_mk12_low_profile", + "Description": "gas_block_ar15_dd_mk12_low_profile", + "Weight": 0.053, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/gasblock/gas_block_ar15_ba_lo_pro.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.98, + "CoolFactor": 1.01 + }, + "_proto": "56ea8d2fd2720b7c698b4570" + }, + "59d36a0086f7747e673f3946": { + "_id": "59d36a0086f7747e673f3946", + "_name": "gas_block_aksu_izhmash_aksu_std", + "_parent": "56ea9461d2720b67698b456f", + "_type": "Item", + "_props": { + "Name": "gas_block_ak_izhmash_ak74_std", + "ShortName": "gas_block_ak_izhmash_ak74_std", + "Description": "gas_block_ak_izhmash_ak74_std", + "Weight": 0.03, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/gasblock/gas_block_aksu_izhmash_aksu_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_handguard", + "_id": "59d36a0086f7747e673f3947", + "_parent": "59d36a0086f7747e673f3946", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d15ce51d7ad1a1eff619092", + "5a957c3fa2750c00137fa5f7", + "57dc32dc245977596d4ef3d3", + "57ffa9f4245977728561e844", + "647db1eca8d3399c380d195c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.995, + "CoolFactor": 1.004 + }, + "_proto": "56ea8d2fd2720b7c698b4570" + }, + "5c471bfc2e221602b21d4e17": { + "_id": "5c471bfc2e221602b21d4e17", + "_name": "muzzle_svd_izhmash_svd_s_std_762x54", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_mp7_hk_a1_std_46x30", - "ShortName": "muzzle_mp7_hk_a1_std_46x30", - "Description": "muzzle_mp7_hk_a1_std_46x30", + "Name": "muzzle_ak74_izhmash_ak74m_std_545x39", + "ShortName": "muzzle_ak74_izhmash_ak74m_std_545x39", + "Description": "muzzle_ak74_izhmash_ak74m_std_545x39", "Weight": 0.08, "BackgroundColor": "blue", "Width": 1, @@ -161794,7 +161760,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_mp7_hk_a1_std_46x30.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_svd_izhmash_svd_s_std_762x54.bundle", "rcid": "" }, "UsePrefab": { @@ -161841,15 +161807,33 @@ "Grids": [], "Slots": [ { - "_name": "mod_muzzle", - "_id": "5ba26eaad4351e0034777fb6", - "_parent": "5ba26acdd4351e003562908e", + "_name": "mod_sight_front", + "_id": "5c471e2b2e221602b21d4f13", + "_parent": "5c471bfc2e221602b21d4e17", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5ba26ae8d4351e00367f9bdb" + "5c471ba12e221602b3137d76" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5e020339d4353e3302576b6a", + "_parent": "5c471bfc2e221602b21d4e17", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5e01e9e273d8eb11426f5bc3" ] } ] @@ -161862,8 +161846,8 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 3, - "Recoil": -4, + "Accuracy": 0, + "Recoil": -5, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -1, @@ -161884,6 +161868,668 @@ }, "_proto": "544a38634bdc2d58388b4568" }, + "56eabcd4d2720b66698b4574": { + "_id": "56eabcd4d2720b66698b4574", + "_name": "gas_block_ar15_dd_mk12_low_profile", + "_parent": "56ea9461d2720b67698b456f", + "_type": "Item", + "_props": { + "Name": "gas_block_ar15_dd_mk12_low_profile", + "ShortName": "gas_block_ar15_dd_mk12_low_profile", + "Description": "gas_block_ar15_dd_mk12_low_profile", + "Weight": 0.053, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/gasblock/gas_block_ar15_dd_mk12_low_profile.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.995, + "CoolFactor": 1.004 + }, + "_proto": "56ea8d2fd2720b7c698b4570" + }, + "628b8d83717774443b15e248": { + "_id": "628b8d83717774443b15e248", + "_name": "gas_block_ak_sag_mk_21", + "_parent": "56ea9461d2720b67698b456f", + "_type": "Item", + "_props": { + "Name": "gas_block_ak_izhmash_ak74_std", + "ShortName": "gas_block_ak_izhmash_ak74_std", + "Description": "gas_block_ak_izhmash_ak74_std", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/gasblock/gas_block_ak_sag_mk_21.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_handguard", + "_id": "628b8d83717774443b15e249", + "_parent": "628b8d83717774443b15e248", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "628b916469015a4e1711ed8d" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.95, + "CoolFactor": 1.05 + }, + "_proto": "56ea8d2fd2720b7c698b4570" + }, + "5a0d716f1526d8000d26b1e2": { + "_id": "5a0d716f1526d8000d26b1e2", + "_name": "muzzle_ak_izhmash_akml_762x39", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ak_izhmash_akm_std_762x39", + "ShortName": "muzzle_ak_izhmash_akml_762x39", + "Description": "muzzle_ak_izhmash_akml_762x39", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ak_izhmash_akml_762x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": -10, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5c471c842e221615214259b5": { + "_id": "5c471c842e221615214259b5", + "_name": "gas_block_svd_izhmash_svd_s_std", + "_parent": "56ea9461d2720b67698b456f", + "_type": "Item", + "_props": { + "Name": "gas_block_ak_izhmash_ak74_std", + "ShortName": "gas_block_ak_izhmash_ak74_std", + "Description": "gas_block_ak_izhmash_ak74_std", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/gasblock/gas_block_svd_izhmash_svd_s_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.995, + "CoolFactor": 1.004 + }, + "_proto": "56ea8d2fd2720b7c698b4570" + }, + "59ccd11386f77428f24a488f": { + "_id": "59ccd11386f77428f24a488f", + "_name": "gas_block_ak_izhmash_pp-19-01_std", + "_parent": "56ea9461d2720b67698b456f", + "_type": "Item", + "_props": { + "Name": "gas_block_ak_izhmash_ak74_std", + "ShortName": "gas_block_ak_izhmash_ak74_std", + "Description": "gas_block_ak_izhmash_ak74_std", + "Weight": 0.11, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/gasblock/gas_block_ak_izhmash_pp-19-01_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_handguard", + "_id": "59ccd11386f77428f24a4890", + "_parent": "59ccd11386f77428f24a488f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5648ae314bdc2d3d1c8b457f", + "5d2c829448f0353a5c7d6674", + "5cbda392ae92155f3c17c39f", + "5cbda9f4ae9215000e5b9bfc", + "5648b0744bdc2d363b8b4578", + "5648b1504bdc2d9d488b4584", + "59d64f2f86f77417193ef8b3", + "57cff947245977638e6f2a19", + "57cffd8224597763b03fc609", + "57cffddc24597763133760c6", + "57cffe0024597763b03fc60b", + "57cffe20245977632f391a9d", + "5c9a07572e221644f31c4b32", + "5c9a1c3a2e2216000e69fb6a", + "5c9a1c422e221600106f69f0", + "59e6284f86f77440d569536f", + "59e898ee86f77427614bd225", + "5a9d56c8a2750c0032157146", + "5d1b198cd7ad1a604869ad72", + "5d4aaa73a4b9365392071175", + "5d4aaa54a4b9365392071170", + "5c617a5f2e2216000f1e81b3", + "5648b4534bdc2d3d1c8b4580", + "647dba3142c479dde701b654", + "651bfe4d1065f87f082e7209" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.985, + "CoolFactor": 1.013 + }, + "_proto": "56ea8d2fd2720b7c698b4570" + }, + "5d00ec68d7ad1a04a067e5be": { + "_id": "5d00ec68d7ad1a04a067e5be", + "_name": "gas_block_ar15_jp_jpgs5b", + "_parent": "56ea9461d2720b67698b456f", + "_type": "Item", + "_props": { + "Name": "gas_block_ar15_jp_jpgs5b", + "ShortName": "gas_block_ar15_jp_jpgs5b", + "Description": "gas_block_ar15_jp_jpgs5b", + "Weight": 0.064, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/gasblock/gas_block_ar15_jp_jpgs5b.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -3, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.99, + "CoolFactor": 1.008 + }, + "_proto": "56ea8d2fd2720b7c698b4570" + }, + "5c1bc4812e22164bef5cfde7": { + "_id": "5c1bc4812e22164bef5cfde7", + "_name": "foregrip_all_zenit_rk_0", + "_parent": "55818af64bdc2d5b648b4570", + "_type": "Item", + "_props": { + "Name": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "ShortName": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Description": "foregrip_all_tango_down_stubby_bgv_mk46k_blk", + "Weight": 0.138, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/foregrips/foregrip_all_zenit_rk_0.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0 + }, + "_proto": "558032614bdc2de7118b4585" + }, "5bb20dcad4351e3bac1212da": { "_id": "5bb20dcad4351e3bac1212da", "_name": "gas_block_416_hk_416a5_std", @@ -162106,952 +162752,6 @@ }, "_proto": "56ea8d2fd2720b7c698b4570" }, - "5f6340d3ca442212f4047eb2": { - "_id": "5f6340d3ca442212f4047eb2", - "_name": "foregrip_all_td_aluminum_skeletonized", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_td_aluminum_skeletonized", - "ShortName": "foregrip_all_td_aluminum_skeletonized", - "Description": "foregrip_all_td_aluminum_skeletonized", - "Weight": 0.133, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_td_aluminum_skeletonized.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032614bdc2de7118b4585" - }, - "59e649f986f77411d949b246": { - "_id": "59e649f986f77411d949b246", - "_name": "gas_block_ak_molot_vepr_km_vpo_136", - "_parent": "56ea9461d2720b67698b456f", - "_type": "Item", - "_props": { - "Name": "gas_block_ak_molot_vepr_km_vpo_136", - "ShortName": "gas_block_ak_molot_vepr_km_vpo_136", - "Description": "gas_block_ak_molot_vepr_km_vpo_136", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_ak_molot_vepr_km_vpo_136.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_handguard", - "_id": "59e649f986f77411d949b247", - "_parent": "59e649f986f77411d949b246", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cf4e3f3d7f00c06595bc7f0", - "5648ae314bdc2d3d1c8b457f", - "5d2c829448f0353a5c7d6674", - "5b800e9286f7747a8b04f3ff", - "5b80242286f77429445e0b47", - "5cbda392ae92155f3c17c39f", - "5cbda9f4ae9215000e5b9bfc", - "5648b0744bdc2d363b8b4578", - "5648b1504bdc2d9d488b4584", - "59d64f2f86f77417193ef8b3", - "57cff947245977638e6f2a19", - "57cffd8224597763b03fc609", - "57cffddc24597763133760c6", - "57cffe0024597763b03fc60b", - "57cffe20245977632f391a9d", - "5c9a07572e221644f31c4b32", - "5c9a1c3a2e2216000e69fb6a", - "5c9a1c422e221600106f69f0", - "59e6284f86f77440d569536f", - "59e898ee86f77427614bd225", - "5a9d56c8a2750c0032157146", - "5d1b198cd7ad1a604869ad72", - "5d4aaa73a4b9365392071175", - "5d4aaa54a4b9365392071170", - "5f6331e097199b7db2128dc2", - "5c17664f2e2216398b5a7e3c", - "5c617a5f2e2216000f1e81b3", - "5648b4534bdc2d3d1c8b4580", - "5efaf417aeb21837e749c7f2", - "6389f1dfc879ce63f72fc43e", - "647dba3142c479dde701b654", - "647dd2b8a12ebf96c3031655" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 90, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.995, - "CoolFactor": 1.004 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, - "5fc2360f900b1d5091531e19": { - "_id": "5fc2360f900b1d5091531e19", - "_name": "gas_block_mk18_sword_mjolnir_std", - "_parent": "56ea9461d2720b67698b456f", - "_type": "Item", - "_props": { - "Name": "gas_block_mk18_sword_mjolnir_std", - "ShortName": "gas_block_mk18_sword_mjolnir_std", - "Description": "gas_block_mk18_sword_mjolnir_std", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_mk18_sword_mjolnir_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.995, - "CoolFactor": 1.004 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, - "61702f1b67085e45ef140b26": { - "_id": "61702f1b67085e45ef140b26", - "_name": "gas_block_417_hk_adjustable_5_position_gas_block", - "_parent": "56ea9461d2720b67698b456f", - "_type": "Item", - "_props": { - "Name": "gas_block_416_hk_416a5_std", - "ShortName": "gas_block_416_hk_416a5_std", - "Description": "gas_block_416_hk_416a5_std", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_417_hk_adjustable_5_position_gas_block.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.995, - "CoolFactor": 1.004 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, - "6281212a09427b40ab14e770": { - "_id": "6281212a09427b40ab14e770", - "_name": "foregrip_ax_accuracy_international_ax_base_pad_pb", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_kac_vertical_grip", - "ShortName": "foregrip_all_kac_vertical_grip", - "Description": "foregrip_all_kac_vertical_grip", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_ax_accuracy_international_ax_base_pad_pb.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032614bdc2de7118b4585" - }, - "56eabcd4d2720b66698b4574": { - "_id": "56eabcd4d2720b66698b4574", - "_name": "gas_block_ar15_dd_mk12_low_profile", - "_parent": "56ea9461d2720b67698b456f", - "_type": "Item", - "_props": { - "Name": "gas_block_ar15_dd_mk12_low_profile", - "ShortName": "gas_block_ar15_dd_mk12_low_profile", - "Description": "gas_block_ar15_dd_mk12_low_profile", - "Weight": 0.053, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_ar15_dd_mk12_low_profile.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.995, - "CoolFactor": 1.004 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, - "628b8d83717774443b15e248": { - "_id": "628b8d83717774443b15e248", - "_name": "gas_block_ak_sag_mk_21", - "_parent": "56ea9461d2720b67698b456f", - "_type": "Item", - "_props": { - "Name": "gas_block_ak_izhmash_ak74_std", - "ShortName": "gas_block_ak_izhmash_ak74_std", - "Description": "gas_block_ak_izhmash_ak74_std", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_ak_sag_mk_21.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_handguard", - "_id": "628b8d83717774443b15e249", - "_parent": "628b8d83717774443b15e248", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "628b916469015a4e1711ed8d" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.95, - "CoolFactor": 1.05 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, - "5cf4fb76d7f00c065703d3ac": { - "_id": "5cf4fb76d7f00c065703d3ac", - "_name": "foregrip_all_rtm_pillau", - "_parent": "55818af64bdc2d5b648b4570", - "_type": "Item", - "_props": { - "Name": "foregrip_all_rtm_pillau", - "ShortName": "foregrip_all_rtm_pillau", - "Description": "foregrip_all_rtm_pillau", - "Weight": 0.065, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/foregrips/foregrip_all_rtm_pillau.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0 - }, - "_proto": "558032614bdc2de7118b4585" - }, - "6065dc8a132d4d12c81fd8e3": { - "_id": "6065dc8a132d4d12c81fd8e3", - "_name": "gas_block_ar10_cmmg_low_profile", - "_parent": "56ea9461d2720b67698b456f", - "_type": "Item", - "_props": { - "Name": "gas_block_ar10_kac_low_profile", - "ShortName": "gas_block_ar10_kac_low_profile", - "Description": "gas_block_ar10_kac_low_profile", - "Weight": 0.095, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_ar10_cmmg_low_profile.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -3, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.995, - "CoolFactor": 1.004 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, - "5a01ad4786f77450561fda02": { - "_id": "5a01ad4786f77450561fda02", - "_name": "gas_block_ak_custom_ak_cut", - "_parent": "56ea9461d2720b67698b456f", - "_type": "Item", - "_props": { - "Name": "gas_block_ak_custom_ak_cut", - "ShortName": "gas_block_ak_custom_ak_cut", - "Description": "gas_block_ak_custom_ak_cut", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/mods/gasblock/gas_block_ak_custom_ak_cut.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_handguard", - "_id": "5a01ad4786f77450561fda03", - "_parent": "5a01ad4786f77450561fda02", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59fb375986f7741b681b81a6", - "5a9d56c8a2750c0032157146", - "5f6331e097199b7db2128dc2", - "5c17664f2e2216398b5a7e3c", - "5648b4534bdc2d3d1c8b4580", - "5efaf417aeb21837e749c7f2", - "647dba3142c479dde701b654", - "647dd2b8a12ebf96c3031655" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.995, - "CoolFactor": 1.004 - }, - "_proto": "56ea8d2fd2720b7c698b4570" - }, "649ec107961514b22506b10c": { "_id": "649ec107961514b22506b10c", "_name": "gas_block_ak12_izhmash_ak12_std", @@ -163224,6 +162924,228 @@ }, "_proto": "56ea8d2fd2720b7c698b4570" }, + "5fc2360f900b1d5091531e19": { + "_id": "5fc2360f900b1d5091531e19", + "_name": "gas_block_mk18_sword_mjolnir_std", + "_parent": "56ea9461d2720b67698b456f", + "_type": "Item", + "_props": { + "Name": "gas_block_mk18_sword_mjolnir_std", + "ShortName": "gas_block_mk18_sword_mjolnir_std", + "Description": "gas_block_mk18_sword_mjolnir_std", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/gasblock/gas_block_mk18_sword_mjolnir_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.995, + "CoolFactor": 1.004 + }, + "_proto": "56ea8d2fd2720b7c698b4570" + }, + "59e649f986f77411d949b246": { + "_id": "59e649f986f77411d949b246", + "_name": "gas_block_ak_molot_vepr_km_vpo_136", + "_parent": "56ea9461d2720b67698b456f", + "_type": "Item", + "_props": { + "Name": "gas_block_ak_molot_vepr_km_vpo_136", + "ShortName": "gas_block_ak_molot_vepr_km_vpo_136", + "Description": "gas_block_ak_molot_vepr_km_vpo_136", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/gasblock/gas_block_ak_molot_vepr_km_vpo_136.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_handguard", + "_id": "59e649f986f77411d949b247", + "_parent": "59e649f986f77411d949b246", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cf4e3f3d7f00c06595bc7f0", + "5648ae314bdc2d3d1c8b457f", + "5d2c829448f0353a5c7d6674", + "5b800e9286f7747a8b04f3ff", + "5b80242286f77429445e0b47", + "5cbda392ae92155f3c17c39f", + "5cbda9f4ae9215000e5b9bfc", + "5648b0744bdc2d363b8b4578", + "5648b1504bdc2d9d488b4584", + "59d64f2f86f77417193ef8b3", + "57cff947245977638e6f2a19", + "57cffd8224597763b03fc609", + "57cffddc24597763133760c6", + "57cffe0024597763b03fc60b", + "57cffe20245977632f391a9d", + "5c9a07572e221644f31c4b32", + "5c9a1c3a2e2216000e69fb6a", + "5c9a1c422e221600106f69f0", + "59e6284f86f77440d569536f", + "59e898ee86f77427614bd225", + "5a9d56c8a2750c0032157146", + "5d1b198cd7ad1a604869ad72", + "5d4aaa73a4b9365392071175", + "5d4aaa54a4b9365392071170", + "5f6331e097199b7db2128dc2", + "5c17664f2e2216398b5a7e3c", + "5c617a5f2e2216000f1e81b3", + "5648b4534bdc2d3d1c8b4580", + "5efaf417aeb21837e749c7f2", + "6389f1dfc879ce63f72fc43e", + "647dba3142c479dde701b654", + "647dd2b8a12ebf96c3031655" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 90, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.995, + "CoolFactor": 1.004 + }, + "_proto": "56ea8d2fd2720b7c698b4570" + }, "5fbc210bf24b94483f726481": { "_id": "5fbc210bf24b94483f726481", "_name": "gas_block_mcx_sig_mcx_std", @@ -163310,23 +163232,109 @@ }, "_proto": "56ea8d2fd2720b7c698b4570" }, - "5998597786f77414ea6da093": { - "_id": "5998597786f77414ea6da093", - "_name": "muzzle_pp-19-01_izhmash_vityaz_std_9x19", + "61702f1b67085e45ef140b26": { + "_id": "61702f1b67085e45ef140b26", + "_name": "gas_block_417_hk_adjustable_5_position_gas_block", + "_parent": "56ea9461d2720b67698b456f", + "_type": "Item", + "_props": { + "Name": "gas_block_416_hk_416a5_std", + "ShortName": "gas_block_416_hk_416a5_std", + "Description": "gas_block_416_hk_416a5_std", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/mods/gasblock/gas_block_417_hk_adjustable_5_position_gas_block.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.995, + "CoolFactor": 1.004 + }, + "_proto": "56ea8d2fd2720b7c698b4570" + }, + "612e0d81290d254f5e6b291a": { + "_id": "612e0d81290d254f5e6b291a", + "_name": "muzzle_all_awc_psr_muzzle_brake_86x70", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_saiga_9_izhmash_saiga_9_std_9x19", - "ShortName": "muzzle_saiga_9_izhmash_saiga_9_std_9x19", - "Description": "muzzle_saiga_9_izhmash_saiga_9_std_9x19", - "Weight": 0.07, + "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", + "ShortName": "5.56x45 AR-15 USGI A2", + "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", + "Weight": 0.177, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_pp-19-01_izhmash_vityaz_std_9x19.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_all_awc_psr_muzzle_brake_86x70.bundle", "rcid": "" }, "UsePrefab": { @@ -163371,13 +163379,33 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "612e1889a112697a4b3a66ea", + "_parent": "612e0d81290d254f5e6b291a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "612e0e04568c120fdd294258", + "63877c99e785640d436458ea" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 0, + "Accuracy": 1, + "Recoil": -10, + "Loudness": 25, "EffectiveDistance": 0, "Ergonomics": -1, "Velocity": 0, @@ -163392,7 +163420,7 @@ "UniqueAnimationModID": 0, "muzzleModType": "brake", "DurabilityBurnModificator": 1, - "HeatFactor": 1, + "HeatFactor": 0.987, "CoolFactor": 1 }, "_proto": "544a38634bdc2d58388b4568" @@ -163722,447 +163750,23 @@ }, "_proto": "56ea8d2fd2720b7c698b4570" }, - "56ea8180d2720bf2698b456a": { - "_id": "56ea8180d2720bf2698b456a", - "_name": "muzzle_ar15_kac_qd_compensator_556x45", + "5caf17c9ae92150b30006be1": { + "_id": "5caf17c9ae92150b30006be1", + "_name": "muzzle_ash12_ckib_ash12_std_127x55", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_ar15_kac_qd_compensator_556x45", - "ShortName": "muzzle_ar15_kac_qd_compensator_556x45", - "Description": "muzzle_ar15_kac_qd_compensator_556x45", - "Weight": 0.063, + "Name": "Дульный тормоз компенсатор Ижмаш 5.45x39 для АК-74", + "ShortName": "5.56x45 АК-74", + "Description": "Штатный дульный тормоз компенсатор производства Ижмаш для автомата АК-74 и других моделей на его базе.", + "Weight": 0.15, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_kac_qd_compensator_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "57da91d72459771cb524d22c", - "_parent": "56ea8180d2720bf2698b456a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57da93632459771cb65bf83f", - "57dbb57e2459774673234890" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5c0fafb6d174af02a96260ba": { - "_id": "5c0fafb6d174af02a96260ba", - "_name": "muzzle_ar15_adar_2_15_std_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", - "ShortName": "5.56x45 AR-15 USGI A2", - "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", - "Weight": 0.064, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_colt_usgi_a2_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "63861355f03e7c67551f1149", - "_parent": "5c0fafb6d174af02a96260ba", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "638612b607dfed1ccb7206ba" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "544a38634bdc2d58388b4568": { - "_id": "544a38634bdc2d58388b4568", - "_name": "muzzle_ar15_colt_usgi_a2_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", - "ShortName": "5.56x45 AR-15 USGI A2", - "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", - "Weight": 0.064, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_colt_usgi_a2_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "638611e12e6158055265d7fb", - "_parent": "544a38634bdc2d58388b4568", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "638612b607dfed1ccb7206ba" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - } - }, - "5c7e5f112e221600106f4ede": { - "_id": "5c7e5f112e221600106f4ede", - "_name": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", - "ShortName": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", - "Description": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", - "Weight": 0.122, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_aac_blackout_51t_flash_hider_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5c7e5f112e221600106f4ee0", - "_parent": "5c7e5f112e221600106f4ede", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a34fe59c4a282000b1521a2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5fbcbd10ab884124df0cd563": { - "_id": "5fbcbd10ab884124df0cd563", - "_name": "muzzle_base_sig_two_port_brake_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_base_sig_muzzle_break_2_762x51", - "ShortName": "muzzle_base_sig_muzzle_break_2_762x51", - "Description": "muzzle_base_sig_muzzle_break_2_762x51", - "Weight": 0.095, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_base_sig_two_port_brake_762x51.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ash12_ckib_ash12_std_127x55.bundle", "rcid": "" }, "UsePrefab": { @@ -164212,7 +163816,7 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -6, + "Recoil": -17, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -1, @@ -164233,608 +163837,6 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "615d8f5dd92c473c770212ef": { - "_id": "615d8f5dd92c473c770212ef", - "_name": "muzzle_ak_hexagon_reactor_muzzle_brake_545x39", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "Дульный тормоз PSR 7.62x51", - "ShortName": "PSR 7.62x51", - "Description": "Дульный тормоз 7.62x51 PSR от компании AWC", - "Weight": 0.095, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak_hexagon_reactor_muzzle_brake_545x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "615d8f5dd92c473c770212f1", - "_parent": "615d8f5dd92c473c770212ef", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "615d8f8567085e45ef1409ca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -12, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5df35e7f2a78646d96665dd4": { - "_id": "5df35e7f2a78646d96665dd4", - "_name": "muzzle_t5000_orsis_t5000m_std_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_dvl-10_lobaev_dvl-10_m2_std_308", - "ShortName": "muzzle_dvl-10_lobaev_dvl-10_m2_std_308", - "Description": "muzzle_dvl-10_lobaev_dvl-10_m2_std_308", - "Weight": 0.098, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_t5000_orsis_t5000m_std_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 1, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5ab3afb2d8ce87001660304d": { - "_id": "5ab3afb2d8ce87001660304d", - "_name": "muzzle_m1a_smith_enterprise_socom_16_threaded_gas_lock_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_m1a_smith_enterprise_socom_16_threaded_gas_lock_762x51", - "ShortName": "muzzle_m1a_smith_enterprise_socom_16_threaded_gas_lock_762x51", - "Description": "muzzle_m1a_smith_enterprise_socom_16_threaded_gas_lock_762x51", - "Weight": 0.11, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_m1a_smith_enterprise_socom_16_threaded_gas_lock_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_front", - "_id": "5ab3afb2d8ce87001660304f", - "_parent": "5ab3afb2d8ce87001660304d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5addba3e5acfc4001669f0ab", - "5aafa49ae5b5b00015042a58" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5ab3b244d8ce8700182eccb6", - "_parent": "5ab3afb2d8ce87001660304d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7d693d5acfc43bca706a3d", - "5c878e9d2e2216000f201903", - "5bbdb8bdd4351e4502011460", - "5addbba15acfc400185c2854", - "5c7954d52e221600106f4cc7", - "59bffc1f86f77435b128b872" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "6386120cd6baa055ad1e201c": { - "_id": "6386120cd6baa055ad1e201c", - "_name": "muzzle_ar15_griffin_gatelok_hammer_comp_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", - "ShortName": "5.56x45 AR-15 USGI A2", - "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", - "Weight": 0.068, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_griffin_gatelok_hammer_comp_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "6386120cd6baa055ad1e201d", - "_parent": "6386120cd6baa055ad1e201c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "638612b607dfed1ccb7206ba" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 1.05, - "CoolFactor": 1 - } - }, - "63ac5c9658d0485fc039f0b8": { - "_id": "63ac5c9658d0485fc039f0b8", - "_name": "muzzle_ar15_alientech_gubich_muzzle_brake_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak74_jmac_rrd_4c_multi", - "ShortName": "muzzle_ak74_jmac_rrd_4c_multi", - "Description": "muzzle_ak74_jmac_rrd_4c_multi", - "Weight": 0.085, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_alientech_gubich_muzzle_brake_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -8, - "Loudness": 15, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.987, - "CoolFactor": 1 - }, - "_proto": "5649aa744bdc2ded0b8b457e" - }, - "6492efe46cc7e29a6f03b2a0": { - "_id": "6492efe46cc7e29a6f03b2a0", - "_name": "muzzle_pk_zid_pkm_std_762x54r", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar15_kac_qd_compensator_556x45", - "ShortName": "muzzle_ar15_kac_qd_compensator_556x45", - "Description": "muzzle_ar15_kac_qd_compensator_556x45", - "Weight": 0.063, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_pk_zid_pkm_std_762x54r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 1, - "Recoil": -2, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, "5cc9a96cd7f00c011c04e04a": { "_id": "5cc9a96cd7f00c011c04e04a", "_name": "muzzle_ak74_srvv_mbr_jet_545_545x39", @@ -164922,6 +163924,1103 @@ }, "_proto": "544a38634bdc2d58388b4568" }, + "6492ef63cfcf7c89e701abf1": { + "_id": "6492ef63cfcf7c89e701abf1", + "_name": "muzzle_pk_zenit_dtk_1p_762x54r", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", + "ShortName": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", + "Description": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", + "Weight": 0.124, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_pk_zenit_dtk_1p_762x54r.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 1, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.987, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5ac72e7d5acfc40016339a02": { + "_id": "5ac72e7d5acfc40016339a02", + "_name": "muzzle_ak74_izhmash_ak103_std_762x39", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ak74_izhmash_ak103_std_762x39", + "ShortName": "muzzle_ak74_izhmash_ak103_std_762x39", + "Description": "muzzle_ak74_izhmash_ak103_std_762x39", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ak74_izhmash_ak103_std_762x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -7, + "Loudness": -5, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5ac72e895acfc43b321d4bd5": { + "_id": "5ac72e895acfc43b321d4bd5", + "_name": "muzzle_ak74_izhmash_ak104_std_762x39", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ak74_izhmash_ak104_std_762x39", + "ShortName": "muzzle_ak74_izhmash_ak104_std_762x39", + "Description": "muzzle_ak74_izhmash_ak104_std_762x39", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ak74_izhmash_ak104_std_762x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": -5, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5998598e86f7740b3f498a86": { + "_id": "5998598e86f7740b3f498a86", + "_name": "muzzle_saiga_9_izhmash_saiga_9_std_9x19", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_pp-19-01_izhmash_vityaz_std_9x19", + "ShortName": "muzzle_pp-19-01_izhmash_vityaz_std_9x19", + "Description": "muzzle_pp-19-01_izhmash_vityaz_std_9x19", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_saiga_9_izhmash_saiga_9_std_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "57dc324a24597759501edc20": { + "_id": "57dc324a24597759501edc20", + "_name": "muzzle_aks74u_izhmash_std_545x39", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_aks74u_izhmash_std_545x39", + "ShortName": "muzzle_aks74u_izhmash_std_545x39", + "Description": "muzzle_aks74u_izhmash_std_545x39", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_aks74u_izhmash_std_545x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "5649aa744bdc2ded0b8b457e" + }, + "64119d1f2c6d6f921a0929f8": { + "_id": "64119d1f2c6d6f921a0929f8", + "_name": "muzzle_svt40_toz_std_762x54r", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_m1a_springfield_armory_socom_16_762x51", + "ShortName": "muzzle_m1a_springfield_armory_socom_16_762x51", + "Description": "muzzle_m1a_springfield_armory_socom_16_762x51", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_svt40_toz_std_762x54r.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_front", + "_id": "64119d1f2c6d6f921a0929f9", + "_parent": "64119d1f2c6d6f921a0929f8", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "64119d672c6d6f921a0929fb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -7, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "615d8df08004cc50514c3236": { + "_id": "615d8df08004cc50514c3236", + "_name": "muzzle_mp5_b&t_mp5_qd_muzzle_brake_9x19", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_mp5_hk_noveske_style_3_lug_9x19", + "ShortName": "muzzle_mp5_hk_noveske_style_3_lug_9x19", + "Description": "muzzle_mp5_hk_noveske_style_3_lug_9x19", + "Weight": 0.128, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_mp5_b&t_mp5_qd_muzzle_brake_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -8, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.97, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5f633f68f5750b524b45f112": { + "_id": "5f633f68f5750b524b45f112", + "_name": "muzzle_ak_jmac_rrd_4c_762x39", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ak_jmac_rrd_4c_762x39", + "ShortName": "muzzle_ak_jmac_rrd_4c_762x39", + "Description": "muzzle_ak_jmac_rrd_4c_762x39", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ak_jmac_rrd_4c_762x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -14, + "Loudness": 18, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.984, + "CoolFactor": 1 + }, + "_proto": "5649aa744bdc2ded0b8b457e" + }, + "5cc9ad73d7f00c000e2579d4": { + "_id": "5cc9ad73d7f00c000e2579d4", + "_name": "muzzle_ak_srvv_mbrfhmb_762_762x39", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ak74_izhmash_ak74m_std_545x39", + "ShortName": "muzzle_ak74_izhmash_ak74m_std_545x39", + "Description": "muzzle_ak74_izhmash_ak74m_std_545x39", + "Weight": 0.11, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ak_srvv_mbrfhmb_762_762x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -11, + "Loudness": 5, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5c78f2882e22165df16b832e": { + "_id": "5c78f2882e22165df16b832e", + "_name": "muzzle_ar15_sai_jail_break_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", + "ShortName": "5.56x45 AR-15 USGI A2", + "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", + "Weight": 0.064, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar15_sai_jail_break_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "56ea6fafd2720b844b8b4593", + "5943ee5a86f77413872d25ec", + "5f6339d53ada5942720e2dc3", + "5c7954d52e221600106f4cc7", + "59bffc1f86f77435b128b872", + "5a9fbb84a2750c00137fa685", + "5a34fe59c4a282000b1521a2", + "60926df0132d4d12c81fd9df", + "57da93632459771cb65bf83f", + "57dbb57e2459774673234890", + "5dfa3d2b0dee1b22f862eade", + "55d6190f4bdc2d87028b4567", + "55d614004bdc2d86028b4568", + "5ea17bbc09aa976f2e7a51cd", + "5d44064fa4b9361e4f6eb8b5", + "5cff9e84d7ad1a049e54ed55", + "5d440b93a4b9364276578d4b", + "5d440b9fa4b93601354d480c", + "60339954d62c9b14ed777c06", + "626673016f1edc06f30cf6d5", + "62669bccdb9ebb4daa44cd14", + "638612b607dfed1ccb7206ba", + "63877c99e785640d436458ea", + "63d3ce0446bd475bcb50f55f", + "63d3d44a2a49307baf09386d" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -6, + "Loudness": 5, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "muzzleCombo", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.981, + "CoolFactor": 1.016 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5c6beec32e221601da3578f2": { + "_id": "5c6beec32e221601da3578f2", + "_name": "muzzle_p226_tj_compensator_9x19", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19", + "ShortName": "muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19", + "Description": "muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19", + "Weight": 0.036, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_p226_tj_compensator_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a6f5e048dc32e00094b97da", + "5a9685b1a2750c0032157104", + "5a6f5f078dc32e00094b97dd", + "5a702d198dc32e000b452fc3", + "5a7afa25e899ef00135e31b0", + "5a71e22f8dc32e00094b97f4", + "5a71e4f48dc32e001207fb26" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": -2, + "Recoil": -8, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 1, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "58889c7324597754281f9439": { + "_id": "58889c7324597754281f9439", + "_name": "muzzle_dvl-10_lobaev_dvl-10_std_308", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_dvl-10_lobaev_dvl-10_std_308", + "ShortName": "muzzle_dvl-10_lobaev_dvl-10_std_308", + "Description": "muzzle_dvl-10_lobaev_dvl-10_std_308", + "Weight": 0.105, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_dvl-10_lobaev_dvl-10_std_308.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -8, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.97, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, "64942bfc6ee699f6890dff95": { "_id": "64942bfc6ee699f6890dff95", "_name": "muzzle_ak_vector_vr_05t_762x39", @@ -165116,6 +165215,113 @@ }, "_proto": "544a38634bdc2d58388b4568" }, + "56ea8180d2720bf2698b456a": { + "_id": "56ea8180d2720bf2698b456a", + "_name": "muzzle_ar15_kac_qd_compensator_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar15_kac_qd_compensator_556x45", + "ShortName": "muzzle_ar15_kac_qd_compensator_556x45", + "Description": "muzzle_ar15_kac_qd_compensator_556x45", + "Weight": 0.063, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar15_kac_qd_compensator_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "57da91d72459771cb524d22c", + "_parent": "56ea8180d2720bf2698b456a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57da93632459771cb65bf83f", + "57dbb57e2459774673234890" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, "609269c3b0e443224b421cc1": { "_id": "609269c3b0e443224b421cc1", "_name": "muzzle_ar15_silencerco_asr_flash_hider_556x45", @@ -165396,110 +165602,23 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "5dcbe965e4ed22586443a79d": { - "_id": "5dcbe965e4ed22586443a79d", - "_name": "muzzle_ar10_dt_mdr_std_762x51", + "544a38634bdc2d58388b4568": { + "_id": "544a38634bdc2d58388b4568", + "_name": "muzzle_ar15_colt_usgi_a2_556x45", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_ar15_vendetta_precision_vp_09_556x45", - "ShortName": "muzzle_ar15_vendetta_precision_vp_09_556x45", - "Description": "muzzle_ar15_vendetta_precision_vp_09_556x45", - "Weight": 0.2, + "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", + "ShortName": "5.56x45 AR-15 USGI A2", + "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", + "Weight": 0.064, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_dt_mdr_std_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 1, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "5649aa744bdc2ded0b8b457e" - }, - "5cff9e5ed7ad1a09407397d4": { - "_id": "5cff9e5ed7ad1a09407397d4", - "_name": "muzzle_ar15_dd_wave_muzzle_brake_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Weight": 0.109, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_all_dd_wave_muzzle_brake_multi.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ar15_colt_usgi_a2_556x45.bundle", "rcid": "" }, "UsePrefab": { @@ -165547,314 +165666,14 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "5cff9e5ed7ad1a09407397d6", - "_parent": "5cff9e5ed7ad1a09407397d4", + "_id": "638611e12e6158055265d7fb", + "_parent": "544a38634bdc2d58388b4568", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5cff9e84d7ad1a049e54ed55" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 1, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "6492ef63cfcf7c89e701abf1": { - "_id": "6492ef63cfcf7c89e701abf1", - "_name": "muzzle_pk_zenit_dtk_1p_762x54r", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", - "ShortName": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", - "Description": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", - "Weight": 0.124, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_pk_zenit_dtk_1p_762x54r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 1, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.987, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5dfa3cd1b33c0951220c079b": { - "_id": "5dfa3cd1b33c0951220c079b", - "_name": "muzzle_ar10_kac_qdc_flash_supressor_kit_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", - "ShortName": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", - "Description": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", - "Weight": 0.11, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_kac_qdc_flash_supressor_kit_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5dfa3cd1b33c0951220c079d", - "_parent": "5dfa3cd1b33c0951220c079b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5dfa3d2b0dee1b22f862eade" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5aafa1c2e5b5b00015042a56": { - "_id": "5aafa1c2e5b5b00015042a56", - "_name": "muzzle_m1a_springfield_armory_socom_16_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_m1a_springfield_armory_socom_16_762x51", - "ShortName": "muzzle_m1a_springfield_armory_socom_16_762x51", - "Description": "muzzle_m1a_springfield_armory_socom_16_762x51", - "Weight": 0.13, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_m1a_springfield_armory_socom_16_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_front", - "_id": "5aafa211e5b5b00014799d8a", - "_parent": "5aafa1c2e5b5b00015042a56", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5addba3e5acfc4001669f0ab", - "5aafa49ae5b5b00015042a58" + "638612b607dfed1ccb7206ba" ] } ] @@ -165868,7 +165687,7 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -4, + "Recoil": -5, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -1, @@ -165882,22 +165701,21 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", + "muzzleModType": "brake", "DurabilityBurnModificator": 1, - "HeatFactor": 0.99, + "HeatFactor": 1, "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" + } }, - "5a7b32a2e899ef00135e345a": { - "_id": "5a7b32a2e899ef00135e345a", - "_name": "muzzle_glock_strike_industries_g4_slide_compensator_9x19", + "560e620e4bdc2d724b8b456b": { + "_id": "560e620e4bdc2d724b8b456b", + "_name": "muzzle_sv-98_izhmash_std_762x54r", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_glock_strike_industries_g4_slide_compensator_9x19", - "ShortName": "muzzle_glock_strike_industries_g4_slide_compensator_9x19", - "Description": "muzzle_glock_strike_industries_g4_slide_compensator_9x19", + "Name": "muzzle_sv-98_izhmash_std_762x54r", + "ShortName": "muzzle_sv-98_izhmash_std_762x54r", + "Description": "muzzle_sv-98_izhmash_std_762x54r", "Weight": 0.105, "BackgroundColor": "blue", "Width": 1, @@ -165905,214 +165723,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_glock_strike_industries_g4_slide_compensator_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a7ad0c451dfba0013379712", - "5a7037338dc32e000d46d257", - "5a70366c8dc32e001207fb06", - "5a705e128dc32e000d46d258", - "5a7ad1fb51dfba0013379715", - "5a6b585a8dc32e5a9c28b4f1", - "5a6b592c8dc32e00094b97bf", - "5a6b59a08dc32e000b452fb7", - "5c7e8fab2e22165df16b889b", - "5a33a8ebc4a282000c5a950d", - "5c6165902e22160010261b28", - "5a32a064c4a28200741e22de", - "5a7ad74e51dfba0015068f45" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -10, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "618178aa1cb55961fa0fdc80": { - "_id": "618178aa1cb55961fa0fdc80", - "_name": "muzzle_ar10_aac_scar_h_miter_51t_flash_hider_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Weight": 0.16, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_aac_scar_h_miter_51t_flash_hider_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "618178aa1cb55961fa0fdc82", - "_parent": "618178aa1cb55961fa0fdc80", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a34fe59c4a282000b1521a2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 4, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5998598e86f7740b3f498a86": { - "_id": "5998598e86f7740b3f498a86", - "_name": "muzzle_saiga_9_izhmash_saiga_9_std_9x19", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_pp-19-01_izhmash_vityaz_std_9x19", - "ShortName": "muzzle_pp-19-01_izhmash_vityaz_std_9x19", - "Description": "muzzle_pp-19-01_izhmash_vityaz_std_9x19", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_saiga_9_izhmash_saiga_9_std_9x19.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_sv-98_izhmash_std_762x54r.bundle", "rcid": "" }, "UsePrefab": { @@ -166178,181 +165789,7 @@ "UniqueAnimationModID": 0, "muzzleModType": "brake", "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5ac72e895acfc43b321d4bd5": { - "_id": "5ac72e895acfc43b321d4bd5", - "_name": "muzzle_ak74_izhmash_ak104_std_762x39", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak74_izhmash_ak104_std_762x39", - "ShortName": "muzzle_ak74_izhmash_ak104_std_762x39", - "Description": "muzzle_ak74_izhmash_ak104_std_762x39", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak74_izhmash_ak104_std_762x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": -5, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5d02677ad7ad1a04a15c0f95": { - "_id": "5d02677ad7ad1a04a15c0f95", - "_name": "muzzle_ar10_nordic_corvette_compensator_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", - "ShortName": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", - "Description": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", - "Weight": 0.125, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_nordic_corvette_compensator_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -7, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.987, + "HeatFactor": 0.99, "CoolFactor": 1 }, "_proto": "544a38634bdc2d58388b4568" @@ -166444,6 +165881,93 @@ }, "_proto": "544a38634bdc2d58388b4568" }, + "5d02677ad7ad1a04a15c0f95": { + "_id": "5d02677ad7ad1a04a15c0f95", + "_name": "muzzle_ar10_nordic_corvette_compensator_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", + "ShortName": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", + "Description": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", + "Weight": 0.125, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar10_nordic_corvette_compensator_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -7, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.987, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, "5bc5a351d4351e003477a414": { "_id": "5bc5a351d4351e003477a414", "_name": "muzzle_mosin_tpp_clamp_on_muzzle_brake_762x54r", @@ -166812,1934 +166336,9 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "58949dea86f77409483e16a8": { - "_id": "58949dea86f77409483e16a8", - "_name": "muzzle_mpx_sig_mpx_a2_9x19", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_mpx_sig_mpx_a2_9x19", - "ShortName": "muzzle_mpx_sig_mpx_a2_9x19", - "Description": "muzzle_mpx_sig_mpx_a2_9x19", - "Weight": 0.063, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_mpx_sig_mpx_a2_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "630f28f0cadb1fe05e06f004": { - "_id": "630f28f0cadb1fe05e06f004", - "_name": "muzzle_aug_steyr_a3_closed_flash_hider_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", - "ShortName": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", - "Description": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", - "Weight": 0.064, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_aug_steyr_a3_closed_flash_hider_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.95, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "5649aa744bdc2ded0b8b457e" - }, - "612e0e3c290d254f5e6b291d": { - "_id": "612e0e3c290d254f5e6b291d", - "_name": "muzzle_ar10_taa_zk_38_muzzle_brake_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Weight": 0.035, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_taa_zk_38_muzzle_brake_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 10, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.989, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "626667e87379c44d557b7550": { - "_id": "626667e87379c44d557b7550", - "_name": "muzzle_ar15_kac_qdc_3_prong_flash_eliminator_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar15_silencerco_asr_flash_hider_556x45", - "ShortName": "muzzle_ar15_silencerco_asr_flash_hider_556x45", - "Description": "muzzle_ar15_silencerco_asr_flash_hider_556x45", - "Weight": 0.065, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_kac_qdc_3_prong_flash_eliminator_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "626667e87379c44d557b7552", - "_parent": "626667e87379c44d557b7550", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "626673016f1edc06f30cf6d5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 20, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 1, - "HeatFactor": 0.989, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "6529113b5ae2ae97b80fdf39": { - "_id": "6529113b5ae2ae97b80fdf39", - "_name": "muzzle_ar10_sig_clutch_lok_qd_flash_hider_68x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Weight": 0.122, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_sig_clutch_lok_qd_flash_hider_68x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "6529113b5ae2ae97b80fdf3a", - "_parent": "6529113b5ae2ae97b80fdf39", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "652911e650dc782999054b9d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -7, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5a0d716f1526d8000d26b1e2": { - "_id": "5a0d716f1526d8000d26b1e2", - "_name": "muzzle_ak_izhmash_akml_762x39", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak_izhmash_akm_std_762x39", - "ShortName": "muzzle_ak_izhmash_akml_762x39", - "Description": "muzzle_ak_izhmash_akml_762x39", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak_izhmash_akml_762x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": -10, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5c6d710d2e22165df16b81e7": { - "_id": "5c6d710d2e22165df16b81e7", - "_name": "muzzle_ar15_surefire_warcomp_556_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", - "ShortName": "5.56x45 AR-15 USGI A2", - "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", - "Weight": 0.064, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_surefire_warcomp_556_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5c7fb4f72e2216000e69e352", - "_parent": "5c6d710d2e22165df16b81e7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d6190f4bdc2d87028b4567", - "55d614004bdc2d86028b4568", - "5ea17bbc09aa976f2e7a51cd" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 2, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5cf6935bd7f00c06585fb791": { - "_id": "5cf6935bd7f00c06585fb791", - "_name": "muzzle_all_taccom_carbine_brake_multi", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", - "ShortName": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", - "Description": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", - "Weight": 0.079, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_all_taccom_carabine_brake_multi.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 2, - "Recoil": -8, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.987, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "6492efb8cfcf7c89e701abf3": { - "_id": "6492efb8cfcf7c89e701abf3", - "_name": "muzzle_pk_zid_pkm_long_762x54r", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak_izhmash_akm_std_762x39", - "ShortName": "muzzle_ak_izhmash_akml_762x39", - "Description": "muzzle_ak_izhmash_akml_762x39", - "Weight": 0.057, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_pk_zid_pkm_long_762x54r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": -10, - "EffectiveDistance": 0, - "Ergonomics": -1.5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5d1f819086f7744b355c219b": { - "_id": "5d1f819086f7744b355c219b", - "_name": "muzzle_ar10_dd_wave_muzzle_brake_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Weight": 0.109, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_all_dd_wave_muzzle_brake_multi.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5d1f819086f7744b355c219d", - "_parent": "5d1f819086f7744b355c219b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cff9e84d7ad1a049e54ed55" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 1, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5943ee5a86f77413872d25ec": { - "_id": "5943ee5a86f77413872d25ec", - "_name": "muzzle_ar15_pws_cqb_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar15_pws_cqb_556x45", - "ShortName": "muzzle_ar15_pws_cqb_556x45", - "Description": "muzzle_ar15_pws_cqb_556x45", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_pws_cqb_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -8, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.989, - "CoolFactor": 1 - }, - "_proto": "5649aa744bdc2ded0b8b457e" - }, - "59e8a00d86f7742ad93b569c": { - "_id": "59e8a00d86f7742ad93b569c", - "_name": "muzzle_ak_molot_vpo_209_366TKM", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak_molot_vpo_209_366TKM", - "ShortName": "muzzle_ak_molot_vpo_209_366TKM", - "Description": "muzzle_ak_molot_vpo_209_366TKM", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak_molot_vpo_209_366tkm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "615d8df08004cc50514c3236": { - "_id": "615d8df08004cc50514c3236", - "_name": "muzzle_mp5_b&t_mp5_qd_muzzle_brake_9x19", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_mp5_hk_noveske_style_3_lug_9x19", - "ShortName": "muzzle_mp5_hk_noveske_style_3_lug_9x19", - "Description": "muzzle_mp5_hk_noveske_style_3_lug_9x19", - "Weight": 0.128, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_mp5_b&t_mp5_qd_muzzle_brake_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -8, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.97, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5ac72e615acfc43f67248aa0": { - "_id": "5ac72e615acfc43f67248aa0", - "_name": "muzzle_ak74_izhmash_ak101_std_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak74_izhmash_ak101_std_556x45", - "ShortName": "muzzle_ak74_izhmash_ak101_std_556x45", - "Description": "muzzle_ak74_izhmash_ak101_std_556x45", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak74_izhmash_ak101_std_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -7, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "612e0e55a112697a4b3a66e7": { - "_id": "612e0e55a112697a4b3a66e7", - "_name": "muzzle_ar15_taa_zk_23_muzzle_brake_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Weight": 0.028, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_taa_zk_23_muzzle_brake_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 10, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.989, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5a7c147ce899ef00150bd8b8": { - "_id": "5a7c147ce899ef00150bd8b8", - "_name": "muzzle_ar15_vendetta_precision_vp_09_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar15_vendetta_precision_vp_09_556x45", - "ShortName": "muzzle_ar15_vendetta_precision_vp_09_556x45", - "Description": "muzzle_ar15_vendetta_precision_vp_09_556x45", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_vendetta_precision_vp_09_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 4, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.991, - "CoolFactor": 1 - }, - "_proto": "5649aa744bdc2ded0b8b457e" - }, - "5beec3420db834001b095429": { - "_id": "5beec3420db834001b095429", - "_name": "muzzle_rpk16_izhmash_rpk16_std_545x39", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak74_izhmash_ak101_std_556x45", - "ShortName": "muzzle_ak74_izhmash_ak101_std_556x45", - "Description": "muzzle_ak74_izhmash_ak101_std_556x45", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_rpk16_izhmash_rpk16_std_545x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "612e0d81290d254f5e6b291a": { - "_id": "612e0d81290d254f5e6b291a", - "_name": "muzzle_all_awc_psr_muzzle_brake_86x70", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", - "ShortName": "5.56x45 AR-15 USGI A2", - "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", - "Weight": 0.177, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_all_awc_psr_muzzle_brake_86x70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "612e1889a112697a4b3a66ea", - "_parent": "612e0d81290d254f5e6b291a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "612e0e04568c120fdd294258", - "63877c99e785640d436458ea" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 1, - "Recoil": -10, - "Loudness": 25, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 0.987, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5b7d693d5acfc43bca706a3d": { - "_id": "5b7d693d5acfc43bca706a3d", - "_name": "muzzle_ar10_2a_x3_titanium_compensator_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar10_2a_x3_titanium_compensator_762x51", - "ShortName": "muzzle_ar10_2a_x3_titanium_compensator_762x51", - "Description": "muzzle_ar10_2a_x3_titanium_compensator_762x51", - "Weight": 0.06, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_2a_x3_titanium_compensator_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 4, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5a70366c8dc32e001207fb06": { - "_id": "5a70366c8dc32e001207fb06", - "_name": "muzzle_glock_double_diamond_9x19", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_glock_double_diamond_9x19", - "ShortName": "muzzle_glock_double_diamond_9x19", - "Description": "muzzle_glock_double_diamond_9x19", - "Weight": 0.063, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_glock_double_diamond_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 1, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5ac72e945acfc43f3b691116": { - "_id": "5ac72e945acfc43f3b691116", - "_name": "muzzle_ak74_izhmash_ak105_std_545x39", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak74_izhmash_ak105_std_545x39", - "ShortName": "muzzle_ak74_izhmash_ak105_std_545x39", - "Description": "muzzle_ak74_izhmash_ak105_std_545x39", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak74_izhmash_ak105_std_545x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": -5, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "622f07cfae33bc505b2c4dd5": { - "_id": "622f07cfae33bc505b2c4dd5", - "_name": "muzzle_g36_hk_incomplete_flash_hider_556x45", + "6492efe46cc7e29a6f03b2a0": { + "_id": "6492efe46cc7e29a6f03b2a0", + "_name": "muzzle_pk_zid_pkm_std_762x54r", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { @@ -168753,654 +166352,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_g36_hk_incomplete_flash_hider_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "6065c6e7132d4d12c81fd8e1": { - "_id": "6065c6e7132d4d12c81fd8e1", - "_name": "muzzle_ar10_cmmg_sv_brake_compensator_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar10_cmmg_sv_brake_compensator_762x51", - "ShortName": "muzzle_ar10_cmmg_sv_brake_compensator_762x51", - "Description": "muzzle_ar10_cmmg_sv_brake_compensator_762x51", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_cmmg_sv_brake_compensator_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 0.989, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5c878ebb2e2216001219d48a": { - "_id": "5c878ebb2e2216001219d48a", - "_name": "muzzle_ak_lantac_dgnak47b_muzzle_brake_762x39", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", - "ShortName": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", - "Description": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_lantac_dgn762b_muzzle_brake_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -13, - "Loudness": 10, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.985, - "CoolFactor": 1 - }, - "_proto": "5649aa744bdc2ded0b8b457e" - }, - "61713308d92c473c770214a0": { - "_id": "61713308d92c473c770214a0", - "_name": "muzzle_all_hk_prolonged_flash_hider_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Weight": 0.122, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_all_hk_prolonged_flash_hider_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "61713308d92c473c770214a2", - "_parent": "61713308d92c473c770214a0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6171367e1cb55961fa0fdb36" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "630f291b9f66a28b37094bb8": { - "_id": "630f291b9f66a28b37094bb8", - "_name": "muzzle_aug_steyr_a3_muzzle_brake_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", - "ShortName": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", - "Description": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", - "Weight": 0.074, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_aug_steyr_a3_muzzle_brake_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.95, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "5649aa744bdc2ded0b8b457e" - }, - "5f2aa4559b44de6b1b4e68d1": { - "_id": "5f2aa4559b44de6b1b4e68d1", - "_name": "muzzle_all_kel_tec_rfb_std_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", - "ShortName": "5.56x45 AR-15 USGI A2", - "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", - "Weight": 0.064, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_all_kel_tec_rfb_std_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "64119d1f2c6d6f921a0929f8": { - "_id": "64119d1f2c6d6f921a0929f8", - "_name": "muzzle_svt40_toz_std_762x54r", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_m1a_springfield_armory_socom_16_762x51", - "ShortName": "muzzle_m1a_springfield_armory_socom_16_762x51", - "Description": "muzzle_m1a_springfield_armory_socom_16_762x51", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_svt40_toz_std_762x54r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_front", - "_id": "64119d1f2c6d6f921a0929f9", - "_parent": "64119d1f2c6d6f921a0929f8", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "64119d672c6d6f921a0929fb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -7, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5d02676dd7ad1a049e54f6dc": { - "_id": "5d02676dd7ad1a049e54f6dc", - "_name": "muzzle_ar15_nordic_corvette_compensator_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", - "ShortName": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", - "Description": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", - "Weight": 0.125, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_nordic_corvette_compensator_556x45.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_pk_zid_pkm_std_762x54r.bundle", "rcid": "" }, "UsePrefab": { @@ -169450,94 +166402,7 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 1, - "Recoil": -8, - "Loudness": 20, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.987, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5a7037338dc32e000d46d257": { - "_id": "5a7037338dc32e000d46d257", - "_name": "muzzle_glock_carver_custom_decelerator_3_port_gen_3_9x19", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_glock_carver_custom_decelerator_3_port_gen_3_9x19", - "ShortName": "muzzle_glock_double_diamond_9x19muzzle_glock_carver_custom_decelerator_3_port_gen_3_9x19", - "Description": "muzzle_glock_carver_custom_decelerator_3_port_gen_3_9x19", - "Weight": 0.063, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_glock_carver_custom_decelerator_3_port_gen_3_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 2, - "Recoil": -8, + "Recoil": -2, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -1, @@ -169558,180 +166423,6 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "56ea6fafd2720b844b8b4593": { - "_id": "56ea6fafd2720b844b8b4593", - "_name": "muzzle_ar15_noveske_kx3_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "Пламегаситель Noveske KX3 5.56x45", - "ShortName": "KX3", - "Description": "This KX3 may be used on: \n5.56mm = 1/2x28 \n300BLK, 6.8, & 7.62 = 5/8x24\nGerman rifles = M15x1 \nM14x1LH", - "Weight": 0.204, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_noveske_kx3_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -5, - "Loudness": -20, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.94, - "HeatFactor": 0.991, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5ac72e7d5acfc40016339a02": { - "_id": "5ac72e7d5acfc40016339a02", - "_name": "muzzle_ak74_izhmash_ak103_std_762x39", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak74_izhmash_ak103_std_762x39", - "ShortName": "muzzle_ak74_izhmash_ak103_std_762x39", - "Description": "muzzle_ak74_izhmash_ak103_std_762x39", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak74_izhmash_ak103_std_762x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -7, - "Loudness": -5, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, "5649aa744bdc2ded0b8b457e": { "_id": "5649aa744bdc2ded0b8b457e", "_name": "muzzle_ak74_izhmash_std_545x39", @@ -169819,110 +166510,23 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "630f2872911356c17d06abc5": { - "_id": "630f2872911356c17d06abc5", - "_name": "muzzle_aug_steyr_a1_closed_flash_hider_556x45", + "56ea6fafd2720b844b8b4593": { + "_id": "56ea6fafd2720b844b8b4593", + "_name": "muzzle_ar15_noveske_kx3_556x45", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", - "ShortName": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", - "Description": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", - "Weight": 0.063, + "Name": "Пламегаситель Noveske KX3 5.56x45", + "ShortName": "KX3", + "Description": "This KX3 may be used on: \n5.56mm = 1/2x28 \n300BLK, 6.8, & 7.62 = 5/8x24\nGerman rifles = M15x1 \nM14x1LH", + "Weight": 0.204, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_aug_steyr_a1_closed_flash_hider_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "5649aa744bdc2ded0b8b457e" - }, - "622f0ee47762f55aaa68ac87": { - "_id": "622f0ee47762f55aaa68ac87", - "_name": "muzzle_g36_hk_complete_flash_hider_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", - "ShortName": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", - "Description": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_g36_hk_complete_flash_hider_556x45.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ar15_noveske_kx3_556x45.bundle", "rcid": "" }, "UsePrefab": { @@ -169973,9 +166577,9 @@ "Durability": 100, "Accuracy": 3, "Recoil": -5, - "Loudness": 0, + "Loudness": -20, "EffectiveDistance": 0, - "Ergonomics": 0, + "Ergonomics": -2, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -169986,30 +166590,30 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.94, + "HeatFactor": 0.991, "CoolFactor": 1 }, "_proto": "544a38634bdc2d58388b4568" }, - "5a705e128dc32e000d46d258": { - "_id": "5a705e128dc32e000d46d258", - "_name": "muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19", + "5d026791d7ad1a04a067ea63": { + "_id": "5d026791d7ad1a04a067ea63", + "_name": "muzzle_ar10_fortis_red_brake_762x51", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19", - "ShortName": "muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19", - "Description": "muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19", - "Weight": 0.036, + "Name": "muzzle_ar10_fortis_red_brake_762x51", + "ShortName": "muzzle_ar10_fortis_red_brake_762x51", + "Description": "muzzle_ar10_fortis_red_brake_762x51", + "Weight": 0.108, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ar10_fortis_red_brake_762x51.bundle", "rcid": "" }, "UsePrefab": { @@ -170039,15 +166643,7 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a6f5e048dc32e00094b97da", - "5a9685b1a2750c0032157104", - "5a6f5f078dc32e00094b97dd", - "5a702d198dc32e000b452fc3", - "5a7afa25e899ef00135e31b0", - "5a71e22f8dc32e00094b97f4", - "5a71e4f48dc32e001207fb26" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -170066,8 +166662,8 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": -1, - "Recoil": -5, + "Accuracy": 0, + "Recoil": -11, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -1, @@ -170081,7 +166677,94 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 0.983, + "CoolFactor": 1.011 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "622f128cec80d870d349b4e8": { + "_id": "622f128cec80d870d349b4e8", + "_name": "muzzle_g36_hk_4_prong_flash_hider_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", + "ShortName": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", + "Description": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", + "Weight": 0.06, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_g36_hk_4_prong_flash_hider_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", "DurabilityBurnModificator": 0.98, "HeatFactor": 0.99, "CoolFactor": 1 @@ -170194,23 +166877,23 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "5d026791d7ad1a04a067ea63": { - "_id": "5d026791d7ad1a04a067ea63", - "_name": "muzzle_ar10_fortis_red_brake_762x51", + "630f2872911356c17d06abc5": { + "_id": "630f2872911356c17d06abc5", + "_name": "muzzle_aug_steyr_a1_closed_flash_hider_556x45", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_ar10_fortis_red_brake_762x51", - "ShortName": "muzzle_ar10_fortis_red_brake_762x51", - "Description": "muzzle_ar10_fortis_red_brake_762x51", - "Weight": 0.108, + "Name": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "ShortName": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "Description": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "Weight": 0.063, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_fortis_red_brake_762x51.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_aug_steyr_a1_closed_flash_hider_556x45.bundle", "rcid": "" }, "UsePrefab": { @@ -170260,7 +166943,102 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -11, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "5649aa744bdc2ded0b8b457e" + }, + "5a705e128dc32e000d46d258": { + "_id": "5a705e128dc32e000d46d258", + "_name": "muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19", + "ShortName": "muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19", + "Description": "muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19", + "Weight": 0.036, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a6f5e048dc32e00094b97da", + "5a9685b1a2750c0032157104", + "5a6f5f078dc32e00094b97dd", + "5a702d198dc32e000b452fc3", + "5a7afa25e899ef00135e31b0", + "5a71e22f8dc32e00094b97f4", + "5a71e4f48dc32e001207fb26" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": -1, + "Recoil": -5, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -1, @@ -170274,10 +167052,97 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "622f0ee47762f55aaa68ac87": { + "_id": "622f0ee47762f55aaa68ac87", + "_name": "muzzle_g36_hk_complete_flash_hider_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", + "ShortName": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", + "Description": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_g36_hk_complete_flash_hider_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 0.983, - "CoolFactor": 1.011 + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 }, "_proto": "544a38634bdc2d58388b4568" }, @@ -170368,93 +167233,6 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "622f128cec80d870d349b4e8": { - "_id": "622f128cec80d870d349b4e8", - "_name": "muzzle_g36_hk_4_prong_flash_hider_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", - "ShortName": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", - "Description": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", - "Weight": 0.06, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_g36_hk_4_prong_flash_hider_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, "5b099b7d5acfc400186331e4": { "_id": "5b099b7d5acfc400186331e4", "_name": "muzzle_sa58_ds_arms_3_prong_trident_flash_hider_762x51", @@ -170649,23 +167427,284 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "607ffb988900dc2d9a55b6e4": { - "_id": "607ffb988900dc2d9a55b6e4", - "_name": "muzzle_ar10_surefire_procomp_762_muzzle_brake_762x51", + "5b3a16655acfc40016387a2a": { + "_id": "5b3a16655acfc40016387a2a", + "_name": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_ar10_surefire_procomp_762_muzzle_brake_762x51", - "ShortName": "muzzle_ar10_surefire_procomp_762_muzzle_brake_762x51", - "Description": "muzzle_ar10_surefire_procomp_762_muzzle_brake_762x51", - "Weight": 0.097, + "Name": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "ShortName": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "Description": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "Weight": 0.128, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_surefire_procomp_762_muzzle_brake_762x51.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_all_yankee_hill_anihilator_flash_hider_multi.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "5649aa744bdc2ded0b8b457e" + }, + "5beec3420db834001b095429": { + "_id": "5beec3420db834001b095429", + "_name": "muzzle_rpk16_izhmash_rpk16_std_545x39", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ak74_izhmash_ak101_std_556x45", + "ShortName": "muzzle_ak74_izhmash_ak101_std_556x45", + "Description": "muzzle_ak74_izhmash_ak101_std_556x45", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_rpk16_izhmash_rpk16_std_545x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5ac72e945acfc43f3b691116": { + "_id": "5ac72e945acfc43f3b691116", + "_name": "muzzle_ak74_izhmash_ak105_std_545x39", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ak74_izhmash_ak105_std_545x39", + "ShortName": "muzzle_ak74_izhmash_ak105_std_545x39", + "Description": "muzzle_ak74_izhmash_ak105_std_545x39", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ak74_izhmash_ak105_std_545x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": -5, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "6065c6e7132d4d12c81fd8e1": { + "_id": "6065c6e7132d4d12c81fd8e1", + "_name": "muzzle_ar10_cmmg_sv_brake_compensator_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar10_cmmg_sv_brake_compensator_762x51", + "ShortName": "muzzle_ar10_cmmg_sv_brake_compensator_762x51", + "Description": "muzzle_ar10_cmmg_sv_brake_compensator_762x51", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar10_cmmg_sv_brake_compensator_762x51.bundle", "rcid": "" }, "UsePrefab": { @@ -170715,268 +167754,7 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 3, - "Recoil": -8, - "Loudness": 10, - "EffectiveDistance": 0, - "Ergonomics": -1.5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.987, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "59e61eb386f77440d64f5daf": { - "_id": "59e61eb386f77440d64f5daf", - "_name": "muzzle_ak_molot_vepr_km_vpo_136_762x39", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak_molot_vepr_km_vpo_136_762x39", - "ShortName": "muzzle_ak_molot_vepr_km_vpo_136_762x39", - "Description": "muzzle_ak_molot_vepr_km_vpo_136_762x39", - "Weight": 0.02, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak_molot_vepr_km_vpo_136_762x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -4, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5cc9ad73d7f00c000e2579d4": { - "_id": "5cc9ad73d7f00c000e2579d4", - "_name": "muzzle_ak_srvv_mbrfhmb_762_762x39", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak74_izhmash_ak74m_std_545x39", - "ShortName": "muzzle_ak74_izhmash_ak74m_std_545x39", - "Description": "muzzle_ak74_izhmash_ak74m_std_545x39", - "Weight": 0.11, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak_srvv_mbrfhmb_762_762x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -11, - "Loudness": 5, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5fb65424956329274326f316": { - "_id": "5fb65424956329274326f316", - "_name": "muzzle_vector_kriss_flash_hider_std_1143x23", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_vector_kriss_flash_hider_std_1143x23", - "ShortName": "muzzle_vector_kriss_flash_hider_std_1143x23", - "Description": "muzzle_vector_kriss_flash_hider_std_1143x23", - "Weight": 0.064, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_vector_kriss_flash_hider_std_1143x23.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, + "Recoil": -6, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -1, @@ -170992,28 +167770,202 @@ "UniqueAnimationModID": 0, "muzzleModType": "brake", "DurabilityBurnModificator": 1, - "HeatFactor": 1, + "HeatFactor": 0.989, "CoolFactor": 1 }, "_proto": "544a38634bdc2d58388b4568" }, - "6130c43c67085e45ef1405a1": { - "_id": "6130c43c67085e45ef1405a1", - "_name": "muzzle_ar10_kac_qdc_muzzle_brake_kit_762x51", + "5a70366c8dc32e001207fb06": { + "_id": "5a70366c8dc32e001207fb06", + "_name": "muzzle_glock_double_diamond_9x19", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", - "ShortName": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", - "Description": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", - "Weight": 0.145, + "Name": "muzzle_glock_double_diamond_9x19", + "ShortName": "muzzle_glock_double_diamond_9x19", + "Description": "muzzle_glock_double_diamond_9x19", + "Weight": 0.063, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_kac_qdc_muzzle_brake_kit_762x51.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_glock_double_diamond_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 1, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5c878ebb2e2216001219d48a": { + "_id": "5c878ebb2e2216001219d48a", + "_name": "muzzle_ak_lantac_dgnak47b_muzzle_brake_762x39", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", + "ShortName": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", + "Description": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar10_lantac_dgn762b_muzzle_brake_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -13, + "Loudness": 10, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.985, + "CoolFactor": 1 + }, + "_proto": "5649aa744bdc2ded0b8b457e" + }, + "61713308d92c473c770214a0": { + "_id": "61713308d92c473c770214a0", + "_name": "muzzle_all_hk_prolonged_flash_hider_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Weight": 0.122, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_all_hk_prolonged_flash_hider_762x51.bundle", "rcid": "" }, "UsePrefab": { @@ -171061,14 +168013,14 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "6130c43c67085e45ef1405a3", - "_parent": "6130c43c67085e45ef1405a1", + "_id": "61713308d92c473c770214a2", + "_parent": "61713308d92c473c770214a0", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5dfa3d2b0dee1b22f862eade" + "6171367e1cb55961fa0fdb36" ] } ] @@ -171082,7 +168034,7 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 3, - "Recoil": -9, + "Recoil": -4, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -1, @@ -171097,189 +168049,15 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.96, + "DurabilityBurnModificator": 0.98, "HeatFactor": 0.99, "CoolFactor": 1 }, "_proto": "544a38634bdc2d58388b4568" }, - "5a9ea27ca2750c00137fa672": { - "_id": "5a9ea27ca2750c00137fa672", - "_name": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", - "ShortName": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", - "Description": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", - "Weight": 0.076, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak_spike_tactical_ak_dynacomp_762x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -8, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "5649aa744bdc2ded0b8b457e" - }, - "5c7951452e221644f31bfd5c": { - "_id": "5c7951452e221644f31bfd5c", - "_name": "muzzle_ak_venom_antidote_muzzle_brake_multi", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak_venom_antidote_muzzle_brake_multi", - "ShortName": "muzzle_ak_venom_antidote_muzzle_brake_multi", - "Description": "muzzle_ak_venom_antidote_muzzle_brake_multi", - "Weight": 0.096, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak_venom_antidote_muzzle_brake_multi.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 2, - "Recoil": -12, - "Loudness": 5, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.987, - "CoolFactor": 1 - }, - "_proto": "5649aa744bdc2ded0b8b457e" - }, - "5c4eec9b2e2216398b5aaba2": { - "_id": "5c4eec9b2e2216398b5aaba2", - "_name": "muzzle_sv98_izhmash_thread_muzzle_adapter_762x54", + "5b7d693d5acfc43bca706a3d": { + "_id": "5b7d693d5acfc43bca706a3d", + "_name": "muzzle_ar10_2a_x3_titanium_compensator_762x51", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { @@ -171293,113 +168071,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_sv98_izhmash_thread_muzzle_adapter_762x54.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5c4ef5002e2216398b5aaba5", - "_parent": "5c4eec9b2e2216398b5aaba2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c4eecc32e221602b412b440" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5b7d68af5acfc400170e30c3": { - "_id": "5b7d68af5acfc400170e30c3", - "_name": "muzzle_fal_ds_arms_austrian_style_muzzle_brake_long_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_sa58_ds_arms_3_prong_trident_flash_hider_762x51", - "ShortName": "muzzle_sa58_ds_arms_3_prong_trident_flash_hider_762x51", - "Description": "muzzle_sa58_ds_arms_3_prong_trident_flash_hider_762x51", - "Weight": 0.11, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_fal_ds_arms_austrian_style_muzzle_brake_long_762x51.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ar10_2a_x3_titanium_compensator_762x51.bundle", "rcid": "" }, "UsePrefab": { @@ -171449,7 +168121,7 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 4, - "Recoil": -8, + "Recoil": -6, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -1, @@ -171464,29 +168136,29 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "muzzleModType": "brake", - "DurabilityBurnModificator": 1, + "DurabilityBurnModificator": 0.96, "HeatFactor": 0.99, "CoolFactor": 1 }, "_proto": "544a38634bdc2d58388b4568" }, - "5ef61964ec7f42238c31e0c1": { - "_id": "5ef61964ec7f42238c31e0c1", - "_name": "muzzle_m1911_anarchy_outdoors_1911_muzzle_brake_1143x23", + "622f07cfae33bc505b2c4dd5": { + "_id": "622f07cfae33bc505b2c4dd5", + "_name": "muzzle_g36_hk_incomplete_flash_hider_556x45", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_m1911_anarchy_outdoors_1911_muzzle_brake_1143x23", - "ShortName": "muzzle_m1911_anarchy_outdoors_1911_muzzle_brake_1143x23", - "Description": "muzzle_m1911_anarchy_outdoors_1911_muzzle_brake_1143x23", - "Weight": 0.105, + "Name": "muzzle_ar15_kac_qd_compensator_556x45", + "ShortName": "muzzle_ar15_kac_qd_compensator_556x45", + "Description": "muzzle_ar15_kac_qd_compensator_556x45", + "Weight": 0.063, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_m1911_anarchy_outdoors_1911_muzzle_brake_1143x23.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_g36_hk_incomplete_flash_hider_556x45.bundle", "rcid": "" }, "UsePrefab": { @@ -171516,9 +168188,202 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5f3e77f59103d430b93f94c1" + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5c6d710d2e22165df16b81e7": { + "_id": "5c6d710d2e22165df16b81e7", + "_name": "muzzle_ar15_surefire_warcomp_556_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", + "ShortName": "5.56x45 AR-15 USGI A2", + "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", + "Weight": 0.064, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar15_surefire_warcomp_556_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5c7fb4f72e2216000e69e352", + "_parent": "5c6d710d2e22165df16b81e7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d6190f4bdc2d87028b4567", + "55d614004bdc2d86028b4568", + "5ea17bbc09aa976f2e7a51cd" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 2, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5649ab884bdc2ded0b8b457f": { + "_id": "5649ab884bdc2ded0b8b457f", + "_name": "muzzle_ak_zenit_dtk1_762x39_545x39", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "Дульный тормоз компенсатор Зенит ДТК-1 7.62х39 и 5.45x39 для АК", + "ShortName": "ДТК-1 АК", + "Description": "Дульный тормоз-компенсатор ДТК-1 от компании Зенит предназначен для установки на АК совметимое оружие калибра 7.62х39 и 5.45х39. Понижает отдачу и компенсирует подброс оружия. Корона на окончании дтк предназначена для разбития каленого стекла.", + "Weight": 0.128, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ak_zenit_dtk1_762x39_545x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -171538,101 +168403,12 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -10, + "Recoil": -9, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -2, "Velocity": 0, "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5bffd7ed0db834001d23ebf9": { - "_id": "5bffd7ed0db834001d23ebf9", - "_name": "muzzle_tt_pm_laser_dtk_tt", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_tt_pm_laser_dtk_tt", - "ShortName": "muzzle_tt_pm_laser_dtk_tt", - "Description": "muzzle_tt_pm_laser_dtk_tt", - "Weight": 0.036, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_tt_pm_laser_dtk_tt.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "571a28e524597720b4066567" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 2, - "Recoil": -8, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, @@ -171641,12 +168417,12 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", + "muzzleModType": "brake", "DurabilityBurnModificator": 0.98, "HeatFactor": 0.99, "CoolFactor": 1 }, - "_proto": "544a38634bdc2d58388b4568" + "_proto": "5649aa744bdc2ded0b8b457e" }, "59d64fc686f774171b243fe2": { "_id": "59d64fc686f774171b243fe2", @@ -171822,23 +168598,23 @@ }, "_proto": "5649aa744bdc2ded0b8b457e" }, - "5649ab884bdc2ded0b8b457f": { - "_id": "5649ab884bdc2ded0b8b457f", - "_name": "muzzle_ak_zenit_dtk1_762x39_545x39", + "5bffd7ed0db834001d23ebf9": { + "_id": "5bffd7ed0db834001d23ebf9", + "_name": "muzzle_tt_pm_laser_dtk_tt", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "Дульный тормоз компенсатор Зенит ДТК-1 7.62х39 и 5.45x39 для АК", - "ShortName": "ДТК-1 АК", - "Description": "Дульный тормоз-компенсатор ДТК-1 от компании Зенит предназначен для установки на АК совметимое оружие калибра 7.62х39 и 5.45х39. Понижает отдачу и компенсирует подброс оружия. Корона на окончании дтк предназначена для разбития каленого стекла.", - "Weight": 0.128, + "Name": "muzzle_tt_pm_laser_dtk_tt", + "ShortName": "muzzle_tt_pm_laser_dtk_tt", + "Description": "muzzle_tt_pm_laser_dtk_tt", + "Weight": 0.036, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak_zenit_dtk1_762x39_545x39.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_tt_pm_laser_dtk_tt.bundle", "rcid": "" }, "UsePrefab": { @@ -171868,7 +168644,9 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [], + "ConflictingItems": [ + "571a28e524597720b4066567" + ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -171887,11 +168665,11 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 0, - "Recoil": -9, + "Accuracy": 2, + "Recoil": -8, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -2, + "Ergonomics": -1, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -171902,12 +168680,12 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "brake", + "muzzleModType": "conpensator", "DurabilityBurnModificator": 0.98, "HeatFactor": 0.99, "CoolFactor": 1 }, - "_proto": "5649aa744bdc2ded0b8b457e" + "_proto": "544a38634bdc2d58388b4568" }, "5d443f8fa4b93678dd4a01aa": { "_id": "5d443f8fa4b93678dd4a01aa", @@ -172471,23 +169249,23 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "5cc82796e24e8d000f5859a8": { - "_id": "5cc82796e24e8d000f5859a8", - "_name": "muzzle_p90_fn_p90_std_57x28", + "5cff9e5ed7ad1a09407397d4": { + "_id": "5cff9e5ed7ad1a09407397d4", + "_name": "muzzle_ar15_dd_wave_muzzle_brake_556x45", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "Дульный тормоз компенсатор Ижмаш 5.45x39 для АК-74", - "ShortName": "5.56x45 АК-74", - "Description": "Штатный дульный тормоз компенсатор производства Ижмаш для автомата АК-74 и других моделей на его базе.", - "Weight": 0.1, + "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Weight": 0.109, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_p90_fn_p90_std_57x28.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_all_dd_wave_muzzle_brake_multi.bundle", "rcid": "" }, "UsePrefab": { @@ -172535,14 +169313,121 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "5cebed52d7f00c065a5ab311", - "_parent": "5cc82796e24e8d000f5859a8", + "_id": "5cff9e5ed7ad1a09407397d6", + "_parent": "5cff9e5ed7ad1a09407397d4", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5cebec00d7f00c065c53522a" + "5cff9e84d7ad1a049e54ed55" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 1, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5aafa1c2e5b5b00015042a56": { + "_id": "5aafa1c2e5b5b00015042a56", + "_name": "muzzle_m1a_springfield_armory_socom_16_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_m1a_springfield_armory_socom_16_762x51", + "ShortName": "muzzle_m1a_springfield_armory_socom_16_762x51", + "Description": "muzzle_m1a_springfield_armory_socom_16_762x51", + "Weight": 0.13, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_m1a_springfield_armory_socom_16_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_front", + "_id": "5aafa211e5b5b00014799d8a", + "_parent": "5aafa1c2e5b5b00015042a56", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5addba3e5acfc4001669f0ab", + "5aafa49ae5b5b00015042a58" ] } ] @@ -172556,6 +169441,513 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 1, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5dfa3cd1b33c0951220c079b": { + "_id": "5dfa3cd1b33c0951220c079b", + "_name": "muzzle_ar10_kac_qdc_flash_supressor_kit_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", + "ShortName": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", + "Description": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", + "Weight": 0.11, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar10_kac_qdc_flash_supressor_kit_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5dfa3cd1b33c0951220c079d", + "_parent": "5dfa3cd1b33c0951220c079b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5dfa3d2b0dee1b22f862eade" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5addbb945acfc4001a5fc44e": { + "_id": "5addbb945acfc4001a5fc44e", + "_name": "muzzle_m14_smith_enterprise_good_iron_muzzle_brake_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_m1a_springfield_armory_socom_16_762x51", + "ShortName": "muzzle_m1a_springfield_armory_socom_16_762x51", + "Description": "muzzle_m1a_springfield_armory_socom_16_762x51", + "Weight": 0.14, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_m14_smith_enterprise_good_iron_muzzle_brake_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_front", + "_id": "5addbb945acfc4001a5fc450", + "_parent": "5addbb945acfc4001a5fc44e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5addba3e5acfc4001669f0ab", + "5aafa49ae5b5b00015042a58" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 1, + "Recoil": -7, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.991, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5a7b32a2e899ef00135e345a": { + "_id": "5a7b32a2e899ef00135e345a", + "_name": "muzzle_glock_strike_industries_g4_slide_compensator_9x19", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_glock_strike_industries_g4_slide_compensator_9x19", + "ShortName": "muzzle_glock_strike_industries_g4_slide_compensator_9x19", + "Description": "muzzle_glock_strike_industries_g4_slide_compensator_9x19", + "Weight": 0.105, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_glock_strike_industries_g4_slide_compensator_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a7ad0c451dfba0013379712", + "5a7037338dc32e000d46d257", + "5a70366c8dc32e001207fb06", + "5a705e128dc32e000d46d258", + "5a7ad1fb51dfba0013379715", + "5a6b585a8dc32e5a9c28b4f1", + "5a6b592c8dc32e00094b97bf", + "5a6b59a08dc32e000b452fb7", + "5c7e8fab2e22165df16b889b", + "5a33a8ebc4a282000c5a950d", + "5c6165902e22160010261b28", + "5a32a064c4a28200741e22de", + "5a7ad74e51dfba0015068f45" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -10, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "618178aa1cb55961fa0fdc80": { + "_id": "618178aa1cb55961fa0fdc80", + "_name": "muzzle_ar10_aac_scar_h_miter_51t_flash_hider_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Weight": 0.16, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar10_aac_scar_h_miter_51t_flash_hider_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "618178aa1cb55961fa0fdc82", + "_parent": "618178aa1cb55961fa0fdc80", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a34fe59c4a282000b1521a2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 4, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "58949dea86f77409483e16a8": { + "_id": "58949dea86f77409483e16a8", + "_name": "muzzle_mpx_sig_mpx_a2_9x19", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_mpx_sig_mpx_a2_9x19", + "ShortName": "muzzle_mpx_sig_mpx_a2_9x19", + "Description": "muzzle_mpx_sig_mpx_a2_9x19", + "Weight": 0.063, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_mpx_sig_mpx_a2_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, "Recoil": -5, "Loudness": 0, "EffectiveDistance": 0, @@ -172572,9 +169964,1451 @@ "UniqueAnimationModID": 0, "muzzleModType": "brake", "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "630f28f0cadb1fe05e06f004": { + "_id": "630f28f0cadb1fe05e06f004", + "_name": "muzzle_aug_steyr_a3_closed_flash_hider_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "ShortName": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "Description": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "Weight": 0.064, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_aug_steyr_a3_closed_flash_hider_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.95, "HeatFactor": 0.99, "CoolFactor": 1 }, + "_proto": "5649aa744bdc2ded0b8b457e" + }, + "612e0e3c290d254f5e6b291d": { + "_id": "612e0e3c290d254f5e6b291d", + "_name": "muzzle_ar10_taa_zk_38_muzzle_brake_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Weight": 0.035, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar10_taa_zk_38_muzzle_brake_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 10, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.989, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "626667e87379c44d557b7550": { + "_id": "626667e87379c44d557b7550", + "_name": "muzzle_ar15_kac_qdc_3_prong_flash_eliminator_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar15_silencerco_asr_flash_hider_556x45", + "ShortName": "muzzle_ar15_silencerco_asr_flash_hider_556x45", + "Description": "muzzle_ar15_silencerco_asr_flash_hider_556x45", + "Weight": 0.065, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar15_kac_qdc_3_prong_flash_eliminator_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "626667e87379c44d557b7552", + "_parent": "626667e87379c44d557b7550", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "626673016f1edc06f30cf6d5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 20, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 1, + "HeatFactor": 0.989, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5df35e7f2a78646d96665dd4": { + "_id": "5df35e7f2a78646d96665dd4", + "_name": "muzzle_t5000_orsis_t5000m_std_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_dvl-10_lobaev_dvl-10_m2_std_308", + "ShortName": "muzzle_dvl-10_lobaev_dvl-10_m2_std_308", + "Description": "muzzle_dvl-10_lobaev_dvl-10_m2_std_308", + "Weight": 0.098, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_t5000_orsis_t5000m_std_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 1, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5fbcbd10ab884124df0cd563": { + "_id": "5fbcbd10ab884124df0cd563", + "_name": "muzzle_base_sig_two_port_brake_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_base_sig_muzzle_break_2_762x51", + "ShortName": "muzzle_base_sig_muzzle_break_2_762x51", + "Description": "muzzle_base_sig_muzzle_break_2_762x51", + "Weight": 0.095, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_base_sig_two_port_brake_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "615d8f5dd92c473c770212ef": { + "_id": "615d8f5dd92c473c770212ef", + "_name": "muzzle_ak_hexagon_reactor_muzzle_brake_545x39", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "Дульный тормоз PSR 7.62x51", + "ShortName": "PSR 7.62x51", + "Description": "Дульный тормоз 7.62x51 PSR от компании AWC", + "Weight": 0.095, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ak_hexagon_reactor_muzzle_brake_545x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "615d8f5dd92c473c770212f1", + "_parent": "615d8f5dd92c473c770212ef", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "615d8f8567085e45ef1409ca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -12, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5c7e5f112e221600106f4ede": { + "_id": "5c7e5f112e221600106f4ede", + "_name": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", + "ShortName": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", + "Description": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", + "Weight": 0.122, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar15_aac_blackout_51t_flash_hider_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5c7e5f112e221600106f4ee0", + "_parent": "5c7e5f112e221600106f4ede", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a34fe59c4a282000b1521a2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5ab3afb2d8ce87001660304d": { + "_id": "5ab3afb2d8ce87001660304d", + "_name": "muzzle_m1a_smith_enterprise_socom_16_threaded_gas_lock_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_m1a_smith_enterprise_socom_16_threaded_gas_lock_762x51", + "ShortName": "muzzle_m1a_smith_enterprise_socom_16_threaded_gas_lock_762x51", + "Description": "muzzle_m1a_smith_enterprise_socom_16_threaded_gas_lock_762x51", + "Weight": 0.11, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_m1a_smith_enterprise_socom_16_threaded_gas_lock_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_front", + "_id": "5ab3afb2d8ce87001660304f", + "_parent": "5ab3afb2d8ce87001660304d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5addba3e5acfc4001669f0ab", + "5aafa49ae5b5b00015042a58" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5ab3b244d8ce8700182eccb6", + "_parent": "5ab3afb2d8ce87001660304d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7d693d5acfc43bca706a3d", + "5c878e9d2e2216000f201903", + "5bbdb8bdd4351e4502011460", + "5addbba15acfc400185c2854", + "5c7954d52e221600106f4cc7", + "59bffc1f86f77435b128b872" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -2, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "6386120cd6baa055ad1e201c": { + "_id": "6386120cd6baa055ad1e201c", + "_name": "muzzle_ar15_griffin_gatelok_hammer_comp_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", + "ShortName": "5.56x45 AR-15 USGI A2", + "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", + "Weight": 0.068, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar15_griffin_gatelok_hammer_comp_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "6386120cd6baa055ad1e201d", + "_parent": "6386120cd6baa055ad1e201c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "638612b607dfed1ccb7206ba" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 1.05, + "CoolFactor": 1 + } + }, + "5c07c5ed0db834001b73571c": { + "_id": "5c07c5ed0db834001b73571c", + "_name": "muzzle_mp5_hk_noveske_style_3_lug_9x19", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_mp5_hk_noveske_style_3_lug_9x19", + "ShortName": "muzzle_mp5_hk_noveske_style_3_lug_9x19", + "Description": "muzzle_mp5_hk_noveske_style_3_lug_9x19", + "Weight": 0.38, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_mp5_hk_noveske_style_3_lug_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -11, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.97, + "HeatFactor": 0.991, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "59e8a00d86f7742ad93b569c": { + "_id": "59e8a00d86f7742ad93b569c", + "_name": "muzzle_ak_molot_vpo_209_366TKM", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ak_molot_vpo_209_366TKM", + "ShortName": "muzzle_ak_molot_vpo_209_366TKM", + "Description": "muzzle_ak_molot_vpo_209_366TKM", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ak_molot_vpo_209_366tkm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5998597786f77414ea6da093": { + "_id": "5998597786f77414ea6da093", + "_name": "muzzle_pp-19-01_izhmash_vityaz_std_9x19", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_saiga_9_izhmash_saiga_9_std_9x19", + "ShortName": "muzzle_saiga_9_izhmash_saiga_9_std_9x19", + "Description": "muzzle_saiga_9_izhmash_saiga_9_std_9x19", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_pp-19-01_izhmash_vityaz_std_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5a34fd2bc4a282329a73b4c5": { + "_id": "5a34fd2bc4a282329a73b4c5", + "_name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Weight": 0.122, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar10_aac_blackout_51t_flash_hider_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5a34fd2bc4a282329a73b4c6", + "_parent": "5a34fd2bc4a282329a73b4c5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a34fe59c4a282000b1521a2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "60337f5dce399e10262255d1": { + "_id": "60337f5dce399e10262255d1", + "_name": "muzzle_all_stmarms_stm9_muzzle_brake_9x19", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", + "ShortName": "5.56x45 AR-15 USGI A2", + "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", + "Weight": 0.084, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_all_stmarms_stm9_muzzle_brake_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5cf78720d7f00c06595bc93e": { + "_id": "5cf78720d7f00c06595bc93e", + "_name": "muzzle_base_lantac_blast_mitigation_device_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_base_lantac_blast_mitigation_device_762x51", + "ShortName": "muzzle_base_lantac_blast_mitigation_device_762x51", + "Description": "muzzle_base_lantac_blast_mitigation_device_762x51", + "Weight": 0.176, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_base_lantac_blast_mitigation_device_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": -10, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.987, + "CoolFactor": 1 + }, "_proto": "544a38634bdc2d58388b4568" }, "612e0d3767085e45ef14057f": { @@ -172684,23 +171518,392 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "57dc324a24597759501edc20": { - "_id": "57dc324a24597759501edc20", - "_name": "muzzle_aks74u_izhmash_std_545x39", + "5cf6935bd7f00c06585fb791": { + "_id": "5cf6935bd7f00c06585fb791", + "_name": "muzzle_all_taccom_carbine_brake_multi", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_aks74u_izhmash_std_545x39", - "ShortName": "muzzle_aks74u_izhmash_std_545x39", - "Description": "muzzle_aks74u_izhmash_std_545x39", - "Weight": 0.1, + "Name": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", + "ShortName": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", + "Description": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", + "Weight": 0.079, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_aks74u_izhmash_std_545x39.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_all_taccom_carabine_brake_multi.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 2, + "Recoil": -8, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.987, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "64943b74e9998d641b0412ed": { + "_id": "64943b74e9998d641b0412ed", + "_name": "muzzle_ar15_walkerdr_nero_556_inconel_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", + "ShortName": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", + "Description": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", + "Weight": 0.108, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar15_walkerdr_nero_556_inconel_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c78f2882e22165df16b832e" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -7, + "Loudness": 5, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.97, + "HeatFactor": 0.994, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5dcbe965e4ed22586443a79d": { + "_id": "5dcbe965e4ed22586443a79d", + "_name": "muzzle_ar10_dt_mdr_std_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar15_vendetta_precision_vp_09_556x45", + "ShortName": "muzzle_ar15_vendetta_precision_vp_09_556x45", + "Description": "muzzle_ar15_vendetta_precision_vp_09_556x45", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar15_dt_mdr_std_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 1, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "5649aa744bdc2ded0b8b457e" + }, + "5ba26acdd4351e003562908e": { + "_id": "5ba26acdd4351e003562908e", + "_name": "muzzle_mp7_hk_a1_std_46x30", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_mp7_hk_a1_std_46x30", + "ShortName": "muzzle_mp7_hk_a1_std_46x30", + "Description": "muzzle_mp7_hk_a1_std_46x30", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_mp7_hk_a1_std_46x30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5ba26eaad4351e0034777fb6", + "_parent": "5ba26acdd4351e003562908e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26ae8d4351e00367f9bdb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "630f291b9f66a28b37094bb8": { + "_id": "630f291b9f66a28b37094bb8", + "_name": "muzzle_aug_steyr_a3_muzzle_brake_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "ShortName": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "Description": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "Weight": 0.074, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_aug_steyr_a3_muzzle_brake_556x45.bundle", "rcid": "" }, "UsePrefab": { @@ -172753,6 +171956,93 @@ "Recoil": -6, "Loudness": 0, "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.95, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "5649aa744bdc2ded0b8b457e" + }, + "5ac72e615acfc43f67248aa0": { + "_id": "5ac72e615acfc43f67248aa0", + "_name": "muzzle_ak74_izhmash_ak101_std_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ak74_izhmash_ak101_std_556x45", + "ShortName": "muzzle_ak74_izhmash_ak101_std_556x45", + "Description": "muzzle_ak74_izhmash_ak101_std_556x45", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ak74_izhmash_ak101_std_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -7, + "Loudness": 0, + "EffectiveDistance": 0, "Ergonomics": -2, "Velocity": 0, "RaidModdable": true, @@ -172769,112 +172059,25 @@ "HeatFactor": 1, "CoolFactor": 1 }, - "_proto": "5649aa744bdc2ded0b8b457e" - }, - "615d8e2f1cb55961fa0fd9a4": { - "_id": "615d8e2f1cb55961fa0fd9a4", - "_name": "muzzle_ar15_hk_blitz_flash_hider_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar15_ferfrans_muzzle_brake_556x45", - "ShortName": "muzzle_ar15_ferfrans_muzzle_brake_556x45", - "Description": "muzzle_ar15_ferfrans_muzzle_brake_556x45", - "Weight": 0.085, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_hk_blitz_flash_hider_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 1, - "Recoil": -8, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.987, - "CoolFactor": 1 - }, "_proto": "544a38634bdc2d58388b4568" }, - "5f633f791b231926f2329f13": { - "_id": "5f633f791b231926f2329f13", - "_name": "muzzle_ak74_jmac_rrd_4c_multi", + "5a7c147ce899ef00150bd8b8": { + "_id": "5a7c147ce899ef00150bd8b8", + "_name": "muzzle_ar15_vendetta_precision_vp_09_556x45", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_ak74_jmac_rrd_4c_multi", - "ShortName": "muzzle_ak74_jmac_rrd_4c_multi", - "Description": "muzzle_ak74_jmac_rrd_4c_multi", - "Weight": 0.085, + "Name": "muzzle_ar15_vendetta_precision_vp_09_556x45", + "ShortName": "muzzle_ar15_vendetta_precision_vp_09_556x45", + "Description": "muzzle_ar15_vendetta_precision_vp_09_556x45", + "Weight": 0.2, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak74_jmac_rrd_4c_multi.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ar15_vendetta_precision_vp_09_556x45.bundle", "rcid": "" }, "UsePrefab": { @@ -172923,9 +172126,9 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 0, - "Recoil": -13, - "Loudness": 15, + "Accuracy": 4, + "Recoil": -6, + "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -2, "Velocity": 0, @@ -172940,28 +172143,28 @@ "UniqueAnimationModID": 0, "muzzleModType": "brake", "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.987, + "HeatFactor": 0.991, "CoolFactor": 1 }, "_proto": "5649aa744bdc2ded0b8b457e" }, - "5caf17c9ae92150b30006be1": { - "_id": "5caf17c9ae92150b30006be1", - "_name": "muzzle_ash12_ckib_ash12_std_127x55", + "612e0e55a112697a4b3a66e7": { + "_id": "612e0e55a112697a4b3a66e7", + "_name": "muzzle_ar15_taa_zk_23_muzzle_brake_556x45", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "Дульный тормоз компенсатор Ижмаш 5.45x39 для АК-74", - "ShortName": "5.56x45 АК-74", - "Description": "Штатный дульный тормоз компенсатор производства Ижмаш для автомата АК-74 и других моделей на его базе.", - "Weight": 0.15, + "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Weight": 0.028, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ash12_ckib_ash12_std_127x55.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ar15_taa_zk_23_muzzle_brake_556x45.bundle", "rcid": "" }, "UsePrefab": { @@ -173011,10 +172214,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -17, - "Loudness": 0, + "Recoil": -6, + "Loudness": 10, "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": 0, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -173025,109 +172228,22 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "brake", + "muzzleModType": "conpensator", "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, + "HeatFactor": 0.989, "CoolFactor": 1 }, "_proto": "544a38634bdc2d58388b4568" }, - "58889c7324597754281f9439": { - "_id": "58889c7324597754281f9439", - "_name": "muzzle_dvl-10_lobaev_dvl-10_std_308", + "5f2aa4559b44de6b1b4e68d1": { + "_id": "5f2aa4559b44de6b1b4e68d1", + "_name": "muzzle_all_kel_tec_rfb_std_762x51", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_dvl-10_lobaev_dvl-10_std_308", - "ShortName": "muzzle_dvl-10_lobaev_dvl-10_std_308", - "Description": "muzzle_dvl-10_lobaev_dvl-10_std_308", - "Weight": 0.105, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_dvl-10_lobaev_dvl-10_std_308.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -8, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.97, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5fbbc3324e8a554c40648348": { - "_id": "5fbbc3324e8a554c40648348", - "_name": "muzzle_vector_kriss_flash_hider_std_9x19", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_vector_kriss_flash_hider_std_9x19", - "ShortName": "muzzle_vector_kriss_flash_hider_std_9x19", - "Description": "muzzle_vector_kriss_flash_hider_std_9x19", + "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", + "ShortName": "5.56x45 AR-15 USGI A2", + "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", "Weight": 0.064, "BackgroundColor": "blue", "Width": 1, @@ -173135,7 +172251,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_vector_kriss_flash_hider_std_9x19.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_all_kel_tec_rfb_std_762x51.bundle", "rcid": "" }, "UsePrefab": { @@ -173206,23 +172322,23 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "5fc23636016cce60e8341b05": { - "_id": "5fc23636016cce60e8341b05", - "_name": "muzzle_all_silencerco_ac858_asr_muzzle_brake_86x70", + "5d02676dd7ad1a049e54f6dc": { + "_id": "5d02676dd7ad1a049e54f6dc", + "_name": "muzzle_ar15_nordic_corvette_compensator_556x45", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_all_silencerco_ac858_asr_86x70", - "ShortName": "muzzle_all_silencerco_ac858_asr_86x70", - "Description": "muzzle_all_silencerco_ac858_asr_86x70", - "Weight": 0.11, + "Name": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", + "ShortName": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", + "Description": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", + "Weight": 0.125, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_all_silencerco_ac858_asr_muzzle_brake_86x70.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ar15_nordic_corvette_compensator_556x45.bundle", "rcid": "" }, "UsePrefab": { @@ -173272,7 +172388,94 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 1, - "Recoil": -6, + "Recoil": -8, + "Loudness": 20, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.987, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5c878e9d2e2216000f201903": { + "_id": "5c878e9d2e2216000f201903", + "_name": "muzzle_ar10_lantac_dgn762b_muzzle_brake_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", + "ShortName": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", + "Description": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar10_lantac_dgn762b_muzzle_brake_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -11, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -2, @@ -173287,29 +172490,29 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 0.989, - "CoolFactor": 1 + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.99, + "CoolFactor": 1.006 }, "_proto": "5649aa744bdc2ded0b8b457e" }, - "5cdd7693d7f00c0010373aa5": { - "_id": "5cdd7693d7f00c0010373aa5", - "_name": "muzzle_ar10_precision_armament_m11_severe_duty_muzzle_brake_762x51", + "5a7037338dc32e000d46d257": { + "_id": "5a7037338dc32e000d46d257", + "_name": "muzzle_glock_carver_custom_decelerator_3_port_gen_3_9x19", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", - "ShortName": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", - "Description": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", - "Weight": 0.12, + "Name": "muzzle_glock_carver_custom_decelerator_3_port_gen_3_9x19", + "ShortName": "muzzle_glock_double_diamond_9x19muzzle_glock_carver_custom_decelerator_3_port_gen_3_9x19", + "Description": "muzzle_glock_carver_custom_decelerator_3_port_gen_3_9x19", + "Weight": 0.063, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_precision_armament_m11_severe_duty_muzzle_brake_762x51.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_glock_carver_custom_decelerator_3_port_gen_3_9x19.bundle", "rcid": "" }, "UsePrefab": { @@ -173359,7 +172562,7 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 2, - "Recoil": -7, + "Recoil": -8, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -1, @@ -173373,13 +172576,1291 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "59e61eb386f77440d64f5daf": { + "_id": "59e61eb386f77440d64f5daf", + "_name": "muzzle_ak_molot_vepr_km_vpo_136_762x39", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ak_molot_vepr_km_vpo_136_762x39", + "ShortName": "muzzle_ak_molot_vepr_km_vpo_136_762x39", + "Description": "muzzle_ak_molot_vepr_km_vpo_136_762x39", + "Weight": 0.02, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ak_molot_vepr_km_vpo_136_762x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -4, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5fb65424956329274326f316": { + "_id": "5fb65424956329274326f316", + "_name": "muzzle_vector_kriss_flash_hider_std_1143x23", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_vector_kriss_flash_hider_std_1143x23", + "ShortName": "muzzle_vector_kriss_flash_hider_std_1143x23", + "Description": "muzzle_vector_kriss_flash_hider_std_1143x23", + "Weight": 0.064, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_vector_kriss_flash_hider_std_1143x23.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "6130c43c67085e45ef1405a1": { + "_id": "6130c43c67085e45ef1405a1", + "_name": "muzzle_ar10_kac_qdc_muzzle_brake_kit_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", + "ShortName": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", + "Description": "muzzle_ar15_aac_blackout_51t_flash_hider_556x45", + "Weight": 0.145, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar10_kac_qdc_muzzle_brake_kit_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "6130c43c67085e45ef1405a3", + "_parent": "6130c43c67085e45ef1405a1", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5dfa3d2b0dee1b22f862eade" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -9, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5c7951452e221644f31bfd5c": { + "_id": "5c7951452e221644f31bfd5c", + "_name": "muzzle_ak_venom_antidote_muzzle_brake_multi", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ak_venom_antidote_muzzle_brake_multi", + "ShortName": "muzzle_ak_venom_antidote_muzzle_brake_multi", + "Description": "muzzle_ak_venom_antidote_muzzle_brake_multi", + "Weight": 0.096, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ak_venom_antidote_muzzle_brake_multi.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 2, + "Recoil": -12, + "Loudness": 5, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, "muzzleModType": "brake", "DurabilityBurnModificator": 0.96, "HeatFactor": 0.987, "CoolFactor": 1 }, + "_proto": "5649aa744bdc2ded0b8b457e" + }, + "5a9ea27ca2750c00137fa672": { + "_id": "5a9ea27ca2750c00137fa672", + "_name": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", + "ShortName": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", + "Description": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", + "Weight": 0.076, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ak_spike_tactical_ak_dynacomp_762x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -8, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "5649aa744bdc2ded0b8b457e" + }, + "5c4eec9b2e2216398b5aaba2": { + "_id": "5c4eec9b2e2216398b5aaba2", + "_name": "muzzle_sv98_izhmash_thread_muzzle_adapter_762x54", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar10_2a_x3_titanium_compensator_762x51", + "ShortName": "muzzle_ar10_2a_x3_titanium_compensator_762x51", + "Description": "muzzle_ar10_2a_x3_titanium_compensator_762x51", + "Weight": 0.06, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_sv98_izhmash_thread_muzzle_adapter_762x54.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5c4ef5002e2216398b5aaba5", + "_parent": "5c4eec9b2e2216398b5aaba2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c4eecc32e221602b412b440" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, "_proto": "544a38634bdc2d58388b4568" }, + "5b7d68af5acfc400170e30c3": { + "_id": "5b7d68af5acfc400170e30c3", + "_name": "muzzle_fal_ds_arms_austrian_style_muzzle_brake_long_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_sa58_ds_arms_3_prong_trident_flash_hider_762x51", + "ShortName": "muzzle_sa58_ds_arms_3_prong_trident_flash_hider_762x51", + "Description": "muzzle_sa58_ds_arms_3_prong_trident_flash_hider_762x51", + "Weight": 0.11, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_fal_ds_arms_austrian_style_muzzle_brake_long_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 4, + "Recoil": -8, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5ef61964ec7f42238c31e0c1": { + "_id": "5ef61964ec7f42238c31e0c1", + "_name": "muzzle_m1911_anarchy_outdoors_1911_muzzle_brake_1143x23", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_m1911_anarchy_outdoors_1911_muzzle_brake_1143x23", + "ShortName": "muzzle_m1911_anarchy_outdoors_1911_muzzle_brake_1143x23", + "Description": "muzzle_m1911_anarchy_outdoors_1911_muzzle_brake_1143x23", + "Weight": 0.105, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_m1911_anarchy_outdoors_1911_muzzle_brake_1143x23.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5f3e77f59103d430b93f94c1" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -10, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5943ee5a86f77413872d25ec": { + "_id": "5943ee5a86f77413872d25ec", + "_name": "muzzle_ar15_pws_cqb_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar15_pws_cqb_556x45", + "ShortName": "muzzle_ar15_pws_cqb_556x45", + "Description": "muzzle_ar15_pws_cqb_556x45", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar15_pws_cqb_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -8, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.989, + "CoolFactor": 1 + }, + "_proto": "5649aa744bdc2ded0b8b457e" + }, + "5943eeeb86f77412d6384f6b": { + "_id": "5943eeeb86f77412d6384f6b", + "_name": "muzzle_ak74_pws_cqb74_545x39", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar15_pws_cqb_556x45", + "ShortName": "muzzle_ar15_pws_cqb_556x45", + "Description": "muzzle_ar15_pws_cqb_556x45", + "Weight": 0.19, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar15_pws_cqb_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -11, + "Loudness": 5, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.989, + "CoolFactor": 1 + }, + "_proto": "5649aa744bdc2ded0b8b457e" + }, + "5bbdb83fd4351e44f824c44b": { + "_id": "5bbdb83fd4351e44f824c44b", + "_name": "muzzle_mosin_tacfire_tanker_style_762x54r", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_mosin_tacfire_tanker_style_762x54r", + "ShortName": "muzzle_mosin_tacfire_tanker_style_762x54r", + "Description": "muzzle_mosin_tacfire_tanker_style_762x54r", + "Weight": 0.25, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_mosin_tacfire_tanker_style_762x54r.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 2, + "Recoil": -9, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5addbb6e5acfc408fb1393fd": { + "_id": "5addbb6e5acfc408fb1393fd", + "_name": "muzzle_m1a_springfield_armory_national_match_flash_suppressor_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "M1Amuzzle_m1a_springfield_armory_national_match_flash_suppressor_762x51", + "ShortName": "M1Amuzzle_m1a_springfield_armory_national_match_flash_suppressor_762x51", + "Description": "M1Amuzzle_m1a_springfield_armory_national_match_flash_suppressor_762x51", + "Weight": 0.14, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_m1a_springfield_armory_national_match_flash_suppressor_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_front", + "_id": "5addbb6e5acfc408fb1393ff", + "_parent": "5addbb6e5acfc408fb1393fd", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5addba3e5acfc4001669f0ab", + "5aafa49ae5b5b00015042a58" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 2, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5bc5a35cd4351e450201232f": { + "_id": "5bc5a35cd4351e450201232f", + "_name": "muzzle_mosin_witt_machine_custom_clamp_on_muzzle_brake_762x54r", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_mosin_tacfire_tanker_style_762x54r", + "ShortName": "muzzle_mosin_tacfire_tanker_style_762x54r", + "Description": "muzzle_mosin_tacfire_tanker_style_762x54r", + "Weight": 0.17, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_mosin_witt_machine_custom_clamp_on_muzzle_brake_762x54r.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": -1, + "Recoil": -20, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.97, + "HeatFactor": 0.987, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "626a74340be03179a165e30c": { + "_id": "626a74340be03179a165e30c", + "_name": "muzzle_ar15_yankee_hill_phantom_aggressive_end_flash_hider_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "ShortName": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "Description": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "Weight": 0.063, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar15_yankee_hill_phantom_aggressive_end_flash_hider_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "5649aa744bdc2ded0b8b457e" + }, "5ac72e725acfc400180ae701": { "_id": "5ac72e725acfc400180ae701", "_name": "muzzle_ak74_izhmash_ak102_std_556x45", @@ -173467,23 +173948,23 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "5c78f2882e22165df16b832e": { - "_id": "5c78f2882e22165df16b832e", - "_name": "muzzle_ar15_sai_jail_break_556x45", + "5c4ee3d62e2216152006f302": { + "_id": "5c4ee3d62e2216152006f302", + "_name": "muzzle_sv-98_srw_dtk_jet_mk2_762x54r", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", - "ShortName": "5.56x45 AR-15 USGI A2", - "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", - "Weight": 0.064, + "Name": "muzzle_ar10_2a_x3_titanium_compensator_762x51", + "ShortName": "muzzle_ar10_2a_x3_titanium_compensator_762x51", + "Description": "muzzle_ar10_2a_x3_titanium_compensator_762x51", + "Weight": 0.46, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_sai_jail_break_556x45.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_sv-98_srw_dtk_jet_mk2_762x54r.bundle", "rcid": "" }, "UsePrefab": { @@ -173513,33 +173994,7 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "56ea6fafd2720b844b8b4593", - "5943ee5a86f77413872d25ec", - "5f6339d53ada5942720e2dc3", - "5c7954d52e221600106f4cc7", - "59bffc1f86f77435b128b872", - "5a9fbb84a2750c00137fa685", - "5a34fe59c4a282000b1521a2", - "60926df0132d4d12c81fd9df", - "57da93632459771cb65bf83f", - "57dbb57e2459774673234890", - "5dfa3d2b0dee1b22f862eade", - "55d6190f4bdc2d87028b4567", - "55d614004bdc2d86028b4568", - "5ea17bbc09aa976f2e7a51cd", - "5d44064fa4b9361e4f6eb8b5", - "5cff9e84d7ad1a049e54ed55", - "5d440b93a4b9364276578d4b", - "5d440b9fa4b93601354d480c", - "60339954d62c9b14ed777c06", - "626673016f1edc06f30cf6d5", - "62669bccdb9ebb4daa44cd14", - "638612b607dfed1ccb7206ba", - "63877c99e785640d436458ea", - "63d3ce0446bd475bcb50f55f", - "63d3d44a2a49307baf09386d" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -173558,9 +174013,9 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 3, - "Recoil": -6, - "Loudness": 5, + "Accuracy": 6, + "Recoil": -13, + "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -2, "Velocity": 0, @@ -173573,30 +174028,30 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.981, - "CoolFactor": 1.016 + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.989, + "CoolFactor": 1 }, "_proto": "544a38634bdc2d58388b4568" }, - "5c7fb51d2e2216001219ce11": { - "_id": "5c7fb51d2e2216001219ce11", - "_name": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", + "5d1f819086f7744b355c219b": { + "_id": "5d1f819086f7744b355c219b", + "_name": "muzzle_ar10_dd_wave_muzzle_brake_762x51", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", - "ShortName": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", - "Description": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", - "Weight": 0.064, + "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Weight": 0.109, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_surefire_sf3p_flash_hider_556x45.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_all_dd_wave_muzzle_brake_multi.bundle", "rcid": "" }, "UsePrefab": { @@ -173644,16 +174099,14 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "5c7fb51d2e2216001219ce13", - "_parent": "5c7fb51d2e2216001219ce11", + "_id": "5d1f819086f7744b355c219d", + "_parent": "5d1f819086f7744b355c219b", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "55d6190f4bdc2d87028b4567", - "55d614004bdc2d86028b4568", - "5ea17bbc09aa976f2e7a51cd" + "5cff9e84d7ad1a049e54ed55" ] } ] @@ -173666,7 +174119,7 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 3, + "Accuracy": 1, "Recoil": -6, "Loudness": 0, "EffectiveDistance": 0, @@ -173681,8 +174134,8 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.98, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.96, "HeatFactor": 0.99, "CoolFactor": 1 }, @@ -173862,93 +174315,6 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "5c4ee3d62e2216152006f302": { - "_id": "5c4ee3d62e2216152006f302", - "_name": "muzzle_sv-98_srw_dtk_jet_mk2_762x54r", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar10_2a_x3_titanium_compensator_762x51", - "ShortName": "muzzle_ar10_2a_x3_titanium_compensator_762x51", - "Description": "muzzle_ar10_2a_x3_titanium_compensator_762x51", - "Weight": 0.46, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_sv-98_srw_dtk_jet_mk2_762x54r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 6, - "Recoil": -13, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.989, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, "5ac7655e5acfc40016339a19": { "_id": "5ac7655e5acfc40016339a19", "_name": "muzzle_ak74_izhmash_ak74m_std_545x39", @@ -174036,6 +174402,114 @@ }, "_proto": "544a38634bdc2d58388b4568" }, + "5c7fb51d2e2216001219ce11": { + "_id": "5c7fb51d2e2216001219ce11", + "_name": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", + "ShortName": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", + "Description": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", + "Weight": 0.064, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar15_surefire_sf3p_flash_hider_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5c7fb51d2e2216001219ce13", + "_parent": "5c7fb51d2e2216001219ce11", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d6190f4bdc2d87028b4567", + "55d614004bdc2d86028b4568", + "5ea17bbc09aa976f2e7a51cd" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -6, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, "615d8eb350224f204c1da1cf": { "_id": "615d8eb350224f204c1da1cf", "_name": "muzzle_ar10_surefire_warden_direct_thread_blast_regulator_762x51", @@ -174123,118 +174597,23 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "5c6beec32e221601da3578f2": { - "_id": "5c6beec32e221601da3578f2", - "_name": "muzzle_p226_tj_compensator_9x19", + "5cc9b815d7f00c000e2579d6": { + "_id": "5cc9b815d7f00c000e2579d6", + "_name": "muzzle_ar15_troy_claymore_muzzle_brake_556_556x45", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19", - "ShortName": "muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19", - "Description": "muzzle_glock_lone_wolf_alphawolf_bullnosed_9x19", - "Weight": 0.036, + "Name": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", + "ShortName": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", + "Description": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", + "Weight": 0.064, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_p226_tj_compensator_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a6f5e048dc32e00094b97da", - "5a9685b1a2750c0032157104", - "5a6f5f078dc32e00094b97dd", - "5a702d198dc32e000b452fc3", - "5a7afa25e899ef00135e31b0", - "5a71e22f8dc32e00094b97f4", - "5a71e4f48dc32e001207fb26" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": -2, - "Recoil": -8, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 1, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5c07c5ed0db834001b73571c": { - "_id": "5c07c5ed0db834001b73571c", - "_name": "muzzle_mp5_hk_noveske_style_3_lug_9x19", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_mp5_hk_noveske_style_3_lug_9x19", - "ShortName": "muzzle_mp5_hk_noveske_style_3_lug_9x19", - "Description": "muzzle_mp5_hk_noveske_style_3_lug_9x19", - "Weight": 0.38, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_mp5_hk_noveske_style_3_lug_9x19.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ar15_troy_claymore_muzzle_brake_556_556x45.bundle", "rcid": "" }, "UsePrefab": { @@ -174283,479 +174662,7 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 0, - "Recoil": -11, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.97, - "HeatFactor": 0.991, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5943eeeb86f77412d6384f6b": { - "_id": "5943eeeb86f77412d6384f6b", - "_name": "muzzle_ak74_pws_cqb74_545x39", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar15_pws_cqb_556x45", - "ShortName": "muzzle_ar15_pws_cqb_556x45", - "Description": "muzzle_ar15_pws_cqb_556x45", - "Weight": 0.19, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_pws_cqb_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -11, - "Loudness": 5, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.989, - "CoolFactor": 1 - }, - "_proto": "5649aa744bdc2ded0b8b457e" - }, - "5f633f68f5750b524b45f112": { - "_id": "5f633f68f5750b524b45f112", - "_name": "muzzle_ak_jmac_rrd_4c_762x39", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak_jmac_rrd_4c_762x39", - "ShortName": "muzzle_ak_jmac_rrd_4c_762x39", - "Description": "muzzle_ak_jmac_rrd_4c_762x39", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak_jmac_rrd_4c_762x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -14, - "Loudness": 18, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.984, - "CoolFactor": 1 - }, - "_proto": "5649aa744bdc2ded0b8b457e" - }, - "5c471bfc2e221602b21d4e17": { - "_id": "5c471bfc2e221602b21d4e17", - "_name": "muzzle_svd_izhmash_svd_s_std_762x54", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak74_izhmash_ak74m_std_545x39", - "ShortName": "muzzle_ak74_izhmash_ak74m_std_545x39", - "Description": "muzzle_ak74_izhmash_ak74m_std_545x39", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_svd_izhmash_svd_s_std_762x54.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_front", - "_id": "5c471e2b2e221602b21d4f13", - "_parent": "5c471bfc2e221602b21d4e17", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c471ba12e221602b3137d76" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5e020339d4353e3302576b6a", - "_parent": "5c471bfc2e221602b21d4e17", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5e01e9e273d8eb11426f5bc3" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5bbdb83fd4351e44f824c44b": { - "_id": "5bbdb83fd4351e44f824c44b", - "_name": "muzzle_mosin_tacfire_tanker_style_762x54r", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_mosin_tacfire_tanker_style_762x54r", - "ShortName": "muzzle_mosin_tacfire_tanker_style_762x54r", - "Description": "muzzle_mosin_tacfire_tanker_style_762x54r", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_mosin_tacfire_tanker_style_762x54r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 2, - "Recoil": -9, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "60337f5dce399e10262255d1": { - "_id": "60337f5dce399e10262255d1", - "_name": "muzzle_all_stmarms_stm9_muzzle_brake_9x19", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "Пламегаситель Colt USGI A2 5.56x45 для AR-15", - "ShortName": "5.56x45 AR-15 USGI A2", - "Description": "Пламегаситель 5.56x45 Colt USGI A2 также известный как Bird Cage (Птичья Клетка) предназначен для установки на оружие на базе AR-15 под патрон 5.56x45. Однако может быть установлен и на другое оружие под тот же калибр, если ствол имеет ту же резьбу для установки дополнительных дульных устройств. Штатно устанавливается на штурмовую винтовку M4A1.", - "Weight": 0.084, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_all_stmarms_stm9_muzzle_brake_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, + "Accuracy": 3, "Recoil": -6, "Loudness": 0, "EffectiveDistance": 0, @@ -174777,129 +174684,23 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "5a34fd2bc4a282329a73b4c5": { - "_id": "5a34fd2bc4a282329a73b4c5", - "_name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "5f633f791b231926f2329f13": { + "_id": "5f633f791b231926f2329f13", + "_name": "muzzle_ak74_jmac_rrd_4c_multi", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Weight": 0.122, + "Name": "muzzle_ak74_jmac_rrd_4c_multi", + "ShortName": "muzzle_ak74_jmac_rrd_4c_multi", + "Description": "muzzle_ak74_jmac_rrd_4c_multi", + "Weight": 0.085, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_aac_blackout_51t_flash_hider_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5a34fd2bc4a282329a73b4c6", - "_parent": "5a34fd2bc4a282329a73b4c5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a34fe59c4a282000b1521a2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -5, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5bc5a35cd4351e450201232f": { - "_id": "5bc5a35cd4351e450201232f", - "_name": "muzzle_mosin_witt_machine_custom_clamp_on_muzzle_brake_762x54r", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_mosin_tacfire_tanker_style_762x54r", - "ShortName": "muzzle_mosin_tacfire_tanker_style_762x54r", - "Description": "muzzle_mosin_tacfire_tanker_style_762x54r", - "Weight": 0.17, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_mosin_witt_machine_custom_clamp_on_muzzle_brake_762x54r.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ak74_jmac_rrd_4c_multi.bundle", "rcid": "" }, "UsePrefab": { @@ -174948,11 +174749,11 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": -1, - "Recoil": -20, - "Loudness": 0, + "Accuracy": 0, + "Recoil": -13, + "Loudness": 15, "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": -2, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -174964,29 +174765,116 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "muzzleModType": "brake", - "DurabilityBurnModificator": 0.97, + "DurabilityBurnModificator": 0.96, "HeatFactor": 0.987, "CoolFactor": 1 }, - "_proto": "544a38634bdc2d58388b4568" + "_proto": "5649aa744bdc2ded0b8b457e" }, - "5addbb6e5acfc408fb1393fd": { - "_id": "5addbb6e5acfc408fb1393fd", - "_name": "muzzle_m1a_springfield_armory_national_match_flash_suppressor_762x51", + "6492efb8cfcf7c89e701abf3": { + "_id": "6492efb8cfcf7c89e701abf3", + "_name": "muzzle_pk_zid_pkm_long_762x54r", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "M1Amuzzle_m1a_springfield_armory_national_match_flash_suppressor_762x51", - "ShortName": "M1Amuzzle_m1a_springfield_armory_national_match_flash_suppressor_762x51", - "Description": "M1Amuzzle_m1a_springfield_armory_national_match_flash_suppressor_762x51", - "Weight": 0.14, + "Name": "muzzle_ak_izhmash_akm_std_762x39", + "ShortName": "muzzle_ak_izhmash_akml_762x39", + "Description": "muzzle_ak_izhmash_akml_762x39", + "Weight": 0.057, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_m1a_springfield_armory_national_match_flash_suppressor_762x51.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_pk_zid_pkm_long_762x54r.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": -10, + "EffectiveDistance": 0, + "Ergonomics": -1.5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5cc82796e24e8d000f5859a8": { + "_id": "5cc82796e24e8d000f5859a8", + "_name": "muzzle_p90_fn_p90_std_57x28", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "Дульный тормоз компенсатор Ижмаш 5.45x39 для АК-74", + "ShortName": "5.56x45 АК-74", + "Description": "Штатный дульный тормоз компенсатор производства Ижмаш для автомата АК-74 и других моделей на его базе.", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_p90_fn_p90_std_57x28.bundle", "rcid": "" }, "UsePrefab": { @@ -175033,16 +174921,15 @@ "Grids": [], "Slots": [ { - "_name": "mod_sight_front", - "_id": "5addbb6e5acfc408fb1393ff", - "_parent": "5addbb6e5acfc408fb1393fd", + "_name": "mod_muzzle", + "_id": "5cebed52d7f00c065a5ab311", + "_parent": "5cc82796e24e8d000f5859a8", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5addba3e5acfc4001669f0ab", - "5aafa49ae5b5b00015042a58" + "5cebec00d7f00c065c53522a" ] } ] @@ -175055,10 +174942,97 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 2, + "Accuracy": 0, "Recoil": -5, "Loudness": 0, "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "615d8e2f1cb55961fa0fd9a4": { + "_id": "615d8e2f1cb55961fa0fd9a4", + "_name": "muzzle_ar15_hk_blitz_flash_hider_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar15_ferfrans_muzzle_brake_556x45", + "ShortName": "muzzle_ar15_ferfrans_muzzle_brake_556x45", + "Description": "muzzle_ar15_ferfrans_muzzle_brake_556x45", + "Weight": 0.085, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar15_hk_blitz_flash_hider_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 1, + "Recoil": -8, + "Loudness": 0, + "EffectiveDistance": 0, "Ergonomics": -2, "Velocity": 0, "RaidModdable": true, @@ -175072,28 +175046,28 @@ "UniqueAnimationModID": 0, "muzzleModType": "conpensator", "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, + "HeatFactor": 0.987, "CoolFactor": 1 }, "_proto": "544a38634bdc2d58388b4568" }, - "626a74340be03179a165e30c": { - "_id": "626a74340be03179a165e30c", - "_name": "muzzle_ar15_yankee_hill_phantom_aggressive_end_flash_hider_556x45", + "5fbbc3324e8a554c40648348": { + "_id": "5fbbc3324e8a554c40648348", + "_name": "muzzle_vector_kriss_flash_hider_std_9x19", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", - "ShortName": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", - "Description": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", - "Weight": 0.063, + "Name": "muzzle_vector_kriss_flash_hider_std_9x19", + "ShortName": "muzzle_vector_kriss_flash_hider_std_9x19", + "Description": "muzzle_vector_kriss_flash_hider_std_9x19", + "Weight": 0.064, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_yankee_hill_phantom_aggressive_end_flash_hider_556x45.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_vector_kriss_flash_hider_std_9x19.bundle", "rcid": "" }, "UsePrefab": { @@ -175146,113 +175120,6 @@ "Recoil": -5, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "5649aa744bdc2ded0b8b457e" - }, - "5addbb945acfc4001a5fc44e": { - "_id": "5addbb945acfc4001a5fc44e", - "_name": "muzzle_m14_smith_enterprise_good_iron_muzzle_brake_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_m1a_springfield_armory_socom_16_762x51", - "ShortName": "muzzle_m1a_springfield_armory_socom_16_762x51", - "Description": "muzzle_m1a_springfield_armory_socom_16_762x51", - "Weight": 0.14, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_m14_smith_enterprise_good_iron_muzzle_brake_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_front", - "_id": "5addbb945acfc4001a5fc450", - "_parent": "5addbb945acfc4001a5fc44e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5addba3e5acfc4001669f0ab", - "5aafa49ae5b5b00015042a58" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 1, - "Recoil": -7, - "Loudness": 0, - "EffectiveDistance": 0, "Ergonomics": -1, "Velocity": 0, "RaidModdable": true, @@ -175264,30 +175131,30 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.991, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, "CoolFactor": 1 }, "_proto": "544a38634bdc2d58388b4568" }, - "618407a850224f204c1da549": { - "_id": "618407a850224f204c1da549", - "_name": "muzzle_ar15_fn_scar_l_3_prong_flash_hider_w_mount_556x45", + "5fc23636016cce60e8341b05": { + "_id": "5fc23636016cce60e8341b05", + "_name": "muzzle_all_silencerco_ac858_asr_muzzle_brake_86x70", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_ar15_vendetta_precision_vp_09_556x45", - "ShortName": "muzzle_ar15_vendetta_precision_vp_09_556x45", - "Description": "muzzle_ar15_vendetta_precision_vp_09_556x45", - "Weight": 0.15, + "Name": "muzzle_all_silencerco_ac858_asr_86x70", + "ShortName": "muzzle_all_silencerco_ac858_asr_86x70", + "Description": "muzzle_all_silencerco_ac858_asr_86x70", + "Weight": 0.11, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_fn_scar_l_3_prong_flash_hider_w_mount_556x45.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_all_silencerco_ac858_asr_muzzle_brake_86x70.bundle", "rcid": "" }, "UsePrefab": { @@ -175337,10 +175204,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 1, - "Recoil": -5, + "Recoil": -6, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": -2, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -175352,344 +175219,21 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "muzzleModType": "brake", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.989, "CoolFactor": 1 }, "_proto": "5649aa744bdc2ded0b8b457e" }, - "619d36da53b4d42ee724fae4": { - "_id": "619d36da53b4d42ee724fae4", - "_name": "muzzle_mc255_ckib_choke_12g", + "6194f1f918a3974e5e7421e4": { + "_id": "6194f1f918a3974e5e7421e4", + "_name": "muzzle_usp_hk_usp_std_thread_protector_1143x23", "_parent": "550aa4dd4bdc2dc9348b4569", "_type": "Item", "_props": { - "Name": "Remington Tactical Choke 12g", - "ShortName": "RTC 12g", - "Description": "Remington Tactical Choke 12g был разработан специально для тактических ружей и ружей самообороны. Сочетает в себе свойства цилиндра и пламегасителя.", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_mc255_ckib_choke_12g.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "5580239d4bdc2de7118b4583" - }, - "5cf67cadd7f00c065a5abab7": { - "_id": "5cf67cadd7f00c065a5abab7", - "_name": "muzzle_sks_weapon_tuning_wt0032_1_762x39", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_sks_weapon_tuning_wt0032_1_762x39", - "ShortName": "muzzle_sks_weapon_tuning_wt0032_1_762x39", - "Description": "muzzle_sks_weapon_tuning_wt0032_1_762x39", - "Weight": 0.055, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_sks_weapon_tuning_wt0032_1_762x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5cf67cadd7f00c065a5abab9", - "_parent": "5cf67cadd7f00c065a5abab7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac72e7d5acfc40016339a02", - "5ac72e895acfc43b321d4bd5", - "5cc9ad73d7f00c000e2579d4", - "5649ab884bdc2ded0b8b457f", - "59fb257e86f7742981561852" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5fbc22ccf24b94483f726483": { - "_id": "5fbc22ccf24b94483f726483", - "_name": "muzzle_all_sig_qd_muzzle_base_762x51", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_all_silencerco_hybrid_46_direct_thread_multi", - "ShortName": "muzzle_all_silencerco_hybrid_46_direct_thread_multi", - "Description": "muzzle_all_silencerco_hybrid_46_direct_thread_multi", - "Weight": 0.12, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_all_sig_qd_muzzle_base_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle_000", - "_id": "5fbcc6b17283c4046c58146b", - "_parent": "5fbc22ccf24b94483f726483", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fbcbcf593164a5b6278efb2", - "5fbcbd02900b1d5091531dd3", - "5fbcbd10ab884124df0cd563" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle_001", - "_id": "5fbcc6bd900b1d5091531ddb", - "_parent": "5fbc22ccf24b94483f726483", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fbe760793164a5b6278efc8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "560838c94bdc2d77798b4569" - }, - "5fbbc34106bde7524f03cbe9": { - "_id": "5fbbc34106bde7524f03cbe9", - "_name": "muzzle_vector_kriss_thread_protector_std_9x19", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_p226_sig_thread_protector_std_9x19", - "ShortName": "muzzle_p226_sig_thread_protector_std_9x19", - "Description": "muzzle_p226_sig_thread_protector_std_9x19", + "Name": "muzzle_glock_alpha_wolf_thread_protector_9x19", + "ShortName": "muzzle_glock_alpha_wolf_thread_protector_9x19", + "Description": "muzzle_glock_alpha_wolf_thread_protector_9x19", "Weight": 0.01, "BackgroundColor": "blue", "Width": 1, @@ -175697,7 +175241,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_vector_kriss_thread_protector_std_9x19.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_usp_hk_usp_std_thread_protector_1143x23.bundle", "rcid": "" }, "UsePrefab": { @@ -175762,487 +175306,12 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 0.96, + "DurabilityBurnModificator": 0.95, "HeatFactor": 1, "CoolFactor": 1 }, "_proto": "560838c94bdc2d77798b4569" }, - "5a9fbb84a2750c00137fa685": { - "_id": "5a9fbb84a2750c00137fa685", - "_name": "silencer_all_rotor_43_v2_556x45", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_all_rotor_43_v2_762x39", - "ShortName": "silencer_all_rotor_43_v2_762x39", - "Description": "silencer_all_rotor_43_v2_762x39\n", - "Weight": 0.57, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_all_rotor_43_v2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": -18, - "EffectiveDistance": 0, - "Ergonomics": -22, - "Velocity": 0.7, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "pms", - "DurabilityBurnModificator": 1.71, - "HeatFactor": 1.14, - "CoolFactor": 1.03 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "5a9fbacda2750c00141e080f": { - "_id": "5a9fbacda2750c00141e080f", - "_name": "silencer_all_rotor_43_v2_762x39", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_all_rotor_43_v2_762x39", - "ShortName": "silencer_all_rotor_43_v2_762x39", - "Description": "silencer_all_rotor_43_v2_762x39\n", - "Weight": 0.57, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_all_rotor_43_v2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": -17, - "EffectiveDistance": 0, - "Ergonomics": -20, - "Velocity": 0.8, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "pms", - "DurabilityBurnModificator": 1.71, - "HeatFactor": 1.14, - "CoolFactor": 1 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "5a9fb739a2750c003215717f": { - "_id": "5a9fb739a2750c003215717f", - "_name": "silencer_all_rotor_43_v1_9x19", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_all_rotor_43_v1_9x19", - "ShortName": "silencer_all_rotor_43_v1_9x19", - "Description": "silencer_all_rotor_43_v1_9x19\n", - "Weight": 0.49, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_all_rotor_43_v1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": -23, - "EffectiveDistance": 0, - "Ergonomics": -17, - "Velocity": 0.6, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "pms", - "DurabilityBurnModificator": 1.65, - "HeatFactor": 1.14, - "CoolFactor": 1.02 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "57c44dd02459772d2e0ae249": { - "_id": "57c44dd02459772d2e0ae249", - "_name": "silencer_val_tochmash_std_9x39", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_val_tochmash_std_9x39", - "ShortName": "silencer_val_tochmash_std_9x39", - "Description": "silencer_val_tochmash_std_9x39", - "Weight": 0.496, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_val_tochmash_std_9x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "57c44e9a2459772d303d89a3", - "_parent": "57c44dd02459772d2e0ae249", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57c44e7b2459772d28133248", - "57838e1b2459774a256959b1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "58246acc24597753c0717aa2", - "_parent": "57c44dd02459772d2e0ae249", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59eb7ebe86f7740b373438ce", - "57a3459f245977764a01f703", - "5a9fc7e6a2750c0032157184" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -14, - "Loudness": -39, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": 1.1, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.52, - "HeatFactor": 1.24, - "CoolFactor": 1.05 - }, - "_proto": "57838c962459774a1651ec63" - }, - "5caf187cae92157c28402e43": { - "_id": "5caf187cae92157c28402e43", - "_name": "silencer_ash12_ckib_ash12_std_127x55", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "Глушитель Пламегаситель ТГП-А 5.45х39", - "ShortName": "ТГП-А", - "Description": "Глушитель Пламегаситель Тактический ТГП-А производства ГУ НПО \"Спецтехника и связь\" для автоматов на базе АК 5.45х39.", - "Weight": 0.7, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_ash12_ckib_ash12_std_127x55.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -13, - "Loudness": -15, - "EffectiveDistance": 0, - "Ergonomics": -21, - "Velocity": 0.7, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "pms", - "DurabilityBurnModificator": 1.45, - "HeatFactor": 1.16, - "CoolFactor": 1.12 - }, - "_proto": "55d614004bdc2d86028b4568" - }, "5cdd7685d7f00c000f260ed2": { "_id": "5cdd7685d7f00c000f260ed2", "_name": "muzzle_ar10_keeno_arms_shrewd_muzzle_brake_762x51", @@ -176330,23 +175399,23 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "5b3a16655acfc40016387a2a": { - "_id": "5b3a16655acfc40016387a2a", - "_name": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", + "6529113b5ae2ae97b80fdf39": { + "_id": "6529113b5ae2ae97b80fdf39", + "_name": "muzzle_ar10_sig_clutch_lok_qd_flash_hider_68x51", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", - "ShortName": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", - "Description": "muzzle_all_yankee_hill_anihilator_flash_hider_multi", - "Weight": 0.128, + "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Weight": 0.122, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_all_yankee_hill_anihilator_flash_hider_multi.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ar10_sig_clutch_lok_qd_flash_hider_68x51.bundle", "rcid": "" }, "UsePrefab": { @@ -176391,12 +175460,31 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "6529113b5ae2ae97b80fdf3a", + "_parent": "6529113b5ae2ae97b80fdf39", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "652911e650dc782999054b9d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 0, - "Recoil": -6, + "Accuracy": 3, + "Recoil": -7, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -1, @@ -176410,30 +175498,30 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.96, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.98, "HeatFactor": 0.99, "CoolFactor": 1 }, - "_proto": "5649aa744bdc2ded0b8b457e" + "_proto": "544a38634bdc2d58388b4568" }, - "5bbdb8bdd4351e4502011460": { - "_id": "5bbdb8bdd4351e4502011460", - "_name": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", + "63ac5c9658d0485fc039f0b8": { + "_id": "63ac5c9658d0485fc039f0b8", + "_name": "muzzle_ar15_alientech_gubich_muzzle_brake_556x45", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", - "ShortName": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", - "Description": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", - "Weight": 0.12, + "Name": "muzzle_ak74_jmac_rrd_4c_multi", + "ShortName": "muzzle_ak74_jmac_rrd_4c_multi", + "Description": "muzzle_ak74_jmac_rrd_4c_multi", + "Weight": 0.085, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ar15_alientech_gubich_muzzle_brake_556x45.bundle", "rcid": "" }, "UsePrefab": { @@ -176483,10 +175571,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -10, - "Loudness": 20, + "Recoil": -8, + "Loudness": 15, "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": -2, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -176499,10 +175587,10 @@ "UniqueAnimationModID": 0, "muzzleModType": "brake", "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.985, + "HeatFactor": 0.987, "CoolFactor": 1 }, - "_proto": "544a38634bdc2d58388b4568" + "_proto": "5649aa744bdc2ded0b8b457e" }, "5d44064fa4b9361e4f6eb8b5": { "_id": "5d44064fa4b9361e4f6eb8b5", @@ -176678,180 +175766,6 @@ }, "_proto": "54490a4d4bdc2dbc018b4573" }, - "6194f1f918a3974e5e7421e4": { - "_id": "6194f1f918a3974e5e7421e4", - "_name": "muzzle_usp_hk_usp_std_thread_protector_1143x23", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_glock_alpha_wolf_thread_protector_9x19", - "ShortName": "muzzle_glock_alpha_wolf_thread_protector_9x19", - "Description": "muzzle_glock_alpha_wolf_thread_protector_9x19", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_usp_hk_usp_std_thread_protector_1143x23.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 0.95, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "560838c94bdc2d77798b4569" - }, - "5abcc328d8ce8700194394f3": { - "_id": "5abcc328d8ce8700194394f3", - "_name": "silencer_apb_toz_apb_std_9x18pm", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_apb_toz_apb_std_9x18pm", - "ShortName": "silencer_apb_toz_apb_std_9x18pm", - "Description": "silencer_apb_toz_apb_std_9x18pm", - "Weight": 0.49, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_apb_toz_apb_std_9x18pm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": -20, - "EffectiveDistance": 0, - "Ergonomics": -21, - "Velocity": 0.8, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "pms", - "DurabilityBurnModificator": 1.69, - "HeatFactor": 1.13, - "CoolFactor": 1 - }, - "_proto": "55d614004bdc2d86028b4568" - }, "63877c99e785640d436458ea": { "_id": "63877c99e785640d436458ea", "_name": "silencer_base_awc_thor_psr_xl_multi", @@ -176939,234 +175853,23 @@ }, "_proto": "54490a4d4bdc2dbc018b4573" }, - "5cf78496d7f00c065703d6ca": { - "_id": "5cf78496d7f00c065703d6ca", - "_name": "muzzle_ar10_lantac_bmd_adapter_a3_762x51", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_ar10_lantac_bmd_adapter_a3_762x51", - "ShortName": "muzzle_ar10_lantac_bmd_adapter_a3_762x51", - "Description": "muzzle_ar10_lantac_bmd_adapter_a3_762x51", - "Weight": 0.03, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_lantac_bmd_adapter_a3_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle_000", - "_id": "5cf79771d7f00c10864ba54a", - "_parent": "5cf78496d7f00c065703d6ca", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c878e9d2e2216000f201903" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle_001", - "_id": "5cf79779d7f00c065b42253f", - "_parent": "5cf78496d7f00c065703d6ca", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cf78720d7f00c06595bc93e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "560838c94bdc2d77798b4569" - }, - "5de6556a205ddc616a6bc4f7": { - "_id": "5de6556a205ddc616a6bc4f7", - "_name": "muzzle_vpo215_molot_vpo_215_thread_protector_std_366tkm", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_vpo215_molot_vpo_215_thread_protector_std_366tkm", - "ShortName": "muzzle_vpo215_molot_vpo_215_thread_protector_std_366tkm", - "Description": "muzzle_vpo215_molot_vpo_215_thread_protector_std_366tkm", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_vpo215_molot_vpo_215_thread_protector_std_366tkm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 0.95, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "560838c94bdc2d77798b4569" - }, - "5de8f2d5b74cd90030650c72": { - "_id": "5de8f2d5b74cd90030650c72", - "_name": "silencer_mp9_bt_supressor_9x19", + "5abcc328d8ce8700194394f3": { + "_id": "5abcc328d8ce8700194394f3", + "_name": "silencer_apb_toz_apb_std_9x18pm", "_parent": "550aa4cd4bdc2dd8348b456c", "_type": "Item", "_props": { - "Name": "silencer_all_silencerco_osprey_9_9x19", - "ShortName": "silencer_all_silencerco_osprey_9_9x19", - "Description": "silencer_all_silencerco_osprey_9_9x19", - "Weight": 0.29, + "Name": "silencer_apb_toz_apb_std_9x18pm", + "ShortName": "silencer_apb_toz_apb_std_9x18pm", + "Description": "silencer_apb_toz_apb_std_9x18pm", + "Weight": 0.49, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_mp9_bt_supressor_9x19.bundle", + "path": "assets/content/items/mods/silencers/silencer_apb_toz_apb_std_9x18pm.bundle", "rcid": "" }, "UsePrefab": { @@ -177192,7 +175895,7 @@ "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, + "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, @@ -177219,7 +175922,7 @@ "Recoil": -6, "Loudness": -20, "EffectiveDistance": 0, - "Ergonomics": -16, + "Ergonomics": -21, "Velocity": 0.8, "RaidModdable": true, "ToolModdable": false, @@ -177230,556 +175933,13 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.72, + "muzzleModType": "pms", + "DurabilityBurnModificator": 1.69, "HeatFactor": 1.13, "CoolFactor": 1 }, "_proto": "55d614004bdc2d86028b4568" }, - "5fbe760793164a5b6278efc8": { - "_id": "5fbe760793164a5b6278efc8", - "_name": "silencer_base_sig_srd_762_qd_762x51", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_base_sig_srd_762_qd_762x51", - "ShortName": "silencer_base_sig_srd_762_qd_762x51", - "Description": "silencer_base_sig_srd_762_qd_762x51", - "Weight": 0.46, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_base_sig_srd_762_qd_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -9, - "Loudness": -35, - "EffectiveDistance": 0, - "Ergonomics": -24, - "Velocity": 0.7, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.65, - "HeatFactor": 1.135, - "CoolFactor": 1.04 - }, - "_proto": "54490a4d4bdc2dbc018b4573" - }, - "5dfa3d2b0dee1b22f862eade": { - "_id": "5dfa3d2b0dee1b22f862eade", - "_name": "silencer_qdc_kac_prs_qdc_762x51", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_ar10_aac_762_sdn_6_762x51", - "ShortName": "silencer_ar10_aac_762_sdn_6_762x51", - "Description": "silencer_ar10_aac_762_sdn_6_762x51", - "Weight": 0.59, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_qdc_kac_prs_qdc_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -8, - "Loudness": -30, - "EffectiveDistance": 0, - "Ergonomics": -23, - "Velocity": 0.9, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.68, - "HeatFactor": 1.15, - "CoolFactor": 1.06 - }, - "_proto": "54490a4d4bdc2dbc018b4573" - }, - "64c196ad26a15b84aa07132f": { - "_id": "64c196ad26a15b84aa07132f", - "_name": "silencer_ak12_izhmash_ak12_supressor_std_545x39", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_akm_hexagon_akm_762x39", - "ShortName": "silencer_akm_hexagon_akm_762x39", - "Description": "silencer_akm_hexagon_akm_762x39", - "Weight": 0.45, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_ak12_izhmash_ak12_supressor_std_545x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -8, - "Loudness": -25, - "EffectiveDistance": 0, - "Ergonomics": -25, - "Velocity": 0.6, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "pms", - "DurabilityBurnModificator": 1.7, - "HeatFactor": 1.135, - "CoolFactor": 1.1 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "5cff9e84d7ad1a049e54ed55": { - "_id": "5cff9e84d7ad1a049e54ed55", - "_name": "silencer_wave_dd_wave_qd_supressor_multi", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_ar10_aac_762_sdn_6_762x51", - "ShortName": "silencer_ar10_aac_762_sdn_6_762x51", - "Description": "silencer_ar10_aac_762_sdn_6_762x51", - "Weight": 0.488, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_wave_dd_wave_qd_supressor_multi.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": -20, - "EffectiveDistance": 0, - "Ergonomics": -17, - "Velocity": 0.7, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.67, - "HeatFactor": 1.14, - "CoolFactor": 1 - }, - "_proto": "54490a4d4bdc2dbc018b4573" - }, - "626673016f1edc06f30cf6d5": { - "_id": "626673016f1edc06f30cf6d5", - "_name": "silencer_qdc_kac_qdc_suppressor_556x45", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_asr_silencerco_saker_556_556x45", - "ShortName": "silencer_asr_silencerco_saker_556_556x45", - "Description": "silencer_asr_silencerco_saker_556_556x45", - "Weight": 0.453, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_qdc_kac_qdc_suppressor_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c6d85e02e22165df16b81f4" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -10, - "Loudness": -33, - "EffectiveDistance": 0, - "Ergonomics": -20, - "Velocity": 0.6, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.53, - "HeatFactor": 1.05, - "CoolFactor": 1.15 - }, - "_proto": "54490a4d4bdc2dbc018b4573" - }, - "5e01e9e273d8eb11426f5bc3": { - "_id": "5e01e9e273d8eb11426f5bc3", - "_name": "muzzle_svd_rotor43_svd_s_dtk_adapter_762x54", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_mosin_weapon_tuning_wt1052", - "ShortName": "muzzle_mosin_weapon_tuning_wt1052", - "Description": "muzzle_mosin_weapon_tuning_wt1052", - "Weight": 0.18, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_svd_rotor43_svd_s_dtk_adapter_762x54.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5e01e9e273d8eb11426f5bc5", - "_parent": "5e01e9e273d8eb11426f5bc3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5e01ea19e9dc277128008c0b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, "57f3c7e024597738ea4ba286": { "_id": "57f3c7e024597738ea4ba286", "_name": "muzzle_pp-91-01_zmz_std_9x18pm", @@ -177886,6 +176046,112 @@ }, "_proto": "576167ab2459773cad038c43" }, + "5e01e9e273d8eb11426f5bc3": { + "_id": "5e01e9e273d8eb11426f5bc3", + "_name": "muzzle_svd_rotor43_svd_s_dtk_adapter_762x54", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_mosin_weapon_tuning_wt1052", + "ShortName": "muzzle_mosin_weapon_tuning_wt1052", + "Description": "muzzle_mosin_weapon_tuning_wt1052", + "Weight": 0.18, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_svd_rotor43_svd_s_dtk_adapter_762x54.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5e01e9e273d8eb11426f5bc5", + "_parent": "5e01e9e273d8eb11426f5bc3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5e01ea19e9dc277128008c0b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, "5f2aa43ba9b91d26f20ae6d2": { "_id": "5f2aa43ba9b91d26f20ae6d2", "_name": "muzzle_all_kel_tec_thread_spacer_762x51", @@ -178014,93 +176280,6 @@ }, "_proto": "560838c94bdc2d77798b4569" }, - "593d489686f7745c6255d58a": { - "_id": "593d489686f7745c6255d58a", - "_name": "silencer_akm_hexagon_akm_762x39", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_akm_hexagon_akm_762x39", - "ShortName": "silencer_akm_hexagon_akm_762x39", - "Description": "silencer_akm_hexagon_akm_762x39", - "Weight": 0.462, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_akm_hexagon_akm_762x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": -18, - "EffectiveDistance": 0, - "Ergonomics": -23, - "Velocity": 0.7, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "pms", - "DurabilityBurnModificator": 1.75, - "HeatFactor": 1.14, - "CoolFactor": 1.06 - }, - "_proto": "55d614004bdc2d86028b4568" - }, "5ea17bbc09aa976f2e7a51cd": { "_id": "5ea17bbc09aa976f2e7a51cd", "_name": "silencer_socom_surefire_socom556_rc2_556x45", @@ -178275,6 +176454,93 @@ }, "_proto": "54490a4d4bdc2dbc018b4573" }, + "593d489686f7745c6255d58a": { + "_id": "593d489686f7745c6255d58a", + "_name": "silencer_akm_hexagon_akm_762x39", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_akm_hexagon_akm_762x39", + "ShortName": "silencer_akm_hexagon_akm_762x39", + "Description": "silencer_akm_hexagon_akm_762x39", + "Weight": 0.462, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_akm_hexagon_akm_762x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": -18, + "EffectiveDistance": 0, + "Ergonomics": -23, + "Velocity": 0.7, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "pms", + "DurabilityBurnModificator": 1.75, + "HeatFactor": 1.14, + "CoolFactor": 1.06 + }, + "_proto": "55d614004bdc2d86028b4568" + }, "55d614004bdc2d86028b4568": { "_id": "55d614004bdc2d86028b4568", "_name": "silencer_socom_surefire_socom556_monster_556x45", @@ -178555,23 +176821,23 @@ }, "_proto": "54490a4d4bdc2dbc018b4573" }, - "64943b74e9998d641b0412ed": { - "_id": "64943b74e9998d641b0412ed", - "_name": "muzzle_ar15_walkerdr_nero_556_inconel_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", + "619d36da53b4d42ee724fae4": { + "_id": "619d36da53b4d42ee724fae4", + "_name": "muzzle_mc255_ckib_choke_12g", + "_parent": "550aa4dd4bdc2dc9348b4569", "_type": "Item", "_props": { - "Name": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", - "ShortName": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", - "Description": "muzzle_ar15_bulletec_st_6012_muzzle_brake_556x45", - "Weight": 0.108, + "Name": "Remington Tactical Choke 12g", + "ShortName": "RTC 12g", + "Description": "Remington Tactical Choke 12g был разработан специально для тактических ружей и ружей самообороны. Сочетает в себе свойства цилиндра и пламегасителя.", + "Weight": 0.1, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_walkerdr_nero_556_inconel_556x45.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_mc255_ckib_choke_12g.bundle", "rcid": "" }, "UsePrefab": { @@ -178588,96 +176854,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c78f2882e22165df16b832e" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -7, - "Loudness": 5, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.97, - "HeatFactor": 0.994, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5d440625a4b9361eec4ae6c5": { - "_id": "5d440625a4b9361eec4ae6c5", - "_name": "muzzle_ar15_thunder_beast_223cb_muzzle_brake_556x45", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", - "Weight": 0.109, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_thunder_beast_223cb_muzzle_brake_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, + "LootExperience": 5, "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, @@ -178705,34 +176882,15 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5d440625a4b9361eec4ae6c7", - "_parent": "5d440625a4b9361eec4ae6c5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d44064fa4b9361e4f6eb8b5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 1, - "Recoil": -6, + "Accuracy": 3, + "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -2, + "Ergonomics": 0, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -178743,30 +176901,117 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", + "muzzleModType": "brake", "DurabilityBurnModificator": 0.98, "HeatFactor": 0.99, "CoolFactor": 1 }, - "_proto": "544a38634bdc2d58388b4568" + "_proto": "5580239d4bdc2de7118b4583" }, - "615d8e9867085e45ef1409c6": { - "_id": "615d8e9867085e45ef1409c6", - "_name": "muzzle_ak_kiba_thread_adapter_762x51", + "5fbbc34106bde7524f03cbe9": { + "_id": "5fbbc34106bde7524f03cbe9", + "_name": "muzzle_vector_kriss_thread_protector_std_9x19", "_parent": "550aa4dd4bdc2dc9348b4569", "_type": "Item", "_props": { - "Name": "muzzle_ak_cnc_warrior_ar15_thread_adapter_556x45", - "ShortName": "muzzle_ak_cnc_warrior_ar15_thread_adapter_556x45", - "Description": "muzzle_ak_cnc_warrior_ar15_thread_adapter_556x45", - "Weight": 0.11, + "Name": "muzzle_p226_sig_thread_protector_std_9x19", + "ShortName": "muzzle_p226_sig_thread_protector_std_9x19", + "Description": "muzzle_p226_sig_thread_protector_std_9x19", + "Weight": 0.01, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak_kiba_thread_adapter_762x51.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_vector_kriss_thread_protector_std_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "muzzleCombo", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "560838c94bdc2d77798b4569" + }, + "5cf67cadd7f00c065a5abab7": { + "_id": "5cf67cadd7f00c065a5abab7", + "_name": "muzzle_sks_weapon_tuning_wt0032_1_762x39", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_sks_weapon_tuning_wt0032_1_762x39", + "ShortName": "muzzle_sks_weapon_tuning_wt0032_1_762x39", + "Description": "muzzle_sks_weapon_tuning_wt0032_1_762x39", + "Weight": 0.055, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_sks_weapon_tuning_wt0032_1_762x39.bundle", "rcid": "" }, "UsePrefab": { @@ -178814,36 +177059,921 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "615d8e9867085e45ef1409c8", - "_parent": "615d8e9867085e45ef1409c6", + "_id": "5cf67cadd7f00c065a5abab9", + "_parent": "5cf67cadd7f00c065a5abab7", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "612e0d3767085e45ef14057f", - "5b7d693d5acfc43bca706a3d", - "5a34fd2bc4a282329a73b4c5", - "618178aa1cb55961fa0fdc80", - "6065c6e7132d4d12c81fd8e1", - "5d1f819086f7744b355c219b", - "5dcbe965e4ed22586443a79d", - "5d026791d7ad1a04a067ea63", - "5dfa3cd1b33c0951220c079b", - "6130c43c67085e45ef1405a1", - "5cdd7685d7f00c000f260ed2", - "5c878e9d2e2216000f201903", - "5d02677ad7ad1a04a15c0f95", - "5bbdb8bdd4351e4502011460", - "5cdd7693d7f00c0010373aa5", - "607ffb988900dc2d9a55b6e4", - "615d8eb350224f204c1da1cf", - "612e0e3c290d254f5e6b291d", - "5d443f8fa4b93678dd4a01aa", - "5fbc22ccf24b94483f726483", - "59bffc1f86f77435b128b872", - "5cf78496d7f00c065703d6ca", - "5a34fe59c4a282000b1521a2" + "5ac72e7d5acfc40016339a02", + "5ac72e895acfc43b321d4bd5", + "5cc9ad73d7f00c000e2579d4", + "5649ab884bdc2ded0b8b457f", + "59fb257e86f7742981561852" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5fbc22ccf24b94483f726483": { + "_id": "5fbc22ccf24b94483f726483", + "_name": "muzzle_all_sig_qd_muzzle_base_762x51", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_all_silencerco_hybrid_46_direct_thread_multi", + "ShortName": "muzzle_all_silencerco_hybrid_46_direct_thread_multi", + "Description": "muzzle_all_silencerco_hybrid_46_direct_thread_multi", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_all_sig_qd_muzzle_base_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle_000", + "_id": "5fbcc6b17283c4046c58146b", + "_parent": "5fbc22ccf24b94483f726483", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fbcbcf593164a5b6278efb2", + "5fbcbd02900b1d5091531dd3", + "5fbcbd10ab884124df0cd563" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle_001", + "_id": "5fbcc6bd900b1d5091531ddb", + "_parent": "5fbc22ccf24b94483f726483", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fbe760793164a5b6278efc8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "muzzleCombo", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "560838c94bdc2d77798b4569" + }, + "5a9fb739a2750c003215717f": { + "_id": "5a9fb739a2750c003215717f", + "_name": "silencer_all_rotor_43_v1_9x19", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_all_rotor_43_v1_9x19", + "ShortName": "silencer_all_rotor_43_v1_9x19", + "Description": "silencer_all_rotor_43_v1_9x19\n", + "Weight": 0.49, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_all_rotor_43_v1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": -23, + "EffectiveDistance": 0, + "Ergonomics": -17, + "Velocity": 0.6, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "pms", + "DurabilityBurnModificator": 1.65, + "HeatFactor": 1.14, + "CoolFactor": 1.02 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "57c44dd02459772d2e0ae249": { + "_id": "57c44dd02459772d2e0ae249", + "_name": "silencer_val_tochmash_std_9x39", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_val_tochmash_std_9x39", + "ShortName": "silencer_val_tochmash_std_9x39", + "Description": "silencer_val_tochmash_std_9x39", + "Weight": 0.496, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_val_tochmash_std_9x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "57c44e9a2459772d303d89a3", + "_parent": "57c44dd02459772d2e0ae249", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57c44e7b2459772d28133248", + "57838e1b2459774a256959b1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "58246acc24597753c0717aa2", + "_parent": "57c44dd02459772d2e0ae249", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59eb7ebe86f7740b373438ce", + "57a3459f245977764a01f703", + "5a9fc7e6a2750c0032157184" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -14, + "Loudness": -39, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 1.1, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.52, + "HeatFactor": 1.24, + "CoolFactor": 1.05 + }, + "_proto": "57838c962459774a1651ec63" + }, + "5a9fbacda2750c00141e080f": { + "_id": "5a9fbacda2750c00141e080f", + "_name": "silencer_all_rotor_43_v2_762x39", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_all_rotor_43_v2_762x39", + "ShortName": "silencer_all_rotor_43_v2_762x39", + "Description": "silencer_all_rotor_43_v2_762x39\n", + "Weight": 0.57, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_all_rotor_43_v2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": -17, + "EffectiveDistance": 0, + "Ergonomics": -20, + "Velocity": 0.8, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "pms", + "DurabilityBurnModificator": 1.71, + "HeatFactor": 1.14, + "CoolFactor": 1 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "5a9fbb84a2750c00137fa685": { + "_id": "5a9fbb84a2750c00137fa685", + "_name": "silencer_all_rotor_43_v2_556x45", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_all_rotor_43_v2_762x39", + "ShortName": "silencer_all_rotor_43_v2_762x39", + "Description": "silencer_all_rotor_43_v2_762x39\n", + "Weight": 0.57, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_all_rotor_43_v2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": -18, + "EffectiveDistance": 0, + "Ergonomics": -22, + "Velocity": 0.7, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "pms", + "DurabilityBurnModificator": 1.71, + "HeatFactor": 1.14, + "CoolFactor": 1.03 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "5caf187cae92157c28402e43": { + "_id": "5caf187cae92157c28402e43", + "_name": "silencer_ash12_ckib_ash12_std_127x55", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "Глушитель Пламегаситель ТГП-А 5.45х39", + "ShortName": "ТГП-А", + "Description": "Глушитель Пламегаситель Тактический ТГП-А производства ГУ НПО \"Спецтехника и связь\" для автоматов на базе АК 5.45х39.", + "Weight": 0.7, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_ash12_ckib_ash12_std_127x55.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -13, + "Loudness": -15, + "EffectiveDistance": 0, + "Ergonomics": -21, + "Velocity": 0.7, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "pms", + "DurabilityBurnModificator": 1.45, + "HeatFactor": 1.16, + "CoolFactor": 1.12 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "615d8f8567085e45ef1409ca": { + "_id": "615d8f8567085e45ef1409ca", + "_name": "silencer_hex_hexagon_wafflemaker_suppressor_545x39", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_akm_hexagon_akm_762x39", + "ShortName": "silencer_akm_hexagon_akm_762x39", + "Description": "silencer_akm_hexagon_akm_762x39", + "Weight": 0.29, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_hex_hexagon_wafflemaker_suppressor_545x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5b800e9286f7747a8b04f3ff", + "5b80242286f77429445e0b47", + "5d15ce51d7ad1a1eff619092" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": -25, + "EffectiveDistance": 0, + "Ergonomics": -19, + "Velocity": 0.8, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "pms", + "DurabilityBurnModificator": 1.75, + "HeatFactor": 1.14, + "CoolFactor": 1.11 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "618407a850224f204c1da549": { + "_id": "618407a850224f204c1da549", + "_name": "muzzle_ar15_fn_scar_l_3_prong_flash_hider_w_mount_556x45", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar15_vendetta_precision_vp_09_556x45", + "ShortName": "muzzle_ar15_vendetta_precision_vp_09_556x45", + "Description": "muzzle_ar15_vendetta_precision_vp_09_556x45", + "Weight": 0.15, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar15_fn_scar_l_3_prong_flash_hider_w_mount_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 1, + "Recoil": -5, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, + "CoolFactor": 1 + }, + "_proto": "5649aa744bdc2ded0b8b457e" + }, + "5cf78496d7f00c065703d6ca": { + "_id": "5cf78496d7f00c065703d6ca", + "_name": "muzzle_ar10_lantac_bmd_adapter_a3_762x51", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_ar10_lantac_bmd_adapter_a3_762x51", + "ShortName": "muzzle_ar10_lantac_bmd_adapter_a3_762x51", + "Description": "muzzle_ar10_lantac_bmd_adapter_a3_762x51", + "Weight": 0.03, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar10_lantac_bmd_adapter_a3_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle_000", + "_id": "5cf79771d7f00c10864ba54a", + "_parent": "5cf78496d7f00c065703d6ca", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c878e9d2e2216000f201903" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle_001", + "_id": "5cf79779d7f00c065b42253f", + "_parent": "5cf78496d7f00c065703d6ca", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cf78720d7f00c06595bc93e" ] } ] @@ -178871,6 +178001,1123 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, + "muzzleModType": "muzzleCombo", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "560838c94bdc2d77798b4569" + }, + "5de6556a205ddc616a6bc4f7": { + "_id": "5de6556a205ddc616a6bc4f7", + "_name": "muzzle_vpo215_molot_vpo_215_thread_protector_std_366tkm", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_vpo215_molot_vpo_215_thread_protector_std_366tkm", + "ShortName": "muzzle_vpo215_molot_vpo_215_thread_protector_std_366tkm", + "Description": "muzzle_vpo215_molot_vpo_215_thread_protector_std_366tkm", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_vpo215_molot_vpo_215_thread_protector_std_366tkm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "muzzleCombo", + "DurabilityBurnModificator": 0.95, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "560838c94bdc2d77798b4569" + }, + "5fbe760793164a5b6278efc8": { + "_id": "5fbe760793164a5b6278efc8", + "_name": "silencer_base_sig_srd_762_qd_762x51", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_base_sig_srd_762_qd_762x51", + "ShortName": "silencer_base_sig_srd_762_qd_762x51", + "Description": "silencer_base_sig_srd_762_qd_762x51", + "Weight": 0.46, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_base_sig_srd_762_qd_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -9, + "Loudness": -35, + "EffectiveDistance": 0, + "Ergonomics": -24, + "Velocity": 0.7, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.65, + "HeatFactor": 1.135, + "CoolFactor": 1.04 + }, + "_proto": "54490a4d4bdc2dbc018b4573" + }, + "5dfa3d2b0dee1b22f862eade": { + "_id": "5dfa3d2b0dee1b22f862eade", + "_name": "silencer_qdc_kac_prs_qdc_762x51", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_ar10_aac_762_sdn_6_762x51", + "ShortName": "silencer_ar10_aac_762_sdn_6_762x51", + "Description": "silencer_ar10_aac_762_sdn_6_762x51", + "Weight": 0.59, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_qdc_kac_prs_qdc_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -8, + "Loudness": -30, + "EffectiveDistance": 0, + "Ergonomics": -23, + "Velocity": 0.9, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.68, + "HeatFactor": 1.15, + "CoolFactor": 1.06 + }, + "_proto": "54490a4d4bdc2dbc018b4573" + }, + "64c196ad26a15b84aa07132f": { + "_id": "64c196ad26a15b84aa07132f", + "_name": "silencer_ak12_izhmash_ak12_supressor_std_545x39", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_akm_hexagon_akm_762x39", + "ShortName": "silencer_akm_hexagon_akm_762x39", + "Description": "silencer_akm_hexagon_akm_762x39", + "Weight": 0.45, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_ak12_izhmash_ak12_supressor_std_545x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -8, + "Loudness": -25, + "EffectiveDistance": 0, + "Ergonomics": -25, + "Velocity": 0.6, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "pms", + "DurabilityBurnModificator": 1.7, + "HeatFactor": 1.135, + "CoolFactor": 1.1 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "5de8f2d5b74cd90030650c72": { + "_id": "5de8f2d5b74cd90030650c72", + "_name": "silencer_mp9_bt_supressor_9x19", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_all_silencerco_osprey_9_9x19", + "ShortName": "silencer_all_silencerco_osprey_9_9x19", + "Description": "silencer_all_silencerco_osprey_9_9x19", + "Weight": 0.29, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_mp9_bt_supressor_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": -20, + "EffectiveDistance": 0, + "Ergonomics": -16, + "Velocity": 0.8, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.72, + "HeatFactor": 1.13, + "CoolFactor": 1 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "5cff9e84d7ad1a049e54ed55": { + "_id": "5cff9e84d7ad1a049e54ed55", + "_name": "silencer_wave_dd_wave_qd_supressor_multi", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_ar10_aac_762_sdn_6_762x51", + "ShortName": "silencer_ar10_aac_762_sdn_6_762x51", + "Description": "silencer_ar10_aac_762_sdn_6_762x51", + "Weight": 0.488, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_wave_dd_wave_qd_supressor_multi.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": -20, + "EffectiveDistance": 0, + "Ergonomics": -17, + "Velocity": 0.7, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.67, + "HeatFactor": 1.14, + "CoolFactor": 1 + }, + "_proto": "54490a4d4bdc2dbc018b4573" + }, + "626673016f1edc06f30cf6d5": { + "_id": "626673016f1edc06f30cf6d5", + "_name": "silencer_qdc_kac_qdc_suppressor_556x45", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_asr_silencerco_saker_556_556x45", + "ShortName": "silencer_asr_silencerco_saker_556_556x45", + "Description": "silencer_asr_silencerco_saker_556_556x45", + "Weight": 0.453, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_qdc_kac_qdc_suppressor_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c6d85e02e22165df16b81f4" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -10, + "Loudness": -33, + "EffectiveDistance": 0, + "Ergonomics": -20, + "Velocity": 0.6, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.53, + "HeatFactor": 1.05, + "CoolFactor": 1.15 + }, + "_proto": "54490a4d4bdc2dbc018b4573" + }, + "607ffb988900dc2d9a55b6e4": { + "_id": "607ffb988900dc2d9a55b6e4", + "_name": "muzzle_ar10_surefire_procomp_762_muzzle_brake_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar10_surefire_procomp_762_muzzle_brake_762x51", + "ShortName": "muzzle_ar10_surefire_procomp_762_muzzle_brake_762x51", + "Description": "muzzle_ar10_surefire_procomp_762_muzzle_brake_762x51", + "Weight": 0.097, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar10_surefire_procomp_762_muzzle_brake_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 3, + "Recoil": -8, + "Loudness": 10, + "EffectiveDistance": 0, + "Ergonomics": -1.5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.987, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5580239d4bdc2de7118b4583": { + "_id": "5580239d4bdc2de7118b4583", + "_name": "muzzle_tkpd_izhmash_93x64", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "Компенсатор ГК-00", + "ShortName": "ГК-00", + "Description": "Тяжелый компенсатор очень хорошо гасящий отдачу", + "Weight": 0.151, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_tkpd_izhmash_std_93x64.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1, + "HeatFactor": 0.983, + "CoolFactor": 1.006 + } + }, + "5bbdb8bdd4351e4502011460": { + "_id": "5bbdb8bdd4351e4502011460", + "_name": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", + "ShortName": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", + "Description": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", + "Weight": 0.12, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -10, + "Loudness": 20, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.985, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5de8f237bbaf010b10528a70": { + "_id": "5de8f237bbaf010b10528a70", + "_name": "muzzle_mp9_bt_supressor_mount_9x19", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_mp9_bt_supressor_mount_9x19", + "ShortName": "muzzle_mp9_bt_supressor_mount_9x19", + "Description": "muzzle_mp9_bt_supressor_mount_9x19", + "Weight": 0.14, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_mp9_bt_supressor_mount_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5de8f237bbaf010b10528a72", + "_parent": "5de8f237bbaf010b10528a70", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5de8f2d5b74cd90030650c72" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5de91a58883dde2175416468", + "_parent": "5de8f237bbaf010b10528a70", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "muzzleCombo", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "560838c94bdc2d77798b4569" + }, + "5cf67a1bd7f00c06585fb6f3": { + "_id": "5cf67a1bd7f00c06585fb6f3", + "_name": "muzzle_mosin_weapon_tuning_wt1052_multi", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_mosin_weapon_tuning_wt1052", + "ShortName": "muzzle_mosin_weapon_tuning_wt1052", + "Description": "muzzle_mosin_weapon_tuning_wt1052", + "Weight": 0.06, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_mosin_weapon_tuning_wt1052_multi.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5cf67a1bd7f00c06585fb6f5", + "_parent": "5cf67a1bd7f00c06585fb6f3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac72e7d5acfc40016339a02", + "5ac72e895acfc43b321d4bd5", + "5f633f791b231926f2329f13", + "5cc9ad73d7f00c000e2579d4", + "5649ab884bdc2ded0b8b457f", + "5e208b9842457a4a7a33d074", + "59fb257e86f7742981561852" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, "muzzleModType": "conpensator", "DurabilityBurnModificator": 1, "HeatFactor": 1, @@ -179072,140 +179319,6 @@ }, "_proto": "560838c94bdc2d77798b4569" }, - "5de8f237bbaf010b10528a70": { - "_id": "5de8f237bbaf010b10528a70", - "_name": "muzzle_mp9_bt_supressor_mount_9x19", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_mp9_bt_supressor_mount_9x19", - "ShortName": "muzzle_mp9_bt_supressor_mount_9x19", - "Description": "muzzle_mp9_bt_supressor_mount_9x19", - "Weight": 0.14, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_mp9_bt_supressor_mount_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5de8f237bbaf010b10528a72", - "_parent": "5de8f237bbaf010b10528a70", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5de8f2d5b74cd90030650c72" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5de91a58883dde2175416468", - "_parent": "5de8f237bbaf010b10528a70", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "560838c94bdc2d77798b4569" - }, "630f27f04f3f6281050b94d7": { "_id": "630f27f04f3f6281050b94d7", "_name": "muzzle_aug_ratworx_suppressor_adapter_556x45", @@ -179342,23 +179455,23 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "5cf67a1bd7f00c06585fb6f3": { - "_id": "5cf67a1bd7f00c06585fb6f3", - "_name": "muzzle_mosin_weapon_tuning_wt1052_multi", + "615d8e9867085e45ef1409c6": { + "_id": "615d8e9867085e45ef1409c6", + "_name": "muzzle_ak_kiba_thread_adapter_762x51", "_parent": "550aa4dd4bdc2dc9348b4569", "_type": "Item", "_props": { - "Name": "muzzle_mosin_weapon_tuning_wt1052", - "ShortName": "muzzle_mosin_weapon_tuning_wt1052", - "Description": "muzzle_mosin_weapon_tuning_wt1052", - "Weight": 0.06, + "Name": "muzzle_ak_cnc_warrior_ar15_thread_adapter_556x45", + "ShortName": "muzzle_ak_cnc_warrior_ar15_thread_adapter_556x45", + "Description": "muzzle_ak_cnc_warrior_ar15_thread_adapter_556x45", + "Weight": 0.11, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_mosin_weapon_tuning_wt1052_multi.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ak_kiba_thread_adapter_762x51.bundle", "rcid": "" }, "UsePrefab": { @@ -179406,20 +179519,36 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "5cf67a1bd7f00c06585fb6f5", - "_parent": "5cf67a1bd7f00c06585fb6f3", + "_id": "615d8e9867085e45ef1409c8", + "_parent": "615d8e9867085e45ef1409c6", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5ac72e7d5acfc40016339a02", - "5ac72e895acfc43b321d4bd5", - "5f633f791b231926f2329f13", - "5cc9ad73d7f00c000e2579d4", - "5649ab884bdc2ded0b8b457f", - "5e208b9842457a4a7a33d074", - "59fb257e86f7742981561852" + "612e0d3767085e45ef14057f", + "5b7d693d5acfc43bca706a3d", + "5a34fd2bc4a282329a73b4c5", + "618178aa1cb55961fa0fdc80", + "6065c6e7132d4d12c81fd8e1", + "5d1f819086f7744b355c219b", + "5dcbe965e4ed22586443a79d", + "5d026791d7ad1a04a067ea63", + "5dfa3cd1b33c0951220c079b", + "6130c43c67085e45ef1405a1", + "5cdd7685d7f00c000f260ed2", + "5c878e9d2e2216000f201903", + "5d02677ad7ad1a04a15c0f95", + "5bbdb8bdd4351e4502011460", + "5cdd7693d7f00c0010373aa5", + "607ffb988900dc2d9a55b6e4", + "615d8eb350224f204c1da1cf", + "612e0e3c290d254f5e6b291d", + "5d443f8fa4b93678dd4a01aa", + "5fbc22ccf24b94483f726483", + "59bffc1f86f77435b128b872", + "5cf78496d7f00c065703d6ca", + "5a34fe59c4a282000b1521a2" ] } ] @@ -179433,10 +179562,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": 0, + "Recoil": -1, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, + "Ergonomics": -1, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -179628,6 +179757,93 @@ }, "_proto": "54490a4d4bdc2dbc018b4573" }, + "5cebec00d7f00c065c53522a": { + "_id": "5cebec00d7f00c065c53522a", + "_name": "silencer_p90_fn_p90_attenuator_57x28", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_p90_fn_p90_attenuator_57x28", + "ShortName": "silencer_p90_fn_p90_attenuator_57x28", + "Description": "silencer_p90_fn_p90_attenuator_57x28", + "Weight": 0.677, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_p90_fn_p90_attenuator_57x28.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": -21, + "EffectiveDistance": 0, + "Ergonomics": -17, + "Velocity": 0.7, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.66, + "HeatFactor": 1.13, + "CoolFactor": 1 + }, + "_proto": "55d614004bdc2d86028b4568" + }, "5a0d63621526d8dba31fe3bf": { "_id": "5a0d63621526d8dba31fe3bf", "_name": "silencer_akm_tochmash_pbs-1_762x39", @@ -179802,110 +180018,23 @@ }, "_proto": "55d614004bdc2d86028b4568" }, - "5cebec00d7f00c065c53522a": { - "_id": "5cebec00d7f00c065c53522a", - "_name": "silencer_p90_fn_p90_attenuator_57x28", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_p90_fn_p90_attenuator_57x28", - "ShortName": "silencer_p90_fn_p90_attenuator_57x28", - "Description": "silencer_p90_fn_p90_attenuator_57x28", - "Weight": 0.677, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_p90_fn_p90_attenuator_57x28.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": -21, - "EffectiveDistance": 0, - "Ergonomics": -17, - "Velocity": 0.7, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.66, - "HeatFactor": 1.13, - "CoolFactor": 1 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "5cf79599d7f00c10875d9212": { - "_id": "5cf79599d7f00c10875d9212", - "_name": "muzzle_mosin_tiger_rock_muzzle_brake_adapter_multi", + "5cf79389d7f00c10941a0c4d": { + "_id": "5cf79389d7f00c10941a0c4d", + "_name": "muzzle_mosin_noname_custom_thread_adapter_multi", "_parent": "550aa4dd4bdc2dc9348b4569", "_type": "Item", "_props": { "Name": "muzzle_mosin_weapon_tuning_wt1052", "ShortName": "muzzle_mosin_weapon_tuning_wt1052", "Description": "muzzle_mosin_weapon_tuning_wt1052", - "Weight": 0.07, + "Weight": 0.09, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_mosin_tiger_rock_muzzle_brake_adapter_multi.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_mosin_noname_custom_thread_adapter_multi.bundle", "rcid": "" }, "UsePrefab": { @@ -179953,785 +180082,24 @@ "Slots": [ { "_name": "mod_muzzle", - "_id": "5cf79599d7f00c10875d9214", - "_parent": "5cf79599d7f00c10875d9212", + "_id": "5cf79389d7f00c10941a0c4f", + "_parent": "5cf79389d7f00c10941a0c4d", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "612e0d3767085e45ef14057f", - "5b7d693d5acfc43bca706a3d", - "5a34fd2bc4a282329a73b4c5", - "6065c6e7132d4d12c81fd8e1", - "5d1f819086f7744b355c219b", - "5dcbe965e4ed22586443a79d", - "5d026791d7ad1a04a067ea63", - "5dfa3cd1b33c0951220c079b", - "6130c43c67085e45ef1405a1", - "5cdd7685d7f00c000f260ed2", - "5c878e9d2e2216000f201903", - "5d02677ad7ad1a04a15c0f95", - "5bbdb8bdd4351e4502011460", - "5cdd7693d7f00c0010373aa5", - "607ffb988900dc2d9a55b6e4", - "615d8eb350224f204c1da1cf", - "612e0e3c290d254f5e6b291d", - "5d443f8fa4b93678dd4a01aa", - "5c7954d52e221600106f4cc7", - "59bffc1f86f77435b128b872", - "5cf78496d7f00c065703d6ca", - "628a66b41d5e41750e314f34", - "618178aa1cb55961fa0fdc80" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "571a28e524597720b4066567": { - "_id": "571a28e524597720b4066567", - "_name": "silencer_tt_custom_noname_762x25tt", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "Глушитель кустарный 7.62х25 ТТ", - "ShortName": "Глуш. ТТ", - "Description": "Самопальный глушитель для ТТ с кустарным стволом. Устанавливать и вести стрельбу только на свой страх и риск.", - "Weight": 0.332, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_tt_custom_noname_762x25tt.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -7, - "Loudness": -30, - "EffectiveDistance": 0, - "Ergonomics": -12, - "Velocity": 0.7, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.75, - "HeatFactor": 1.15, - "CoolFactor": 1 - }, - "_proto": "56e05b06d2720bb2668b4586" - }, - "5a33a8ebc4a282000c5a950d": { - "_id": "5a33a8ebc4a282000c5a950d", - "_name": "silencer_all_alpha_dog_alpha_9_9x19", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_all_alpha_dog_alpha_9_9x19", - "ShortName": "silencer_all_alpha_dog_alpha_9_9x19", - "Description": "silencer_all_alpha_dog_alpha_9_9x19", - "Weight": 0.29, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_all_alpha_dog_alpha_9_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5a33a9fdc4a282329a73b4af", - "_parent": "5a33a8ebc4a282000c5a950d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": -25, - "EffectiveDistance": 0, - "Ergonomics": -13, - "Velocity": 0.7, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.6, - "HeatFactor": 1.13, - "CoolFactor": 1 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "58aeac1b86f77457c419f475": { - "_id": "58aeac1b86f77457c419f475", - "_name": "silencer_sig_mpx_sd_9x19", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_sig_mpx_sd_9x19", - "ShortName": "silencer_sig_mpx_sd_9x19", - "Description": "silencer_sig_mpx_sd_9x19", - "Weight": 0.6, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_sig_mpx_sd_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -11, - "Loudness": -28, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": 0.7, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.35, - "HeatFactor": 1.13, - "CoolFactor": 1.07 - }, - "_proto": "564caa3d4bdc2d17108b458e" - }, - "5b363dd25acfc4001a598fd2": { - "_id": "5b363dd25acfc4001a598fd2", - "_name": "silencer_base_silencerco_salvo_12g", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_base_silencerco_salvo_12g", - "ShortName": "silencer_base_silencerco_salvo_12g", - "Description": "silencer_base_silencerco_salvo_12g", - "Weight": 0.97, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_base_silencerco_salvo_12g.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a78832ec5856700155a6ca3", - "5882163224597757561aa920", - "56deeefcd2720bc8328b4568" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -13, - "Loudness": -27, - "EffectiveDistance": 0, - "Ergonomics": -28, - "Velocity": 1.2, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "pms", - "DurabilityBurnModificator": 1.75, - "HeatFactor": 1.18, - "CoolFactor": 1.13 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "5d3ef698a4b9361182109872": { - "_id": "5d3ef698a4b9361182109872", - "_name": "silencer_57_gemtech_sfn_57_57x28", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_all_aac_illusion_9_9x19", - "ShortName": "silencer_all_aac_illusion_9_9x19", - "Description": "silencer_all_aac_illusion_9_9x19", - "Weight": 0.15, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_57_gemtech_sfn_57_57x28.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": -25, - "EffectiveDistance": 0, - "Ergonomics": -15, - "Velocity": 0.6, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.52, - "HeatFactor": 1.13, - "CoolFactor": 1 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "5a32a064c4a28200741e22de": { - "_id": "5a32a064c4a28200741e22de", - "_name": "silencer_all_silencerco_osprey_9_9x19", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_all_silencerco_osprey_9_9x19", - "ShortName": "silencer_all_silencerco_osprey_9_9x19", - "Description": "silencer_all_silencerco_osprey_9_9x19", - "Weight": 0.27, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_all_silencerco_osprey_9_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -8, - "Loudness": -27, - "EffectiveDistance": 0, - "Ergonomics": -17, - "Velocity": 0.7, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.65, - "HeatFactor": 1.13, - "CoolFactor": 1.08 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "6130c4d51cb55961fa0fd49f": { - "_id": "6130c4d51cb55961fa0fd49f", - "_name": "silencer_ump_b&t_ump_45_1143x23", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_base_silencerco_omega_45k_1143x23", - "ShortName": "silencer_base_silencerco_omega_45k_1143x23", - "Description": "silencer_base_silencerco_omega_45k_1143x23", - "Weight": 0.453, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_ump_b&t_ump_45_1143x23.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -8, - "Loudness": -25, - "EffectiveDistance": 0, - "Ergonomics": -16, - "Velocity": 0.8, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.7, - "HeatFactor": 1.13, - "CoolFactor": 1 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "5a0abb6e1526d8000a025282": { - "_id": "5a0abb6e1526d8000a025282", - "_name": "muzzle_ak_tactica_tula_ak_adapter_762x39", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_ak_tactica_tula_ak_adapter_762x39", - "ShortName": "muzzle_ak_tactica_tula_ak_adapter_762x39", - "Description": "muzzle_ak_tactica_tula_ak_adapter_762x39", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak_tactica_tula_ak_adapter_762x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5a0abe721526d805dc1ebad2", - "_parent": "5a0abb6e1526d8000a025282", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac72e7d5acfc40016339a02", - "5ac72e895acfc43b321d4bd5", - "5f633f791b231926f2329f13", + "59d64fc686f774171b243fe2", + "5a0d716f1526d8000d26b1e2", + "5f633f68f5750b524b45f112", + "5c878ebb2e2216001219d48a", + "5a9ea27ca2750c00137fa672", "5cc9ad73d7f00c000e2579d4", - "5649ab884bdc2ded0b8b457f", - "5e208b9842457a4a7a33d074", - "59fb257e86f7742981561852" + "5c7951452e221644f31bfd5c", + "5a0abb6e1526d8000a025282", + "593d489686f7745c6255d58a", + "5a0d63621526d8dba31fe3bf", + "5a9fbacda2750c00141e080f" ] } ] @@ -180766,23 +180134,23 @@ }, "_proto": "544a38634bdc2d58388b4568" }, - "5cc9b815d7f00c000e2579d6": { - "_id": "5cc9b815d7f00c000e2579d6", - "_name": "muzzle_ar15_troy_claymore_muzzle_brake_556_556x45", + "5d440625a4b9361eec4ae6c5": { + "_id": "5d440625a4b9361eec4ae6c5", + "_name": "muzzle_ar15_thunder_beast_223cb_muzzle_brake_556x45", "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", - "ShortName": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", - "Description": "muzzle_ar15_surefire_sf3p_flash_hider_556x45", - "Weight": 0.064, + "Name": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "ShortName": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Description": "muzzle_ar10_aac_blackout_51t_flash_hider_762x51", + "Weight": 0.109, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar15_troy_claymore_muzzle_brake_556_556x45.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ar15_thunder_beast_223cb_muzzle_brake_556x45.bundle", "rcid": "" }, "UsePrefab": { @@ -180827,298 +180195,17 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 3, - "Recoil": -6, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.99, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5addbb825acfc408fb139400": { - "_id": "5addbb825acfc408fb139400", - "_name": "muzzle_m14_jp_enterprises_tactical_compensator_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_m14_jp_enterprises_tactical_compensator_762x51", - "ShortName": "muzzle_m14_jp_enterprises_tactical_compensator_762x51", - "Description": "muzzle_m14_jp_enterprises_tactical_compensator_762x51", - "Weight": 0.13, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_m14_jp_enterprises_tactical_compensator_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_front", - "_id": "5addbb825acfc408fb139402", - "_parent": "5addbb825acfc408fb139400", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5addba3e5acfc4001669f0ab", - "5aafa49ae5b5b00015042a58" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -11, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.987, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" - }, - "5c878e9d2e2216000f201903": { - "_id": "5c878e9d2e2216000f201903", - "_name": "muzzle_ar10_lantac_dgn762b_muzzle_brake_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", - "ShortName": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", - "Description": "muzzle_ak_spike_tactical_ak_dynacomp_762x39", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ar10_lantac_dgn762b_muzzle_brake_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -11, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 0.96, - "HeatFactor": 0.99, - "CoolFactor": 1.006 - }, - "_proto": "5649aa744bdc2ded0b8b457e" - }, - "5b363dea5acfc4771e1c5e7e": { - "_id": "5b363dea5acfc4771e1c5e7e", - "_name": "muzzle_12g_silencerco_salvo_adaper_12g", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_12g_silencerco_salvo_adaper_12g", - "ShortName": "muzzle_12g_silencerco_salvo_adaper_12g", - "Description": "muzzle_12g_silencerco_salvo_adaper_12g", - "Weight": 0.13, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_12g_silencerco_salvo_adaper_12g.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], "Slots": [ { "_name": "mod_muzzle", - "_id": "5b3642985acfc40017548632", - "_parent": "5b363dea5acfc4771e1c5e7e", + "_id": "5d440625a4b9361eec4ae6c7", + "_parent": "5d440625a4b9361eec4ae6c5", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5b363dd25acfc4001a598fd2" + "5d44064fa4b9361e4f6eb8b5" ] } ] @@ -181132,146 +180219,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 1, - "Recoil": -1, + "Recoil": -6, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 0.987, - "CoolFactor": 1 - }, - "_proto": "5580239d4bdc2de7118b4583" - }, - "5e21ca18e4d47f0da15e77dd": { - "_id": "5e21ca18e4d47f0da15e77dd", - "_name": "muzzle_ak_cnc_warrior_ar15_thread_adapter_556x45", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_ak_cnc_warrior_ar15_thread_adapter_556x45", - "ShortName": "muzzle_ak_cnc_warrior_ar15_thread_adapter_556x45", - "Description": "muzzle_ak_cnc_warrior_ar15_thread_adapter_556x45", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_ak_cnc_warrior_ar15_thread_adapter.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5e21ca18e4d47f0da15e77df", - "_parent": "5e21ca18e4d47f0da15e77dd", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7e5f112e221600106f4ede", - "5c0fafb6d174af02a96260ba", - "612e0cfc8004cc50514c2d9e", - "5cf6937cd7f00c056c53fb39", - "544a38634bdc2d58388b4568", - "5cff9e5ed7ad1a09407397d4", - "5c48a2a42e221602b66d1e07", - "5f6372e2865db925d54f3869", - "615d8e2f1cb55961fa0fd9a4", - "56ea8180d2720bf2698b456a", - "5d02676dd7ad1a049e54f6dc", - "56ea6fafd2720b844b8b4593", - "5943ee5a86f77413872d25ec", - "609269c3b0e443224b421cc1", - "5c7fb51d2e2216001219ce11", - "5ea172e498dacb342978818e", - "5c6d710d2e22165df16b81e7", - "612e0e55a112697a4b3a66e7", - "5d440625a4b9361eec4ae6c5", - "5cc9b815d7f00c000e2579d6", - "5a7c147ce899ef00150bd8b8", - "5c7954d52e221600106f4cc7", - "59bffc1f86f77435b128b872", - "5a9fbb84a2750c00137fa685", - "626a74340be03179a165e30c", - "626667e87379c44d557b7550", - "62669bccdb9ebb4daa44cd14", - "63ac5c9658d0485fc039f0b8", - "6386120cd6baa055ad1e201c", - "6405ff6bd4578826ec3e377a", - "64943b74e9998d641b0412ed" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, + "Ergonomics": -2, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -181283,29 +180234,29 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "muzzleModType": "conpensator", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, + "DurabilityBurnModificator": 0.98, + "HeatFactor": 0.99, "CoolFactor": 1 }, "_proto": "544a38634bdc2d58388b4568" }, - "5c0000c00db834001a6697fc": { - "_id": "5c0000c00db834001a6697fc", - "_name": "muzzle_mp5_hk_navy_style_3_lug_supressor_adapter_9x19", - "_parent": "550aa4dd4bdc2dc9348b4569", + "5cdd7693d7f00c0010373aa5": { + "_id": "5cdd7693d7f00c0010373aa5", + "_name": "muzzle_ar10_precision_armament_m11_severe_duty_muzzle_brake_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", "_type": "Item", "_props": { - "Name": "muzzle_mp5_hk_lug_adapter_9x19", - "ShortName": "muzzle_mp5_hk_lug_adapter_9x19", - "Description": "muzzle_mp5_hk_lug_adapter_9x19", - "Weight": 0.091, + "Name": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", + "ShortName": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", + "Description": "muzzle_ar10_odin_works_atlas_7_muzzle_brake_762x51", + "Weight": 0.12, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_mp5_hk_navy_style_3_lug_supressor_adapter_9x19.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_ar10_precision_armament_m11_severe_duty_muzzle_brake_762x51.bundle", "rcid": "" }, "UsePrefab": { @@ -181322,7 +180273,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, + "LootExperience": 10, "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, @@ -181350,37 +180301,12 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5c013b390db83400232ff0bc", - "_parent": "5c0000c00db834001a6697fc", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "615d8df08004cc50514c3236", - "5c07c5ed0db834001b73571c", - "59bffc1f86f77435b128b872", - "5c7e8fab2e22165df16b889b", - "5a9fb739a2750c003215717f", - "5c6165902e22160010261b28", - "5a32a064c4a28200741e22de" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, - "Accuracy": 0, - "Recoil": 0, + "Accuracy": 2, + "Recoil": -7, "Loudness": 0, "EffectiveDistance": 0, "Ergonomics": -1, @@ -181394,939 +180320,12 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, + "muzzleModType": "brake", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.987, "CoolFactor": 1 }, - "_proto": "560838c94bdc2d77798b4569" - }, - "5b86a0e586f7745b600ccb23": { - "_id": "5b86a0e586f7745b600ccb23", - "_name": "silencer_mosin_bramit_std_762x54r", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_mosin_bramit_std_762x54r", - "ShortName": "silencer_mosin_bramit_std_762x54r", - "Description": "silencer_mosin_bramit_std_762x54r", - "Weight": 1.1, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_mosin_bramit_std_762x54r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": -5, - "Recoil": -7, - "Loudness": -15, - "EffectiveDistance": 0, - "Ergonomics": -20, - "Velocity": 0.3, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.5, - "HeatFactor": 1.14, - "CoolFactor": 1 - }, - "_proto": "54490a4d4bdc2dbc018b4573" - }, - "60926df0132d4d12c81fd9df": { - "_id": "60926df0132d4d12c81fd9df", - "_name": "silencer_asr_silencerco_saker_556_556x45", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_asr_silencerco_saker_556_556x45", - "ShortName": "silencer_asr_silencerco_saker_556_556x45", - "Description": "silencer_asr_silencerco_saker_556_556x45", - "Weight": 0.51, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_asr_silencerco_saker_556_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -10, - "Loudness": -29, - "EffectiveDistance": 0, - "Ergonomics": -22, - "Velocity": 0.7, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.58, - "HeatFactor": 1.13, - "CoolFactor": 1 - }, - "_proto": "54490a4d4bdc2dbc018b4573" - }, - "57838c962459774a1651ec63": { - "_id": "57838c962459774a1651ec63", - "_name": "silencer_vss_tochmash_std_9x39", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_vss_tochmash_std_9x39", - "ShortName": "silencer_vss_tochmash_std_9x39", - "Description": "silencer_vss_tochmash_std_9x39", - "Weight": 0.496, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_vss_tochmash_std_9x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 2, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "57838d2f2459774a256959b0", - "_parent": "57838c962459774a1651ec63", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57c44e7b2459772d28133248", - "57838e1b2459774a256959b1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "57e02a3824597706777d7ec7", - "_parent": "57838c962459774a1651ec63", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59eb7ebe86f7740b373438ce", - "57a3459f245977764a01f703", - "5a9fc7e6a2750c0032157184" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -14, - "Loudness": -30, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": 1.1, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.49, - "HeatFactor": 1.24, - "CoolFactor": 1.06 - }, - "_proto": "564caa3d4bdc2d17108b458e" - }, - "64527a263d52156624001fd7": { - "_id": "64527a263d52156624001fd7", - "_name": "muzzle_9a91_kbp_hanguard_retainer", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_p226_sig_thread_protector_std_9x19", - "ShortName": "muzzle_p226_sig_thread_protector_std_9x19", - "Description": "muzzle_p226_sig_thread_protector_std_9x19", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_9a91_kbp_hanguard_retainer.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 0.97, - "HeatFactor": 0.995, - "CoolFactor": 1.003 - }, - "_proto": "560838c94bdc2d77798b4569" - }, - "57da93632459771cb65bf83f": { - "_id": "57da93632459771cb65bf83f", - "_name": "silencer_kac_nt-4_556x45_blk", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_kac_nt-4_556x45", - "ShortName": "silencer_kac_nt-4_556x45", - "Description": "silencer_kac_nt-4_556x45", - "Weight": 0.68, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_kac_nt-4_556x45_blk.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -7, - "Loudness": -20, - "EffectiveDistance": 0, - "Ergonomics": -21, - "Velocity": 0.7, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.75, - "HeatFactor": 1.14, - "CoolFactor": 1.05 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "5926d33d86f77410de68ebc0": { - "_id": "5926d33d86f77410de68ebc0", - "_name": "silencer_hk_mp5_sd_std_9x19", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_hk_mp5_sd_std_9x19", - "ShortName": "silencer_hk_mp5_sd_std_9x19", - "Description": "silencer_hk_mp5_sd_std_9x19", - "Weight": 0.496, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_hk_mp5_sd_std_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 3, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount", - "_id": "59c63cf786f7747afe54e68b", - "_parent": "5926d33d86f77410de68ebc0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59c63b4486f7747afb151c1c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -15, - "Loudness": -34, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": 1.2, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.4, - "HeatFactor": 1.13, - "CoolFactor": 1.08 - }, - "_proto": "57838c962459774a1651ec63" - }, - "59bffbb386f77435b379b9c2": { - "_id": "59bffbb386f77435b379b9c2", - "_name": "silencer_mount_silencerco_hybrid_46_multi", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_mount_silencerco_hybrid_46_multi", - "ShortName": "silencer_mount_silencerco_hybrid_46_multi", - "Description": "silencer_mount_silencerco_hybrid_46_multi", - "Weight": 0.49, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_mount_silencerco_hybrid_46_multi.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -7, - "Loudness": -22, - "EffectiveDistance": 0, - "Ergonomics": -17, - "Velocity": 0.8, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.72, - "HeatFactor": 1.15, - "CoolFactor": 1.04 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "59fb257e86f7742981561852": { - "_id": "59fb257e86f7742981561852", - "_name": "silencer_akm_zenit_dtk-4m_762x39", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_akm_hexagon_akm_762x39", - "ShortName": "silencer_akm_hexagon_akm_762x39", - "Description": "silencer_akm_hexagon_akm_762x39", - "Weight": 0.354, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_akm_zenit_dtk-4m_762x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": -19, - "EffectiveDistance": 0, - "Ergonomics": -21, - "Velocity": 0.7, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "pms", - "DurabilityBurnModificator": 1.65, - "HeatFactor": 1.14, - "CoolFactor": 1.09 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "54490a4d4bdc2dbc018b4573": { - "_id": "54490a4d4bdc2dbc018b4573", - "_name": "silencer_silencerco_sparrow_22lr", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "Глушитель Silencerco Sparrow 22 .22LR", - "ShortName": "Sparrow 22", - "Description": "Глушитель Silencerco Sparrow 22 для патронов кольцевого воспламенения калибром .22LR .17 HMR .22 MAG .22 WMR .22 Hornet 5.7mm.", - "Weight": 0.184, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_silencerco_sparrow_22lr.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": -1, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0.75, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.7, - "HeatFactor": 1.12, - "CoolFactor": 1 - } - }, - "5580239d4bdc2de7118b4583": { - "_id": "5580239d4bdc2de7118b4583", - "_name": "muzzle_tkpd_izhmash_93x64", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "Компенсатор ГК-00", - "ShortName": "ГК-00", - "Description": "Тяжелый компенсатор очень хорошо гасящий отдачу", - "Weight": 0.151, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_tkpd_izhmash_std_93x64.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1, - "HeatFactor": 0.983, - "CoolFactor": 1.006 - } + "_proto": "544a38634bdc2d58388b4568" }, "5c0111ab0db834001966914d": { "_id": "5c0111ab0db834001966914d", @@ -182631,93 +180630,6 @@ }, "_proto": "560838c94bdc2d77798b4569" }, - "62e2a7138e1ac9380579c122": { - "_id": "62e2a7138e1ac9380579c122", - "_name": "silencer_sr2m_tochmash_suppressor_9x21", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_all_silencerco_osprey_9_9x19", - "ShortName": "silencer_all_silencerco_osprey_9_9x19", - "Description": "silencer_all_silencerco_osprey_9_9x19", - "Weight": 0.575, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_sr2m_tochmash_suppressor_9x21.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": -18, - "EffectiveDistance": 0, - "Ergonomics": -14, - "Velocity": 0.9, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.75, - "HeatFactor": 1.18, - "CoolFactor": 1 - }, - "_proto": "55d614004bdc2d86028b4568" - }, "5a7ad74e51dfba0015068f45": { "_id": "5a7ad74e51dfba0015068f45", "_name": "silencer_glock_fischer_development_fd917_9x19", @@ -183018,6 +180930,93 @@ }, "_proto": "55d614004bdc2d86028b4568" }, + "62e2a7138e1ac9380579c122": { + "_id": "62e2a7138e1ac9380579c122", + "_name": "silencer_sr2m_tochmash_suppressor_9x21", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_all_silencerco_osprey_9_9x19", + "ShortName": "silencer_all_silencerco_osprey_9_9x19", + "Description": "silencer_all_silencerco_osprey_9_9x19", + "Weight": 0.575, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_sr2m_tochmash_suppressor_9x21.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": -18, + "EffectiveDistance": 0, + "Ergonomics": -14, + "Velocity": 0.9, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.75, + "HeatFactor": 1.18, + "CoolFactor": 1 + }, + "_proto": "55d614004bdc2d86028b4568" + }, "5ba26ae8d4351e00367f9bdb": { "_id": "5ba26ae8d4351e00367f9bdb", "_name": "silencer_mp7_bt_rotex_2_46x30", @@ -183192,390 +181191,23 @@ }, "_proto": "55d614004bdc2d86028b4568" }, - "5f2aa4464b50c14bcf07acdb": { - "_id": "5f2aa4464b50c14bcf07acdb", - "_name": "muzzle_all_kel_tec_thread_protector_762x51", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_p226_sig_thread_protector_std_9x19", - "ShortName": "muzzle_p226_sig_thread_protector_std_9x19", - "Description": "muzzle_p226_sig_thread_protector_std_9x19", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_all_kel_tec_thread_protector_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "560838c94bdc2d77798b4569" - }, - "5d270b3c8abbc3105335cfb8": { - "_id": "5d270b3c8abbc3105335cfb8", - "_name": "muzzle_m700_remington_thread_protector_762x51", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_m700_remington_thread_protector_762x51", - "ShortName": "muzzle_m700_remington_thread_protector_762x51", - "Description": "muzzle_m700_remington_thread_protector_762x51", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_m700_remington_thread_protector_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "560838c94bdc2d77798b4569" - }, - "5b363e1b5acfc4771e1c5e80": { - "_id": "5b363e1b5acfc4771e1c5e80", - "_name": "muzzle_saiga12_silencerco_salvo_adaper_12g", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_saiga12_silencerco_salvo_adaper_12g", - "ShortName": "muzzle_saiga12_silencerco_salvo_adaper_12g", - "Description": "muzzle_saiga12_silencerco_salvo_adaper_12g", - "Weight": 0.11, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_saiga12_silencerco_salvo_adaper_12g.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5b3642db5acfc400153b766a", - "_parent": "5b363e1b5acfc4771e1c5e80", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b363dd25acfc4001a598fd2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 1, - "Recoil": -1, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "brake", - "DurabilityBurnModificator": 1, - "HeatFactor": 0.987, - "CoolFactor": 1 - }, - "_proto": "5580239d4bdc2de7118b4583" - }, - "5a6b592c8dc32e00094b97bf": { - "_id": "5a6b592c8dc32e00094b97bf", - "_name": "muzzle_glock_double_diamond_thread_protector_9x19", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_glock_alpha_wolf_thread_protector_9x19", - "ShortName": "muzzle_glock_alpha_wolf_thread_protector_9x19", - "Description": "muzzle_glock_alpha_wolf_thread_protector_9x19", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_glock_double_diamond_thread_protector_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "560838c94bdc2d77798b4569" - }, - "593d490386f7745ee97a1555": { - "_id": "593d490386f7745ee97a1555", - "_name": "silencer_sks_hexagon_sks_762x39", + "62811fa609427b40ab14e765": { + "_id": "62811fa609427b40ab14e765", + "_name": "silencer_ai_accuracy_international_tactical_sound_moderator_86x70", "_parent": "550aa4cd4bdc2dd8348b456c", "_type": "Item", "_props": { - "Name": "silencer_sks_hexagon_sks_762x39", - "ShortName": "silencer_sks_hexagon_sks_762x39", - "Description": "silencer_sks_hexagon_sks_762x39", - "Weight": 0.462, + "Name": "silencer_ar10_aac_762_sdn_6_762x51", + "ShortName": "silencer_ar10_aac_762_sdn_6_762x51", + "Description": "silencer_ar10_aac_762_sdn_6_762x51", + "Weight": 0.665, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_sks_hexagon_sks_762x39.bundle", + "path": "assets/content/items/mods/silencers/silencer_ai_accuracy_international_tactical_sound_moderator_86x70.bundle", "rcid": "" }, "UsePrefab": { @@ -183625,98 +181257,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -6, - "Loudness": -15, + "Recoil": -11, + "Loudness": -28, "EffectiveDistance": 0, - "Ergonomics": -21, - "Velocity": 0.7, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "pms", - "DurabilityBurnModificator": 1.71, - "HeatFactor": 1.14, - "CoolFactor": 1.05 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "5c7e8fab2e22165df16b889b": { - "_id": "5c7e8fab2e22165df16b889b", - "_name": "silencer_all_aac_illusion_9_9x19", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_all_aac_illusion_9_9x19", - "ShortName": "silencer_all_aac_illusion_9_9x19", - "Description": "silencer_all_aac_illusion_9_9x19", - "Weight": 0.294, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_all_aac_illusion_9_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": -20, - "EffectiveDistance": 0, - "Ergonomics": -15, - "Velocity": 0.8, + "Ergonomics": -30, + "Velocity": 0.9, "RaidModdable": true, "ToolModdable": false, "BlocksFolding": false, @@ -183727,127 +181272,11 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.62, - "HeatFactor": 1.12, - "CoolFactor": 1 + "DurabilityBurnModificator": 2.15, + "HeatFactor": 1.25, + "CoolFactor": 1.08 }, - "_proto": "55d614004bdc2d86028b4568" - }, - "5cf79389d7f00c10941a0c4d": { - "_id": "5cf79389d7f00c10941a0c4d", - "_name": "muzzle_mosin_noname_custom_thread_adapter_multi", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_mosin_weapon_tuning_wt1052", - "ShortName": "muzzle_mosin_weapon_tuning_wt1052", - "Description": "muzzle_mosin_weapon_tuning_wt1052", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_mosin_noname_custom_thread_adapter_multi.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5cf79389d7f00c10941a0c4f", - "_parent": "5cf79389d7f00c10941a0c4d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59d64fc686f774171b243fe2", - "5a0d716f1526d8000d26b1e2", - "5f633f68f5750b524b45f112", - "5c878ebb2e2216001219d48a", - "5a9ea27ca2750c00137fa672", - "5cc9ad73d7f00c000e2579d4", - "5c7951452e221644f31bfd5c", - "5a0abb6e1526d8000a025282", - "593d489686f7745c6255d58a", - "5a0d63621526d8dba31fe3bf", - "5a9fbacda2750c00141e080f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "544a38634bdc2d58388b4568" + "_proto": "54490a4d4bdc2dbc018b4573" }, "59fb137a86f7740adb646af1": { "_id": "59fb137a86f7740adb646af1", @@ -184112,6 +181541,740 @@ }, "_proto": "55d614004bdc2d86028b4568" }, + "587de5ba2459771c0f1e8a58": { + "_id": "587de5ba2459771c0f1e8a58", + "_name": "muzzle_p226_sig_thread_protector_std_9x19", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_p226_sig_thread_protector_std_9x19", + "ShortName": "muzzle_p226_sig_thread_protector_std_9x19", + "Description": "muzzle_p226_sig_thread_protector_std_9x19", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_p226_sig_thread_protector_std_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "muzzleCombo", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "560838c94bdc2d77798b4569" + }, + "5addbb825acfc408fb139400": { + "_id": "5addbb825acfc408fb139400", + "_name": "muzzle_m14_jp_enterprises_tactical_compensator_762x51", + "_parent": "550aa4bf4bdc2dd6348b456b", + "_type": "Item", + "_props": { + "Name": "muzzle_m14_jp_enterprises_tactical_compensator_762x51", + "ShortName": "muzzle_m14_jp_enterprises_tactical_compensator_762x51", + "Description": "muzzle_m14_jp_enterprises_tactical_compensator_762x51", + "Weight": 0.13, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_m14_jp_enterprises_tactical_compensator_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_front", + "_id": "5addbb825acfc408fb139402", + "_parent": "5addbb825acfc408fb139400", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5addba3e5acfc4001669f0ab", + "5aafa49ae5b5b00015042a58" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -11, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 0.96, + "HeatFactor": 0.987, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5b363dea5acfc4771e1c5e7e": { + "_id": "5b363dea5acfc4771e1c5e7e", + "_name": "muzzle_12g_silencerco_salvo_adaper_12g", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_12g_silencerco_salvo_adaper_12g", + "ShortName": "muzzle_12g_silencerco_salvo_adaper_12g", + "Description": "muzzle_12g_silencerco_salvo_adaper_12g", + "Weight": 0.13, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_12g_silencerco_salvo_adaper_12g.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5b3642985acfc40017548632", + "_parent": "5b363dea5acfc4771e1c5e7e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b363dd25acfc4001a598fd2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 1, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 0.987, + "CoolFactor": 1 + }, + "_proto": "5580239d4bdc2de7118b4583" + }, + "64527a263d52156624001fd7": { + "_id": "64527a263d52156624001fd7", + "_name": "muzzle_9a91_kbp_hanguard_retainer", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_p226_sig_thread_protector_std_9x19", + "ShortName": "muzzle_p226_sig_thread_protector_std_9x19", + "Description": "muzzle_p226_sig_thread_protector_std_9x19", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_9a91_kbp_hanguard_retainer.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "muzzleCombo", + "DurabilityBurnModificator": 0.97, + "HeatFactor": 0.995, + "CoolFactor": 1.003 + }, + "_proto": "560838c94bdc2d77798b4569" + }, + "59fb257e86f7742981561852": { + "_id": "59fb257e86f7742981561852", + "_name": "silencer_akm_zenit_dtk-4m_762x39", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_akm_hexagon_akm_762x39", + "ShortName": "silencer_akm_hexagon_akm_762x39", + "Description": "silencer_akm_hexagon_akm_762x39", + "Weight": 0.354, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_akm_zenit_dtk-4m_762x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": -19, + "EffectiveDistance": 0, + "Ergonomics": -21, + "Velocity": 0.7, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "pms", + "DurabilityBurnModificator": 1.65, + "HeatFactor": 1.14, + "CoolFactor": 1.09 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "57da93632459771cb65bf83f": { + "_id": "57da93632459771cb65bf83f", + "_name": "silencer_kac_nt-4_556x45_blk", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_kac_nt-4_556x45", + "ShortName": "silencer_kac_nt-4_556x45", + "Description": "silencer_kac_nt-4_556x45", + "Weight": 0.68, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_kac_nt-4_556x45_blk.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -7, + "Loudness": -20, + "EffectiveDistance": 0, + "Ergonomics": -21, + "Velocity": 0.7, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.75, + "HeatFactor": 1.14, + "CoolFactor": 1.05 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "59bffbb386f77435b379b9c2": { + "_id": "59bffbb386f77435b379b9c2", + "_name": "silencer_mount_silencerco_hybrid_46_multi", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_mount_silencerco_hybrid_46_multi", + "ShortName": "silencer_mount_silencerco_hybrid_46_multi", + "Description": "silencer_mount_silencerco_hybrid_46_multi", + "Weight": 0.49, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_mount_silencerco_hybrid_46_multi.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -7, + "Loudness": -22, + "EffectiveDistance": 0, + "Ergonomics": -17, + "Velocity": 0.8, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.72, + "HeatFactor": 1.15, + "CoolFactor": 1.04 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "54490a4d4bdc2dbc018b4573": { + "_id": "54490a4d4bdc2dbc018b4573", + "_name": "silencer_silencerco_sparrow_22lr", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "Глушитель Silencerco Sparrow 22 .22LR", + "ShortName": "Sparrow 22", + "Description": "Глушитель Silencerco Sparrow 22 для патронов кольцевого воспламенения калибром .22LR .17 HMR .22 MAG .22 WMR .22 Hornet 5.7mm.", + "Weight": 0.184, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_silencerco_sparrow_22lr.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": -1, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0.75, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.7, + "HeatFactor": 1.12, + "CoolFactor": 1 + } + }, "58272d7f2459774f6311ddfd": { "_id": "58272d7f2459774f6311ddfd", "_name": "muzzle_12g_red_heat_gk-02_12g", @@ -184373,110 +182536,23 @@ }, "_proto": "560838c94bdc2d77798b4569" }, - "59c0ec5b86f77435b128bfca": { - "_id": "59c0ec5b86f77435b128bfca", - "_name": "silencer_12g_hexagon_12k", + "5a27b6bec4a282000e496f78": { + "_id": "5a27b6bec4a282000e496f78", + "_name": "silencer_sr1mp_tochmash_sr1mp_std_9x21", "_parent": "550aa4cd4bdc2dd8348b456c", "_type": "Item", "_props": { - "Name": "silencer_12g_hexagon_12k", - "ShortName": "silencer_12g_hexagon_12k", - "Description": "silencer_12g_hexagon_12k", - "Weight": 0.493, + "Name": "silencer_sr1mp_tochmash_sr1mp_std_9x21", + "ShortName": "silencer_sr1mp_tochmash_sr1mp_std_9x21", + "Description": "silencer_sr1mp_tochmash_sr1mp_std_9x21", + "Weight": 0.49, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_12g_hexagon_12k.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -11, - "Loudness": -14, - "EffectiveDistance": 0, - "Ergonomics": -27, - "Velocity": 0.9, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "pms", - "DurabilityBurnModificator": 1.75, - "HeatFactor": 1.18, - "CoolFactor": 1.1 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "564caa3d4bdc2d17108b458e": { - "_id": "564caa3d4bdc2d17108b458e", - "_name": "silencer_ak74_spectehnika_tgpa_545x39", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "Глушитель Пламегаситель ТГП-А 5.45х39", - "ShortName": "ТГП-А", - "Description": "Глушитель Пламегаситель Тактический ТГП-А производства ГУ НПО \"Спецтехника и связь\" для автоматов на базе АК 5.45х39.", - "Weight": 0.7, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_ak74_spectehnika_tgpa_545x39.bundle", + "path": "assets/content/items/mods/silencers/silencer_sr1mp_tochmash_sr1mp_std_9x21.bundle", "rcid": "" }, "UsePrefab": { @@ -184527,9 +182603,9 @@ "Durability": 100, "Accuracy": 0, "Recoil": -7, - "Loudness": -25, + "Loudness": -20, "EffectiveDistance": 0, - "Ergonomics": -25, + "Ergonomics": -15, "Velocity": 0.8, "RaidModdable": true, "ToolModdable": false, @@ -184541,8 +182617,8 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.71, - "HeatFactor": 1.14, + "DurabilityBurnModificator": 1.7, + "HeatFactor": 1.12, "CoolFactor": 1 }, "_proto": "55d614004bdc2d86028b4568" @@ -184721,6 +182797,93 @@ }, "_proto": "57da93632459771cb65bf83f" }, + "564caa3d4bdc2d17108b458e": { + "_id": "564caa3d4bdc2d17108b458e", + "_name": "silencer_ak74_spectehnika_tgpa_545x39", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "Глушитель Пламегаситель ТГП-А 5.45х39", + "ShortName": "ТГП-А", + "Description": "Глушитель Пламегаситель Тактический ТГП-А производства ГУ НПО \"Спецтехника и связь\" для автоматов на базе АК 5.45х39.", + "Weight": 0.7, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_ak74_spectehnika_tgpa_545x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -7, + "Loudness": -25, + "EffectiveDistance": 0, + "Ergonomics": -25, + "Velocity": 0.8, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.71, + "HeatFactor": 1.14, + "CoolFactor": 1 + }, + "_proto": "55d614004bdc2d86028b4568" + }, "638612b607dfed1ccb7206ba": { "_id": "638612b607dfed1ccb7206ba", "_name": "silencer_sdqd_griffin_m4sd_k_silencer_556x45", @@ -184984,23 +183147,23 @@ }, "_proto": "55d614004bdc2d86028b4568" }, - "5a27b6bec4a282000e496f78": { - "_id": "5a27b6bec4a282000e496f78", - "_name": "silencer_sr1mp_tochmash_sr1mp_std_9x21", + "59c0ec5b86f77435b128bfca": { + "_id": "59c0ec5b86f77435b128bfca", + "_name": "silencer_12g_hexagon_12k", "_parent": "550aa4cd4bdc2dd8348b456c", "_type": "Item", "_props": { - "Name": "silencer_sr1mp_tochmash_sr1mp_std_9x21", - "ShortName": "silencer_sr1mp_tochmash_sr1mp_std_9x21", - "Description": "silencer_sr1mp_tochmash_sr1mp_std_9x21", - "Weight": 0.49, + "Name": "silencer_12g_hexagon_12k", + "ShortName": "silencer_12g_hexagon_12k", + "Description": "silencer_12g_hexagon_12k", + "Weight": 0.493, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_sr1mp_tochmash_sr1mp_std_9x21.bundle", + "path": "assets/content/items/mods/silencers/silencer_12g_hexagon_12k.bundle", "rcid": "" }, "UsePrefab": { @@ -185050,11 +183213,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -7, - "Loudness": -20, + "Recoil": -11, + "Loudness": -14, "EffectiveDistance": 0, - "Ergonomics": -15, - "Velocity": 0.8, + "Ergonomics": -27, + "Velocity": 0.9, "RaidModdable": true, "ToolModdable": false, "BlocksFolding": false, @@ -185064,30 +183227,136 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.7, - "HeatFactor": 1.12, - "CoolFactor": 1 + "muzzleModType": "pms", + "DurabilityBurnModificator": 1.75, + "HeatFactor": 1.18, + "CoolFactor": 1.1 }, "_proto": "55d614004bdc2d86028b4568" }, - "62e2a754b6c0ee2f230cee0f": { - "_id": "62e2a754b6c0ee2f230cee0f", - "_name": "muzzle_sr2m_tochmash_hand_stop_9x21", + "5b363e1b5acfc4771e1c5e80": { + "_id": "5b363e1b5acfc4771e1c5e80", + "_name": "muzzle_saiga12_silencerco_salvo_adaper_12g", "_parent": "550aa4dd4bdc2dc9348b4569", "_type": "Item", "_props": { - "Name": "muzzle_mp9_bt_supressor_mount_9x19", - "ShortName": "muzzle_mp9_bt_supressor_mount_9x19", - "Description": "muzzle_mp9_bt_supressor_mount_9x19", - "Weight": 0.087, + "Name": "muzzle_saiga12_silencerco_salvo_adaper_12g", + "ShortName": "muzzle_saiga12_silencerco_salvo_adaper_12g", + "Description": "muzzle_saiga12_silencerco_salvo_adaper_12g", + "Weight": 0.11, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_sr2m_tochmash_hand_stop_9x21.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_saiga12_silencerco_salvo_adaper_12g.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5b3642db5acfc400153b766a", + "_parent": "5b363e1b5acfc4771e1c5e80", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b363dd25acfc4001a598fd2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 1, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "brake", + "DurabilityBurnModificator": 1, + "HeatFactor": 0.987, + "CoolFactor": 1 + }, + "_proto": "5580239d4bdc2de7118b4583" + }, + "5d270b3c8abbc3105335cfb8": { + "_id": "5d270b3c8abbc3105335cfb8", + "_name": "muzzle_m700_remington_thread_protector_762x51", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_m700_remington_thread_protector_762x51", + "ShortName": "muzzle_m700_remington_thread_protector_762x51", + "Description": "muzzle_m700_remington_thread_protector_762x51", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_m700_remington_thread_protector_762x51.bundle", "rcid": "" }, "UsePrefab": { @@ -185140,7 +183409,821 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 3, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "muzzleCombo", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "560838c94bdc2d77798b4569" + }, + "5f2aa4464b50c14bcf07acdb": { + "_id": "5f2aa4464b50c14bcf07acdb", + "_name": "muzzle_all_kel_tec_thread_protector_762x51", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_p226_sig_thread_protector_std_9x19", + "ShortName": "muzzle_p226_sig_thread_protector_std_9x19", + "Description": "muzzle_p226_sig_thread_protector_std_9x19", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_all_kel_tec_thread_protector_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "muzzleCombo", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "560838c94bdc2d77798b4569" + }, + "5a6b592c8dc32e00094b97bf": { + "_id": "5a6b592c8dc32e00094b97bf", + "_name": "muzzle_glock_double_diamond_thread_protector_9x19", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_glock_alpha_wolf_thread_protector_9x19", + "ShortName": "muzzle_glock_alpha_wolf_thread_protector_9x19", + "Description": "muzzle_glock_alpha_wolf_thread_protector_9x19", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_glock_double_diamond_thread_protector_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "muzzleCombo", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "560838c94bdc2d77798b4569" + }, + "5c7e8fab2e22165df16b889b": { + "_id": "5c7e8fab2e22165df16b889b", + "_name": "silencer_all_aac_illusion_9_9x19", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_all_aac_illusion_9_9x19", + "ShortName": "silencer_all_aac_illusion_9_9x19", + "Description": "silencer_all_aac_illusion_9_9x19", + "Weight": 0.294, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_all_aac_illusion_9_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": -20, + "EffectiveDistance": 0, + "Ergonomics": -15, + "Velocity": 0.8, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.62, + "HeatFactor": 1.12, + "CoolFactor": 1 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "593d490386f7745ee97a1555": { + "_id": "593d490386f7745ee97a1555", + "_name": "silencer_sks_hexagon_sks_762x39", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_sks_hexagon_sks_762x39", + "ShortName": "silencer_sks_hexagon_sks_762x39", + "Description": "silencer_sks_hexagon_sks_762x39", + "Weight": 0.462, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_sks_hexagon_sks_762x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": -15, + "EffectiveDistance": 0, + "Ergonomics": -21, + "Velocity": 0.7, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "pms", + "DurabilityBurnModificator": 1.71, + "HeatFactor": 1.14, + "CoolFactor": 1.05 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "630f2982cdb9e392db0cbcc7": { + "_id": "630f2982cdb9e392db0cbcc7", + "_name": "silencer_aug_reflex_suppressor_t4aug_ranger_556x45", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_all_rotor_43_v2_762x39", + "ShortName": "silencer_all_rotor_43_v2_762x39", + "Description": "silencer_all_rotor_43_v2_762x39\n", + "Weight": 0.38, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_aug_reflex_suppressor_t4aug_ranger_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "630f27f04f3f6281050b94d7", + "634eba08f69c710e0108d386" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": -18, + "EffectiveDistance": 0, + "Ergonomics": -22, + "Velocity": 0.2, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "pms", + "DurabilityBurnModificator": 1.71, + "HeatFactor": 1.14, + "CoolFactor": 1.03 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "5e21ca18e4d47f0da15e77dd": { + "_id": "5e21ca18e4d47f0da15e77dd", + "_name": "muzzle_ak_cnc_warrior_ar15_thread_adapter_556x45", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_ak_cnc_warrior_ar15_thread_adapter_556x45", + "ShortName": "muzzle_ak_cnc_warrior_ar15_thread_adapter_556x45", + "Description": "muzzle_ak_cnc_warrior_ar15_thread_adapter_556x45", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ak_cnc_warrior_ar15_thread_adapter.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5e21ca18e4d47f0da15e77df", + "_parent": "5e21ca18e4d47f0da15e77dd", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7e5f112e221600106f4ede", + "5c0fafb6d174af02a96260ba", + "612e0cfc8004cc50514c2d9e", + "5cf6937cd7f00c056c53fb39", + "544a38634bdc2d58388b4568", + "5cff9e5ed7ad1a09407397d4", + "5c48a2a42e221602b66d1e07", + "5f6372e2865db925d54f3869", + "615d8e2f1cb55961fa0fd9a4", + "56ea8180d2720bf2698b456a", + "5d02676dd7ad1a049e54f6dc", + "56ea6fafd2720b844b8b4593", + "5943ee5a86f77413872d25ec", + "609269c3b0e443224b421cc1", + "5c7fb51d2e2216001219ce11", + "5ea172e498dacb342978818e", + "5c6d710d2e22165df16b81e7", + "612e0e55a112697a4b3a66e7", + "5d440625a4b9361eec4ae6c5", + "5cc9b815d7f00c000e2579d6", + "5a7c147ce899ef00150bd8b8", + "5c7954d52e221600106f4cc7", + "59bffc1f86f77435b128b872", + "5a9fbb84a2750c00137fa685", + "626a74340be03179a165e30c", + "626667e87379c44d557b7550", + "62669bccdb9ebb4daa44cd14", + "63ac5c9658d0485fc039f0b8", + "6386120cd6baa055ad1e201c", + "6405ff6bd4578826ec3e377a", + "64943b74e9998d641b0412ed" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5cf79599d7f00c10875d9212": { + "_id": "5cf79599d7f00c10875d9212", + "_name": "muzzle_mosin_tiger_rock_muzzle_brake_adapter_multi", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_mosin_weapon_tuning_wt1052", + "ShortName": "muzzle_mosin_weapon_tuning_wt1052", + "Description": "muzzle_mosin_weapon_tuning_wt1052", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_mosin_tiger_rock_muzzle_brake_adapter_multi.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5cf79599d7f00c10875d9214", + "_parent": "5cf79599d7f00c10875d9212", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "612e0d3767085e45ef14057f", + "5b7d693d5acfc43bca706a3d", + "5a34fd2bc4a282329a73b4c5", + "6065c6e7132d4d12c81fd8e1", + "5d1f819086f7744b355c219b", + "5dcbe965e4ed22586443a79d", + "5d026791d7ad1a04a067ea63", + "5dfa3cd1b33c0951220c079b", + "6130c43c67085e45ef1405a1", + "5cdd7685d7f00c000f260ed2", + "5c878e9d2e2216000f201903", + "5d02677ad7ad1a04a15c0f95", + "5bbdb8bdd4351e4502011460", + "5cdd7693d7f00c0010373aa5", + "607ffb988900dc2d9a55b6e4", + "615d8eb350224f204c1da1cf", + "612e0e3c290d254f5e6b291d", + "5d443f8fa4b93678dd4a01aa", + "5c7954d52e221600106f4cc7", + "59bffc1f86f77435b128b872", + "5cf78496d7f00c065703d6ca", + "628a66b41d5e41750e314f34", + "618178aa1cb55961fa0fdc80" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -1, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, + "5c0000c00db834001a6697fc": { + "_id": "5c0000c00db834001a6697fc", + "_name": "muzzle_mp5_hk_navy_style_3_lug_supressor_adapter_9x19", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_mp5_hk_lug_adapter_9x19", + "ShortName": "muzzle_mp5_hk_lug_adapter_9x19", + "Description": "muzzle_mp5_hk_lug_adapter_9x19", + "Weight": 0.091, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_mp5_hk_navy_style_3_lug_supressor_adapter_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5c013b390db83400232ff0bc", + "_parent": "5c0000c00db834001a6697fc", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "615d8df08004cc50514c3236", + "5c07c5ed0db834001b73571c", + "59bffc1f86f77435b128b872", + "5c7e8fab2e22165df16b889b", + "5a9fb739a2750c003215717f", + "5c6165902e22160010261b28", + "5a32a064c4a28200741e22de" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -185158,15 +184241,1165 @@ }, "_proto": "560838c94bdc2d77798b4569" }, - "5d270ca28abbc31ee25ee821": { - "_id": "5d270ca28abbc31ee25ee821", - "_name": "muzzle_m700_remington_stainless_thread_protector_762x51", + "5a33a8ebc4a282000c5a950d": { + "_id": "5a33a8ebc4a282000c5a950d", + "_name": "silencer_all_alpha_dog_alpha_9_9x19", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_all_alpha_dog_alpha_9_9x19", + "ShortName": "silencer_all_alpha_dog_alpha_9_9x19", + "Description": "silencer_all_alpha_dog_alpha_9_9x19", + "Weight": 0.29, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_all_alpha_dog_alpha_9_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5a33a9fdc4a282329a73b4af", + "_parent": "5a33a8ebc4a282000c5a950d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": -25, + "EffectiveDistance": 0, + "Ergonomics": -13, + "Velocity": 0.7, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.6, + "HeatFactor": 1.13, + "CoolFactor": 1 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "5b86a0e586f7745b600ccb23": { + "_id": "5b86a0e586f7745b600ccb23", + "_name": "silencer_mosin_bramit_std_762x54r", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_mosin_bramit_std_762x54r", + "ShortName": "silencer_mosin_bramit_std_762x54r", + "Description": "silencer_mosin_bramit_std_762x54r", + "Weight": 1.1, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_mosin_bramit_std_762x54r.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": -5, + "Recoil": -7, + "Loudness": -15, + "EffectiveDistance": 0, + "Ergonomics": -20, + "Velocity": 0.3, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.5, + "HeatFactor": 1.14, + "CoolFactor": 1 + }, + "_proto": "54490a4d4bdc2dbc018b4573" + }, + "58aeac1b86f77457c419f475": { + "_id": "58aeac1b86f77457c419f475", + "_name": "silencer_sig_mpx_sd_9x19", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_sig_mpx_sd_9x19", + "ShortName": "silencer_sig_mpx_sd_9x19", + "Description": "silencer_sig_mpx_sd_9x19", + "Weight": 0.6, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_sig_mpx_sd_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -11, + "Loudness": -28, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 0.7, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.35, + "HeatFactor": 1.13, + "CoolFactor": 1.07 + }, + "_proto": "564caa3d4bdc2d17108b458e" + }, + "6130c4d51cb55961fa0fd49f": { + "_id": "6130c4d51cb55961fa0fd49f", + "_name": "silencer_ump_b&t_ump_45_1143x23", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_base_silencerco_omega_45k_1143x23", + "ShortName": "silencer_base_silencerco_omega_45k_1143x23", + "Description": "silencer_base_silencerco_omega_45k_1143x23", + "Weight": 0.453, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_ump_b&t_ump_45_1143x23.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -8, + "Loudness": -25, + "EffectiveDistance": 0, + "Ergonomics": -16, + "Velocity": 0.8, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.7, + "HeatFactor": 1.13, + "CoolFactor": 1 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "571a28e524597720b4066567": { + "_id": "571a28e524597720b4066567", + "_name": "silencer_tt_custom_noname_762x25tt", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "Глушитель кустарный 7.62х25 ТТ", + "ShortName": "Глуш. ТТ", + "Description": "Самопальный глушитель для ТТ с кустарным стволом. Устанавливать и вести стрельбу только на свой страх и риск.", + "Weight": 0.332, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_tt_custom_noname_762x25tt.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -7, + "Loudness": -30, + "EffectiveDistance": 0, + "Ergonomics": -12, + "Velocity": 0.7, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.75, + "HeatFactor": 1.15, + "CoolFactor": 1 + }, + "_proto": "56e05b06d2720bb2668b4586" + }, + "5a32a064c4a28200741e22de": { + "_id": "5a32a064c4a28200741e22de", + "_name": "silencer_all_silencerco_osprey_9_9x19", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_all_silencerco_osprey_9_9x19", + "ShortName": "silencer_all_silencerco_osprey_9_9x19", + "Description": "silencer_all_silencerco_osprey_9_9x19", + "Weight": 0.27, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_all_silencerco_osprey_9_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -8, + "Loudness": -27, + "EffectiveDistance": 0, + "Ergonomics": -17, + "Velocity": 0.7, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.65, + "HeatFactor": 1.13, + "CoolFactor": 1.08 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "5926d33d86f77410de68ebc0": { + "_id": "5926d33d86f77410de68ebc0", + "_name": "silencer_hk_mp5_sd_std_9x19", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_hk_mp5_sd_std_9x19", + "ShortName": "silencer_hk_mp5_sd_std_9x19", + "Description": "silencer_hk_mp5_sd_std_9x19", + "Weight": 0.496, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_hk_mp5_sd_std_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount", + "_id": "59c63cf786f7747afe54e68b", + "_parent": "5926d33d86f77410de68ebc0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59c63b4486f7747afb151c1c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -15, + "Loudness": -34, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 1.2, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.4, + "HeatFactor": 1.13, + "CoolFactor": 1.08 + }, + "_proto": "57838c962459774a1651ec63" + }, + "57838c962459774a1651ec63": { + "_id": "57838c962459774a1651ec63", + "_name": "silencer_vss_tochmash_std_9x39", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_vss_tochmash_std_9x39", + "ShortName": "silencer_vss_tochmash_std_9x39", + "Description": "silencer_vss_tochmash_std_9x39", + "Weight": 0.496, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_vss_tochmash_std_9x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 3, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 2, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "57838d2f2459774a256959b0", + "_parent": "57838c962459774a1651ec63", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57c44e7b2459772d28133248", + "57838e1b2459774a256959b1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "57e02a3824597706777d7ec7", + "_parent": "57838c962459774a1651ec63", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59eb7ebe86f7740b373438ce", + "57a3459f245977764a01f703", + "5a9fc7e6a2750c0032157184" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -14, + "Loudness": -30, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 1.1, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.49, + "HeatFactor": 1.24, + "CoolFactor": 1.06 + }, + "_proto": "564caa3d4bdc2d17108b458e" + }, + "5b363dd25acfc4001a598fd2": { + "_id": "5b363dd25acfc4001a598fd2", + "_name": "silencer_base_silencerco_salvo_12g", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_base_silencerco_salvo_12g", + "ShortName": "silencer_base_silencerco_salvo_12g", + "Description": "silencer_base_silencerco_salvo_12g", + "Weight": 0.97, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_base_silencerco_salvo_12g.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a78832ec5856700155a6ca3", + "5882163224597757561aa920", + "56deeefcd2720bc8328b4568" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -13, + "Loudness": -27, + "EffectiveDistance": 0, + "Ergonomics": -28, + "Velocity": 1.2, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "pms", + "DurabilityBurnModificator": 1.75, + "HeatFactor": 1.18, + "CoolFactor": 1.13 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "60926df0132d4d12c81fd9df": { + "_id": "60926df0132d4d12c81fd9df", + "_name": "silencer_asr_silencerco_saker_556_556x45", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_asr_silencerco_saker_556_556x45", + "ShortName": "silencer_asr_silencerco_saker_556_556x45", + "Description": "silencer_asr_silencerco_saker_556_556x45", + "Weight": 0.51, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_asr_silencerco_saker_556_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -10, + "Loudness": -29, + "EffectiveDistance": 0, + "Ergonomics": -22, + "Velocity": 0.7, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.58, + "HeatFactor": 1.13, + "CoolFactor": 1 + }, + "_proto": "54490a4d4bdc2dbc018b4573" + }, + "5d3ef698a4b9361182109872": { + "_id": "5d3ef698a4b9361182109872", + "_name": "silencer_57_gemtech_sfn_57_57x28", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_all_aac_illusion_9_9x19", + "ShortName": "silencer_all_aac_illusion_9_9x19", + "Description": "silencer_all_aac_illusion_9_9x19", + "Weight": 0.15, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_57_gemtech_sfn_57_57x28.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -6, + "Loudness": -25, + "EffectiveDistance": 0, + "Ergonomics": -15, + "Velocity": 0.6, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.52, + "HeatFactor": 1.13, + "CoolFactor": 1 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "5c7954d52e221600106f4cc7": { + "_id": "5c7954d52e221600106f4cc7", + "_name": "muzzle_all_gemtech_direct_mount_multi", "_parent": "550aa4dd4bdc2dc9348b4569", "_type": "Item", "_props": { - "Name": "muzzle_m700_remington_stainless_thread_protector_762x51", - "ShortName": "muzzle_m700_remington_stainless_thread_protector_762x51", - "Description": "muzzle_m700_remington_stainless_thread_protector_762x51", + "Name": "muzzle_all_silencerco_hybrid_46_direct_thread_multi", + "ShortName": "muzzle_all_silencerco_hybrid_46_direct_thread_multi", + "Description": "muzzle_all_silencerco_hybrid_46_direct_thread_multi", + "Weight": 0.11, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_all_gemtech_direct_mount_multi.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5c7954d52e221600106f4cc9", + "_parent": "5c7954d52e221600106f4cc7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7955c22e221644f31bfd5e" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "muzzleCombo", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "560838c94bdc2d77798b4569" + }, + "5a6b59a08dc32e000b452fb7": { + "_id": "5a6b59a08dc32e000b452fb7", + "_name": "muzzle_glock_salient_arms_thread_protector_9x19", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_glock_salient_arms_thread_protector_9x19", + "ShortName": "muzzle_glock_salient_arms_thread_protector_9x19", + "Description": "muzzle_glock_salient_arms_thread_protector_9x19", "Weight": 0.01, "BackgroundColor": "blue", "Width": 1, @@ -185174,7 +185407,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_m700_remington_stainless_thread_protector_762x51.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_glock_salient_arms_thread_protector_9x19.bundle", "rcid": "" }, "UsePrefab": { @@ -185245,23 +185478,129 @@ }, "_proto": "560838c94bdc2d77798b4569" }, - "5f63407e1b231926f2329f15": { - "_id": "5f63407e1b231926f2329f15", - "_name": "silencer_vepr_rotor43_762x51", + "5fc4b992187fea44d52edaa9": { + "_id": "5fc4b992187fea44d52edaa9", + "_name": "muzzle_all_silencerco_omega_45k_direct_thread_adapter_1143x23", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_all_silencerco_omega_45k_direct_thread_adapter_1143x23", + "ShortName": "muzzle_all_silencerco_omega_45k_direct_thread_adapter_1143x23", + "Description": "muzzle_all_silencerco_omega_45k_direct_thread_adapter_1143x23", + "Weight": 0.135, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_all_silencerco_omega_45k_direct_thread_adapter_1143x23.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5fc4b992187fea44d52edaab", + "_parent": "5fc4b992187fea44d52edaa9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fc4b9b17283c4046c5814d7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "muzzleCombo", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "560838c94bdc2d77798b4569" + }, + "5a9fbb74a2750c0032157181": { + "_id": "5a9fbb74a2750c0032157181", + "_name": "silencer_all_rotor_43_v2_366TKM", "_parent": "550aa4cd4bdc2dd8348b456c", "_type": "Item", "_props": { - "Name": "silencer_vepr_rotor43_762x51", - "ShortName": "silencer_vepr_rotor43_762x51", - "Description": "silencer_vepr_rotor43_762x51\n", - "Weight": 0.9, + "Name": "silencer_all_rotor_43_v2_762x39", + "ShortName": "silencer_all_rotor_43_v2_762x39", + "Description": "silencer_all_rotor_43_v2_762x39\n", + "Weight": 0.57, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_vepr_rotor43_762x51.bundle", + "path": "assets/content/items/mods/silencers/silencer_all_rotor_43_v2.bundle", "rcid": "" }, "UsePrefab": { @@ -185287,7 +185626,7 @@ "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, + "ExtraSizeForceAdd": true, "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, @@ -185311,11 +185650,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -10, - "Loudness": -20, + "Recoil": -7, + "Loudness": -15, "EffectiveDistance": 0, - "Ergonomics": -28, - "Velocity": 0.7, + "Ergonomics": -22, + "Velocity": 0.8, "RaidModdable": true, "ToolModdable": false, "BlocksFolding": false, @@ -185326,186 +185665,12 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "muzzleModType": "pms", - "DurabilityBurnModificator": 1.68, - "HeatFactor": 1.14, - "CoolFactor": 1.04 + "DurabilityBurnModificator": 1.7, + "HeatFactor": 1.15, + "CoolFactor": 1 }, "_proto": "55d614004bdc2d86028b4568" }, - "5a6b585a8dc32e5a9c28b4f1": { - "_id": "5a6b585a8dc32e5a9c28b4f1", - "_name": "muzzle_glock_alpha_wolf_thread_protector_9x19", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_glock_alpha_wolf_thread_protector_9x19", - "ShortName": "muzzle_glock_alpha_wolf_thread_protector_9x19", - "Description": "muzzle_glock_alpha_wolf_thread_protector_9x19", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_glock_alpha_wolf_thread_protector_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "560838c94bdc2d77798b4569" - }, - "587de5ba2459771c0f1e8a58": { - "_id": "587de5ba2459771c0f1e8a58", - "_name": "muzzle_p226_sig_thread_protector_std_9x19", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_p226_sig_thread_protector_std_9x19", - "ShortName": "muzzle_p226_sig_thread_protector_std_9x19", - "Description": "muzzle_p226_sig_thread_protector_std_9x19", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_p226_sig_thread_protector_std_9x19.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "560838c94bdc2d77798b4569" - }, "5cadc390ae921500126a77f1": { "_id": "5cadc390ae921500126a77f1", "_name": "muzzle_m9_beretta_m9a3_protector_std_9x19", @@ -185593,6 +185758,93 @@ }, "_proto": "560838c94bdc2d77798b4569" }, + "5a6b585a8dc32e5a9c28b4f1": { + "_id": "5a6b585a8dc32e5a9c28b4f1", + "_name": "muzzle_glock_alpha_wolf_thread_protector_9x19", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_glock_alpha_wolf_thread_protector_9x19", + "ShortName": "muzzle_glock_alpha_wolf_thread_protector_9x19", + "Description": "muzzle_glock_alpha_wolf_thread_protector_9x19", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_glock_alpha_wolf_thread_protector_9x19.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "muzzleCombo", + "DurabilityBurnModificator": 0.98, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "560838c94bdc2d77798b4569" + }, "560838c94bdc2d77798b4569": { "_id": "560838c94bdc2d77798b4569", "_name": "muzzle_12g_remington_tactical_12", @@ -185680,6 +185932,118 @@ }, "_proto": "5580239d4bdc2de7118b4583" }, + "5a0abb6e1526d8000a025282": { + "_id": "5a0abb6e1526d8000a025282", + "_name": "muzzle_ak_tactica_tula_ak_adapter_762x39", + "_parent": "550aa4dd4bdc2dc9348b4569", + "_type": "Item", + "_props": { + "Name": "muzzle_ak_tactica_tula_ak_adapter_762x39", + "ShortName": "muzzle_ak_tactica_tula_ak_adapter_762x39", + "Description": "muzzle_ak_tactica_tula_ak_adapter_762x39", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/muzzle/muzzle_ak_tactica_tula_ak_adapter_762x39.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5a0abe721526d805dc1ebad2", + "_parent": "5a0abb6e1526d8000a025282", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac72e7d5acfc40016339a02", + "5ac72e895acfc43b321d4bd5", + "5f633f791b231926f2329f13", + "5cc9ad73d7f00c000e2579d4", + "5649ab884bdc2ded0b8b457f", + "5e208b9842457a4a7a33d074", + "59fb257e86f7742981561852" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "conpensator", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + }, + "_proto": "544a38634bdc2d58388b4568" + }, "59bffc1f86f77435b128b872": { "_id": "59bffc1f86f77435b128b872", "_name": "muzzle_all_silencerco_hybrid_46_direct_thread_multi", @@ -185786,6 +186150,93 @@ }, "_proto": "560838c94bdc2d77798b4569" }, + "57f3c8cc2459773ec4480328": { + "_id": "57f3c8cc2459773ec4480328", + "_name": "silencer_pp-91-01_zmz_kedr_b_std_9x18pm", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "silencer_pp-91-01_zmz_kedr_b_std_9x18pm", + "ShortName": "silencer_pp-91-01_zmz_kedr_b_std_9x18pm", + "Description": "silencer_pp-91-01_zmz_kedr_b_std_9x18pm", + "Weight": 0.13, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_pp-91-01_zmz_kedr_b_std_9x18pm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 1, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -9, + "Loudness": -27, + "EffectiveDistance": 0, + "Ergonomics": -16, + "Velocity": 0.5, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.62, + "HeatFactor": 1.13, + "CoolFactor": 1 + }, + "_proto": "56e05b06d2720bb2668b4586" + }, "5c4eecc32e221602b412b440": { "_id": "5c4eecc32e221602b412b440", "_name": "silencer_sv98_izhmash_silencer_std_762x54", @@ -186066,110 +186517,23 @@ }, "_proto": "55d614004bdc2d86028b4568" }, - "57f3c8cc2459773ec4480328": { - "_id": "57f3c8cc2459773ec4480328", - "_name": "silencer_pp-91-01_zmz_kedr_b_std_9x18pm", - "_parent": "550aa4cd4bdc2dd8348b456c", + "62e2a754b6c0ee2f230cee0f": { + "_id": "62e2a754b6c0ee2f230cee0f", + "_name": "muzzle_sr2m_tochmash_hand_stop_9x21", + "_parent": "550aa4dd4bdc2dc9348b4569", "_type": "Item", "_props": { - "Name": "silencer_pp-91-01_zmz_kedr_b_std_9x18pm", - "ShortName": "silencer_pp-91-01_zmz_kedr_b_std_9x18pm", - "Description": "silencer_pp-91-01_zmz_kedr_b_std_9x18pm", - "Weight": 0.13, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_pp-91-01_zmz_kedr_b_std_9x18pm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -9, - "Loudness": -27, - "EffectiveDistance": 0, - "Ergonomics": -16, - "Velocity": 0.5, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.62, - "HeatFactor": 1.13, - "CoolFactor": 1 - }, - "_proto": "56e05b06d2720bb2668b4586" - }, - "5cf78720d7f00c06595bc93e": { - "_id": "5cf78720d7f00c06595bc93e", - "_name": "muzzle_base_lantac_blast_mitigation_device_762x51", - "_parent": "550aa4bf4bdc2dd6348b456b", - "_type": "Item", - "_props": { - "Name": "muzzle_base_lantac_blast_mitigation_device_762x51", - "ShortName": "muzzle_base_lantac_blast_mitigation_device_762x51", - "Description": "muzzle_base_lantac_blast_mitigation_device_762x51", - "Weight": 0.176, + "Name": "muzzle_mp9_bt_supressor_mount_9x19", + "ShortName": "muzzle_mp9_bt_supressor_mount_9x19", + "Description": "muzzle_mp9_bt_supressor_mount_9x19", + "Weight": 0.087, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_base_lantac_blast_mitigation_device_762x51.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_sr2m_tochmash_hand_stop_9x21.bundle", "rcid": "" }, "UsePrefab": { @@ -186186,7 +186550,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, + "LootExperience": 5, "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, @@ -186219,10 +186583,10 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -6, - "Loudness": -10, + "Recoil": 0, + "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -3, + "Ergonomics": 3, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -186233,22 +186597,22 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "conpensator", - "DurabilityBurnModificator": 0.98, - "HeatFactor": 0.987, + "muzzleModType": "muzzleCombo", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, "CoolFactor": 1 }, - "_proto": "544a38634bdc2d58388b4568" + "_proto": "560838c94bdc2d77798b4569" }, - "5a6b59a08dc32e000b452fb7": { - "_id": "5a6b59a08dc32e000b452fb7", - "_name": "muzzle_glock_salient_arms_thread_protector_9x19", + "5d270ca28abbc31ee25ee821": { + "_id": "5d270ca28abbc31ee25ee821", + "_name": "muzzle_m700_remington_stainless_thread_protector_762x51", "_parent": "550aa4dd4bdc2dc9348b4569", "_type": "Item", "_props": { - "Name": "muzzle_glock_salient_arms_thread_protector_9x19", - "ShortName": "muzzle_glock_salient_arms_thread_protector_9x19", - "Description": "muzzle_glock_salient_arms_thread_protector_9x19", + "Name": "muzzle_m700_remington_stainless_thread_protector_762x51", + "ShortName": "muzzle_m700_remington_stainless_thread_protector_762x51", + "Description": "muzzle_m700_remington_stainless_thread_protector_762x51", "Weight": 0.01, "BackgroundColor": "blue", "Width": 1, @@ -186256,7 +186620,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_glock_salient_arms_thread_protector_9x19.bundle", + "path": "assets/content/items/mods/muzzle/muzzle_m700_remington_stainless_thread_protector_762x51.bundle", "rcid": "" }, "UsePrefab": { @@ -186327,235 +186691,23 @@ }, "_proto": "560838c94bdc2d77798b4569" }, - "5c7954d52e221600106f4cc7": { - "_id": "5c7954d52e221600106f4cc7", - "_name": "muzzle_all_gemtech_direct_mount_multi", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_all_silencerco_hybrid_46_direct_thread_multi", - "ShortName": "muzzle_all_silencerco_hybrid_46_direct_thread_multi", - "Description": "muzzle_all_silencerco_hybrid_46_direct_thread_multi", - "Weight": 0.11, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_all_gemtech_direct_mount_multi.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5c7954d52e221600106f4cc9", - "_parent": "5c7954d52e221600106f4cc7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7955c22e221644f31bfd5e" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "560838c94bdc2d77798b4569" - }, - "5fc4b992187fea44d52edaa9": { - "_id": "5fc4b992187fea44d52edaa9", - "_name": "muzzle_all_silencerco_omega_45k_direct_thread_adapter_1143x23", - "_parent": "550aa4dd4bdc2dc9348b4569", - "_type": "Item", - "_props": { - "Name": "muzzle_all_silencerco_omega_45k_direct_thread_adapter_1143x23", - "ShortName": "muzzle_all_silencerco_omega_45k_direct_thread_adapter_1143x23", - "Description": "muzzle_all_silencerco_omega_45k_direct_thread_adapter_1143x23", - "Weight": 0.135, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/muzzle/muzzle_all_silencerco_omega_45k_direct_thread_adapter_1143x23.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5fc4b992187fea44d52edaab", - "_parent": "5fc4b992187fea44d52edaa9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc4b9b17283c4046c5814d7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "muzzleCombo", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - }, - "_proto": "560838c94bdc2d77798b4569" - }, - "5a9fbb74a2750c0032157181": { - "_id": "5a9fbb74a2750c0032157181", - "_name": "silencer_all_rotor_43_v2_366TKM", + "5f63407e1b231926f2329f15": { + "_id": "5f63407e1b231926f2329f15", + "_name": "silencer_vepr_rotor43_762x51", "_parent": "550aa4cd4bdc2dd8348b456c", "_type": "Item", "_props": { - "Name": "silencer_all_rotor_43_v2_762x39", - "ShortName": "silencer_all_rotor_43_v2_762x39", - "Description": "silencer_all_rotor_43_v2_762x39\n", - "Weight": 0.57, + "Name": "silencer_vepr_rotor43_762x51", + "ShortName": "silencer_vepr_rotor43_762x51", + "Description": "silencer_vepr_rotor43_762x51\n", + "Weight": 0.9, "BackgroundColor": "blue", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_all_rotor_43_v2.bundle", + "path": "assets/content/items/mods/silencers/silencer_vepr_rotor43_762x51.bundle", "rcid": "" }, "UsePrefab": { @@ -186581,7 +186733,7 @@ "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, + "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, @@ -186605,11 +186757,11 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -7, - "Loudness": -15, + "Recoil": -10, + "Loudness": -20, "EffectiveDistance": 0, - "Ergonomics": -22, - "Velocity": 0.8, + "Ergonomics": -28, + "Velocity": 0.7, "RaidModdable": true, "ToolModdable": false, "BlocksFolding": false, @@ -186620,100 +186772,9 @@ "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "muzzleModType": "pms", - "DurabilityBurnModificator": 1.7, - "HeatFactor": 1.15, - "CoolFactor": 1 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "615d8f8567085e45ef1409ca": { - "_id": "615d8f8567085e45ef1409ca", - "_name": "silencer_hex_hexagon_wafflemaker_suppressor_545x39", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_akm_hexagon_akm_762x39", - "ShortName": "silencer_akm_hexagon_akm_762x39", - "Description": "silencer_akm_hexagon_akm_762x39", - "Weight": 0.29, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_hex_hexagon_wafflemaker_suppressor_545x39.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 1, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5b800e9286f7747a8b04f3ff", - "5b80242286f77429445e0b47", - "5d15ce51d7ad1a1eff619092" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": -25, - "EffectiveDistance": 0, - "Ergonomics": -19, - "Velocity": 0.8, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "pms", - "DurabilityBurnModificator": 1.75, + "DurabilityBurnModificator": 1.68, "HeatFactor": 1.14, - "CoolFactor": 1.11 + "CoolFactor": 1.04 }, "_proto": "55d614004bdc2d86028b4568" }, @@ -186804,6 +186865,117 @@ }, "_proto": "54490a4d4bdc2dbc018b4573" }, + "626bb8532c923541184624b4": { + "_id": "626bb8532c923541184624b4", + "_name": "scope_all_swampfox_trihawk_prism_scope_3x30", + "_parent": "55818add4bdc2d5b648b456f", + "_type": "Item", + "_props": { + "Name": "scope_all_monstrum_compact_prism_scope_2x32", + "ShortName": "scope_all_monstrum_compact_prism_scope_2x32", + "Description": "scope_all_monstrum_compact_prism_scope_2x32", + "Weight": 0.436, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_swampfox_trihawk_prism_scope_3x30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5ae30bad5acfc400185c2dc4", + "5beec9450db83400970084fd", + "55d5f46a4bdc2d1b198b4567" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.1625 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 3.5 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "544a3d0a4bdc2d1b388b4567" + }, "570fd6c2d2720bc6458b457f": { "_id": "570fd6c2d2720bc6458b457f", "_name": "scope_all_eotech_553", @@ -187167,482 +187339,23 @@ }, "_proto": "544a3f024bdc2d1d388b4568" }, - "626bb8532c923541184624b4": { - "_id": "626bb8532c923541184624b4", - "_name": "scope_all_swampfox_trihawk_prism_scope_3x30", - "_parent": "55818add4bdc2d5b648b456f", - "_type": "Item", - "_props": { - "Name": "scope_all_monstrum_compact_prism_scope_2x32", - "ShortName": "scope_all_monstrum_compact_prism_scope_2x32", - "Description": "scope_all_monstrum_compact_prism_scope_2x32", - "Weight": 0.436, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_swampfox_trihawk_prism_scope_3x30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5ae30bad5acfc400185c2dc4", - "5beec9450db83400970084fd", - "55d5f46a4bdc2d1b198b4567" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.1625 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 3.5 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "544a3d0a4bdc2d1b388b4567" - }, - "591c4efa86f7741030027726": { - "_id": "591c4efa86f7741030027726", - "_name": "scope_all_aksion_ekp_8_18", - "_parent": "55818ad54bdc2ddc698b4569", - "_type": "Item", - "_props": { - "Name": "scope_all_aksion_ekp_8_18", - "ShortName": "scope_all_aksion_ekp_8_18", - "Description": "scope_all_aksion_ekp_8_18", - "Weight": 0.273, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_aksion_ekp_8_18.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "591c516e86f7741e1e28b2d5", - "_parent": "591c4efa86f7741030027726", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "591c4e1186f77410354b316e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "reflex", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.7, - 0.7, - 0.7, - 0.7 - ] - ], - "ModesCount": [ - 4 - ], - "Zooms": [ - [ - 1, - 1, - 1, - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "570fd721d2720bc5458b4596" - }, - "584924ec24597768f12ae244": { - "_id": "584924ec24597768f12ae244", - "_name": "scope_all_eotech_xps3-2", - "_parent": "55818ad54bdc2ddc698b4569", - "_type": "Item", - "_props": { - "Name": "scope_all_eotech_xps3-2", - "ShortName": "scope_all_eotech_xps3-2", - "Description": "scope_all_eotech_xps3-2", - "Weight": 0.255, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_eotech_xps3-2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 400, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "holo", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.7 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "558022b54bdc2dac148b458d" - }, - "5b30b0dc5acfc400153b7124": { - "_id": "5b30b0dc5acfc400153b7124", - "_name": "scope_all_holosun_hs401g5", - "_parent": "55818ad54bdc2ddc698b4569", - "_type": "Item", - "_props": { - "Name": "scope_all_holosun_hs401g5", - "ShortName": "scope_all_holosun_hs401g5", - "Description": "scope_all_holosun_hs401g5", - "Weight": 0.36, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_holosun_hs401g5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 300, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "reflex", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.7, - 0.7 - ] - ], - "ModesCount": [ - 2 - ], - "Zooms": [ - [ - 1, - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "558022b54bdc2dac148b458d" - }, - "5cadd954ae921500103bb3c2": { - "_id": "5cadd954ae921500103bb3c2", - "_name": "sight_rear_m9_sight_mount_m9", + "5dfa3d950dee1b22f862eae0": { + "_id": "5dfa3d950dee1b22f862eae0", + "_name": "sight_front_all_kac_folding_micro_sight", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "sight_rear_p226_sight_mount_220-239", - "ShortName": "sight_rear_p226_sight_mount_220-239", - "Description": "sight_rear_p226_sight_mount_220-239", - "Weight": 0.028, + "Name": "sight_front_all_kac_folding_micro_sight", + "ShortName": "sight_front_all_kac_folding_micro_sight", + "Description": "sight_front_all_kac_folding_micro_sight", + "Weight": 0.07, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_m9_sight_mount_m9.bundle", + "path": "assets/content/items/mods/sights front/sight_front_all_kac_folding_micro_sight.bundle", "rcid": "" }, "UsePrefab": { @@ -187687,28 +187400,7 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5cadd954ae921500103bb3c4", - "_parent": "5cadd954ae921500103bb3c2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, @@ -187716,7 +187408,215 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -2, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 300, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5fc0fa362770a0045c59c677": { + "_id": "5fc0fa362770a0045c59c677", + "_name": "sight_front_all_sig_flip_up", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_all_kac_folding_micro_sight", + "ShortName": "sight_front_all_kac_folding_micro_sight", + "Description": "sight_front_all_kac_folding_micro_sight", + "Weight": 0.065, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_all_sig_flip_up.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 300, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5aba62f8d8ce87001943946b": { + "_id": "5aba62f8d8ce87001943946b", + "_name": "sight_front_aps_molot_aps_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_aps_molot_aps_std", + "ShortName": "sight_front_aps_molot_aps_std", + "Description": "sight_front_aps_molot_aps_std", + "Weight": 0.007, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_aps_molot_aps_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, "Velocity": 0, "RaidModdable": true, "ToolModdable": true, @@ -187749,11 +187649,427 @@ ] ] }, - "_proto": "5649d9a14bdc2d79388b4580" + "_proto": "55d4af3a4bdc2d972f8b456f" }, - "574db213245977459a2f3f5d": { - "_id": "574db213245977459a2f3f5d", - "_name": "sight_rear_sks_toz_sks_std", + "5a71e0048dc32e000c52ecc8": { + "_id": "5a71e0048dc32e000c52ecc8", + "_name": "sight_front_glock_zev_tech", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_glock_zev_tech", + "ShortName": "sight_front_glock_zev_tech", + "Description": "sight_front_glock_zev_tech", + "Weight": 0.007, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_glock_zev_tech.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5aafa49ae5b5b00015042a58": { + "_id": "5aafa49ae5b5b00015042a58", + "_name": "sight_front_m1a_springfield_armory_xs_post_125_blade", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_m1a_springfield_armory_xs_post_125_blade", + "ShortName": "sight_front_m1a_springfield_armory_xs_post_125_blade", + "Description": "sight_front_m1a_springfield_armory_xs_post_125_blade", + "Weight": 0.038, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_m1a_springfield_armory_xs_post_125_blade.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5cadd919ae921500126a77f3": { + "_id": "5cadd919ae921500126a77f3", + "_name": "sight_front_m9_beretta_m9a3_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_p226_sig_p226r_std", + "ShortName": "sight_front_p226_sig_p226r_std", + "Description": "sight_front_p226_sig_p226r_std", + "Weight": 0.007, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_m9_beretta_m9a3_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "630765777d50ff5e8a1ea718": { + "_id": "630765777d50ff5e8a1ea718", + "_name": "sight_front_glock_glock_19x", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_glock_glock_std", + "ShortName": "sight_front_glock_glock_std", + "Description": "sight_front_glock_glock_std", + "Weight": 0.007, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_glock_glock_19x.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5c503b1c2e221602b21d6e9d": { + "_id": "5c503b1c2e221602b21d6e9d", + "_name": "sight_rear_vepr_molot_vpo-101_std", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { @@ -187767,7 +188083,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_sks_toz_sks_std.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_vepr_molot_vpo-101_std.bundle", "rcid": "" }, "UsePrefab": { @@ -187855,23 +188171,1057 @@ }, "_proto": "5649b0544bdc2d1b2b8b458a" }, - "5caf1691ae92152ac412efb9": { - "_id": "5caf1691ae92152ac412efb9", - "_name": "sight_rear_all_ckib_ash12_std", + "6194f2912d2c397d6600348d": { + "_id": "6194f2912d2c397d6600348d", + "_name": "sight_rear_usp_hk_std_rear_sight", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "sight_rear_ar15_colt_carry_hande_std", - "ShortName": "sight_rear_ar15_colt_carry_hande_std", - "Description": "sight_rear_ar15_colt_carry_hande_std", - "Weight": 0.15, + "Name": "sight_rear_m1911_colt_m1911a1_std", + "ShortName": "sight_rear_m1911_colt_m1911a1_std", + "Description": "sight_rear_m1911_colt_m1911a1_std", + "Weight": 0.004, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_all_ckib_ash12_std.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_usp_hk_std_rear_sight.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "56d5a661d2720bd8418b456b" + }, + "57486e672459770abd687134": { + "_id": "57486e672459770abd687134", + "_name": "scope_dovetail_ekb_okp7_dovetail", + "_parent": "55818ad54bdc2ddc698b4569", + "_type": "Item", + "_props": { + "Name": "scope_dovetail_ekb_okp7_dovetail", + "ShortName": "scope_dovetail_ekb_okp7_dovetail", + "Description": "scope_dovetail_ekb_okp7_dovetail", + "Weight": 0.295, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_dovetail_ekb_okp7_dovetail.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 250, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "reflex", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.7 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "570fd79bd2720bc7458b4583" + }, + "6284bd5f95250a29bc628a30": { + "_id": "6284bd5f95250a29bc628a30", + "_name": "scope_all_milkor_m2a1_reflex_sight", + "_parent": "55818ad54bdc2ddc698b4569", + "_type": "Item", + "_props": { + "Name": "scope_all_holosun_hs401g5", + "ShortName": "scope_all_holosun_hs401g5", + "Description": "scope_all_holosun_hs401g5", + "Weight": 0.6, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_milkor_m2a1_reflex_sight.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "6284bf82efa4bf770d31ea5f", + "_parent": "6284bd5f95250a29bc628a30", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61605d88ffa6e502ac5e7eeb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "6284bfa06a2b2104d614839e", + "_parent": "6284bd5f95250a29bc628a30", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "5cc9c20cd7f00c001336c65d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "6284bfc1eff7053cd97d00e7", + "_parent": "6284bd5f95250a29bc628a30", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "5cc9c20cd7f00c001336c65d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 300, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "reflex", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.7 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200, + 250, + 300, + 350, + 400 + ] + ] + }, + "_proto": "558022b54bdc2dac148b458d" + }, + "5d2da1e948f035477b1ce2ba": { + "_id": "5d2da1e948f035477b1ce2ba", + "_name": "scope_all_trijicon_srs_02", + "_parent": "55818ad54bdc2ddc698b4569", + "_type": "Item", + "_props": { + "Name": "scope_all_monstrum_compact_prism_scope_2x32", + "ShortName": "scope_all_monstrum_compact_prism_scope_2x32", + "Description": "scope_all_monstrum_compact_prism_scope_2x32", + "Weight": 0.39, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_trijicon_srs_02.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "reflex", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.7 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "558022b54bdc2dac148b458d" + }, + "59f9d81586f7744c7506ee62": { + "_id": "59f9d81586f7744c7506ee62", + "_name": "scope_all_vortex_razor_amg_uh-1", + "_parent": "55818ad54bdc2ddc698b4569", + "_type": "Item", + "_props": { + "Name": "scope_all_vortex_razor_amg_uh-1", + "ShortName": "scope_all_vortex_razor_amg_uh-1", + "Description": "scope_all_vortex_razor_amg_uh-1", + "Weight": 0.334, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_vortex_razor_amg_uh-1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 300, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "reflex", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.7 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "558022b54bdc2dac148b458d" + }, + "570fd721d2720bc5458b4596": { + "_id": "570fd721d2720bc5458b4596", + "_name": "scope_all_walther_mrs", + "_parent": "55818ad54bdc2ddc698b4569", + "_type": "Item", + "_props": { + "Name": "Walther MRS", + "ShortName": "MRS", + "Description": "Коллиматорный прицел Walther Multi-Reticle Point Sight - MRS", + "Weight": 0.113, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_walther_mrs.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "reflex", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.85, + 0.85, + 0.85, + 0.85 + ] + ], + "ModesCount": [ + 4 + ], + "Zooms": [ + [ + 1, + 1, + 1, + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "570fd6c2d2720bc6458b457f" + }, + "64785e7c19d732620e045e15": { + "_id": "64785e7c19d732620e045e15", + "_name": "scope_all_elcan_specter_hco", + "_parent": "55818ad54bdc2ddc698b4569", + "_type": "Item", + "_props": { + "Name": "scope_all_eotech_553", + "ShortName": "scope_all_eotech_553", + "Description": "scope_all_eotech_553Совместим с приборами ночного видения за счет NV режима марки.", + "Weight": 0.433, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_elcan_specter_hco.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5ae30bad5acfc400185c2dc4" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "holo", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.75 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "558022b54bdc2dac148b458d" + }, + "5caf16a2ae92152ac412efbc": { + "_id": "5caf16a2ae92152ac412efbc", + "_name": "sight_front_all_ckib_ash12_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_all_kac_folding_micro_sight", + "ShortName": "sight_front_all_kac_folding_micro_sight", + "Description": "sight_front_all_kac_folding_micro_sight", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_all_ckib_ash12_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 300, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5c17804b2e2216152006c02f": { + "_id": "5c17804b2e2216152006c02f", + "_name": "sight_front_all_kac_folding_sight", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_all_kac_folding_micro_sight", + "ShortName": "sight_front_all_kac_folding_micro_sight", + "Description": "sight_front_all_kac_folding_micro_sight", + "Weight": 0.07, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_all_kac_folding_sight.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 300, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5649d9a14bdc2d79388b4580": { + "_id": "5649d9a14bdc2d79388b4580", + "_name": "sight_rear_ak_tactica_tula_tt01", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_ak_tactica_tula_tt01", + "ShortName": "sight_rear_ak_tactica_tula_tt01", + "Description": "sight_rear_ak_tactica_tula_tt01", + "Weight": 0.085, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_ak_tactica_tula_tt01.bundle", "rcid": "" }, "UsePrefab": { @@ -187902,15 +189252,13 @@ "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [ - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347" + "5947db3f86f77447880cf76f", + "57486e672459770abd687134", + "576fd4ec2459777f0b518431", + "5a7c74b3e899ef0014332c29", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "5649af884bdc2d1b2b8b4589" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -187929,74 +189277,32 @@ "Slots": [ { "_name": "mod_scope", - "_id": "5caf1691ae92152ac412efbb", - "_parent": "5caf1691ae92152ac412efb9", + "_id": "5649daed4bdc2d3b4c8b457f", + "_parent": "5649d9a14bdc2d79388b4580", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", "58491f3324597764bc48fa02", "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", "570fd721d2720bc5458b4596", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", + "57ae0171245977343c27bfcf", "58d39d3d86f77445bb794ae7", "616554fe50224f204c1da2aa", "5c7d55f52e221644f31bff6a", "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", "5b31163c5acfc400153b71cb", "5a33b652c4a28232996e407c", "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245" + "6478641c19d732620e045e17" ] } ] @@ -188013,7 +189319,147 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -2, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "5649b0544bdc2d1b2b8b458a" + }, + "55d5f46a4bdc2d1b198b4567": { + "_id": "55d5f46a4bdc2d1b198b4567", + "_name": "sight_rear_ar15_colt_a2", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "Целик Colt A2 Rearsight для AR-15 и совместимых", + "ShortName": "CA2R", + "Description": "Съемный целик Colt A2 Rearsight. Штатно устанавливается на M4A1.", + "Weight": 0.15, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_ar15_colt_a2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "5dff772da3651922b360bf91", + "56ea70acd2720b844b8b4594", + "5aa66be6e5b5b0214e506e97", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "5b3b6dc75acfc47a8773fb1e", + "5b2389515acfc4771e1be0c0", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "62811f461d5df4475f46a332", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -188048,23 +189494,23 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, - "5d3eb4aba4b93650d64e497d": { - "_id": "5d3eb4aba4b93650d64e497d", - "_name": "sight_rear_57_fn_five_seven_std", + "57838e1b2459774a256959b1": { + "_id": "57838e1b2459774a256959b1", + "_name": "sight_rear_vss_tochmash_vss_std", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "sight_rear_57_fn_five_seven_std", - "ShortName": "sight_rear_57_fn_five_seven_std", - "Description": "sight_rear_57_fn_five_seven_std", - "Weight": 0.007, + "Name": "sight_rear_vss_tochmash_vss_std", + "ShortName": "sight_rear_vss_tochmash_vss_std", + "Description": "sight_rear_vss_tochmash_vss_std", + "Weight": 0.025, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_57_fn_five_seven_std.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_vss_tochmash_vss_std.bundle", "rcid": "" }, "UsePrefab": { @@ -188120,12 +189566,12 @@ "Ergonomics": 0, "Velocity": 0, "RaidModdable": true, - "ToolModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 200, + "SightingRange": 420, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "CustomAimPlane": "", @@ -188146,154 +189592,29 @@ ], "CalibrationDistances": [ [ - 25 + 100 ] ] }, - "_proto": "55d4af3a4bdc2d972f8b456f" + "_proto": "574db213245977459a2f3f5d" }, - "56ea7293d2720b8d4b8b45ba": { - "_id": "56ea7293d2720b8d4b8b45ba", - "_name": "sight_rear_p226_sight_mount_220-239", + "619f4f8c4c58466fe1228439": { + "_id": "619f4f8c4c58466fe1228439", + "_name": "sight_rear_rhino_chiappa_night_sight", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "sight_rear_p226_sight_mount_220-239", - "ShortName": "sight_rear_p226_sight_mount_220-239", - "Description": "sight_rear_p226_sight_mount_220-239", - "Weight": 0.028, + "Name": "sight_rear_rhino_chiappa_night_sight", + "ShortName": "sight_rear_rhino_chiappa_night_sight", + "Description": "sight_rear_rhino_chiappa_night_sight", + "Weight": 0.004, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_p226_sight_mount_220-239.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "56ea7355d2720bc64d8b458a", - "_parent": "56ea7293d2720b8d4b8b45ba", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "5649d9a14bdc2d79388b4580" - }, - "5e87114fe2db31558c75a120": { - "_id": "5e87114fe2db31558c75a120", - "_name": "sight_rear_590_mossberg_ghost_ring_sight_kit", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_57_fn_five_seven_std", - "ShortName": "sight_rear_57_fn_five_seven_std", - "Description": "sight_rear_57_fn_five_seven_std", - "Weight": 0.022, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_590_mossberg_ghost_ring_sight_kit.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_rhino_chiappa_night_sight.bundle", "rcid": "" }, "UsePrefab": { @@ -188348,7 +189669,7 @@ "EffectiveDistance": 0, "Ergonomics": 0, "Velocity": 0, - "RaidModdable": true, + "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -188362,7 +189683,7 @@ "ScopesCount": 1, "AimSensitivity": [ [ - 1 + 0.65 ] ], "ModesCount": [ @@ -188382,7 +189703,7 @@ ] ] }, - "_proto": "55d4af3a4bdc2d972f8b456f" + "_proto": "56d5a661d2720bd8418b456b" }, "550aa4bf4bdc2dd6348b456b": { "_id": "550aa4bf4bdc2dd6348b456b", @@ -189235,23 +190556,23 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, - "5649b0544bdc2d1b2b8b458a": { - "_id": "5649b0544bdc2d1b2b8b458a", - "_name": "sight_rear_ak_izhmash_ak74_std", + "623166e08c43374ca1567195": { + "_id": "623166e08c43374ca1567195", + "_name": "sight_front_g36_hk_std", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "Целик Ижмаш для АК-74", - "ShortName": "АК74 Целик", - "Description": "Штатный целик АК-74 производства Ижмаш.", - "Weight": 0.025, + "Name": "sight_front_all_kac_folding_micro_sight", + "ShortName": "sight_front_all_kac_folding_micro_sight", + "Description": "sight_front_all_kac_folding_micro_sight", + "Weight": 0.07, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_ak_izhmash_ak74_std.bundle", + "path": "assets/content/items/mods/sights front/sight_front_g36_hk_std.bundle", "rcid": "" }, "UsePrefab": { @@ -189281,7 +190602,19 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [], + "ConflictingItems": [ + "5b2389515acfc4771e1be0c0", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109" + ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -189296,26 +190629,7 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "5a0ee12cfcdbcb001912fa64", - "_parent": "5649b0544bdc2d1b2b8b458a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a0ed824fcdbcb0176308b0d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, @@ -189326,12 +190640,12 @@ "Ergonomics": 0, "Velocity": 0, "RaidModdable": true, - "ToolModdable": false, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 500, + "SightingRange": 300, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "CustomAimPlane": "", @@ -189356,7 +190670,7 @@ ] ] }, - "_proto": "55d5f46a4bdc2d1b198b4567" + "_proto": "55d4af3a4bdc2d972f8b456f" }, "6194f2df645b5d229654ad77": { "_id": "6194f2df645b5d229654ad77", @@ -189465,110 +190779,6 @@ }, "_proto": "56d5a661d2720bd8418b456b" }, - "619f4d304c58466fe1228437": { - "_id": "619f4d304c58466fe1228437", - "_name": "sight_front_rhino_chiappa_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_rhino_chiappa_std", - "ShortName": "sight_front_rhino_chiappa_std", - "Description": "sight_front_rhino_chiappa_std", - "Weight": 0.003, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_rhino_chiappa_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, "56083e1b4bdc2dc8488b4572": { "_id": "56083e1b4bdc2dc8488b4572", "_name": "sight_rear_sv-98_izhmash_std", @@ -189787,23 +190997,23 @@ }, "_proto": "56d5a661d2720bd8418b456b" }, - "623166e08c43374ca1567195": { - "_id": "623166e08c43374ca1567195", - "_name": "sight_front_g36_hk_std", + "619f4d304c58466fe1228437": { + "_id": "619f4d304c58466fe1228437", + "_name": "sight_front_rhino_chiappa_std", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "sight_front_all_kac_folding_micro_sight", - "ShortName": "sight_front_all_kac_folding_micro_sight", - "Description": "sight_front_all_kac_folding_micro_sight", - "Weight": 0.07, + "Name": "sight_front_rhino_chiappa_std", + "ShortName": "sight_front_rhino_chiappa_std", + "Description": "sight_front_rhino_chiappa_std", + "Weight": 0.003, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_g36_hk_std.bundle", + "path": "assets/content/items/mods/sights front/sight_front_rhino_chiappa_std.bundle", "rcid": "" }, "UsePrefab": { @@ -189833,19 +191043,7 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5b2389515acfc4771e1be0c0", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -189870,13 +191068,136 @@ "EffectiveDistance": 0, "Ergonomics": 0, "Velocity": 0, - "RaidModdable": true, + "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 300, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5649b0544bdc2d1b2b8b458a": { + "_id": "5649b0544bdc2d1b2b8b458a", + "_name": "sight_rear_ak_izhmash_ak74_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "Целик Ижмаш для АК-74", + "ShortName": "АК74 Целик", + "Description": "Штатный целик АК-74 производства Ижмаш.", + "Weight": 0.025, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_ak_izhmash_ak74_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "5a0ee12cfcdbcb001912fa64", + "_parent": "5649b0544bdc2d1b2b8b458a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a0ed824fcdbcb0176308b0d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "CustomAimPlane": "", @@ -189901,25 +191222,25 @@ ] ] }, - "_proto": "55d4af3a4bdc2d972f8b456f" + "_proto": "55d5f46a4bdc2d1b198b4567" }, - "62811fa609427b40ab14e765": { - "_id": "62811fa609427b40ab14e765", - "_name": "silencer_ai_accuracy_international_tactical_sound_moderator_86x70", - "_parent": "550aa4cd4bdc2dd8348b456c", + "591c4efa86f7741030027726": { + "_id": "591c4efa86f7741030027726", + "_name": "scope_all_aksion_ekp_8_18", + "_parent": "55818ad54bdc2ddc698b4569", "_type": "Item", "_props": { - "Name": "silencer_ar10_aac_762_sdn_6_762x51", - "ShortName": "silencer_ar10_aac_762_sdn_6_762x51", - "Description": "silencer_ar10_aac_762_sdn_6_762x51", - "Weight": 0.665, + "Name": "scope_all_aksion_ekp_8_18", + "ShortName": "scope_all_aksion_ekp_8_18", + "Description": "scope_all_aksion_ekp_8_18", + "Weight": 0.273, "BackgroundColor": "blue", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_ai_accuracy_international_tactical_sound_moderator_86x70.bundle", + "path": "assets/content/items/mods/scopes/scope_all_aksion_ekp_8_18.bundle", "rcid": "" }, "UsePrefab": { @@ -189936,16 +191257,148 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, + "LootExperience": 10, + "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, - "ExtraSizeLeft": 1, + "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "591c516e86f7741e1e28b2d5", + "_parent": "591c4efa86f7741030027726", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "591c4e1186f77410354b316e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "reflex", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.7, + 0.7, + 0.7, + 0.7 + ] + ], + "ModesCount": [ + 4 + ], + "Zooms": [ + [ + 1, + 1, + 1, + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "570fd721d2720bc5458b4596" + }, + "584924ec24597768f12ae244": { + "_id": "584924ec24597768f12ae244", + "_name": "scope_all_eotech_xps3-2", + "_parent": "55818ad54bdc2ddc698b4569", + "_type": "Item", + "_props": { + "Name": "scope_all_eotech_xps3-2", + "ShortName": "scope_all_eotech_xps3-2", + "Description": "scope_all_eotech_xps3-2", + "Weight": 0.255, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_eotech_xps3-2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, @@ -189969,44 +191422,64 @@ "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, "Accuracy": 0, - "Recoil": -11, - "Loudness": -28, + "Recoil": 0, + "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -30, - "Velocity": 0.9, + "Ergonomics": -2, + "Velocity": 0, "RaidModdable": true, "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 0, + "SightingRange": 400, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 2.15, - "HeatFactor": 1.25, - "CoolFactor": 1.08 + "CustomAimPlane": "", + "sightModType": "holo", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.7 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] }, - "_proto": "54490a4d4bdc2dbc018b4573" + "_proto": "558022b54bdc2dac148b458d" }, - "57486e672459770abd687134": { - "_id": "57486e672459770abd687134", - "_name": "scope_dovetail_ekb_okp7_dovetail", + "5b30b0dc5acfc400153b7124": { + "_id": "5b30b0dc5acfc400153b7124", + "_name": "scope_all_holosun_hs401g5", "_parent": "55818ad54bdc2ddc698b4569", "_type": "Item", "_props": { - "Name": "scope_dovetail_ekb_okp7_dovetail", - "ShortName": "scope_dovetail_ekb_okp7_dovetail", - "Description": "scope_dovetail_ekb_okp7_dovetail", - "Weight": 0.295, + "Name": "scope_all_holosun_hs401g5", + "ShortName": "scope_all_holosun_hs401g5", + "Description": "scope_all_holosun_hs401g5", + "Weight": 0.36, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/scopes/scope_dovetail_ekb_okp7_dovetail.bundle", + "path": "assets/content/items/mods/scopes/scope_all_holosun_hs401g5.bundle", "rcid": "" }, "UsePrefab": { @@ -190063,11 +191536,11 @@ "Velocity": 0, "RaidModdable": true, "ToolModdable": false, - "BlocksFolding": true, + "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 250, + "SightingRange": 300, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "CustomAimPlane": "", @@ -190075,14 +191548,16 @@ "ScopesCount": 1, "AimSensitivity": [ [ + 0.7, 0.7 ] ], "ModesCount": [ - 1 + 2 ], "Zooms": [ [ + 1, 1 ] ], @@ -190095,25 +191570,780 @@ ] ] }, - "_proto": "570fd79bd2720bc7458b4583" + "_proto": "558022b54bdc2dac148b458d" }, - "5d2da1e948f035477b1ce2ba": { - "_id": "5d2da1e948f035477b1ce2ba", - "_name": "scope_all_trijicon_srs_02", - "_parent": "55818ad54bdc2ddc698b4569", + "5caf1691ae92152ac412efb9": { + "_id": "5caf1691ae92152ac412efb9", + "_name": "sight_rear_all_ckib_ash12_std", + "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "scope_all_monstrum_compact_prism_scope_2x32", - "ShortName": "scope_all_monstrum_compact_prism_scope_2x32", - "Description": "scope_all_monstrum_compact_prism_scope_2x32", - "Weight": 0.39, + "Name": "sight_rear_ar15_colt_carry_hande_std", + "ShortName": "sight_rear_ar15_colt_carry_hande_std", + "Description": "sight_rear_ar15_colt_carry_hande_std", + "Weight": 0.15, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_trijicon_srs_02.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_all_ckib_ash12_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5caf1691ae92152ac412efbb", + "_parent": "5caf1691ae92152ac412efb9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 600, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5cadd954ae921500103bb3c2": { + "_id": "5cadd954ae921500103bb3c2", + "_name": "sight_rear_m9_sight_mount_m9", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_p226_sight_mount_220-239", + "ShortName": "sight_rear_p226_sight_mount_220-239", + "Description": "sight_rear_p226_sight_mount_220-239", + "Weight": 0.028, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_m9_sight_mount_m9.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5cadd954ae921500103bb3c4", + "_parent": "5cadd954ae921500103bb3c2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "5649d9a14bdc2d79388b4580" + }, + "5d3eb4aba4b93650d64e497d": { + "_id": "5d3eb4aba4b93650d64e497d", + "_name": "sight_rear_57_fn_five_seven_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_57_fn_five_seven_std", + "ShortName": "sight_rear_57_fn_five_seven_std", + "Description": "sight_rear_57_fn_five_seven_std", + "Weight": 0.007, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_57_fn_five_seven_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "574db213245977459a2f3f5d": { + "_id": "574db213245977459a2f3f5d", + "_name": "sight_rear_sks_toz_sks_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_sks_toz_sks_std", + "ShortName": "sight_rear_sks_toz_sks_std", + "Description": "sight_rear_sks_toz_sks_std", + "Weight": 0.025, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_sks_toz_sks_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "5649b0544bdc2d1b2b8b458a" + }, + "56ea7293d2720b8d4b8b45ba": { + "_id": "56ea7293d2720b8d4b8b45ba", + "_name": "sight_rear_p226_sight_mount_220-239", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_p226_sight_mount_220-239", + "ShortName": "sight_rear_p226_sight_mount_220-239", + "Description": "sight_rear_p226_sight_mount_220-239", + "Weight": 0.028, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_p226_sight_mount_220-239.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "56ea7355d2720bc64d8b458a", + "_parent": "56ea7293d2720b8d4b8b45ba", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5a33b2c9c4a282000c5a9511" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "5649d9a14bdc2d79388b4580" + }, + "5c471ba12e221602b3137d76": { + "_id": "5c471ba12e221602b3137d76", + "_name": "sight_front_svd_izhmash_svd_s_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_ak_izhmash_akmp", + "ShortName": "sight_front_ak_izhmash_akmp", + "Description": "sight_front_ak_izhmash_akmp", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_svd_izhmash_svd_s_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d5f46a4bdc2d1b198b4567" + }, + "5c0505e00db834001b735073": { + "_id": "5c0505e00db834001b735073", + "_name": "scope_all_valday_1p87", + "_parent": "55818ad54bdc2ddc698b4569", + "_type": "Item", + "_props": { + "Name": "scope_all_valday_1p87", + "ShortName": "scope_all_valday_1p87", + "Description": "scope_all_valday_1p87", + "Weight": 0.297, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_valday_1p87.bundle", "rcid": "" }, "UsePrefab": { @@ -190166,7 +192396,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -1, + "Ergonomics": -4, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -190204,23 +192434,23 @@ }, "_proto": "558022b54bdc2dac148b458d" }, - "59f9d81586f7744c7506ee62": { - "_id": "59f9d81586f7744c7506ee62", - "_name": "scope_all_vortex_razor_amg_uh-1", + "570fd79bd2720bc7458b4583": { + "_id": "570fd79bd2720bc7458b4583", + "_name": "scope_all_ekb_okp7", "_parent": "55818ad54bdc2ddc698b4569", "_type": "Item", "_props": { - "Name": "scope_all_vortex_razor_amg_uh-1", - "ShortName": "scope_all_vortex_razor_amg_uh-1", - "Description": "scope_all_vortex_razor_amg_uh-1", - "Weight": 0.334, + "Name": "scope_all_ekb_okp7", + "ShortName": "scope_all_ekb_okp7", + "Description": "scope_all_ekb_okp7", + "Weight": 0.255, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_vortex_razor_amg_uh-1.bundle", + "path": "assets/content/items/mods/scopes/scope_all_ekb_okp7.bundle", "rcid": "" }, "UsePrefab": { @@ -190281,7 +192511,7 @@ "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 300, + "SightingRange": 250, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "CustomAimPlane": "", @@ -190309,25 +192539,25 @@ ] ] }, - "_proto": "558022b54bdc2dac148b458d" + "_proto": "570fd721d2720bc5458b4596" }, - "570fd721d2720bc5458b4596": { - "_id": "570fd721d2720bc5458b4596", - "_name": "scope_all_walther_mrs", + "5c0a2cec0db834001b7ce47d": { + "_id": "5c0a2cec0db834001b7ce47d", + "_name": "scope_all_eotech_hhs_1_tan", "_parent": "55818ad54bdc2ddc698b4569", "_type": "Item", "_props": { - "Name": "Walther MRS", - "ShortName": "MRS", - "Description": "Коллиматорный прицел Walther Multi-Reticle Point Sight - MRS", - "Weight": 0.113, + "Name": "scope_all_eotech_hhs_1", + "ShortName": "scope_all_eotech_hhs_1", + "Description": "scope_all_eotech_hhs_1", + "Weight": 0.635, "BackgroundColor": "blue", - "Width": 1, + "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_walther_mrs.bundle", + "path": "assets/content/items/mods/scopes/scope_all_eotech_hhs_1_tan.bundle", "rcid": "" }, "UsePrefab": { @@ -190383,142 +192613,29 @@ "Ergonomics": -3, "Velocity": 0, "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "reflex", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.85, - 0.85, - 0.85, - 0.85 - ] - ], - "ModesCount": [ - 4 - ], - "Zooms": [ - [ - 1, - 1, - 1, - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "570fd6c2d2720bc6458b457f" - }, - "64785e7c19d732620e045e15": { - "_id": "64785e7c19d732620e045e15", - "_name": "scope_all_elcan_specter_hco", - "_parent": "55818ad54bdc2ddc698b4569", - "_type": "Item", - "_props": { - "Name": "scope_all_eotech_553", - "ShortName": "scope_all_eotech_553", - "Description": "scope_all_eotech_553Совместим с приборами ночного видения за счет NV режима марки.", - "Weight": 0.433, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_elcan_specter_hco.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5ae30bad5acfc400185c2dc4" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 200, + "SightingRange": 600, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "CustomAimPlane": "", - "sightModType": "holo", + "sightModType": "hybrid", "ScopesCount": 1, "AimSensitivity": [ [ - 0.75 + 0.2667, + 0.8 ] ], "ModesCount": [ - 1 + 2 ], "Zooms": [ [ + 3, 1 ] ], @@ -190533,23 +192650,23 @@ }, "_proto": "558022b54bdc2dac148b458d" }, - "6284bd5f95250a29bc628a30": { - "_id": "6284bd5f95250a29bc628a30", - "_name": "scope_all_milkor_m2a1_reflex_sight", + "6165ac8c290d254f5e6b2f6c": { + "_id": "6165ac8c290d254f5e6b2f6c", + "_name": "scope_all_leapers_utg_38_ita_1x30", "_parent": "55818ad54bdc2ddc698b4569", "_type": "Item", "_props": { "Name": "scope_all_holosun_hs401g5", "ShortName": "scope_all_holosun_hs401g5", "Description": "scope_all_holosun_hs401g5", - "Weight": 0.6, + "Weight": 0.227, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_milkor_m2a1_reflex_sight.bundle", + "path": "assets/content/items/mods/scopes/scope_all_leapers_utg_38_ita_1x30.bundle", "rcid": "" }, "UsePrefab": { @@ -190594,72 +192711,7 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "6284bf82efa4bf770d31ea5f", - "_parent": "6284bd5f95250a29bc628a30", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61605d88ffa6e502ac5e7eeb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "6284bfa06a2b2104d614839e", - "_parent": "6284bd5f95250a29bc628a30", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "5cc9c20cd7f00c001336c65d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "6284bfc1eff7053cd97d00e7", - "_parent": "6284bd5f95250a29bc628a30", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "5cc9c20cd7f00c001336c65d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "Durability": 100, @@ -190667,7 +192719,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": -6, + "Ergonomics": -3, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -190681,6 +192733,127 @@ "CustomAimPlane": "", "sightModType": "reflex", "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.7, + 0.7 + ] + ], + "ModesCount": [ + 2 + ], + "Zooms": [ + [ + 1, + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "558022b54bdc2dac148b458d" + }, + "618a5d5852ecee1505530b2a": { + "_id": "618a5d5852ecee1505530b2a", + "_name": "scope_dovetail_npz_pk_1", + "_parent": "55818ad54bdc2ddc698b4569", + "_type": "Item", + "_props": { + "Name": "scope_base_aimpooint_comp_m4", + "ShortName": "scope_base_aimpooint_comp_m4", + "Description": "scope_base_aimpooint_comp_m4", + "Weight": 0.52, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_dovetail_npz_pk_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5dff8db859400025ea5150d4", + "5f6331e097199b7db2128dc2", + "5d2c770c48f0354b4a07c100", + "5d2c772c48f0355d95672c25", + "5d2c76ed48f03532f2136169", + "5649af884bdc2d1b2b8b4589", + "5dfcd0e547101c39625f66f9", + "5a957c3fa2750c00137fa5f7" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "reflex", + "ScopesCount": 1, "AimSensitivity": [ [ 0.7 @@ -190699,33 +192872,723 @@ 50, 100, 150, - 200, - 250, - 300, - 350, - 400 + 200 ] ] }, "_proto": "558022b54bdc2dac148b458d" }, - "5caf16a2ae92152ac412efbc": { - "_id": "5caf16a2ae92152ac412efbc", - "_name": "sight_front_all_ckib_ash12_std", - "_parent": "55818ac54bdc2d5b648b456e", + "58d268fc86f774111273f8c2": { + "_id": "58d268fc86f774111273f8c2", + "_name": "scope_base_leupold_deltapoint", + "_parent": "55818acf4bdc2dde698b456b", "_type": "Item", "_props": { - "Name": "sight_front_all_kac_folding_micro_sight", - "ShortName": "sight_front_all_kac_folding_micro_sight", - "Description": "sight_front_all_kac_folding_micro_sight", - "Weight": 0.07, + "Name": "scope_base_leupold_deltapoint", + "ShortName": "scope_base_leupold_deltapoint", + "Description": "scope_base_leupold_deltapoint", + "Weight": 0.053, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_all_ckib_ash12_std.bundle", + "path": "assets/content/items/mods/scopes/scope_base_leupold_deltapoint.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 150, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "reflex", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.7 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25, + 50, + 100 + ] + ] + }, + "_proto": "544a39de4bdc2d24388b4567" + }, + "5894a73486f77426d259076c": { + "_id": "5894a73486f77426d259076c", + "_name": "sight_front_all_sig_mpx_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_all_sig_mpx_std", + "ShortName": "sight_front_all_sig_mpx_std", + "Description": "sight_front_all_sig_mpx_std", + "Weight": 0.13, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_all_sig_mpx_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 300, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5ac72e475acfc400180ae6fe": { + "_id": "5ac72e475acfc400180ae6fe", + "_name": "sight_rear_ak_izhmash_ak74m_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_ak_izhmash_ak74m_std", + "ShortName": "sight_rear_ak_izhmash_ak74m_std", + "Description": "sight_rear_ak_izhmash_ak74m_std", + "Weight": 0.025, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_ak_izhmash_ak74m_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "5ac72e475acfc400180ae700", + "_parent": "5ac72e475acfc400180ae6fe", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a0ed824fcdbcb0176308b0d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d5f46a4bdc2d1b198b4567" + }, + "5beec9450db83400970084fd": { + "_id": "5beec9450db83400970084fd", + "_name": "sight_rear_all_izhmash_rpk16_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "Целик Colt A2 Rearsight для AR-15 и совместимых", + "ShortName": "CA2R", + "Description": "Съемный целик Colt A2 Rearsight. Штатно устанавливается на M4A1.", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_all_izhmash_rpk16_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5b3b99265acfc4704b4a1afb" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "5bf3f5b10db834001d2c4aaa", + "_parent": "5beec9450db83400970084fd", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac733a45acfc400192630e2", + "5649b0544bdc2d1b2b8b458a", + "5ac72e475acfc400180ae6fe", + "5bf3f59f0db834001a6fa060", + "649ec2cec93611967b03495e", + "628a7b23b0f75035732dd565" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 600, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "55d6190f4bdc2d87028b4567": { + "_id": "55d6190f4bdc2d87028b4567", + "_name": "silencer_socom_surefire_socom556_mini_monster_556x45", + "_parent": "550aa4cd4bdc2dd8348b456c", + "_type": "Item", + "_props": { + "Name": "Глушитель Surefire SOCOM556-MINI MONSTER 5.56х45", + "ShortName": "M MONSTER", + "Description": "Глушитель Surefire SOCOM556-MINI MONSTER для патронов калибром 5.56х45 .223 является укороченной версией SOCOM556-MONSTER. Может быть установлен только на совместимые дульные устройства Surefire.", + "Weight": 0.413, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/silencers/silencer_socom_surefire_socom556_mini_monster_556x45.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": true, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": -5, + "Loudness": -12, + "EffectiveDistance": 0, + "Ergonomics": -7, + "Velocity": 0.5, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1.55, + "HeatFactor": 1.08, + "CoolFactor": 1 + }, + "_proto": "55d614004bdc2d86028b4568" + }, + "550ad14d4bdc2dd5348b456c": { + "_id": "550ad14d4bdc2dd5348b456c", + "_name": "Pms", + "_parent": "5448fe394bdc2d0d028b456c", + "_type": "Node", + "_props": {} + }, + "622b4d7df9cfc87d675d2ded": { + "_id": "622b4d7df9cfc87d675d2ded", + "_name": "scope_g36_hensoldt_hkv_carry_handle_3x", + "_parent": "55818add4bdc2d5b648b456f", + "_type": "Item", + "_props": { + "Name": "scope_base_trijicon_acog_ta11_3,5x35", + "ShortName": "scope_base_trijicon_acog_ta11_3,5x35", + "Description": "scope_base_trijicon_acog_ta11_3,5x35", + "Weight": 0.198, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_g36_hensoldt_hkv_carry_handle_3x.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "622b4dc6034a3e17ad0b81f9", + "_parent": "622b4d7df9cfc87d675d2ded", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "622efbcb99f4ea1a4d6c9a15", + "622efdf8ec80d870d349b4e5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 800, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 2, + "AimSensitivity": [ + [ + 0.19 + ], + [ + 0.7 + ] + ], + "ModesCount": [ + 1, + 1 + ], + "Zooms": [ + [ + 3 + ], + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ], + [ + 25 + ] + ] + }, + "_proto": "544a3f024bdc2d1d388b4568" + }, + "5e8708d4ae379e67d22e0102": { + "_id": "5e8708d4ae379e67d22e0102", + "_name": "sight_front_590_mossberg_ghost_ring_sight_kit", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_590_mossberg_ghost_ring_sight_kit", + "ShortName": "sight_front_590_mossberg_ghost_ring_sight_kit", + "Description": "sight_front_590_mossberg_ghost_ring_sight_kit", + "Weight": 0.02, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_590_mossberg_ghost_ring_sight_kit.bundle", "rcid": "" }, "UsePrefab": { @@ -190786,6 +193649,113 @@ "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5fc0fa957283c4046c58147e": { + "_id": "5fc0fa957283c4046c58147e", + "_name": "sight_rear_all_sig_flip_up", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_all_sig_mpx_std", + "ShortName": "sight_rear_all_sig_mpx_std", + "Description": "sight_rear_all_sig_mpx_std", + "Weight": 0.13, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_all_sig_flip_up.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, "SightingRange": 300, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, @@ -190813,23 +193783,609 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, - "5c17804b2e2216152006c02f": { - "_id": "5c17804b2e2216152006c02f", - "_name": "sight_front_all_kac_folding_sight", + "57c44e7b2459772d28133248": { + "_id": "57c44e7b2459772d28133248", + "_name": "sight_rear_val_tochmash_val_std", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "sight_front_all_kac_folding_micro_sight", - "ShortName": "sight_front_all_kac_folding_micro_sight", - "Description": "sight_front_all_kac_folding_micro_sight", - "Weight": 0.07, + "Name": "sight_rear_vss_tochmash_vss_std", + "ShortName": "sight_rear_vss_tochmash_vss_std", + "Description": "sight_rear_vss_tochmash_vss_std", + "Weight": 0.025, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_all_kac_folding_sight.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_val_tochmash_val_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 420, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "57838e1b2459774a256959b1" + }, + "649ec2da59cbb3c813042dca": { + "_id": "649ec2da59cbb3c813042dca", + "_name": "sight_rear_all_izhmash_ak12_rear_sight_base", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "Целик Colt A2 Rearsight для AR-15 и совместимых", + "ShortName": "CA2R", + "Description": "Съемный целик Colt A2 Rearsight. Штатно устанавливается на M4A1.", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_all_izhmash_ak12_rear_sight_base.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5b3b99265acfc4704b4a1afb" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "649ec2da59cbb3c813042dcb", + "_parent": "649ec2da59cbb3c813042dca", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac733a45acfc400192630e2", + "5649b0544bdc2d1b2b8b458a", + "5ac72e475acfc400180ae6fe", + "5bf3f59f0db834001a6fa060", + "649ec2cec93611967b03495e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 600, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5a6f58f68dc32e000a311390": { + "_id": "5a6f58f68dc32e000a311390", + "_name": "sight_front_glock_glock_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_glock_glock_std", + "ShortName": "sight_front_glock_glock_std", + "Description": "sight_front_glock_glock_std", + "Weight": 0.007, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_glock_glock_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "550aa4dd4bdc2dc9348b4569": { + "_id": "550aa4dd4bdc2dc9348b4569", + "_name": "MuzzleCombo", + "_parent": "5448fe394bdc2d0d028b456c", + "_type": "Node", + "_props": {} + }, + "609a63b6e2ff132951242d09": { + "_id": "609a63b6e2ff132951242d09", + "_name": "scope_all_valday_krechet", + "_parent": "55818ad54bdc2ddc698b4569", + "_type": "Item", + "_props": { + "Name": "scope_all_valday_krechet", + "ShortName": "scope_all_valday_krechet", + "Description": "scope_all_valday_krechet", + "Weight": 0.35, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_valday_krechet.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4.5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "reflex", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.7 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "558022b54bdc2dac148b458d" + }, + "6113d6c3290d254f5e6b27db": { + "_id": "6113d6c3290d254f5e6b27db", + "_name": "scope_dovetail_belomo_pk_aa", + "_parent": "55818ad54bdc2ddc698b4569", + "_type": "Item", + "_props": { + "Name": "scope_base_aimpooint_comp_m4", + "ShortName": "scope_base_aimpooint_comp_m4", + "Description": "scope_base_aimpooint_comp_m4", + "Weight": 0.45, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_dovetail_belomo_pk_aa.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5947db3f86f77447880cf76f", + "57486e672459770abd687134", + "5649d9a14bdc2d79388b4580", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5e569a2e56edd02abe09f280", + "5d0a29ead7ad1a0026013f27", + "57acb6222459771ec34b5cb0", + "5dff8db859400025ea5150d4", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "5f6331e097199b7db2128dc2", + "5a957c3fa2750c00137fa5f7", + "5f63418ef5750b524b45f116", + "5827272a24597748c74bdeea", + "58272b392459774b4c7b3ccd", + "5dfcd0e547101c39625f66f9", + "5d2c76ed48f03532f2136169", + "5d2c770c48f0354b4a07c100", + "5d2c772c48f0355d95672c25", + "5649af884bdc2d1b2b8b4589", + "57dc334d245977597164366f", + "5839a7742459773cf9693481", + "59985a6c86f77414ec448d17" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "reflex", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.7 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "558022b54bdc2dac148b458d" + }, + "5c18b90d2e2216152142466b": { + "_id": "5c18b90d2e2216152142466b", + "_name": "sight_front_all_magpul_mbus_gen2_fde", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_all_sig_mpx_std", + "ShortName": "sight_front_all_sig_mpx_std", + "Description": "sight_front_all_sig_mpx_std", + "Weight": 0.034, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_all_magpul_mbus_gen2_fde.bundle", "rcid": "" }, "UsePrefab": { @@ -190917,172 +194473,23 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, - "5649d9a14bdc2d79388b4580": { - "_id": "5649d9a14bdc2d79388b4580", - "_name": "sight_rear_ak_tactica_tula_tt01", + "630765cb962d0247b029dc45": { + "_id": "630765cb962d0247b029dc45", + "_name": "sight_rear_glock_glock_19x", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "sight_rear_ak_tactica_tula_tt01", - "ShortName": "sight_rear_ak_tactica_tula_tt01", - "Description": "sight_rear_ak_tactica_tula_tt01", - "Weight": 0.085, + "Name": "sight_rear_p226_sig_p226r_std", + "ShortName": "sight_rear_p226_sig_p226r_std", + "Description": "sight_rear_p226_sig_p226r_std", + "Weight": 0.008, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_ak_tactica_tula_tt01.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5947db3f86f77447880cf76f", - "57486e672459770abd687134", - "576fd4ec2459777f0b518431", - "5a7c74b3e899ef0014332c29", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "5649af884bdc2d1b2b8b4589" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5649daed4bdc2d3b4c8b457f", - "_parent": "5649d9a14bdc2d79388b4580", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5d2da1e948f035477b1ce2ba", - "584984812459776a704a82a6", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15", - "6478641c19d732620e045e17" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "5649b0544bdc2d1b2b8b458a" - }, - "57838e1b2459774a256959b1": { - "_id": "57838e1b2459774a256959b1", - "_name": "sight_rear_vss_tochmash_vss_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_vss_tochmash_vss_std", - "ShortName": "sight_rear_vss_tochmash_vss_std", - "Description": "sight_rear_vss_tochmash_vss_std", - "Weight": 0.025, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_vss_tochmash_vss_std.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_glock_glock_19x.bundle", "rcid": "" }, "UsePrefab": { @@ -191138,250 +194545,6 @@ "Ergonomics": 0, "Velocity": 0, "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 420, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "574db213245977459a2f3f5d" - }, - "55d5f46a4bdc2d1b198b4567": { - "_id": "55d5f46a4bdc2d1b198b4567", - "_name": "sight_rear_ar15_colt_a2", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "Целик Colt A2 Rearsight для AR-15 и совместимых", - "ShortName": "CA2R", - "Description": "Съемный целик Colt A2 Rearsight. Штатно устанавливается на M4A1.", - "Weight": 0.15, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_ar15_colt_a2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "5dff772da3651922b360bf91", - "56ea70acd2720b844b8b4594", - "5aa66be6e5b5b0214e506e97", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "5b3b6dc75acfc47a8773fb1e", - "5b2389515acfc4771e1be0c0", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "62811f461d5df4475f46a332", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 600, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "619f4f8c4c58466fe1228439": { - "_id": "619f4f8c4c58466fe1228439", - "_name": "sight_rear_rhino_chiappa_night_sight", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_rhino_chiappa_night_sight", - "ShortName": "sight_rear_rhino_chiappa_night_sight", - "Description": "sight_rear_rhino_chiappa_night_sight", - "Weight": 0.004, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_rhino_chiappa_night_sight.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -191408,32 +194571,29 @@ ], "CalibrationDistances": [ [ - 50, - 100, - 150, - 200 + 25 ] ] }, "_proto": "56d5a661d2720bd8418b456b" }, - "5ae099925acfc4001a5fc7b3": { - "_id": "5ae099925acfc4001a5fc7b3", - "_name": "sight_rear_mosin_izhmash_mosin_std", + "5bf3f59f0db834001a6fa060": { + "_id": "5bf3f59f0db834001a6fa060", + "_name": "sight_rear_ak_izhmash_rpk16_rear_sight_std", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { "Name": "Целик Colt A2 Rearsight для AR-15 и совместимых", "ShortName": "CA2R", "Description": "Съемный целик Colt A2 Rearsight. Штатно устанавливается на M4A1.", - "Weight": 0.15, + "Weight": 0.025, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_mosin_izhmash_mosin_std.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_ak_izhmash_rpk16_rear_sight_std.bundle", "rcid": "" }, "UsePrefab": { @@ -191835,1859 +194995,13 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, - "550ad14d4bdc2dd5348b456c": { - "_id": "550ad14d4bdc2dd5348b456c", - "_name": "Pms", + "550aa4cd4bdc2dd8348b456c": { + "_id": "550aa4cd4bdc2dd8348b456c", + "_name": "Silencer", "_parent": "5448fe394bdc2d0d028b456c", "_type": "Node", "_props": {} }, - "5dfa3d950dee1b22f862eae0": { - "_id": "5dfa3d950dee1b22f862eae0", - "_name": "sight_front_all_kac_folding_micro_sight", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_all_kac_folding_micro_sight", - "ShortName": "sight_front_all_kac_folding_micro_sight", - "Description": "sight_front_all_kac_folding_micro_sight", - "Weight": 0.07, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_all_kac_folding_micro_sight.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 300, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "570fd79bd2720bc7458b4583": { - "_id": "570fd79bd2720bc7458b4583", - "_name": "scope_all_ekb_okp7", - "_parent": "55818ad54bdc2ddc698b4569", - "_type": "Item", - "_props": { - "Name": "scope_all_ekb_okp7", - "ShortName": "scope_all_ekb_okp7", - "Description": "scope_all_ekb_okp7", - "Weight": 0.255, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_ekb_okp7.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 250, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "reflex", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.7 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "570fd721d2720bc5458b4596" - }, - "5fc0fa362770a0045c59c677": { - "_id": "5fc0fa362770a0045c59c677", - "_name": "sight_front_all_sig_flip_up", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_all_kac_folding_micro_sight", - "ShortName": "sight_front_all_kac_folding_micro_sight", - "Description": "sight_front_all_kac_folding_micro_sight", - "Weight": 0.065, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_all_sig_flip_up.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 300, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "6165ac8c290d254f5e6b2f6c": { - "_id": "6165ac8c290d254f5e6b2f6c", - "_name": "scope_all_leapers_utg_38_ita_1x30", - "_parent": "55818ad54bdc2ddc698b4569", - "_type": "Item", - "_props": { - "Name": "scope_all_holosun_hs401g5", - "ShortName": "scope_all_holosun_hs401g5", - "Description": "scope_all_holosun_hs401g5", - "Weight": 0.227, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_leapers_utg_38_ita_1x30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 300, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "reflex", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.7, - 0.7 - ] - ], - "ModesCount": [ - 2 - ], - "Zooms": [ - [ - 1, - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "558022b54bdc2dac148b458d" - }, - "5aba62f8d8ce87001943946b": { - "_id": "5aba62f8d8ce87001943946b", - "_name": "sight_front_aps_molot_aps_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_aps_molot_aps_std", - "ShortName": "sight_front_aps_molot_aps_std", - "Description": "sight_front_aps_molot_aps_std", - "Weight": 0.007, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_aps_molot_aps_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "618a5d5852ecee1505530b2a": { - "_id": "618a5d5852ecee1505530b2a", - "_name": "scope_dovetail_npz_pk_1", - "_parent": "55818ad54bdc2ddc698b4569", - "_type": "Item", - "_props": { - "Name": "scope_base_aimpooint_comp_m4", - "ShortName": "scope_base_aimpooint_comp_m4", - "Description": "scope_base_aimpooint_comp_m4", - "Weight": 0.52, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_dovetail_npz_pk_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5dff8db859400025ea5150d4", - "5f6331e097199b7db2128dc2", - "5d2c770c48f0354b4a07c100", - "5d2c772c48f0355d95672c25", - "5d2c76ed48f03532f2136169", - "5649af884bdc2d1b2b8b4589", - "5dfcd0e547101c39625f66f9", - "5a957c3fa2750c00137fa5f7" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "reflex", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.7 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "558022b54bdc2dac148b458d" - }, - "5a71e0048dc32e000c52ecc8": { - "_id": "5a71e0048dc32e000c52ecc8", - "_name": "sight_front_glock_zev_tech", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_glock_zev_tech", - "ShortName": "sight_front_glock_zev_tech", - "Description": "sight_front_glock_zev_tech", - "Weight": 0.007, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_glock_zev_tech.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "5aafa49ae5b5b00015042a58": { - "_id": "5aafa49ae5b5b00015042a58", - "_name": "sight_front_m1a_springfield_armory_xs_post_125_blade", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_m1a_springfield_armory_xs_post_125_blade", - "ShortName": "sight_front_m1a_springfield_armory_xs_post_125_blade", - "Description": "sight_front_m1a_springfield_armory_xs_post_125_blade", - "Weight": 0.038, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_m1a_springfield_armory_xs_post_125_blade.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "5c0a2cec0db834001b7ce47d": { - "_id": "5c0a2cec0db834001b7ce47d", - "_name": "scope_all_eotech_hhs_1_tan", - "_parent": "55818ad54bdc2ddc698b4569", - "_type": "Item", - "_props": { - "Name": "scope_all_eotech_hhs_1", - "ShortName": "scope_all_eotech_hhs_1", - "Description": "scope_all_eotech_hhs_1", - "Weight": 0.635, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_eotech_hhs_1_tan.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 600, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "hybrid", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.2667, - 0.8 - ] - ], - "ModesCount": [ - 2 - ], - "Zooms": [ - [ - 3, - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "558022b54bdc2dac148b458d" - }, - "5cadd919ae921500126a77f3": { - "_id": "5cadd919ae921500126a77f3", - "_name": "sight_front_m9_beretta_m9a3_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_p226_sig_p226r_std", - "ShortName": "sight_front_p226_sig_p226r_std", - "Description": "sight_front_p226_sig_p226r_std", - "Weight": 0.007, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_m9_beretta_m9a3_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "58d268fc86f774111273f8c2": { - "_id": "58d268fc86f774111273f8c2", - "_name": "scope_base_leupold_deltapoint", - "_parent": "55818acf4bdc2dde698b456b", - "_type": "Item", - "_props": { - "Name": "scope_base_leupold_deltapoint", - "ShortName": "scope_base_leupold_deltapoint", - "Description": "scope_base_leupold_deltapoint", - "Weight": 0.053, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_base_leupold_deltapoint.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 150, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "reflex", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.7 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25, - 50, - 100 - ] - ] - }, - "_proto": "544a39de4bdc2d24388b4567" - }, - "630765777d50ff5e8a1ea718": { - "_id": "630765777d50ff5e8a1ea718", - "_name": "sight_front_glock_glock_19x", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_glock_glock_std", - "ShortName": "sight_front_glock_glock_std", - "Description": "sight_front_glock_glock_std", - "Weight": 0.007, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_glock_glock_19x.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "5894a73486f77426d259076c": { - "_id": "5894a73486f77426d259076c", - "_name": "sight_front_all_sig_mpx_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_all_sig_mpx_std", - "ShortName": "sight_front_all_sig_mpx_std", - "Description": "sight_front_all_sig_mpx_std", - "Weight": 0.13, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_all_sig_mpx_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 300, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "5ac72e475acfc400180ae6fe": { - "_id": "5ac72e475acfc400180ae6fe", - "_name": "sight_rear_ak_izhmash_ak74m_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_ak_izhmash_ak74m_std", - "ShortName": "sight_rear_ak_izhmash_ak74m_std", - "Description": "sight_rear_ak_izhmash_ak74m_std", - "Weight": 0.025, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_ak_izhmash_ak74m_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "5ac72e475acfc400180ae700", - "_parent": "5ac72e475acfc400180ae6fe", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a0ed824fcdbcb0176308b0d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d5f46a4bdc2d1b198b4567" - }, - "5c503b1c2e221602b21d6e9d": { - "_id": "5c503b1c2e221602b21d6e9d", - "_name": "sight_rear_vepr_molot_vpo-101_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_sks_toz_sks_std", - "ShortName": "sight_rear_sks_toz_sks_std", - "Description": "sight_rear_sks_toz_sks_std", - "Weight": 0.025, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_vepr_molot_vpo-101_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "5649b0544bdc2d1b2b8b458a" - }, - "5beec9450db83400970084fd": { - "_id": "5beec9450db83400970084fd", - "_name": "sight_rear_all_izhmash_rpk16_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "Целик Colt A2 Rearsight для AR-15 и совместимых", - "ShortName": "CA2R", - "Description": "Съемный целик Colt A2 Rearsight. Штатно устанавливается на M4A1.", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_all_izhmash_rpk16_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5b3b99265acfc4704b4a1afb" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "5bf3f5b10db834001d2c4aaa", - "_parent": "5beec9450db83400970084fd", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac733a45acfc400192630e2", - "5649b0544bdc2d1b2b8b458a", - "5ac72e475acfc400180ae6fe", - "5bf3f59f0db834001a6fa060", - "649ec2cec93611967b03495e", - "628a7b23b0f75035732dd565" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 600, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "6194f2912d2c397d6600348d": { - "_id": "6194f2912d2c397d6600348d", - "_name": "sight_rear_usp_hk_std_rear_sight", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_m1911_colt_m1911a1_std", - "ShortName": "sight_rear_m1911_colt_m1911a1_std", - "Description": "sight_rear_m1911_colt_m1911a1_std", - "Weight": 0.004, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_usp_hk_std_rear_sight.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "56d5a661d2720bd8418b456b" - }, "5d2dc3e548f035404a1a4798": { "_id": "5d2dc3e548f035404a1a4798", "_name": "scope_all_monstrum_compact_prism_scope_2x32", @@ -194753,894 +196067,23 @@ }, "_proto": "56d5a661d2720bd8418b456b" }, - "55d6190f4bdc2d87028b4567": { - "_id": "55d6190f4bdc2d87028b4567", - "_name": "silencer_socom_surefire_socom556_mini_monster_556x45", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "Глушитель Surefire SOCOM556-MINI MONSTER 5.56х45", - "ShortName": "M MONSTER", - "Description": "Глушитель Surefire SOCOM556-MINI MONSTER для патронов калибром 5.56х45 .223 является укороченной версией SOCOM556-MONSTER. Может быть установлен только на совместимые дульные устройства Surefire.", - "Weight": 0.413, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_socom_surefire_socom556_mini_monster_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -5, - "Loudness": -12, - "EffectiveDistance": 0, - "Ergonomics": -7, - "Velocity": 0.5, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1.55, - "HeatFactor": 1.08, - "CoolFactor": 1 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "630f2982cdb9e392db0cbcc7": { - "_id": "630f2982cdb9e392db0cbcc7", - "_name": "silencer_aug_reflex_suppressor_t4aug_ranger_556x45", - "_parent": "550aa4cd4bdc2dd8348b456c", - "_type": "Item", - "_props": { - "Name": "silencer_all_rotor_43_v2_762x39", - "ShortName": "silencer_all_rotor_43_v2_762x39", - "Description": "silencer_all_rotor_43_v2_762x39\n", - "Weight": 0.38, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/silencers/silencer_aug_reflex_suppressor_t4aug_ranger_556x45.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": true, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "630f27f04f3f6281050b94d7", - "634eba08f69c710e0108d386" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": -6, - "Loudness": -18, - "EffectiveDistance": 0, - "Ergonomics": -22, - "Velocity": 0.2, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "muzzleModType": "pms", - "DurabilityBurnModificator": 1.71, - "HeatFactor": 1.14, - "CoolFactor": 1.03 - }, - "_proto": "55d614004bdc2d86028b4568" - }, - "622b4d7df9cfc87d675d2ded": { - "_id": "622b4d7df9cfc87d675d2ded", - "_name": "scope_g36_hensoldt_hkv_carry_handle_3x", - "_parent": "55818add4bdc2d5b648b456f", - "_type": "Item", - "_props": { - "Name": "scope_base_trijicon_acog_ta11_3,5x35", - "ShortName": "scope_base_trijicon_acog_ta11_3,5x35", - "Description": "scope_base_trijicon_acog_ta11_3,5x35", - "Weight": 0.198, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_g36_hensoldt_hkv_carry_handle_3x.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "622b4dc6034a3e17ad0b81f9", - "_parent": "622b4d7df9cfc87d675d2ded", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "622efbcb99f4ea1a4d6c9a15", - "622efdf8ec80d870d349b4e5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 800, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 2, - "AimSensitivity": [ - [ - 0.19 - ], - [ - 0.7 - ] - ], - "ModesCount": [ - 1, - 1 - ], - "Zooms": [ - [ - 3 - ], - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ], - [ - 25 - ] - ] - }, - "_proto": "544a3f024bdc2d1d388b4568" - }, - "5e8708d4ae379e67d22e0102": { - "_id": "5e8708d4ae379e67d22e0102", - "_name": "sight_front_590_mossberg_ghost_ring_sight_kit", + "5dfa3d7ac41b2312ea33362a": { + "_id": "5dfa3d7ac41b2312ea33362a", + "_name": "sight_rear_all_kac_folding_micro_sight", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "sight_front_590_mossberg_ghost_ring_sight_kit", - "ShortName": "sight_front_590_mossberg_ghost_ring_sight_kit", - "Description": "sight_front_590_mossberg_ghost_ring_sight_kit", - "Weight": 0.02, + "Name": "sight_rear_all_kac_folding_micro_sight", + "ShortName": "sight_rear_all_kac_folding_micro_sight", + "Description": "sight_rear_all_kac_folding_micro_sight", + "Weight": 0.08, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_590_mossberg_ghost_ring_sight_kit.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "57c44e7b2459772d28133248": { - "_id": "57c44e7b2459772d28133248", - "_name": "sight_rear_val_tochmash_val_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_vss_tochmash_vss_std", - "ShortName": "sight_rear_vss_tochmash_vss_std", - "Description": "sight_rear_vss_tochmash_vss_std", - "Weight": 0.025, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_val_tochmash_val_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 420, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "57838e1b2459774a256959b1" - }, - "5fc0fa957283c4046c58147e": { - "_id": "5fc0fa957283c4046c58147e", - "_name": "sight_rear_all_sig_flip_up", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_all_sig_mpx_std", - "ShortName": "sight_rear_all_sig_mpx_std", - "Description": "sight_rear_all_sig_mpx_std", - "Weight": 0.13, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_all_sig_flip_up.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 300, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "609a63b6e2ff132951242d09": { - "_id": "609a63b6e2ff132951242d09", - "_name": "scope_all_valday_krechet", - "_parent": "55818ad54bdc2ddc698b4569", - "_type": "Item", - "_props": { - "Name": "scope_all_valday_krechet", - "ShortName": "scope_all_valday_krechet", - "Description": "scope_all_valday_krechet", - "Weight": 0.35, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_valday_krechet.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4.5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "reflex", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.7 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "558022b54bdc2dac148b458d" - }, - "6113d6c3290d254f5e6b27db": { - "_id": "6113d6c3290d254f5e6b27db", - "_name": "scope_dovetail_belomo_pk_aa", - "_parent": "55818ad54bdc2ddc698b4569", - "_type": "Item", - "_props": { - "Name": "scope_base_aimpooint_comp_m4", - "ShortName": "scope_base_aimpooint_comp_m4", - "Description": "scope_base_aimpooint_comp_m4", - "Weight": 0.45, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_dovetail_belomo_pk_aa.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5947db3f86f77447880cf76f", - "57486e672459770abd687134", - "5649d9a14bdc2d79388b4580", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5e569a2e56edd02abe09f280", - "5d0a29ead7ad1a0026013f27", - "57acb6222459771ec34b5cb0", - "5dff8db859400025ea5150d4", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "5f6331e097199b7db2128dc2", - "5a957c3fa2750c00137fa5f7", - "5f63418ef5750b524b45f116", - "5827272a24597748c74bdeea", - "58272b392459774b4c7b3ccd", - "5dfcd0e547101c39625f66f9", - "5d2c76ed48f03532f2136169", - "5d2c770c48f0354b4a07c100", - "5d2c772c48f0355d95672c25", - "5649af884bdc2d1b2b8b4589", - "57dc334d245977597164366f", - "5839a7742459773cf9693481", - "59985a6c86f77414ec448d17" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "reflex", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.7 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "558022b54bdc2dac148b458d" - }, - "5c18b90d2e2216152142466b": { - "_id": "5c18b90d2e2216152142466b", - "_name": "sight_front_all_magpul_mbus_gen2_fde", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_all_sig_mpx_std", - "ShortName": "sight_front_all_sig_mpx_std", - "Description": "sight_front_all_sig_mpx_std", - "Weight": 0.034, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_all_magpul_mbus_gen2_fde.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_all_kac_folding_micro_sight.bundle", "rcid": "" }, "UsePrefab": { @@ -195728,439 +196171,6 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, - "630765cb962d0247b029dc45": { - "_id": "630765cb962d0247b029dc45", - "_name": "sight_rear_glock_glock_19x", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_p226_sig_p226r_std", - "ShortName": "sight_rear_p226_sig_p226r_std", - "Description": "sight_rear_p226_sig_p226r_std", - "Weight": 0.008, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_glock_glock_19x.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "56d5a661d2720bd8418b456b" - }, - "649ec2cec93611967b03495e": { - "_id": "649ec2cec93611967b03495e", - "_name": "sight_rear_ak_izhmash_ak12_rear_sight_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "Целик Colt A2 Rearsight для AR-15 и совместимых", - "ShortName": "CA2R", - "Description": "Съемный целик Colt A2 Rearsight. Штатно устанавливается на M4A1.", - "Weight": 0.025, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_ak_izhmash_ak12_rear_sight_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 600, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "5a6f58f68dc32e000a311390": { - "_id": "5a6f58f68dc32e000a311390", - "_name": "sight_front_glock_glock_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_glock_glock_std", - "ShortName": "sight_front_glock_glock_std", - "Description": "sight_front_glock_glock_std", - "Weight": 0.007, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_glock_glock_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "550aa4dd4bdc2dc9348b4569": { - "_id": "550aa4dd4bdc2dc9348b4569", - "_name": "MuzzleCombo", - "_parent": "5448fe394bdc2d0d028b456c", - "_type": "Node", - "_props": {} - }, - "550aa4cd4bdc2dd8348b456c": { - "_id": "550aa4cd4bdc2dd8348b456c", - "_name": "Silencer", - "_parent": "5448fe394bdc2d0d028b456c", - "_type": "Node", - "_props": {} - }, - "5c0505e00db834001b735073": { - "_id": "5c0505e00db834001b735073", - "_name": "scope_all_valday_1p87", - "_parent": "55818ad54bdc2ddc698b4569", - "_type": "Item", - "_props": { - "Name": "scope_all_valday_1p87", - "ShortName": "scope_all_valday_1p87", - "Description": "scope_all_valday_1p87", - "Weight": 0.297, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_valday_1p87.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "reflex", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.7 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "558022b54bdc2dac148b458d" - }, "5a0f096dfcdbcb0176308b15": { "_id": "5a0f096dfcdbcb0176308b15", "_name": "sight_front_ak_izhmash_akmp", @@ -196929,6 +196939,112 @@ }, "_proto": "544a3f024bdc2d1d388b4568" }, + "558022b54bdc2dac148b458d": { + "_id": "558022b54bdc2dac148b458d", + "_name": "scope_all_eotech_exps3", + "_parent": "55818ad54bdc2ddc698b4569", + "_type": "Item", + "_props": { + "Name": "scope_all_eotech_exps3", + "ShortName": "scope_all_eotech_exps3", + "Description": "scope_all_eotech_exps3Совместим с приборами ночного видения за счет NV режима марки. Используется US SOCOM как первоочередной прицел для операций в ограниченном пространстве.", + "Weight": 0.317, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_eotech_exps3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "holo", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.7 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + } + }, "58491f3324597764bc48fa02": { "_id": "58491f3324597764bc48fa02", "_name": "scope_all_eotech_xps3-0", @@ -197164,112 +197280,6 @@ }, "_proto": "570fd721d2720bc5458b4596" }, - "558022b54bdc2dac148b458d": { - "_id": "558022b54bdc2dac148b458d", - "_name": "scope_all_eotech_exps3", - "_parent": "55818ad54bdc2ddc698b4569", - "_type": "Item", - "_props": { - "Name": "scope_all_eotech_exps3", - "ShortName": "scope_all_eotech_exps3", - "Description": "scope_all_eotech_exps3Совместим с приборами ночного видения за счет NV режима марки. Используется US SOCOM как первоочередной прицел для операций в ограниченном пространстве.", - "Weight": 0.317, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_eotech_exps3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "holo", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.7 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - } - }, "5a32aa8bc4a2826c6e06d737": { "_id": "5a32aa8bc4a2826c6e06d737", "_name": "scope_base_trijicon_rmr", @@ -197707,1404 +197717,6 @@ }, "_proto": "56d5a661d2720bd8418b456b" }, - "5ae30bad5acfc400185c2dc4": { - "_id": "5ae30bad5acfc400185c2dc4", - "_name": "sight_rear_ar15_colt_carry_hande_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_ar15_colt_carry_hande_std", - "ShortName": "sight_rear_ar15_colt_carry_hande_std", - "Description": "sight_rear_ar15_colt_carry_hande_std", - "Weight": 0.15, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_ar15_colt_carry_hande_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "5dff772da3651922b360bf91", - "56ea70acd2720b844b8b4594", - "5aa66be6e5b5b0214e506e97", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "5b2389515acfc4771e1be0c0", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "61714b2467085e45ef140b2c", - "62811f461d5df4475f46a332", - "64785e7c19d732620e045e15", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "655f13e0a246670fb0373245" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5ae9c31e5acfc4039d663545", - "_parent": "5ae30bad5acfc400185c2dc4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c1cdd512e22161b267d91ae", - "5c05293e0db83400232fff80", - "5c052a900db834001a66acbd", - "59db7e1086f77448be30ddf3" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 600, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "62ea7c793043d74a0306e19f": { - "_id": "62ea7c793043d74a0306e19f", - "_name": "scope_aug_steyr_stg77_optic_1,5x", - "_parent": "55818add4bdc2d5b648b456f", - "_type": "Item", - "_props": { - "Name": "scope_base_trijicon_acog_ta11_3,5x35", - "ShortName": "scope_base_trijicon_acog_ta11_3,5x35", - "Description": "scope_base_trijicon_acog_ta11_3,5x35", - "Weight": 1.22, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_aug_steyr_stg77_optic_1,5x.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_barrel", - "_id": "62ea80a08a3fd55115068854", - "_parent": "62ea7c793043d74a0306e19f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62e7c7f3c34ea971710c32fc", - "630e39c3bd357927e4007c15", - "6333f05d1bc0e6217a0e9d34" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": true, - "HasShoulderContact": false, - "SightingRange": 600, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 2, - "AimSensitivity": [ - [ - 0.55 - ], - [ - 0.7 - ] - ], - "ModesCount": [ - 1, - 1 - ], - "Zooms": [ - [ - 1.5 - ], - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ], - [ - 25 - ] - ] - }, - "_proto": "544a3f024bdc2d1d388b4568" - }, - "5c0517910db83400232ffee5": { - "_id": "5c0517910db83400232ffee5", - "_name": "scope_all_valday_ps320", - "_parent": "55818add4bdc2d5b648b456f", - "_type": "Item", - "_props": { - "Name": "", - "ShortName": "", - "Description": "", - "Weight": 0.57, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_valday_ps320.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 1000, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.1083, - 0.65 - ] - ], - "ModesCount": [ - 2 - ], - "Zooms": [ - [ - 6, - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "544a3f024bdc2d1d388b4568" - }, - "57ae0171245977343c27bfcf": { - "_id": "57ae0171245977343c27bfcf", - "_name": "scope_all_belomo_pk_06", - "_parent": "55818acf4bdc2dde698b456b", - "_type": "Item", - "_props": { - "Name": "scope_all_belomo_pk_06", - "ShortName": "scope_all_belomo_pk_06", - "Description": "scope_all_belomo_pk_06", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_belomo_pk_06.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 100, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "reflex", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.7, - 0.7, - 0.7 - ] - ], - "ModesCount": [ - 3 - ], - "Zooms": [ - [ - 1, - 1, - 1 - ] - ], - "CalibrationDistances": [ - [ - 25, - 50, - 100 - ] - ] - }, - "_proto": "57655f7d2459777aa2064c85" - }, - "5ba26b01d4351e0085325a51": { - "_id": "5ba26b01d4351e0085325a51", - "_name": "sight_front_all_hk_mp7_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_all_sig_mpx_std", - "ShortName": "sight_front_all_sig_mpx_std", - "Description": "sight_front_all_sig_mpx_std", - "Weight": 0.13, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_all_hk_mp7_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 300, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "59d650cf86f7741b846413a4": { - "_id": "59d650cf86f7741b846413a4", - "_name": "sight_rear_ak_izhmash_akm_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_ak_izhmash_akm_std", - "ShortName": "sight_rear_ak_izhmash_akm_std", - "Description": "sight_rear_ak_izhmash_akm_std", - "Weight": 0.025, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_ak_izhmash_akm_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_sight_rear", - "_id": "5a0eda49fcdbcb001912fa61", - "_parent": "59d650cf86f7741b846413a4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a0ed824fcdbcb0176308b0d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d5f46a4bdc2d1b198b4567" - }, - "5bb20e49d4351e3bac1212de": { - "_id": "5bb20e49d4351e3bac1212de", - "_name": "sight_rear_all_hk_416_flip_up", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_all_sig_mpx_std", - "ShortName": "sight_rear_all_sig_mpx_std", - "Description": "sight_rear_all_sig_mpx_std", - "Weight": 0.14, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_all_hk_416_flip_up.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 300, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "619f4cee4c58466fe1228435": { - "_id": "619f4cee4c58466fe1228435", - "_name": "sight_rear_rhino_chiappa_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_rhino_chiappa_std", - "ShortName": "sight_rear_rhino_chiappa_std", - "Description": "sight_rear_rhino_chiappa_std", - "Weight": 0.004, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_rhino_chiappa_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "56d5a661d2720bd8418b456b" - }, - "5abcbb20d8ce87001773e258": { - "_id": "5abcbb20d8ce87001773e258", - "_name": "sight_rear_m14_springfield_armory_enlarged_military_aperture_135", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_m14_springfield_armory_enlarged_military_aperture_135", - "ShortName": "sight_rear_m14_springfield_armory_enlarged_military_aperture_135", - "Description": "sight_rear_m14_springfield_armory_enlarged_military_aperture_135", - "Weight": 0.03, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_m14_springfield_armory_enlarged_military_aperture_135.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "55d5f46a4bdc2d1b198b4567" - }, - "625ebcef6f53af4aa66b44dc": { - "_id": "625ebcef6f53af4aa66b44dc", - "_name": "sight_rear_m3_benelli_ghost_ring_sight", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "Целик Colt A2 Rearsight для AR-15 и совместимых", - "ShortName": "CA2R", - "Description": "Съемный целик Colt A2 Rearsight. Штатно устанавливается на M4A1.", - "Weight": 0.035, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_m3_benelli_ghost_ring_sight.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 600, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "602293f023506e50807090cb": { - "_id": "602293f023506e50807090cb", - "_name": "sight_rear_pl15_izhmash_pl15_supressor_sight", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_57_fn_five_seven_std", - "ShortName": "sight_rear_57_fn_five_seven_std", - "Description": "sight_rear_57_fn_five_seven_std", - "Weight": 0.007, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_pl15_izhmash_pl15_supressor_sight.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "60228a76d62c9b14ed777a66" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "5b0bc22d5acfc47a8607f085": { - "_id": "5b0bc22d5acfc47a8607f085", - "_name": "sight_rear_sa58_ds_arms_metric_holand_type_rear_sight", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_sa58_ds_arms_metric_holand_type_rear_sight", - "ShortName": "sight_rear_sa58_ds_arms_metric_holand_type_rear_sight", - "Description": "sight_rear_sa58_ds_arms_metric_holand_type_rear_sight", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_sa58_ds_arms_metric_holand_type_rear_sight.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d5f46a4bdc2d1b198b4567" - }, "550aa4af4bdc2dd4348b456e": { "_id": "550aa4af4bdc2dd4348b456e", "_name": "Compensator", @@ -199239,131 +197851,6 @@ }, "_proto": "544a3f024bdc2d1d388b4568" }, - "544a3a774bdc2d3a388b4567": { - "_id": "544a3a774bdc2d3a388b4567", - "_name": "scope_all_leupold_mark4_hamr", - "_parent": "55818add4bdc2d5b648b456f", - "_type": "Item", - "_props": { - "Name": "scope_all_leupold_mark4_hamr", - "ShortName": "scope_all_leupold_mark4_hamr", - "Description": "scope_all_leupold_mark4_hamr", - "Weight": 0.411, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_leupold_mark4_hamr.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "58d25ebc86f7746f06698c2b", - "_parent": "544a3a774bdc2d3a388b4567", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "58d268fc86f774111273f8c2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3.5, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 800, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "hybrid", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.1625 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 4 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - } - }, "5c052a900db834001a66acbd": { "_id": "5c052a900db834001a66acbd", "_name": "scope_base_trijicon_acog_ta01nsn_4x32_tan", @@ -199608,6 +198095,1219 @@ }, "_proto": "544a3f024bdc2d1d388b4568" }, + "5c07dd120db834001c39092d": { + "_id": "5c07dd120db834001c39092d", + "_name": "scope_all_eotech_hhs_1", + "_parent": "55818ad54bdc2ddc698b4569", + "_type": "Item", + "_props": { + "Name": "scope_all_eotech_hhs_1", + "ShortName": "scope_all_eotech_hhs_1", + "Description": "scope_all_eotech_hhs_1", + "Weight": 0.635, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_eotech_hhs_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 600, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "hybrid", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.2667, + 0.8 + ] + ], + "ModesCount": [ + 2 + ], + "Zooms": [ + [ + 3, + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "558022b54bdc2dac148b458d" + }, + "56d5a661d2720bd8418b456b": { + "_id": "56d5a661d2720bd8418b456b", + "_name": "sight_front_p226_sig_p226r_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_p226_sig_p226r_std", + "ShortName": "sight_front_p226_sig_p226r_std", + "Description": "sight_front_p226_sig_p226r_std", + "Weight": 0.007, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_p226_sig_p226r_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "60228a76d62c9b14ed777a66": { + "_id": "60228a76d62c9b14ed777a66", + "_name": "sight_front_pl15_izhmash_pl15_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_p226_sig_p226r_std", + "ShortName": "sight_front_p226_sig_p226r_std", + "Description": "sight_front_p226_sig_p226r_std", + "Weight": 0.007, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_pl15_izhmash_pl15_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5a71e0fb8dc32e00094b97f2": { + "_id": "5a71e0fb8dc32e00094b97f2", + "_name": "sight_rear_glock_zev_tech", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_glock_zev_tech", + "ShortName": "sight_rear_glock_zev_tech", + "Description": "sight_rear_glock_zev_tech", + "Weight": 0.008, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_glock_zev_tech.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "56d5a661d2720bd8418b456b" + }, + "5ac733a45acfc400192630e2": { + "_id": "5ac733a45acfc400192630e2", + "_name": "sight_rear_ak_izhmash_ak105_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "Целик Ижмаш для АК-74", + "ShortName": "АК74 Целик", + "Description": "Штатный целик АК-74 производства Ижмаш.", + "Weight": 0.025, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_ak_izhmash_ak105_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_sight_rear", + "_id": "5ac733a45acfc400192630e4", + "_parent": "5ac733a45acfc400192630e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a0ed824fcdbcb0176308b0d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d5f46a4bdc2d1b198b4567" + }, + "5926d2be86f774134d668e4e": { + "_id": "5926d2be86f774134d668e4e", + "_name": "sight_rear_mp5_hk_drum", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_mp5_hk_drum", + "ShortName": "sight_rear_mp5_hk_drum", + "Description": "sight_rear_mp5_hk_drum", + "Weight": 0.14, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_mp5_hk_drum.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5b3b99265acfc4704b4a1afb" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5aba637ad8ce87001773e17f": { + "_id": "5aba637ad8ce87001773e17f", + "_name": "sight_rear_aps_molot_aps_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_aps_molot_aps_std", + "ShortName": "sight_rear_aps_molot_aps_std", + "Description": "sight_rear_aps_molot_aps_std", + "Weight": 0.008, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_aps_molot_aps_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "56d5a661d2720bd8418b456b" + }, + "5a6f5d528dc32e00094b97d9": { + "_id": "5a6f5d528dc32e00094b97d9", + "_name": "sight_rear_glock_glock_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_p226_sig_p226r_std", + "ShortName": "sight_rear_p226_sig_p226r_std", + "Description": "sight_rear_p226_sig_p226r_std", + "Weight": 0.008, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_glock_glock_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "56d5a661d2720bd8418b456b" + }, + "5a7d912f159bd400165484f3": { + "_id": "5a7d912f159bd400165484f3", + "_name": "sight_rear_glock_truglo_tfx_glock_sight", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_p226_sig_p226r_std", + "ShortName": "sight_rear_p226_sig_p226r_std", + "Description": "sight_rear_p226_sig_p226r_std", + "Weight": 0.008, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_glock_truglo_tfx_glock_sight.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "56d5a661d2720bd8418b456b" + }, + "5bfd4c980db834001b73449d": { + "_id": "5bfd4c980db834001b73449d", + "_name": "sight_rear_mosin_izhmash_mosin_carabine", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "Целик Colt A2 Rearsight для AR-15 и совместимых", + "ShortName": "CA2R", + "Description": "Съемный целик Colt A2 Rearsight. Штатно устанавливается на M4A1.", + "Weight": 0.15, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_mosin_izhmash_mosin_carabine.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "57adff4f24597737f373b6e6", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "56ea70acd2720b844b8b4594", + "5aa66be6e5b5b0214e506e97", + "5a37ca54c4a282000d72296a", + "57c69dd424597774c03b7bbc", + "5aa66a9be5b5b0214e506e89", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 600, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "544a3a774bdc2d3a388b4567": { + "_id": "544a3a774bdc2d3a388b4567", + "_name": "scope_all_leupold_mark4_hamr", + "_parent": "55818add4bdc2d5b648b456f", + "_type": "Item", + "_props": { + "Name": "scope_all_leupold_mark4_hamr", + "ShortName": "scope_all_leupold_mark4_hamr", + "Description": "scope_all_leupold_mark4_hamr", + "Weight": 0.411, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_leupold_mark4_hamr.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "58d25ebc86f7746f06698c2b", + "_parent": "544a3a774bdc2d3a388b4567", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "58d268fc86f774111273f8c2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3.5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 800, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "hybrid", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.1625 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 4 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + } + }, "62ff9920fe938a24c90c10d2": { "_id": "62ff9920fe938a24c90c10d2", "_name": "scope_sr2m_tochmash_kp_sr2", @@ -200058,115 +199758,6 @@ }, "_proto": "544a39de4bdc2d24388b4567" }, - "5c07dd120db834001c39092d": { - "_id": "5c07dd120db834001c39092d", - "_name": "scope_all_eotech_hhs_1", - "_parent": "55818ad54bdc2ddc698b4569", - "_type": "Item", - "_props": { - "Name": "scope_all_eotech_hhs_1", - "ShortName": "scope_all_eotech_hhs_1", - "Description": "scope_all_eotech_hhs_1", - "Weight": 0.635, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_eotech_hhs_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 600, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "hybrid", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.2667, - 0.8 - ] - ], - "ModesCount": [ - 2 - ], - "Zooms": [ - [ - 3, - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "558022b54bdc2dac148b458d" - }, "5a7d90eb159bd400165484f1": { "_id": "5a7d90eb159bd400165484f1", "_name": "sight_front_glock_dead_ringer_snake_eyes_glock_sights", @@ -200271,318 +199862,6 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, - "56d5a661d2720bd8418b456b": { - "_id": "56d5a661d2720bd8418b456b", - "_name": "sight_front_p226_sig_p226r_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_p226_sig_p226r_std", - "ShortName": "sight_front_p226_sig_p226r_std", - "Description": "sight_front_p226_sig_p226r_std", - "Weight": 0.007, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_p226_sig_p226r_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "5a0eb980fcdbcb001a3b00a6": { - "_id": "5a0eb980fcdbcb001a3b00a6", - "_name": "sight_rear_ak_izhmash_akmb", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_ak_izhmash_akmb", - "ShortName": "sight_rear_ak_izhmash_akmb", - "Description": "sight_rear_ak_izhmash_akmb", - "Weight": 0.035, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_ak_izhmash_akmb.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d5f46a4bdc2d1b198b4567" - }, - "60228a76d62c9b14ed777a66": { - "_id": "60228a76d62c9b14ed777a66", - "_name": "sight_front_pl15_izhmash_pl15_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_p226_sig_p226r_std", - "ShortName": "sight_front_p226_sig_p226r_std", - "Description": "sight_front_p226_sig_p226r_std", - "Weight": 0.007, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_pl15_izhmash_pl15_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, "5de8fb539f98ac2bc659513a": { "_id": "5de8fb539f98ac2bc659513a", "_name": "sight_rear_mp9_bt_mp9_std", @@ -200687,129 +199966,23 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, - "5926d2be86f774134d668e4e": { - "_id": "5926d2be86f774134d668e4e", - "_name": "sight_rear_mp5_hk_drum", + "5a0eb980fcdbcb001a3b00a6": { + "_id": "5a0eb980fcdbcb001a3b00a6", + "_name": "sight_rear_ak_izhmash_akmb", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "sight_rear_mp5_hk_drum", - "ShortName": "sight_rear_mp5_hk_drum", - "Description": "sight_rear_mp5_hk_drum", - "Weight": 0.14, + "Name": "sight_rear_ak_izhmash_akmb", + "ShortName": "sight_rear_ak_izhmash_akmb", + "Description": "sight_rear_ak_izhmash_akmb", + "Weight": 0.035, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_mp5_hk_drum.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5b3b99265acfc4704b4a1afb" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "5a71e0fb8dc32e00094b97f2": { - "_id": "5a71e0fb8dc32e00094b97f2", - "_name": "sight_rear_glock_zev_tech", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_glock_zev_tech", - "ShortName": "sight_rear_glock_zev_tech", - "Description": "sight_rear_glock_zev_tech", - "Weight": 0.008, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_glock_zev_tech.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_ak_izhmash_akmb.bundle", "rcid": "" }, "UsePrefab": { @@ -200865,12 +200038,12 @@ "Ergonomics": 0, "Velocity": 0, "RaidModdable": true, - "ToolModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 200, + "SightingRange": 500, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "CustomAimPlane": "", @@ -200891,11 +200064,11 @@ ], "CalibrationDistances": [ [ - 25 + 100 ] ] }, - "_proto": "56d5a661d2720bd8418b456b" + "_proto": "55d5f46a4bdc2d1b198b4567" }, "56d5a77ed2720b90418b4568": { "_id": "56d5a77ed2720b90418b4568", @@ -201001,23 +200174,526 @@ }, "_proto": "56d5a661d2720bd8418b456b" }, - "5aba637ad8ce87001773e17f": { - "_id": "5aba637ad8ce87001773e17f", - "_name": "sight_rear_aps_molot_aps_std", + "58272b842459774abc128d50": { + "_id": "58272b842459774abc128d50", + "_name": "sight_rear_saiga_css_sight_rail_mount", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "sight_rear_aps_molot_aps_std", - "ShortName": "sight_rear_aps_molot_aps_std", - "Description": "sight_rear_aps_molot_aps_std", - "Weight": 0.008, + "Name": "sight_rear_saiga_css_sight_rail_mount", + "ShortName": "sight_rear_saiga_css_sight_rail_mount", + "Description": "sight_rear_saiga_css_sight_rail_mount", + "Weight": 0.03, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_aps_molot_aps_std.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_saiga_css_sight_rail_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5f63418ef5750b524b45f116", + "5827272a24597748c74bdeea", + "58272b392459774b4c7b3ccd" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "58272c042459774aba70991d", + "_parent": "58272b842459774abc128d50", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "584984812459776a704a82a6", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5a33b2c9c4a282000c5a9511", + "64785e7c19d732620e045e15", + "5d2da1e948f035477b1ce2ba", + "6165ac8c290d254f5e6b2f6c", + "6477772ea8a38bb2050ed4db", + "60a23797a37c940de7062d02", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 100, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "57a9b9ce2459770ee926038d" + }, + "5c0517910db83400232ffee5": { + "_id": "5c0517910db83400232ffee5", + "_name": "scope_all_valday_ps320", + "_parent": "55818add4bdc2d5b648b456f", + "_type": "Item", + "_props": { + "Name": "", + "ShortName": "", + "Description": "", + "Weight": 0.57, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_valday_ps320.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 1000, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.1083, + 0.65 + ] + ], + "ModesCount": [ + 2 + ], + "Zooms": [ + [ + 6, + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "544a3f024bdc2d1d388b4568" + }, + "62ea7c793043d74a0306e19f": { + "_id": "62ea7c793043d74a0306e19f", + "_name": "scope_aug_steyr_stg77_optic_1,5x", + "_parent": "55818add4bdc2d5b648b456f", + "_type": "Item", + "_props": { + "Name": "scope_base_trijicon_acog_ta11_3,5x35", + "ShortName": "scope_base_trijicon_acog_ta11_3,5x35", + "Description": "scope_base_trijicon_acog_ta11_3,5x35", + "Weight": 1.22, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_aug_steyr_stg77_optic_1,5x.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_barrel", + "_id": "62ea80a08a3fd55115068854", + "_parent": "62ea7c793043d74a0306e19f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62e7c7f3c34ea971710c32fc", + "630e39c3bd357927e4007c15", + "6333f05d1bc0e6217a0e9d34" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": true, + "HasShoulderContact": false, + "SightingRange": 600, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 2, + "AimSensitivity": [ + [ + 0.55 + ], + [ + 0.7 + ] + ], + "ModesCount": [ + 1, + 1 + ], + "Zooms": [ + [ + 1.5 + ], + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ], + [ + 25 + ] + ] + }, + "_proto": "544a3f024bdc2d1d388b4568" + }, + "57ae0171245977343c27bfcf": { + "_id": "57ae0171245977343c27bfcf", + "_name": "scope_all_belomo_pk_06", + "_parent": "55818acf4bdc2dde698b456b", + "_type": "Item", + "_props": { + "Name": "scope_all_belomo_pk_06", + "ShortName": "scope_all_belomo_pk_06", + "Description": "scope_all_belomo_pk_06", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_belomo_pk_06.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 100, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "reflex", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.7, + 0.7, + 0.7 + ] + ], + "ModesCount": [ + 3 + ], + "Zooms": [ + [ + 1, + 1, + 1 + ] + ], + "CalibrationDistances": [ + [ + 25, + 50, + 100 + ] + ] + }, + "_proto": "57655f7d2459777aa2064c85" + }, + "5ba26b01d4351e0085325a51": { + "_id": "5ba26b01d4351e0085325a51", + "_name": "sight_front_all_hk_mp7_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_all_sig_mpx_std", + "ShortName": "sight_front_all_sig_mpx_std", + "Description": "sight_front_all_sig_mpx_std", + "Weight": 0.13, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_all_hk_mp7_std.bundle", "rcid": "" }, "UsePrefab": { @@ -201073,12 +200749,12 @@ "Ergonomics": 0, "Velocity": 0, "RaidModdable": true, - "ToolModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 200, + "SightingRange": 300, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "CustomAimPlane": "", @@ -201099,21 +200775,21 @@ ], "CalibrationDistances": [ [ - 25 + 50 ] ] }, - "_proto": "56d5a661d2720bd8418b456b" + "_proto": "55d4af3a4bdc2d972f8b456f" }, - "5ac733a45acfc400192630e2": { - "_id": "5ac733a45acfc400192630e2", - "_name": "sight_rear_ak_izhmash_ak105_std", + "59d650cf86f7741b846413a4": { + "_id": "59d650cf86f7741b846413a4", + "_name": "sight_rear_ak_izhmash_akm_std", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "Целик Ижмаш для АК-74", - "ShortName": "АК74 Целик", - "Description": "Штатный целик АК-74 производства Ижмаш.", + "Name": "sight_rear_ak_izhmash_akm_std", + "ShortName": "sight_rear_ak_izhmash_akm_std", + "Description": "sight_rear_ak_izhmash_akm_std", "Weight": 0.025, "BackgroundColor": "blue", "Width": 1, @@ -201121,7 +200797,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_ak_izhmash_ak105_std.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_ak_izhmash_akm_std.bundle", "rcid": "" }, "UsePrefab": { @@ -201169,8 +200845,8 @@ "Slots": [ { "_name": "mod_sight_rear", - "_id": "5ac733a45acfc400192630e4", - "_parent": "5ac733a45acfc400192630e2", + "_id": "5a0eda49fcdbcb001912fa61", + "_parent": "59d650cf86f7741b846413a4", "_props": { "filters": [ { @@ -201228,23 +200904,234 @@ }, "_proto": "55d5f46a4bdc2d1b198b4567" }, - "5a6f5d528dc32e00094b97d9": { - "_id": "5a6f5d528dc32e00094b97d9", - "_name": "sight_rear_glock_glock_std", + "619f4cee4c58466fe1228435": { + "_id": "619f4cee4c58466fe1228435", + "_name": "sight_rear_rhino_chiappa_std", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "sight_rear_p226_sig_p226r_std", - "ShortName": "sight_rear_p226_sig_p226r_std", - "Description": "sight_rear_p226_sig_p226r_std", - "Weight": 0.008, + "Name": "sight_rear_rhino_chiappa_std", + "ShortName": "sight_rear_rhino_chiappa_std", + "Description": "sight_rear_rhino_chiappa_std", + "Weight": 0.004, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_glock_glock_std.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_rhino_chiappa_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "56d5a661d2720bd8418b456b" + }, + "5bb20e49d4351e3bac1212de": { + "_id": "5bb20e49d4351e3bac1212de", + "_name": "sight_rear_all_hk_416_flip_up", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_all_sig_mpx_std", + "ShortName": "sight_rear_all_sig_mpx_std", + "Description": "sight_rear_all_sig_mpx_std", + "Weight": 0.14, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_all_hk_416_flip_up.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 300, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5abcbb20d8ce87001773e258": { + "_id": "5abcbb20d8ce87001773e258", + "_name": "sight_rear_m14_springfield_armory_enlarged_military_aperture_135", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_m14_springfield_armory_enlarged_military_aperture_135", + "ShortName": "sight_rear_m14_springfield_armory_enlarged_military_aperture_135", + "Description": "sight_rear_m14_springfield_armory_enlarged_military_aperture_135", + "Weight": 0.03, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_m14_springfield_armory_enlarged_military_aperture_135.bundle", "rcid": "" }, "UsePrefab": { @@ -201305,7 +201192,7 @@ "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 200, + "SightingRange": 500, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "CustomAimPlane": "", @@ -201330,129 +201217,25 @@ ] ] }, - "_proto": "56d5a661d2720bd8418b456b" + "_proto": "55d5f46a4bdc2d1b198b4567" }, - "5a7d912f159bd400165484f3": { - "_id": "5a7d912f159bd400165484f3", - "_name": "sight_rear_glock_truglo_tfx_glock_sight", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_p226_sig_p226r_std", - "ShortName": "sight_rear_p226_sig_p226r_std", - "Description": "sight_rear_p226_sig_p226r_std", - "Weight": 0.008, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_glock_truglo_tfx_glock_sight.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "56d5a661d2720bd8418b456b" - }, - "5bfd4c980db834001b73449d": { - "_id": "5bfd4c980db834001b73449d", - "_name": "sight_rear_mosin_izhmash_mosin_carabine", + "625ebcef6f53af4aa66b44dc": { + "_id": "625ebcef6f53af4aa66b44dc", + "_name": "sight_rear_m3_benelli_ghost_ring_sight", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { "Name": "Целик Colt A2 Rearsight для AR-15 и совместимых", "ShortName": "CA2R", "Description": "Съемный целик Colt A2 Rearsight. Штатно устанавливается на M4A1.", - "Weight": 0.15, + "Weight": 0.035, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_mosin_izhmash_mosin_carabine.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_m3_benelli_ghost_ring_sight.bundle", "rcid": "" }, "UsePrefab": { @@ -201482,29 +201265,7 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "57adff4f24597737f373b6e6", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "56ea70acd2720b844b8b4594", - "5aa66be6e5b5b0214e506e97", - "5a37ca54c4a282000d72296a", - "57c69dd424597774c03b7bbc", - "5aa66a9be5b5b0214e506e89", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -201562,6 +201323,456 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, + "602293f023506e50807090cb": { + "_id": "602293f023506e50807090cb", + "_name": "sight_rear_pl15_izhmash_pl15_supressor_sight", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_57_fn_five_seven_std", + "ShortName": "sight_rear_57_fn_five_seven_std", + "Description": "sight_rear_57_fn_five_seven_std", + "Weight": 0.007, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_pl15_izhmash_pl15_supressor_sight.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "60228a76d62c9b14ed777a66" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5fb6564947ce63734e3fa1da": { + "_id": "5fb6564947ce63734e3fa1da", + "_name": "sight_rear_all_kriss_defiance_low_profile_flip_up", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_all_sig_mpx_std", + "ShortName": "sight_rear_all_sig_mpx_std", + "Description": "sight_rear_all_sig_mpx_std", + "Weight": 0.02, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_all_kriss_defiance_low_profile_flip_up.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 300, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "619f52454c58466fe122843b": { + "_id": "619f52454c58466fe122843b", + "_name": "sight_front_rhino_chiappa_night_sight", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_rhino_chiappa_night_sight", + "ShortName": "sight_front_rhino_chiappa_night_sight", + "Description": "sight_front_rhino_chiappa_night_sight", + "Weight": 0.003, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_rhino_chiappa_night_sight.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "57aca93d2459771f2c7e26db": { + "_id": "57aca93d2459771f2c7e26db", + "_name": "scope_all_elcan_specter_dr_1-4_fde", + "_parent": "55818add4bdc2d5b648b456f", + "_type": "Item", + "_props": { + "Name": "", + "ShortName": "", + "Description": "", + "Weight": 0.64, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_elcan_specter_dr_1-4_fde.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount", + "_id": "57efc7a0245977623f0eb454", + "_parent": "57aca93d2459771f2c7e26db", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 800, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 2, + "AimSensitivity": [ + [ + 0.1625, + 0.65 + ], + [ + 0.7 + ] + ], + "ModesCount": [ + 2, + 1 + ], + "Zooms": [ + [ + 4, + 1 + ], + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ], + [ + 25 + ] + ] + }, + "_proto": "57ac965c24597706be5f975c" + }, "5f3e78a7fbf956000b716b8e": { "_id": "5f3e78a7fbf956000b716b8e", "_name": "sight_front_m1911_novak_lomount_front_sight", @@ -201770,476 +201981,6 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, - "5894a81786f77427140b8347": { - "_id": "5894a81786f77427140b8347", - "_name": "sight_rear_all_sig_mpx_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_all_sig_mpx_std", - "ShortName": "sight_rear_all_sig_mpx_std", - "Description": "sight_rear_all_sig_mpx_std", - "Weight": 0.14, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_all_sig_mpx_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 300, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "61963a852d2c397d660036ad": { - "_id": "61963a852d2c397d660036ad", - "_name": "sight_rear_hk_red_dot_mount", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_p226_sight_mount_220-239", - "ShortName": "sight_rear_p226_sight_mount_220-239", - "Description": "sight_rear_p226_sight_mount_220-239", - "Weight": 0.028, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_hk_red_dot_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "6194f5d418a3974e5e7421ef", - "6194f5722d2c397d6600348f" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "61963a852d2c397d660036af", - "_parent": "61963a852d2c397d660036ad", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "577d141e24597739c5255e01" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "5649d9a14bdc2d79388b4580" - }, - "5c1780312e221602b66cc189": { - "_id": "5c1780312e221602b66cc189", - "_name": "sight_rear_all_kac_folding_sight", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_all_kac_folding_micro_sight", - "ShortName": "sight_rear_all_kac_folding_micro_sight", - "Description": "sight_rear_all_kac_folding_micro_sight", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_all_kac_folding_sight.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 300, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "57aca93d2459771f2c7e26db": { - "_id": "57aca93d2459771f2c7e26db", - "_name": "scope_all_elcan_specter_dr_1-4_fde", - "_parent": "55818add4bdc2d5b648b456f", - "_type": "Item", - "_props": { - "Name": "", - "ShortName": "", - "Description": "", - "Weight": 0.64, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_elcan_specter_dr_1-4_fde.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount", - "_id": "57efc7a0245977623f0eb454", - "_parent": "57aca93d2459771f2c7e26db", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 800, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 2, - "AimSensitivity": [ - [ - 0.1625, - 0.65 - ], - [ - 0.7 - ] - ], - "ModesCount": [ - 2, - 1 - ], - "Zooms": [ - [ - 4, - 1 - ], - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ], - [ - 25 - ] - ] - }, - "_proto": "57ac965c24597706be5f975c" - }, "5c7d55de2e221644f31bff68": { "_id": "5c7d55de2e221644f31bff68", "_name": "scope_base_aimpooint_comp_m4", @@ -202453,6 +202194,132 @@ }, "_proto": "544a39de4bdc2d24388b4567" }, + "61963a852d2c397d660036ad": { + "_id": "61963a852d2c397d660036ad", + "_name": "sight_rear_hk_red_dot_mount", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_p226_sight_mount_220-239", + "ShortName": "sight_rear_p226_sight_mount_220-239", + "Description": "sight_rear_p226_sight_mount_220-239", + "Weight": 0.028, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_hk_red_dot_mount.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "6194f5d418a3974e5e7421ef", + "6194f5722d2c397d6600348f" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "61963a852d2c397d660036af", + "_parent": "61963a852d2c397d660036ad", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "577d141e24597739c5255e01" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "5649d9a14bdc2d79388b4580" + }, "5d3eb536a4b9363b1f22f8e2": { "_id": "5d3eb536a4b9363b1f22f8e2", "_name": "sight_front_57_fn_five_seven_std", @@ -202557,6 +202424,110 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, + "5894a81786f77427140b8347": { + "_id": "5894a81786f77427140b8347", + "_name": "sight_rear_all_sig_mpx_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_all_sig_mpx_std", + "ShortName": "sight_rear_all_sig_mpx_std", + "Description": "sight_rear_all_sig_mpx_std", + "Weight": 0.14, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_all_sig_mpx_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 300, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, "5fb6567747ce63734e3fa1dc": { "_id": "5fb6567747ce63734e3fa1dc", "_name": "sight_front_all_kriss_defiance_low_profile_flip_up", @@ -202765,6 +202736,110 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, + "5c1780312e221602b66cc189": { + "_id": "5c1780312e221602b66cc189", + "_name": "sight_rear_all_kac_folding_sight", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_all_kac_folding_micro_sight", + "ShortName": "sight_rear_all_kac_folding_micro_sight", + "Description": "sight_rear_all_kac_folding_micro_sight", + "Weight": 0.08, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_all_kac_folding_sight.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 300, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, "5a7d9104159bd400134c8c21": { "_id": "5a7d9104159bd400134c8c21", "_name": "sight_front_glock_truglo_tfx_glock_sight", @@ -202973,23 +203048,23 @@ }, "_proto": "55d5f46a4bdc2d1b198b4567" }, - "628b9471078f94059a4b9bfb": { - "_id": "628b9471078f94059a4b9bfb", - "_name": "sight_rear_ak_sag_mk3_chassis_rear_sight", + "599860e986f7743bb57573a6": { + "_id": "599860e986f7743bb57573a6", + "_name": "sight_rear_pp-19-01_izhmash_vityaz_std", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "Целик Ижмаш для АК-74", - "ShortName": "АК74 Целик", - "Description": "Штатный целик АК-74 производства Ижмаш.", - "Weight": 0.015, + "Name": "sight_rear_pp-19-01_izhmash_vityaz_std", + "ShortName": "sight_rear_pp-19-01_izhmash_vityaz_std", + "Description": "sight_rear_pp-19-01_izhmash_vityaz_std", + "Weight": 0.025, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_ak_sag_mk3_chassis_rear_sight.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_pp-19-01_izhmash_vityaz_std.bundle", "rcid": "" }, "UsePrefab": { @@ -203050,7 +203125,7 @@ "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 500, + "SightingRange": 200, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "CustomAimPlane": "", @@ -203071,29 +203146,29 @@ ], "CalibrationDistances": [ [ - 100 + 50 ] ] }, - "_proto": "55d5f46a4bdc2d1b198b4567" + "_proto": "55d4af3a4bdc2d972f8b456f" }, - "64119d90dcf48d656f0aa275": { - "_id": "64119d90dcf48d656f0aa275", - "_name": "sight_rear_svt40_toz_svt40_std", + "628a7b23b0f75035732dd565": { + "_id": "628a7b23b0f75035732dd565", + "_name": "sight_rear_ak_rifle_dynamics_enhanced_v2", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "sight_rear_ak_izhmash_akm_std", - "ShortName": "sight_rear_ak_izhmash_akm_std", - "Description": "sight_rear_ak_izhmash_akm_std", - "Weight": 0.025, + "Name": "Целик Ижмаш для АК-74", + "ShortName": "АК74 Целик", + "Description": "Штатный целик АК-74 производства Ижмаш.", + "Weight": 0.026, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_svt40_toz_svt40_std.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_ak_rifle_dynamics_enhanced_v2.bundle", "rcid": "" }, "UsePrefab": { @@ -203110,7 +203185,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 20, + "LootExperience": 5, "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, @@ -203146,7 +203221,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, + "Ergonomics": 1, "Velocity": 0, "RaidModdable": true, "ToolModdable": false, @@ -203493,23 +203568,129 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, - "5c05295e0db834001a66acbb": { - "_id": "5c05295e0db834001a66acbb", - "_name": "sight_rear_acog_trijicon_acog_backup_rear_sight", + "63c6adcfb4ba094317063742": { + "_id": "63c6adcfb4ba094317063742", + "_name": "sight_rear_pm_izhmeh_pm_std", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "sight_front_all_sig_mpx_std", - "ShortName": "sight_front_all_sig_mpx_std", - "Description": "sight_front_all_sig_mpx_std", - "Weight": 0.034, + "Name": "sight_rear_pl15_izhmash_pl15_std", + "ShortName": "sight_rear_pl15_izhmash_pl15_std", + "Description": "sight_rear_pl15_izhmash_pl15_std", + "Weight": 0.002, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_acog_trijicon_acog_backup_rear_sight.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_pm_izhmeh_pm_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [ + "60228a850ddce744014caf69" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "6513f153e63f29908d0ffaba": { + "_id": "6513f153e63f29908d0ffaba", + "_name": "sight_rear_rpd_zid_rpd_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "Целик Ижмаш для АК-74", + "ShortName": "АК74 Целик", + "Description": "Штатный целик АК-74 производства Ижмаш.", + "Weight": 0.025, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_rpd_zid_rpd_std.bundle", "rcid": "" }, "UsePrefab": { @@ -203562,15 +203743,15 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 1, + "Ergonomics": 0, "Velocity": 0, "RaidModdable": true, - "ToolModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 300, + "SightingRange": 1000, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "CustomAimPlane": "", @@ -203591,11 +203772,11 @@ ], "CalibrationDistances": [ [ - 25 + 100 ] ] }, - "_proto": "55d4af3a4bdc2d972f8b456f" + "_proto": "55d5f46a4bdc2d1b198b4567" }, "5b3b99475acfc432ff4dcbee": { "_id": "5b3b99475acfc432ff4dcbee", @@ -203727,23 +203908,23 @@ }, "_proto": "56ea70acd2720b844b8b4594" }, - "628a7b23b0f75035732dd565": { - "_id": "628a7b23b0f75035732dd565", - "_name": "sight_rear_ak_rifle_dynamics_enhanced_v2", + "60229948cacb6b0506369e27": { + "_id": "60229948cacb6b0506369e27", + "_name": "sight_rear_pl15_izhmash_pl15_std", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "Целик Ижмаш для АК-74", - "ShortName": "АК74 Целик", - "Description": "Штатный целик АК-74 производства Ижмаш.", - "Weight": 0.026, + "Name": "sight_rear_pl15_izhmash_pl15_std", + "ShortName": "sight_rear_pl15_izhmash_pl15_std", + "Description": "sight_rear_pl15_izhmash_pl15_std", + "Weight": 0.007, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_ak_rifle_dynamics_enhanced_v2.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_pl15_izhmash_pl15_std.bundle", "rcid": "" }, "UsePrefab": { @@ -203773,111 +203954,9 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] + "ConflictingItems": [ + "60228a850ddce744014caf69" ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d5f46a4bdc2d1b198b4567" - }, - "6194f35c18a3974e5e7421e6": { - "_id": "6194f35c18a3974e5e7421e6", - "_name": "sight_front_usp_hk_usp_std_front_sight", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_glock_glock_std", - "ShortName": "sight_front_glock_glock_std", - "Description": "sight_front_glock_glock_std", - "Weight": 0.003, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_usp_hk_usp_std_front_sight.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -203902,7 +203981,7 @@ "EffectiveDistance": 0, "Ergonomics": 0, "Velocity": 0, - "RaidModdable": false, + "RaidModdable": true, "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, @@ -203935,23 +204014,23 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, - "5c471ba12e221602b3137d76": { - "_id": "5c471ba12e221602b3137d76", - "_name": "sight_front_svd_izhmash_svd_s_std", + "57a9b9ce2459770ee926038d": { + "_id": "57a9b9ce2459770ee926038d", + "_name": "sight_rear_saiga_izhmash_saiga_fixed", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "sight_front_ak_izhmash_akmp", - "ShortName": "sight_front_ak_izhmash_akmp", - "Description": "sight_front_ak_izhmash_akmp", - "Weight": 0.08, + "Name": "sight_rear_saiga_izhmash_saiga_fixed", + "ShortName": "sight_rear_saiga_izhmash_saiga_fixed", + "Description": "sight_rear_saiga_izhmash_saiga_fixed", + "Weight": 0.003, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_svd_izhmash_svd_s_std.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_saiga_izhmash_saiga_fixed.bundle", "rcid": "" }, "UsePrefab": { @@ -203969,7 +204048,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 5, - "ExamineExperience": 2, + "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -204007,12 +204086,12 @@ "Ergonomics": 0, "Velocity": 0, "RaidModdable": true, - "ToolModdable": false, + "ToolModdable": true, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 500, + "SightingRange": 100, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "CustomAimPlane": "", @@ -204033,28 +204112,21 @@ ], "CalibrationDistances": [ [ - 100 + 25 ] ] }, - "_proto": "55d5f46a4bdc2d1b198b4567" + "_proto": "5649b0544bdc2d1b2b8b458a" }, - "55818ad54bdc2ddc698b4569": { - "_id": "55818ad54bdc2ddc698b4569", - "_name": "Collimator", - "_parent": "5448fe7a4bdc2d6f028b456b", - "_type": "Node", - "_props": {} - }, - "6513f153e63f29908d0ffaba": { - "_id": "6513f153e63f29908d0ffaba", - "_name": "sight_rear_rpd_zid_rpd_std", + "649ec2cec93611967b03495e": { + "_id": "649ec2cec93611967b03495e", + "_name": "sight_rear_ak_izhmash_ak12_rear_sight_std", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "Целик Ижмаш для АК-74", - "ShortName": "АК74 Целик", - "Description": "Штатный целик АК-74 производства Ижмаш.", + "Name": "Целик Colt A2 Rearsight для AR-15 и совместимых", + "ShortName": "CA2R", + "Description": "Съемный целик Colt A2 Rearsight. Штатно устанавливается на M4A1.", "Weight": 0.025, "BackgroundColor": "blue", "Width": 1, @@ -204062,7 +204134,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_rpd_zid_rpd_std.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_ak_izhmash_ak12_rear_sight_std.bundle", "rcid": "" }, "UsePrefab": { @@ -204123,7 +204195,7 @@ "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 1000, + "SightingRange": 600, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "CustomAimPlane": "", @@ -204148,7 +204220,139 @@ ] ] }, - "_proto": "55d5f46a4bdc2d1b198b4567" + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "61714eec290d254f5e6b2ffc": { + "_id": "61714eec290d254f5e6b2ffc", + "_name": "scope_34mm_s&b_pm_ii_3_12x50", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "scope_34mm_hensoldt_zf_4_16x56_ff", + "ShortName": "scope_34mm_hensoldt_zf_4_16x56_ff", + "Description": "scope_34mm_hensoldt_zf_4_16x56_ff", + "Weight": 0.9, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_34mm_s&b_pm_ii_3_12x50.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "64785e7c19d732620e045e15", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "6477772ea8a38bb2050ed4db", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "570fd721d2720bc5458b4596", + "59f9d81586f7744c7506ee62", + "584984812459776a704a82a6" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 1500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.04, + 0.25 + ] + ], + "ModesCount": [ + 2 + ], + "Zooms": [ + [ + 12, + 3 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200, + 250, + 300, + 350, + 400, + 450 + ] + ] + }, + "_proto": "544a3d0a4bdc2d1b388b4567" }, "57c5ac0824597754771e88a9": { "_id": "57c5ac0824597754771e88a9", @@ -204723,23 +204927,23 @@ "blockLeftStance": false } }, - "649ec2da59cbb3c813042dca": { - "_id": "649ec2da59cbb3c813042dca", - "_name": "sight_rear_all_izhmash_ak12_rear_sight_base", + "628b9471078f94059a4b9bfb": { + "_id": "628b9471078f94059a4b9bfb", + "_name": "sight_rear_ak_sag_mk3_chassis_rear_sight", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "Целик Colt A2 Rearsight для AR-15 и совместимых", - "ShortName": "CA2R", - "Description": "Съемный целик Colt A2 Rearsight. Штатно устанавливается на M4A1.", - "Weight": 0.05, + "Name": "Целик Ижмаш для АК-74", + "ShortName": "АК74 Целик", + "Description": "Штатный целик АК-74 производства Ижмаш.", + "Weight": 0.015, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_all_izhmash_ak12_rear_sight_base.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_ak_sag_mk3_chassis_rear_sight.bundle", "rcid": "" }, "UsePrefab": { @@ -204769,8 +204973,118 @@ "MergesWithChildren": true, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d5f46a4bdc2d1b198b4567" + }, + "5c82342f2e221644f31c060e": { + "_id": "5c82342f2e221644f31c060e", + "_name": "scope_dovetail_belomo_pso_1_4x24", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "scope_dovetail_belomo_pso_1m2-1_4×24", + "ShortName": "scope_dovetail_belomo_pso_1m2-1_4×24", + "Description": "scope_dovetail_belomo_pso_1m2-1_4×24", + "Weight": 0.6, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_dovetail_belomo_pso_1_4x24.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, "ConflictingItems": [ - "5b3b99265acfc4704b4a1afb" + "5827272a24597748c74bdeea", + "58272b392459774b4c7b3ccd", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "5947db3f86f77447880cf76f", + "57acb6222459771ec34b5cb0", + "591ee00d86f774592f7b841e" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -204788,19 +205102,15 @@ "Grids": [], "Slots": [ { - "_name": "mod_sight_rear", - "_id": "649ec2da59cbb3c813042dcb", - "_parent": "649ec2da59cbb3c813042dca", + "_name": "mod_tactical", + "_id": "5c82342f2e221644f31c0610", + "_parent": "5c82342f2e221644f31c060e", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5ac733a45acfc400192630e2", - "5649b0544bdc2d1b2b8b458a", - "5ac72e475acfc400180ae6fe", - "5bf3f59f0db834001a6fa060", - "649ec2cec93611967b03495e" + "57f3a5ae2459772b0e0bf19e" ] } ] @@ -204817,6 +205127,358 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, + "Ergonomics": -7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 600, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.1625, + 0.1625 + ] + ], + "ModesCount": [ + 2 + ], + "Zooms": [ + [ + 4, + 4 + ] + ], + "CalibrationDistances": [ + [ + 50, + 75, + 100, + 125, + 150, + 200, + 250, + 300 + ] + ] + }, + "_proto": "544a3d0a4bdc2d1b388b4567" + }, + "618a75f0bd321d49084cd399": { + "_id": "618a75f0bd321d49084cd399", + "_name": "scope_base_npz_1p78_1_2,8x24", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "scope_dovetail_belomo_pso_1m2-1_4×24", + "ShortName": "scope_dovetail_belomo_pso_1m2-1_4×24", + "Description": "scope_dovetail_belomo_pso_1m2-1_4×24", + "Weight": 0.6, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_base_npz_1p78_1_2,8x24.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "591ee00d86f774592f7b841e", + "57acb6222459771ec34b5cb0", + "5827272a24597748c74bdeea", + "58272b392459774b4c7b3ccd" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "618a75f0bd321d49084cd39b", + "_parent": "618a75f0bd321d49084cd399", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "618a760e526131765025aae3" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 600, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.28 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 3 + ] + ], + "CalibrationDistances": [ + [ + 50, + 75, + 100, + 125, + 150 + ] + ] + }, + "_proto": "544a3d0a4bdc2d1b388b4567" + }, + "6492fb8253acae0af00a29b6": { + "_id": "6492fb8253acae0af00a29b6", + "_name": "sight_rear_pk_zid_pk_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_ak_izhmash_akm_std", + "ShortName": "sight_rear_ak_izhmash_akm_std", + "Description": "sight_rear_ak_izhmash_akm_std", + "Weight": 0.025, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_pk_zid_pk_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d5f46a4bdc2d1b198b4567" + }, + "5ae099925acfc4001a5fc7b3": { + "_id": "5ae099925acfc4001a5fc7b3", + "_name": "sight_rear_mosin_izhmash_mosin_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "Целик Colt A2 Rearsight для AR-15 и совместимых", + "ShortName": "CA2R", + "Description": "Съемный целик Colt A2 Rearsight. Штатно устанавливается на M4A1.", + "Weight": 0.15, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_mosin_izhmash_mosin_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, "Ergonomics": 0, "Velocity": 0, "RaidModdable": true, @@ -205069,6 +205731,416 @@ "_type": "Node", "_props": {} }, + "57c44b372459772d2b39b8ce": { + "_id": "57c44b372459772d2b39b8ce", + "_name": "weapon_tochmash_val_9x39", + "_parent": "5447b5fc4bdc2d87278b4567", + "_type": "Item", + "_props": { + "Name": "", + "ShortName": "", + "Description": "", + "Weight": 0.92, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/val/weapon_tochmash_val_9x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 448, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "57c44cb62459772d2d75e37f", + "_parent": "57c44b372459772d2b39b8ce", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57c44dd02459772d2e0ae249", + "57838c962459774a1651ec63" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "57c44ce02459772d2b39b8d4", + "_parent": "57c44b372459772d2b39b8ce", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57c44f4f2459772d2c627113", + "578395402459774a256959b5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "57c44cec2459772d303d899c", + "_parent": "57c44b372459772d2b39b8ce", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "57838f0b2459774a256959b2", + "57838f9f2459774a150289a0", + "5a9e81fba2750c00164f6b11" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_pistol_grip", + "_id": "57c44cf92459772d2b39b8d5", + "_parent": "57c44b372459772d2b39b8ce", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a69a2ed8dc32e000d46d1f1", + "57c44fa82459772d2d75e415" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "57c44d062459772d28133242", + "_parent": "57c44b372459772d2b39b8ce", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57c450252459772d28133253" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "57c44d162459772d2f482f38", + "_parent": "57c44b372459772d2b39b8ce", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_004", + "_id": "57c452612459772d2d75e495", + "_parent": "57c44b372459772d2b39b8ce", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5e569a2e56edd02abe09f280", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "638db77630c4240f9e06f8b6", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "57c4526f2459772d291a83e9", + "_parent": "57c44b372459772d2b39b8ce", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5dff8db859400025ea5150d4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "sniperRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x39", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 3800, + "RepairComplexity": 1, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 900, + "Ergonomics": 46, + "Velocity": 0, + "bEffDist": 400, + "bHearDist": 70, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "57838f0b2459774a256959b2", + "defAmmo": "57a0dfb82459774d3078b56c", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "57c44c7c2459772d28133240", + "_parent": "57c44b372459772d2b39b8ce", + "_props": { + "filters": [ + { + "Filter": [ + "5c0d688c86f77413ae3407b2", + "61962d879bb3d20b0946d385", + "57a0dfb82459774d3078b56c", + "57a0e5022459774d1673f889", + "5c0d668f86f7747ccb7f13b2", + "6576f96220d53a5b8f3e395e" + ], + "MaxStackCount": 0 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.1, + "AimPlane": 0.2, + "DeviationCurve": 1.9, + "DeviationMax": 15.5, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.7, + "RecoilDampingHandRotation": 0.84, + "RecoilCamera": 0.064, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 270, + "RecoilForceUp": 80, + "RecolDispersion": 13, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.31, + "z": 0.01 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.09 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.3, + "z": -0.09 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.05, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1.11, + "CoolFactorGun": 2.592, + "CoolFactorGunMods": 1.02, + "HeatFactorByShot": 2.17, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.045, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "57838ad32459774a17445cd2" + }, "587e02ff24597743df3deaeb": { "_id": "587e02ff24597743df3deaeb", "_name": "weapon_molot_op_sks_762x39", @@ -205748,23 +206820,23 @@ "blockLeftStance": false } }, - "57c44b372459772d2b39b8ce": { - "_id": "57c44b372459772d2b39b8ce", - "_name": "weapon_tochmash_val_9x39", - "_parent": "5447b5fc4bdc2d87278b4567", + "5e87114fe2db31558c75a120": { + "_id": "5e87114fe2db31558c75a120", + "_name": "sight_rear_590_mossberg_ghost_ring_sight_kit", + "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "", - "ShortName": "", - "Description": "", - "Weight": 0.92, - "BackgroundColor": "black", - "Width": 2, + "Name": "sight_rear_57_fn_five_seven_std", + "ShortName": "sight_rear_57_fn_five_seven_std", + "Description": "sight_rear_57_fn_five_seven_std", + "Weight": 0.022, + "BackgroundColor": "blue", + "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "weap_ar", + "ItemSound": "mod", "Prefab": { - "path": "assets/content/weapons/val/weapon_tochmash_val_9x39_container.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_590_mossberg_ghost_ring_sight_kit.bundle", "rcid": "" }, "UsePrefab": { @@ -205781,11 +206853,11 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, + "LootExperience": 5, + "ExamineExperience": 2, "HideEntrails": false, - "RepairCost": 448, - "RepairSpeed": 10, + "RepairCost": 0, + "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -205803,7 +206875,940 @@ "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": false, "DiscardLimit": -1, - "DropSoundType": "Rifle", + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 1 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "64119d90dcf48d656f0aa275": { + "_id": "64119d90dcf48d656f0aa275", + "_name": "sight_rear_svt40_toz_svt40_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_ak_izhmash_akm_std", + "ShortName": "sight_rear_ak_izhmash_akm_std", + "Description": "sight_rear_ak_izhmash_akm_std", + "Weight": 0.025, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_svt40_toz_svt40_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d5f46a4bdc2d1b198b4567" + }, + "6194f35c18a3974e5e7421e6": { + "_id": "6194f35c18a3974e5e7421e6", + "_name": "sight_front_usp_hk_usp_std_front_sight", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_front_glock_glock_std", + "ShortName": "sight_front_glock_glock_std", + "Description": "sight_front_glock_glock_std", + "Weight": 0.003, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights front/sight_front_usp_hk_usp_std_front_sight.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "55818ad54bdc2ddc698b4569": { + "_id": "55818ad54bdc2ddc698b4569", + "_name": "Collimator", + "_parent": "5448fe7a4bdc2d6f028b456b", + "_type": "Node", + "_props": {} + }, + "5f3e7897ddc4f03b010e204a": { + "_id": "5f3e7897ddc4f03b010e204a", + "_name": "sight_rear_m1911_novak_lomount_rear_sight", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_m1911_novak_lomount_rear_sight", + "ShortName": "sight_rear_m1911_novak_lomount_rear_sight", + "Description": "sight_rear_m1911_novak_lomount_rear_sight", + "Weight": 0.003, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_m1911_novak_lomount_rear_sight.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 200, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25 + ] + ] + }, + "_proto": "56d5a661d2720bd8418b456b" + }, + "544a3d0a4bdc2d1b388b4567": { + "_id": "544a3d0a4bdc2d1b388b4567", + "_name": "scope_all_nightforce_nxs_2,5-10x24", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "Оптический прицел Nightforce NXS 2.5-10x24", + "ShortName": "NXS 2.5-10", + "Description": "Прицел NightForce NXS 2.5-10х24mm объединил в себе компактность и широкий диапазон кратности от 2,5х до 10х. Создавался для охоты и практической стрельбы со способностью выдерживать сильную отдачу и при этом вести стрельбу на дистанциях от коротких до длинных. Высочайшая надёжность прицела дает возможность устанавливать его на оружие любого калибра. Прицел нашел широкое признание как среди гражданских стрелков так и военных операторов во многих странах мира.", + "Weight": 0.51, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_nightforce_nxs_2,5-10x24.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.1 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + } + }, + "5dff772da3651922b360bf91": { + "_id": "5dff772da3651922b360bf91", + "_name": "scope_25_4mm_vomz_pilad_4x32m", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "scope_25_4mm_vomz_pilad_4x32m", + "ShortName": "scope_25_4mm_vomz_pilad_4x32m", + "Description": "scope_25_4mm_vomz_pilad_4x32m", + "Weight": 0.31, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_25_4mm_vomz_pilad_4x32m.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "5bb20e49d4351e3bac1212de", + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347", + "5c7d55f52e221644f31bff6c", + "64785e7c19d732620e045e15", + "6165ac8c290d254f5e6b2f6c", + "6477772ea8a38bb2050ed4db" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -4, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 800, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.175 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 4 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200, + 250, + 300 + ] + ] + }, + "_proto": "56ea70acd2720b844b8b4594" + }, + "5a37cb10c4a282329a73b4e7": { + "_id": "5a37cb10c4a282329a73b4e7", + "_name": "scope_30mm_leupold_mark4_lr_6,5_20x50", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "scope_30mm_march_tactical_3-24x42", + "ShortName": "scope_30mm_march_tactical_3-24x42", + "Description": "scope_30mm_march_tactical_3-24x42", + "Weight": 0.62, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_30mm_leupold_mark4_lr_6,5_20x50.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "5c7d55f52e221644f31bff6a", + "64785e7c19d732620e045e15", + "6165ac8c290d254f5e6b2f6c", + "6477772ea8a38bb2050ed4db" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 1500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.03 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 20 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200, + 250, + 300, + 350, + 400, + 450 + ] + ] + }, + "_proto": "56ea70acd2720b844b8b4594" + }, + "56ea70acd2720b844b8b4594": { + "_id": "56ea70acd2720b844b8b4594", + "_name": "scope_34mm_hensoldt_zf_4_16x56_ff", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "scope_34mm_hensoldt_zf_4_16x56_ff", + "ShortName": "scope_34mm_hensoldt_zf_4_16x56_ff", + "Description": "scope_34mm_hensoldt_zf_4_16x56_ff", + "Weight": 0.9, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_34mm_hensoldt_zf_4_16x56_ff.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "5c7d55f52e221644f31bff6a", + "64785e7c19d732620e045e15", + "6165ac8c290d254f5e6b2f6c", + "6477772ea8a38bb2050ed4db" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 1500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.125, + 0.0313 + ] + ], + "ModesCount": [ + 2 + ], + "Zooms": [ + [ + 4, + 16 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200, + 250, + 300, + 350, + 400, + 450 + ] + ] + }, + "_proto": "544a3d0a4bdc2d1b388b4567" + }, + "5b3b6e495acfc4330140bd88": { + "_id": "5b3b6e495acfc4330140bd88", + "_name": "scope_base_armasight_vulcan_gen3_bravo_mg_3,5x", + "_parent": "55818aeb4bdc2ddc698b456a", + "_type": "Item", + "_props": { + "Name": "scope_base_armasight_vulcan_gen3_bravo_mg_3,5x", + "ShortName": "scope_base_armasight_vulcan_gen3_bravo_mg_3,5x", + "Description": "scope_base_armasight_vulcan_gen3_bravo_mg_3,5x", + "Weight": 0.9, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_base_armasight_vulcan_gen3_bravo_mg_3,5x.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", "InsuranceDisabled": false, "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, @@ -205811,35 +207816,19 @@ "Grids": [], "Slots": [ { - "_name": "mod_muzzle", - "_id": "57c44cb62459772d2d75e37f", - "_parent": "57c44b372459772d2b39b8ce", + "_name": "mod_scope", + "_id": "5b3b7b205acfc4001638810b", + "_parent": "5b3b6e495acfc4330140bd88", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "57c44dd02459772d2e0ae249", - "57838c962459774a1651ec63" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "57c44ce02459772d2b39b8d4", - "_parent": "57c44b372459772d2b39b8ce", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57c44f4f2459772d2c627113", - "578395402459774a256959b5" + "57ae0171245977343c27bfcf", + "58d39d3d86f77445bb794ae7", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5a33b2c9c4a282000c5a9511" ] } ] @@ -205849,126 +207838,15 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_magazine", - "_id": "57c44cec2459772d303d899c", - "_parent": "57c44b372459772d2b39b8ce", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "57838f0b2459774a256959b2", - "57838f9f2459774a150289a0", - "5a9e81fba2750c00164f6b11" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_pistol_grip", - "_id": "57c44cf92459772d2b39b8d5", - "_parent": "57c44b372459772d2b39b8ce", + "_name": "mod_tactical", + "_id": "5b3cbcaf5acfc400194776a3", + "_parent": "5b3b6e495acfc4330140bd88", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a69a2ed8dc32e000d46d1f1", - "57c44fa82459772d2d75e415" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "57c44d062459772d28133242", - "_parent": "57c44b372459772d2b39b8ce", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57c450252459772d28133253" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "57c44d162459772d2f482f38", - "_parent": "57c44b372459772d2b39b8ce", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_004", - "_id": "57c452612459772d2d75e495", - "_parent": "57c44b372459772d2b39b8ce", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5e569a2e56edd02abe09f280", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "638db77630c4240f9e06f8b6", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "57c4526f2459772d291a83e9", - "_parent": "57c44b372459772d2b39b8ce", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5dff8db859400025ea5150d4" + "5b3cbc235acfc4001863ac44" ] } ] @@ -205980,183 +207858,300 @@ ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "sniperRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x39", "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 3800, - "RepairComplexity": 1, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 900, - "Ergonomics": 46, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -15, "Velocity": 0, - "bEffDist": 400, - "bHearDist": 70, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "57838f0b2459774a256959b2", - "defAmmo": "57a0dfb82459774d3078b56c", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "57c44c7c2459772d28133240", - "_parent": "57c44b372459772d2b39b8ce", - "_props": { - "filters": [ - { - "Filter": [ - "5c0d688c86f77413ae3407b2", - "61962d879bb3d20b0946d385", - "57a0dfb82459774d3078b56c", - "57a0e5022459774d1673f889", - "5c0d668f86f7747ccb7f13b2", - "6576f96220d53a5b8f3e395e" - ], - "MaxStackCount": 0 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.2429 + ] ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.1, - "AimPlane": 0.2, - "DeviationCurve": 1.9, - "DeviationMax": 15.5, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.7, - "RecoilDampingHandRotation": 0.84, - "RecoilCamera": 0.064, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 270, - "RecoilForceUp": 80, - "RecolDispersion": 13, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.31, - "z": 0.01 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } + "ModesCount": [ + 1 ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.09 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.3, - "z": -0.09 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.05, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1.11, - "CoolFactorGun": 2.592, - "CoolFactorGunMods": 1.02, - "HeatFactorByShot": 2.17, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.045, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false + "Zooms": [ + [ + 3.5 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] }, - "_proto": "57838ad32459774a17445cd2" + "_proto": "5a1eaa87fcdbcb001865f75e" + }, + "6272370ee4013c5d7e31f418": { + "_id": "6272370ee4013c5d7e31f418", + "_name": "tactical_all_olight_baldr_pro", + "_parent": "55818b164bdc2ddc698b456c", + "_type": "Item", + "_props": { + "Name": "Тактический фонарь X400", + "ShortName": "X400", + "Description": "X400", + "Weight": 0.129, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/tactical/tactical_all_olight_baldr_pro.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ModesCount": 3 + }, + "_proto": "560d657b4bdc2da74d8b4572" + }, + "5a7b483fe899ef0016170d15": { + "_id": "5a7b483fe899ef0016170d15", + "_name": "tactical_all_surefire_xc1", + "_parent": "55818b164bdc2ddc698b456c", + "_type": "Item", + "_props": { + "Name": "tactical_all_surefire_xc1", + "ShortName": "tactical_all_surefire_xc1", + "Description": "tactical_all_surefire_xc1", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/tactical/tactical_all_surefire_xc1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ModesCount": 1 + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, + "5a5f1ce64f39f90b401987bc": { + "_id": "5a5f1ce64f39f90b401987bc", + "_name": "tactical_all_zenit_2irs_kleh_lam", + "_parent": "55818b164bdc2ddc698b456c", + "_type": "Item", + "_props": { + "Name": "tactical_all_zenit_2irs_kleh_lam", + "ShortName": "tactical_all_zenit_2irs_kleh_lam", + "Description": "tactical_all_zenit_2irs_kleh_lam", + "Weight": 0.17, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/tactical/tactical_all_zenit_2irs_kleh_lam.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ModesCount": 3 + }, + "_proto": "544909bb4bdc2d6f028b4577" }, "5c471b7e2e2216152006e46c": { "_id": "5c471b7e2e2216152006e46c", @@ -206602,23 +208597,23 @@ "ModesCount": 5 } }, - "5bf3f59f0db834001a6fa060": { - "_id": "5bf3f59f0db834001a6fa060", - "_name": "sight_rear_ak_izhmash_rpk16_rear_sight_std", + "5c05295e0db834001a66acbb": { + "_id": "5c05295e0db834001a66acbb", + "_name": "sight_rear_acog_trijicon_acog_backup_rear_sight", "_parent": "55818ac54bdc2d5b648b456e", "_type": "Item", "_props": { - "Name": "Целик Colt A2 Rearsight для AR-15 и совместимых", - "ShortName": "CA2R", - "Description": "Съемный целик Colt A2 Rearsight. Штатно устанавливается на M4A1.", - "Weight": 0.025, + "Name": "sight_front_all_sig_mpx_std", + "ShortName": "sight_front_all_sig_mpx_std", + "Description": "sight_front_all_sig_mpx_std", + "Weight": 0.034, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_ak_izhmash_rpk16_rear_sight_std.bundle", + "path": "assets/content/items/mods/sights rear/sight_rear_acog_trijicon_acog_backup_rear_sight.bundle", "rcid": "" }, "UsePrefab": { @@ -206671,113 +208666,7 @@ "Recoil": 0, "Loudness": 0, "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 600, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "63c6adcfb4ba094317063742": { - "_id": "63c6adcfb4ba094317063742", - "_name": "sight_rear_pm_izhmeh_pm_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_pl15_izhmash_pl15_std", - "ShortName": "sight_rear_pl15_izhmash_pl15_std", - "Description": "sight_rear_pl15_izhmash_pl15_std", - "Weight": 0.002, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_pm_izhmeh_pm_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [ - "60228a850ddce744014caf69" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, + "Ergonomics": 1, "Velocity": 0, "RaidModdable": true, "ToolModdable": true, @@ -206785,7 +208674,7 @@ "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 200, + "SightingRange": 300, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "CustomAimPlane": "", @@ -206812,6 +208701,134 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, + "617151c1d92c473c770214ab": { + "_id": "617151c1d92c473c770214ab", + "_name": "scope_30mm_s&b_pm_ii_1_8x24", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "scope_34mm_hensoldt_zf_4_16x56_ff", + "ShortName": "scope_34mm_hensoldt_zf_4_16x56_ff", + "Description": "scope_34mm_hensoldt_zf_4_16x56_ff", + "Weight": 0.9, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_30mm_s&b_pm_ii_1_8x24.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "64785e7c19d732620e045e15", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "6477772ea8a38bb2050ed4db", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "570fd721d2720bc5458b4596" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 1500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.08, + 0.6 + ] + ], + "ModesCount": [ + 2 + ], + "Zooms": [ + [ + 8, + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200, + 250, + 300, + 350, + 400, + 450 + ] + ] + }, + "_proto": "544a3d0a4bdc2d1b388b4567" + }, "62850c28da09541f43158cca": { "_id": "62850c28da09541f43158cca", "_name": "scope_34mm_s&b_pm_ii_5_25x56", @@ -206944,134 +208961,6 @@ }, "_proto": "544a3d0a4bdc2d1b388b4567" }, - "617151c1d92c473c770214ab": { - "_id": "617151c1d92c473c770214ab", - "_name": "scope_30mm_s&b_pm_ii_1_8x24", - "_parent": "55818ae44bdc2dde698b456c", - "_type": "Item", - "_props": { - "Name": "scope_34mm_hensoldt_zf_4_16x56_ff", - "ShortName": "scope_34mm_hensoldt_zf_4_16x56_ff", - "Description": "scope_34mm_hensoldt_zf_4_16x56_ff", - "Weight": 0.9, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_30mm_s&b_pm_ii_1_8x24.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "64785e7c19d732620e045e15", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "6477772ea8a38bb2050ed4db", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "570fd721d2720bc5458b4596" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 1500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.08, - 0.6 - ] - ], - "ModesCount": [ - 2 - ], - "Zooms": [ - [ - 8, - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200, - 250, - 300, - 350, - 400, - 450 - ] - ] - }, - "_proto": "544a3d0a4bdc2d1b388b4567" - }, "6567e7681265c8a131069b0f": { "_id": "6567e7681265c8a131069b0f", "_name": "scope_30mm_sig_tango6t_1_6x24", @@ -207657,6 +209546,1323 @@ }, "_proto": "57838ad32459774a17445cd2" }, + "5ae30bad5acfc400185c2dc4": { + "_id": "5ae30bad5acfc400185c2dc4", + "_name": "sight_rear_ar15_colt_carry_hande_std", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_ar15_colt_carry_hande_std", + "ShortName": "sight_rear_ar15_colt_carry_hande_std", + "Description": "sight_rear_ar15_colt_carry_hande_std", + "Weight": 0.15, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_ar15_colt_carry_hande_std.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "5dff772da3651922b360bf91", + "56ea70acd2720b844b8b4594", + "5aa66be6e5b5b0214e506e97", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "5b2389515acfc4771e1be0c0", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "61714b2467085e45ef140b2c", + "62811f461d5df4475f46a332", + "64785e7c19d732620e045e15", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "655f13e0a246670fb0373245" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_scope", + "_id": "5ae9c31e5acfc4039d663545", + "_parent": "5ae30bad5acfc400185c2dc4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c1cdd512e22161b267d91ae", + "5c05293e0db83400232fff80", + "5c052a900db834001a66acbd", + "59db7e1086f77448be30ddf3" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 600, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d4af3a4bdc2d972f8b456f" + }, + "5b3f7c1c5acfc40dc5296b1d": { + "_id": "5b3f7c1c5acfc40dc5296b1d", + "_name": "scope_base_progress_pu_3,5x", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "scope_30mm_eotech_vudu_1_6x24scope_base_progress_pu_3,5x", + "ShortName": "scope_30mm_eotech_vudu_1_6x24scope_base_progress_pu_3,5x", + "Description": "scope_base_progress_pu_3,5x", + "Weight": 0.4, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_base_progress_pu_3,5x.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5894a73486f77426d259076c", + "5894a81786f77427140b8347" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -5, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.2429 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 3.5 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200, + 250, + 300 + ] + ] + }, + "_proto": "56ea70acd2720b844b8b4594" + }, + "5d2369418abbc306c62e0c80": { + "_id": "5d2369418abbc306c62e0c80", + "_name": "tactical_all_steiner_9021_dbal_pl", + "_parent": "55818b164bdc2ddc698b456c", + "_type": "Item", + "_props": { + "Name": "Тактический фонарь X400", + "ShortName": "X400", + "Description": "X400", + "Weight": 0.153, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/tactical/tactical_all_steiner_9021_dbal_pl.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ModesCount": 6 + }, + "_proto": "560d657b4bdc2da74d8b4572" + }, + "56ea9461d2720b67698b456f": { + "_id": "56ea9461d2720b67698b456f", + "_name": "Gasblock", + "_parent": "550aa4154bdc2dd8348b456b", + "_type": "Node", + "_props": { + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + } + }, + "55818b1d4bdc2d5b648b4572": { + "_id": "55818b1d4bdc2d5b648b4572", + "_name": "RailCovers", + "_parent": "550aa4154bdc2dd8348b456b", + "_type": "Node", + "_props": {} + }, + "576fd4ec2459777f0b518431": { + "_id": "576fd4ec2459777f0b518431", + "_name": "scope_dovetail_belomo_pso_1m2-1_4×24", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "scope_dovetail_belomo_pso_1m2-1_4×24", + "ShortName": "scope_dovetail_belomo_pso_1m2-1_4×24", + "Description": "scope_dovetail_belomo_pso_1m2-1_4×24", + "Weight": 0.6, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_dovetail_belomo_pso_1m2_1_4x24.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "591ee00d86f774592f7b841e", + "57acb6222459771ec34b5cb0", + "5827272a24597748c74bdeea", + "58272b392459774b4c7b3ccd" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "57f3a7082459772ae24f5cbf", + "_parent": "576fd4ec2459777f0b518431", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57f3a5ae2459772b0e0bf19e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -7, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 600, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.1625, + 0.1625 + ] + ], + "ModesCount": [ + 2 + ], + "Zooms": [ + [ + 4, + 4 + ] + ], + "CalibrationDistances": [ + [ + 50, + 75, + 100, + 125, + 150, + 200, + 250, + 300 + ] + ] + }, + "_proto": "544a3d0a4bdc2d1b388b4567" + }, + "5aa66be6e5b5b0214e506e97": { + "_id": "5aa66be6e5b5b0214e506e97", + "_name": "scope_34mm_nightforce_atacr_7_35x56", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "scope_34mm_nightforce_atacr_7_35x56", + "ShortName": "scope_34mm_nightforce_atacr_7_35x56", + "Description": "scope_34mm_nightforce_atacr_7_35x56", + "Weight": 1.113, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_34mm_nightforce_atacr_7_35x56.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "5c7d55f52e221644f31bff6a", + "64785e7c19d732620e045e15", + "6165ac8c290d254f5e6b2f6c", + "6477772ea8a38bb2050ed4db" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -8, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 2000, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.0714, + 0.0313 + ] + ], + "ModesCount": [ + 2 + ], + "Zooms": [ + [ + 7, + 16 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200, + 250, + 300, + 350, + 400, + 450 + ] + ] + }, + "_proto": "56ea70acd2720b844b8b4594" + }, + "5d0a3a58d7ad1a669c15ca14": { + "_id": "5d0a3a58d7ad1a669c15ca14", + "_name": "scope_base_kmz_1p59_3_10x", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "scope_30mm_burris_fullfield_tac30_1_4x24", + "ShortName": "scope_30mm_burris_fullfield_tac30_1_4x24", + "Description": "scope_30mm_burris_fullfield_tac30_1_4x24", + "Weight": 0.94, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_base_kmz_1p59_3_10x.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "5c7d55de2e221644f31bff68", + "5c7d55f52e221644f31bff6a", + "64785e7c19d732620e045e15", + "6165ac8c290d254f5e6b2f6c", + "6477772ea8a38bb2050ed4db" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5d0b8b2ed7ad1a02036cc658", + "_parent": "5d0a3a58d7ad1a669c15ca14", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d0b5cd3d7ad1a3fe32ad263" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -8, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 800, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.1667, + 0.1667, + 0.05, + 0.05 + ] + ], + "ModesCount": [ + 4 + ], + "Zooms": [ + [ + 3, + 3, + 10, + 10 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200, + 250, + 300, + 350, + 400, + 450 + ] + ] + }, + "_proto": "56ea70acd2720b844b8b4594" + }, + "55802f4a4bdc2ddb688b4569": { + "_id": "55802f4a4bdc2ddb688b4569", + "_name": "MasterMod", + "_parent": "5448fe124bdc2da5018b4567", + "_type": "Node", + "_props": {} + }, + "5d53f4b7a4b936793d58c780": { + "_id": "5d53f4b7a4b936793d58c780", + "_name": "scope_ags_npz_pag17_2,7x", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "scope_ags_npz_pag17_2,7x", + "ShortName": "scope_ags_npz_pag17_2,7x", + "Description": "scope_ags_npz_pag17_2,7x", + "Weight": 0.51, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_ags_npz_pag17_2,7x.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": false, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.1 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200, + 250, + 300 + ] + ] + }, + "_proto": "544a3d0a4bdc2d1b388b4567" + }, + "5a2c3a9486f774688b05e574": { + "_id": "5a2c3a9486f774688b05e574", + "_name": "NightVision", + "_parent": "55818aeb4bdc2ddc698b456a", + "_type": "Node", + "_props": { + "Intensity": 2.27, + "Mask": "Thermal", + "MaskSize": 1.5, + "NoiseIntensity": 0.02, + "NoiseScale": 5, + "Color": { + "r": 121, + "g": 233, + "b": 121, + "a": 254 + }, + "DiffuseIntensity": 0, + "HasHinge": true + } + }, + "55818add4bdc2d5b648b456f": { + "_id": "55818add4bdc2d5b648b456f", + "_name": "AssaultScope", + "_parent": "5448fe7a4bdc2d6f028b456b", + "_type": "Node", + "_props": {} + }, + "5448fe394bdc2d0d028b456c": { + "_id": "5448fe394bdc2d0d028b456c", + "_name": "Muzzle", + "_parent": "550aa4154bdc2dd8348b456b", + "_type": "Node", + "_props": { + "muzzleModType": "silencer", + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + } + }, + "645e0c6b3b381ede770e1cc9": { + "_id": "645e0c6b3b381ede770e1cc9", + "_name": "weapon_kbp_vsk94_9x39", + "_parent": "5447b5fc4bdc2d87278b4567", + "_type": "Item", + "_props": { + "Name": "", + "ShortName": "", + "Description": "", + "Weight": 0.92, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/vsk94/weapon_kbp_vsk94_9x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 448, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "645e0c6b3b381ede770e1cca", + "_parent": "645e0c6b3b381ede770e1cc9", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "6450ec2e7da7133e5a09ca96" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "645e0c6b3b381ede770e1ccc", + "_parent": "645e0c6b3b381ede770e1cc9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6452519e3d52156624001fd5" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "645e0c6b3b381ede770e1ccd", + "_parent": "645e0c6b3b381ede770e1cc9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "638db77630c4240f9e06f8b6", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "645e0c6b3b381ede770e1cce", + "_parent": "645e0c6b3b381ede770e1cc9", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "645122f6d4928d46d30be3ff", + "645123013d52156624001fd1" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "sniperRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x39", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 3800, + "RepairComplexity": 1, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 900, + "Ergonomics": 50, + "Velocity": 0, + "bEffDist": 400, + "bHearDist": 70, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "6450ec2e7da7133e5a09ca96", + "defAmmo": "57a0dfb82459774d3078b56c", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "645e0c6b3b381ede770e1ccf", + "_parent": "645e0c6b3b381ede770e1cc9", + "_props": { + "filters": [ + { + "Filter": [ + "5c0d688c86f77413ae3407b2", + "61962d879bb3d20b0946d385", + "57a0dfb82459774d3078b56c", + "57a0e5022459774d1673f889", + "5c0d668f86f7747ccb7f13b2", + "6576f96220d53a5b8f3e395e" + ], + "MaxStackCount": 0 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.1, + "AimPlane": 0.2, + "DeviationCurve": 1.9, + "DeviationMax": 15.5, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.7, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.064, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 300, + "RecoilForceUp": 115, + "RecolDispersion": 14, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.49, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.31, + "z": 0.01 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 2.2, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.09 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.3, + "z": -0.09 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.05, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.975, + "CoolFactorGun": 2.592, + "CoolFactorGunMods": 1.014, + "HeatFactorByShot": 2.17, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.045, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "57838ad32459774a17445cd2" + }, "5d21f59b6dbe99052b54ef83": { "_id": "5d21f59b6dbe99052b54ef83", "_name": "ThermalVision", @@ -208332,1921 +211538,9 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, - "5c82342f2e221644f31c060e": { - "_id": "5c82342f2e221644f31c060e", - "_name": "scope_dovetail_belomo_pso_1_4x24", - "_parent": "55818ae44bdc2dde698b456c", - "_type": "Item", - "_props": { - "Name": "scope_dovetail_belomo_pso_1m2-1_4×24", - "ShortName": "scope_dovetail_belomo_pso_1m2-1_4×24", - "Description": "scope_dovetail_belomo_pso_1m2-1_4×24", - "Weight": 0.6, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_dovetail_belomo_pso_1_4x24.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5827272a24597748c74bdeea", - "58272b392459774b4c7b3ccd", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "5947db3f86f77447880cf76f", - "57acb6222459771ec34b5cb0", - "591ee00d86f774592f7b841e" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5c82342f2e221644f31c0610", - "_parent": "5c82342f2e221644f31c060e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57f3a5ae2459772b0e0bf19e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -7, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": true, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 600, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.1625, - 0.1625 - ] - ], - "ModesCount": [ - 2 - ], - "Zooms": [ - [ - 4, - 4 - ] - ], - "CalibrationDistances": [ - [ - 50, - 75, - 100, - 125, - 150, - 200, - 250, - 300 - ] - ] - }, - "_proto": "544a3d0a4bdc2d1b388b4567" - }, - "61714eec290d254f5e6b2ffc": { - "_id": "61714eec290d254f5e6b2ffc", - "_name": "scope_34mm_s&b_pm_ii_3_12x50", - "_parent": "55818ae44bdc2dde698b456c", - "_type": "Item", - "_props": { - "Name": "scope_34mm_hensoldt_zf_4_16x56_ff", - "ShortName": "scope_34mm_hensoldt_zf_4_16x56_ff", - "Description": "scope_34mm_hensoldt_zf_4_16x56_ff", - "Weight": 0.9, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_34mm_s&b_pm_ii_3_12x50.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "64785e7c19d732620e045e15", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "6477772ea8a38bb2050ed4db", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "570fd721d2720bc5458b4596", - "59f9d81586f7744c7506ee62", - "584984812459776a704a82a6" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 1500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.04, - 0.25 - ] - ], - "ModesCount": [ - 2 - ], - "Zooms": [ - [ - 12, - 3 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200, - 250, - 300, - 350, - 400, - 450 - ] - ] - }, - "_proto": "544a3d0a4bdc2d1b388b4567" - }, - "5f3e7897ddc4f03b010e204a": { - "_id": "5f3e7897ddc4f03b010e204a", - "_name": "sight_rear_m1911_novak_lomount_rear_sight", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_m1911_novak_lomount_rear_sight", - "ShortName": "sight_rear_m1911_novak_lomount_rear_sight", - "Description": "sight_rear_m1911_novak_lomount_rear_sight", - "Weight": 0.003, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_m1911_novak_lomount_rear_sight.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "56d5a661d2720bd8418b456b" - }, - "5dfa3d7ac41b2312ea33362a": { - "_id": "5dfa3d7ac41b2312ea33362a", - "_name": "sight_rear_all_kac_folding_micro_sight", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_all_kac_folding_micro_sight", - "ShortName": "sight_rear_all_kac_folding_micro_sight", - "Description": "sight_rear_all_kac_folding_micro_sight", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_all_kac_folding_micro_sight.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 300, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "544a3d0a4bdc2d1b388b4567": { - "_id": "544a3d0a4bdc2d1b388b4567", - "_name": "scope_all_nightforce_nxs_2,5-10x24", - "_parent": "55818ae44bdc2dde698b456c", - "_type": "Item", - "_props": { - "Name": "Оптический прицел Nightforce NXS 2.5-10x24", - "ShortName": "NXS 2.5-10", - "Description": "Прицел NightForce NXS 2.5-10х24mm объединил в себе компактность и широкий диапазон кратности от 2,5х до 10х. Создавался для охоты и практической стрельбы со способностью выдерживать сильную отдачу и при этом вести стрельбу на дистанциях от коротких до длинных. Высочайшая надёжность прицела дает возможность устанавливать его на оружие любого калибра. Прицел нашел широкое признание как среди гражданских стрелков так и военных операторов во многих странах мира.", - "Weight": 0.51, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_nightforce_nxs_2,5-10x24.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.1 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - } - }, - "5dff772da3651922b360bf91": { - "_id": "5dff772da3651922b360bf91", - "_name": "scope_25_4mm_vomz_pilad_4x32m", - "_parent": "55818ae44bdc2dde698b456c", - "_type": "Item", - "_props": { - "Name": "scope_25_4mm_vomz_pilad_4x32m", - "ShortName": "scope_25_4mm_vomz_pilad_4x32m", - "Description": "scope_25_4mm_vomz_pilad_4x32m", - "Weight": 0.31, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_25_4mm_vomz_pilad_4x32m.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "5bb20e49d4351e3bac1212de", - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347", - "5c7d55f52e221644f31bff6c", - "64785e7c19d732620e045e15", - "6165ac8c290d254f5e6b2f6c", - "6477772ea8a38bb2050ed4db" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -4, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 800, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.175 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 4 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200, - 250, - 300 - ] - ] - }, - "_proto": "56ea70acd2720b844b8b4594" - }, - "56ea70acd2720b844b8b4594": { - "_id": "56ea70acd2720b844b8b4594", - "_name": "scope_34mm_hensoldt_zf_4_16x56_ff", - "_parent": "55818ae44bdc2dde698b456c", - "_type": "Item", - "_props": { - "Name": "scope_34mm_hensoldt_zf_4_16x56_ff", - "ShortName": "scope_34mm_hensoldt_zf_4_16x56_ff", - "Description": "scope_34mm_hensoldt_zf_4_16x56_ff", - "Weight": 0.9, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_34mm_hensoldt_zf_4_16x56_ff.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "5c7d55f52e221644f31bff6a", - "64785e7c19d732620e045e15", - "6165ac8c290d254f5e6b2f6c", - "6477772ea8a38bb2050ed4db" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 1500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.125, - 0.0313 - ] - ], - "ModesCount": [ - 2 - ], - "Zooms": [ - [ - 4, - 16 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200, - 250, - 300, - 350, - 400, - 450 - ] - ] - }, - "_proto": "544a3d0a4bdc2d1b388b4567" - }, - "5a37cb10c4a282329a73b4e7": { - "_id": "5a37cb10c4a282329a73b4e7", - "_name": "scope_30mm_leupold_mark4_lr_6,5_20x50", - "_parent": "55818ae44bdc2dde698b456c", - "_type": "Item", - "_props": { - "Name": "scope_30mm_march_tactical_3-24x42", - "ShortName": "scope_30mm_march_tactical_3-24x42", - "Description": "scope_30mm_march_tactical_3-24x42", - "Weight": 0.62, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_30mm_leupold_mark4_lr_6,5_20x50.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "5c7d55f52e221644f31bff6a", - "64785e7c19d732620e045e15", - "6165ac8c290d254f5e6b2f6c", - "6477772ea8a38bb2050ed4db" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 1500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.03 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 20 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200, - 250, - 300, - 350, - 400, - 450 - ] - ] - }, - "_proto": "56ea70acd2720b844b8b4594" - }, - "5b3b6e495acfc4330140bd88": { - "_id": "5b3b6e495acfc4330140bd88", - "_name": "scope_base_armasight_vulcan_gen3_bravo_mg_3,5x", - "_parent": "55818aeb4bdc2ddc698b456a", - "_type": "Item", - "_props": { - "Name": "scope_base_armasight_vulcan_gen3_bravo_mg_3,5x", - "ShortName": "scope_base_armasight_vulcan_gen3_bravo_mg_3,5x", - "Description": "scope_base_armasight_vulcan_gen3_bravo_mg_3,5x", - "Weight": 0.9, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_base_armasight_vulcan_gen3_bravo_mg_3,5x.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "5b3b7b205acfc4001638810b", - "_parent": "5b3b6e495acfc4330140bd88", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b2c9c4a282000c5a9511" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "5b3cbcaf5acfc400194776a3", - "_parent": "5b3b6e495acfc4330140bd88", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b3cbc235acfc4001863ac44" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -15, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.2429 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 3.5 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "5a1eaa87fcdbcb001865f75e" - }, - "6272370ee4013c5d7e31f418": { - "_id": "6272370ee4013c5d7e31f418", - "_name": "tactical_all_olight_baldr_pro", - "_parent": "55818b164bdc2ddc698b456c", - "_type": "Item", - "_props": { - "Name": "Тактический фонарь X400", - "ShortName": "X400", - "Description": "X400", - "Weight": 0.129, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_all_olight_baldr_pro.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ModesCount": 3 - }, - "_proto": "560d657b4bdc2da74d8b4572" - }, - "5a7b483fe899ef0016170d15": { - "_id": "5a7b483fe899ef0016170d15", - "_name": "tactical_all_surefire_xc1", - "_parent": "55818b164bdc2ddc698b456c", - "_type": "Item", - "_props": { - "Name": "tactical_all_surefire_xc1", - "ShortName": "tactical_all_surefire_xc1", - "Description": "tactical_all_surefire_xc1", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_all_surefire_xc1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ModesCount": 1 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, - "5a5f1ce64f39f90b401987bc": { - "_id": "5a5f1ce64f39f90b401987bc", - "_name": "tactical_all_zenit_2irs_kleh_lam", - "_parent": "55818b164bdc2ddc698b456c", - "_type": "Item", - "_props": { - "Name": "tactical_all_zenit_2irs_kleh_lam", - "ShortName": "tactical_all_zenit_2irs_kleh_lam", - "Description": "tactical_all_zenit_2irs_kleh_lam", - "Weight": 0.17, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_all_zenit_2irs_kleh_lam.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ModesCount": 3 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, - "58272b842459774abc128d50": { - "_id": "58272b842459774abc128d50", - "_name": "sight_rear_saiga_css_sight_rail_mount", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_saiga_css_sight_rail_mount", - "ShortName": "sight_rear_saiga_css_sight_rail_mount", - "Description": "sight_rear_saiga_css_sight_rail_mount", - "Weight": 0.03, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_saiga_css_sight_rail_mount.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5f63418ef5750b524b45f116", - "5827272a24597748c74bdeea", - "58272b392459774b4c7b3ccd" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_scope", - "_id": "58272c042459774aba70991d", - "_parent": "58272b842459774abc128d50", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "584984812459776a704a82a6", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5a33b2c9c4a282000c5a9511", - "64785e7c19d732620e045e15", - "5d2da1e948f035477b1ce2ba", - "6165ac8c290d254f5e6b2f6c", - "6477772ea8a38bb2050ed4db", - "60a23797a37c940de7062d02", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 100, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "57a9b9ce2459770ee926038d" - }, - "60229948cacb6b0506369e27": { - "_id": "60229948cacb6b0506369e27", - "_name": "sight_rear_pl15_izhmash_pl15_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_pl15_izhmash_pl15_std", - "ShortName": "sight_rear_pl15_izhmash_pl15_std", - "Description": "sight_rear_pl15_izhmash_pl15_std", - "Weight": 0.007, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_pl15_izhmash_pl15_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "60228a850ddce744014caf69" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "576fd4ec2459777f0b518431": { - "_id": "576fd4ec2459777f0b518431", - "_name": "scope_dovetail_belomo_pso_1m2-1_4×24", - "_parent": "55818ae44bdc2dde698b456c", - "_type": "Item", - "_props": { - "Name": "scope_dovetail_belomo_pso_1m2-1_4×24", - "ShortName": "scope_dovetail_belomo_pso_1m2-1_4×24", - "Description": "scope_dovetail_belomo_pso_1m2-1_4×24", - "Weight": 0.6, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_dovetail_belomo_pso_1m2_1_4x24.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "591ee00d86f774592f7b841e", - "57acb6222459771ec34b5cb0", - "5827272a24597748c74bdeea", - "58272b392459774b4c7b3ccd" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "57f3a7082459772ae24f5cbf", - "_parent": "576fd4ec2459777f0b518431", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57f3a5ae2459772b0e0bf19e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -7, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": true, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 600, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.1625, - 0.1625 - ] - ], - "ModesCount": [ - 2 - ], - "Zooms": [ - [ - 4, - 4 - ] - ], - "CalibrationDistances": [ - [ - 50, - 75, - 100, - 125, - 150, - 200, - 250, - 300 - ] - ] - }, - "_proto": "544a3d0a4bdc2d1b388b4567" - }, - "5aa66be6e5b5b0214e506e97": { - "_id": "5aa66be6e5b5b0214e506e97", - "_name": "scope_34mm_nightforce_atacr_7_35x56", - "_parent": "55818ae44bdc2dde698b456c", - "_type": "Item", - "_props": { - "Name": "scope_34mm_nightforce_atacr_7_35x56", - "ShortName": "scope_34mm_nightforce_atacr_7_35x56", - "Description": "scope_34mm_nightforce_atacr_7_35x56", - "Weight": 1.113, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_34mm_nightforce_atacr_7_35x56.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "5c7d55f52e221644f31bff6a", - "64785e7c19d732620e045e15", - "6165ac8c290d254f5e6b2f6c", - "6477772ea8a38bb2050ed4db" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -8, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 2000, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.0714, - 0.0313 - ] - ], - "ModesCount": [ - 2 - ], - "Zooms": [ - [ - 7, - 16 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200, - 250, - 300, - 350, - 400, - 450 - ] - ] - }, - "_proto": "56ea70acd2720b844b8b4594" - }, - "5d0a3a58d7ad1a669c15ca14": { - "_id": "5d0a3a58d7ad1a669c15ca14", - "_name": "scope_base_kmz_1p59_3_10x", + "5d0a3e8cd7ad1a6f6a3d35bd": { + "_id": "5d0a3e8cd7ad1a6f6a3d35bd", + "_name": "scope_base_kmz_1p69_3_10x", "_parent": "55818ae44bdc2dde698b456c", "_type": "Item", "_props": { @@ -210260,7 +211554,7 @@ "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/scopes/scope_base_kmz_1p59_3_10x.bundle", + "path": "assets/content/items/mods/scopes/scope_base_kmz_1p69_3_10x.bundle", "rcid": "" }, "UsePrefab": { @@ -210328,8 +211622,8 @@ "Slots": [ { "_name": "mod_tactical", - "_id": "5d0b8b2ed7ad1a02036cc658", - "_parent": "5d0a3a58d7ad1a669c15ca14", + "_id": "5d0b8b5cd7ad1a2d9e0cc1a9", + "_parent": "5d0a3e8cd7ad1a6f6a3d35bd", "_props": { "filters": [ { @@ -210401,30 +211695,23 @@ }, "_proto": "56ea70acd2720b844b8b4594" }, - "55802f4a4bdc2ddb688b4569": { - "_id": "55802f4a4bdc2ddb688b4569", - "_name": "MasterMod", - "_parent": "5448fe124bdc2da5018b4567", - "_type": "Node", - "_props": {} - }, - "599860e986f7743bb57573a6": { - "_id": "599860e986f7743bb57573a6", - "_name": "sight_rear_pp-19-01_izhmash_vityaz_std", - "_parent": "55818ac54bdc2d5b648b456e", + "5c0558060db834001b735271": { + "_id": "5c0558060db834001b735271", + "_name": "nvg_l3_gpnvg-18_anvis", + "_parent": "5a2c3a9486f774688b05e574", "_type": "Item", "_props": { - "Name": "sight_rear_pp-19-01_izhmash_vityaz_std", - "ShortName": "sight_rear_pp-19-01_izhmash_vityaz_std", - "Description": "sight_rear_pp-19-01_izhmash_vityaz_std", - "Weight": 0.025, - "BackgroundColor": "blue", - "Width": 1, + "Name": "nvg_l3_gpnvg-18_anvis", + "ShortName": "nvg_l3_gpnvg-18_anvis", + "Description": "nvg_l3_gpnvg-18_anvis", + "Weight": 0.88, + "BackgroundColor": "default", + "Width": 2, "Height": 1, "StackMaxSize": 1, - "ItemSound": "mod", + "ItemSound": "gear_goggles", "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_pp-19-01_izhmash_vityaz_std.bundle", + "path": "assets/content/items/equipment/customizable/gpnvg/nvg_l3_gpnvg-18_anvis.bundle", "rcid": "" }, "UsePrefab": { @@ -210441,8 +211728,8 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, + "LootExperience": 15, + "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -210451,10 +211738,15 @@ "ExtraSizeUp": 0, "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, + "MergesWithChildren": false, + "CanSellOnRagfair": false, "CanRequireOnRagfair": false, - "ConflictingItems": [], + "ConflictingItems": [ + "5a16b672fcdbcb001912fa83", + "5a16b7e1fcdbcb00165aa6c9", + "5e00cdd986f7747473332240", + "5e01f37686f774773c6f6c15" + ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -210485,7 +211777,7 @@ "BlocksCollapsible": false, "IsAnimated": false, "HasShoulderContact": false, - "SightingRange": 200, + "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, "CustomAimPlane": "", @@ -210493,7 +211785,7 @@ "ScopesCount": 1, "AimSensitivity": [ [ - 0.65 + 0.2 ] ], "ModesCount": [ @@ -210506,36 +211798,45 @@ ], "CalibrationDistances": [ [ - 50 + 50, + 100, + 150, + 200 ] - ] + ], + "Intensity": 2.27, + "Mask": "Anvis", + "MaskSize": 0.99, + "NoiseIntensity": 0.02, + "NoiseScale": 5, + "Color": { + "r": 83, + "g": 255, + "b": 69, + "a": 254 + }, + "DiffuseIntensity": 0.023, + "HasHinge": true }, - "_proto": "55d4af3a4bdc2d972f8b456f" + "_proto": "557ff21e4bdc2d89578b4586" }, - "55818ae44bdc2dde698b456c": { - "_id": "55818ae44bdc2dde698b456c", - "_name": "OpticScope", - "_parent": "5448fe7a4bdc2d6f028b456b", - "_type": "Node", - "_props": {} - }, - "5c079ed60db834001a66b372": { - "_id": "5c079ed60db834001a66b372", - "_name": "tactical_tt_dlp_tactical_precision_laser_sight", + "6272379924e29f06af4d5ecb": { + "_id": "6272379924e29f06af4d5ecb", + "_name": "tactical_all_olight_baldr_pro_tan", "_parent": "55818b164bdc2ddc698b456c", "_type": "Item", "_props": { - "Name": "tactical_tt_dlp_tactical_precision_laser_sight", - "ShortName": "tactical_tt_dlp_tactical_precision_laser_sight", - "Description": "tactical_tt_dlp_tactical_precision_laser_sight", - "Weight": 0.086, + "Name": "Тактический фонарь X400", + "ShortName": "X400", + "Description": "X400", + "Weight": 0.129, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "mod", "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_tt_dlp_tactical_precision_laser_sight.bundle", + "path": "assets/content/items/mods/tactical/tactical_all_olight_baldr_pro_tan.bundle", "rcid": "" }, "UsePrefab": { @@ -210591,7 +211892,7 @@ "Ergonomics": -1, "Velocity": 0, "RaidModdable": true, - "ToolModdable": true, + "ToolModdable": false, "BlocksFolding": false, "BlocksCollapsible": false, "IsAnimated": false, @@ -210599,16 +211900,30 @@ "SightingRange": 0, "DoubleActionAccuracyPenaltyMult": 1, "UniqueAnimationModID": 0, - "ModesCount": 1 + "ModesCount": 3 }, - "_proto": "544909bb4bdc2d6f028b4577" + "_proto": "560d657b4bdc2da74d8b4572" }, - "55818af64bdc2d5b648b4570": { - "_id": "55818af64bdc2d5b648b4570", - "_name": "Foregrip", + "5a74651486f7744e73386dd1": { + "_id": "5a74651486f7744e73386dd1", + "_name": "AuxiliaryMod", "_parent": "550aa4154bdc2dd8348b456b", "_type": "Node", - "_props": {} + "_props": { + "ShiftsAimCamera": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "CoolFactor": 1 + } + }, + "55818b084bdc2d5b648b4571": { + "_id": "55818b084bdc2d5b648b4571", + "_name": "Flashlight", + "_parent": "550aa4154bdc2dd8348b456b", + "_type": "Node", + "_props": { + "ModesCount": 0 + } }, "60228a850ddce744014caf69": { "_id": "60228a850ddce744014caf69", @@ -210714,6 +212029,2579 @@ }, "_proto": "55d4af3a4bdc2d972f8b456f" }, + "5b0bc22d5acfc47a8607f085": { + "_id": "5b0bc22d5acfc47a8607f085", + "_name": "sight_rear_sa58_ds_arms_metric_holand_type_rear_sight", + "_parent": "55818ac54bdc2d5b648b456e", + "_type": "Item", + "_props": { + "Name": "sight_rear_sa58_ds_arms_metric_holand_type_rear_sight", + "ShortName": "sight_rear_sa58_ds_arms_metric_holand_type_rear_sight", + "Description": "sight_rear_sa58_ds_arms_metric_holand_type_rear_sight", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/sights rear/sight_rear_sa58_ds_arms_metric_holand_type_rear_sight.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 100 + ] + ] + }, + "_proto": "55d5f46a4bdc2d1b198b4567" + }, + "5cf638cbd7f00c06595bc936": { + "_id": "5cf638cbd7f00c06595bc936", + "_name": "scope_dovetail_npz_1p29_4x", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "scope_dovetail_belomo_pso_1m2-1_4×24", + "ShortName": "scope_dovetail_belomo_pso_1m2-1_4×24", + "Description": "scope_dovetail_belomo_pso_1m2-1_4×24", + "Weight": 0.795, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_dovetail_npz_1p29_4x.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5827272a24597748c74bdeea", + "58272b392459774b4c7b3ccd", + "5649af884bdc2d1b2b8b4589", + "59985a6c86f77414ec448d17" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5cf638cbd7f00c06595bc938", + "_parent": "5cf638cbd7f00c06595bc936", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cf639aad7f00c065703d455" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -6, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": true, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 600, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.175 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 4 + ] + ], + "CalibrationDistances": [ + [ + 50, + 75, + 100, + 125, + 150, + 200, + 250, + 300 + ] + ] + }, + "_proto": "544a3d0a4bdc2d1b388b4567" + }, + "57235b6f24597759bf5a30f1": { + "_id": "57235b6f24597759bf5a30f1", + "_name": "nvg_pvs_14", + "_parent": "5a2c3a9486f774688b05e574", + "_type": "Item", + "_props": { + "Name": "ПНВ", + "ShortName": "ПНВ", + "Description": "ПНВ", + "Weight": 0.65, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/customizable/pvs_14/nvg_pvs_14.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [ + "Bear", + "Usec", + "Savage" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.2 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ], + "Intensity": 2.27, + "Mask": "OldMonocular", + "MaskSize": 1.2, + "NoiseIntensity": 0.02, + "NoiseScale": 5, + "Color": { + "r": 183, + "g": 255, + "b": 86, + "a": 254 + }, + "DiffuseIntensity": 0.022, + "HasHinge": true + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, + "5a1eaa87fcdbcb001865f75e": { + "_id": "5a1eaa87fcdbcb001865f75e", + "_name": "scope_base_trijicon_reap-ir", + "_parent": "55818aeb4bdc2ddc698b456a", + "_type": "Item", + "_props": { + "Name": "scope_base_trijicon_reap-ir", + "ShortName": "scope_base_trijicon_reap-ir", + "Description": "scope_base_trijicon_reap-ir", + "Weight": 0.58, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_base_trijicon_reap-ir.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical", + "_id": "5a1eac63fcdbcb001a3b0108", + "_parent": "5a1eaa87fcdbcb001865f75e", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a1eacb3fcdbcb09800872be" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -13, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "hybrid", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.28, + 0.28 + ] + ], + "ModesCount": [ + 2 + ], + "Zooms": [ + [ + 2.5, + 2.5 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + } + }, + "6478641c19d732620e045e17": { + "_id": "6478641c19d732620e045e17", + "_name": "scope_all_sig_sauer_echo1_thermal_reflex_sight_1_2x_30hz", + "_parent": "55818aeb4bdc2ddc698b456a", + "_type": "Item", + "_props": { + "Name": "scope_base_trijicon_reap-ir", + "ShortName": "scope_base_trijicon_reap-ir", + "Description": "scope_base_trijicon_reap-ir", + "Weight": 0.417, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_sig_sauer_echo1_thermal_reflex_sight_1_2x_30hz.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c82343a2e221644f31c0611", + "5c82342f2e221644f31c060e", + "5d0a29ead7ad1a0026013f27", + "5ae30bad5acfc400185c2dc4" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -10, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "hybrid", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65, + 0.5, + 0.65, + 0.5 + ] + ], + "ModesCount": [ + 4 + ], + "Zooms": [ + [ + 1, + 2, + 1, + 2 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "5a1eaa87fcdbcb001865f75e" + }, + "560d657b4bdc2da74d8b4572": { + "_id": "560d657b4bdc2da74d8b4572", + "_name": "tactical_all_zenit_2p_kleh_vis_laser", + "_parent": "55818b164bdc2ddc698b456c", + "_type": "Item", + "_props": { + "Name": "tactical_all_zenit_2p_kleh_vis_laser", + "ShortName": "tactical_all_zenit_2p_kleh_vis_laser", + "Description": "tactical_all_zenit_2p_kleh_vis_laser", + "Weight": 0.17, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/tactical/tactical_all_zenit_2p_kleh_vis_laser.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ModesCount": 3 + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, + "5448fe7a4bdc2d6f028b456b": { + "_id": "5448fe7a4bdc2d6f028b456b", + "_name": "Sights", + "_parent": "550aa4154bdc2dd8348b456b", + "_type": "Node", + "_props": { + "CustomAimPlane": "", + "sightModType": "iron", + "SightingRange": 0, + "ScopesCount": 1, + "AimSensitivity": [ + [ + 1 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + } + }, + "5dfe6104585a0c3e995c7b82": { + "_id": "5dfe6104585a0c3e995c7b82", + "_name": "scope_all_ncstar_advance_dual_optic_3_9x_42", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "scope_all_ncstar_advance_dual_optic_3_9x_42", + "ShortName": "scope_all_ncstar_advance_dual_optic_3_9x_42", + "Description": "scope_all_ncstar_advance_dual_optic_3_9x_42", + "Weight": 0.595, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_ncstar_advance_dual_optic_3_9x_42.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5894a73486f77426d259076c", + "5894a81786f77427140b8347" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 1000, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "hybrid", + "ScopesCount": 2, + "AimSensitivity": [ + [ + 0.2, + 0.0667 + ], + [ + 0.8 + ] + ], + "ModesCount": [ + 2, + 1 + ], + "Zooms": [ + [ + 3, + 9 + ], + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ], + [ + 25, + 50, + 100 + ] + ] + }, + "_proto": "56ea70acd2720b844b8b4594" + }, + "5b2388675acfc4771e1be0be": { + "_id": "5b2388675acfc4771e1be0be", + "_name": "scope_30mm_burris_fullfield_tac30_1_4x24", + "_parent": "55818ae44bdc2dde698b456c", + "_type": "Item", + "_props": { + "Name": "scope_30mm_burris_fullfield_tac30_1_4x24", + "ShortName": "scope_30mm_burris_fullfield_tac30_1_4x24", + "Description": "scope_30mm_burris_fullfield_tac30_1_4x24", + "Weight": 0.48, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_30mm_burris_fullfield_tac30_1_4x24.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "5c7d55f52e221644f31bff6a", + "64785e7c19d732620e045e15", + "6165ac8c290d254f5e6b2f6c", + "6477772ea8a38bb2050ed4db" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 800, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.65, + 0.1875 + ] + ], + "ModesCount": [ + 2 + ], + "Zooms": [ + [ + 1, + 4 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200, + 250, + 300 + ] + ] + }, + "_proto": "56ea70acd2720b844b8b4594" + }, + "55818ae44bdc2dde698b456c": { + "_id": "55818ae44bdc2dde698b456c", + "_name": "OpticScope", + "_parent": "5448fe7a4bdc2d6f028b456b", + "_type": "Node", + "_props": {} + }, + "5c066e3a0db834001b7353f0": { + "_id": "5c066e3a0db834001b7353f0", + "_name": "nvg_armasight_n-15", + "_parent": "5a2c3a9486f774688b05e574", + "_type": "Item", + "_props": { + "Name": "nvg_armasight_n-15", + "ShortName": "nvg_armasight_n-15", + "Description": "nvg_armasight_n-15", + "Weight": 0.755, + "BackgroundColor": "default", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/customizable/nvg_armasight_n-15/nvg_armasight_n-15.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a16b672fcdbcb001912fa83", + "5a16b7e1fcdbcb00165aa6c9" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": 0, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "iron", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.2 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ], + "Intensity": 1.8, + "Mask": "Binocular", + "MaskSize": 0.95, + "NoiseIntensity": 0.04, + "NoiseScale": 2, + "Color": { + "r": 0, + "g": 255, + "b": 243, + "a": 254 + }, + "DiffuseIntensity": 0.021, + "HasHinge": true + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, + "606f2696f2cb2e02a42aceb1": { + "_id": "606f2696f2cb2e02a42aceb1", + "_name": "tactical_mp155_kalashnikov_ultima_camera", + "_parent": "55818aeb4bdc2ddc698b456a", + "_type": "Item", + "_props": { + "Name": "Тактический блок AN/PEQ-15", + "ShortName": "AN/PEQ-15", + "Description": "ATPIAL (Advanced Target Pointer Illuminator Aiming Laser) AN/PEQ-15 производства L3 Insight Technologies. Тактический блок. Совмещающий в себе лазерные целеуказатели в видимом и невидимом (ИК) диапазоне а также инфракрасный осветитель.", + "Weight": 0.21, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/tactical/tactical_mp155_kalashnikov_ultima_camera_thermal.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -3, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 300, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "ak_thermal", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.5 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100 + ] + ] + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, + "57fd23e32459772d0805bcf1": { + "_id": "57fd23e32459772d0805bcf1", + "_name": "tactical_all_holosun_ls321", + "_parent": "55818b164bdc2ddc698b456c", + "_type": "Item", + "_props": { + "Name": "tactical_all_holosun_ls321", + "ShortName": "tactical_all_holosun_ls321", + "Description": "tactical_all_holosun_ls321", + "Weight": 0.19, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/tactical/tactical_all_holosun_ls321.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": false, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ModesCount": 4 + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, + "5d10b49bd7ad1a1a560708b0": { + "_id": "5d10b49bd7ad1a1a560708b0", + "_name": "tactical_all_insight_anpeq2", + "_parent": "55818b164bdc2ddc698b456c", + "_type": "Item", + "_props": { + "Name": "Тактический блок AN/PEQ-15", + "ShortName": "AN/PEQ-15", + "Description": "ATPIAL (Advanced Target Pointer Illuminator Aiming Laser) AN/PEQ-15 производства L3 Insight Technologies. Тактический блок. Совмещающий в себе лазерные целеуказатели в видимом и невидимом (ИК) диапазоне а также инфракрасный осветитель.", + "Weight": 0.21, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/tactical/tactical_all_insight_anpeq2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -2, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ModesCount": 2 + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, + "5c079ed60db834001a66b372": { + "_id": "5c079ed60db834001a66b372", + "_name": "tactical_tt_dlp_tactical_precision_laser_sight", + "_parent": "55818b164bdc2ddc698b456c", + "_type": "Item", + "_props": { + "Name": "tactical_tt_dlp_tactical_precision_laser_sight", + "ShortName": "tactical_tt_dlp_tactical_precision_laser_sight", + "Description": "tactical_tt_dlp_tactical_precision_laser_sight", + "Weight": 0.086, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/tactical/tactical_tt_dlp_tactical_precision_laser_sight.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 0, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "ModesCount": 1 + }, + "_proto": "544909bb4bdc2d6f028b4577" + }, + "55818b164bdc2ddc698b456c": { + "_id": "55818b164bdc2ddc698b456c", + "_name": "TacticalCombo", + "_parent": "550aa4154bdc2dd8348b456b", + "_type": "Node", + "_props": { + "ModesCount": 0 + } + }, + "55818af64bdc2d5b648b4570": { + "_id": "55818af64bdc2d5b648b4570", + "_name": "Foregrip", + "_parent": "550aa4154bdc2dd8348b456b", + "_type": "Node", + "_props": {} + }, + "574d967124597745970e7c94": { + "_id": "574d967124597745970e7c94", + "_name": "weapon_toz_sks_762x39", + "_parent": "5447b5fc4bdc2d87278b4567", + "_type": "Item", + "_props": { + "Name": "Item", + "ShortName": "Item", + "Description": "Item", + "Weight": 0.82, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_dmr", + "Prefab": { + "path": "assets/content/weapons/sks/weapon_toz_sks_762x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 77, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "574dae34245977459a2f3f5c", + "_parent": "574d967124597745970e7c94", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d0236dad7ad1a0940739d29", + "587e0531245977466077a0f7", + "5afd7ded5acfc40017541f5e", + "574dad8024597745964bf05c", + "653ecef836fae5a82f02b869" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "574db2a824597773a448aad1", + "_parent": "574d967124597745970e7c94", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "634eff66517ccc8a960fc735", + "634f02331f9f536910079b51" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "587df681245977373c4f112e", + "_parent": "574d967124597745970e7c94", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "61695095d92c473c7702147a", + "5c5970672e221602b21d7855", + "587df583245977373c4f1129", + "587df3a12459772c28142567" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_reciever", + "_id": "593d49e086f7745e5838a14d", + "_parent": "574d967124597745970e7c94", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "634f06262e5def262d0b30ca", + "634f05ca517ccc8a960fc748", + "6415c694da439c6a97048b56" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultCarbine", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x39", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 3550, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": false, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 40, + "Ergonomics": 40, + "Velocity": 0, + "bEffDist": 400, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "587df3a12459772c28142567", + "defAmmo": "5656d7c34bdc2d9d198b4587", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 10, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "574d982f24597745a21eb3e5", + "_parent": "574d967124597745970e7c94", + "_props": { + "filters": [ + { + "Filter": [ + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af5a8532cf95ee0a0dbd", + "64b7af434b75259c590fa893", + "64b7af734b75259c590fa895" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "InternalMagazine", + "CenterOfImpact": 0.05, + "AimPlane": 0.25, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.5, + "RecoilDampingHandRotation": 0.86, + "RecoilCamera": 0.0864, + "RecoilStableIndexShot": 3, + "RecoilForceBack": 360, + "RecoilForceUp": 155, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.45, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.3, + "z": 0.03 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.25, + "z": -0.03 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": true, + "MustBoltBeOpennedForInternalReload": true, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.2024, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.984, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.012, + "HeatFactorByShot": 1.59, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + } + }, + "609bab8b455afd752b2e6138": { + "_id": "609bab8b455afd752b2e6138", + "_name": "scope_all_torrey_pines_logic_t12_w_30hz", + "_parent": "55818aeb4bdc2ddc698b456a", + "_type": "Item", + "_props": { + "Name": "scope_all_torrey_pines_logic_t12_w_30hz", + "ShortName": "scope_all_torrey_pines_logic_t12_w_30hz", + "Description": "scope_all_torrey_pines_logic_t12_w_30hz", + "Weight": 0.063, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_all_torrey_pines_logic_t12_w_30hz.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -1, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "default", + "sightModType": "hybrid", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.7 + ] + ], + "ModesCount": [ + 1 + ], + "Zooms": [ + [ + 1 + ] + ], + "CalibrationDistances": [ + [ + 25, + 50 + ] + ] + }, + "_proto": "5a1eaa87fcdbcb001865f75e" + }, + "63fc44e2429a8a166c7f61e6": { + "_id": "63fc44e2429a8a166c7f61e6", + "_name": "scope_base_armasight_zeus_pro_640_2_16x50_30hz", + "_parent": "55818aeb4bdc2ddc698b456a", + "_type": "Item", + "_props": { + "Name": "scope_base_armasight_vulcan_gen3_bravo_mg_3,5x", + "ShortName": "scope_base_armasight_vulcan_gen3_bravo_mg_3,5x", + "Description": "scope_base_armasight_vulcan_gen3_bravo_mg_3,5x", + "Weight": 0.9, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "mod", + "Prefab": { + "path": "assets/content/items/mods/scopes/scope_base_armasight_zeus_pro_640_2_16x50_30hz.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_tactical_001", + "_id": "63fc44e2429a8a166c7f61e7", + "_parent": "63fc44e2429a8a166c7f61e6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "63fc44e2429a8a166c7f61e8", + "_parent": "63fc44e2429a8a166c7f61e6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "63fc4533b10b17385349b565" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "Durability": 100, + "Accuracy": 0, + "Recoil": 0, + "Loudness": 0, + "EffectiveDistance": 0, + "Ergonomics": -18, + "Velocity": 0, + "RaidModdable": true, + "ToolModdable": true, + "BlocksFolding": false, + "BlocksCollapsible": false, + "IsAnimated": false, + "HasShoulderContact": false, + "SightingRange": 500, + "DoubleActionAccuracyPenaltyMult": 1, + "UniqueAnimationModID": 0, + "CustomAimPlane": "", + "sightModType": "optic", + "ScopesCount": 1, + "AimSensitivity": [ + [ + 0.3111, + 0.0778, + 0.3111, + 0.0778 + ] + ], + "ModesCount": [ + 4 + ], + "Zooms": [ + [ + 2, + 8, + 2, + 8 + ] + ], + "CalibrationDistances": [ + [ + 50, + 100, + 150, + 200 + ] + ] + }, + "_proto": "5a1eaa87fcdbcb001865f75e" + }, + "550aa4154bdc2dd8348b456b": { + "_id": "550aa4154bdc2dd8348b456b", + "_name": "FunctionalMod", + "_parent": "5448fe124bdc2da5018b4567", + "_type": "Node", + "_props": {} + }, + "5ac66d015acfc400180ae6e4": { + "_id": "5ac66d015acfc400180ae6e4", + "_name": "weapon_izhmash_ak102_556x45", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_ak101_556x45", + "ShortName": "weapon_izhmash_ak101_556x45", + "Description": "weapon_izhmash_ak101_556x45", + "Weight": 1.992, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/ak100/weapon_izhmash_ak102_556x45_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 220, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_gas_block", + "_id": "5ac66d015acfc400180ae6e7", + "_parent": "5ac66d015acfc400180ae6e4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59c6633186f7740cf0493bb9", + "59d64ec286f774171d1e0a42", + "59e649f986f77411d949b246", + "59ccfdba86f7747f2109a587" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_launcher", + "_id": "5ac66d015acfc400180ae6e8", + "_parent": "5ac66d015acfc400180ae6e4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5ac66d015acfc400180ae6e9", + "_parent": "5ac66d015acfc400180ae6e4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac72e615acfc43f67248aa0", + "5ac72e725acfc400180ae701", + "5f633f791b231926f2329f13", + "5cc9a96cd7f00c011c04e04a", + "5943ee5a86f77413872d25ec", + "5e21ca18e4d47f0da15e77dd", + "59bffc1f86f77435b128b872", + "5a9fbb84a2750c00137fa685" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "5ac66d015acfc400180ae6ea", + "_parent": "5ac66d015acfc400180ae6e4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "623c3be0484b5003161840dc", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "5ac66d015acfc400180ae6eb", + "_parent": "5ac66d015acfc400180ae6e4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649af094bdc2df8348b4586", + "5ac50da15acfc4001718d287", + "5d2c76ed48f03532f2136169", + "5d2c770c48f0354b4a07c100", + "5d2c772c48f0355d95672c25", + "5649af884bdc2d1b2b8b4589", + "628a665a86cbd9750d2ff5e5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5ac66d015acfc400180ae6ec", + "_parent": "5ac66d015acfc400180ae6e4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac733a45acfc400192630e2", + "5649b0544bdc2d1b2b8b458a", + "5ac72e475acfc400180ae6fe", + "5649d9a14bdc2d79388b4580", + "628a7b23b0f75035732dd565", + "5bf3f59f0db834001a6fa060", + "649ec2cec93611967b03495e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5ac66d015acfc400180ae6ed", + "_parent": "5ac66d015acfc400180ae6e4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac50c185acfc400163398d4", + "5cf50fc5d7f00c056c53f83c", + "5ac78eaf5acfc4001926317a", + "5beec8b20db834001961942a", + "6386300124a1dc425c00577a", + "649ec87d8007560a9001ab36" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5ac66d015acfc400180ae6ee", + "_parent": "5ac66d015acfc400180ae6e4", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5c0548ae0db834001966a3c2", + "5ac66c5d5acfc4001718d314" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_mount_000", + "_id": "5ac66d015acfc400180ae6ef", + "_parent": "5ac66d015acfc400180ae6e4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "638db77630c4240f9e06f8b6", + "63d114019e35b334d82302f7", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "5ac66d015acfc400180ae6f0", + "_parent": "5ac66d015acfc400180ae6e4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber556x45NATO", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 5500, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 600, + "Ergonomics": 38, + "Velocity": 1.8, + "bEffDist": 650, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5ac66c5d5acfc4001718d314", + "defAmmo": "59e6920f86f77411d82aa167", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5ac66d015acfc400180ae6e6", + "_parent": "5ac66d015acfc400180ae6e4", + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.056, + "AimPlane": 0.19, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.7, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.057, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 298, + "RecoilForceUp": 109, + "RecolDispersion": 7, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 100, + "RecoilStableAngleIncreaseStep": 2.7, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1.0295, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.0716, + "HeatFactorByShot": 1.415, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, "5c82343a2e221644f31c0611": { "_id": "5c82343a2e221644f31c0611", "_name": "scope_dovetail_belomo_pso_1m2_4x24", @@ -211446,23 +215334,23 @@ }, "_proto": "544909bb4bdc2d6f028b4577" }, - "5bf3e0490db83400196199af": { - "_id": "5bf3e0490db83400196199af", - "_name": "weapon_izhmash_aks74_545x39", + "5bb2475ed4351e00853264e3": { + "_id": "5bb2475ed4351e00853264e3", + "_name": "weapon_hk_416a5_556x45", "_parent": "5447b5f14bdc2d61278b4567", "_type": "Item", "_props": { - "Name": "Автомат Калашникова АК-74Н 5.45x39", - "ShortName": "АК-74N 5.45x39", - "Description": "Автомат Калашникова калибра 5,45 мм, разработанный в 1970 году конструктором М. Т. Калашниковым. Дальнейшее развитие АКМ в связи с переходом Вооруженных Сил на новый боеприпас 5.45x39. Основное отличие от штатного АК-74 это наличие крепления для оптических и ночных прицелов.", - "Weight": 1.992, + "Name": "weapon_hk_416a5_556x45", + "ShortName": "weapon_hk_416a5_556x45", + "Description": "weapon_hk_416a5_556x45", + "Weight": 0.52, "BackgroundColor": "black", - "Width": 4, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "weap_ar", "Prefab": { - "path": "assets/content/weapons/aks74/weapon_izhmash_aks74_545x39_container.bundle", + "path": "assets/content/weapons/hk416/weapon_hk_416a5_556x45_container.bundle", "rcid": "" }, "UsePrefab": { @@ -211479,10 +215367,1133 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 20, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 185, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "5bb2475ed4351e00853264e5", + "_parent": "5bb2475ed4351e00853264e3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "602e71bd53a60014f9705bfa", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5cc9bcaed7f00c011c04e179", + "5bb20e18d4351e00320205d5", + "5bb20e0ed4351e3bac1212dc", + "6193dcd0f8ee7e52e4210a28", + "5d025cc1d7ad1a53845279ef", + "5c6d7b3d2e221600114c9b7d", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "55802f5d4bdc2dac148b458f", + "5d15cf3bd7ad1a67e71518b2", + "59db3a1d86f77429e05b4e92", + "5fbcbd6c187fea44d52eda14", + "59db3acc86f7742a2c4ab912", + "59db3b0886f77429d72fb895", + "615d8faecabb9b7ad90f4d5d", + "5b07db875acfc40dc528a5f6", + "63f5feead259b42f0b4d6d0f", + "652911675ae2ae97b80fdf3c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5bb2475ed4351e00853264e6", + "_parent": "5bb2475ed4351e00853264e3", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "55d4887d4bdc2d962f8b4570", + "61840bedd92c473c77021635", + "61840d85568c120fdd2962a5", + "5c05413a0db834001c390617", + "5c6d450c2e221600114c997d", + "5c6d42cb2e2216000e69d7d1", + "59c1383d86f774290a37e0ca", + "5aaa5e60e5b5b000140293d6", + "5448c1d04bdc2dff2f8b4569", + "5aaa5dfee5b5b000140293d3", + "5d1340b3d7ad1a0b52682ed7", + "544a378f4bdc2d30388b4567", + "5d1340bdd7ad1a0e8d245aab", + "55802d5f4bdc2dac148b458e", + "5d1340cad7ad1a0b0b249869", + "6241c2c2117ad530666a5108", + "5c6592372e221600133e47d7", + "544a37c44bdc2d25388b4567", + "5c6d46132e221601da357d56" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_reciever", + "_id": "5bb2475ed4351e00853264e7", + "_parent": "5bb2475ed4351e00853264e3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bb20d53d4351e4502010a69" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5bb2475ed4351e00853264e8", + "_parent": "5bb2475ed4351e00853264e3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b0800175acfc400153aebd4", + "5bb20e58d4351e00320205d7", + "5947e98b86f774778f1448bc", + "5947eab886f77475961d96c5", + "591aef7986f774139d495f03", + "591af10186f774139d495f0e", + "627254cc9c563e6e442c398f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "5bb2475ed4351e00853264e9", + "_parent": "5bb2475ed4351e00853264e3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0faf68d174af02a96260b8", + "56ea7165d2720b6e518b4583", + "55d44fd14bdc2d962f8b456e", + "5ea16d4d5aad6446a939753d", + "5bb20dbcd4351e44f824c04e", + "6033749e88382f4fab3fd2c5", + "5b2240bf5acfc40dc528af69", + "5d44334ba4b9362b346d1948", + "5f633ff5c444ce7e3c30a006", + "651bf5617b3b552ef6712cb7" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber556x45NATO", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 5500, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 850, + "Ergonomics": 51, + "Velocity": 0, + "bEffDist": 500, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "55d4887d4bdc2d962f8b4570", + "defAmmo": "59e68f6f86f7746c9f75e846", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5bb2475ed4351e00853264ea", + "_parent": "5bb2475ed4351e00853264e3", + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0.16, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.5, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.065, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 358, + "RecoilForceUp": 125, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.4, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.24, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.03, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1.16, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.025, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "6165ac306ef05c2ce828ef74": { + "_id": "6165ac306ef05c2ce828ef74", + "_name": "weapon_fn_mk17_762x51_fde", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "Штурмовая винтовка Colt M4A1 5.56x45", + "ShortName": "M4A1 5.56x45", + "Description": "Colt M4A1- штурмовая винтовка (карабин) созданная в США на базе платформы AR-15 под патрон 5.56x45 NATO. Планировалась к вооружению экипажей боевых машин и расчетов техники, которым было необходимо иметь оружие меньших габаритов чем штатное вооружение но использующее стандартный боеприпас. Однако вскоре US SOCOM (Командование Сил Специальных Операций США) приняло на вооружение M4A1 для всех входящих в его состав подразделений. Затем последовало полное принятие M4A1 на вооружение в армии и морской пехоте США.", + "Weight": 0.85, + "BackgroundColor": "black", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/scar/weapon_fn_mk17_762x51_fde_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 230, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "6165ac306ef05c2ce828ef76", + "_parent": "6165ac306ef05c2ce828ef74", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "602e71bd53a60014f9705bfa", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5cc9bcaed7f00c011c04e179", + "5bb20e18d4351e00320205d5", + "5bb20e0ed4351e3bac1212dc", + "6193dcd0f8ee7e52e4210a28", + "5d025cc1d7ad1a53845279ef", + "5c6d7b3d2e221600114c9b7d", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "55802f5d4bdc2dac148b458f", + "5d15cf3bd7ad1a67e71518b2", + "59db3a1d86f77429e05b4e92", + "5fbcbd6c187fea44d52eda14", + "59db3acc86f7742a2c4ab912", + "59db3b0886f77429d72fb895", + "615d8faecabb9b7ad90f4d5d", + "5b07db875acfc40dc528a5f6", + "63f5feead259b42f0b4d6d0f", + "652911675ae2ae97b80fdf3c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "6165ac306ef05c2ce828ef77", + "_parent": "6165ac306ef05c2ce828ef74", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "618168dc8004cc50514c34fc", + "6183d53f1cb55961fa0fdcda" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_reciever", + "_id": "6165ac306ef05c2ce828ef78", + "_parent": "6165ac306ef05c2ce828ef74", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6165adcdd3a39d50044c120f", + "6165aeedfaa1272e431521e3" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "6165ac306ef05c2ce828ef79", + "_parent": "6165ac306ef05c2ce828ef74", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61816734d8e3106d9806c1f3", + "61825d06d92c473c770215de" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "61816ce96c780c1e710c9b07", + "_parent": "6165ac306ef05c2ce828ef74", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6181688c6c780c1e710c9b04" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x51", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 5500, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 600, + "Ergonomics": 45, + "Velocity": 0, + "bEffDist": 500, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "618168dc8004cc50514c34fc", + "defAmmo": "5e023e53d4353e3302577c4c", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "6165ac306ef05c2ce828ef7a", + "_parent": "6165ac306ef05c2ce828ef74", + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0.16, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.5, + "RecoilDampingHandRotation": 0.87, + "RecoilCamera": 0.071, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 412, + "RecoilForceUp": 164, + "RecolDispersion": 12, + "RecoilPosZMult": 0.6, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.24, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 4, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.03, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.183425, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1.46, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.025, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "6183afd850224f204c1da514": { + "_id": "6183afd850224f204c1da514", + "_name": "weapon_fn_mk17_762x51", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "Штурмовая винтовка Colt M4A1 5.56x45", + "ShortName": "M4A1 5.56x45", + "Description": "Colt M4A1- штурмовая винтовка (карабин) созданная в США на базе платформы AR-15 под патрон 5.56x45 NATO. Планировалась к вооружению экипажей боевых машин и расчетов техники, которым было необходимо иметь оружие меньших габаритов чем штатное вооружение но использующее стандартный боеприпас. Однако вскоре US SOCOM (Командование Сил Специальных Операций США) приняло на вооружение M4A1 для всех входящих в его состав подразделений. Затем последовало полное принятие M4A1 на вооружение в армии и морской пехоте США.", + "Weight": 0.85, + "BackgroundColor": "black", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/scar/weapon_fn_mk17_762x51_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 230, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "6183afd850224f204c1da516", + "_parent": "6183afd850224f204c1da514", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "602e71bd53a60014f9705bfa", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5cc9bcaed7f00c011c04e179", + "5bb20e18d4351e00320205d5", + "5bb20e0ed4351e3bac1212dc", + "6193dcd0f8ee7e52e4210a28", + "5d025cc1d7ad1a53845279ef", + "5c6d7b3d2e221600114c9b7d", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "55802f5d4bdc2dac148b458f", + "5d15cf3bd7ad1a67e71518b2", + "59db3a1d86f77429e05b4e92", + "5fbcbd6c187fea44d52eda14", + "59db3acc86f7742a2c4ab912", + "59db3b0886f77429d72fb895", + "615d8faecabb9b7ad90f4d5d", + "5b07db875acfc40dc528a5f6", + "63f5feead259b42f0b4d6d0f", + "652911675ae2ae97b80fdf3c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "6183afd850224f204c1da517", + "_parent": "6183afd850224f204c1da514", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "618168dc8004cc50514c34fc", + "6183d53f1cb55961fa0fdcda" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_reciever", + "_id": "6183afd850224f204c1da518", + "_parent": "6183afd850224f204c1da514", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6165adcdd3a39d50044c120f", + "6165aeedfaa1272e431521e3" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "6183afd850224f204c1da519", + "_parent": "6183afd850224f204c1da514", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61816734d8e3106d9806c1f3", + "61825d06d92c473c770215de" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "6183afd850224f204c1da51a", + "_parent": "6183afd850224f204c1da514", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6181688c6c780c1e710c9b04" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x51", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 5500, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 600, + "Ergonomics": 45, + "Velocity": 0, + "bEffDist": 500, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "618168dc8004cc50514c34fc", + "defAmmo": "5e023e53d4353e3302577c4c", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "6183afd850224f204c1da51b", + "_parent": "6183afd850224f204c1da514", + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0.16, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.5, + "RecoilDampingHandRotation": 0.87, + "RecoilCamera": 0.071, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 412, + "RecoilForceUp": 164, + "RecolDispersion": 12, + "RecoilPosZMult": 0.6, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.24, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 4, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.03, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.183425, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1.46, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.025, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5ac66d725acfc43b321d4b60": { + "_id": "5ac66d725acfc43b321d4b60", + "_name": "weapon_izhmash_ak104_762x39", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_ak103_762x39", + "ShortName": "weapon_izhmash_ak103_762x39", + "Description": "weapon_izhmash_ak103_762x39", + "Weight": 1.992, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/ak100/weapon_izhmash_ak104_762x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 118, + "RepairCost": 200, "RepairSpeed": 5, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -211510,21 +216521,17 @@ "Slots": [ { "_name": "mod_gas_block", - "_id": "5bf3e0490db83400196199b2", - "_parent": "5bf3e0490db83400196199af", + "_id": "5ac66d725acfc43b321d4b63", + "_parent": "5ac66d725acfc43b321d4b60", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a01ad4786f77450561fda02", "59c6633186f7740cf0493bb9", "59d64ec286f774171d1e0a42", "59e649f986f77411d949b246", - "5b237e425acfc4771e1be0b6", - "59ccfdba86f7747f2109a587", - "5cf656f2d7f00c06585fb6eb", - "5d4aab30a4b9365435358c55" + "59ccfdba86f7747f2109a587" ] } ] @@ -211535,16 +216542,13 @@ }, { "_name": "mod_launcher", - "_id": "5bf3e0490db83400196199b3", - "_parent": "5bf3e0490db83400196199af", + "_id": "5ac66d725acfc43b321d4b64", + "_parent": "5ac66d725acfc43b321d4b60", "_props": { "filters": [ { "Shift": 0, - "Filter": [ - "5648b62b4bdc2d9d488b4585", - "62e7e7bbe6da9612f743f1e0" - ] + "Filter": [] } ] }, @@ -211554,26 +216558,24 @@ }, { "_name": "mod_muzzle", - "_id": "5bf3e0490db83400196199b4", - "_parent": "5bf3e0490db83400196199af", + "_id": "5ac66d725acfc43b321d4b65", + "_parent": "5ac66d725acfc43b321d4b60", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5ac72e945acfc43f3b691116", - "5ac7655e5acfc40016339a19", - "5649aa744bdc2ded0b8b457e", + "5ac72e7d5acfc40016339a02", + "5ac72e895acfc43b321d4bd5", "5f633f791b231926f2329f13", - "5943eeeb86f77412d6384f6b", - "5cc9a96cd7f00c011c04e04a", - "615d8f5dd92c473c770212ef", + "5a9ea27ca2750c00137fa672", + "5cc9ad73d7f00c000e2579d4", "5649ab884bdc2ded0b8b457f", - "57dc324a24597759501edc20", "59bffc1f86f77435b128b872", - "593d493f86f7745e6b2ceb22", - "564caa3d4bdc2d17108b458e", - "57ffb0e42459777d047111c5" + "5e208b9842457a4a7a33d074", + "5a0d63621526d8dba31fe3bf", + "59fb257e86f7742981561852", + "5a9fbacda2750c00141e080f" ] } ] @@ -211584,8 +216586,8 @@ }, { "_name": "mod_pistol_grip", - "_id": "5bf3e0490db83400196199b5", - "_parent": "5bf3e0490db83400196199af", + "_id": "5ac66d725acfc43b321d4b66", + "_parent": "5ac66d725acfc43b321d4b60", "_props": { "filters": [ { @@ -211626,8 +216628,8 @@ }, { "_name": "mod_reciever", - "_id": "5bf3e0490db83400196199b6", - "_parent": "5bf3e0490db83400196199af", + "_id": "5ac66d725acfc43b321d4b67", + "_parent": "5ac66d725acfc43b321d4b60", "_props": { "filters": [ { @@ -211650,8 +216652,8 @@ }, { "_name": "mod_sight_rear", - "_id": "5bf3e0490db83400196199b7", - "_parent": "5bf3e0490db83400196199af", + "_id": "5ac66d725acfc43b321d4b68", + "_parent": "5ac66d725acfc43b321d4b60", "_props": { "filters": [ { @@ -211674,8 +216676,711 @@ }, { "_name": "mod_stock", - "_id": "5bf3e0490db83400196199b8", - "_parent": "5bf3e0490db83400196199af", + "_id": "5ac66d725acfc43b321d4b69", + "_parent": "5ac66d725acfc43b321d4b60", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac50c185acfc400163398d4", + "5cf50fc5d7f00c056c53f83c", + "5ac78eaf5acfc4001926317a", + "5beec8b20db834001961942a", + "6386300124a1dc425c00577a", + "649ec87d8007560a9001ab36" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5ac66d725acfc43b321d4b6a", + "_parent": "5ac66d725acfc43b321d4b60", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "59e5d83b86f7745aed03d262", + "5a01c29586f77474660c694c", + "5ac66bea5acfc43b321d4aec", + "59d625f086f774661516605d", + "5b1fd4e35acfc40018633c39", + "5a0060fc86f7745793204432", + "59e5f5a486f7746c530b3ce2", + "5b1fb3e15acfc4001637f068", + "59d6272486f77466146386ff", + "5e21a3c67e40bd02257a008a", + "5cbdc23eae9215001136a407", + "5c6175362e221600133e3b94", + "59fafc5086f7740dbe19f6c3", + "59fafc9386f774067d462453", + "5cfe8010d7ad1a59283b14c6", + "6272874a6c47bd74f92e2087", + "64b9cf0ac12b9c38db26923a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_mount_000", + "_id": "5ac66d725acfc43b321d4b6b", + "_parent": "5ac66d725acfc43b321d4b60", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "638db77630c4240f9e06f8b6", + "63d114019e35b334d82302f7", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "5ac66d725acfc43b321d4b6c", + "_parent": "5ac66d725acfc43b321d4b60", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x39", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 6100, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 600, + "Ergonomics": 38, + "Velocity": 1.8, + "bEffDist": 650, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5ac66bea5acfc43b321d4aec", + "defAmmo": "5656d7c34bdc2d9d198b4587", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5ac66d725acfc43b321d4b62", + "_parent": "5ac66d725acfc43b321d4b60", + "_props": { + "filters": [ + { + "Filter": [ + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af5a8532cf95ee0a0dbd", + "64b7af434b75259c590fa893", + "64b7af734b75259c590fa895" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.066, + "AimPlane": 0.19, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.7, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.069, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 398, + "RecoilForceUp": 154, + "RecolDispersion": 9, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.7, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.9701, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.0008, + "HeatFactorByShot": 1.34, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "62e7c4fba689e8c9c50dfc38": { + "_id": "62e7c4fba689e8c9c50dfc38", + "_name": "weapon_steyr_aug_a1_556x45", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "Штурмовая винтовка Colt M4A1 5.56x45", + "ShortName": "M4A1 5.56x45", + "Description": "Colt M4A1- штурмовая винтовка (карабин) созданная в США на базе платформы AR-15 под патрон 5.56x45 NATO. Планировалась к вооружению экипажей боевых машин и расчетов техники, которым было необходимо иметь оружие меньших габаритов чем штатное вооружение но использующее стандартный боеприпас. Однако вскоре US SOCOM (Командование Сил Специальных Операций США) приняло на вооружение M4A1 для всех входящих в его состав подразделений. Затем последовало полное принятие M4A1 на вооружение в армии и морской пехоте США.", + "Weight": 1.49, + "BackgroundColor": "black", + "Width": 3, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/aug/weapon_steyr_aug_a1_556x45_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 199, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "62e7c4fba689e8c9c50dfc3a", + "_parent": "62e7c4fba689e8c9c50dfc38", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "62e7c98b550c8218d602cbb4", + "630e1adbbd357927e4007c09", + "630e295c984633f1fb0e7c30" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_charge", + "_id": "62e7c6b6da5b3b57e805e2c9", + "_parent": "62e7c4fba689e8c9c50dfc38", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62e7c880f68e7a0676050c7c", + "62ebbc53e3c1e1ec7c02c44f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "62e7c6b6da5b3b57e805e2ca", + "_parent": "62e7c4fba689e8c9c50dfc38", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62e7c72df68e7a0676050c77", + "62ea7c793043d74a0306e19f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber556x45NATO", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 4600, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 715, + "CanQueueSecondShot": true, + "bFirerate": 715, + "Ergonomics": 83, + "Velocity": 0, + "bEffDist": 500, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "62e7c98b550c8218d602cbb4", + "defAmmo": "59e6920f86f77411d82aa167", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "62e7c4fba689e8c9c50dfc3f", + "_parent": "62e7c4fba689e8c9c50dfc38", + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0.16, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.6, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.057, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 200, + "RecoilForceUp": 52, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.4, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.12, + "z": -0.01 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.12, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.12, + "z": -0.03 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.03, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": true, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.183425, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.985, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.015, + "HeatFactorByShot": 1.27, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.025, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5839a40f24597726f856b511": { + "_id": "5839a40f24597726f856b511", + "_name": "weapon_izhmash_aks74ub_545x39", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_aks74ub_545x39", + "ShortName": "weapon_izhmash_aks74ub_545x39", + "Description": "weapon_izhmash_aks74ub_545x39", + "Weight": 1.85, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/aks74u/weapon_izhmash_aks74ub_545x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 109, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "5839a40f24597726f856b514", + "_parent": "5839a40f24597726f856b511", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "623c3be0484b5003161840dc", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5839a40f24597726f856b515", + "_parent": "5839a40f24597726f856b511", "_props": { "filters": [ { @@ -211692,10 +217397,29 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, + { + "_name": "mod_charge", + "_id": "5839a40f24597726f856b516", + "_parent": "5839a40f24597726f856b511", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, { "_name": "mod_magazine", - "_id": "5bf3e0490db83400196199b9", - "_parent": "5bf3e0490db83400196199af", + "_id": "5839a40f24597726f856b517", + "_parent": "5839a40f24597726f856b511", "_props": { "filters": [ { @@ -211721,10 +217445,606 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c394bdc2dae468b4577" }, + { + "_name": "mod_muzzle", + "_id": "5839a40f24597726f856b518", + "_parent": "5839a40f24597726f856b511", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac72e945acfc43f3b691116", + "5ac7655e5acfc40016339a19", + "5649aa744bdc2ded0b8b457e", + "5f633f791b231926f2329f13", + "5943eeeb86f77412d6384f6b", + "5cc9a96cd7f00c011c04e04a", + "615d8f5dd92c473c770212ef", + "57dc324a24597759501edc20", + "59bffc1f86f77435b128b872", + "593d493f86f7745e6b2ceb22", + "564caa3d4bdc2d17108b458e", + "57ffb0e42459777d047111c5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "5839a40f24597726f856b519", + "_parent": "5839a40f24597726f856b511", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57dc334d245977597164366f", + "5839a7742459773cf9693481", + "655cb6b5d680a544f30607fa" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5839a40f24597726f856b51a", + "_parent": "5839a40f24597726f856b511", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "638db77630c4240f9e06f8b6", + "63d114019e35b334d82302f7", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_gas_block", + "_id": "59d37a7886f7747ff1158152", + "_parent": "5839a40f24597726f856b511", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59d36a0086f7747e673f3946" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber545x39", + "Durability": 95, + "MaxDurability": 100, + "OperatingResource": 5000, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 650, + "Ergonomics": 44, + "Velocity": -17.9, + "bEffDist": 300, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "55d480c04bdc2d1d4e8b456a", + "defAmmo": "56dff3afd2720bba668b4567", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5839a40f24597726f856b512", + "_parent": "5839a40f24597726f856b511", + "_props": { + "filters": [ + { + "Filter": [ + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" + ], + "MaxStackCount": 0 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.1, + "AimPlane": 0.15, + "DeviationCurve": 1.9, + "DeviationMax": 15.5, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.7, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.067, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 373, + "RecoilForceUp": 102, + "RecolDispersion": 12, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.7, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1.0691, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.1323, + "HeatFactorByShot": 1.555, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5644bd2b4bdc2d3b4c8b4572" + }, + "5ac66d9b5acfc4001633997a": { + "_id": "5ac66d9b5acfc4001633997a", + "_name": "weapon_izhmash_ak105_545x39", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_ak105_545x39", + "ShortName": "weapon_izhmash_ak105_545x39", + "Description": "weapon_izhmash_ak105_545x39", + "Weight": 1.992, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/ak100/weapon_izhmash_ak105_545x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 154, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_gas_block", + "_id": "5ac66d9b5acfc4001633997d", + "_parent": "5ac66d9b5acfc4001633997a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59c6633186f7740cf0493bb9", + "59d64ec286f774171d1e0a42", + "59e649f986f77411d949b246", + "59ccfdba86f7747f2109a587" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_launcher", + "_id": "5ac66d9b5acfc4001633997e", + "_parent": "5ac66d9b5acfc4001633997a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5ac66d9b5acfc4001633997f", + "_parent": "5ac66d9b5acfc4001633997a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac72e945acfc43f3b691116", + "5ac7655e5acfc40016339a19", + "5649aa744bdc2ded0b8b457e", + "5f633f791b231926f2329f13", + "5943eeeb86f77412d6384f6b", + "5cc9a96cd7f00c011c04e04a", + "615d8f5dd92c473c770212ef", + "5649ab884bdc2ded0b8b457f", + "57dc324a24597759501edc20", + "59bffc1f86f77435b128b872", + "593d493f86f7745e6b2ceb22", + "564caa3d4bdc2d17108b458e", + "57ffb0e42459777d047111c5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "5ac66d9b5acfc40016339980", + "_parent": "5ac66d9b5acfc4001633997a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "623c3be0484b5003161840dc", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "5ac66d9b5acfc40016339981", + "_parent": "5ac66d9b5acfc4001633997a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649af094bdc2df8348b4586", + "5ac50da15acfc4001718d287", + "5d2c76ed48f03532f2136169", + "5d2c770c48f0354b4a07c100", + "5d2c772c48f0355d95672c25", + "5649af884bdc2d1b2b8b4589", + "628a665a86cbd9750d2ff5e5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5ac66d9b5acfc40016339982", + "_parent": "5ac66d9b5acfc4001633997a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac733a45acfc400192630e2", + "5649b0544bdc2d1b2b8b458a", + "5ac72e475acfc400180ae6fe", + "5649d9a14bdc2d79388b4580", + "628a7b23b0f75035732dd565", + "649ec2cec93611967b03495e", + "5bf3f59f0db834001a6fa060" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5ac66d9b5acfc40016339983", + "_parent": "5ac66d9b5acfc4001633997a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac50c185acfc400163398d4", + "5cf50fc5d7f00c056c53f83c", + "5ac78eaf5acfc4001926317a", + "5beec8b20db834001961942a", + "6386300124a1dc425c00577a", + "649ec87d8007560a9001ab36" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5ac66d9b5acfc40016339984", + "_parent": "5ac66d9b5acfc4001633997a", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "564ca9df4bdc2d35148b4569", + "564ca99c4bdc2d16268b4589", + "55d480c04bdc2d1d4e8b456a", + "5cbdaf89ae9215000e5b9c94", + "55d481904bdc2d8c2f8b456a", + "55d482194bdc2d1d4e8b456b", + "55d4837c4bdc2d1d4e8b456c", + "5aaa4194e5b5b055d06310a5", + "5bed61680db834001d2c45ab", + "5bed625c0db834001c062946", + "649ec30cb013f04a700e60fb", + "64b9e265c94d0d15c5027e35" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_mount_000", + "_id": "5ac66d9b5acfc40016339985", + "_parent": "5ac66d9b5acfc4001633997a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "638db77630c4240f9e06f8b6", + "63d114019e35b334d82302f7", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, { "_name": "mod_charge", - "_id": "5bf3e0490db83400196199bb", - "_parent": "5bf3e0490db83400196199af", + "_id": "5ac66d9b5acfc40016339986", + "_parent": "5ac66d9b5acfc4001633997a", "_props": { "filters": [ { @@ -211748,7 +218068,7 @@ "ammoCaliber": "Caliber545x39", "Durability": 100, "MaxDurability": 100, - "OperatingResource": 5200, + "OperatingResource": 5500, "RepairComplexity": 0, "durabSpawnMin": 25, "durabSpawnMax": 75, @@ -211759,8 +218079,8 @@ ], "SingleFireRate": 450, "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 31, + "bFirerate": 600, + "Ergonomics": 38, "Velocity": 1.8, "bEffDist": 650, "bHearDist": 80, @@ -211774,8 +218094,8 @@ "Chambers": [ { "_name": "patron_in_weapon", - "_id": "5bf3e0490db83400196199b1", - "_parent": "5bf3e0490db83400196199af", + "_id": "5ac66d9b5acfc4001633997c", + "_parent": "5ac66d9b5acfc4001633997a", "_props": { "filters": [ { @@ -211803,7 +218123,7 @@ } ], "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.058, + "CenterOfImpact": 0.06, "AimPlane": 0.19, "DeviationCurve": 1.35, "DeviationMax": 23, @@ -211816,13 +218136,13 @@ }, "TacticalReloadFixation": 0.95, "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.4, + "RecoilReturnSpeedHandRotation": 2.7, "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.061, + "RecoilCamera": 0.063, "RecoilStableIndexShot": 5, - "RecoilForceBack": 322, - "RecoilForceUp": 120, - "RecolDispersion": 10, + "RecoilForceBack": 371, + "RecoilForceUp": 136, + "RecolDispersion": 8, "RecoilPosZMult": 1, "RecoilReturnPathDampingHandRotation": 0.48, "RecoilReturnPathOffsetHandRotation": 0.01, @@ -211908,10 +218228,10 @@ "AllowMisfire": true, "AllowSlide": true, "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.9702, + "HeatFactorGun": 1.0295, "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.0008, - "HeatFactorByShot": 1.49, + "CoolFactorGunMods": 1.0716, + "HeatFactorByShot": 1.46, "AllowOverheat": true, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, @@ -211927,237 +218247,23 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, - "5b3f7c1c5acfc40dc5296b1d": { - "_id": "5b3f7c1c5acfc40dc5296b1d", - "_name": "scope_base_progress_pu_3,5x", - "_parent": "55818ae44bdc2dde698b456c", + "6184055050224f204c1da540": { + "_id": "6184055050224f204c1da540", + "_name": "weapon_fn_mk16_556x45", + "_parent": "5447b5f14bdc2d61278b4567", "_type": "Item", "_props": { - "Name": "scope_30mm_eotech_vudu_1_6x24scope_base_progress_pu_3,5x", - "ShortName": "scope_30mm_eotech_vudu_1_6x24scope_base_progress_pu_3,5x", - "Description": "scope_base_progress_pu_3,5x", - "Weight": 0.4, - "BackgroundColor": "blue", + "Name": "weapon_fn_mk16_556x45", + "ShortName": "weapon_fn_mk16_556x45", + "Description": "weapon_fn_mk16_556x45", + "Weight": 0.7, + "BackgroundColor": "black", "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "mod", + "ItemSound": "weap_ar", "Prefab": { - "path": "assets/content/items/mods/scopes/scope_base_progress_pu_3,5x.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5894a73486f77426d259076c", - "5894a81786f77427140b8347" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -5, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.2429 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 3.5 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200, - 250, - 300 - ] - ] - }, - "_proto": "56ea70acd2720b844b8b4594" - }, - "5d2369418abbc306c62e0c80": { - "_id": "5d2369418abbc306c62e0c80", - "_name": "tactical_all_steiner_9021_dbal_pl", - "_parent": "55818b164bdc2ddc698b456c", - "_type": "Item", - "_props": { - "Name": "Тактический фонарь X400", - "ShortName": "X400", - "Description": "X400", - "Weight": 0.153, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_all_steiner_9021_dbal_pl.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ModesCount": 6 - }, - "_proto": "560d657b4bdc2da74d8b4572" - }, - "56ea9461d2720b67698b456f": { - "_id": "56ea9461d2720b67698b456f", - "_name": "Gasblock", - "_parent": "550aa4154bdc2dd8348b456b", - "_type": "Node", - "_props": { - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - } - }, - "55818b1d4bdc2d5b648b4572": { - "_id": "55818b1d4bdc2d5b648b4572", - "_name": "RailCovers", - "_parent": "550aa4154bdc2dd8348b456b", - "_type": "Node", - "_props": {} - }, - "57a9b9ce2459770ee926038d": { - "_id": "57a9b9ce2459770ee926038d", - "_name": "sight_rear_saiga_izhmash_saiga_fixed", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_saiga_izhmash_saiga_fixed", - "ShortName": "sight_rear_saiga_izhmash_saiga_fixed", - "Description": "sight_rear_saiga_izhmash_saiga_fixed", - "Weight": 0.003, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_saiga_izhmash_saiga_fixed.bundle", + "path": "assets/content/weapons/scar/weapon_fn_mk16_556x45_container.bundle", "rcid": "" }, "UsePrefab": { @@ -212175,773 +218281,10 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 100, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "5649b0544bdc2d1b2b8b458a" - }, - "5b2388675acfc4771e1be0be": { - "_id": "5b2388675acfc4771e1be0be", - "_name": "scope_30mm_burris_fullfield_tac30_1_4x24", - "_parent": "55818ae44bdc2dde698b456c", - "_type": "Item", - "_props": { - "Name": "scope_30mm_burris_fullfield_tac30_1_4x24", - "ShortName": "scope_30mm_burris_fullfield_tac30_1_4x24", - "Description": "scope_30mm_burris_fullfield_tac30_1_4x24", - "Weight": 0.48, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_30mm_burris_fullfield_tac30_1_4x24.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, "ExamineExperience": 8, "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "5c7d55f52e221644f31bff6a", - "64785e7c19d732620e045e15", - "6165ac8c290d254f5e6b2f6c", - "6477772ea8a38bb2050ed4db" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 800, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65, - 0.1875 - ] - ], - "ModesCount": [ - 2 - ], - "Zooms": [ - [ - 1, - 4 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200, - 250, - 300 - ] - ] - }, - "_proto": "56ea70acd2720b844b8b4594" - }, - "5dfe6104585a0c3e995c7b82": { - "_id": "5dfe6104585a0c3e995c7b82", - "_name": "scope_all_ncstar_advance_dual_optic_3_9x_42", - "_parent": "55818ae44bdc2dde698b456c", - "_type": "Item", - "_props": { - "Name": "scope_all_ncstar_advance_dual_optic_3_9x_42", - "ShortName": "scope_all_ncstar_advance_dual_optic_3_9x_42", - "Description": "scope_all_ncstar_advance_dual_optic_3_9x_42", - "Weight": 0.595, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_ncstar_advance_dual_optic_3_9x_42.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5894a73486f77426d259076c", - "5894a81786f77427140b8347" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 1000, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "hybrid", - "ScopesCount": 2, - "AimSensitivity": [ - [ - 0.2, - 0.0667 - ], - [ - 0.8 - ] - ], - "ModesCount": [ - 2, - 1 - ], - "Zooms": [ - [ - 3, - 9 - ], - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ], - [ - 25, - 50, - 100 - ] - ] - }, - "_proto": "56ea70acd2720b844b8b4594" - }, - "5c066e3a0db834001b7353f0": { - "_id": "5c066e3a0db834001b7353f0", - "_name": "nvg_armasight_n-15", - "_parent": "5a2c3a9486f774688b05e574", - "_type": "Item", - "_props": { - "Name": "nvg_armasight_n-15", - "ShortName": "nvg_armasight_n-15", - "Description": "nvg_armasight_n-15", - "Weight": 0.755, - "BackgroundColor": "default", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/customizable/nvg_armasight_n-15/nvg_armasight_n-15.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a16b672fcdbcb001912fa83", - "5a16b7e1fcdbcb00165aa6c9" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.2 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ], - "Intensity": 1.8, - "Mask": "Binocular", - "MaskSize": 0.95, - "NoiseIntensity": 0.04, - "NoiseScale": 2, - "Color": { - "r": 0, - "g": 255, - "b": 243, - "a": 254 - }, - "DiffuseIntensity": 0.021, - "HasHinge": true - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "606f2696f2cb2e02a42aceb1": { - "_id": "606f2696f2cb2e02a42aceb1", - "_name": "tactical_mp155_kalashnikov_ultima_camera", - "_parent": "55818aeb4bdc2ddc698b456a", - "_type": "Item", - "_props": { - "Name": "Тактический блок AN/PEQ-15", - "ShortName": "AN/PEQ-15", - "Description": "ATPIAL (Advanced Target Pointer Illuminator Aiming Laser) AN/PEQ-15 производства L3 Insight Technologies. Тактический блок. Совмещающий в себе лазерные целеуказатели в видимом и невидимом (ИК) диапазоне а также инфракрасный осветитель.", - "Weight": 0.21, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_mp155_kalashnikov_ultima_camera_thermal.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -3, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 300, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "ak_thermal", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.5 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100 - ] - ] - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, - "57fd23e32459772d0805bcf1": { - "_id": "57fd23e32459772d0805bcf1", - "_name": "tactical_all_holosun_ls321", - "_parent": "55818b164bdc2ddc698b456c", - "_type": "Item", - "_props": { - "Name": "tactical_all_holosun_ls321", - "ShortName": "tactical_all_holosun_ls321", - "Description": "tactical_all_holosun_ls321", - "Weight": 0.19, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_all_holosun_ls321.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ModesCount": 4 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, - "5d10b49bd7ad1a1a560708b0": { - "_id": "5d10b49bd7ad1a1a560708b0", - "_name": "tactical_all_insight_anpeq2", - "_parent": "55818b164bdc2ddc698b456c", - "_type": "Item", - "_props": { - "Name": "Тактический блок AN/PEQ-15", - "ShortName": "AN/PEQ-15", - "Description": "ATPIAL (Advanced Target Pointer Illuminator Aiming Laser) AN/PEQ-15 производства L3 Insight Technologies. Тактический блок. Совмещающий в себе лазерные целеуказатели в видимом и невидимом (ИК) диапазоне а также инфракрасный осветитель.", - "Weight": 0.21, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_all_insight_anpeq2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -2, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ModesCount": 2 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, - "55818b164bdc2ddc698b456c": { - "_id": "55818b164bdc2ddc698b456c", - "_name": "TacticalCombo", - "_parent": "550aa4154bdc2dd8348b456b", - "_type": "Node", - "_props": { - "ModesCount": 0 - } - }, - "574d967124597745970e7c94": { - "_id": "574d967124597745970e7c94", - "_name": "weapon_toz_sks_762x39", - "_parent": "5447b5fc4bdc2d87278b4567", - "_type": "Item", - "_props": { - "Name": "Item", - "ShortName": "Item", - "Description": "Item", - "Weight": 0.82, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_dmr", - "Prefab": { - "path": "assets/content/weapons/sks/weapon_toz_sks_762x39_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 77, - "RepairSpeed": 0, + "RepairCost": 198, + "RepairSpeed": 15, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -212967,38 +218310,42 @@ "Grids": [], "Slots": [ { - "_name": "mod_stock", - "_id": "574dae34245977459a2f3f5c", - "_parent": "574d967124597745970e7c94", + "_name": "mod_pistol_grip", + "_id": "6184055050224f204c1da542", + "_parent": "6184055050224f204c1da540", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5d0236dad7ad1a0940739d29", - "587e0531245977466077a0f7", - "5afd7ded5acfc40017541f5e", - "574dad8024597745964bf05c", - "653ecef836fae5a82f02b869" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "574db2a824597773a448aad1", - "_parent": "574d967124597745970e7c94", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "634eff66517ccc8a960fc735", - "634f02331f9f536910079b51" + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "602e71bd53a60014f9705bfa", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5cc9bcaed7f00c011c04e179", + "5bb20e18d4351e00320205d5", + "5bb20e0ed4351e3bac1212dc", + "6193dcd0f8ee7e52e4210a28", + "5d025cc1d7ad1a53845279ef", + "5c6d7b3d2e221600114c9b7d", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "55802f5d4bdc2dac148b458f", + "5d15cf3bd7ad1a67e71518b2", + "59db3a1d86f77429e05b4e92", + "5fbcbd6c187fea44d52eda14", + "59db3acc86f7742a2c4ab912", + "59db3b0886f77429d72fb895", + "615d8faecabb9b7ad90f4d5d", + "5b07db875acfc40dc528a5f6", + "63f5feead259b42f0b4d6d0f", + "652911675ae2ae97b80fdf3c" ] } ] @@ -213009,17 +218356,32 @@ }, { "_name": "mod_magazine", - "_id": "587df681245977373c4f112e", - "_parent": "574d967124597745970e7c94", + "_id": "6184055050224f204c1da543", + "_parent": "6184055050224f204c1da540", "_props": { "filters": [ { "AnimationIndex": -1, "Filter": [ - "61695095d92c473c7702147a", - "5c5970672e221602b21d7855", - "587df583245977373c4f1129", - "587df3a12459772c28142567" + "55d4887d4bdc2d962f8b4570", + "61840bedd92c473c77021635", + "61840d85568c120fdd2962a5", + "5c05413a0db834001c390617", + "5c6d450c2e221600114c997d", + "5c6d42cb2e2216000e69d7d1", + "59c1383d86f774290a37e0ca", + "5aaa5e60e5b5b000140293d6", + "5448c1d04bdc2dff2f8b4569", + "5aaa5dfee5b5b000140293d3", + "5d1340b3d7ad1a0b52682ed7", + "544a378f4bdc2d30388b4567", + "5d1340bdd7ad1a0e8d245aab", + "55802d5f4bdc2dac148b458e", + "5d1340cad7ad1a0b0b249869", + "6241c2c2117ad530666a5108", + "5c6592372e221600133e47d7", + "544a37c44bdc2d25388b4567", + "5c6d46132e221601da357d56" ] } ] @@ -213030,16 +218392,52 @@ }, { "_name": "mod_reciever", - "_id": "593d49e086f7745e5838a14d", - "_parent": "574d967124597745970e7c94", + "_id": "6184055050224f204c1da544", + "_parent": "6184055050224f204c1da540", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "634f06262e5def262d0b30ca", - "634f05ca517ccc8a960fc748", - "6415c694da439c6a97048b56" + "618405198004cc50514c3594", + "618426d96c780c1e710c9b9f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "6184055050224f204c1da545", + "_parent": "6184055050224f204c1da540", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61816734d8e3106d9806c1f3", + "61825d06d92c473c770215de" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "6184055050224f204c1da546", + "_parent": "6184055050224f204c1da540", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6181688c6c780c1e710c9b04" ] } ] @@ -213051,51 +218449,54 @@ ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultCarbine", + "weapClass": "assaultRifle", "weapUseType": "primary", - "ammoCaliber": "Caliber762x39", + "ammoCaliber": "Caliber556x45NATO", "Durability": 100, "MaxDurability": 100, - "OperatingResource": 3550, + "OperatingResource": 6000, "RepairComplexity": 0, "durabSpawnMin": 25, "durabSpawnMax": 75, - "isFastReload": false, + "isFastReload": true, "weapFireType": [ - "single" + "single", + "fullauto" ], "SingleFireRate": 450, "CanQueueSecondShot": true, - "bFirerate": 40, - "Ergonomics": 40, + "bFirerate": 650, + "Ergonomics": 45, "Velocity": 0, - "bEffDist": 400, + "bEffDist": 500, "bHearDist": 80, "isChamberLoad": true, "chamberAmmoCount": 1, "isBoltCatch": true, - "defMagType": "587df3a12459772c28142567", - "defAmmo": "5656d7c34bdc2d9d198b4587", + "defMagType": "61840bedd92c473c77021635", + "defAmmo": "59e68f6f86f7746c9f75e846", "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, + "shotgunDispersion": 0, "Chambers": [ { "_name": "patron_in_weapon", - "_id": "574d982f24597745a21eb3e5", - "_parent": "574d967124597745970e7c94", + "_id": "6184055050224f204c1da547", + "_parent": "6184055050224f204c1da540", "_props": { "filters": [ { "Filter": [ - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af5a8532cf95ee0a0dbd", - "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895" + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302" ] } ] @@ -213105,12 +218506,12 @@ "_proto": "55d4af244bdc2d962f8b4571" } ], - "ReloadMode": "InternalMagazine", - "CenterOfImpact": 0.05, - "AimPlane": 0.25, + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0.16, "DeviationCurve": 1.35, "DeviationMax": 23, - "Foldable": false, + "Foldable": true, "Retractable": false, "TacticalReloadStiffnes": { "x": 0.95, @@ -213120,17 +218521,17 @@ "TacticalReloadFixation": 0.95, "RecoilCategoryMultiplierHandRotation": 0.207, "RecoilReturnSpeedHandRotation": 2.5, - "RecoilDampingHandRotation": 0.86, - "RecoilCamera": 0.0864, - "RecoilStableIndexShot": 3, - "RecoilForceBack": 360, - "RecoilForceUp": 155, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.066, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 414, + "RecoilForceUp": 122, "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.45, + "RecoilPosZMult": 0.6, + "RecoilReturnPathDampingHandRotation": 0.48, "RecoilReturnPathOffsetHandRotation": 0.01, "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, + "RecoilStableAngleIncreaseStep": 2.4, "ProgressRecoilAngleOnStable": { "x": 0, "y": 28, @@ -213138,8 +218539,8 @@ }, "RecoilCenter": { "x": 0, - "y": -0.3, - "z": 0.03 + "y": -0.24, + "z": 0 }, "PostRecoilVerticalRangeHandRotation": { "x": -1.5, @@ -213182,886 +218583,19 @@ "RotationCenter": { "x": 0, "y": -0.1, - "z": -0.03 + "z": 0 }, "RotationCenterNoStock": { "x": 0, - "y": -0.25, - "z": -0.03 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": true, - "MustBoltBeOpennedForInternalReload": true, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.2024, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.984, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.012, - "HeatFactorByShot": 1.59, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - } - }, - "5d0a3e8cd7ad1a6f6a3d35bd": { - "_id": "5d0a3e8cd7ad1a6f6a3d35bd", - "_name": "scope_base_kmz_1p69_3_10x", - "_parent": "55818ae44bdc2dde698b456c", - "_type": "Item", - "_props": { - "Name": "scope_30mm_burris_fullfield_tac30_1_4x24", - "ShortName": "scope_30mm_burris_fullfield_tac30_1_4x24", - "Description": "scope_30mm_burris_fullfield_tac30_1_4x24", - "Weight": 0.94, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_base_kmz_1p69_3_10x.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "5c7d55de2e221644f31bff68", - "5c7d55f52e221644f31bff6a", - "64785e7c19d732620e045e15", - "6165ac8c290d254f5e6b2f6c", - "6477772ea8a38bb2050ed4db" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5d0b8b5cd7ad1a2d9e0cc1a9", - "_parent": "5d0a3e8cd7ad1a6f6a3d35bd", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d0b5cd3d7ad1a3fe32ad263" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -8, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 800, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.1667, - 0.1667, - 0.05, - 0.05 - ] - ], - "ModesCount": [ - 4 - ], - "Zooms": [ - [ - 3, - 3, - 10, - 10 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200, - 250, - 300, - 350, - 400, - 450 - ] - ] - }, - "_proto": "56ea70acd2720b844b8b4594" - }, - "5c0558060db834001b735271": { - "_id": "5c0558060db834001b735271", - "_name": "nvg_l3_gpnvg-18_anvis", - "_parent": "5a2c3a9486f774688b05e574", - "_type": "Item", - "_props": { - "Name": "nvg_l3_gpnvg-18_anvis", - "ShortName": "nvg_l3_gpnvg-18_anvis", - "Description": "nvg_l3_gpnvg-18_anvis", - "Weight": 0.88, - "BackgroundColor": "default", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/customizable/gpnvg/nvg_l3_gpnvg-18_anvis.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a16b672fcdbcb001912fa83", - "5a16b7e1fcdbcb00165aa6c9", - "5e00cdd986f7747473332240", - "5e01f37686f774773c6f6c15" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.2 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ], - "Intensity": 2.27, - "Mask": "Anvis", - "MaskSize": 0.99, - "NoiseIntensity": 0.02, - "NoiseScale": 5, - "Color": { - "r": 83, - "g": 255, - "b": 69, - "a": 254 - }, - "DiffuseIntensity": 0.023, - "HasHinge": true - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "5d53f4b7a4b936793d58c780": { - "_id": "5d53f4b7a4b936793d58c780", - "_name": "scope_ags_npz_pag17_2,7x", - "_parent": "55818ae44bdc2dde698b456c", - "_type": "Item", - "_props": { - "Name": "scope_ags_npz_pag17_2,7x", - "ShortName": "scope_ags_npz_pag17_2,7x", - "Description": "scope_ags_npz_pag17_2,7x", - "Weight": 0.51, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_ags_npz_pag17_2,7x.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.1 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200, - 250, - 300 - ] - ] - }, - "_proto": "544a3d0a4bdc2d1b388b4567" - }, - "5a2c3a9486f774688b05e574": { - "_id": "5a2c3a9486f774688b05e574", - "_name": "NightVision", - "_parent": "55818aeb4bdc2ddc698b456a", - "_type": "Node", - "_props": { - "Intensity": 2.27, - "Mask": "Thermal", - "MaskSize": 1.5, - "NoiseIntensity": 0.02, - "NoiseScale": 5, - "Color": { - "r": 121, - "g": 233, - "b": 121, - "a": 254 - }, - "DiffuseIntensity": 0, - "HasHinge": true - } - }, - "6272379924e29f06af4d5ecb": { - "_id": "6272379924e29f06af4d5ecb", - "_name": "tactical_all_olight_baldr_pro_tan", - "_parent": "55818b164bdc2ddc698b456c", - "_type": "Item", - "_props": { - "Name": "Тактический фонарь X400", - "ShortName": "X400", - "Description": "X400", - "Weight": 0.129, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_all_olight_baldr_pro_tan.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ModesCount": 3 - }, - "_proto": "560d657b4bdc2da74d8b4572" - }, - "5a74651486f7744e73386dd1": { - "_id": "5a74651486f7744e73386dd1", - "_name": "AuxiliaryMod", - "_parent": "550aa4154bdc2dd8348b456b", - "_type": "Node", - "_props": { - "ShiftsAimCamera": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - } - }, - "55818add4bdc2d5b648b456f": { - "_id": "55818add4bdc2d5b648b456f", - "_name": "AssaultScope", - "_parent": "5448fe7a4bdc2d6f028b456b", - "_type": "Node", - "_props": {} - }, - "5448fe394bdc2d0d028b456c": { - "_id": "5448fe394bdc2d0d028b456c", - "_name": "Muzzle", - "_parent": "550aa4154bdc2dd8348b456b", - "_type": "Node", - "_props": { - "muzzleModType": "silencer", - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "CoolFactor": 1 - } - }, - "55818b084bdc2d5b648b4571": { - "_id": "55818b084bdc2d5b648b4571", - "_name": "Flashlight", - "_parent": "550aa4154bdc2dd8348b456b", - "_type": "Node", - "_props": { - "ModesCount": 0 - } - }, - "645e0c6b3b381ede770e1cc9": { - "_id": "645e0c6b3b381ede770e1cc9", - "_name": "weapon_kbp_vsk94_9x39", - "_parent": "5447b5fc4bdc2d87278b4567", - "_type": "Item", - "_props": { - "Name": "", - "ShortName": "", - "Description": "", - "Weight": 0.92, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/vsk94/weapon_kbp_vsk94_9x39_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 448, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "645e0c6b3b381ede770e1cca", - "_parent": "645e0c6b3b381ede770e1cc9", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "6450ec2e7da7133e5a09ca96" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "645e0c6b3b381ede770e1ccc", - "_parent": "645e0c6b3b381ede770e1cc9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6452519e3d52156624001fd5" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "645e0c6b3b381ede770e1ccd", - "_parent": "645e0c6b3b381ede770e1cc9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "638db77630c4240f9e06f8b6", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "645e0c6b3b381ede770e1cce", - "_parent": "645e0c6b3b381ede770e1cc9", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "645122f6d4928d46d30be3ff", - "645123013d52156624001fd1" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "sniperRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x39", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 3800, - "RepairComplexity": 1, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 900, - "Ergonomics": 50, - "Velocity": 0, - "bEffDist": 400, - "bHearDist": 70, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "6450ec2e7da7133e5a09ca96", - "defAmmo": "57a0dfb82459774d3078b56c", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "645e0c6b3b381ede770e1ccf", - "_parent": "645e0c6b3b381ede770e1cc9", - "_props": { - "filters": [ - { - "Filter": [ - "5c0d688c86f77413ae3407b2", - "61962d879bb3d20b0946d385", - "57a0dfb82459774d3078b56c", - "57a0e5022459774d1673f889", - "5c0d668f86f7747ccb7f13b2", - "6576f96220d53a5b8f3e395e" - ], - "MaxStackCount": 0 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.1, - "AimPlane": 0.2, - "DeviationCurve": 1.9, - "DeviationMax": 15.5, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.7, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.064, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 300, - "RecoilForceUp": 115, - "RecolDispersion": 14, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.49, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.31, - "z": 0.01 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, "y": 0, "z": 0 }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 2.2, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.09 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.3, - "z": -0.09 - }, "SizeReduceRight": 0, - "FoldedSlot": "", + "FoldedSlot": "mod_stock", "CompactHandling": true, "SightingRange": 100, "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.05, + "MaxRepairDegradation": 0.03, "IronSightRange": 100, "MustBoltBeOpennedForExternalReload": false, "MustBoltBeOpennedForInternalReload": false, @@ -214072,20 +218606,20 @@ "ManualBoltCatch": false, "AimSensitivity": 0.65, "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, + "BaseMalfunctionChance": 0.183425, "AllowJam": true, "AllowFeed": true, "AllowMisfire": true, "AllowSlide": true, "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.975, - "CoolFactorGun": 2.592, - "CoolFactorGunMods": 1.014, - "HeatFactorByShot": 2.17, + "HeatFactorGun": 1, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1.2, "AllowOverheat": true, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.045, + "MaxRepairKitDegradation": 0.025, "IsFlareGun": false, "IsOneoff": false, "IsGrenadeLauncher": false, @@ -214095,1364 +218629,25 @@ "WithAnimatorAiming": false, "blockLeftStance": false }, - "_proto": "57838ad32459774a17445cd2" + "_proto": "5447a9cd4bdc2dbd208b4567" }, - "618a75f0bd321d49084cd399": { - "_id": "618a75f0bd321d49084cd399", - "_name": "scope_base_npz_1p78_1_2,8x24", - "_parent": "55818ae44bdc2dde698b456c", - "_type": "Item", - "_props": { - "Name": "scope_dovetail_belomo_pso_1m2-1_4×24", - "ShortName": "scope_dovetail_belomo_pso_1m2-1_4×24", - "Description": "scope_dovetail_belomo_pso_1m2-1_4×24", - "Weight": 0.6, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_base_npz_1p78_1_2,8x24.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "591ee00d86f774592f7b841e", - "57acb6222459771ec34b5cb0", - "5827272a24597748c74bdeea", - "58272b392459774b4c7b3ccd" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "618a75f0bd321d49084cd39b", - "_parent": "618a75f0bd321d49084cd399", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "618a760e526131765025aae3" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": true, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 600, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.28 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 3 - ] - ], - "CalibrationDistances": [ - [ - 50, - 75, - 100, - 125, - 150 - ] - ] - }, - "_proto": "544a3d0a4bdc2d1b388b4567" - }, - "63fc44e2429a8a166c7f61e6": { - "_id": "63fc44e2429a8a166c7f61e6", - "_name": "scope_base_armasight_zeus_pro_640_2_16x50_30hz", - "_parent": "55818aeb4bdc2ddc698b456a", - "_type": "Item", - "_props": { - "Name": "scope_base_armasight_vulcan_gen3_bravo_mg_3,5x", - "ShortName": "scope_base_armasight_vulcan_gen3_bravo_mg_3,5x", - "Description": "scope_base_armasight_vulcan_gen3_bravo_mg_3,5x", - "Weight": 0.9, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_base_armasight_zeus_pro_640_2_16x50_30hz.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical_001", - "_id": "63fc44e2429a8a166c7f61e7", - "_parent": "63fc44e2429a8a166c7f61e6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "63fc44e2429a8a166c7f61e8", - "_parent": "63fc44e2429a8a166c7f61e6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "63fc4533b10b17385349b565" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -18, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.3111, - 0.0778, - 0.3111, - 0.0778 - ] - ], - "ModesCount": [ - 4 - ], - "Zooms": [ - [ - 2, - 8, - 2, - 8 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "5a1eaa87fcdbcb001865f75e" - }, - "609bab8b455afd752b2e6138": { - "_id": "609bab8b455afd752b2e6138", - "_name": "scope_all_torrey_pines_logic_t12_w_30hz", - "_parent": "55818aeb4bdc2ddc698b456a", - "_type": "Item", - "_props": { - "Name": "scope_all_torrey_pines_logic_t12_w_30hz", - "ShortName": "scope_all_torrey_pines_logic_t12_w_30hz", - "Description": "scope_all_torrey_pines_logic_t12_w_30hz", - "Weight": 0.063, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_torrey_pines_logic_t12_w_30hz.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "default", - "sightModType": "hybrid", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.7 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25, - 50 - ] - ] - }, - "_proto": "5a1eaa87fcdbcb001865f75e" - }, - "550aa4154bdc2dd8348b456b": { - "_id": "550aa4154bdc2dd8348b456b", - "_name": "FunctionalMod", - "_parent": "5448fe124bdc2da5018b4567", - "_type": "Node", - "_props": {} - }, - "619f52454c58466fe122843b": { - "_id": "619f52454c58466fe122843b", - "_name": "sight_front_rhino_chiappa_night_sight", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_front_rhino_chiappa_night_sight", - "ShortName": "sight_front_rhino_chiappa_night_sight", - "Description": "sight_front_rhino_chiappa_night_sight", - "Weight": 0.003, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights front/sight_front_rhino_chiappa_night_sight.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": false, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 200, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 25 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "5fb6564947ce63734e3fa1da": { - "_id": "5fb6564947ce63734e3fa1da", - "_name": "sight_rear_all_kriss_defiance_low_profile_flip_up", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_all_sig_mpx_std", - "ShortName": "sight_rear_all_sig_mpx_std", - "Description": "sight_rear_all_sig_mpx_std", - "Weight": 0.02, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_all_kriss_defiance_low_profile_flip_up.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 300, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d4af3a4bdc2d972f8b456f" - }, - "6492fb8253acae0af00a29b6": { - "_id": "6492fb8253acae0af00a29b6", - "_name": "sight_rear_pk_zid_pk_std", - "_parent": "55818ac54bdc2d5b648b456e", - "_type": "Item", - "_props": { - "Name": "sight_rear_ak_izhmash_akm_std", - "ShortName": "sight_rear_ak_izhmash_akm_std", - "Description": "sight_rear_ak_izhmash_akm_std", - "Weight": 0.025, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/sights rear/sight_rear_pk_zid_pk_std.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 100 - ] - ] - }, - "_proto": "55d5f46a4bdc2d1b198b4567" - }, - "5cf638cbd7f00c06595bc936": { - "_id": "5cf638cbd7f00c06595bc936", - "_name": "scope_dovetail_npz_1p29_4x", - "_parent": "55818ae44bdc2dde698b456c", - "_type": "Item", - "_props": { - "Name": "scope_dovetail_belomo_pso_1m2-1_4×24", - "ShortName": "scope_dovetail_belomo_pso_1m2-1_4×24", - "Description": "scope_dovetail_belomo_pso_1m2-1_4×24", - "Weight": 0.795, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_dovetail_npz_1p29_4x.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5827272a24597748c74bdeea", - "58272b392459774b4c7b3ccd", - "5649af884bdc2d1b2b8b4589", - "59985a6c86f77414ec448d17" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5cf638cbd7f00c06595bc938", - "_parent": "5cf638cbd7f00c06595bc936", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cf639aad7f00c065703d455" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -6, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": true, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 600, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "optic", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.175 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 4 - ] - ], - "CalibrationDistances": [ - [ - 50, - 75, - 100, - 125, - 150, - 200, - 250, - 300 - ] - ] - }, - "_proto": "544a3d0a4bdc2d1b388b4567" - }, - "57235b6f24597759bf5a30f1": { - "_id": "57235b6f24597759bf5a30f1", - "_name": "nvg_pvs_14", - "_parent": "5a2c3a9486f774688b05e574", - "_type": "Item", - "_props": { - "Name": "ПНВ", - "ShortName": "ПНВ", - "Description": "ПНВ", - "Weight": 0.65, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/customizable/pvs_14/nvg_pvs_14.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [ - "Bear", - "Usec", - "Savage" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": 0, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": false, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "iron", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.2 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ], - "Intensity": 2.27, - "Mask": "OldMonocular", - "MaskSize": 1.2, - "NoiseIntensity": 0.02, - "NoiseScale": 5, - "Color": { - "r": 183, - "g": 255, - "b": 86, - "a": 254 - }, - "DiffuseIntensity": 0.022, - "HasHinge": true - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "5a1eaa87fcdbcb001865f75e": { - "_id": "5a1eaa87fcdbcb001865f75e", - "_name": "scope_base_trijicon_reap-ir", - "_parent": "55818aeb4bdc2ddc698b456a", - "_type": "Item", - "_props": { - "Name": "scope_base_trijicon_reap-ir", - "ShortName": "scope_base_trijicon_reap-ir", - "Description": "scope_base_trijicon_reap-ir", - "Weight": 0.58, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_base_trijicon_reap-ir.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_tactical", - "_id": "5a1eac63fcdbcb001a3b0108", - "_parent": "5a1eaa87fcdbcb001865f75e", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a1eacb3fcdbcb09800872be" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -13, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "hybrid", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.28, - 0.28 - ] - ], - "ModesCount": [ - 2 - ], - "Zooms": [ - [ - 2.5, - 2.5 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - } - }, - "6478641c19d732620e045e17": { - "_id": "6478641c19d732620e045e17", - "_name": "scope_all_sig_sauer_echo1_thermal_reflex_sight_1_2x_30hz", - "_parent": "55818aeb4bdc2ddc698b456a", - "_type": "Item", - "_props": { - "Name": "scope_base_trijicon_reap-ir", - "ShortName": "scope_base_trijicon_reap-ir", - "Description": "scope_base_trijicon_reap-ir", - "Weight": 0.417, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/scopes/scope_all_sig_sauer_echo1_thermal_reflex_sight_1_2x_30hz.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c82343a2e221644f31c0611", - "5c82342f2e221644f31c060e", - "5d0a29ead7ad1a0026013f27", - "5ae30bad5acfc400185c2dc4" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -10, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 500, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "CustomAimPlane": "", - "sightModType": "hybrid", - "ScopesCount": 1, - "AimSensitivity": [ - [ - 0.65, - 0.5, - 0.65, - 0.5 - ] - ], - "ModesCount": [ - 4 - ], - "Zooms": [ - [ - 1, - 2, - 1, - 2 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - }, - "_proto": "5a1eaa87fcdbcb001865f75e" - }, - "560d657b4bdc2da74d8b4572": { - "_id": "560d657b4bdc2da74d8b4572", - "_name": "tactical_all_zenit_2p_kleh_vis_laser", - "_parent": "55818b164bdc2ddc698b456c", - "_type": "Item", - "_props": { - "Name": "tactical_all_zenit_2p_kleh_vis_laser", - "ShortName": "tactical_all_zenit_2p_kleh_vis_laser", - "Description": "tactical_all_zenit_2p_kleh_vis_laser", - "Weight": 0.17, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "mod", - "Prefab": { - "path": "assets/content/items/mods/tactical/tactical_all_zenit_2p_kleh_vis_laser.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "Durability": 100, - "Accuracy": 0, - "Recoil": 0, - "Loudness": 0, - "EffectiveDistance": 0, - "Ergonomics": -1, - "Velocity": 0, - "RaidModdable": true, - "ToolModdable": true, - "BlocksFolding": false, - "BlocksCollapsible": false, - "IsAnimated": false, - "HasShoulderContact": false, - "SightingRange": 0, - "DoubleActionAccuracyPenaltyMult": 1, - "UniqueAnimationModID": 0, - "ModesCount": 3 - }, - "_proto": "544909bb4bdc2d6f028b4577" - }, - "5448fe7a4bdc2d6f028b456b": { - "_id": "5448fe7a4bdc2d6f028b456b", - "_name": "Sights", - "_parent": "550aa4154bdc2dd8348b456b", - "_type": "Node", - "_props": { - "CustomAimPlane": "", - "sightModType": "iron", - "SightingRange": 0, - "ScopesCount": 1, - "AimSensitivity": [ - [ - 1 - ] - ], - "ModesCount": [ - 1 - ], - "Zooms": [ - [ - 1 - ] - ], - "CalibrationDistances": [ - [ - 50, - 100, - 150, - 200 - ] - ] - } - }, - "5a0ec13bfcdbcb00165aa685": { - "_id": "5a0ec13bfcdbcb00165aa685", - "_name": "weapon_izhmash_akmn_762x39", + "628b5638ad252a16da6dd245": { + "_id": "628b5638ad252a16da6dd245", + "_name": "weapon_sag_ak545_545x39", "_parent": "5447b5f14bdc2d61278b4567", "_type": "Item", "_props": { - "Name": "weapon_izhmash_akm_762x39", - "ShortName": "weapon_izhmash_akm_762x39", - "Description": "weapon_izhmash_akm_762x39", - "Weight": 2.152, + "Name": "weapon_izhmash_ak74m_545x39", + "ShortName": "weapon_izhmash_ak74m_545x39", + "Description": "weapon_izhmash_ak74m_545x39", + "Weight": 2.392, "BackgroundColor": "black", "Width": 4, "Height": 1, "StackMaxSize": 1, "ItemSound": "weap_ar", "Prefab": { - "path": "assets/content/weapons/akm/weapon_izhmash_akmn_762x39_container.bundle", + "path": "assets/content/weapons/ak545/weapon_sag_ak545_545x39_container.bundle", "rcid": "" }, "UsePrefab": { @@ -215472,7 +218667,7 @@ "LootExperience": 20, "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 170, + "RepairCost": 144, "RepairSpeed": 5, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -215500,21 +218695,14 @@ "Slots": [ { "_name": "mod_gas_block", - "_id": "5a0ec13bfcdbcb00165aa687", - "_parent": "5a0ec13bfcdbcb00165aa685", + "_id": "628b5638ad252a16da6dd247", + "_parent": "628b5638ad252a16da6dd245", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a01ad4786f77450561fda02", - "59c6633186f7740cf0493bb9", - "59d64ec286f774171d1e0a42", - "59e649f986f77411d949b246", - "5b237e425acfc4771e1be0b6", - "59ccfdba86f7747f2109a587", - "5cf656f2d7f00c06585fb6eb", - "5d4aab30a4b9365435358c55" + "628b8d83717774443b15e248" ] } ] @@ -215523,50 +218711,28 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, - { - "_name": "mod_launcher", - "_id": "5a0ec13bfcdbcb00165aa688", - "_parent": "5a0ec13bfcdbcb00165aa685", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5648b62b4bdc2d9d488b4585", - "62e7e7bbe6da9612f743f1e0" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_muzzle", - "_id": "5a0ec13bfcdbcb00165aa689", - "_parent": "5a0ec13bfcdbcb00165aa685", + "_id": "628b5638ad252a16da6dd249", + "_parent": "628b5638ad252a16da6dd245", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "59d64fc686f774171b243fe2", - "5a0d716f1526d8000d26b1e2", - "5f633f68f5750b524b45f112", - "5c878ebb2e2216001219d48a", - "59e61eb386f77440d64f5daf", - "59e8a00d86f7742ad93b569c", - "5a9ea27ca2750c00137fa672", - "5cc9ad73d7f00c000e2579d4", - "5c7951452e221644f31bfd5c", - "615d8e9867085e45ef1409c6", - "5a0abb6e1526d8000a025282", + "5ac72e945acfc43f3b691116", + "5ac7655e5acfc40016339a19", + "5649aa744bdc2ded0b8b457e", + "5f633f791b231926f2329f13", + "5943eeeb86f77412d6384f6b", + "5cc9a96cd7f00c011c04e04a", + "615d8f5dd92c473c770212ef", + "5649ab884bdc2ded0b8b457f", + "57dc324a24597759501edc20", "59bffc1f86f77435b128b872", - "593d489686f7745c6255d58a", - "5a0d63621526d8dba31fe3bf", - "5a9fbacda2750c00141e080f", - "64942bfc6ee699f6890dff95" + "593d493f86f7745e6b2ceb22", + "564caa3d4bdc2d17108b458e", + "57ffb0e42459777d047111c5" ] } ] @@ -215577,16 +218743,16 @@ }, { "_name": "mod_pistol_grip", - "_id": "5a0ec13bfcdbcb00165aa68a", - "_parent": "5a0ec13bfcdbcb00165aa685", + "_id": "628b5638ad252a16da6dd24a", + "_parent": "628b5638ad252a16da6dd245", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "619b69037b9de8162902673e", "5f6341043ada5942720e2dc5", "6087e663132d4d12c81fd96b", + "623c3be0484b5003161840dc", "5beec8ea0db834001a6f9dbf", "5649ad3f4bdc2df8348b4585", "5649ade84bdc2d1b2b8b4587", @@ -215599,14 +218765,13 @@ "59e6318286f77444dd62c4cc", "5cf50850d7f00c056e24104c", "5cf508bfd7f00c056e24104e", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", "5947f92f86f77427344a76b1", "5947fa2486f77425b47c1a9b", "5c6bf4aa2e2216001219b0ae", "5649ae4a4bdc2d1b2b8b4588", "5998517986f7746017232f7e", - "623c3be0484b5003161840dc", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", "63f4da90f31d4a33b87bd054", "648ae3e356c6310a830fc291", "651580dc71a4f10aec4b6056" @@ -215619,73 +218784,15 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_reciever", - "_id": "5a0ec13bfcdbcb00165aa68b", - "_parent": "5a0ec13bfcdbcb00165aa685", + "_name": "mod_stock_000", + "_id": "628b5638ad252a16da6dd24d", + "_parent": "628b5638ad252a16da6dd245", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5d2c76ed48f03532f2136169", - "5d2c770c48f0354b4a07c100", - "59d6507c86f7741b846413a2", - "59e6449086f7746c9f75e822", - "5d2c772c48f0355d95672c25", - "5649af884bdc2d1b2b8b4589", - "628a665a86cbd9750d2ff5e5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5a0ec13bfcdbcb00165aa68c", - "_parent": "5a0ec13bfcdbcb00165aa685", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59d650cf86f7741b846413a4", - "5a0eb980fcdbcb001a3b00a6", - "5649d9a14bdc2d79388b4580", - "628a7b23b0f75035732dd565" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5a0ec13bfcdbcb00165aa68d", - "_parent": "5a0ec13bfcdbcb00165aa685", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649b0fc4bdc2d17108b4588", - "5cbdb1b0ae9215000d50e105", - "5649b1c04bdc2d16268b457c", - "5cf518cfd7f00c065b422214", - "5b04473a5acfc40018632f70", - "5e217ba4c1434648c13568cd", - "59d6514b86f774171a068a08", - "5b0e794b5acfc47a877359b2", - "59e6227d86f77440d64f5dc2", - "59e89d0986f77427600d226e", - "6087e2a5232e5a31c233d552", - "5649b2314bdc2d79388b4576", - "5b222d335acfc4771e1be099", - "628a6678ccaab13006640e49" + "628b9a40717774443b15e9f2" ] } ] @@ -215696,30 +218803,25 @@ }, { "_name": "mod_magazine", - "_id": "5a0ec13bfcdbcb00165aa68e", - "_parent": "5a0ec13bfcdbcb00165aa685", + "_id": "628b5638ad252a16da6dd24e", + "_parent": "628b5638ad252a16da6dd245", "_props": { "filters": [ { "AnimationIndex": -1, "Filter": [ - "59e5d83b86f7745aed03d262", - "5a01c29586f77474660c694c", - "5ac66bea5acfc43b321d4aec", - "59d625f086f774661516605d", - "5b1fd4e35acfc40018633c39", - "5a0060fc86f7745793204432", - "59e5f5a486f7746c530b3ce2", - "5b1fb3e15acfc4001637f068", - "59d6272486f77466146386ff", - "5e21a3c67e40bd02257a008a", - "5cbdc23eae9215001136a407", - "5c6175362e221600133e3b94", - "59fafc5086f7740dbe19f6c3", - "59fafc9386f774067d462453", - "5cfe8010d7ad1a59283b14c6", - "6272874a6c47bd74f92e2087", - "64b9cf0ac12b9c38db26923a" + "564ca9df4bdc2d35148b4569", + "564ca99c4bdc2d16268b4589", + "55d480c04bdc2d1d4e8b456a", + "5cbdaf89ae9215000e5b9c94", + "55d481904bdc2d8c2f8b456a", + "55d482194bdc2d1d4e8b456b", + "55d4837c4bdc2d1d4e8b456c", + "5aaa4194e5b5b055d06310a5", + "5bed61680db834001d2c45ab", + "5bed625c0db834001c062946", + "649ec30cb013f04a700e60fb", + "64b9e265c94d0d15c5027e35" ] } ] @@ -215730,8 +218832,8 @@ }, { "_name": "mod_charge", - "_id": "5a0ec13bfcdbcb00165aa68f", - "_parent": "5a0ec13bfcdbcb00165aa685", + "_id": "628b5638ad252a16da6dd250", + "_parent": "628b5638ad252a16da6dd245", "_props": { "filters": [ { @@ -215746,109 +218848,59 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5a0ec1affcdbcb00165aa690", - "_parent": "5a0ec13bfcdbcb00165aa685", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "638db77630c4240f9e06f8b6", - "63d114019e35b334d82302f7", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5a0f0a68fcdbcb001a3b00c1", - "_parent": "5a0ec13bfcdbcb00165aa685", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a0f096dfcdbcb0176308b15" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "weapClass": "assaultRifle", "weapUseType": "primary", - "ammoCaliber": "Caliber762x39", + "ammoCaliber": "Caliber545x39", "Durability": 100, "MaxDurability": 100, - "OperatingResource": 6000, + "OperatingResource": 5700, "RepairComplexity": 0, "durabSpawnMin": 25, "durabSpawnMax": 75, "isFastReload": true, "weapFireType": [ - "single", - "fullauto" + "single" ], "SingleFireRate": 450, "CanQueueSecondShot": true, - "bFirerate": 600, - "Ergonomics": 26, + "bFirerate": 650, + "Ergonomics": 50, "Velocity": 1.8, - "bEffDist": 400, + "bEffDist": 650, "bHearDist": 80, "isChamberLoad": true, "chamberAmmoCount": 1, "isBoltCatch": false, - "defMagType": "59d625f086f774661516605d", - "defAmmo": "5656d7c34bdc2d9d198b4587", + "defMagType": "55d480c04bdc2d1d4e8b456a", + "defAmmo": "56dff0bed2720bb0668b4567", "AdjustCollimatorsToTrajectory": false, "shotgunDispersion": 0, "Chambers": [ { "_name": "patron_in_weapon", - "_id": "5a0ec13bfcdbcb00165aa686", - "_parent": "5a0ec13bfcdbcb00165aa685", + "_id": "628b5638ad252a16da6dd246", + "_parent": "628b5638ad252a16da6dd245", "_props": { "filters": [ { "Filter": [ - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af5a8532cf95ee0a0dbd", - "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895" + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" ] } ] @@ -215859,7 +218911,7 @@ } ], "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.066, + "CenterOfImpact": 0.033, "AimPlane": 0.19, "DeviationCurve": 1.35, "DeviationMax": 23, @@ -215872,17 +218924,17 @@ }, "TacticalReloadFixation": 0.95, "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.4, - "RecoilDampingHandRotation": 0.86, - "RecoilCamera": 0.069, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 403, - "RecoilForceUp": 162, - "RecolDispersion": 11, + "RecoilReturnSpeedHandRotation": 2.5, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.051, + "RecoilStableIndexShot": 3, + "RecoilForceBack": 263, + "RecoilForceUp": 91, + "RecolDispersion": 10, "RecoilPosZMult": 1, "RecoilReturnPathDampingHandRotation": 0.48, "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 85, + "RecoilAngle": 90, "RecoilStableAngleIncreaseStep": 2.5, "ProgressRecoilAngleOnStable": { "x": 0, @@ -215964,10 +219016,1762 @@ "AllowMisfire": true, "AllowSlide": true, "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.9306, + "HeatFactorGun": 0.985, + "CoolFactorGun": 2.91, + "CoolFactorGunMods": 1.0008, + "HeatFactorByShot": 1.49, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5fbcc1d9016cce60e8341ab3": { + "_id": "5fbcc1d9016cce60e8341ab3", + "_name": "weapon_sig_mcx_gen1_762x35", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_sig_mcx_gen1_762x35", + "ShortName": "weapon_sig_mcx_gen1_762x35", + "Description": "weapon_sig_mcx_gen1_762x35", + "Weight": 0.4, + "BackgroundColor": "black", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/mcx/weapon_sig_mcx_gen1_762x35_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 210, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "5fbcc1d9016cce60e8341ab5", + "_parent": "5fbcc1d9016cce60e8341ab3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "602e71bd53a60014f9705bfa", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5cc9bcaed7f00c011c04e179", + "5bb20e18d4351e00320205d5", + "5bb20e0ed4351e3bac1212dc", + "6193dcd0f8ee7e52e4210a28", + "5d025cc1d7ad1a53845279ef", + "5c6d7b3d2e221600114c9b7d", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "55802f5d4bdc2dac148b458f", + "5d15cf3bd7ad1a67e71518b2", + "59db3a1d86f77429e05b4e92", + "5fbcbd6c187fea44d52eda14", + "59db3acc86f7742a2c4ab912", + "59db3b0886f77429d72fb895", + "615d8faecabb9b7ad90f4d5d", + "5b07db875acfc40dc528a5f6", + "63f5feead259b42f0b4d6d0f", + "652911675ae2ae97b80fdf3c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5fbcc1d9016cce60e8341ab6", + "_parent": "5fbcc1d9016cce60e8341ab3", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "55d4887d4bdc2d962f8b4570", + "61840bedd92c473c77021635", + "61840d85568c120fdd2962a5", + "5c05413a0db834001c390617", + "5c6d450c2e221600114c997d", + "5c6d42cb2e2216000e69d7d1", + "59c1383d86f774290a37e0ca", + "5aaa5e60e5b5b000140293d6", + "5448c1d04bdc2dff2f8b4569", + "5aaa5dfee5b5b000140293d3", + "5d1340b3d7ad1a0b52682ed7", + "544a378f4bdc2d30388b4567", + "5d1340bdd7ad1a0e8d245aab", + "55802d5f4bdc2dac148b458e", + "5d1340cad7ad1a0b0b249869", + "6241c2c2117ad530666a5108", + "5c6592372e221600133e47d7", + "544a37c44bdc2d25388b4567", + "5c6d46132e221601da357d56" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_reciever", + "_id": "5fbcc1d9016cce60e8341ab7", + "_parent": "5fbcc1d9016cce60e8341ab3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fbcc3e4d6fa9c00c571bb58" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5fbcc1d9016cce60e8341ab8", + "_parent": "5fbcc1d9016cce60e8341ab3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "58ac1bf086f77420ed183f9f", + "5894a13e86f7742405482982", + "5fbcc429900b1d5091531dd7", + "5fbcc437d724d907e2077d5c", + "5c5db6ee2e221600113fba54", + "5c5db6f82e2216003a0fe914", + "6529348224cbe3c74a05e5c4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "5fbcc1d9016cce60e8341ab9", + "_parent": "5fbcc1d9016cce60e8341ab3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fbcc640016cce60e8341acc" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x35", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 4600, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 800, + "Ergonomics": 48, + "Velocity": 0, + "bEffDist": 500, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "55d4887d4bdc2d962f8b4570", + "defAmmo": "5fbe3ffdf8b6a877a729ea82", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5fbcc1d9016cce60e8341aba", + "_parent": "5fbcc1d9016cce60e8341ab3", + "_props": { + "filters": [ + { + "Filter": [ + "5fbe3ffdf8b6a877a729ea82", + "5fd20ff893a8961fc660a954", + "619636be6db0f2477964e710", + "6196364158ef8c428c287d9f", + "6196365d58ef8c428c287da1", + "64b8725c4b75259c590fa899" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0.16, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.5, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.065, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 351, + "RecoilForceUp": 127, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.24, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.03, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, "CoolFactorGun": 3.168, - "CoolFactorGunMods": 0.9503, - "HeatFactorByShot": 1.34, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1.205, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.025, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5cadfbf7ae92152ac412eeef": { + "_id": "5cadfbf7ae92152ac412eeef", + "_name": "weapon_ckib_ash_12_127x55", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "Автомат Калашникова АК-74Н 5.45x39", + "ShortName": "АК-74N 5.45x39", + "Description": "Автомат Калашникова калибра 5,45 мм, разработанный в 1970 году конструктором М. Т. Калашниковым. Дальнейшее развитие АКМ в связи с переходом Вооруженных Сил на новый боеприпас 5.45x39. Основное отличие от штатного АК-74 это наличие крепления для оптических и ночных прицелов.", + "Weight": 5.1, + "BackgroundColor": "black", + "Width": 4, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/ash12/weapon_ckib_ash_12_127x55_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 40, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 469, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_muzzle", + "_id": "5cadfbf7ae92152ac412eef4", + "_parent": "5cadfbf7ae92152ac412eeef", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5caf17c9ae92150b30006be1", + "5caf187cae92157c28402e43" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5cadfbf7ae92152ac412eef7", + "_parent": "5cadfbf7ae92152ac412eeef", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5cadfbf7ae92152ac412eef9", + "_parent": "5cadfbf7ae92152ac412eeef", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5caf1041ae92157c28402e3f", + "5caf1109ae9215753c44119f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_sight_front", + "_id": "5caf1bc1ae921576eb05cc77", + "_parent": "5cadfbf7ae92152ac412eeef", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5caf16a2ae92152ac412efbc", + "5ba26b01d4351e0085325a51", + "5dfa3d950dee1b22f862eae0", + "5c17804b2e2216152006c02f", + "5fb6567747ce63734e3fa1dc", + "5bc09a30d4351e00367fb7c8", + "5c18b90d2e2216152142466b", + "5fc0fa362770a0045c59c677", + "5894a73486f77426d259076c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "5caf1bd5ae9215755f417da1", + "_parent": "5cadfbf7ae92152ac412eeef", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c7fc87d2e221644f31c0298", + "5cda9bcfd7f00c0c0b53e900", + "59f8a37386f7747af3328f06", + "5a7dbfc1159bd40016548fde", + "619386379fb0c665d5490dbe", + "5c87ca002e221600114cb150", + "588226d124597767ad33f787", + "588226dd24597767ad33f789", + "588226e62459776e3e094af7", + "588226ef24597767af46e39c", + "59fc48e086f77463b1118392", + "5fce0cf655375d18a253eff0", + "5cf4fb76d7f00c065703d3ac", + "5b057b4f5acfc4771e1bd3e9", + "5c791e872e2216001219c40a", + "558032614bdc2de7118b4585", + "58c157be86f77403c74b2bb6", + "58c157c886f774032749fb06", + "5f6340d3ca442212f4047eb2", + "591af28e86f77414a27a9e1d", + "5c1cd46f2e22164bef5cfedb", + "5c1bc4812e22164bef5cfde7", + "5c1bc5612e221602b5429350", + "5c1bc5af2e221602b412949b", + "5c1bc5fb2e221602b1779b32", + "5c1bc7432e221602b412949d", + "5c1bc7752e221602b1779b34", + "5cdaa99dd7f00c002412d0b2", + "65169d5b30425317755f8e25", + "648067db042be0705c0b3009", + "64807a29e5ffe165600abc97", + "64806bdd26c80811d408d37a", + "655df24fdf80b12750626d0a", + "655dccfdbdcc6b5df71382b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5cc08743ae921547db318b9b", + "_parent": "5cadfbf7ae92152ac412eeef", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5caf1691ae92152ac412efb9", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_000", + "_id": "5cc087c1ae92150010399ab0", + "_parent": "5cadfbf7ae92152ac412eeef", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5c5952732e2216398b5abda2", + "644a3df63b0b6f03e101e065" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_001", + "_id": "5cc087c9ae921547db318b9c", + "_parent": "5cadfbf7ae92152ac412eeef", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical_002", + "_id": "5cc087d0ae921500dc1fc310", + "_parent": "5cadfbf7ae92152ac412eeef", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5c06595c0db834001a66af6c", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "61605d88ffa6e502ac5e7eeb", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "57d17e212459775a1179a0f5", + "6267c6396b642f77f56f5c1c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837", + "644a3df63b0b6f03e101e065", + "646f6322f43d0c5d62063715" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber127x55", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 4700, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 650, + "Ergonomics": 55, + "Velocity": 1.1, + "bEffDist": 650, + "bHearDist": 140, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5caf1041ae92157c28402e3f", + "defAmmo": "5cadf6ddae9215051e1c23b2", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5cadfbf7ae92152ac412eef1", + "_parent": "5cadfbf7ae92152ac412eeef", + "_props": { + "filters": [ + { + "Filter": [ + "5cadf6ddae9215051e1c23b2", + "5cadf6e5ae921500113bb973", + "5cadf6eeae921500134b2799" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.052, + "AimPlane": 0.19, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.2, + "RecoilDampingHandRotation": 0.87, + "RecoilCamera": 0.094, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 425, + "RecoilForceUp": 128, + "RecolDispersion": 12, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.8865, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 0.9568, + "HeatFactorByShot": 1.46, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "63171672192e68c5460cebc5": { + "_id": "63171672192e68c5460cebc5", + "_name": "weapon_steyr_aug_a3_m1_556x45", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "Штурмовая винтовка Colt M4A1 5.56x45", + "ShortName": "M4A1 5.56x45", + "Description": "Colt M4A1- штурмовая винтовка (карабин) созданная в США на базе платформы AR-15 под патрон 5.56x45 NATO. Планировалась к вооружению экипажей боевых машин и расчетов техники, которым было необходимо иметь оружие меньших габаритов чем штатное вооружение но использующее стандартный боеприпас. Однако вскоре US SOCOM (Командование Сил Специальных Операций США) приняло на вооружение M4A1 для всех входящих в его состав подразделений. Затем последовало полное принятие M4A1 на вооружение в армии и морской пехоте США.", + "Weight": 1.51, + "BackgroundColor": "black", + "Width": 3, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/aug/weapon_steyr_aug_a3_m1_556x45_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 199, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "63171672192e68c5460cebc6", + "_parent": "63171672192e68c5460cebc5", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "62e7c98b550c8218d602cbb4", + "630e1adbbd357927e4007c09", + "630e295c984633f1fb0e7c30" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_charge", + "_id": "63171672192e68c5460cebc7", + "_parent": "63171672192e68c5460cebc5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62e7c880f68e7a0676050c7c", + "62ebbc53e3c1e1ec7c02c44f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "63171672192e68c5460cebc8", + "_parent": "63171672192e68c5460cebc5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62e7c72df68e7a0676050c77", + "62ea7c793043d74a0306e19f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber556x45NATO", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 4600, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 715, + "CanQueueSecondShot": true, + "bFirerate": 715, + "Ergonomics": 88, + "Velocity": 0, + "bEffDist": 500, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "62e7c98b550c8218d602cbb4", + "defAmmo": "59e6920f86f77411d82aa167", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "63171672192e68c5460cebc9", + "_parent": "63171672192e68c5460cebc5", + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0.16, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.6, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.057, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 185, + "RecoilForceUp": 50, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.4, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.12, + "z": -0.01 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.12, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.12, + "z": -0.03 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.03, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.183425, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.13, + "HeatFactorGun": 0.975, + "CoolFactorGun": 3.268, + "CoolFactorGunMods": 1.015, + "HeatFactorByShot": 1.25, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.025, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5ac66cb05acfc40198510a10": { + "_id": "5ac66cb05acfc40198510a10", + "_name": "weapon_izhmash_ak101_556x45", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_ak101_556x45", + "ShortName": "weapon_izhmash_ak101_556x45", + "Description": "weapon_izhmash_ak101_556x45", + "Weight": 2.392, + "BackgroundColor": "black", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/ak100/weapon_izhmash_ak101_556x45_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 152, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_gas_block", + "_id": "5ac66cb05acfc40198510a13", + "_parent": "5ac66cb05acfc40198510a10", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a01ad4786f77450561fda02", + "59c6633186f7740cf0493bb9", + "59d64ec286f774171d1e0a42", + "59e649f986f77411d949b246", + "5b237e425acfc4771e1be0b6", + "59ccfdba86f7747f2109a587", + "5cf656f2d7f00c06585fb6eb", + "5d4aab30a4b9365435358c55" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_launcher", + "_id": "5ac66cb05acfc40198510a14", + "_parent": "5ac66cb05acfc40198510a10", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5648b62b4bdc2d9d488b4585", + "62e7e7bbe6da9612f743f1e0" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5ac66cb05acfc40198510a15", + "_parent": "5ac66cb05acfc40198510a10", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac72e615acfc43f67248aa0", + "5ac72e725acfc400180ae701", + "5f633f791b231926f2329f13", + "5cc9a96cd7f00c011c04e04a", + "5943ee5a86f77413872d25ec", + "5e21ca18e4d47f0da15e77dd", + "59bffc1f86f77435b128b872", + "5a9fbb84a2750c00137fa685" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "5ac66cb05acfc40198510a16", + "_parent": "5ac66cb05acfc40198510a10", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "623c3be0484b5003161840dc", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "5ac66cb05acfc40198510a17", + "_parent": "5ac66cb05acfc40198510a10", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649af094bdc2df8348b4586", + "5ac50da15acfc4001718d287", + "5d2c76ed48f03532f2136169", + "5d2c770c48f0354b4a07c100", + "5d2c772c48f0355d95672c25", + "5649af884bdc2d1b2b8b4589", + "628a665a86cbd9750d2ff5e5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5ac66cb05acfc40198510a18", + "_parent": "5ac66cb05acfc40198510a10", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac733a45acfc400192630e2", + "5649b0544bdc2d1b2b8b458a", + "5ac72e475acfc400180ae6fe", + "5649d9a14bdc2d79388b4580", + "628a7b23b0f75035732dd565", + "649ec2cec93611967b03495e", + "5bf3f59f0db834001a6fa060" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5ac66cb05acfc40198510a19", + "_parent": "5ac66cb05acfc40198510a10", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac50c185acfc400163398d4", + "5cf50fc5d7f00c056c53f83c", + "5ac78eaf5acfc4001926317a", + "5beec8b20db834001961942a", + "6386300124a1dc425c00577a", + "649ec87d8007560a9001ab36" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5ac66cb05acfc40198510a1a", + "_parent": "5ac66cb05acfc40198510a10", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5c0548ae0db834001966a3c2", + "5ac66c5d5acfc4001718d314" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_mount_000", + "_id": "5ac66cb05acfc40198510a1b", + "_parent": "5ac66cb05acfc40198510a10", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "638db77630c4240f9e06f8b6", + "63d114019e35b334d82302f7", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "5ac66cb05acfc40198510a1c", + "_parent": "5ac66cb05acfc40198510a10", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber556x45NATO", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 5500, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 650, + "Ergonomics": 35, + "Velocity": 1.8, + "bEffDist": 650, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5ac66c5d5acfc4001718d314", + "defAmmo": "59e6920f86f77411d82aa167", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5ac66cb05acfc40198510a12", + "_parent": "5ac66cb05acfc40198510a10", + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.05, + "AimPlane": 0.19, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.4, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.053, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 300, + "RecoilForceUp": 107, + "RecolDispersion": 7, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 100, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.9701, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.0008, + "HeatFactorByShot": 1.355, "AllowOverheat": true, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, @@ -216517,23 +221321,23 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, - "6165ac306ef05c2ce828ef74": { - "_id": "6165ac306ef05c2ce828ef74", - "_name": "weapon_fn_mk17_762x51_fde", - "_parent": "5447b5f14bdc2d61278b4567", + "5beed0f50db834001c062b12": { + "_id": "5beed0f50db834001c062b12", + "_name": "weapon_izhmash_rpk16_545x39", + "_parent": "5447bed64bdc2d97278b4568", "_type": "Item", "_props": { - "Name": "Штурмовая винтовка Colt M4A1 5.56x45", - "ShortName": "M4A1 5.56x45", - "Description": "Colt M4A1- штурмовая винтовка (карабин) созданная в США на базе платформы AR-15 под патрон 5.56x45 NATO. Планировалась к вооружению экипажей боевых машин и расчетов техники, которым было необходимо иметь оружие меньших габаритов чем штатное вооружение но использующее стандартный боеприпас. Однако вскоре US SOCOM (Командование Сил Специальных Операций США) приняло на вооружение M4A1 для всех входящих в его состав подразделений. Затем последовало полное принятие M4A1 на вооружение в армии и морской пехоте США.", - "Weight": 0.85, + "Name": "weapon_izhmash_rpk16_545x39", + "ShortName": "weapon_izhmash_rpk16_545x39", + "Description": "weapon_izhmash_rpk16_545x39", + "Weight": 1.5, "BackgroundColor": "black", - "Width": 1, + "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "weap_ar", "Prefab": { - "path": "assets/content/weapons/scar/weapon_fn_mk17_762x51_fde_container.bundle", + "path": "assets/content/weapons/rpk16/weapon_izhmash_rpk16_545x39_container.bundle", "rcid": "" }, "UsePrefab": { @@ -216550,11 +221354,424 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, + "LootExperience": 10, + "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 230, - "RepairSpeed": 15, + "RepairCost": 123, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "5beed0f50db834001c062b18", + "_parent": "5beed0f50db834001c062b12", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "623c3be0484b5003161840dc", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", + "5e2192a498a36665e8337386", + "6087e663132d4d12c81fd96b", + "5f6341043ada5942720e2dc5", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "5beed0f50db834001c062b19", + "_parent": "5beed0f50db834001c062b12", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5beec91a0db834001961942d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5beed0f50db834001c062b1c", + "_parent": "5beed0f50db834001c062b12", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "564ca9df4bdc2d35148b4569", + "564ca99c4bdc2d16268b4589", + "55d480c04bdc2d1d4e8b456a", + "5cbdaf89ae9215000e5b9c94", + "55d481904bdc2d8c2f8b456a", + "55d482194bdc2d1d4e8b456b", + "55d4837c4bdc2d1d4e8b456c", + "5aaa4194e5b5b055d06310a5", + "5bed61680db834001d2c45ab", + "5bed625c0db834001c062946", + "64b9e265c94d0d15c5027e35", + "649ec30cb013f04a700e60fb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_charge", + "_id": "5beed0f50db834001c062b1e", + "_parent": "5beed0f50db834001c062b12", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock_001", + "_id": "5bf2956d0db834001a6f9ff9", + "_parent": "5beed0f50db834001c062b12", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5beec8b20db834001961942a", + "649ec87d8007560a9001ab36" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "5bf29d9d0db834001b095753", + "_parent": "5beed0f50db834001c062b12", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5beec3e30db8340019619424" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "5bf29da70db834001a6f9ffc", + "_parent": "5beed0f50db834001c062b12", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5beec1bd0db834001e6006f3", + "5beec2820db834001b095426" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "machinegun", + "weapUseType": "primary", + "ammoCaliber": "Caliber545x39", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 6600, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 650, + "Ergonomics": 45, + "Velocity": 1.8, + "bEffDist": 650, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "55d480c04bdc2d1d4e8b456a", + "defAmmo": "56dff3afd2720bba668b4567", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5beed0f50db834001c062b14", + "_parent": "5beed0f50db834001c062b12", + "_props": { + "filters": [ + { + "Filter": [ + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.04, + "AimPlane": 0.19, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.4, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.053, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 333, + "RecoilForceUp": 112, + "RecolDispersion": 8, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.6, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2.4, + "y": 2.4, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock_001", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.985, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.015, + "HeatFactorByShot": 1.24, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "65268d8ecb944ff1e90ea385": { + "_id": "65268d8ecb944ff1e90ea385", + "_name": "weapon_zid_rpdn_762x39", + "_parent": "5447bed64bdc2d97278b4568", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_rpk16_545x39", + "ShortName": "weapon_izhmash_rpk16_545x39", + "Description": "weapon_izhmash_rpk16_545x39", + "Weight": 2.94, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/rpd/weapon_zid_rpdn_762x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 235, + "RepairSpeed": 5, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -216579,62 +221796,16 @@ "IsUnremovable": false, "Grids": [], "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "6165ac306ef05c2ce828ef76", - "_parent": "6165ac306ef05c2ce828ef74", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "602e71bd53a60014f9705bfa", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5cc9bcaed7f00c011c04e179", - "5bb20e18d4351e00320205d5", - "5bb20e0ed4351e3bac1212dc", - "6193dcd0f8ee7e52e4210a28", - "5d025cc1d7ad1a53845279ef", - "5c6d7b3d2e221600114c9b7d", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "55802f5d4bdc2dac148b458f", - "5d15cf3bd7ad1a67e71518b2", - "59db3a1d86f77429e05b4e92", - "5fbcbd6c187fea44d52eda14", - "59db3acc86f7742a2c4ab912", - "59db3b0886f77429d72fb895", - "615d8faecabb9b7ad90f4d5d", - "5b07db875acfc40dc528a5f6", - "63f5feead259b42f0b4d6d0f", - "652911675ae2ae97b80fdf3c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_magazine", - "_id": "6165ac306ef05c2ce828ef77", - "_parent": "6165ac306ef05c2ce828ef74", + "_id": "65268d8ecb944ff1e90ea387", + "_parent": "65268d8ecb944ff1e90ea385", "_props": { "filters": [ { "AnimationIndex": -1, "Filter": [ - "618168dc8004cc50514c34fc", - "6183d53f1cb55961fa0fdcda" + "6513f0a194c72326990a3868" ] } ] @@ -216643,36 +221814,16 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c394bdc2dae468b4577" }, - { - "_name": "mod_reciever", - "_id": "6165ac306ef05c2ce828ef78", - "_parent": "6165ac306ef05c2ce828ef74", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6165adcdd3a39d50044c120f", - "6165aeedfaa1272e431521e3" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_stock", - "_id": "6165ac306ef05c2ce828ef79", - "_parent": "6165ac306ef05c2ce828ef74", + "_id": "65268d8ecb944ff1e90ea388", + "_parent": "65268d8ecb944ff1e90ea385", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "61816734d8e3106d9806c1f3", - "61825d06d92c473c770215de" + "6513f1798cb24472490ee331" ] } ] @@ -216682,15 +221833,16 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_charge", - "_id": "61816ce96c780c1e710c9b07", - "_parent": "6165ac306ef05c2ce828ef74", + "_name": "mod_barrel", + "_id": "65268d8ecb944ff1e90ea389", + "_parent": "65268d8ecb944ff1e90ea385", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "6181688c6c780c1e710c9b04" + "6513eff1e06849f06c0957d4", + "65266fd43341ed9aa903dd56" ] } ] @@ -216698,54 +221850,345 @@ "_required": true, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "65268d8ecb944ff1e90ea38a", + "_parent": "65268d8ecb944ff1e90ea385", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6513f05a94c72326990a3866" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "65268d8ecb944ff1e90ea38b", + "_parent": "65268d8ecb944ff1e90ea385", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6513f153e63f29908d0ffaba" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "65268dc17bdd1243830efbd6", + "_parent": "65268d8ecb944ff1e90ea385", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "638db77630c4240f9e06f8b6", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", + "weapClass": "machinegun", "weapUseType": "primary", - "ammoCaliber": "Caliber762x51", + "ammoCaliber": "Caliber762x39", "Durability": 100, "MaxDurability": 100, - "OperatingResource": 5500, + "OperatingResource": 9000, "RepairComplexity": 0, "durabSpawnMin": 25, "durabSpawnMax": 75, "isFastReload": true, "weapFireType": [ - "single", "fullauto" ], + "SingleFireRate": 700, + "CanQueueSecondShot": true, + "bFirerate": 700, + "Ergonomics": 36, + "Velocity": 1.8, + "bEffDist": 800, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "6513f0a194c72326990a3868", + "defAmmo": "5656d7c34bdc2d9d198b4587", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0, + "AimPlane": 0.19, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.2, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.054, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 502, + "RecoilForceUp": 107, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.55, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.6, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 27, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2.4, + "y": 2.4, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.965, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.07, + "HeatFactorByShot": 1.14, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": true, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5ae083b25acfc4001a5fc702": { + "_id": "5ae083b25acfc4001a5fc702", + "_name": "weapon_test_consumable_items", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_test_consumable_items", + "ShortName": "weapon_test_consumable_items", + "Description": "weapon_test_consumable_items", + "Weight": 0.686, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_pistol", + "Prefab": { + "path": "assets/content/weapons/usable_items/test_consumable_items/weapon_test_consumable_items_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 10, + "RepairSpeed": 1, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "secondary", + "ammoCaliber": "Caliber9x18PM", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 13000, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single" + ], "SingleFireRate": 450, "CanQueueSecondShot": true, - "bFirerate": 600, - "Ergonomics": 45, - "Velocity": 0, - "bEffDist": 500, + "bFirerate": 30, + "Ergonomics": 50, + "Velocity": -4.54, + "bEffDist": 50, "bHearDist": 80, "isChamberLoad": true, "chamberAmmoCount": 1, "isBoltCatch": true, - "defMagType": "618168dc8004cc50514c34fc", - "defAmmo": "5e023e53d4353e3302577c4c", + "defMagType": "5448c12b4bdc2d02308b456f", + "defAmmo": "573719762459775a626ccbc1", "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, + "shotgunDispersion": 10, "Chambers": [ { "_name": "patron_in_weapon", - "_id": "6165ac306ef05c2ce828ef7a", - "_parent": "6165ac306ef05c2ce828ef74", + "_id": "5ae083b25acfc4001a5fc705", + "_parent": "5ae083b25acfc4001a5fc702", "_props": { "filters": [ { "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" + "573718ba2459775a75491131", + "573719df2459775a626ccbc2", + "57371aab2459775a77142f22", + "57371b192459775a9f58a5e0", + "57371e4124597760ff7b25f1", + "57371eb62459776125652ac1", + "57371f8d24597761006c6a81", + "5737201124597760fc4431f1", + "5737207f24597760ff7b25f2", + "57371f2b24597761224311f1", + "573719762459775a626ccbc1", + "573720e02459776143012541", + "57372140245977611f70ee91", + "5737218f245977612125ba51" ] } ] @@ -216756,11 +222199,11 @@ } ], "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0.16, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": true, + "CenterOfImpact": 0.32, + "AimPlane": 0.026, + "DeviationCurve": 1, + "DeviationMax": 100, + "Foldable": false, "Retractable": false, "TacticalReloadStiffnes": { "x": 0.95, @@ -216769,26 +222212,26 @@ }, "TacticalReloadFixation": 0.95, "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.5, - "RecoilDampingHandRotation": 0.87, - "RecoilCamera": 0.071, + "RecoilReturnSpeedHandRotation": 5, + "RecoilDampingHandRotation": 0.92, + "RecoilCamera": 0.024, "RecoilStableIndexShot": 5, - "RecoilForceBack": 412, - "RecoilForceUp": 164, - "RecolDispersion": 12, - "RecoilPosZMult": 0.6, - "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilForceBack": 325, + "RecoilForceUp": 553, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.57, "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, + "RecoilAngle": 85, "RecoilStableAngleIncreaseStep": 2.5, "ProgressRecoilAngleOnStable": { "x": 0, - "y": 28, + "y": 30, "z": 0 }, "RecoilCenter": { "x": 0, - "y": -0.24, + "y": 0, "z": 0 }, "PostRecoilVerticalRangeHandRotation": { @@ -216828,10 +222271,10 @@ "z": 0 }, "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 4, + "CameraSnap": 3.5, "RotationCenter": { "x": 0, - "y": -0.1, + "y": 0, "z": 0 }, "RotationCenterNoStock": { @@ -216840,8 +222283,457 @@ "z": 0 }, "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 1, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1, + "AllowOverheat": false, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5448bd6b4bdc2dfc2f8b4569" + }, + "5c488a752e221602b412af63": { + "_id": "5c488a752e221602b412af63", + "_name": "weapon_dt_mdr_556x45", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "Штурмовая винтовка Colt M4A1 5.56x45", + "ShortName": "M4A1 5.56x45", + "Description": "Colt M4A1- штурмовая винтовка (карабин) созданная в США на базе платформы AR-15 под патрон 5.56x45 NATO. Планировалась к вооружению экипажей боевых машин и расчетов техники, которым было необходимо иметь оружие меньших габаритов чем штатное вооружение но использующее стандартный боеприпас. Однако вскоре US SOCOM (Командование Сил Специальных Операций США) приняло на вооружение M4A1 для всех входящих в его состав подразделений. Затем последовало полное принятие M4A1 на вооружение в армии и морской пехоте США.", + "Weight": 2.8, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/mdr/weapon_dt_mdr_556x45_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 199, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "5c488a752e221602b412af65", + "_parent": "5c488a752e221602b412af63", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c48a2c22e221602b313fb6c", + "5dcbd6dddbd3d91b3e5468de" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5c488a752e221602b412af66", + "_parent": "5c488a752e221602b412af63", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "55d4887d4bdc2d962f8b4570", + "61840bedd92c473c77021635", + "61840d85568c120fdd2962a5", + "5c05413a0db834001c390617", + "5c6d450c2e221600114c997d", + "5c6d42cb2e2216000e69d7d1", + "59c1383d86f774290a37e0ca", + "5aaa5e60e5b5b000140293d6", + "5448c1d04bdc2dff2f8b4569", + "5aaa5dfee5b5b000140293d3", + "5d1340b3d7ad1a0b52682ed7", + "544a378f4bdc2d30388b4567", + "5d1340bdd7ad1a0e8d245aab", + "55802d5f4bdc2dac148b458e", + "5d1340cad7ad1a0b0b249869", + "6241c2c2117ad530666a5108", + "5c6592372e221600133e47d7", + "544a37c44bdc2d25388b4567", + "5c6d46132e221601da357d56" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_handguard", + "_id": "5c488acd2e221602b177c2ab", + "_parent": "5c488a752e221602b412af63", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c48a14f2e2216152006edd7", + "5dcbd6b46ec07c0c4347a564" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "5c488ad82e221602b412af6b", + "_parent": "5c488a752e221602b412af63", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c48a2852e221602b21d5923" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "5c488ae82e221602b313fa6e", + "_parent": "5c488a752e221602b412af63", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "626bb8532c923541184624b4", + "62811f461d5df4475f46a332", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5c488af32e2216398b5a9608", + "_parent": "5c488a752e221602b412af63", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ba26b17d4351e00367f9bdd", + "5dfa3d7ac41b2312ea33362a", + "5c1780312e221602b66cc189", + "5fb6564947ce63734e3fa1da", + "5bc09a18d4351e003562b68e", + "5c18b9192e2216398b5a8104", + "5fc0fa957283c4046c58147e", + "5894a81786f77427140b8347", + "55d5f46a4bdc2d1b198b4567", + "5ae30bad5acfc400185c2dc4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber556x45NATO", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 4600, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 650, + "Ergonomics": 72, + "Velocity": 0, + "bEffDist": 500, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "55d4887d4bdc2d962f8b4570", + "defAmmo": "59e6920f86f77411d82aa167", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5c488a752e221602b412af6a", + "_parent": "5c488a752e221602b412af63", + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0.16, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.6, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.057, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 242, + "RecoilForceUp": 74, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.12, + "z": -0.01 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.12, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.12, + "z": -0.03 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, "SightingRange": 100, "MinRepairDegradation": 0, "MaxRepairDegradation": 0.03, @@ -216861,10 +222753,10 @@ "AllowMisfire": true, "AllowSlide": true, "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, + "HeatFactorGun": 0.985, "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1.46, + "CoolFactorGunMods": 1.015, + "HeatFactorByShot": 1.27, "AllowOverheat": true, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, @@ -216880,6 +222772,1987 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, + "583990e32459771419544dd2": { + "_id": "583990e32459771419544dd2", + "_name": "weapon_izhmash_aks74un_545x39", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_aks74un_545x39", + "ShortName": "weapon_izhmash_aks74un_545x39", + "Description": "weapon_izhmash_aks74un_545x39", + "Weight": 1.85, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/aks74u/weapon_izhmash_aks74ub_545x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 111, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "583990e32459771419544dd5", + "_parent": "583990e32459771419544dd2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "623c3be0484b5003161840dc", + "628c9ab845c59e5b80768a81", + "628a664bccaab13006640e47", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "583990e32459771419544dd6", + "_parent": "583990e32459771419544dd2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59ecc28286f7746d7a68aa8c", + "5ab626e4d8ce87272e4c6e43", + "57dc347d245977596754e7a1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "583990e32459771419544dd7", + "_parent": "583990e32459771419544dd2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "583990e32459771419544dd8", + "_parent": "583990e32459771419544dd2", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "564ca9df4bdc2d35148b4569", + "564ca99c4bdc2d16268b4589", + "55d480c04bdc2d1d4e8b456a", + "5cbdaf89ae9215000e5b9c94", + "55d481904bdc2d8c2f8b456a", + "55d482194bdc2d1d4e8b456b", + "55d4837c4bdc2d1d4e8b456c", + "5aaa4194e5b5b055d06310a5", + "5bed61680db834001d2c45ab", + "5bed625c0db834001c062946", + "649ec30cb013f04a700e60fb", + "64b9e265c94d0d15c5027e35" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_muzzle", + "_id": "583990e32459771419544dd9", + "_parent": "583990e32459771419544dd2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac72e945acfc43f3b691116", + "5ac7655e5acfc40016339a19", + "5649aa744bdc2ded0b8b457e", + "5f633f791b231926f2329f13", + "5943eeeb86f77412d6384f6b", + "5cc9a96cd7f00c011c04e04a", + "615d8f5dd92c473c770212ef", + "5649ab884bdc2ded0b8b457f", + "57dc324a24597759501edc20", + "59bffc1f86f77435b128b872", + "593d493f86f7745e6b2ceb22", + "564caa3d4bdc2d17108b458e", + "57ffb0e42459777d047111c5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "583990e32459771419544dda", + "_parent": "583990e32459771419544dd2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57dc334d245977597164366f", + "5839a7742459773cf9693481", + "655cb6b5d680a544f30607fa" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5839957824597712102f7c81", + "_parent": "583990e32459771419544dd2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "638db77630c4240f9e06f8b6", + "63d114019e35b334d82302f7", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_gas_block", + "_id": "59d37aa286f7747e673f3977", + "_parent": "583990e32459771419544dd2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59d36a0086f7747e673f3946" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber545x39", + "Durability": 95, + "MaxDurability": 100, + "OperatingResource": 5000, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 650, + "Ergonomics": 44, + "Velocity": -17.9, + "bEffDist": 300, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "55d480c04bdc2d1d4e8b456a", + "defAmmo": "56dff3afd2720bba668b4567", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "583990e32459771419544dd3", + "_parent": "583990e32459771419544dd2", + "_props": { + "filters": [ + { + "Filter": [ + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" + ], + "MaxStackCount": 0 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.1, + "AimPlane": 0.15, + "DeviationCurve": 1.9, + "DeviationMax": 15.5, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.7, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.067, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 373, + "RecoilForceUp": 102, + "RecolDispersion": 12, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.7, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1.0691, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.1323, + "HeatFactorByShot": 1.555, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5644bd2b4bdc2d3b4c8b4572" + }, + "5a0ec13bfcdbcb00165aa685": { + "_id": "5a0ec13bfcdbcb00165aa685", + "_name": "weapon_izhmash_akmn_762x39", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_akm_762x39", + "ShortName": "weapon_izhmash_akm_762x39", + "Description": "weapon_izhmash_akm_762x39", + "Weight": 2.152, + "BackgroundColor": "black", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/akm/weapon_izhmash_akmn_762x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 170, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_gas_block", + "_id": "5a0ec13bfcdbcb00165aa687", + "_parent": "5a0ec13bfcdbcb00165aa685", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a01ad4786f77450561fda02", + "59c6633186f7740cf0493bb9", + "59d64ec286f774171d1e0a42", + "59e649f986f77411d949b246", + "5b237e425acfc4771e1be0b6", + "59ccfdba86f7747f2109a587", + "5cf656f2d7f00c06585fb6eb", + "5d4aab30a4b9365435358c55" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_launcher", + "_id": "5a0ec13bfcdbcb00165aa688", + "_parent": "5a0ec13bfcdbcb00165aa685", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5648b62b4bdc2d9d488b4585", + "62e7e7bbe6da9612f743f1e0" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5a0ec13bfcdbcb00165aa689", + "_parent": "5a0ec13bfcdbcb00165aa685", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59d64fc686f774171b243fe2", + "5a0d716f1526d8000d26b1e2", + "5f633f68f5750b524b45f112", + "5c878ebb2e2216001219d48a", + "59e61eb386f77440d64f5daf", + "59e8a00d86f7742ad93b569c", + "5a9ea27ca2750c00137fa672", + "5cc9ad73d7f00c000e2579d4", + "5c7951452e221644f31bfd5c", + "615d8e9867085e45ef1409c6", + "5a0abb6e1526d8000a025282", + "59bffc1f86f77435b128b872", + "593d489686f7745c6255d58a", + "5a0d63621526d8dba31fe3bf", + "5a9fbacda2750c00141e080f", + "64942bfc6ee699f6890dff95" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "5a0ec13bfcdbcb00165aa68a", + "_parent": "5a0ec13bfcdbcb00165aa685", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "619b69037b9de8162902673e", + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "623c3be0484b5003161840dc", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "5a0ec13bfcdbcb00165aa68b", + "_parent": "5a0ec13bfcdbcb00165aa685", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d2c76ed48f03532f2136169", + "5d2c770c48f0354b4a07c100", + "59d6507c86f7741b846413a2", + "59e6449086f7746c9f75e822", + "5d2c772c48f0355d95672c25", + "5649af884bdc2d1b2b8b4589", + "628a665a86cbd9750d2ff5e5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5a0ec13bfcdbcb00165aa68c", + "_parent": "5a0ec13bfcdbcb00165aa685", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59d650cf86f7741b846413a4", + "5a0eb980fcdbcb001a3b00a6", + "5649d9a14bdc2d79388b4580", + "628a7b23b0f75035732dd565" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5a0ec13bfcdbcb00165aa68d", + "_parent": "5a0ec13bfcdbcb00165aa685", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649b0fc4bdc2d17108b4588", + "5cbdb1b0ae9215000d50e105", + "5649b1c04bdc2d16268b457c", + "5cf518cfd7f00c065b422214", + "5b04473a5acfc40018632f70", + "5e217ba4c1434648c13568cd", + "59d6514b86f774171a068a08", + "5b0e794b5acfc47a877359b2", + "59e6227d86f77440d64f5dc2", + "59e89d0986f77427600d226e", + "6087e2a5232e5a31c233d552", + "5649b2314bdc2d79388b4576", + "5b222d335acfc4771e1be099", + "628a6678ccaab13006640e49" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5a0ec13bfcdbcb00165aa68e", + "_parent": "5a0ec13bfcdbcb00165aa685", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "59e5d83b86f7745aed03d262", + "5a01c29586f77474660c694c", + "5ac66bea5acfc43b321d4aec", + "59d625f086f774661516605d", + "5b1fd4e35acfc40018633c39", + "5a0060fc86f7745793204432", + "59e5f5a486f7746c530b3ce2", + "5b1fb3e15acfc4001637f068", + "59d6272486f77466146386ff", + "5e21a3c67e40bd02257a008a", + "5cbdc23eae9215001136a407", + "5c6175362e221600133e3b94", + "59fafc5086f7740dbe19f6c3", + "59fafc9386f774067d462453", + "5cfe8010d7ad1a59283b14c6", + "6272874a6c47bd74f92e2087", + "64b9cf0ac12b9c38db26923a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_charge", + "_id": "5a0ec13bfcdbcb00165aa68f", + "_parent": "5a0ec13bfcdbcb00165aa685", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5a0ec1affcdbcb00165aa690", + "_parent": "5a0ec13bfcdbcb00165aa685", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "638db77630c4240f9e06f8b6", + "63d114019e35b334d82302f7", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5a0f0a68fcdbcb001a3b00c1", + "_parent": "5a0ec13bfcdbcb00165aa685", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a0f096dfcdbcb0176308b15" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x39", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 6000, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 600, + "Ergonomics": 26, + "Velocity": 1.8, + "bEffDist": 400, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "59d625f086f774661516605d", + "defAmmo": "5656d7c34bdc2d9d198b4587", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5a0ec13bfcdbcb00165aa686", + "_parent": "5a0ec13bfcdbcb00165aa685", + "_props": { + "filters": [ + { + "Filter": [ + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af5a8532cf95ee0a0dbd", + "64b7af434b75259c590fa893", + "64b7af734b75259c590fa895" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.066, + "AimPlane": 0.19, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.4, + "RecoilDampingHandRotation": 0.86, + "RecoilCamera": 0.069, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 403, + "RecoilForceUp": 162, + "RecolDispersion": 11, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 85, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.9306, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 0.9503, + "HeatFactorByShot": 1.34, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "624c0b3340357b5f566e8766": { + "_id": "624c0b3340357b5f566e8766", + "_name": "weapon_rsp30_yellow", + "_parent": "5447bedf4bdc2d87278b4568", + "_type": "Item", + "_props": { + "Name": "weapon_zid_sp81_26x75", + "ShortName": "weapon_zid_sp81_26x75", + "Description": "weapon_zid_sp81_26x75\n\n", + "Weight": 0.19, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "spec_multitool", + "Prefab": { + "path": "assets/content/weapons/rsp30/weapon_rsp30_yellow_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 550, + "RepairSpeed": 2, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": true, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "specialWeapon", + "weapUseType": "secondary", + "ammoCaliber": "Caliber26x75", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 900, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 70, + "isFastReload": false, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": false, + "bFirerate": 30, + "Ergonomics": 51, + "Velocity": 0, + "bEffDist": 50, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5a718b548dc32e000d46d262", + "defAmmo": "624c09e49b98e019a3315b66", + "AdjustCollimatorsToTrajectory": true, + "shotgunDispersion": 10, + "Chambers": [], + "ReloadMode": "OnlyBarrel", + "CenterOfImpact": 0.7, + "AimPlane": 0.026, + "DeviationCurve": 1.9, + "DeviationMax": 15, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.345, + "RecoilReturnSpeedHandRotation": 1, + "RecoilDampingHandRotation": 0.9, + "RecoilCamera": 0.024, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 400, + "RecoilForceUp": 170, + "RecolDispersion": 35, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.57, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.47, + "z": -0.05 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -4, + "y": 4, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.01, + "y": 0.11, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.01, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.2, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 1, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1, + "HeatFactorGun": 1, + "CoolFactorGun": 0.576, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1, + "AllowOverheat": false, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0, + "IsFlareGun": false, + "IsOneoff": true, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": true + }, + "_proto": "5448bd6b4bdc2dfc2f8b4569" + }, + "5cdeb229d7f00c000e7ce174": { + "_id": "5cdeb229d7f00c000e7ce174", + "_name": "weapon_ckib_nsv_utes_127x108", + "_parent": "5447bed64bdc2d97278b4568", + "_type": "Item", + "_props": { + "Name": "weapon_ckib_nsv_utes_127x108", + "ShortName": "weapon_ckib_nsv_utes_127x108", + "Description": "weapon_ckib_nsv_utes_127x108\n", + "Weight": 0.1, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/utes/weapon_ckib_nsv_utes_127x108_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 60, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "5cffa611d7ad1a59283b17d6", + "_parent": "5cdeb229d7f00c000e7ce174", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5cffa483d7ad1a049e54ef1c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "machinegun", + "weapUseType": "primary", + "ammoCaliber": "Caliber545x39", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 5000, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 650, + "Ergonomics": 100, + "Velocity": 1.8, + "bEffDist": 650, + "bHearDist": 80, + "isChamberLoad": false, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5cffa483d7ad1a049e54ef1e", + "defAmmo": "5cde8864d7f00c0010373be1", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5cdeb229d7f00c000e7ce176", + "_parent": "5cdeb229d7f00c000e7ce174", + "_props": { + "filters": [ + { + "Filter": [ + "5cde8864d7f00c0010373be1", + "5d2f2ab648f03550091993ca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.15, + "AimPlane": 0.19, + "DeviationCurve": 1, + "DeviationMax": 100, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.247, + "RecoilReturnSpeedHandRotation": 2.2, + "RecoilDampingHandRotation": 0.8, + "RecoilCamera": 0.055, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 165, + "RecoilForceUp": 26, + "RecolDispersion": 12, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.55, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.6, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2.4, + "y": 2.4, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 8, + "RotationCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 1, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1, + "AllowOverheat": false, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": true, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "59ff346386f77477562ff5e2": { + "_id": "59ff346386f77477562ff5e2", + "_name": "weapon_izhmash_akms_762x39", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_akms_762x39", + "ShortName": "weapon_izhmash_akms_762x39", + "Description": "weapon_izhmash_akms_762x39", + "Weight": 2.092, + "BackgroundColor": "black", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/akm/weapon_izhmash_akms_762x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 139, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_gas_block", + "_id": "59ff346386f77477562ff5e4", + "_parent": "59ff346386f77477562ff5e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a01ad4786f77450561fda02", + "59c6633186f7740cf0493bb9", + "59d64ec286f774171d1e0a42", + "59e649f986f77411d949b246", + "5b237e425acfc4771e1be0b6", + "59ccfdba86f7747f2109a587", + "5cf656f2d7f00c06585fb6eb", + "5d4aab30a4b9365435358c55" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_launcher", + "_id": "59ff346386f77477562ff5e5", + "_parent": "59ff346386f77477562ff5e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5648b62b4bdc2d9d488b4585", + "62e7e7bbe6da9612f743f1e0" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "59ff346386f77477562ff5e6", + "_parent": "59ff346386f77477562ff5e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59d64fc686f774171b243fe2", + "5a0d716f1526d8000d26b1e2", + "5f633f68f5750b524b45f112", + "5c878ebb2e2216001219d48a", + "59e61eb386f77440d64f5daf", + "59e8a00d86f7742ad93b569c", + "5a9ea27ca2750c00137fa672", + "5cc9ad73d7f00c000e2579d4", + "5c7951452e221644f31bfd5c", + "615d8e9867085e45ef1409c6", + "5a0abb6e1526d8000a025282", + "59bffc1f86f77435b128b872", + "593d489686f7745c6255d58a", + "5a0d63621526d8dba31fe3bf", + "5a9fbacda2750c00141e080f", + "64942bfc6ee699f6890dff95" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip_akms", + "_id": "59ff346386f77477562ff5e7", + "_parent": "59ff346386f77477562ff5e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "623c3be0484b5003161840dc", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "59ff346386f77477562ff5e8", + "_parent": "59ff346386f77477562ff5e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d2c76ed48f03532f2136169", + "5d2c770c48f0354b4a07c100", + "59d6507c86f7741b846413a2", + "59e6449086f7746c9f75e822", + "5d2c772c48f0355d95672c25", + "5649af884bdc2d1b2b8b4589", + "628a665a86cbd9750d2ff5e5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "59ff346386f77477562ff5e9", + "_parent": "59ff346386f77477562ff5e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59d650cf86f7741b846413a4", + "5a0eb980fcdbcb001a3b00a6", + "5649d9a14bdc2d79388b4580", + "628a7b23b0f75035732dd565" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock_akms", + "_id": "59ff346386f77477562ff5ea", + "_parent": "59ff346386f77477562ff5e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59ff3b6a86f77477562ff5ed", + "5abcd472d8ce8700166032ae" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "59ff346386f77477562ff5eb", + "_parent": "59ff346386f77477562ff5e2", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "59e5d83b86f7745aed03d262", + "5a01c29586f77474660c694c", + "5ac66bea5acfc43b321d4aec", + "59d625f086f774661516605d", + "5b1fd4e35acfc40018633c39", + "5a0060fc86f7745793204432", + "59e5f5a486f7746c530b3ce2", + "5b1fb3e15acfc4001637f068", + "59d6272486f77466146386ff", + "5e21a3c67e40bd02257a008a", + "5cbdc23eae9215001136a407", + "5c6175362e221600133e3b94", + "59fafc5086f7740dbe19f6c3", + "59fafc9386f774067d462453", + "5cfe8010d7ad1a59283b14c6", + "6272874a6c47bd74f92e2087", + "64b9cf0ac12b9c38db26923a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_charge", + "_id": "59ff346386f77477562ff5ec", + "_parent": "59ff346386f77477562ff5e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5a3fed5286f7741097240a8f", + "_parent": "59ff346386f77477562ff5e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a0f096dfcdbcb0176308b15" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x39", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 6000, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 600, + "Ergonomics": 24, + "Velocity": 1.8, + "bEffDist": 400, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "59d625f086f774661516605d", + "defAmmo": "5656d7c34bdc2d9d198b4587", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "59ff346386f77477562ff5e3", + "_parent": "59ff346386f77477562ff5e2", + "_props": { + "filters": [ + { + "Filter": [ + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af5a8532cf95ee0a0dbd", + "64b7af434b75259c590fa893", + "64b7af734b75259c590fa895" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.067, + "AimPlane": 0.19, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.4, + "RecoilDampingHandRotation": 0.86, + "RecoilCamera": 0.069, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 403, + "RecoilForceUp": 162, + "RecolDispersion": 11, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 85, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock_akms", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.9306, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 0.9503, + "HeatFactorByShot": 1.34, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, "5dcbd56fdbd3d91b3e5468d5": { "_id": "5dcbd56fdbd3d91b3e5468d5", "_name": "weapon_dt_mdr_762x51", @@ -217702,6685 +225575,6 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, - "5bb2475ed4351e00853264e3": { - "_id": "5bb2475ed4351e00853264e3", - "_name": "weapon_hk_416a5_556x45", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_hk_416a5_556x45", - "ShortName": "weapon_hk_416a5_556x45", - "Description": "weapon_hk_416a5_556x45", - "Weight": 0.52, - "BackgroundColor": "black", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/hk416/weapon_hk_416a5_556x45_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 185, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "5bb2475ed4351e00853264e5", - "_parent": "5bb2475ed4351e00853264e3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "602e71bd53a60014f9705bfa", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5cc9bcaed7f00c011c04e179", - "5bb20e18d4351e00320205d5", - "5bb20e0ed4351e3bac1212dc", - "6193dcd0f8ee7e52e4210a28", - "5d025cc1d7ad1a53845279ef", - "5c6d7b3d2e221600114c9b7d", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "55802f5d4bdc2dac148b458f", - "5d15cf3bd7ad1a67e71518b2", - "59db3a1d86f77429e05b4e92", - "5fbcbd6c187fea44d52eda14", - "59db3acc86f7742a2c4ab912", - "59db3b0886f77429d72fb895", - "615d8faecabb9b7ad90f4d5d", - "5b07db875acfc40dc528a5f6", - "63f5feead259b42f0b4d6d0f", - "652911675ae2ae97b80fdf3c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5bb2475ed4351e00853264e6", - "_parent": "5bb2475ed4351e00853264e3", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "55d4887d4bdc2d962f8b4570", - "61840bedd92c473c77021635", - "61840d85568c120fdd2962a5", - "5c05413a0db834001c390617", - "5c6d450c2e221600114c997d", - "5c6d42cb2e2216000e69d7d1", - "59c1383d86f774290a37e0ca", - "5aaa5e60e5b5b000140293d6", - "5448c1d04bdc2dff2f8b4569", - "5aaa5dfee5b5b000140293d3", - "5d1340b3d7ad1a0b52682ed7", - "544a378f4bdc2d30388b4567", - "5d1340bdd7ad1a0e8d245aab", - "55802d5f4bdc2dac148b458e", - "5d1340cad7ad1a0b0b249869", - "6241c2c2117ad530666a5108", - "5c6592372e221600133e47d7", - "544a37c44bdc2d25388b4567", - "5c6d46132e221601da357d56" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_reciever", - "_id": "5bb2475ed4351e00853264e7", - "_parent": "5bb2475ed4351e00853264e3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bb20d53d4351e4502010a69" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5bb2475ed4351e00853264e8", - "_parent": "5bb2475ed4351e00853264e3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b0800175acfc400153aebd4", - "5bb20e58d4351e00320205d7", - "5947e98b86f774778f1448bc", - "5947eab886f77475961d96c5", - "591aef7986f774139d495f03", - "591af10186f774139d495f0e", - "627254cc9c563e6e442c398f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "5bb2475ed4351e00853264e9", - "_parent": "5bb2475ed4351e00853264e3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0faf68d174af02a96260b8", - "56ea7165d2720b6e518b4583", - "55d44fd14bdc2d962f8b456e", - "5ea16d4d5aad6446a939753d", - "5bb20dbcd4351e44f824c04e", - "6033749e88382f4fab3fd2c5", - "5b2240bf5acfc40dc528af69", - "5d44334ba4b9362b346d1948", - "5f633ff5c444ce7e3c30a006", - "651bf5617b3b552ef6712cb7" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber556x45NATO", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 5500, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 850, - "Ergonomics": 51, - "Velocity": 0, - "bEffDist": 500, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "55d4887d4bdc2d962f8b4570", - "defAmmo": "59e68f6f86f7746c9f75e846", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5bb2475ed4351e00853264ea", - "_parent": "5bb2475ed4351e00853264e3", - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0.16, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.5, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.065, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 358, - "RecoilForceUp": 125, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.4, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.24, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.03, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1.16, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.025, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5c488a752e221602b412af63": { - "_id": "5c488a752e221602b412af63", - "_name": "weapon_dt_mdr_556x45", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "Штурмовая винтовка Colt M4A1 5.56x45", - "ShortName": "M4A1 5.56x45", - "Description": "Colt M4A1- штурмовая винтовка (карабин) созданная в США на базе платформы AR-15 под патрон 5.56x45 NATO. Планировалась к вооружению экипажей боевых машин и расчетов техники, которым было необходимо иметь оружие меньших габаритов чем штатное вооружение но использующее стандартный боеприпас. Однако вскоре US SOCOM (Командование Сил Специальных Операций США) приняло на вооружение M4A1 для всех входящих в его состав подразделений. Затем последовало полное принятие M4A1 на вооружение в армии и морской пехоте США.", - "Weight": 2.8, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/mdr/weapon_dt_mdr_556x45_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 199, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "5c488a752e221602b412af65", - "_parent": "5c488a752e221602b412af63", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c48a2c22e221602b313fb6c", - "5dcbd6dddbd3d91b3e5468de" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5c488a752e221602b412af66", - "_parent": "5c488a752e221602b412af63", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "55d4887d4bdc2d962f8b4570", - "61840bedd92c473c77021635", - "61840d85568c120fdd2962a5", - "5c05413a0db834001c390617", - "5c6d450c2e221600114c997d", - "5c6d42cb2e2216000e69d7d1", - "59c1383d86f774290a37e0ca", - "5aaa5e60e5b5b000140293d6", - "5448c1d04bdc2dff2f8b4569", - "5aaa5dfee5b5b000140293d3", - "5d1340b3d7ad1a0b52682ed7", - "544a378f4bdc2d30388b4567", - "5d1340bdd7ad1a0e8d245aab", - "55802d5f4bdc2dac148b458e", - "5d1340cad7ad1a0b0b249869", - "6241c2c2117ad530666a5108", - "5c6592372e221600133e47d7", - "544a37c44bdc2d25388b4567", - "5c6d46132e221601da357d56" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_handguard", - "_id": "5c488acd2e221602b177c2ab", - "_parent": "5c488a752e221602b412af63", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c48a14f2e2216152006edd7", - "5dcbd6b46ec07c0c4347a564" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "5c488ad82e221602b412af6b", - "_parent": "5c488a752e221602b412af63", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c48a2852e221602b21d5923" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5c488ae82e221602b313fa6e", - "_parent": "5c488a752e221602b412af63", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5c488af32e2216398b5a9608", - "_parent": "5c488a752e221602b412af63", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347", - "55d5f46a4bdc2d1b198b4567", - "5ae30bad5acfc400185c2dc4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber556x45NATO", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 4600, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 72, - "Velocity": 0, - "bEffDist": 500, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "55d4887d4bdc2d962f8b4570", - "defAmmo": "59e6920f86f77411d82aa167", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5c488a752e221602b412af6a", - "_parent": "5c488a752e221602b412af63", - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0.16, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.6, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.057, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 242, - "RecoilForceUp": 74, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.12, - "z": -0.01 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.12, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.12, - "z": -0.03 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.03, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.183425, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.985, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.015, - "HeatFactorByShot": 1.27, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.025, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "6183afd850224f204c1da514": { - "_id": "6183afd850224f204c1da514", - "_name": "weapon_fn_mk17_762x51", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "Штурмовая винтовка Colt M4A1 5.56x45", - "ShortName": "M4A1 5.56x45", - "Description": "Colt M4A1- штурмовая винтовка (карабин) созданная в США на базе платформы AR-15 под патрон 5.56x45 NATO. Планировалась к вооружению экипажей боевых машин и расчетов техники, которым было необходимо иметь оружие меньших габаритов чем штатное вооружение но использующее стандартный боеприпас. Однако вскоре US SOCOM (Командование Сил Специальных Операций США) приняло на вооружение M4A1 для всех входящих в его состав подразделений. Затем последовало полное принятие M4A1 на вооружение в армии и морской пехоте США.", - "Weight": 0.85, - "BackgroundColor": "black", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/scar/weapon_fn_mk17_762x51_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 230, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "6183afd850224f204c1da516", - "_parent": "6183afd850224f204c1da514", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "602e71bd53a60014f9705bfa", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5cc9bcaed7f00c011c04e179", - "5bb20e18d4351e00320205d5", - "5bb20e0ed4351e3bac1212dc", - "6193dcd0f8ee7e52e4210a28", - "5d025cc1d7ad1a53845279ef", - "5c6d7b3d2e221600114c9b7d", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "55802f5d4bdc2dac148b458f", - "5d15cf3bd7ad1a67e71518b2", - "59db3a1d86f77429e05b4e92", - "5fbcbd6c187fea44d52eda14", - "59db3acc86f7742a2c4ab912", - "59db3b0886f77429d72fb895", - "615d8faecabb9b7ad90f4d5d", - "5b07db875acfc40dc528a5f6", - "63f5feead259b42f0b4d6d0f", - "652911675ae2ae97b80fdf3c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "6183afd850224f204c1da517", - "_parent": "6183afd850224f204c1da514", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "618168dc8004cc50514c34fc", - "6183d53f1cb55961fa0fdcda" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_reciever", - "_id": "6183afd850224f204c1da518", - "_parent": "6183afd850224f204c1da514", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6165adcdd3a39d50044c120f", - "6165aeedfaa1272e431521e3" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "6183afd850224f204c1da519", - "_parent": "6183afd850224f204c1da514", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61816734d8e3106d9806c1f3", - "61825d06d92c473c770215de" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "6183afd850224f204c1da51a", - "_parent": "6183afd850224f204c1da514", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6181688c6c780c1e710c9b04" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber762x51", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 5500, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 600, - "Ergonomics": 45, - "Velocity": 0, - "bEffDist": 500, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "618168dc8004cc50514c34fc", - "defAmmo": "5e023e53d4353e3302577c4c", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "6183afd850224f204c1da51b", - "_parent": "6183afd850224f204c1da514", - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0.16, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.5, - "RecoilDampingHandRotation": 0.87, - "RecoilCamera": 0.071, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 412, - "RecoilForceUp": 164, - "RecolDispersion": 12, - "RecoilPosZMult": 0.6, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.24, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 4, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.03, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.183425, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1.46, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.025, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5c07c60e0db834002330051f": { - "_id": "5c07c60e0db834002330051f", - "_name": "weapon_adar_2-15_556x45", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_adar_2-15_556x45", - "ShortName": "weapon_adar_2-15_556x45", - "Description": "weapon_adar_2-15_556x45", - "Weight": 0.4, - "BackgroundColor": "black", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/adar_2-15/weapon_adar_2-15_556x45_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 126, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "5c07c60e0db8340023300521", - "_parent": "5c07c60e0db834002330051f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0e2ff6d174af02a1659d4a", - "5a33e75ac4a2826c6e06d759", - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "602e71bd53a60014f9705bfa", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5cc9bcaed7f00c011c04e179", - "5bb20e18d4351e00320205d5", - "5bb20e0ed4351e3bac1212dc", - "6193dcd0f8ee7e52e4210a28", - "5d025cc1d7ad1a53845279ef", - "5c6d7b3d2e221600114c9b7d", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "55802f5d4bdc2dac148b458f", - "5d15cf3bd7ad1a67e71518b2", - "59db3a1d86f77429e05b4e92", - "5fbcbd6c187fea44d52eda14", - "59db3acc86f7742a2c4ab912", - "59db3b0886f77429d72fb895", - "615d8faecabb9b7ad90f4d5d", - "5b07db875acfc40dc528a5f6", - "63f5feead259b42f0b4d6d0f", - "652911675ae2ae97b80fdf3c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5c07c60e0db8340023300522", - "_parent": "5c07c60e0db834002330051f", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "55d4887d4bdc2d962f8b4570", - "61840bedd92c473c77021635", - "61840d85568c120fdd2962a5", - "5c05413a0db834001c390617", - "5c6d450c2e221600114c997d", - "5c6d42cb2e2216000e69d7d1", - "59c1383d86f774290a37e0ca", - "5aaa5e60e5b5b000140293d6", - "5448c1d04bdc2dff2f8b4569", - "5aaa5dfee5b5b000140293d3", - "5d1340b3d7ad1a0b52682ed7", - "544a378f4bdc2d30388b4567", - "5d1340bdd7ad1a0e8d245aab", - "55802d5f4bdc2dac148b458e", - "5d1340cad7ad1a0b0b249869", - "6241c2c2117ad530666a5108", - "5c6592372e221600133e47d7", - "544a37c44bdc2d25388b4567", - "5c6d46132e221601da357d56" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_reciever", - "_id": "5c07c60e0db8340023300523", - "_parent": "5c07c60e0db834002330051f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0e2f26d174af02a9625114", - "55d355e64bdc2d962f8b4569", - "5d4405aaa4b9361e6a4e6bd3", - "5c07a8770db8340023300450", - "59bfe68886f7746004266202", - "63f5ed14534b2c3d5479a677" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5c07c60e0db8340023300524", - "_parent": "5c07c60e0db834002330051f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a33ca0fc4a282000d72292f", - "5c0faeddd174af02a962601f", - "5649be884bdc2d79388b4577", - "5d120a10d7ad1a4e1026ba85", - "5b0800175acfc400153aebd4", - "5947e98b86f774778f1448bc", - "5947eab886f77475961d96c5", - "602e3f1254072b51b239f713", - "5c793fb92e221644f31bfb64", - "5c793fc42e221600114ca25d", - "591aef7986f774139d495f03", - "591af10186f774139d495f0e", - "627254cc9c563e6e442c398f", - "638de3603a1a4031d8260b8c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "5c07c60e0db8340023300525", - "_parent": "5c07c60e0db834002330051f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0faf68d174af02a96260b8", - "56ea7165d2720b6e518b4583", - "55d44fd14bdc2d962f8b456e", - "5ea16d4d5aad6446a939753d", - "5bb20dbcd4351e44f824c04e", - "6033749e88382f4fab3fd2c5", - "5b2240bf5acfc40dc528af69", - "5d44334ba4b9362b346d1948", - "5f633ff5c444ce7e3c30a006", - "651bf5617b3b552ef6712cb7" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber556x45NATO", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 2400, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 800, - "Ergonomics": 48, - "Velocity": 0, - "bEffDist": 500, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "55d4887d4bdc2d962f8b4570", - "defAmmo": "59e6920f86f77411d82aa167", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5c07c60e0db8340023300526", - "_parent": "5c07c60e0db834002330051f", - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0.16, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.5, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.061, - "RecoilStableIndexShot": 3, - "RecoilForceBack": 344, - "RecoilForceUp": 120, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.24, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.03, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.18975, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1.48, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.025, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "583990e32459771419544dd2": { - "_id": "583990e32459771419544dd2", - "_name": "weapon_izhmash_aks74un_545x39", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_aks74un_545x39", - "ShortName": "weapon_izhmash_aks74un_545x39", - "Description": "weapon_izhmash_aks74un_545x39", - "Weight": 1.85, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/aks74u/weapon_izhmash_aks74ub_545x39_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 111, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "583990e32459771419544dd5", - "_parent": "583990e32459771419544dd2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "623c3be0484b5003161840dc", - "628c9ab845c59e5b80768a81", - "628a664bccaab13006640e47", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "583990e32459771419544dd6", - "_parent": "583990e32459771419544dd2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59ecc28286f7746d7a68aa8c", - "5ab626e4d8ce87272e4c6e43", - "57dc347d245977596754e7a1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "583990e32459771419544dd7", - "_parent": "583990e32459771419544dd2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "583990e32459771419544dd8", - "_parent": "583990e32459771419544dd2", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "564ca9df4bdc2d35148b4569", - "564ca99c4bdc2d16268b4589", - "55d480c04bdc2d1d4e8b456a", - "5cbdaf89ae9215000e5b9c94", - "55d481904bdc2d8c2f8b456a", - "55d482194bdc2d1d4e8b456b", - "55d4837c4bdc2d1d4e8b456c", - "5aaa4194e5b5b055d06310a5", - "5bed61680db834001d2c45ab", - "5bed625c0db834001c062946", - "649ec30cb013f04a700e60fb", - "64b9e265c94d0d15c5027e35" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_muzzle", - "_id": "583990e32459771419544dd9", - "_parent": "583990e32459771419544dd2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac72e945acfc43f3b691116", - "5ac7655e5acfc40016339a19", - "5649aa744bdc2ded0b8b457e", - "5f633f791b231926f2329f13", - "5943eeeb86f77412d6384f6b", - "5cc9a96cd7f00c011c04e04a", - "615d8f5dd92c473c770212ef", - "5649ab884bdc2ded0b8b457f", - "57dc324a24597759501edc20", - "59bffc1f86f77435b128b872", - "593d493f86f7745e6b2ceb22", - "564caa3d4bdc2d17108b458e", - "57ffb0e42459777d047111c5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "583990e32459771419544dda", - "_parent": "583990e32459771419544dd2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57dc334d245977597164366f", - "5839a7742459773cf9693481", - "655cb6b5d680a544f30607fa" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5839957824597712102f7c81", - "_parent": "583990e32459771419544dd2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "638db77630c4240f9e06f8b6", - "63d114019e35b334d82302f7", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_gas_block", - "_id": "59d37aa286f7747e673f3977", - "_parent": "583990e32459771419544dd2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59d36a0086f7747e673f3946" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber545x39", - "Durability": 95, - "MaxDurability": 100, - "OperatingResource": 5000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 44, - "Velocity": -17.9, - "bEffDist": 300, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "55d480c04bdc2d1d4e8b456a", - "defAmmo": "56dff3afd2720bba668b4567", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "583990e32459771419544dd3", - "_parent": "583990e32459771419544dd2", - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" - ], - "MaxStackCount": 0 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.1, - "AimPlane": 0.15, - "DeviationCurve": 1.9, - "DeviationMax": 15.5, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.7, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.067, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 373, - "RecoilForceUp": 102, - "RecolDispersion": 12, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.7, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1.0691, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.1323, - "HeatFactorByShot": 1.555, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5644bd2b4bdc2d3b4c8b4572" - }, - "57dc2fa62459775949412633": { - "_id": "57dc2fa62459775949412633", - "_name": "weapon_izhmash_aks74u_545x39", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_aks74u_545x39", - "ShortName": "weapon_izhmash_aks74u_545x39", - "Description": "weapon_izhmash_aks74u_545x39", - "Weight": 1.809, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/aks74u/weapon_izhmash_aks74u_545x39_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 68, - "RepairSpeed": 4, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "57dc31bc245977596d4ef3d2", - "_parent": "57dc2fa62459775949412633", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "623c3be0484b5003161840dc", - "628c9ab845c59e5b80768a81", - "628a664bccaab13006640e47", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "57dc31ce245977593d4e1453", - "_parent": "57dc2fa62459775949412633", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59ecc28286f7746d7a68aa8c", - "5ab626e4d8ce87272e4c6e43", - "57dc347d245977596754e7a1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "57dc31e1245977597164366e", - "_parent": "57dc2fa62459775949412633", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "57dc31f2245977596c274b4f", - "_parent": "57dc2fa62459775949412633", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "564ca9df4bdc2d35148b4569", - "564ca99c4bdc2d16268b4589", - "55d480c04bdc2d1d4e8b456a", - "5cbdaf89ae9215000e5b9c94", - "55d481904bdc2d8c2f8b456a", - "55d482194bdc2d1d4e8b456b", - "55d4837c4bdc2d1d4e8b456c", - "5aaa4194e5b5b055d06310a5", - "5bed61680db834001d2c45ab", - "5bed625c0db834001c062946", - "649ec30cb013f04a700e60fb", - "64b9e265c94d0d15c5027e35" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_muzzle", - "_id": "57dc35ce2459775971643671", - "_parent": "57dc2fa62459775949412633", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac72e945acfc43f3b691116", - "5ac7655e5acfc40016339a19", - "5649aa744bdc2ded0b8b457e", - "5f633f791b231926f2329f13", - "5943eeeb86f77412d6384f6b", - "5cc9a96cd7f00c011c04e04a", - "615d8f5dd92c473c770212ef", - "5649ab884bdc2ded0b8b457f", - "57dc324a24597759501edc20", - "59bffc1f86f77435b128b872", - "593d493f86f7745e6b2ceb22", - "564caa3d4bdc2d17108b458e", - "57ffb0e42459777d047111c5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "57dc35fb245977596d4ef3d7", - "_parent": "57dc2fa62459775949412633", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57dc334d245977597164366f", - "5839a7742459773cf9693481", - "655cb6b5d680a544f30607fa" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_gas_block", - "_id": "59d368ce86f7747e6a5beb03", - "_parent": "57dc2fa62459775949412633", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59d36a0086f7747e673f3946" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber545x39", - "Durability": 95, - "MaxDurability": 100, - "OperatingResource": 5000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 44, - "Velocity": -17.9, - "bEffDist": 300, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "55d480c04bdc2d1d4e8b456a", - "defAmmo": "56dff3afd2720bba668b4567", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "57dc318524597759805c1581", - "_parent": "57dc2fa62459775949412633", - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" - ], - "MaxStackCount": 0 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.1, - "AimPlane": 0.15, - "DeviationCurve": 1.9, - "DeviationMax": 15.5, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.7, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.067, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 373, - "RecoilForceUp": 102, - "RecolDispersion": 12, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.7, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1.0691, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.1323, - "HeatFactorByShot": 1.555, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5644bd2b4bdc2d3b4c8b4572" - }, - "5ac66d015acfc400180ae6e4": { - "_id": "5ac66d015acfc400180ae6e4", - "_name": "weapon_izhmash_ak102_556x45", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_ak101_556x45", - "ShortName": "weapon_izhmash_ak101_556x45", - "Description": "weapon_izhmash_ak101_556x45", - "Weight": 1.992, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/ak100/weapon_izhmash_ak102_556x45_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 220, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_gas_block", - "_id": "5ac66d015acfc400180ae6e7", - "_parent": "5ac66d015acfc400180ae6e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59c6633186f7740cf0493bb9", - "59d64ec286f774171d1e0a42", - "59e649f986f77411d949b246", - "59ccfdba86f7747f2109a587" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_launcher", - "_id": "5ac66d015acfc400180ae6e8", - "_parent": "5ac66d015acfc400180ae6e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5ac66d015acfc400180ae6e9", - "_parent": "5ac66d015acfc400180ae6e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac72e615acfc43f67248aa0", - "5ac72e725acfc400180ae701", - "5f633f791b231926f2329f13", - "5cc9a96cd7f00c011c04e04a", - "5943ee5a86f77413872d25ec", - "5e21ca18e4d47f0da15e77dd", - "59bffc1f86f77435b128b872", - "5a9fbb84a2750c00137fa685" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "5ac66d015acfc400180ae6ea", - "_parent": "5ac66d015acfc400180ae6e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "623c3be0484b5003161840dc", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "5ac66d015acfc400180ae6eb", - "_parent": "5ac66d015acfc400180ae6e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649af094bdc2df8348b4586", - "5ac50da15acfc4001718d287", - "5d2c76ed48f03532f2136169", - "5d2c770c48f0354b4a07c100", - "5d2c772c48f0355d95672c25", - "5649af884bdc2d1b2b8b4589", - "628a665a86cbd9750d2ff5e5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5ac66d015acfc400180ae6ec", - "_parent": "5ac66d015acfc400180ae6e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac733a45acfc400192630e2", - "5649b0544bdc2d1b2b8b458a", - "5ac72e475acfc400180ae6fe", - "5649d9a14bdc2d79388b4580", - "628a7b23b0f75035732dd565", - "5bf3f59f0db834001a6fa060", - "649ec2cec93611967b03495e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5ac66d015acfc400180ae6ed", - "_parent": "5ac66d015acfc400180ae6e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac50c185acfc400163398d4", - "5cf50fc5d7f00c056c53f83c", - "5ac78eaf5acfc4001926317a", - "5beec8b20db834001961942a", - "6386300124a1dc425c00577a", - "649ec87d8007560a9001ab36" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5ac66d015acfc400180ae6ee", - "_parent": "5ac66d015acfc400180ae6e4", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5c0548ae0db834001966a3c2", - "5ac66c5d5acfc4001718d314" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_mount_000", - "_id": "5ac66d015acfc400180ae6ef", - "_parent": "5ac66d015acfc400180ae6e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "638db77630c4240f9e06f8b6", - "63d114019e35b334d82302f7", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "5ac66d015acfc400180ae6f0", - "_parent": "5ac66d015acfc400180ae6e4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber556x45NATO", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 5500, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 600, - "Ergonomics": 38, - "Velocity": 1.8, - "bEffDist": 650, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5ac66c5d5acfc4001718d314", - "defAmmo": "59e6920f86f77411d82aa167", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5ac66d015acfc400180ae6e6", - "_parent": "5ac66d015acfc400180ae6e4", - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.056, - "AimPlane": 0.19, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.7, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.057, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 298, - "RecoilForceUp": 109, - "RecolDispersion": 7, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 100, - "RecoilStableAngleIncreaseStep": 2.7, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1.0295, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.0716, - "HeatFactorByShot": 1.415, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "606587252535c57a13424cfd": { - "_id": "606587252535c57a13424cfd", - "_name": "weapon_cmmg_mk47_762x39", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_cmmg_mk47_762x39", - "ShortName": "weapon_cmmg_mk47_762x39", - "Description": "weapon_cmmg_mk47_762x39", - "Weight": 0.51, - "BackgroundColor": "black", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/mk47/weapon_cmmg_mk47_762x39_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 172, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "606587252535c57a13424cff", - "_parent": "606587252535c57a13424cfd", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "602e71bd53a60014f9705bfa", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5cc9bcaed7f00c011c04e179", - "5bb20e18d4351e00320205d5", - "5bb20e0ed4351e3bac1212dc", - "6193dcd0f8ee7e52e4210a28", - "5d025cc1d7ad1a53845279ef", - "5c6d7b3d2e221600114c9b7d", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "55802f5d4bdc2dac148b458f", - "5d15cf3bd7ad1a67e71518b2", - "59db3a1d86f77429e05b4e92", - "5fbcbd6c187fea44d52eda14", - "59db3acc86f7742a2c4ab912", - "59db3b0886f77429d72fb895", - "615d8faecabb9b7ad90f4d5d", - "5b07db875acfc40dc528a5f6", - "63f5feead259b42f0b4d6d0f", - "652911675ae2ae97b80fdf3c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "606587252535c57a13424d00", - "_parent": "606587252535c57a13424cfd", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "59e5d83b86f7745aed03d262", - "5a01c29586f77474660c694c", - "5ac66bea5acfc43b321d4aec", - "59d625f086f774661516605d", - "5b1fd4e35acfc40018633c39", - "5a0060fc86f7745793204432", - "59e5f5a486f7746c530b3ce2", - "5b1fb3e15acfc4001637f068", - "59d6272486f77466146386ff", - "5e21a3c67e40bd02257a008a", - "5cbdc23eae9215001136a407", - "5c6175362e221600133e3b94", - "59fafc5086f7740dbe19f6c3", - "59fafc9386f774067d462453", - "6272874a6c47bd74f92e2087", - "64b9cf0ac12b9c38db26923a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_reciever", - "_id": "606587252535c57a13424d01", - "_parent": "606587252535c57a13424cfd", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "606587a88900dc2d9a55b659" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock_001", - "_id": "606587252535c57a13424d02", - "_parent": "606587252535c57a13424cfd", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "606587e18900dc2d9a55b65f", - "5a33ca0fc4a282000d72292f", - "5c0faeddd174af02a962601f", - "5649be884bdc2d79388b4577", - "5d120a10d7ad1a4e1026ba85", - "5b0800175acfc400153aebd4", - "5947e98b86f774778f1448bc", - "5947eab886f77475961d96c5", - "602e3f1254072b51b239f713", - "5c793fb92e221644f31bfb64", - "5c793fc42e221600114ca25d", - "591aef7986f774139d495f03", - "591af10186f774139d495f0e", - "627254cc9c563e6e442c398f", - "638de3603a1a4031d8260b8c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "606587252535c57a13424d03", - "_parent": "606587252535c57a13424cfd", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "606587bd6d0bd7580617bacc" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber762x39", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 4400, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 42, - "Velocity": 0, - "bEffDist": 500, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5a01c29586f77474660c694c", - "defAmmo": "64b7af5a8532cf95ee0a0dbd", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "606587252535c57a13424d04", - "_parent": "606587252535c57a13424cfd", - "_props": { - "filters": [ - { - "Filter": [ - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af5a8532cf95ee0a0dbd", - "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0.16, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.5, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.069, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 419, - "RecoilForceUp": 160, - "RecolDispersion": 11, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.24, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.03, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1.21, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.025, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "628b9c37a733087d0d7fe84b": { - "_id": "628b9c37a733087d0d7fe84b", - "_name": "weapon_sag_ak545_short_545x39", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_ak74m_545x39", - "ShortName": "weapon_izhmash_ak74m_545x39", - "Description": "weapon_izhmash_ak74m_545x39", - "Weight": 2.192, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/ak545/weapon_sag_ak545_short_545x39_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 143, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_gas_block", - "_id": "628b9c37a733087d0d7fe84d", - "_parent": "628b9c37a733087d0d7fe84b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "628b8d83717774443b15e248" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "628b9c37a733087d0d7fe84e", - "_parent": "628b9c37a733087d0d7fe84b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac72e945acfc43f3b691116", - "5ac7655e5acfc40016339a19", - "5649aa744bdc2ded0b8b457e", - "5f633f791b231926f2329f13", - "5943eeeb86f77412d6384f6b", - "5cc9a96cd7f00c011c04e04a", - "615d8f5dd92c473c770212ef", - "5649ab884bdc2ded0b8b457f", - "57dc324a24597759501edc20", - "59bffc1f86f77435b128b872", - "593d493f86f7745e6b2ceb22", - "564caa3d4bdc2d17108b458e", - "57ffb0e42459777d047111c5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "628b9c37a733087d0d7fe84f", - "_parent": "628b9c37a733087d0d7fe84b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "623c3be0484b5003161840dc", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock_000", - "_id": "628b9c37a733087d0d7fe850", - "_parent": "628b9c37a733087d0d7fe84b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "628b9a40717774443b15e9f2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "628b9c37a733087d0d7fe851", - "_parent": "628b9c37a733087d0d7fe84b", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "564ca9df4bdc2d35148b4569", - "564ca99c4bdc2d16268b4589", - "55d480c04bdc2d1d4e8b456a", - "5cbdaf89ae9215000e5b9c94", - "55d481904bdc2d8c2f8b456a", - "55d482194bdc2d1d4e8b456b", - "55d4837c4bdc2d1d4e8b456c", - "5aaa4194e5b5b055d06310a5", - "5bed61680db834001d2c45ab", - "5bed625c0db834001c062946", - "649ec30cb013f04a700e60fb", - "64b9e265c94d0d15c5027e35" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_charge", - "_id": "628b9c37a733087d0d7fe852", - "_parent": "628b9c37a733087d0d7fe84b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber545x39", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 5600, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 53, - "Velocity": 1.8, - "bEffDist": 650, - "bHearDist": 90, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "55d480c04bdc2d1d4e8b456a", - "defAmmo": "56dff0bed2720bb0668b4567", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "628b9c37a733087d0d7fe84c", - "_parent": "628b9c37a733087d0d7fe84b", - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.048, - "AimPlane": 0.19, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.7, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.056, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 270, - "RecoilForceUp": 93, - "RecolDispersion": 12, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1541, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.9901, - "CoolFactorGun": 2.8, - "CoolFactorGunMods": 1.0008, - "HeatFactorByShot": 1.49, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5cadfbf7ae92152ac412eeef": { - "_id": "5cadfbf7ae92152ac412eeef", - "_name": "weapon_ckib_ash_12_127x55", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "Автомат Калашникова АК-74Н 5.45x39", - "ShortName": "АК-74N 5.45x39", - "Description": "Автомат Калашникова калибра 5,45 мм, разработанный в 1970 году конструктором М. Т. Калашниковым. Дальнейшее развитие АКМ в связи с переходом Вооруженных Сил на новый боеприпас 5.45x39. Основное отличие от штатного АК-74 это наличие крепления для оптических и ночных прицелов.", - "Weight": 5.1, - "BackgroundColor": "black", - "Width": 4, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/ash12/weapon_ckib_ash_12_127x55_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 469, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_muzzle", - "_id": "5cadfbf7ae92152ac412eef4", - "_parent": "5cadfbf7ae92152ac412eeef", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5caf17c9ae92150b30006be1", - "5caf187cae92157c28402e43" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5cadfbf7ae92152ac412eef7", - "_parent": "5cadfbf7ae92152ac412eeef", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ba26b17d4351e00367f9bdd", - "5dfa3d7ac41b2312ea33362a", - "5c1780312e221602b66cc189", - "5fb6564947ce63734e3fa1da", - "5bc09a18d4351e003562b68e", - "5c18b9192e2216398b5a8104", - "5fc0fa957283c4046c58147e", - "5894a81786f77427140b8347" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5cadfbf7ae92152ac412eef9", - "_parent": "5cadfbf7ae92152ac412eeef", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5caf1041ae92157c28402e3f", - "5caf1109ae9215753c44119f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_sight_front", - "_id": "5caf1bc1ae921576eb05cc77", - "_parent": "5cadfbf7ae92152ac412eeef", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5caf16a2ae92152ac412efbc", - "5ba26b01d4351e0085325a51", - "5dfa3d950dee1b22f862eae0", - "5c17804b2e2216152006c02f", - "5fb6567747ce63734e3fa1dc", - "5bc09a30d4351e00367fb7c8", - "5c18b90d2e2216152142466b", - "5fc0fa362770a0045c59c677", - "5894a73486f77426d259076c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "5caf1bd5ae9215755f417da1", - "_parent": "5cadfbf7ae92152ac412eeef", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c7fc87d2e221644f31c0298", - "5cda9bcfd7f00c0c0b53e900", - "59f8a37386f7747af3328f06", - "5a7dbfc1159bd40016548fde", - "619386379fb0c665d5490dbe", - "5c87ca002e221600114cb150", - "588226d124597767ad33f787", - "588226dd24597767ad33f789", - "588226e62459776e3e094af7", - "588226ef24597767af46e39c", - "59fc48e086f77463b1118392", - "5fce0cf655375d18a253eff0", - "5cf4fb76d7f00c065703d3ac", - "5b057b4f5acfc4771e1bd3e9", - "5c791e872e2216001219c40a", - "558032614bdc2de7118b4585", - "58c157be86f77403c74b2bb6", - "58c157c886f774032749fb06", - "5f6340d3ca442212f4047eb2", - "591af28e86f77414a27a9e1d", - "5c1cd46f2e22164bef5cfedb", - "5c1bc4812e22164bef5cfde7", - "5c1bc5612e221602b5429350", - "5c1bc5af2e221602b412949b", - "5c1bc5fb2e221602b1779b32", - "5c1bc7432e221602b412949d", - "5c1bc7752e221602b1779b34", - "5cdaa99dd7f00c002412d0b2", - "65169d5b30425317755f8e25", - "648067db042be0705c0b3009", - "64807a29e5ffe165600abc97", - "64806bdd26c80811d408d37a", - "655df24fdf80b12750626d0a", - "655dccfdbdcc6b5df71382b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "5cc08743ae921547db318b9b", - "_parent": "5cadfbf7ae92152ac412eeef", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5caf1691ae92152ac412efb9", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "626bb8532c923541184624b4", - "62811f461d5df4475f46a332", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_000", - "_id": "5cc087c1ae92150010399ab0", - "_parent": "5cadfbf7ae92152ac412eeef", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5c5952732e2216398b5abda2", - "644a3df63b0b6f03e101e065" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_001", - "_id": "5cc087c9ae921547db318b9c", - "_parent": "5cadfbf7ae92152ac412eeef", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical_002", - "_id": "5cc087d0ae921500dc1fc310", - "_parent": "5cadfbf7ae92152ac412eeef", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5c06595c0db834001a66af6c", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "61605d88ffa6e502ac5e7eeb", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "57d17e212459775a1179a0f5", - "6267c6396b642f77f56f5c1c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837", - "644a3df63b0b6f03e101e065", - "646f6322f43d0c5d62063715" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber127x55", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 4700, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 55, - "Velocity": 1.1, - "bEffDist": 650, - "bHearDist": 140, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5caf1041ae92157c28402e3f", - "defAmmo": "5cadf6ddae9215051e1c23b2", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5cadfbf7ae92152ac412eef1", - "_parent": "5cadfbf7ae92152ac412eeef", - "_props": { - "filters": [ - { - "Filter": [ - "5cadf6ddae9215051e1c23b2", - "5cadf6e5ae921500113bb973", - "5cadf6eeae921500134b2799" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.052, - "AimPlane": 0.19, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.2, - "RecoilDampingHandRotation": 0.87, - "RecoilCamera": 0.094, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 425, - "RecoilForceUp": 128, - "RecolDispersion": 12, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.8865, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 0.9568, - "HeatFactorByShot": 1.46, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5beed0f50db834001c062b12": { - "_id": "5beed0f50db834001c062b12", - "_name": "weapon_izhmash_rpk16_545x39", - "_parent": "5447bed64bdc2d97278b4568", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_rpk16_545x39", - "ShortName": "weapon_izhmash_rpk16_545x39", - "Description": "weapon_izhmash_rpk16_545x39", - "Weight": 1.5, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/rpk16/weapon_izhmash_rpk16_545x39_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 123, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "5beed0f50db834001c062b18", - "_parent": "5beed0f50db834001c062b12", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "623c3be0484b5003161840dc", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", - "5e2192a498a36665e8337386", - "6087e663132d4d12c81fd96b", - "5f6341043ada5942720e2dc5", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "5beed0f50db834001c062b19", - "_parent": "5beed0f50db834001c062b12", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5beec91a0db834001961942d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5beed0f50db834001c062b1c", - "_parent": "5beed0f50db834001c062b12", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "564ca9df4bdc2d35148b4569", - "564ca99c4bdc2d16268b4589", - "55d480c04bdc2d1d4e8b456a", - "5cbdaf89ae9215000e5b9c94", - "55d481904bdc2d8c2f8b456a", - "55d482194bdc2d1d4e8b456b", - "55d4837c4bdc2d1d4e8b456c", - "5aaa4194e5b5b055d06310a5", - "5bed61680db834001d2c45ab", - "5bed625c0db834001c062946", - "64b9e265c94d0d15c5027e35", - "649ec30cb013f04a700e60fb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_charge", - "_id": "5beed0f50db834001c062b1e", - "_parent": "5beed0f50db834001c062b12", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock_001", - "_id": "5bf2956d0db834001a6f9ff9", - "_parent": "5beed0f50db834001c062b12", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5beec8b20db834001961942a", - "649ec87d8007560a9001ab36" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "5bf29d9d0db834001b095753", - "_parent": "5beed0f50db834001c062b12", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5beec3e30db8340019619424" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "5bf29da70db834001a6f9ffc", - "_parent": "5beed0f50db834001c062b12", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5beec1bd0db834001e6006f3", - "5beec2820db834001b095426" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "machinegun", - "weapUseType": "primary", - "ammoCaliber": "Caliber545x39", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 6600, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 45, - "Velocity": 1.8, - "bEffDist": 650, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "55d480c04bdc2d1d4e8b456a", - "defAmmo": "56dff3afd2720bba668b4567", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5beed0f50db834001c062b14", - "_parent": "5beed0f50db834001c062b12", - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.04, - "AimPlane": 0.19, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.4, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.053, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 333, - "RecoilForceUp": 112, - "RecolDispersion": 8, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.6, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2.4, - "y": 2.4, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock_001", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.985, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.015, - "HeatFactorByShot": 1.24, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "65268d8ecb944ff1e90ea385": { - "_id": "65268d8ecb944ff1e90ea385", - "_name": "weapon_zid_rpdn_762x39", - "_parent": "5447bed64bdc2d97278b4568", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_rpk16_545x39", - "ShortName": "weapon_izhmash_rpk16_545x39", - "Description": "weapon_izhmash_rpk16_545x39", - "Weight": 2.94, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/rpd/weapon_zid_rpdn_762x39_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 235, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "65268d8ecb944ff1e90ea387", - "_parent": "65268d8ecb944ff1e90ea385", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "6513f0a194c72326990a3868" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "65268d8ecb944ff1e90ea388", - "_parent": "65268d8ecb944ff1e90ea385", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6513f1798cb24472490ee331" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "65268d8ecb944ff1e90ea389", - "_parent": "65268d8ecb944ff1e90ea385", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6513eff1e06849f06c0957d4", - "65266fd43341ed9aa903dd56" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "65268d8ecb944ff1e90ea38a", - "_parent": "65268d8ecb944ff1e90ea385", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6513f05a94c72326990a3866" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "65268d8ecb944ff1e90ea38b", - "_parent": "65268d8ecb944ff1e90ea385", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6513f153e63f29908d0ffaba" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "65268dc17bdd1243830efbd6", - "_parent": "65268d8ecb944ff1e90ea385", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "638db77630c4240f9e06f8b6", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "machinegun", - "weapUseType": "primary", - "ammoCaliber": "Caliber762x39", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 9000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "fullauto" - ], - "SingleFireRate": 700, - "CanQueueSecondShot": true, - "bFirerate": 700, - "Ergonomics": 36, - "Velocity": 1.8, - "bEffDist": 800, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "6513f0a194c72326990a3868", - "defAmmo": "5656d7c34bdc2d9d198b4587", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0, - "AimPlane": 0.19, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.2, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.054, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 502, - "RecoilForceUp": 107, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.55, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.6, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 27, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2.4, - "y": 2.4, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.965, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.07, - "HeatFactorByShot": 1.14, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": true, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5ac66d725acfc43b321d4b60": { - "_id": "5ac66d725acfc43b321d4b60", - "_name": "weapon_izhmash_ak104_762x39", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_ak103_762x39", - "ShortName": "weapon_izhmash_ak103_762x39", - "Description": "weapon_izhmash_ak103_762x39", - "Weight": 1.992, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/ak100/weapon_izhmash_ak104_762x39_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 200, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_gas_block", - "_id": "5ac66d725acfc43b321d4b63", - "_parent": "5ac66d725acfc43b321d4b60", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59c6633186f7740cf0493bb9", - "59d64ec286f774171d1e0a42", - "59e649f986f77411d949b246", - "59ccfdba86f7747f2109a587" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_launcher", - "_id": "5ac66d725acfc43b321d4b64", - "_parent": "5ac66d725acfc43b321d4b60", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5ac66d725acfc43b321d4b65", - "_parent": "5ac66d725acfc43b321d4b60", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac72e7d5acfc40016339a02", - "5ac72e895acfc43b321d4bd5", - "5f633f791b231926f2329f13", - "5a9ea27ca2750c00137fa672", - "5cc9ad73d7f00c000e2579d4", - "5649ab884bdc2ded0b8b457f", - "59bffc1f86f77435b128b872", - "5e208b9842457a4a7a33d074", - "5a0d63621526d8dba31fe3bf", - "59fb257e86f7742981561852", - "5a9fbacda2750c00141e080f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "5ac66d725acfc43b321d4b66", - "_parent": "5ac66d725acfc43b321d4b60", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "623c3be0484b5003161840dc", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "5ac66d725acfc43b321d4b67", - "_parent": "5ac66d725acfc43b321d4b60", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649af094bdc2df8348b4586", - "5ac50da15acfc4001718d287", - "5d2c76ed48f03532f2136169", - "5d2c770c48f0354b4a07c100", - "5d2c772c48f0355d95672c25", - "5649af884bdc2d1b2b8b4589", - "628a665a86cbd9750d2ff5e5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5ac66d725acfc43b321d4b68", - "_parent": "5ac66d725acfc43b321d4b60", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac733a45acfc400192630e2", - "5649b0544bdc2d1b2b8b458a", - "5ac72e475acfc400180ae6fe", - "5649d9a14bdc2d79388b4580", - "628a7b23b0f75035732dd565", - "649ec2cec93611967b03495e", - "5bf3f59f0db834001a6fa060" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5ac66d725acfc43b321d4b69", - "_parent": "5ac66d725acfc43b321d4b60", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac50c185acfc400163398d4", - "5cf50fc5d7f00c056c53f83c", - "5ac78eaf5acfc4001926317a", - "5beec8b20db834001961942a", - "6386300124a1dc425c00577a", - "649ec87d8007560a9001ab36" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5ac66d725acfc43b321d4b6a", - "_parent": "5ac66d725acfc43b321d4b60", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "59e5d83b86f7745aed03d262", - "5a01c29586f77474660c694c", - "5ac66bea5acfc43b321d4aec", - "59d625f086f774661516605d", - "5b1fd4e35acfc40018633c39", - "5a0060fc86f7745793204432", - "59e5f5a486f7746c530b3ce2", - "5b1fb3e15acfc4001637f068", - "59d6272486f77466146386ff", - "5e21a3c67e40bd02257a008a", - "5cbdc23eae9215001136a407", - "5c6175362e221600133e3b94", - "59fafc5086f7740dbe19f6c3", - "59fafc9386f774067d462453", - "5cfe8010d7ad1a59283b14c6", - "6272874a6c47bd74f92e2087", - "64b9cf0ac12b9c38db26923a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_mount_000", - "_id": "5ac66d725acfc43b321d4b6b", - "_parent": "5ac66d725acfc43b321d4b60", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "638db77630c4240f9e06f8b6", - "63d114019e35b334d82302f7", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "5ac66d725acfc43b321d4b6c", - "_parent": "5ac66d725acfc43b321d4b60", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber762x39", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 6100, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 600, - "Ergonomics": 38, - "Velocity": 1.8, - "bEffDist": 650, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5ac66bea5acfc43b321d4aec", - "defAmmo": "5656d7c34bdc2d9d198b4587", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5ac66d725acfc43b321d4b62", - "_parent": "5ac66d725acfc43b321d4b60", - "_props": { - "filters": [ - { - "Filter": [ - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af5a8532cf95ee0a0dbd", - "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.066, - "AimPlane": 0.19, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.7, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.069, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 398, - "RecoilForceUp": 154, - "RecolDispersion": 9, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.7, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.9701, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.0008, - "HeatFactorByShot": 1.34, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5ae083b25acfc4001a5fc702": { - "_id": "5ae083b25acfc4001a5fc702", - "_name": "weapon_test_consumable_items", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_test_consumable_items", - "ShortName": "weapon_test_consumable_items", - "Description": "weapon_test_consumable_items", - "Weight": 0.686, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_pistol", - "Prefab": { - "path": "assets/content/weapons/usable_items/test_consumable_items/weapon_test_consumable_items_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 10, - "RepairSpeed": 1, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "secondary", - "ammoCaliber": "Caliber9x18PM", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 13000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 30, - "Ergonomics": 50, - "Velocity": -4.54, - "bEffDist": 50, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5448c12b4bdc2d02308b456f", - "defAmmo": "573719762459775a626ccbc1", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5ae083b25acfc4001a5fc705", - "_parent": "5ae083b25acfc4001a5fc702", - "_props": { - "filters": [ - { - "Filter": [ - "573718ba2459775a75491131", - "573719df2459775a626ccbc2", - "57371aab2459775a77142f22", - "57371b192459775a9f58a5e0", - "57371e4124597760ff7b25f1", - "57371eb62459776125652ac1", - "57371f8d24597761006c6a81", - "5737201124597760fc4431f1", - "5737207f24597760ff7b25f2", - "57371f2b24597761224311f1", - "573719762459775a626ccbc1", - "573720e02459776143012541", - "57372140245977611f70ee91", - "5737218f245977612125ba51" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.32, - "AimPlane": 0.026, - "DeviationCurve": 1, - "DeviationMax": 100, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 5, - "RecoilDampingHandRotation": 0.92, - "RecoilCamera": 0.024, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 325, - "RecoilForceUp": 553, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.57, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 85, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 1, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1, - "AllowOverheat": false, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5448bd6b4bdc2dfc2f8b4569" - }, - "62e7c4fba689e8c9c50dfc38": { - "_id": "62e7c4fba689e8c9c50dfc38", - "_name": "weapon_steyr_aug_a1_556x45", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "Штурмовая винтовка Colt M4A1 5.56x45", - "ShortName": "M4A1 5.56x45", - "Description": "Colt M4A1- штурмовая винтовка (карабин) созданная в США на базе платформы AR-15 под патрон 5.56x45 NATO. Планировалась к вооружению экипажей боевых машин и расчетов техники, которым было необходимо иметь оружие меньших габаритов чем штатное вооружение но использующее стандартный боеприпас. Однако вскоре US SOCOM (Командование Сил Специальных Операций США) приняло на вооружение M4A1 для всех входящих в его состав подразделений. Затем последовало полное принятие M4A1 на вооружение в армии и морской пехоте США.", - "Weight": 1.49, - "BackgroundColor": "black", - "Width": 3, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/aug/weapon_steyr_aug_a1_556x45_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 199, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "62e7c4fba689e8c9c50dfc3a", - "_parent": "62e7c4fba689e8c9c50dfc38", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "62e7c98b550c8218d602cbb4", - "630e1adbbd357927e4007c09", - "630e295c984633f1fb0e7c30" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_charge", - "_id": "62e7c6b6da5b3b57e805e2c9", - "_parent": "62e7c4fba689e8c9c50dfc38", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62e7c880f68e7a0676050c7c", - "62ebbc53e3c1e1ec7c02c44f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "62e7c6b6da5b3b57e805e2ca", - "_parent": "62e7c4fba689e8c9c50dfc38", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62e7c72df68e7a0676050c77", - "62ea7c793043d74a0306e19f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber556x45NATO", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 4600, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 715, - "CanQueueSecondShot": true, - "bFirerate": 715, - "Ergonomics": 83, - "Velocity": 0, - "bEffDist": 500, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "62e7c98b550c8218d602cbb4", - "defAmmo": "59e6920f86f77411d82aa167", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "62e7c4fba689e8c9c50dfc3f", - "_parent": "62e7c4fba689e8c9c50dfc38", - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0.16, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.6, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.057, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 200, - "RecoilForceUp": 52, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.4, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.12, - "z": -0.01 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.12, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.12, - "z": -0.03 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.03, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": true, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.183425, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.985, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.015, - "HeatFactorByShot": 1.27, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.025, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "59ff346386f77477562ff5e2": { - "_id": "59ff346386f77477562ff5e2", - "_name": "weapon_izhmash_akms_762x39", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_akms_762x39", - "ShortName": "weapon_izhmash_akms_762x39", - "Description": "weapon_izhmash_akms_762x39", - "Weight": 2.092, - "BackgroundColor": "black", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/akm/weapon_izhmash_akms_762x39_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 139, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_gas_block", - "_id": "59ff346386f77477562ff5e4", - "_parent": "59ff346386f77477562ff5e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a01ad4786f77450561fda02", - "59c6633186f7740cf0493bb9", - "59d64ec286f774171d1e0a42", - "59e649f986f77411d949b246", - "5b237e425acfc4771e1be0b6", - "59ccfdba86f7747f2109a587", - "5cf656f2d7f00c06585fb6eb", - "5d4aab30a4b9365435358c55" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_launcher", - "_id": "59ff346386f77477562ff5e5", - "_parent": "59ff346386f77477562ff5e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5648b62b4bdc2d9d488b4585", - "62e7e7bbe6da9612f743f1e0" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "59ff346386f77477562ff5e6", - "_parent": "59ff346386f77477562ff5e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59d64fc686f774171b243fe2", - "5a0d716f1526d8000d26b1e2", - "5f633f68f5750b524b45f112", - "5c878ebb2e2216001219d48a", - "59e61eb386f77440d64f5daf", - "59e8a00d86f7742ad93b569c", - "5a9ea27ca2750c00137fa672", - "5cc9ad73d7f00c000e2579d4", - "5c7951452e221644f31bfd5c", - "615d8e9867085e45ef1409c6", - "5a0abb6e1526d8000a025282", - "59bffc1f86f77435b128b872", - "593d489686f7745c6255d58a", - "5a0d63621526d8dba31fe3bf", - "5a9fbacda2750c00141e080f", - "64942bfc6ee699f6890dff95" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip_akms", - "_id": "59ff346386f77477562ff5e7", - "_parent": "59ff346386f77477562ff5e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "623c3be0484b5003161840dc", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "59ff346386f77477562ff5e8", - "_parent": "59ff346386f77477562ff5e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d2c76ed48f03532f2136169", - "5d2c770c48f0354b4a07c100", - "59d6507c86f7741b846413a2", - "59e6449086f7746c9f75e822", - "5d2c772c48f0355d95672c25", - "5649af884bdc2d1b2b8b4589", - "628a665a86cbd9750d2ff5e5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "59ff346386f77477562ff5e9", - "_parent": "59ff346386f77477562ff5e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59d650cf86f7741b846413a4", - "5a0eb980fcdbcb001a3b00a6", - "5649d9a14bdc2d79388b4580", - "628a7b23b0f75035732dd565" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock_akms", - "_id": "59ff346386f77477562ff5ea", - "_parent": "59ff346386f77477562ff5e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59ff3b6a86f77477562ff5ed", - "5abcd472d8ce8700166032ae" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "59ff346386f77477562ff5eb", - "_parent": "59ff346386f77477562ff5e2", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "59e5d83b86f7745aed03d262", - "5a01c29586f77474660c694c", - "5ac66bea5acfc43b321d4aec", - "59d625f086f774661516605d", - "5b1fd4e35acfc40018633c39", - "5a0060fc86f7745793204432", - "59e5f5a486f7746c530b3ce2", - "5b1fb3e15acfc4001637f068", - "59d6272486f77466146386ff", - "5e21a3c67e40bd02257a008a", - "5cbdc23eae9215001136a407", - "5c6175362e221600133e3b94", - "59fafc5086f7740dbe19f6c3", - "59fafc9386f774067d462453", - "5cfe8010d7ad1a59283b14c6", - "6272874a6c47bd74f92e2087", - "64b9cf0ac12b9c38db26923a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_charge", - "_id": "59ff346386f77477562ff5ec", - "_parent": "59ff346386f77477562ff5e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5a3fed5286f7741097240a8f", - "_parent": "59ff346386f77477562ff5e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a0f096dfcdbcb0176308b15" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber762x39", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 6000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 600, - "Ergonomics": 24, - "Velocity": 1.8, - "bEffDist": 400, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "59d625f086f774661516605d", - "defAmmo": "5656d7c34bdc2d9d198b4587", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "59ff346386f77477562ff5e3", - "_parent": "59ff346386f77477562ff5e2", - "_props": { - "filters": [ - { - "Filter": [ - "59e0d99486f7744a32234762", - "59e4d3d286f774176a36250a", - "5656d7c34bdc2d9d198b4587", - "59e4cf5286f7741778269d8a", - "59e4d24686f7741776641ac7", - "601aa3d2b2bcb34913271e6d", - "64b7af5a8532cf95ee0a0dbd", - "64b7af434b75259c590fa893", - "64b7af734b75259c590fa895" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.067, - "AimPlane": 0.19, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.4, - "RecoilDampingHandRotation": 0.86, - "RecoilCamera": 0.069, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 403, - "RecoilForceUp": 162, - "RecolDispersion": 11, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 85, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock_akms", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.9306, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 0.9503, - "HeatFactorByShot": 1.34, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, "628a60ae6b1d481ff772e9c8": { "_id": "628a60ae6b1d481ff772e9c8", "_name": "weapon_rifle_dynamics_704_762x39", @@ -224895,1983 +226089,6 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, - "5f2a9575926fd9352339381f": { - "_id": "5f2a9575926fd9352339381f", - "_name": "weapon_kel_tec_rfb_762x51", - "_parent": "5447b6194bdc2d67278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_kel_tec_rfb_762x51", - "ShortName": "weapon_kel_tec_rfb_762x51", - "Description": "weapon_kel_tec_rfb_762x51\n", - "Weight": 1.95, - "BackgroundColor": "black", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_dmr", - "Prefab": { - "path": "assets/content/weapons/rfb/weapon_kel_tec_rfb_762x51_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 106, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "5f2a9575926fd93523393822", - "_parent": "5f2a9575926fd9352339381f", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5b7bef1e5acfc43d82528402", - "5b099ac65acfc400186331e1", - "5b7bef5d5acfc43bca7067a3", - "5b7c2d1d5acfc43d1028532a", - "5b7d37845acfc400170e2f87" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_barrel", - "_id": "5f2a9575926fd93523393825", - "_parent": "5f2a9575926fd9352339381f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f2aa46b878ef416f538b567" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "5f32901b31397017e316ceff", - "_parent": "5f2a9575926fd9352339381f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f2aa47a200e2c0ee46efa71" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5f4c08e8420b2128d236dc73", - "_parent": "5f2a9575926fd9352339381f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f2aa49f9b44de6b1b4e68d4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "marksmanRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber762x51", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 1900, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 700, - "Ergonomics": 48, - "Velocity": 0, - "bEffDist": 900, - "bHearDist": 80, - "isChamberLoad": false, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5b7bef1e5acfc43d82528402", - "defAmmo": "5e023e53d4353e3302577c4c", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5f2a9576926fd93523393828", - "_parent": "5f2a9575926fd9352339381f", - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0, - "AimPlane": 0.22, - "DeviationCurve": 1.1, - "DeviationMax": 30, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.23, - "RecoilReturnSpeedHandRotation": 3, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.1056, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 307, - "RecoilForceUp": 148, - "RecolDispersion": 11, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.4, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.3, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1, - "y": 1, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.21505, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.98, - "CoolFactorGun": 2.592, - "CoolFactorGunMods": 1.02, - "HeatFactorByShot": 2.12, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "639af924d0446708ee62294e": { - "_id": "639af924d0446708ee62294e", - "_name": "launcher_ak_toz_gp25_40_vog_settings", - "_parent": "5447bedf4bdc2d87278b4568", - "_type": "Item", - "_props": { - "Name": "launcher_ak_toz_gp25_40_vog_settings", - "ShortName": "launcher_ak_toz_gp25_40_vog_settings", - "Description": "launcher_ak_toz_gp25_40_vog_settings\n", - "Weight": 2.92, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_dmr", - "Prefab": { - "path": "assets/content/weapons/fn40gl/weapon_fn_40gl_s_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 550, - "RepairSpeed": 2, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Pistol", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "grenadeLauncher", - "weapUseType": "primary", - "ammoCaliber": "Caliber40mmRU", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 900, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 70, - "isFastReload": false, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": false, - "bFirerate": 30, - "Ergonomics": 51, - "Velocity": 0, - "bEffDist": 50, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5a718b548dc32e000d46d262", - "defAmmo": "5656eb674bdc2d35148b457c", - "AdjustCollimatorsToTrajectory": true, - "shotgunDispersion": 6, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "639af924d0446708ee622956", - "_parent": "639af924d0446708ee62294e", - "_props": { - "filters": [ - { - "Filter": [ - "5656eb674bdc2d35148b457c" - ], - "MaxStackCount": 0 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "OnlyBarrel", - "CenterOfImpact": 0.7, - "AimPlane": 0.026, - "DeviationCurve": 2.9, - "DeviationMax": 15, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.345, - "RecoilReturnSpeedHandRotation": 1, - "RecoilDampingHandRotation": 0.9, - "RecoilCamera": 0.027, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 500, - "RecoilForceUp": 230, - "RecolDispersion": 15, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.57, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.47, - "z": -0.05 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -4, - "y": 4, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.01, - "y": 0.11, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.01, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.2, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 1, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 0, - "BaseMalfunctionChance": 0.1771, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 0.576, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1, - "AllowOverheat": false, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": true, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5448bd6b4bdc2dfc2f8b4569" - }, - "6217726288ed9f0845317459": { - "_id": "6217726288ed9f0845317459", - "_name": "weapon_rsp30_green", - "_parent": "5447bedf4bdc2d87278b4568", - "_type": "Item", - "_props": { - "Name": "weapon_zid_sp81_26x75", - "ShortName": "weapon_zid_sp81_26x75", - "Description": "weapon_zid_sp81_26x75\n\n", - "Weight": 0.19, - "BackgroundColor": "green", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/weapons/rsp30/weapon_rsp30_green_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 550, - "RepairSpeed": 2, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": true, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "specialWeapon", - "weapUseType": "secondary", - "ammoCaliber": "Caliber26x75", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 900, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 70, - "isFastReload": false, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": false, - "bFirerate": 30, - "Ergonomics": 51, - "Velocity": 0, - "bEffDist": 50, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5a718b548dc32e000d46d262", - "defAmmo": "624c0570c9b794431568f5d5", - "AdjustCollimatorsToTrajectory": true, - "shotgunDispersion": 10, - "Chambers": [], - "ReloadMode": "OnlyBarrel", - "CenterOfImpact": 0.7, - "AimPlane": 0.026, - "DeviationCurve": 1.9, - "DeviationMax": 15, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.345, - "RecoilReturnSpeedHandRotation": 1, - "RecoilDampingHandRotation": 0.9, - "RecoilCamera": 0.024, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 400, - "RecoilForceUp": 170, - "RecolDispersion": 35, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.57, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.47, - "z": -0.05 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -4, - "y": 4, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.01, - "y": 0.11, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.01, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.2, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 1, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1, - "HeatFactorGun": 1, - "CoolFactorGun": 0.576, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1, - "AllowOverheat": false, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0, - "IsFlareGun": false, - "IsOneoff": true, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": true - }, - "_proto": "5448bd6b4bdc2dfc2f8b4569" - }, - "5d52cc5ba4b9367408500062": { - "_id": "5d52cc5ba4b9367408500062", - "_name": "weapon_zid_ags30_30x29", - "_parent": "5447bed64bdc2d97278b4568", - "_type": "Item", - "_props": { - "Name": "weapon_zid_ags30_30x29", - "ShortName": "weapon_zid_ags30_30x29", - "Description": "weapon_zid_ags30_30x29\n", - "Weight": 0.1, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/ags/weapon_zid_ags30_30x29_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 60, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "5d52cc5ba4b9367408500065", - "_parent": "5d52cc5ba4b9367408500062", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5d52d479a4b936793d58c76b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_scope", - "_id": "5d53fdd4a4b93652177610c7", - "_parent": "5d52cc5ba4b9367408500062", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d53f4b7a4b936793d58c780" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "grenadeLauncher", - "weapUseType": "primary", - "ammoCaliber": "Caliber30x29", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 5000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "fullauto" - ], - "SingleFireRate": 425, - "CanQueueSecondShot": true, - "bFirerate": 425, - "Ergonomics": 200, - "Velocity": 0, - "bEffDist": 650, - "bHearDist": 80, - "isChamberLoad": false, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5d52d479a4b936793d58c76b", - "defAmmo": "5d70e500a4b9364de70d38ce", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5d52cc5ba4b9367408500064", - "_parent": "5d52cc5ba4b9367408500062", - "_props": { - "filters": [ - { - "Filter": [ - "5d70e500a4b9364de70d38ce" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 1, - "AimPlane": 0.19, - "DeviationCurve": 1, - "DeviationMax": 100, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.45, - "RecoilReturnSpeedHandRotation": 1.7, - "RecoilDampingHandRotation": 0.89, - "RecoilCamera": 0.24, - "RecoilStableIndexShot": 8, - "RecoilForceBack": 165, - "RecoilForceUp": 43, - "RecolDispersion": 45, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.55, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2.4, - "y": 2.4, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 8, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 1, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1, - "AllowOverheat": false, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": true, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5839a40f24597726f856b511": { - "_id": "5839a40f24597726f856b511", - "_name": "weapon_izhmash_aks74ub_545x39", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_aks74ub_545x39", - "ShortName": "weapon_izhmash_aks74ub_545x39", - "Description": "weapon_izhmash_aks74ub_545x39", - "Weight": 1.85, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/aks74u/weapon_izhmash_aks74ub_545x39_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 109, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "5839a40f24597726f856b514", - "_parent": "5839a40f24597726f856b511", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "623c3be0484b5003161840dc", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5839a40f24597726f856b515", - "_parent": "5839a40f24597726f856b511", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59ecc28286f7746d7a68aa8c", - "5ab626e4d8ce87272e4c6e43", - "57dc347d245977596754e7a1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "5839a40f24597726f856b516", - "_parent": "5839a40f24597726f856b511", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5839a40f24597726f856b517", - "_parent": "5839a40f24597726f856b511", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "564ca9df4bdc2d35148b4569", - "564ca99c4bdc2d16268b4589", - "55d480c04bdc2d1d4e8b456a", - "5cbdaf89ae9215000e5b9c94", - "55d481904bdc2d8c2f8b456a", - "55d482194bdc2d1d4e8b456b", - "55d4837c4bdc2d1d4e8b456c", - "5aaa4194e5b5b055d06310a5", - "5bed61680db834001d2c45ab", - "5bed625c0db834001c062946", - "649ec30cb013f04a700e60fb", - "64b9e265c94d0d15c5027e35" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_muzzle", - "_id": "5839a40f24597726f856b518", - "_parent": "5839a40f24597726f856b511", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac72e945acfc43f3b691116", - "5ac7655e5acfc40016339a19", - "5649aa744bdc2ded0b8b457e", - "5f633f791b231926f2329f13", - "5943eeeb86f77412d6384f6b", - "5cc9a96cd7f00c011c04e04a", - "615d8f5dd92c473c770212ef", - "57dc324a24597759501edc20", - "59bffc1f86f77435b128b872", - "593d493f86f7745e6b2ceb22", - "564caa3d4bdc2d17108b458e", - "57ffb0e42459777d047111c5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "5839a40f24597726f856b519", - "_parent": "5839a40f24597726f856b511", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57dc334d245977597164366f", - "5839a7742459773cf9693481", - "655cb6b5d680a544f30607fa" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5839a40f24597726f856b51a", - "_parent": "5839a40f24597726f856b511", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "638db77630c4240f9e06f8b6", - "63d114019e35b334d82302f7", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_gas_block", - "_id": "59d37a7886f7747ff1158152", - "_parent": "5839a40f24597726f856b511", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59d36a0086f7747e673f3946" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber545x39", - "Durability": 95, - "MaxDurability": 100, - "OperatingResource": 5000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 44, - "Velocity": -17.9, - "bEffDist": 300, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "55d480c04bdc2d1d4e8b456a", - "defAmmo": "56dff3afd2720bba668b4567", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5839a40f24597726f856b512", - "_parent": "5839a40f24597726f856b511", - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" - ], - "MaxStackCount": 0 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.1, - "AimPlane": 0.15, - "DeviationCurve": 1.9, - "DeviationMax": 15.5, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.7, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.067, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 373, - "RecoilForceUp": 102, - "RecolDispersion": 12, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.7, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1.0691, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.1323, - "HeatFactorByShot": 1.555, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5644bd2b4bdc2d3b4c8b4572" - }, - "624c0b3340357b5f566e8766": { - "_id": "624c0b3340357b5f566e8766", - "_name": "weapon_rsp30_yellow", - "_parent": "5447bedf4bdc2d87278b4568", - "_type": "Item", - "_props": { - "Name": "weapon_zid_sp81_26x75", - "ShortName": "weapon_zid_sp81_26x75", - "Description": "weapon_zid_sp81_26x75\n\n", - "Weight": 0.19, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/weapons/rsp30/weapon_rsp30_yellow_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 550, - "RepairSpeed": 2, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": true, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "specialWeapon", - "weapUseType": "secondary", - "ammoCaliber": "Caliber26x75", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 900, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 70, - "isFastReload": false, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": false, - "bFirerate": 30, - "Ergonomics": 51, - "Velocity": 0, - "bEffDist": 50, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5a718b548dc32e000d46d262", - "defAmmo": "624c09e49b98e019a3315b66", - "AdjustCollimatorsToTrajectory": true, - "shotgunDispersion": 10, - "Chambers": [], - "ReloadMode": "OnlyBarrel", - "CenterOfImpact": 0.7, - "AimPlane": 0.026, - "DeviationCurve": 1.9, - "DeviationMax": 15, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.345, - "RecoilReturnSpeedHandRotation": 1, - "RecoilDampingHandRotation": 0.9, - "RecoilCamera": 0.024, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 400, - "RecoilForceUp": 170, - "RecolDispersion": 35, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.57, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.47, - "z": -0.05 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -4, - "y": 4, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.01, - "y": 0.11, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.01, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.2, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 1, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1, - "HeatFactorGun": 1, - "CoolFactorGun": 0.576, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1, - "AllowOverheat": false, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0, - "IsFlareGun": false, - "IsOneoff": true, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": true - }, - "_proto": "5448bd6b4bdc2dfc2f8b4569" - }, - "5cdeb229d7f00c000e7ce174": { - "_id": "5cdeb229d7f00c000e7ce174", - "_name": "weapon_ckib_nsv_utes_127x108", - "_parent": "5447bed64bdc2d97278b4568", - "_type": "Item", - "_props": { - "Name": "weapon_ckib_nsv_utes_127x108", - "ShortName": "weapon_ckib_nsv_utes_127x108", - "Description": "weapon_ckib_nsv_utes_127x108\n", - "Weight": 0.1, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/utes/weapon_ckib_nsv_utes_127x108_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 60, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "5cffa611d7ad1a59283b17d6", - "_parent": "5cdeb229d7f00c000e7ce174", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5cffa483d7ad1a049e54ef1c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "machinegun", - "weapUseType": "primary", - "ammoCaliber": "Caliber545x39", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 5000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 100, - "Velocity": 1.8, - "bEffDist": 650, - "bHearDist": 80, - "isChamberLoad": false, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5cffa483d7ad1a049e54ef1e", - "defAmmo": "5cde8864d7f00c0010373be1", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5cdeb229d7f00c000e7ce176", - "_parent": "5cdeb229d7f00c000e7ce174", - "_props": { - "filters": [ - { - "Filter": [ - "5cde8864d7f00c0010373be1", - "5d2f2ab648f03550091993ca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.15, - "AimPlane": 0.19, - "DeviationCurve": 1, - "DeviationMax": 100, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.247, - "RecoilReturnSpeedHandRotation": 2.2, - "RecoilDampingHandRotation": 0.8, - "RecoilCamera": 0.055, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 165, - "RecoilForceUp": 26, - "RecolDispersion": 12, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.55, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.6, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2.4, - "y": 2.4, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 8, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 1, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1, - "AllowOverheat": false, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": true, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, "59e6687d86f77411d949b251": { "_id": "59e6687d86f77411d949b251", "_name": "weapon_molot_akm_vpo_209_366_TKM", @@ -227773,6 +226990,1141 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, + "639af924d0446708ee62294e": { + "_id": "639af924d0446708ee62294e", + "_name": "launcher_ak_toz_gp25_40_vog_settings", + "_parent": "5447bedf4bdc2d87278b4568", + "_type": "Item", + "_props": { + "Name": "launcher_ak_toz_gp25_40_vog_settings", + "ShortName": "launcher_ak_toz_gp25_40_vog_settings", + "Description": "launcher_ak_toz_gp25_40_vog_settings\n", + "Weight": 2.92, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_dmr", + "Prefab": { + "path": "assets/content/weapons/fn40gl/weapon_fn_40gl_s_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 550, + "RepairSpeed": 2, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Pistol", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "grenadeLauncher", + "weapUseType": "primary", + "ammoCaliber": "Caliber40mmRU", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 900, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 70, + "isFastReload": false, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": false, + "bFirerate": 30, + "Ergonomics": 51, + "Velocity": 0, + "bEffDist": 50, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5a718b548dc32e000d46d262", + "defAmmo": "5656eb674bdc2d35148b457c", + "AdjustCollimatorsToTrajectory": true, + "shotgunDispersion": 6, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "639af924d0446708ee622956", + "_parent": "639af924d0446708ee62294e", + "_props": { + "filters": [ + { + "Filter": [ + "5656eb674bdc2d35148b457c" + ], + "MaxStackCount": 0 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "OnlyBarrel", + "CenterOfImpact": 0.7, + "AimPlane": 0.026, + "DeviationCurve": 2.9, + "DeviationMax": 15, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.345, + "RecoilReturnSpeedHandRotation": 1, + "RecoilDampingHandRotation": 0.9, + "RecoilCamera": 0.027, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 500, + "RecoilForceUp": 230, + "RecolDispersion": 15, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.57, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.47, + "z": -0.05 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -4, + "y": 4, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.01, + "y": 0.11, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.01, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.2, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 1, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 0, + "BaseMalfunctionChance": 0.1771, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 0.576, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1, + "AllowOverheat": false, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": true, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5448bd6b4bdc2dfc2f8b4569" + }, + "6217726288ed9f0845317459": { + "_id": "6217726288ed9f0845317459", + "_name": "weapon_rsp30_green", + "_parent": "5447bedf4bdc2d87278b4568", + "_type": "Item", + "_props": { + "Name": "weapon_zid_sp81_26x75", + "ShortName": "weapon_zid_sp81_26x75", + "Description": "weapon_zid_sp81_26x75\n\n", + "Weight": 0.19, + "BackgroundColor": "green", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "spec_multitool", + "Prefab": { + "path": "assets/content/weapons/rsp30/weapon_rsp30_green_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 550, + "RepairSpeed": 2, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": true, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "specialWeapon", + "weapUseType": "secondary", + "ammoCaliber": "Caliber26x75", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 900, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 70, + "isFastReload": false, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": false, + "bFirerate": 30, + "Ergonomics": 51, + "Velocity": 0, + "bEffDist": 50, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5a718b548dc32e000d46d262", + "defAmmo": "624c0570c9b794431568f5d5", + "AdjustCollimatorsToTrajectory": true, + "shotgunDispersion": 10, + "Chambers": [], + "ReloadMode": "OnlyBarrel", + "CenterOfImpact": 0.7, + "AimPlane": 0.026, + "DeviationCurve": 1.9, + "DeviationMax": 15, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.345, + "RecoilReturnSpeedHandRotation": 1, + "RecoilDampingHandRotation": 0.9, + "RecoilCamera": 0.024, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 400, + "RecoilForceUp": 170, + "RecolDispersion": 35, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.57, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.47, + "z": -0.05 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -4, + "y": 4, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.01, + "y": 0.11, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.01, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.2, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 1, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1, + "HeatFactorGun": 1, + "CoolFactorGun": 0.576, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1, + "AllowOverheat": false, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0, + "IsFlareGun": false, + "IsOneoff": true, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": true + }, + "_proto": "5448bd6b4bdc2dfc2f8b4569" + }, + "5d52cc5ba4b9367408500062": { + "_id": "5d52cc5ba4b9367408500062", + "_name": "weapon_zid_ags30_30x29", + "_parent": "5447bed64bdc2d97278b4568", + "_type": "Item", + "_props": { + "Name": "weapon_zid_ags30_30x29", + "ShortName": "weapon_zid_ags30_30x29", + "Description": "weapon_zid_ags30_30x29\n", + "Weight": 0.1, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/ags/weapon_zid_ags30_30x29_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 60, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "5d52cc5ba4b9367408500065", + "_parent": "5d52cc5ba4b9367408500062", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5d52d479a4b936793d58c76b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_scope", + "_id": "5d53fdd4a4b93652177610c7", + "_parent": "5d52cc5ba4b9367408500062", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d53f4b7a4b936793d58c780" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "grenadeLauncher", + "weapUseType": "primary", + "ammoCaliber": "Caliber30x29", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 5000, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "fullauto" + ], + "SingleFireRate": 425, + "CanQueueSecondShot": true, + "bFirerate": 425, + "Ergonomics": 200, + "Velocity": 0, + "bEffDist": 650, + "bHearDist": 80, + "isChamberLoad": false, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5d52d479a4b936793d58c76b", + "defAmmo": "5d70e500a4b9364de70d38ce", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5d52cc5ba4b9367408500064", + "_parent": "5d52cc5ba4b9367408500062", + "_props": { + "filters": [ + { + "Filter": [ + "5d70e500a4b9364de70d38ce" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 1, + "AimPlane": 0.19, + "DeviationCurve": 1, + "DeviationMax": 100, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.45, + "RecoilReturnSpeedHandRotation": 1.7, + "RecoilDampingHandRotation": 0.89, + "RecoilCamera": 0.24, + "RecoilStableIndexShot": 8, + "RecoilForceBack": 165, + "RecoilForceUp": 43, + "RecolDispersion": 45, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.55, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2.4, + "y": 2.4, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 8, + "RotationCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 1, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1, + "AllowOverheat": false, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": true, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5447a9cd4bdc2dbd208b4567": { + "_id": "5447a9cd4bdc2dbd208b4567", + "_name": "weapon_colt_m4a1_556x45", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "Штурмовая винтовка Colt M4A1 5.56x45", + "ShortName": "M4A1 5.56x45", + "Description": "Colt M4A1- штурмовая винтовка (карабин) созданная в США на базе платформы AR-15 под патрон 5.56x45 NATO. Планировалась к вооружению экипажей боевых машин и расчетов техники, которым было необходимо иметь оружие меньших габаритов чем штатное вооружение но использующее стандартный боеприпас. Однако вскоре US SOCOM (Командование Сил Специальных Операций США) приняло на вооружение M4A1 для всех входящих в его состав подразделений. Затем последовало полное принятие M4A1 на вооружение в армии и морской пехоте США.", + "Weight": 0.38, + "BackgroundColor": "black", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/m4a1/weapon_colt_m4a1_556x45_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 166, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "55d354084bdc2d8c2f8b4568", + "_parent": "5447a9cd4bdc2dbd208b4567", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0e2ff6d174af02a1659d4a", + "5a33e75ac4a2826c6e06d759", + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "602e71bd53a60014f9705bfa", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5cc9bcaed7f00c011c04e179", + "5bb20e18d4351e00320205d5", + "5bb20e0ed4351e3bac1212dc", + "6193dcd0f8ee7e52e4210a28", + "5d025cc1d7ad1a53845279ef", + "5c6d7b3d2e221600114c9b7d", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "55802f5d4bdc2dac148b458f", + "5d15cf3bd7ad1a67e71518b2", + "59db3a1d86f77429e05b4e92", + "5fbcbd6c187fea44d52eda14", + "59db3acc86f7742a2c4ab912", + "59db3b0886f77429d72fb895", + "615d8faecabb9b7ad90f4d5d", + "5b07db875acfc40dc528a5f6", + "63f5feead259b42f0b4d6d0f", + "652911675ae2ae97b80fdf3c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "55d3555c4bdc2d962f8b4568", + "_parent": "5447a9cd4bdc2dbd208b4567", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "55d4887d4bdc2d962f8b4570", + "61840bedd92c473c77021635", + "61840d85568c120fdd2962a5", + "5c05413a0db834001c390617", + "5c6d450c2e221600114c997d", + "5c6d42cb2e2216000e69d7d1", + "59c1383d86f774290a37e0ca", + "5aaa5e60e5b5b000140293d6", + "5448c1d04bdc2dff2f8b4569", + "5aaa5dfee5b5b000140293d3", + "5d1340b3d7ad1a0b52682ed7", + "544a378f4bdc2d30388b4567", + "5d1340bdd7ad1a0e8d245aab", + "55802d5f4bdc2dac148b458e", + "5d1340cad7ad1a0b0b249869", + "6241c2c2117ad530666a5108", + "5c6592372e221600133e47d7", + "544a37c44bdc2d25388b4567", + "5c6d46132e221601da357d56" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_reciever", + "_id": "55d5a2ec4bdc2d972f8b4575", + "_parent": "5447a9cd4bdc2dbd208b4567", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0e2f26d174af02a9625114", + "55d355e64bdc2d962f8b4569", + "5d4405aaa4b9361e6a4e6bd3", + "5c07a8770db8340023300450", + "59bfe68886f7746004266202", + "63f5ed14534b2c3d5479a677" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "55d5a3074bdc2d61338b4574", + "_parent": "5447a9cd4bdc2dbd208b4567", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a33ca0fc4a282000d72292f", + "5c0faeddd174af02a962601f", + "5649be884bdc2d79388b4577", + "5d120a10d7ad1a4e1026ba85", + "5b0800175acfc400153aebd4", + "5947e98b86f774778f1448bc", + "5947eab886f77475961d96c5", + "602e3f1254072b51b239f713", + "5c793fb92e221644f31bfb64", + "5c793fc42e221600114ca25d", + "591aef7986f774139d495f03", + "591af10186f774139d495f0e", + "627254cc9c563e6e442c398f", + "638de3603a1a4031d8260b8c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "55d5a30f4bdc2d882f8b4574", + "_parent": "5447a9cd4bdc2dbd208b4567", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0faf68d174af02a96260b8", + "56ea7165d2720b6e518b4583", + "55d44fd14bdc2d962f8b456e", + "5ea16d4d5aad6446a939753d", + "5bb20dbcd4351e44f824c04e", + "6033749e88382f4fab3fd2c5", + "5b2240bf5acfc40dc528af69", + "5d44334ba4b9362b346d1948", + "5f633ff5c444ce7e3c30a006", + "651bf5617b3b552ef6712cb7" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber556x45NATO", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 4000, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 800, + "Ergonomics": 48, + "Velocity": 0, + "bEffDist": 500, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "55d4887d4bdc2d962f8b4570", + "defAmmo": "54527a984bdc2d4e668b4567", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "56eaa85ad2720b69698b456c", + "_parent": "5447a9cd4bdc2dbd208b4567", + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0.16, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.5, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.063, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 342, + "RecoilForceUp": 119, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.4, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.24, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.03, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.183425, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1.235, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.025, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + } + }, "5ac66d2e5acfc43b321d4b53": { "_id": "5ac66d2e5acfc43b321d4b53", "_name": "weapon_izhmash_ak103_762x39", @@ -228291,23 +228643,23 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, - "5447a9cd4bdc2dbd208b4567": { - "_id": "5447a9cd4bdc2dbd208b4567", - "_name": "weapon_colt_m4a1_556x45", + "623063e994fc3f7b302a9696": { + "_id": "623063e994fc3f7b302a9696", + "_name": "weapon_hk_g36_556x45", "_parent": "5447b5f14bdc2d61278b4567", "_type": "Item", "_props": { "Name": "Штурмовая винтовка Colt M4A1 5.56x45", "ShortName": "M4A1 5.56x45", "Description": "Colt M4A1- штурмовая винтовка (карабин) созданная в США на базе платформы AR-15 под патрон 5.56x45 NATO. Планировалась к вооружению экипажей боевых машин и расчетов техники, которым было необходимо иметь оружие меньших габаритов чем штатное вооружение но использующее стандартный боеприпас. Однако вскоре US SOCOM (Командование Сил Специальных Операций США) приняло на вооружение M4A1 для всех входящих в его состав подразделений. Затем последовало полное принятие M4A1 на вооружение в армии и морской пехоте США.", - "Weight": 0.38, + "Weight": 0.8, "BackgroundColor": "black", - "Width": 1, + "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "weap_ar", "Prefab": { - "path": "assets/content/weapons/m4a1/weapon_colt_m4a1_556x45_container.bundle", + "path": "assets/content/weapons/g36/weapon_hk_g36_556x45_container.bundle", "rcid": "" }, "UsePrefab": { @@ -228324,7 +228676,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, + "LootExperience": 10, "ExamineExperience": 8, "HideEntrails": false, "RepairCost": 166, @@ -228353,65 +228705,17 @@ "IsUnremovable": false, "Grids": [], "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "55d354084bdc2d8c2f8b4568", - "_parent": "5447a9cd4bdc2dbd208b4567", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0e2ff6d174af02a1659d4a", - "5a33e75ac4a2826c6e06d759", - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "602e71bd53a60014f9705bfa", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5cc9bcaed7f00c011c04e179", - "5bb20e18d4351e00320205d5", - "5bb20e0ed4351e3bac1212dc", - "6193dcd0f8ee7e52e4210a28", - "5d025cc1d7ad1a53845279ef", - "5c6d7b3d2e221600114c9b7d", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "55802f5d4bdc2dac148b458f", - "5d15cf3bd7ad1a67e71518b2", - "59db3a1d86f77429e05b4e92", - "5fbcbd6c187fea44d52eda14", - "59db3acc86f7742a2c4ab912", - "59db3b0886f77429d72fb895", - "615d8faecabb9b7ad90f4d5d", - "5b07db875acfc40dc528a5f6", - "63f5feead259b42f0b4d6d0f", - "652911675ae2ae97b80fdf3c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_magazine", - "_id": "55d3555c4bdc2d962f8b4568", - "_parent": "5447a9cd4bdc2dbd208b4567", + "_id": "623063e994fc3f7b302a9699", + "_parent": "623063e994fc3f7b302a9696", "_props": { "filters": [ { "AnimationIndex": -1, "Filter": [ + "62307b7b10d2321fa8741921", "55d4887d4bdc2d962f8b4570", - "61840bedd92c473c77021635", - "61840d85568c120fdd2962a5", "5c05413a0db834001c390617", "5c6d450c2e221600114c997d", "5c6d42cb2e2216000e69d7d1", @@ -228424,7 +228728,6 @@ "5d1340bdd7ad1a0e8d245aab", "55802d5f4bdc2dac148b458e", "5d1340cad7ad1a0b0b249869", - "6241c2c2117ad530666a5108", "5c6592372e221600133e47d7", "544a37c44bdc2d25388b4567", "5c6d46132e221601da357d56" @@ -228436,52 +228739,37 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c394bdc2dae468b4577" }, - { - "_name": "mod_reciever", - "_id": "55d5a2ec4bdc2d972f8b4575", - "_parent": "5447a9cd4bdc2dbd208b4567", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0e2f26d174af02a9625114", - "55d355e64bdc2d962f8b4569", - "5d4405aaa4b9361e6a4e6bd3", - "5c07a8770db8340023300450", - "59bfe68886f7746004266202", - "63f5ed14534b2c3d5479a677" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_stock", - "_id": "55d5a3074bdc2d61338b4574", - "_parent": "5447a9cd4bdc2dbd208b4567", + "_id": "623063e994fc3f7b302a969b", + "_parent": "623063e994fc3f7b302a9696", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a33ca0fc4a282000d72292f", - "5c0faeddd174af02a962601f", - "5649be884bdc2d79388b4577", - "5d120a10d7ad1a4e1026ba85", - "5b0800175acfc400153aebd4", - "5947e98b86f774778f1448bc", - "5947eab886f77475961d96c5", - "602e3f1254072b51b239f713", - "5c793fb92e221644f31bfb64", - "5c793fc42e221600114ca25d", - "591aef7986f774139d495f03", - "591af10186f774139d495f0e", - "627254cc9c563e6e442c398f", - "638de3603a1a4031d8260b8c" + "622f140da5958f63c67f1735", + "622f14e899892a7f9e08f6c5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "623076ea94fc3f7b302a969f", + "_parent": "623063e994fc3f7b302a9696", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "622b379bf9cfc87d675d2de5", + "622b3858034a3e17ad0b81f5", + "622b38c56762c718e457e246" ] } ] @@ -228491,24 +228779,17 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_charge", - "_id": "55d5a30f4bdc2d882f8b4574", - "_parent": "5447a9cd4bdc2dbd208b4567", + "_name": "mod_handguard", + "_id": "6230771f14709f19dd067958", + "_parent": "623063e994fc3f7b302a9696", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5c0faf68d174af02a96260b8", - "56ea7165d2720b6e518b4583", - "55d44fd14bdc2d962f8b456e", - "5ea16d4d5aad6446a939753d", - "5bb20dbcd4351e44f824c04e", - "6033749e88382f4fab3fd2c5", - "5b2240bf5acfc40dc528af69", - "5d44334ba4b9362b346d1948", - "5f633ff5c444ce7e3c30a006", - "651bf5617b3b552ef6712cb7" + "62386b2adf47d66e835094b2", + "6231654c71b5bc3baa1078e5", + "62386b7153757417e93a4e9f" ] } ] @@ -228516,6 +228797,46 @@ "_required": true, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "62307748a0460e5284636a0e", + "_parent": "623063e994fc3f7b302a9696", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "622f039199f4ea1a4d6c9a17", + "622f02437762f55aaa68ac85" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "623077855f08e151e40a35a7", + "_parent": "623063e994fc3f7b302a9696", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "622b4d7df9cfc87d675d2ded", + "622b4f54dc8dcc0ba8742f85", + "622b3d5cf9cfc87d675d2de9", + "622b3c081b89c677a33bcda6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, @@ -228532,27 +228853,28 @@ "isFastReload": true, "weapFireType": [ "single", + "burst", "fullauto" ], "SingleFireRate": 450, "CanQueueSecondShot": true, - "bFirerate": 800, - "Ergonomics": 48, + "bFirerate": 750, + "Ergonomics": 60, "Velocity": 0, "bEffDist": 500, "bHearDist": 80, "isChamberLoad": true, "chamberAmmoCount": 1, "isBoltCatch": true, - "defMagType": "55d4887d4bdc2d962f8b4570", + "defMagType": "62307b7b10d2321fa8741921", "defAmmo": "54527a984bdc2d4e668b4567", "AdjustCollimatorsToTrajectory": false, "shotgunDispersion": 0, "Chambers": [ { "_name": "patron_in_weapon", - "_id": "56eaa85ad2720b69698b456c", - "_parent": "5447a9cd4bdc2dbd208b4567", + "_id": "623063e994fc3f7b302a969d", + "_parent": "623063e994fc3f7b302a9696", "_props": { "filters": [ { @@ -228582,7 +228904,7 @@ "AimPlane": 0.16, "DeviationCurve": 1.35, "DeviationMax": 23, - "Foldable": false, + "Foldable": true, "Retractable": false, "TacticalReloadStiffnes": { "x": 0.95, @@ -228591,13 +228913,13 @@ }, "TacticalReloadFixation": 0.95, "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.5, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.063, + "RecoilReturnSpeedHandRotation": 2.45, + "RecoilDampingHandRotation": 0.84, + "RecoilCamera": 0.062, "RecoilStableIndexShot": 5, - "RecoilForceBack": 342, - "RecoilForceUp": 119, - "RecolDispersion": 10, + "RecoilForceBack": 330, + "RecoilForceUp": 107, + "RecolDispersion": 8, "RecoilPosZMult": 1, "RecoilReturnPathDampingHandRotation": 0.48, "RecoilReturnPathOffsetHandRotation": 0.01, @@ -228662,7 +228984,7 @@ "z": 0 }, "SizeReduceRight": 0, - "FoldedSlot": "", + "FoldedSlot": "mod_stock", "CompactHandling": true, "SightingRange": 100, "MinRepairDegradation": 0, @@ -228676,15 +228998,15 @@ "HipInnaccuracyGain": 0.16, "ManualBoltCatch": false, "AimSensitivity": 0.65, - "BurstShotsCount": 3, + "BurstShotsCount": 2, "BaseMalfunctionChance": 0.183425, "AllowJam": true, "AllowFeed": true, "AllowMisfire": true, "AllowSlide": true, - "DurabilityBurnRatio": 1.15, + "DurabilityBurnRatio": 1, "HeatFactorGun": 1, - "CoolFactorGun": 3.168, + "CoolFactorGun": 3.96, "CoolFactorGunMods": 1, "HeatFactorByShot": 1.235, "AllowOverheat": true, @@ -228699,25 +229021,26 @@ "IsBeltMachineGun": false, "WithAnimatorAiming": false, "blockLeftStance": false - } + }, + "_proto": "5447a9cd4bdc2dbd208b4567" }, - "5644bd2b4bdc2d3b4c8b4572": { - "_id": "5644bd2b4bdc2d3b4c8b4572", - "_name": "weapon_izhmash_ak74n_545x39", - "_parent": "5447b5f14bdc2d61278b4567", + "64637076203536ad5600c990": { + "_id": "64637076203536ad5600c990", + "_name": "weapon_zid_pkm_762x54r", + "_parent": "5447bed64bdc2d97278b4568", "_type": "Item", "_props": { - "Name": "Автомат Калашникова АК-74Н 5.45x39", - "ShortName": "АК-74N 5.45x39", - "Description": "Автомат Калашникова калибра 5,45 мм, разработанный в 1970 году конструктором М. Т. Калашниковым. Дальнейшее развитие АКМ в связи с переходом Вооруженных Сил на новый боеприпас 5.45x39. Основное отличие от штатного АК-74 это наличие крепления для оптических и ночных прицелов.", - "Weight": 2.092, + "Name": "weapon_izhmash_rpk16_545x39", + "ShortName": "weapon_izhmash_rpk16_545x39", + "Description": "weapon_izhmash_rpk16_545x39", + "Weight": 3.852, "BackgroundColor": "black", - "Width": 4, + "Width": 3, "Height": 1, "StackMaxSize": 1, "ItemSound": "weap_ar", "Prefab": { - "path": "assets/content/weapons/ak74/weapon_izhmash_ak74n_545x39_container.bundle", + "path": "assets/content/weapons/pkm/weapon_zid_pkm_762x54r_container.bundle", "rcid": "" }, "UsePrefab": { @@ -228734,10 +229057,10 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 20, + "LootExperience": 10, "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 116, + "RepairCost": 235, "RepairSpeed": 5, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -228745,7 +229068,7 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, - "CanSellOnRagfair": true, + "CanSellOnRagfair": false, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -228764,92 +229087,19 @@ "Grids": [], "Slots": [ { - "_name": "mod_gas_block", - "_id": "5648be524bdc2d91118b45a4", - "_parent": "5644bd2b4bdc2d3b4c8b4572", + "_name": "mod_pistolgrip", + "_id": "64637076203536ad5600c992", + "_parent": "64637076203536ad5600c990", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a01ad4786f77450561fda02", - "59c6633186f7740cf0493bb9", - "59d64ec286f774171d1e0a42", - "59e649f986f77411d949b246", - "5b237e425acfc4771e1be0b6", - "59ccfdba86f7747f2109a587", - "5cf656f2d7f00c06585fb6eb", - "5d4aab30a4b9365435358c55" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_launcher", - "_id": "5648be684bdc2d3d1c8b4582", - "_parent": "5644bd2b4bdc2d3b4c8b4572", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5648b62b4bdc2d9d488b4585", - "62e7e7bbe6da9612f743f1e0" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5648be784bdc2d79388b4575", - "_parent": "5644bd2b4bdc2d3b4c8b4572", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac72e945acfc43f3b691116", - "5ac7655e5acfc40016339a19", - "5649aa744bdc2ded0b8b457e", - "5f633f791b231926f2329f13", - "5943eeeb86f77412d6384f6b", - "5cc9a96cd7f00c011c04e04a", - "615d8f5dd92c473c770212ef", - "5649ab884bdc2ded0b8b457f", - "57dc324a24597759501edc20", - "59bffc1f86f77435b128b872", - "593d493f86f7745e6b2ceb22", - "564caa3d4bdc2d17108b458e", - "57ffb0e42459777d047111c5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "5648be824bdc2d1b2b8b4583", - "_parent": "5644bd2b4bdc2d3b4c8b4572", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "619b69037b9de8162902673e", + "646371779f5f0ea59a04c204", + "64cbad529f7cf7f75c077fd5", "5f6341043ada5942720e2dc5", "6087e663132d4d12c81fd96b", - "5beec8ea0db834001a6f9dbf", + "623c3be0484b5003161840dc", "5649ad3f4bdc2df8348b4585", "5649ade84bdc2d1b2b8b4587", "59e62cc886f77440d40b52a1", @@ -228858,18 +229108,16 @@ "5cf54404d7f00c108840b2ef", "5e2192a498a36665e8337386", "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", + "63f4da90f31d4a33b87bd054", "5cf50850d7f00c056e24104c", + "59e6318286f77444dd62c4cc", "5cf508bfd7f00c056e24104e", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", "5947f92f86f77427344a76b1", "5947fa2486f77425b47c1a9b", "5c6bf4aa2e2216001219b0ae", "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "623c3be0484b5003161840dc", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", - "63f4da90f31d4a33b87bd054", "648ae3e356c6310a830fc291", "651580dc71a4f10aec4b6056" ] @@ -228881,21 +229129,90 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_reciever", - "_id": "5648be8b4bdc2d17108b4581", - "_parent": "5644bd2b4bdc2d3b4c8b4572", + "_name": "mod_magazine", + "_id": "64637076203536ad5600c994", + "_parent": "64637076203536ad5600c990", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "646372518610c40fc20204e8" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "64637076203536ad5600c996", + "_parent": "64637076203536ad5600c990", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5649af094bdc2df8348b4586", - "5ac50da15acfc4001718d287", - "5d2c76ed48f03532f2136169", - "5d2c770c48f0354b4a07c100", - "5d2c772c48f0355d95672c25", - "5649af884bdc2d1b2b8b4589", - "628a665a86cbd9750d2ff5e5" + "646371a9f2404ab67905c8e6", + "6492d7847363b8a52206bc52", + "6492e3a97df7d749100e29ee" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "64637076203536ad5600c998", + "_parent": "64637076203536ad5600c990", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "64639a9aab86f8fd4300146c", + "646371faf2404ab67905c8e9" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_bipod", + "_id": "6464d89add30e025b10af06a", + "_parent": "64637076203536ad5600c990", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6464d870bb2c580352070cc4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "6491c79400a3073ac706d2d8", + "_parent": "64637076203536ad5600c990", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6491c6f6ef312a876705191b" ] } ] @@ -228906,134 +229223,14 @@ }, { "_name": "mod_sight_rear", - "_id": "5648be944bdc2d3b4c8b4579", - "_parent": "5644bd2b4bdc2d3b4c8b4572", + "_id": "6492fba153acae0af00a29ba", + "_parent": "64637076203536ad5600c990", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5ac733a45acfc400192630e2", - "5649b0544bdc2d1b2b8b458a", - "5ac72e475acfc400180ae6fe", - "5649d9a14bdc2d79388b4580", - "628a7b23b0f75035732dd565", - "649ec2cec93611967b03495e", - "5bf3f59f0db834001a6fa060" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5648bea14bdc2d16268b457a", - "_parent": "5644bd2b4bdc2d3b4c8b4572", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649b0fc4bdc2d17108b4588", - "5cbdb1b0ae9215000d50e105", - "5649b1c04bdc2d16268b457c", - "5cf518cfd7f00c065b422214", - "5b04473a5acfc40018632f70", - "5e217ba4c1434648c13568cd", - "59d6514b86f774171a068a08", - "5b0e794b5acfc47a877359b2", - "59e6227d86f77440d64f5dc2", - "59e89d0986f77427600d226e", - "6087e2a5232e5a31c233d552", - "5649b2314bdc2d79388b4576", - "5b222d335acfc4771e1be099", - "628a6678ccaab13006640e49" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5648beb24bdc2d91118b45a5", - "_parent": "5644bd2b4bdc2d3b4c8b4572", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "564ca9df4bdc2d35148b4569", - "564ca99c4bdc2d16268b4589", - "55d480c04bdc2d1d4e8b456a", - "5cbdaf89ae9215000e5b9c94", - "55d481904bdc2d8c2f8b456a", - "55d482194bdc2d1d4e8b456b", - "55d4837c4bdc2d1d4e8b456c", - "5aaa4194e5b5b055d06310a5", - "5bed61680db834001d2c45ab", - "5bed625c0db834001c062946", - "649ec30cb013f04a700e60fb", - "64b9e265c94d0d15c5027e35" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_mount_000", - "_id": "57486f552459770b2a5e1c05", - "_parent": "5644bd2b4bdc2d3b4c8b4572", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "638db77630c4240f9e06f8b6", - "63d114019e35b334d82302f7", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "57c44d572459772d2a2169d1", - "_parent": "5644bd2b4bdc2d3b4c8b4572", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" + "6492fb8253acae0af00a29b6" ] } ] @@ -229045,56 +229242,51 @@ ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", + "weapClass": "machinegun", "weapUseType": "primary", - "ammoCaliber": "Caliber545x39", + "ammoCaliber": "Caliber762x54R", "Durability": 100, "MaxDurability": 100, - "OperatingResource": 5200, + "OperatingResource": 9000, "RepairComplexity": 0, "durabSpawnMin": 25, "durabSpawnMax": 75, "isFastReload": true, "weapFireType": [ - "single", "fullauto" ], "SingleFireRate": 450, "CanQueueSecondShot": true, "bFirerate": 650, - "Ergonomics": 31, + "Ergonomics": 35, "Velocity": 1.8, - "bEffDist": 650, + "bEffDist": 750, "bHearDist": 80, "isChamberLoad": true, "chamberAmmoCount": 1, "isBoltCatch": false, - "defMagType": "55d480c04bdc2d1d4e8b456a", - "defAmmo": "56dff3afd2720bba668b4567", + "defMagType": "646372518610c40fc20204e8", + "defAmmo": "5887431f2459777e1612938f", "AdjustCollimatorsToTrajectory": false, "shotgunDispersion": 0, "Chambers": [ { "_name": "patron_in_weapon", - "_id": "5648ab2d4bdc2d17108b457f", - "_parent": "5644bd2b4bdc2d3b4c8b4572", + "_id": "64637076203536ad5600c991", + "_parent": "64637076203536ad5600c990", "_props": { "filters": [ { "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" + "5e023d34e8a400319a28ed44", + "5e023d48186a883be655e551", + "5e023cf8186a883be655e54f", + "59e77a2386f7742ee578960a", + "5887431f2459777e1612938f", + "560d61e84bdc2da74d8b4571", + "64b8f7c241772715af0f9c3d", + "64b8f7968532cf95ee0a0dbf", + "64b8f7b5389d7ffd620ccba2" ] } ] @@ -229105,7 +229297,7 @@ } ], "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.057, + "CenterOfImpact": 0, "AimPlane": 0.19, "DeviationCurve": 1.35, "DeviationMax": 23, @@ -229118,21 +229310,21 @@ }, "TacticalReloadFixation": 0.95, "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.4, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.061, + "RecoilReturnSpeedHandRotation": 1.8, + "RecoilDampingHandRotation": 0.87, + "RecoilCamera": 0.113, "RecoilStableIndexShot": 5, - "RecoilForceBack": 322, - "RecoilForceUp": 120, - "RecolDispersion": 10, + "RecoilForceBack": 515, + "RecoilForceUp": 138, + "RecolDispersion": 16, "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilReturnPathDampingHandRotation": 0.5, + "RecoilReturnPathOffsetHandRotation": 0.015, "RecoilAngle": 90, "RecoilStableAngleIncreaseStep": 2.5, "ProgressRecoilAngleOnStable": { "x": 0, - "y": 28, + "y": 30, "z": 0 }, "RecoilCenter": { @@ -229141,13 +229333,13 @@ "z": 0 }, "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, + "x": -2, "y": 0, "z": 0 }, "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, + "x": -2.4, + "y": 2.4, "z": 0 }, "ShotsGroupSettings": [ @@ -229177,7 +229369,7 @@ "z": 0 }, "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, + "CameraSnap": 3, "RotationCenter": { "x": 0, "y": -0.1, @@ -229189,7 +229381,7 @@ "z": -0.08 }, "SizeReduceRight": 0, - "FoldedSlot": "", + "FoldedSlot": "mod_stock", "CompactHandling": true, "SightingRange": 100, "MinRepairDegradation": 0, @@ -229210,10 +229402,10 @@ "AllowMisfire": true, "AllowSlide": true, "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.9701, + "HeatFactorGun": 0.95, "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.0008, - "HeatFactorByShot": 1.49, + "CoolFactorGunMods": 1.08, + "HeatFactorByShot": 1.2, "AllowOverheat": true, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, @@ -229223,29 +229415,29 @@ "IsGrenadeLauncher": false, "NoFiremodeOnBoltcatch": false, "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, + "IsBeltMachineGun": true, + "WithAnimatorAiming": true, "blockLeftStance": false }, "_proto": "5447a9cd4bdc2dbd208b4567" }, - "5ab8e9fcd8ce870019439434": { - "_id": "5ab8e9fcd8ce870019439434", - "_name": "weapon_izhmash_aks74n_545x39", - "_parent": "5447b5f14bdc2d61278b4567", + "6176aca650224f204c1da3fb": { + "_id": "6176aca650224f204c1da3fb", + "_name": "weapon_hk_g28_762x51", + "_parent": "5447b6194bdc2d67278b4567", "_type": "Item", "_props": { - "Name": "Автомат Калашникова АК-74Н 5.45x39", - "ShortName": "АК-74N 5.45x39", - "Description": "Автомат Калашникова калибра 5,45 мм, разработанный в 1970 году конструктором М. Т. Калашниковым. Дальнейшее развитие АКМ в связи с переходом Вооруженных Сил на новый боеприпас 5.45x39. Основное отличие от штатного АК-74 это наличие крепления для оптических и ночных прицелов.", - "Weight": 2.092, + "Name": "weapon_remington_r11_rsass_762x51", + "ShortName": "weapon_remington_r11_rsass_762x51", + "Description": "weapon_remington_r11_rsass_762x51\n", + "Weight": 0.51, "BackgroundColor": "black", - "Width": 4, + "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "weap_ar", + "ItemSound": "weap_dmr", "Prefab": { - "path": "assets/content/weapons/aks74/weapon_izhmash_aks74n_545x39_container.bundle", + "path": "assets/content/weapons/g28/weapon_hk_g28_762x51_container.bundle", "rcid": "" }, "UsePrefab": { @@ -229262,11 +229454,371 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, + "LootExperience": 5, + "ExamineExperience": 8, "HideEntrails": false, - "RepairCost": 127, - "RepairSpeed": 5, + "RepairCost": 302, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "6176aca650224f204c1da3fd", + "_parent": "6176aca650224f204c1da3fb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "602e71bd53a60014f9705bfa", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5cc9bcaed7f00c011c04e179", + "5bb20e18d4351e00320205d5", + "5bb20e0ed4351e3bac1212dc", + "6193dcd0f8ee7e52e4210a28", + "5d025cc1d7ad1a53845279ef", + "5c6d7b3d2e221600114c9b7d", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "55802f5d4bdc2dac148b458f", + "5d15cf3bd7ad1a67e71518b2", + "59db3a1d86f77429e05b4e92", + "5fbcbd6c187fea44d52eda14", + "59db3acc86f7742a2c4ab912", + "59db3b0886f77429d72fb895", + "615d8faecabb9b7ad90f4d5d", + "5b07db875acfc40dc528a5f6", + "63f5feead259b42f0b4d6d0f", + "652911675ae2ae97b80fdf3c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "6176aca650224f204c1da3fe", + "_parent": "6176aca650224f204c1da3fb", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "617130016c780c1e710c9a24", + "617131a4568c120fdd29482d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "6176aca650224f204c1da3ff", + "_parent": "6176aca650224f204c1da3fb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "617153016c780c1e710c9a2f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "6176aca650224f204c1da400", + "_parent": "6176aca650224f204c1da3fb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61713a8fd92c473c770214a4" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "6176aca650224f204c1da401", + "_parent": "6176aca650224f204c1da3fb", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "61702d8a67085e45ef140b24" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "marksmanRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x51", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 2300, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 700, + "Ergonomics": 48, + "Velocity": 0, + "bEffDist": 900, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "617130016c780c1e710c9a24", + "defAmmo": "5e023e53d4353e3302577c4c", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "6176aca650224f204c1da402", + "_parent": "6176aca650224f204c1da3fb", + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0, + "AimPlane": 0.22, + "DeviationCurve": 1.1, + "DeviationMax": 30, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.23, + "RecoilReturnSpeedHandRotation": 2.8, + "RecoilDampingHandRotation": 0.86, + "RecoilCamera": 0.096, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 400, + "RecoilForceUp": 146, + "RecolDispersion": 11, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.4, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.3, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1, + "y": 1, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.03, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.221375, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 2.592, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 2.1, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.025, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "57dc2fa62459775949412633": { + "_id": "57dc2fa62459775949412633", + "_name": "weapon_izhmash_aks74u_545x39", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_aks74u_545x39", + "ShortName": "weapon_izhmash_aks74u_545x39", + "Description": "weapon_izhmash_aks74u_545x39", + "Weight": 1.809, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/aks74u/weapon_izhmash_aks74u_545x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 68, + "RepairSpeed": 4, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -229292,22 +229844,39 @@ "Grids": [], "Slots": [ { - "_name": "mod_gas_block", - "_id": "5ab8e9fcd8ce870019439437", - "_parent": "5ab8e9fcd8ce870019439434", + "_name": "mod_pistol_grip", + "_id": "57dc31bc245977596d4ef3d2", + "_parent": "57dc2fa62459775949412633", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a01ad4786f77450561fda02", - "59c6633186f7740cf0493bb9", - "59d64ec286f774171d1e0a42", - "59e649f986f77411d949b246", - "5b237e425acfc4771e1be0b6", - "59ccfdba86f7747f2109a587", - "5cf656f2d7f00c06585fb6eb", - "5d4aab30a4b9365435358c55" + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "623c3be0484b5003161840dc", + "628c9ab845c59e5b80768a81", + "628a664bccaab13006640e47", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" ] } ] @@ -229317,16 +229886,17 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_launcher", - "_id": "5ab8e9fcd8ce870019439438", - "_parent": "5ab8e9fcd8ce870019439434", + "_name": "mod_stock", + "_id": "57dc31ce245977593d4e1453", + "_parent": "57dc2fa62459775949412633", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5648b62b4bdc2d9d488b4585", - "62e7e7bbe6da9612f743f1e0" + "59ecc28286f7746d7a68aa8c", + "5ab626e4d8ce87272e4c6e43", + "57dc347d245977596754e7a1" ] } ] @@ -229335,10 +229905,58 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, + { + "_name": "mod_charge", + "_id": "57dc31e1245977597164366e", + "_parent": "57dc2fa62459775949412633", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "57dc31f2245977596c274b4f", + "_parent": "57dc2fa62459775949412633", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "564ca9df4bdc2d35148b4569", + "564ca99c4bdc2d16268b4589", + "55d480c04bdc2d1d4e8b456a", + "5cbdaf89ae9215000e5b9c94", + "55d481904bdc2d8c2f8b456a", + "55d482194bdc2d1d4e8b456b", + "55d4837c4bdc2d1d4e8b456c", + "5aaa4194e5b5b055d06310a5", + "5bed61680db834001d2c45ab", + "5bed625c0db834001c062946", + "649ec30cb013f04a700e60fb", + "64b9e265c94d0d15c5027e35" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, { "_name": "mod_muzzle", - "_id": "5ab8e9fcd8ce870019439439", - "_parent": "5ab8e9fcd8ce870019439434", + "_id": "57dc35ce2459775971643671", + "_parent": "57dc2fa62459775949412633", "_props": { "filters": [ { @@ -229366,39 +229984,35 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_pistol_grip", - "_id": "5ab8e9fcd8ce87001943943a", - "_parent": "5ab8e9fcd8ce870019439434", + "_name": "mod_reciever", + "_id": "57dc35fb245977596d4ef3d7", + "_parent": "57dc2fa62459775949412633", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "623c3be0484b5003161840dc", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", - "5947f92f86f77427344a76b1", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" + "57dc334d245977597164366f", + "5839a7742459773cf9693481", + "655cb6b5d680a544f30607fa" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_gas_block", + "_id": "59d368ce86f7747e6a5beb03", + "_parent": "57dc2fa62459775949412633", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59d36a0086f7747e673f3946" ] } ] @@ -229406,157 +230020,6 @@ "_required": true, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "5ab8e9fcd8ce87001943943b", - "_parent": "5ab8e9fcd8ce870019439434", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649af094bdc2df8348b4586", - "5ac50da15acfc4001718d287", - "5d2c76ed48f03532f2136169", - "5d2c770c48f0354b4a07c100", - "5d2c772c48f0355d95672c25", - "5649af884bdc2d1b2b8b4589", - "628a665a86cbd9750d2ff5e5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5ab8e9fcd8ce87001943943c", - "_parent": "5ab8e9fcd8ce870019439434", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac733a45acfc400192630e2", - "5649b0544bdc2d1b2b8b458a", - "5ac72e475acfc400180ae6fe", - "5649d9a14bdc2d79388b4580", - "628a7b23b0f75035732dd565", - "649ec2cec93611967b03495e", - "5bf3f59f0db834001a6fa060" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5ab8e9fcd8ce87001943943d", - "_parent": "5ab8e9fcd8ce870019439434", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59ecc28286f7746d7a68aa8c", - "5ab626e4d8ce87272e4c6e43", - "57dc347d245977596754e7a1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5ab8e9fcd8ce87001943943e", - "_parent": "5ab8e9fcd8ce870019439434", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "564ca9df4bdc2d35148b4569", - "564ca99c4bdc2d16268b4589", - "55d480c04bdc2d1d4e8b456a", - "5cbdaf89ae9215000e5b9c94", - "55d481904bdc2d8c2f8b456a", - "55d482194bdc2d1d4e8b456b", - "55d4837c4bdc2d1d4e8b456c", - "5aaa4194e5b5b055d06310a5", - "5bed61680db834001d2c45ab", - "5bed625c0db834001c062946", - "649ec30cb013f04a700e60fb", - "64b9e265c94d0d15c5027e35" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_mount_000", - "_id": "5ab8e9fcd8ce87001943943f", - "_parent": "5ab8e9fcd8ce870019439434", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "638db77630c4240f9e06f8b6", - "63d114019e35b334d82302f7", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "5ab8e9fcd8ce870019439440", - "_parent": "5ab8e9fcd8ce870019439434", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, @@ -229564,9 +230027,9 @@ "weapClass": "assaultRifle", "weapUseType": "primary", "ammoCaliber": "Caliber545x39", - "Durability": 100, + "Durability": 95, "MaxDurability": 100, - "OperatingResource": 5200, + "OperatingResource": 5000, "RepairComplexity": 0, "durabSpawnMin": 25, "durabSpawnMax": 75, @@ -229578,9 +230041,9 @@ "SingleFireRate": 450, "CanQueueSecondShot": true, "bFirerate": 650, - "Ergonomics": 32, - "Velocity": 1.8, - "bEffDist": 650, + "Ergonomics": 44, + "Velocity": -17.9, + "bEffDist": 300, "bHearDist": 80, "isChamberLoad": true, "chamberAmmoCount": 1, @@ -229592,8 +230055,8 @@ "Chambers": [ { "_name": "patron_in_weapon", - "_id": "5ab8e9fcd8ce870019439436", - "_parent": "5ab8e9fcd8ce870019439434", + "_id": "57dc318524597759805c1581", + "_parent": "57dc2fa62459775949412633", "_props": { "filters": [ { @@ -229611,7 +230074,8 @@ "56dff421d2720b5f5a8b4567", "56dff4a2d2720bbd668b456a", "56dff4ecd2720b5f5a8b4568" - ] + ], + "MaxStackCount": 0 } ] }, @@ -229621,10 +230085,10 @@ } ], "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.058, - "AimPlane": 0.19, - "DeviationCurve": 1.35, - "DeviationMax": 23, + "CenterOfImpact": 0.1, + "AimPlane": 0.15, + "DeviationCurve": 1.9, + "DeviationMax": 15.5, "Foldable": true, "Retractable": false, "TacticalReloadStiffnes": { @@ -229634,18 +230098,18 @@ }, "TacticalReloadFixation": 0.95, "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.4, + "RecoilReturnSpeedHandRotation": 2.7, "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.061, + "RecoilCamera": 0.067, "RecoilStableIndexShot": 5, - "RecoilForceBack": 322, - "RecoilForceUp": 120, - "RecolDispersion": 10, + "RecoilForceBack": 373, + "RecoilForceUp": 102, + "RecolDispersion": 12, "RecoilPosZMult": 1, "RecoilReturnPathDampingHandRotation": 0.48, "RecoilReturnPathOffsetHandRotation": 0.01, "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, + "RecoilStableAngleIncreaseStep": 2.7, "ProgressRecoilAngleOnStable": { "x": 0, "y": 28, @@ -229726,10 +230190,10 @@ "AllowMisfire": true, "AllowSlide": true, "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.9702, + "HeatFactorGun": 1.0691, "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.0008, - "HeatFactorByShot": 1.49, + "CoolFactorGunMods": 1.1323, + "HeatFactorByShot": 1.555, "AllowOverheat": true, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, @@ -229743,418 +230207,7 @@ "WithAnimatorAiming": false, "blockLeftStance": false }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5d43021ca4b9362eab4b5e25": { - "_id": "5d43021ca4b9362eab4b5e25", - "_name": "weapon_lone_star_tx15_designated_marksman_556x45", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_lone_star_tx15_designated_marksman_556x45", - "ShortName": "weapon_lone_star_tx15_designated_marksman_556x45", - "Description": "weapon_lone_star_tx15_designated_marksman_556x45", - "Weight": 0.31, - "BackgroundColor": "black", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/tx15/weapon_lone_star_tx15_designated_marksman_556x45_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 193, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "5d43021ca4b9362eab4b5e27", - "_parent": "5d43021ca4b9362eab4b5e25", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0e2ff6d174af02a1659d4a", - "5a33e75ac4a2826c6e06d759", - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "602e71bd53a60014f9705bfa", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5cc9bcaed7f00c011c04e179", - "5bb20e18d4351e00320205d5", - "5bb20e0ed4351e3bac1212dc", - "6193dcd0f8ee7e52e4210a28", - "5d025cc1d7ad1a53845279ef", - "5c6d7b3d2e221600114c9b7d", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "55802f5d4bdc2dac148b458f", - "5d15cf3bd7ad1a67e71518b2", - "59db3a1d86f77429e05b4e92", - "5fbcbd6c187fea44d52eda14", - "59db3acc86f7742a2c4ab912", - "59db3b0886f77429d72fb895", - "615d8faecabb9b7ad90f4d5d", - "63f5feead259b42f0b4d6d0f", - "5b07db875acfc40dc528a5f6", - "652911675ae2ae97b80fdf3c", - "63f5feead259b42f0b4d6d0f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5d43021ca4b9362eab4b5e28", - "_parent": "5d43021ca4b9362eab4b5e25", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "55d4887d4bdc2d962f8b4570", - "61840bedd92c473c77021635", - "61840d85568c120fdd2962a5", - "5c05413a0db834001c390617", - "5c6d450c2e221600114c997d", - "5c6d42cb2e2216000e69d7d1", - "59c1383d86f774290a37e0ca", - "5aaa5e60e5b5b000140293d6", - "5448c1d04bdc2dff2f8b4569", - "5aaa5dfee5b5b000140293d3", - "5d1340b3d7ad1a0b52682ed7", - "544a378f4bdc2d30388b4567", - "5d1340bdd7ad1a0e8d245aab", - "55802d5f4bdc2dac148b458e", - "5d1340cad7ad1a0b0b249869", - "6241c2c2117ad530666a5108", - "5c6592372e221600133e47d7", - "544a37c44bdc2d25388b4567", - "5c6d46132e221601da357d56" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_reciever", - "_id": "5d43021ca4b9362eab4b5e29", - "_parent": "5d43021ca4b9362eab4b5e25", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0e2f26d174af02a9625114", - "55d355e64bdc2d962f8b4569", - "5d4405aaa4b9361e6a4e6bd3", - "5c07a8770db8340023300450", - "59bfe68886f7746004266202", - "63f5ed14534b2c3d5479a677" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5d43021ca4b9362eab4b5e2a", - "_parent": "5d43021ca4b9362eab4b5e25", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a33ca0fc4a282000d72292f", - "5c0faeddd174af02a962601f", - "5649be884bdc2d79388b4577", - "5d120a10d7ad1a4e1026ba85", - "5b0800175acfc400153aebd4", - "5947e98b86f774778f1448bc", - "5947eab886f77475961d96c5", - "602e3f1254072b51b239f713", - "5c793fb92e221644f31bfb64", - "5c793fc42e221600114ca25d", - "591aef7986f774139d495f03", - "591af10186f774139d495f0e", - "627254cc9c563e6e442c398f", - "638de3603a1a4031d8260b8c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "5d43021ca4b9362eab4b5e2b", - "_parent": "5d43021ca4b9362eab4b5e25", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0faf68d174af02a96260b8", - "56ea7165d2720b6e518b4583", - "55d44fd14bdc2d962f8b456e", - "5ea16d4d5aad6446a939753d", - "5bb20dbcd4351e44f824c04e", - "6033749e88382f4fab3fd2c5", - "5b2240bf5acfc40dc528af69", - "5d44334ba4b9362b346d1948", - "5f633ff5c444ce7e3c30a006", - "651bf5617b3b552ef6712cb7" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber556x45NATO", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 3650, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 800, - "Ergonomics": 50, - "Velocity": 0, - "bEffDist": 500, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "55d4887d4bdc2d962f8b4570", - "defAmmo": "59e6920f86f77411d82aa167", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5d43021ca4b9362eab4b5e2c", - "_parent": "5d43021ca4b9362eab4b5e25", - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0.16, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.5, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.057, - "RecoilStableIndexShot": 3, - "RecoilForceBack": 322, - "RecoilForceUp": 113, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.24, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.03, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.208725, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1.39, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.025, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" + "_proto": "5644bd2b4bdc2d3b4c8b4572" }, "59e6152586f77473dc057aa1": { "_id": "59e6152586f77473dc057aa1", @@ -230665,899 +230718,6 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, - "5ac66d9b5acfc4001633997a": { - "_id": "5ac66d9b5acfc4001633997a", - "_name": "weapon_izhmash_ak105_545x39", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_ak105_545x39", - "ShortName": "weapon_izhmash_ak105_545x39", - "Description": "weapon_izhmash_ak105_545x39", - "Weight": 1.992, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/ak100/weapon_izhmash_ak105_545x39_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 154, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_gas_block", - "_id": "5ac66d9b5acfc4001633997d", - "_parent": "5ac66d9b5acfc4001633997a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59c6633186f7740cf0493bb9", - "59d64ec286f774171d1e0a42", - "59e649f986f77411d949b246", - "59ccfdba86f7747f2109a587" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_launcher", - "_id": "5ac66d9b5acfc4001633997e", - "_parent": "5ac66d9b5acfc4001633997a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5ac66d9b5acfc4001633997f", - "_parent": "5ac66d9b5acfc4001633997a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac72e945acfc43f3b691116", - "5ac7655e5acfc40016339a19", - "5649aa744bdc2ded0b8b457e", - "5f633f791b231926f2329f13", - "5943eeeb86f77412d6384f6b", - "5cc9a96cd7f00c011c04e04a", - "615d8f5dd92c473c770212ef", - "5649ab884bdc2ded0b8b457f", - "57dc324a24597759501edc20", - "59bffc1f86f77435b128b872", - "593d493f86f7745e6b2ceb22", - "564caa3d4bdc2d17108b458e", - "57ffb0e42459777d047111c5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "5ac66d9b5acfc40016339980", - "_parent": "5ac66d9b5acfc4001633997a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "623c3be0484b5003161840dc", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "5ac66d9b5acfc40016339981", - "_parent": "5ac66d9b5acfc4001633997a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649af094bdc2df8348b4586", - "5ac50da15acfc4001718d287", - "5d2c76ed48f03532f2136169", - "5d2c770c48f0354b4a07c100", - "5d2c772c48f0355d95672c25", - "5649af884bdc2d1b2b8b4589", - "628a665a86cbd9750d2ff5e5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5ac66d9b5acfc40016339982", - "_parent": "5ac66d9b5acfc4001633997a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac733a45acfc400192630e2", - "5649b0544bdc2d1b2b8b458a", - "5ac72e475acfc400180ae6fe", - "5649d9a14bdc2d79388b4580", - "628a7b23b0f75035732dd565", - "649ec2cec93611967b03495e", - "5bf3f59f0db834001a6fa060" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5ac66d9b5acfc40016339983", - "_parent": "5ac66d9b5acfc4001633997a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac50c185acfc400163398d4", - "5cf50fc5d7f00c056c53f83c", - "5ac78eaf5acfc4001926317a", - "5beec8b20db834001961942a", - "6386300124a1dc425c00577a", - "649ec87d8007560a9001ab36" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5ac66d9b5acfc40016339984", - "_parent": "5ac66d9b5acfc4001633997a", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "564ca9df4bdc2d35148b4569", - "564ca99c4bdc2d16268b4589", - "55d480c04bdc2d1d4e8b456a", - "5cbdaf89ae9215000e5b9c94", - "55d481904bdc2d8c2f8b456a", - "55d482194bdc2d1d4e8b456b", - "55d4837c4bdc2d1d4e8b456c", - "5aaa4194e5b5b055d06310a5", - "5bed61680db834001d2c45ab", - "5bed625c0db834001c062946", - "649ec30cb013f04a700e60fb", - "64b9e265c94d0d15c5027e35" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_mount_000", - "_id": "5ac66d9b5acfc40016339985", - "_parent": "5ac66d9b5acfc4001633997a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "638db77630c4240f9e06f8b6", - "63d114019e35b334d82302f7", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "5ac66d9b5acfc40016339986", - "_parent": "5ac66d9b5acfc4001633997a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber545x39", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 5500, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 600, - "Ergonomics": 38, - "Velocity": 1.8, - "bEffDist": 650, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "55d480c04bdc2d1d4e8b456a", - "defAmmo": "56dff3afd2720bba668b4567", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5ac66d9b5acfc4001633997c", - "_parent": "5ac66d9b5acfc4001633997a", - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.06, - "AimPlane": 0.19, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.7, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.063, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 371, - "RecoilForceUp": 136, - "RecolDispersion": 8, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1.0295, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.0716, - "HeatFactorByShot": 1.46, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "623063e994fc3f7b302a9696": { - "_id": "623063e994fc3f7b302a9696", - "_name": "weapon_hk_g36_556x45", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "Штурмовая винтовка Colt M4A1 5.56x45", - "ShortName": "M4A1 5.56x45", - "Description": "Colt M4A1- штурмовая винтовка (карабин) созданная в США на базе платформы AR-15 под патрон 5.56x45 NATO. Планировалась к вооружению экипажей боевых машин и расчетов техники, которым было необходимо иметь оружие меньших габаритов чем штатное вооружение но использующее стандартный боеприпас. Однако вскоре US SOCOM (Командование Сил Специальных Операций США) приняло на вооружение M4A1 для всех входящих в его состав подразделений. Затем последовало полное принятие M4A1 на вооружение в армии и морской пехоте США.", - "Weight": 0.8, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/g36/weapon_hk_g36_556x45_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 166, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "623063e994fc3f7b302a9699", - "_parent": "623063e994fc3f7b302a9696", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "62307b7b10d2321fa8741921", - "55d4887d4bdc2d962f8b4570", - "5c05413a0db834001c390617", - "5c6d450c2e221600114c997d", - "5c6d42cb2e2216000e69d7d1", - "59c1383d86f774290a37e0ca", - "5aaa5e60e5b5b000140293d6", - "5448c1d04bdc2dff2f8b4569", - "5aaa5dfee5b5b000140293d3", - "5d1340b3d7ad1a0b52682ed7", - "544a378f4bdc2d30388b4567", - "5d1340bdd7ad1a0e8d245aab", - "55802d5f4bdc2dac148b458e", - "5d1340cad7ad1a0b0b249869", - "5c6592372e221600133e47d7", - "544a37c44bdc2d25388b4567", - "5c6d46132e221601da357d56" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "623063e994fc3f7b302a969b", - "_parent": "623063e994fc3f7b302a9696", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "622f140da5958f63c67f1735", - "622f14e899892a7f9e08f6c5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "623076ea94fc3f7b302a969f", - "_parent": "623063e994fc3f7b302a9696", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "622b379bf9cfc87d675d2de5", - "622b3858034a3e17ad0b81f5", - "622b38c56762c718e457e246" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "6230771f14709f19dd067958", - "_parent": "623063e994fc3f7b302a9696", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62386b2adf47d66e835094b2", - "6231654c71b5bc3baa1078e5", - "62386b7153757417e93a4e9f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "62307748a0460e5284636a0e", - "_parent": "623063e994fc3f7b302a9696", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "622f039199f4ea1a4d6c9a17", - "622f02437762f55aaa68ac85" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "623077855f08e151e40a35a7", - "_parent": "623063e994fc3f7b302a9696", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "622b4d7df9cfc87d675d2ded", - "622b4f54dc8dcc0ba8742f85", - "622b3d5cf9cfc87d675d2de9", - "622b3c081b89c677a33bcda6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber556x45NATO", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 4000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "burst", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 750, - "Ergonomics": 60, - "Velocity": 0, - "bEffDist": 500, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "62307b7b10d2321fa8741921", - "defAmmo": "54527a984bdc2d4e668b4567", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "623063e994fc3f7b302a969d", - "_parent": "623063e994fc3f7b302a9696", - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0.16, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.45, - "RecoilDampingHandRotation": 0.84, - "RecoilCamera": 0.062, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 330, - "RecoilForceUp": 107, - "RecolDispersion": 8, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.4, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.24, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.03, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 2, - "BaseMalfunctionChance": 0.183425, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1, - "HeatFactorGun": 1, - "CoolFactorGun": 3.96, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1.235, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.025, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, "62178c4d4ecf221597654e3d": { "_id": "62178c4d4ecf221597654e3d", "_name": "weapon_rsp30_red", @@ -231775,751 +230935,6 @@ }, "_proto": "5448bd6b4bdc2dfc2f8b4569" }, - "64637076203536ad5600c990": { - "_id": "64637076203536ad5600c990", - "_name": "weapon_zid_pkm_762x54r", - "_parent": "5447bed64bdc2d97278b4568", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_rpk16_545x39", - "ShortName": "weapon_izhmash_rpk16_545x39", - "Description": "weapon_izhmash_rpk16_545x39", - "Weight": 3.852, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/pkm/weapon_zid_pkm_762x54r_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 235, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistolgrip", - "_id": "64637076203536ad5600c992", - "_parent": "64637076203536ad5600c990", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "646371779f5f0ea59a04c204", - "64cbad529f7cf7f75c077fd5", - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "623c3be0484b5003161840dc", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "63f4da90f31d4a33b87bd054", - "5cf50850d7f00c056e24104c", - "59e6318286f77444dd62c4cc", - "5cf508bfd7f00c056e24104e", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "64637076203536ad5600c994", - "_parent": "64637076203536ad5600c990", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "646372518610c40fc20204e8" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "64637076203536ad5600c996", - "_parent": "64637076203536ad5600c990", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "646371a9f2404ab67905c8e6", - "6492d7847363b8a52206bc52", - "6492e3a97df7d749100e29ee" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "64637076203536ad5600c998", - "_parent": "64637076203536ad5600c990", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "64639a9aab86f8fd4300146c", - "646371faf2404ab67905c8e9" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_bipod", - "_id": "6464d89add30e025b10af06a", - "_parent": "64637076203536ad5600c990", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6464d870bb2c580352070cc4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "6491c79400a3073ac706d2d8", - "_parent": "64637076203536ad5600c990", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6491c6f6ef312a876705191b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "6492fba153acae0af00a29ba", - "_parent": "64637076203536ad5600c990", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6492fb8253acae0af00a29b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "machinegun", - "weapUseType": "primary", - "ammoCaliber": "Caliber762x54R", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 9000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 35, - "Velocity": 1.8, - "bEffDist": 750, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "646372518610c40fc20204e8", - "defAmmo": "5887431f2459777e1612938f", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "64637076203536ad5600c991", - "_parent": "64637076203536ad5600c990", - "_props": { - "filters": [ - { - "Filter": [ - "5e023d34e8a400319a28ed44", - "5e023d48186a883be655e551", - "5e023cf8186a883be655e54f", - "59e77a2386f7742ee578960a", - "5887431f2459777e1612938f", - "560d61e84bdc2da74d8b4571", - "64b8f7c241772715af0f9c3d", - "64b8f7968532cf95ee0a0dbf", - "64b8f7b5389d7ffd620ccba2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0, - "AimPlane": 0.19, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 1.8, - "RecoilDampingHandRotation": 0.87, - "RecoilCamera": 0.113, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 515, - "RecoilForceUp": 138, - "RecolDispersion": 16, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.5, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2.4, - "y": 2.4, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.95, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.08, - "HeatFactorByShot": 1.2, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": true, - "WithAnimatorAiming": true, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5fc22d7c187fea44d52eda44": { - "_id": "5fc22d7c187fea44d52eda44", - "_name": "weapon_sword_int_mk_18_mjolnir_86x70", - "_parent": "5447b6194bdc2d67278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_sword_int_mk_18_mjolnir_86x70", - "ShortName": "weapon_sword_int_mk_18_mjolnir_86x70", - "Description": "weapon_sword_int_mk_18_mjolnir_86x70", - "Weight": 2.9, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_dmr", - "Prefab": { - "path": "assets/content/weapons/mk18/weapon_sword_int_mk_18_mjolnir_86x70_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 761, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "5fc22d7c187fea44d52eda46", - "_parent": "5fc22d7c187fea44d52eda44", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "602e71bd53a60014f9705bfa", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5cc9bcaed7f00c011c04e179", - "5bb20e18d4351e00320205d5", - "5bb20e0ed4351e3bac1212dc", - "6193dcd0f8ee7e52e4210a28", - "5d025cc1d7ad1a53845279ef", - "5c6d7b3d2e221600114c9b7d", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "55802f5d4bdc2dac148b458f", - "5d15cf3bd7ad1a67e71518b2", - "59db3a1d86f77429e05b4e92", - "5fbcbd6c187fea44d52eda14", - "59db3acc86f7742a2c4ab912", - "59db3b0886f77429d72fb895", - "615d8faecabb9b7ad90f4d5d", - "5b07db875acfc40dc528a5f6", - "63f5feead259b42f0b4d6d0f", - "652911675ae2ae97b80fdf3c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5fc22d7c187fea44d52eda47", - "_parent": "5fc22d7c187fea44d52eda44", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5fc23426900b1d5091531e15" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock_001", - "_id": "5fc22d7c187fea44d52eda48", - "_parent": "5fc22d7c187fea44d52eda44", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a33ca0fc4a282000d72292f", - "5c0faeddd174af02a962601f", - "5649be884bdc2d79388b4577", - "5d120a10d7ad1a4e1026ba85", - "5b0800175acfc400153aebd4", - "5bb20e58d4351e00320205d7", - "5947e98b86f774778f1448bc", - "5947eab886f77475961d96c5", - "5c793fb92e221644f31bfb64", - "5c793fc42e221600114ca25d", - "638de3603a1a4031d8260b8c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "5fc22d7c187fea44d52eda49", - "_parent": "5fc22d7c187fea44d52eda44", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc278107283c4046c581489" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "marksmanRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber86x70", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 1900, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 30, - "Ergonomics": 14, - "Velocity": 0, - "bEffDist": 900, - "bHearDist": 160, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5fc23426900b1d5091531e15", - "defAmmo": "5fc275cf85fd526b824a571a", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5fc22d7c187fea44d52eda4b", - "_parent": "5fc22d7c187fea44d52eda44", - "_props": { - "filters": [ - { - "Filter": [ - "5fc382a9d724d907e2077dab", - "5fc275cf85fd526b824a571a", - "5fc382c1016cce60e8341b20", - "5fc382b6d6fa9c00c571bbc3" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0, - "AimPlane": 0.22, - "DeviationCurve": 1.1, - "DeviationMax": 30, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.23, - "RecoilReturnSpeedHandRotation": 2, - "RecoilDampingHandRotation": 0.88, - "RecoilCamera": 0.144, - "RecoilStableIndexShot": 3, - "RecoilForceBack": 1012, - "RecoilForceUp": 536, - "RecolDispersion": 11, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.4, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.26, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1, - "y": 1, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.2024, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 2.592, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 4.25, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, "59d6088586f774275f37482f": { "_id": "59d6088586f774275f37482f", "_name": "weapon_izhmash_akm_762x39", @@ -233032,6 +231447,416 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, + "5c07c60e0db834002330051f": { + "_id": "5c07c60e0db834002330051f", + "_name": "weapon_adar_2-15_556x45", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_adar_2-15_556x45", + "ShortName": "weapon_adar_2-15_556x45", + "Description": "weapon_adar_2-15_556x45", + "Weight": 0.4, + "BackgroundColor": "black", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/adar_2-15/weapon_adar_2-15_556x45_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 126, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "5c07c60e0db8340023300521", + "_parent": "5c07c60e0db834002330051f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0e2ff6d174af02a1659d4a", + "5a33e75ac4a2826c6e06d759", + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "602e71bd53a60014f9705bfa", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5cc9bcaed7f00c011c04e179", + "5bb20e18d4351e00320205d5", + "5bb20e0ed4351e3bac1212dc", + "6193dcd0f8ee7e52e4210a28", + "5d025cc1d7ad1a53845279ef", + "5c6d7b3d2e221600114c9b7d", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "55802f5d4bdc2dac148b458f", + "5d15cf3bd7ad1a67e71518b2", + "59db3a1d86f77429e05b4e92", + "5fbcbd6c187fea44d52eda14", + "59db3acc86f7742a2c4ab912", + "59db3b0886f77429d72fb895", + "615d8faecabb9b7ad90f4d5d", + "5b07db875acfc40dc528a5f6", + "63f5feead259b42f0b4d6d0f", + "652911675ae2ae97b80fdf3c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5c07c60e0db8340023300522", + "_parent": "5c07c60e0db834002330051f", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "55d4887d4bdc2d962f8b4570", + "61840bedd92c473c77021635", + "61840d85568c120fdd2962a5", + "5c05413a0db834001c390617", + "5c6d450c2e221600114c997d", + "5c6d42cb2e2216000e69d7d1", + "59c1383d86f774290a37e0ca", + "5aaa5e60e5b5b000140293d6", + "5448c1d04bdc2dff2f8b4569", + "5aaa5dfee5b5b000140293d3", + "5d1340b3d7ad1a0b52682ed7", + "544a378f4bdc2d30388b4567", + "5d1340bdd7ad1a0e8d245aab", + "55802d5f4bdc2dac148b458e", + "5d1340cad7ad1a0b0b249869", + "6241c2c2117ad530666a5108", + "5c6592372e221600133e47d7", + "544a37c44bdc2d25388b4567", + "5c6d46132e221601da357d56" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_reciever", + "_id": "5c07c60e0db8340023300523", + "_parent": "5c07c60e0db834002330051f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0e2f26d174af02a9625114", + "55d355e64bdc2d962f8b4569", + "5d4405aaa4b9361e6a4e6bd3", + "5c07a8770db8340023300450", + "59bfe68886f7746004266202", + "63f5ed14534b2c3d5479a677" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5c07c60e0db8340023300524", + "_parent": "5c07c60e0db834002330051f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a33ca0fc4a282000d72292f", + "5c0faeddd174af02a962601f", + "5649be884bdc2d79388b4577", + "5d120a10d7ad1a4e1026ba85", + "5b0800175acfc400153aebd4", + "5947e98b86f774778f1448bc", + "5947eab886f77475961d96c5", + "602e3f1254072b51b239f713", + "5c793fb92e221644f31bfb64", + "5c793fc42e221600114ca25d", + "591aef7986f774139d495f03", + "591af10186f774139d495f0e", + "627254cc9c563e6e442c398f", + "638de3603a1a4031d8260b8c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "5c07c60e0db8340023300525", + "_parent": "5c07c60e0db834002330051f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0faf68d174af02a96260b8", + "56ea7165d2720b6e518b4583", + "55d44fd14bdc2d962f8b456e", + "5ea16d4d5aad6446a939753d", + "5bb20dbcd4351e44f824c04e", + "6033749e88382f4fab3fd2c5", + "5b2240bf5acfc40dc528af69", + "5d44334ba4b9362b346d1948", + "5f633ff5c444ce7e3c30a006", + "651bf5617b3b552ef6712cb7" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber556x45NATO", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 2400, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 800, + "Ergonomics": 48, + "Velocity": 0, + "bEffDist": 500, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "55d4887d4bdc2d962f8b4570", + "defAmmo": "59e6920f86f77411d82aa167", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5c07c60e0db8340023300526", + "_parent": "5c07c60e0db834002330051f", + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0.16, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.5, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.061, + "RecoilStableIndexShot": 3, + "RecoilForceBack": 344, + "RecoilForceUp": 120, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.24, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.03, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.18975, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1.48, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.025, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, "64ca3d3954fc657e230529cc": { "_id": "64ca3d3954fc657e230529cc", "_name": "weapon_zid_pkp_762x54r", @@ -233461,3506 +232286,6 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, - "5fbcc1d9016cce60e8341ab3": { - "_id": "5fbcc1d9016cce60e8341ab3", - "_name": "weapon_sig_mcx_gen1_762x35", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_sig_mcx_gen1_762x35", - "ShortName": "weapon_sig_mcx_gen1_762x35", - "Description": "weapon_sig_mcx_gen1_762x35", - "Weight": 0.4, - "BackgroundColor": "black", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/mcx/weapon_sig_mcx_gen1_762x35_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 210, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "5fbcc1d9016cce60e8341ab5", - "_parent": "5fbcc1d9016cce60e8341ab3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "602e71bd53a60014f9705bfa", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5cc9bcaed7f00c011c04e179", - "5bb20e18d4351e00320205d5", - "5bb20e0ed4351e3bac1212dc", - "6193dcd0f8ee7e52e4210a28", - "5d025cc1d7ad1a53845279ef", - "5c6d7b3d2e221600114c9b7d", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "55802f5d4bdc2dac148b458f", - "5d15cf3bd7ad1a67e71518b2", - "59db3a1d86f77429e05b4e92", - "5fbcbd6c187fea44d52eda14", - "59db3acc86f7742a2c4ab912", - "59db3b0886f77429d72fb895", - "615d8faecabb9b7ad90f4d5d", - "5b07db875acfc40dc528a5f6", - "63f5feead259b42f0b4d6d0f", - "652911675ae2ae97b80fdf3c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5fbcc1d9016cce60e8341ab6", - "_parent": "5fbcc1d9016cce60e8341ab3", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "55d4887d4bdc2d962f8b4570", - "61840bedd92c473c77021635", - "61840d85568c120fdd2962a5", - "5c05413a0db834001c390617", - "5c6d450c2e221600114c997d", - "5c6d42cb2e2216000e69d7d1", - "59c1383d86f774290a37e0ca", - "5aaa5e60e5b5b000140293d6", - "5448c1d04bdc2dff2f8b4569", - "5aaa5dfee5b5b000140293d3", - "5d1340b3d7ad1a0b52682ed7", - "544a378f4bdc2d30388b4567", - "5d1340bdd7ad1a0e8d245aab", - "55802d5f4bdc2dac148b458e", - "5d1340cad7ad1a0b0b249869", - "6241c2c2117ad530666a5108", - "5c6592372e221600133e47d7", - "544a37c44bdc2d25388b4567", - "5c6d46132e221601da357d56" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_reciever", - "_id": "5fbcc1d9016cce60e8341ab7", - "_parent": "5fbcc1d9016cce60e8341ab3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fbcc3e4d6fa9c00c571bb58" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5fbcc1d9016cce60e8341ab8", - "_parent": "5fbcc1d9016cce60e8341ab3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "58ac1bf086f77420ed183f9f", - "5894a13e86f7742405482982", - "5fbcc429900b1d5091531dd7", - "5fbcc437d724d907e2077d5c", - "5c5db6ee2e221600113fba54", - "5c5db6f82e2216003a0fe914", - "6529348224cbe3c74a05e5c4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "5fbcc1d9016cce60e8341ab9", - "_parent": "5fbcc1d9016cce60e8341ab3", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fbcc640016cce60e8341acc" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber762x35", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 4600, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 800, - "Ergonomics": 48, - "Velocity": 0, - "bEffDist": 500, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "55d4887d4bdc2d962f8b4570", - "defAmmo": "5fbe3ffdf8b6a877a729ea82", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5fbcc1d9016cce60e8341aba", - "_parent": "5fbcc1d9016cce60e8341ab3", - "_props": { - "filters": [ - { - "Filter": [ - "5fbe3ffdf8b6a877a729ea82", - "5fd20ff893a8961fc660a954", - "619636be6db0f2477964e710", - "6196364158ef8c428c287d9f", - "6196365d58ef8c428c287da1", - "64b8725c4b75259c590fa899" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0.16, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.5, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.065, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 351, - "RecoilForceUp": 127, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.24, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.03, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1.205, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.025, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5ac4cd105acfc40016339859": { - "_id": "5ac4cd105acfc40016339859", - "_name": "weapon_izhmash_ak74m_545x39", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_ak74m_545x39", - "ShortName": "weapon_izhmash_ak74m_545x39", - "Description": "weapon_izhmash_ak74m_545x39", - "Weight": 2.392, - "BackgroundColor": "black", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/ak74m/weapon_izhmash_ak74m_545x39_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 131, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_gas_block", - "_id": "5ac4cd105acfc4001633985c", - "_parent": "5ac4cd105acfc40016339859", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a01ad4786f77450561fda02", - "59c6633186f7740cf0493bb9", - "59d64ec286f774171d1e0a42", - "59e649f986f77411d949b246", - "5b237e425acfc4771e1be0b6", - "59ccfdba86f7747f2109a587", - "5cf656f2d7f00c06585fb6eb", - "5d4aab30a4b9365435358c55" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_launcher", - "_id": "5ac4cd105acfc4001633985d", - "_parent": "5ac4cd105acfc40016339859", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5648b62b4bdc2d9d488b4585", - "62e7e7bbe6da9612f743f1e0" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5ac4cd105acfc4001633985e", - "_parent": "5ac4cd105acfc40016339859", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac72e945acfc43f3b691116", - "5ac7655e5acfc40016339a19", - "5649aa744bdc2ded0b8b457e", - "5f633f791b231926f2329f13", - "5943eeeb86f77412d6384f6b", - "5cc9a96cd7f00c011c04e04a", - "615d8f5dd92c473c770212ef", - "5649ab884bdc2ded0b8b457f", - "57dc324a24597759501edc20", - "59bffc1f86f77435b128b872", - "593d493f86f7745e6b2ceb22", - "564caa3d4bdc2d17108b458e", - "57ffb0e42459777d047111c5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "5ac4cd105acfc4001633985f", - "_parent": "5ac4cd105acfc40016339859", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "623c3be0484b5003161840dc", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "5ac4cd105acfc40016339860", - "_parent": "5ac4cd105acfc40016339859", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649af094bdc2df8348b4586", - "5ac50da15acfc4001718d287", - "5d2c76ed48f03532f2136169", - "5d2c770c48f0354b4a07c100", - "628a665a86cbd9750d2ff5e5", - "5d2c772c48f0355d95672c25", - "5649af884bdc2d1b2b8b4589" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5ac4cd105acfc40016339861", - "_parent": "5ac4cd105acfc40016339859", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac733a45acfc400192630e2", - "5649b0544bdc2d1b2b8b458a", - "5ac72e475acfc400180ae6fe", - "628a7b23b0f75035732dd565", - "5649d9a14bdc2d79388b4580", - "5bf3f59f0db834001a6fa060", - "649ec2cec93611967b03495e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5ac4cd105acfc40016339862", - "_parent": "5ac4cd105acfc40016339859", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac50c185acfc400163398d4", - "5cf50fc5d7f00c056c53f83c", - "5ac78eaf5acfc4001926317a", - "5beec8b20db834001961942a", - "6386300124a1dc425c00577a", - "649ec87d8007560a9001ab36" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5ac4cd105acfc40016339863", - "_parent": "5ac4cd105acfc40016339859", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "564ca9df4bdc2d35148b4569", - "564ca99c4bdc2d16268b4589", - "55d480c04bdc2d1d4e8b456a", - "5cbdaf89ae9215000e5b9c94", - "55d481904bdc2d8c2f8b456a", - "55d482194bdc2d1d4e8b456b", - "55d4837c4bdc2d1d4e8b456c", - "5aaa4194e5b5b055d06310a5", - "5bed61680db834001d2c45ab", - "5bed625c0db834001c062946", - "649ec30cb013f04a700e60fb", - "64b9e265c94d0d15c5027e35" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_mount_000", - "_id": "5ac4cd105acfc40016339864", - "_parent": "5ac4cd105acfc40016339859", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "638db77630c4240f9e06f8b6", - "63d114019e35b334d82302f7", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "5ac4cd105acfc40016339865", - "_parent": "5ac4cd105acfc40016339859", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber545x39", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 5200, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 33, - "Velocity": 1.8, - "bEffDist": 650, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "55d480c04bdc2d1d4e8b456a", - "defAmmo": "56dff3afd2720bba668b4567", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5ac4cd105acfc4001633985b", - "_parent": "5ac4cd105acfc40016339859", - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.055, - "AimPlane": 0.19, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.4, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.061, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 318, - "RecoilForceUp": 118, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.9701, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.0008, - "HeatFactorByShot": 1.49, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "65290f395ae2ae97b80fdf2d": { - "_id": "65290f395ae2ae97b80fdf2d", - "_name": "weapon_sig_mcx_spear_68x51", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_sig_mcx_gen1_762x35", - "ShortName": "weapon_sig_mcx_gen1_762x35", - "Description": "weapon_sig_mcx_gen1_762x35", - "Weight": 0.4, - "BackgroundColor": "black", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/spear/weapon_sig_mcx_spear_68x51_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 210, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "65290f395ae2ae97b80fdf2e", - "_parent": "65290f395ae2ae97b80fdf2d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "602e71bd53a60014f9705bfa", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5cc9bcaed7f00c011c04e179", - "5bb20e18d4351e00320205d5", - "5bb20e0ed4351e3bac1212dc", - "6193dcd0f8ee7e52e4210a28", - "5d025cc1d7ad1a53845279ef", - "5c6d7b3d2e221600114c9b7d", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "55802f5d4bdc2dac148b458f", - "5d15cf3bd7ad1a67e71518b2", - "59db3a1d86f77429e05b4e92", - "5fbcbd6c187fea44d52eda14", - "59db3acc86f7742a2c4ab912", - "59db3b0886f77429d72fb895", - "615d8faecabb9b7ad90f4d5d", - "5b07db875acfc40dc528a5f6", - "63f5feead259b42f0b4d6d0f", - "652911675ae2ae97b80fdf3c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "65290f395ae2ae97b80fdf2f", - "_parent": "65290f395ae2ae97b80fdf2d", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "65293c38fc460e50a509cb25", - "65293c7a17e14363030ad308", - "5a3501acc4a282000d72293a", - "5df8f541c41b2312ea3335e3", - "5df8f535bb49d91fb446d6b0" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_reciever", - "_id": "65290f395ae2ae97b80fdf30", - "_parent": "65290f395ae2ae97b80fdf2d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6529119424cbe3c74a05e5bb" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock_000", - "_id": "65290f395ae2ae97b80fdf31", - "_parent": "65290f395ae2ae97b80fdf2d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "58ac1bf086f77420ed183f9f", - "5894a13e86f7742405482982", - "5fbcc429900b1d5091531dd7", - "5fbcc437d724d907e2077d5c", - "5c5db6ee2e221600113fba54", - "5c5db6f82e2216003a0fe914", - "6529348224cbe3c74a05e5c4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "65290f395ae2ae97b80fdf32", - "_parent": "65290f395ae2ae97b80fdf2d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6529109524cbe3c74a05e5b7" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber68x51", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 4600, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 800, - "Ergonomics": 46, - "Velocity": 0, - "bEffDist": 500, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "65293c38fc460e50a509cb25", - "defAmmo": "6529302b8c26af6326029fb7", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "65290f395ae2ae97b80fdf33", - "_parent": "65290f395ae2ae97b80fdf2d", - "_props": { - "filters": [ - { - "Filter": [ - "6529243824cbe3c74a05e5c1", - "6529302b8c26af6326029fb7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0.16, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.5, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.07, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 372, - "RecoilForceUp": 130, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.49, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.24, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.03, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1.48, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.025, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "620109578d82e67e7911abf2": { - "_id": "620109578d82e67e7911abf2", - "_name": "weapon_zid_sp81_26x75", - "_parent": "5447bedf4bdc2d87278b4568", - "_type": "Item", - "_props": { - "Name": "weapon_zid_sp81_26x75", - "ShortName": "weapon_zid_sp81_26x75", - "Description": "weapon_zid_sp81_26x75\n\n", - "Weight": 0.6, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_pistol", - "Prefab": { - "path": "assets/content/weapons/sp81/weapon_zid_sp81_26x75_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 550, - "RepairSpeed": 2, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Pistol", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "specialWeapon", - "weapUseType": "secondary", - "ammoCaliber": "Caliber26x75", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 900, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 70, - "isFastReload": false, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": false, - "bFirerate": 30, - "Ergonomics": 51, - "Velocity": 0, - "bEffDist": 50, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5a718b548dc32e000d46d262", - "defAmmo": "5485a8684bdc2da71d8b4567", - "AdjustCollimatorsToTrajectory": true, - "shotgunDispersion": 10, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "620109578d82e67e7911abfb", - "_parent": "620109578d82e67e7911abf2", - "_props": { - "filters": [ - { - "Filter": [ - "62389aaba63f32501b1b444f", - "62389ba9a63f32501b1b4451", - "62389bc9423ed1685422dc57", - "62389be94d5d474bf712e709", - "635267f063651329f75a4ee8" - ], - "MaxStackCount": 0 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "OnlyBarrel", - "CenterOfImpact": 0.7, - "AimPlane": 0.026, - "DeviationCurve": 1.9, - "DeviationMax": 15, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.345, - "RecoilReturnSpeedHandRotation": 1, - "RecoilDampingHandRotation": 0.8, - "RecoilCamera": 0.024, - "RecoilStableIndexShot": 1, - "RecoilForceBack": 400, - "RecoilForceUp": 170, - "RecolDispersion": 35, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.57, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.47, - "z": -0.05 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -4, - "y": 4, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.01, - "y": 0.11, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.01, - "CameraSnap": 15, - "RotationCenter": { - "x": 0, - "y": -0.2, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 1, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1, - "HeatFactorGun": 1, - "CoolFactorGun": 0.576, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1, - "AllowOverheat": false, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": true, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5448bd6b4bdc2dfc2f8b4569" - }, - "6513ef33e06849f06c0957ca": { - "_id": "6513ef33e06849f06c0957ca", - "_name": "weapon_zid_rpd_762x39", - "_parent": "5447bed64bdc2d97278b4568", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_rpk16_545x39", - "ShortName": "weapon_izhmash_rpk16_545x39", - "Description": "weapon_izhmash_rpk16_545x39", - "Weight": 2.88, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/rpd/weapon_zid_rpd_762x39_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 235, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "6513ef33e06849f06c0957cd", - "_parent": "6513ef33e06849f06c0957ca", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "6513f0a194c72326990a3868" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "6513ef33e06849f06c0957ce", - "_parent": "6513ef33e06849f06c0957ca", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6513f1798cb24472490ee331" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "6513ef33e06849f06c0957cf", - "_parent": "6513ef33e06849f06c0957ca", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6513eff1e06849f06c0957d4", - "65266fd43341ed9aa903dd56" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "6513ef33e06849f06c0957d1", - "_parent": "6513ef33e06849f06c0957ca", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6513f05a94c72326990a3866" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "6513ef33e06849f06c0957d2", - "_parent": "6513ef33e06849f06c0957ca", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6513f153e63f29908d0ffaba" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "machinegun", - "weapUseType": "primary", - "ammoCaliber": "Caliber762x39", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 9000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "fullauto" - ], - "SingleFireRate": 700, - "CanQueueSecondShot": true, - "bFirerate": 700, - "Ergonomics": 35, - "Velocity": 1.8, - "bEffDist": 800, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "6513f0a194c72326990a3868", - "defAmmo": "5656d7c34bdc2d9d198b4587", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0, - "AimPlane": 0.19, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.2, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.054, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 502, - "RecoilForceUp": 107, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.55, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.6, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 27, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2.4, - "y": 2.4, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.965, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.07, - "HeatFactorByShot": 1.14, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": true, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "6184055050224f204c1da540": { - "_id": "6184055050224f204c1da540", - "_name": "weapon_fn_mk16_556x45", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_fn_mk16_556x45", - "ShortName": "weapon_fn_mk16_556x45", - "Description": "weapon_fn_mk16_556x45", - "Weight": 0.7, - "BackgroundColor": "black", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/scar/weapon_fn_mk16_556x45_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 198, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "6184055050224f204c1da542", - "_parent": "6184055050224f204c1da540", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "602e71bd53a60014f9705bfa", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5cc9bcaed7f00c011c04e179", - "5bb20e18d4351e00320205d5", - "5bb20e0ed4351e3bac1212dc", - "6193dcd0f8ee7e52e4210a28", - "5d025cc1d7ad1a53845279ef", - "5c6d7b3d2e221600114c9b7d", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "55802f5d4bdc2dac148b458f", - "5d15cf3bd7ad1a67e71518b2", - "59db3a1d86f77429e05b4e92", - "5fbcbd6c187fea44d52eda14", - "59db3acc86f7742a2c4ab912", - "59db3b0886f77429d72fb895", - "615d8faecabb9b7ad90f4d5d", - "5b07db875acfc40dc528a5f6", - "63f5feead259b42f0b4d6d0f", - "652911675ae2ae97b80fdf3c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "6184055050224f204c1da543", - "_parent": "6184055050224f204c1da540", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "55d4887d4bdc2d962f8b4570", - "61840bedd92c473c77021635", - "61840d85568c120fdd2962a5", - "5c05413a0db834001c390617", - "5c6d450c2e221600114c997d", - "5c6d42cb2e2216000e69d7d1", - "59c1383d86f774290a37e0ca", - "5aaa5e60e5b5b000140293d6", - "5448c1d04bdc2dff2f8b4569", - "5aaa5dfee5b5b000140293d3", - "5d1340b3d7ad1a0b52682ed7", - "544a378f4bdc2d30388b4567", - "5d1340bdd7ad1a0e8d245aab", - "55802d5f4bdc2dac148b458e", - "5d1340cad7ad1a0b0b249869", - "6241c2c2117ad530666a5108", - "5c6592372e221600133e47d7", - "544a37c44bdc2d25388b4567", - "5c6d46132e221601da357d56" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_reciever", - "_id": "6184055050224f204c1da544", - "_parent": "6184055050224f204c1da540", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "618405198004cc50514c3594", - "618426d96c780c1e710c9b9f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "6184055050224f204c1da545", - "_parent": "6184055050224f204c1da540", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "61816734d8e3106d9806c1f3", - "61825d06d92c473c770215de" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "6184055050224f204c1da546", - "_parent": "6184055050224f204c1da540", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6181688c6c780c1e710c9b04" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber556x45NATO", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 6000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 45, - "Velocity": 0, - "bEffDist": 500, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "61840bedd92c473c77021635", - "defAmmo": "59e68f6f86f7746c9f75e846", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "6184055050224f204c1da547", - "_parent": "6184055050224f204c1da540", - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0.16, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.5, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.066, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 414, - "RecoilForceUp": 122, - "RecolDispersion": 10, - "RecoilPosZMult": 0.6, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.4, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.24, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.03, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.183425, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1.2, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.025, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "628b5638ad252a16da6dd245": { - "_id": "628b5638ad252a16da6dd245", - "_name": "weapon_sag_ak545_545x39", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_ak74m_545x39", - "ShortName": "weapon_izhmash_ak74m_545x39", - "Description": "weapon_izhmash_ak74m_545x39", - "Weight": 2.392, - "BackgroundColor": "black", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/ak545/weapon_sag_ak545_545x39_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 144, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_gas_block", - "_id": "628b5638ad252a16da6dd247", - "_parent": "628b5638ad252a16da6dd245", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "628b8d83717774443b15e248" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "628b5638ad252a16da6dd249", - "_parent": "628b5638ad252a16da6dd245", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac72e945acfc43f3b691116", - "5ac7655e5acfc40016339a19", - "5649aa744bdc2ded0b8b457e", - "5f633f791b231926f2329f13", - "5943eeeb86f77412d6384f6b", - "5cc9a96cd7f00c011c04e04a", - "615d8f5dd92c473c770212ef", - "5649ab884bdc2ded0b8b457f", - "57dc324a24597759501edc20", - "59bffc1f86f77435b128b872", - "593d493f86f7745e6b2ceb22", - "564caa3d4bdc2d17108b458e", - "57ffb0e42459777d047111c5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "628b5638ad252a16da6dd24a", - "_parent": "628b5638ad252a16da6dd245", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "623c3be0484b5003161840dc", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock_000", - "_id": "628b5638ad252a16da6dd24d", - "_parent": "628b5638ad252a16da6dd245", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "628b9a40717774443b15e9f2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "628b5638ad252a16da6dd24e", - "_parent": "628b5638ad252a16da6dd245", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "564ca9df4bdc2d35148b4569", - "564ca99c4bdc2d16268b4589", - "55d480c04bdc2d1d4e8b456a", - "5cbdaf89ae9215000e5b9c94", - "55d481904bdc2d8c2f8b456a", - "55d482194bdc2d1d4e8b456b", - "55d4837c4bdc2d1d4e8b456c", - "5aaa4194e5b5b055d06310a5", - "5bed61680db834001d2c45ab", - "5bed625c0db834001c062946", - "649ec30cb013f04a700e60fb", - "64b9e265c94d0d15c5027e35" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_charge", - "_id": "628b5638ad252a16da6dd250", - "_parent": "628b5638ad252a16da6dd245", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber545x39", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 5700, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 50, - "Velocity": 1.8, - "bEffDist": 650, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "55d480c04bdc2d1d4e8b456a", - "defAmmo": "56dff0bed2720bb0668b4567", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "628b5638ad252a16da6dd246", - "_parent": "628b5638ad252a16da6dd245", - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5e4486f77478390952fe", - "61962b617c6c7b169525f168", - "56dfef82d2720bbd668b4567", - "56dff026d2720bb8668b4567", - "56dff061d2720bb5668b4567", - "56dff0bed2720bb0668b4567", - "56dff216d2720bbd668b4568", - "56dff2ced2720bb4668b4567", - "56dff338d2720bbd668b4569", - "56dff3afd2720bba668b4567", - "56dff421d2720b5f5a8b4567", - "56dff4a2d2720bbd668b456a", - "56dff4ecd2720b5f5a8b4568" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.033, - "AimPlane": 0.19, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.5, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.051, - "RecoilStableIndexShot": 3, - "RecoilForceBack": 263, - "RecoilForceUp": 91, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.985, - "CoolFactorGun": 2.91, - "CoolFactorGunMods": 1.0008, - "HeatFactorByShot": 1.49, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "62178be9d0050232da3485d9": { - "_id": "62178be9d0050232da3485d9", - "_name": "weapon_rsp30_white", - "_parent": "5447bedf4bdc2d87278b4568", - "_type": "Item", - "_props": { - "Name": "weapon_zid_sp81_26x75", - "ShortName": "weapon_zid_sp81_26x75", - "Description": "weapon_zid_sp81_26x75\n\n", - "Weight": 0.19, - "BackgroundColor": "grey", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/weapons/rsp30/weapon_rsp30_white_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 550, - "RepairSpeed": 2, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": true, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "specialWeapon", - "weapUseType": "secondary", - "ammoCaliber": "Caliber26x75", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 900, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 70, - "isFastReload": false, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": false, - "bFirerate": 30, - "Ergonomics": 51, - "Velocity": 0, - "bEffDist": 50, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5a718b548dc32e000d46d262", - "defAmmo": "624c09da2cec124eb67c1046", - "AdjustCollimatorsToTrajectory": true, - "shotgunDispersion": 10, - "Chambers": [], - "ReloadMode": "OnlyBarrel", - "CenterOfImpact": 0.7, - "AimPlane": 0.026, - "DeviationCurve": 1.9, - "DeviationMax": 15, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.345, - "RecoilReturnSpeedHandRotation": 1, - "RecoilDampingHandRotation": 0.9, - "RecoilCamera": 0.024, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 400, - "RecoilForceUp": 170, - "RecolDispersion": 35, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.57, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.47, - "z": -0.05 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -4, - "y": 4, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.01, - "y": 0.11, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.01, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.2, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 1, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1, - "HeatFactorGun": 1, - "CoolFactorGun": 0.576, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1, - "AllowOverheat": false, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0, - "IsFlareGun": false, - "IsOneoff": true, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": true - }, - "_proto": "5448bd6b4bdc2dfc2f8b4569" - }, - "657857faeff4c850222dff1b": { - "_id": "657857faeff4c850222dff1b", - "_name": "weapon_zid_pktm_762x54r", - "_parent": "5447bed64bdc2d97278b4568", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_rpk16_545x39", - "ShortName": "weapon_izhmash_rpk16_545x39", - "Description": "weapon_izhmash_rpk16_545x39", - "Weight": 3.852, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/pkm/weapon_zid_pkm_762x54r_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 235, - "RepairSpeed": 5, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistolgrip", - "_id": "657857faeff4c850222dff1d", - "_parent": "657857faeff4c850222dff1b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "646371779f5f0ea59a04c204", - "64cbad529f7cf7f75c077fd5" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "657857faeff4c850222dff1e", - "_parent": "657857faeff4c850222dff1b", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "65785979bec02a3fe82c181e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "657857faeff4c850222dff1f", - "_parent": "657857faeff4c850222dff1b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "646371a9f2404ab67905c8e6", - "6492d7847363b8a52206bc52", - "6492e3a97df7d749100e29ee" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "657857faeff4c850222dff20", - "_parent": "657857faeff4c850222dff1b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "64639a9aab86f8fd4300146c", - "646371faf2404ab67905c8e9" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_bipod", - "_id": "657857faeff4c850222dff21", - "_parent": "657857faeff4c850222dff1b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6464d870bb2c580352070cc4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "657857faeff4c850222dff22", - "_parent": "657857faeff4c850222dff1b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6491c6f6ef312a876705191b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "657857faeff4c850222dff23", - "_parent": "657857faeff4c850222dff1b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6492fb8253acae0af00a29b6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "machinegun", - "weapUseType": "primary", - "ammoCaliber": "Caliber762x54R", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 9000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 35, - "Velocity": 1.8, - "bEffDist": 750, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "646372518610c40fc20204e8", - "defAmmo": "5887431f2459777e1612938f", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "657857faeff4c850222dff1c", - "_parent": "657857faeff4c850222dff1b", - "_props": { - "filters": [ - { - "Filter": [ - "5e023d34e8a400319a28ed44", - "5e023d48186a883be655e551", - "5e023cf8186a883be655e54f", - "59e77a2386f7742ee578960a", - "5887431f2459777e1612938f", - "560d61e84bdc2da74d8b4571", - "64b8f7c241772715af0f9c3d", - "64b8f7968532cf95ee0a0dbf", - "64b8f7b5389d7ffd620ccba2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0, - "AimPlane": 0.19, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 1, - "RecoilDampingHandRotation": 0.93, - "RecoilCamera": -0.3, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 1300, - "RecoilForceUp": 210, - "RecolDispersion": 25, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.55, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2.4, - "y": 2.4, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.95, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.08, - "HeatFactorByShot": 1.2, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": true, - "WithAnimatorAiming": true, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "63171672192e68c5460cebc5": { - "_id": "63171672192e68c5460cebc5", - "_name": "weapon_steyr_aug_a3_m1_556x45", - "_parent": "5447b5f14bdc2d61278b4567", - "_type": "Item", - "_props": { - "Name": "Штурмовая винтовка Colt M4A1 5.56x45", - "ShortName": "M4A1 5.56x45", - "Description": "Colt M4A1- штурмовая винтовка (карабин) созданная в США на базе платформы AR-15 под патрон 5.56x45 NATO. Планировалась к вооружению экипажей боевых машин и расчетов техники, которым было необходимо иметь оружие меньших габаритов чем штатное вооружение но использующее стандартный боеприпас. Однако вскоре US SOCOM (Командование Сил Специальных Операций США) приняло на вооружение M4A1 для всех входящих в его состав подразделений. Затем последовало полное принятие M4A1 на вооружение в армии и морской пехоте США.", - "Weight": 1.51, - "BackgroundColor": "black", - "Width": 3, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/aug/weapon_steyr_aug_a3_m1_556x45_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 199, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "63171672192e68c5460cebc6", - "_parent": "63171672192e68c5460cebc5", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "62e7c98b550c8218d602cbb4", - "630e1adbbd357927e4007c09", - "630e295c984633f1fb0e7c30" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_charge", - "_id": "63171672192e68c5460cebc7", - "_parent": "63171672192e68c5460cebc5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62e7c880f68e7a0676050c7c", - "62ebbc53e3c1e1ec7c02c44f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "63171672192e68c5460cebc8", - "_parent": "63171672192e68c5460cebc5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62e7c72df68e7a0676050c77", - "62ea7c793043d74a0306e19f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "assaultRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber556x45NATO", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 4600, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 715, - "CanQueueSecondShot": true, - "bFirerate": 715, - "Ergonomics": 88, - "Velocity": 0, - "bEffDist": 500, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "62e7c98b550c8218d602cbb4", - "defAmmo": "59e6920f86f77411d82aa167", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "63171672192e68c5460cebc9", - "_parent": "63171672192e68c5460cebc5", - "_props": { - "filters": [ - { - "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0.16, - "DeviationCurve": 1.35, - "DeviationMax": 23, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.6, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.057, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 185, - "RecoilForceUp": 50, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.4, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.12, - "z": -0.01 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.12, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.12, - "z": -0.03 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.03, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.183425, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.13, - "HeatFactorGun": 0.975, - "CoolFactorGun": 3.268, - "CoolFactorGunMods": 1.015, - "HeatFactorByShot": 1.25, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.025, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, "5bf3e03b0db834001d2c4a9c": { "_id": "5bf3e03b0db834001d2c4a9c", "_name": "weapon_izhmash_ak74_545x39", @@ -238585,23 +233910,23 @@ }, "_proto": "5448bd6b4bdc2dfc2f8b4569" }, - "5ac66cb05acfc40198510a10": { - "_id": "5ac66cb05acfc40198510a10", - "_name": "weapon_izhmash_ak101_556x45", + "5644bd2b4bdc2d3b4c8b4572": { + "_id": "5644bd2b4bdc2d3b4c8b4572", + "_name": "weapon_izhmash_ak74n_545x39", "_parent": "5447b5f14bdc2d61278b4567", "_type": "Item", "_props": { - "Name": "weapon_izhmash_ak101_556x45", - "ShortName": "weapon_izhmash_ak101_556x45", - "Description": "weapon_izhmash_ak101_556x45", - "Weight": 2.392, + "Name": "Автомат Калашникова АК-74Н 5.45x39", + "ShortName": "АК-74N 5.45x39", + "Description": "Автомат Калашникова калибра 5,45 мм, разработанный в 1970 году конструктором М. Т. Калашниковым. Дальнейшее развитие АКМ в связи с переходом Вооруженных Сил на новый боеприпас 5.45x39. Основное отличие от штатного АК-74 это наличие крепления для оптических и ночных прицелов.", + "Weight": 2.092, "BackgroundColor": "black", "Width": 4, "Height": 1, "StackMaxSize": 1, "ItemSound": "weap_ar", "Prefab": { - "path": "assets/content/weapons/ak100/weapon_izhmash_ak101_556x45_container.bundle", + "path": "assets/content/weapons/ak74/weapon_izhmash_ak74n_545x39_container.bundle", "rcid": "" }, "UsePrefab": { @@ -238621,7 +233946,7 @@ "LootExperience": 20, "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 152, + "RepairCost": 116, "RepairSpeed": 5, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -238649,8 +233974,8 @@ "Slots": [ { "_name": "mod_gas_block", - "_id": "5ac66cb05acfc40198510a13", - "_parent": "5ac66cb05acfc40198510a10", + "_id": "5648be524bdc2d91118b45a4", + "_parent": "5644bd2b4bdc2d3b4c8b4572", "_props": { "filters": [ { @@ -238674,8 +233999,8 @@ }, { "_name": "mod_launcher", - "_id": "5ac66cb05acfc40198510a14", - "_parent": "5ac66cb05acfc40198510a10", + "_id": "5648be684bdc2d3d1c8b4582", + "_parent": "5644bd2b4bdc2d3b4c8b4572", "_props": { "filters": [ { @@ -238693,21 +234018,26 @@ }, { "_name": "mod_muzzle", - "_id": "5ac66cb05acfc40198510a15", - "_parent": "5ac66cb05acfc40198510a10", + "_id": "5648be784bdc2d79388b4575", + "_parent": "5644bd2b4bdc2d3b4c8b4572", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5ac72e615acfc43f67248aa0", - "5ac72e725acfc400180ae701", + "5ac72e945acfc43f3b691116", + "5ac7655e5acfc40016339a19", + "5649aa744bdc2ded0b8b457e", "5f633f791b231926f2329f13", + "5943eeeb86f77412d6384f6b", "5cc9a96cd7f00c011c04e04a", - "5943ee5a86f77413872d25ec", - "5e21ca18e4d47f0da15e77dd", + "615d8f5dd92c473c770212ef", + "5649ab884bdc2ded0b8b457f", + "57dc324a24597759501edc20", "59bffc1f86f77435b128b872", - "5a9fbb84a2750c00137fa685" + "593d493f86f7745e6b2ceb22", + "564caa3d4bdc2d17108b458e", + "57ffb0e42459777d047111c5" ] } ] @@ -238718,8 +234048,1052 @@ }, { "_name": "mod_pistol_grip", - "_id": "5ac66cb05acfc40198510a16", - "_parent": "5ac66cb05acfc40198510a10", + "_id": "5648be824bdc2d1b2b8b4583", + "_parent": "5644bd2b4bdc2d3b4c8b4572", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "619b69037b9de8162902673e", + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "623c3be0484b5003161840dc", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "5648be8b4bdc2d17108b4581", + "_parent": "5644bd2b4bdc2d3b4c8b4572", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649af094bdc2df8348b4586", + "5ac50da15acfc4001718d287", + "5d2c76ed48f03532f2136169", + "5d2c770c48f0354b4a07c100", + "5d2c772c48f0355d95672c25", + "5649af884bdc2d1b2b8b4589", + "628a665a86cbd9750d2ff5e5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5648be944bdc2d3b4c8b4579", + "_parent": "5644bd2b4bdc2d3b4c8b4572", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac733a45acfc400192630e2", + "5649b0544bdc2d1b2b8b458a", + "5ac72e475acfc400180ae6fe", + "5649d9a14bdc2d79388b4580", + "628a7b23b0f75035732dd565", + "649ec2cec93611967b03495e", + "5bf3f59f0db834001a6fa060" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5648bea14bdc2d16268b457a", + "_parent": "5644bd2b4bdc2d3b4c8b4572", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649b0fc4bdc2d17108b4588", + "5cbdb1b0ae9215000d50e105", + "5649b1c04bdc2d16268b457c", + "5cf518cfd7f00c065b422214", + "5b04473a5acfc40018632f70", + "5e217ba4c1434648c13568cd", + "59d6514b86f774171a068a08", + "5b0e794b5acfc47a877359b2", + "59e6227d86f77440d64f5dc2", + "59e89d0986f77427600d226e", + "6087e2a5232e5a31c233d552", + "5649b2314bdc2d79388b4576", + "5b222d335acfc4771e1be099", + "628a6678ccaab13006640e49" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5648beb24bdc2d91118b45a5", + "_parent": "5644bd2b4bdc2d3b4c8b4572", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "564ca9df4bdc2d35148b4569", + "564ca99c4bdc2d16268b4589", + "55d480c04bdc2d1d4e8b456a", + "5cbdaf89ae9215000e5b9c94", + "55d481904bdc2d8c2f8b456a", + "55d482194bdc2d1d4e8b456b", + "55d4837c4bdc2d1d4e8b456c", + "5aaa4194e5b5b055d06310a5", + "5bed61680db834001d2c45ab", + "5bed625c0db834001c062946", + "649ec30cb013f04a700e60fb", + "64b9e265c94d0d15c5027e35" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_mount_000", + "_id": "57486f552459770b2a5e1c05", + "_parent": "5644bd2b4bdc2d3b4c8b4572", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "638db77630c4240f9e06f8b6", + "63d114019e35b334d82302f7", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "57c44d572459772d2a2169d1", + "_parent": "5644bd2b4bdc2d3b4c8b4572", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber545x39", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 5200, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 650, + "Ergonomics": 31, + "Velocity": 1.8, + "bEffDist": 650, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "55d480c04bdc2d1d4e8b456a", + "defAmmo": "56dff3afd2720bba668b4567", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5648ab2d4bdc2d17108b457f", + "_parent": "5644bd2b4bdc2d3b4c8b4572", + "_props": { + "filters": [ + { + "Filter": [ + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.057, + "AimPlane": 0.19, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.4, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.061, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 322, + "RecoilForceUp": 120, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.9701, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.0008, + "HeatFactorByShot": 1.49, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5ab8e9fcd8ce870019439434": { + "_id": "5ab8e9fcd8ce870019439434", + "_name": "weapon_izhmash_aks74n_545x39", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "Автомат Калашникова АК-74Н 5.45x39", + "ShortName": "АК-74N 5.45x39", + "Description": "Автомат Калашникова калибра 5,45 мм, разработанный в 1970 году конструктором М. Т. Калашниковым. Дальнейшее развитие АКМ в связи с переходом Вооруженных Сил на новый боеприпас 5.45x39. Основное отличие от штатного АК-74 это наличие крепления для оптических и ночных прицелов.", + "Weight": 2.092, + "BackgroundColor": "black", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/aks74/weapon_izhmash_aks74n_545x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 127, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_gas_block", + "_id": "5ab8e9fcd8ce870019439437", + "_parent": "5ab8e9fcd8ce870019439434", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a01ad4786f77450561fda02", + "59c6633186f7740cf0493bb9", + "59d64ec286f774171d1e0a42", + "59e649f986f77411d949b246", + "5b237e425acfc4771e1be0b6", + "59ccfdba86f7747f2109a587", + "5cf656f2d7f00c06585fb6eb", + "5d4aab30a4b9365435358c55" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_launcher", + "_id": "5ab8e9fcd8ce870019439438", + "_parent": "5ab8e9fcd8ce870019439434", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5648b62b4bdc2d9d488b4585", + "62e7e7bbe6da9612f743f1e0" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5ab8e9fcd8ce870019439439", + "_parent": "5ab8e9fcd8ce870019439434", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac72e945acfc43f3b691116", + "5ac7655e5acfc40016339a19", + "5649aa744bdc2ded0b8b457e", + "5f633f791b231926f2329f13", + "5943eeeb86f77412d6384f6b", + "5cc9a96cd7f00c011c04e04a", + "615d8f5dd92c473c770212ef", + "5649ab884bdc2ded0b8b457f", + "57dc324a24597759501edc20", + "59bffc1f86f77435b128b872", + "593d493f86f7745e6b2ceb22", + "564caa3d4bdc2d17108b458e", + "57ffb0e42459777d047111c5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "5ab8e9fcd8ce87001943943a", + "_parent": "5ab8e9fcd8ce870019439434", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "623c3be0484b5003161840dc", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", + "5947f92f86f77427344a76b1", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "5ab8e9fcd8ce87001943943b", + "_parent": "5ab8e9fcd8ce870019439434", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649af094bdc2df8348b4586", + "5ac50da15acfc4001718d287", + "5d2c76ed48f03532f2136169", + "5d2c770c48f0354b4a07c100", + "5d2c772c48f0355d95672c25", + "5649af884bdc2d1b2b8b4589", + "628a665a86cbd9750d2ff5e5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5ab8e9fcd8ce87001943943c", + "_parent": "5ab8e9fcd8ce870019439434", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac733a45acfc400192630e2", + "5649b0544bdc2d1b2b8b458a", + "5ac72e475acfc400180ae6fe", + "5649d9a14bdc2d79388b4580", + "628a7b23b0f75035732dd565", + "649ec2cec93611967b03495e", + "5bf3f59f0db834001a6fa060" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5ab8e9fcd8ce87001943943d", + "_parent": "5ab8e9fcd8ce870019439434", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59ecc28286f7746d7a68aa8c", + "5ab626e4d8ce87272e4c6e43", + "57dc347d245977596754e7a1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5ab8e9fcd8ce87001943943e", + "_parent": "5ab8e9fcd8ce870019439434", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "564ca9df4bdc2d35148b4569", + "564ca99c4bdc2d16268b4589", + "55d480c04bdc2d1d4e8b456a", + "5cbdaf89ae9215000e5b9c94", + "55d481904bdc2d8c2f8b456a", + "55d482194bdc2d1d4e8b456b", + "55d4837c4bdc2d1d4e8b456c", + "5aaa4194e5b5b055d06310a5", + "5bed61680db834001d2c45ab", + "5bed625c0db834001c062946", + "649ec30cb013f04a700e60fb", + "64b9e265c94d0d15c5027e35" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_mount_000", + "_id": "5ab8e9fcd8ce87001943943f", + "_parent": "5ab8e9fcd8ce870019439434", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "638db77630c4240f9e06f8b6", + "63d114019e35b334d82302f7", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "5ab8e9fcd8ce870019439440", + "_parent": "5ab8e9fcd8ce870019439434", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber545x39", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 5200, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 650, + "Ergonomics": 32, + "Velocity": 1.8, + "bEffDist": 650, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "55d480c04bdc2d1d4e8b456a", + "defAmmo": "56dff3afd2720bba668b4567", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5ab8e9fcd8ce870019439436", + "_parent": "5ab8e9fcd8ce870019439434", + "_props": { + "filters": [ + { + "Filter": [ + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.058, + "AimPlane": 0.19, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.4, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.061, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 322, + "RecoilForceUp": 120, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.9702, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.0008, + "HeatFactorByShot": 1.49, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5bf3e0490db83400196199af": { + "_id": "5bf3e0490db83400196199af", + "_name": "weapon_izhmash_aks74_545x39", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "Автомат Калашникова АК-74Н 5.45x39", + "ShortName": "АК-74N 5.45x39", + "Description": "Автомат Калашникова калибра 5,45 мм, разработанный в 1970 году конструктором М. Т. Калашниковым. Дальнейшее развитие АКМ в связи с переходом Вооруженных Сил на новый боеприпас 5.45x39. Основное отличие от штатного АК-74 это наличие крепления для оптических и ночных прицелов.", + "Weight": 1.992, + "BackgroundColor": "black", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/aks74/weapon_izhmash_aks74_545x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 118, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_gas_block", + "_id": "5bf3e0490db83400196199b2", + "_parent": "5bf3e0490db83400196199af", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a01ad4786f77450561fda02", + "59c6633186f7740cf0493bb9", + "59d64ec286f774171d1e0a42", + "59e649f986f77411d949b246", + "5b237e425acfc4771e1be0b6", + "59ccfdba86f7747f2109a587", + "5cf656f2d7f00c06585fb6eb", + "5d4aab30a4b9365435358c55" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_launcher", + "_id": "5bf3e0490db83400196199b3", + "_parent": "5bf3e0490db83400196199af", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5648b62b4bdc2d9d488b4585", + "62e7e7bbe6da9612f743f1e0" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5bf3e0490db83400196199b4", + "_parent": "5bf3e0490db83400196199af", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac72e945acfc43f3b691116", + "5ac7655e5acfc40016339a19", + "5649aa744bdc2ded0b8b457e", + "5f633f791b231926f2329f13", + "5943eeeb86f77412d6384f6b", + "5cc9a96cd7f00c011c04e04a", + "615d8f5dd92c473c770212ef", + "5649ab884bdc2ded0b8b457f", + "57dc324a24597759501edc20", + "59bffc1f86f77435b128b872", + "593d493f86f7745e6b2ceb22", + "564caa3d4bdc2d17108b458e", + "57ffb0e42459777d047111c5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "5bf3e0490db83400196199b5", + "_parent": "5bf3e0490db83400196199af", "_props": { "filters": [ { @@ -238760,8 +235134,8 @@ }, { "_name": "mod_reciever", - "_id": "5ac66cb05acfc40198510a17", - "_parent": "5ac66cb05acfc40198510a10", + "_id": "5bf3e0490db83400196199b6", + "_parent": "5bf3e0490db83400196199af", "_props": { "filters": [ { @@ -238784,8 +235158,8 @@ }, { "_name": "mod_sight_rear", - "_id": "5ac66cb05acfc40198510a18", - "_parent": "5ac66cb05acfc40198510a10", + "_id": "5bf3e0490db83400196199b7", + "_parent": "5bf3e0490db83400196199af", "_props": { "filters": [ { @@ -238808,8 +235182,900 @@ }, { "_name": "mod_stock", - "_id": "5ac66cb05acfc40198510a19", - "_parent": "5ac66cb05acfc40198510a10", + "_id": "5bf3e0490db83400196199b8", + "_parent": "5bf3e0490db83400196199af", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59ecc28286f7746d7a68aa8c", + "5ab626e4d8ce87272e4c6e43", + "57dc347d245977596754e7a1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5bf3e0490db83400196199b9", + "_parent": "5bf3e0490db83400196199af", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "564ca9df4bdc2d35148b4569", + "564ca99c4bdc2d16268b4589", + "55d480c04bdc2d1d4e8b456a", + "5cbdaf89ae9215000e5b9c94", + "55d481904bdc2d8c2f8b456a", + "55d482194bdc2d1d4e8b456b", + "55d4837c4bdc2d1d4e8b456c", + "5aaa4194e5b5b055d06310a5", + "5bed61680db834001d2c45ab", + "5bed625c0db834001c062946", + "649ec30cb013f04a700e60fb", + "64b9e265c94d0d15c5027e35" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_charge", + "_id": "5bf3e0490db83400196199bb", + "_parent": "5bf3e0490db83400196199af", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber545x39", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 5200, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 650, + "Ergonomics": 31, + "Velocity": 1.8, + "bEffDist": 650, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "55d480c04bdc2d1d4e8b456a", + "defAmmo": "56dff3afd2720bba668b4567", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5bf3e0490db83400196199b1", + "_parent": "5bf3e0490db83400196199af", + "_props": { + "filters": [ + { + "Filter": [ + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.058, + "AimPlane": 0.19, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.4, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.061, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 322, + "RecoilForceUp": 120, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.9702, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.0008, + "HeatFactorByShot": 1.49, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5d43021ca4b9362eab4b5e25": { + "_id": "5d43021ca4b9362eab4b5e25", + "_name": "weapon_lone_star_tx15_designated_marksman_556x45", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_lone_star_tx15_designated_marksman_556x45", + "ShortName": "weapon_lone_star_tx15_designated_marksman_556x45", + "Description": "weapon_lone_star_tx15_designated_marksman_556x45", + "Weight": 0.31, + "BackgroundColor": "black", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/tx15/weapon_lone_star_tx15_designated_marksman_556x45_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 193, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "5d43021ca4b9362eab4b5e27", + "_parent": "5d43021ca4b9362eab4b5e25", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0e2ff6d174af02a1659d4a", + "5a33e75ac4a2826c6e06d759", + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "602e71bd53a60014f9705bfa", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5cc9bcaed7f00c011c04e179", + "5bb20e18d4351e00320205d5", + "5bb20e0ed4351e3bac1212dc", + "6193dcd0f8ee7e52e4210a28", + "5d025cc1d7ad1a53845279ef", + "5c6d7b3d2e221600114c9b7d", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "55802f5d4bdc2dac148b458f", + "5d15cf3bd7ad1a67e71518b2", + "59db3a1d86f77429e05b4e92", + "5fbcbd6c187fea44d52eda14", + "59db3acc86f7742a2c4ab912", + "59db3b0886f77429d72fb895", + "615d8faecabb9b7ad90f4d5d", + "63f5feead259b42f0b4d6d0f", + "5b07db875acfc40dc528a5f6", + "652911675ae2ae97b80fdf3c", + "63f5feead259b42f0b4d6d0f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5d43021ca4b9362eab4b5e28", + "_parent": "5d43021ca4b9362eab4b5e25", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "55d4887d4bdc2d962f8b4570", + "61840bedd92c473c77021635", + "61840d85568c120fdd2962a5", + "5c05413a0db834001c390617", + "5c6d450c2e221600114c997d", + "5c6d42cb2e2216000e69d7d1", + "59c1383d86f774290a37e0ca", + "5aaa5e60e5b5b000140293d6", + "5448c1d04bdc2dff2f8b4569", + "5aaa5dfee5b5b000140293d3", + "5d1340b3d7ad1a0b52682ed7", + "544a378f4bdc2d30388b4567", + "5d1340bdd7ad1a0e8d245aab", + "55802d5f4bdc2dac148b458e", + "5d1340cad7ad1a0b0b249869", + "6241c2c2117ad530666a5108", + "5c6592372e221600133e47d7", + "544a37c44bdc2d25388b4567", + "5c6d46132e221601da357d56" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_reciever", + "_id": "5d43021ca4b9362eab4b5e29", + "_parent": "5d43021ca4b9362eab4b5e25", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0e2f26d174af02a9625114", + "55d355e64bdc2d962f8b4569", + "5d4405aaa4b9361e6a4e6bd3", + "5c07a8770db8340023300450", + "59bfe68886f7746004266202", + "63f5ed14534b2c3d5479a677" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5d43021ca4b9362eab4b5e2a", + "_parent": "5d43021ca4b9362eab4b5e25", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a33ca0fc4a282000d72292f", + "5c0faeddd174af02a962601f", + "5649be884bdc2d79388b4577", + "5d120a10d7ad1a4e1026ba85", + "5b0800175acfc400153aebd4", + "5947e98b86f774778f1448bc", + "5947eab886f77475961d96c5", + "602e3f1254072b51b239f713", + "5c793fb92e221644f31bfb64", + "5c793fc42e221600114ca25d", + "591aef7986f774139d495f03", + "591af10186f774139d495f0e", + "627254cc9c563e6e442c398f", + "638de3603a1a4031d8260b8c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "5d43021ca4b9362eab4b5e2b", + "_parent": "5d43021ca4b9362eab4b5e25", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0faf68d174af02a96260b8", + "56ea7165d2720b6e518b4583", + "55d44fd14bdc2d962f8b456e", + "5ea16d4d5aad6446a939753d", + "5bb20dbcd4351e44f824c04e", + "6033749e88382f4fab3fd2c5", + "5b2240bf5acfc40dc528af69", + "5d44334ba4b9362b346d1948", + "5f633ff5c444ce7e3c30a006", + "651bf5617b3b552ef6712cb7" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber556x45NATO", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 3650, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 800, + "Ergonomics": 50, + "Velocity": 0, + "bEffDist": 500, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "55d4887d4bdc2d962f8b4570", + "defAmmo": "59e6920f86f77411d82aa167", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5d43021ca4b9362eab4b5e2c", + "_parent": "5d43021ca4b9362eab4b5e25", + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167", + "59e6927d86f77411da468256", + "54527a984bdc2d4e668b4567", + "54527ac44bdc2d36668b4567", + "59e68f6f86f7746c9f75e846", + "59e6906286f7746c9f75e847", + "59e690b686f7746c9f75e848", + "59e6918f86f7746c9f75e849", + "60194943740c5d77f6705eea", + "601949593ae8f707c4608daa", + "5c0d5ae286f7741e46554302" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0.16, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.5, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.057, + "RecoilStableIndexShot": 3, + "RecoilForceBack": 322, + "RecoilForceUp": 113, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.24, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.03, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.208725, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1.39, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.025, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5ac4cd105acfc40016339859": { + "_id": "5ac4cd105acfc40016339859", + "_name": "weapon_izhmash_ak74m_545x39", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_ak74m_545x39", + "ShortName": "weapon_izhmash_ak74m_545x39", + "Description": "weapon_izhmash_ak74m_545x39", + "Weight": 2.392, + "BackgroundColor": "black", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/ak74m/weapon_izhmash_ak74m_545x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 131, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_gas_block", + "_id": "5ac4cd105acfc4001633985c", + "_parent": "5ac4cd105acfc40016339859", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a01ad4786f77450561fda02", + "59c6633186f7740cf0493bb9", + "59d64ec286f774171d1e0a42", + "59e649f986f77411d949b246", + "5b237e425acfc4771e1be0b6", + "59ccfdba86f7747f2109a587", + "5cf656f2d7f00c06585fb6eb", + "5d4aab30a4b9365435358c55" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_launcher", + "_id": "5ac4cd105acfc4001633985d", + "_parent": "5ac4cd105acfc40016339859", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5648b62b4bdc2d9d488b4585", + "62e7e7bbe6da9612f743f1e0" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5ac4cd105acfc4001633985e", + "_parent": "5ac4cd105acfc40016339859", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac72e945acfc43f3b691116", + "5ac7655e5acfc40016339a19", + "5649aa744bdc2ded0b8b457e", + "5f633f791b231926f2329f13", + "5943eeeb86f77412d6384f6b", + "5cc9a96cd7f00c011c04e04a", + "615d8f5dd92c473c770212ef", + "5649ab884bdc2ded0b8b457f", + "57dc324a24597759501edc20", + "59bffc1f86f77435b128b872", + "593d493f86f7745e6b2ceb22", + "564caa3d4bdc2d17108b458e", + "57ffb0e42459777d047111c5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "5ac4cd105acfc4001633985f", + "_parent": "5ac4cd105acfc40016339859", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "623c3be0484b5003161840dc", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "5ac4cd105acfc40016339860", + "_parent": "5ac4cd105acfc40016339859", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649af094bdc2df8348b4586", + "5ac50da15acfc4001718d287", + "5d2c76ed48f03532f2136169", + "5d2c770c48f0354b4a07c100", + "628a665a86cbd9750d2ff5e5", + "5d2c772c48f0355d95672c25", + "5649af884bdc2d1b2b8b4589" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5ac4cd105acfc40016339861", + "_parent": "5ac4cd105acfc40016339859", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac733a45acfc400192630e2", + "5649b0544bdc2d1b2b8b458a", + "5ac72e475acfc400180ae6fe", + "628a7b23b0f75035732dd565", + "5649d9a14bdc2d79388b4580", + "5bf3f59f0db834001a6fa060", + "649ec2cec93611967b03495e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5ac4cd105acfc40016339862", + "_parent": "5ac4cd105acfc40016339859", "_props": { "filters": [ { @@ -238831,15 +236097,25 @@ }, { "_name": "mod_magazine", - "_id": "5ac66cb05acfc40198510a1a", - "_parent": "5ac66cb05acfc40198510a10", + "_id": "5ac4cd105acfc40016339863", + "_parent": "5ac4cd105acfc40016339859", "_props": { "filters": [ { "AnimationIndex": -1, "Filter": [ - "5c0548ae0db834001966a3c2", - "5ac66c5d5acfc4001718d314" + "564ca9df4bdc2d35148b4569", + "564ca99c4bdc2d16268b4589", + "55d480c04bdc2d1d4e8b456a", + "5cbdaf89ae9215000e5b9c94", + "55d481904bdc2d8c2f8b456a", + "55d482194bdc2d1d4e8b456b", + "55d4837c4bdc2d1d4e8b456c", + "5aaa4194e5b5b055d06310a5", + "5bed61680db834001d2c45ab", + "5bed625c0db834001c062946", + "649ec30cb013f04a700e60fb", + "64b9e265c94d0d15c5027e35" ] } ] @@ -238850,8 +236126,8 @@ }, { "_name": "mod_mount_000", - "_id": "5ac66cb05acfc40198510a1b", - "_parent": "5ac66cb05acfc40198510a10", + "_id": "5ac4cd105acfc40016339864", + "_parent": "5ac4cd105acfc40016339859", "_props": { "filters": [ { @@ -238885,8 +236161,8 @@ }, { "_name": "mod_charge", - "_id": "5ac66cb05acfc40198510a1c", - "_parent": "5ac66cb05acfc40198510a10", + "_id": "5ac4cd105acfc40016339865", + "_parent": "5ac4cd105acfc40016339859", "_props": { "filters": [ { @@ -238907,10 +236183,10 @@ "CantRemoveFromSlotsDuringRaid": [], "weapClass": "assaultRifle", "weapUseType": "primary", - "ammoCaliber": "Caliber556x45NATO", + "ammoCaliber": "Caliber545x39", "Durability": 100, "MaxDurability": 100, - "OperatingResource": 5500, + "OperatingResource": 5200, "RepairComplexity": 0, "durabSpawnMin": 25, "durabSpawnMax": 75, @@ -238922,37 +236198,39 @@ "SingleFireRate": 450, "CanQueueSecondShot": true, "bFirerate": 650, - "Ergonomics": 35, + "Ergonomics": 33, "Velocity": 1.8, "bEffDist": 650, "bHearDist": 80, "isChamberLoad": true, "chamberAmmoCount": 1, "isBoltCatch": false, - "defMagType": "5ac66c5d5acfc4001718d314", - "defAmmo": "59e6920f86f77411d82aa167", + "defMagType": "55d480c04bdc2d1d4e8b456a", + "defAmmo": "56dff3afd2720bba668b4567", "AdjustCollimatorsToTrajectory": false, "shotgunDispersion": 0, "Chambers": [ { "_name": "patron_in_weapon", - "_id": "5ac66cb05acfc40198510a12", - "_parent": "5ac66cb05acfc40198510a10", + "_id": "5ac4cd105acfc4001633985b", + "_parent": "5ac4cd105acfc40016339859", "_props": { "filters": [ { "Filter": [ - "59e6920f86f77411d82aa167", - "59e6927d86f77411da468256", - "54527a984bdc2d4e668b4567", - "54527ac44bdc2d36668b4567", - "59e68f6f86f7746c9f75e846", - "59e6906286f7746c9f75e847", - "59e690b686f7746c9f75e848", - "59e6918f86f7746c9f75e849", - "60194943740c5d77f6705eea", - "601949593ae8f707c4608daa", - "5c0d5ae286f7741e46554302" + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" ] } ] @@ -238963,7 +236241,7 @@ } ], "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.05, + "CenterOfImpact": 0.055, "AimPlane": 0.19, "DeviationCurve": 1.35, "DeviationMax": 23, @@ -238978,15 +236256,15 @@ "RecoilCategoryMultiplierHandRotation": 0.207, "RecoilReturnSpeedHandRotation": 2.4, "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.053, + "RecoilCamera": 0.061, "RecoilStableIndexShot": 5, - "RecoilForceBack": 300, - "RecoilForceUp": 107, - "RecolDispersion": 7, + "RecoilForceBack": 318, + "RecoilForceUp": 118, + "RecolDispersion": 10, "RecoilPosZMult": 1, "RecoilReturnPathDampingHandRotation": 0.48, "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 100, + "RecoilAngle": 90, "RecoilStableAngleIncreaseStep": 2.5, "ProgressRecoilAngleOnStable": { "x": 0, @@ -239071,7 +236349,7 @@ "HeatFactorGun": 0.9701, "CoolFactorGun": 3.168, "CoolFactorGunMods": 1.0008, - "HeatFactorByShot": 1.355, + "HeatFactorByShot": 1.49, "AllowOverheat": true, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, @@ -239087,6 +236365,1324 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, + "65290f395ae2ae97b80fdf2d": { + "_id": "65290f395ae2ae97b80fdf2d", + "_name": "weapon_sig_mcx_spear_68x51", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_sig_mcx_gen1_762x35", + "ShortName": "weapon_sig_mcx_gen1_762x35", + "Description": "weapon_sig_mcx_gen1_762x35", + "Weight": 0.4, + "BackgroundColor": "black", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/spear/weapon_sig_mcx_spear_68x51_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 210, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "65290f395ae2ae97b80fdf2e", + "_parent": "65290f395ae2ae97b80fdf2d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "602e71bd53a60014f9705bfa", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5cc9bcaed7f00c011c04e179", + "5bb20e18d4351e00320205d5", + "5bb20e0ed4351e3bac1212dc", + "6193dcd0f8ee7e52e4210a28", + "5d025cc1d7ad1a53845279ef", + "5c6d7b3d2e221600114c9b7d", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "55802f5d4bdc2dac148b458f", + "5d15cf3bd7ad1a67e71518b2", + "59db3a1d86f77429e05b4e92", + "5fbcbd6c187fea44d52eda14", + "59db3acc86f7742a2c4ab912", + "59db3b0886f77429d72fb895", + "615d8faecabb9b7ad90f4d5d", + "5b07db875acfc40dc528a5f6", + "63f5feead259b42f0b4d6d0f", + "652911675ae2ae97b80fdf3c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "65290f395ae2ae97b80fdf2f", + "_parent": "65290f395ae2ae97b80fdf2d", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "65293c38fc460e50a509cb25", + "65293c7a17e14363030ad308", + "5a3501acc4a282000d72293a", + "5df8f541c41b2312ea3335e3", + "5df8f535bb49d91fb446d6b0" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_reciever", + "_id": "65290f395ae2ae97b80fdf30", + "_parent": "65290f395ae2ae97b80fdf2d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6529119424cbe3c74a05e5bb" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock_000", + "_id": "65290f395ae2ae97b80fdf31", + "_parent": "65290f395ae2ae97b80fdf2d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "58ac1bf086f77420ed183f9f", + "5894a13e86f7742405482982", + "5fbcc429900b1d5091531dd7", + "5fbcc437d724d907e2077d5c", + "5c5db6ee2e221600113fba54", + "5c5db6f82e2216003a0fe914", + "6529348224cbe3c74a05e5c4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "65290f395ae2ae97b80fdf32", + "_parent": "65290f395ae2ae97b80fdf2d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6529109524cbe3c74a05e5b7" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber68x51", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 4600, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 800, + "Ergonomics": 46, + "Velocity": 0, + "bEffDist": 500, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "65293c38fc460e50a509cb25", + "defAmmo": "6529302b8c26af6326029fb7", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "65290f395ae2ae97b80fdf33", + "_parent": "65290f395ae2ae97b80fdf2d", + "_props": { + "filters": [ + { + "Filter": [ + "6529243824cbe3c74a05e5c1", + "6529302b8c26af6326029fb7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0.16, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.5, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.07, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 372, + "RecoilForceUp": 130, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.49, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.24, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.03, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1.48, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.025, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "628b9c37a733087d0d7fe84b": { + "_id": "628b9c37a733087d0d7fe84b", + "_name": "weapon_sag_ak545_short_545x39", + "_parent": "5447b5f14bdc2d61278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_ak74m_545x39", + "ShortName": "weapon_izhmash_ak74m_545x39", + "Description": "weapon_izhmash_ak74m_545x39", + "Weight": 2.192, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/ak545/weapon_sag_ak545_short_545x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 143, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_gas_block", + "_id": "628b9c37a733087d0d7fe84d", + "_parent": "628b9c37a733087d0d7fe84b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "628b8d83717774443b15e248" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "628b9c37a733087d0d7fe84e", + "_parent": "628b9c37a733087d0d7fe84b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac72e945acfc43f3b691116", + "5ac7655e5acfc40016339a19", + "5649aa744bdc2ded0b8b457e", + "5f633f791b231926f2329f13", + "5943eeeb86f77412d6384f6b", + "5cc9a96cd7f00c011c04e04a", + "615d8f5dd92c473c770212ef", + "5649ab884bdc2ded0b8b457f", + "57dc324a24597759501edc20", + "59bffc1f86f77435b128b872", + "593d493f86f7745e6b2ceb22", + "564caa3d4bdc2d17108b458e", + "57ffb0e42459777d047111c5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "628b9c37a733087d0d7fe84f", + "_parent": "628b9c37a733087d0d7fe84b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "623c3be0484b5003161840dc", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock_000", + "_id": "628b9c37a733087d0d7fe850", + "_parent": "628b9c37a733087d0d7fe84b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "628b9a40717774443b15e9f2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "628b9c37a733087d0d7fe851", + "_parent": "628b9c37a733087d0d7fe84b", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "564ca9df4bdc2d35148b4569", + "564ca99c4bdc2d16268b4589", + "55d480c04bdc2d1d4e8b456a", + "5cbdaf89ae9215000e5b9c94", + "55d481904bdc2d8c2f8b456a", + "55d482194bdc2d1d4e8b456b", + "55d4837c4bdc2d1d4e8b456c", + "5aaa4194e5b5b055d06310a5", + "5bed61680db834001d2c45ab", + "5bed625c0db834001c062946", + "649ec30cb013f04a700e60fb", + "64b9e265c94d0d15c5027e35" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_charge", + "_id": "628b9c37a733087d0d7fe852", + "_parent": "628b9c37a733087d0d7fe84b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber545x39", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 5600, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 650, + "Ergonomics": 53, + "Velocity": 1.8, + "bEffDist": 650, + "bHearDist": 90, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "55d480c04bdc2d1d4e8b456a", + "defAmmo": "56dff0bed2720bb0668b4567", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "628b9c37a733087d0d7fe84c", + "_parent": "628b9c37a733087d0d7fe84b", + "_props": { + "filters": [ + { + "Filter": [ + "5c0d5e4486f77478390952fe", + "61962b617c6c7b169525f168", + "56dfef82d2720bbd668b4567", + "56dff026d2720bb8668b4567", + "56dff061d2720bb5668b4567", + "56dff0bed2720bb0668b4567", + "56dff216d2720bbd668b4568", + "56dff2ced2720bb4668b4567", + "56dff338d2720bbd668b4569", + "56dff3afd2720bba668b4567", + "56dff421d2720b5f5a8b4567", + "56dff4a2d2720bbd668b456a", + "56dff4ecd2720b5f5a8b4568" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.048, + "AimPlane": 0.19, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.7, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.056, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 270, + "RecoilForceUp": 93, + "RecolDispersion": 12, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1541, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.9901, + "CoolFactorGun": 2.8, + "CoolFactorGunMods": 1.0008, + "HeatFactorByShot": 1.49, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "620109578d82e67e7911abf2": { + "_id": "620109578d82e67e7911abf2", + "_name": "weapon_zid_sp81_26x75", + "_parent": "5447bedf4bdc2d87278b4568", + "_type": "Item", + "_props": { + "Name": "weapon_zid_sp81_26x75", + "ShortName": "weapon_zid_sp81_26x75", + "Description": "weapon_zid_sp81_26x75\n\n", + "Weight": 0.6, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_pistol", + "Prefab": { + "path": "assets/content/weapons/sp81/weapon_zid_sp81_26x75_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 550, + "RepairSpeed": 2, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Pistol", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "specialWeapon", + "weapUseType": "secondary", + "ammoCaliber": "Caliber26x75", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 900, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 70, + "isFastReload": false, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": false, + "bFirerate": 30, + "Ergonomics": 51, + "Velocity": 0, + "bEffDist": 50, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5a718b548dc32e000d46d262", + "defAmmo": "5485a8684bdc2da71d8b4567", + "AdjustCollimatorsToTrajectory": true, + "shotgunDispersion": 10, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "620109578d82e67e7911abfb", + "_parent": "620109578d82e67e7911abf2", + "_props": { + "filters": [ + { + "Filter": [ + "62389aaba63f32501b1b444f", + "62389ba9a63f32501b1b4451", + "62389bc9423ed1685422dc57", + "62389be94d5d474bf712e709", + "635267f063651329f75a4ee8" + ], + "MaxStackCount": 0 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "OnlyBarrel", + "CenterOfImpact": 0.7, + "AimPlane": 0.026, + "DeviationCurve": 1.9, + "DeviationMax": 15, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.345, + "RecoilReturnSpeedHandRotation": 1, + "RecoilDampingHandRotation": 0.8, + "RecoilCamera": 0.024, + "RecoilStableIndexShot": 1, + "RecoilForceBack": 400, + "RecoilForceUp": 170, + "RecolDispersion": 35, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.57, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.47, + "z": -0.05 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -4, + "y": 4, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.01, + "y": 0.11, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.01, + "CameraSnap": 15, + "RotationCenter": { + "x": 0, + "y": -0.2, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 1, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1, + "HeatFactorGun": 1, + "CoolFactorGun": 0.576, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1, + "AllowOverheat": false, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": true, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5448bd6b4bdc2dfc2f8b4569" + }, + "6513ef33e06849f06c0957ca": { + "_id": "6513ef33e06849f06c0957ca", + "_name": "weapon_zid_rpd_762x39", + "_parent": "5447bed64bdc2d97278b4568", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_rpk16_545x39", + "ShortName": "weapon_izhmash_rpk16_545x39", + "Description": "weapon_izhmash_rpk16_545x39", + "Weight": 2.88, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/rpd/weapon_zid_rpd_762x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 235, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "6513ef33e06849f06c0957cd", + "_parent": "6513ef33e06849f06c0957ca", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "6513f0a194c72326990a3868" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "6513ef33e06849f06c0957ce", + "_parent": "6513ef33e06849f06c0957ca", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6513f1798cb24472490ee331" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "6513ef33e06849f06c0957cf", + "_parent": "6513ef33e06849f06c0957ca", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6513eff1e06849f06c0957d4", + "65266fd43341ed9aa903dd56" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "6513ef33e06849f06c0957d1", + "_parent": "6513ef33e06849f06c0957ca", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6513f05a94c72326990a3866" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "6513ef33e06849f06c0957d2", + "_parent": "6513ef33e06849f06c0957ca", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6513f153e63f29908d0ffaba" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "machinegun", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x39", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 9000, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "fullauto" + ], + "SingleFireRate": 700, + "CanQueueSecondShot": true, + "bFirerate": 700, + "Ergonomics": 35, + "Velocity": 1.8, + "bEffDist": 800, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "6513f0a194c72326990a3868", + "defAmmo": "5656d7c34bdc2d9d198b4587", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0, + "AimPlane": 0.19, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.2, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.054, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 502, + "RecoilForceUp": 107, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.55, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.6, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 27, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2.4, + "y": 2.4, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.965, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.07, + "HeatFactorByShot": 1.14, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": true, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, "618428466ef05c2ce828f218": { "_id": "618428466ef05c2ce828f218", "_name": "weapon_fn_mk16_556x45_fde", @@ -239471,23 +238067,23 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, - "5aafa857e5b5b00018480968": { - "_id": "5aafa857e5b5b00018480968", - "_name": "weapon_springfield_m1a_762x51", - "_parent": "5447b6194bdc2d67278b4567", + "62178be9d0050232da3485d9": { + "_id": "62178be9d0050232da3485d9", + "_name": "weapon_rsp30_white", + "_parent": "5447bedf4bdc2d87278b4568", "_type": "Item", "_props": { - "Name": "weapon_springfield_m1a_762x51", - "ShortName": "weapon_springfield_m1a_762x51", - "Description": "weapon_springfield_m1a_762x51\n", - "Weight": 1.426, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, + "Name": "weapon_zid_sp81_26x75", + "ShortName": "weapon_zid_sp81_26x75", + "Description": "weapon_zid_sp81_26x75\n\n", + "Weight": 0.19, + "BackgroundColor": "grey", + "Width": 1, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "weap_dmr", + "ItemSound": "spec_multitool", "Prefab": { - "path": "assets/content/weapons/m1a/weapon_springfield_m1a_762x51_container.bundle", + "path": "assets/content/weapons/rsp30/weapon_rsp30_white_container.bundle", "rcid": "" }, "UsePrefab": { @@ -239505,17 +238101,17 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 8, + "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 200, - "RepairSpeed": 15, + "RepairCost": 550, + "RepairSpeed": 2, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, - "CanSellOnRagfair": false, + "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -239526,171 +238122,48 @@ "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": false, "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, + "DropSoundType": "None", + "InsuranceDisabled": true, "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "5aafa857e5b5b0001848096b", - "_parent": "5aafa857e5b5b00018480968", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5aaf8a0be5b5b00015693243", - "5addcce35acfc4001a5fc635", - "5addccf45acfc400185c2989", - "64b9e2037fdfb81df81e3c25" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "5aafa857e5b5b0001848096c", - "_parent": "5aafa857e5b5b00018480968", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5addc7005acfc4001669f275", - "5ab372a310e891001717f0d8", - "5addbf175acfc408fb13965b", - "5aaf8e43e5b5b00015693246" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "5aafa857e5b5b0001848096e", - "_parent": "5aafa857e5b5b00018480968", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5aaf9d53e5b5b00015042a52", - "5addbac75acfc400194dbc56" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5abcbb9fd8ce87001660327a", - "_parent": "5aafa857e5b5b00018480968", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5abcbb20d8ce87001773e258" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5addc6a45acfc4001714e045", - "_parent": "5aafa857e5b5b00018480968", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5addbfe15acfc4001a5fc58b", - "5addbfef5acfc400185c2857" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "marksmanRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber762x51", + "weapClass": "specialWeapon", + "weapUseType": "secondary", + "ammoCaliber": "Caliber26x75", "Durability": 100, "MaxDurability": 100, - "OperatingResource": 2600, + "OperatingResource": 900, "RepairComplexity": 0, "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, + "durabSpawnMax": 70, + "isFastReload": false, "weapFireType": [ "single" ], "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 700, - "Ergonomics": 28, + "CanQueueSecondShot": false, + "bFirerate": 30, + "Ergonomics": 51, "Velocity": 0, - "bEffDist": 700, + "bEffDist": 50, "bHearDist": 80, "isChamberLoad": true, "chamberAmmoCount": 1, "isBoltCatch": true, - "defMagType": "5aaf8a0be5b5b00015693243", - "defAmmo": "58dd3ad986f77403051cba8f", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5aafa857e5b5b00018480970", - "_parent": "5aafa857e5b5b00018480968", - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.02, - "AimPlane": 0.4, - "DeviationCurve": 1.1, - "DeviationMax": 30, + "defMagType": "5a718b548dc32e000d46d262", + "defAmmo": "624c09da2cec124eb67c1046", + "AdjustCollimatorsToTrajectory": true, + "shotgunDispersion": 10, + "Chambers": [], + "ReloadMode": "OnlyBarrel", + "CenterOfImpact": 0.7, + "AimPlane": 0.026, + "DeviationCurve": 1.9, + "DeviationMax": 15, "Foldable": false, "Retractable": false, "TacticalReloadStiffnes": { @@ -239699,37 +238172,37 @@ "z": 0.95 }, "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.23, - "RecoilReturnSpeedHandRotation": 2.4, - "RecoilDampingHandRotation": 0.86, - "RecoilCamera": 0.0912, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 405, - "RecoilForceUp": 214, - "RecolDispersion": 11, + "RecoilCategoryMultiplierHandRotation": 0.345, + "RecoilReturnSpeedHandRotation": 1, + "RecoilDampingHandRotation": 0.9, + "RecoilCamera": 0.024, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 400, + "RecoilForceUp": 170, + "RecolDispersion": 35, "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.4, - "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilReturnPathDampingHandRotation": 0.57, + "RecoilReturnPathOffsetHandRotation": 0.015, "RecoilAngle": 90, "RecoilStableAngleIncreaseStep": 2.5, "ProgressRecoilAngleOnStable": { "x": 0, - "y": 28, + "y": 30, "z": 0 }, "RecoilCenter": { "x": 0, - "y": -0.4, - "z": 0.03 + "y": -0.47, + "z": -0.05 }, "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, + "x": -2, "y": 0, "z": 0 }, "PostRecoilHorizontalRangeHandRotation": { - "x": -1, - "y": 1, + "x": -4, + "y": 4, "z": 0 }, "ShotsGroupSettings": [ @@ -239754,29 +238227,29 @@ } ], "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, + "x": 0.01, + "y": 0.11, "z": 0 }, - "CameraToWeaponAngleStep": 0.1, + "CameraToWeaponAngleStep": 0.01, "CameraSnap": 3.5, "RotationCenter": { "x": 0, - "y": -0.1, - "z": -0.04 + "y": -0.2, + "z": 0 }, "RotationCenterNoStock": { "x": 0, - "y": -0.35, - "z": -0.05 + "y": 0, + "z": 0 }, - "SizeReduceRight": 0, + "SizeReduceRight": 1, "FoldedSlot": "", - "CompactHandling": true, + "CompactHandling": false, "SightingRange": 100, "MinRepairDegradation": 0, "MaxRepairDegradation": 0.04, - "IronSightRange": 100, + "IronSightRange": 25, "MustBoltBeOpennedForExternalReload": false, "MustBoltBeOpennedForInternalReload": false, "BoltAction": false, @@ -239786,48 +238259,48 @@ "ManualBoltCatch": false, "AimSensitivity": 0.65, "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.21505, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.98, - "CoolFactorGun": 2.592, - "CoolFactorGunMods": 1.02, - "HeatFactorByShot": 2.25, - "AllowOverheat": true, + "BaseMalfunctionChance": 0.1771, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1, + "HeatFactorGun": 1, + "CoolFactorGun": 0.576, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1, + "AllowOverheat": false, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, + "MaxRepairKitDegradation": 0, "IsFlareGun": false, - "IsOneoff": false, + "IsOneoff": true, "IsGrenadeLauncher": false, "NoFiremodeOnBoltcatch": false, "IsStationaryWeapon": false, "IsBeltMachineGun": false, "WithAnimatorAiming": false, - "blockLeftStance": false + "blockLeftStance": true }, - "_proto": "5447a9cd4bdc2dbd208b4567" + "_proto": "5448bd6b4bdc2dfc2f8b4569" }, - "6176aca650224f204c1da3fb": { - "_id": "6176aca650224f204c1da3fb", - "_name": "weapon_hk_g28_762x51", - "_parent": "5447b6194bdc2d67278b4567", + "606587252535c57a13424cfd": { + "_id": "606587252535c57a13424cfd", + "_name": "weapon_cmmg_mk47_762x39", + "_parent": "5447b5f14bdc2d61278b4567", "_type": "Item", "_props": { - "Name": "weapon_remington_r11_rsass_762x51", - "ShortName": "weapon_remington_r11_rsass_762x51", - "Description": "weapon_remington_r11_rsass_762x51\n", + "Name": "weapon_cmmg_mk47_762x39", + "ShortName": "weapon_cmmg_mk47_762x39", + "Description": "weapon_cmmg_mk47_762x39", "Weight": 0.51, "BackgroundColor": "black", "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "weap_dmr", + "ItemSound": "weap_ar", "Prefab": { - "path": "assets/content/weapons/g28/weapon_hk_g28_762x51_container.bundle", + "path": "assets/content/weapons/mk47/weapon_cmmg_mk47_762x39_container.bundle", "rcid": "" }, "UsePrefab": { @@ -239847,7 +238320,7 @@ "LootExperience": 5, "ExamineExperience": 8, "HideEntrails": false, - "RepairCost": 302, + "RepairCost": 172, "RepairSpeed": 15, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -239875,8 +238348,8 @@ "Slots": [ { "_name": "mod_pistol_grip", - "_id": "6176aca650224f204c1da3fd", - "_parent": "6176aca650224f204c1da3fb", + "_id": "606587252535c57a13424cff", + "_parent": "606587252535c57a13424cfd", "_props": { "filters": [ { @@ -239920,15 +238393,29 @@ }, { "_name": "mod_magazine", - "_id": "6176aca650224f204c1da3fe", - "_parent": "6176aca650224f204c1da3fb", + "_id": "606587252535c57a13424d00", + "_parent": "606587252535c57a13424cfd", "_props": { "filters": [ { "AnimationIndex": -1, "Filter": [ - "617130016c780c1e710c9a24", - "617131a4568c120fdd29482d" + "59e5d83b86f7745aed03d262", + "5a01c29586f77474660c694c", + "5ac66bea5acfc43b321d4aec", + "59d625f086f774661516605d", + "5b1fd4e35acfc40018633c39", + "5a0060fc86f7745793204432", + "59e5f5a486f7746c530b3ce2", + "5b1fb3e15acfc4001637f068", + "59d6272486f77466146386ff", + "5e21a3c67e40bd02257a008a", + "5cbdc23eae9215001136a407", + "5c6175362e221600133e3b94", + "59fafc5086f7740dbe19f6c3", + "59fafc9386f774067d462453", + "6272874a6c47bd74f92e2087", + "64b9cf0ac12b9c38db26923a" ] } ] @@ -239938,15 +238425,15 @@ "_proto": "55d30c394bdc2dae468b4577" }, { - "_name": "mod_stock", - "_id": "6176aca650224f204c1da3ff", - "_parent": "6176aca650224f204c1da3fb", + "_name": "mod_reciever", + "_id": "606587252535c57a13424d01", + "_parent": "606587252535c57a13424cfd", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "617153016c780c1e710c9a2f" + "606587a88900dc2d9a55b659" ] } ] @@ -239956,15 +238443,29 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_reciever", - "_id": "6176aca650224f204c1da400", - "_parent": "6176aca650224f204c1da3fb", + "_name": "mod_stock_001", + "_id": "606587252535c57a13424d02", + "_parent": "606587252535c57a13424cfd", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "61713a8fd92c473c770214a4" + "606587e18900dc2d9a55b65f", + "5a33ca0fc4a282000d72292f", + "5c0faeddd174af02a962601f", + "5649be884bdc2d79388b4577", + "5d120a10d7ad1a4e1026ba85", + "5b0800175acfc400153aebd4", + "5947e98b86f774778f1448bc", + "5947eab886f77475961d96c5", + "602e3f1254072b51b239f713", + "5c793fb92e221644f31bfb64", + "5c793fc42e221600114ca25d", + "591aef7986f774139d495f03", + "591af10186f774139d495f0e", + "627254cc9c563e6e442c398f", + "638de3603a1a4031d8260b8c" ] } ] @@ -239975,14 +238476,14 @@ }, { "_name": "mod_charge", - "_id": "6176aca650224f204c1da401", - "_parent": "6176aca650224f204c1da3fb", + "_id": "606587252535c57a13424d03", + "_parent": "606587252535c57a13424cfd", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "61702d8a67085e45ef140b24" + "606587bd6d0bd7580617bacc" ] } ] @@ -239994,12 +238495,707 @@ ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "assaultRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x39", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 4400, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 650, + "Ergonomics": 42, + "Velocity": 0, + "bEffDist": 500, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5a01c29586f77474660c694c", + "defAmmo": "64b7af5a8532cf95ee0a0dbd", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "606587252535c57a13424d04", + "_parent": "606587252535c57a13424cfd", + "_props": { + "filters": [ + { + "Filter": [ + "59e0d99486f7744a32234762", + "59e4d3d286f774176a36250a", + "5656d7c34bdc2d9d198b4587", + "59e4cf5286f7741778269d8a", + "59e4d24686f7741776641ac7", + "601aa3d2b2bcb34913271e6d", + "64b7af5a8532cf95ee0a0dbd", + "64b7af434b75259c590fa893", + "64b7af734b75259c590fa895" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0.16, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.5, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.069, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 419, + "RecoilForceUp": 160, + "RecolDispersion": 11, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.24, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.03, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1.21, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.025, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "657857faeff4c850222dff1b": { + "_id": "657857faeff4c850222dff1b", + "_name": "weapon_zid_pktm_762x54r", + "_parent": "5447bed64bdc2d97278b4568", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_rpk16_545x39", + "ShortName": "weapon_izhmash_rpk16_545x39", + "Description": "weapon_izhmash_rpk16_545x39", + "Weight": 3.852, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/pkm/weapon_zid_pkm_762x54r_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 235, + "RepairSpeed": 5, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistolgrip", + "_id": "657857faeff4c850222dff1d", + "_parent": "657857faeff4c850222dff1b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "646371779f5f0ea59a04c204", + "64cbad529f7cf7f75c077fd5" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "657857faeff4c850222dff1e", + "_parent": "657857faeff4c850222dff1b", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "65785979bec02a3fe82c181e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "657857faeff4c850222dff1f", + "_parent": "657857faeff4c850222dff1b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "646371a9f2404ab67905c8e6", + "6492d7847363b8a52206bc52", + "6492e3a97df7d749100e29ee" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "657857faeff4c850222dff20", + "_parent": "657857faeff4c850222dff1b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "64639a9aab86f8fd4300146c", + "646371faf2404ab67905c8e9" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_bipod", + "_id": "657857faeff4c850222dff21", + "_parent": "657857faeff4c850222dff1b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6464d870bb2c580352070cc4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "657857faeff4c850222dff22", + "_parent": "657857faeff4c850222dff1b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6491c6f6ef312a876705191b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "657857faeff4c850222dff23", + "_parent": "657857faeff4c850222dff1b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6492fb8253acae0af00a29b6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "machinegun", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x54R", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 9000, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 650, + "Ergonomics": 35, + "Velocity": 1.8, + "bEffDist": 750, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "646372518610c40fc20204e8", + "defAmmo": "5887431f2459777e1612938f", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "657857faeff4c850222dff1c", + "_parent": "657857faeff4c850222dff1b", + "_props": { + "filters": [ + { + "Filter": [ + "5e023d34e8a400319a28ed44", + "5e023d48186a883be655e551", + "5e023cf8186a883be655e54f", + "59e77a2386f7742ee578960a", + "5887431f2459777e1612938f", + "560d61e84bdc2da74d8b4571", + "64b8f7c241772715af0f9c3d", + "64b8f7968532cf95ee0a0dbf", + "64b8f7b5389d7ffd620ccba2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0, + "AimPlane": 0.19, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 1, + "RecoilDampingHandRotation": 0.93, + "RecoilCamera": -0.3, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 1300, + "RecoilForceUp": 210, + "RecolDispersion": 25, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.55, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2.4, + "y": 2.4, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.95, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.08, + "HeatFactorByShot": 1.2, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": true, + "WithAnimatorAiming": true, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5f2a9575926fd9352339381f": { + "_id": "5f2a9575926fd9352339381f", + "_name": "weapon_kel_tec_rfb_762x51", + "_parent": "5447b6194bdc2d67278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_kel_tec_rfb_762x51", + "ShortName": "weapon_kel_tec_rfb_762x51", + "Description": "weapon_kel_tec_rfb_762x51\n", + "Weight": 1.95, + "BackgroundColor": "black", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_dmr", + "Prefab": { + "path": "assets/content/weapons/rfb/weapon_kel_tec_rfb_762x51_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 106, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "5f2a9575926fd93523393822", + "_parent": "5f2a9575926fd9352339381f", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5b7bef1e5acfc43d82528402", + "5b099ac65acfc400186331e1", + "5b7bef5d5acfc43bca7067a3", + "5b7c2d1d5acfc43d1028532a", + "5b7d37845acfc400170e2f87" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_barrel", + "_id": "5f2a9575926fd93523393825", + "_parent": "5f2a9575926fd9352339381f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f2aa46b878ef416f538b567" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "5f32901b31397017e316ceff", + "_parent": "5f2a9575926fd9352339381f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f2aa47a200e2c0ee46efa71" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5f4c08e8420b2128d236dc73", + "_parent": "5f2a9575926fd9352339381f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f2aa49f9b44de6b1b4e68d4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], "weapClass": "marksmanRifle", "weapUseType": "primary", "ammoCaliber": "Caliber762x51", "Durability": 100, "MaxDurability": 100, - "OperatingResource": 2300, + "OperatingResource": 1900, "RepairComplexity": 0, "durabSpawnMin": 25, "durabSpawnMax": 75, @@ -240014,18 +239210,18 @@ "Velocity": 0, "bEffDist": 900, "bHearDist": 80, - "isChamberLoad": true, + "isChamberLoad": false, "chamberAmmoCount": 1, "isBoltCatch": true, - "defMagType": "617130016c780c1e710c9a24", + "defMagType": "5b7bef1e5acfc43d82528402", "defAmmo": "5e023e53d4353e3302577c4c", "AdjustCollimatorsToTrajectory": false, "shotgunDispersion": 0, "Chambers": [ { "_name": "patron_in_weapon", - "_id": "6176aca650224f204c1da402", - "_parent": "6176aca650224f204c1da3fb", + "_id": "5f2a9576926fd93523393828", + "_parent": "5f2a9575926fd9352339381f", "_props": { "filters": [ { @@ -240060,12 +239256,12 @@ }, "TacticalReloadFixation": 0.95, "RecoilCategoryMultiplierHandRotation": 0.23, - "RecoilReturnSpeedHandRotation": 2.8, - "RecoilDampingHandRotation": 0.86, - "RecoilCamera": 0.096, + "RecoilReturnSpeedHandRotation": 3, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.1056, "RecoilStableIndexShot": 4, - "RecoilForceBack": 400, - "RecoilForceUp": 146, + "RecoilForceBack": 307, + "RecoilForceUp": 148, "RecolDispersion": 11, "RecoilPosZMult": 1, "RecoilReturnPathDampingHandRotation": 0.4, @@ -240132,10 +239328,10 @@ }, "SizeReduceRight": 0, "FoldedSlot": "", - "CompactHandling": true, + "CompactHandling": false, "SightingRange": 100, "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.03, + "MaxRepairDegradation": 0.04, "IronSightRange": 100, "MustBoltBeOpennedForExternalReload": false, "MustBoltBeOpennedForInternalReload": false, @@ -240146,20 +239342,20 @@ "ManualBoltCatch": false, "AimSensitivity": 0.65, "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.221375, + "BaseMalfunctionChance": 0.21505, "AllowJam": true, "AllowFeed": true, "AllowMisfire": true, "AllowSlide": true, "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, + "HeatFactorGun": 0.98, "CoolFactorGun": 2.592, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 2.1, + "CoolFactorGunMods": 1.02, + "HeatFactorByShot": 2.12, "AllowOverheat": true, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.025, + "MaxRepairKitDegradation": 0.035, "IsFlareGun": false, "IsOneoff": false, "IsGrenadeLauncher": false, @@ -240659,23 +239855,23 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, - "57838ad32459774a17445cd2": { - "_id": "57838ad32459774a17445cd2", - "_name": "weapon_tochmash_vss_9x39", + "5fc22d7c187fea44d52eda44": { + "_id": "5fc22d7c187fea44d52eda44", + "_name": "weapon_sword_int_mk_18_mjolnir_86x70", "_parent": "5447b6194bdc2d67278b4567", "_type": "Item", "_props": { - "Name": "", - "ShortName": "", - "Description": "", - "Weight": 0.92, + "Name": "weapon_sword_int_mk_18_mjolnir_86x70", + "ShortName": "weapon_sword_int_mk_18_mjolnir_86x70", + "Description": "weapon_sword_int_mk_18_mjolnir_86x70", + "Weight": 2.9, "BackgroundColor": "black", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "weap_dmr", "Prefab": { - "path": "assets/content/weapons/vss/weapon_tochmash_vss_9x39_container.bundle", + "path": "assets/content/weapons/mk18/weapon_sword_int_mk_18_mjolnir_86x70_container.bundle", "rcid": "" }, "UsePrefab": { @@ -240693,17 +239889,17 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 10, + "ExamineExperience": 8, "HideEntrails": false, - "RepairCost": 456, - "RepairSpeed": 100, + "RepairCost": 761, + "RepairSpeed": 15, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, - "CanSellOnRagfair": true, + "CanSellOnRagfair": false, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -240722,38 +239918,60 @@ "Grids": [], "Slots": [ { - "_name": "mod_mount_000", - "_id": "57838c0b2459774a256959af", - "_parent": "57838ad32459774a17445cd2", + "_name": "mod_pistol_grip", + "_id": "5fc22d7c187fea44d52eda46", + "_parent": "5fc22d7c187fea44d52eda44", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5dff8db859400025ea5150d4" + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "602e71bd53a60014f9705bfa", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5cc9bcaed7f00c011c04e179", + "5bb20e18d4351e00320205d5", + "5bb20e0ed4351e3bac1212dc", + "6193dcd0f8ee7e52e4210a28", + "5d025cc1d7ad1a53845279ef", + "5c6d7b3d2e221600114c9b7d", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "55802f5d4bdc2dac148b458f", + "5d15cf3bd7ad1a67e71518b2", + "59db3a1d86f77429e05b4e92", + "5fbcbd6c187fea44d52eda14", + "59db3acc86f7742a2c4ab912", + "59db3b0886f77429d72fb895", + "615d8faecabb9b7ad90f4d5d", + "5b07db875acfc40dc528a5f6", + "63f5feead259b42f0b4d6d0f", + "652911675ae2ae97b80fdf3c" ] } ] }, - "_required": false, + "_required": true, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, { "_name": "mod_magazine", - "_id": "578399aa2459774a0e553c7c", - "_parent": "57838ad32459774a17445cd2", + "_id": "5fc22d7c187fea44d52eda47", + "_parent": "5fc22d7c187fea44d52eda44", "_props": { "filters": [ { "AnimationIndex": -1, "Filter": [ - "57838f0b2459774a256959b2", - "57838f9f2459774a150289a0", - "5a9e81fba2750c00164f6b11" + "5fc23426900b1d5091531e15" ] } ] @@ -240763,16 +239981,25 @@ "_proto": "55d30c394bdc2dae468b4577" }, { - "_name": "mod_muzzle", - "_id": "578399c52459774a0d5f2fee", - "_parent": "57838ad32459774a17445cd2", + "_name": "mod_stock_001", + "_id": "5fc22d7c187fea44d52eda48", + "_parent": "5fc22d7c187fea44d52eda44", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "57c44dd02459772d2e0ae249", - "57838c962459774a1651ec63" + "5a33ca0fc4a282000d72292f", + "5c0faeddd174af02a962601f", + "5649be884bdc2d79388b4577", + "5d120a10d7ad1a4e1026ba85", + "5b0800175acfc400153aebd4", + "5bb20e58d4351e00320205d7", + "5947e98b86f774778f1448bc", + "5947eab886f77475961d96c5", + "5c793fb92e221644f31bfb64", + "5c793fc42e221600114ca25d", + "638de3603a1a4031d8260b8c" ] } ] @@ -240783,33 +240010,14 @@ }, { "_name": "mod_reciever", - "_id": "578399f42459774bbe1373be", - "_parent": "57838ad32459774a17445cd2", + "_id": "5fc22d7c187fea44d52eda49", + "_parent": "5fc22d7c187fea44d52eda44", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "57c44f4f2459772d2c627113", - "578395402459774a256959b5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "57839a1a2459774a150289a1", - "_parent": "57838ad32459774a17445cd2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "578395e82459774a0e553c7b" + "5fc278107283c4046c581489" ] } ] @@ -240817,106 +240025,51 @@ "_required": true, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "57b2e5d92459771c44796fcd", - "_parent": "57838ad32459774a17445cd2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_004", - "_id": "57b33a0b2459771ee32dac59", - "_parent": "57838ad32459774a17445cd2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5e569a2e56edd02abe09f280", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "638db77630c4240f9e06f8b6", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "sniperRifle", + "weapClass": "marksmanRifle", "weapUseType": "primary", - "ammoCaliber": "Caliber9x39", + "ammoCaliber": "Caliber86x70", "Durability": 100, "MaxDurability": 100, - "OperatingResource": 3400, + "OperatingResource": 1900, "RepairComplexity": 0, "durabSpawnMin": 25, "durabSpawnMax": 75, "isFastReload": true, "weapFireType": [ - "single", - "fullauto" + "single" ], "SingleFireRate": 450, "CanQueueSecondShot": true, - "bFirerate": 900, - "Ergonomics": 43, + "bFirerate": 30, + "Ergonomics": 14, "Velocity": 0, - "bEffDist": 400, - "bHearDist": 80, + "bEffDist": 900, + "bHearDist": 160, "isChamberLoad": true, "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "57838f0b2459774a256959b2", - "defAmmo": "57a0dfb82459774d3078b56c", + "isBoltCatch": true, + "defMagType": "5fc23426900b1d5091531e15", + "defAmmo": "5fc275cf85fd526b824a571a", "AdjustCollimatorsToTrajectory": false, "shotgunDispersion": 0, "Chambers": [ { "_name": "patron_in_weapon", - "_id": "57838bcf2459774a26674906", - "_parent": "57838ad32459774a17445cd2", + "_id": "5fc22d7c187fea44d52eda4b", + "_parent": "5fc22d7c187fea44d52eda44", "_props": { "filters": [ { "Filter": [ - "5c0d688c86f77413ae3407b2", - "61962d879bb3d20b0946d385", - "57a0dfb82459774d3078b56c", - "57a0e5022459774d1673f889", - "5c0d668f86f7747ccb7f13b2", - "6576f96220d53a5b8f3e395e" - ], - "MaxStackCount": 0 + "5fc382a9d724d907e2077dab", + "5fc275cf85fd526b824a571a", + "5fc382c1016cce60e8341b20", + "5fc382b6d6fa9c00c571bbc3" + ] } ] }, @@ -240926,10 +240079,10 @@ } ], "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.095, - "AimPlane": 1, - "DeviationCurve": 1.35, - "DeviationMax": 23, + "CenterOfImpact": 0, + "AimPlane": 0.22, + "DeviationCurve": 1.1, + "DeviationMax": 30, "Foldable": false, "Retractable": false, "TacticalReloadStiffnes": { @@ -240938,16 +240091,16 @@ "z": 0.95 }, "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 2.7, - "RecoilDampingHandRotation": 0.84, - "RecoilCamera": 0.064, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 270, - "RecoilForceUp": 80, - "RecolDispersion": 12, + "RecoilCategoryMultiplierHandRotation": 0.23, + "RecoilReturnSpeedHandRotation": 2, + "RecoilDampingHandRotation": 0.88, + "RecoilCamera": 0.144, + "RecoilStableIndexShot": 3, + "RecoilForceBack": 1012, + "RecoilForceUp": 536, + "RecolDispersion": 11, "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathDampingHandRotation": 0.4, "RecoilReturnPathOffsetHandRotation": 0.01, "RecoilAngle": 90, "RecoilStableAngleIncreaseStep": 2.5, @@ -240958,8 +240111,8 @@ }, "RecoilCenter": { "x": 0, - "y": -0.31, - "z": 0.01 + "y": -0.26, + "z": 0 }, "PostRecoilVerticalRangeHandRotation": { "x": -1.3, @@ -241002,1372 +240155,6 @@ "RotationCenter": { "x": 0, "y": -0.1, - "z": -0.09 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.3, - "z": -0.09 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.05, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1.11, - "CoolFactorGun": 2.592, - "CoolFactorGunMods": 1.02, - "HeatFactorByShot": 2.17, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.045, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "55801eed4bdc2d89578b4588" - }, - "5e81c3cbac2bb513793cdc75": { - "_id": "5e81c3cbac2bb513793cdc75", - "_name": "weapon_colt_m1911a1_1143x23", - "_parent": "5447b5cf4bdc2d65278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_colt_m1911a1_1143x23", - "ShortName": "weapon_colt_m1911a1_1143x23", - "Description": "weapon_colt_m1911a1_1143x23\n", - "Weight": 0.231, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_pistol", - "Prefab": { - "path": "assets/content/weapons/m1911a1/weapon_colt_m1911a1_1143x23_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 41, - "RepairSpeed": 2, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Pistol", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_barrel", - "_id": "5e81c3cbac2bb513793cdc77", - "_parent": "5e81c3cbac2bb513793cdc75", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5e81c519cb2b95385c177551", - "5f3e7801153b8571434a924c", - "5f3e77f59103d430b93f94c1" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "5e81c3cbac2bb513793cdc78", - "_parent": "5e81c3cbac2bb513793cdc75", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5e81c6bf763d9f754677beff", - "5ef366938cef260c0642acad", - "626a9cb151cb5849f6002890" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "5e81c3cbac2bb513793cdc79", - "_parent": "5e81c3cbac2bb513793cdc75", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5e81edc13397a21db957f6a1", - "5f3e7823ddc4f03b010e2045" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5e81c3cbac2bb513793cdc7a", - "_parent": "5e81c3cbac2bb513793cdc75", - "_props": { - "filters": [ - { - "AnimationIndex": 0, - "Filter": [ - "5e81c4ca763d9f754677befa", - "5f3e77b26cda304dcc634057", - "5ef3448ab37dfd6af863525c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_trigger", - "_id": "5e8206f4cb2b95385c17759c", - "_parent": "5e81c3cbac2bb513793cdc75", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ef32e4d1c1fd62aea6a150d", - "5e81c6a2ac2bb513793cdc7f", - "5f3e772a670e2a7b01739a52" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_hammer", - "_id": "5e820703ac2bb513793cdd0d", - "_parent": "5e81c3cbac2bb513793cdc75", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5e81c550763d9f754677befd", - "5f3e76d86cda304dcc634054", - "5ef35f46382a846010715a96", - "5ef35d2ac64c5d0dfc0571b0", - "5ef35bc243cb350a955a7ccd" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_catch", - "_id": "5e82070e763d9f754677bf93", - "_parent": "5e81c3cbac2bb513793cdc75", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5e81c539cb2b95385c177553", - "5f3e777688ca2d00ad199d25", - "5ef3553c43cb350a955a7ccb" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5ef5d9bc22584f36a62bc2a6", - "_parent": "5e81c3cbac2bb513793cdc75", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ef5d994dfbc9f3c660ded95" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5ef5d9c76b0e105bd96c76db", - "_parent": "5e81c3cbac2bb513793cdc75", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ef369b08cef260c0642acaf" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "pistol", - "weapUseType": "secondary", - "ammoCaliber": "Caliber1143x23ACP", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 3000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 70, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 30, - "Ergonomics": 75, - "Velocity": 0, - "bEffDist": 50, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5e81c4ca763d9f754677befa", - "defAmmo": "5e81f423763d9f754677bf2e", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5e81c3cbac2bb513793cdc7e", - "_parent": "5e81c3cbac2bb513793cdc75", - "_props": { - "filters": [ - { - "Filter": [ - "5e81f423763d9f754677bf2e", - "5efb0cabfb3e451d70735af5", - "5efb0fc6aeb21837e749c801", - "5efb0d4f4bc50b58e81710f3", - "5ea2a8e200685063ec28c05a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0, - "AimPlane": 0.026, - "DeviationCurve": 2.25, - "DeviationMax": 11, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.138, - "RecoilReturnSpeedHandRotation": 5, - "RecoilDampingHandRotation": 0.8, - "RecoilCamera": 0.0122, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 355, - "RecoilForceUp": 451, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.43, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 80, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.44, - "z": -0.005 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 5, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.45, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.2277, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.96, - "CoolFactorGun": 4.032, - "CoolFactorGunMods": 1.06, - "HeatFactorByShot": 3.26, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5448bd6b4bdc2dfc2f8b4569" - }, - "602a9740da11d6478d5a06dc": { - "_id": "602a9740da11d6478d5a06dc", - "_name": "weapon_izhmash_pl15_9x19", - "_parent": "5447b5cf4bdc2d65278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_glock_17_9x19", - "ShortName": "weapon_glock_17_9x19", - "Description": "weapon_glock_17_9x19\n", - "Weight": 0.49, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_pistol", - "Prefab": { - "path": "assets/content/weapons/pl15/weapon_izhmash_pl15_9x19_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 43, - "RepairSpeed": 2, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Pistol", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_barrel", - "_id": "602a9740da11d6478d5a06de", - "_parent": "602a9740da11d6478d5a06dc", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "602a95edda11d6478d5a06da", - "602a95fe4e02ce1eaa358729" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "602a9740da11d6478d5a06e0", - "_parent": "602a9740da11d6478d5a06dc", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "60228924961b8d75ee233c32" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "602a9740da11d6478d5a06e1", - "_parent": "602a9740da11d6478d5a06dc", - "_props": { - "filters": [ - { - "AnimationIndex": 0, - "Filter": [ - "602286df23506e50807090c6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_tactical", - "_id": "602a9740da11d6478d5a06e2", - "_parent": "602a9740da11d6478d5a06dc", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a7b4900e899ef197b331a2a", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "pistol", - "weapUseType": "secondary", - "ammoCaliber": "Caliber9x19PARA", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 6000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 70, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 30, - "Ergonomics": 93, - "Velocity": 0, - "bEffDist": 50, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5a718b548dc32e000d46d262", - "defAmmo": "56d59d3ad2720bdb418b4577", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "602a9740da11d6478d5a06e5", - "_parent": "602a9740da11d6478d5a06dc", - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0, - "AimPlane": 0.026, - "DeviationCurve": 2.25, - "DeviationMax": 11, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.138, - "RecoilReturnSpeedHandRotation": 5.5, - "RecoilDampingHandRotation": 0.8, - "RecoilCamera": 0.0072, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 235, - "RecoilForceUp": 289, - "RecolDispersion": 8, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.43, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.44, - "z": -0.005 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 5.5, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.45, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.2277, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.96, - "CoolFactorGun": 4.032, - "CoolFactorGunMods": 1.06, - "HeatFactorByShot": 2.52, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5448bd6b4bdc2dfc2f8b4569" - }, - "5580223e4bdc2d1c128b457f": { - "_id": "5580223e4bdc2d1c128b457f", - "_name": "weapon_izhmeh_mr43e-1c_12g", - "_parent": "5447b6094bdc2dc3278b4567", - "_type": "Item", - "_props": { - "Name": "Двуствольное ружье МР43e", - "ShortName": "МР43e", - "Description": "Мечта охотника. Двустволка мать ее так!", - "Weight": 1.88, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_rifle", - "Prefab": { - "path": "assets/content/weapons/mr43/weapon_izhmeh_mr43_12g_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 60, - "RepairSpeed": 2, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_barrel", - "_id": "55d5a27c4bdc2d8c2f8b456f", - "_parent": "5580223e4bdc2d1c128b457f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5580169d4bdc2d9d138b4585", - "55d447bb4bdc2d892f8b456f", - "611a30addbdd8440277441dc" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "611a35095b7ffe001b4649d3", - "_parent": "5580223e4bdc2d1c128b457f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "611a31ce5b7ffe001b4649d1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "shotgun", - "weapUseType": "primary", - "ammoCaliber": "Caliber12g", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 10000, - "RepairComplexity": 0, - "durabSpawnMin": 50, - "durabSpawnMax": 75, - "isFastReload": false, - "weapFireType": [ - "single", - "doublet" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 900, - "Ergonomics": 44, - "Velocity": 0, - "bEffDist": 100, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5448bc234bdc2d3c308b4569", - "defAmmo": "560d5e524bdc2d25448b4571", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon_000", - "_id": "56eaa954d2720b7c698b4571", - "_parent": "5580223e4bdc2d1c128b457f", - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - }, - { - "_name": "patron_in_weapon_001", - "_id": "56eaa95ed2720b69698b456e", - "_parent": "5580223e4bdc2d1c128b457f", - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "OnlyBarrel", - "CenterOfImpact": 0.01, - "AimPlane": 0, - "DeviationCurve": 2.5, - "DeviationMax": 10, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.23, - "RecoilReturnSpeedHandRotation": 2.2, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.074, - "RecoilStableIndexShot": 2, - "RecoilForceBack": 413, - "RecoilForceUp": 279, - "RecolDispersion": 23, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.52, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.31, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0.1, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2.5, - "y": 2.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 2.2, - "RotationCenter": { - "x": 0, - "y": -0.15, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.21505, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": true, - "AllowSlide": false, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.99, - "CoolFactorGun": 4.608, - "CoolFactorGunMods": 1.02, - "HeatFactorByShot": 11.62, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false, - "ShotgunDispersion": 1 - } - }, - "5a38e6bac4a2826c6e06d79b": { - "_id": "5a38e6bac4a2826c6e06d79b", - "_name": "weapon_toz_toz-106_20g", - "_parent": "5447b6094bdc2dc3278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_toz_toz-106_20g", - "ShortName": "weapon_toz_toz-106_20g", - "Description": "weapon_toz_toz-106_20g\n", - "Weight": 1.3, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_rifle", - "Prefab": { - "path": "assets/content/weapons/toz106/weapon_toz_toz-106_20g_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 42, - "RepairSpeed": 14, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "5a38e6bac4a2826c6e06d79c", - "_parent": "5a38e6bac4a2826c6e06d79b", - "_props": { - "filters": [ - { - "AnimationIndex": 0, - "Filter": [ - "5a38ee51c4a282000c5a955c", - "5a38ed75c4a28232996e40c6", - "5c6161fb2e221600113fbde5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "5a38e7c7c4a28200741e2345", - "_parent": "5a38e6bac4a2826c6e06d79b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c99f3592e221644fc633070", - "5adf23995acfc400185c2aeb", - "5a38ef1fc4a282000b1521f6" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5c618c2a2e22160011418d3e", - "_parent": "5a38e6bac4a2826c6e06d79b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c6162682e22160010261a2b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "shotgun", - "weapUseType": "primary", - "ammoCaliber": "Caliber20g", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 2250, - "RepairComplexity": 1, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": false, - "bFirerate": 30, - "Ergonomics": 60, - "Velocity": 1.81, - "bEffDist": 70, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5a38ee51c4a282000c5a955c", - "defAmmo": "5a38ebd9c4a282000d722a5b", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 20, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5a38e6bac4a2826c6e06d7a2", - "_parent": "5a38e6bac4a2826c6e06d79b", - "_props": { - "filters": [ - { - "Filter": [ - "5a38ebd9c4a282000d722a5b", - "5d6e695fa4b936359b35d852", - "5d6e69b9a4b9361bc8618958", - "5d6e69c7a4b9360b6c0d54e4", - "5d6e6a5fa4b93614ec501745", - "5d6e6a53a4b9361bd473feec", - "5d6e6a42a4b9364f07165f52", - "5d6e6a05a4b93618084f58d0" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.7, - "AimPlane": 0.2, - "DeviationCurve": 2.5, - "DeviationMax": 10, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.23, - "RecoilReturnSpeedHandRotation": 2.8, - "RecoilDampingHandRotation": 0.83, - "RecoilCamera": 0.081, - "RecoilStableIndexShot": 3, - "RecoilForceBack": 585, - "RecoilForceUp": 663, - "RecolDispersion": 20, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.52, - "RecoilReturnPathOffsetHandRotation": 0.013, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0.1, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2.5, - "y": 2.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 2.3, - "RotationCenter": { - "x": 0, - "y": 0, "z": 0 }, "RotationCenterNoStock": { @@ -242381,26 +240168,26 @@ "SightingRange": 100, "MinRepairDegradation": 0, "MaxRepairDegradation": 0.04, - "IronSightRange": 25, + "IronSightRange": 100, "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": true, - "BoltAction": true, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, "HipAccuracyRestorationDelay": 0.2, "HipAccuracyRestorationSpeed": 7, "HipInnaccuracyGain": 0.16, "ManualBoltCatch": false, "AimSensitivity": 0.65, "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.26565, - "AllowJam": false, + "BaseMalfunctionChance": 0.2024, + "AllowJam": true, "AllowFeed": true, "AllowMisfire": true, "AllowSlide": true, "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.9306, - "CoolFactorGun": 4.032, - "CoolFactorGunMods": 1.04, - "HeatFactorByShot": 6.94, + "HeatFactorGun": 1, + "CoolFactorGun": 2.592, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 4.25, "AllowOverheat": true, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, @@ -242412,10 +240199,719 @@ "IsStationaryWeapon": false, "IsBeltMachineGun": false, "WithAnimatorAiming": false, - "blockLeftStance": false, - "ShotgunDispersion": 1 + "blockLeftStance": false }, - "_proto": "55801eed4bdc2d89578b4588" + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5aafa857e5b5b00018480968": { + "_id": "5aafa857e5b5b00018480968", + "_name": "weapon_springfield_m1a_762x51", + "_parent": "5447b6194bdc2d67278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_springfield_m1a_762x51", + "ShortName": "weapon_springfield_m1a_762x51", + "Description": "weapon_springfield_m1a_762x51\n", + "Weight": 1.426, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_dmr", + "Prefab": { + "path": "assets/content/weapons/m1a/weapon_springfield_m1a_762x51_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 200, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "5aafa857e5b5b0001848096b", + "_parent": "5aafa857e5b5b00018480968", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5aaf8a0be5b5b00015693243", + "5addcce35acfc4001a5fc635", + "5addccf45acfc400185c2989", + "64b9e2037fdfb81df81e3c25" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "5aafa857e5b5b0001848096c", + "_parent": "5aafa857e5b5b00018480968", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5addc7005acfc4001669f275", + "5ab372a310e891001717f0d8", + "5addbf175acfc408fb13965b", + "5aaf8e43e5b5b00015693246" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "5aafa857e5b5b0001848096e", + "_parent": "5aafa857e5b5b00018480968", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5aaf9d53e5b5b00015042a52", + "5addbac75acfc400194dbc56" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5abcbb9fd8ce87001660327a", + "_parent": "5aafa857e5b5b00018480968", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5abcbb20d8ce87001773e258" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5addc6a45acfc4001714e045", + "_parent": "5aafa857e5b5b00018480968", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5addbfe15acfc4001a5fc58b", + "5addbfef5acfc400185c2857" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "marksmanRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x51", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 2600, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 700, + "Ergonomics": 28, + "Velocity": 0, + "bEffDist": 700, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5aaf8a0be5b5b00015693243", + "defAmmo": "58dd3ad986f77403051cba8f", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5aafa857e5b5b00018480970", + "_parent": "5aafa857e5b5b00018480968", + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.02, + "AimPlane": 0.4, + "DeviationCurve": 1.1, + "DeviationMax": 30, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.23, + "RecoilReturnSpeedHandRotation": 2.4, + "RecoilDampingHandRotation": 0.86, + "RecoilCamera": 0.0912, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 405, + "RecoilForceUp": 214, + "RecolDispersion": 11, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.4, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.4, + "z": 0.03 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1, + "y": 1, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.04 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.35, + "z": -0.05 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.21505, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.98, + "CoolFactorGun": 2.592, + "CoolFactorGunMods": 1.02, + "HeatFactorByShot": 2.25, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5df8ce05b11454561e39243b": { + "_id": "5df8ce05b11454561e39243b", + "_name": "weapon_kac_sr25_762x51", + "_parent": "5447b6194bdc2d67278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_remington_r11_rsass_762x51", + "ShortName": "weapon_remington_r11_rsass_762x51", + "Description": "weapon_remington_r11_rsass_762x51\n", + "Weight": 0.51, + "BackgroundColor": "black", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_dmr", + "Prefab": { + "path": "assets/content/weapons/sr25/weapon_kac_sr25_762x51_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 246, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "5df8ce05b11454561e39243d", + "_parent": "5df8ce05b11454561e39243b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "602e71bd53a60014f9705bfa", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5cc9bcaed7f00c011c04e179", + "5bb20e18d4351e00320205d5", + "5bb20e0ed4351e3bac1212dc", + "6193dcd0f8ee7e52e4210a28", + "5d025cc1d7ad1a53845279ef", + "5c6d7b3d2e221600114c9b7d", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "55802f5d4bdc2dac148b458f", + "5d15cf3bd7ad1a67e71518b2", + "59db3a1d86f77429e05b4e92", + "5fbcbd6c187fea44d52eda14", + "59db3acc86f7742a2c4ab912", + "59db3b0886f77429d72fb895", + "615d8faecabb9b7ad90f4d5d", + "5b07db875acfc40dc528a5f6", + "63f5feead259b42f0b4d6d0f", + "652911675ae2ae97b80fdf3c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5df8ce05b11454561e39243e", + "_parent": "5df8ce05b11454561e39243b", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5df8f535bb49d91fb446d6b0", + "5df8f541c41b2312ea3335e3", + "5a3501acc4a282000d72293a", + "65293c38fc460e50a509cb25", + "65293c7a17e14363030ad308" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "5df8ce05b11454561e39243f", + "_parent": "5df8ce05b11454561e39243b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5649be884bdc2d79388b4577", + "5d120a10d7ad1a4e1026ba85", + "5b0800175acfc400153aebd4", + "602e3f1254072b51b239f713", + "5c793fb92e221644f31bfb64", + "5c793fc42e221600114ca25d", + "638de3603a1a4031d8260b8c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "5df926b94a9f347bc92edcac", + "_parent": "5df8ce05b11454561e39243b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5df8e4080b92095fd441e594" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "5df926e28b6c4240ba265260", + "_parent": "5df8ce05b11454561e39243b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5df8e085bb49d91fb446d6a8", + "5df8e053bb49d91fb446d6a6" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "marksmanRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x51", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 2300, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 700, + "Ergonomics": 47, + "Velocity": 0, + "bEffDist": 900, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5a3501acc4a282000d72293a", + "defAmmo": "5e023e53d4353e3302577c4c", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5df8ce05b11454561e392444", + "_parent": "5df8ce05b11454561e39243b", + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0, + "AimPlane": 0.22, + "DeviationCurve": 1.1, + "DeviationMax": 30, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.23, + "RecoilReturnSpeedHandRotation": 2.8, + "RecoilDampingHandRotation": 0.86, + "RecoilCamera": 0.096, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 356, + "RecoilForceUp": 155, + "RecolDispersion": 11, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.4, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.3, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1, + "y": 1, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.03, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.208725, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 2.592, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 2.5, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.025, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" }, "5448bd6b4bdc2dfc2f8b4569": { "_id": "5448bd6b4bdc2dfc2f8b4569", @@ -243439,23 +241935,23 @@ "ShotgunDispersion": 1 } }, - "5e870397991fd70db46995c8": { - "_id": "5e870397991fd70db46995c8", - "_name": "weapon_mossberg_590a1_12g", - "_parent": "5447b6094bdc2dc3278b4567", + "56e0598dd2720bb5668b45a6": { + "_id": "56e0598dd2720bb5668b45a6", + "_name": "weapon_tochmash_pb_9x18pm", + "_parent": "5447b5cf4bdc2d65278b4567", "_type": "Item", "_props": { - "Name": "weapon_remington_model_870_12g", - "ShortName": "weapon_remington_model_870_12g", - "Description": "weapon_remington_model_870_12g", - "Weight": 1.1, + "Name": "Пистолет бесшумный ПБ 9х18ПМ", + "ShortName": "ПБ", + "Description": "Пистолет бесшумный ПБ (Индекс ГРАУ 6П9) — был создан для вооружения армейских разведывательных групп, а также персонала КГБ СССР, принят на вооружение в 1967 году. Продолжает находиться на вооружении спецподразделений ФСБ и внутренних войск МВД РФ.", + "Weight": 0.674, "BackgroundColor": "black", - "Width": 4, + "Width": 2, "Height": 1, "StackMaxSize": 1, - "ItemSound": "weap_pump", + "ItemSound": "weap_pistol", "Prefab": { - "path": "assets/content/weapons/m590/weapon_mossberg_590a1_12g_container.bundle", + "path": "assets/content/weapons/pb/weapon_tochmash_pb_9x18pm_container.bundle", "rcid": "" }, "UsePrefab": { @@ -243475,8 +241971,8 @@ "LootExperience": 20, "ExamineExperience": 4, "HideEntrails": false, - "RepairCost": 86, - "RepairSpeed": 12, + "RepairCost": 69, + "RepairSpeed": 20, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -243484,7 +241980,7 @@ "ExtraSizeForceAdd": false, "MergesWithChildren": true, "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, + "CanRequireOnRagfair": true, "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -243494,452 +241990,42 @@ "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": false, "DiscardLimit": -1, - "DropSoundType": "Rifle", + "DropSoundType": "Pistol", "InsuranceDisabled": false, "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], "Slots": [ - { - "_name": "mod_barrel", - "_id": "5e870397991fd70db46995ca", - "_parent": "5e870397991fd70db46995c8", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5e87071478f43e51ca2de5e1" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "5e870397991fd70db46995cb", - "_parent": "5e870397991fd70db46995c8", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5eea21647547d6330471b3c9", - "5e87076ce2db31558c75a11d" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_magazine", - "_id": "5e870397991fd70db46995cc", - "_parent": "5e870397991fd70db46995c8", - "_props": { - "filters": [ - { - "AnimationIndex": 0, - "Filter": [ - "5e87080c81c4ed43e83cefda" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "5e870397991fd70db46995cd", - "_parent": "5e870397991fd70db46995c8", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5eea217fc64c5d0dfc05712a", - "5ef1b9f0c64c5d0dfc0571a1", - "5e87116b81c4ed43e83cefdd" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5e870397991fd70db46995ce", - "_parent": "5e870397991fd70db46995c8", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5e87114fe2db31558c75a120", - "5eeb2ff5ea4f8b73c827350b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "shotgun", - "weapUseType": "primary", - "ammoCaliber": "Caliber12g", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 3250, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": false, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": false, - "bFirerate": 30, - "Ergonomics": 48, - "Velocity": 0, - "bEffDist": 70, - "bHearDist": 1, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5e87080c81c4ed43e83cefda", - "defAmmo": "560d5e524bdc2d25448b4571", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 20, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5e870397991fd70db46995cf", - "_parent": "5e870397991fd70db46995c8", - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "InternalMagazine", - "CenterOfImpact": 0.42, - "AimPlane": 0.112, - "DeviationCurve": 2.5, - "DeviationMax": 10, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.23, - "RecoilReturnSpeedHandRotation": 2.5, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.078, - "RecoilStableIndexShot": 3, - "RecoilForceBack": 494, - "RecoilForceUp": 421, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.52, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 95, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.3, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0.1, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2.5, - "y": 2.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 2.6, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.25, - "z": -0.06 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.271975, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.99, - "CoolFactorGun": 4.032, - "CoolFactorGunMods": 1.03, - "HeatFactorByShot": 7.1, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false, - "ShotgunDispersion": 1 - }, - "_proto": "54491c4f4bdc2db1078b4568" - }, - "606dae0ab0e443224b421bb7": { - "_id": "606dae0ab0e443224b421bb7", - "_name": "weapon_kalashnikov_mp155_12g", - "_parent": "5447b6094bdc2dc3278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_kalashnikov_mp155_12g", - "ShortName": "weapon_kalashnikov_mp155_12g", - "Description": "weapon_kalashnikov_mp155_12g", - "Weight": 1.1, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/mp155/weapon_kalashnikov_mp155_12g_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 95, - "RepairSpeed": 8, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_barrel", - "_id": "606dae0ab0e443224b421bb9", - "_parent": "606dae0ab0e443224b421bb7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6076c1b9f2cb2e02a42acedc" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "606dae0ab0e443224b421bba", - "_parent": "606dae0ab0e443224b421bb7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "607d5aa50494a626335e12ed", - "606ee5c81246154cad35d65e" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "606dae0ab0e443224b421bbb", - "_parent": "606dae0ab0e443224b421bb7", + "_id": "56e05b74d2720bb8668b4586", + "_parent": "56e0598dd2720bb5668b45a6", "_props": { "filters": [ { "AnimationIndex": -1, "Filter": [ - "6076c87f232e5a31c233d50e", - "55d484b44bdc2d1d4e8b456d", - "55d485804bdc2d8c2f8b456b", - "56deee15d2720bee328b4567", - "5882163e24597758206fee8c", - "5882163824597757561aa922", - "5882163224597757561aa920", - "56deeefcd2720bc8328b4568" + "55d485be4bdc2d962f8b456f", + "5448c12b4bdc2d02308b456f" ] } ] }, - "_required": true, + "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c394bdc2dae468b4577" }, { - "_name": "mod_stock", - "_id": "606dae0ab0e443224b421bbc", - "_parent": "606dae0ab0e443224b421bb7", + "_name": "mod_muzzle", + "_id": "56e05b97d2720bb4668b45a7", + "_parent": "56e0598dd2720bb5668b45a6", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "607d5a891246154cad35d6aa", - "606eef46232e5a31c233d500" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "606dae0ab0e443224b421bbd", - "_parent": "606dae0ab0e443224b421bb7", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d48a634bdc2d8b2f8b456a", - "60785ce5132d4d12c81fd918" + "56e05b06d2720bb2668b4586" ] } ] @@ -243947,63 +242033,78 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistolgrip", + "_id": "63e0e38a69739d1115030438", + "_parent": "56e0598dd2720bb5668b45a6", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "56e05a6ed2720bd0748b4567" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "shotgun", - "weapUseType": "primary", - "ammoCaliber": "Caliber12g", + "weapClass": "pistol", + "weapUseType": "secondary", + "ammoCaliber": "Caliber9x18PM", "Durability": 100, "MaxDurability": 100, - "OperatingResource": 3100, + "OperatingResource": 3000, "RepairComplexity": 0, "durabSpawnMin": 25, "durabSpawnMax": 75, - "isFastReload": false, + "isFastReload": true, "weapFireType": [ "single" ], "SingleFireRate": 450, "CanQueueSecondShot": true, - "bFirerate": 40, - "Ergonomics": 48, - "Velocity": 0, - "bEffDist": 70, - "bHearDist": 1, + "bFirerate": 30, + "Ergonomics": 80, + "Velocity": -13.12, + "bEffDist": 50, + "bHearDist": 80, "isChamberLoad": true, "chamberAmmoCount": 1, "isBoltCatch": true, - "defMagType": "56deee15d2720bee328b4567", - "defAmmo": "560d5e524bdc2d25448b4571", + "defMagType": "5448c12b4bdc2d02308b456f", + "defAmmo": "573719762459775a626ccbc1", "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 20, + "shotgunDispersion": 10, "Chambers": [ { "_name": "patron_in_weapon", - "_id": "606dae0ab0e443224b421bbf", - "_parent": "606dae0ab0e443224b421bb7", + "_id": "56e05a2ad2720bb4668b45a6", + "_parent": "56e0598dd2720bb5668b45a6", "_props": { "filters": [ { "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" + "573718ba2459775a75491131", + "573719df2459775a626ccbc2", + "57371aab2459775a77142f22", + "57371b192459775a9f58a5e0", + "57371e4124597760ff7b25f1", + "57371eb62459776125652ac1", + "57371f8d24597761006c6a81", + "5737201124597760fc4431f1", + "5737207f24597760ff7b25f2", + "57371f2b24597761224311f1", + "573719762459775a626ccbc1", + "573720e02459776143012541", + "57372140245977611f70ee91", + "5737218f245977612125ba51" ] } ] @@ -244013,11 +242114,11 @@ "_proto": "55d4af244bdc2d962f8b4571" } ], - "ReloadMode": "InternalMagazine", - "CenterOfImpact": 0.5, - "AimPlane": 0.114, - "DeviationCurve": 2.5, - "DeviationMax": 10, + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.3, + "AimPlane": 0.026, + "DeviationCurve": 2.25, + "DeviationMax": 11, "Foldable": false, "Retractable": false, "TacticalReloadStiffnes": { @@ -244026,18 +242127,18 @@ "z": 0.95 }, "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.23, - "RecoilReturnSpeedHandRotation": 2.2, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.071, - "RecoilStableIndexShot": 3, - "RecoilForceBack": 457, - "RecoilForceUp": 341, - "RecolDispersion": 10, + "RecoilCategoryMultiplierHandRotation": 0.138, + "RecoilReturnSpeedHandRotation": 5, + "RecoilDampingHandRotation": 0.78, + "RecoilCamera": 0.00847, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 260, + "RecoilForceUp": 380, + "RecolDispersion": 12, "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.52, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, + "RecoilReturnPathDampingHandRotation": 0.43, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 85, "RecoilStableAngleIncreaseStep": 2.5, "ProgressRecoilAngleOnStable": { "x": 0, @@ -244046,17 +242147,17 @@ }, "RecoilCenter": { "x": 0, - "y": -0.3, - "z": 0 + "y": -0.44, + "z": -0.005 }, "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0.1, + "x": -1, + "y": 0, "z": 0 }, "PostRecoilHorizontalRangeHandRotation": { - "x": -2.5, - "y": 2.5, + "x": -2, + "y": 2, "z": 0 }, "ShotsGroupSettings": [ @@ -244086,20 +242187,20 @@ "z": 0 }, "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 2.8, + "CameraSnap": 5, "RotationCenter": { "x": 0, - "y": -0.1, - "z": -0.03 + "y": 0, + "z": 0 }, "RotationCenterNoStock": { "x": 0, - "y": -0.25, - "z": -0.06 + "y": -0.45, + "z": -0.05 }, "SizeReduceRight": 0, "FoldedSlot": "", - "CompactHandling": true, + "CompactHandling": false, "SightingRange": 100, "MinRepairDegradation": 0, "MaxRepairDegradation": 0.04, @@ -244113,16 +242214,16 @@ "ManualBoltCatch": false, "AimSensitivity": 0.65, "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.2783, + "BaseMalfunctionChance": 0.2277, "AllowJam": true, "AllowFeed": true, "AllowMisfire": true, "AllowSlide": true, "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.99, + "HeatFactorGun": 1.087488, "CoolFactorGun": 4.032, - "CoolFactorGunMods": 1.03, - "HeatFactorByShot": 4.8, + "CoolFactorGunMods": 1.426972, + "HeatFactorByShot": 1.372, "AllowOverheat": true, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, @@ -244134,10 +242235,9 @@ "IsStationaryWeapon": false, "IsBeltMachineGun": false, "WithAnimatorAiming": false, - "blockLeftStance": false, - "ShotgunDispersion": 1 + "blockLeftStance": false }, - "_proto": "54491c4f4bdc2db1078b4568" + "_proto": "5448bd6b4bdc2dfc2f8b4569" }, "5a7ae0c351dfba0017554310": { "_id": "5a7ae0c351dfba0017554310", @@ -245539,580 +243639,23 @@ }, "_proto": "5448bd6b4bdc2dfc2f8b4569" }, - "56e0598dd2720bb5668b45a6": { - "_id": "56e0598dd2720bb5668b45a6", - "_name": "weapon_tochmash_pb_9x18pm", + "63088377b5cd696784087147": { + "_id": "63088377b5cd696784087147", + "_name": "weapon_glock_glock_19x_9x19", "_parent": "5447b5cf4bdc2d65278b4567", "_type": "Item", "_props": { - "Name": "Пистолет бесшумный ПБ 9х18ПМ", - "ShortName": "ПБ", - "Description": "Пистолет бесшумный ПБ (Индекс ГРАУ 6П9) — был создан для вооружения армейских разведывательных групп, а также персонала КГБ СССР, принят на вооружение в 1967 году. Продолжает находиться на вооружении спецподразделений ФСБ и внутренних войск МВД РФ.", - "Weight": 0.674, + "Name": "weapon_glock_17_9x19", + "ShortName": "weapon_glock_17_9x19", + "Description": "weapon_glock_17_9x19\n", + "Weight": 0.197, "BackgroundColor": "black", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "weap_pistol", "Prefab": { - "path": "assets/content/weapons/pb/weapon_tochmash_pb_9x18pm_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 69, - "RepairSpeed": 20, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Pistol", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "56e05b74d2720bb8668b4586", - "_parent": "56e0598dd2720bb5668b45a6", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "55d485be4bdc2d962f8b456f", - "5448c12b4bdc2d02308b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_muzzle", - "_id": "56e05b97d2720bb4668b45a7", - "_parent": "56e0598dd2720bb5668b45a6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "56e05b06d2720bb2668b4586" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistolgrip", - "_id": "63e0e38a69739d1115030438", - "_parent": "56e0598dd2720bb5668b45a6", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "56e05a6ed2720bd0748b4567" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "pistol", - "weapUseType": "secondary", - "ammoCaliber": "Caliber9x18PM", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 3000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 30, - "Ergonomics": 80, - "Velocity": -13.12, - "bEffDist": 50, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5448c12b4bdc2d02308b456f", - "defAmmo": "573719762459775a626ccbc1", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "56e05a2ad2720bb4668b45a6", - "_parent": "56e0598dd2720bb5668b45a6", - "_props": { - "filters": [ - { - "Filter": [ - "573718ba2459775a75491131", - "573719df2459775a626ccbc2", - "57371aab2459775a77142f22", - "57371b192459775a9f58a5e0", - "57371e4124597760ff7b25f1", - "57371eb62459776125652ac1", - "57371f8d24597761006c6a81", - "5737201124597760fc4431f1", - "5737207f24597760ff7b25f2", - "57371f2b24597761224311f1", - "573719762459775a626ccbc1", - "573720e02459776143012541", - "57372140245977611f70ee91", - "5737218f245977612125ba51" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.3, - "AimPlane": 0.026, - "DeviationCurve": 2.25, - "DeviationMax": 11, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.138, - "RecoilReturnSpeedHandRotation": 5, - "RecoilDampingHandRotation": 0.78, - "RecoilCamera": 0.00847, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 260, - "RecoilForceUp": 380, - "RecolDispersion": 12, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.43, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 85, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.44, - "z": -0.005 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 5, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.45, - "z": -0.05 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.2277, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1.087488, - "CoolFactorGun": 4.032, - "CoolFactorGunMods": 1.426972, - "HeatFactorByShot": 1.372, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5448bd6b4bdc2dfc2f8b4569" - }, - "66015072e9f84d5680039678": { - "_id": "66015072e9f84d5680039678", - "_name": "weapon_ussr_pd_20x1mm", - "_parent": "5447b5cf4bdc2d65278b4567", - "_type": "Item", - "_props": { - "Name": "pm", - "ShortName": "pm", - "Description": "pm", - "Weight": 0.2, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_pistol", - "Prefab": { - "path": "assets/content/weapons/pd/weapon_ussr_pd_20x1mm_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 25, - "RepairSpeed": 1, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Pistol", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "66015edac6adfa95780fb636", - "_parent": "66015072e9f84d5680039678", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "66015dc4aaad2f54cb04c56a" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "pistol", - "weapUseType": "secondary", - "ammoCaliber": "Caliber20x1mm", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 2050, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": false, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 30, - "Ergonomics": 85, - "Velocity": 0, - "bEffDist": 50, - "bHearDist": 80, - "isChamberLoad": false, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "66015dc4aaad2f54cb04c56a", - "defAmmo": "6601546f86889319850bd566", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "66015072e9f84d568003967c", - "_parent": "66015072e9f84d5680039678", - "_props": { - "filters": [ - { - "Filter": [ - "6601546f86889319850bd566" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "InternalMagazine", - "CenterOfImpact": 0.39, - "AimPlane": 0.026, - "DeviationCurve": 2.5, - "DeviationMax": 10, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.138, - "RecoilReturnSpeedHandRotation": 5, - "RecoilDampingHandRotation": 0.78, - "RecoilCamera": 0.00847, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 265, - "RecoilForceUp": 380, - "RecolDispersion": 12, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.43, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 85, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.44, - "z": -0.005 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 5, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.45, - "z": -0.05 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.2277, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1.087488, - "CoolFactorGun": 4.032, - "CoolFactorGunMods": 1.426972, - "HeatFactorByShot": 1.56, - "AllowOverheat": false, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - } - }, - "5d3eb3b0a4b93615055e84d2": { - "_id": "5d3eb3b0a4b93615055e84d2", - "_name": "weapon_fn_five_seven_57x28", - "_parent": "5447b5cf4bdc2d65278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_fn_five_seven_57x28", - "ShortName": "weapon_fn_five_seven_57x28", - "Description": "weapon_fn_five_seven_57x28", - "Weight": 0.23, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_pistol", - "Prefab": { - "path": "assets/content/weapons/fiveseven/weapon_fn_five_seven_57x28_container.bundle", + "path": "assets/content/weapons/glock19/weapon_glock_glock_19x_9x19_container.bundle", "rcid": "" }, "UsePrefab": { @@ -246132,7 +243675,7 @@ "LootExperience": 10, "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 93, + "RepairCost": 46, "RepairSpeed": 2, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -246160,15 +243703,14 @@ "Slots": [ { "_name": "mod_barrel", - "_id": "5d3eb3b0a4b93615055e84d4", - "_parent": "5d3eb3b0a4b93615055e84d2", + "_id": "63088377b5cd696784087148", + "_parent": "63088377b5cd696784087147", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5d3eb5b6a4b9361eab311902", - "5d3eb59ea4b9361c284bb4b2" + "630764fea987397c0816d219" ] } ] @@ -246178,15 +243720,33 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_reciever", - "_id": "5d3eb3b0a4b93615055e84d6", - "_parent": "5d3eb3b0a4b93615055e84d2", + "_name": "mod_pistol_grip", + "_id": "63088377b5cd696784087149", + "_parent": "63088377b5cd696784087147", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5d3eb44aa4b93650d64e4979" + "5a7b4960e899ef197b331a2d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "63088377b5cd69678408714a", + "_parent": "63088377b5cd696784087147", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "63075cc5962d0247b029dc2a" ] } ] @@ -246197,14 +243757,20 @@ }, { "_name": "mod_magazine", - "_id": "5d3eb3b0a4b93615055e84d7", - "_parent": "5d3eb3b0a4b93615055e84d2", + "_id": "63088377b5cd69678408714b", + "_parent": "63088377b5cd696784087147", "_props": { "filters": [ { - "AnimationIndex": -1, + "AnimationIndex": 0, "Filter": [ - "5d3eb5eca4b9363b1f22f8e4" + "5a7ad2e851dfba0016153692", + "5a718b548dc32e000d46d262", + "5a718da68dc32e000d46d264", + "5a718f958dc32e00094b97e7", + "630769c4962d0247b029dc60", + "630767c37d50ff5e8a1ea71a", + "63076701a987397c0816d21b" ] } ] @@ -246215,15 +243781,14 @@ }, { "_name": "mod_tactical", - "_id": "5d3eb3b0a4b93615055e84d8", - "_parent": "5d3eb3b0a4b93615055e84d2", + "_id": "63088377b5cd69678408714c", + "_parent": "63088377b5cd696784087147", "_props": { "filters": [ { "Shift": 0, "Filter": [ "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", "5d2369418abbc306c62e0c80", "5b07dd285acfc4001754240d", "56def37dd2720bec348b456a", @@ -246240,16 +243805,34 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "63088377b5cd69678408714d", + "_parent": "63088377b5cd696784087147", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7ad55551dfba0015068f42" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "weapClass": "pistol", "weapUseType": "secondary", - "ammoCaliber": "Caliber57x28", + "ammoCaliber": "Caliber9x19PARA", "Durability": 100, "MaxDurability": 100, - "OperatingResource": 3300, + "OperatingResource": 2600, "RepairComplexity": 0, "durabSpawnMin": 25, "durabSpawnMax": 70, @@ -246260,33 +243843,35 @@ "SingleFireRate": 450, "CanQueueSecondShot": true, "bFirerate": 30, - "Ergonomics": 86, + "Ergonomics": 93, "Velocity": 0, "bEffDist": 50, "bHearDist": 80, "isChamberLoad": true, "chamberAmmoCount": 1, "isBoltCatch": true, - "defMagType": "5d3eb5eca4b9363b1f22f8e4", - "defAmmo": "5cc80f8fe4a949033b0224a2", + "defMagType": "5a718b548dc32e000d46d262", + "defAmmo": "64b7bbb74b75259c590fa897", "AdjustCollimatorsToTrajectory": false, "shotgunDispersion": 10, "Chambers": [ { "_name": "patron_in_weapon", - "_id": "5d3eb3b0a4b93615055e84d9", - "_parent": "5d3eb3b0a4b93615055e84d2", + "_id": "63088377b5cd69678408714f", + "_parent": "63088377b5cd696784087147", "_props": { "filters": [ { "Filter": [ - "5cc80f53e4a949000e1ea4f8", - "5cc86832d7f00c000d3a6e6c", - "5cc86840d7f00c002412c56c", - "5cc80f67e4a949035e43bbba", - "5cc80f38e4a949001152b560", - "5cc80f8fe4a949033b0224a2", - "5cc80f79e4a949033c7343b2" + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" ] } ] @@ -246310,746 +243895,17 @@ }, "TacticalReloadFixation": 0.95, "RecoilCategoryMultiplierHandRotation": 0.138, - "RecoilReturnSpeedHandRotation": 7, - "RecoilDampingHandRotation": 0.8, - "RecoilCamera": 0.0072, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 240, - "RecoilForceUp": 281, - "RecolDispersion": 8, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.43, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.44, - "z": -0.005 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 7, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.45, - "z": -0.05 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.2277, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1.06, - "CoolFactorGun": 4.032, - "CoolFactorGunMods": 0.98, - "HeatFactorByShot": 1.815, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5448bd6b4bdc2dfc2f8b4569" - }, - "5df8ce05b11454561e39243b": { - "_id": "5df8ce05b11454561e39243b", - "_name": "weapon_kac_sr25_762x51", - "_parent": "5447b6194bdc2d67278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_remington_r11_rsass_762x51", - "ShortName": "weapon_remington_r11_rsass_762x51", - "Description": "weapon_remington_r11_rsass_762x51\n", - "Weight": 0.51, - "BackgroundColor": "black", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_dmr", - "Prefab": { - "path": "assets/content/weapons/sr25/weapon_kac_sr25_762x51_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 246, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "5df8ce05b11454561e39243d", - "_parent": "5df8ce05b11454561e39243b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "602e71bd53a60014f9705bfa", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5cc9bcaed7f00c011c04e179", - "5bb20e18d4351e00320205d5", - "5bb20e0ed4351e3bac1212dc", - "6193dcd0f8ee7e52e4210a28", - "5d025cc1d7ad1a53845279ef", - "5c6d7b3d2e221600114c9b7d", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "55802f5d4bdc2dac148b458f", - "5d15cf3bd7ad1a67e71518b2", - "59db3a1d86f77429e05b4e92", - "5fbcbd6c187fea44d52eda14", - "59db3acc86f7742a2c4ab912", - "59db3b0886f77429d72fb895", - "615d8faecabb9b7ad90f4d5d", - "5b07db875acfc40dc528a5f6", - "63f5feead259b42f0b4d6d0f", - "652911675ae2ae97b80fdf3c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5df8ce05b11454561e39243e", - "_parent": "5df8ce05b11454561e39243b", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5df8f535bb49d91fb446d6b0", - "5df8f541c41b2312ea3335e3", - "5a3501acc4a282000d72293a", - "65293c38fc460e50a509cb25", - "65293c7a17e14363030ad308" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "5df8ce05b11454561e39243f", - "_parent": "5df8ce05b11454561e39243b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5649be884bdc2d79388b4577", - "5d120a10d7ad1a4e1026ba85", - "5b0800175acfc400153aebd4", - "602e3f1254072b51b239f713", - "5c793fb92e221644f31bfb64", - "5c793fc42e221600114ca25d", - "638de3603a1a4031d8260b8c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "5df926b94a9f347bc92edcac", - "_parent": "5df8ce05b11454561e39243b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5df8e4080b92095fd441e594" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "5df926e28b6c4240ba265260", - "_parent": "5df8ce05b11454561e39243b", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5df8e085bb49d91fb446d6a8", - "5df8e053bb49d91fb446d6a6" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "marksmanRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber762x51", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 2300, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 700, - "Ergonomics": 47, - "Velocity": 0, - "bEffDist": 900, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5a3501acc4a282000d72293a", - "defAmmo": "5e023e53d4353e3302577c4c", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5df8ce05b11454561e392444", - "_parent": "5df8ce05b11454561e39243b", - "_props": { - "filters": [ - { - "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0, - "AimPlane": 0.22, - "DeviationCurve": 1.1, - "DeviationMax": 30, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.23, - "RecoilReturnSpeedHandRotation": 2.8, - "RecoilDampingHandRotation": 0.86, - "RecoilCamera": 0.096, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 356, - "RecoilForceUp": 155, - "RecolDispersion": 11, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.4, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.3, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1, - "y": 1, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.03, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.208725, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 2.592, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 2.5, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.025, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5abccb7dd8ce87001773e277": { - "_id": "5abccb7dd8ce87001773e277", - "_name": "weapon_toz_apb_9x18pm", - "_parent": "5447b5cf4bdc2d65278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_molot_aps_9x18pm", - "ShortName": "weapon_molot_aps_9x18pm", - "Description": "weapon_molot_aps_9x18pm", - "Weight": 0.81, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_pistol", - "Prefab": { - "path": "assets/content/weapons/aps/weapon_toz_apb_9x18pm_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 76, - "RepairSpeed": 1, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Pistol", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "5abccb7dd8ce87001773e279", - "_parent": "5abccb7dd8ce87001773e277", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5a17fb03fcdbcbcae668728f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "5abccb7dd8ce87001773e27a", - "_parent": "5abccb7dd8ce87001773e277", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a17fb9dfcdbcbcae6687291" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "5abccb7dd8ce87001773e27b", - "_parent": "5abccb7dd8ce87001773e277", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a17fc70fcdbcb0176308b3d" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "5abccb7dd8ce87001773e27c", - "_parent": "5abccb7dd8ce87001773e277", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5aba62f8d8ce87001943946b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "5abccb7dd8ce87001773e27d", - "_parent": "5abccb7dd8ce87001773e277", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5aba639ed8ce8700182ece67", - "5aba637ad8ce87001773e17f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "5abccb98d8ce87001a46e22d", - "_parent": "5abccb7dd8ce87001773e277", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5abcc328d8ce8700194394f3" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "pistol", - "weapUseType": "secondary", - "ammoCaliber": "Caliber9x18PM", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 3400, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 750, - "Ergonomics": 80, - "Velocity": -4.54, - "bEffDist": 50, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5a17fb03fcdbcbcae668728f", - "defAmmo": "573719762459775a626ccbc1", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5abccb7dd8ce87001773e27e", - "_parent": "5abccb7dd8ce87001773e277", - "_props": { - "filters": [ - { - "Filter": [ - "573718ba2459775a75491131", - "573719df2459775a626ccbc2", - "57371aab2459775a77142f22", - "57371b192459775a9f58a5e0", - "57371e4124597760ff7b25f1", - "57371eb62459776125652ac1", - "57371f8d24597761006c6a81", - "5737201124597760fc4431f1", - "5737207f24597760ff7b25f2", - "57371f2b24597761224311f1", - "573719762459775a626ccbc1", - "573720e02459776143012541", - "57372140245977611f70ee91", - "5737218f245977612125ba51" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.32, - "AimPlane": 0.026, - "DeviationCurve": 2.25, - "DeviationMax": 11, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.138, "RecoilReturnSpeedHandRotation": 5, - "RecoilDampingHandRotation": 0.8, - "RecoilCamera": 0.01344, + "RecoilDampingHandRotation": 0.78, + "RecoilCamera": 0.0072, "RecoilStableIndexShot": 4, - "RecoilForceBack": 260, - "RecoilForceUp": 328, + "RecoilForceBack": 250, + "RecoilForceUp": 302, "RecolDispersion": 8, "RecoilPosZMult": 1, "RecoilReturnPathDampingHandRotation": 0.43, "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 85, + "RecoilAngle": 90, "RecoilStableAngleIncreaseStep": 2.5, "ProgressRecoilAngleOnStable": { "x": 0, @@ -247107,7 +243963,7 @@ "RotationCenterNoStock": { "x": 0, "y": -0.45, - "z": -0.05 + "z": -0.08 }, "SizeReduceRight": 0, "FoldedSlot": "", @@ -247125,16 +243981,16 @@ "ManualBoltCatch": false, "AimSensitivity": 0.65, "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, + "BaseMalfunctionChance": 0.2277, "AllowJam": true, "AllowFeed": true, "AllowMisfire": true, "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.995328, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.258432, - "HeatFactorByShot": 3.82, + "DurabilityBurnRatio": 1.08, + "HeatFactorGun": 1.04, + "CoolFactorGun": 4.032, + "CoolFactorGunMods": 0.98, + "HeatFactorByShot": 1.061, "AllowOverheat": true, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, @@ -247150,6 +244006,362 @@ }, "_proto": "5448bd6b4bdc2dfc2f8b4569" }, + "5a7828548dc32e5a9c28b516": { + "_id": "5a7828548dc32e5a9c28b516", + "_name": "weapon_remington_model_870_12g", + "_parent": "5447b6094bdc2dc3278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_remington_model_870_12g", + "ShortName": "weapon_remington_model_870_12g", + "Description": "weapon_remington_model_870_12g", + "Weight": 1.1, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_pump", + "Prefab": { + "path": "assets/content/weapons/m870/weapon_remington_model_870_12g_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 88, + "RepairSpeed": 12, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_barrel", + "_id": "5a7828548dc32e5a9c28b517", + "_parent": "5a7828548dc32e5a9c28b516", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a787ebcc5856700142fdd98", + "5a787f25c5856700186c4ab9", + "5a787f7ac5856700177af660", + "5a787fadc5856700155a6ca1", + "5a787fdfc5856700142fdd9a" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "5a7828548dc32e5a9c28b518", + "_parent": "5a7828548dc32e5a9c28b516", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a788031c585673f2b5c1c79", + "5a788068c5856700137e4c8f", + "5a788089c5856700142fdd9c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5a7828548dc32e5a9c28b519", + "_parent": "5a7828548dc32e5a9c28b516", + "_props": { + "filters": [ + { + "AnimationIndex": 0, + "Filter": [ + "5a7882dcc5856700177af662", + "5a78832ec5856700155a6ca3", + "5a78830bc5856700137e4c90" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "5a7828548dc32e5a9c28b51a", + "_parent": "5a7828548dc32e5a9c28b516", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a78813bc5856700186c4abe", + "5ae35b315acfc4001714e8b0", + "5a7880d0c5856700142fdd9d", + "5a788169c5856700142fdd9e", + "5bfe86a20db834001d23e8f7" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5a789524c5856700177b1126", + "_parent": "5a7828548dc32e5a9c28b516", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a7893c1c585673f2b5c374d", + "5a78948ec5856700177b1124" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "shotgun", + "weapUseType": "primary", + "ammoCaliber": "Caliber12g", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 3250, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": false, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": false, + "bFirerate": 30, + "Ergonomics": 45, + "Velocity": 0, + "bEffDist": 70, + "bHearDist": 1, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5a7882dcc5856700177af662", + "defAmmo": "560d5e524bdc2d25448b4571", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 20, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5a7828548dc32e5a9c28b51d", + "_parent": "5a7828548dc32e5a9c28b516", + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "InternalMagazine", + "CenterOfImpact": 0.4, + "AimPlane": 0.112, + "DeviationCurve": 2.5, + "DeviationMax": 10, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.23, + "RecoilReturnSpeedHandRotation": 2.5, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.078, + "RecoilStableIndexShot": 3, + "RecoilForceBack": 471, + "RecoilForceUp": 397, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.52, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.3, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0.1, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2.5, + "y": 2.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 2.6, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.25, + "z": -0.06 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.271975, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.99, + "CoolFactorGun": 4.032, + "CoolFactorGunMods": 1.03, + "HeatFactorByShot": 5.5, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false, + "ShotgunDispersion": 1 + }, + "_proto": "54491c4f4bdc2db1078b4568" + }, "5cadc190ae921500103bb3b6": { "_id": "5cadc190ae921500103bb3b6", "_name": "weapon_beretta_m9a3_9x19", @@ -247495,6 +244707,2865 @@ }, "_proto": "5448bd6b4bdc2dfc2f8b4569" }, + "571a12c42459771f627b58a0": { + "_id": "571a12c42459771f627b58a0", + "_name": "weapon_toz_tt_762x25tt", + "_parent": "5447b5cf4bdc2d65278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_toz_tt_762x25tt_gold", + "ShortName": "weapon_toz_tt_762x25tt_gold", + "Description": "weapon_toz_tt_762x25tt_gold", + "Weight": 0.664, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_pistol", + "Prefab": { + "path": "assets/content/weapons/tt/weapon_toz_tt_762x25tt_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 21, + "RepairSpeed": 3, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Pistol", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_barrel", + "_id": "571a13b32459771fd448f522", + "_parent": "571a12c42459771f627b58a0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "571a26d524597720680fbe8a", + "571a279b24597720b4066566", + "5b3baf8f5acfc40dc5296692" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "571a13d82459771fd448f523", + "_parent": "571a12c42459771f627b58a0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0684e50db834002a12585a", + "5bffcf7a0db83400232fea79", + "5c079ec50db834001966a706", + "5b3cadf35acfc400194776a0", + "571a282c2459771fb2755a69" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "571a39602459771d1a341e26", + "_parent": "571a12c42459771f627b58a0", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "571a29dc2459771fb2755a6a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_muzzle", + "_id": "5bffd9000db83400232feb12", + "_parent": "571a12c42459771f627b58a0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bffd7ed0db834001d23ebf9" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "5c079fef0db834001808abf8", + "_parent": "571a12c42459771f627b58a0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c079ed60db834001a66b372" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "pistol", + "weapUseType": "secondary", + "ammoCaliber": "Caliber762x25TT", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 2600, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 30, + "Ergonomics": 70, + "Velocity": 0, + "bEffDist": 50, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "571a29dc2459771fb2755a6a", + "defAmmo": "5736026a245977644601dc61", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 10, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "571a13822459771fb2755a68", + "_parent": "571a12c42459771f627b58a0", + "_props": { + "filters": [ + { + "Filter": [ + "5735ff5c245977640e39ba7e", + "573601b42459776410737435", + "573602322459776445391df1", + "5736026a245977644601dc61", + "573603562459776430731618", + "573603c924597764442bd9cb", + "5735fdcd2459776445391d61" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0, + "AimPlane": 0.026, + "DeviationCurve": 2.25, + "DeviationMax": 11, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.138, + "RecoilReturnSpeedHandRotation": 5, + "RecoilDampingHandRotation": 0.8, + "RecoilCamera": 0.012, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 325, + "RecoilForceUp": 553, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.43, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.44, + "z": -0.005 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 5, + "RotationCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.45, + "z": -0.05 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.2277, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.9216, + "CoolFactorGun": 4.032, + "CoolFactorGunMods": 1.1236, + "HeatFactorByShot": 4.85, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "56d59856d2720bd8418b456a" + }, + "5a17f98cfcdbcb0980087290": { + "_id": "5a17f98cfcdbcb0980087290", + "_name": "weapon_molot_aps_9x18pm", + "_parent": "5447b5cf4bdc2d65278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_molot_aps_9x18pm", + "ShortName": "weapon_molot_aps_9x18pm", + "Description": "weapon_molot_aps_9x18pm", + "Weight": 0.86, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_pistol", + "Prefab": { + "path": "assets/content/weapons/aps/weapon_molot_aps_9x18pm_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 1, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Pistol", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "5a17f98cfcdbcb0980087291", + "_parent": "5a17f98cfcdbcb0980087290", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5a17fb03fcdbcbcae668728f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "5a17fd55fcdbcb0980087293", + "_parent": "5a17f98cfcdbcb0980087290", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a17fb9dfcdbcbcae6687291" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "5a17fd5dfcdbcb001865f749", + "_parent": "5a17f98cfcdbcb0980087290", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a17fc70fcdbcb0176308b3d" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "5aba64ebd8ce87001a46e19f", + "_parent": "5a17f98cfcdbcb0980087290", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5aba62f8d8ce87001943946b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "5aba64f9d8ce8700182ece6c", + "_parent": "5a17f98cfcdbcb0980087290", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5aba639ed8ce8700182ece67", + "5aba637ad8ce87001773e17f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "pistol", + "weapUseType": "secondary", + "ammoCaliber": "Caliber9x18PM", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 4100, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 750, + "Ergonomics": 70, + "Velocity": -4.54, + "bEffDist": 50, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5a17fb03fcdbcbcae668728f", + "defAmmo": "573719762459775a626ccbc1", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5a17f98cfcdbcb0980087292", + "_parent": "5a17f98cfcdbcb0980087290", + "_props": { + "filters": [ + { + "Filter": [ + "573718ba2459775a75491131", + "573719df2459775a626ccbc2", + "57371aab2459775a77142f22", + "57371b192459775a9f58a5e0", + "57371e4124597760ff7b25f1", + "57371eb62459776125652ac1", + "57371f8d24597761006c6a81", + "5737201124597760fc4431f1", + "5737207f24597760ff7b25f2", + "57371f2b24597761224311f1", + "573719762459775a626ccbc1", + "573720e02459776143012541", + "57372140245977611f70ee91", + "5737218f245977612125ba51" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.3, + "AimPlane": 0.026, + "DeviationCurve": 2.25, + "DeviationMax": 11, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.138, + "RecoilReturnSpeedHandRotation": 5, + "RecoilDampingHandRotation": 0.8, + "RecoilCamera": 0.00864, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 260, + "RecoilForceUp": 328, + "RecolDispersion": 8, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.43, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 85, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.44, + "z": -0.005 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 5, + "RotationCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.45, + "z": -0.05 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.995328, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.258432, + "HeatFactorByShot": 3.82, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5448bd6b4bdc2dfc2f8b4569" + }, + "61a4c8884f95bc3b2c5dc96f": { + "_id": "61a4c8884f95bc3b2c5dc96f", + "_name": "weapon_chiappa_rhino_50ds_9x33R", + "_parent": "617f1ef5e8b54b0998387733", + "_type": "Item", + "_props": { + "Name": "weapon_ckib_mc_255_12g", + "ShortName": "weapon_ckib_mc_255_12g", + "Description": "weapon_ckib_mc_255_12g", + "Weight": 0.685, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_pistol", + "Prefab": { + "path": "assets/content/weapons/rhino/weapon_chiappa_rhino_50ds_9x33r_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 70, + "RepairSpeed": 12, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "Holster", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Pistol", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "61a4c8884f95bc3b2c5dc971", + "_parent": "61a4c8884f95bc3b2c5dc96f", + "_props": { + "filters": [ + { + "AnimationIndex": 0, + "Filter": [ + "619f54a1d25cbd424731fb99" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_sight_rear", + "_id": "61a4c8884f95bc3b2c5dc972", + "_parent": "61a4c8884f95bc3b2c5dc96f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "619f4f8c4c58466fe1228439", + "619f4cee4c58466fe1228435" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_front", + "_id": "61a4c8884f95bc3b2c5dc973", + "_parent": "61a4c8884f95bc3b2c5dc96f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "619f52454c58466fe122843b", + "619f4d304c58466fe1228437" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "61a4c8884f95bc3b2c5dc974", + "_parent": "61a4c8884f95bc3b2c5dc96f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "619f4ab2d25cbd424731fb95", + "619f4bffd25cbd424731fb97" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "61a4c8884f95bc3b2c5dc975", + "_parent": "61a4c8884f95bc3b2c5dc96f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "626becf9582c3e319310b837" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "pistol", + "weapUseType": "secondary", + "ammoCaliber": "Caliber9x33R", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 2800, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": false, + "weapFireType": [ + "single", + "doubleaction" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": false, + "bFirerate": 30, + "Ergonomics": 80, + "Velocity": 20, + "bEffDist": 70, + "bHearDist": 1, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "619f54a1d25cbd424731fb99", + "defAmmo": "62330b3ed4dc74626d570b95", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 20, + "Chambers": [], + "ReloadMode": "InternalMagazine", + "CenterOfImpact": 0.15, + "AimPlane": 0.112, + "DeviationCurve": 2, + "DeviationMax": 11, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.2875, + "RecoilReturnSpeedHandRotation": 5.8, + "RecoilDampingHandRotation": 0.82, + "RecoilCamera": 0.0198, + "RecoilStableIndexShot": 3, + "RecoilForceBack": 280, + "RecoilForceUp": 383, + "RecolDispersion": 10, + "RecoilPosZMult": 0.5, + "RecoilReturnPathDampingHandRotation": 0.57, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 80, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.46, + "z": -0.01 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.1, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.8, + "y": 1.8, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.01, + "CameraSnap": 3, + "RotationCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.45, + "z": -0.05 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1495, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1, + "HeatFactorGun": 1.04, + "CoolFactorGun": 4.6, + "CoolFactorGunMods": 0.98, + "HeatFactorByShot": 2.89, + "AllowOverheat": false, + "DoubleActionAccuracyPenalty": 0.7, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "54491c4f4bdc2db1078b4568" + }, + "6259b864ebedf17603599e88": { + "_id": "6259b864ebedf17603599e88", + "_name": "weapon_benelli_m3_s90_12g", + "_parent": "5447b6094bdc2dc3278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_remington_model_870_12g", + "ShortName": "weapon_remington_model_870_12g", + "Description": "weapon_remington_model_870_12g", + "Weight": 1.22, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_pump", + "Prefab": { + "path": "assets/content/weapons/benelli/weapon_benelli_m3_s90_12g_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 92, + "RepairSpeed": 12, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_barrel", + "_id": "6259b864ebedf17603599e89", + "_parent": "6259b864ebedf17603599e88", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6259c2c1d714855d182bad85" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "6259b864ebedf17603599e8a", + "_parent": "6259b864ebedf17603599e88", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6259c4347d6aab70bc23a190" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "6259b864ebedf17603599e8b", + "_parent": "6259b864ebedf17603599e88", + "_props": { + "filters": [ + { + "AnimationIndex": 0, + "Filter": [ + "625ff2ccb8c587128c1a01dd", + "625ff3046d721f05d93bf2ee", + "625ff31daaaa8c1130599f64", + "625ff2eb9f5537057932257d", + "6259bdcabd28e4721447a2aa" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "6259b864ebedf17603599e8c", + "_parent": "6259b864ebedf17603599e88", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6259c3387d6aab70bc23a18d", + "625eb0faa6e3a82193267ad9" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "6259b864ebedf17603599e8d", + "_parent": "6259b864ebedf17603599e88", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "625ed7c64d9b6612df732146" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "625ebdd1a6e3a82193267ae2", + "_parent": "6259b864ebedf17603599e88", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "625ebcef6f53af4aa66b44dc" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "625ec4e5a6e3a82193267af0", + "_parent": "6259b864ebedf17603599e88", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "625ec45bb14d7326ac20f572" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "shotgun", + "weapUseType": "primary", + "ammoCaliber": "Caliber12g", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 3600, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": false, + "weapFireType": [ + "single", + "semiauto" + ], + "SingleFireRate": 300, + "CanQueueSecondShot": false, + "bFirerate": 60, + "Ergonomics": 42, + "Velocity": 0, + "bEffDist": 70, + "bHearDist": 1, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5448bc234bdc2d3c308b4569", + "defAmmo": "560d5e524bdc2d25448b4571", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 20, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "6259b864ebedf17603599e8e", + "_parent": "6259b864ebedf17603599e88", + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "InternalMagazine", + "CenterOfImpact": 0.4, + "AimPlane": 0.112, + "DeviationCurve": 2.5, + "DeviationMax": 10, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.23, + "RecoilReturnSpeedHandRotation": 2.3, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.072, + "RecoilStableIndexShot": 3, + "RecoilForceBack": 595, + "RecoilForceUp": 336, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.52, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.3, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0.1, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2.5, + "y": 2.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 2.6, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.25, + "z": -0.06 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.271975, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.99, + "CoolFactorGun": 4.032, + "CoolFactorGunMods": 1.03, + "HeatFactorByShot": 5.5, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": true, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false, + "ShotgunDispersion": 1 + }, + "_proto": "54491c4f4bdc2db1078b4568" + }, + "5d3eb3b0a4b93615055e84d2": { + "_id": "5d3eb3b0a4b93615055e84d2", + "_name": "weapon_fn_five_seven_57x28", + "_parent": "5447b5cf4bdc2d65278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_fn_five_seven_57x28", + "ShortName": "weapon_fn_five_seven_57x28", + "Description": "weapon_fn_five_seven_57x28", + "Weight": 0.23, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_pistol", + "Prefab": { + "path": "assets/content/weapons/fiveseven/weapon_fn_five_seven_57x28_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 93, + "RepairSpeed": 2, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Pistol", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_barrel", + "_id": "5d3eb3b0a4b93615055e84d4", + "_parent": "5d3eb3b0a4b93615055e84d2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d3eb5b6a4b9361eab311902", + "5d3eb59ea4b9361c284bb4b2" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "5d3eb3b0a4b93615055e84d6", + "_parent": "5d3eb3b0a4b93615055e84d2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d3eb44aa4b93650d64e4979" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5d3eb3b0a4b93615055e84d7", + "_parent": "5d3eb3b0a4b93615055e84d2", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5d3eb5eca4b9363b1f22f8e4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_tactical", + "_id": "5d3eb3b0a4b93615055e84d8", + "_parent": "5d3eb3b0a4b93615055e84d2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5a7b4900e899ef197b331a2a", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "pistol", + "weapUseType": "secondary", + "ammoCaliber": "Caliber57x28", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 3300, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 70, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 30, + "Ergonomics": 86, + "Velocity": 0, + "bEffDist": 50, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5d3eb5eca4b9363b1f22f8e4", + "defAmmo": "5cc80f8fe4a949033b0224a2", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 10, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5d3eb3b0a4b93615055e84d9", + "_parent": "5d3eb3b0a4b93615055e84d2", + "_props": { + "filters": [ + { + "Filter": [ + "5cc80f53e4a949000e1ea4f8", + "5cc86832d7f00c000d3a6e6c", + "5cc86840d7f00c002412c56c", + "5cc80f67e4a949035e43bbba", + "5cc80f38e4a949001152b560", + "5cc80f8fe4a949033b0224a2", + "5cc80f79e4a949033c7343b2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0, + "AimPlane": 0.026, + "DeviationCurve": 2.25, + "DeviationMax": 11, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.138, + "RecoilReturnSpeedHandRotation": 7, + "RecoilDampingHandRotation": 0.8, + "RecoilCamera": 0.0072, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 240, + "RecoilForceUp": 281, + "RecolDispersion": 8, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.43, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.44, + "z": -0.005 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 7, + "RotationCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.45, + "z": -0.05 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.2277, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1.06, + "CoolFactorGun": 4.032, + "CoolFactorGunMods": 0.98, + "HeatFactorByShot": 1.815, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5448bd6b4bdc2dfc2f8b4569" + }, + "5e870397991fd70db46995c8": { + "_id": "5e870397991fd70db46995c8", + "_name": "weapon_mossberg_590a1_12g", + "_parent": "5447b6094bdc2dc3278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_remington_model_870_12g", + "ShortName": "weapon_remington_model_870_12g", + "Description": "weapon_remington_model_870_12g", + "Weight": 1.1, + "BackgroundColor": "black", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_pump", + "Prefab": { + "path": "assets/content/weapons/m590/weapon_mossberg_590a1_12g_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 86, + "RepairSpeed": 12, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_barrel", + "_id": "5e870397991fd70db46995ca", + "_parent": "5e870397991fd70db46995c8", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5e87071478f43e51ca2de5e1" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "5e870397991fd70db46995cb", + "_parent": "5e870397991fd70db46995c8", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5eea21647547d6330471b3c9", + "5e87076ce2db31558c75a11d" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5e870397991fd70db46995cc", + "_parent": "5e870397991fd70db46995c8", + "_props": { + "filters": [ + { + "AnimationIndex": 0, + "Filter": [ + "5e87080c81c4ed43e83cefda" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "5e870397991fd70db46995cd", + "_parent": "5e870397991fd70db46995c8", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5eea217fc64c5d0dfc05712a", + "5ef1b9f0c64c5d0dfc0571a1", + "5e87116b81c4ed43e83cefdd" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5e870397991fd70db46995ce", + "_parent": "5e870397991fd70db46995c8", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5e87114fe2db31558c75a120", + "5eeb2ff5ea4f8b73c827350b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "shotgun", + "weapUseType": "primary", + "ammoCaliber": "Caliber12g", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 3250, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": false, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": false, + "bFirerate": 30, + "Ergonomics": 48, + "Velocity": 0, + "bEffDist": 70, + "bHearDist": 1, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5e87080c81c4ed43e83cefda", + "defAmmo": "560d5e524bdc2d25448b4571", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 20, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5e870397991fd70db46995cf", + "_parent": "5e870397991fd70db46995c8", + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "InternalMagazine", + "CenterOfImpact": 0.42, + "AimPlane": 0.112, + "DeviationCurve": 2.5, + "DeviationMax": 10, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.23, + "RecoilReturnSpeedHandRotation": 2.5, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.078, + "RecoilStableIndexShot": 3, + "RecoilForceBack": 494, + "RecoilForceUp": 421, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.52, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 95, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.3, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0.1, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2.5, + "y": 2.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 2.6, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.25, + "z": -0.06 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.271975, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.99, + "CoolFactorGun": 4.032, + "CoolFactorGunMods": 1.03, + "HeatFactorByShot": 7.1, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false, + "ShotgunDispersion": 1 + }, + "_proto": "54491c4f4bdc2db1078b4568" + }, + "576165642459773c7a400233": { + "_id": "576165642459773c7a400233", + "_name": "weapon_izhmash_saiga12k_10_12g", + "_parent": "5447b6094bdc2dc3278b4567", + "_type": "Item", + "_props": { + "Name": "Saiga", + "ShortName": "Saiga", + "Description": "Saiga", + "Weight": 2.622, + "BackgroundColor": "black", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/saiga12/weapon_izhmash_saiga12k_10_12g_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 99, + "RepairSpeed": 7, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "576166c92459773ccd7031c7", + "_parent": "576165642459773c7a400233", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "638db77630c4240f9e06f8b6", + "63d114019e35b334d82302f7", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "57616d962459773c7a400235", + "_parent": "576165642459773c7a400233", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f63418ef5750b524b45f116", + "6086b5731246154cad35d6c7", + "576169e62459773c69055191", + "5827272a24597748c74bdeea", + "58272b392459774b4c7b3ccd" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "57616dbd2459773c7a400236", + "_parent": "576165642459773c7a400233", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "58272d7f2459774f6311ddfd", + "59fb137a86f7740adb646af1", + "576167ab2459773cad038c43", + "5b363e1b5acfc4771e1c5e80", + "59c0ec5b86f77435b128bfca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "57616dcf2459773ccd7031ca", + "_parent": "576165642459773c7a400233", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "623c3be0484b5003161840dc", + "628c9ab845c59e5b80768a81", + "628a664bccaab13006640e47", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "57616ddc2459773c687dcdc3", + "_parent": "576165642459773c7a400233", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57616c112459773cce774d66" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "57616ded2459773cce774d67", + "_parent": "576165642459773c7a400233", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "58272b842459774abc128d50", + "57a9b9ce2459770ee926038d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "57616e062459773c7a400237", + "_parent": "576165642459773c7a400233", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cf50fc5d7f00c056c53f83c", + "5ac78eaf5acfc4001926317a", + "5beec8b20db834001961942a", + "57616ca52459773c69055192" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "57616e1f2459773cae04eae5", + "_parent": "576165642459773c7a400233", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "57616a9e2459773c7a400234", + "5cf8f3b0d7f00c00217872ef", + "5a966f51a2750c00156aacf6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_charge", + "_id": "57616f1e2459775d4d100241", + "_parent": "576165642459773c7a400233", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "shotgun", + "weapUseType": "primary", + "ammoCaliber": "Caliber12g", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 2250, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 100, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 40, + "Ergonomics": 35, + "Velocity": 2.7, + "bEffDist": 70, + "bHearDist": 1, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "57616a9e2459773c7a400234", + "defAmmo": "560d5e524bdc2d25448b4571", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 20, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "57616e2e2459773c362ab462", + "_parent": "576165642459773c7a400233", + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.6, + "AimPlane": 0.101, + "DeviationCurve": 2.5, + "DeviationMax": 10, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.23, + "RecoilReturnSpeedHandRotation": 2, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.074, + "RecoilStableIndexShot": 3, + "RecoilForceBack": 526, + "RecoilForceUp": 298, + "RecolDispersion": 15, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.52, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0.1, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2.5, + "y": 2.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 2.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.284625, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.9212, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 0.9996, + "HeatFactorByShot": 4.8, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false, + "ShotgunDispersion": 1 + }, + "_proto": "56dee2bdd2720bc8328b4567" + }, + "579204f224597773d619e051": { + "_id": "579204f224597773d619e051", + "_name": "weapon_izhmeh_pm_treaded_9x18pm", + "_parent": "5447b5cf4bdc2d65278b4567", + "_type": "Item", + "_props": { + "Name": "pmtr", + "ShortName": "pmtr", + "Description": "pmtr", + "Weight": 0.69, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_pistol", + "Prefab": { + "path": "assets/content/weapons/pm/weapon_izhmeh_pm_threaded_9x18pm_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 43, + "RepairSpeed": 1, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Pistol", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "5792056c24597773da7463b1", + "_parent": "579204f224597773d619e051", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "55d485be4bdc2d962f8b456f", + "5448c12b4bdc2d02308b456f" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_muzzle", + "_id": "579207a224597773d8662241", + "_parent": "579204f224597773d619e051", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59bffc1f86f77435b128b872", + "5c7e8fab2e22165df16b889b", + "5a33a8ebc4a282000c5a950d", + "5c6165902e22160010261b28", + "5a32a064c4a28200741e22de" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "63c80606ebf7085ac00475e3", + "_parent": "579204f224597773d619e051", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6374a822e629013b9c0645c8" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistolgrip", + "_id": "63c80606ebf7085ac00475e4", + "_parent": "579204f224597773d619e051", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "637784c5f7b3f4ac1a0d1a9a", + "637b6d610aef6cfc5e02dd14", + "6374a7e7417239a7bf00f042", + "648afce7ec6bb25b2608defb" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "pistol", + "weapUseType": "secondary", + "ammoCaliber": "Caliber9x18PM", + "Durability": 90, + "MaxDurability": 100, + "OperatingResource": 2050, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 50, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 30, + "Ergonomics": 80, + "Velocity": -4.54, + "bEffDist": 50, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5448c12b4bdc2d02308b456f", + "defAmmo": "573719762459775a626ccbc1", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 10, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5792051224597773dd2097b1", + "_parent": "579204f224597773d619e051", + "_props": { + "filters": [ + { + "Filter": [ + "573718ba2459775a75491131", + "573719df2459775a626ccbc2", + "57371aab2459775a77142f22", + "57371b192459775a9f58a5e0", + "57371e4124597760ff7b25f1", + "57371eb62459776125652ac1", + "57371f8d24597761006c6a81", + "5737201124597760fc4431f1", + "5737207f24597760ff7b25f2", + "57371f2b24597761224311f1", + "573719762459775a626ccbc1", + "573720e02459776143012541", + "57372140245977611f70ee91", + "5737218f245977612125ba51" + ], + "MaxStackCount": 0 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.38, + "AimPlane": 0.026, + "DeviationCurve": 2.5, + "DeviationMax": 10, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.138, + "RecoilReturnSpeedHandRotation": 5, + "RecoilDampingHandRotation": 0.78, + "RecoilCamera": 0.00847, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 265, + "RecoilForceUp": 380, + "RecolDispersion": 12, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.43, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 85, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.44, + "z": -0.005 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 5, + "RotationCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.45, + "z": -0.05 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.2277, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 4.032, + "CoolFactorGunMods": 1.426972, + "HeatFactorByShot": 1.385, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5448bd6b4bdc2dfc2f8b4569" + }, "5f36a0e5fbf956000b716b65": { "_id": "5f36a0e5fbf956000b716b65", "_name": "weapon_colt_m45a1_1143x23", @@ -247901,336 +247972,6 @@ }, "_proto": "5448bd6b4bdc2dfc2f8b4569" }, - "579204f224597773d619e051": { - "_id": "579204f224597773d619e051", - "_name": "weapon_izhmeh_pm_treaded_9x18pm", - "_parent": "5447b5cf4bdc2d65278b4567", - "_type": "Item", - "_props": { - "Name": "pmtr", - "ShortName": "pmtr", - "Description": "pmtr", - "Weight": 0.69, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_pistol", - "Prefab": { - "path": "assets/content/weapons/pm/weapon_izhmeh_pm_threaded_9x18pm_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 43, - "RepairSpeed": 1, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Pistol", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "5792056c24597773da7463b1", - "_parent": "579204f224597773d619e051", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "55d485be4bdc2d962f8b456f", - "5448c12b4bdc2d02308b456f" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_muzzle", - "_id": "579207a224597773d8662241", - "_parent": "579204f224597773d619e051", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59bffc1f86f77435b128b872", - "5c7e8fab2e22165df16b889b", - "5a33a8ebc4a282000c5a950d", - "5c6165902e22160010261b28", - "5a32a064c4a28200741e22de" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "63c80606ebf7085ac00475e3", - "_parent": "579204f224597773d619e051", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6374a822e629013b9c0645c8" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistolgrip", - "_id": "63c80606ebf7085ac00475e4", - "_parent": "579204f224597773d619e051", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "637784c5f7b3f4ac1a0d1a9a", - "637b6d610aef6cfc5e02dd14", - "6374a7e7417239a7bf00f042", - "648afce7ec6bb25b2608defb" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "pistol", - "weapUseType": "secondary", - "ammoCaliber": "Caliber9x18PM", - "Durability": 90, - "MaxDurability": 100, - "OperatingResource": 2050, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 50, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 30, - "Ergonomics": 80, - "Velocity": -4.54, - "bEffDist": 50, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5448c12b4bdc2d02308b456f", - "defAmmo": "573719762459775a626ccbc1", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5792051224597773dd2097b1", - "_parent": "579204f224597773d619e051", - "_props": { - "filters": [ - { - "Filter": [ - "573718ba2459775a75491131", - "573719df2459775a626ccbc2", - "57371aab2459775a77142f22", - "57371b192459775a9f58a5e0", - "57371e4124597760ff7b25f1", - "57371eb62459776125652ac1", - "57371f8d24597761006c6a81", - "5737201124597760fc4431f1", - "5737207f24597760ff7b25f2", - "57371f2b24597761224311f1", - "573719762459775a626ccbc1", - "573720e02459776143012541", - "57372140245977611f70ee91", - "5737218f245977612125ba51" - ], - "MaxStackCount": 0 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.38, - "AimPlane": 0.026, - "DeviationCurve": 2.5, - "DeviationMax": 10, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.138, - "RecoilReturnSpeedHandRotation": 5, - "RecoilDampingHandRotation": 0.78, - "RecoilCamera": 0.00847, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 265, - "RecoilForceUp": 380, - "RecolDispersion": 12, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.43, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 85, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.44, - "z": -0.005 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 5, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.45, - "z": -0.05 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.2277, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 4.032, - "CoolFactorGunMods": 1.426972, - "HeatFactorByShot": 1.385, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5448bd6b4bdc2dfc2f8b4569" - }, "59f98b4986f7746f546d2cef": { "_id": "59f98b4986f7746f546d2cef", "_name": "weapon_tochmash_sr1mp_9x21", @@ -249088,2637 +248829,6 @@ "ShotgunDispersion": 1 } }, - "63088377b5cd696784087147": { - "_id": "63088377b5cd696784087147", - "_name": "weapon_glock_glock_19x_9x19", - "_parent": "5447b5cf4bdc2d65278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_glock_17_9x19", - "ShortName": "weapon_glock_17_9x19", - "Description": "weapon_glock_17_9x19\n", - "Weight": 0.197, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_pistol", - "Prefab": { - "path": "assets/content/weapons/glock19/weapon_glock_glock_19x_9x19_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 46, - "RepairSpeed": 2, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Pistol", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_barrel", - "_id": "63088377b5cd696784087148", - "_parent": "63088377b5cd696784087147", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "630764fea987397c0816d219" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "63088377b5cd696784087149", - "_parent": "63088377b5cd696784087147", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7b4960e899ef197b331a2d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "63088377b5cd69678408714a", - "_parent": "63088377b5cd696784087147", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "63075cc5962d0247b029dc2a" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "63088377b5cd69678408714b", - "_parent": "63088377b5cd696784087147", - "_props": { - "filters": [ - { - "AnimationIndex": 0, - "Filter": [ - "5a7ad2e851dfba0016153692", - "5a718b548dc32e000d46d262", - "5a718da68dc32e000d46d264", - "5a718f958dc32e00094b97e7", - "630769c4962d0247b029dc60", - "630767c37d50ff5e8a1ea71a", - "63076701a987397c0816d21b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_tactical", - "_id": "63088377b5cd69678408714c", - "_parent": "63088377b5cd696784087147", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5a7b4900e899ef197b331a2a", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "63088377b5cd69678408714d", - "_parent": "63088377b5cd696784087147", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7ad55551dfba0015068f42" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "pistol", - "weapUseType": "secondary", - "ammoCaliber": "Caliber9x19PARA", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 2600, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 70, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 30, - "Ergonomics": 93, - "Velocity": 0, - "bEffDist": 50, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5a718b548dc32e000d46d262", - "defAmmo": "64b7bbb74b75259c590fa897", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "63088377b5cd69678408714f", - "_parent": "63088377b5cd696784087147", - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0, - "AimPlane": 0.026, - "DeviationCurve": 2.25, - "DeviationMax": 11, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.138, - "RecoilReturnSpeedHandRotation": 5, - "RecoilDampingHandRotation": 0.78, - "RecoilCamera": 0.0072, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 250, - "RecoilForceUp": 302, - "RecolDispersion": 8, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.43, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.44, - "z": -0.005 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 5, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.45, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.2277, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.08, - "HeatFactorGun": 1.04, - "CoolFactorGun": 4.032, - "CoolFactorGunMods": 0.98, - "HeatFactorByShot": 1.061, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5448bd6b4bdc2dfc2f8b4569" - }, - "5a7828548dc32e5a9c28b516": { - "_id": "5a7828548dc32e5a9c28b516", - "_name": "weapon_remington_model_870_12g", - "_parent": "5447b6094bdc2dc3278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_remington_model_870_12g", - "ShortName": "weapon_remington_model_870_12g", - "Description": "weapon_remington_model_870_12g", - "Weight": 1.1, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_pump", - "Prefab": { - "path": "assets/content/weapons/m870/weapon_remington_model_870_12g_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 88, - "RepairSpeed": 12, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_barrel", - "_id": "5a7828548dc32e5a9c28b517", - "_parent": "5a7828548dc32e5a9c28b516", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a787ebcc5856700142fdd98", - "5a787f25c5856700186c4ab9", - "5a787f7ac5856700177af660", - "5a787fadc5856700155a6ca1", - "5a787fdfc5856700142fdd9a" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "5a7828548dc32e5a9c28b518", - "_parent": "5a7828548dc32e5a9c28b516", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a788031c585673f2b5c1c79", - "5a788068c5856700137e4c8f", - "5a788089c5856700142fdd9c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5a7828548dc32e5a9c28b519", - "_parent": "5a7828548dc32e5a9c28b516", - "_props": { - "filters": [ - { - "AnimationIndex": 0, - "Filter": [ - "5a7882dcc5856700177af662", - "5a78832ec5856700155a6ca3", - "5a78830bc5856700137e4c90" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "5a7828548dc32e5a9c28b51a", - "_parent": "5a7828548dc32e5a9c28b516", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a78813bc5856700186c4abe", - "5ae35b315acfc4001714e8b0", - "5a7880d0c5856700142fdd9d", - "5a788169c5856700142fdd9e", - "5bfe86a20db834001d23e8f7" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5a789524c5856700177b1126", - "_parent": "5a7828548dc32e5a9c28b516", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a7893c1c585673f2b5c374d", - "5a78948ec5856700177b1124" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "shotgun", - "weapUseType": "primary", - "ammoCaliber": "Caliber12g", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 3250, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": false, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": false, - "bFirerate": 30, - "Ergonomics": 45, - "Velocity": 0, - "bEffDist": 70, - "bHearDist": 1, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5a7882dcc5856700177af662", - "defAmmo": "560d5e524bdc2d25448b4571", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 20, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5a7828548dc32e5a9c28b51d", - "_parent": "5a7828548dc32e5a9c28b516", - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "InternalMagazine", - "CenterOfImpact": 0.4, - "AimPlane": 0.112, - "DeviationCurve": 2.5, - "DeviationMax": 10, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.23, - "RecoilReturnSpeedHandRotation": 2.5, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.078, - "RecoilStableIndexShot": 3, - "RecoilForceBack": 471, - "RecoilForceUp": 397, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.52, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.3, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0.1, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2.5, - "y": 2.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 2.6, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.25, - "z": -0.06 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.271975, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.99, - "CoolFactorGun": 4.032, - "CoolFactorGunMods": 1.03, - "HeatFactorByShot": 5.5, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false, - "ShotgunDispersion": 1 - }, - "_proto": "54491c4f4bdc2db1078b4568" - }, - "576165642459773c7a400233": { - "_id": "576165642459773c7a400233", - "_name": "weapon_izhmash_saiga12k_10_12g", - "_parent": "5447b6094bdc2dc3278b4567", - "_type": "Item", - "_props": { - "Name": "Saiga", - "ShortName": "Saiga", - "Description": "Saiga", - "Weight": 2.622, - "BackgroundColor": "black", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/saiga12/weapon_izhmash_saiga12k_10_12g_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 99, - "RepairSpeed": 7, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_mount_000", - "_id": "576166c92459773ccd7031c7", - "_parent": "576165642459773c7a400233", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "5c61a40d2e2216001403158d", - "5c90c3622e221601da359851", - "638db77630c4240f9e06f8b6", - "63d114019e35b334d82302f7", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "57616d962459773c7a400235", - "_parent": "576165642459773c7a400233", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f63418ef5750b524b45f116", - "6086b5731246154cad35d6c7", - "576169e62459773c69055191", - "5827272a24597748c74bdeea", - "58272b392459774b4c7b3ccd" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "57616dbd2459773c7a400236", - "_parent": "576165642459773c7a400233", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "58272d7f2459774f6311ddfd", - "59fb137a86f7740adb646af1", - "576167ab2459773cad038c43", - "5b363e1b5acfc4771e1c5e80", - "59c0ec5b86f77435b128bfca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "57616dcf2459773ccd7031ca", - "_parent": "576165642459773c7a400233", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "623c3be0484b5003161840dc", - "628c9ab845c59e5b80768a81", - "628a664bccaab13006640e47", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "57616ddc2459773c687dcdc3", - "_parent": "576165642459773c7a400233", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57616c112459773cce774d66" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "57616ded2459773cce774d67", - "_parent": "576165642459773c7a400233", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "58272b842459774abc128d50", - "57a9b9ce2459770ee926038d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "57616e062459773c7a400237", - "_parent": "576165642459773c7a400233", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cf50fc5d7f00c056c53f83c", - "5ac78eaf5acfc4001926317a", - "5beec8b20db834001961942a", - "57616ca52459773c69055192" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "57616e1f2459773cae04eae5", - "_parent": "576165642459773c7a400233", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "57616a9e2459773c7a400234", - "5cf8f3b0d7f00c00217872ef", - "5a966f51a2750c00156aacf6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_charge", - "_id": "57616f1e2459775d4d100241", - "_parent": "576165642459773c7a400233", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "shotgun", - "weapUseType": "primary", - "ammoCaliber": "Caliber12g", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 2250, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 100, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 40, - "Ergonomics": 35, - "Velocity": 2.7, - "bEffDist": 70, - "bHearDist": 1, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "57616a9e2459773c7a400234", - "defAmmo": "560d5e524bdc2d25448b4571", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 20, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "57616e2e2459773c362ab462", - "_parent": "576165642459773c7a400233", - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.6, - "AimPlane": 0.101, - "DeviationCurve": 2.5, - "DeviationMax": 10, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.23, - "RecoilReturnSpeedHandRotation": 2, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.074, - "RecoilStableIndexShot": 3, - "RecoilForceBack": 526, - "RecoilForceUp": 298, - "RecolDispersion": 15, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.52, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0.1, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2.5, - "y": 2.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 2.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.284625, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.9212, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 0.9996, - "HeatFactorByShot": 4.8, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false, - "ShotgunDispersion": 1 - }, - "_proto": "56dee2bdd2720bc8328b4567" - }, - "56dee2bdd2720bc8328b4567": { - "_id": "56dee2bdd2720bc8328b4567", - "_name": "weapon_izhmeh_mr153_12g", - "_parent": "5447b6094bdc2dc3278b4567", - "_type": "Item", - "_props": { - "Name": "Ружье МР-153 12к", - "ShortName": "МР-153 12к", - "Description": "Гладкоствольное многозарядное ружьё МР-153, производства ИжМех. Надежное и удобное оружие для охоты и самообороны.", - "Weight": 1.2, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/mr153/weapon_izhmeh_mr153_12g_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 82, - "RepairSpeed": 8, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_barrel", - "_id": "56deec06d2720bec348b4567", - "_parent": "56dee2bdd2720bc8328b4567", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "588200af24597742fa221dfb", - "588200c224597743990da9ed", - "588200cf2459774414733d55", - "56deec93d2720bec348b4568" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "56deef95d2720b4c698b4584", - "_parent": "56dee2bdd2720bc8328b4567", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "56deed6ed2720b4c698b4583" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "56deefc4d2720bb1328b4568", - "_parent": "56dee2bdd2720bc8328b4567", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "55d484b44bdc2d1d4e8b456d", - "55d485804bdc2d8c2f8b456b", - "56deee15d2720bee328b4567", - "5882163e24597758206fee8c", - "5882163824597757561aa922", - "5882163224597757561aa920", - "56deeefcd2720bc8328b4568" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "56def02cd2720bec348b4569", - "_parent": "56dee2bdd2720bc8328b4567", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bfe7fb30db8340018089fed", - "56083a334bdc2dc8488b4571", - "56083be64bdc2d20478b456f", - "56083cba4bdc2de22e8b456f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "56f2a14dd2720bc7308b45a2", - "_parent": "56dee2bdd2720bc8328b4567", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d48a634bdc2d8b2f8b456a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "58172a6d24597714a658fe64", - "_parent": "56dee2bdd2720bc8328b4567", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d48ebc4bdc2d8c2f8b456c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "shotgun", - "weapUseType": "primary", - "ammoCaliber": "Caliber12g", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 2800, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": false, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 40, - "Ergonomics": 43, - "Velocity": 0, - "bEffDist": 70, - "bHearDist": 1, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "56deee15d2720bee328b4567", - "defAmmo": "560d5e524bdc2d25448b4571", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 20, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "56deebd7d2720bbd328b4567", - "_parent": "56dee2bdd2720bc8328b4567", - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "InternalMagazine", - "CenterOfImpact": 0.5, - "AimPlane": 0.114, - "DeviationCurve": 2.5, - "DeviationMax": 10, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.23, - "RecoilReturnSpeedHandRotation": 2.2, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.071, - "RecoilStableIndexShot": 3, - "RecoilForceBack": 474, - "RecoilForceUp": 348, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.52, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.3, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0.1, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2.5, - "y": 2.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 2.8, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.25, - "z": -0.06 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.284625, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.99, - "CoolFactorGun": 4.032, - "CoolFactorGunMods": 1.03, - "HeatFactorByShot": 4.9, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false, - "ShotgunDispersion": 1 - }, - "_proto": "54491c4f4bdc2db1078b4568" - }, - "61a4c8884f95bc3b2c5dc96f": { - "_id": "61a4c8884f95bc3b2c5dc96f", - "_name": "weapon_chiappa_rhino_50ds_9x33R", - "_parent": "617f1ef5e8b54b0998387733", - "_type": "Item", - "_props": { - "Name": "weapon_ckib_mc_255_12g", - "ShortName": "weapon_ckib_mc_255_12g", - "Description": "weapon_ckib_mc_255_12g", - "Weight": 0.685, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_pistol", - "Prefab": { - "path": "assets/content/weapons/rhino/weapon_chiappa_rhino_50ds_9x33r_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 70, - "RepairSpeed": 12, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "Holster", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Pistol", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "61a4c8884f95bc3b2c5dc971", - "_parent": "61a4c8884f95bc3b2c5dc96f", - "_props": { - "filters": [ - { - "AnimationIndex": 0, - "Filter": [ - "619f54a1d25cbd424731fb99" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_sight_rear", - "_id": "61a4c8884f95bc3b2c5dc972", - "_parent": "61a4c8884f95bc3b2c5dc96f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "619f4f8c4c58466fe1228439", - "619f4cee4c58466fe1228435" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_front", - "_id": "61a4c8884f95bc3b2c5dc973", - "_parent": "61a4c8884f95bc3b2c5dc96f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "619f52454c58466fe122843b", - "619f4d304c58466fe1228437" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "61a4c8884f95bc3b2c5dc974", - "_parent": "61a4c8884f95bc3b2c5dc96f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "619f4ab2d25cbd424731fb95", - "619f4bffd25cbd424731fb97" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "61a4c8884f95bc3b2c5dc975", - "_parent": "61a4c8884f95bc3b2c5dc96f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "626becf9582c3e319310b837" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "pistol", - "weapUseType": "secondary", - "ammoCaliber": "Caliber9x33R", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 2800, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": false, - "weapFireType": [ - "single", - "doubleaction" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": false, - "bFirerate": 30, - "Ergonomics": 80, - "Velocity": 20, - "bEffDist": 70, - "bHearDist": 1, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "619f54a1d25cbd424731fb99", - "defAmmo": "62330b3ed4dc74626d570b95", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 20, - "Chambers": [], - "ReloadMode": "InternalMagazine", - "CenterOfImpact": 0.15, - "AimPlane": 0.112, - "DeviationCurve": 2, - "DeviationMax": 11, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2875, - "RecoilReturnSpeedHandRotation": 5.8, - "RecoilDampingHandRotation": 0.82, - "RecoilCamera": 0.0198, - "RecoilStableIndexShot": 3, - "RecoilForceBack": 280, - "RecoilForceUp": 383, - "RecolDispersion": 10, - "RecoilPosZMult": 0.5, - "RecoilReturnPathDampingHandRotation": 0.57, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 80, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.46, - "z": -0.01 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.1, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.8, - "y": 1.8, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.01, - "CameraSnap": 3, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.45, - "z": -0.05 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1495, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1, - "HeatFactorGun": 1.04, - "CoolFactorGun": 4.6, - "CoolFactorGunMods": 0.98, - "HeatFactorByShot": 2.89, - "AllowOverheat": false, - "DoubleActionAccuracyPenalty": 0.7, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "54491c4f4bdc2db1078b4568" - }, - "6259b864ebedf17603599e88": { - "_id": "6259b864ebedf17603599e88", - "_name": "weapon_benelli_m3_s90_12g", - "_parent": "5447b6094bdc2dc3278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_remington_model_870_12g", - "ShortName": "weapon_remington_model_870_12g", - "Description": "weapon_remington_model_870_12g", - "Weight": 1.22, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_pump", - "Prefab": { - "path": "assets/content/weapons/benelli/weapon_benelli_m3_s90_12g_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 92, - "RepairSpeed": 12, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_barrel", - "_id": "6259b864ebedf17603599e89", - "_parent": "6259b864ebedf17603599e88", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6259c2c1d714855d182bad85" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "6259b864ebedf17603599e8a", - "_parent": "6259b864ebedf17603599e88", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6259c4347d6aab70bc23a190" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "6259b864ebedf17603599e8b", - "_parent": "6259b864ebedf17603599e88", - "_props": { - "filters": [ - { - "AnimationIndex": 0, - "Filter": [ - "625ff2ccb8c587128c1a01dd", - "625ff3046d721f05d93bf2ee", - "625ff31daaaa8c1130599f64", - "625ff2eb9f5537057932257d", - "6259bdcabd28e4721447a2aa" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "6259b864ebedf17603599e8c", - "_parent": "6259b864ebedf17603599e88", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6259c3387d6aab70bc23a18d", - "625eb0faa6e3a82193267ad9" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "6259b864ebedf17603599e8d", - "_parent": "6259b864ebedf17603599e88", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "625ed7c64d9b6612df732146" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "625ebdd1a6e3a82193267ae2", - "_parent": "6259b864ebedf17603599e88", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "625ebcef6f53af4aa66b44dc" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "625ec4e5a6e3a82193267af0", - "_parent": "6259b864ebedf17603599e88", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "625ec45bb14d7326ac20f572" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "shotgun", - "weapUseType": "primary", - "ammoCaliber": "Caliber12g", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 3600, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": false, - "weapFireType": [ - "single", - "semiauto" - ], - "SingleFireRate": 300, - "CanQueueSecondShot": false, - "bFirerate": 60, - "Ergonomics": 42, - "Velocity": 0, - "bEffDist": 70, - "bHearDist": 1, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5448bc234bdc2d3c308b4569", - "defAmmo": "560d5e524bdc2d25448b4571", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 20, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "6259b864ebedf17603599e8e", - "_parent": "6259b864ebedf17603599e88", - "_props": { - "filters": [ - { - "Filter": [ - "560d5e524bdc2d25448b4571", - "5d6e6772a4b936088465b17c", - "5d6e67fba4b9361bc73bc779", - "5d6e6806a4b936088465b17e", - "5d6e68dea4b9361bcc29e659", - "5d6e6911a4b9361bd5780d52", - "5c0d591486f7744c505b416f", - "58820d1224597753c90aeb13", - "5d6e68c4a4b9361b93413f79", - "5d6e68a8a4b9360b6c0d54e2", - "5d6e68e6a4b9361c140bcfe0", - "5d6e6869a4b9361c140bcfde", - "5d6e68b3a4b9361bca7e50b5", - "5d6e6891a4b9361bd473feea", - "5d6e689ca4b9361bc8618956", - "5d6e68d1a4b93622fe60e845", - "64b8ee384b75259c590fa89b" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "InternalMagazine", - "CenterOfImpact": 0.4, - "AimPlane": 0.112, - "DeviationCurve": 2.5, - "DeviationMax": 10, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.23, - "RecoilReturnSpeedHandRotation": 2.3, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.072, - "RecoilStableIndexShot": 3, - "RecoilForceBack": 595, - "RecoilForceUp": 336, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.52, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.3, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0.1, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2.5, - "y": 2.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 2.6, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.25, - "z": -0.06 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.271975, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.99, - "CoolFactorGun": 4.032, - "CoolFactorGunMods": 1.03, - "HeatFactorByShot": 5.5, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": true, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false, - "ShotgunDispersion": 1 - }, - "_proto": "54491c4f4bdc2db1078b4568" - }, - "56d59856d2720bd8418b456a": { - "_id": "56d59856d2720bd8418b456a", - "_name": "weapon_sig_p226r_9x19", - "_parent": "5447b5cf4bdc2d65278b4567", - "_type": "Item", - "_props": { - "Name": "Пистолет P226R 9х19", - "ShortName": "P226R", - "Description": "Зиган", - "Weight": 0.231, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_pistol", - "Prefab": { - "path": "assets/content/weapons/p226r/weapon_sig_p226r_9x19_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 41, - "RepairSpeed": 2, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Pistol", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_barrel", - "_id": "56d59f62d2720bdc418b4569", - "_parent": "56d59856d2720bd8418b456a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "56d5a1f7d2720bb3418b456a", - "587de4282459771bca0ec90b" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistol_grip", - "_id": "56d59f88d2720b92418b4569", - "_parent": "56d59856d2720bd8418b456a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bffec120db834001c38f5fa", - "5bffef760db8340019668fe4", - "5b39ffbd5acfc47a8773fb06", - "5c0006470db834001a6697fe", - "56d5a2bbd2720bb8418b456a", - "57c9a89124597704ee6faec1", - "5c00076d0db834001d23ee1f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "56d59f98d2720bd7418b4569", - "_parent": "56d59856d2720bd8418b456a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5bffe7c50db834001d23ece1", - "5c010a700db834001d23ef5d", - "5c0125fc0db834001a669aa3", - "56d5a407d2720bb3418b456b", - "5c0009510db834001966907f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "56d6ed94d2720b8a0a8b456a", - "_parent": "56d59856d2720bd8418b456a", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5c920e902e221644f31c3c99", - "56d59948d2720bb7418b4582" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_tactical", - "_id": "56def3c2d2720bd4328b456a", - "_parent": "56d59856d2720bd8418b456a", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "5cc9c20cd7f00c001336c65d", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5a7b4900e899ef197b331a2a", - "5b3a08b25acfc4001754880c", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "pistol", - "weapUseType": "secondary", - "ammoCaliber": "Caliber9x19PARA", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 2600, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 70, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 30, - "Ergonomics": 80, - "Velocity": 0, - "bEffDist": 50, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "56d59948d2720bb7418b4582", - "defAmmo": "64b7bbb74b75259c590fa897", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "56d5aef7d2720be4418b456a", - "_parent": "56d59856d2720bd8418b456a", - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0, - "AimPlane": 0.026, - "DeviationCurve": 2.25, - "DeviationMax": 11, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.138, - "RecoilReturnSpeedHandRotation": 5, - "RecoilDampingHandRotation": 0.8, - "RecoilCamera": 0.00816, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 275, - "RecoilForceUp": 383, - "RecolDispersion": 8, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.43, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 85, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.44, - "z": -0.005 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 5, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.45, - "z": -0.05 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.2277, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.96, - "CoolFactorGun": 4.032, - "CoolFactorGunMods": 1.06, - "HeatFactorByShot": 2.395, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5448bd6b4bdc2dfc2f8b4569" - }, "5b1fa9b25acfc40018633c01": { "_id": "5b1fa9b25acfc40018633c01", "_name": "weapon_glock_glock_18c_gen3_9x19", @@ -252107,6 +249217,363 @@ }, "_proto": "5448bd6b4bdc2dfc2f8b4569" }, + "56d59856d2720bd8418b456a": { + "_id": "56d59856d2720bd8418b456a", + "_name": "weapon_sig_p226r_9x19", + "_parent": "5447b5cf4bdc2d65278b4567", + "_type": "Item", + "_props": { + "Name": "Пистолет P226R 9х19", + "ShortName": "P226R", + "Description": "Зиган", + "Weight": 0.231, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_pistol", + "Prefab": { + "path": "assets/content/weapons/p226r/weapon_sig_p226r_9x19_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 41, + "RepairSpeed": 2, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Pistol", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_barrel", + "_id": "56d59f62d2720bdc418b4569", + "_parent": "56d59856d2720bd8418b456a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "56d5a1f7d2720bb3418b456a", + "587de4282459771bca0ec90b" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistol_grip", + "_id": "56d59f88d2720b92418b4569", + "_parent": "56d59856d2720bd8418b456a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bffec120db834001c38f5fa", + "5bffef760db8340019668fe4", + "5b39ffbd5acfc47a8773fb06", + "5c0006470db834001a6697fe", + "56d5a2bbd2720bb8418b456a", + "57c9a89124597704ee6faec1", + "5c00076d0db834001d23ee1f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "56d59f98d2720bd7418b4569", + "_parent": "56d59856d2720bd8418b456a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bffe7c50db834001d23ece1", + "5c010a700db834001d23ef5d", + "5c0125fc0db834001a669aa3", + "56d5a407d2720bb3418b456b", + "5c0009510db834001966907f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "56d6ed94d2720b8a0a8b456a", + "_parent": "56d59856d2720bd8418b456a", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5c920e902e221644f31c3c99", + "56d59948d2720bb7418b4582" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_tactical", + "_id": "56def3c2d2720bd4328b456a", + "_parent": "56d59856d2720bd8418b456a", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5cc9c20cd7f00c001336c65d", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5a7b4900e899ef197b331a2a", + "5b3a08b25acfc4001754880c", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "pistol", + "weapUseType": "secondary", + "ammoCaliber": "Caliber9x19PARA", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 2600, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 70, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 30, + "Ergonomics": 80, + "Velocity": 0, + "bEffDist": 50, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "56d59948d2720bb7418b4582", + "defAmmo": "64b7bbb74b75259c590fa897", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 10, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "56d5aef7d2720be4418b456a", + "_parent": "56d59856d2720bd8418b456a", + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0, + "AimPlane": 0.026, + "DeviationCurve": 2.25, + "DeviationMax": 11, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.138, + "RecoilReturnSpeedHandRotation": 5, + "RecoilDampingHandRotation": 0.8, + "RecoilCamera": 0.00816, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 275, + "RecoilForceUp": 383, + "RecolDispersion": 8, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.43, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 85, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.44, + "z": -0.005 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 5, + "RotationCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.45, + "z": -0.05 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.2277, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.96, + "CoolFactorGun": 4.032, + "CoolFactorGunMods": 1.06, + "HeatFactorByShot": 2.395, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5448bd6b4bdc2dfc2f8b4569" + }, "60db29ce99594040e04c4a27": { "_id": "60db29ce99594040e04c4a27", "_name": "weapon_ckib_mc_255_12g", @@ -253803,23 +251270,23 @@ }, "_proto": "56d59856d2720bd8418b456a" }, - "571a12c42459771f627b58a0": { - "_id": "571a12c42459771f627b58a0", - "_name": "weapon_toz_tt_762x25tt", + "5e81c3cbac2bb513793cdc75": { + "_id": "5e81c3cbac2bb513793cdc75", + "_name": "weapon_colt_m1911a1_1143x23", "_parent": "5447b5cf4bdc2d65278b4567", "_type": "Item", "_props": { - "Name": "weapon_toz_tt_762x25tt_gold", - "ShortName": "weapon_toz_tt_762x25tt_gold", - "Description": "weapon_toz_tt_762x25tt_gold", - "Weight": 0.664, + "Name": "weapon_colt_m1911a1_1143x23", + "ShortName": "weapon_colt_m1911a1_1143x23", + "Description": "weapon_colt_m1911a1_1143x23\n", + "Weight": 0.231, "BackgroundColor": "black", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "weap_pistol", "Prefab": { - "path": "assets/content/weapons/tt/weapon_toz_tt_762x25tt_container.bundle", + "path": "assets/content/weapons/m1911a1/weapon_colt_m1911a1_1143x23_container.bundle", "rcid": "" }, "UsePrefab": { @@ -253837,10 +251304,10 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 6, + "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 21, - "RepairSpeed": 3, + "RepairCost": 41, + "RepairSpeed": 2, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -253867,16 +251334,16 @@ "Slots": [ { "_name": "mod_barrel", - "_id": "571a13b32459771fd448f522", - "_parent": "571a12c42459771f627b58a0", + "_id": "5e81c3cbac2bb513793cdc77", + "_parent": "5e81c3cbac2bb513793cdc75", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "571a26d524597720680fbe8a", - "571a279b24597720b4066566", - "5b3baf8f5acfc40dc5296692" + "5e81c519cb2b95385c177551", + "5f3e7801153b8571434a924c", + "5f3e77f59103d430b93f94c1" ] } ] @@ -253887,18 +251354,35 @@ }, { "_name": "mod_pistol_grip", - "_id": "571a13d82459771fd448f523", - "_parent": "571a12c42459771f627b58a0", + "_id": "5e81c3cbac2bb513793cdc78", + "_parent": "5e81c3cbac2bb513793cdc75", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5c0684e50db834002a12585a", - "5bffcf7a0db83400232fea79", - "5c079ec50db834001966a706", - "5b3cadf35acfc400194776a0", - "571a282c2459771fb2755a69" + "5e81c6bf763d9f754677beff", + "5ef366938cef260c0642acad", + "626a9cb151cb5849f6002890" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "5e81c3cbac2bb513793cdc79", + "_parent": "5e81c3cbac2bb513793cdc75", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5e81edc13397a21db957f6a1", + "5f3e7823ddc4f03b010e2045" ] } ] @@ -253909,14 +251393,16 @@ }, { "_name": "mod_magazine", - "_id": "571a39602459771d1a341e26", - "_parent": "571a12c42459771f627b58a0", + "_id": "5e81c3cbac2bb513793cdc7a", + "_parent": "5e81c3cbac2bb513793cdc75", "_props": { "filters": [ { - "AnimationIndex": -1, + "AnimationIndex": 0, "Filter": [ - "571a29dc2459771fb2755a6a" + "5e81c4ca763d9f754677befa", + "5f3e77b26cda304dcc634057", + "5ef3448ab37dfd6af863525c" ] } ] @@ -253926,15 +251412,77 @@ "_proto": "55d30c394bdc2dae468b4577" }, { - "_name": "mod_muzzle", - "_id": "5bffd9000db83400232feb12", - "_parent": "571a12c42459771f627b58a0", + "_name": "mod_trigger", + "_id": "5e8206f4cb2b95385c17759c", + "_parent": "5e81c3cbac2bb513793cdc75", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5bffd7ed0db834001d23ebf9" + "5ef32e4d1c1fd62aea6a150d", + "5e81c6a2ac2bb513793cdc7f", + "5f3e772a670e2a7b01739a52" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_hammer", + "_id": "5e820703ac2bb513793cdd0d", + "_parent": "5e81c3cbac2bb513793cdc75", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5e81c550763d9f754677befd", + "5f3e76d86cda304dcc634054", + "5ef35f46382a846010715a96", + "5ef35d2ac64c5d0dfc0571b0", + "5ef35bc243cb350a955a7ccd" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_catch", + "_id": "5e82070e763d9f754677bf93", + "_parent": "5e81c3cbac2bb513793cdc75", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5e81c539cb2b95385c177553", + "5f3e777688ca2d00ad199d25", + "5ef3553c43cb350a955a7ccb" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5ef5d9bc22584f36a62bc2a6", + "_parent": "5e81c3cbac2bb513793cdc75", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ef5d994dfbc9f3c660ded95" ] } ] @@ -253944,15 +251492,15 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_tactical", - "_id": "5c079fef0db834001808abf8", - "_parent": "571a12c42459771f627b58a0", + "_name": "mod_mount_001", + "_id": "5ef5d9c76b0e105bd96c76db", + "_parent": "5e81c3cbac2bb513793cdc75", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5c079ed60db834001a66b372" + "5ef369b08cef260c0642acaf" ] } ] @@ -253966,13 +251514,13 @@ "CantRemoveFromSlotsDuringRaid": [], "weapClass": "pistol", "weapUseType": "secondary", - "ammoCaliber": "Caliber762x25TT", + "ammoCaliber": "Caliber1143x23ACP", "Durability": 100, "MaxDurability": 100, - "OperatingResource": 2600, + "OperatingResource": 3000, "RepairComplexity": 0, "durabSpawnMin": 25, - "durabSpawnMax": 75, + "durabSpawnMax": 70, "isFastReload": true, "weapFireType": [ "single" @@ -253980,33 +251528,31 @@ "SingleFireRate": 450, "CanQueueSecondShot": true, "bFirerate": 30, - "Ergonomics": 70, + "Ergonomics": 75, "Velocity": 0, "bEffDist": 50, "bHearDist": 80, "isChamberLoad": true, "chamberAmmoCount": 1, "isBoltCatch": true, - "defMagType": "571a29dc2459771fb2755a6a", - "defAmmo": "5736026a245977644601dc61", + "defMagType": "5e81c4ca763d9f754677befa", + "defAmmo": "5e81f423763d9f754677bf2e", "AdjustCollimatorsToTrajectory": false, "shotgunDispersion": 10, "Chambers": [ { "_name": "patron_in_weapon", - "_id": "571a13822459771fb2755a68", - "_parent": "571a12c42459771f627b58a0", + "_id": "5e81c3cbac2bb513793cdc7e", + "_parent": "5e81c3cbac2bb513793cdc75", "_props": { "filters": [ { "Filter": [ - "5735ff5c245977640e39ba7e", - "573601b42459776410737435", - "573602322459776445391df1", - "5736026a245977644601dc61", - "573603562459776430731618", - "573603c924597764442bd9cb", - "5735fdcd2459776445391d61" + "5e81f423763d9f754677bf2e", + "5efb0cabfb3e451d70735af5", + "5efb0fc6aeb21837e749c801", + "5efb0d4f4bc50b58e81710f3", + "5ea2a8e200685063ec28c05a" ] } ] @@ -254032,15 +251578,15 @@ "RecoilCategoryMultiplierHandRotation": 0.138, "RecoilReturnSpeedHandRotation": 5, "RecoilDampingHandRotation": 0.8, - "RecoilCamera": 0.012, + "RecoilCamera": 0.0122, "RecoilStableIndexShot": 4, - "RecoilForceBack": 325, - "RecoilForceUp": 553, + "RecoilForceBack": 355, + "RecoilForceUp": 451, "RecolDispersion": 10, "RecoilPosZMult": 1, "RecoilReturnPathDampingHandRotation": 0.43, "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, + "RecoilAngle": 80, "RecoilStableAngleIncreaseStep": 2.5, "ProgressRecoilAngleOnStable": { "x": 0, @@ -254098,7 +251644,7 @@ "RotationCenterNoStock": { "x": 0, "y": -0.45, - "z": -0.05 + "z": -0.08 }, "SizeReduceRight": 0, "FoldedSlot": "", @@ -254122,10 +251668,10 @@ "AllowMisfire": true, "AllowSlide": true, "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.9216, + "HeatFactorGun": 0.96, "CoolFactorGun": 4.032, - "CoolFactorGunMods": 1.1236, - "HeatFactorByShot": 4.85, + "CoolFactorGunMods": 1.06, + "HeatFactorByShot": 3.26, "AllowOverheat": true, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, @@ -254139,25 +251685,25 @@ "WithAnimatorAiming": false, "blockLeftStance": false }, - "_proto": "56d59856d2720bd8418b456a" + "_proto": "5448bd6b4bdc2dfc2f8b4569" }, - "5a17f98cfcdbcb0980087290": { - "_id": "5a17f98cfcdbcb0980087290", - "_name": "weapon_molot_aps_9x18pm", + "602a9740da11d6478d5a06dc": { + "_id": "602a9740da11d6478d5a06dc", + "_name": "weapon_izhmash_pl15_9x19", "_parent": "5447b5cf4bdc2d65278b4567", "_type": "Item", "_props": { - "Name": "weapon_molot_aps_9x18pm", - "ShortName": "weapon_molot_aps_9x18pm", - "Description": "weapon_molot_aps_9x18pm", - "Weight": 0.86, + "Name": "weapon_glock_17_9x19", + "ShortName": "weapon_glock_17_9x19", + "Description": "weapon_glock_17_9x19\n", + "Weight": 0.49, "BackgroundColor": "black", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "weap_pistol", "Prefab": { - "path": "assets/content/weapons/aps/weapon_molot_aps_9x18pm_container.bundle", + "path": "assets/content/weapons/pl15/weapon_izhmash_pl15_9x19_container.bundle", "rcid": "" }, "UsePrefab": { @@ -254177,7 +251723,1348 @@ "LootExperience": 10, "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 58, + "RepairCost": 43, + "RepairSpeed": 2, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Pistol", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_barrel", + "_id": "602a9740da11d6478d5a06de", + "_parent": "602a9740da11d6478d5a06dc", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "602a95edda11d6478d5a06da", + "602a95fe4e02ce1eaa358729" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "602a9740da11d6478d5a06e0", + "_parent": "602a9740da11d6478d5a06dc", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "60228924961b8d75ee233c32" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "602a9740da11d6478d5a06e1", + "_parent": "602a9740da11d6478d5a06dc", + "_props": { + "filters": [ + { + "AnimationIndex": 0, + "Filter": [ + "602286df23506e50807090c6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_tactical", + "_id": "602a9740da11d6478d5a06e2", + "_parent": "602a9740da11d6478d5a06dc", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a7b4900e899ef197b331a2a", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "pistol", + "weapUseType": "secondary", + "ammoCaliber": "Caliber9x19PARA", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 6000, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 70, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 30, + "Ergonomics": 93, + "Velocity": 0, + "bEffDist": 50, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5a718b548dc32e000d46d262", + "defAmmo": "56d59d3ad2720bdb418b4577", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 10, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "602a9740da11d6478d5a06e5", + "_parent": "602a9740da11d6478d5a06dc", + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0, + "AimPlane": 0.026, + "DeviationCurve": 2.25, + "DeviationMax": 11, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.138, + "RecoilReturnSpeedHandRotation": 5.5, + "RecoilDampingHandRotation": 0.8, + "RecoilCamera": 0.0072, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 235, + "RecoilForceUp": 289, + "RecolDispersion": 8, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.43, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.44, + "z": -0.005 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 5.5, + "RotationCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.45, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.2277, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.96, + "CoolFactorGun": 4.032, + "CoolFactorGunMods": 1.06, + "HeatFactorByShot": 2.52, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5448bd6b4bdc2dfc2f8b4569" + }, + "5580223e4bdc2d1c128b457f": { + "_id": "5580223e4bdc2d1c128b457f", + "_name": "weapon_izhmeh_mr43e-1c_12g", + "_parent": "5447b6094bdc2dc3278b4567", + "_type": "Item", + "_props": { + "Name": "Двуствольное ружье МР43e", + "ShortName": "МР43e", + "Description": "Мечта охотника. Двустволка мать ее так!", + "Weight": 1.88, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_rifle", + "Prefab": { + "path": "assets/content/weapons/mr43/weapon_izhmeh_mr43_12g_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 60, + "RepairSpeed": 2, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_barrel", + "_id": "55d5a27c4bdc2d8c2f8b456f", + "_parent": "5580223e4bdc2d1c128b457f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5580169d4bdc2d9d138b4585", + "55d447bb4bdc2d892f8b456f", + "611a30addbdd8440277441dc" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "611a35095b7ffe001b4649d3", + "_parent": "5580223e4bdc2d1c128b457f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "611a31ce5b7ffe001b4649d1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "shotgun", + "weapUseType": "primary", + "ammoCaliber": "Caliber12g", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 10000, + "RepairComplexity": 0, + "durabSpawnMin": 50, + "durabSpawnMax": 75, + "isFastReload": false, + "weapFireType": [ + "single", + "doublet" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 900, + "Ergonomics": 44, + "Velocity": 0, + "bEffDist": 100, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5448bc234bdc2d3c308b4569", + "defAmmo": "560d5e524bdc2d25448b4571", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon_000", + "_id": "56eaa954d2720b7c698b4571", + "_parent": "5580223e4bdc2d1c128b457f", + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + }, + { + "_name": "patron_in_weapon_001", + "_id": "56eaa95ed2720b69698b456e", + "_parent": "5580223e4bdc2d1c128b457f", + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "OnlyBarrel", + "CenterOfImpact": 0.01, + "AimPlane": 0, + "DeviationCurve": 2.5, + "DeviationMax": 10, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.23, + "RecoilReturnSpeedHandRotation": 2.2, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.074, + "RecoilStableIndexShot": 2, + "RecoilForceBack": 413, + "RecoilForceUp": 279, + "RecolDispersion": 23, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.52, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.31, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0.1, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2.5, + "y": 2.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 2.2, + "RotationCenter": { + "x": 0, + "y": -0.15, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.21505, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": true, + "AllowSlide": false, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.99, + "CoolFactorGun": 4.608, + "CoolFactorGunMods": 1.02, + "HeatFactorByShot": 11.62, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false, + "ShotgunDispersion": 1 + } + }, + "5a38e6bac4a2826c6e06d79b": { + "_id": "5a38e6bac4a2826c6e06d79b", + "_name": "weapon_toz_toz-106_20g", + "_parent": "5447b6094bdc2dc3278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_toz_toz-106_20g", + "ShortName": "weapon_toz_toz-106_20g", + "Description": "weapon_toz_toz-106_20g\n", + "Weight": 1.3, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_rifle", + "Prefab": { + "path": "assets/content/weapons/toz106/weapon_toz_toz-106_20g_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 42, + "RepairSpeed": 14, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "5a38e6bac4a2826c6e06d79c", + "_parent": "5a38e6bac4a2826c6e06d79b", + "_props": { + "filters": [ + { + "AnimationIndex": 0, + "Filter": [ + "5a38ee51c4a282000c5a955c", + "5a38ed75c4a28232996e40c6", + "5c6161fb2e221600113fbde5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "5a38e7c7c4a28200741e2345", + "_parent": "5a38e6bac4a2826c6e06d79b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c99f3592e221644fc633070", + "5adf23995acfc400185c2aeb", + "5a38ef1fc4a282000b1521f6" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5c618c2a2e22160011418d3e", + "_parent": "5a38e6bac4a2826c6e06d79b", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c6162682e22160010261a2b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "shotgun", + "weapUseType": "primary", + "ammoCaliber": "Caliber20g", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 2250, + "RepairComplexity": 1, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": false, + "bFirerate": 30, + "Ergonomics": 60, + "Velocity": 1.81, + "bEffDist": 70, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5a38ee51c4a282000c5a955c", + "defAmmo": "5a38ebd9c4a282000d722a5b", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 20, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5a38e6bac4a2826c6e06d7a2", + "_parent": "5a38e6bac4a2826c6e06d79b", + "_props": { + "filters": [ + { + "Filter": [ + "5a38ebd9c4a282000d722a5b", + "5d6e695fa4b936359b35d852", + "5d6e69b9a4b9361bc8618958", + "5d6e69c7a4b9360b6c0d54e4", + "5d6e6a5fa4b93614ec501745", + "5d6e6a53a4b9361bd473feec", + "5d6e6a42a4b9364f07165f52", + "5d6e6a05a4b93618084f58d0" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.7, + "AimPlane": 0.2, + "DeviationCurve": 2.5, + "DeviationMax": 10, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.23, + "RecoilReturnSpeedHandRotation": 2.8, + "RecoilDampingHandRotation": 0.83, + "RecoilCamera": 0.081, + "RecoilStableIndexShot": 3, + "RecoilForceBack": 585, + "RecoilForceUp": 663, + "RecolDispersion": 20, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.52, + "RecoilReturnPathOffsetHandRotation": 0.013, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0.1, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2.5, + "y": 2.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 2.3, + "RotationCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": true, + "BoltAction": true, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.26565, + "AllowJam": false, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.9306, + "CoolFactorGun": 4.032, + "CoolFactorGunMods": 1.04, + "HeatFactorByShot": 6.94, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false, + "ShotgunDispersion": 1 + }, + "_proto": "55801eed4bdc2d89578b4588" + }, + "57838ad32459774a17445cd2": { + "_id": "57838ad32459774a17445cd2", + "_name": "weapon_tochmash_vss_9x39", + "_parent": "5447b6194bdc2d67278b4567", + "_type": "Item", + "_props": { + "Name": "", + "ShortName": "", + "Description": "", + "Weight": 0.92, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_dmr", + "Prefab": { + "path": "assets/content/weapons/vss/weapon_tochmash_vss_9x39_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 456, + "RepairSpeed": 100, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_mount_000", + "_id": "57838c0b2459774a256959af", + "_parent": "57838ad32459774a17445cd2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5dff8db859400025ea5150d4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "578399aa2459774a0e553c7c", + "_parent": "57838ad32459774a17445cd2", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "57838f0b2459774a256959b2", + "57838f9f2459774a150289a0", + "5a9e81fba2750c00164f6b11" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_muzzle", + "_id": "578399c52459774a0d5f2fee", + "_parent": "57838ad32459774a17445cd2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57c44dd02459772d2e0ae249", + "57838c962459774a1651ec63" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "578399f42459774bbe1373be", + "_parent": "57838ad32459774a17445cd2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57c44f4f2459772d2c627113", + "578395402459774a256959b5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "57839a1a2459774a150289a1", + "_parent": "57838ad32459774a17445cd2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "578395e82459774a0e553c7b" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "57b2e5d92459771c44796fcd", + "_parent": "57838ad32459774a17445cd2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_004", + "_id": "57b33a0b2459771ee32dac59", + "_parent": "57838ad32459774a17445cd2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5e569a2e56edd02abe09f280", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "5c61a40d2e2216001403158d", + "5c90c3622e221601da359851", + "638db77630c4240f9e06f8b6", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "sniperRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x39", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 3400, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 900, + "Ergonomics": 43, + "Velocity": 0, + "bEffDist": 400, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "57838f0b2459774a256959b2", + "defAmmo": "57a0dfb82459774d3078b56c", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "57838bcf2459774a26674906", + "_parent": "57838ad32459774a17445cd2", + "_props": { + "filters": [ + { + "Filter": [ + "5c0d688c86f77413ae3407b2", + "61962d879bb3d20b0946d385", + "57a0dfb82459774d3078b56c", + "57a0e5022459774d1673f889", + "5c0d668f86f7747ccb7f13b2", + "6576f96220d53a5b8f3e395e" + ], + "MaxStackCount": 0 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.095, + "AimPlane": 1, + "DeviationCurve": 1.35, + "DeviationMax": 23, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 2.7, + "RecoilDampingHandRotation": 0.84, + "RecoilCamera": 0.064, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 270, + "RecoilForceUp": 80, + "RecolDispersion": 12, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.48, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.31, + "z": 0.01 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1, + "y": 1, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.09 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.3, + "z": -0.09 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.05, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1.11, + "CoolFactorGun": 2.592, + "CoolFactorGunMods": 1.02, + "HeatFactorByShot": 2.17, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.045, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "55801eed4bdc2d89578b4588" + }, + "5abccb7dd8ce87001773e277": { + "_id": "5abccb7dd8ce87001773e277", + "_name": "weapon_toz_apb_9x18pm", + "_parent": "5447b5cf4bdc2d65278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_molot_aps_9x18pm", + "ShortName": "weapon_molot_aps_9x18pm", + "Description": "weapon_molot_aps_9x18pm", + "Weight": 0.81, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_pistol", + "Prefab": { + "path": "assets/content/weapons/aps/weapon_toz_apb_9x18pm_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 76, "RepairSpeed": 1, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -254205,8 +253092,8 @@ "Slots": [ { "_name": "mod_magazine", - "_id": "5a17f98cfcdbcb0980087291", - "_parent": "5a17f98cfcdbcb0980087290", + "_id": "5abccb7dd8ce87001773e279", + "_parent": "5abccb7dd8ce87001773e277", "_props": { "filters": [ { @@ -254223,8 +253110,8 @@ }, { "_name": "mod_stock", - "_id": "5a17fd55fcdbcb0980087293", - "_parent": "5a17f98cfcdbcb0980087290", + "_id": "5abccb7dd8ce87001773e27a", + "_parent": "5abccb7dd8ce87001773e277", "_props": { "filters": [ { @@ -254241,8 +253128,8 @@ }, { "_name": "mod_pistol_grip", - "_id": "5a17fd5dfcdbcb001865f749", - "_parent": "5a17f98cfcdbcb0980087290", + "_id": "5abccb7dd8ce87001773e27b", + "_parent": "5abccb7dd8ce87001773e277", "_props": { "filters": [ { @@ -254259,8 +253146,8 @@ }, { "_name": "mod_sight_front", - "_id": "5aba64ebd8ce87001a46e19f", - "_parent": "5a17f98cfcdbcb0980087290", + "_id": "5abccb7dd8ce87001773e27c", + "_parent": "5abccb7dd8ce87001773e277", "_props": { "filters": [ { @@ -254277,8 +253164,8 @@ }, { "_name": "mod_sight_rear", - "_id": "5aba64f9d8ce8700182ece6c", - "_parent": "5a17f98cfcdbcb0980087290", + "_id": "5abccb7dd8ce87001773e27d", + "_parent": "5abccb7dd8ce87001773e277", "_props": { "filters": [ { @@ -254293,6 +253180,24 @@ "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "5abccb98d8ce87001a46e22d", + "_parent": "5abccb7dd8ce87001773e277", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5abcc328d8ce8700194394f3" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, @@ -254302,7 +253207,7 @@ "ammoCaliber": "Caliber9x18PM", "Durability": 100, "MaxDurability": 100, - "OperatingResource": 4100, + "OperatingResource": 3400, "RepairComplexity": 0, "durabSpawnMin": 25, "durabSpawnMax": 75, @@ -254314,7 +253219,7 @@ "SingleFireRate": 450, "CanQueueSecondShot": true, "bFirerate": 750, - "Ergonomics": 70, + "Ergonomics": 80, "Velocity": -4.54, "bEffDist": 50, "bHearDist": 80, @@ -254328,8 +253233,8 @@ "Chambers": [ { "_name": "patron_in_weapon", - "_id": "5a17f98cfcdbcb0980087292", - "_parent": "5a17f98cfcdbcb0980087290", + "_id": "5abccb7dd8ce87001773e27e", + "_parent": "5abccb7dd8ce87001773e277", "_props": { "filters": [ { @@ -254358,7 +253263,7 @@ } ], "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.3, + "CenterOfImpact": 0.32, "AimPlane": 0.026, "DeviationCurve": 2.25, "DeviationMax": 11, @@ -254373,7 +253278,7 @@ "RecoilCategoryMultiplierHandRotation": 0.138, "RecoilReturnSpeedHandRotation": 5, "RecoilDampingHandRotation": 0.8, - "RecoilCamera": 0.00864, + "RecoilCamera": 0.01344, "RecoilStableIndexShot": 4, "RecoilForceBack": 260, "RecoilForceUp": 328, @@ -254482,23 +253387,23 @@ }, "_proto": "5448bd6b4bdc2dfc2f8b4569" }, - "5bfea6e90db834001b7347f3": { - "_id": "5bfea6e90db834001b7347f3", - "_name": "weapon_remington_model_700_762x51", - "_parent": "5447b6254bdc2dc3278b4568", + "56dee2bdd2720bc8328b4567": { + "_id": "56dee2bdd2720bc8328b4567", + "_name": "weapon_izhmeh_mr153_12g", + "_parent": "5447b6094bdc2dc3278b4567", "_type": "Item", "_props": { - "Name": "weapon_izhmash_mosin_rifle_762x54", - "ShortName": "weapon_izhmash_mosin_rifle_762x54", - "Description": "weapon_izhmash_mosin_rifle_762x54", - "Weight": 0.55, + "Name": "Ружье МР-153 12к", + "ShortName": "МР-153 12к", + "Description": "Гладкоствольное многозарядное ружьё МР-153, производства ИжМех. Надежное и удобное оружие для охоты и самообороны.", + "Weight": 1.2, "BackgroundColor": "black", - "Width": 1, + "Width": 3, "Height": 1, "StackMaxSize": 1, - "ItemSound": "weap_rifle", + "ItemSound": "weap_ar", "Prefab": { - "path": "assets/content/weapons/m700/weapon_remington_model_700_762x51_container.bundle", + "path": "assets/content/weapons/mr153/weapon_izhmeh_mr153_12g_container.bundle", "rcid": "" }, "UsePrefab": { @@ -254515,11 +253420,11 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, + "LootExperience": 15, + "ExamineExperience": 6, "HideEntrails": false, - "RepairCost": 147, - "RepairSpeed": 14, + "RepairCost": 82, + "RepairSpeed": 8, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -254531,11 +253436,7 @@ "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [ - "Bear", - "Usec", - "Savage" - ], + "UnlootableFromSide": [], "AnimationVariantsNumber": 0, "DiscardingBlock": false, "RagFairCommissionModifier": 1, @@ -254549,45 +253450,18 @@ "Grids": [], "Slots": [ { - "_name": "mod_magazine", - "_id": "5bfea6e90db834001b7347f5", - "_parent": "5bfea6e90db834001b7347f3", - "_props": { - "filters": [ - { - "AnimationIndex": 0, - "Filter": [ - "5d25a6538abbc306c62e630d", - "5d25a4a98abbc30b917421a4", - "5d25a7b88abbc3054f3e60bc", - "5ce69cbad7f00c00b61c5098", - "5d25a6a48abbc306c62e6310", - "5d25af8f8abbc3055079fec5", - "5cf12a15d7f00c05464b293f", - "5bfeaa0f0db834001b734927", - "5bfea7ad0db834001c38f1ee" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "5bfea6e90db834001b7347f6", - "_parent": "5bfea6e90db834001b7347f3", + "_name": "mod_barrel", + "_id": "56deec06d2720bec348b4567", + "_parent": "56dee2bdd2720bc8328b4567", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5cde739cd7f00c0010373bd3", - "5d25d0ac8abbc3054f3e61f7", - "5bfeb32b0db834001a6694d9", - "5cdeac22d7f00c000f26168f", - "5cf13123d7f00c1085616a50" + "588200af24597742fa221dfb", + "588200c224597743990da9ed", + "588200cf2459774414733d55", + "56deec93d2720bec348b4568" ] } ] @@ -254597,18 +253471,60 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_barrel", - "_id": "5bfea6e90db834001b7347f7", - "_parent": "5bfea6e90db834001b7347f3", + "_name": "mod_handguard", + "_id": "56deef95d2720b4c698b4584", + "_parent": "56dee2bdd2720bc8328b4567", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5d2703038abbc3105103d94c", - "5bfebc250db834001a6694e1", - "5bfebc320db8340019668d79", - "5d2702e88abbc31ed91efc44" + "56deed6ed2720b4c698b4583" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "56deefc4d2720bb1328b4568", + "_parent": "56dee2bdd2720bc8328b4567", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "55d484b44bdc2d1d4e8b456d", + "55d485804bdc2d8c2f8b456b", + "56deee15d2720bee328b4567", + "5882163e24597758206fee8c", + "5882163824597757561aa922", + "5882163224597757561aa920", + "56deeefcd2720bc8328b4568" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "56def02cd2720bec348b4569", + "_parent": "56dee2bdd2720bc8328b4567", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5bfe7fb30db8340018089fed", + "56083a334bdc2dc8488b4571", + "56083be64bdc2d20478b456f", + "56083cba4bdc2de22e8b456f" ] } ] @@ -254619,16 +253535,32 @@ }, { "_name": "mod_mount", - "_id": "5bfebf0e0db834001808a2b7", - "_parent": "5bfea6e90db834001b7347f3", + "_id": "56f2a14dd2720bc7308b45a2", + "_parent": "56dee2bdd2720bc8328b4567", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5cde7b43d7f00c000d36b93e", - "5bfebc5e0db834001a6694e5", - "5bfebc530db834001d23eb65" + "55d48a634bdc2d8b2f8b456a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "58172a6d24597714a658fe64", + "_parent": "56dee2bdd2720bc8328b4567", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d48ebc4bdc2d8c2f8b456c" ] } ] @@ -254640,49 +253572,59 @@ ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "sniperRifle", + "weapClass": "shotgun", "weapUseType": "primary", - "ammoCaliber": "Caliber762x51", + "ammoCaliber": "Caliber12g", "Durability": 100, "MaxDurability": 100, - "OperatingResource": 3000, - "RepairComplexity": 1, + "OperatingResource": 2800, + "RepairComplexity": 0, "durabSpawnMin": 25, "durabSpawnMax": 75, - "isFastReload": true, + "isFastReload": false, "weapFireType": [ "single" ], "SingleFireRate": 450, - "CanQueueSecondShot": false, - "bFirerate": 30, - "Ergonomics": 33, - "Velocity": 1.81, - "bEffDist": 1000, - "bHearDist": 100, + "CanQueueSecondShot": true, + "bFirerate": 40, + "Ergonomics": 43, + "Velocity": 0, + "bEffDist": 70, + "bHearDist": 1, "isChamberLoad": true, "chamberAmmoCount": 1, "isBoltCatch": true, - "defMagType": "5bfea7ad0db834001c38f1ee", - "defAmmo": "5e023e53d4353e3302577c4c", + "defMagType": "56deee15d2720bee328b4567", + "defAmmo": "560d5e524bdc2d25448b4571", "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, + "shotgunDispersion": 20, "Chambers": [ { "_name": "patron_in_weapon", - "_id": "5bfea6e90db834001b7347f8", - "_parent": "5bfea6e90db834001b7347f3", + "_id": "56deebd7d2720bbd328b4567", + "_parent": "56dee2bdd2720bc8328b4567", "_props": { "filters": [ { "Filter": [ - "5a6086ea4f39f99cd479502f", - "5a608bf24f39f98ffc77720e", - "58dd3ad986f77403051cba8f", - "5e023e53d4353e3302577c4c", - "5efb0c1bd79ff02a1f5e68d9", - "5e023e6e34d52a55c3304f71", - "5e023e88277cce2b522ff2b1" + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" ] } ] @@ -254693,10 +253635,10 @@ } ], "ReloadMode": "InternalMagazine", - "CenterOfImpact": 0.011, - "AimPlane": 0.32, - "DeviationCurve": 1, - "DeviationMax": 33, + "CenterOfImpact": 0.5, + "AimPlane": 0.114, + "DeviationCurve": 2.5, + "DeviationMax": 10, "Foldable": false, "Retractable": false, "TacticalReloadStiffnes": { @@ -254705,17 +253647,17 @@ "z": 0.95 }, "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2645, - "RecoilReturnSpeedHandRotation": 2.8, + "RecoilCategoryMultiplierHandRotation": 0.23, + "RecoilReturnSpeedHandRotation": 2.2, "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.115, + "RecoilCamera": 0.071, "RecoilStableIndexShot": 3, - "RecoilForceBack": 670, - "RecoilForceUp": 199, + "RecoilForceBack": 474, + "RecoilForceUp": 348, "RecolDispersion": 10, "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.41, - "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilReturnPathDampingHandRotation": 0.52, + "RecoilReturnPathOffsetHandRotation": 0.015, "RecoilAngle": 90, "RecoilStableAngleIncreaseStep": 2.5, "ProgressRecoilAngleOnStable": { @@ -254725,17 +253667,17 @@ }, "RecoilCenter": { "x": 0, - "y": -0.43, - "z": 0.03 + "y": -0.3, + "z": 0 }, "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, + "x": -2, + "y": 0.1, "z": 0 }, "PostRecoilHorizontalRangeHandRotation": { - "x": -0.7, - "y": 0.7, + "x": -2.5, + "y": 2.5, "z": 0 }, "ShotsGroupSettings": [ @@ -254761,47 +253703,47 @@ ], "CameraToWeaponAngleSpeedRange": { "x": 0.1, - "y": 0.24, + "y": 0.2, "z": 0 }, "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, + "CameraSnap": 2.8, "RotationCenter": { "x": 0, - "y": -0.16, - "z": -0.06 + "y": -0.1, + "z": -0.03 }, "RotationCenterNoStock": { "x": 0, - "y": 0, - "z": 0 + "y": -0.25, + "z": -0.06 }, "SizeReduceRight": 0, "FoldedSlot": "", - "CompactHandling": false, + "CompactHandling": true, "SightingRange": 100, "MinRepairDegradation": 0, "MaxRepairDegradation": 0.04, "IronSightRange": 25, "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": true, - "BoltAction": true, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, "HipAccuracyRestorationDelay": 0.2, "HipAccuracyRestorationSpeed": 7, "HipInnaccuracyGain": 0.16, "ManualBoltCatch": false, "AimSensitivity": 0.65, "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.2277, - "AllowJam": false, + "BaseMalfunctionChance": 0.284625, + "AllowJam": true, "AllowFeed": true, "AllowMisfire": true, "AllowSlide": true, "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 4.608, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 6.72, + "HeatFactorGun": 0.99, + "CoolFactorGun": 4.032, + "CoolFactorGunMods": 1.03, + "HeatFactorByShot": 4.9, "AllowOverheat": true, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, @@ -254813,9 +253755,363 @@ "IsStationaryWeapon": false, "IsBeltMachineGun": false, "WithAnimatorAiming": false, - "blockLeftStance": false + "blockLeftStance": false, + "ShotgunDispersion": 1 }, - "_proto": "55801eed4bdc2d89578b4588" + "_proto": "54491c4f4bdc2db1078b4568" + }, + "606dae0ab0e443224b421bb7": { + "_id": "606dae0ab0e443224b421bb7", + "_name": "weapon_kalashnikov_mp155_12g", + "_parent": "5447b6094bdc2dc3278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_kalashnikov_mp155_12g", + "ShortName": "weapon_kalashnikov_mp155_12g", + "Description": "weapon_kalashnikov_mp155_12g", + "Weight": 1.1, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/mp155/weapon_kalashnikov_mp155_12g_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 95, + "RepairSpeed": 8, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_barrel", + "_id": "606dae0ab0e443224b421bb9", + "_parent": "606dae0ab0e443224b421bb7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6076c1b9f2cb2e02a42acedc" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "606dae0ab0e443224b421bba", + "_parent": "606dae0ab0e443224b421bb7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "607d5aa50494a626335e12ed", + "606ee5c81246154cad35d65e" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "606dae0ab0e443224b421bbb", + "_parent": "606dae0ab0e443224b421bb7", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "6076c87f232e5a31c233d50e", + "55d484b44bdc2d1d4e8b456d", + "55d485804bdc2d8c2f8b456b", + "56deee15d2720bee328b4567", + "5882163e24597758206fee8c", + "5882163824597757561aa922", + "5882163224597757561aa920", + "56deeefcd2720bc8328b4568" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "606dae0ab0e443224b421bbc", + "_parent": "606dae0ab0e443224b421bb7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "607d5a891246154cad35d6aa", + "606eef46232e5a31c233d500" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "606dae0ab0e443224b421bbd", + "_parent": "606dae0ab0e443224b421bb7", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d48a634bdc2d8b2f8b456a", + "60785ce5132d4d12c81fd918" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "shotgun", + "weapUseType": "primary", + "ammoCaliber": "Caliber12g", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 3100, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": false, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 40, + "Ergonomics": 48, + "Velocity": 0, + "bEffDist": 70, + "bHearDist": 1, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "56deee15d2720bee328b4567", + "defAmmo": "560d5e524bdc2d25448b4571", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 20, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "606dae0ab0e443224b421bbf", + "_parent": "606dae0ab0e443224b421bb7", + "_props": { + "filters": [ + { + "Filter": [ + "560d5e524bdc2d25448b4571", + "5d6e6772a4b936088465b17c", + "5d6e67fba4b9361bc73bc779", + "5d6e6806a4b936088465b17e", + "5d6e68dea4b9361bcc29e659", + "5d6e6911a4b9361bd5780d52", + "5c0d591486f7744c505b416f", + "58820d1224597753c90aeb13", + "5d6e68c4a4b9361b93413f79", + "5d6e68a8a4b9360b6c0d54e2", + "5d6e68e6a4b9361c140bcfe0", + "5d6e6869a4b9361c140bcfde", + "5d6e68b3a4b9361bca7e50b5", + "5d6e6891a4b9361bd473feea", + "5d6e689ca4b9361bc8618956", + "5d6e68d1a4b93622fe60e845", + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "InternalMagazine", + "CenterOfImpact": 0.5, + "AimPlane": 0.114, + "DeviationCurve": 2.5, + "DeviationMax": 10, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.23, + "RecoilReturnSpeedHandRotation": 2.2, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.071, + "RecoilStableIndexShot": 3, + "RecoilForceBack": 457, + "RecoilForceUp": 341, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.52, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.3, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0.1, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2.5, + "y": 2.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 2.8, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.25, + "z": -0.06 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.2783, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.99, + "CoolFactorGun": 4.032, + "CoolFactorGunMods": 1.03, + "HeatFactorByShot": 4.8, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false, + "ShotgunDispersion": 1 + }, + "_proto": "54491c4f4bdc2db1078b4568" }, "588892092459774ac91d4b11": { "_id": "588892092459774ac91d4b11", @@ -255230,23 +254526,358 @@ }, "_proto": "55801eed4bdc2d89578b4588" }, - "5a154d5cfcdbcb001a3b00da": { - "_id": "5a154d5cfcdbcb001a3b00da", - "_name": "helmet_ops_core_fast", + "5bfea6e90db834001b7347f3": { + "_id": "5bfea6e90db834001b7347f3", + "_name": "weapon_remington_model_700_762x51", + "_parent": "5447b6254bdc2dc3278b4568", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_mosin_rifle_762x54", + "ShortName": "weapon_izhmash_mosin_rifle_762x54", + "Description": "weapon_izhmash_mosin_rifle_762x54", + "Weight": 0.55, + "BackgroundColor": "black", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_rifle", + "Prefab": { + "path": "assets/content/weapons/m700/weapon_remington_model_700_762x51_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 147, + "RepairSpeed": 14, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [ + "Bear", + "Usec", + "Savage" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "5bfea6e90db834001b7347f5", + "_parent": "5bfea6e90db834001b7347f3", + "_props": { + "filters": [ + { + "AnimationIndex": 0, + "Filter": [ + "5d25a6538abbc306c62e630d", + "5d25a4a98abbc30b917421a4", + "5d25a7b88abbc3054f3e60bc", + "5ce69cbad7f00c00b61c5098", + "5d25a6a48abbc306c62e6310", + "5d25af8f8abbc3055079fec5", + "5cf12a15d7f00c05464b293f", + "5bfeaa0f0db834001b734927", + "5bfea7ad0db834001c38f1ee" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "5bfea6e90db834001b7347f6", + "_parent": "5bfea6e90db834001b7347f3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cde739cd7f00c0010373bd3", + "5d25d0ac8abbc3054f3e61f7", + "5bfeb32b0db834001a6694d9", + "5cdeac22d7f00c000f26168f", + "5cf13123d7f00c1085616a50" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "5bfea6e90db834001b7347f7", + "_parent": "5bfea6e90db834001b7347f3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d2703038abbc3105103d94c", + "5bfebc250db834001a6694e1", + "5bfebc320db8340019668d79", + "5d2702e88abbc31ed91efc44" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5bfebf0e0db834001808a2b7", + "_parent": "5bfea6e90db834001b7347f3", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cde7b43d7f00c000d36b93e", + "5bfebc5e0db834001a6694e5", + "5bfebc530db834001d23eb65" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "sniperRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x51", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 3000, + "RepairComplexity": 1, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": false, + "bFirerate": 30, + "Ergonomics": 33, + "Velocity": 1.81, + "bEffDist": 1000, + "bHearDist": 100, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5bfea7ad0db834001c38f1ee", + "defAmmo": "5e023e53d4353e3302577c4c", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5bfea6e90db834001b7347f8", + "_parent": "5bfea6e90db834001b7347f3", + "_props": { + "filters": [ + { + "Filter": [ + "5a6086ea4f39f99cd479502f", + "5a608bf24f39f98ffc77720e", + "58dd3ad986f77403051cba8f", + "5e023e53d4353e3302577c4c", + "5efb0c1bd79ff02a1f5e68d9", + "5e023e6e34d52a55c3304f71", + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "InternalMagazine", + "CenterOfImpact": 0.011, + "AimPlane": 0.32, + "DeviationCurve": 1, + "DeviationMax": 33, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.2645, + "RecoilReturnSpeedHandRotation": 2.8, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.115, + "RecoilStableIndexShot": 3, + "RecoilForceBack": 670, + "RecoilForceUp": 199, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.41, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.43, + "z": 0.03 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -0.7, + "y": 0.7, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.24, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.16, + "z": -0.06 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": true, + "BoltAction": true, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.2277, + "AllowJam": false, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 4.608, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 6.72, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "55801eed4bdc2d89578b4588" + }, + "5d5e9c74a4b9364855191c40": { + "_id": "5d5e9c74a4b9364855191c40", + "_name": "helmet_mich2002_od", "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "helmet_ops_core_fast", - "ShortName": "helmet_ops_core_fast", - "Description": "helmet_ops_core_fast", - "Weight": 0.9, + "Name": "helmet_mich2002_od", + "ShortName": "helmet_mich2002_od", + "Description": "helmet_mich2002_od", + "Weight": 1.45, "BackgroundColor": "default", "Width": 2, "Height": 2, "StackMaxSize": 1, "ItemSound": "gear_helmet", "Prefab": { - "path": "assets/content/items/equipment/helmet_opscore_fast/item_equipment_helmet_opscore_fast_black.bundle", + "path": "assets/content/items/equipment/helmet_mich2002/item_equipment_helmet_mich2002_od.bundle", "rcid": "" }, "UsePrefab": { @@ -255266,7 +254897,7 @@ "LootExperience": 20, "ExamineExperience": 4, "HideEntrails": false, - "RepairCost": 921, + "RepairCost": 844, "RepairSpeed": 10, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -255274,7 +254905,7 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, - "CanSellOnRagfair": false, + "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -255292,36 +254923,15 @@ "IsUnremovable": false, "Grids": [], "Slots": [ - { - "_name": "mod_equipment_000", - "_id": "5a17e402fcdbcb00165aa6d1", - "_parent": "5a154d5cfcdbcb001a3b00da", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a16badafcdbcb001865f72d", - "5a16b672fcdbcb001912fa83", - "5a16b7e1fcdbcb00165aa6c9" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_nvg", - "_id": "5a17e449fcdbcbcae6687268", - "_parent": "5a154d5cfcdbcb001a3b00da", + "_id": "5d5e9c74a4b9364855191c42", + "_parent": "5d5e9c74a4b9364855191c40", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5ea058e01dbce517f324b3e2", "5c0558060db834001b735271", "5a16b8a9fcdbcb00165aa6ca" ] @@ -255334,8 +254944,8 @@ }, { "_name": "mod_mount", - "_id": "5a17e484fcdbcb0017581848", - "_parent": "5a154d5cfcdbcb001a3b00da", + "_id": "5d5e9c74a4b9364855191c43", + "_parent": "5d5e9c74a4b9364855191c40", "_props": { "filters": [ { @@ -255351,28 +254961,10 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, - { - "_name": "mod_equipment_001", - "_id": "5a214f4086f774545d34fe5c", - "_parent": "5a154d5cfcdbcb001a3b00da", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a16b9fffcdbcb0176308b34" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_equipment_002", - "_id": "5c0e6a91d174af029e696b31", - "_parent": "5a154d5cfcdbcb001a3b00da", + "_id": "5d5e9c74a4b9364855191c44", + "_parent": "5d5e9c74a4b9364855191c40", "_props": { "filters": [ { @@ -255389,15 +254981,15 @@ }, { "_name": "Helmet_top", - "_id": "657f8ffeada5fadd1f07a576", - "_parent": "5a154d5cfcdbcb001a3b00da", + "_id": "657f8db2f92cd718b7015505", + "_parent": "5d5e9c74a4b9364855191c40", "_props": { "filters": [ { "locked": true, - "Plate": "657f8ec5f4c82973640b234c", + "Plate": "657f8b94f92cd718b70154ff", "Filter": [ - "657f8ec5f4c82973640b234c" + "657f8b94f92cd718b70154ff" ], "armorColliders": [ "ParietalHead" @@ -255413,15 +255005,15 @@ }, { "_name": "Helmet_back", - "_id": "657f8ffeada5fadd1f07a577", - "_parent": "5a154d5cfcdbcb001a3b00da", + "_id": "657f8db2f92cd718b7015506", + "_parent": "5d5e9c74a4b9364855191c40", "_props": { "filters": [ { "locked": true, - "Plate": "657f8f10f4c82973640b2350", + "Plate": "657f8b43f92cd718b70154fb", "Filter": [ - "657f8f10f4c82973640b2350" + "657f8b43f92cd718b70154fb" ], "armorColliders": [ "BackHead" @@ -255456,1629 +255048,18 @@ "z": 70 }, "DeafStrength": "None", - "BluntThroughput": 0.1431, + "BluntThroughput": 0.1548, "ArmorMaterial": "Combined", "BlindnessProtection": 0, - "ArmorType": "Light", + "ArmorType": "Heavy", "armorColliders": [], "armorPlateColliders": [], "speedPenaltyPercent": 0, - "mousePenalty": -1, + "mousePenalty": -2, "weaponErgonomicPenalty": -1 }, "_proto": "5645bc214bdc2d363b8b4571" }, - "62e14904c2699c0ec93adc47": { - "_id": "62e14904c2699c0ec93adc47", - "_name": "weapon_tochmash_sr2m_veresk_9x21", - "_parent": "5447b5e04bdc2d62278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_hk_mp7a1_46x30", - "ShortName": "weapon_hk_mp7a1_46x30", - "Description": "weapon_hk_mp7a1_46x30", - "Weight": 0.938, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/sr2m/weapon_tochmash_sr2m_veresk_9x21_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 221, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "SubMachineGun", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "62e14904c2699c0ec93adc48", - "_parent": "62e14904c2699c0ec93adc47", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "62e153bcdb1a5c41971c1b5b", - "633a98eab8b0506e48497c1a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_muzzle", - "_id": "62e14904c2699c0ec93adc49", - "_parent": "62e14904c2699c0ec93adc47", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62e2a7138e1ac9380579c122", - "62e2a754b6c0ee2f230cee0f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "62e14904c2699c0ec93adc50", - "_parent": "62e14904c2699c0ec93adc47", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62e292e7b6c0ee2f230cee00", - "62e2969582ebf260c20539c2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "62e1535fc2699c0ec93adc55", - "_parent": "62e14904c2699c0ec93adc47", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62e27a7865f0b1592a49e17b" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_handguard", - "_id": "62e154e1c2699c0ec93adc56", - "_parent": "62e14904c2699c0ec93adc47", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "62e15547db1a5c41971c1b5e", - "637ba19df7ca6372bf2613d7" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_pistolgrip", - "_id": "637b9c95551ab530cf46d09c", - "_parent": "62e14904c2699c0ec93adc47", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "637b9c37b7e3bc41b21ce71a", - "637ba29bf7ca6372bf2613db" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x21", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 6500, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 950, - "Ergonomics": 59, - "Velocity": 13, - "bEffDist": 200, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "62e153bcdb1a5c41971c1b5b", - "defAmmo": "5a26abfac4a28232980eabff", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "62e14904c2699c0ec93adc51", - "_parent": "62e14904c2699c0ec93adc47", - "_props": { - "filters": [ - { - "Filter": [ - "5a269f97c4a282000b151807", - "5a26abfac4a28232980eabff", - "5a26ac06c4a282000c5a90a8", - "5a26ac0ec4a28200741e1e18", - "6576f93989f0062e741ba952", - "6576f4708ca9c4381d16cd9d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.23, - "AimPlane": 0.25, - "DeviationCurve": 2.25, - "DeviationMax": 11, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2185, - "RecoilReturnSpeedHandRotation": 3.2, - "RecoilDampingHandRotation": 0.84, - "RecoilCamera": 0.0384, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 234, - "RecoilForceUp": 54, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.45, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.2, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.32, - "z": -0.02 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.13, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.38, - "z": -0.11 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 50, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1.0816, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.0272, - "HeatFactorByShot": 1.75, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5aa2b9ede5b5b000137b758b": { - "_id": "5aa2b9ede5b5b000137b758b", - "_name": "hats_cowboy", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "hats_cowboy", - "ShortName": "hats_cowboy", - "Description": "hats_cowboy", - "Weight": 0.2, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_cowboy/item_equipment_head_cowboy.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "59f9cabd86f7743a10721f46": { - "_id": "59f9cabd86f7743a10721f46", - "_name": "weapon_izhmash_saiga_9_9x19", - "_parent": "5447b5e04bdc2d62278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_saiga_9_9x19", - "ShortName": "weapon_izhmash_saiga_9_9x19", - "Description": "weapon_izhmash_saiga_9_9x19", - "Weight": 1.962, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/pp-19-01/weapon_izhmash_saiga_9_9x19_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 45, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "SubMachineGun", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "59f9cabd86f7743a10721f47", - "_parent": "59f9cabd86f7743a10721f46", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "623c3be0484b5003161840dc", - "628a664bccaab13006640e47", - "628c9ab845c59e5b80768a81", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "59f9cabd86f7743a10721f48", - "_parent": "59f9cabd86f7743a10721f46", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cf50fc5d7f00c056c53f83c", - "5ac78eaf5acfc4001926317a", - "599851db86f77467372f0a18" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "59f9cabd86f7743a10721f49", - "_parent": "59f9cabd86f7743a10721f46", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "59f9cabd86f7743a10721f4a", - "_parent": "59f9cabd86f7743a10721f46", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5998529a86f774647f44f421", - "599860ac86f77436b225ed1a", - "5c0673fb0db8340023300271", - "5c0672ed0db834001b7353f3" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_muzzle", - "_id": "59f9cabd86f7743a10721f4b", - "_parent": "59f9cabd86f7743a10721f46", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5998597786f77414ea6da093", - "5998598e86f7740b3f498a86", - "59bffc1f86f77435b128b872", - "5a9fb739a2750c003215717f", - "5c6165902e22160010261b28", - "5a32a064c4a28200741e22de", - "59bfc5c886f7743bf6794e62" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "59f9cabd86f7743a10721f4c", - "_parent": "59f9cabd86f7743a10721f46", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59985a6c86f77414ec448d17", - "59985a8086f77414ec448d1a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "59f9cabd86f7743a10721f4d", - "_parent": "59f9cabd86f7743a10721f46", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "599860e986f7743bb57573a6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_gas_block", - "_id": "59f9cabd86f7743a10721f4f", - "_parent": "59f9cabd86f7743a10721f46", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59ccd11386f77428f24a488f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x19PARA", - "Durability": 95, - "MaxDurability": 100, - "OperatingResource": 6000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 650, - "Ergonomics": 32, - "Velocity": -17.9, - "bEffDist": 300, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5998529a86f774647f44f421", - "defAmmo": "56d59d3ad2720bdb418b4577", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "59f9cabd86f7743a10721f50", - "_parent": "59f9cabd86f7743a10721f46", - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ], - "MaxStackCount": 0 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.07, - "AimPlane": 0.1, - "DeviationCurve": 1.75, - "DeviationMax": 17, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2185, - "RecoilReturnSpeedHandRotation": 3.5, - "RecoilDampingHandRotation": 0.84, - "RecoilCamera": 0.0367, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 246, - "RecoilForceUp": 42, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.45, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 50, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.2024, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.9066, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 0.9964, - "HeatFactorByShot": 2.3, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5447b5fc4bdc2d87278b4567": { - "_id": "5447b5fc4bdc2d87278b4567", - "_name": "AssaultCarbine", - "_parent": "5422acb9af1c889c16000029", - "_type": "Node", - "_props": { - "Name": "Item", - "ShortName": "Item", - "Description": "Item", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x18PM", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 0, - "RepairComplexity": 0, - "durabSpawnMin": 0, - "durabSpawnMax": 0, - "isFastReload": false, - "weapFireType": [], - "SingleFireRate": 720, - "CanQueueSecondShot": true, - "bFirerate": 900, - "Ergonomics": 10, - "Velocity": 0, - "bEffDist": 1, - "bHearDist": 1, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5448bc234bdc2d3c308b4569", - "defAmmo": "5485a8684bdc2da71d8b4567", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, - "Chambers": [], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0, - "DeviationCurve": 1, - "DeviationMax": 100, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 1, - "RecoilDampingHandRotation": 0.89, - "RecoilCamera": -0.3, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 100, - "RecoilForceUp": 50, - "RecolDispersion": 0, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.55, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": 0, - "z": 1 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.5, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -1.5, - "y": 1.5, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1, - "HeatFactorGun": 1, - "CoolFactorGun": 1, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1, - "AllowOverheat": false, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - } - }, - "5447bedf4bdc2d87278b4568": { - "_id": "5447bedf4bdc2d87278b4568", - "_name": "GrenadeLauncher", - "_parent": "5422acb9af1c889c16000029", - "_type": "Node", - "_props": { - "Name": "Item", - "ShortName": "Item", - "Description": "Item", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x18PM", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 0, - "RepairComplexity": 0, - "durabSpawnMin": 0, - "durabSpawnMax": 0, - "isFastReload": false, - "weapFireType": [], - "SingleFireRate": 720, - "CanQueueSecondShot": true, - "bFirerate": 900, - "Ergonomics": 10, - "Velocity": 0, - "bEffDist": 1, - "bHearDist": 1, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5448bc234bdc2d3c308b4569", - "defAmmo": "5485a8684bdc2da71d8b4567", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, - "Chambers": [], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0, - "DeviationCurve": 1, - "DeviationMax": 100, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.345, - "RecoilReturnSpeedHandRotation": 1, - "RecoilDampingHandRotation": 0.9, - "RecoilCamera": -0.3, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 100, - "RecoilForceUp": 50, - "RecolDispersion": 0, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.57, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.47, - "z": -0.05 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -2, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -4, - "y": 4, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.01, - "y": 0.11, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.01, - "CameraSnap": 3, - "RotationCenter": { - "x": 0, - "y": -0.2, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1, - "HeatFactorGun": 1, - "CoolFactorGun": 1, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1, - "AllowOverheat": false, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - } - }, - "5447b5e04bdc2d62278b4567": { - "_id": "5447b5e04bdc2d62278b4567", - "_name": "Smg", - "_parent": "5422acb9af1c889c16000029", - "_type": "Node", - "_props": { - "Name": "Item", - "ShortName": "Item", - "Description": "Item", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x18PM", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 0, - "RepairComplexity": 0, - "durabSpawnMin": 0, - "durabSpawnMax": 0, - "isFastReload": false, - "weapFireType": [], - "SingleFireRate": 720, - "CanQueueSecondShot": true, - "bFirerate": 900, - "Ergonomics": 10, - "Velocity": 0, - "bEffDist": 1, - "bHearDist": 1, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5448bc234bdc2d3c308b4569", - "defAmmo": "5485a8684bdc2da71d8b4567", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, - "Chambers": [], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0, - "DeviationCurve": 1, - "DeviationMax": 100, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2185, - "RecoilReturnSpeedHandRotation": 1, - "RecoilDampingHandRotation": 0.92, - "RecoilCamera": -0.3, - "RecoilStableIndexShot": 5, - "RecoilForceBack": 100, - "RecoilForceUp": 50, - "RecolDispersion": 0, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.5, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": 0, - "z": 1 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1, - "HeatFactorGun": 1, - "CoolFactorGun": 1, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1, - "AllowOverheat": false, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - } - }, - "5aa2ba46e5b5b000137b758d": { - "_id": "5aa2ba46e5b5b000137b758d", - "_name": "hats_UF_PRO", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "hats_UF_PRO", - "ShortName": "hats_UF_PRO", - "Description": "hats_UF_PRO", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_ufpro/item_equipment_head_ufpro.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, "5bd70322209c4d00d7167b8f": { "_id": "5bd70322209c4d00d7167b8f", "_name": "weapon_hk_mp7a2_46x30", @@ -258167,6 +256148,4284 @@ "ShotgunDispersion": 1 } }, + "5aa2b8d7e5b5b00014028f4a": { + "_id": "5aa2b8d7e5b5b00014028f4a", + "_name": "cap_police", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "cap_police", + "ShortName": "cap_police", + "Description": "cap_police", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_police/item_equipment_head_police.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5df8a58286f77412631087ed": { + "_id": "5df8a58286f77412631087ed", + "_name": "helmet_crew", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "helmet_un", + "ShortName": "helmet_un", + "Description": "helmet_un", + "Weight": 0.9, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_tsh_4m2/item_equipment_helmet_tsh_4m2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 50, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c1a1e3f2e221602b66cc4c2", + "5bd071d786f7747e707b93a3", + "5bd0716d86f774171822ef4b", + "5b4326435acfc433000ed01d", + "5b432b2f5acfc4771e1c6622", + "5b4325355acfc40019478126", + "5ab8f85d86f7745cd93a1cf5" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Helmet_top", + "_id": "657ba21e9ba22f103e081398", + "_parent": "5df8a58286f77412631087ed", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657ba096e57570b7f80a17fb", + "Filter": [ + "657ba096e57570b7f80a17fb" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657ba21e9ba22f103e081399", + "_parent": "5df8a58286f77412631087ed", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657ba145e57570b7f80a17ff", + "Filter": [ + "657ba145e57570b7f80a17ff" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_ears", + "_id": "657ba21e9ba22f103e08139a", + "_parent": "5df8a58286f77412631087ed", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657ba18923918923cb0df568", + "Filter": [ + "657ba18923918923cb0df568" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 75 + }, + "DeafStrength": "Low", + "BluntThroughput": 0.2576, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5f60e6403b85f6263c14558c": { + "_id": "5f60e6403b85f6263c14558c", + "_name": "item_equipment_head_beret_blk", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "item_equipment_head_beret_blk", + "ShortName": "item_equipment_head_beret_blk", + "Description": "item_equipment_head_beret_blk", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_beret/item_equipment_head_beret_blk.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5e00903ae9dc277128008b87": { + "_id": "5e00903ae9dc277128008b87", + "_name": "weapon_bt_mp9_9x19", + "_parent": "5447b5e04bdc2d62278b4567", + "_type": "Item", + "_props": { + "Name": "Бургер и Томат ЭмПэ ДеВяТь", + "ShortName": "weapon_bt_mp9_9x19", + "Description": "weapon_bt_mp9_9x19", + "Weight": 0.75, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/mp9/weapon_bt_mp9_9x19_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 71, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "SubMachineGun", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "5e00903ae9dc277128008b89", + "_parent": "5e00903ae9dc277128008b87", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5de8e8dafd6b4e6e2276dc32", + "5de8ea8ffd6b4e6e2276dc35", + "5de8eaadbbaf010b10528a6d", + "5de8eac42a78646d96665d91" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_muzzle", + "_id": "5e00903ae9dc277128008b8a", + "_parent": "5e00903ae9dc277128008b87", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5de8f237bbaf010b10528a70" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5e00903ae9dc277128008b8b", + "_parent": "5e00903ae9dc277128008b87", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5de910da8b6c4240ba2651b5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "5e00903ae9dc277128008b8d", + "_parent": "5e00903ae9dc277128008b87", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5de8e67c4a9f347bc92edbd7", + "5e0090f7e9dc277128008b93" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "5e00903ae9dc277128008b8e", + "_parent": "5e00903ae9dc277128008b87", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5de922d4b11454561e39239f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_000", + "_id": "5e00907ee9dc277128008b90", + "_parent": "5e00903ae9dc277128008b87", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5de8fbf2b74cd90030650c79" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x19PARA", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 4500, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 900, + "Ergonomics": 75, + "Velocity": 13, + "bEffDist": 200, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5de8e8dafd6b4e6e2276dc32", + "defAmmo": "64b7bbb74b75259c590fa897", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5e00903ae9dc277128008b8f", + "_parent": "5e00903ae9dc277128008b87", + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.21, + "AimPlane": 0.1, + "DeviationCurve": 2.25, + "DeviationMax": 11, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.2185, + "RecoilReturnSpeedHandRotation": 3.2, + "RecoilDampingHandRotation": 0.84, + "RecoilCamera": 0.0347, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 254, + "RecoilForceUp": 54, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.45, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 95, + "RecoilStableAngleIncreaseStep": 2.2, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.32, + "z": -0.02 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.13, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.38, + "z": -0.11 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 50, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1.1024, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.0464, + "HeatFactorByShot": 1.8, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5d2f0d8048f0356c925bc3b0": { + "_id": "5d2f0d8048f0356c925bc3b0", + "_name": "weapon_hk_mp5_kurtz_9x19", + "_parent": "5447b5e04bdc2d62278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_hk_mp5_navy3_9x19", + "ShortName": "weapon_hk_mp5_navy3_9x19", + "Description": "weapon_hk_mp5_navy3_9x19", + "Weight": 0.68, + "BackgroundColor": "black", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/mp5/weapon_hk_mp5_kurtz_9x19_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 250, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "SubMachineGun", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "5d2f0d8048f0356c925bc3b2", + "_parent": "5d2f0d8048f0356c925bc3b0", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5d2f213448f0355009199284", + "5926c3b286f774640d189b6b", + "5a351711c4a282000b1521a4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_reciever", + "_id": "5d2f0d8048f0356c925bc3b3", + "_parent": "5d2f0d8048f0356c925bc3b0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d2f261548f03576f500e7b7" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "5d2f0d8048f0356c925bc3b4", + "_parent": "5d2f0d8048f0356c925bc3b0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5d2f2d5748f03572ec0c0139" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x19PARA", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 5600, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "burst", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 900, + "Ergonomics": 55, + "Velocity": 13, + "bEffDist": 200, + "bHearDist": 80, + "isChamberLoad": false, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5926c3b286f774640d189b6b", + "defAmmo": "64b7bbb74b75259c590fa897", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5d2f0d8048f0356c925bc3b5", + "_parent": "5d2f0d8048f0356c925bc3b0", + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.22, + "AimPlane": 0.25, + "DeviationCurve": 2.25, + "DeviationMax": 11, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.2185, + "RecoilReturnSpeedHandRotation": 3.5, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.0388, + "RecoilStableIndexShot": 6, + "RecoilForceBack": 267, + "RecoilForceUp": 57, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.45, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.2, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": -0.01 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.25, + "z": -0.01 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": true, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1.79, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "59984ab886f7743e98271174": { + "_id": "59984ab886f7743e98271174", + "_name": "weapon_izhmash_pp-19-01_9x19", + "_parent": "5447b5e04bdc2d62278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_pp-19-01_9x19", + "ShortName": "weapon_izhmash_pp-19-01_9x19", + "Description": "weapon_izhmash_pp-19-01_9x19", + "Weight": 1.809, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/pp-19-01/weapon_izhmash_pp-19-01_9x19_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 59, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "SubMachineGun", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "59985d9386f7742a0913990a", + "_parent": "59984ab886f7743e98271174", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "623c3be0484b5003161840dc", + "628c9ab845c59e5b80768a81", + "628a664bccaab13006640e47", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "59985e2686f77427a674c43e", + "_parent": "59984ab886f7743e98271174", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cf50fc5d7f00c056c53f83c", + "5ac78eaf5acfc4001926317a", + "599851db86f77467372f0a18" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "59985e3586f774265b6600af", + "_parent": "59984ab886f7743e98271174", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "59985e5086f77427a674c448", + "_parent": "59984ab886f7743e98271174", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5998529a86f774647f44f421", + "599860ac86f77436b225ed1a", + "5c0673fb0db8340023300271", + "5c0672ed0db834001b7353f3" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_muzzle", + "_id": "59985e8f86f77427a674c44d", + "_parent": "59984ab886f7743e98271174", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5998597786f77414ea6da093", + "5998598e86f7740b3f498a86", + "59bffc1f86f77435b128b872", + "5a9fb739a2750c003215717f", + "5c6165902e22160010261b28", + "5a32a064c4a28200741e22de", + "59bfc5c886f7743bf6794e62" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "59985e9f86f774267339c6c0", + "_parent": "59984ab886f7743e98271174", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59985a6c86f77414ec448d17", + "59985a8086f77414ec448d1a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "59985eab86f7742d5d28aab7", + "_parent": "59984ab886f7743e98271174", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "599860e986f7743bb57573a6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_scope", + "_id": "59985eba86f7742d5d28aabc", + "_parent": "59984ab886f7743e98271174", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5947db3f86f77447880cf76f", + "6113d6c3290d254f5e6b27db", + "57486e672459770abd687134", + "618a5d5852ecee1505530b2a", + "5c82342f2e221644f31c060e", + "576fd4ec2459777f0b518431", + "5c82343a2e221644f31c0611", + "5cf638cbd7f00c06595bc936", + "5a7c74b3e899ef0014332c29", + "591ee00d86f774592f7b841e", + "5d0a29ead7ad1a0026013f27", + "618a75c9a3884f56c957ca1b", + "57acb6222459771ec34b5cb0", + "5c90c3622e221601da359851", + "638db77630c4240f9e06f8b6", + "6544d4187c5457729210d277" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_gas_block", + "_id": "59ccd16e86f77428fc798735", + "_parent": "59984ab886f7743e98271174", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59ccd11386f77428f24a488f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x19PARA", + "Durability": 95, + "MaxDurability": 100, + "OperatingResource": 10000, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 700, + "Ergonomics": 35, + "Velocity": -17.9, + "bEffDist": 200, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "599860ac86f77436b225ed1a", + "defAmmo": "56d59d3ad2720bdb418b4577", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "59985ce986f774198d5d2c08", + "_parent": "59984ab886f7743e98271174", + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ], + "MaxStackCount": 0 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.13, + "AimPlane": 0.15, + "DeviationCurve": 1.9, + "DeviationMax": 15, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.2185, + "RecoilReturnSpeedHandRotation": 3.1, + "RecoilDampingHandRotation": 0.84, + "RecoilCamera": 0.0408, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 270, + "RecoilForceUp": 58, + "RecolDispersion": 8, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.45, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.3, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 50, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.9452, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.0575, + "HeatFactorByShot": 2.35, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5ea03f7400685063ec28bfa8": { + "_id": "5ea03f7400685063ec28bfa8", + "_name": "weapon_zis_ppsh41_762x25", + "_parent": "5447b5e04bdc2d62278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_zis_ppsh41_762x25", + "ShortName": "weapon_zis_ppsh41_762x25", + "Description": "weapon_zis_ppsh41_762x25", + "Weight": 1.01, + "BackgroundColor": "black", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/ppsh41/weapon_zis_ppsh41_762x25_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 51, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "SubMachineGun", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_stock", + "_id": "5ea03f7400685063ec28bfab", + "_parent": "5ea03f7400685063ec28bfa8", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ea03e9400685063ec28bfa4" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "5ea03f7400685063ec28bfad", + "_parent": "5ea03f7400685063ec28bfa8", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5ea034eb5aad6446a939737b", + "5ea034f65aad6446a939737e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_reciever", + "_id": "5ea03f7400685063ec28bfaf", + "_parent": "5ea03f7400685063ec28bfa8", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ea03e5009aa976f2e7a514b" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "5ea06b13fadf1d18c87b0774", + "_parent": "5ea03f7400685063ec28bfa8", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ea02bb600685063ec28bfa1" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x25TT", + "Durability": 95, + "MaxDurability": 100, + "OperatingResource": 5000, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 1000, + "Ergonomics": 16, + "Velocity": -17.9, + "bEffDist": 200, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5ea034eb5aad6446a939737b", + "defAmmo": "5735ff5c245977640e39ba7e", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.1, + "AimPlane": 0.15, + "DeviationCurve": 2.25, + "DeviationMax": 11, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.2185, + "RecoilReturnSpeedHandRotation": 2, + "RecoilDampingHandRotation": 0.86, + "RecoilCamera": 0.0624, + "RecoilStableIndexShot": 7, + "RecoilForceBack": 294, + "RecoilForceUp": 89, + "RecolDispersion": 12, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.45, + "RecoilReturnPathOffsetHandRotation": 0.012, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.9, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 35, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 50, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.18975, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 2.88, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 2.1, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "55801eed4bdc2d89578b4588": { + "_id": "55801eed4bdc2d89578b4588", + "_name": "weapon_izhmash_sv-98_762x54r", + "_parent": "5447b6254bdc2dc3278b4568", + "_type": "Item", + "_props": { + "Name": "Снайперская винтовка СВ-98", + "ShortName": "СВ-98", + "Description": "СВ-98- Российская снайперская винтовка разработанная 1998-2000 г.г. группой конструкторов под руководством В. Стронского. Серийно выпускается концерном \"Ижмаш\". Винтовка имеет магазинное питание и продольно скользящий затвор, предназначена для поражения живой силы на дистанции до 1000 м.", + "Weight": 1.5, + "BackgroundColor": "black", + "Width": 4, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_rifle", + "Prefab": { + "path": "assets/content/weapons/sv98/weapon_izhmash_sv-98_762x54r_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 14, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "55d5a2c34bdc2d962f8b4575", + "_parent": "55801eed4bdc2d89578b4588", + "_props": { + "filters": [ + { + "AnimationIndex": 0, + "Filter": [ + "559ba5b34bdc2d1f1a8b4582" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_scope", + "_id": "560bfc1d4bdc2d8b418b4573", + "_parent": "55801eed4bdc2d89578b4588", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "626bb8532c923541184624b4", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "544a3d0a4bdc2d1b388b4567", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "62811f461d5df4475f46a332", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "5b2389515acfc4771e1be0c0", + "577d128124597739d65d0e56", + "618b9643526131765025ab35", + "618bab21526131765025ab3f", + "5c86592b2e2216000e69e77c", + "5a37ca54c4a282000d72296a", + "5d0a29fed7ad1a002769ad08", + "5c064c400db834001d23f468", + "58d2664f86f7747fec5834f6", + "57c69dd424597774c03b7bbc", + "5b3b99265acfc4704b4a1afb", + "5aa66a9be5b5b0214e506e89", + "5aa66c72e5b5b00016327c93", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "6171407e50224f204c1da3c5", + "61713cc4d8e3106d9806c109", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "5dff77c759400025ea5150cf", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245", + "6567e751a715f85433025998" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "560d38ae4bdc2d25448b4570", + "_parent": "55801eed4bdc2d89578b4588", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "56083e1b4bdc2dc8488b4572" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_tactical", + "_id": "560d40654bdc2d20478b457e", + "_parent": "55801eed4bdc2d89578b4588", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "56083eab4bdc2d26448b456a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "560e68f94bdc2dd7328b456c", + "_parent": "55801eed4bdc2d89578b4588", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "560e620e4bdc2d724b8b456b", + "5c4ee3d62e2216152006f302", + "5c4eec9b2e2216398b5aaba2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "61faab2aa35fe5242f3d6ca0", + "_parent": "55801eed4bdc2d89578b4588", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "623b2e9d11c3296b440d1638", + "61faa91878830f069b6b7967" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "sniperRifle", + "weapUseType": "primary", + "ammoCaliber": "Caliber762x54R", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 1900, + "RepairComplexity": 1, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": false, + "bFirerate": 30, + "Ergonomics": 24, + "Velocity": 2.6, + "bEffDist": 1000, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "559ba5b34bdc2d1f1a8b4582", + "defAmmo": "5887431f2459777e1612938f", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "56eaa903d2720b69698b456d", + "_parent": "55801eed4bdc2d89578b4588", + "_props": { + "filters": [ + { + "Filter": [ + "5e023d34e8a400319a28ed44", + "5e023d48186a883be655e551", + "5e023cf8186a883be655e54f", + "59e77a2386f7742ee578960a", + "5887431f2459777e1612938f", + "560d61e84bdc2da74d8b4571", + "64b8f7c241772715af0f9c3d", + "64b8f7b5389d7ffd620ccba2", + "64b8f7968532cf95ee0a0dbf" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.016, + "AimPlane": 0.25, + "DeviationCurve": 1, + "DeviationMax": 33, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.2645, + "RecoilReturnSpeedHandRotation": 2.1, + "RecoilDampingHandRotation": 0.87, + "RecoilCamera": 0.13, + "RecoilStableIndexShot": 3, + "RecoilForceBack": 711, + "RecoilForceUp": 250, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.41, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.43, + "z": 0.03 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -0.7, + "y": 0.7, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.24, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.16, + "z": -0.06 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock_000", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 100, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": true, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.2277, + "AllowJam": false, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 4.608, + "CoolFactorGunMods": 0.8428, + "HeatFactorByShot": 4.62, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + } + }, + "5447bee84bdc2dc3278b4569": { + "_id": "5447bee84bdc2dc3278b4569", + "_name": "SpecialWeapon", + "_parent": "5422acb9af1c889c16000029", + "_type": "Node", + "_props": {} + }, + "59e7711e86f7746cae05fbe1": { + "_id": "59e7711e86f7746cae05fbe1", + "_name": "helmet_k1c", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "Helmet K1C", + "ShortName": "Helmet K1C", + "Description": "Helmet K1C", + "Weight": 1.9, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_k1c/item_equipment_helmet_k1c.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 133, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_equipment", + "_id": "5ac4c4ca5acfc43f6724894b", + "_parent": "59e7711e86f7746cae05fbe1", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ac4c50d5acfc40019262e87" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "Helmet_top", + "_id": "657ba67a23918923cb0df570", + "_parent": "59e7711e86f7746cae05fbe1", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657ba50c23918923cb0df56c", + "Filter": [ + "657ba50c23918923cb0df56c" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657ba67a23918923cb0df571", + "_parent": "59e7711e86f7746cae05fbe1", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657ba5439ba22f103e08139f", + "Filter": [ + "657ba5439ba22f103e08139f" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_ears", + "_id": "657ba67a23918923cb0df572", + "_parent": "59e7711e86f7746cae05fbe1", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657ba57af58ba5a62501079e", + "Filter": [ + "657ba57af58ba5a62501079e" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.2, + "y": 0.01, + "z": 90 + }, + "DeafStrength": "High", + "BluntThroughput": 0.2376, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -2, + "weaponErgonomicPenalty": -2 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "59f9cabd86f7743a10721f46": { + "_id": "59f9cabd86f7743a10721f46", + "_name": "weapon_izhmash_saiga_9_9x19", + "_parent": "5447b5e04bdc2d62278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_izhmash_saiga_9_9x19", + "ShortName": "weapon_izhmash_saiga_9_9x19", + "Description": "weapon_izhmash_saiga_9_9x19", + "Weight": 1.962, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/pp-19-01/weapon_izhmash_saiga_9_9x19_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 45, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "SubMachineGun", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "59f9cabd86f7743a10721f47", + "_parent": "59f9cabd86f7743a10721f46", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f6341043ada5942720e2dc5", + "6087e663132d4d12c81fd96b", + "5beec8ea0db834001a6f9dbf", + "5649ad3f4bdc2df8348b4585", + "5649ade84bdc2d1b2b8b4587", + "59e62cc886f77440d40b52a1", + "5a0071d486f77404e23a12b2", + "57e3dba62459770f0c32322b", + "5cf54404d7f00c108840b2ef", + "5e2192a498a36665e8337386", + "5b30ac585acfc433000eb79c", + "59e6318286f77444dd62c4cc", + "5cf50850d7f00c056e24104c", + "5cf508bfd7f00c056e24104e", + "5947f92f86f77427344a76b1", + "5947fa2486f77425b47c1a9b", + "5c6bf4aa2e2216001219b0ae", + "5649ae4a4bdc2d1b2b8b4588", + "5998517986f7746017232f7e", + "623c3be0484b5003161840dc", + "628a664bccaab13006640e47", + "628c9ab845c59e5b80768a81", + "63f4da90f31d4a33b87bd054", + "648ae3e356c6310a830fc291", + "651580dc71a4f10aec4b6056" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "59f9cabd86f7743a10721f48", + "_parent": "59f9cabd86f7743a10721f46", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cf50fc5d7f00c056c53f83c", + "5ac78eaf5acfc4001926317a", + "599851db86f77467372f0a18" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "59f9cabd86f7743a10721f49", + "_parent": "59f9cabd86f7743a10721f46", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6130ca3fd92c473c77020dbd", + "5648ac824bdc2ded0b8b457d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "59f9cabd86f7743a10721f4a", + "_parent": "59f9cabd86f7743a10721f46", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5998529a86f774647f44f421", + "599860ac86f77436b225ed1a", + "5c0673fb0db8340023300271", + "5c0672ed0db834001b7353f3" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_muzzle", + "_id": "59f9cabd86f7743a10721f4b", + "_parent": "59f9cabd86f7743a10721f46", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5998597786f77414ea6da093", + "5998598e86f7740b3f498a86", + "59bffc1f86f77435b128b872", + "5a9fb739a2750c003215717f", + "5c6165902e22160010261b28", + "5a32a064c4a28200741e22de", + "59bfc5c886f7743bf6794e62" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "59f9cabd86f7743a10721f4c", + "_parent": "59f9cabd86f7743a10721f46", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59985a6c86f77414ec448d17", + "59985a8086f77414ec448d1a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_sight_rear", + "_id": "59f9cabd86f7743a10721f4d", + "_parent": "59f9cabd86f7743a10721f46", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "599860e986f7743bb57573a6" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_gas_block", + "_id": "59f9cabd86f7743a10721f4f", + "_parent": "59f9cabd86f7743a10721f46", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "59ccd11386f77428f24a488f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x19PARA", + "Durability": 95, + "MaxDurability": 100, + "OperatingResource": 6000, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 650, + "Ergonomics": 32, + "Velocity": -17.9, + "bEffDist": 300, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5998529a86f774647f44f421", + "defAmmo": "56d59d3ad2720bdb418b4577", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "59f9cabd86f7743a10721f50", + "_parent": "59f9cabd86f7743a10721f46", + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ], + "MaxStackCount": 0 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.07, + "AimPlane": 0.1, + "DeviationCurve": 1.75, + "DeviationMax": 17, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.2185, + "RecoilReturnSpeedHandRotation": 3.5, + "RecoilDampingHandRotation": 0.84, + "RecoilCamera": 0.0367, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 246, + "RecoilForceUp": 42, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.45, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.25, + "z": 0 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": -0.03 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.27, + "z": -0.08 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 50, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.2024, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 0.9066, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 0.9964, + "HeatFactorByShot": 2.3, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "5447b5fc4bdc2d87278b4567": { + "_id": "5447b5fc4bdc2d87278b4567", + "_name": "AssaultCarbine", + "_parent": "5422acb9af1c889c16000029", + "_type": "Node", + "_props": { + "Name": "Item", + "ShortName": "Item", + "Description": "Item", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x18PM", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 0, + "RepairComplexity": 0, + "durabSpawnMin": 0, + "durabSpawnMax": 0, + "isFastReload": false, + "weapFireType": [], + "SingleFireRate": 720, + "CanQueueSecondShot": true, + "bFirerate": 900, + "Ergonomics": 10, + "Velocity": 0, + "bEffDist": 1, + "bHearDist": 1, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5448bc234bdc2d3c308b4569", + "defAmmo": "5485a8684bdc2da71d8b4567", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 10, + "Chambers": [], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0, + "DeviationCurve": 1, + "DeviationMax": 100, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.207, + "RecoilReturnSpeedHandRotation": 1, + "RecoilDampingHandRotation": 0.89, + "RecoilCamera": -0.3, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 100, + "RecoilForceUp": 50, + "RecolDispersion": 0, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.55, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": 0, + "z": 1 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.5, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1.5, + "y": 1.5, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3, + "RotationCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1, + "HeatFactorGun": 1, + "CoolFactorGun": 1, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1, + "AllowOverheat": false, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + } + }, + "5447bedf4bdc2d87278b4568": { + "_id": "5447bedf4bdc2d87278b4568", + "_name": "GrenadeLauncher", + "_parent": "5422acb9af1c889c16000029", + "_type": "Node", + "_props": { + "Name": "Item", + "ShortName": "Item", + "Description": "Item", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x18PM", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 0, + "RepairComplexity": 0, + "durabSpawnMin": 0, + "durabSpawnMax": 0, + "isFastReload": false, + "weapFireType": [], + "SingleFireRate": 720, + "CanQueueSecondShot": true, + "bFirerate": 900, + "Ergonomics": 10, + "Velocity": 0, + "bEffDist": 1, + "bHearDist": 1, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5448bc234bdc2d3c308b4569", + "defAmmo": "5485a8684bdc2da71d8b4567", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 10, + "Chambers": [], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0, + "DeviationCurve": 1, + "DeviationMax": 100, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.345, + "RecoilReturnSpeedHandRotation": 1, + "RecoilDampingHandRotation": 0.9, + "RecoilCamera": -0.3, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 100, + "RecoilForceUp": 50, + "RecolDispersion": 0, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.57, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.47, + "z": -0.05 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -4, + "y": 4, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.01, + "y": 0.11, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.01, + "CameraSnap": 3, + "RotationCenter": { + "x": 0, + "y": -0.2, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1, + "HeatFactorGun": 1, + "CoolFactorGun": 1, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1, + "AllowOverheat": false, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + } + }, + "5447b5e04bdc2d62278b4567": { + "_id": "5447b5e04bdc2d62278b4567", + "_name": "Smg", + "_parent": "5422acb9af1c889c16000029", + "_type": "Node", + "_props": { + "Name": "Item", + "ShortName": "Item", + "Description": "Item", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x18PM", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 0, + "RepairComplexity": 0, + "durabSpawnMin": 0, + "durabSpawnMax": 0, + "isFastReload": false, + "weapFireType": [], + "SingleFireRate": 720, + "CanQueueSecondShot": true, + "bFirerate": 900, + "Ergonomics": 10, + "Velocity": 0, + "bEffDist": 1, + "bHearDist": 1, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5448bc234bdc2d3c308b4569", + "defAmmo": "5485a8684bdc2da71d8b4567", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 10, + "Chambers": [], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0, + "DeviationCurve": 1, + "DeviationMax": 100, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.2185, + "RecoilReturnSpeedHandRotation": 1, + "RecoilDampingHandRotation": 0.92, + "RecoilCamera": -0.3, + "RecoilStableIndexShot": 5, + "RecoilForceBack": 100, + "RecoilForceUp": 50, + "RecolDispersion": 0, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.5, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": 0, + "z": 1 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3, + "RotationCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1, + "HeatFactorGun": 1, + "CoolFactorGun": 1, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1, + "AllowOverheat": false, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + } + }, + "58948c8e86f77409493f7266": { + "_id": "58948c8e86f77409493f7266", + "_name": "weapon_sig_mpx_9x19", + "_parent": "5447b5e04bdc2d62278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_sig_mpx_9x19", + "ShortName": "weapon_sig_mpx_9x19", + "Description": "weapon_sig_mpx_9x19", + "Weight": 0.64, + "BackgroundColor": "black", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/mpx/weapon_sig_mpx_9x19_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 135, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "SubMachineGun", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "58948c8f86f77409493f7267", + "_parent": "58948c8e86f77409493f7266", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "55d4b9964bdc2d1d4e8b456e", + "571659bb2459771fb2755a12", + "602e71bd53a60014f9705bfa", + "6113c3586c780c1e710c90bc", + "6113cc78d3a39d50044c065a", + "6113cce3d92c473c770200c7", + "5cc9bcaed7f00c011c04e179", + "5bb20e18d4351e00320205d5", + "5bb20e0ed4351e3bac1212dc", + "6193dcd0f8ee7e52e4210a28", + "5d025cc1d7ad1a53845279ef", + "5c6d7b3d2e221600114c9b7d", + "57c55efc2459772d2c6271e7", + "57af48872459771f0b2ebf11", + "57c55f092459772d291a8463", + "57c55f112459772d28133310", + "57c55f172459772d27602381", + "5a339805c4a2826c6e06d73d", + "55802f5d4bdc2dac148b458f", + "5d15cf3bd7ad1a67e71518b2", + "59db3a1d86f77429e05b4e92", + "5fbcbd6c187fea44d52eda14", + "59db3acc86f7742a2c4ab912", + "59db3b0886f77429d72fb895", + "615d8faecabb9b7ad90f4d5d", + "5b07db875acfc40dc528a5f6", + "5894a51286f77426d13baf02", + "63f5feead259b42f0b4d6d0f", + "652911675ae2ae97b80fdf3c" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "58948c8f86f77409493f7268", + "_parent": "58948c8e86f77409493f7266", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5c5db6742e2216000f1b2852", + "5c5db6552e2216001026119d", + "5894a05586f774094708ef75", + "5c5db6652e221600113fba51" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_reciever", + "_id": "58948c8f86f77409493f7269", + "_parent": "58948c8e86f77409493f7266", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5894a5b586f77426d2590767" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "58948c8f86f77409493f726a", + "_parent": "58948c8e86f77409493f7266", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "58ac1bf086f77420ed183f9f", + "5894a13e86f7742405482982", + "5fbcc429900b1d5091531dd7", + "5fbcc437d724d907e2077d5c", + "5c5db6ee2e221600113fba54", + "5c5db6f82e2216003a0fe914", + "6529348224cbe3c74a05e5c4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "58948c8f86f77409493f726b", + "_parent": "58948c8e86f77409493f7266", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c5db6b32e221600102611a0", + "58949edd86f77409483e16a9", + "58949fac86f77409483e16aa" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x19PARA", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 5600, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 850, + "Ergonomics": 40, + "Velocity": 0, + "bEffDist": 500, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5894a05586f774094708ef75", + "defAmmo": "64b7bbb74b75259c590fa897", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "58948c8f86f77409493f726c", + "_parent": "58948c8e86f77409493f7266", + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0, + "AimPlane": 0.16, + "DeviationCurve": 2.25, + "DeviationMax": 11, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.2185, + "RecoilReturnSpeedHandRotation": 3.1, + "RecoilDampingHandRotation": 0.84, + "RecoilCamera": 0.0408, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 269, + "RecoilForceUp": 51, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.45, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.2, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.24, + "z": 0.02 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.1, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.26, + "z": -0.07 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.03, + "IronSightRange": 50, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1.84, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.025, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "62e14904c2699c0ec93adc47": { + "_id": "62e14904c2699c0ec93adc47", + "_name": "weapon_tochmash_sr2m_veresk_9x21", + "_parent": "5447b5e04bdc2d62278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_hk_mp7a1_46x30", + "ShortName": "weapon_hk_mp7a1_46x30", + "Description": "weapon_hk_mp7a1_46x30", + "Weight": 0.938, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/sr2m/weapon_tochmash_sr2m_veresk_9x21_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 221, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "SubMachineGun", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "62e14904c2699c0ec93adc48", + "_parent": "62e14904c2699c0ec93adc47", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "62e153bcdb1a5c41971c1b5b", + "633a98eab8b0506e48497c1a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_muzzle", + "_id": "62e14904c2699c0ec93adc49", + "_parent": "62e14904c2699c0ec93adc47", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62e2a7138e1ac9380579c122", + "62e2a754b6c0ee2f230cee0f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "62e14904c2699c0ec93adc50", + "_parent": "62e14904c2699c0ec93adc47", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62e292e7b6c0ee2f230cee00", + "62e2969582ebf260c20539c2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "62e1535fc2699c0ec93adc55", + "_parent": "62e14904c2699c0ec93adc47", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62e27a7865f0b1592a49e17b" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_handguard", + "_id": "62e154e1c2699c0ec93adc56", + "_parent": "62e14904c2699c0ec93adc47", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "62e15547db1a5c41971c1b5e", + "637ba19df7ca6372bf2613d7" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_pistolgrip", + "_id": "637b9c95551ab530cf46d09c", + "_parent": "62e14904c2699c0ec93adc47", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "637b9c37b7e3bc41b21ce71a", + "637ba29bf7ca6372bf2613db" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x21", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 6500, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 950, + "Ergonomics": 59, + "Velocity": 13, + "bEffDist": 200, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "62e153bcdb1a5c41971c1b5b", + "defAmmo": "5a26abfac4a28232980eabff", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "62e14904c2699c0ec93adc51", + "_parent": "62e14904c2699c0ec93adc47", + "_props": { + "filters": [ + { + "Filter": [ + "5a269f97c4a282000b151807", + "5a26abfac4a28232980eabff", + "5a26ac06c4a282000c5a90a8", + "5a26ac0ec4a28200741e1e18", + "6576f93989f0062e741ba952", + "6576f4708ca9c4381d16cd9d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.23, + "AimPlane": 0.25, + "DeviationCurve": 2.25, + "DeviationMax": 11, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.2185, + "RecoilReturnSpeedHandRotation": 3.2, + "RecoilDampingHandRotation": 0.84, + "RecoilCamera": 0.0384, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 234, + "RecoilForceUp": 54, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.45, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.2, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.32, + "z": -0.02 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.13, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.38, + "z": -0.11 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 50, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1.0816, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.0272, + "HeatFactorByShot": 1.75, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "572b7fa124597762b472f9d2": { + "_id": "572b7fa124597762b472f9d2", + "_name": "knitcap", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "Knitcap", + "ShortName": "Knitcap", + "Description": "Knitcap", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/head_knitcap/item_equipment_head_knitcap.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7f1624597762ae139822" + }, "5ae08f0a5acfc408fb1398a1": { "_id": "5ae08f0a5acfc408fb1398a1", "_name": "weapon_izhmash_mosin_rifle_762x54", @@ -259236,23 +261495,23 @@ "blockLeftStance": false } }, - "60a7acf20c5cb24b01346648": { - "_id": "60a7acf20c5cb24b01346648", - "_name": "item_equipment_head_tagillacap", + "5aa7cfc0e5b5b00015693143": { + "_id": "5aa7cfc0e5b5b00015693143", + "_name": "helmet_6B47_cover", "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "Army cap", - "ShortName": "Army cap", - "Description": "Army cap", - "Weight": 0.1, + "Name": "helmet_6B47_cover", + "ShortName": "helmet_6B47_cover", + "Description": "helmet_6B47_cover", + "Weight": 1.3, "BackgroundColor": "default", - "Width": 1, - "Height": 1, + "Width": 2, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "gear_generic", + "ItemSound": "gear_helmet", "Prefab": { - "path": "assets/content/items/equipment/head_tagillacap/item_equipment_head_tagillacap.bundle", + "path": "assets/content/items/equipment/helmet_6b47covered/item_equipment_helmet_6b47covered.bundle", "rcid": "" }, "UsePrefab": { @@ -259261,7 +261520,422 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 478, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_nvg", + "_id": "5aa7cfc0e5b5b00015693145", + "_parent": "5aa7cfc0e5b5b00015693143", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0558060db834001b735271", + "5a16b8a9fcdbcb00165aa6ca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_equipment", + "_id": "5aa7cfc0e5b5b00015693146", + "_parent": "5aa7cfc0e5b5b00015693143", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a800961159bd4315e3a1657", + "57fd23e32459772d0805bcf1", + "544909bb4bdc2d6f028b4577", + "5d10b49bd7ad1a1a560708b0", + "5c06595c0db834001a66af6c", + "626becf9582c3e319310b837", + "6272370ee4013c5d7e31f418", + "6272379924e29f06af4d5ecb", + "5d2369418abbc306c62e0c80", + "5b07dd285acfc4001754240d", + "56def37dd2720bec348b456a", + "5a7b483fe899ef0016170d15", + "5a5f1ce64f39f90b401987bc", + "560d657b4bdc2da74d8b4572", + "5b3a337e5acfc4704b4a19a0", + "5c5952732e2216398b5abda2", + "6267c6396b642f77f56f5c1c", + "57d17e212459775a1179a0f5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "Helmet_top", + "_id": "657bad96cfcf63c951052db0", + "_parent": "5aa7cfc0e5b5b00015693143", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657baaf0b7e9ca9a02045c02", + "Filter": [ + "657baaf0b7e9ca9a02045c02" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657bad96cfcf63c951052db1", + "_parent": "5aa7cfc0e5b5b00015693143", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657bab6ec6f689d3a205b85f", + "Filter": [ + "657bab6ec6f689d3a205b85f" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_ears", + "_id": "657bad96cfcf63c951052db2", + "_parent": "5aa7cfc0e5b5b00015693143", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657babc6f58ba5a6250107a2", + "Filter": [ + "657babc6f58ba5a6250107a2" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 75 + }, + "DeafStrength": "Low", + "BluntThroughput": 0.2376, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5c08f87c0db8340019124324": { + "_id": "5c08f87c0db8340019124324", + "_name": "item_equipment_helmet_shpm", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_shpm", + "ShortName": "item_equipment_helmet_shpm", + "Description": "item_equipment_helmet_shpm", + "Weight": 1.5, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_shpm/item_equipment_helmet_shpm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 116, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Helmet_top", + "_id": "657ba9d2c6f689d3a205b85c", + "_parent": "5c08f87c0db8340019124324", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657ba85ecfcf63c951052da7", + "Filter": [ + "657ba85ecfcf63c951052da7" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657ba9d2c6f689d3a205b85d", + "_parent": "5c08f87c0db8340019124324", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657ba8bccfcf63c951052dab", + "Filter": [ + "657ba8bccfcf63c951052dab" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "helmet_eyes", + "_id": "658190129ce197f8b505f18d", + "_parent": "5c08f87c0db8340019124324", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65818e4e566d2de69901b1b1", + "Filter": [ + "65818e4e566d2de69901b1b1" + ], + "armorColliders": [ + "HeadCommon", + "Eyes", + "Jaw", + "NeckFront" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_ears", + "_id": "658190129ce197f8b505f18e", + "_parent": "5c08f87c0db8340019124324", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657ba8eab7e9ca9a02045bfd", + "Filter": [ + "657ba8eab7e9ca9a02045bfd" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.2, + "y": 0.01, + "z": 65 + }, + "DeafStrength": "High", + "BluntThroughput": 0.225, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -3, + "weaponErgonomicPenalty": -2 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5aa2ba19e5b5b00014028f4e": { + "_id": "5aa2ba19e5b5b00014028f4e", + "_name": "hats_fleece", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "hats_fleece", + "ShortName": "hats_fleece", + "Description": "hats_fleece", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_fleece/item_equipment_head_fleece.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -259270,7 +261944,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 5, - "ExamineExperience": 100, + "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -259282,13 +261956,7 @@ "MergesWithChildren": false, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5bd0716d86f774171822ef4b", - "5bd06f5d86f77427101ad47c", - "5b432c305acfc40019478128", - "60363c0c92ec1c31037959f5", - "5e54f79686f7744022011103" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -259336,23 +262004,117 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, - "5aa7e276e5b5b000171d0647": { - "_id": "5aa7e276e5b5b000171d0647", - "_name": "helmet_altyn", + "5aa2a7e8e5b5b00016327c16": { + "_id": "5aa2a7e8e5b5b00016327c16", + "_name": "cap_USEC", "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "helmet_altyn", - "ShortName": "helmet_altyn", - "Description": "helmet_altyn", - "Weight": 4, + "Name": "cap_USEC", + "ShortName": "cap_USEC", + "Description": "cap_USEC", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_usec/item_equipment_head_usec_sand.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5c091a4e0db834001d5addc8": { + "_id": "5c091a4e0db834001d5addc8", + "_name": "item_equipment_helmet_maska_1sh", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_maska_1sh", + "ShortName": "item_equipment_helmet_maska_1sh", + "Description": "item_equipment_helmet_maska_1sh", + "Weight": 2.6, "BackgroundColor": "default", "Width": 2, "Height": 2, "StackMaxSize": 1, "ItemSound": "gear_helmet", "Prefab": { - "path": "assets/content/items/equipment/helmet_altyn/item_equipment_helmet_altyn.bundle", + "path": "assets/content/items/equipment/helmet_maska_1sh/item_equipment_helmet_maska_1sh.bundle", "rcid": "" }, "UsePrefab": { @@ -259372,7 +262134,7 @@ "LootExperience": 20, "ExamineExperience": 4, "HideEntrails": false, - "RepairCost": 1085, + "RepairCost": 765, "RepairSpeed": 10, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -259400,14 +262162,15 @@ "Slots": [ { "_name": "mod_equipment", - "_id": "5aa7e325e5b5b0214e506fa1", - "_parent": "5aa7e276e5b5b000171d0647", + "_id": "5c091a4e0db834001d5addca", + "_parent": "5c091a4e0db834001d5addc8", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5aa7e373e5b5b000137b76f0" + "5c0919b50db834001b7ce3b9", + "5c0e842486f77443a74d2976" ] } ] @@ -259418,15 +262181,15 @@ }, { "_name": "Helmet_top", - "_id": "657bc246bbd440df880b2ddf", - "_parent": "5aa7e276e5b5b000171d0647", + "_id": "6571173a22996eaf11088212", + "_parent": "5c091a4e0db834001d5addc8", "_props": { "filters": [ { "locked": true, - "Plate": "657bc06daab96fccee08be9b", + "Plate": "6571133d22996eaf11088200", "Filter": [ - "657bc06daab96fccee08be9b" + "6571133d22996eaf11088200" ], "armorColliders": [ "ParietalHead" @@ -259442,15 +262205,15 @@ }, { "_name": "Helmet_back", - "_id": "657bc246bbd440df880b2de0", - "_parent": "5aa7e276e5b5b000171d0647", + "_id": "6571173a22996eaf11088213", + "_parent": "5c091a4e0db834001d5addc8", "_props": { "filters": [ { "locked": true, - "Plate": "657bc0d8a1c61ee0c303632f", + "Plate": "6571138e818110db4600aa71", "Filter": [ - "657bc0d8a1c61ee0c303632f" + "6571138e818110db4600aa71" ], "armorColliders": [ "BackHead" @@ -259466,15 +262229,414 @@ }, { "_name": "Helmet_ears", - "_id": "657bc246bbd440df880b2de1", - "_parent": "5aa7e276e5b5b000171d0647", + "_id": "6571173a22996eaf11088214", + "_parent": "5c091a4e0db834001d5addc8", "_props": { "filters": [ { "locked": true, - "Plate": "657bc107aab96fccee08be9f", + "Plate": "657112fa818110db4600aa6b", "Filter": [ - "657bc107aab96fccee08be9f" + "657112fa818110db4600aa6b" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 80 + }, + "DeafStrength": "High", + "BluntThroughput": 0.1726, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -1, + "weaponErgonomicPenalty": -4 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5447b6194bdc2d67278b4567": { + "_id": "5447b6194bdc2d67278b4567", + "_name": "MarksmanRifle", + "_parent": "5422acb9af1c889c16000029", + "_type": "Node", + "_props": { + "Name": "Item", + "ShortName": "Item", + "Description": "Item", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x18PM", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 0, + "RepairComplexity": 0, + "durabSpawnMin": 0, + "durabSpawnMax": 0, + "isFastReload": false, + "weapFireType": [], + "SingleFireRate": 720, + "CanQueueSecondShot": true, + "bFirerate": 900, + "Ergonomics": 10, + "Velocity": 0, + "bEffDist": 1, + "bHearDist": 1, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5448bc234bdc2d3c308b4569", + "defAmmo": "5485a8684bdc2da71d8b4567", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 10, + "Chambers": [], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0, + "DeviationCurve": 1, + "DeviationMax": 100, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.23, + "RecoilReturnSpeedHandRotation": 1, + "RecoilDampingHandRotation": 0.9, + "RecoilCamera": -0.3, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 110, + "RecoilForceUp": 60, + "RecolDispersion": 0, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.55, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": 0, + "z": 1 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -1, + "y": 1, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3, + "RotationCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1, + "HeatFactorGun": 1, + "CoolFactorGun": 1, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1, + "AllowOverheat": false, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + } + }, + "5ca20ee186f774799474abc2": { + "_id": "5ca20ee186f774799474abc2", + "_name": "item_equipment_helmet_vulkan5", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "helmet_altyn", + "ShortName": "helmet_altyn", + "Description": "helmet_altyn", + "Weight": 4.5, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_vulkan_5/item_equipment_helmet_vulkan_5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 1646, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_equipment", + "_id": "5ca20ee186f774799474abc4", + "_parent": "5ca20ee186f774799474abc2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ca2113f86f7740b2547e1d2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "Helmet_top", + "_id": "657bbfd8bbd440df880b2ddc", + "_parent": "5ca20ee186f774799474abc2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657bbe73a1c61ee0c303632b", + "Filter": [ + "657bbe73a1c61ee0c303632b" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657bbfd8bbd440df880b2ddd", + "_parent": "5ca20ee186f774799474abc2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657bbed0aab96fccee08be96", + "Filter": [ + "657bbed0aab96fccee08be96" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_ears", + "_id": "657bbfd8bbd440df880b2dde", + "_parent": "5ca20ee186f774799474abc2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657bbefeb30eca9763051189", + "Filter": [ + "657bbefeb30eca9763051189" ], "armorColliders": [ "Ears" @@ -259506,38 +262668,38 @@ "RicochetParams": { "x": 0.9, "y": 0.4, - "z": 70 + "z": 50 }, "DeafStrength": "High", - "BluntThroughput": 0.1665, - "ArmorMaterial": "ArmoredSteel", + "BluntThroughput": 0.1314, + "ArmorMaterial": "Combined", "BlindnessProtection": 0, "ArmorType": "Heavy", "armorColliders": [], "armorPlateColliders": [], "speedPenaltyPercent": -1, - "mousePenalty": -4, - "weaponErgonomicPenalty": -3 + "mousePenalty": -8, + "weaponErgonomicPenalty": -6 }, "_proto": "5645bc214bdc2d363b8b4571" }, - "5a16bb52fcdbcb001a3b00dc": { - "_id": "5a16bb52fcdbcb001a3b00dc", - "_name": "helmet_wilcox_skull_lock", + "572b7d8524597762b472f9d1": { + "_id": "572b7d8524597762b472f9d1", + "_name": "cap", "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "helmet_wilcox_skull_lock", - "ShortName": "helmet_wilcox_skull_lock", - "Description": "helmet_wilcox_skull_lock", - "Weight": 0.5, + "Name": "Cap", + "ShortName": "Cap", + "Description": "Cap", + "Weight": 0.1, "BackgroundColor": "default", - "Width": 2, - "Height": 2, + "Width": 1, + "Height": 1, "StackMaxSize": 1, "ItemSound": "gear_helmet", "Prefab": { - "path": "assets/content/items/equipment/customizable/skull_lock/helmet_wilcox_skull_lock.bundle", + "path": "assets/content/items/equipment/head_capsuperman/item_equipment_head_capsuperman.bundle", "rcid": "" }, "UsePrefab": { @@ -259554,17 +262716,17 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, + "LootExperience": 5, + "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 50, - "RepairSpeed": 10, + "RepairCost": 0, + "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, - "MergesWithChildren": true, + "MergesWithChildren": false, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [], @@ -259582,26 +262744,7 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "mod_nvg", - "_id": "5a17e73bfcdbcbcae6687269", - "_parent": "5a16bb52fcdbcb001a3b00dc", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a16b8a9fcdbcb00165aa6ca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "BlocksEarpiece": false, @@ -260733,2395 +263876,23 @@ }, "_proto": "55801eed4bdc2d89578b4588" }, - "58948c8e86f77409493f7266": { - "_id": "58948c8e86f77409493f7266", - "_name": "weapon_sig_mpx_9x19", - "_parent": "5447b5e04bdc2d62278b4567", + "5de652c31b7e3716273428be": { + "_id": "5de652c31b7e3716273428be", + "_name": "weapon_molot_vpo_215_366tkm", + "_parent": "5447b6254bdc2dc3278b4568", "_type": "Item", "_props": { - "Name": "weapon_sig_mpx_9x19", - "ShortName": "weapon_sig_mpx_9x19", - "Description": "weapon_sig_mpx_9x19", - "Weight": 0.64, + "Name": "weapon_molot_vpo_215_366tkm", + "ShortName": "weapon_molot_vpo_215_366tkm", + "Description": "weapon_molot_vpo_215_366tkm", + "Weight": 0.55, "BackgroundColor": "black", "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "weap_ar", + "ItemSound": "weap_rifle", "Prefab": { - "path": "assets/content/weapons/mpx/weapon_sig_mpx_9x19_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 135, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "SubMachineGun", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "58948c8f86f77409493f7267", - "_parent": "58948c8e86f77409493f7266", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "55d4b9964bdc2d1d4e8b456e", - "571659bb2459771fb2755a12", - "602e71bd53a60014f9705bfa", - "6113c3586c780c1e710c90bc", - "6113cc78d3a39d50044c065a", - "6113cce3d92c473c770200c7", - "5cc9bcaed7f00c011c04e179", - "5bb20e18d4351e00320205d5", - "5bb20e0ed4351e3bac1212dc", - "6193dcd0f8ee7e52e4210a28", - "5d025cc1d7ad1a53845279ef", - "5c6d7b3d2e221600114c9b7d", - "57c55efc2459772d2c6271e7", - "57af48872459771f0b2ebf11", - "57c55f092459772d291a8463", - "57c55f112459772d28133310", - "57c55f172459772d27602381", - "5a339805c4a2826c6e06d73d", - "55802f5d4bdc2dac148b458f", - "5d15cf3bd7ad1a67e71518b2", - "59db3a1d86f77429e05b4e92", - "5fbcbd6c187fea44d52eda14", - "59db3acc86f7742a2c4ab912", - "59db3b0886f77429d72fb895", - "615d8faecabb9b7ad90f4d5d", - "5b07db875acfc40dc528a5f6", - "5894a51286f77426d13baf02", - "63f5feead259b42f0b4d6d0f", - "652911675ae2ae97b80fdf3c" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "58948c8f86f77409493f7268", - "_parent": "58948c8e86f77409493f7266", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5c5db6742e2216000f1b2852", - "5c5db6552e2216001026119d", - "5894a05586f774094708ef75", - "5c5db6652e221600113fba51" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_reciever", - "_id": "58948c8f86f77409493f7269", - "_parent": "58948c8e86f77409493f7266", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5894a5b586f77426d2590767" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "58948c8f86f77409493f726a", - "_parent": "58948c8e86f77409493f7266", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "58ac1bf086f77420ed183f9f", - "5894a13e86f7742405482982", - "5fbcc429900b1d5091531dd7", - "5fbcc437d724d907e2077d5c", - "5c5db6ee2e221600113fba54", - "5c5db6f82e2216003a0fe914", - "6529348224cbe3c74a05e5c4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "58948c8f86f77409493f726b", - "_parent": "58948c8e86f77409493f7266", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c5db6b32e221600102611a0", - "58949edd86f77409483e16a9", - "58949fac86f77409483e16aa" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x19PARA", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 5600, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 850, - "Ergonomics": 40, - "Velocity": 0, - "bEffDist": 500, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5894a05586f774094708ef75", - "defAmmo": "64b7bbb74b75259c590fa897", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "58948c8f86f77409493f726c", - "_parent": "58948c8e86f77409493f7266", - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0, - "AimPlane": 0.16, - "DeviationCurve": 2.25, - "DeviationMax": 11, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2185, - "RecoilReturnSpeedHandRotation": 3.1, - "RecoilDampingHandRotation": 0.84, - "RecoilCamera": 0.0408, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 269, - "RecoilForceUp": 51, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.45, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.2, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.24, - "z": 0.02 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.26, - "z": -0.07 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.03, - "IronSightRange": 50, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1.84, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.025, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5e00903ae9dc277128008b87": { - "_id": "5e00903ae9dc277128008b87", - "_name": "weapon_bt_mp9_9x19", - "_parent": "5447b5e04bdc2d62278b4567", - "_type": "Item", - "_props": { - "Name": "Бургер и Томат ЭмПэ ДеВяТь", - "ShortName": "weapon_bt_mp9_9x19", - "Description": "weapon_bt_mp9_9x19", - "Weight": 0.75, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/mp9/weapon_bt_mp9_9x19_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 71, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "SubMachineGun", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "5e00903ae9dc277128008b89", - "_parent": "5e00903ae9dc277128008b87", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5de8e8dafd6b4e6e2276dc32", - "5de8ea8ffd6b4e6e2276dc35", - "5de8eaadbbaf010b10528a6d", - "5de8eac42a78646d96665d91" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_muzzle", - "_id": "5e00903ae9dc277128008b8a", - "_parent": "5e00903ae9dc277128008b87", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5de8f237bbaf010b10528a70" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5e00903ae9dc277128008b8b", - "_parent": "5e00903ae9dc277128008b87", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5de910da8b6c4240ba2651b5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "5e00903ae9dc277128008b8d", - "_parent": "5e00903ae9dc277128008b87", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5de8e67c4a9f347bc92edbd7", - "5e0090f7e9dc277128008b93" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "5e00903ae9dc277128008b8e", - "_parent": "5e00903ae9dc277128008b87", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5de922d4b11454561e39239f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5e00907ee9dc277128008b90", - "_parent": "5e00903ae9dc277128008b87", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5de8fbf2b74cd90030650c79" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x19PARA", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 4500, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 900, - "Ergonomics": 75, - "Velocity": 13, - "bEffDist": 200, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5de8e8dafd6b4e6e2276dc32", - "defAmmo": "64b7bbb74b75259c590fa897", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5e00903ae9dc277128008b8f", - "_parent": "5e00903ae9dc277128008b87", - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.21, - "AimPlane": 0.1, - "DeviationCurve": 2.25, - "DeviationMax": 11, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2185, - "RecoilReturnSpeedHandRotation": 3.2, - "RecoilDampingHandRotation": 0.84, - "RecoilCamera": 0.0347, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 254, - "RecoilForceUp": 54, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.45, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 95, - "RecoilStableAngleIncreaseStep": 2.2, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.32, - "z": -0.02 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.13, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.38, - "z": -0.11 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 50, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1.1024, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.0464, - "HeatFactorByShot": 1.8, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "59ef13ca86f77445fd0e2483": { - "_id": "59ef13ca86f77445fd0e2483", - "_name": "jack_o_lantern", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "Jack-O-Lantern", - "ShortName": "Jack-O-Lantern", - "Description": "Jack-O-Lantern", - "Weight": 1.2, - "BackgroundColor": "orange", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/head_jack_o_lantern/item_equipment_head_jack_o_lantern.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 50, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "Low", - "BluntThroughput": 0.18, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "HeadCommon", - "ParietalHead", - "BackHead", - "Ears", - "Eyes", - "Jaw", - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -1, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5d2f0d8048f0356c925bc3b0": { - "_id": "5d2f0d8048f0356c925bc3b0", - "_name": "weapon_hk_mp5_kurtz_9x19", - "_parent": "5447b5e04bdc2d62278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_hk_mp5_navy3_9x19", - "ShortName": "weapon_hk_mp5_navy3_9x19", - "Description": "weapon_hk_mp5_navy3_9x19", - "Weight": 0.68, - "BackgroundColor": "black", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/mp5/weapon_hk_mp5_kurtz_9x19_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 250, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "SubMachineGun", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "5d2f0d8048f0356c925bc3b2", - "_parent": "5d2f0d8048f0356c925bc3b0", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5d2f213448f0355009199284", - "5926c3b286f774640d189b6b", - "5a351711c4a282000b1521a4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_reciever", - "_id": "5d2f0d8048f0356c925bc3b3", - "_parent": "5d2f0d8048f0356c925bc3b0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d2f261548f03576f500e7b7" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "5d2f0d8048f0356c925bc3b4", - "_parent": "5d2f0d8048f0356c925bc3b0", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d2f2d5748f03572ec0c0139" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x19PARA", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 5600, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "burst", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 900, - "Ergonomics": 55, - "Velocity": 13, - "bEffDist": 200, - "bHearDist": 80, - "isChamberLoad": false, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5926c3b286f774640d189b6b", - "defAmmo": "64b7bbb74b75259c590fa897", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5d2f0d8048f0356c925bc3b5", - "_parent": "5d2f0d8048f0356c925bc3b0", - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.22, - "AimPlane": 0.25, - "DeviationCurve": 2.25, - "DeviationMax": 11, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2185, - "RecoilReturnSpeedHandRotation": 3.5, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.0388, - "RecoilStableIndexShot": 6, - "RecoilForceBack": 267, - "RecoilForceUp": 57, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.45, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.2, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": -0.01 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.25, - "z": -0.01 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": true, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1.79, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5aa7e454e5b5b0214e506fa2": { - "_id": "5aa7e454e5b5b0214e506fa2", - "_name": "helmet_zsh_1-2m_v1", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "helmet_zsh1-2m_v1", - "ShortName": "helmet_zsh1-2m_v1", - "Description": "helmet_zsh1-2m_v1", - "Weight": 3.7, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_zsh_1var/item_equipment_helmet_zsh_1var.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 446, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_equipment", - "_id": "5aa7e454e5b5b0214e506fa4", - "_parent": "5aa7e454e5b5b0214e506fa2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5aa7e3abe5b5b000171d064d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "Helmet_top", - "_id": "657f948bf92cd718b7015509", - "_parent": "5aa7e454e5b5b0214e506fa2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657f925dada5fadd1f07a57a", - "Filter": [ - "657f925dada5fadd1f07a57a" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "657f948bf92cd718b701550a", - "_parent": "5aa7e454e5b5b0214e506fa2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657f92acada5fadd1f07a57e", - "Filter": [ - "657f92acada5fadd1f07a57e" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_ears", - "_id": "657f948bf92cd718b701550b", - "_parent": "5aa7e454e5b5b0214e506fa2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657f92e7f4c82973640b2354", - "Filter": [ - "657f92e7f4c82973640b2354" - ], - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 75 - }, - "DeafStrength": "High", - "BluntThroughput": 0.1548, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -2, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5c091a4e0db834001d5addc8": { - "_id": "5c091a4e0db834001d5addc8", - "_name": "item_equipment_helmet_maska_1sh", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_maska_1sh", - "ShortName": "item_equipment_helmet_maska_1sh", - "Description": "item_equipment_helmet_maska_1sh", - "Weight": 2.6, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_maska_1sh/item_equipment_helmet_maska_1sh.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 765, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_equipment", - "_id": "5c091a4e0db834001d5addca", - "_parent": "5c091a4e0db834001d5addc8", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0919b50db834001b7ce3b9", - "5c0e842486f77443a74d2976" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "Helmet_top", - "_id": "6571173a22996eaf11088212", - "_parent": "5c091a4e0db834001d5addc8", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6571133d22996eaf11088200", - "Filter": [ - "6571133d22996eaf11088200" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "6571173a22996eaf11088213", - "_parent": "5c091a4e0db834001d5addc8", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6571138e818110db4600aa71", - "Filter": [ - "6571138e818110db4600aa71" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_ears", - "_id": "6571173a22996eaf11088214", - "_parent": "5c091a4e0db834001d5addc8", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657112fa818110db4600aa6b", - "Filter": [ - "657112fa818110db4600aa6b" - ], - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "High", - "BluntThroughput": 0.1726, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -1, - "weaponErgonomicPenalty": -4 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "57f3c6bd24597738e730fa2f": { - "_id": "57f3c6bd24597738e730fa2f", - "_name": "weapon_zmz_pp-91-01_9x18pm", - "_parent": "5447b5e04bdc2d62278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_zmz_pp-91-01_9x18pm", - "ShortName": "weapon_zmz_pp-91-01_9x18pm", - "Description": "weapon_zmz_pp-91-01_9x18pm", - "Weight": 1.33, - "BackgroundColor": "black", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/pp-91/weapon_zmz_pp-91-01_9x18pm_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 76, - "RepairSpeed": 14, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "SubMachineGun", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "57f3c7872459773c9c1f34dd", - "_parent": "57f3c6bd24597738e730fa2f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57d152ec245977144076ccdf" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "57f3c7a524597738e8253ce4", - "_parent": "57f3c6bd24597738e730fa2f", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57f3c7e024597738ea4ba286" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "57f3caf424597738eb6c4a68", - "_parent": "57f3c6bd24597738e730fa2f", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "57d14e1724597714010c3f4b", - "57d1519e24597714373db79d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x18PM", - "Durability": 95, - "MaxDurability": 100, - "OperatingResource": 5000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 900, - "Ergonomics": 65, - "Velocity": -5, - "bEffDist": 100, - "bHearDist": 80, - "isChamberLoad": false, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "57d14e1724597714010c3f4b", - "defAmmo": "573719762459775a626ccbc1", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "57f3c75e24597738eb6c49da", - "_parent": "57f3c6bd24597738e730fa2f", - "_props": { - "filters": [ - { - "Filter": [ - "573718ba2459775a75491131", - "573719df2459775a626ccbc2", - "57371b192459775a9f58a5e0", - "57371e4124597760ff7b25f1", - "57371eb62459776125652ac1", - "57371f8d24597761006c6a81", - "5737201124597760fc4431f1", - "5737207f24597760ff7b25f2", - "57371f2b24597761224311f1", - "573719762459775a626ccbc1", - "573720e02459776143012541", - "57372140245977611f70ee91", - "5737218f245977612125ba51" - ], - "MaxStackCount": 0 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.2, - "AimPlane": 0.05, - "DeviationCurve": 2.25, - "DeviationMax": 11, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2185, - "RecoilReturnSpeedHandRotation": 3.5, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.0288, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 211, - "RecoilForceUp": 50, - "RecolDispersion": 10, - "RecoilPosZMult": 0.8, - "RecoilReturnPathDampingHandRotation": 0.45, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.27, - "z": 0.02 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.13, - "z": -0.04 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.3, - "z": -0.05 - }, - "SizeReduceRight": 1, - "FoldedSlot": "", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 50, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1.007, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.1227, - "HeatFactorByShot": 2.58, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "57d14d2524597714373db789" - }, - "5de7bd7bfd6b4e6e2276dc25": { - "_id": "5de7bd7bfd6b4e6e2276dc25", - "_name": "weapon_bt_mp9n_9x19", - "_parent": "5447b5e04bdc2d62278b4567", - "_type": "Item", - "_props": { - "Name": "Бургер и Томат ЭмПэ ДеВяТь", - "ShortName": "weapon_bt_mp9_9x19", - "Description": "weapon_bt_mp9_9x19", - "Weight": 0.75, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/mp9/weapon_bt_mp9n_9x19_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 93, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "SubMachineGun", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "5de7bd7bfd6b4e6e2276dc27", - "_parent": "5de7bd7bfd6b4e6e2276dc25", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5de8e8dafd6b4e6e2276dc32", - "5de8ea8ffd6b4e6e2276dc35", - "5de8eaadbbaf010b10528a6d", - "5de8eac42a78646d96665d91" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_muzzle", - "_id": "5de7bd7bfd6b4e6e2276dc28", - "_parent": "5de7bd7bfd6b4e6e2276dc25", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5de8f237bbaf010b10528a70" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5de7bd7bfd6b4e6e2276dc2f", - "_parent": "5de7bd7bfd6b4e6e2276dc25", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5de910da8b6c4240ba2651b5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_foregrip", - "_id": "5de919a3883dde2175416467", - "_parent": "5de7bd7bfd6b4e6e2276dc25", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5de8fbad2fbe23140d3ee9c4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "5de919b4f76fdc1ce94a5a4e", - "_parent": "5de7bd7bfd6b4e6e2276dc25", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5de8e67c4a9f347bc92edbd7", - "5e0090f7e9dc277128008b93" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "5de92277b74cd90030650c7f", - "_parent": "5de7bd7bfd6b4e6e2276dc25", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5de922d4b11454561e39239f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x19PARA", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 4500, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 1100, - "Ergonomics": 75, - "Velocity": 13, - "bEffDist": 200, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5de8e8dafd6b4e6e2276dc32", - "defAmmo": "64b7bbb74b75259c590fa897", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5de7bd7bfd6b4e6e2276dc30", - "_parent": "5de7bd7bfd6b4e6e2276dc25", - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.21, - "AimPlane": 0.1, - "DeviationCurve": 2.25, - "DeviationMax": 11, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2185, - "RecoilReturnSpeedHandRotation": 3.2, - "RecoilDampingHandRotation": 0.84, - "RecoilCamera": 0.0326, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 254, - "RecoilForceUp": 51, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.45, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 95, - "RecoilStableAngleIncreaseStep": 2.2, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.32, - "z": -0.02 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.13, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.38, - "z": -0.11 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 50, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1.1024, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.0464, - "HeatFactorByShot": 1.8, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "65709d2d21b9f815e208ff95": { - "_id": "65709d2d21b9f815e208ff95", - "_name": "item_equipment_helmet_neosteel", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "helmet_ops_core_fast", - "ShortName": "helmet_ops_core_fast", - "Description": "helmet_ops_core_fast", - "Weight": 1.2, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_neosteel/item_equipment_helmet_neosteel.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 342, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "644a3df63b0b6f03e101e065", - "5cc9c20cd7f00c001336c65d", - "61605d88ffa6e502ac5e7eeb", - "5f60bf4558eff926626a60f2" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_equipment_000", - "_id": "65709d2d21b9f815e208ff96", - "_parent": "65709d2d21b9f815e208ff95", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6570a88c8f221f3b210353b7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "6570a814663496b3f601abc8", - "_parent": "65709d2d21b9f815e208ff95", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b7be47f5acfc400170e2dd2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_nvg", - "_id": "6570a814663496b3f601abca", - "_parent": "65709d2d21b9f815e208ff95", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a16b8a9fcdbcb00165aa6ca", - "5c0558060db834001b735271" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "Helmet_top", - "_id": "657f9f95e9433140ad0baf8a", - "_parent": "65709d2d21b9f815e208ff95", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657f9eb7e9433140ad0baf86", - "Filter": [ - "657f9eb7e9433140ad0baf86" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "657f9f95e9433140ad0baf8b", - "_parent": "65709d2d21b9f815e208ff95", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657f9ef6c6679fefb3051e1f", - "Filter": [ - "657f9ef6c6679fefb3051e1f" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 60 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1448, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5f60e7788adaa7100c3adb49": { - "_id": "5f60e7788adaa7100c3adb49", - "_name": "item_equipment_head_beret_blue", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "item_equipment_head_beret_blk", - "ShortName": "item_equipment_head_beret_blk", - "Description": "item_equipment_head_beret_blk", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_beret/item_equipment_head_beret_blue.bundle", + "path": "assets/content/weapons/vpo215/weapon_molot_vpo_215_366tkm_container.bundle", "rcid": "" }, "UsePrefab": { @@ -263141,102 +263912,8 @@ "LootExperience": 5, "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "59984ab886f7743e98271174": { - "_id": "59984ab886f7743e98271174", - "_name": "weapon_izhmash_pp-19-01_9x19", - "_parent": "5447b5e04bdc2d62278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_izhmash_pp-19-01_9x19", - "ShortName": "weapon_izhmash_pp-19-01_9x19", - "Description": "weapon_izhmash_pp-19-01_9x19", - "Weight": 1.809, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/pp-19-01/weapon_izhmash_pp-19-01_9x19_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 59, - "RepairSpeed": 15, + "RepairCost": 37, + "RepairSpeed": 14, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -263248,113 +263925,33 @@ "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], + "UnlootableFromSide": [ + "Bear", + "Usec", + "Savage" + ], "AnimationVariantsNumber": 0, "DiscardingBlock": false, "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": false, "DiscardLimit": -1, - "DropSoundType": "SubMachineGun", + "DropSoundType": "Rifle", "InsuranceDisabled": false, "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], "Slots": [ - { - "_name": "mod_pistol_grip", - "_id": "59985d9386f7742a0913990a", - "_parent": "59984ab886f7743e98271174", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f6341043ada5942720e2dc5", - "6087e663132d4d12c81fd96b", - "5beec8ea0db834001a6f9dbf", - "5649ad3f4bdc2df8348b4585", - "5649ade84bdc2d1b2b8b4587", - "59e62cc886f77440d40b52a1", - "5a0071d486f77404e23a12b2", - "57e3dba62459770f0c32322b", - "5cf54404d7f00c108840b2ef", - "5e2192a498a36665e8337386", - "5b30ac585acfc433000eb79c", - "59e6318286f77444dd62c4cc", - "5cf50850d7f00c056e24104c", - "5cf508bfd7f00c056e24104e", - "5947f92f86f77427344a76b1", - "5947fa2486f77425b47c1a9b", - "5c6bf4aa2e2216001219b0ae", - "5649ae4a4bdc2d1b2b8b4588", - "5998517986f7746017232f7e", - "623c3be0484b5003161840dc", - "628c9ab845c59e5b80768a81", - "628a664bccaab13006640e47", - "63f4da90f31d4a33b87bd054", - "648ae3e356c6310a830fc291", - "651580dc71a4f10aec4b6056" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "59985e2686f77427a674c43e", - "_parent": "59984ab886f7743e98271174", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cf50fc5d7f00c056c53f83c", - "5ac78eaf5acfc4001926317a", - "599851db86f77467372f0a18" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "59985e3586f774265b6600af", - "_parent": "59984ab886f7743e98271174", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "6130ca3fd92c473c77020dbd", - "5648ac824bdc2ded0b8b457d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, { "_name": "mod_magazine", - "_id": "59985e5086f77427a674c448", - "_parent": "59984ab886f7743e98271174", + "_id": "5de652c31b7e3716273428c0", + "_parent": "5de652c31b7e3716273428be", "_props": { "filters": [ { - "AnimationIndex": -1, + "AnimationIndex": 0, "Filter": [ - "5998529a86f774647f44f421", - "599860ac86f77436b225ed1a", - "5c0673fb0db8340023300271", - "5c0672ed0db834001b7353f3" + "5de653abf76fdc1ce94a5a2a" ] } ] @@ -263363,411 +263960,16 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c394bdc2dae468b4577" }, - { - "_name": "mod_muzzle", - "_id": "59985e8f86f77427a674c44d", - "_parent": "59984ab886f7743e98271174", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5998597786f77414ea6da093", - "5998598e86f7740b3f498a86", - "59bffc1f86f77435b128b872", - "5a9fb739a2750c003215717f", - "5c6165902e22160010261b28", - "5a32a064c4a28200741e22de", - "59bfc5c886f7743bf6794e62" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "59985e9f86f774267339c6c0", - "_parent": "59984ab886f7743e98271174", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59985a6c86f77414ec448d17", - "59985a8086f77414ec448d1a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "59985eab86f7742d5d28aab7", - "_parent": "59984ab886f7743e98271174", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "599860e986f7743bb57573a6" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_scope", - "_id": "59985eba86f7742d5d28aabc", - "_parent": "59984ab886f7743e98271174", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5947db3f86f77447880cf76f", - "6113d6c3290d254f5e6b27db", - "57486e672459770abd687134", - "618a5d5852ecee1505530b2a", - "5c82342f2e221644f31c060e", - "576fd4ec2459777f0b518431", - "5c82343a2e221644f31c0611", - "5cf638cbd7f00c06595bc936", - "5a7c74b3e899ef0014332c29", - "591ee00d86f774592f7b841e", - "5d0a29ead7ad1a0026013f27", - "618a75c9a3884f56c957ca1b", - "57acb6222459771ec34b5cb0", - "5c90c3622e221601da359851", - "638db77630c4240f9e06f8b6", - "6544d4187c5457729210d277" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_gas_block", - "_id": "59ccd16e86f77428fc798735", - "_parent": "59984ab886f7743e98271174", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "59ccd11386f77428f24a488f" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x19PARA", - "Durability": 95, - "MaxDurability": 100, - "OperatingResource": 10000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 700, - "Ergonomics": 35, - "Velocity": -17.9, - "bEffDist": 200, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "599860ac86f77436b225ed1a", - "defAmmo": "56d59d3ad2720bdb418b4577", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "59985ce986f774198d5d2c08", - "_parent": "59984ab886f7743e98271174", - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f", - "5c3df7d588a4501f290594e5", - "58864a4f2459770fcc257101", - "56d59d3ad2720bdb418b4577", - "5c925fa22e221601da359b7b", - "5a3c16fe86f77452b62de32a", - "5efb0e16aeb21837e749c7ff", - "5c0d56a986f774449d5de529", - "64b7bbb74b75259c590fa897" - ], - "MaxStackCount": 0 - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.13, - "AimPlane": 0.15, - "DeviationCurve": 1.9, - "DeviationMax": 15, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2185, - "RecoilReturnSpeedHandRotation": 3.1, - "RecoilDampingHandRotation": 0.84, - "RecoilCamera": 0.0408, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 270, - "RecoilForceUp": 58, - "RecolDispersion": 8, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.45, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.3, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.25, - "z": 0 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.1, - "z": -0.03 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.27, - "z": -0.08 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 50, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 0.9452, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 1.0575, - "HeatFactorByShot": 2.35, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, - "5ea03f7400685063ec28bfa8": { - "_id": "5ea03f7400685063ec28bfa8", - "_name": "weapon_zis_ppsh41_762x25", - "_parent": "5447b5e04bdc2d62278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_zis_ppsh41_762x25", - "ShortName": "weapon_zis_ppsh41_762x25", - "Description": "weapon_zis_ppsh41_762x25", - "Weight": 1.01, - "BackgroundColor": "black", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/ppsh41/weapon_zis_ppsh41_762x25_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 51, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "SubMachineGun", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ { "_name": "mod_stock", - "_id": "5ea03f7400685063ec28bfab", - "_parent": "5ea03f7400685063ec28bfa8", + "_id": "5de652c31b7e3716273428c1", + "_parent": "5de652c31b7e3716273428be", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5ea03e9400685063ec28bfa4" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_magazine", - "_id": "5ea03f7400685063ec28bfad", - "_parent": "5ea03f7400685063ec28bfa8", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5ea034eb5aad6446a939737b", - "5ea034f65aad6446a939737e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_reciever", - "_id": "5ea03f7400685063ec28bfaf", - "_parent": "5ea03f7400685063ec28bfa8", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ea03e5009aa976f2e7a514b" + "5de655be4a9f347bc92edb88" ] } ] @@ -263778,14 +263980,14 @@ }, { "_name": "mod_barrel", - "_id": "5ea06b13fadf1d18c87b0774", - "_parent": "5ea03f7400685063ec28bfa8", + "_id": "5de652c31b7e3716273428c2", + "_parent": "5de652c31b7e3716273428be", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5ea02bb600685063ec28bfa1" + "5de65547883dde217541644b" ] } ] @@ -263793,44 +263995,82 @@ "_required": true, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5de652c31b7e3716273428c3", + "_parent": "5de652c31b7e3716273428be", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5de6558e9f98ac2bc65950fc" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", + "weapClass": "sniperRifle", "weapUseType": "primary", - "ammoCaliber": "Caliber762x25TT", - "Durability": 95, + "ammoCaliber": "Caliber366TKM", + "Durability": 100, "MaxDurability": 100, - "OperatingResource": 5000, - "RepairComplexity": 0, + "OperatingResource": 1900, + "RepairComplexity": 1, "durabSpawnMin": 25, "durabSpawnMax": 75, "isFastReload": true, "weapFireType": [ - "single", - "fullauto" + "single" ], "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 1000, - "Ergonomics": 16, - "Velocity": -17.9, - "bEffDist": 200, - "bHearDist": 80, + "CanQueueSecondShot": false, + "bFirerate": 30, + "Ergonomics": 41, + "Velocity": 5.9, + "bEffDist": 1000, + "bHearDist": 100, "isChamberLoad": true, "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5ea034eb5aad6446a939737b", - "defAmmo": "5735ff5c245977640e39ba7e", + "isBoltCatch": true, + "defMagType": "5de653abf76fdc1ce94a5a2a", + "defAmmo": "59e655cb86f77411dc52a77b", "AdjustCollimatorsToTrajectory": false, "shotgunDispersion": 0, - "Chambers": [], + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5de652c31b7e3716273428c4", + "_parent": "5de652c31b7e3716273428be", + "_props": { + "filters": [ + { + "Filter": [ + "59e655cb86f77411dc52a77b", + "59e6542b86f77411dc52a77a", + "59e6658b86f77411d949b250", + "5f0596629e22f464da6bbdd9" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.1, - "AimPlane": 0.15, - "DeviationCurve": 2.25, - "DeviationMax": 11, + "CenterOfImpact": 0.011, + "AimPlane": 0.32, + "DeviationCurve": 1, + "DeviationMax": 33, "Foldable": false, "Retractable": false, "TacticalReloadStiffnes": { @@ -263839,28 +264079,28 @@ "z": 0.95 }, "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2185, - "RecoilReturnSpeedHandRotation": 2, - "RecoilDampingHandRotation": 0.86, - "RecoilCamera": 0.0624, - "RecoilStableIndexShot": 7, - "RecoilForceBack": 294, - "RecoilForceUp": 89, - "RecolDispersion": 12, + "RecoilCategoryMultiplierHandRotation": 0.2645, + "RecoilReturnSpeedHandRotation": 2.8, + "RecoilDampingHandRotation": 0.87, + "RecoilCamera": 0.154, + "RecoilStableIndexShot": 3, + "RecoilForceBack": 486, + "RecoilForceUp": 200, + "RecolDispersion": 10, "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.45, - "RecoilReturnPathOffsetHandRotation": 0.012, + "RecoilReturnPathDampingHandRotation": 0.41, + "RecoilReturnPathOffsetHandRotation": 0.01, "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.9, + "RecoilStableAngleIncreaseStep": 2.5, "ProgressRecoilAngleOnStable": { "x": 0, - "y": 35, + "y": 30, "z": 0 }, "RecoilCenter": { "x": 0, - "y": -0.25, - "z": 0 + "y": -0.43, + "z": 0.03 }, "PostRecoilVerticalRangeHandRotation": { "x": -1.3, @@ -263868,17 +264108,17 @@ "z": 0 }, "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, + "x": -0.7, + "y": 0.7, "z": 0 }, "ShotsGroupSettings": [ { - "StartShotIndex": 1, - "EndShotIndex": 200, + "StartShotIndex": 4, + "EndShotIndex": 99, "ShotRecoilRotationStrength": { "x": 0, - "y": 0, + "y": 2, "z": 0 }, "ShotRecoilPositionStrength": { @@ -263887,28 +264127,28 @@ "z": 0 }, "ShotRecoilRadianRange": { - "x": 6, - "y": -6, + "x": -20, + "y": 20, "z": 0 } } ], "CameraToWeaponAngleSpeedRange": { "x": 0.1, - "y": 0.2, + "y": 0.24, "z": 0 }, "CameraToWeaponAngleStep": 0.1, "CameraSnap": 3.5, "RotationCenter": { "x": 0, - "y": -0.1, - "z": -0.03 + "y": -0.16, + "z": -0.06 }, "RotationCenterNoStock": { "x": 0, - "y": -0.27, - "z": -0.08 + "y": 0, + "z": 0 }, "SizeReduceRight": 0, "FoldedSlot": "", @@ -263916,26 +264156,26 @@ "SightingRange": 100, "MinRepairDegradation": 0, "MaxRepairDegradation": 0.04, - "IronSightRange": 50, + "IronSightRange": 25, "MustBoltBeOpennedForExternalReload": false, "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, + "BoltAction": true, "HipAccuracyRestorationDelay": 0.2, "HipAccuracyRestorationSpeed": 7, "HipInnaccuracyGain": 0.16, "ManualBoltCatch": false, "AimSensitivity": 0.65, "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.18975, + "BaseMalfunctionChance": 0.2277, "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, "DurabilityBurnRatio": 1.15, "HeatFactorGun": 1, - "CoolFactorGun": 2.88, + "CoolFactorGun": 4.608, "CoolFactorGunMods": 1, - "HeatFactorByShot": 2.1, + "HeatFactorByShot": 8.56, "AllowOverheat": true, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, @@ -263949,11 +264189,11 @@ "WithAnimatorAiming": false, "blockLeftStance": false }, - "_proto": "5447a9cd4bdc2dbd208b4567" + "_proto": "55801eed4bdc2d89578b4588" }, - "5447b6194bdc2d67278b4567": { - "_id": "5447b6194bdc2d67278b4567", - "_name": "MarksmanRifle", + "5447bed64bdc2d97278b4568": { + "_id": "5447bed64bdc2d97278b4568", + "_name": "MachineGun", "_parent": "5422acb9af1c889c16000029", "_type": "Node", "_props": { @@ -264054,16 +264294,230 @@ "z": 0.95 }, "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.23, + "RecoilCategoryMultiplierHandRotation": 0.207, "RecoilReturnSpeedHandRotation": 1, - "RecoilDampingHandRotation": 0.9, + "RecoilDampingHandRotation": 0.93, "RecoilCamera": -0.3, "RecoilStableIndexShot": 4, - "RecoilForceBack": 110, - "RecoilForceUp": 60, + "RecoilForceBack": 1000, + "RecoilForceUp": 1000, "RecolDispersion": 0, "RecoilPosZMult": 1, "RecoilReturnPathDampingHandRotation": 0.55, + "RecoilReturnPathOffsetHandRotation": 0.015, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": 0, + "z": 1 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -2, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2.4, + "y": 2.4, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3, + "RotationCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1, + "HeatFactorGun": 1, + "CoolFactorGun": 1, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1, + "AllowOverheat": false, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + } + }, + "5447b5cf4bdc2d65278b4567": { + "_id": "5447b5cf4bdc2d65278b4567", + "_name": "Pistol", + "_parent": "5422acb9af1c889c16000029", + "_type": "Node", + "_props": { + "Name": "Item", + "ShortName": "Item", + "Description": "Item", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x18PM", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 0, + "RepairComplexity": 0, + "durabSpawnMin": 0, + "durabSpawnMax": 0, + "isFastReload": false, + "weapFireType": [], + "SingleFireRate": 720, + "CanQueueSecondShot": true, + "bFirerate": 900, + "Ergonomics": 10, + "Velocity": 0, + "bEffDist": 1, + "bHearDist": 1, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5448bc234bdc2d3c308b4569", + "defAmmo": "5485a8684bdc2da71d8b4567", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 10, + "Chambers": [], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0, + "DeviationCurve": 1, + "DeviationMax": 100, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.138, + "RecoilReturnSpeedHandRotation": 1, + "RecoilDampingHandRotation": 0.86, + "RecoilCamera": -0.3, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 100, + "RecoilForceUp": 50, + "RecolDispersion": 0, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.43, "RecoilReturnPathOffsetHandRotation": 0.01, "RecoilAngle": 90, "RecoilStableAngleIncreaseStep": 2.5, @@ -264078,13 +264532,13 @@ "z": 1 }, "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, + "x": -1, "y": 0, "z": 0 }, "PostRecoilHorizontalRangeHandRotation": { - "x": -1, - "y": 1, + "x": -2, + "y": 2, "z": 0 }, "ShotsGroupSettings": [ @@ -264165,545 +264619,23 @@ "blockLeftStance": false } }, - "5b4329075acfc400153b78ff": { - "_id": "5b4329075acfc400153b78ff", - "_name": "item_equipment_head_pompon", + "5d6d3716a4b9361bc8618872": { + "_id": "5d6d3716a4b9361bc8618872", + "_name": "item_equipment_helmet_lshz2dtm", "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "Knitcapred", - "ShortName": "Knitcapred", - "Description": "Knitcapred", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_pompon/item_equipment_head_pompon.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7f1624597762ae139822" - }, - "55801eed4bdc2d89578b4588": { - "_id": "55801eed4bdc2d89578b4588", - "_name": "weapon_izhmash_sv-98_762x54r", - "_parent": "5447b6254bdc2dc3278b4568", - "_type": "Item", - "_props": { - "Name": "Снайперская винтовка СВ-98", - "ShortName": "СВ-98", - "Description": "СВ-98- Российская снайперская винтовка разработанная 1998-2000 г.г. группой конструкторов под руководством В. Стронского. Серийно выпускается концерном \"Ижмаш\". Винтовка имеет магазинное питание и продольно скользящий затвор, предназначена для поражения живой силы на дистанции до 1000 м.", - "Weight": 1.5, - "BackgroundColor": "black", - "Width": 4, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_rifle", - "Prefab": { - "path": "assets/content/weapons/sv98/weapon_izhmash_sv-98_762x54r_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 14, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "55d5a2c34bdc2d962f8b4575", - "_parent": "55801eed4bdc2d89578b4588", - "_props": { - "filters": [ - { - "AnimationIndex": 0, - "Filter": [ - "559ba5b34bdc2d1f1a8b4582" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_scope", - "_id": "560bfc1d4bdc2d8b418b4573", - "_parent": "55801eed4bdc2d89578b4588", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "626bb8532c923541184624b4", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "544a3d0a4bdc2d1b388b4567", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "62811f461d5df4475f46a332", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "5b2389515acfc4771e1be0c0", - "577d128124597739d65d0e56", - "618b9643526131765025ab35", - "618bab21526131765025ab3f", - "5c86592b2e2216000e69e77c", - "5a37ca54c4a282000d72296a", - "5d0a29fed7ad1a002769ad08", - "5c064c400db834001d23f468", - "58d2664f86f7747fec5834f6", - "57c69dd424597774c03b7bbc", - "5b3b99265acfc4704b4a1afb", - "5aa66a9be5b5b0214e506e89", - "5aa66c72e5b5b00016327c93", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "6171407e50224f204c1da3c5", - "61713cc4d8e3106d9806c109", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "5dff77c759400025ea5150cf", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245", - "6567e751a715f85433025998" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_sight_rear", - "_id": "560d38ae4bdc2d25448b4570", - "_parent": "55801eed4bdc2d89578b4588", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "56083e1b4bdc2dc8488b4572" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_tactical", - "_id": "560d40654bdc2d20478b457e", - "_parent": "55801eed4bdc2d89578b4588", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "56083eab4bdc2d26448b456a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_muzzle", - "_id": "560e68f94bdc2dd7328b456c", - "_parent": "55801eed4bdc2d89578b4588", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "560e620e4bdc2d724b8b456b", - "5c4ee3d62e2216152006f302", - "5c4eec9b2e2216398b5aaba2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "61faab2aa35fe5242f3d6ca0", - "_parent": "55801eed4bdc2d89578b4588", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "623b2e9d11c3296b440d1638", - "61faa91878830f069b6b7967" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "sniperRifle", - "weapUseType": "primary", - "ammoCaliber": "Caliber762x54R", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 1900, - "RepairComplexity": 1, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": false, - "bFirerate": 30, - "Ergonomics": 24, - "Velocity": 2.6, - "bEffDist": 1000, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "559ba5b34bdc2d1f1a8b4582", - "defAmmo": "5887431f2459777e1612938f", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "56eaa903d2720b69698b456d", - "_parent": "55801eed4bdc2d89578b4588", - "_props": { - "filters": [ - { - "Filter": [ - "5e023d34e8a400319a28ed44", - "5e023d48186a883be655e551", - "5e023cf8186a883be655e54f", - "59e77a2386f7742ee578960a", - "5887431f2459777e1612938f", - "560d61e84bdc2da74d8b4571", - "64b8f7c241772715af0f9c3d", - "64b8f7b5389d7ffd620ccba2", - "64b8f7968532cf95ee0a0dbf" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.016, - "AimPlane": 0.25, - "DeviationCurve": 1, - "DeviationMax": 33, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2645, - "RecoilReturnSpeedHandRotation": 2.1, - "RecoilDampingHandRotation": 0.87, - "RecoilCamera": 0.13, - "RecoilStableIndexShot": 3, - "RecoilForceBack": 711, - "RecoilForceUp": 250, - "RecolDispersion": 10, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.41, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.43, - "z": 0.03 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -0.7, - "y": 0.7, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.24, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.16, - "z": -0.06 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock_000", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 100, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": true, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.2277, - "AllowJam": false, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 4.608, - "CoolFactorGunMods": 0.8428, - "HeatFactorByShot": 4.62, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - } - }, - "5447bee84bdc2dc3278b4569": { - "_id": "5447bee84bdc2dc3278b4569", - "_name": "SpecialWeapon", - "_parent": "5422acb9af1c889c16000029", - "_type": "Node", - "_props": {} - }, - "5ac8d6885acfc400180ae7b0": { - "_id": "5ac8d6885acfc400180ae7b0", - "_name": "helmet_ops_core_fast_tan", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "helmet_ops_core_fast", - "ShortName": "helmet_ops_core_fast", - "Description": "helmet_ops_core_fast", - "Weight": 0.9, + "Name": "item_equipment_helmet_lshz2dtm", + "ShortName": "item_equipment_helmet_lshz2dtm", + "Description": "item_equipment_helmet_lshz2dtm", + "Weight": 3.4, "BackgroundColor": "default", "Width": 2, "Height": 2, "StackMaxSize": 1, "ItemSound": "gear_helmet", "Prefab": { - "path": "assets/content/items/equipment/helmet_opscore_fast/item_equipment_helmet_opscore_fast_tan.bundle", + "path": "assets/content/items/equipment/helmet_lshz2dtm/item_equipment_helmet_lshz2dtm.bundle", "rcid": "" }, "UsePrefab": { @@ -264723,7 +264655,7 @@ "LootExperience": 20, "ExamineExperience": 4, "HideEntrails": false, - "RepairCost": 921, + "RepairCost": 1084, "RepairSpeed": 10, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -264731,7 +264663,7 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, - "CanSellOnRagfair": false, + "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -264751,16 +264683,14 @@ "Slots": [ { "_name": "mod_equipment_000", - "_id": "5ac8d6885acfc400180ae7b2", - "_parent": "5ac8d6885acfc400180ae7b0", + "_id": "5d6d3716a4b9361bc8618874", + "_parent": "5d6d3716a4b9361bc8618872", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a16badafcdbcb001865f72d", - "5a16b672fcdbcb001912fa83", - "5a16b7e1fcdbcb00165aa6c9" + "5d6d3829a4b9361bc8618943" ] } ] @@ -264771,14 +264701,13 @@ }, { "_name": "mod_nvg", - "_id": "5ac8d6885acfc400180ae7b3", - "_parent": "5ac8d6885acfc400180ae7b0", + "_id": "5d6d3716a4b9361bc8618875", + "_parent": "5d6d3716a4b9361bc8618872", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5ea058e01dbce517f324b3e2", "5c0558060db834001b735271", "5a16b8a9fcdbcb00165aa6ca" ] @@ -264791,16 +264720,13 @@ }, { "_name": "mod_mount", - "_id": "5ac8d6885acfc400180ae7b4", - "_parent": "5ac8d6885acfc400180ae7b0", + "_id": "5d6d3716a4b9361bc8618876", + "_parent": "5d6d3716a4b9361bc8618872", "_props": { "filters": [ { "Shift": 0, - "Filter": [ - "5a398b75c4a282000a51a266", - "5a398ab9c4a282000c5a9842" - ] + "Filter": [] } ] }, @@ -264810,14 +264736,14 @@ }, { "_name": "mod_equipment_001", - "_id": "5ac8d6885acfc400180ae7b5", - "_parent": "5ac8d6885acfc400180ae7b0", + "_id": "5d6d3716a4b9361bc8618877", + "_parent": "5d6d3716a4b9361bc8618872", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5a16b9fffcdbcb0176308b34" + "5d6d3be5a4b9361bc73bc763" ] } ] @@ -264828,14 +264754,14 @@ }, { "_name": "mod_equipment_002", - "_id": "5c0e6acbd174af02a96252f8", - "_parent": "5ac8d6885acfc400180ae7b0", + "_id": "5d6d3716a4b9361bc8618878", + "_parent": "5d6d3716a4b9361bc8618872", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5c0e66e2d174af02a96252f4" + "5d6d3943a4b9360dbc46d0cc" ] } ] @@ -264846,15 +264772,15 @@ }, { "_name": "Helmet_top", - "_id": "657f9149f92cd718b7015507", - "_parent": "5ac8d6885acfc400180ae7b0", + "_id": "657fa28ce9433140ad0baf92", + "_parent": "5d6d3716a4b9361bc8618872", "_props": { "filters": [ { "locked": true, - "Plate": "657f8ec5f4c82973640b234c", + "Plate": "657fa009d4caf976440afe3a", "Filter": [ - "657f8ec5f4c82973640b234c" + "657fa009d4caf976440afe3a" ], "armorColliders": [ "ParietalHead" @@ -264870,15 +264796,15 @@ }, { "_name": "Helmet_back", - "_id": "657f9149f92cd718b7015508", - "_parent": "5ac8d6885acfc400180ae7b0", + "_id": "657fa28ce9433140ad0baf93", + "_parent": "5d6d3716a4b9361bc8618872", "_props": { "filters": [ { "locked": true, - "Plate": "657f8f10f4c82973640b2350", + "Plate": "657fa04ac6679fefb3051e24", "Filter": [ - "657f8f10f4c82973640b2350" + "657fa04ac6679fefb3051e24" ], "armorColliders": [ "BackHead" @@ -264891,13 +264817,37 @@ "_required": true, "_mergeSlotWithChildren": true, "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_ears", + "_id": "657fa28ce9433140ad0baf94", + "_parent": "5d6d3716a4b9361bc8618872", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657fa07387e11c61f70bface", + "Filter": [ + "657fa07387e11c61f70bface" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, + "BlocksEarpiece": true, "BlocksEyewear": false, - "BlocksHeadwear": false, + "BlocksHeadwear": true, "BlocksFaceCover": false, "Durability": 0, "MaxDurability": 0, @@ -264912,437 +264862,19 @@ "y": 0.5, "z": 70 }, - "DeafStrength": "None", + "DeafStrength": "High", "BluntThroughput": 0.1431, "ArmorMaterial": "Combined", "BlindnessProtection": 0, - "ArmorType": "Light", + "ArmorType": "Heavy", "armorColliders": [], "armorPlateColliders": [], "speedPenaltyPercent": 0, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1 + "mousePenalty": -3, + "weaponErgonomicPenalty": -3 }, "_proto": "5645bc214bdc2d363b8b4571" }, - "5fc3e272f8b6a877a729eac5": { - "_id": "5fc3e272f8b6a877a729eac5", - "_name": "weapon_hk_ump_1143x23", - "_parent": "5447b5e04bdc2d62278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_hk_ump_1143x23", - "ShortName": "weapon_hk_ump_1143x23", - "Description": "weapon_hk_ump_1143x23", - "Weight": 1.22, - "BackgroundColor": "black", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/ump/weapon_hk_ump_1143x23_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 107, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "SubMachineGun", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "5fc3e272f8b6a877a729eac7", - "_parent": "5fc3e272f8b6a877a729eac5", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5fc3e466187fea44d52eda90" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_scope", - "_id": "5fc3e272f8b6a877a729eacb", - "_parent": "5fc3e272f8b6a877a729eac5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "57ac965c24597706be5f975c", - "57aca93d2459771f2c7e26db", - "544a3f024bdc2d1d388b4568", - "544a3a774bdc2d3a388b4567", - "5d2dc3e548f035404a1a4798", - "57adff4f24597737f373b6e6", - "5c0517910db83400232ffee5", - "591c4efa86f7741030027726", - "570fd79bd2720bc7458b4583", - "570fd6c2d2720bc6458b457f", - "558022b54bdc2dac148b458d", - "5c07dd120db834001c39092d", - "5c0a2cec0db834001b7ce47d", - "58491f3324597764bc48fa02", - "584924ec24597768f12ae244", - "5b30b0dc5acfc400153b7124", - "6165ac8c290d254f5e6b2f6c", - "60a23797a37c940de7062d02", - "5d2da1e948f035477b1ce2ba", - "5c0505e00db834001b735073", - "609a63b6e2ff132951242d09", - "584984812459776a704a82a6", - "59f9d81586f7744c7506ee62", - "570fd721d2720bc5458b4596", - "57ae0171245977343c27bfcf", - "5dfe6104585a0c3e995c7b82", - "5d1b5e94d7ad1a2b865a96b0", - "609bab8b455afd752b2e6138", - "58d39d3d86f77445bb794ae7", - "616554fe50224f204c1da2aa", - "5c7d55f52e221644f31bff6a", - "616584766ef05c2ce828ef57", - "5b3b6dc75acfc47a8773fb1e", - "615d8d878004cc50514c3233", - "577d128124597739d65d0e56", - "58d2664f86f7747fec5834f6", - "5c1cdd302e221602b3137250", - "61714b2467085e45ef140b2c", - "5b31163c5acfc400153b71cb", - "5a33b652c4a28232996e407c", - "5a33b2c9c4a282000c5a9511", - "59db7eed86f77461f8380365", - "5a1ead28fcdbcb001912fa9f", - "626bb8532c923541184624b4", - "63fc449f5bd61c6cf3784a88", - "6477772ea8a38bb2050ed4db", - "6478641c19d732620e045e17", - "64785e7c19d732620e045e15", - "65392f611406374f82152ba5", - "653931da5db71d30ab1d6296", - "655f13e0a246670fb0373245" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_stock", - "_id": "5fc3e272f8b6a877a729eacf", - "_parent": "5fc3e272f8b6a877a729eac5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc3e4ee7283c4046c5814af" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "5fc3e8bbd6fa9c00c571bbcf", - "_parent": "5fc3e272f8b6a877a729eac5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc3e4a27283c4046c5814ab", - "6130c3dffaa1272e43151c7d" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_000", - "_id": "5fc53bbb900b1d5091531e75", - "_parent": "5fc3e272f8b6a877a729eac5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc53954f8b6a877a729eaeb" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_001", - "_id": "5fc53bc8900b1d5091531e76", - "_parent": "5fc3e272f8b6a877a729eac5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc5396e900b1d5091531e72" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount_002", - "_id": "5fc53bd82770a0045c59c6f8", - "_parent": "5fc3e272f8b6a877a729eac5", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5fc5396e900b1d5091531e72" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber1143x23ACP", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 5000, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 600, - "Ergonomics": 62, - "Velocity": 13, - "bEffDist": 200, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": true, - "defMagType": "5fc3e466187fea44d52eda90", - "defAmmo": "5e81f423763d9f754677bf2e", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5fc3e272f8b6a877a729ead0", - "_parent": "5fc3e272f8b6a877a729eac5", - "_props": { - "filters": [ - { - "Filter": [ - "5e81f423763d9f754677bf2e", - "5efb0cabfb3e451d70735af5", - "5efb0fc6aeb21837e749c801", - "5efb0d4f4bc50b58e81710f3", - "5ea2a8e200685063ec28c05a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.25, - "AimPlane": 0.25, - "DeviationCurve": 2.25, - "DeviationMax": 11, - "Foldable": true, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2185, - "RecoilReturnSpeedHandRotation": 3.1, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.0449, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 240, - "RecoilForceUp": 72, - "RecolDispersion": 18, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.45, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.3, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 28, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.305, - "z": -0.02 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.29, - "z": -0.05 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.1, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "mod_stock", - "CompactHandling": true, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 50, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.1771, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1.04, - "CoolFactorGun": 3.168, - "CoolFactorGunMods": 0.96, - "HeatFactorByShot": 2.26, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, "5ba26383d4351e00334c93d9": { "_id": "5ba26383d4351e00334c93d9", "_name": "weapon_hk_mp7a1_46x30", @@ -265857,23 +265389,23 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, - "5de652c31b7e3716273428be": { - "_id": "5de652c31b7e3716273428be", - "_name": "weapon_molot_vpo_215_366tkm", - "_parent": "5447b6254bdc2dc3278b4568", + "5fc3e272f8b6a877a729eac5": { + "_id": "5fc3e272f8b6a877a729eac5", + "_name": "weapon_hk_ump_1143x23", + "_parent": "5447b5e04bdc2d62278b4567", "_type": "Item", "_props": { - "Name": "weapon_molot_vpo_215_366tkm", - "ShortName": "weapon_molot_vpo_215_366tkm", - "Description": "weapon_molot_vpo_215_366tkm", - "Weight": 0.55, + "Name": "weapon_hk_ump_1143x23", + "ShortName": "weapon_hk_ump_1143x23", + "Description": "weapon_hk_ump_1143x23", + "Weight": 1.22, "BackgroundColor": "black", - "Width": 1, - "Height": 1, + "Width": 2, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "weap_rifle", + "ItemSound": "weap_ar", "Prefab": { - "path": "assets/content/weapons/vpo215/weapon_molot_vpo_215_366tkm_container.bundle", + "path": "assets/content/weapons/ump/weapon_hk_ump_1143x23_container.bundle", "rcid": "" }, "UsePrefab": { @@ -265890,11 +265422,11 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, + "LootExperience": 20, + "ExamineExperience": 8, "HideEntrails": false, - "RepairCost": 37, - "RepairSpeed": 14, + "RepairCost": 107, + "RepairSpeed": 15, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -265906,17 +265438,13 @@ "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [ - "Bear", - "Usec", - "Savage" - ], + "UnlootableFromSide": [], "AnimationVariantsNumber": 0, "DiscardingBlock": false, "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": false, "DiscardLimit": -1, - "DropSoundType": "Rifle", + "DropSoundType": "SubMachineGun", "InsuranceDisabled": false, "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, @@ -265925,14 +265453,14 @@ "Slots": [ { "_name": "mod_magazine", - "_id": "5de652c31b7e3716273428c0", - "_parent": "5de652c31b7e3716273428be", + "_id": "5fc3e272f8b6a877a729eac7", + "_parent": "5fc3e272f8b6a877a729eac5", "_props": { "filters": [ { - "AnimationIndex": 0, + "AnimationIndex": -1, "Filter": [ - "5de653abf76fdc1ce94a5a2a" + "5fc3e466187fea44d52eda90" ] } ] @@ -265942,33 +265470,102 @@ "_proto": "55d30c394bdc2dae468b4577" }, { - "_name": "mod_stock", - "_id": "5de652c31b7e3716273428c1", - "_parent": "5de652c31b7e3716273428be", + "_name": "mod_scope", + "_id": "5fc3e272f8b6a877a729eacb", + "_parent": "5fc3e272f8b6a877a729eac5", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5de655be4a9f347bc92edb88" + "57ac965c24597706be5f975c", + "57aca93d2459771f2c7e26db", + "544a3f024bdc2d1d388b4568", + "544a3a774bdc2d3a388b4567", + "5d2dc3e548f035404a1a4798", + "57adff4f24597737f373b6e6", + "5c0517910db83400232ffee5", + "591c4efa86f7741030027726", + "570fd79bd2720bc7458b4583", + "570fd6c2d2720bc6458b457f", + "558022b54bdc2dac148b458d", + "5c07dd120db834001c39092d", + "5c0a2cec0db834001b7ce47d", + "58491f3324597764bc48fa02", + "584924ec24597768f12ae244", + "5b30b0dc5acfc400153b7124", + "6165ac8c290d254f5e6b2f6c", + "60a23797a37c940de7062d02", + "5d2da1e948f035477b1ce2ba", + "5c0505e00db834001b735073", + "609a63b6e2ff132951242d09", + "584984812459776a704a82a6", + "59f9d81586f7744c7506ee62", + "570fd721d2720bc5458b4596", + "57ae0171245977343c27bfcf", + "5dfe6104585a0c3e995c7b82", + "5d1b5e94d7ad1a2b865a96b0", + "609bab8b455afd752b2e6138", + "58d39d3d86f77445bb794ae7", + "616554fe50224f204c1da2aa", + "5c7d55f52e221644f31bff6a", + "616584766ef05c2ce828ef57", + "5b3b6dc75acfc47a8773fb1e", + "615d8d878004cc50514c3233", + "577d128124597739d65d0e56", + "58d2664f86f7747fec5834f6", + "5c1cdd302e221602b3137250", + "61714b2467085e45ef140b2c", + "5b31163c5acfc400153b71cb", + "5a33b652c4a28232996e407c", + "5a33b2c9c4a282000c5a9511", + "59db7eed86f77461f8380365", + "5a1ead28fcdbcb001912fa9f", + "626bb8532c923541184624b4", + "63fc449f5bd61c6cf3784a88", + "6477772ea8a38bb2050ed4db", + "6478641c19d732620e045e17", + "64785e7c19d732620e045e15", + "65392f611406374f82152ba5", + "653931da5db71d30ab1d6296", + "655f13e0a246670fb0373245" ] } ] }, - "_required": true, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5fc3e272f8b6a877a729eacf", + "_parent": "5fc3e272f8b6a877a729eac5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fc3e4ee7283c4046c5814af" + ] + } + ] + }, + "_required": false, "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, { "_name": "mod_barrel", - "_id": "5de652c31b7e3716273428c2", - "_parent": "5de652c31b7e3716273428be", + "_id": "5fc3e8bbd6fa9c00c571bbcf", + "_parent": "5fc3e272f8b6a877a729eac5", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5de65547883dde217541644b" + "5fc3e4a27283c4046c5814ab", + "6130c3dffaa1272e43151c7d" ] } ] @@ -265978,15 +265575,51 @@ "_proto": "55d30c4c4bdc2db4468b457e" }, { - "_name": "mod_mount", - "_id": "5de652c31b7e3716273428c3", - "_parent": "5de652c31b7e3716273428be", + "_name": "mod_mount_000", + "_id": "5fc53bbb900b1d5091531e75", + "_parent": "5fc3e272f8b6a877a729eac5", "_props": { "filters": [ { "Shift": 0, "Filter": [ - "5de6558e9f98ac2bc65950fc" + "5fc53954f8b6a877a729eaeb" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_001", + "_id": "5fc53bc8900b1d5091531e76", + "_parent": "5fc3e272f8b6a877a729eac5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fc5396e900b1d5091531e72" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount_002", + "_id": "5fc53bd82770a0045c59c6f8", + "_parent": "5fc3e272f8b6a877a729eac5", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5fc5396e900b1d5091531e72" ] } ] @@ -265998,46 +265631,48 @@ ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "sniperRifle", + "weapClass": "smg", "weapUseType": "primary", - "ammoCaliber": "Caliber366TKM", + "ammoCaliber": "Caliber1143x23ACP", "Durability": 100, "MaxDurability": 100, - "OperatingResource": 1900, - "RepairComplexity": 1, + "OperatingResource": 5000, + "RepairComplexity": 0, "durabSpawnMin": 25, "durabSpawnMax": 75, "isFastReload": true, "weapFireType": [ - "single" + "single", + "fullauto" ], "SingleFireRate": 450, - "CanQueueSecondShot": false, - "bFirerate": 30, - "Ergonomics": 41, - "Velocity": 5.9, - "bEffDist": 1000, - "bHearDist": 100, + "CanQueueSecondShot": true, + "bFirerate": 600, + "Ergonomics": 62, + "Velocity": 13, + "bEffDist": 200, + "bHearDist": 80, "isChamberLoad": true, "chamberAmmoCount": 1, "isBoltCatch": true, - "defMagType": "5de653abf76fdc1ce94a5a2a", - "defAmmo": "59e655cb86f77411dc52a77b", + "defMagType": "5fc3e466187fea44d52eda90", + "defAmmo": "5e81f423763d9f754677bf2e", "AdjustCollimatorsToTrajectory": false, "shotgunDispersion": 0, "Chambers": [ { "_name": "patron_in_weapon", - "_id": "5de652c31b7e3716273428c4", - "_parent": "5de652c31b7e3716273428be", + "_id": "5fc3e272f8b6a877a729ead0", + "_parent": "5fc3e272f8b6a877a729eac5", "_props": { "filters": [ { "Filter": [ - "59e655cb86f77411dc52a77b", - "59e6542b86f77411dc52a77a", - "59e6658b86f77411d949b250", - "5f0596629e22f464da6bbdd9" + "5e81f423763d9f754677bf2e", + "5efb0cabfb3e451d70735af5", + "5efb0fc6aeb21837e749c801", + "5efb0d4f4bc50b58e81710f3", + "5ea2a8e200685063ec28c05a" ] } ] @@ -266048,11 +265683,11 @@ } ], "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.011, - "AimPlane": 0.32, - "DeviationCurve": 1, - "DeviationMax": 33, - "Foldable": false, + "CenterOfImpact": 0.25, + "AimPlane": 0.25, + "DeviationCurve": 2.25, + "DeviationMax": 11, + "Foldable": true, "Retractable": false, "TacticalReloadStiffnes": { "x": 0.95, @@ -266060,28 +265695,28 @@ "z": 0.95 }, "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2645, - "RecoilReturnSpeedHandRotation": 2.8, - "RecoilDampingHandRotation": 0.87, - "RecoilCamera": 0.154, - "RecoilStableIndexShot": 3, - "RecoilForceBack": 486, - "RecoilForceUp": 200, - "RecolDispersion": 10, + "RecoilCategoryMultiplierHandRotation": 0.2185, + "RecoilReturnSpeedHandRotation": 3.1, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.0449, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 240, + "RecoilForceUp": 72, + "RecolDispersion": 18, "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.41, + "RecoilReturnPathDampingHandRotation": 0.45, "RecoilReturnPathOffsetHandRotation": 0.01, "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, + "RecoilStableAngleIncreaseStep": 2.3, "ProgressRecoilAngleOnStable": { "x": 0, - "y": 30, + "y": 28, "z": 0 }, "RecoilCenter": { "x": 0, - "y": -0.43, - "z": 0.03 + "y": -0.305, + "z": -0.02 }, "PostRecoilVerticalRangeHandRotation": { "x": -1.3, @@ -266089,317 +265724,8 @@ "z": 0 }, "PostRecoilHorizontalRangeHandRotation": { - "x": -0.7, - "y": 0.7, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.24, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.16, - "z": -0.06 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.04, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": true, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.2277, - "AllowJam": false, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 4.608, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 8.56, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.035, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "55801eed4bdc2d89578b4588" - }, - "5f99418230835532b445e954": { - "_id": "5f99418230835532b445e954", - "_name": "item_equipment_cap_r2", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "cap_USEC", - "ShortName": "cap_USEC", - "Description": "cap_USEC", - "Weight": 0.1, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_bear/item_equipment_cap_revals.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5447bed64bdc2d97278b4568": { - "_id": "5447bed64bdc2d97278b4568", - "_name": "MachineGun", - "_parent": "5422acb9af1c889c16000029", - "_type": "Node", - "_props": { - "Name": "Item", - "ShortName": "Item", - "Description": "Item", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x18PM", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 0, - "RepairComplexity": 0, - "durabSpawnMin": 0, - "durabSpawnMax": 0, - "isFastReload": false, - "weapFireType": [], - "SingleFireRate": 720, - "CanQueueSecondShot": true, - "bFirerate": 900, - "Ergonomics": 10, - "Velocity": 0, - "bEffDist": 1, - "bHearDist": 1, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5448bc234bdc2d3c308b4569", - "defAmmo": "5485a8684bdc2da71d8b4567", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, - "Chambers": [], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0, - "DeviationCurve": 1, - "DeviationMax": 100, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.207, - "RecoilReturnSpeedHandRotation": 1, - "RecoilDampingHandRotation": 0.93, - "RecoilCamera": -0.3, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 1000, - "RecoilForceUp": 1000, - "RecolDispersion": 0, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.55, - "RecoilReturnPathOffsetHandRotation": 0.015, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": 0, - "z": 1 - }, - "PostRecoilVerticalRangeHandRotation": { "x": -2, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2.4, - "y": 2.4, + "y": 2, "z": 0 }, "ShotsGroupSettings": [ @@ -266429,24 +265755,24 @@ "z": 0 }, "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3, + "CameraSnap": 3.5, "RotationCenter": { "x": 0, - "y": 0, - "z": 0 + "y": -0.29, + "z": -0.05 }, "RotationCenterNoStock": { "x": 0, - "y": 0, + "y": -0.1, "z": 0 }, "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, + "FoldedSlot": "mod_stock", + "CompactHandling": true, "SightingRange": 100, "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "IronSightRange": 25, + "MaxRepairDegradation": 0.04, + "IronSightRange": 50, "MustBoltBeOpennedForExternalReload": false, "MustBoltBeOpennedForInternalReload": false, "BoltAction": false, @@ -266456,20 +265782,20 @@ "ManualBoltCatch": false, "AimSensitivity": 0.65, "BurstShotsCount": 3, - "BaseMalfunctionChance": 0, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1, - "HeatFactorGun": 1, - "CoolFactorGun": 1, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1, - "AllowOverheat": false, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1.04, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 0.96, + "HeatFactorByShot": 2.26, + "AllowOverheat": true, "DoubleActionAccuracyPenalty": 1.5, "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, "IsFlareGun": false, "IsOneoff": false, "IsGrenadeLauncher": false, @@ -266478,239 +265804,26 @@ "IsBeltMachineGun": false, "WithAnimatorAiming": false, "blockLeftStance": false - } + }, + "_proto": "5447a9cd4bdc2dbd208b4567" }, - "5447b5cf4bdc2d65278b4567": { - "_id": "5447b5cf4bdc2d65278b4567", - "_name": "Pistol", - "_parent": "5422acb9af1c889c16000029", - "_type": "Node", - "_props": { - "Name": "Item", - "ShortName": "Item", - "Description": "Item", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x18PM", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 0, - "RepairComplexity": 0, - "durabSpawnMin": 0, - "durabSpawnMax": 0, - "isFastReload": false, - "weapFireType": [], - "SingleFireRate": 720, - "CanQueueSecondShot": true, - "bFirerate": 900, - "Ergonomics": 10, - "Velocity": 0, - "bEffDist": 1, - "bHearDist": 1, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5448bc234bdc2d3c308b4569", - "defAmmo": "5485a8684bdc2da71d8b4567", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, - "Chambers": [], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0, - "DeviationCurve": 1, - "DeviationMax": 100, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.138, - "RecoilReturnSpeedHandRotation": 1, - "RecoilDampingHandRotation": 0.86, - "RecoilCamera": -0.3, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 100, - "RecoilForceUp": 50, - "RecolDispersion": 0, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.43, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": 0, - "z": 1 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1, - "HeatFactorGun": 1, - "CoolFactorGun": 1, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1, - "AllowOverheat": false, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - } - }, - "5f994730c91ed922dd355de3": { - "_id": "5f994730c91ed922dd355de3", - "_name": "item_equipment_head_r2", + "5aa2b87de5b5b00016327c25": { + "_id": "5aa2b87de5b5b00016327c25", + "_name": "cap_BEAR", "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "Knitcap", - "ShortName": "Knitcap", - "Description": "Knitcap", + "Name": "cap_BEAR", + "ShortName": "cap_BEAR", + "Description": "cap_BEAR", "Weight": 0.1, - "BackgroundColor": "violet", + "BackgroundColor": "default", "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "item_cloth_generic", + "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/head_kotton/item_equipment_head_revals.bundle", + "path": "assets/content/items/equipment/head_bear/item_equipment_head_bear_green.bundle", "rcid": "" }, "UsePrefab": { @@ -266762,100 +265875,6 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7f1624597762ae139822" - }, - "61c18db6dfd64163ea78fbb4": { - "_id": "61c18db6dfd64163ea78fbb4", - "_name": "item_equipment_head_leather_cap", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "item_equipment_head_beret_blk", - "ShortName": "item_equipment_head_beret_blk", - "Description": "item_equipment_head_beret_blk", - "Weight": 0.15, - "BackgroundColor": "default", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_leather/item_equipment_head_leather.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, "Durability": 10, "MaxDurability": 10, "armorClass": "0", @@ -266882,23 +265901,23 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, - "5aa7d193e5b5b000171d063f": { - "_id": "5aa7d193e5b5b000171d063f", - "_name": "helmet_sphera-C", + "5b432d215acfc4771e1c6624": { + "_id": "5b432d215acfc4771e1c6624", + "_name": "item_equipment_helmet_LSHZ", "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "hemlet_sphera-C", - "ShortName": "hemlet_sphera-C", - "Description": "hemlet_sphera-C", - "Weight": 3.5, + "Name": "lzsh", + "ShortName": "lzsh", + "Description": "lzsh", + "Weight": 0.95, "BackgroundColor": "default", "Width": 2, "Height": 2, "StackMaxSize": 1, "ItemSound": "gear_helmet", "Prefab": { - "path": "assets/content/items/equipment/helmet_sfera/item_equipment_helmet_sfera.bundle", + "path": "assets/content/items/equipment/helmet_lshz/item_equipment_helmet_lshz.bundle", "rcid": "" }, "UsePrefab": { @@ -266918,18 +265937,997 @@ "LootExperience": 20, "ExamineExperience": 4, "HideEntrails": false, - "RepairCost": 247, + "RepairCost": 355, "RepairSpeed": 10, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_equipment_000", + "_id": "5b4747f586f77411870d7074", + "_parent": "5b432d215acfc4771e1c6624", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a16badafcdbcb001865f72d", + "5a16b672fcdbcb001912fa83", + "5a16b7e1fcdbcb00165aa6c9" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_nvg", + "_id": "5b47480586f7741ee72661ba", + "_parent": "5b432d215acfc4771e1c6624", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ea058e01dbce517f324b3e2", + "5c0558060db834001b735271", + "5a16b8a9fcdbcb00165aa6ca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5b47481486f7741eef54418c", + "_parent": "5b432d215acfc4771e1c6624", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a398b75c4a282000a51a266", + "5a398ab9c4a282000c5a9842" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_equipment_001", + "_id": "5b47482886f7741eef544193", + "_parent": "5b432d215acfc4771e1c6624", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a16b9fffcdbcb0176308b34" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "Helmet_top", + "_id": "657bba9e65915aee8a045837", + "_parent": "5b432d215acfc4771e1c6624", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657bb92fa1c61ee0c303631f", + "Filter": [ + "657bb92fa1c61ee0c303631f" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657bba9e65915aee8a045838", + "_parent": "5b432d215acfc4771e1c6624", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657bb99db30eca976305117f", + "Filter": [ + "657bb99db30eca976305117f" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2376, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5de7bd7bfd6b4e6e2276dc25": { + "_id": "5de7bd7bfd6b4e6e2276dc25", + "_name": "weapon_bt_mp9n_9x19", + "_parent": "5447b5e04bdc2d62278b4567", + "_type": "Item", + "_props": { + "Name": "Бургер и Томат ЭмПэ ДеВяТь", + "ShortName": "weapon_bt_mp9_9x19", + "Description": "weapon_bt_mp9_9x19", + "Weight": 0.75, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/mp9/weapon_bt_mp9n_9x19_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 93, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "SubMachineGun", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "5de7bd7bfd6b4e6e2276dc27", + "_parent": "5de7bd7bfd6b4e6e2276dc25", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5de8e8dafd6b4e6e2276dc32", + "5de8ea8ffd6b4e6e2276dc35", + "5de8eaadbbaf010b10528a6d", + "5de8eac42a78646d96665d91" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_muzzle", + "_id": "5de7bd7bfd6b4e6e2276dc28", + "_parent": "5de7bd7bfd6b4e6e2276dc25", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5de8f237bbaf010b10528a70" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_stock", + "_id": "5de7bd7bfd6b4e6e2276dc2f", + "_parent": "5de7bd7bfd6b4e6e2276dc25", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5de910da8b6c4240ba2651b5" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_foregrip", + "_id": "5de919a3883dde2175416467", + "_parent": "5de7bd7bfd6b4e6e2276dc25", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5de8fbad2fbe23140d3ee9c4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "5de919b4f76fdc1ce94a5a4e", + "_parent": "5de7bd7bfd6b4e6e2276dc25", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5de8e67c4a9f347bc92edbd7", + "5e0090f7e9dc277128008b93" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "5de92277b74cd90030650c7f", + "_parent": "5de7bd7bfd6b4e6e2276dc25", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5de922d4b11454561e39239f" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x19PARA", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 4500, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 1100, + "Ergonomics": 75, + "Velocity": 13, + "bEffDist": 200, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "5de8e8dafd6b4e6e2276dc32", + "defAmmo": "64b7bbb74b75259c590fa897", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5de7bd7bfd6b4e6e2276dc30", + "_parent": "5de7bd7bfd6b4e6e2276dc25", + "_props": { + "filters": [ + { + "Filter": [ + "5efb0da7a29a85116f6ea05f", + "5c3df7d588a4501f290594e5", + "58864a4f2459770fcc257101", + "56d59d3ad2720bdb418b4577", + "5c925fa22e221601da359b7b", + "5a3c16fe86f77452b62de32a", + "5efb0e16aeb21837e749c7ff", + "5c0d56a986f774449d5de529", + "64b7bbb74b75259c590fa897" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.21, + "AimPlane": 0.1, + "DeviationCurve": 2.25, + "DeviationMax": 11, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.2185, + "RecoilReturnSpeedHandRotation": 3.2, + "RecoilDampingHandRotation": 0.84, + "RecoilCamera": 0.0326, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 254, + "RecoilForceUp": 51, + "RecolDispersion": 10, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.45, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 95, + "RecoilStableAngleIncreaseStep": 2.2, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 28, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.32, + "z": -0.02 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.13, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.38, + "z": -0.11 + }, + "SizeReduceRight": 0, + "FoldedSlot": "mod_stock", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 50, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1.1024, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.0464, + "HeatFactorByShot": 1.8, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, + "57f3c6bd24597738e730fa2f": { + "_id": "57f3c6bd24597738e730fa2f", + "_name": "weapon_zmz_pp-91-01_9x18pm", + "_parent": "5447b5e04bdc2d62278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_zmz_pp-91-01_9x18pm", + "ShortName": "weapon_zmz_pp-91-01_9x18pm", + "Description": "weapon_zmz_pp-91-01_9x18pm", + "Weight": 1.33, + "BackgroundColor": "black", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/pp-91/weapon_zmz_pp-91-01_9x18pm_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 76, + "RepairSpeed": 14, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "SubMachineGun", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_pistol_grip", + "_id": "57f3c7872459773c9c1f34dd", + "_parent": "57f3c6bd24597738e730fa2f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57d152ec245977144076ccdf" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_muzzle", + "_id": "57f3c7a524597738e8253ce4", + "_parent": "57f3c6bd24597738e730fa2f", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "57f3c7e024597738ea4ba286" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_magazine", + "_id": "57f3caf424597738eb6c4a68", + "_parent": "57f3c6bd24597738e730fa2f", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "57d14e1724597714010c3f4b", + "57d1519e24597714373db79d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x18PM", + "Durability": 95, + "MaxDurability": 100, + "OperatingResource": 5000, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 900, + "Ergonomics": 65, + "Velocity": -5, + "bEffDist": 100, + "bHearDist": 80, + "isChamberLoad": false, + "chamberAmmoCount": 1, + "isBoltCatch": true, + "defMagType": "57d14e1724597714010c3f4b", + "defAmmo": "573719762459775a626ccbc1", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 10, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "57f3c75e24597738eb6c49da", + "_parent": "57f3c6bd24597738e730fa2f", + "_props": { + "filters": [ + { + "Filter": [ + "573718ba2459775a75491131", + "573719df2459775a626ccbc2", + "57371b192459775a9f58a5e0", + "57371e4124597760ff7b25f1", + "57371eb62459776125652ac1", + "57371f8d24597761006c6a81", + "5737201124597760fc4431f1", + "5737207f24597760ff7b25f2", + "57371f2b24597761224311f1", + "573719762459775a626ccbc1", + "573720e02459776143012541", + "57372140245977611f70ee91", + "5737218f245977612125ba51" + ], + "MaxStackCount": 0 + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.2, + "AimPlane": 0.05, + "DeviationCurve": 2.25, + "DeviationMax": 11, + "Foldable": true, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.2185, + "RecoilReturnSpeedHandRotation": 3.5, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.0288, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 211, + "RecoilForceUp": 50, + "RecolDispersion": 10, + "RecoilPosZMult": 0.8, + "RecoilReturnPathDampingHandRotation": 0.45, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.27, + "z": 0.02 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.13, + "z": -0.04 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.3, + "z": -0.05 + }, + "SizeReduceRight": 1, + "FoldedSlot": "", + "CompactHandling": true, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.04, + "IronSightRange": 50, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.1771, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1.007, + "CoolFactorGun": 3.168, + "CoolFactorGunMods": 1.1227, + "HeatFactorByShot": 2.58, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.035, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "57d14d2524597714373db789" + }, + "5f60e7788adaa7100c3adb49": { + "_id": "5f60e7788adaa7100c3adb49", + "_name": "item_equipment_head_beret_blue", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "item_equipment_head_beret_blk", + "ShortName": "item_equipment_head_beret_blk", + "Description": "item_equipment_head_beret_blk", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_beret/item_equipment_head_beret_blue.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, "MergesWithChildren": false, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "65709d2d21b9f815e208ff95": { + "_id": "65709d2d21b9f815e208ff95", + "_name": "item_equipment_helmet_neosteel", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "helmet_ops_core_fast", + "ShortName": "helmet_ops_core_fast", + "Description": "helmet_ops_core_fast", + "Weight": 1.2, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_neosteel/item_equipment_helmet_neosteel.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 342, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, "ConflictingItems": [ - "5aa2b9aee5b5b00015693121" + "644a3df63b0b6f03e101e065", + "5cc9c20cd7f00c001336c65d", + "61605d88ffa6e502ac5e7eeb", + "5f60bf4558eff926626a60f2" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -266946,17 +266944,72 @@ "IsUnremovable": false, "Grids": [], "Slots": [ + { + "_name": "mod_equipment_000", + "_id": "65709d2d21b9f815e208ff96", + "_parent": "65709d2d21b9f815e208ff95", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "6570a88c8f221f3b210353b7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "6570a814663496b3f601abc8", + "_parent": "65709d2d21b9f815e208ff95", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b7be47f5acfc400170e2dd2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_nvg", + "_id": "6570a814663496b3f601abca", + "_parent": "65709d2d21b9f815e208ff95", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a16b8a9fcdbcb00165aa6ca", + "5c0558060db834001b735271" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, { "_name": "Helmet_top", - "_id": "657bb910b30eca976305117c", - "_parent": "5aa7d193e5b5b000171d063f", + "_id": "657f9f95e9433140ad0baf8a", + "_parent": "65709d2d21b9f815e208ff95", "_props": { "filters": [ { "locked": true, - "Plate": "657bb70486c7f9ef7a009936", + "Plate": "657f9eb7e9433140ad0baf86", "Filter": [ - "657bb70486c7f9ef7a009936" + "657f9eb7e9433140ad0baf86" ], "armorColliders": [ "ParietalHead" @@ -266972,15 +267025,15 @@ }, { "_name": "Helmet_back", - "_id": "657bb910b30eca976305117d", - "_parent": "5aa7d193e5b5b000171d063f", + "_id": "657f9f95e9433140ad0baf8b", + "_parent": "65709d2d21b9f815e208ff95", "_props": { "filters": [ { "locked": true, - "Plate": "657bb79ba1c61ee0c303631a", + "Plate": "657f9ef6c6679fefb3051e1f", "Filter": [ - "657bb79ba1c61ee0c303631a" + "657f9ef6c6679fefb3051e1f" ], "armorColliders": [ "BackHead" @@ -266993,35 +267046,11 @@ "_required": true, "_mergeSlotWithChildren": true, "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_ears", - "_id": "657bb910b30eca976305117e", - "_parent": "5aa7d193e5b5b000171d063f", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657bb7d7b30eca9763051176", - "Filter": [ - "657bb7d7b30eca9763051176" - ], - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, + "BlocksEarpiece": false, "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, @@ -267034,20 +267063,20 @@ "HasHinge": false, "MaterialType": "Helmet", "RicochetParams": { - "x": 0.7, - "y": 0.2, - "z": 70 + "x": 0.9, + "y": 0.4, + "z": 60 }, - "DeafStrength": "High", - "BluntThroughput": 0.09, + "DeafStrength": "None", + "BluntThroughput": 0.1448, "ArmorMaterial": "ArmoredSteel", "BlindnessProtection": 0, "ArmorType": "Heavy", "armorColliders": [], "armorPlateColliders": [], "speedPenaltyPercent": 0, - "mousePenalty": -2, - "weaponErgonomicPenalty": -2 + "mousePenalty": -1, + "weaponErgonomicPenalty": -1 }, "_proto": "5645bc214bdc2d363b8b4571" }, @@ -267764,6 +267793,344 @@ }, "_proto": "5447a9cd4bdc2dbd208b4567" }, + "5cc82d76e24e8d00134b4b83": { + "_id": "5cc82d76e24e8d00134b4b83", + "_name": "weapon_fn_p90_57x28", + "_parent": "5447b5e04bdc2d62278b4567", + "_type": "Item", + "_props": { + "Name": "weapon_hk_mp7a1_46x30", + "ShortName": "weapon_hk_mp7a1_46x30", + "Description": "weapon_hk_mp7a1_46x30", + "Weight": 0.7, + "BackgroundColor": "black", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "weap_ar", + "Prefab": { + "path": "assets/content/weapons/p90/weapon_fn_p90_57x28_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 226, + "RepairSpeed": 15, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "SubMachineGun", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_magazine", + "_id": "5cc82d76e24e8d00134b4b85", + "_parent": "5cc82d76e24e8d00134b4b83", + "_props": { + "filters": [ + { + "AnimationIndex": -1, + "Filter": [ + "5cc70093e4a949033c734312" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c394bdc2dae468b4577" + }, + { + "_name": "mod_stock", + "_id": "5cc82d76e24e8d00134b4b8d", + "_parent": "5cc82d76e24e8d00134b4b83", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cc700b9e4a949000f0f0f25", + "5cebec10d7f00c065703d185" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_reciever", + "_id": "5cc837bed7f00c00117917f9", + "_parent": "5cc82d76e24e8d00134b4b83", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cc700ede4a949033c734315", + "5cc70102e4a949035e43ba74", + "5cf7acfcd7f00c1084477cf2" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_barrel", + "_id": "5cc837cbd7f00c0012066ad2", + "_parent": "5cc82d76e24e8d00134b4b83", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cc701aae4a949000e1ea45c", + "5cc701d7e4a94900100ac4e7" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_charge", + "_id": "5cc837ded7f00c000d3a6b59", + "_parent": "5cc82d76e24e8d00134b4b83", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5cc6ea78e4a949000e1ea3c1", + "5cc6ea85e4a949000e1ea3c3" + ] + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber57x28", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 6500, + "RepairComplexity": 0, + "durabSpawnMin": 25, + "durabSpawnMax": 75, + "isFastReload": true, + "weapFireType": [ + "single", + "fullauto" + ], + "SingleFireRate": 450, + "CanQueueSecondShot": true, + "bFirerate": 900, + "Ergonomics": 60, + "Velocity": 1.5, + "bEffDist": 200, + "bHearDist": 80, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5cc70093e4a949033c734312", + "defAmmo": "5cc80f8fe4a949033b0224a2", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 0, + "Chambers": [ + { + "_name": "patron_in_weapon", + "_id": "5cc82d76e24e8d00134b4b8e", + "_parent": "5cc82d76e24e8d00134b4b83", + "_props": { + "filters": [ + { + "Filter": [ + "5cc80f53e4a949000e1ea4f8", + "5cc86832d7f00c000d3a6e6c", + "5cc86840d7f00c002412c56c", + "5cc80f67e4a949035e43bbba", + "5cc80f38e4a949001152b560", + "5cc80f8fe4a949033b0224a2", + "5cc80f79e4a949033c7343b2" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d4af244bdc2d962f8b4571" + } + ], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.25, + "AimPlane": 0.25, + "DeviationCurve": 2.25, + "DeviationMax": 11, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 0.2185, + "RecoilReturnSpeedHandRotation": 1.25, + "RecoilDampingHandRotation": 0.85, + "RecoilCamera": 0.0486, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 243, + "RecoilForceUp": 54, + "RecolDispersion": 15, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.45, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.4, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": -0.32, + "z": -0.02 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -1.3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -2, + "y": 2, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 1, + "EndShotIndex": 200, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": 6, + "y": -6, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.1, + "y": 0.2, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.1, + "CameraSnap": 3.5, + "RotationCenter": { + "x": 0, + "y": -0.13, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": -0.38, + "z": -0.11 + }, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.05, + "IronSightRange": 50, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0.18975, + "AllowJam": true, + "AllowFeed": true, + "AllowMisfire": true, + "AllowSlide": true, + "DurabilityBurnRatio": 1.15, + "HeatFactorGun": 1, + "CoolFactorGun": 2.88, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1.69, + "AllowOverheat": true, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0.045, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + }, + "_proto": "5447a9cd4bdc2dbd208b4567" + }, "5fc3f2d5900b1d5091531e57": { "_id": "5fc3f2d5900b1d5091531e57", "_name": "weapon_tdi_kriss_vector_gen_2_9x19", @@ -268571,344 +268938,6 @@ "blockLeftStance": false } }, - "5cc82d76e24e8d00134b4b83": { - "_id": "5cc82d76e24e8d00134b4b83", - "_name": "weapon_fn_p90_57x28", - "_parent": "5447b5e04bdc2d62278b4567", - "_type": "Item", - "_props": { - "Name": "weapon_hk_mp7a1_46x30", - "ShortName": "weapon_hk_mp7a1_46x30", - "Description": "weapon_hk_mp7a1_46x30", - "Weight": 0.7, - "BackgroundColor": "black", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "weap_ar", - "Prefab": { - "path": "assets/content/weapons/p90/weapon_fn_p90_57x28_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 226, - "RepairSpeed": 15, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "SubMachineGun", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_magazine", - "_id": "5cc82d76e24e8d00134b4b85", - "_parent": "5cc82d76e24e8d00134b4b83", - "_props": { - "filters": [ - { - "AnimationIndex": -1, - "Filter": [ - "5cc70093e4a949033c734312" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c394bdc2dae468b4577" - }, - { - "_name": "mod_stock", - "_id": "5cc82d76e24e8d00134b4b8d", - "_parent": "5cc82d76e24e8d00134b4b83", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cc700b9e4a949000f0f0f25", - "5cebec10d7f00c065703d185" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_reciever", - "_id": "5cc837bed7f00c00117917f9", - "_parent": "5cc82d76e24e8d00134b4b83", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cc700ede4a949033c734315", - "5cc70102e4a949035e43ba74", - "5cf7acfcd7f00c1084477cf2" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_barrel", - "_id": "5cc837cbd7f00c0012066ad2", - "_parent": "5cc82d76e24e8d00134b4b83", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cc701aae4a949000e1ea45c", - "5cc701d7e4a94900100ac4e7" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_charge", - "_id": "5cc837ded7f00c000d3a6b59", - "_parent": "5cc82d76e24e8d00134b4b83", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5cc6ea78e4a949000e1ea3c1", - "5cc6ea85e4a949000e1ea3c3" - ] - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber57x28", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 6500, - "RepairComplexity": 0, - "durabSpawnMin": 25, - "durabSpawnMax": 75, - "isFastReload": true, - "weapFireType": [ - "single", - "fullauto" - ], - "SingleFireRate": 450, - "CanQueueSecondShot": true, - "bFirerate": 900, - "Ergonomics": 60, - "Velocity": 1.5, - "bEffDist": 200, - "bHearDist": 80, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5cc70093e4a949033c734312", - "defAmmo": "5cc80f8fe4a949033b0224a2", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 0, - "Chambers": [ - { - "_name": "patron_in_weapon", - "_id": "5cc82d76e24e8d00134b4b8e", - "_parent": "5cc82d76e24e8d00134b4b83", - "_props": { - "filters": [ - { - "Filter": [ - "5cc80f53e4a949000e1ea4f8", - "5cc86832d7f00c000d3a6e6c", - "5cc86840d7f00c002412c56c", - "5cc80f67e4a949035e43bbba", - "5cc80f38e4a949001152b560", - "5cc80f8fe4a949033b0224a2", - "5cc80f79e4a949033c7343b2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d4af244bdc2d962f8b4571" - } - ], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.25, - "AimPlane": 0.25, - "DeviationCurve": 2.25, - "DeviationMax": 11, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 0.2185, - "RecoilReturnSpeedHandRotation": 1.25, - "RecoilDampingHandRotation": 0.85, - "RecoilCamera": 0.0486, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 243, - "RecoilForceUp": 54, - "RecolDispersion": 15, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.45, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.4, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": -0.32, - "z": -0.02 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -1.3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -2, - "y": 2, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 1, - "EndShotIndex": 200, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": 6, - "y": -6, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.1, - "y": 0.2, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.1, - "CameraSnap": 3.5, - "RotationCenter": { - "x": 0, - "y": -0.13, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": -0.38, - "z": -0.11 - }, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.05, - "IronSightRange": 50, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0.18975, - "AllowJam": true, - "AllowFeed": true, - "AllowMisfire": true, - "AllowSlide": true, - "DurabilityBurnRatio": 1.15, - "HeatFactorGun": 1, - "CoolFactorGun": 2.88, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1.69, - "AllowOverheat": true, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0.045, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - }, - "_proto": "5447a9cd4bdc2dbd208b4567" - }, "5447b5f14bdc2d61278b4567": { "_id": "5447b5f14bdc2d61278b4567", "_name": "AssaultRifle", @@ -269123,23 +269152,23 @@ "blockLeftStance": false } }, - "5d5e9c74a4b9364855191c40": { - "_id": "5d5e9c74a4b9364855191c40", - "_name": "helmet_mich2002_od", + "5a154d5cfcdbcb001a3b00da": { + "_id": "5a154d5cfcdbcb001a3b00da", + "_name": "helmet_ops_core_fast", "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "helmet_mich2002_od", - "ShortName": "helmet_mich2002_od", - "Description": "helmet_mich2002_od", - "Weight": 1.45, + "Name": "helmet_ops_core_fast", + "ShortName": "helmet_ops_core_fast", + "Description": "helmet_ops_core_fast", + "Weight": 0.9, "BackgroundColor": "default", "Width": 2, "Height": 2, "StackMaxSize": 1, "ItemSound": "gear_helmet", "Prefab": { - "path": "assets/content/items/equipment/helmet_mich2002/item_equipment_helmet_mich2002_od.bundle", + "path": "assets/content/items/equipment/helmet_opscore_fast/item_equipment_helmet_opscore_fast_black.bundle", "rcid": "" }, "UsePrefab": { @@ -269159,7 +269188,7 @@ "LootExperience": 20, "ExamineExperience": 4, "HideEntrails": false, - "RepairCost": 844, + "RepairCost": 921, "RepairSpeed": 10, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -269167,7 +269196,7 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": true, - "CanSellOnRagfair": true, + "CanSellOnRagfair": false, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -269186,14 +269215,35 @@ "Grids": [], "Slots": [ { - "_name": "mod_nvg", - "_id": "5d5e9c74a4b9364855191c42", - "_parent": "5d5e9c74a4b9364855191c40", + "_name": "mod_equipment_000", + "_id": "5a17e402fcdbcb00165aa6d1", + "_parent": "5a154d5cfcdbcb001a3b00da", "_props": { "filters": [ { "Shift": 0, "Filter": [ + "5a16badafcdbcb001865f72d", + "5a16b672fcdbcb001912fa83", + "5a16b7e1fcdbcb00165aa6c9" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_nvg", + "_id": "5a17e449fcdbcbcae6687268", + "_parent": "5a154d5cfcdbcb001a3b00da", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ea058e01dbce517f324b3e2", "5c0558060db834001b735271", "5a16b8a9fcdbcb00165aa6ca" ] @@ -269206,8 +269256,8 @@ }, { "_name": "mod_mount", - "_id": "5d5e9c74a4b9364855191c43", - "_parent": "5d5e9c74a4b9364855191c40", + "_id": "5a17e484fcdbcb0017581848", + "_parent": "5a154d5cfcdbcb001a3b00da", "_props": { "filters": [ { @@ -269223,10 +269273,28 @@ "_mergeSlotWithChildren": false, "_proto": "55d30c4c4bdc2db4468b457e" }, + { + "_name": "mod_equipment_001", + "_id": "5a214f4086f774545d34fe5c", + "_parent": "5a154d5cfcdbcb001a3b00da", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a16b9fffcdbcb0176308b34" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, { "_name": "mod_equipment_002", - "_id": "5d5e9c74a4b9364855191c44", - "_parent": "5d5e9c74a4b9364855191c40", + "_id": "5c0e6a91d174af029e696b31", + "_parent": "5a154d5cfcdbcb001a3b00da", "_props": { "filters": [ { @@ -269243,15 +269311,15 @@ }, { "_name": "Helmet_top", - "_id": "657f8db2f92cd718b7015505", - "_parent": "5d5e9c74a4b9364855191c40", + "_id": "657f8ffeada5fadd1f07a576", + "_parent": "5a154d5cfcdbcb001a3b00da", "_props": { "filters": [ { "locked": true, - "Plate": "657f8b94f92cd718b70154ff", + "Plate": "657f8ec5f4c82973640b234c", "Filter": [ - "657f8b94f92cd718b70154ff" + "657f8ec5f4c82973640b234c" ], "armorColliders": [ "ParietalHead" @@ -269267,15 +269335,15 @@ }, { "_name": "Helmet_back", - "_id": "657f8db2f92cd718b7015506", - "_parent": "5d5e9c74a4b9364855191c40", + "_id": "657f8ffeada5fadd1f07a577", + "_parent": "5a154d5cfcdbcb001a3b00da", "_props": { "filters": [ { "locked": true, - "Plate": "657f8b43f92cd718b70154fb", + "Plate": "657f8f10f4c82973640b2350", "Filter": [ - "657f8b43f92cd718b70154fb" + "657f8f10f4c82973640b2350" ], "armorColliders": [ "BackHead" @@ -269310,112 +269378,18 @@ "z": 70 }, "DeafStrength": "None", - "BluntThroughput": 0.1548, + "BluntThroughput": 0.1431, "ArmorMaterial": "Combined", "BlindnessProtection": 0, - "ArmorType": "Heavy", + "ArmorType": "Light", "armorColliders": [], "armorPlateColliders": [], "speedPenaltyPercent": 0, - "mousePenalty": -2, + "mousePenalty": -1, "weaponErgonomicPenalty": -1 }, "_proto": "5645bc214bdc2d363b8b4571" }, - "60361b0b5a45383c122086a1": { - "_id": "60361b0b5a45383c122086a1", - "_name": "item_equipment_head_military2_sand", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "Army cap", - "ShortName": "Army cap", - "Description": "Army cap", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_military2/item_equipment_head_military2_sand.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, "5ea17ca01412a1425304d1c0": { "_id": "5ea17ca01412a1425304d1c0", "_name": "item_equipment_helmet_diamond_age_bastion", @@ -269579,9 +269553,9 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, - "59e770f986f7742cbe3164ef": { - "_id": "59e770f986f7742cbe3164ef", - "_name": "army_cap", + "60361b0b5a45383c122086a1": { + "_id": "60361b0b5a45383c122086a1", + "_name": "item_equipment_head_military2_sand", "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { @@ -269595,7 +269569,7 @@ "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/head_military/item_equipment_head_military.bundle", + "path": "assets/content/items/equipment/head_military2/item_equipment_head_military2_sand.bundle", "rcid": "" }, "UsePrefab": { @@ -269673,23 +269647,23 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, - "5df8a58286f77412631087ed": { - "_id": "5df8a58286f77412631087ed", - "_name": "helmet_crew", + "59ef13ca86f77445fd0e2483": { + "_id": "59ef13ca86f77445fd0e2483", + "_name": "jack_o_lantern", "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "helmet_un", - "ShortName": "helmet_un", - "Description": "helmet_un", - "Weight": 0.9, - "BackgroundColor": "default", + "Name": "Jack-O-Lantern", + "ShortName": "Jack-O-Lantern", + "Description": "Jack-O-Lantern", + "Weight": 1.2, + "BackgroundColor": "orange", "Width": 2, "Height": 2, "StackMaxSize": 1, "ItemSound": "gear_helmet", "Prefab": { - "path": "assets/content/items/equipment/helmet_tsh_4m2/item_equipment_helmet_tsh_4m2.bundle", + "path": "assets/content/items/equipment/head_jack_o_lantern/item_equipment_head_jack_o_lantern.bundle", "rcid": "" }, "UsePrefab": { @@ -269719,15 +269693,110 @@ "MergesWithChildren": false, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c1a1e3f2e221602b66cc4c2", - "5bd071d786f7747e707b93a3", - "5bd0716d86f774171822ef4b", - "5b4326435acfc433000ed01d", - "5b432b2f5acfc4771e1c6622", - "5b4325355acfc40019478126", - "5ab8f85d86f7745cd93a1cf5" + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "Low", + "BluntThroughput": 0.18, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "HeadCommon", + "ParietalHead", + "BackHead", + "Ears", + "Eyes", + "Jaw", + "NeckFront", + "NeckBack" ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -1, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5f60c74e3b85f6263c145586": { + "_id": "5f60c74e3b85f6263c145586", + "_name": "item_equipment_helmet_rys_t", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_rys_t", + "ShortName": "item_equipment_helmet_rys_t", + "Description": "item_equipment_helmet_rys_t", + "Weight": 2.5, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_rys_t/item_equipment_helmet_rys_t.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 1209, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -269743,17 +269812,35 @@ "IsUnremovable": false, "Grids": [], "Slots": [ + { + "_name": "mod_equipment", + "_id": "5f60c74e3b85f6263c145588", + "_parent": "5f60c74e3b85f6263c145586", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5f60c85b58eff926626a60f7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, { "_name": "Helmet_top", - "_id": "657ba21e9ba22f103e081398", - "_parent": "5df8a58286f77412631087ed", + "_id": "657bc3b1b30eca9763051191", + "_parent": "5f60c74e3b85f6263c145586", "_props": { "filters": [ { "locked": true, - "Plate": "657ba096e57570b7f80a17fb", + "Plate": "657bc285aab96fccee08bea3", "Filter": [ - "657ba096e57570b7f80a17fb" + "657bc285aab96fccee08bea3" ], "armorColliders": [ "ParietalHead" @@ -269769,15 +269856,15 @@ }, { "_name": "Helmet_back", - "_id": "657ba21e9ba22f103e081399", - "_parent": "5df8a58286f77412631087ed", + "_id": "657bc3b1b30eca9763051192", + "_parent": "5f60c74e3b85f6263c145586", "_props": { "filters": [ { "locked": true, - "Plate": "657ba145e57570b7f80a17ff", + "Plate": "657bc2c5a1c61ee0c3036333", "Filter": [ - "657ba145e57570b7f80a17ff" + "657bc2c5a1c61ee0c3036333" ], "armorColliders": [ "BackHead" @@ -269793,15 +269880,15 @@ }, { "_name": "Helmet_ears", - "_id": "657ba21e9ba22f103e08139a", - "_parent": "5df8a58286f77412631087ed", + "_id": "657bc3b1b30eca9763051193", + "_parent": "5f60c74e3b85f6263c145586", "_props": { "filters": [ { "locked": true, - "Plate": "657ba18923918923cb0df568", + "Plate": "657bc2e7b30eca976305118d", "Filter": [ - "657ba18923918923cb0df568" + "657bc2e7b30eca976305118d" ], "armorColliders": [ "Ears" @@ -269830,21 +269917,395 @@ "FaceShieldMask": "NoMask", "HasHinge": false, "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 65 + }, + "DeafStrength": "High", + "BluntThroughput": 0.1431, + "ArmorMaterial": "Titan", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -2, + "weaponErgonomicPenalty": -3 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5a16bb52fcdbcb001a3b00dc": { + "_id": "5a16bb52fcdbcb001a3b00dc", + "_name": "helmet_wilcox_skull_lock", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "helmet_wilcox_skull_lock", + "ShortName": "helmet_wilcox_skull_lock", + "Description": "helmet_wilcox_skull_lock", + "Weight": 0.5, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/customizable/skull_lock/helmet_wilcox_skull_lock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 50, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_nvg", + "_id": "5a17e73bfcdbcbcae6687269", + "_parent": "5a16bb52fcdbcb001a3b00dc", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a16b8a9fcdbcb00165aa6ca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5b4327aa5acfc400175496e0": { + "_id": "5b4327aa5acfc400175496e0", + "_name": "item_equipment_head_panama", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "Panama", + "ShortName": "Panama", + "Description": "Panama", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_panama/item_equipment_head_panama.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5aa7d03ae5b5b00016327db5": { + "_id": "5aa7d03ae5b5b00016327db5", + "_name": "helmet_un", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "helmet_un", + "ShortName": "helmet_un", + "Description": "helmet_un", + "Weight": 2.2, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_un/item_equipment_helmet_un.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 462, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "helmet_top", + "_id": "654a9213801dd5f2770287f8", + "_parent": "5aa7d03ae5b5b00016327db5", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "654a90aff4f81a421b0a7c86", + "Filter": [ + "654a90aff4f81a421b0a7c86" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "helmet_back", + "_id": "654a923d801dd5f2770287f9", + "_parent": "5aa7d03ae5b5b00016327db5", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "654a91068e1ce698150fd1e2", + "Filter": [ + "654a91068e1ce698150fd1e2" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "helmet_ears", + "_id": "654a9255184eef9ec3093127", + "_parent": "5aa7d03ae5b5b00016327db5", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "654a9189bcc67a392b056c79", + "Filter": [ + "654a9189bcc67a392b056c79" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", "RicochetParams": { "x": 0.9, "y": 0.4, "z": 75 }, "DeafStrength": "Low", - "BluntThroughput": 0.2576, + "BluntThroughput": 0.2376, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [], "armorPlateColliders": [], "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 + "mousePenalty": -2, + "weaponErgonomicPenalty": -1 }, "_proto": "5645bc214bdc2d363b8b4571" }, @@ -269942,100 +270403,6 @@ }, "_proto": "572b7f1624597762ae139822" }, - "5f60e6403b85f6263c14558c": { - "_id": "5f60e6403b85f6263c14558c", - "_name": "item_equipment_head_beret_blk", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "item_equipment_head_beret_blk", - "ShortName": "item_equipment_head_beret_blk", - "Description": "item_equipment_head_beret_blk", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_beret/item_equipment_head_beret_blk.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, "5b43271c5acfc432ff4dce65": { "_id": "5b43271c5acfc432ff4dce65", "_name": "item_equipment_head_bandana", @@ -270130,100 +270497,6 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, - "5aa2b8d7e5b5b00014028f4a": { - "_id": "5aa2b8d7e5b5b00014028f4a", - "_name": "cap_police", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "cap_police", - "ShortName": "cap_police", - "Description": "cap_police", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_police/item_equipment_head_police.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, "6531119b9afebff7ff0a1769": { "_id": "6531119b9afebff7ff0a1769", "_name": "item_equipment_head_BOSS_zryachi_balaclava_open_HALLOWEEN", @@ -270412,6 +270685,1834 @@ }, "_proto": "557ff21e4bdc2d89578b4586" }, + "5f994730c91ed922dd355de3": { + "_id": "5f994730c91ed922dd355de3", + "_name": "item_equipment_head_r2", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "Knitcap", + "ShortName": "Knitcap", + "Description": "Knitcap", + "Weight": 0.1, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_cloth_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_kotton/item_equipment_head_revals.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7f1624597762ae139822" + }, + "59e7708286f7742cbd762753": { + "_id": "59e7708286f7742cbd762753", + "_name": "ushanka", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "Ushanka", + "ShortName": "Ushanka", + "Description": "Ushanka", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_ushanka/item_equipment_head_ushanka.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5aa7d193e5b5b000171d063f": { + "_id": "5aa7d193e5b5b000171d063f", + "_name": "helmet_sphera-C", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "hemlet_sphera-C", + "ShortName": "hemlet_sphera-C", + "Description": "hemlet_sphera-C", + "Weight": 3.5, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_sfera/item_equipment_helmet_sfera.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 247, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5aa2b9aee5b5b00015693121" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Helmet_top", + "_id": "657bb910b30eca976305117c", + "_parent": "5aa7d193e5b5b000171d063f", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657bb70486c7f9ef7a009936", + "Filter": [ + "657bb70486c7f9ef7a009936" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657bb910b30eca976305117d", + "_parent": "5aa7d193e5b5b000171d063f", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657bb79ba1c61ee0c303631a", + "Filter": [ + "657bb79ba1c61ee0c303631a" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_ears", + "_id": "657bb910b30eca976305117e", + "_parent": "5aa7d193e5b5b000171d063f", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657bb7d7b30eca9763051176", + "Filter": [ + "657bb7d7b30eca9763051176" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.7, + "y": 0.2, + "z": 70 + }, + "DeafStrength": "High", + "BluntThroughput": 0.09, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -2, + "weaponErgonomicPenalty": -2 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "61bca7cda0eae612383adf57": { + "_id": "61bca7cda0eae612383adf57", + "_name": "item_equipment_helmet_nfm_hjelm", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_nfm_hjelm", + "ShortName": "item_equipment_helmet_nfm_hjelm", + "Description": "item_equipment_helmet_nfm_hjelm", + "Weight": 0.8, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_nfm_hjelm/item_equipment_helmet_nfm_hjelm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 442, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_equipment_000", + "_id": "61bca7cda0eae612383adf59", + "_parent": "61bca7cda0eae612383adf57", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a16b672fcdbcb001912fa83", + "5a16b7e1fcdbcb00165aa6c9" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_nvg", + "_id": "61bca7cda0eae612383adf5a", + "_parent": "61bca7cda0eae612383adf57", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0558060db834001b735271", + "5a16b8a9fcdbcb00165aa6ca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "61bca7cda0eae612383adf5b", + "_parent": "61bca7cda0eae612383adf57", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a398b75c4a282000a51a266", + "5a398ab9c4a282000c5a9842" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_equipment_001", + "_id": "61bca7cda0eae612383adf5c", + "_parent": "61bca7cda0eae612383adf57", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "Helmet_top", + "_id": "657bbe09b30eca9763051187", + "_parent": "61bca7cda0eae612383adf57", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657bbcc9a1c61ee0c3036327", + "Filter": [ + "657bbcc9a1c61ee0c3036327" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657bbe09b30eca9763051188", + "_parent": "61bca7cda0eae612383adf57", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657bbcffbbd440df880b2dd5", + "Filter": [ + "657bbcffbbd440df880b2dd5" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1448, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": -1 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5c06c6a80db834001b735491": { + "_id": "5c06c6a80db834001b735491", + "_name": "item_equipment_helmet_ssh-68", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_ssh-68", + "ShortName": "item_equipment_helmet_ssh-68", + "Description": "item_equipment_helmet_ssh-68\n", + "Weight": 1.5, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_ssh-68/item_equipment_helmet_ssh-68.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 106, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5aa2ba71e5b5b000137b758f", + "6033fa48ffd42c541047f728", + "5c165d832e2216398b5a7e36", + "5e4d34ca86f774264f758330", + "5f60cd6cf2bcbb675b00dac6" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Helmet_top", + "_id": "65711adb9eb8c145180dbb9a", + "_parent": "5c06c6a80db834001b735491", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6571199565daf6aa960c9b10", + "Filter": [ + "6571199565daf6aa960c9b10" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "65711adb9eb8c145180dbb9b", + "_parent": "5c06c6a80db834001b735491", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657119d49eb8c145180dbb95", + "Filter": [ + "657119d49eb8c145180dbb95" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_ears", + "_id": "65711adb9eb8c145180dbb9c", + "_parent": "5c06c6a80db834001b735491", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657119fea330b8c9060f7afc", + "Filter": [ + "657119fea330b8c9060f7afc" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 50 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1726, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -2, + "weaponErgonomicPenalty": -3 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5aa7e454e5b5b0214e506fa2": { + "_id": "5aa7e454e5b5b0214e506fa2", + "_name": "helmet_zsh_1-2m_v1", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "helmet_zsh1-2m_v1", + "ShortName": "helmet_zsh1-2m_v1", + "Description": "helmet_zsh1-2m_v1", + "Weight": 3.7, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_zsh_1var/item_equipment_helmet_zsh_1var.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 446, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_equipment", + "_id": "5aa7e454e5b5b0214e506fa4", + "_parent": "5aa7e454e5b5b0214e506fa2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5aa7e3abe5b5b000171d064d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "Helmet_top", + "_id": "657f948bf92cd718b7015509", + "_parent": "5aa7e454e5b5b0214e506fa2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657f925dada5fadd1f07a57a", + "Filter": [ + "657f925dada5fadd1f07a57a" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657f948bf92cd718b701550a", + "_parent": "5aa7e454e5b5b0214e506fa2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657f92acada5fadd1f07a57e", + "Filter": [ + "657f92acada5fadd1f07a57e" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_ears", + "_id": "657f948bf92cd718b701550b", + "_parent": "5aa7e454e5b5b0214e506fa2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657f92e7f4c82973640b2354", + "Filter": [ + "657f92e7f4c82973640b2354" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 75 + }, + "DeafStrength": "High", + "BluntThroughput": 0.1548, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -2, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5d5fca1ea4b93635fd598c07": { + "_id": "5d5fca1ea4b93635fd598c07", + "_name": "item_equipment_glasses_ess", + "_parent": "5448e5724bdc2ddf718b4568", + "_type": "Item", + "_props": { + "Name": "item_equipment_glasses_ess", + "ShortName": "item_equipment_glasses_ess", + "Description": "item_equipment_glasses_ess", + "Weight": 0.03, + "BackgroundColor": "default", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/glasses_ess/item_equipment_glasses_ess.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0.3, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, + "62a09e410b9d3c46de5b6e78": { + "_id": "62a09e410b9d3c46de5b6e78", + "_name": "item_equipment_glasses_johnb", + "_parent": "5448e5724bdc2ddf718b4568", + "_type": "Item", + "_props": { + "Name": "item_equipment_glasses_aviator", + "ShortName": "item_equipment_glasses_aviator", + "Description": "item_equipment_glasses_aviator", + "Weight": 0.06, + "BackgroundColor": "violet", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/glasses_johnb/item_equipment_glasses_johnb.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0.25, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, + "545cdb794bdc2d3a198b456a": { + "_id": "545cdb794bdc2d3a198b456a", + "_name": "heavy", + "_parent": "5448e54d4bdc2dcc718b4568", + "_type": "Item", + "_props": { + "Name": "6B43", + "ShortName": "6B43", + "Description": "6B43", + "Weight": 10.8, + "BackgroundColor": "blue", + "Width": 4, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_6b34/item_equipment_armor_6b34.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 80, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 1328, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Front_plate", + "_id": "6575d07cefc786cd9101a675", + "_parent": "545cdb794bdc2d3a198b456a", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "64afc71497cf3a403c01ff38", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656f9fa0498d1b7e3e071d98", + "656fb0bd7c2d57afe200c0dc", + "656fa53d94b480b8a500c0e4", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "6575d07cefc786cd9101a676", + "_parent": "545cdb794bdc2d3a198b456a", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "64afc71497cf3a403c01ff38", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fa61e94b480b8a500c0e8", + "656fad8c498d1b7e3e071da0", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656f9fa0498d1b7e3e071d98", + "656fb0bd7c2d57afe200c0dc", + "656fa53d94b480b8a500c0e4", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Left_side_plate", + "_id": "6575d07cefc786cd9101a677", + "_parent": "545cdb794bdc2d3a198b456a", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "64afd81707e2cf40e903a316", + "Filter": [ + "64afd81707e2cf40e903a316", + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_left_low" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Right_side_plate", + "_id": "6575d07cefc786cd9101a678", + "_parent": "545cdb794bdc2d3a198b456a", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "64afd81707e2cf40e903a316", + "Filter": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_right_low" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_front", + "_id": "6575d07cefc786cd9101a679", + "_parent": "545cdb794bdc2d3a198b456a", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575ce3716c2762fba0057fd", + "Filter": [ + "6575ce3716c2762fba0057fd" + ], + "armorColliders": [ + "RibcageLow", + "RibcageUp" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "6575d07cefc786cd9101a67a", + "_parent": "545cdb794bdc2d3a198b456a", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575ce45dc9932aed601c616", + "Filter": [ + "6575ce45dc9932aed601c616" + ], + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_left", + "_id": "6575d07cefc786cd9101a67b", + "_parent": "545cdb794bdc2d3a198b456a", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575ce5016c2762fba005802", + "Filter": [ + "6575ce5016c2762fba005802" + ], + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_right", + "_id": "6575d07cefc786cd9101a67c", + "_parent": "545cdb794bdc2d3a198b456a", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575ce5befc786cd9101a671", + "Filter": [ + "6575ce5befc786cd9101a671" + ], + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Collar", + "_id": "6575d07cefc786cd9101a67d", + "_parent": "545cdb794bdc2d3a198b456a", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575ce6f16c2762fba005806", + "Filter": [ + "6575ce6f16c2762fba005806" + ], + "armorColliders": [ + "NeckFront", + "NeckBack" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Shoulder_l", + "_id": "6575d07cefc786cd9101a67e", + "_parent": "545cdb794bdc2d3a198b456a", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575ce9db15fef3dd4051628", + "Filter": [ + "6575ce9db15fef3dd4051628" + ], + "armorColliders": [ + "LeftUpperArm" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Shoulder_r", + "_id": "6575d07cefc786cd9101a67f", + "_parent": "545cdb794bdc2d3a198b456a", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575cea8b15fef3dd405162c", + "Filter": [ + "6575cea8b15fef3dd405162c" + ], + "armorColliders": [ + "RightUpperArm" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Groin", + "_id": "6575d07cefc786cd9101a680", + "_parent": "545cdb794bdc2d3a198b456a", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575ce8bdc9932aed601c61e", + "Filter": [ + "6575ce8bdc9932aed601c61e" + ], + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.297, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": -11.5, + "mousePenalty": -5.5, + "weaponErgonomicPenalty": -10 + } + }, + "5bd073c986f7747f627e796c": { + "_id": "5bd073c986f7747f627e796c", + "_name": "item_equipment_head_kotton", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "item_equipment_head_kotton", + "ShortName": "item_equipment_head_kotton", + "Description": "item_equipment_head_kotton", + "Weight": 0.2, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_kotton/item_equipment_head_kotton.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 50, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": true, + "DiscardLimit": 1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": true, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7d8524597762b472f9d1" + }, + "5ab8f20c86f7745cdb629fb2": { + "_id": "5ab8f20c86f7745cdb629fb2", + "_name": "hats_skihat", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "hats_skihat", + "ShortName": "hats_skihat", + "Description": "hats_skihat", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_skihat/item_equipment_head_skihat.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": true, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5aa2b9ede5b5b000137b758b": { + "_id": "5aa2b9ede5b5b000137b758b", + "_name": "hats_cowboy", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "hats_cowboy", + "ShortName": "hats_cowboy", + "Description": "hats_cowboy", + "Weight": 0.2, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_cowboy/item_equipment_head_cowboy.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, "65719f0775149d62ce0a670b": { "_id": "65719f0775149d62ce0a670b", "_name": "item_equipment_helmet_tor_2", @@ -270638,15 +272739,15 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, - "5ab8f20c86f7745cdb629fb2": { - "_id": "5ab8f20c86f7745cdb629fb2", - "_name": "hats_skihat", + "636270263f2495c26f00b007": { + "_id": "636270263f2495c26f00b007", + "_name": "item_equipment_head_BOSS_zryachi_balaclava_open", "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "hats_skihat", - "ShortName": "hats_skihat", - "Description": "hats_skihat", + "Name": "hats_fleece", + "ShortName": "hats_fleece", + "Description": "hats_fleece", "Weight": 0.1, "BackgroundColor": "default", "Width": 1, @@ -270654,7 +272755,7 @@ "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/head_skihat/item_equipment_head_skihat.bundle", + "path": "assets/content/items/equipment/head_boss_zryachi_balaclava_open/item_equipment_head_boss_zryachi_balaclava_open.bundle", "rcid": "" }, "UsePrefab": { @@ -270663,7 +272764,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": true, + "ExaminedByDefault": false, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -270672,7 +272773,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 5, - "ExamineExperience": 10, + "ExamineExperience": 100, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -270705,7 +272806,7 @@ "BlocksEarpiece": false, "BlocksEyewear": false, "BlocksHeadwear": false, - "BlocksFaceCover": true, + "BlocksFaceCover": false, "Durability": 10, "MaxDurability": 10, "armorClass": "0", @@ -270732,285 +272833,6 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, - "572b7fa124597762b472f9d2": { - "_id": "572b7fa124597762b472f9d2", - "_name": "knitcap", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "Knitcap", - "ShortName": "Knitcap", - "Description": "Knitcap", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/head_knitcap/item_equipment_head_knitcap.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7f1624597762ae139822" - }, - "5f60c74e3b85f6263c145586": { - "_id": "5f60c74e3b85f6263c145586", - "_name": "item_equipment_helmet_rys_t", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_rys_t", - "ShortName": "item_equipment_helmet_rys_t", - "Description": "item_equipment_helmet_rys_t", - "Weight": 2.5, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_rys_t/item_equipment_helmet_rys_t.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 1209, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_equipment", - "_id": "5f60c74e3b85f6263c145588", - "_parent": "5f60c74e3b85f6263c145586", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5f60c85b58eff926626a60f7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "Helmet_top", - "_id": "657bc3b1b30eca9763051191", - "_parent": "5f60c74e3b85f6263c145586", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657bc285aab96fccee08bea3", - "Filter": [ - "657bc285aab96fccee08bea3" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "657bc3b1b30eca9763051192", - "_parent": "5f60c74e3b85f6263c145586", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657bc2c5a1c61ee0c3036333", - "Filter": [ - "657bc2c5a1c61ee0c3036333" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_ears", - "_id": "657bc3b1b30eca9763051193", - "_parent": "5f60c74e3b85f6263c145586", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657bc2e7b30eca976305118d", - "Filter": [ - "657bc2e7b30eca976305118d" - ], - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 65 - }, - "DeafStrength": "High", - "BluntThroughput": 0.1431, - "ArmorMaterial": "Titan", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -2, - "weaponErgonomicPenalty": -3 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, "5b40e3f35acfc40016388218": { "_id": "5b40e3f35acfc40016388218", "_name": "item_equipment_helmet_ACHHC_black", @@ -271154,100 +272976,6 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, - "636270263f2495c26f00b007": { - "_id": "636270263f2495c26f00b007", - "_name": "item_equipment_head_BOSS_zryachi_balaclava_open", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "hats_fleece", - "ShortName": "hats_fleece", - "Description": "hats_fleece", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_boss_zryachi_balaclava_open/item_equipment_head_boss_zryachi_balaclava_open.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, "5aa2b923e5b5b000137b7589": { "_id": "5aa2b923e5b5b000137b7589", "_name": "glasses_Aoron", @@ -271436,23 +273164,23 @@ }, "_proto": "557ff21e4bdc2d89578b4586" }, - "5e00cdd986f7747473332240": { - "_id": "5e00cdd986f7747473332240", - "_name": "item_equipment_helmet_team_wendy_exfil_face_shield", - "_parent": "57bef4c42459772e8d35a53b", + "60a7acf20c5cb24b01346648": { + "_id": "60a7acf20c5cb24b01346648", + "_name": "item_equipment_head_tagillacap", + "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "item_equipment_helmet_team_wendy_exfil_face_shield", - "ShortName": "item_equipment_helmet_team_wendy_exfil_face_shield", - "Description": "item_equipment_helmet_team_wendy_exfil_face_shield", - "Weight": 0.8, + "Name": "Army cap", + "ShortName": "Army cap", + "Description": "Army cap", + "Weight": 0.1, "BackgroundColor": "default", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "gear_goggles", + "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/helmet_team_wendy_exfil_face_shield/item_equipment_helmet_team_wendy_exfil_face_shield_black.bundle", + "path": "assets/content/items/equipment/head_tagillacap/item_equipment_head_tagillacap.bundle", "rcid": "" }, "UsePrefab": { @@ -271461,7 +273189,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": true, + "ExaminedByDefault": false, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -271469,10 +273197,10 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, + "LootExperience": 5, + "ExamineExperience": 100, "HideEntrails": false, - "RepairCost": 133, + "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -271480,14 +273208,14 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": false, + "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [ - "5c0696830db834001d23f5da", - "5c066e3a0db834001b7353f0", - "5c0558060db834001b735271", - "57235b6f24597759bf5a30f1", - "5c110624d174af029e69734c" + "5bd0716d86f774171822ef4b", + "5bd06f5d86f77427101ad47c", + "5b432c305acfc40019478128", + "60363c0c92ec1c31037959f5", + "5e54f79686f7744022011103" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -271507,56 +273235,52 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "BlocksEarpiece": false, - "BlocksEyewear": true, + "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 45, - "MaxDurability": 45, - "armorClass": "3", + "Durability": 10, + "MaxDurability": 10, + "armorClass": "0", "Indestructibility": 0.9, - "FaceShieldComponent": true, + "FaceShieldComponent": false, "FaceShieldMask": "NoMask", - "HasHinge": true, - "MaterialType": "GlassVisor", + "HasHinge": false, + "MaterialType": "BodyArmor", "RicochetParams": { - "x": 0.7, - "y": 0.4, - "z": 55 + "x": 0, + "y": 0, + "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.1188, - "ArmorMaterial": "Glass", - "BlindnessProtection": 0.1, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, "ArmorType": "None", - "armorColliders": [ - "HeadCommon", - "Eyes", - "Jaw" - ], + "armorColliders": [], "armorPlateColliders": [], "speedPenaltyPercent": 0, - "mousePenalty": -10, - "weaponErgonomicPenalty": -4 + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 }, - "_proto": "557ff21e4bdc2d89578b4586" + "_proto": "5645bc214bdc2d363b8b4571" }, - "6038b4ca92ec1c3103795a0d": { - "_id": "6038b4ca92ec1c3103795a0d", - "_name": "item_equipment_armor_slick_olive", - "_parent": "5448e54d4bdc2dcc718b4568", + "5f60e784f2bcbb675b00dac7": { + "_id": "5f60e784f2bcbb675b00dac7", + "_name": "item_equipment_head_beret_od", + "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "gjel", - "ShortName": "gjel", - "Description": "gjel", - "Weight": 1.3, - "BackgroundColor": "blue", - "Width": 3, - "Height": 3, + "Name": "item_equipment_head_beret_blk", + "ShortName": "item_equipment_head_beret_blk", + "Description": "item_equipment_head_beret_blk", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, "StackMaxSize": 1, - "ItemSound": "gear_armor", + "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/armor_slick/item_equipment_armor_slick_olive.bundle", + "path": "assets/content/items/equipment/head_beret/item_equipment_head_beret_od.bundle", "rcid": "" }, "UsePrefab": { @@ -271573,11 +273297,11 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 2, + "LootExperience": 5, + "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 1063, - "RepairSpeed": 8, + "RepairCost": 0, + "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -271601,146 +273325,15 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "Front_plate", - "_id": "657640e5bc8a93150303a638", - "_parent": "6038b4ca92ec1c3103795a0d", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fa76500d62bcd2e024080", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fafe3498d1b7e3e071da4", - "656fa0fb498d1b7e3e071d9c", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fa61e94b480b8a500c0e8", - "656fad8c498d1b7e3e071da0", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "656fb21fa0dce000a2020f7c", - "64afdcb83efdfea28601d041", - "655746010177119f4a097ff7" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "657640e5bc8a93150303a639", - "_parent": "6038b4ca92ec1c3103795a0d", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fa76500d62bcd2e024080", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fa76500d62bcd2e024080", - "656fafe3498d1b7e3e071da4", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fb0bd7c2d57afe200c0dc", - "656fac30c6baea13cd07e10c", - "656fb21fa0dce000a2020f7c", - "656fa61e94b480b8a500c0e8", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "64afdcb83efdfea28601d041", - "655746010177119f4a097ff7" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "657640e5bc8a93150303a63a", - "_parent": "6038b4ca92ec1c3103795a0d", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575e71760703324250610c3", - "Filter": [ - "6575e71760703324250610c3" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "657640e5bc8a93150303a63b", - "_parent": "6038b4ca92ec1c3103795a0d", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575e72660703324250610c7", - "Filter": [ - "6575e72660703324250610c7" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "BlocksEarpiece": false, "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, + "Durability": 10, + "MaxDurability": 10, "armorClass": "0", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -271753,35 +273346,314 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.2259, - "ArmorMaterial": "Aramid", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", "BlindnessProtection": 0, - "ArmorType": "Light", + "ArmorType": "None", "armorColliders": [], "armorPlateColliders": [], "speedPenaltyPercent": 0, "mousePenalty": 0, "weaponErgonomicPenalty": 0 }, - "_proto": "545cdb794bdc2d3a198b456a" + "_proto": "5645bc214bdc2d363b8b4571" }, - "5b4327aa5acfc400175496e0": { - "_id": "5b4327aa5acfc400175496e0", - "_name": "item_equipment_head_panama", + "59e770f986f7742cbe3164ef": { + "_id": "59e770f986f7742cbe3164ef", + "_name": "army_cap", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "Army cap", + "ShortName": "Army cap", + "Description": "Army cap", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_military/item_equipment_head_military.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5aa7e276e5b5b000171d0647": { + "_id": "5aa7e276e5b5b000171d0647", + "_name": "helmet_altyn", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "helmet_altyn", + "ShortName": "helmet_altyn", + "Description": "helmet_altyn", + "Weight": 4, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_altyn/item_equipment_helmet_altyn.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 1085, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_equipment", + "_id": "5aa7e325e5b5b0214e506fa1", + "_parent": "5aa7e276e5b5b000171d0647", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5aa7e373e5b5b000137b76f0" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "Helmet_top", + "_id": "657bc246bbd440df880b2ddf", + "_parent": "5aa7e276e5b5b000171d0647", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657bc06daab96fccee08be9b", + "Filter": [ + "657bc06daab96fccee08be9b" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657bc246bbd440df880b2de0", + "_parent": "5aa7e276e5b5b000171d0647", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657bc0d8a1c61ee0c303632f", + "Filter": [ + "657bc0d8a1c61ee0c303632f" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_ears", + "_id": "657bc246bbd440df880b2de1", + "_parent": "5aa7e276e5b5b000171d0647", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657bc107aab96fccee08be9f", + "Filter": [ + "657bc107aab96fccee08be9f" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 70 + }, + "DeafStrength": "High", + "BluntThroughput": 0.1665, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": -1, + "mousePenalty": -4, + "weaponErgonomicPenalty": -3 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "60b52e5bc7d8103275739d67": { + "_id": "60b52e5bc7d8103275739d67", + "_name": "item_equipment_head_panama_stichprofi", "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { "Name": "Panama", "ShortName": "Panama", "Description": "Panama", - "Weight": 0.1, + "Weight": 0.15, "BackgroundColor": "default", "Width": 2, "Height": 2, "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/head_panama/item_equipment_head_panama.bundle", + "path": "assets/content/items/equipment/head_panama_stichprofi/item_equipment_head_panama_stichprofi.bundle", "rcid": "" }, "UsePrefab": { @@ -271859,6 +273731,338 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, + "5ea05cf85ad9772e6624305d": { + "_id": "5ea05cf85ad9772e6624305d", + "_name": "item_equipment_helmet_hops_core_fast", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_hops_core_fast", + "ShortName": "item_equipment_helmet_hops_core_fast", + "Description": "item_equipment_helmet_hops_core_fast", + "Weight": 0.45, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_hops_core_fast/item_equipment_helmet_hops_core_fast.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 106, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_equipment_000", + "_id": "5ea05cf85ad9772e6624305f", + "_parent": "5ea05cf85ad9772e6624305d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a16badafcdbcb001865f72d", + "5a16b672fcdbcb001912fa83", + "5a16b7e1fcdbcb00165aa6c9" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_nvg", + "_id": "5ea05cf85ad9772e66243060", + "_parent": "5ea05cf85ad9772e6624305d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ea058e01dbce517f324b3e2", + "5c0558060db834001b735271", + "5a16b8a9fcdbcb00165aa6ca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5ea05cf85ad9772e66243061", + "_parent": "5ea05cf85ad9772e6624305d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a398b75c4a282000a51a266", + "5a398ab9c4a282000c5a9842" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_equipment_001", + "_id": "5ea05cf85ad9772e66243062", + "_parent": "5ea05cf85ad9772e6624305d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a16b9fffcdbcb0176308b34" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_equipment_002", + "_id": "5ea05cf85ad9772e66243063", + "_parent": "5ea05cf85ad9772e6624305d", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0e66e2d174af02a96252f4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "Helmet_top", + "_id": "657ba473f58ba5a62501079c", + "_parent": "5ea05cf85ad9772e6624305d", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657ba2eef58ba5a625010798", + "Filter": [ + "657ba2eef58ba5a625010798" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657ba473f58ba5a62501079d", + "_parent": "5ea05cf85ad9772e6624305d", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657ba34b9ba22f103e08139b", + "Filter": [ + "657ba34b9ba22f103e08139b" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 40 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5aa2ba46e5b5b000137b758d": { + "_id": "5aa2ba46e5b5b000137b758d", + "_name": "hats_UF_PRO", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "hats_UF_PRO", + "ShortName": "hats_UF_PRO", + "Description": "hats_UF_PRO", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_ufpro/item_equipment_head_ufpro.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, "5d96141523f0ea1b7f2aacab": { "_id": "5d96141523f0ea1b7f2aacab", "_name": "item_equipment_head_doorkicker", @@ -272141,367 +274345,6 @@ }, "_proto": "557ff21e4bdc2d89578b4586" }, - "5c06c6a80db834001b735491": { - "_id": "5c06c6a80db834001b735491", - "_name": "item_equipment_helmet_ssh-68", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_ssh-68", - "ShortName": "item_equipment_helmet_ssh-68", - "Description": "item_equipment_helmet_ssh-68\n", - "Weight": 1.5, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_ssh-68/item_equipment_helmet_ssh-68.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 106, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5aa2ba71e5b5b000137b758f", - "6033fa48ffd42c541047f728", - "5c165d832e2216398b5a7e36", - "5e4d34ca86f774264f758330", - "5f60cd6cf2bcbb675b00dac6" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Helmet_top", - "_id": "65711adb9eb8c145180dbb9a", - "_parent": "5c06c6a80db834001b735491", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6571199565daf6aa960c9b10", - "Filter": [ - "6571199565daf6aa960c9b10" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "65711adb9eb8c145180dbb9b", - "_parent": "5c06c6a80db834001b735491", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657119d49eb8c145180dbb95", - "Filter": [ - "657119d49eb8c145180dbb95" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_ears", - "_id": "65711adb9eb8c145180dbb9c", - "_parent": "5c06c6a80db834001b735491", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657119fea330b8c9060f7afc", - "Filter": [ - "657119fea330b8c9060f7afc" - ], - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 50 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1726, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -2, - "weaponErgonomicPenalty": -3 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5d5fca1ea4b93635fd598c07": { - "_id": "5d5fca1ea4b93635fd598c07", - "_name": "item_equipment_glasses_ess", - "_parent": "5448e5724bdc2ddf718b4568", - "_type": "Item", - "_props": { - "Name": "item_equipment_glasses_ess", - "ShortName": "item_equipment_glasses_ess", - "Description": "item_equipment_glasses_ess", - "Weight": 0.03, - "BackgroundColor": "default", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/glasses_ess/item_equipment_glasses_ess.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0.3, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "62a09e410b9d3c46de5b6e78": { - "_id": "62a09e410b9d3c46de5b6e78", - "_name": "item_equipment_glasses_johnb", - "_parent": "5448e5724bdc2ddf718b4568", - "_type": "Item", - "_props": { - "Name": "item_equipment_glasses_aviator", - "ShortName": "item_equipment_glasses_aviator", - "Description": "item_equipment_glasses_aviator", - "Weight": 0.06, - "BackgroundColor": "violet", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/glasses_johnb/item_equipment_glasses_johnb.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0.25, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, "5a7c4850e899ef00150be885": { "_id": "5a7c4850e899ef00150be885", "_name": "helmet_ratnik_6B47", @@ -273007,23 +274850,23 @@ }, "_proto": "557ff21e4bdc2d89578b4586" }, - "5aa7d03ae5b5b00016327db5": { - "_id": "5aa7d03ae5b5b00016327db5", - "_name": "helmet_un", + "5b4329075acfc400153b78ff": { + "_id": "5b4329075acfc400153b78ff", + "_name": "item_equipment_head_pompon", "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "helmet_un", - "ShortName": "helmet_un", - "Description": "helmet_un", - "Weight": 2.2, + "Name": "Knitcapred", + "ShortName": "Knitcapred", + "Description": "Knitcapred", + "Weight": 0.1, "BackgroundColor": "default", - "Width": 2, - "Height": 2, + "Width": 1, + "Height": 1, "StackMaxSize": 1, - "ItemSound": "gear_helmet", + "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/helmet_un/item_equipment_helmet_un.bundle", + "path": "assets/content/items/equipment/head_pompon/item_equipment_head_pompon.bundle", "rcid": "" }, "UsePrefab": { @@ -273040,11 +274883,11 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, + "LootExperience": 5, + "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 462, - "RepairSpeed": 10, + "RepairCost": 0, + "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -273068,527 +274911,48 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "helmet_top", - "_id": "654a9213801dd5f2770287f8", - "_parent": "5aa7d03ae5b5b00016327db5", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "654a90aff4f81a421b0a7c86", - "Filter": [ - "654a90aff4f81a421b0a7c86" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "helmet_back", - "_id": "654a923d801dd5f2770287f9", - "_parent": "5aa7d03ae5b5b00016327db5", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "654a91068e1ce698150fd1e2", - "Filter": [ - "654a91068e1ce698150fd1e2" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "helmet_ears", - "_id": "654a9255184eef9ec3093127", - "_parent": "5aa7d03ae5b5b00016327db5", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "654a9189bcc67a392b056c79", - "Filter": [ - "654a9189bcc67a392b056c79" - ], - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "BlocksEarpiece": false, "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, + "Durability": 100, + "MaxDurability": 100, "armorClass": "0", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", "HasHinge": false, - "MaterialType": "Helmet", + "MaterialType": "BodyArmor", "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 75 + "x": 0, + "y": 0, + "z": 80 }, - "DeafStrength": "Low", - "BluntThroughput": 0.2376, - "ArmorMaterial": "Aramid", + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", "BlindnessProtection": 0, - "ArmorType": "Light", + "ArmorType": "None", "armorColliders": [], "armorPlateColliders": [], "speedPenaltyPercent": 0, - "mousePenalty": -2, - "weaponErgonomicPenalty": -1 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5aa7e4a4e5b5b000137b76f2": { - "_id": "5aa7e4a4e5b5b000137b76f2", - "_name": "helmet_zsh_1-2m_v2", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "helmet_zsh_1-2m_v2", - "ShortName": "helmet_zsh_1-2m_v2", - "Description": "helmet_zsh_1-2m_v2", - "Weight": 3.7, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_zsh_2var/item_equipment_helmet_zsh_2var.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 446, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_equipment", - "_id": "5aa7e4a4e5b5b000137b76f4", - "_parent": "5aa7e4a4e5b5b000137b76f2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5aa7e3abe5b5b000171d064d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "Helmet_top", - "_id": "657f9547ada5fadd1f07a582", - "_parent": "5aa7e4a4e5b5b000137b76f2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657f925dada5fadd1f07a57a", - "Filter": [ - "657f925dada5fadd1f07a57a" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "657f9547ada5fadd1f07a583", - "_parent": "5aa7e4a4e5b5b000137b76f2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657f92acada5fadd1f07a57e", - "Filter": [ - "657f92acada5fadd1f07a57e" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_ears", - "_id": "657f9547ada5fadd1f07a584", - "_parent": "5aa7e4a4e5b5b000137b76f2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657f92e7f4c82973640b2354", - "Filter": [ - "657f92e7f4c82973640b2354" - ], - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.7, - "y": 0.3, - "z": 75 - }, - "DeafStrength": "High", - "BluntThroughput": 0.1548, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -2, + "mousePenalty": 0, "weaponErgonomicPenalty": 0 }, - "_proto": "5645bc214bdc2d363b8b4571" + "_proto": "572b7f1624597762ae139822" }, - "5aa7cfc0e5b5b00015693143": { - "_id": "5aa7cfc0e5b5b00015693143", - "_name": "helmet_6B47_cover", + "60361b5a9a15b10d96792291": { + "_id": "60361b5a9a15b10d96792291", + "_name": "item_equipment_head_military2_ucp", "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "helmet_6B47_cover", - "ShortName": "helmet_6B47_cover", - "Description": "helmet_6B47_cover", - "Weight": 1.3, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_6b47covered/item_equipment_helmet_6b47covered.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 478, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_nvg", - "_id": "5aa7cfc0e5b5b00015693145", - "_parent": "5aa7cfc0e5b5b00015693143", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0558060db834001b735271", - "5a16b8a9fcdbcb00165aa6ca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_equipment", - "_id": "5aa7cfc0e5b5b00015693146", - "_parent": "5aa7cfc0e5b5b00015693143", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a800961159bd4315e3a1657", - "57fd23e32459772d0805bcf1", - "544909bb4bdc2d6f028b4577", - "5d10b49bd7ad1a1a560708b0", - "5c06595c0db834001a66af6c", - "626becf9582c3e319310b837", - "6272370ee4013c5d7e31f418", - "6272379924e29f06af4d5ecb", - "5d2369418abbc306c62e0c80", - "5b07dd285acfc4001754240d", - "56def37dd2720bec348b456a", - "5a7b483fe899ef0016170d15", - "5a5f1ce64f39f90b401987bc", - "560d657b4bdc2da74d8b4572", - "5b3a337e5acfc4704b4a19a0", - "5c5952732e2216398b5abda2", - "6267c6396b642f77f56f5c1c", - "57d17e212459775a1179a0f5" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "Helmet_top", - "_id": "657bad96cfcf63c951052db0", - "_parent": "5aa7cfc0e5b5b00015693143", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657baaf0b7e9ca9a02045c02", - "Filter": [ - "657baaf0b7e9ca9a02045c02" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "657bad96cfcf63c951052db1", - "_parent": "5aa7cfc0e5b5b00015693143", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657bab6ec6f689d3a205b85f", - "Filter": [ - "657bab6ec6f689d3a205b85f" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_ears", - "_id": "657bad96cfcf63c951052db2", - "_parent": "5aa7cfc0e5b5b00015693143", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657babc6f58ba5a6250107a2", - "Filter": [ - "657babc6f58ba5a6250107a2" - ], - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 75 - }, - "DeafStrength": "Low", - "BluntThroughput": 0.2376, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5f60e784f2bcbb675b00dac7": { - "_id": "5f60e784f2bcbb675b00dac7", - "_name": "item_equipment_head_beret_od", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "item_equipment_head_beret_blk", - "ShortName": "item_equipment_head_beret_blk", - "Description": "item_equipment_head_beret_blk", + "Name": "Army cap", + "ShortName": "Army cap", + "Description": "Army cap", "Weight": 0.1, "BackgroundColor": "default", "Width": 1, @@ -273596,7 +274960,7 @@ "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/head_beret/item_equipment_head_beret_od.bundle", + "path": "assets/content/items/equipment/head_military2/item_equipment_head_military2_ucp.bundle", "rcid": "" }, "UsePrefab": { @@ -273674,355 +275038,23 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, - "5ea05cf85ad9772e6624305d": { - "_id": "5ea05cf85ad9772e6624305d", - "_name": "item_equipment_helmet_hops_core_fast", - "_parent": "5a341c4086f77401f2541505", + "5aa2b986e5b5b00014028f4c": { + "_id": "5aa2b986e5b5b00014028f4c", + "_name": "glasses_Duduma", + "_parent": "5448e5724bdc2ddf718b4568", "_type": "Item", "_props": { - "Name": "item_equipment_helmet_hops_core_fast", - "ShortName": "item_equipment_helmet_hops_core_fast", - "Description": "item_equipment_helmet_hops_core_fast", - "Weight": 0.45, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_hops_core_fast/item_equipment_helmet_hops_core_fast.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 106, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_equipment_000", - "_id": "5ea05cf85ad9772e6624305f", - "_parent": "5ea05cf85ad9772e6624305d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a16badafcdbcb001865f72d", - "5a16b672fcdbcb001912fa83", - "5a16b7e1fcdbcb00165aa6c9" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_nvg", - "_id": "5ea05cf85ad9772e66243060", - "_parent": "5ea05cf85ad9772e6624305d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ea058e01dbce517f324b3e2", - "5c0558060db834001b735271", - "5a16b8a9fcdbcb00165aa6ca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5ea05cf85ad9772e66243061", - "_parent": "5ea05cf85ad9772e6624305d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a398b75c4a282000a51a266", - "5a398ab9c4a282000c5a9842" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_equipment_001", - "_id": "5ea05cf85ad9772e66243062", - "_parent": "5ea05cf85ad9772e6624305d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a16b9fffcdbcb0176308b34" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_equipment_002", - "_id": "5ea05cf85ad9772e66243063", - "_parent": "5ea05cf85ad9772e6624305d", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0e66e2d174af02a96252f4" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "Helmet_top", - "_id": "657ba473f58ba5a62501079c", - "_parent": "5ea05cf85ad9772e6624305d", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657ba2eef58ba5a625010798", - "Filter": [ - "657ba2eef58ba5a625010798" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "657ba473f58ba5a62501079d", - "_parent": "5ea05cf85ad9772e6624305d", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657ba34b9ba22f103e08139b", - "Filter": [ - "657ba34b9ba22f103e08139b" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 40 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "60b52e5bc7d8103275739d67": { - "_id": "60b52e5bc7d8103275739d67", - "_name": "item_equipment_head_panama_stichprofi", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "Panama", - "ShortName": "Panama", - "Description": "Panama", - "Weight": 0.15, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_panama_stichprofi/item_equipment_head_panama_stichprofi.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5ca2113f86f7740b2547e1d2": { - "_id": "5ca2113f86f7740b2547e1d2", - "_name": "item_equipment_helmet_vulkan_shield", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "helmet_altyn_face_shield", - "ShortName": "helmet_altyn_face_shield", - "Description": "helmet_altyn_face_shield", - "Weight": 1.8, + "Name": "glasses_Duduma", + "ShortName": "glasses_Duduma", + "Description": "glasses_Duduma", + "Weight": 0.05, "BackgroundColor": "default", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "gear_goggles", "Prefab": { - "path": "assets/content/items/equipment/helmet_vulkan_5_shield/item_equipment_helmet_vulkan_5_shield.bundle", + "path": "assets/content/items/equipment/glasses_sport/item_equipment_glasses_sport.bundle", "rcid": "" }, "UsePrefab": { @@ -274039,105 +275071,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 106, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 85, - "MaxDurability": 85, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": true, - "FaceShieldMask": "NoMask", - "HasHinge": true, - "MaterialType": "GlassVisor", - "RicochetParams": { - "x": 0.7, - "y": 0.4, - "z": 55 - }, - "DeafStrength": "None", - "BluntThroughput": 0.0792, - "ArmorMaterial": "Glass", - "BlindnessProtection": 0.1, - "ArmorType": "None", - "armorColliders": [ - "HeadCommon", - "Eyes", - "Jaw" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -9, - "weaponErgonomicPenalty": -5 - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "59e7708286f7742cbd762753": { - "_id": "59e7708286f7742cbd762753", - "_name": "ushanka", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "Ushanka", - "ShortName": "Ushanka", - "Description": "Ushanka", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_ushanka/item_equipment_head_ushanka.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, + "LootExperience": 10, "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, @@ -274172,8 +275106,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, + "Durability": 0, + "MaxDurability": 0, "armorClass": "0", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -274188,7 +275122,7 @@ "DeafStrength": "None", "BluntThroughput": 0, "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, + "BlindnessProtection": 0.15, "ArmorType": "None", "armorColliders": [], "armorPlateColliders": [], @@ -274196,540 +275130,25 @@ "mousePenalty": 0, "weaponErgonomicPenalty": 0 }, - "_proto": "5645bc214bdc2d363b8b4571" + "_proto": "557ff21e4bdc2d89578b4586" }, - "5b432d215acfc4771e1c6624": { - "_id": "5b432d215acfc4771e1c6624", - "_name": "item_equipment_helmet_LSHZ", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "lzsh", - "ShortName": "lzsh", - "Description": "lzsh", - "Weight": 0.95, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_lshz/item_equipment_helmet_lshz.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 355, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_equipment_000", - "_id": "5b4747f586f77411870d7074", - "_parent": "5b432d215acfc4771e1c6624", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a16badafcdbcb001865f72d", - "5a16b672fcdbcb001912fa83", - "5a16b7e1fcdbcb00165aa6c9" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_nvg", - "_id": "5b47480586f7741ee72661ba", - "_parent": "5b432d215acfc4771e1c6624", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ea058e01dbce517f324b3e2", - "5c0558060db834001b735271", - "5a16b8a9fcdbcb00165aa6ca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5b47481486f7741eef54418c", - "_parent": "5b432d215acfc4771e1c6624", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a398b75c4a282000a51a266", - "5a398ab9c4a282000c5a9842" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_equipment_001", - "_id": "5b47482886f7741eef544193", - "_parent": "5b432d215acfc4771e1c6624", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a16b9fffcdbcb0176308b34" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "Helmet_top", - "_id": "657bba9e65915aee8a045837", - "_parent": "5b432d215acfc4771e1c6624", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657bb92fa1c61ee0c303631f", - "Filter": [ - "657bb92fa1c61ee0c303631f" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "657bba9e65915aee8a045838", - "_parent": "5b432d215acfc4771e1c6624", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657bb99db30eca976305117f", - "Filter": [ - "657bb99db30eca976305117f" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2376, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5c0e53c886f7747fa54205c7": { - "_id": "5c0e53c886f7747fa54205c7", - "_name": "item_equipment_armor_6b13_digital", + "64abd93857958b4249003418": { + "_id": "64abd93857958b4249003418", + "_name": "item_equipment_armor_otv_ucp", "_parent": "5448e54d4bdc2dcc718b4568", "_type": "Item", "_props": { "Name": "gjel", "ShortName": "gjel", "Description": "gjel", - "Weight": 2.8, - "BackgroundColor": "blue", - "Width": 3, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_6b13/item_equipment_armor_6b13_digital.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 319, - "RepairSpeed": 8, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "front_plate", - "_id": "654a715a60c44e441f07ee11", - "_parent": "5c0e53c886f7747fa54205c7", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656f603f94b480b8a500c0d6", - "Filter": [ - "656f603f94b480b8a500c0d6", - "656f611f94b480b8a500c0db", - "656f57dc27aed95beb08f628", - "656f63c027aed95beb08f62c" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Korund_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "back_plate", - "_id": "654a71a0496a1a62950660c7", - "_parent": "5c0e53c886f7747fa54205c7", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656efd66034e8e01c407f35c", - "Filter": [ - "654a4a964b446df1ad03f192", - "656efaf54772930db4031ff5", - "656efd66034e8e01c407f35c" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_6B13_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_front", - "_id": "654a73f384066949090bbfec", - "_parent": "5c0e53c886f7747fa54205c7", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "654a8b0b0337d53f9102c2ae", - "Filter": [ - "654a8b0b0337d53f9102c2ae" - ], - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_back", - "_id": "654a750d84066949090bbfed", - "_parent": "5c0e53c886f7747fa54205c7", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "654a8976f414fcea4004d78b", - "Filter": [ - "654a8976f414fcea4004d78b" - ], - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_left", - "_id": "654a7556496a1a62950660cc", - "_parent": "5c0e53c886f7747fa54205c7", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "654a8b3df414fcea4004d78f", - "Filter": [ - "654a8b3df414fcea4004d78f" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "654a7578496a1a62950660cd", - "_parent": "5c0e53c886f7747fa54205c7", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "654a8b80f414fcea4004d797", - "Filter": [ - "654a8b80f414fcea4004d797" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Collar", - "_id": "65707c02cb6125ce450fab38", - "_parent": "5c0e53c886f7747fa54205c7", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "654a8ae00337d53f9102c2aa", - "Filter": [ - "654a8ae00337d53f9102c2aa" - ], - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Groin", - "_id": "65707c41beb887cba9033458", - "_parent": "5c0e53c886f7747fa54205c7", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "654a8bc5f414fcea4004d79b", - "Filter": [ - "654a8bc5f414fcea4004d79b" - ], - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.32, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": -1, - "mousePenalty": 0, - "weaponErgonomicPenalty": -1 - }, - "_proto": "545cdb794bdc2d3a198b456a" - }, - "5648a7494bdc2d9d488b4583": { - "_id": "5648a7494bdc2d9d488b4583", - "_name": "notHeavy", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "PACA", - "ShortName": "PACA", - "Description": "PACA", - "Weight": 3.5, + "Weight": 3.8, "BackgroundColor": "blue", "Width": 3, "Height": 3, "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_paca/item_equipment_armor_paca.bundle", + "path": "assets/content/items/equipment/armor_otv_ucp/item_equipment_armor_otv_ucp.bundle", "rcid": "" }, "UsePrefab": { @@ -274749,200 +275168,7 @@ "LootExperience": 45, "ExamineExperience": 2, "HideEntrails": false, - "RepairCost": 106, - "RepairSpeed": 8, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Soft_armor_front", - "_id": "65539be98dd65babad098050", - "_parent": "5648a7494bdc2d9d488b4583", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65703d866584602f7d057a8a", - "Filter": [ - "65703d866584602f7d057a8a" - ], - "armorColliders": [ - "RibcageLow", - "RibcageUp" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "657040eced97862163088e30", - "_parent": "5648a7494bdc2d9d488b4583", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65703fa06584602f7d057a8e", - "Filter": [ - "65703fa06584602f7d057a8e" - ], - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_left", - "_id": "657041154e67e8ec7a0d266f", - "_parent": "5648a7494bdc2d9d488b4583", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65703fe46a912c8b5c03468b", - "Filter": [ - "65703fe46a912c8b5c03468b" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "6570413e6584602f7d057ace", - "_parent": "5648a7494bdc2d9d488b4583", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657040374e67e8ec7a0d261c", - "Filter": [ - "657040374e67e8ec7a0d261c" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.3564, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": -1, - "mousePenalty": 0, - "weaponErgonomicPenalty": -1 - }, - "_proto": "545cdb794bdc2d3a198b456a" - }, - "63737f448b28897f2802b874": { - "_id": "63737f448b28897f2802b874", - "_name": "item_equipment_armor_hexatac", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "gjel", - "ShortName": "gjel", - "Description": "gjel", - "Weight": 0.47, - "BackgroundColor": "blue", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_hexatac/item_equipment_armor_hexatac.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 1063, + "RepairCost": 112, "RepairSpeed": 8, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -274970,24 +275196,24 @@ "Slots": [ { "_name": "Front_plate", - "_id": "6575b9fc52b7f8c76a05edca", - "_parent": "63737f448b28897f2802b874", + "_id": "6570f5ed74d84423df065f12", + "_parent": "64abd93857958b4249003418", "_props": { "filters": [ { "locked": false, - "Plate": "656fae5f7c2d57afe200c0d7", + "Plate": "656fb0bd7c2d57afe200c0dc", "Filter": [ "656f9d5900d62bcd2e02407c", "656fa8d700d62bcd2e024084", "656fa99800d62bcd2e024088", "656fae5f7c2d57afe200c0d7", "656faf0ca0dce000a2020f77", - "656fafe3498d1b7e3e071da4", "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", "656fa76500d62bcd2e024080", - "656fad8c498d1b7e3e071da0", "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", "656fa61e94b480b8a500c0e8", "656fb21fa0dce000a2020f7c", "656fac30c6baea13cd07e10c", @@ -274995,13 +275221,15 @@ "656f9fa0498d1b7e3e071d98", "656fa53d94b480b8a500c0e4", "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" + "64afdcb83efdfea28601d041", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38" ], "armorColliders": [], "armorPlateColliders": [ "Plate_Granit_SAPI_chest" ], - "bluntDamageReduceFromSoftArmor": false + "bluntDamageReduceFromSoftArmor": true } ] }, @@ -275011,44 +275239,144 @@ }, { "_name": "Back_plate", - "_id": "6575b9fc52b7f8c76a05edcb", - "_parent": "63737f448b28897f2802b874", + "_id": "6570f5ed74d84423df065f13", + "_parent": "64abd93857958b4249003418", "_props": { "filters": [ { "locked": false, - "Plate": "656fae5f7c2d57afe200c0d7", + "Plate": "656fb0bd7c2d57afe200c0dc", "Filter": [ "656f9d5900d62bcd2e02407c", "656fa8d700d62bcd2e024084", "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", + "656fae5f7c2d57afe200c0d7", "656fafe3498d1b7e3e071da4", + "656fa0fb498d1b7e3e071d9c", "656fa25e94b480b8a500c0e0", "656fa76500d62bcd2e024080", "656fad8c498d1b7e3e071da0", "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", "656fb0bd7c2d57afe200c0dc", "656f9fa0498d1b7e3e071d98", "656fa53d94b480b8a500c0e4", + "656fac30c6baea13cd07e10c", + "656fb21fa0dce000a2020f7c", "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" + "64afdcb83efdfea28601d041", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38" ], "armorColliders": [], "armorPlateColliders": [ "Plate_Granit_SAPI_back" ], - "bluntDamageReduceFromSoftArmor": false + "bluntDamageReduceFromSoftArmor": true } ] }, "_required": false, "_mergeSlotWithChildren": true, "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_front", + "_id": "6570f5ed74d84423df065f16", + "_parent": "64abd93857958b4249003418", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6570f30b0921c914bf07964c", + "Filter": [ + "6570f30b0921c914bf07964c" + ], + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "6570f5ed74d84423df065f17", + "_parent": "64abd93857958b4249003418", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6570f35cd67d0309980a7acb", + "Filter": [ + "6570f35cd67d0309980a7acb" + ], + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_left", + "_id": "6570f60fd67d0309980a7ad4", + "_parent": "64abd93857958b4249003418", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6570f3890b4ae5847f060dad", + "Filter": [ + "6570f3890b4ae5847f060dad" + ], + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_right", + "_id": "6570f62dd67d0309980a7ad5", + "_parent": "64abd93857958b4249003418", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6570f3bb0b4ae5847f060db2", + "Filter": [ + "6570f3bb0b4ae5847f060db2" + ], + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" } ], "CanPutIntoDuringTheRaid": true, @@ -275071,1053 +275399,18 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.2259, + "BluntThroughput": 0.33, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [], "armorPlateColliders": [], - "speedPenaltyPercent": 0, + "speedPenaltyPercent": -2, "mousePenalty": -1, "weaponErgonomicPenalty": 0 }, "_proto": "545cdb794bdc2d3a198b456a" }, - "60bf74184a63fc79b60c57f6": { - "_id": "60bf74184a63fc79b60c57f6", - "_name": "item_equipment_head_bomber", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "Knitcap", - "ShortName": "Knitcap", - "Description": "Knitcap", - "Weight": 0.1, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/head_bomber/item_equipment_head_bomber.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 50, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": true, - "DiscardLimit": 1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 150, - "MaxDurability": 150, - "armorClass": "1", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 1 - }, - "DeafStrength": "None", - "BluntThroughput": 0.216, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7f1624597762ae139822" - }, - "5645bc214bdc2d363b8b4571": { - "_id": "5645bc214bdc2d363b8b4571", - "_name": "helmet", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "Kiver-M Helmet", - "ShortName": "Kiver-M", - "Description": "Ballistic helmet", - "Weight": 1.2, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_kiverm/item_equipment_helmet_kiverm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 478, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_equipment", - "_id": "5b46244386f7741a6a537e22", - "_parent": "5645bc214bdc2d363b8b4571", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5b46238386f7741a693bcf9c" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "Helmet_top", - "_id": "657bb6c9a1c61ee0c3036317", - "_parent": "5645bc214bdc2d363b8b4571", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657bae18b7e9ca9a02045c0a", - "Filter": [ - "657bae18b7e9ca9a02045c0a" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "657bb6c9a1c61ee0c3036318", - "_parent": "5645bc214bdc2d363b8b4571", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657baeaacfcf63c951052db3", - "Filter": [ - "657baeaacfcf63c951052db3" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_ears", - "_id": "657bb6c9a1c61ee0c3036319", - "_parent": "5645bc214bdc2d363b8b4571", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657baecbc6f689d3a205b863", - "Filter": [ - "657baecbc6f689d3a205b863" - ], - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 70 - }, - "DeafStrength": "High", - "BluntThroughput": 0.218, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1 - } - }, - "5bd073c986f7747f627e796c": { - "_id": "5bd073c986f7747f627e796c", - "_name": "item_equipment_head_kotton", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "item_equipment_head_kotton", - "ShortName": "item_equipment_head_kotton", - "Description": "item_equipment_head_kotton", - "Weight": 0.2, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_kotton/item_equipment_head_kotton.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 50, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": true, - "DiscardLimit": 1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": true, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "5aa2a7e8e5b5b00016327c16": { - "_id": "5aa2a7e8e5b5b00016327c16", - "_name": "cap_USEC", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "cap_USEC", - "ShortName": "cap_USEC", - "Description": "cap_USEC", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_usec/item_equipment_head_usec_sand.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "572b7d8524597762b472f9d1": { - "_id": "572b7d8524597762b472f9d1", - "_name": "cap", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "Cap", - "ShortName": "Cap", - "Description": "Cap", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/head_capsuperman/item_equipment_head_capsuperman.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5aa2ba19e5b5b00014028f4e": { - "_id": "5aa2ba19e5b5b00014028f4e", - "_name": "hats_fleece", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "hats_fleece", - "ShortName": "hats_fleece", - "Description": "hats_fleece", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_fleece/item_equipment_head_fleece.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5ca20ee186f774799474abc2": { - "_id": "5ca20ee186f774799474abc2", - "_name": "item_equipment_helmet_vulkan5", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "helmet_altyn", - "ShortName": "helmet_altyn", - "Description": "helmet_altyn", - "Weight": 4.5, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_vulkan_5/item_equipment_helmet_vulkan_5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 1646, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_equipment", - "_id": "5ca20ee186f774799474abc4", - "_parent": "5ca20ee186f774799474abc2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ca2113f86f7740b2547e1d2" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "Helmet_top", - "_id": "657bbfd8bbd440df880b2ddc", - "_parent": "5ca20ee186f774799474abc2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657bbe73a1c61ee0c303632b", - "Filter": [ - "657bbe73a1c61ee0c303632b" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "657bbfd8bbd440df880b2ddd", - "_parent": "5ca20ee186f774799474abc2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657bbed0aab96fccee08be96", - "Filter": [ - "657bbed0aab96fccee08be96" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_ears", - "_id": "657bbfd8bbd440df880b2dde", - "_parent": "5ca20ee186f774799474abc2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657bbefeb30eca9763051189", - "Filter": [ - "657bbefeb30eca9763051189" - ], - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 50 - }, - "DeafStrength": "High", - "BluntThroughput": 0.1314, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": -1, - "mousePenalty": -8, - "weaponErgonomicPenalty": -6 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5c08f87c0db8340019124324": { - "_id": "5c08f87c0db8340019124324", - "_name": "item_equipment_helmet_shpm", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_shpm", - "ShortName": "item_equipment_helmet_shpm", - "Description": "item_equipment_helmet_shpm", - "Weight": 1.5, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_shpm/item_equipment_helmet_shpm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 116, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Helmet_top", - "_id": "657ba9d2c6f689d3a205b85c", - "_parent": "5c08f87c0db8340019124324", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657ba85ecfcf63c951052da7", - "Filter": [ - "657ba85ecfcf63c951052da7" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "657ba9d2c6f689d3a205b85d", - "_parent": "5c08f87c0db8340019124324", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657ba8bccfcf63c951052dab", - "Filter": [ - "657ba8bccfcf63c951052dab" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "helmet_eyes", - "_id": "658190129ce197f8b505f18d", - "_parent": "5c08f87c0db8340019124324", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65818e4e566d2de69901b1b1", - "Filter": [ - "65818e4e566d2de69901b1b1" - ], - "armorColliders": [ - "HeadCommon", - "Eyes", - "Jaw", - "NeckFront" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_ears", - "_id": "658190129ce197f8b505f18e", - "_parent": "5c08f87c0db8340019124324", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657ba8eab7e9ca9a02045bfd", - "Filter": [ - "657ba8eab7e9ca9a02045bfd" - ], - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.2, - "y": 0.01, - "z": 65 - }, - "DeafStrength": "High", - "BluntThroughput": 0.225, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -3, - "weaponErgonomicPenalty": -2 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, "5d5e7d28a4b936645d161203": { "_id": "5d5e7d28a4b936645d161203", "_name": "helmet_mich2001_od", @@ -277008,965 +276301,23 @@ }, "_proto": "557ff21e4bdc2d89578b4586" }, - "59e7711e86f7746cae05fbe1": { - "_id": "59e7711e86f7746cae05fbe1", - "_name": "helmet_k1c", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "Helmet K1C", - "ShortName": "Helmet K1C", - "Description": "Helmet K1C", - "Weight": 1.9, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_k1c/item_equipment_helmet_k1c.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 133, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_equipment", - "_id": "5ac4c4ca5acfc43f6724894b", - "_parent": "59e7711e86f7746cae05fbe1", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5ac4c50d5acfc40019262e87" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "Helmet_top", - "_id": "657ba67a23918923cb0df570", - "_parent": "59e7711e86f7746cae05fbe1", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657ba50c23918923cb0df56c", - "Filter": [ - "657ba50c23918923cb0df56c" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "657ba67a23918923cb0df571", - "_parent": "59e7711e86f7746cae05fbe1", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657ba5439ba22f103e08139f", - "Filter": [ - "657ba5439ba22f103e08139f" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_ears", - "_id": "657ba67a23918923cb0df572", - "_parent": "59e7711e86f7746cae05fbe1", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657ba57af58ba5a62501079e", - "Filter": [ - "657ba57af58ba5a62501079e" - ], - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.2, - "y": 0.01, - "z": 90 - }, - "DeafStrength": "High", - "BluntThroughput": 0.2376, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -2, - "weaponErgonomicPenalty": -2 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5e01ef6886f77445f643baa4": { - "_id": "5e01ef6886f77445f643baa4", - "_name": "item_equipment_helmet_team_wendy_exfil_coyote", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_team_wendy_exfil", - "ShortName": "item_equipment_helmet_team_wendy_exfil", - "Description": "item_equipment_helmet_team_wendy_exfil", - "Weight": 1.18, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_team_wendy_exfil/item_equipment_helmet_team_wendy_exfil_coyote.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 921, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_equipment_000", - "_id": "5e01ef6886f77445f643baa6", - "_parent": "5e01ef6886f77445f643baa4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5e00cfa786f77469dc6e5685", - "5e01f31d86f77465cf261343" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_nvg", - "_id": "5e01ef6886f77445f643baa7", - "_parent": "5e01ef6886f77445f643baa4", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0558060db834001b735271", - "5a16b8a9fcdbcb00165aa6ca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "helmet_top", - "_id": "6552036b3b23749ada09a769", - "_parent": "5e01ef6886f77445f643baa4", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6551fec55d0cf82e51014288", - "Filter": [ - "6551fec55d0cf82e51014288" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "helmet_back", - "_id": "6552036b3b23749ada09a76a", - "_parent": "5e01ef6886f77445f643baa4", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "655200ba0ef76cf7be09d528", - "Filter": [ - "655200ba0ef76cf7be09d528" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1548, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "618aef6d0a5a59657e5f55ee": { - "_id": "618aef6d0a5a59657e5f55ee", - "_name": "item_equipment_head_panama_jackpyke", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "hats_skihat", - "ShortName": "hats_skihat", - "Description": "hats_skihat", - "Weight": 0.18, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_panama_jackpyke/item_equipment_head_panama_jackpyke.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": true, - "BlocksHeadwear": true, - "BlocksFaceCover": true, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5e00c1ad86f774747333222c": { - "_id": "5e00c1ad86f774747333222c", - "_name": "item_equipment_helmet_team_wendy_exfil", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_team_wendy_exfil", - "ShortName": "item_equipment_helmet_team_wendy_exfil", - "Description": "item_equipment_helmet_team_wendy_exfil", - "Weight": 1.18, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_team_wendy_exfil/item_equipment_helmet_team_wendy_exfil_black.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 921, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_equipment_000", - "_id": "5e00c1ad86f774747333222e", - "_parent": "5e00c1ad86f774747333222c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5e00cfa786f77469dc6e5685", - "5e01f31d86f77465cf261343" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_nvg", - "_id": "5e00c1ad86f774747333222f", - "_parent": "5e00c1ad86f774747333222c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0558060db834001b735271", - "5a16b8a9fcdbcb00165aa6ca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_equipment_001", - "_id": "5e00c1ad86f7747473332231", - "_parent": "5e00c1ad86f774747333222c", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5e00cdd986f7747473332240", - "5e01f37686f774773c6f6c15" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "helmet_top", - "_id": "6551fe9fffab45c12d0fc4d8", - "_parent": "5e00c1ad86f774747333222c", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6551fec55d0cf82e51014288", - "Filter": [ - "6551fec55d0cf82e51014288" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "helmet_back", - "_id": "655201ff3b23749ada09a768", - "_parent": "5e00c1ad86f774747333222c", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "655200ba0ef76cf7be09d528", - "Filter": [ - "655200ba0ef76cf7be09d528" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1548, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5b432be65acfc433000ed01f": { - "_id": "5b432be65acfc433000ed01f", - "_name": "item_equipment_glasses_6B34", - "_parent": "5448e5724bdc2ddf718b4568", - "_type": "Item", - "_props": { - "Name": "Tactical glass 6b", - "ShortName": "Tactical glass 6b", - "Description": "Tactical glass 6b", - "Weight": 0.12, - "BackgroundColor": "default", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/glasses_6b34/item_equipment_glasses_6b34.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0.1, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "60361b5a9a15b10d96792291": { - "_id": "60361b5a9a15b10d96792291", - "_name": "item_equipment_head_military2_ucp", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "Army cap", - "ShortName": "Army cap", - "Description": "Army cap", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_military2/item_equipment_head_military2_ucp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5aa2b986e5b5b00014028f4c": { - "_id": "5aa2b986e5b5b00014028f4c", - "_name": "glasses_Duduma", - "_parent": "5448e5724bdc2ddf718b4568", - "_type": "Item", - "_props": { - "Name": "glasses_Duduma", - "ShortName": "glasses_Duduma", - "Description": "glasses_Duduma", - "Weight": 0.05, - "BackgroundColor": "default", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/glasses_sport/item_equipment_glasses_sport.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0.15, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "64be79c487d1510151095552": { - "_id": "64be79c487d1510151095552", - "_name": "item_equipment_armor_kora_kulon_black", + "5ab8e79e86f7742d8b372e78": { + "_id": "5ab8e79e86f7742d8b372e78", + "_name": "armor_gjel", "_parent": "5448e54d4bdc2dcc718b4568", "_type": "Item", "_props": { - "Name": "kirasa", - "ShortName": "kirasa", - "Description": "kirasa", - "Weight": 11.1, + "Name": "gjel", + "ShortName": "gjel", + "Description": "gjel", + "Weight": 2.95, "BackgroundColor": "blue", "Width": 3, "Height": 3, "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_kora_kulon/item_equipment_armor_kora_kulon_black.bundle", + "path": "assets/content/items/equipment/armor_gjel/item_equipment_armor_gjel.bundle", "rcid": "" }, "UsePrefab": { @@ -277986,7 +276337,7 @@ "LootExperience": 45, "ExamineExperience": 2, "HideEntrails": false, - "RepairCost": 143, + "RepairCost": 478, "RepairSpeed": 8, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -278012,17 +276363,139 @@ "IsUnremovable": false, "Grids": [], "Slots": [ + { + "_name": "Front_plate", + "_id": "657329b58c1cc6dcd9098b76", + "_parent": "5ab8e79e86f7742d8b372e78", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656f611f94b480b8a500c0db", + "Filter": [ + "656f611f94b480b8a500c0db", + "656f603f94b480b8a500c0d6", + "656f57dc27aed95beb08f628", + "656f63c027aed95beb08f62c" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Korund_chest" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "657329b58c1cc6dcd9098b77", + "_parent": "5ab8e79e86f7742d8b372e78", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "65573fa5655447403702a816", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Left_side_plate", + "_id": "657329b58c1cc6dcd9098b78", + "_parent": "5ab8e79e86f7742d8b372e78", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "", + "Filter": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_left_high" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Right_side_plate", + "_id": "657329b58c1cc6dcd9098b79", + "_parent": "5ab8e79e86f7742d8b372e78", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "", + "Filter": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_right_high" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, { "_name": "Soft_armor_front", - "_id": "65704cb64f41c410d004edb9", - "_parent": "64be79c487d1510151095552", + "_id": "657329b58c1cc6dcd9098b7a", + "_parent": "5ab8e79e86f7742d8b372e78", "_props": { "filters": [ { "locked": true, - "Plate": "6570495b45d573133d0d6adb", + "Plate": "65732688d9d89ff7ac0d9c4c", "Filter": [ - "6570495b45d573133d0d6adb" + "65732688d9d89ff7ac0d9c4c" ], "armorColliders": [ "RibcageLow", @@ -278039,15 +276512,15 @@ }, { "_name": "Soft_armor_back", - "_id": "65704cb64f41c410d004edba", - "_parent": "64be79c487d1510151095552", + "_id": "657329b58c1cc6dcd9098b7b", + "_parent": "5ab8e79e86f7742d8b372e78", "_props": { "filters": [ { "locked": true, - "Plate": "657049d23425b19bbc0502f0", + "Plate": "657326978c1cc6dcd9098b56", "Filter": [ - "657049d23425b19bbc0502f0" + "657326978c1cc6dcd9098b56" ], "armorColliders": [ "SpineTop", @@ -278061,6 +276534,79 @@ "_required": true, "_mergeSlotWithChildren": true, "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_left", + "_id": "657329b58c1cc6dcd9098b7c", + "_parent": "5ab8e79e86f7742d8b372e78", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657326a28c1cc6dcd9098b5a", + "Filter": [ + "657326a28c1cc6dcd9098b5a" + ], + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_right", + "_id": "657329b58c1cc6dcd9098b7d", + "_parent": "5ab8e79e86f7742d8b372e78", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657326b08c1cc6dcd9098b5e", + "Filter": [ + "657326b08c1cc6dcd9098b5e" + ], + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Collar", + "_id": "657329b58c1cc6dcd9098b7e", + "_parent": "5ab8e79e86f7742d8b372e78", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657326bc5d3a3129fb05f36b", + "Filter": [ + "657326bc5d3a3129fb05f36b" + ], + "armorColliders": [ + "NeckFront", + "NeckBack" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" } ], "CanPutIntoDuringTheRaid": true, @@ -278083,15 +276629,15 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.298, - "ArmorMaterial": "ArmoredSteel", + "BluntThroughput": 0.1431, + "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [], "armorPlateColliders": [], - "speedPenaltyPercent": -1, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1 + "speedPenaltyPercent": -1.5, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 }, "_proto": "545cdb794bdc2d3a198b456a" }, @@ -278189,6 +276735,119 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, + "5c066ef40db834001966a595": { + "_id": "5c066ef40db834001966a595", + "_name": "helmet_armasight_nvg_googles_mask", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "helmet_armasight_nvg_googles_mask", + "ShortName": "helmet_armasight_nvg_googles_mask", + "Description": "helmet_armasight_nvg_googles_mask", + "Weight": 0.4, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_armasight_nvg_googles_mask/helmet_armasight_nvg_googles_mask.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 50, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_nvg", + "_id": "5c066ef40db834001966a597", + "_parent": "5c066ef40db834001966a595", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c066e3a0db834001b7353f0" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, "5f60b34a41e30a4ab12a6947": { "_id": "5f60b34a41e30a4ab12a6947", "_name": "item_equipment_helmet_galvion_caiman", @@ -278407,119 +277066,6 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, - "5c066ef40db834001966a595": { - "_id": "5c066ef40db834001966a595", - "_name": "helmet_armasight_nvg_googles_mask", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "helmet_armasight_nvg_googles_mask", - "ShortName": "helmet_armasight_nvg_googles_mask", - "Description": "helmet_armasight_nvg_googles_mask", - "Weight": 0.4, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_armasight_nvg_googles_mask/helmet_armasight_nvg_googles_mask.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 50, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_nvg", - "_id": "5c066ef40db834001966a597", - "_parent": "5c066ef40db834001966a595", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c066e3a0db834001b7353f0" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, "5c0e625a86f7742d77340f62": { "_id": "5c0e625a86f7742d77340f62", "_name": "item_equipment_armor_zhuk6a", @@ -278860,6 +277406,194 @@ }, "_proto": "545cdb794bdc2d3a198b456a" }, + "61c18db6dfd64163ea78fbb4": { + "_id": "61c18db6dfd64163ea78fbb4", + "_name": "item_equipment_head_leather_cap", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "item_equipment_head_beret_blk", + "ShortName": "item_equipment_head_beret_blk", + "Description": "item_equipment_head_beret_blk", + "Weight": 0.15, + "BackgroundColor": "default", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_leather/item_equipment_head_leather.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5f99418230835532b445e954": { + "_id": "5f99418230835532b445e954", + "_name": "item_equipment_cap_r2", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "cap_USEC", + "ShortName": "cap_USEC", + "Description": "cap_USEC", + "Weight": 0.1, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_bear/item_equipment_cap_revals.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, "5e4bfc1586f774264f7582d3": { "_id": "5e4bfc1586f774264f7582d3", "_name": "item_equipment_helmet_tc800", @@ -279060,15 +277794,15 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, - "5aa2b87de5b5b00016327c25": { - "_id": "5aa2b87de5b5b00016327c25", - "_name": "cap_BEAR", + "603619720ca681766b6a0fc4": { + "_id": "603619720ca681766b6a0fc4", + "_name": "item_equipment_head_military2_brown", "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "cap_BEAR", - "ShortName": "cap_BEAR", - "Description": "cap_BEAR", + "Name": "Army cap", + "ShortName": "Army cap", + "Description": "Army cap", "Weight": 0.1, "BackgroundColor": "default", "Width": 1, @@ -279076,7 +277810,7 @@ "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/head_bear/item_equipment_head_bear_green.bundle", + "path": "assets/content/items/equipment/head_military2/item_equipment_head_military2_brown.bundle", "rcid": "" }, "UsePrefab": { @@ -279248,100 +277982,6 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, - "603619720ca681766b6a0fc4": { - "_id": "603619720ca681766b6a0fc4", - "_name": "item_equipment_head_military2_brown", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "Army cap", - "ShortName": "Army cap", - "Description": "Army cap", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/head_military2/item_equipment_head_military2_brown.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, "557ff21e4bdc2d89578b4586": { "_id": "557ff21e4bdc2d89578b4586", "_name": "Goggles", @@ -279435,23 +278075,23 @@ "weaponErgonomicPenalty": 0 } }, - "5c0e66e2d174af02a96252f4": { - "_id": "5c0e66e2d174af02a96252f4", - "_name": "item_equipment_helmet_gentex_slaap_tan", - "_parent": "57bef4c42459772e8d35a53b", + "5ac8d6885acfc400180ae7b0": { + "_id": "5ac8d6885acfc400180ae7b0", + "_name": "helmet_ops_core_fast_tan", + "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "item_equipment_helmet_gentex_slaap", - "ShortName": "item_equipment_helmet_gentex_slaap", - "Description": "item_equipment_helmet_gentex_slaap", - "Weight": 1.3, + "Name": "helmet_ops_core_fast", + "ShortName": "helmet_ops_core_fast", + "Description": "helmet_ops_core_fast", + "Weight": 0.9, "BackgroundColor": "default", "Width": 2, - "Height": 1, + "Height": 2, "StackMaxSize": 1, "ItemSound": "gear_helmet", "Prefab": { - "path": "assets/content/items/equipment/helmet_gentex_slaap/item_equipment_helmet_gentex_slaap_tan.bundle", + "path": "assets/content/items/equipment/helmet_opscore_fast/item_equipment_helmet_opscore_fast_tan.bundle", "rcid": "" }, "UsePrefab": { @@ -279471,7 +278111,245 @@ "LootExperience": 20, "ExamineExperience": 4, "HideEntrails": false, - "RepairCost": 149, + "RepairCost": 921, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_equipment_000", + "_id": "5ac8d6885acfc400180ae7b2", + "_parent": "5ac8d6885acfc400180ae7b0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a16badafcdbcb001865f72d", + "5a16b672fcdbcb001912fa83", + "5a16b7e1fcdbcb00165aa6c9" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_nvg", + "_id": "5ac8d6885acfc400180ae7b3", + "_parent": "5ac8d6885acfc400180ae7b0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5ea058e01dbce517f324b3e2", + "5c0558060db834001b735271", + "5a16b8a9fcdbcb00165aa6ca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_mount", + "_id": "5ac8d6885acfc400180ae7b4", + "_parent": "5ac8d6885acfc400180ae7b0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a398b75c4a282000a51a266", + "5a398ab9c4a282000c5a9842" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_equipment_001", + "_id": "5ac8d6885acfc400180ae7b5", + "_parent": "5ac8d6885acfc400180ae7b0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5a16b9fffcdbcb0176308b34" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_equipment_002", + "_id": "5c0e6acbd174af02a96252f8", + "_parent": "5ac8d6885acfc400180ae7b0", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0e66e2d174af02a96252f4" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "Helmet_top", + "_id": "657f9149f92cd718b7015507", + "_parent": "5ac8d6885acfc400180ae7b0", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657f8ec5f4c82973640b234c", + "Filter": [ + "657f8ec5f4c82973640b234c" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657f9149f92cd718b7015508", + "_parent": "5ac8d6885acfc400180ae7b0", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657f8f10f4c82973640b2350", + "Filter": [ + "657f8f10f4c82973640b2350" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1431, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5aa7e4a4e5b5b000137b76f2": { + "_id": "5aa7e4a4e5b5b000137b76f2", + "_name": "helmet_zsh_1-2m_v2", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "helmet_zsh_1-2m_v2", + "ShortName": "helmet_zsh_1-2m_v2", + "Description": "helmet_zsh_1-2m_v2", + "Weight": 3.7, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_zsh_2var/item_equipment_helmet_zsh_2var.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 446, "RepairSpeed": 10, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -279496,58 +278374,147 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [], + "Slots": [ + { + "_name": "mod_equipment", + "_id": "5aa7e4a4e5b5b000137b76f4", + "_parent": "5aa7e4a4e5b5b000137b76f2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5aa7e3abe5b5b000171d064d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "Helmet_top", + "_id": "657f9547ada5fadd1f07a582", + "_parent": "5aa7e4a4e5b5b000137b76f2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657f925dada5fadd1f07a57a", + "Filter": [ + "657f925dada5fadd1f07a57a" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657f9547ada5fadd1f07a583", + "_parent": "5aa7e4a4e5b5b000137b76f2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657f92acada5fadd1f07a57e", + "Filter": [ + "657f92acada5fadd1f07a57e" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_ears", + "_id": "657f9547ada5fadd1f07a584", + "_parent": "5aa7e4a4e5b5b000137b76f2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657f92e7f4c82973640b2354", + "Filter": [ + "657f92e7f4c82973640b2354" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, + "BlocksEarpiece": true, "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 30, - "MaxDurability": 30, - "armorClass": "5", + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", "HasHinge": false, "MaterialType": "Helmet", "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 50 + "x": 0.7, + "y": 0.3, + "z": 75 }, - "DeafStrength": "None", - "BluntThroughput": 0.0792, - "ArmorMaterial": "UHMWPE", + "DeafStrength": "High", + "BluntThroughput": 0.1548, + "ArmorMaterial": "Combined", "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [ - "ParietalHead" - ], + "ArmorType": "Heavy", + "armorColliders": [], "armorPlateColliders": [], "speedPenaltyPercent": 0, - "mousePenalty": -8, - "weaponErgonomicPenalty": -7 + "mousePenalty": -2, + "weaponErgonomicPenalty": 0 }, "_proto": "5645bc214bdc2d363b8b4571" }, - "5c0919b50db834001b7ce3b9": { - "_id": "5c0919b50db834001b7ce3b9", - "_name": "item_equipment_helmet_maska_1sh_shield", - "_parent": "57bef4c42459772e8d35a53b", + "618aef6d0a5a59657e5f55ee": { + "_id": "618aef6d0a5a59657e5f55ee", + "_name": "item_equipment_head_panama_jackpyke", + "_parent": "5a341c4086f77401f2541505", "_type": "Item", "_props": { - "Name": "item_equipment_helmet_maska_1sh_shield", - "ShortName": "item_equipment_helmet_maska_1sh_shield", - "Description": "item_equipment_helmet_maska_1sh_shield", - "Weight": 1.1, + "Name": "hats_skihat", + "ShortName": "hats_skihat", + "Description": "hats_skihat", + "Weight": 0.18, "BackgroundColor": "default", "Width": 2, - "Height": 1, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "gear_goggles", + "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/helmet_maska_1sh_shield/item_equipment_helmet_maska_1sh_shield.bundle", + "path": "assets/content/items/equipment/head_panama_jackpyke/item_equipment_head_panama_jackpyke.bundle", "rcid": "" }, "UsePrefab": { @@ -279567,7 +278534,7 @@ "LootExperience": 20, "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 128, + "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -279575,6 +278542,100 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": true, + "BlocksHeadwear": true, + "BlocksFaceCover": true, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5e01ef6886f77445f643baa4": { + "_id": "5e01ef6886f77445f643baa4", + "_name": "item_equipment_helmet_team_wendy_exfil_coyote", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_team_wendy_exfil", + "ShortName": "item_equipment_helmet_team_wendy_exfil", + "Description": "item_equipment_helmet_team_wendy_exfil", + "Weight": 1.18, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_team_wendy_exfil/item_equipment_helmet_team_wendy_exfil_coyote.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 921, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, "CanSellOnRagfair": false, "CanRequireOnRagfair": false, "ConflictingItems": [], @@ -279592,42 +278653,2227 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], + "Slots": [ + { + "_name": "mod_equipment_000", + "_id": "5e01ef6886f77445f643baa6", + "_parent": "5e01ef6886f77445f643baa4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5e00cfa786f77469dc6e5685", + "5e01f31d86f77465cf261343" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_nvg", + "_id": "5e01ef6886f77445f643baa7", + "_parent": "5e01ef6886f77445f643baa4", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0558060db834001b735271", + "5a16b8a9fcdbcb00165aa6ca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "helmet_top", + "_id": "6552036b3b23749ada09a769", + "_parent": "5e01ef6886f77445f643baa4", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6551fec55d0cf82e51014288", + "Filter": [ + "6551fec55d0cf82e51014288" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "helmet_back", + "_id": "6552036b3b23749ada09a76a", + "_parent": "5e01ef6886f77445f643baa4", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "655200ba0ef76cf7be09d528", + "Filter": [ + "655200ba0ef76cf7be09d528" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1548, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5e00c1ad86f774747333222c": { + "_id": "5e00c1ad86f774747333222c", + "_name": "item_equipment_helmet_team_wendy_exfil", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_team_wendy_exfil", + "ShortName": "item_equipment_helmet_team_wendy_exfil", + "Description": "item_equipment_helmet_team_wendy_exfil", + "Weight": 1.18, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_team_wendy_exfil/item_equipment_helmet_team_wendy_exfil_black.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 921, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_equipment_000", + "_id": "5e00c1ad86f774747333222e", + "_parent": "5e00c1ad86f774747333222c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5e00cfa786f77469dc6e5685", + "5e01f31d86f77465cf261343" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_nvg", + "_id": "5e00c1ad86f774747333222f", + "_parent": "5e00c1ad86f774747333222c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0558060db834001b735271", + "5a16b8a9fcdbcb00165aa6ca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "mod_equipment_001", + "_id": "5e00c1ad86f7747473332231", + "_parent": "5e00c1ad86f774747333222c", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5e00cdd986f7747473332240", + "5e01f37686f774773c6f6c15" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "helmet_top", + "_id": "6551fe9fffab45c12d0fc4d8", + "_parent": "5e00c1ad86f774747333222c", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6551fec55d0cf82e51014288", + "Filter": [ + "6551fec55d0cf82e51014288" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "helmet_back", + "_id": "655201ff3b23749ada09a768", + "_parent": "5e00c1ad86f774747333222c", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "655200ba0ef76cf7be09d528", + "Filter": [ + "655200ba0ef76cf7be09d528" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1548, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5b432be65acfc433000ed01f": { + "_id": "5b432be65acfc433000ed01f", + "_name": "item_equipment_glasses_6B34", + "_parent": "5448e5724bdc2ddf718b4568", + "_type": "Item", + "_props": { + "Name": "Tactical glass 6b", + "ShortName": "Tactical glass 6b", + "Description": "Tactical glass 6b", + "Weight": 0.12, + "BackgroundColor": "default", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/glasses_6b34/item_equipment_glasses_6b34.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "BlocksEarpiece": false, - "BlocksEyewear": true, + "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 50, - "MaxDurability": 50, - "armorClass": "6", + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", "Indestructibility": 0.9, - "FaceShieldComponent": true, - "FaceShieldMask": "Narrow", - "HasHinge": true, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0.1, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, + "64be79e2bf8412471d0d9bcc": { + "_id": "64be79e2bf8412471d0d9bcc", + "_name": "item_equipment_armor_kora_kulon_camo", + "_parent": "5448e54d4bdc2dcc718b4568", + "_type": "Item", + "_props": { + "Name": "kirasa", + "ShortName": "kirasa", + "Description": "kirasa", + "Weight": 11.1, + "BackgroundColor": "blue", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_kora_kulon/item_equipment_armor_kora_kulon_camo.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 143, + "RepairSpeed": 8, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Soft_armor_front", + "_id": "65763a1ad8537eb26a0355e7", + "_parent": "64be79e2bf8412471d0d9bcc", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6570495b45d573133d0d6adb", + "Filter": [ + "6570495b45d573133d0d6adb" + ], + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "65763a1ad8537eb26a0355e8", + "_parent": "64be79e2bf8412471d0d9bcc", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657049d23425b19bbc0502f0", + "Filter": [ + "657049d23425b19bbc0502f0" + ], + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.298, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": -1, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, + "60bf74184a63fc79b60c57f6": { + "_id": "60bf74184a63fc79b60c57f6", + "_name": "item_equipment_head_bomber", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "Knitcap", + "ShortName": "Knitcap", + "Description": "Knitcap", + "Weight": 0.1, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/head_bomber/item_equipment_head_bomber.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 50, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": true, + "DiscardLimit": 1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 150, + "MaxDurability": 150, + "armorClass": "1", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 1 + }, + "DeafStrength": "None", + "BluntThroughput": 0.216, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7f1624597762ae139822" + }, + "5a43943586f77416ad2f06e2": { + "_id": "5a43943586f77416ad2f06e2", + "_name": "cap_dedmoroz", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "cap ded moroz", + "ShortName": "cap ded moroz", + "Description": "cap ded moroz", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/head_dedmoroz/item_equipment_head_dedmoroz.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7f1624597762ae139822" + }, + "5b40e4035acfc47a87740943": { + "_id": "5b40e4035acfc47a87740943", + "_name": "item_equipment_helmet_ACHHC_green", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_ACHHC_green", + "ShortName": "item_equipment_helmet_ACHHC_green", + "Description": "item_equipment_helmet_ACHHC_green", + "Weight": 1.2, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_achhc/item_equipment_helmet_achhc_green.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 451, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Helmet_top", + "_id": "657f975dc6679fefb3051e16", + "_parent": "5b40e4035acfc47a87740943", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657f95bff92cd718b701550c", + "Filter": [ + "657f95bff92cd718b701550c" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657f975dc6679fefb3051e17", + "_parent": "5b40e4035acfc47a87740943", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657f9605f4c82973640b2358", + "Filter": [ + "657f9605f4c82973640b2358" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1548, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -1, + "weaponErgonomicPenalty": -2 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5e71f70186f77429ee09f183": { + "_id": "5e71f70186f77429ee09f183", + "_name": "item_equipment_glasses_gascan_twitch", + "_parent": "5448e5724bdc2ddf718b4568", + "_type": "Item", + "_props": { + "Name": "item_equipment_glasses_gascan", + "ShortName": "item_equipment_glasses_gascan", + "Description": "item_equipment_glasses_gascan", + "Weight": 0.034, + "BackgroundColor": "violet", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/glasses_gascan/item_equipment_glasses_gascan_twitch.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0.3, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, + "5645bc214bdc2d363b8b4571": { + "_id": "5645bc214bdc2d363b8b4571", + "_name": "helmet", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "Kiver-M Helmet", + "ShortName": "Kiver-M", + "Description": "Ballistic helmet", + "Weight": 1.2, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_kiverm/item_equipment_helmet_kiverm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 478, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_equipment", + "_id": "5b46244386f7741a6a537e22", + "_parent": "5645bc214bdc2d363b8b4571", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5b46238386f7741a693bcf9c" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "Helmet_top", + "_id": "657bb6c9a1c61ee0c3036317", + "_parent": "5645bc214bdc2d363b8b4571", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657bae18b7e9ca9a02045c0a", + "Filter": [ + "657bae18b7e9ca9a02045c0a" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657bb6c9a1c61ee0c3036318", + "_parent": "5645bc214bdc2d363b8b4571", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657baeaacfcf63c951052db3", + "Filter": [ + "657baeaacfcf63c951052db3" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_ears", + "_id": "657bb6c9a1c61ee0c3036319", + "_parent": "5645bc214bdc2d363b8b4571", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657baecbc6f689d3a205b863", + "Filter": [ + "657baecbc6f689d3a205b863" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, "MaterialType": "Helmet", "RicochetParams": { "x": 0.8, "y": 0.3, "z": 70 }, - "DeafStrength": "None", - "BluntThroughput": 0.0792, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0.35, - "ArmorType": "None", - "armorColliders": [ - "HeadCommon", - "Eyes", - "Jaw" + "DeafStrength": "High", + "BluntThroughput": 0.218, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1 + } + }, + "5b4329f05acfc47a86086aa1": { + "_id": "5b4329f05acfc47a86086aa1", + "_name": "item_equipment_facecover_devtac", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "devtac", + "ShortName": "devtac", + "Description": "devtac", + "Weight": 1.6, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/facecover_devtac/item_equipment_facecover_devtac.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 553, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": true, + "DiscardLimit": 4, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Helmet_top", + "_id": "65711d40f1074598bf0c0279", + "_parent": "5b4329f05acfc47a86086aa1", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65711b07a330b8c9060f7b01", + "Filter": [ + "65711b07a330b8c9060f7b01" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "65711d40f1074598bf0c027a", + "_parent": "5b4329f05acfc47a86086aa1", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65711b489eb8c145180dbb9d", + "Filter": [ + "65711b489eb8c145180dbb9d" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "helmet_eyes", + "_id": "65711d40f1074598bf0c027b", + "_parent": "5b4329f05acfc47a86086aa1", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65711b9b65daf6aa960c9b1b", + "Filter": [ + "65711b9b65daf6aa960c9b1b" + ], + "armorColliders": [ + "Eyes" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "helmet_jaw", + "_id": "65711d40f1074598bf0c027c", + "_parent": "5b4329f05acfc47a86086aa1", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65711bc79eb8c145180dbba1", + "Filter": [ + "65711bc79eb8c145180dbba1" + ], + "armorColliders": [ + "Jaw", + "HeadCommon" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_ears", + "_id": "65711d40f1074598bf0c027d", + "_parent": "5b4329f05acfc47a86086aa1", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65711b706d197c216005b31c", + "Filter": [ + "65711b706d197c216005b31c" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": true, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 75 + }, + "DeafStrength": "High", + "BluntThroughput": 0.22, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": -1, + "mousePenalty": -2, + "weaponErgonomicPenalty": -1 + }, + "_proto": "572b7d8524597762b472f9d1" + }, + "65749ccf33fdc9c0cf06d3ca": { + "_id": "65749ccf33fdc9c0cf06d3ca", + "_name": "item_equipment_head_wild_security_leathercap", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "cap_BEAR", + "ShortName": "cap_BEAR", + "Description": "cap_BEAR", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_wild_security_leathercap/item_equipment_head_wild_security_leathercap.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], "armorPlateColliders": [], "speedPenaltyPercent": 0, "mousePenalty": 0, - "weaponErgonomicPenalty": -9 + "weaponErgonomicPenalty": 0 }, - "_proto": "557ff21e4bdc2d89578b4586" + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5b40e1525acfc4771e1c6611": { + "_id": "5b40e1525acfc4771e1c6611", + "_name": "item_equipment_helmet_ULACH_black", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_ULACH_black", + "ShortName": "item_equipment_helmet_ULACH_black", + "Description": "item_equipment_helmet_ULACH_black", + "Weight": 1.9, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_ulach/item_equipment_helmet_ulach_black.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 803, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Helmet_top", + "_id": "6571161922996eaf1108820a", + "_parent": "5b40e1525acfc4771e1c6611", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657112234269e9a568089eac", + "Filter": [ + "657112234269e9a568089eac" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "6571161922996eaf1108820b", + "_parent": "5b40e1525acfc4771e1c6611", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657112a4818110db4600aa66", + "Filter": [ + "657112a4818110db4600aa66" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_ears", + "_id": "6571161922996eaf1108820c", + "_parent": "5b40e1525acfc4771e1c6611", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657112ce22996eaf110881fb", + "Filter": [ + "657112ce22996eaf110881fb" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 75 + }, + "DeafStrength": "Low", + "BluntThroughput": 0.208, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -2, + "weaponErgonomicPenalty": -1 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "628e4dd1f477aa12234918aa": { + "_id": "628e4dd1f477aa12234918aa", + "_name": "item_equipment_head_bandana_boss_Big_Pipe", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "bandana", + "ShortName": "bandana", + "Description": "bandana", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/head_bandana_boss_big_pipe/item_equipment_head_bandana_boss_big_pipe.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5c0e51be86f774598e797894": { + "_id": "5c0e51be86f774598e797894", + "_name": "item_equipment_armor_6b13_flora", + "_parent": "5448e54d4bdc2dcc718b4568", + "_type": "Item", + "_props": { + "Name": "gjel", + "ShortName": "gjel", + "Description": "gjel", + "Weight": 2.8, + "BackgroundColor": "blue", + "Width": 3, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_6b13/item_equipment_armor_6b13_flora.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 319, + "RepairSpeed": 8, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Front_plate", + "_id": "65763c7920cc24d17102b13c", + "_parent": "5c0e51be86f774598e797894", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656f603f94b480b8a500c0d6", + "Filter": [ + "656f63c027aed95beb08f62c", + "656f57dc27aed95beb08f628", + "656f603f94b480b8a500c0d6", + "656f611f94b480b8a500c0db" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Korund_chest" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "65763c7920cc24d17102b13d", + "_parent": "5c0e51be86f774598e797894", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656efd66034e8e01c407f35c", + "Filter": [ + "656efaf54772930db4031ff5", + "656efd66034e8e01c407f35c", + "654a4a964b446df1ad03f192" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_6B13_back" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_front", + "_id": "65763c7920cc24d17102b13e", + "_parent": "5c0e51be86f774598e797894", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "654a8b0b0337d53f9102c2ae", + "Filter": [ + "654a8b0b0337d53f9102c2ae" + ], + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "65763c7920cc24d17102b13f", + "_parent": "5c0e51be86f774598e797894", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "654a8976f414fcea4004d78b", + "Filter": [ + "654a8976f414fcea4004d78b" + ], + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_left", + "_id": "65763c7920cc24d17102b140", + "_parent": "5c0e51be86f774598e797894", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "654a8b3df414fcea4004d78f", + "Filter": [ + "654a8b3df414fcea4004d78f" + ], + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_right", + "_id": "65763c7920cc24d17102b141", + "_parent": "5c0e51be86f774598e797894", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "654a8b80f414fcea4004d797", + "Filter": [ + "654a8b80f414fcea4004d797" + ], + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Collar", + "_id": "65763c7920cc24d17102b142", + "_parent": "5c0e51be86f774598e797894", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "654a8ae00337d53f9102c2aa", + "Filter": [ + "654a8ae00337d53f9102c2aa" + ], + "armorColliders": [ + "NeckFront", + "NeckBack" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Groin", + "_id": "65763c7920cc24d17102b143", + "_parent": "5c0e51be86f774598e797894", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "654a8bc5f414fcea4004d79b", + "Filter": [ + "654a8bc5f414fcea4004d79b" + ], + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.32, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": -1, + "mousePenalty": 0, + "weaponErgonomicPenalty": -1 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, + "5c0e874186f7745dc7616606": { + "_id": "5c0e874186f7745dc7616606", + "_name": "item_equipment_helmet_maska_1sh_killa", + "_parent": "5a341c4086f77401f2541505", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_maska_1sh", + "ShortName": "item_equipment_helmet_maska_1sh", + "Description": "item_equipment_helmet_maska_1sh", + "Weight": 2.6, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_maska_1sh/item_equipment_helmet_maska_1sh_killa.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 765, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_equipment", + "_id": "5c0e874186f7745dc7616608", + "_parent": "5c0e874186f7745dc7616606", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0919b50db834001b7ce3b9", + "5c0e842486f77443a74d2976" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + }, + { + "_name": "Helmet_top", + "_id": "657b97a8e57570b7f80a17f8", + "_parent": "5c0e874186f7745dc7616606", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6571133d22996eaf11088200", + "Filter": [ + "6571133d22996eaf11088200" + ], + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_back", + "_id": "657b97a8e57570b7f80a17f9", + "_parent": "5c0e874186f7745dc7616606", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6571138e818110db4600aa71", + "Filter": [ + "6571138e818110db4600aa71" + ], + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Helmet_ears", + "_id": "657b97a8e57570b7f80a17fa", + "_parent": "5c0e874186f7745dc7616606", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657112fa818110db4600aa6b", + "Filter": [ + "657112fa818110db4600aa6b" + ], + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 80 + }, + "DeafStrength": "High", + "BluntThroughput": 0.1726, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -1, + "weaponErgonomicPenalty": -4 + }, + "_proto": "5645bc214bdc2d363b8b4571" }, "5b40e61f5acfc4001a599bec": { "_id": "5b40e61f5acfc4001a599bec", @@ -280082,192 +281328,6 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, - "5c0e874186f7745dc7616606": { - "_id": "5c0e874186f7745dc7616606", - "_name": "item_equipment_helmet_maska_1sh_killa", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_maska_1sh", - "ShortName": "item_equipment_helmet_maska_1sh", - "Description": "item_equipment_helmet_maska_1sh", - "Weight": 2.6, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_maska_1sh/item_equipment_helmet_maska_1sh_killa.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 765, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_equipment", - "_id": "5c0e874186f7745dc7616608", - "_parent": "5c0e874186f7745dc7616606", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0919b50db834001b7ce3b9", - "5c0e842486f77443a74d2976" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "Helmet_top", - "_id": "657b97a8e57570b7f80a17f8", - "_parent": "5c0e874186f7745dc7616606", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6571133d22996eaf11088200", - "Filter": [ - "6571133d22996eaf11088200" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "657b97a8e57570b7f80a17f9", - "_parent": "5c0e874186f7745dc7616606", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6571138e818110db4600aa71", - "Filter": [ - "6571138e818110db4600aa71" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_ears", - "_id": "657b97a8e57570b7f80a17fa", - "_parent": "5c0e874186f7745dc7616606", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657112fa818110db4600aa6b", - "Filter": [ - "657112fa818110db4600aa6b" - ], - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "High", - "BluntThroughput": 0.1726, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -1, - "weaponErgonomicPenalty": -4 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, "5c1a1cc52e221602b3136e3d": { "_id": "5c1a1cc52e221602b3136e3d", "_name": "item_equipment_glasses_m_frame", @@ -280362,23 +281422,23 @@ }, "_proto": "557ff21e4bdc2d89578b4586" }, - "61bca7cda0eae612383adf57": { - "_id": "61bca7cda0eae612383adf57", - "_name": "item_equipment_helmet_nfm_hjelm", - "_parent": "5a341c4086f77401f2541505", + "6038b4ca92ec1c3103795a0d": { + "_id": "6038b4ca92ec1c3103795a0d", + "_name": "item_equipment_armor_slick_olive", + "_parent": "5448e54d4bdc2dcc718b4568", "_type": "Item", "_props": { - "Name": "item_equipment_helmet_nfm_hjelm", - "ShortName": "item_equipment_helmet_nfm_hjelm", - "Description": "item_equipment_helmet_nfm_hjelm", - "Weight": 0.8, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, + "Name": "gjel", + "ShortName": "gjel", + "Description": "gjel", + "Weight": 1.3, + "BackgroundColor": "blue", + "Width": 3, + "Height": 3, "StackMaxSize": 1, - "ItemSound": "gear_helmet", + "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/helmet_nfm_hjelm/item_equipment_helmet_nfm_hjelm.bundle", + "path": "assets/content/items/equipment/armor_slick/item_equipment_armor_slick_olive.bundle", "rcid": "" }, "UsePrefab": { @@ -280395,17 +281455,17 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, + "LootExperience": 45, + "ExamineExperience": 2, "HideEntrails": false, - "RepairCost": 442, - "RepairSpeed": 10, + "RepairCost": 1063, + "RepairSpeed": 8, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, - "MergesWithChildren": true, + "MergesWithChildren": false, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [], @@ -280425,92 +281485,383 @@ "Grids": [], "Slots": [ { - "_name": "mod_equipment_000", - "_id": "61bca7cda0eae612383adf59", - "_parent": "61bca7cda0eae612383adf57", + "_name": "Front_plate", + "_id": "657640e5bc8a93150303a638", + "_parent": "6038b4ca92ec1c3103795a0d", "_props": { "filters": [ { - "Shift": 0, + "locked": false, + "Plate": "656fa76500d62bcd2e024080", "Filter": [ - "5a16b672fcdbcb001912fa83", - "5a16b7e1fcdbcb00165aa6c9" - ] + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fafe3498d1b7e3e071da4", + "656fa0fb498d1b7e3e071d9c", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fa61e94b480b8a500c0e8", + "656fad8c498d1b7e3e071da0", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "656fb21fa0dce000a2020f7c", + "64afdcb83efdfea28601d041", + "655746010177119f4a097ff7" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": true } ] }, "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" }, { - "_name": "mod_nvg", - "_id": "61bca7cda0eae612383adf5a", - "_parent": "61bca7cda0eae612383adf57", + "_name": "Back_plate", + "_id": "657640e5bc8a93150303a639", + "_parent": "6038b4ca92ec1c3103795a0d", "_props": { "filters": [ { - "Shift": 0, + "locked": false, + "Plate": "656fa76500d62bcd2e024080", "Filter": [ - "5c0558060db834001b735271", - "5a16b8a9fcdbcb00165aa6ca" - ] + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fa76500d62bcd2e024080", + "656fafe3498d1b7e3e071da4", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fb0bd7c2d57afe200c0dc", + "656fac30c6baea13cd07e10c", + "656fb21fa0dce000a2020f7c", + "656fa61e94b480b8a500c0e8", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "64afdcb83efdfea28601d041", + "655746010177119f4a097ff7" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": true } ] }, "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" }, { - "_name": "mod_mount", - "_id": "61bca7cda0eae612383adf5b", - "_parent": "61bca7cda0eae612383adf57", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5a398b75c4a282000a51a266", - "5a398ab9c4a282000c5a9842" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_equipment_001", - "_id": "61bca7cda0eae612383adf5c", - "_parent": "61bca7cda0eae612383adf57", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "Helmet_top", - "_id": "657bbe09b30eca9763051187", - "_parent": "61bca7cda0eae612383adf57", + "_name": "Soft_armor_front", + "_id": "657640e5bc8a93150303a63a", + "_parent": "6038b4ca92ec1c3103795a0d", "_props": { "filters": [ { "locked": true, - "Plate": "657bbcc9a1c61ee0c3036327", + "Plate": "6575e71760703324250610c3", "Filter": [ - "657bbcc9a1c61ee0c3036327" + "6575e71760703324250610c3" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "657640e5bc8a93150303a63b", + "_parent": "6038b4ca92ec1c3103795a0d", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575e72660703324250610c7", + "Filter": [ + "6575e72660703324250610c7" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2259, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, + "609e8540d5c319764c2bc2e9": { + "_id": "609e8540d5c319764c2bc2e9", + "_name": "item_equipment_armor_custom_thorcrv", + "_parent": "5448e54d4bdc2dcc718b4568", + "_type": "Item", + "_props": { + "Name": "PACA", + "ShortName": "PACA", + "Description": "PACA", + "Weight": 1.7, + "BackgroundColor": "blue", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_custom_thorcrv/item_equipment_armor_custom_thorcrv.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 319, + "RepairSpeed": 8, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Front_plate", + "_id": "6572e70f04ee6483ef039820", + "_parent": "609e8540d5c319764c2bc2e9", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656f9fa0498d1b7e3e071d98", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa25e94b480b8a500c0e0", + "656fa76500d62bcd2e024080", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "6572e70f04ee6483ef039821", + "_parent": "609e8540d5c319764c2bc2e9", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656f9fa0498d1b7e3e071d98", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Left_side_plate", + "_id": "6572e70f04ee6483ef039822", + "_parent": "609e8540d5c319764c2bc2e9", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "", + "Filter": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_left_high" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Right_side_plate", + "_id": "6572e70f04ee6483ef039823", + "_parent": "609e8540d5c319764c2bc2e9", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "", + "Filter": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_right_high" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_front", + "_id": "6572e70f04ee6483ef039824", + "_parent": "609e8540d5c319764c2bc2e9", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6572e5221b5bc1185508c24f", + "Filter": [ + "6572e5221b5bc1185508c24f" ], "armorColliders": [ - "ParietalHead" + "RibcageUp", + "RibcageLow" ], "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false @@ -280522,19 +281873,68 @@ "_proto": "64479fdf9731c8fadc0642c1" }, { - "_name": "Helmet_back", - "_id": "657bbe09b30eca9763051188", - "_parent": "61bca7cda0eae612383adf57", + "_name": "Soft_armor_back", + "_id": "6572e70f04ee6483ef039825", + "_parent": "609e8540d5c319764c2bc2e9", "_props": { "filters": [ { "locked": true, - "Plate": "657bbcffbbd440df880b2dd5", + "Plate": "6572e52f73c0eabb700109a0", "Filter": [ - "657bbcffbbd440df880b2dd5" + "6572e52f73c0eabb700109a0" ], "armorColliders": [ - "BackHead" + "SpineDown", + "SpineTop" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_left", + "_id": "6572e70f04ee6483ef039826", + "_parent": "609e8540d5c319764c2bc2e9", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6572e53c73c0eabb700109a4", + "Filter": [ + "6572e53c73c0eabb700109a4" + ], + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_right", + "_id": "6572e70f04ee6483ef039827", + "_parent": "609e8540d5c319764c2bc2e9", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6572e54873c0eabb700109a8", + "Filter": [ + "6572e54873c0eabb700109a8" + ], + "armorColliders": [ + "RightSideChestDown" ], "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false @@ -280559,42 +281959,235 @@ "FaceShieldComponent": false, "FaceShieldMask": "NoMask", "HasHinge": false, - "MaterialType": "Helmet", + "MaterialType": "BodyArmor", "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 75 + "x": 0, + "y": 0, + "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.1448, - "ArmorMaterial": "Combined", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -1, + "weaponErgonomicPenalty": 0 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, + "5ab8e4ed86f7742d8e50c7fa": { + "_id": "5ab8e4ed86f7742d8e50c7fa", + "_name": "armor_un", + "_parent": "5448e54d4bdc2dcc718b4568", + "_type": "Item", + "_props": { + "Name": "un armor", + "ShortName": "un armor", + "Description": "un armor", + "Weight": 8.5, + "BackgroundColor": "blue", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_un/item_equipment_armor_un.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 276, + "RepairSpeed": 8, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Soft_armor_front", + "_id": "657047787e80617cee095bdf", + "_parent": "5ab8e4ed86f7742d8e50c7fa", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657044e971369562b300ce9b", + "Filter": [ + "657044e971369562b300ce9b" + ], + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "657047787e80617cee095be0", + "_parent": "5ab8e4ed86f7742d8e50c7fa", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657045741bd9beedc40b7299", + "Filter": [ + "657045741bd9beedc40b7299" + ], + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_left", + "_id": "657047787e80617cee095be1", + "_parent": "5ab8e4ed86f7742d8e50c7fa", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657045b97e80617cee095bda", + "Filter": [ + "657045b97e80617cee095bda" + ], + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_right", + "_id": "657047787e80617cee095be2", + "_parent": "5ab8e4ed86f7742d8e50c7fa", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6570460471369562b300ce9f", + "Filter": [ + "6570460471369562b300ce9f" + ], + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2376, + "ArmorMaterial": "Aluminium", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [], "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": -1 + "speedPenaltyPercent": -3, + "mousePenalty": -1, + "weaponErgonomicPenalty": -2 }, - "_proto": "5645bc214bdc2d363b8b4571" + "_proto": "545cdb794bdc2d3a198b456a" }, - "5a43943586f77416ad2f06e2": { - "_id": "5a43943586f77416ad2f06e2", - "_name": "cap_dedmoroz", - "_parent": "5a341c4086f77401f2541505", + "5e54f76986f7740366043752": { + "_id": "5e54f76986f7740366043752", + "_name": "item_equipment_facecover_shroud", + "_parent": "5a341c4686f77469e155819e", "_type": "Item", "_props": { - "Name": "cap ded moroz", - "ShortName": "cap ded moroz", - "Description": "cap ded moroz", + "Name": "Balaclavanomex", + "ShortName": "Balaclavanomex", + "Description": "Balaclavanomex", "Weight": 0.1, - "BackgroundColor": "blue", + "BackgroundColor": "violet", "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "gear_helmet", + "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/head_dedmoroz/item_equipment_head_dedmoroz.bundle", + "path": "assets/content/items/equipment/facecover_shroud/item_equipment_facecover_shroud.bundle", "rcid": "" }, "UsePrefab": { @@ -280631,765 +282224,56 @@ "AnimationVariantsNumber": 0, "DiscardingBlock": false, "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7f1624597762ae139822" - }, - "5d6d3716a4b9361bc8618872": { - "_id": "5d6d3716a4b9361bc8618872", - "_name": "item_equipment_helmet_lshz2dtm", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_lshz2dtm", - "ShortName": "item_equipment_helmet_lshz2dtm", - "Description": "item_equipment_helmet_lshz2dtm", - "Weight": 3.4, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_lshz2dtm/item_equipment_helmet_lshz2dtm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 1084, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_equipment_000", - "_id": "5d6d3716a4b9361bc8618874", - "_parent": "5d6d3716a4b9361bc8618872", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d6d3829a4b9361bc8618943" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_nvg", - "_id": "5d6d3716a4b9361bc8618875", - "_parent": "5d6d3716a4b9361bc8618872", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0558060db834001b735271", - "5a16b8a9fcdbcb00165aa6ca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_mount", - "_id": "5d6d3716a4b9361bc8618876", - "_parent": "5d6d3716a4b9361bc8618872", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_equipment_001", - "_id": "5d6d3716a4b9361bc8618877", - "_parent": "5d6d3716a4b9361bc8618872", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d6d3be5a4b9361bc73bc763" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "mod_equipment_002", - "_id": "5d6d3716a4b9361bc8618878", - "_parent": "5d6d3716a4b9361bc8618872", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5d6d3943a4b9360dbc46d0cc" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - }, - { - "_name": "Helmet_top", - "_id": "657fa28ce9433140ad0baf92", - "_parent": "5d6d3716a4b9361bc8618872", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657fa009d4caf976440afe3a", - "Filter": [ - "657fa009d4caf976440afe3a" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "657fa28ce9433140ad0baf93", - "_parent": "5d6d3716a4b9361bc8618872", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657fa04ac6679fefb3051e24", - "Filter": [ - "657fa04ac6679fefb3051e24" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_ears", - "_id": "657fa28ce9433140ad0baf94", - "_parent": "5d6d3716a4b9361bc8618872", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657fa07387e11c61f70bface", - "Filter": [ - "657fa07387e11c61f70bface" - ], - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": false, - "BlocksHeadwear": true, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 70 - }, - "DeafStrength": "High", - "BluntThroughput": 0.1431, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -3, - "weaponErgonomicPenalty": -3 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5b40e4035acfc47a87740943": { - "_id": "5b40e4035acfc47a87740943", - "_name": "item_equipment_helmet_ACHHC_green", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_ACHHC_green", - "ShortName": "item_equipment_helmet_ACHHC_green", - "Description": "item_equipment_helmet_ACHHC_green", - "Weight": 1.2, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_achhc/item_equipment_helmet_achhc_green.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 451, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Helmet_top", - "_id": "657f975dc6679fefb3051e16", - "_parent": "5b40e4035acfc47a87740943", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657f95bff92cd718b701550c", - "Filter": [ - "657f95bff92cd718b701550c" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "657f975dc6679fefb3051e17", - "_parent": "5b40e4035acfc47a87740943", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657f9605f4c82973640b2358", - "Filter": [ - "657f9605f4c82973640b2358" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1548, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -1, - "weaponErgonomicPenalty": -2 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5e71f70186f77429ee09f183": { - "_id": "5e71f70186f77429ee09f183", - "_name": "item_equipment_glasses_gascan_twitch", - "_parent": "5448e5724bdc2ddf718b4568", - "_type": "Item", - "_props": { - "Name": "item_equipment_glasses_gascan", - "ShortName": "item_equipment_glasses_gascan", - "Description": "item_equipment_glasses_gascan", - "Weight": 0.034, - "BackgroundColor": "violet", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/glasses_gascan/item_equipment_glasses_gascan_twitch.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0.3, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "5b4329f05acfc47a86086aa1": { - "_id": "5b4329f05acfc47a86086aa1", - "_name": "item_equipment_facecover_devtac", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "devtac", - "ShortName": "devtac", - "Description": "devtac", - "Weight": 1.6, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/facecover_devtac/item_equipment_facecover_devtac.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 553, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": true, - "DiscardLimit": 4, + "DiscardLimit": 1, "DropSoundType": "None", "InsuranceDisabled": false, "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "Helmet_top", - "_id": "65711d40f1074598bf0c0279", - "_parent": "5b4329f05acfc47a86086aa1", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65711b07a330b8c9060f7b01", - "Filter": [ - "65711b07a330b8c9060f7b01" - ], - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_back", - "_id": "65711d40f1074598bf0c027a", - "_parent": "5b4329f05acfc47a86086aa1", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65711b489eb8c145180dbb9d", - "Filter": [ - "65711b489eb8c145180dbb9d" - ], - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "helmet_eyes", - "_id": "65711d40f1074598bf0c027b", - "_parent": "5b4329f05acfc47a86086aa1", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65711b9b65daf6aa960c9b1b", - "Filter": [ - "65711b9b65daf6aa960c9b1b" - ], - "armorColliders": [ - "Eyes" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "helmet_jaw", - "_id": "65711d40f1074598bf0c027c", - "_parent": "5b4329f05acfc47a86086aa1", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65711bc79eb8c145180dbba1", - "Filter": [ - "65711bc79eb8c145180dbba1" - ], - "armorColliders": [ - "Jaw", - "HeadCommon" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Helmet_ears", - "_id": "65711d40f1074598bf0c027d", - "_parent": "5b4329f05acfc47a86086aa1", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65711b706d197c216005b31c", - "Filter": [ - "65711b706d197c216005b31c" - ], - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": true, + "BlocksEarpiece": false, + "BlocksEyewear": false, "BlocksHeadwear": false, - "BlocksFaceCover": true, - "Durability": 0, - "MaxDurability": 0, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, "armorClass": "0", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", "HasHinge": false, - "MaterialType": "Helmet", + "MaterialType": "BodyArmor", "RicochetParams": { "x": 0, "y": 0, - "z": 75 + "z": 80 }, - "DeafStrength": "High", - "BluntThroughput": 0.22, - "ArmorMaterial": "Aramid", + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", "BlindnessProtection": 0, - "ArmorType": "Light", + "ArmorType": "None", "armorColliders": [], "armorPlateColliders": [], - "speedPenaltyPercent": -1, - "mousePenalty": -2, - "weaponErgonomicPenalty": -1 + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 }, "_proto": "572b7d8524597762b472f9d1" }, - "628e4dd1f477aa12234918aa": { - "_id": "628e4dd1f477aa12234918aa", - "_name": "item_equipment_head_bandana_boss_Big_Pipe", - "_parent": "5a341c4086f77401f2541505", + "572b7fa524597762b747ce82": { + "_id": "572b7fa524597762b747ce82", + "_name": "mask", + "_parent": "5a341c4686f77469e155819e", "_type": "Item", "_props": { - "Name": "bandana", - "ShortName": "bandana", - "Description": "bandana", + "Name": "Mask", + "ShortName": "Mask", + "Description": "Mask", "Weight": 0.1, "BackgroundColor": "default", "Width": 1, @@ -281397,7 +282281,7 @@ "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/head_bandana_boss_big_pipe/item_equipment_head_bandana_boss_big_pipe.bundle", + "path": "assets/content/items/equipment/facecover_buffalo/item_equipment_facecover_buffalo.bundle", "rcid": "" }, "UsePrefab": { @@ -281406,7 +282290,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": false, + "ExaminedByDefault": true, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -281415,7 +282299,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 5, - "ExamineExperience": 100, + "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -281473,25 +282357,25 @@ "mousePenalty": 0, "weaponErgonomicPenalty": 0 }, - "_proto": "5645bc214bdc2d363b8b4571" + "_proto": "572b7fa124597762b472f9d2" }, - "65749ccf33fdc9c0cf06d3ca": { - "_id": "65749ccf33fdc9c0cf06d3ca", - "_name": "item_equipment_head_wild_security_leathercap", - "_parent": "5a341c4086f77401f2541505", + "5e9dacf986f774054d6b89f4": { + "_id": "5e9dacf986f774054d6b89f4", + "_name": "item_equipment_armor_defender2", + "_parent": "5448e54d4bdc2dcc718b4568", "_type": "Item", "_props": { - "Name": "cap_BEAR", - "ShortName": "cap_BEAR", - "Description": "cap_BEAR", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, + "Name": "iotv_mob", + "ShortName": "iotv_mob", + "Description": "iotv_mob", + "Weight": 5.7, + "BackgroundColor": "blue", + "Width": 3, + "Height": 4, "StackMaxSize": 1, - "ItemSound": "gear_generic", + "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/head_wild_security_leathercap/item_equipment_head_wild_security_leathercap.bundle", + "path": "assets/content/items/equipment/armor_def2/item_equipment_armor_def2.bundle", "rcid": "" }, "UsePrefab": { @@ -281508,104 +282392,10 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, + "LootExperience": 60, + "ExamineExperience": 2, "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5b40e1525acfc4771e1c6611": { - "_id": "5b40e1525acfc4771e1c6611", - "_name": "item_equipment_helmet_ULACH_black", - "_parent": "5a341c4086f77401f2541505", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_ULACH_black", - "ShortName": "item_equipment_helmet_ULACH_black", - "Description": "item_equipment_helmet_ULACH_black", - "Weight": 1.9, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_ulach/item_equipment_helmet_ulach_black.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 803, + "RepairCost": 988, "RepairSpeed": 10, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -281632,19 +282422,106 @@ "Grids": [], "Slots": [ { - "_name": "Helmet_top", - "_id": "6571161922996eaf1108820a", - "_parent": "5b40e1525acfc4771e1c6611", + "_name": "Front_plate", + "_id": "6573304d2cc8dfad2c0a3d0b", + "_parent": "5e9dacf986f774054d6b89f4", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "65573fa5655447403702a816", + "Filter": [ + "656fa8d700d62bcd2e024084", + "656f9d5900d62bcd2e02407c", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "6573304d2cc8dfad2c0a3d0c", + "_parent": "5e9dacf986f774054d6b89f4", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "65573fa5655447403702a816", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fae5f7c2d57afe200c0d7", + "656fa99800d62bcd2e024088", + "656fa0fb498d1b7e3e071d9c", + "656faf0ca0dce000a2020f77", + "656fa76500d62bcd2e024080", + "656fafe3498d1b7e3e071da4", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fa61e94b480b8a500c0e8", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_front", + "_id": "6573304d2cc8dfad2c0a3d0d", + "_parent": "5e9dacf986f774054d6b89f4", "_props": { "filters": [ { "locked": true, - "Plate": "657112234269e9a568089eac", + "Plate": "65732de75d3a3129fb05f3dd", "Filter": [ - "657112234269e9a568089eac" + "65732de75d3a3129fb05f3dd" ], "armorColliders": [ - "ParietalHead" + "RibcageLow", + "RibcageUp" ], "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false @@ -281656,19 +282533,20 @@ "_proto": "64479fdf9731c8fadc0642c1" }, { - "_name": "Helmet_back", - "_id": "6571161922996eaf1108820b", - "_parent": "5b40e1525acfc4771e1c6611", + "_name": "Soft_armor_back", + "_id": "6573304d2cc8dfad2c0a3d0e", + "_parent": "5e9dacf986f774054d6b89f4", "_props": { "filters": [ { "locked": true, - "Plate": "657112a4818110db4600aa66", + "Plate": "65732df4d0acf75aea06c87b", "Filter": [ - "657112a4818110db4600aa66" + "65732df4d0acf75aea06c87b" ], "armorColliders": [ - "BackHead" + "SpineDown", + "SpineTop" ], "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false @@ -281680,19 +282558,91 @@ "_proto": "64479fdf9731c8fadc0642c1" }, { - "_name": "Helmet_ears", - "_id": "6571161922996eaf1108820c", - "_parent": "5b40e1525acfc4771e1c6611", + "_name": "Soft_armor_left", + "_id": "6573304d2cc8dfad2c0a3d0f", + "_parent": "5e9dacf986f774054d6b89f4", "_props": { "filters": [ { "locked": true, - "Plate": "657112ce22996eaf110881fb", + "Plate": "65732e05d0acf75aea06c87f", "Filter": [ - "657112ce22996eaf110881fb" + "65732e05d0acf75aea06c87f" ], "armorColliders": [ - "Ears" + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_right", + "_id": "6573304d2cc8dfad2c0a3d10", + "_parent": "5e9dacf986f774054d6b89f4", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65732e0f6784ca384b0167ad", + "Filter": [ + "65732e0f6784ca384b0167ad" + ], + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Collar", + "_id": "6573304d2cc8dfad2c0a3d11", + "_parent": "5e9dacf986f774054d6b89f4", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65732e215d3a3129fb05f3e1", + "Filter": [ + "65732e215d3a3129fb05f3e1" + ], + "armorColliders": [ + "NeckFront" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Groin", + "_id": "6573304d2cc8dfad2c0a3d12", + "_parent": "5e9dacf986f774054d6b89f4", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65732e30dd8739f6440ef383", + "Filter": [ + "65732e30dd8739f6440ef383" + ], + "armorColliders": [ + "Pelvis" ], "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false @@ -281717,24 +282667,587 @@ "FaceShieldComponent": false, "FaceShieldMask": "NoMask", "HasHinge": false, - "MaterialType": "Helmet", + "MaterialType": "BodyArmor", "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 75 + "x": 0, + "y": 0, + "z": 80 }, - "DeafStrength": "Low", - "BluntThroughput": 0.208, - "ArmorMaterial": "UHMWPE", + "DeafStrength": "None", + "BluntThroughput": 0.2376, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": -1, + "mousePenalty": -4, + "weaponErgonomicPenalty": -1 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, + "59e7635f86f7742cbf2c1095": { + "_id": "59e7635f86f7742cbf2c1095", + "_name": "module_3m", + "_parent": "5448e54d4bdc2dcc718b4568", + "_type": "Item", + "_props": { + "Name": "Module 3M", + "ShortName": "Module 3M", + "Description": "Module 3M", + "Weight": 6, + "BackgroundColor": "blue", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_module_3m/item_equipment_armor_module_3m.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 95, + "RepairSpeed": 8, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Soft_armor_front", + "_id": "6570323493b7ea9c330f4cfa", + "_parent": "59e7635f86f7742cbf2c1095", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65702f87722744627e05cdb8", + "Filter": [ + "65702f87722744627e05cdb8" + ], + "armorColliders": [ + "RibcageLow", + "RibcageUp" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "65703261dad6eb07fb0c2546", + "_parent": "59e7635f86f7742cbf2c1095", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65702fe593b7ea9c330f4ce8", + "Filter": [ + "65702fe593b7ea9c330f4ce8" + ], + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_left", + "_id": "657032c8722744627e05cdd0", + "_parent": "59e7635f86f7742cbf2c1095", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6570305d93b7ea9c330f4ced", + "Filter": [ + "6570305d93b7ea9c330f4ced" + ], + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_right", + "_id": "657032c8722744627e05cdd1", + "_parent": "59e7635f86f7742cbf2c1095", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65703472c9030b928a0a8a78", + "Filter": [ + "65703472c9030b928a0a8a78" + ], + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.4158, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": -1, + "mousePenalty": -1, + "weaponErgonomicPenalty": 0 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, + "5df8a2ca86f7740bfe6df777": { + "_id": "5df8a2ca86f7740bfe6df777", + "_name": "item_equipment_armor_6b2", + "_parent": "5448e54d4bdc2dcc718b4568", + "_type": "Item", + "_props": { + "Name": "gjel", + "ShortName": "gjel", + "Description": "gjel", + "Weight": 5.4, + "BackgroundColor": "blue", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_6b2/item_equipment_armor_6b2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 143, + "RepairSpeed": 8, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Soft_armor_front", + "_id": "656fd78330d59ab9020aa496", + "_parent": "5df8a2ca86f7740bfe6df777", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "656fd7c32668ef0402028fb9", + "Filter": [ + "656fd7c32668ef0402028fb9" + ], + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "656fd9ec3a0c75d02f080b25", + "_parent": "5df8a2ca86f7740bfe6df777", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "656fd89bf5a9631d4e042575", + "Filter": [ + "656fd89bf5a9631d4e042575" + ], + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2853, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": -1, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, + "5e4abb5086f77406975c9342": { + "_id": "5e4abb5086f77406975c9342", + "_name": "item_equipment_armor_slick", + "_parent": "5448e54d4bdc2dcc718b4568", + "_type": "Item", + "_props": { + "Name": "gjel", + "ShortName": "gjel", + "Description": "gjel", + "Weight": 1.3, + "BackgroundColor": "blue", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_slick/ar_slick.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 1063, + "RepairSpeed": 8, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Front_plate", + "_id": "6575e7bdf6a13a7b7100ad9f", + "_parent": "5e4abb5086f77406975c9342", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fa76500d62bcd2e024080", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "6575e7bdf6a13a7b7100ada0", + "_parent": "5e4abb5086f77406975c9342", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fa76500d62bcd2e024080", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_front", + "_id": "6575e7bdf6a13a7b7100ada1", + "_parent": "5e4abb5086f77406975c9342", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575e71760703324250610c3", + "Filter": [ + "6575e71760703324250610c3" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "6575e7bdf6a13a7b7100ada2", + "_parent": "5e4abb5086f77406975c9342", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575e72660703324250610c7", + "Filter": [ + "6575e72660703324250610c7" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2259, + "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [], "armorPlateColliders": [], "speedPenaltyPercent": 0, - "mousePenalty": -2, - "weaponErgonomicPenalty": -1 + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 }, - "_proto": "5645bc214bdc2d363b8b4571" + "_proto": "545cdb794bdc2d3a198b456a" }, "5fd4c474dd870108a754b241": { "_id": "5fd4c474dd870108a754b241", @@ -281913,6 +283426,916 @@ }, "_proto": "545cdb794bdc2d3a198b456a" }, + "64be79c487d1510151095552": { + "_id": "64be79c487d1510151095552", + "_name": "item_equipment_armor_kora_kulon_black", + "_parent": "5448e54d4bdc2dcc718b4568", + "_type": "Item", + "_props": { + "Name": "kirasa", + "ShortName": "kirasa", + "Description": "kirasa", + "Weight": 11.1, + "BackgroundColor": "blue", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_kora_kulon/item_equipment_armor_kora_kulon_black.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 143, + "RepairSpeed": 8, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Soft_armor_front", + "_id": "65704cb64f41c410d004edb9", + "_parent": "64be79c487d1510151095552", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6570495b45d573133d0d6adb", + "Filter": [ + "6570495b45d573133d0d6adb" + ], + "armorColliders": [ + "RibcageLow", + "RibcageUp" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "65704cb64f41c410d004edba", + "_parent": "64be79c487d1510151095552", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657049d23425b19bbc0502f0", + "Filter": [ + "657049d23425b19bbc0502f0" + ], + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.298, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": -1, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, + "6530e8587cbfc1e309011e37": { + "_id": "6530e8587cbfc1e309011e37", + "_name": "item_equipment_facecover_BOSS_zryachi_balaclava_closed_HALLOWEEN", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "Balaclava", + "ShortName": "Balaclava", + "Description": "Balaclava", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/facecover_boss_zryachi_closed/facecover_boss_zryachi_closed_halloween.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7d8524597762b472f9d1" + }, + "5bd0716d86f774171822ef4b": { + "_id": "5bd0716d86f774171822ef4b", + "_name": "item_equipment_facecover_HALLOWEEN_Micheal", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "item_equipment_facecover_HALLOWEEN_Micheal", + "ShortName": "item_equipment_facecover_HALLOWEEN_Micheal", + "Description": "item_equipment_facecover_HALLOWEEN_Micheal\n", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/facecover_halloween_michael/item_equipment_facecover_halloween_micheal.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "59e770f986f7742cbe3164ef", + "572b7d8524597762b472f9d1", + "5aa2b87de5b5b00016327c25", + "5aa2a7e8e5b5b00016327c16", + "5aa2b89be5b5b0001569311f", + "5aa2b8d7e5b5b00014028f4a", + "65709d2d21b9f815e208ff95", + "65719f0775149d62ce0a670b", + "65749ccf33fdc9c0cf06d3ca", + "65749cb8e0423b9ebe0c79c9" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7d8524597762b472f9d1" + }, + "572b7f1624597762ae139822": { + "_id": "572b7f1624597762ae139822", + "_name": "balaclava", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "Balaclava", + "ShortName": "Balaclava", + "Description": "Balaclava", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/facecover_balaclava/item_equipment_facecover_balaclava.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7d8524597762b472f9d1" + }, + "5c0e53c886f7747fa54205c7": { + "_id": "5c0e53c886f7747fa54205c7", + "_name": "item_equipment_armor_6b13_digital", + "_parent": "5448e54d4bdc2dcc718b4568", + "_type": "Item", + "_props": { + "Name": "gjel", + "ShortName": "gjel", + "Description": "gjel", + "Weight": 2.8, + "BackgroundColor": "blue", + "Width": 3, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_6b13/item_equipment_armor_6b13_digital.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 319, + "RepairSpeed": 8, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "front_plate", + "_id": "654a715a60c44e441f07ee11", + "_parent": "5c0e53c886f7747fa54205c7", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656f603f94b480b8a500c0d6", + "Filter": [ + "656f603f94b480b8a500c0d6", + "656f611f94b480b8a500c0db", + "656f57dc27aed95beb08f628", + "656f63c027aed95beb08f62c" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Korund_chest" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "back_plate", + "_id": "654a71a0496a1a62950660c7", + "_parent": "5c0e53c886f7747fa54205c7", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656efd66034e8e01c407f35c", + "Filter": [ + "654a4a964b446df1ad03f192", + "656efaf54772930db4031ff5", + "656efd66034e8e01c407f35c" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_6B13_back" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_front", + "_id": "654a73f384066949090bbfec", + "_parent": "5c0e53c886f7747fa54205c7", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "654a8b0b0337d53f9102c2ae", + "Filter": [ + "654a8b0b0337d53f9102c2ae" + ], + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_back", + "_id": "654a750d84066949090bbfed", + "_parent": "5c0e53c886f7747fa54205c7", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "654a8976f414fcea4004d78b", + "Filter": [ + "654a8976f414fcea4004d78b" + ], + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_left", + "_id": "654a7556496a1a62950660cc", + "_parent": "5c0e53c886f7747fa54205c7", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "654a8b3df414fcea4004d78f", + "Filter": [ + "654a8b3df414fcea4004d78f" + ], + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_right", + "_id": "654a7578496a1a62950660cd", + "_parent": "5c0e53c886f7747fa54205c7", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "654a8b80f414fcea4004d797", + "Filter": [ + "654a8b80f414fcea4004d797" + ], + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Collar", + "_id": "65707c02cb6125ce450fab38", + "_parent": "5c0e53c886f7747fa54205c7", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "654a8ae00337d53f9102c2aa", + "Filter": [ + "654a8ae00337d53f9102c2aa" + ], + "armorColliders": [ + "NeckFront", + "NeckBack" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Groin", + "_id": "65707c41beb887cba9033458", + "_parent": "5c0e53c886f7747fa54205c7", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "654a8bc5f414fcea4004d79b", + "Filter": [ + "654a8bc5f414fcea4004d79b" + ], + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.32, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": -1, + "mousePenalty": 0, + "weaponErgonomicPenalty": -1 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, + "63737f448b28897f2802b874": { + "_id": "63737f448b28897f2802b874", + "_name": "item_equipment_armor_hexatac", + "_parent": "5448e54d4bdc2dcc718b4568", + "_type": "Item", + "_props": { + "Name": "gjel", + "ShortName": "gjel", + "Description": "gjel", + "Weight": 0.47, + "BackgroundColor": "blue", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_hexatac/item_equipment_armor_hexatac.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 1063, + "RepairSpeed": 8, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Front_plate", + "_id": "6575b9fc52b7f8c76a05edca", + "_parent": "63737f448b28897f2802b874", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fae5f7c2d57afe200c0d7", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fafe3498d1b7e3e071da4", + "656fa0fb498d1b7e3e071d9c", + "656fa76500d62bcd2e024080", + "656fad8c498d1b7e3e071da0", + "656fa25e94b480b8a500c0e0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "6575b9fc52b7f8c76a05edcb", + "_parent": "63737f448b28897f2802b874", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fae5f7c2d57afe200c0d7", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa25e94b480b8a500c0e0", + "656fa76500d62bcd2e024080", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2259, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -1, + "weaponErgonomicPenalty": 0 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, "5c0e5edb86f77461f55ed1f7": { "_id": "5c0e5edb86f77461f55ed1f7", "_name": "item_equipment_armor_zhuk3", @@ -282255,23 +284678,23 @@ }, "_proto": "545cdb794bdc2d3a198b456a" }, - "6038b4b292ec1c3103795a0b": { - "_id": "6038b4b292ec1c3103795a0b", - "_name": "item_equipment_armor_slick_tan", + "5648a7494bdc2d9d488b4583": { + "_id": "5648a7494bdc2d9d488b4583", + "_name": "notHeavy", "_parent": "5448e54d4bdc2dcc718b4568", "_type": "Item", "_props": { - "Name": "gjel", - "ShortName": "gjel", - "Description": "gjel", - "Weight": 1.3, + "Name": "PACA", + "ShortName": "PACA", + "Description": "PACA", + "Weight": 3.5, "BackgroundColor": "blue", "Width": 3, "Height": 3, "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_slick/item_equipment_armor_slick_tan.bundle", + "path": "assets/content/items/equipment/armor_paca/item_equipment_armor_paca.bundle", "rcid": "" }, "UsePrefab": { @@ -282291,7 +284714,7 @@ "LootExperience": 45, "ExamineExperience": 2, "HideEntrails": false, - "RepairCost": 1063, + "RepairCost": 106, "RepairSpeed": 8, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -282317,104 +284740,23 @@ "IsUnremovable": false, "Grids": [], "Slots": [ - { - "_name": "Front_plate", - "_id": "657641ff20cc24d17102b144", - "_parent": "6038b4b292ec1c3103795a0b", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fa76500d62bcd2e024080", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa99800d62bcd2e024088", - "656fa8d700d62bcd2e024084", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fb0bd7c2d57afe200c0dc", - "656fac30c6baea13cd07e10c", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "657641ff20cc24d17102b145", - "_parent": "6038b4b292ec1c3103795a0b", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fa76500d62bcd2e024080", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa99800d62bcd2e024088", - "656fa8d700d62bcd2e024084", - "656faf0ca0dce000a2020f77", - "656fae5f7c2d57afe200c0d7", - "656fafe3498d1b7e3e071da4", - "656fa0fb498d1b7e3e071d9c", - "656fa25e94b480b8a500c0e0", - "656fa76500d62bcd2e024080", - "656fa61e94b480b8a500c0e8", - "656fad8c498d1b7e3e071da0", - "656fa53d94b480b8a500c0e4", - "656f9fa0498d1b7e3e071d98", - "656fb0bd7c2d57afe200c0dc", - "656fac30c6baea13cd07e10c", - "656fb21fa0dce000a2020f7c", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, { "_name": "Soft_armor_front", - "_id": "657641ff20cc24d17102b146", - "_parent": "6038b4b292ec1c3103795a0b", + "_id": "65539be98dd65babad098050", + "_parent": "5648a7494bdc2d9d488b4583", "_props": { "filters": [ { "locked": true, - "Plate": "6575e71760703324250610c3", + "Plate": "65703d866584602f7d057a8a", "Filter": [ - "6575e71760703324250610c3" + "65703d866584602f7d057a8a" ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" + "armorColliders": [ + "RibcageLow", + "RibcageUp" ], + "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false } ] @@ -282425,20 +284767,69 @@ }, { "_name": "Soft_armor_back", - "_id": "657641ff20cc24d17102b147", - "_parent": "6038b4b292ec1c3103795a0b", + "_id": "657040eced97862163088e30", + "_parent": "5648a7494bdc2d9d488b4583", "_props": { "filters": [ { "locked": true, - "Plate": "6575e72660703324250610c7", + "Plate": "65703fa06584602f7d057a8e", "Filter": [ - "6575e72660703324250610c7" + "65703fa06584602f7d057a8e" ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" + "armorColliders": [ + "SpineDown", + "SpineTop" ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_left", + "_id": "657041154e67e8ec7a0d266f", + "_parent": "5648a7494bdc2d9d488b4583", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65703fe46a912c8b5c03468b", + "Filter": [ + "65703fe46a912c8b5c03468b" + ], + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_right", + "_id": "6570413e6584602f7d057ace", + "_parent": "5648a7494bdc2d9d488b4583", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657040374e67e8ec7a0d261c", + "Filter": [ + "657040374e67e8ec7a0d261c" + ], + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false } ] @@ -282468,35 +284859,763 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.2259, + "BluntThroughput": 0.3564, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [], "armorPlateColliders": [], - "speedPenaltyPercent": -5, - "mousePenalty": -1, - "weaponErgonomicPenalty": 0 + "speedPenaltyPercent": -1, + "mousePenalty": 0, + "weaponErgonomicPenalty": -1 }, "_proto": "545cdb794bdc2d3a198b456a" }, - "5c0e57ba86f7747fa141986d": { - "_id": "5c0e57ba86f7747fa141986d", - "_name": "item_equipment_armor_6b23_mflora", + "62a61bbf8ec41a51b34758d2": { + "_id": "62a61bbf8ec41a51b34758d2", + "_name": "item_equipment_facecover_pipe", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "item_equipment_mustache", + "ShortName": "item_equipment_mustache", + "Description": "item_equipment_mustache", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/facecover_pipe/item_equipment_facecover_pipe.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": true, + "DiscardLimit": 1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7d8524597762b472f9d1" + }, + "5bd073a586f7747e6f135799": { + "_id": "5bd073a586f7747e6f135799", + "_name": "item_equipment_mustache", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "item_equipment_mustache", + "ShortName": "item_equipment_mustache", + "Description": "item_equipment_mustache", + "Weight": 0.07, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/mustache/item_equipment_mustache.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": true, + "DiscardLimit": 1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7d8524597762b472f9d1" + }, + "5b44cd8b86f774503d30cba2": { + "_id": "5b44cd8b86f774503d30cba2", + "_name": "item_equipment_armor_iotv", + "_parent": "5448e54d4bdc2dcc718b4568", + "_type": "Item", + "_props": { + "Name": "iotv_full", + "ShortName": "iotv_full", + "Description": "iotv_full", + "Weight": 9.08, + "BackgroundColor": "blue", + "Width": 4, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_iotv/item_equipment_armor_iotv.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 80, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 1360, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Front_plate", + "_id": "6575ca9eefc786cd9101a5f1", + "_parent": "5b44cd8b86f774503d30cba2", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fa8d700d62bcd2e024084", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "6575ca9eefc786cd9101a5f2", + "_parent": "5b44cd8b86f774503d30cba2", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fa8d700d62bcd2e024084", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa99800d62bcd2e024088", + "656fa8d700d62bcd2e024084", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Left_side_plate", + "_id": "6575ca9eefc786cd9101a5f3", + "_parent": "5b44cd8b86f774503d30cba2", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "6557458f83942d705f0c4962", + "Filter": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_left_high" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Right_side_plate", + "_id": "6575ca9eefc786cd9101a5f4", + "_parent": "5b44cd8b86f774503d30cba2", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "6557458f83942d705f0c4962", + "Filter": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_right_high" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_front", + "_id": "6575ca9eefc786cd9101a5f5", + "_parent": "5b44cd8b86f774503d30cba2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c2adefc786cd9101a5d9", + "Filter": [ + "6575c2adefc786cd9101a5d9" + ], + "armorColliders": [ + "RibcageLow", + "RibcageUp" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "6575ca9eefc786cd9101a5f6", + "_parent": "5b44cd8b86f774503d30cba2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c2be52b7f8c76a05ee25", + "Filter": [ + "6575c2be52b7f8c76a05ee25" + ], + "armorColliders": [ + "SpineDown", + "SpineTop" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_left", + "_id": "6575ca9eefc786cd9101a5f7", + "_parent": "5b44cd8b86f774503d30cba2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c2cd52b7f8c76a05ee29", + "Filter": [ + "6575c2cd52b7f8c76a05ee29" + ], + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_right", + "_id": "6575ca9eefc786cd9101a5f8", + "_parent": "5b44cd8b86f774503d30cba2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c2d852b7f8c76a05ee2d", + "Filter": [ + "6575c2d852b7f8c76a05ee2d" + ], + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Collar", + "_id": "6575ca9eefc786cd9101a5f9", + "_parent": "5b44cd8b86f774503d30cba2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c2e4efc786cd9101a5dd", + "Filter": [ + "6575c2e4efc786cd9101a5dd" + ], + "armorColliders": [ + "NeckFront", + "NeckBack" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Shoulder_l", + "_id": "6575ca9eefc786cd9101a5fa", + "_parent": "5b44cd8b86f774503d30cba2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c2f7efc786cd9101a5e1", + "Filter": [ + "6575c2f7efc786cd9101a5e1" + ], + "armorColliders": [ + "LeftUpperArm" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Shoulder_r", + "_id": "6575ca9eefc786cd9101a5fb", + "_parent": "5b44cd8b86f774503d30cba2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c30352b7f8c76a05ee31", + "Filter": [ + "6575c30352b7f8c76a05ee31" + ], + "armorColliders": [ + "RightUpperArm" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Groin", + "_id": "6575ca9eefc786cd9101a5fc", + "_parent": "5b44cd8b86f774503d30cba2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c31b52b7f8c76a05ee35", + "Filter": [ + "6575c31b52b7f8c76a05ee35" + ], + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Groin_back", + "_id": "6575ca9eefc786cd9101a5fd", + "_parent": "5b44cd8b86f774503d30cba2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c326c6700bd6b40e8a80", + "Filter": [ + "6575c326c6700bd6b40e8a80" + ], + "armorColliders": [ + "PelvisBack" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2619, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": -8, + "mousePenalty": -6, + "weaponErgonomicPenalty": -8 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, + "5ab8f39486f7745cd93a1cca": { + "_id": "5ab8f39486f7745cd93a1cca", + "_name": "balaclava_cg", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "Balaclava cg", + "ShortName": "Balaclava cg", + "Description": "Balaclava cg", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/facecover_coldgear/item_equipment_facecover_coldgear.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7d8524597762b472f9d1" + }, + "5f5f41476bdad616ad46d631": { + "_id": "5f5f41476bdad616ad46d631", + "_name": "item_equipment_armor_korundvm", "_parent": "5448e54d4bdc2dcc718b4568", "_type": "Item", "_props": { "Name": "gjel", "ShortName": "gjel", "Description": "gjel", - "Weight": 3.3, + "Weight": 1.9, "BackgroundColor": "blue", "Width": 3, "Height": 4, "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_6b23/item_equipment_armor_6b23_mflora.bundle", + "path": "assets/content/items/equipment/armor_korundvm/item_equipment_armor_korundvm.bundle", "rcid": "" }, "UsePrefab": { @@ -282516,7 +285635,7 @@ "LootExperience": 60, "ExamineExperience": 2, "HideEntrails": false, - "RepairCost": 128, + "RepairCost": 1009, "RepairSpeed": 8, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -282544,21 +285663,17 @@ "Slots": [ { "_name": "Front_plate", - "_id": "65708273d9bd7c9a2f055b5e", - "_parent": "5c0e57ba86f7747fa141986d", + "_id": "65731e11d9d89ff7ac0d95c9", + "_parent": "5f5f41476bdad616ad46d631", "_props": { "filters": [ { "locked": false, - "Plate": "656f603f94b480b8a500c0d6", + "Plate": "656f664200d62bcd2e024077", "Filter": [ "656f664200d62bcd2e024077", "654a4dea7c17dec2f50cc86a", - "656f66b5c6baea13cd07e108", - "656f611f94b480b8a500c0db", - "656f603f94b480b8a500c0d6", - "656f57dc27aed95beb08f628", - "656f63c027aed95beb08f62c" + "656f66b5c6baea13cd07e108" ], "armorColliders": [], "armorPlateColliders": [ @@ -282574,13 +285689,13 @@ }, { "_name": "Back_plate", - "_id": "65708298cb3ec95a4a030a53", - "_parent": "5c0e57ba86f7747fa141986d", + "_id": "65731e11d9d89ff7ac0d95ca", + "_parent": "5f5f41476bdad616ad46d631", "_props": { "filters": [ { "locked": false, - "Plate": "657b22485f444d6dff0c6c2f", + "Plate": "657b2797c3dbcb01d60c35ea", "Filter": [ "657b22485f444d6dff0c6c2f", "657b2797c3dbcb01d60c35ea", @@ -282598,17 +285713,65 @@ "_mergeSlotWithChildren": true, "_proto": "64479fdf9731c8fadc0642c1" }, + { + "_name": "Left_side_plate", + "_id": "65731e11d9d89ff7ac0d95cb", + "_parent": "5f5f41476bdad616ad46d631", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "654a4f8bc721968a4404ef18", + "Filter": [ + "654a4f8bc721968a4404ef18" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Korund_side_left_high" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Right_side_plate", + "_id": "65731e11d9d89ff7ac0d95cc", + "_parent": "5f5f41476bdad616ad46d631", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "654a4f8bc721968a4404ef18", + "Filter": [ + "654a4f8bc721968a4404ef18" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Korund_side_right_high" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, { "_name": "Soft_armor_front", - "_id": "657083bad9bd7c9a2f055b7c", - "_parent": "5c0e57ba86f7747fa141986d", + "_id": "65731e11d9d89ff7ac0d95cd", + "_parent": "5f5f41476bdad616ad46d631", "_props": { "filters": [ { "locked": true, - "Plate": "65707fc348c7a887f2010432", + "Plate": "65731b46cea9255e2102360a", "Filter": [ - "65707fc348c7a887f2010432" + "65731b46cea9255e2102360a" ], "armorColliders": [ "RibcageLow", @@ -282625,15 +285788,15 @@ }, { "_name": "Soft_armor_back", - "_id": "657083bad9bd7c9a2f055b7d", - "_parent": "5c0e57ba86f7747fa141986d", + "_id": "65731e11d9d89ff7ac0d95ce", + "_parent": "5f5f41476bdad616ad46d631", "_props": { "filters": [ { "locked": true, - "Plate": "6570800612755ae0d907acf8", + "Plate": "65731b4fcea9255e2102360e", "Filter": [ - "6570800612755ae0d907acf8" + "65731b4fcea9255e2102360e" ], "armorColliders": [ "SpineDown", @@ -282650,15 +285813,15 @@ }, { "_name": "Soft_armor_left", - "_id": "657083bad9bd7c9a2f055b7e", - "_parent": "5c0e57ba86f7747fa141986d", + "_id": "65731e11d9d89ff7ac0d95cf", + "_parent": "5f5f41476bdad616ad46d631", "_props": { "filters": [ { "locked": true, - "Plate": "65708070f65e2491bf00972c", + "Plate": "65731b576e709cddd001ec3f", "Filter": [ - "65708070f65e2491bf00972c" + "65731b576e709cddd001ec3f" ], "armorColliders": [ "LeftSideChestDown" @@ -282674,15 +285837,15 @@ }, { "_name": "soft_armor_right", - "_id": "657083e3cb3ec95a4a030a6f", - "_parent": "5c0e57ba86f7747fa141986d", + "_id": "65731e11d9d89ff7ac0d95d0", + "_parent": "5f5f41476bdad616ad46d631", "_props": { "filters": [ { "locked": true, - "Plate": "657080a212755ae0d907ad04", + "Plate": "65731b60ff6dc44a7d068c4a", "Filter": [ - "657080a212755ae0d907ad04" + "65731b60ff6dc44a7d068c4a" ], "armorColliders": [ "RightSideChestDown" @@ -282698,19 +285861,19 @@ }, { "_name": "Collar", - "_id": "6570840b66937cbf2500d42c", - "_parent": "5c0e57ba86f7747fa141986d", + "_id": "65731e11d9d89ff7ac0d95d1", + "_parent": "5f5f41476bdad616ad46d631", "_props": { "filters": [ { "locked": true, - "Plate": "657080ca12755ae0d907ad5e", + "Plate": "65731b666e709cddd001ec43", "Filter": [ - "657080ca12755ae0d907ad5e" + "65731b666e709cddd001ec43" ], "armorColliders": [ - "NeckBack", - "NeckFront" + "NeckFront", + "NeckBack" ], "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false @@ -282723,15 +285886,15 @@ }, { "_name": "Groin", - "_id": "65708458d9bd7c9a2f055b82", - "_parent": "5c0e57ba86f7747fa141986d", + "_id": "65731e11d9d89ff7ac0d95d2", + "_parent": "5f5f41476bdad616ad46d631", "_props": { "filters": [ { "locked": true, - "Plate": "65708122f65e2491bf009755", + "Plate": "65731b716e709cddd001ec47", "Filter": [ - "65708122f65e2491bf009755" + "65731b716e709cddd001ec47" ], "armorColliders": [ "Pelvis" @@ -282747,15 +285910,15 @@ }, { "_name": "Groin_back", - "_id": "65708458d9bd7c9a2f055b83", - "_parent": "5c0e57ba86f7747fa141986d", + "_id": "65731e11d9d89ff7ac0d95d3", + "_parent": "5f5f41476bdad616ad46d631", "_props": { "filters": [ { "locked": true, - "Plate": "65708165696fe382cf073255", + "Plate": "65731b6b6042b0f210020ef6", "Filter": [ - "65708165696fe382cf073255" + "65731b6b6042b0f210020ef6" ], "armorColliders": [ "PelvisBack" @@ -282790,6 +285953,631 @@ "z": 80 }, "DeafStrength": "None", + "BluntThroughput": 0.2853, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": -5, + "mousePenalty": -2.5, + "weaponErgonomicPenalty": -3 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, + "5b44cf1486f77431723e3d05": { + "_id": "5b44cf1486f77431723e3d05", + "_name": "item_equipment_armor_iotv_1", + "_parent": "5448e54d4bdc2dcc718b4568", + "_type": "Item", + "_props": { + "Name": "iotv_assault", + "ShortName": "iotv_assault", + "Description": "iotv_assault", + "Weight": 8.18, + "BackgroundColor": "blue", + "Width": 4, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_iotv_1/item_equipment_armor_iotv_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 1360, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Front_plate", + "_id": "6575c958c6700bd6b40e8a94", + "_parent": "5b44cf1486f77431723e3d05", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fa8d700d62bcd2e024084", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "6575c958c6700bd6b40e8a95", + "_parent": "5b44cf1486f77431723e3d05", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fa8d700d62bcd2e024084", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa25e94b480b8a500c0e0", + "656fa76500d62bcd2e024080", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656fb21fa0dce000a2020f7c", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Left_side_plate", + "_id": "6575c958c6700bd6b40e8a96", + "_parent": "5b44cf1486f77431723e3d05", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "6557458f83942d705f0c4962", + "Filter": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_left_high" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Right_side_plate", + "_id": "6575c958c6700bd6b40e8a97", + "_parent": "5b44cf1486f77431723e3d05", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "6557458f83942d705f0c4962", + "Filter": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_right_high" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_front", + "_id": "6575c958c6700bd6b40e8a98", + "_parent": "5b44cf1486f77431723e3d05", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c3b3dc9932aed601c5f4", + "Filter": [ + "6575c3b3dc9932aed601c5f4" + ], + "armorColliders": [ + "RibcageLow", + "RibcageUp" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "6575c958c6700bd6b40e8a99", + "_parent": "5b44cf1486f77431723e3d05", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c3beefc786cd9101a5ed", + "Filter": [ + "6575c3beefc786cd9101a5ed" + ], + "armorColliders": [ + "SpineDown", + "SpineTop" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_left", + "_id": "6575c958c6700bd6b40e8a9a", + "_parent": "5b44cf1486f77431723e3d05", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c3cdc6700bd6b40e8a90", + "Filter": [ + "6575c3cdc6700bd6b40e8a90" + ], + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_right", + "_id": "6575c958c6700bd6b40e8a9b", + "_parent": "5b44cf1486f77431723e3d05", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c3dfdc9932aed601c5f8", + "Filter": [ + "6575c3dfdc9932aed601c5f8" + ], + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Collar", + "_id": "6575c958c6700bd6b40e8a9c", + "_parent": "5b44cf1486f77431723e3d05", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c3ec52b7f8c76a05ee39", + "Filter": [ + "6575c3ec52b7f8c76a05ee39" + ], + "armorColliders": [ + "NeckFront", + "NeckBack" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Shoulder_l", + "_id": "6575c958c6700bd6b40e8a9d", + "_parent": "5b44cf1486f77431723e3d05", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c3fd52b7f8c76a05ee3d", + "Filter": [ + "6575c3fd52b7f8c76a05ee3d" + ], + "armorColliders": [ + "LeftUpperArm" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Shoulder_r", + "_id": "6575c958c6700bd6b40e8a9e", + "_parent": "5b44cf1486f77431723e3d05", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575c40c52b7f8c76a05ee41", + "Filter": [ + "6575c40c52b7f8c76a05ee41" + ], + "armorColliders": [ + "RightUpperArm" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2619, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": -5, + "mousePenalty": -4, + "weaponErgonomicPenalty": -5 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, + "5c0e655586f774045612eeb2": { + "_id": "5c0e655586f774045612eeb2", + "_name": "item_equipment_armor_trooper", + "_parent": "5448e54d4bdc2dcc718b4568", + "_type": "Item", + "_props": { + "Name": "gjel", + "ShortName": "gjel", + "Description": "gjel", + "Weight": 4.1, + "BackgroundColor": "blue", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_trooper/item_equipment_armor_trooper.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 135, + "RepairSpeed": 8, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Front_plate", + "_id": "6570e2a80b57c03ec90b96fd", + "_parent": "5c0e655586f774045612eeb2", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fad8c498d1b7e3e071da0", + "Filter": [ + "656fa8d700d62bcd2e024084", + "656f9d5900d62bcd2e02407c", + "656fa99800d62bcd2e024088", + "656fa0fb498d1b7e3e071d9c", + "656faf0ca0dce000a2020f77", + "656fae5f7c2d57afe200c0d7", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "6570e2e323c1f638ef0b0eca", + "_parent": "5c0e655586f774045612eeb2", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fad8c498d1b7e3e071da0", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656faf0ca0dce000a2020f77", + "656fae5f7c2d57afe200c0d7", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fa61e94b480b8a500c0e8", + "656fad8c498d1b7e3e071da0", + "656fac30c6baea13cd07e10c", + "656fb21fa0dce000a2020f7c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_front", + "_id": "6570e3184cc0d2ab1e05ed8d", + "_parent": "5c0e655586f774045612eeb2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6570e025615f54368b04fcb0", + "Filter": [ + "6570e025615f54368b04fcb0" + ], + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "6570e33f0b57c03ec90b96ff", + "_parent": "5c0e655586f774045612eeb2", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6570e0610b57c03ec90b96ef", + "Filter": [ + "6570e0610b57c03ec90b96ef" + ], + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", "BluntThroughput": 0.33, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, @@ -282798,27 +286586,27 @@ "armorPlateColliders": [], "speedPenaltyPercent": -1, "mousePenalty": -1, - "weaponErgonomicPenalty": -2.5 + "weaponErgonomicPenalty": 0 }, "_proto": "545cdb794bdc2d3a198b456a" }, - "58ac60eb86f77401897560ff": { - "_id": "58ac60eb86f77401897560ff", - "_name": "balaclava_development", + "5b432b6c5acfc4001a599bf0": { + "_id": "5b432b6c5acfc4001a599bf0", + "_name": "item_equipment_facecover_skullmask", "_parent": "5a341c4686f77469e155819e", "_type": "Item", "_props": { - "Name": "Balaclava_dev", - "ShortName": "Balaclava_dev", - "Description": "Balaclava_dev", - "Weight": 0.1, + "Name": "skullmask", + "ShortName": "skullmask", + "Description": "skullmask", + "Weight": 0.2, "BackgroundColor": "default", "Width": 2, "Height": 2, "StackMaxSize": 1, - "ItemSound": "gear_helmet", + "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/facecover_balaclava/item_equipment_facecover_balaclava_development.bundle", + "path": "assets/content/items/equipment/facecover_skullmask/item_equipment_facecover_skullmask.bundle", "rcid": "" }, "UsePrefab": { @@ -282827,7 +286615,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": false, + "ExaminedByDefault": true, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -282867,13 +286655,13 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, + "BlocksEyewear": true, + "BlocksHeadwear": true, "BlocksFaceCover": false, - "Durability": 100000, - "MaxDurability": 100000, - "armorClass": "10", - "Indestructibility": 1, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", "HasHinge": false, @@ -282896,23 +286684,23 @@ }, "_proto": "572b7d8524597762b472f9d1" }, - "5ca2151486f774244a3b8d30": { - "_id": "5ca2151486f774244a3b8d30", - "_name": "item_equipment_armor_redut_m", + "5c0e541586f7747fa54205c9": { + "_id": "5c0e541586f7747fa54205c9", + "_name": "item_equipment_armor_6b13_killa", "_parent": "5448e54d4bdc2dcc718b4568", "_type": "Item", "_props": { - "Name": "iotv_mob", - "ShortName": "iotv_mob", - "Description": "iotv_mob", - "Weight": 7.7, + "Name": "gjel", + "ShortName": "gjel", + "Description": "gjel", + "Weight": 2.8, "BackgroundColor": "blue", "Width": 3, "Height": 4, "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_redut_m/item_equipment_armor_redut_m.bundle", + "path": "assets/content/items/equipment/armor_6b13/item_equipment_armor_6b13_killa.bundle", "rcid": "" }, "UsePrefab": { @@ -282921,7 +286709,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": true, + "ExaminedByDefault": false, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -282930,10 +286718,10 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 60, - "ExamineExperience": 2, + "ExamineExperience": 100, "HideEntrails": false, - "RepairCost": 796, - "RepairSpeed": 10, + "RepairCost": 956, + "RepairSpeed": 8, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -282960,38 +286748,22 @@ "Slots": [ { "_name": "Front_plate", - "_id": "6575df2c0546f8b1de093dfa", - "_parent": "5ca2151486f774244a3b8d30", + "_id": "6575eb77da698a4e980677b7", + "_parent": "5c0e541586f7747fa54205c9", "_props": { "filters": [ { "locked": false, - "Plate": "65573fa5655447403702a816", + "Plate": "656f611f94b480b8a500c0db", "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" + "656f63c027aed95beb08f62c", + "656f57dc27aed95beb08f628", + "656f611f94b480b8a500c0db", + "656f603f94b480b8a500c0d6" ], "armorColliders": [], "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" + "Plate_Korund_chest" ], "bluntDamageReduceFromSoftArmor": true } @@ -283003,90 +286775,21 @@ }, { "_name": "Back_plate", - "_id": "6575df2c0546f8b1de093dfb", - "_parent": "5ca2151486f774244a3b8d30", + "_id": "6575eb77da698a4e980677b8", + "_parent": "5c0e541586f7747fa54205c9", "_props": { "filters": [ { "locked": false, - "Plate": "65573fa5655447403702a816", + "Plate": "656efaf54772930db4031ff5", "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" + "654a4a964b446df1ad03f192", + "656efaf54772930db4031ff5", + "656efd66034e8e01c407f35c" ], "armorColliders": [], "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Left_side_plate", - "_id": "6575df2c0546f8b1de093dfc", - "_parent": "5ca2151486f774244a3b8d30", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "", - "Filter": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d", - "64afd81707e2cf40e903a316" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_left_high" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Right_side_plate", - "_id": "6575df2c0546f8b1de093dfd", - "_parent": "5ca2151486f774244a3b8d30", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "", - "Filter": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d", - "64afd81707e2cf40e903a316" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_right_high" + "Plate_6B13_back" ], "bluntDamageReduceFromSoftArmor": true } @@ -283098,15 +286801,15 @@ }, { "_name": "Soft_armor_front", - "_id": "6575df2c0546f8b1de093dfe", - "_parent": "5ca2151486f774244a3b8d30", + "_id": "6575eb77da698a4e980677b9", + "_parent": "5c0e541586f7747fa54205c9", "_props": { "filters": [ { "locked": true, - "Plate": "6575dd3e9e27f4a85e081142", + "Plate": "6575ea3060703324250610da", "Filter": [ - "6575dd3e9e27f4a85e081142" + "6575ea3060703324250610da" ], "armorColliders": [ "RibcageLow", @@ -283123,15 +286826,15 @@ }, { "_name": "Soft_armor_back", - "_id": "6575df2c0546f8b1de093dff", - "_parent": "5ca2151486f774244a3b8d30", + "_id": "6575eb77da698a4e980677ba", + "_parent": "5c0e541586f7747fa54205c9", "_props": { "filters": [ { "locked": true, - "Plate": "6575dd519e27f4a85e081146", + "Plate": "6575ea4cf6a13a7b7100adc4", "Filter": [ - "6575dd519e27f4a85e081146" + "6575ea4cf6a13a7b7100adc4" ], "armorColliders": [ "SpineDown", @@ -283148,15 +286851,15 @@ }, { "_name": "Soft_armor_left", - "_id": "6575df2c0546f8b1de093e00", - "_parent": "5ca2151486f774244a3b8d30", + "_id": "6575eb77da698a4e980677bb", + "_parent": "5c0e541586f7747fa54205c9", "_props": { "filters": [ { "locked": true, - "Plate": "6575dd64945bf78edd04c438", + "Plate": "6575ea5cf6a13a7b7100adc8", "Filter": [ - "6575dd64945bf78edd04c438" + "6575ea5cf6a13a7b7100adc8" ], "armorColliders": [ "LeftSideChestDown" @@ -283172,15 +286875,15 @@ }, { "_name": "soft_armor_right", - "_id": "6575df2c0546f8b1de093e01", - "_parent": "5ca2151486f774244a3b8d30", + "_id": "6575eb77da698a4e980677bc", + "_parent": "5c0e541586f7747fa54205c9", "_props": { "filters": [ { "locked": true, - "Plate": "6575dd6e9d3a0ddf660b9047", + "Plate": "6575ea6760703324250610de", "Filter": [ - "6575dd6e9d3a0ddf660b9047" + "6575ea6760703324250610de" ], "armorColliders": [ "RightSideChestDown" @@ -283196,18 +286899,19 @@ }, { "_name": "Collar", - "_id": "6575df2c0546f8b1de093e02", - "_parent": "5ca2151486f774244a3b8d30", + "_id": "6575eb77da698a4e980677bd", + "_parent": "5c0e541586f7747fa54205c9", "_props": { "filters": [ { "locked": true, - "Plate": "6575dd769d3a0ddf660b904b", + "Plate": "6575ea719c7cad336508e418", "Filter": [ - "6575dd769d3a0ddf660b904b" + "6575ea719c7cad336508e418" ], "armorColliders": [ - "NeckFront" + "NeckFront", + "NeckBack" ], "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false @@ -283220,15 +286924,15 @@ }, { "_name": "Groin", - "_id": "6575df2c0546f8b1de093e03", - "_parent": "5ca2151486f774244a3b8d30", + "_id": "6575eb77da698a4e980677be", + "_parent": "5c0e541586f7747fa54205c9", "_props": { "filters": [ { "locked": true, - "Plate": "6575dd800546f8b1de093df6", + "Plate": "6575ea7c60703324250610e2", "Filter": [ - "6575dd800546f8b1de093df6" + "6575ea7c60703324250610e2" ], "armorColliders": [ "Pelvis" @@ -283241,30 +286945,6 @@ "_required": true, "_mergeSlotWithChildren": true, "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Groin_back", - "_id": "6575df2c0546f8b1de093e04", - "_parent": "5ca2151486f774244a3b8d30", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575dd94945bf78edd04c43c", - "Filter": [ - "6575dd94945bf78edd04c43c" - ], - "armorColliders": [ - "PelvisBack" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" } ], "CanPutIntoDuringTheRaid": true, @@ -283290,290 +286970,11 @@ "BluntThroughput": 0.2376, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": -3, - "mousePenalty": -4, - "weaponErgonomicPenalty": -3 - }, - "_proto": "545cdb794bdc2d3a198b456a" - }, - "64abd93857958b4249003418": { - "_id": "64abd93857958b4249003418", - "_name": "item_equipment_armor_otv_ucp", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "gjel", - "ShortName": "gjel", - "Description": "gjel", - "Weight": 3.8, - "BackgroundColor": "blue", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_otv_ucp/item_equipment_armor_otv_ucp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 112, - "RepairSpeed": 8, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Front_plate", - "_id": "6570f5ed74d84423df065f12", - "_parent": "64abd93857958b4249003418", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fb0bd7c2d57afe200c0dc", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "6570f5ed74d84423df065f13", - "_parent": "64abd93857958b4249003418", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fb0bd7c2d57afe200c0dc", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656faf0ca0dce000a2020f77", - "656fae5f7c2d57afe200c0d7", - "656fafe3498d1b7e3e071da4", - "656fa0fb498d1b7e3e071d9c", - "656fa25e94b480b8a500c0e0", - "656fa76500d62bcd2e024080", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "656fac30c6baea13cd07e10c", - "656fb21fa0dce000a2020f7c", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "6570f5ed74d84423df065f16", - "_parent": "64abd93857958b4249003418", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6570f30b0921c914bf07964c", - "Filter": [ - "6570f30b0921c914bf07964c" - ], - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "6570f5ed74d84423df065f17", - "_parent": "64abd93857958b4249003418", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6570f35cd67d0309980a7acb", - "Filter": [ - "6570f35cd67d0309980a7acb" - ], - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_left", - "_id": "6570f60fd67d0309980a7ad4", - "_parent": "64abd93857958b4249003418", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6570f3890b4ae5847f060dad", - "Filter": [ - "6570f3890b4ae5847f060dad" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "6570f62dd67d0309980a7ad5", - "_parent": "64abd93857958b4249003418", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6570f3bb0b4ae5847f060db2", - "Filter": [ - "6570f3bb0b4ae5847f060db2" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [], "armorPlateColliders": [], - "speedPenaltyPercent": -2, - "mousePenalty": -1, + "speedPenaltyPercent": -1, + "mousePenalty": 0, "weaponErgonomicPenalty": 0 }, "_proto": "545cdb794bdc2d3a198b456a" @@ -284280,23 +287681,23 @@ }, "_proto": "545cdb794bdc2d3a198b456a" }, - "5c0e541586f7747fa54205c9": { - "_id": "5c0e541586f7747fa54205c9", - "_name": "item_equipment_armor_6b13_killa", + "5ca2151486f774244a3b8d30": { + "_id": "5ca2151486f774244a3b8d30", + "_name": "item_equipment_armor_redut_m", "_parent": "5448e54d4bdc2dcc718b4568", "_type": "Item", "_props": { - "Name": "gjel", - "ShortName": "gjel", - "Description": "gjel", - "Weight": 2.8, + "Name": "iotv_mob", + "ShortName": "iotv_mob", + "Description": "iotv_mob", + "Weight": 7.7, "BackgroundColor": "blue", "Width": 3, "Height": 4, "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_6b13/item_equipment_armor_6b13_killa.bundle", + "path": "assets/content/items/equipment/armor_redut_m/item_equipment_armor_redut_m.bundle", "rcid": "" }, "UsePrefab": { @@ -284305,7 +287706,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": false, + "ExaminedByDefault": true, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -284314,10 +287715,10 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 60, - "ExamineExperience": 100, + "ExamineExperience": 2, "HideEntrails": false, - "RepairCost": 956, - "RepairSpeed": 8, + "RepairCost": 796, + "RepairSpeed": 10, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -284344,22 +287745,38 @@ "Slots": [ { "_name": "Front_plate", - "_id": "6575eb77da698a4e980677b7", - "_parent": "5c0e541586f7747fa54205c9", + "_id": "6575df2c0546f8b1de093dfa", + "_parent": "5ca2151486f774244a3b8d30", "_props": { "filters": [ { "locked": false, - "Plate": "656f611f94b480b8a500c0db", + "Plate": "65573fa5655447403702a816", "Filter": [ - "656f63c027aed95beb08f62c", - "656f57dc27aed95beb08f628", - "656f611f94b480b8a500c0db", - "656f603f94b480b8a500c0d6" + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" ], "armorColliders": [], "armorPlateColliders": [ - "Plate_Korund_chest" + "Plate_Granit_SAPI_chest" ], "bluntDamageReduceFromSoftArmor": true } @@ -284371,21 +287788,90 @@ }, { "_name": "Back_plate", - "_id": "6575eb77da698a4e980677b8", - "_parent": "5c0e541586f7747fa54205c9", + "_id": "6575df2c0546f8b1de093dfb", + "_parent": "5ca2151486f774244a3b8d30", "_props": { "filters": [ { "locked": false, - "Plate": "656efaf54772930db4031ff5", + "Plate": "65573fa5655447403702a816", "Filter": [ - "654a4a964b446df1ad03f192", - "656efaf54772930db4031ff5", - "656efd66034e8e01c407f35c" + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" ], "armorColliders": [], "armorPlateColliders": [ - "Plate_6B13_back" + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Left_side_plate", + "_id": "6575df2c0546f8b1de093dfc", + "_parent": "5ca2151486f774244a3b8d30", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "", + "Filter": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_left_high" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Right_side_plate", + "_id": "6575df2c0546f8b1de093dfd", + "_parent": "5ca2151486f774244a3b8d30", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "", + "Filter": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_right_high" ], "bluntDamageReduceFromSoftArmor": true } @@ -284397,15 +287883,15 @@ }, { "_name": "Soft_armor_front", - "_id": "6575eb77da698a4e980677b9", - "_parent": "5c0e541586f7747fa54205c9", + "_id": "6575df2c0546f8b1de093dfe", + "_parent": "5ca2151486f774244a3b8d30", "_props": { "filters": [ { "locked": true, - "Plate": "6575ea3060703324250610da", + "Plate": "6575dd3e9e27f4a85e081142", "Filter": [ - "6575ea3060703324250610da" + "6575dd3e9e27f4a85e081142" ], "armorColliders": [ "RibcageLow", @@ -284422,15 +287908,15 @@ }, { "_name": "Soft_armor_back", - "_id": "6575eb77da698a4e980677ba", - "_parent": "5c0e541586f7747fa54205c9", + "_id": "6575df2c0546f8b1de093dff", + "_parent": "5ca2151486f774244a3b8d30", "_props": { "filters": [ { "locked": true, - "Plate": "6575ea4cf6a13a7b7100adc4", + "Plate": "6575dd519e27f4a85e081146", "Filter": [ - "6575ea4cf6a13a7b7100adc4" + "6575dd519e27f4a85e081146" ], "armorColliders": [ "SpineDown", @@ -284447,15 +287933,15 @@ }, { "_name": "Soft_armor_left", - "_id": "6575eb77da698a4e980677bb", - "_parent": "5c0e541586f7747fa54205c9", + "_id": "6575df2c0546f8b1de093e00", + "_parent": "5ca2151486f774244a3b8d30", "_props": { "filters": [ { "locked": true, - "Plate": "6575ea5cf6a13a7b7100adc8", + "Plate": "6575dd64945bf78edd04c438", "Filter": [ - "6575ea5cf6a13a7b7100adc8" + "6575dd64945bf78edd04c438" ], "armorColliders": [ "LeftSideChestDown" @@ -284471,15 +287957,15 @@ }, { "_name": "soft_armor_right", - "_id": "6575eb77da698a4e980677bc", - "_parent": "5c0e541586f7747fa54205c9", + "_id": "6575df2c0546f8b1de093e01", + "_parent": "5ca2151486f774244a3b8d30", "_props": { "filters": [ { "locked": true, - "Plate": "6575ea6760703324250610de", + "Plate": "6575dd6e9d3a0ddf660b9047", "Filter": [ - "6575ea6760703324250610de" + "6575dd6e9d3a0ddf660b9047" ], "armorColliders": [ "RightSideChestDown" @@ -284495,19 +287981,18 @@ }, { "_name": "Collar", - "_id": "6575eb77da698a4e980677bd", - "_parent": "5c0e541586f7747fa54205c9", + "_id": "6575df2c0546f8b1de093e02", + "_parent": "5ca2151486f774244a3b8d30", "_props": { "filters": [ { "locked": true, - "Plate": "6575ea719c7cad336508e418", + "Plate": "6575dd769d3a0ddf660b904b", "Filter": [ - "6575ea719c7cad336508e418" + "6575dd769d3a0ddf660b904b" ], "armorColliders": [ - "NeckFront", - "NeckBack" + "NeckFront" ], "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false @@ -284520,15 +288005,15 @@ }, { "_name": "Groin", - "_id": "6575eb77da698a4e980677be", - "_parent": "5c0e541586f7747fa54205c9", + "_id": "6575df2c0546f8b1de093e03", + "_parent": "5ca2151486f774244a3b8d30", "_props": { "filters": [ { "locked": true, - "Plate": "6575ea7c60703324250610e2", + "Plate": "6575dd800546f8b1de093df6", "Filter": [ - "6575ea7c60703324250610e2" + "6575dd800546f8b1de093df6" ], "armorColliders": [ "Pelvis" @@ -284541,6 +288026,30 @@ "_required": true, "_mergeSlotWithChildren": true, "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Groin_back", + "_id": "6575df2c0546f8b1de093e04", + "_parent": "5ca2151486f774244a3b8d30", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575dd94945bf78edd04c43c", + "Filter": [ + "6575dd94945bf78edd04c43c" + ], + "armorColliders": [ + "PelvisBack" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" } ], "CanPutIntoDuringTheRaid": true, @@ -284566,14 +288075,108 @@ "BluntThroughput": 0.2376, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, - "ArmorType": "Light", + "ArmorType": "Heavy", "armorColliders": [], "armorPlateColliders": [], - "speedPenaltyPercent": -1, + "speedPenaltyPercent": -3, + "mousePenalty": -4, + "weaponErgonomicPenalty": -3 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, + "62a09dd4621468534a797ac7": { + "_id": "62a09dd4621468534a797ac7", + "_name": "item_equipment_facecover_beard_red", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "item_beard", + "ShortName": "item_beard", + "Description": "item_beard", + "Weight": 0.1, + "BackgroundColor": "violet", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/item_beard/item_equipment_facecover_beard_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, "mousePenalty": 0, "weaponErgonomicPenalty": 0 }, - "_proto": "545cdb794bdc2d3a198b456a" + "_proto": "572b7d8524597762b472f9d1" }, "63626d904aa74b8fe30ab426": { "_id": "63626d904aa74b8fe30ab426", @@ -284669,23 +288272,23 @@ }, "_proto": "572b7d8524597762b472f9d1" }, - "5ab8e79e86f7742d8b372e78": { - "_id": "5ab8e79e86f7742d8b372e78", - "_name": "armor_gjel", + "5c0e5bab86f77461f55ed1f3": { + "_id": "5c0e5bab86f77461f55ed1f3", + "_name": "item_equipment_armor_6b23_digital", "_parent": "5448e54d4bdc2dcc718b4568", "_type": "Item", "_props": { "Name": "gjel", "ShortName": "gjel", "Description": "gjel", - "Weight": 2.95, + "Weight": 3.3, "BackgroundColor": "blue", "Width": 3, - "Height": 3, + "Height": 4, "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_gjel/item_equipment_armor_gjel.bundle", + "path": "assets/content/items/equipment/armor_6b23/item_equipment_armor_6b23_digital.bundle", "rcid": "" }, "UsePrefab": { @@ -284702,10 +288305,10 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 45, + "LootExperience": 60, "ExamineExperience": 2, "HideEntrails": false, - "RepairCost": 478, + "RepairCost": 128, "RepairSpeed": 8, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -284733,18 +288336,17 @@ "Slots": [ { "_name": "Front_plate", - "_id": "657329b58c1cc6dcd9098b76", - "_parent": "5ab8e79e86f7742d8b372e78", + "_id": "6571b47f2933ce1837047122", + "_parent": "5c0e5bab86f77461f55ed1f3", "_props": { "filters": [ { "locked": false, - "Plate": "656f611f94b480b8a500c0db", + "Plate": "654a4dea7c17dec2f50cc86a", "Filter": [ - "656f611f94b480b8a500c0db", - "656f603f94b480b8a500c0d6", - "656f57dc27aed95beb08f628", - "656f63c027aed95beb08f62c" + "656f664200d62bcd2e024077", + "654a4dea7c17dec2f50cc86a", + "656f66b5c6baea13cd07e108" ], "armorColliders": [], "armorPlateColliders": [ @@ -284760,34 +288362,17 @@ }, { "_name": "Back_plate", - "_id": "657329b58c1cc6dcd9098b77", - "_parent": "5ab8e79e86f7742d8b372e78", + "_id": "6571beba7c02ae2060024f1c", + "_parent": "5c0e5bab86f77461f55ed1f3", "_props": { "filters": [ { "locked": false, - "Plate": "65573fa5655447403702a816", + "Plate": "", "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" + "657b22485f444d6dff0c6c2f", + "657b2797c3dbcb01d60c35ea", + "657b28d25f444d6dff0c6c77" ], "armorColliders": [], "armorPlateColliders": [ @@ -284801,69 +288386,17 @@ "_mergeSlotWithChildren": true, "_proto": "64479fdf9731c8fadc0642c1" }, - { - "_name": "Left_side_plate", - "_id": "657329b58c1cc6dcd9098b78", - "_parent": "5ab8e79e86f7742d8b372e78", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "", - "Filter": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d", - "64afd81707e2cf40e903a316" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_left_high" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Right_side_plate", - "_id": "657329b58c1cc6dcd9098b79", - "_parent": "5ab8e79e86f7742d8b372e78", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "", - "Filter": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d", - "64afd81707e2cf40e903a316" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_right_high" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, { "_name": "Soft_armor_front", - "_id": "657329b58c1cc6dcd9098b7a", - "_parent": "5ab8e79e86f7742d8b372e78", + "_id": "6571beba7c02ae2060024f1f", + "_parent": "5c0e5bab86f77461f55ed1f3", "_props": { "filters": [ { "locked": true, - "Plate": "65732688d9d89ff7ac0d9c4c", + "Plate": "6571b27a6d84a2b8b6007f92", "Filter": [ - "65732688d9d89ff7ac0d9c4c" + "6571b27a6d84a2b8b6007f92" ], "armorColliders": [ "RibcageLow", @@ -284880,15 +288413,15 @@ }, { "_name": "Soft_armor_back", - "_id": "657329b58c1cc6dcd9098b7b", - "_parent": "5ab8e79e86f7742d8b372e78", + "_id": "6571beba7c02ae2060024f20", + "_parent": "5c0e5bab86f77461f55ed1f3", "_props": { "filters": [ { "locked": true, - "Plate": "657326978c1cc6dcd9098b56", + "Plate": "6571baa74cb80d995d0a1490", "Filter": [ - "657326978c1cc6dcd9098b56" + "6571baa74cb80d995d0a1490" ], "armorColliders": [ "SpineTop", @@ -284905,15 +288438,15 @@ }, { "_name": "Soft_armor_left", - "_id": "657329b58c1cc6dcd9098b7c", - "_parent": "5ab8e79e86f7742d8b372e78", + "_id": "6571beba7c02ae2060024f21", + "_parent": "5c0e5bab86f77461f55ed1f3", "_props": { "filters": [ { "locked": true, - "Plate": "657326a28c1cc6dcd9098b5a", + "Plate": "6571baac6d84a2b8b6007fa3", "Filter": [ - "657326a28c1cc6dcd9098b5a" + "6571baac6d84a2b8b6007fa3" ], "armorColliders": [ "LeftSideChestDown" @@ -284929,15 +288462,15 @@ }, { "_name": "soft_armor_right", - "_id": "657329b58c1cc6dcd9098b7d", - "_parent": "5ab8e79e86f7742d8b372e78", + "_id": "6571beba7c02ae2060024f22", + "_parent": "5c0e5bab86f77461f55ed1f3", "_props": { "filters": [ { "locked": true, - "Plate": "657326b08c1cc6dcd9098b5e", + "Plate": "6571bab0f41985531a038091", "Filter": [ - "657326b08c1cc6dcd9098b5e" + "6571bab0f41985531a038091" ], "armorColliders": [ "RightSideChestDown" @@ -284953,15 +288486,15 @@ }, { "_name": "Collar", - "_id": "657329b58c1cc6dcd9098b7e", - "_parent": "5ab8e79e86f7742d8b372e78", + "_id": "6571beba7c02ae2060024f23", + "_parent": "5c0e5bab86f77461f55ed1f3", "_props": { "filters": [ { "locked": true, - "Plate": "657326bc5d3a3129fb05f36b", + "Plate": "6571babb4076795e5e07383f", "Filter": [ - "657326bc5d3a3129fb05f36b" + "6571babb4076795e5e07383f" ], "armorColliders": [ "NeckFront", @@ -284975,510 +288508,18 @@ "_required": true, "_mergeSlotWithChildren": true, "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1431, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": -1.5, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "545cdb794bdc2d3a198b456a" - }, - "62a61bbf8ec41a51b34758d2": { - "_id": "62a61bbf8ec41a51b34758d2", - "_name": "item_equipment_facecover_pipe", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "item_equipment_mustache", - "ShortName": "item_equipment_mustache", - "Description": "item_equipment_mustache", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_pipe/item_equipment_facecover_pipe.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": true, - "DiscardLimit": 1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "5b44cd8b86f774503d30cba2": { - "_id": "5b44cd8b86f774503d30cba2", - "_name": "item_equipment_armor_iotv", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "iotv_full", - "ShortName": "iotv_full", - "Description": "iotv_full", - "Weight": 9.08, - "BackgroundColor": "blue", - "Width": 4, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_iotv/item_equipment_armor_iotv.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 80, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 1360, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Front_plate", - "_id": "6575ca9eefc786cd9101a5f1", - "_parent": "5b44cd8b86f774503d30cba2", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fa8d700d62bcd2e024084", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "6575ca9eefc786cd9101a5f2", - "_parent": "5b44cd8b86f774503d30cba2", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fa8d700d62bcd2e024084", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa99800d62bcd2e024088", - "656fa8d700d62bcd2e024084", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Left_side_plate", - "_id": "6575ca9eefc786cd9101a5f3", - "_parent": "5b44cd8b86f774503d30cba2", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "6557458f83942d705f0c4962", - "Filter": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_left_high" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Right_side_plate", - "_id": "6575ca9eefc786cd9101a5f4", - "_parent": "5b44cd8b86f774503d30cba2", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "6557458f83942d705f0c4962", - "Filter": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_right_high" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "6575ca9eefc786cd9101a5f5", - "_parent": "5b44cd8b86f774503d30cba2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575c2adefc786cd9101a5d9", - "Filter": [ - "6575c2adefc786cd9101a5d9" - ], - "armorColliders": [ - "RibcageLow", - "RibcageUp" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "6575ca9eefc786cd9101a5f6", - "_parent": "5b44cd8b86f774503d30cba2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575c2be52b7f8c76a05ee25", - "Filter": [ - "6575c2be52b7f8c76a05ee25" - ], - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_left", - "_id": "6575ca9eefc786cd9101a5f7", - "_parent": "5b44cd8b86f774503d30cba2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575c2cd52b7f8c76a05ee29", - "Filter": [ - "6575c2cd52b7f8c76a05ee29" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "6575ca9eefc786cd9101a5f8", - "_parent": "5b44cd8b86f774503d30cba2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575c2d852b7f8c76a05ee2d", - "Filter": [ - "6575c2d852b7f8c76a05ee2d" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Collar", - "_id": "6575ca9eefc786cd9101a5f9", - "_parent": "5b44cd8b86f774503d30cba2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575c2e4efc786cd9101a5dd", - "Filter": [ - "6575c2e4efc786cd9101a5dd" - ], - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Shoulder_l", - "_id": "6575ca9eefc786cd9101a5fa", - "_parent": "5b44cd8b86f774503d30cba2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575c2f7efc786cd9101a5e1", - "Filter": [ - "6575c2f7efc786cd9101a5e1" - ], - "armorColliders": [ - "LeftUpperArm" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Shoulder_r", - "_id": "6575ca9eefc786cd9101a5fb", - "_parent": "5b44cd8b86f774503d30cba2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575c30352b7f8c76a05ee31", - "Filter": [ - "6575c30352b7f8c76a05ee31" - ], - "armorColliders": [ - "RightUpperArm" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" }, { "_name": "Groin", - "_id": "6575ca9eefc786cd9101a5fc", - "_parent": "5b44cd8b86f774503d30cba2", + "_id": "6571beba7c02ae2060024f24", + "_parent": "5c0e5bab86f77461f55ed1f3", "_props": { "filters": [ { "locked": true, - "Plate": "6575c31b52b7f8c76a05ee35", + "Plate": "6571bac34076795e5e073843", "Filter": [ - "6575c31b52b7f8c76a05ee35" + "6571bac34076795e5e073843" ], "armorColliders": [ "Pelvis" @@ -285494,15 +288535,15 @@ }, { "_name": "Groin_back", - "_id": "6575ca9eefc786cd9101a5fd", - "_parent": "5b44cd8b86f774503d30cba2", + "_id": "6571beba7c02ae2060024f25", + "_parent": "5c0e5bab86f77461f55ed1f3", "_props": { "filters": [ { "locked": true, - "Plate": "6575c326c6700bd6b40e8a80", + "Plate": "6571babf4cb80d995d0a1494", "Filter": [ - "6575c326c6700bd6b40e8a80" + "6571babf4cb80d995d0a1494" ], "armorColliders": [ "PelvisBack" @@ -285537,112 +288578,18 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.2619, + "BluntThroughput": 0.2142, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, - "ArmorType": "Heavy", + "ArmorType": "Light", "armorColliders": [], "armorPlateColliders": [], - "speedPenaltyPercent": -8, - "mousePenalty": -6, - "weaponErgonomicPenalty": -8 + "speedPenaltyPercent": -1, + "mousePenalty": -1, + "weaponErgonomicPenalty": -2.5 }, "_proto": "545cdb794bdc2d3a198b456a" }, - "5ab8f39486f7745cd93a1cca": { - "_id": "5ab8f39486f7745cd93a1cca", - "_name": "balaclava_cg", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "Balaclava cg", - "ShortName": "Balaclava cg", - "Description": "Balaclava cg", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_coldgear/item_equipment_facecover_coldgear.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, "62a09d79de7ac81993580530": { "_id": "62a09d79de7ac81993580530", "_name": "item_equipment_armor_drd", @@ -285836,23 +288783,23 @@ }, "_proto": "545cdb794bdc2d3a198b456a" }, - "64be79e2bf8412471d0d9bcc": { - "_id": "64be79e2bf8412471d0d9bcc", - "_name": "item_equipment_armor_kora_kulon_camo", + "607f20859ee58b18e41ecd90": { + "_id": "607f20859ee58b18e41ecd90", + "_name": "item_equipment_armor_paca_twitch", "_parent": "5448e54d4bdc2dcc718b4568", "_type": "Item", "_props": { - "Name": "kirasa", - "ShortName": "kirasa", - "Description": "kirasa", - "Weight": 11.1, - "BackgroundColor": "blue", + "Name": "PACA", + "ShortName": "PACA", + "Description": "PACA", + "Weight": 3.5, + "BackgroundColor": "violet", "Width": 3, "Height": 3, "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_kora_kulon/item_equipment_armor_kora_kulon_camo.bundle", + "path": "assets/content/items/equipment/armor_paca/item_equipment_armor_paca_twitch.bundle", "rcid": "" }, "UsePrefab": { @@ -285872,7 +288819,7 @@ "LootExperience": 45, "ExamineExperience": 2, "HideEntrails": false, - "RepairCost": 143, + "RepairCost": 115, "RepairSpeed": 8, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -285900,15 +288847,15 @@ "Slots": [ { "_name": "Soft_armor_front", - "_id": "65763a1ad8537eb26a0355e7", - "_parent": "64be79e2bf8412471d0d9bcc", + "_id": "6576394b20cc24d17102b138", + "_parent": "607f20859ee58b18e41ecd90", "_props": { "filters": [ { "locked": true, - "Plate": "6570495b45d573133d0d6adb", + "Plate": "65703d866584602f7d057a8a", "Filter": [ - "6570495b45d573133d0d6adb" + "65703d866584602f7d057a8a" ], "armorColliders": [ "RibcageUp", @@ -285925,15 +288872,15 @@ }, { "_name": "Soft_armor_back", - "_id": "65763a1ad8537eb26a0355e8", - "_parent": "64be79e2bf8412471d0d9bcc", + "_id": "6576394b20cc24d17102b139", + "_parent": "607f20859ee58b18e41ecd90", "_props": { "filters": [ { "locked": true, - "Plate": "657049d23425b19bbc0502f0", + "Plate": "65703fa06584602f7d057a8e", "Filter": [ - "657049d23425b19bbc0502f0" + "65703fa06584602f7d057a8e" ], "armorColliders": [ "SpineTop", @@ -285947,6 +288894,54 @@ "_required": true, "_mergeSlotWithChildren": true, "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_left", + "_id": "6576394b20cc24d17102b13a", + "_parent": "607f20859ee58b18e41ecd90", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65703fe46a912c8b5c03468b", + "Filter": [ + "65703fe46a912c8b5c03468b" + ], + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_right", + "_id": "6576394b20cc24d17102b13b", + "_parent": "607f20859ee58b18e41ecd90", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657040374e67e8ec7a0d261c", + "Filter": [ + "657040374e67e8ec7a0d261c" + ], + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" } ], "CanPutIntoDuringTheRaid": true, @@ -285969,14 +288964,14 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.298, - "ArmorMaterial": "ArmoredSteel", + "BluntThroughput": 0.3564, + "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [], "armorPlateColliders": [], "speedPenaltyPercent": -1, - "mousePenalty": -1, + "mousePenalty": 0, "weaponErgonomicPenalty": -1 }, "_proto": "545cdb794bdc2d3a198b456a" @@ -286409,199 +289404,6 @@ }, "_proto": "545cdb794bdc2d3a198b456a" }, - "607f20859ee58b18e41ecd90": { - "_id": "607f20859ee58b18e41ecd90", - "_name": "item_equipment_armor_paca_twitch", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "PACA", - "ShortName": "PACA", - "Description": "PACA", - "Weight": 3.5, - "BackgroundColor": "violet", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_paca/item_equipment_armor_paca_twitch.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 115, - "RepairSpeed": 8, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Soft_armor_front", - "_id": "6576394b20cc24d17102b138", - "_parent": "607f20859ee58b18e41ecd90", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65703d866584602f7d057a8a", - "Filter": [ - "65703d866584602f7d057a8a" - ], - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "6576394b20cc24d17102b139", - "_parent": "607f20859ee58b18e41ecd90", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65703fa06584602f7d057a8e", - "Filter": [ - "65703fa06584602f7d057a8e" - ], - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_left", - "_id": "6576394b20cc24d17102b13a", - "_parent": "607f20859ee58b18e41ecd90", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65703fe46a912c8b5c03468b", - "Filter": [ - "65703fe46a912c8b5c03468b" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "6576394b20cc24d17102b13b", - "_parent": "607f20859ee58b18e41ecd90", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657040374e67e8ec7a0d261c", - "Filter": [ - "657040374e67e8ec7a0d261c" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.3564, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": -1, - "mousePenalty": 0, - "weaponErgonomicPenalty": -1 - }, - "_proto": "545cdb794bdc2d3a198b456a" - }, "5b432f3d5acfc4704b4a1dfb": { "_id": "5b432f3d5acfc4704b4a1dfb", "_name": "item_equipment_facecover_nomexBalaclava", @@ -286964,23 +289766,23 @@ }, "_proto": "572b7d8524597762b472f9d1" }, - "657089638db3adca1009f4ca": { - "_id": "657089638db3adca1009f4ca", - "_name": "item_equipment_facecover_ballistic_mask", - "_parent": "5a341c4686f77469e155819e", + "5c0e57ba86f7747fa141986d": { + "_id": "5c0e57ba86f7747fa141986d", + "_name": "item_equipment_armor_6b23_mflora", + "_parent": "5448e54d4bdc2dcc718b4568", "_type": "Item", "_props": { - "Name": "shattered", - "ShortName": "shattered", - "Description": "shattered", - "Weight": 2.1, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, + "Name": "gjel", + "ShortName": "gjel", + "Description": "gjel", + "Weight": 3.3, + "BackgroundColor": "blue", + "Width": 3, + "Height": 4, "StackMaxSize": 1, - "ItemSound": "gear_generic", + "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/facecover_ballistic_mask/item_equipment_facecover_ballistic_mask.bundle", + "path": "assets/content/items/equipment/armor_6b23/item_equipment_armor_6b23_mflora.bundle", "rcid": "" }, "UsePrefab": { @@ -286997,11 +289799,558 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 128, + "RepairSpeed": 8, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Front_plate", + "_id": "65708273d9bd7c9a2f055b5e", + "_parent": "5c0e57ba86f7747fa141986d", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656f603f94b480b8a500c0d6", + "Filter": [ + "656f664200d62bcd2e024077", + "654a4dea7c17dec2f50cc86a", + "656f66b5c6baea13cd07e108", + "656f611f94b480b8a500c0db", + "656f603f94b480b8a500c0d6", + "656f57dc27aed95beb08f628", + "656f63c027aed95beb08f62c" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Korund_chest" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "65708298cb3ec95a4a030a53", + "_parent": "5c0e57ba86f7747fa141986d", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "657b22485f444d6dff0c6c2f", + "Filter": [ + "657b22485f444d6dff0c6c2f", + "657b2797c3dbcb01d60c35ea", + "657b28d25f444d6dff0c6c77" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_front", + "_id": "657083bad9bd7c9a2f055b7c", + "_parent": "5c0e57ba86f7747fa141986d", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65707fc348c7a887f2010432", + "Filter": [ + "65707fc348c7a887f2010432" + ], + "armorColliders": [ + "RibcageLow", + "RibcageUp" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "657083bad9bd7c9a2f055b7d", + "_parent": "5c0e57ba86f7747fa141986d", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6570800612755ae0d907acf8", + "Filter": [ + "6570800612755ae0d907acf8" + ], + "armorColliders": [ + "SpineDown", + "SpineTop" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_left", + "_id": "657083bad9bd7c9a2f055b7e", + "_parent": "5c0e57ba86f7747fa141986d", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65708070f65e2491bf00972c", + "Filter": [ + "65708070f65e2491bf00972c" + ], + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_right", + "_id": "657083e3cb3ec95a4a030a6f", + "_parent": "5c0e57ba86f7747fa141986d", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657080a212755ae0d907ad04", + "Filter": [ + "657080a212755ae0d907ad04" + ], + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Collar", + "_id": "6570840b66937cbf2500d42c", + "_parent": "5c0e57ba86f7747fa141986d", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657080ca12755ae0d907ad5e", + "Filter": [ + "657080ca12755ae0d907ad5e" + ], + "armorColliders": [ + "NeckBack", + "NeckFront" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Groin", + "_id": "65708458d9bd7c9a2f055b82", + "_parent": "5c0e57ba86f7747fa141986d", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65708122f65e2491bf009755", + "Filter": [ + "65708122f65e2491bf009755" + ], + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Groin_back", + "_id": "65708458d9bd7c9a2f055b83", + "_parent": "5c0e57ba86f7747fa141986d", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65708165696fe382cf073255", + "Filter": [ + "65708165696fe382cf073255" + ], + "armorColliders": [ + "PelvisBack" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": -1, + "mousePenalty": -1, + "weaponErgonomicPenalty": -2.5 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, + "6038b4b292ec1c3103795a0b": { + "_id": "6038b4b292ec1c3103795a0b", + "_name": "item_equipment_armor_slick_tan", + "_parent": "5448e54d4bdc2dcc718b4568", + "_type": "Item", + "_props": { + "Name": "gjel", + "ShortName": "gjel", + "Description": "gjel", + "Weight": 1.3, + "BackgroundColor": "blue", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_slick/item_equipment_armor_slick_tan.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 1063, + "RepairSpeed": 8, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "Front_plate", + "_id": "657641ff20cc24d17102b144", + "_parent": "6038b4b292ec1c3103795a0b", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fa76500d62bcd2e024080", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa99800d62bcd2e024088", + "656fa8d700d62bcd2e024084", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fb0bd7c2d57afe200c0dc", + "656fac30c6baea13cd07e10c", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "657641ff20cc24d17102b145", + "_parent": "6038b4b292ec1c3103795a0b", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fa76500d62bcd2e024080", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa99800d62bcd2e024088", + "656fa8d700d62bcd2e024084", + "656faf0ca0dce000a2020f77", + "656fae5f7c2d57afe200c0d7", + "656fafe3498d1b7e3e071da4", + "656fa0fb498d1b7e3e071d9c", + "656fa25e94b480b8a500c0e0", + "656fa76500d62bcd2e024080", + "656fa61e94b480b8a500c0e8", + "656fad8c498d1b7e3e071da0", + "656fa53d94b480b8a500c0e4", + "656f9fa0498d1b7e3e071d98", + "656fb0bd7c2d57afe200c0dc", + "656fac30c6baea13cd07e10c", + "656fb21fa0dce000a2020f7c", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_front", + "_id": "657641ff20cc24d17102b146", + "_parent": "6038b4b292ec1c3103795a0b", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575e71760703324250610c3", + "Filter": [ + "6575e71760703324250610c3" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "657641ff20cc24d17102b147", + "_parent": "6038b4b292ec1c3103795a0b", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6575e72660703324250610c7", + "Filter": [ + "6575e72660703324250610c7" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2259, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": -5, + "mousePenalty": -1, + "weaponErgonomicPenalty": 0 + }, + "_proto": "545cdb794bdc2d3a198b456a" + }, + "58ac60eb86f77401897560ff": { + "_id": "58ac60eb86f77401897560ff", + "_name": "balaclava_development", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "Balaclava_dev", + "ShortName": "Balaclava_dev", + "Description": "Balaclava_dev", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/facecover_balaclava/item_equipment_facecover_balaclava_development.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, "LootExperience": 20, "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 824, - "RepairSpeed": 10, + "RepairCost": 0, + "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -287029,37 +290378,126 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": true, + "BlocksEyewear": false, + "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 35, - "MaxDurability": 35, - "armorClass": "4", + "Durability": 100000, + "MaxDurability": 100000, + "armorClass": "10", + "Indestructibility": 1, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7d8524597762b472f9d1" + }, + "5fd8d28367cb5e077335170f": { + "_id": "5fd8d28367cb5e077335170f", + "_name": "item_equipment_facecover_smoke", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "Balaclavanomex", + "ShortName": "Balaclavanomex", + "Description": "Balaclavanomex", + "Weight": 0.1, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/facecover_smoke/item_equipment_head_smoke.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": true, + "DiscardLimit": 1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", "HasHinge": false, - "MaterialType": "Helmet", + "MaterialType": "BodyArmor", "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 70 + "x": 0, + "y": 0, + "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.198, - "ArmorMaterial": "UHMWPE", + "BluntThroughput": 0, + "ArmorMaterial": "Combined", "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "HeadCommon", - "Jaw", - "Eyes", - "ParietalHead" - ], + "ArmorType": "None", + "armorColliders": [], "armorPlateColliders": [], - "speedPenaltyPercent": -1, - "mousePenalty": -3, - "weaponErgonomicPenalty": -2 + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 }, "_proto": "572b7d8524597762b472f9d1" }, @@ -287514,324 +290952,6 @@ }, "_proto": "545cdb794bdc2d3a198b456a" }, - "5c0e5bab86f77461f55ed1f3": { - "_id": "5c0e5bab86f77461f55ed1f3", - "_name": "item_equipment_armor_6b23_digital", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "gjel", - "ShortName": "gjel", - "Description": "gjel", - "Weight": 3.3, - "BackgroundColor": "blue", - "Width": 3, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_6b23/item_equipment_armor_6b23_digital.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 128, - "RepairSpeed": 8, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Front_plate", - "_id": "6571b47f2933ce1837047122", - "_parent": "5c0e5bab86f77461f55ed1f3", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "654a4dea7c17dec2f50cc86a", - "Filter": [ - "656f664200d62bcd2e024077", - "654a4dea7c17dec2f50cc86a", - "656f66b5c6baea13cd07e108" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Korund_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "6571beba7c02ae2060024f1c", - "_parent": "5c0e5bab86f77461f55ed1f3", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "", - "Filter": [ - "657b22485f444d6dff0c6c2f", - "657b2797c3dbcb01d60c35ea", - "657b28d25f444d6dff0c6c77" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "6571beba7c02ae2060024f1f", - "_parent": "5c0e5bab86f77461f55ed1f3", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6571b27a6d84a2b8b6007f92", - "Filter": [ - "6571b27a6d84a2b8b6007f92" - ], - "armorColliders": [ - "RibcageLow", - "RibcageUp" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "6571beba7c02ae2060024f20", - "_parent": "5c0e5bab86f77461f55ed1f3", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6571baa74cb80d995d0a1490", - "Filter": [ - "6571baa74cb80d995d0a1490" - ], - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_left", - "_id": "6571beba7c02ae2060024f21", - "_parent": "5c0e5bab86f77461f55ed1f3", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6571baac6d84a2b8b6007fa3", - "Filter": [ - "6571baac6d84a2b8b6007fa3" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "6571beba7c02ae2060024f22", - "_parent": "5c0e5bab86f77461f55ed1f3", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6571bab0f41985531a038091", - "Filter": [ - "6571bab0f41985531a038091" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Collar", - "_id": "6571beba7c02ae2060024f23", - "_parent": "5c0e5bab86f77461f55ed1f3", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6571babb4076795e5e07383f", - "Filter": [ - "6571babb4076795e5e07383f" - ], - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Groin", - "_id": "6571beba7c02ae2060024f24", - "_parent": "5c0e5bab86f77461f55ed1f3", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6571bac34076795e5e073843", - "Filter": [ - "6571bac34076795e5e073843" - ], - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Groin_back", - "_id": "6571beba7c02ae2060024f25", - "_parent": "5c0e5bab86f77461f55ed1f3", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6571babf4cb80d995d0a1494", - "Filter": [ - "6571babf4cb80d995d0a1494" - ], - "armorColliders": [ - "PelvisBack" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2142, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": -1, - "mousePenalty": -1, - "weaponErgonomicPenalty": -2.5 - }, - "_proto": "545cdb794bdc2d3a198b456a" - }, "5c1a1e3f2e221602b66cc4c2": { "_id": "5c1a1e3f2e221602b66cc4c2", "_name": "item_beard", @@ -287926,23 +291046,23 @@ }, "_proto": "572b7d8524597762b472f9d1" }, - "5c0e51be86f774598e797894": { - "_id": "5c0e51be86f774598e797894", - "_name": "item_equipment_armor_6b13_flora", - "_parent": "5448e54d4bdc2dcc718b4568", + "607f201b3c672b3b3a24a800": { + "_id": "607f201b3c672b3b3a24a800", + "_name": "item_equipment_facecover_coldgear_twitch", + "_parent": "5a341c4686f77469e155819e", "_type": "Item", "_props": { - "Name": "gjel", - "ShortName": "gjel", - "Description": "gjel", - "Weight": 2.8, - "BackgroundColor": "blue", - "Width": 3, - "Height": 4, + "Name": "Balaclava cg", + "ShortName": "Balaclava cg", + "Description": "Balaclava cg", + "Weight": 0.1, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, "StackMaxSize": 1, - "ItemSound": "gear_armor", + "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/armor_6b13/item_equipment_armor_6b13_flora.bundle", + "path": "assets/content/items/equipment/facecover_coldgear/item_equipment_facecover_coldgear_twitch.bundle", "rcid": "" }, "UsePrefab": { @@ -287959,11 +291079,11 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 2, + "LootExperience": 5, + "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 319, - "RepairSpeed": 8, + "RepairCost": 0, + "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -287987,216 +291107,15 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "Grids": [], - "Slots": [ - { - "_name": "Front_plate", - "_id": "65763c7920cc24d17102b13c", - "_parent": "5c0e51be86f774598e797894", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656f603f94b480b8a500c0d6", - "Filter": [ - "656f63c027aed95beb08f62c", - "656f57dc27aed95beb08f628", - "656f603f94b480b8a500c0d6", - "656f611f94b480b8a500c0db" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Korund_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "65763c7920cc24d17102b13d", - "_parent": "5c0e51be86f774598e797894", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656efd66034e8e01c407f35c", - "Filter": [ - "656efaf54772930db4031ff5", - "656efd66034e8e01c407f35c", - "654a4a964b446df1ad03f192" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_6B13_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "65763c7920cc24d17102b13e", - "_parent": "5c0e51be86f774598e797894", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "654a8b0b0337d53f9102c2ae", - "Filter": [ - "654a8b0b0337d53f9102c2ae" - ], - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "65763c7920cc24d17102b13f", - "_parent": "5c0e51be86f774598e797894", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "654a8976f414fcea4004d78b", - "Filter": [ - "654a8976f414fcea4004d78b" - ], - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_left", - "_id": "65763c7920cc24d17102b140", - "_parent": "5c0e51be86f774598e797894", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "654a8b3df414fcea4004d78f", - "Filter": [ - "654a8b3df414fcea4004d78f" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "65763c7920cc24d17102b141", - "_parent": "5c0e51be86f774598e797894", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "654a8b80f414fcea4004d797", - "Filter": [ - "654a8b80f414fcea4004d797" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Collar", - "_id": "65763c7920cc24d17102b142", - "_parent": "5c0e51be86f774598e797894", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "654a8ae00337d53f9102c2aa", - "Filter": [ - "654a8ae00337d53f9102c2aa" - ], - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Groin", - "_id": "65763c7920cc24d17102b143", - "_parent": "5c0e51be86f774598e797894", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "654a8bc5f414fcea4004d79b", - "Filter": [ - "654a8bc5f414fcea4004d79b" - ], - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "BlocksEarpiece": false, "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, + "Durability": 100, + "MaxDurability": 100, "armorClass": "0", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -288209,17 +291128,17 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.32, - "ArmorMaterial": "Aramid", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", "BlindnessProtection": 0, - "ArmorType": "Light", + "ArmorType": "None", "armorColliders": [], "armorPlateColliders": [], - "speedPenaltyPercent": -1, + "speedPenaltyPercent": 0, "mousePenalty": 0, - "weaponErgonomicPenalty": -1 + "weaponErgonomicPenalty": 0 }, - "_proto": "545cdb794bdc2d3a198b456a" + "_proto": "572b7d8524597762b472f9d1" }, "59e7715586f7742ee5789605": { "_id": "59e7715586f7742ee5789605", @@ -288409,23 +291328,23 @@ }, "_proto": "572b7d8524597762b472f9d1" }, - "572b7f1624597762ae139822": { - "_id": "572b7f1624597762ae139822", - "_name": "balaclava", + "5e71fad086f77422443d4604": { + "_id": "5e71fad086f77422443d4604", + "_name": "item_equipment_facecover_twitch", "_parent": "5a341c4686f77469e155819e", "_type": "Item", "_props": { - "Name": "Balaclava", - "ShortName": "Balaclava", - "Description": "Balaclava", + "Name": "Balaclavanomex", + "ShortName": "Balaclavanomex", + "Description": "Balaclavanomex", "Weight": 0.1, - "BackgroundColor": "default", + "BackgroundColor": "violet", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/facecover_balaclava/item_equipment_facecover_balaclava.bundle", + "path": "assets/content/items/equipment/facecover_shroud/item_equipment_facecover_shroud_twitch.bundle", "rcid": "" }, "UsePrefab": { @@ -288503,547 +291422,23 @@ }, "_proto": "572b7d8524597762b472f9d1" }, - "5ab8e4ed86f7742d8e50c7fa": { - "_id": "5ab8e4ed86f7742d8e50c7fa", - "_name": "armor_un", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "un armor", - "ShortName": "un armor", - "Description": "un armor", - "Weight": 8.5, - "BackgroundColor": "blue", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_un/item_equipment_armor_un.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 276, - "RepairSpeed": 8, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Soft_armor_front", - "_id": "657047787e80617cee095bdf", - "_parent": "5ab8e4ed86f7742d8e50c7fa", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657044e971369562b300ce9b", - "Filter": [ - "657044e971369562b300ce9b" - ], - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "657047787e80617cee095be0", - "_parent": "5ab8e4ed86f7742d8e50c7fa", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657045741bd9beedc40b7299", - "Filter": [ - "657045741bd9beedc40b7299" - ], - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_left", - "_id": "657047787e80617cee095be1", - "_parent": "5ab8e4ed86f7742d8e50c7fa", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657045b97e80617cee095bda", - "Filter": [ - "657045b97e80617cee095bda" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "657047787e80617cee095be2", - "_parent": "5ab8e4ed86f7742d8e50c7fa", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6570460471369562b300ce9f", - "Filter": [ - "6570460471369562b300ce9f" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2376, - "ArmorMaterial": "Aluminium", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": -3, - "mousePenalty": -1, - "weaponErgonomicPenalty": -2 - }, - "_proto": "545cdb794bdc2d3a198b456a" - }, - "609e8540d5c319764c2bc2e9": { - "_id": "609e8540d5c319764c2bc2e9", - "_name": "item_equipment_armor_custom_thorcrv", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "PACA", - "ShortName": "PACA", - "Description": "PACA", - "Weight": 1.7, - "BackgroundColor": "blue", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_custom_thorcrv/item_equipment_armor_custom_thorcrv.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 319, - "RepairSpeed": 8, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Front_plate", - "_id": "6572e70f04ee6483ef039820", - "_parent": "609e8540d5c319764c2bc2e9", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656f9fa0498d1b7e3e071d98", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa25e94b480b8a500c0e0", - "656fa76500d62bcd2e024080", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "6572e70f04ee6483ef039821", - "_parent": "609e8540d5c319764c2bc2e9", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656f9fa0498d1b7e3e071d98", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Left_side_plate", - "_id": "6572e70f04ee6483ef039822", - "_parent": "609e8540d5c319764c2bc2e9", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "", - "Filter": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d", - "64afd81707e2cf40e903a316" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_left_high" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Right_side_plate", - "_id": "6572e70f04ee6483ef039823", - "_parent": "609e8540d5c319764c2bc2e9", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "", - "Filter": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d", - "64afd81707e2cf40e903a316" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_right_high" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "6572e70f04ee6483ef039824", - "_parent": "609e8540d5c319764c2bc2e9", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6572e5221b5bc1185508c24f", - "Filter": [ - "6572e5221b5bc1185508c24f" - ], - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "6572e70f04ee6483ef039825", - "_parent": "609e8540d5c319764c2bc2e9", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6572e52f73c0eabb700109a0", - "Filter": [ - "6572e52f73c0eabb700109a0" - ], - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_left", - "_id": "6572e70f04ee6483ef039826", - "_parent": "609e8540d5c319764c2bc2e9", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6572e53c73c0eabb700109a4", - "Filter": [ - "6572e53c73c0eabb700109a4" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "6572e70f04ee6483ef039827", - "_parent": "609e8540d5c319764c2bc2e9", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6572e54873c0eabb700109a8", - "Filter": [ - "6572e54873c0eabb700109a8" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -1, - "weaponErgonomicPenalty": 0 - }, - "_proto": "545cdb794bdc2d3a198b456a" - }, - "572b7fa524597762b747ce82": { - "_id": "572b7fa524597762b747ce82", - "_name": "mask", + "5bd071d786f7747e707b93a3": { + "_id": "5bd071d786f7747e707b93a3", + "_name": "item_equipment_facecover_HALLOWEEN_Jason", "_parent": "5a341c4686f77469e155819e", "_type": "Item", "_props": { - "Name": "Mask", - "ShortName": "Mask", - "Description": "Mask", + "Name": "item_equipment_facecover_HALLOWEEN_Jason", + "ShortName": "item_equipment_facecover_HALLOWEEN_Jason", + "Description": "item_equipment_facecover_HALLOWEEN_Jason\n", "Weight": 0.1, "BackgroundColor": "default", - "Width": 1, - "Height": 1, + "Width": 2, + "Height": 2, "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/facecover_buffalo/item_equipment_facecover_buffalo.bundle", + "path": "assets/content/items/equipment/facecover_halloween_jason/item_equipment_facecover_halloween_jason.bundle", "rcid": "" }, "UsePrefab": { @@ -289060,7 +291455,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, + "LootExperience": 20, "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, @@ -289073,7 +291468,16 @@ "MergesWithChildren": false, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [], + "ConflictingItems": [ + "59e770f986f7742cbe3164ef", + "572b7d8524597762b472f9d1", + "5aa2b87de5b5b00016327c25", + "5aa2a7e8e5b5b00016327c16", + "5aa2b89be5b5b0001569311f", + "5aa2b8d7e5b5b00014028f4a", + "65749ccf33fdc9c0cf06d3ca", + "65749cb8e0423b9ebe0c79c9" + ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -289093,7 +291497,7 @@ "CantRemoveFromSlotsDuringRaid": [], "BlocksEarpiece": false, "BlocksEyewear": false, - "BlocksHeadwear": false, + "BlocksHeadwear": true, "BlocksFaceCover": false, "Durability": 100, "MaxDurability": 100, @@ -289119,7 +291523,7 @@ "mousePenalty": 0, "weaponErgonomicPenalty": 0 }, - "_proto": "572b7fa124597762b472f9d2" + "_proto": "572b7d8524597762b472f9d1" }, "5b432c305acfc40019478128": { "_id": "5b432c305acfc40019478128", @@ -289243,2738 +291647,6 @@ }, "_proto": "572b7fa124597762b472f9d2" }, - "59e7635f86f7742cbf2c1095": { - "_id": "59e7635f86f7742cbf2c1095", - "_name": "module_3m", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "Module 3M", - "ShortName": "Module 3M", - "Description": "Module 3M", - "Weight": 6, - "BackgroundColor": "blue", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_module_3m/item_equipment_armor_module_3m.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 95, - "RepairSpeed": 8, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Soft_armor_front", - "_id": "6570323493b7ea9c330f4cfa", - "_parent": "59e7635f86f7742cbf2c1095", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65702f87722744627e05cdb8", - "Filter": [ - "65702f87722744627e05cdb8" - ], - "armorColliders": [ - "RibcageLow", - "RibcageUp" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "65703261dad6eb07fb0c2546", - "_parent": "59e7635f86f7742cbf2c1095", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65702fe593b7ea9c330f4ce8", - "Filter": [ - "65702fe593b7ea9c330f4ce8" - ], - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_left", - "_id": "657032c8722744627e05cdd0", - "_parent": "59e7635f86f7742cbf2c1095", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6570305d93b7ea9c330f4ced", - "Filter": [ - "6570305d93b7ea9c330f4ced" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "657032c8722744627e05cdd1", - "_parent": "59e7635f86f7742cbf2c1095", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65703472c9030b928a0a8a78", - "Filter": [ - "65703472c9030b928a0a8a78" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.4158, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": -1, - "mousePenalty": -1, - "weaponErgonomicPenalty": 0 - }, - "_proto": "545cdb794bdc2d3a198b456a" - }, - "5e9dacf986f774054d6b89f4": { - "_id": "5e9dacf986f774054d6b89f4", - "_name": "item_equipment_armor_defender2", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "iotv_mob", - "ShortName": "iotv_mob", - "Description": "iotv_mob", - "Weight": 5.7, - "BackgroundColor": "blue", - "Width": 3, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_def2/item_equipment_armor_def2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 988, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Front_plate", - "_id": "6573304d2cc8dfad2c0a3d0b", - "_parent": "5e9dacf986f774054d6b89f4", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "65573fa5655447403702a816", - "Filter": [ - "656fa8d700d62bcd2e024084", - "656f9d5900d62bcd2e02407c", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "6573304d2cc8dfad2c0a3d0c", - "_parent": "5e9dacf986f774054d6b89f4", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "65573fa5655447403702a816", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fae5f7c2d57afe200c0d7", - "656fa99800d62bcd2e024088", - "656fa0fb498d1b7e3e071d9c", - "656faf0ca0dce000a2020f77", - "656fa76500d62bcd2e024080", - "656fafe3498d1b7e3e071da4", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fa61e94b480b8a500c0e8", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "6573304d2cc8dfad2c0a3d0d", - "_parent": "5e9dacf986f774054d6b89f4", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65732de75d3a3129fb05f3dd", - "Filter": [ - "65732de75d3a3129fb05f3dd" - ], - "armorColliders": [ - "RibcageLow", - "RibcageUp" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "6573304d2cc8dfad2c0a3d0e", - "_parent": "5e9dacf986f774054d6b89f4", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65732df4d0acf75aea06c87b", - "Filter": [ - "65732df4d0acf75aea06c87b" - ], - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_left", - "_id": "6573304d2cc8dfad2c0a3d0f", - "_parent": "5e9dacf986f774054d6b89f4", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65732e05d0acf75aea06c87f", - "Filter": [ - "65732e05d0acf75aea06c87f" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "6573304d2cc8dfad2c0a3d10", - "_parent": "5e9dacf986f774054d6b89f4", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65732e0f6784ca384b0167ad", - "Filter": [ - "65732e0f6784ca384b0167ad" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Collar", - "_id": "6573304d2cc8dfad2c0a3d11", - "_parent": "5e9dacf986f774054d6b89f4", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65732e215d3a3129fb05f3e1", - "Filter": [ - "65732e215d3a3129fb05f3e1" - ], - "armorColliders": [ - "NeckFront" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Groin", - "_id": "6573304d2cc8dfad2c0a3d12", - "_parent": "5e9dacf986f774054d6b89f4", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65732e30dd8739f6440ef383", - "Filter": [ - "65732e30dd8739f6440ef383" - ], - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2376, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": -1, - "mousePenalty": -4, - "weaponErgonomicPenalty": -1 - }, - "_proto": "545cdb794bdc2d3a198b456a" - }, - "5e4abb5086f77406975c9342": { - "_id": "5e4abb5086f77406975c9342", - "_name": "item_equipment_armor_slick", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "gjel", - "ShortName": "gjel", - "Description": "gjel", - "Weight": 1.3, - "BackgroundColor": "blue", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_slick/ar_slick.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 1063, - "RepairSpeed": 8, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Front_plate", - "_id": "6575e7bdf6a13a7b7100ad9f", - "_parent": "5e4abb5086f77406975c9342", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fa76500d62bcd2e024080", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "6575e7bdf6a13a7b7100ada0", - "_parent": "5e4abb5086f77406975c9342", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fa76500d62bcd2e024080", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "6575e7bdf6a13a7b7100ada1", - "_parent": "5e4abb5086f77406975c9342", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575e71760703324250610c3", - "Filter": [ - "6575e71760703324250610c3" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "6575e7bdf6a13a7b7100ada2", - "_parent": "5e4abb5086f77406975c9342", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575e72660703324250610c7", - "Filter": [ - "6575e72660703324250610c7" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2259, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "545cdb794bdc2d3a198b456a" - }, - "545cdb794bdc2d3a198b456a": { - "_id": "545cdb794bdc2d3a198b456a", - "_name": "heavy", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "6B43", - "ShortName": "6B43", - "Description": "6B43", - "Weight": 10.8, - "BackgroundColor": "blue", - "Width": 4, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_6b34/item_equipment_armor_6b34.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 80, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 1328, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Front_plate", - "_id": "6575d07cefc786cd9101a675", - "_parent": "545cdb794bdc2d3a198b456a", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "64afc71497cf3a403c01ff38", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656f9fa0498d1b7e3e071d98", - "656fb0bd7c2d57afe200c0dc", - "656fa53d94b480b8a500c0e4", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "6575d07cefc786cd9101a676", - "_parent": "545cdb794bdc2d3a198b456a", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "64afc71497cf3a403c01ff38", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fa61e94b480b8a500c0e8", - "656fad8c498d1b7e3e071da0", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656f9fa0498d1b7e3e071d98", - "656fb0bd7c2d57afe200c0dc", - "656fa53d94b480b8a500c0e4", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Left_side_plate", - "_id": "6575d07cefc786cd9101a677", - "_parent": "545cdb794bdc2d3a198b456a", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "64afd81707e2cf40e903a316", - "Filter": [ - "64afd81707e2cf40e903a316", - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_left_low" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Right_side_plate", - "_id": "6575d07cefc786cd9101a678", - "_parent": "545cdb794bdc2d3a198b456a", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "64afd81707e2cf40e903a316", - "Filter": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d", - "64afd81707e2cf40e903a316" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_right_low" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "6575d07cefc786cd9101a679", - "_parent": "545cdb794bdc2d3a198b456a", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575ce3716c2762fba0057fd", - "Filter": [ - "6575ce3716c2762fba0057fd" - ], - "armorColliders": [ - "RibcageLow", - "RibcageUp" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "6575d07cefc786cd9101a67a", - "_parent": "545cdb794bdc2d3a198b456a", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575ce45dc9932aed601c616", - "Filter": [ - "6575ce45dc9932aed601c616" - ], - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_left", - "_id": "6575d07cefc786cd9101a67b", - "_parent": "545cdb794bdc2d3a198b456a", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575ce5016c2762fba005802", - "Filter": [ - "6575ce5016c2762fba005802" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "6575d07cefc786cd9101a67c", - "_parent": "545cdb794bdc2d3a198b456a", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575ce5befc786cd9101a671", - "Filter": [ - "6575ce5befc786cd9101a671" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Collar", - "_id": "6575d07cefc786cd9101a67d", - "_parent": "545cdb794bdc2d3a198b456a", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575ce6f16c2762fba005806", - "Filter": [ - "6575ce6f16c2762fba005806" - ], - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Shoulder_l", - "_id": "6575d07cefc786cd9101a67e", - "_parent": "545cdb794bdc2d3a198b456a", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575ce9db15fef3dd4051628", - "Filter": [ - "6575ce9db15fef3dd4051628" - ], - "armorColliders": [ - "LeftUpperArm" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Shoulder_r", - "_id": "6575d07cefc786cd9101a67f", - "_parent": "545cdb794bdc2d3a198b456a", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575cea8b15fef3dd405162c", - "Filter": [ - "6575cea8b15fef3dd405162c" - ], - "armorColliders": [ - "RightUpperArm" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Groin", - "_id": "6575d07cefc786cd9101a680", - "_parent": "545cdb794bdc2d3a198b456a", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575ce8bdc9932aed601c61e", - "Filter": [ - "6575ce8bdc9932aed601c61e" - ], - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.297, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": -11.5, - "mousePenalty": -5.5, - "weaponErgonomicPenalty": -10 - } - }, - "6530e8587cbfc1e309011e37": { - "_id": "6530e8587cbfc1e309011e37", - "_name": "item_equipment_facecover_BOSS_zryachi_balaclava_closed_HALLOWEEN", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "Balaclava", - "ShortName": "Balaclava", - "Description": "Balaclava", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_boss_zryachi_closed/facecover_boss_zryachi_closed_halloween.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "5c0e655586f774045612eeb2": { - "_id": "5c0e655586f774045612eeb2", - "_name": "item_equipment_armor_trooper", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "gjel", - "ShortName": "gjel", - "Description": "gjel", - "Weight": 4.1, - "BackgroundColor": "blue", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_trooper/item_equipment_armor_trooper.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 135, - "RepairSpeed": 8, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Front_plate", - "_id": "6570e2a80b57c03ec90b96fd", - "_parent": "5c0e655586f774045612eeb2", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fad8c498d1b7e3e071da0", - "Filter": [ - "656fa8d700d62bcd2e024084", - "656f9d5900d62bcd2e02407c", - "656fa99800d62bcd2e024088", - "656fa0fb498d1b7e3e071d9c", - "656faf0ca0dce000a2020f77", - "656fae5f7c2d57afe200c0d7", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "6570e2e323c1f638ef0b0eca", - "_parent": "5c0e655586f774045612eeb2", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fad8c498d1b7e3e071da0", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656faf0ca0dce000a2020f77", - "656fae5f7c2d57afe200c0d7", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fa61e94b480b8a500c0e8", - "656fad8c498d1b7e3e071da0", - "656fac30c6baea13cd07e10c", - "656fb21fa0dce000a2020f7c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "6570e3184cc0d2ab1e05ed8d", - "_parent": "5c0e655586f774045612eeb2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6570e025615f54368b04fcb0", - "Filter": [ - "6570e025615f54368b04fcb0" - ], - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "6570e33f0b57c03ec90b96ff", - "_parent": "5c0e655586f774045612eeb2", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6570e0610b57c03ec90b96ef", - "Filter": [ - "6570e0610b57c03ec90b96ef" - ], - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": -1, - "mousePenalty": -1, - "weaponErgonomicPenalty": 0 - }, - "_proto": "545cdb794bdc2d3a198b456a" - }, - "5b44cf1486f77431723e3d05": { - "_id": "5b44cf1486f77431723e3d05", - "_name": "item_equipment_armor_iotv_1", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "iotv_assault", - "ShortName": "iotv_assault", - "Description": "iotv_assault", - "Weight": 8.18, - "BackgroundColor": "blue", - "Width": 4, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_iotv_1/item_equipment_armor_iotv_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 1360, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Front_plate", - "_id": "6575c958c6700bd6b40e8a94", - "_parent": "5b44cf1486f77431723e3d05", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fa8d700d62bcd2e024084", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "6575c958c6700bd6b40e8a95", - "_parent": "5b44cf1486f77431723e3d05", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fa8d700d62bcd2e024084", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa25e94b480b8a500c0e0", - "656fa76500d62bcd2e024080", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656fb21fa0dce000a2020f7c", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Left_side_plate", - "_id": "6575c958c6700bd6b40e8a96", - "_parent": "5b44cf1486f77431723e3d05", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "6557458f83942d705f0c4962", - "Filter": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_left_high" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Right_side_plate", - "_id": "6575c958c6700bd6b40e8a97", - "_parent": "5b44cf1486f77431723e3d05", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "6557458f83942d705f0c4962", - "Filter": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_right_high" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "6575c958c6700bd6b40e8a98", - "_parent": "5b44cf1486f77431723e3d05", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575c3b3dc9932aed601c5f4", - "Filter": [ - "6575c3b3dc9932aed601c5f4" - ], - "armorColliders": [ - "RibcageLow", - "RibcageUp" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "6575c958c6700bd6b40e8a99", - "_parent": "5b44cf1486f77431723e3d05", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575c3beefc786cd9101a5ed", - "Filter": [ - "6575c3beefc786cd9101a5ed" - ], - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_left", - "_id": "6575c958c6700bd6b40e8a9a", - "_parent": "5b44cf1486f77431723e3d05", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575c3cdc6700bd6b40e8a90", - "Filter": [ - "6575c3cdc6700bd6b40e8a90" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "6575c958c6700bd6b40e8a9b", - "_parent": "5b44cf1486f77431723e3d05", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575c3dfdc9932aed601c5f8", - "Filter": [ - "6575c3dfdc9932aed601c5f8" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Collar", - "_id": "6575c958c6700bd6b40e8a9c", - "_parent": "5b44cf1486f77431723e3d05", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575c3ec52b7f8c76a05ee39", - "Filter": [ - "6575c3ec52b7f8c76a05ee39" - ], - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Shoulder_l", - "_id": "6575c958c6700bd6b40e8a9d", - "_parent": "5b44cf1486f77431723e3d05", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575c3fd52b7f8c76a05ee3d", - "Filter": [ - "6575c3fd52b7f8c76a05ee3d" - ], - "armorColliders": [ - "LeftUpperArm" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Shoulder_r", - "_id": "6575c958c6700bd6b40e8a9e", - "_parent": "5b44cf1486f77431723e3d05", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6575c40c52b7f8c76a05ee41", - "Filter": [ - "6575c40c52b7f8c76a05ee41" - ], - "armorColliders": [ - "RightUpperArm" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2619, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": -5, - "mousePenalty": -4, - "weaponErgonomicPenalty": -5 - }, - "_proto": "545cdb794bdc2d3a198b456a" - }, - "5f5f41476bdad616ad46d631": { - "_id": "5f5f41476bdad616ad46d631", - "_name": "item_equipment_armor_korundvm", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "gjel", - "ShortName": "gjel", - "Description": "gjel", - "Weight": 1.9, - "BackgroundColor": "blue", - "Width": 3, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_korundvm/item_equipment_armor_korundvm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 1009, - "RepairSpeed": 8, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Front_plate", - "_id": "65731e11d9d89ff7ac0d95c9", - "_parent": "5f5f41476bdad616ad46d631", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656f664200d62bcd2e024077", - "Filter": [ - "656f664200d62bcd2e024077", - "654a4dea7c17dec2f50cc86a", - "656f66b5c6baea13cd07e108" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Korund_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "65731e11d9d89ff7ac0d95ca", - "_parent": "5f5f41476bdad616ad46d631", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "657b2797c3dbcb01d60c35ea", - "Filter": [ - "657b22485f444d6dff0c6c2f", - "657b2797c3dbcb01d60c35ea", - "657b28d25f444d6dff0c6c77" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Left_side_plate", - "_id": "65731e11d9d89ff7ac0d95cb", - "_parent": "5f5f41476bdad616ad46d631", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "654a4f8bc721968a4404ef18", - "Filter": [ - "654a4f8bc721968a4404ef18" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Korund_side_left_high" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Right_side_plate", - "_id": "65731e11d9d89ff7ac0d95cc", - "_parent": "5f5f41476bdad616ad46d631", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "654a4f8bc721968a4404ef18", - "Filter": [ - "654a4f8bc721968a4404ef18" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Korund_side_right_high" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "65731e11d9d89ff7ac0d95cd", - "_parent": "5f5f41476bdad616ad46d631", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65731b46cea9255e2102360a", - "Filter": [ - "65731b46cea9255e2102360a" - ], - "armorColliders": [ - "RibcageLow", - "RibcageUp" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "65731e11d9d89ff7ac0d95ce", - "_parent": "5f5f41476bdad616ad46d631", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65731b4fcea9255e2102360e", - "Filter": [ - "65731b4fcea9255e2102360e" - ], - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_left", - "_id": "65731e11d9d89ff7ac0d95cf", - "_parent": "5f5f41476bdad616ad46d631", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65731b576e709cddd001ec3f", - "Filter": [ - "65731b576e709cddd001ec3f" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "65731e11d9d89ff7ac0d95d0", - "_parent": "5f5f41476bdad616ad46d631", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65731b60ff6dc44a7d068c4a", - "Filter": [ - "65731b60ff6dc44a7d068c4a" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Collar", - "_id": "65731e11d9d89ff7ac0d95d1", - "_parent": "5f5f41476bdad616ad46d631", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65731b666e709cddd001ec43", - "Filter": [ - "65731b666e709cddd001ec43" - ], - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Groin", - "_id": "65731e11d9d89ff7ac0d95d2", - "_parent": "5f5f41476bdad616ad46d631", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65731b716e709cddd001ec47", - "Filter": [ - "65731b716e709cddd001ec47" - ], - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Groin_back", - "_id": "65731e11d9d89ff7ac0d95d3", - "_parent": "5f5f41476bdad616ad46d631", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65731b6b6042b0f210020ef6", - "Filter": [ - "65731b6b6042b0f210020ef6" - ], - "armorColliders": [ - "PelvisBack" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2853, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": -5, - "mousePenalty": -2.5, - "weaponErgonomicPenalty": -3 - }, - "_proto": "545cdb794bdc2d3a198b456a" - }, - "5df8a2ca86f7740bfe6df777": { - "_id": "5df8a2ca86f7740bfe6df777", - "_name": "item_equipment_armor_6b2", - "_parent": "5448e54d4bdc2dcc718b4568", - "_type": "Item", - "_props": { - "Name": "gjel", - "ShortName": "gjel", - "Description": "gjel", - "Weight": 5.4, - "BackgroundColor": "blue", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_6b2/item_equipment_armor_6b2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 143, - "RepairSpeed": 8, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "Soft_armor_front", - "_id": "656fd78330d59ab9020aa496", - "_parent": "5df8a2ca86f7740bfe6df777", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "656fd7c32668ef0402028fb9", - "Filter": [ - "656fd7c32668ef0402028fb9" - ], - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "656fd9ec3a0c75d02f080b25", - "_parent": "5df8a2ca86f7740bfe6df777", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "656fd89bf5a9631d4e042575", - "Filter": [ - "656fd89bf5a9631d4e042575" - ], - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2853, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": -1, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1 - }, - "_proto": "545cdb794bdc2d3a198b456a" - }, - "5b432b6c5acfc4001a599bf0": { - "_id": "5b432b6c5acfc4001a599bf0", - "_name": "item_equipment_facecover_skullmask", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "skullmask", - "ShortName": "skullmask", - "Description": "skullmask", - "Weight": 0.2, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_skullmask/item_equipment_facecover_skullmask.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": true, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "60363c0c92ec1c31037959f5": { - "_id": "60363c0c92ec1c31037959f5", - "_name": "item_equipment_facecover_gasmask_gp7", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "item_equipment_facecover_gasmask_gp7", - "ShortName": "item_equipment_facecover_gasmask_gp7", - "Description": "item_equipment_facecover_gasmask_gp7", - "Weight": 0.6, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/facecover_gasmask_gp7/item_equipment_facecover_gasmask_gp7.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "59e770f986f7742cbe3164ef", - "572b7d8524597762b472f9d1", - "5aa2b87de5b5b00016327c25", - "5aa2a7e8e5b5b00016327c16", - "5aa2b89be5b5b0001569311f", - "5aa2b8d7e5b5b00014028f4a", - "5aa2ba46e5b5b000137b758d", - "5aa2b9ede5b5b000137b758b", - "5aa2ba19e5b5b00014028f4e", - "5ab8f20c86f7745cdb629fb2", - "5645bc214bdc2d363b8b4571", - "5c066ef40db834001966a595", - "5aa7d193e5b5b000171d063f", - "5b4329f05acfc47a86086aa1", - "5b43271c5acfc432ff4dce65", - "5b40e5e25acfc4001a599bea", - "5f60e6403b85f6263c14558c", - "5f60e7788adaa7100c3adb49", - "5f60e784f2bcbb675b00dac7", - "5d96141523f0ea1b7f2aacab", - "5bd073c986f7747f627e796c", - "603618feffd42c541047f771", - "603619720ca681766b6a0fc4", - "6040de02647ad86262233012", - "60361a7497633951dc245eb4", - "60361b0b5a45383c122086a1", - "60361b5a9a15b10d96792291", - "5b4327aa5acfc400175496e0", - "5b40e61f5acfc4001a599bec", - "5c0d2727d174af02a012cf58", - "5c08f87c0db8340019124324", - "5e4bfc1586f774264f7582d3", - "59ef13ca86f77445fd0e2483", - "572b7fa124597762b472f9d2", - "5aa7e373e5b5b000137b76f0", - "5a16ba61fcdbcb098008728a", - "5a16b7e1fcdbcb00165aa6c9", - "5f60c076f2bcbb675b00dac2", - "5d6d3829a4b9361bc8618943", - "5c0919b50db834001b7ce3b9", - "5c0e842486f77443a74d2976", - "5f60c85b58eff926626a60f7", - "5e00cdd986f7747473332240", - "5b432b965acfc47a8774094e", - "65709d2d21b9f815e208ff95", - "65749ccf33fdc9c0cf06d3ca", - "65749cb8e0423b9ebe0c79c9" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": true, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7fa124597762b472f9d2" - }, - "5e54f76986f7740366043752": { - "_id": "5e54f76986f7740366043752", - "_name": "item_equipment_facecover_shroud", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "Balaclavanomex", - "ShortName": "Balaclavanomex", - "Description": "Balaclavanomex", - "Weight": 0.1, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_shroud/item_equipment_facecover_shroud.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": true, - "DiscardLimit": 1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, "5e54f79686f7744022011103": { "_id": "5e54f79686f7744022011103", "_name": "item_equipment_facecover_pestily", @@ -292115,6 +291787,13 @@ }, "_proto": "572b7d8524597762b472f9d1" }, + "5448e5724bdc2ddf718b4568": { + "_id": "5448e5724bdc2ddf718b4568", + "_name": "Visors", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Node", + "_props": {} + }, "6575ea719c7cad336508e418": { "_id": "6575ea719c7cad336508e418", "_name": "6b13_killa_level3_soft_armor_collar", @@ -292321,109 +292000,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6571babb4076795e5e07383f": { - "_id": "6571babb4076795e5e07383f", - "_name": "6b23-1_level2_soft_armor_collar", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b23-1_level2_soft_armor_collar", - "ShortName": "6b23-1_level2_soft_armor_collar", - "Description": "6b23-1_level2_soft_armor_collar", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/collar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 45, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 14, - "MaxDurability": 14, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "657080ca12755ae0d907ad5e": { "_id": "657080ca12755ae0d907ad5e", "_name": "6b23-2_level2_soft_armor_collar", @@ -292629,15 +292205,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6570fa1f4c65ab77a601512f": { - "_id": "6570fa1f4c65ab77a601512f", - "_name": "cqc_mk4a_level2_soft_armor_back", + "6571babb4076795e5e07383f": { + "_id": "6571babb4076795e5e07383f", + "_name": "6b23-1_level2_soft_armor_collar", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "cqc_mk4a_level2_soft_armor_back", - "ShortName": "cqc_mk4a_level2_soft_armor_back", - "Description": "cqc_mk4a_level2_soft_armor_back", + "Name": "6b23-1_level2_soft_armor_collar", + "ShortName": "6b23-1_level2_soft_armor_collar", + "Description": "6b23-1_level2_soft_armor_collar", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -292645,7 +292221,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "path": "assets/content/items/equipment/armor_plates/collar.bundle", "rcid": "" }, "UsePrefab": { @@ -292665,7 +292241,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 59, + "RepairCost": 45, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -292697,8 +292273,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 36, - "MaxDurability": 36, + "Durability": 14, + "MaxDurability": 14, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -292711,13 +292287,13 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.36, + "BluntThroughput": 0.33, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "SpineTop", - "SpineDown" + "NeckFront", + "NeckBack" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -292834,15 +292410,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6572fc8c9a866b80ab07eb5d": { - "_id": "6572fc8c9a866b80ab07eb5d", - "_name": "mmac_level2_soft_armor_back", + "6570fa1f4c65ab77a601512f": { + "_id": "6570fa1f4c65ab77a601512f", + "_name": "cqc_mk4a_level2_soft_armor_back", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "mmac_level2_soft_armor_back", - "ShortName": "mmac_level2_soft_armor_back", - "Description": "mmac_level2_soft_armor_back", + "Name": "cqc_mk4a_level2_soft_armor_back", + "ShortName": "cqc_mk4a_level2_soft_armor_back", + "Description": "cqc_mk4a_level2_soft_armor_back", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -292870,519 +292446,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 61, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 22, - "MaxDurability": 22, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657080a212755ae0d907ad04": { - "_id": "657080a212755ae0d907ad04", - "_name": "6b23-2_level2_soft_armor_right", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b23-2_level2_soft_armor_right", - "ShortName": "6b23-2_level2_soft_armor_right", - "Description": "6b23-2_level2_soft_armor_right", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 8, - "MaxDurability": 8, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6557519ac9b1d9bdcb0777e1": { - "_id": "6557519ac9b1d9bdcb0777e1", - "_name": "level2_soft_armor_plate_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "level2_soft_armor_plate_front", - "ShortName": "level2_soft_armor_plate_front", - "Description": "level2_soft_armor_plate_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 10, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 20, - "MaxDurability": 20, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "656fd7c32668ef0402028fb9": { - "_id": "656fd7c32668ef0402028fb9", - "_name": "6b2_level2_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b2_level2_soft_armor_front", - "ShortName": "6b2_level2_soft_armor_front", - "Description": "6b2_level2_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 41, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 64, - "MaxDurability": 64, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.16, - "ArmorMaterial": "Titan", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": -1, - "mousePenalty": 0, - "weaponErgonomicPenalty": -1, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657087577f6d4590ac0d2109": { - "_id": "657087577f6d4590ac0d2109", - "_name": "6b5-15_level4_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b5-15_level4_soft_armor_front", - "ShortName": "6b5-15_level4_soft_armor_front", - "Description": "6b5-15_level4_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 148, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 44, - "MaxDurability": 44, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.28, - "ArmorMaterial": "Ceramic", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": -3, - "mousePenalty": 0, - "weaponErgonomicPenalty": -3, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65711b489eb8c145180dbb9d": { - "_id": "65711b489eb8c145180dbb9d", - "_name": "ronin_level3_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ronin_level3_helmet_armor_nape", - "ShortName": "ronin_level3_helmet_armor_nape", - "Description": "ronin_level3_helmet_armor_nape", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 138, + "RepairCost": 59, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -293416,24 +292480,25 @@ "BlocksFaceCover": false, "Durability": 36, "MaxDurability": 36, - "armorClass": "3", + "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", "HasHinge": false, - "MaterialType": "Helmet", + "MaterialType": "BodyArmor", "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 75 + "x": 0, + "y": 0, + "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.22, + "BluntThroughput": 0.36, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "BackHead" + "SpineTop", + "SpineDown" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -293547,23 +292612,983 @@ }, "_proto": "572b7d8524597762b472f9d1" }, - "5bd0716d86f774171822ef4b": { - "_id": "5bd0716d86f774171822ef4b", - "_name": "item_equipment_facecover_HALLOWEEN_Micheal", - "_parent": "5a341c4686f77469e155819e", + "5ea058e01dbce517f324b3e2": { + "_id": "5ea058e01dbce517f324b3e2", + "_name": "item_equipment_helmet_tk_heavy_trooper", + "_parent": "57bef4c42459772e8d35a53b", "_type": "Item", "_props": { - "Name": "item_equipment_facecover_HALLOWEEN_Micheal", - "ShortName": "item_equipment_facecover_HALLOWEEN_Micheal", - "Description": "item_equipment_facecover_HALLOWEEN_Micheal\n", - "Weight": 0.1, + "Name": "item_equipment_helmet_tk_heavy_trooper", + "ShortName": "item_equipment_helmet_tk_heavy_trooper", + "Description": "item_equipment_helmet_tk_heavy_trooper", + "Weight": 0.4, "BackgroundColor": "default", "Width": 2, "Height": 2, "StackMaxSize": 1, - "ItemSound": "gear_generic", + "ItemSound": "gear_helmet", "Prefab": { - "path": "assets/content/items/equipment/facecover_halloween_michael/item_equipment_facecover_halloween_micheal.bundle", + "path": "assets/content/items/equipment/helmet_tk_heavy_trooper/item_equipment_helmet_tk_heavy_trooper.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 111, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c1a1e3f2e221602b66cc4c2", + "5bd071d786f7747e707b93a3", + "5bd0716d86f774171822ef4b", + "5bd06f5d86f77427101ad47c", + "5b432c305acfc40019478128", + "5e54f79686f7744022011103", + "5b4326435acfc433000ed01d", + "5e71f6be86f77429f2683c44", + "5b432b2f5acfc4771e1c6622", + "5b4325355acfc40019478126", + "5e54f76986f7740366043752", + "5b432b6c5acfc4001a599bf0", + "5e71fad086f77422443d4604", + "572b7fa524597762b747ce82", + "59e7715586f7742ee5789605", + "5ab8f85d86f7745cd93a1cf5", + "5a16ba61fcdbcb098008728a", + "5a16b672fcdbcb001912fa83", + "5a16b7e1fcdbcb00165aa6c9", + "5aa7e3abe5b5b000171d064d", + "5c0e66e2d174af02a96252f4", + "5e00cdd986f7747473332240" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_nvg", + "_id": "5ea061dd3df0eb08296a0b4a", + "_parent": "5ea058e01dbce517f324b3e2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0558060db834001b735271", + "5a16b8a9fcdbcb00165aa6ca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": true, + "Durability": 45, + "MaxDurability": 45, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 50 + }, + "DeafStrength": "None", + "BluntThroughput": 0.099, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0.2, + "ArmorType": "None", + "armorColliders": [ + "HeadCommon", + "ParietalHead", + "Eyes", + "Jaw", + "NeckFront" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -2, + "weaponErgonomicPenalty": -1 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "656fd7c32668ef0402028fb9": { + "_id": "656fd7c32668ef0402028fb9", + "_name": "6b2_level2_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b2_level2_soft_armor_front", + "ShortName": "6b2_level2_soft_armor_front", + "Description": "6b2_level2_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 41, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 64, + "MaxDurability": 64, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.16, + "ArmorMaterial": "Titan", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": -1, + "mousePenalty": 0, + "weaponErgonomicPenalty": -1, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657080a212755ae0d907ad04": { + "_id": "657080a212755ae0d907ad04", + "_name": "6b23-2_level2_soft_armor_right", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b23-2_level2_soft_armor_right", + "ShortName": "6b23-2_level2_soft_armor_right", + "Description": "6b23-2_level2_soft_armor_right", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 8, + "MaxDurability": 8, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657087577f6d4590ac0d2109": { + "_id": "657087577f6d4590ac0d2109", + "_name": "6b5-15_level4_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b5-15_level4_soft_armor_front", + "ShortName": "6b5-15_level4_soft_armor_front", + "Description": "6b5-15_level4_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 148, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 44, + "MaxDurability": 44, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.28, + "ArmorMaterial": "Ceramic", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": -3, + "mousePenalty": 0, + "weaponErgonomicPenalty": -3, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6557519ac9b1d9bdcb0777e1": { + "_id": "6557519ac9b1d9bdcb0777e1", + "_name": "level2_soft_armor_plate_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "level2_soft_armor_plate_front", + "ShortName": "level2_soft_armor_plate_front", + "Description": "level2_soft_armor_plate_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 10, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 20, + "MaxDurability": 20, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65764275d8537eb26a0355e9": { + "_id": "65764275d8537eb26a0355e9", + "_name": "zhuk6_level3_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "zhuk6_level3_soft_armor_front", + "ShortName": "zhuk6_level3_soft_armor_front", + "Description": "zhuk6_level3_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 107, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 60, + "MaxDurability": 60, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65703fa06584602f7d057a8e": { + "_id": "65703fa06584602f7d057a8e", + "_name": "paca_level2_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "paca_level2_soft_armor_back", + "ShortName": "paca_level2_soft_armor_back", + "Description": "paca_level2_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 48, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.35, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "SpineDown", + "SpineTop" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657bc107aab96fccee08be9f": { + "_id": "657bc107aab96fccee08be9f", + "_name": "altin_level5_helmet_armor_ears", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "altin_level5_helmet_armor_ears", + "ShortName": "altin_level5_helmet_armor_ears", + "Description": "altin_level5_helmet_armor_ears", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 434, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 27, + "MaxDurability": 27, + "armorClass": "5", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1665, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "5a16ba61fcdbcb098008728a": { + "_id": "5a16ba61fcdbcb098008728a", + "_name": "helmet_ops_core_fast_gunsight_mandible", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "helmet_ops_core_fast_gunsight_mandible", + "ShortName": "helmet_ops_core_fast_gunsight_mandible", + "Description": "helmet_ops_core_fast_gunsight_mandible", + "Weight": 1.2, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_opscore_fast_side_armor/item_equipment_helmet_opscore_fast_gunsight_mandible.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 106, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "59e7715586f7742ee5789605" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 20, + "MaxDurability": 20, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.198, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [ + "Jaw", + "NeckFront" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": -3 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "60363c0c92ec1c31037959f5": { + "_id": "60363c0c92ec1c31037959f5", + "_name": "item_equipment_facecover_gasmask_gp7", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "item_equipment_facecover_gasmask_gp7", + "ShortName": "item_equipment_facecover_gasmask_gp7", + "Description": "item_equipment_facecover_gasmask_gp7", + "Weight": 0.6, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/facecover_gasmask_gp7/item_equipment_facecover_gasmask_gp7.bundle", "rcid": "" }, "UsePrefab": { @@ -293600,8 +293625,45 @@ "5aa2a7e8e5b5b00016327c16", "5aa2b89be5b5b0001569311f", "5aa2b8d7e5b5b00014028f4a", + "5aa2ba46e5b5b000137b758d", + "5aa2b9ede5b5b000137b758b", + "5aa2ba19e5b5b00014028f4e", + "5ab8f20c86f7745cdb629fb2", + "5645bc214bdc2d363b8b4571", + "5c066ef40db834001966a595", + "5aa7d193e5b5b000171d063f", + "5b4329f05acfc47a86086aa1", + "5b43271c5acfc432ff4dce65", + "5b40e5e25acfc4001a599bea", + "5f60e6403b85f6263c14558c", + "5f60e7788adaa7100c3adb49", + "5f60e784f2bcbb675b00dac7", + "5d96141523f0ea1b7f2aacab", + "5bd073c986f7747f627e796c", + "603618feffd42c541047f771", + "603619720ca681766b6a0fc4", + "6040de02647ad86262233012", + "60361a7497633951dc245eb4", + "60361b0b5a45383c122086a1", + "60361b5a9a15b10d96792291", + "5b4327aa5acfc400175496e0", + "5b40e61f5acfc4001a599bec", + "5c0d2727d174af02a012cf58", + "5c08f87c0db8340019124324", + "5e4bfc1586f774264f7582d3", + "59ef13ca86f77445fd0e2483", + "572b7fa124597762b472f9d2", + "5aa7e373e5b5b000137b76f0", + "5a16ba61fcdbcb098008728a", + "5a16b7e1fcdbcb00165aa6c9", + "5f60c076f2bcbb675b00dac2", + "5d6d3829a4b9361bc8618943", + "5c0919b50db834001b7ce3b9", + "5c0e842486f77443a74d2976", + "5f60c85b58eff926626a60f7", + "5e00cdd986f7747473332240", + "5b432b965acfc47a8774094e", "65709d2d21b9f815e208ff95", - "65719f0775149d62ce0a670b", "65749ccf33fdc9c0cf06d3ca", "65749cb8e0423b9ebe0c79c9" ], @@ -293622,10 +293684,10 @@ "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, + "BlocksEarpiece": false, "BlocksEyewear": true, "BlocksHeadwear": false, - "BlocksFaceCover": false, + "BlocksFaceCover": true, "Durability": 100, "MaxDurability": 100, "armorClass": "0", @@ -293650,7 +293712,7 @@ "mousePenalty": 0, "weaponErgonomicPenalty": 0 }, - "_proto": "572b7d8524597762b472f9d1" + "_proto": "572b7fa124597762b472f9d2" }, "5b4325355acfc40019478126": { "_id": "5b4325355acfc40019478126", @@ -293880,15 +293942,460 @@ }, "_proto": "572b7d8524597762b472f9d1" }, - "65730c2213a2f660f60bea96": { - "_id": "65730c2213a2f660f60bea96", - "_name": "ana_m1_level2_soft_armor_back", + "5a16b672fcdbcb001912fa83": { + "_id": "5a16b672fcdbcb001912fa83", + "_name": "helmet_ops_core_fast_visor", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "helmet_ops_core_fast_visor", + "ShortName": "helmet_ops_core_fast_visor", + "Description": "helmet_ops_core_fast_visor", + "Weight": 0.32, + "BackgroundColor": "default", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/helmet_opscore_fast_visor/item_equipment_helmet_opscore_fast_visor.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 95, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c0696830db834001d23f5da", + "5c066e3a0db834001b7353f0", + "5c0558060db834001b735271", + "57235b6f24597759bf5a30f1", + "5c110624d174af029e69734c" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 20, + "MaxDurability": 20, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": true, + "FaceShieldMask": "NoMask", + "HasHinge": true, + "MaterialType": "GlassVisor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1485, + "ArmorMaterial": "Glass", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [ + "HeadCommon", + "Eyes" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, + "6176a40f0b8c0312ac75a3d3": { + "_id": "6176a40f0b8c0312ac75a3d3", + "_name": "item_equipment_facecover_halloween_vampire", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "item_equipment_facecover_HALLOWEEN_Slander", + "ShortName": "item_equipment_facecover_HALLOWEEN_Slander", + "Description": "item_equipment_facecover_HALLOWEEN_Slander", + "Weight": 0.15, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/facecover_halloween_vampire/item_equipment_facecover_halloween_vampire.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "59e770f986f7742cbe3164ef", + "572b7d8524597762b472f9d1", + "5aa2b87de5b5b00016327c25", + "5aa2a7e8e5b5b00016327c16", + "5a43943586f77416ad2f06e2", + "5aa2b89be5b5b0001569311f", + "5aa2b8d7e5b5b00014028f4a", + "5a43957686f7742a2c2f11b0", + "5aa2ba46e5b5b000137b758d", + "5aa2b9ede5b5b000137b758b", + "5aa2ba19e5b5b00014028f4e", + "5ab8f20c86f7745cdb629fb2", + "5c066ef40db834001966a595", + "5df8a58286f77412631087ed", + "5a16bb52fcdbcb001a3b00dc", + "5f99418230835532b445e954", + "5b4329f05acfc47a86086aa1", + "5b43271c5acfc432ff4dce65", + "5b40e5e25acfc4001a599bea", + "5f60e6403b85f6263c14558c", + "5f60e7788adaa7100c3adb49", + "5f60e784f2bcbb675b00dac7", + "60bf74184a63fc79b60c57f6", + "5d96141523f0ea1b7f2aacab", + "5bd073c986f7747f627e796c", + "603618feffd42c541047f771", + "603619720ca681766b6a0fc4", + "6040de02647ad86262233012", + "60361a7497633951dc245eb4", + "60361b0b5a45383c122086a1", + "60361b5a9a15b10d96792291", + "5b4327aa5acfc400175496e0", + "60b52e5bc7d8103275739d67", + "5b4329075acfc400153b78ff", + "5f994730c91ed922dd355de3", + "60a7acf20c5cb24b01346648", + "5b40e61f5acfc4001a599bec", + "5c091a4e0db834001d5addc8", + "5c0e874186f7745dc7616606", + "5f60c74e3b85f6263c145586", + "59ef13ca86f77445fd0e2483", + "572b7fa124597762b472f9d2", + "59e7708286f7742cbd762753", + "65749cb8e0423b9ebe0c79c9", + "65749ccf33fdc9c0cf06d3ca" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7d8524597762b472f9d1" + }, + "5b4326435acfc433000ed01d": { + "_id": "5b4326435acfc433000ed01d", + "_name": "item_equipment_facecover_redflame", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "Maskred", + "ShortName": "Maskred", + "Description": "Maskred", + "Weight": 0.25, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/facecover_redflame/item_equipment_facecover_redflame.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "59e770f986f7742cbe3164ef", + "572b7d8524597762b472f9d1", + "5aa2b87de5b5b00016327c25", + "5aa2a7e8e5b5b00016327c16", + "5aa2b89be5b5b0001569311f", + "5aa2b8d7e5b5b00014028f4a", + "65749cb8e0423b9ebe0c79c9", + "65749ccf33fdc9c0cf06d3ca" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7fa124597762b472f9d2" + }, + "657089638db3adca1009f4ca": { + "_id": "657089638db3adca1009f4ca", + "_name": "item_equipment_facecover_ballistic_mask", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "shattered", + "ShortName": "shattered", + "Description": "shattered", + "Weight": 2.1, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/facecover_ballistic_mask/item_equipment_facecover_ballistic_mask.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 824, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": true, + "BlocksHeadwear": true, + "BlocksFaceCover": false, + "Durability": 35, + "MaxDurability": 35, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.198, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "HeadCommon", + "Jaw", + "Eyes", + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": -1, + "mousePenalty": -3, + "weaponErgonomicPenalty": -2 + }, + "_proto": "572b7d8524597762b472f9d1" + }, + "65730c0e292ecadbfa09ad49": { + "_id": "65730c0e292ecadbfa09ad49", + "_name": "ana_m1_level2_soft_armor_front", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "ana_m1_level2_soft_armor_back", - "ShortName": "ana_m1_level2_soft_armor_back", - "Description": "ana_m1_level2_soft_armor_back", + "Name": "ana_m1_level2_soft_armor_front", + "ShortName": "ana_m1_level2_soft_armor_front", + "Description": "ana_m1_level2_soft_armor_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -293896,7 +294403,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", "rcid": "" }, "UsePrefab": { @@ -293967,8 +294474,8 @@ "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "SpineDown", - "SpineTop" + "RibcageLow", + "RibcageUp" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -294187,15 +294694,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "65730c0e292ecadbfa09ad49": { - "_id": "65730c0e292ecadbfa09ad49", - "_name": "ana_m1_level2_soft_armor_front", + "65730c2213a2f660f60bea96": { + "_id": "65730c2213a2f660f60bea96", + "_name": "ana_m1_level2_soft_armor_back", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "ana_m1_level2_soft_armor_front", - "ShortName": "ana_m1_level2_soft_armor_front", - "Description": "ana_m1_level2_soft_armor_front", + "Name": "ana_m1_level2_soft_armor_back", + "ShortName": "ana_m1_level2_soft_armor_back", + "Description": "ana_m1_level2_soft_armor_back", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -294203,7 +294710,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", "rcid": "" }, "UsePrefab": { @@ -294274,8 +294781,8 @@ "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "RibcageLow", - "RibcageUp" + "SpineDown", + "SpineTop" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -294290,108 +294797,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6570653e89fd4926380b733e": { - "_id": "6570653e89fd4926380b733e", - "_name": "tv115_level2_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "tv115_level2_soft_armor_front", - "ShortName": "tv115_level2_soft_armor_front", - "Description": "tv115_level2_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 50, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 26, - "MaxDurability": 26, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.37, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "65703d866584602f7d057a8a": { "_id": "65703d866584602f7d057a8a", "_name": "paca_level2_soft_armor_front", @@ -294495,23 +294900,23 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "5a16b672fcdbcb001912fa83": { - "_id": "5a16b672fcdbcb001912fa83", - "_name": "helmet_ops_core_fast_visor", + "5c0e842486f77443a74d2976": { + "_id": "5c0e842486f77443a74d2976", + "_name": "item_equipment_helmet_maska_1sh_shield_killa", "_parent": "57bef4c42459772e8d35a53b", "_type": "Item", "_props": { - "Name": "helmet_ops_core_fast_visor", - "ShortName": "helmet_ops_core_fast_visor", - "Description": "helmet_ops_core_fast_visor", - "Weight": 0.32, + "Name": "item_equipment_helmet_maska_1sh_shield", + "ShortName": "item_equipment_helmet_maska_1sh_shield", + "Description": "item_equipment_helmet_maska_1sh_shield", + "Weight": 1.1, "BackgroundColor": "default", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "gear_goggles", "Prefab": { - "path": "assets/content/items/equipment/helmet_opscore_fast_visor/item_equipment_helmet_opscore_fast_visor.bundle", + "path": "assets/content/items/equipment/helmet_maska_1sh_shield/item_equipment_helmet_maska_1sh_shield_killa.bundle", "rcid": "" }, "UsePrefab": { @@ -294520,7 +294925,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": true, + "ExaminedByDefault": false, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -294529,9 +294934,9 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 20, - "ExamineExperience": 10, + "ExamineExperience": 100, "HideEntrails": false, - "RepairCost": 95, + "RepairCost": 128, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -294541,13 +294946,7 @@ "MergesWithChildren": false, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c0696830db834001d23f5da", - "5c066e3a0db834001b7353f0", - "5c0558060db834001b735271", - "57235b6f24597759bf5a30f1", - "5c110624d174af029e69734c" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -294569,34 +294968,774 @@ "BlocksEyewear": true, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 20, - "MaxDurability": 20, - "armorClass": "2", + "Durability": 50, + "MaxDurability": 50, + "armorClass": "6", "Indestructibility": 0.9, "FaceShieldComponent": true, - "FaceShieldMask": "NoMask", + "FaceShieldMask": "Narrow", "HasHinge": true, - "MaterialType": "GlassVisor", + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.0792, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0.35, + "ArmorType": "None", + "armorColliders": [ + "HeadCommon", + "Eyes", + "Jaw" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": -9 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, + "6571baa74cb80d995d0a1490": { + "_id": "6571baa74cb80d995d0a1490", + "_name": "6b23-1_level2_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b23-1_level2_soft_armor_back", + "ShortName": "6b23-1_level2_soft_armor_back", + "Description": "6b23-1_level2_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 45, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 52, + "MaxDurability": 52, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", "RicochetParams": { "x": 0, "y": 0, "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.1485, - "ArmorMaterial": "Glass", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", "BlindnessProtection": 0, - "ArmorType": "None", + "ArmorType": "Light", "armorColliders": [ - "HeadCommon", - "Eyes" + "SpineDown", + "SpineTop" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, "mousePenalty": 0, - "weaponErgonomicPenalty": 0 + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] }, - "_proto": "557ff21e4bdc2d89578b4586" + "_proto": "57347d3d245977448f7b7f61" + }, + "655200ba0ef76cf7be09d528": { + "_id": "655200ba0ef76cf7be09d528", + "_name": "exfil_level4_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "exfil_level4_helmet_armor_nape", + "ShortName": "exfil_level4_helmet_armor_nape", + "Description": "exfil_level4_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 276, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 27, + "MaxDurability": 27, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 65 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1548, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6572fc809a866b80ab07eb59": { + "_id": "6572fc809a866b80ab07eb59", + "_name": "mmac_level2_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "mmac_level2_soft_armor_front", + "ShortName": "mmac_level2_soft_armor_front", + "Description": "mmac_level2_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 61, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 22, + "MaxDurability": 22, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "64ad2d8d7e2fcecf0305533f": { + "_id": "64ad2d8d7e2fcecf0305533f", + "_name": "level3_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "level3_soft_armor_back", + "ShortName": "level3_soft_armor_back", + "Description": "level3_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 10, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 30, + "MaxDurability": 30, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "SpineDown", + "SpineTop" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657326bc5d3a3129fb05f36b": { + "_id": "657326bc5d3a3129fb05f36b", + "_name": "gjel_level3_soft_armor_collar", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "gjel_level3_soft_armor_collar", + "ShortName": "gjel_level3_soft_armor_collar", + "Description": "gjel_level3_soft_armor_collar", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/collar.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 88, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 14, + "MaxDurability": 14, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "NeckBack", + "NeckFront" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "64ad2dba0b9840e4c80c2485": { + "_id": "64ad2dba0b9840e4c80c2485", + "_name": "level3_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "level3_soft_armor_left_side", + "ShortName": "level3_soft_armor_left_side", + "Description": "level3_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 10, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 15, + "MaxDurability": 15, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "5ea18c84ecf1982c7712d9a2": { + "_id": "5ea18c84ecf1982c7712d9a2", + "_name": "item_equipment_helmet_diamond_age_bastion_shield", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_diamond_age_bastion_shield", + "ShortName": "item_equipment_helmet_diamond_age_bastion_shield", + "Description": "item_equipment_helmet_diamond_age_bastion_shield", + "Weight": 0.99, + "BackgroundColor": "default", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_diamond_age_bastion_shield/item_equipment_helmet_diamond_age_bastion_shield.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 149, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5a16ba61fcdbcb098008728a", + "5a16b672fcdbcb001912fa83", + "5a16b7e1fcdbcb00165aa6c9", + "5aa7e3abe5b5b000171d064d", + "5c0e66e2d174af02a96252f4", + "5e00cdd986f7747473332240" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "mod_nvg", + "_id": "5ea18c84ecf1982c7712d9a4", + "_parent": "5ea18c84ecf1982c7712d9a2", + "_props": { + "filters": [ + { + "Shift": 0, + "Filter": [ + "5c0558060db834001b735271", + "5a16b8a9fcdbcb00165aa6ca" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d30c4c4bdc2db4468b457e" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "6", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 50 + }, + "DeafStrength": "None", + "BluntThroughput": 0.0495, + "ArmorMaterial": "Ceramic", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [ + "ParietalHead", + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -6, + "weaponErgonomicPenalty": -5 + }, + "_proto": "5645bc214bdc2d363b8b4571" }, "5d6d3be5a4b9361bc73bc763": { "_id": "5d6d3be5a4b9361bc73bc763", @@ -294796,23 +295935,197 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "5b4326435acfc433000ed01d": { - "_id": "5b4326435acfc433000ed01d", - "_name": "item_equipment_facecover_redflame", + "60a7ad3a0c5cb24b0134664a": { + "_id": "60a7ad3a0c5cb24b0134664a", + "_name": "item_equipment_facecover_welding_gorilla", "_parent": "5a341c4686f77469e155819e", "_type": "Item", "_props": { - "Name": "Maskred", - "ShortName": "Maskred", - "Description": "Maskred", - "Weight": 0.25, + "Name": "shattered", + "ShortName": "shattered", + "Description": "shattered", + "Weight": 1.5, "BackgroundColor": "default", - "Width": 1, + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/facecover_welding/item_equipment_facecover_welding_gorilla.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 31, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "59e770f986f7742cbe3164ef", + "572b7d8524597762b472f9d1", + "5aa2b87de5b5b00016327c25", + "5aa2a7e8e5b5b00016327c16", + "5a43943586f77416ad2f06e2", + "5aa2b89be5b5b0001569311f", + "5aa2b8d7e5b5b00014028f4a", + "5a43957686f7742a2c2f11b0", + "5aa2b9ede5b5b000137b758b", + "5ab8f20c86f7745cdb629fb2", + "5645bc214bdc2d363b8b4571", + "5aa7cfc0e5b5b00015693143", + "5aa7e276e5b5b000171d0647", + "5c066ef40db834001966a595", + "5df8a58286f77412631087ed", + "59e7711e86f7746cae05fbe1", + "5d5e7d28a4b936645d161203", + "5d5e9c74a4b9364855191c40", + "5a154d5cfcdbcb001a3b00da", + "5ac8d6885acfc400180ae7b0", + "5a7c4850e899ef00150be885", + "5aa7d193e5b5b000171d063f", + "5aa7d03ae5b5b00016327db5", + "5a16bb52fcdbcb001a3b00dc", + "5aa7e454e5b5b0214e506fa2", + "5aa7e4a4e5b5b000137b76f2", + "5f99418230835532b445e954", + "5b4329f05acfc47a86086aa1", + "5b40e5e25acfc4001a599bea", + "5f60e6403b85f6263c14558c", + "5f60e7788adaa7100c3adb49", + "5f60e784f2bcbb675b00dac7", + "60bf74184a63fc79b60c57f6", + "5d96141523f0ea1b7f2aacab", + "603618feffd42c541047f771", + "603619720ca681766b6a0fc4", + "6040de02647ad86262233012", + "60361a7497633951dc245eb4", + "60361b0b5a45383c122086a1", + "60361b5a9a15b10d96792291", + "5b4327aa5acfc400175496e0", + "618aef6d0a5a59657e5f55ee", + "60b52e5bc7d8103275739d67", + "5b4329075acfc400153b78ff", + "5f994730c91ed922dd355de3", + "5b40e61f5acfc4001a599bec", + "5b40e3f35acfc40016388218", + "5b40e4035acfc47a87740943", + "5b432d215acfc4771e1c6624", + "5b40e1525acfc4771e1c6611", + "5b40e2bc5acfc40016388216", + "5c17a7ed2e2216152142459c", + "5ea17ca01412a1425304d1c0", + "5f60b34a41e30a4ab12a6947", + "5ea05cf85ad9772e6624305d", + "5d6d3716a4b9361bc8618872", + "5c091a4e0db834001d5addc8", + "5c0e874186f7745dc7616606", + "61bca7cda0eae612383adf57", + "5c0d2727d174af02a012cf58", + "5f60c74e3b85f6263c145586", + "5c08f87c0db8340019124324", + "5c06c6a80db834001b735491", + "5e4bfc1586f774264f7582d3", + "5e00c1ad86f774747333222c", + "5e01ef6886f77445f643baa4", + "5ca20ee186f774799474abc2", + "59ef13ca86f77445fd0e2483", + "59e7708286f7742cbd762753", + "65719f0775149d62ce0a670b", + "65709d2d21b9f815e208ff95", + "65749cb8e0423b9ebe0c79c9", + "65749ccf33fdc9c0cf06d3ca" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "5", + "Indestructibility": 0.9, + "FaceShieldComponent": true, + "FaceShieldMask": "Wide", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 70 + }, + "DeafStrength": "Low", + "BluntThroughput": 0.198, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0.7, + "ArmorType": "Heavy", + "armorColliders": [ + "HeadCommon", + "ParietalHead", + "Ears", + "Eyes", + "Jaw" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": -2, + "mousePenalty": -10, + "weaponErgonomicPenalty": -5 + }, + "_proto": "572b7d8524597762b472f9d1" + }, + "5f60c85b58eff926626a60f7": { + "_id": "5f60c85b58eff926626a60f7", + "_name": "item_equipment_helmet_rys_t_shield", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_rys_t_shield", + "ShortName": "item_equipment_helmet_rys_t_shield", + "Description": "item_equipment_helmet_rys_t_shield", + "Weight": 1.2, + "BackgroundColor": "default", + "Width": 2, "Height": 1, "StackMaxSize": 1, - "ItemSound": "gear_generic", + "ItemSound": "gear_goggles", "Prefab": { - "path": "assets/content/items/equipment/facecover_redflame/item_equipment_facecover_redflame.bundle", + "path": "assets/content/items/equipment/helmet_rys_t_shield/item_equipment_helmet_rys_t_shield.bundle", "rcid": "" }, "UsePrefab": { @@ -294829,10 +296142,108 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 5, + "LootExperience": 20, "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 0, + "RepairCost": 191, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 55, + "MaxDurability": 55, + "armorClass": "5", + "Indestructibility": 0.9, + "FaceShieldComponent": true, + "FaceShieldMask": "Wide", + "HasHinge": true, + "MaterialType": "GlassVisor", + "RicochetParams": { + "x": 0.7, + "y": 0.4, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.0792, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0.3, + "ArmorType": "None", + "armorColliders": [ + "HeadCommon", + "Eyes", + "Jaw" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -6, + "weaponErgonomicPenalty": -3 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, + "65764a4cd8537eb26a0355ee": { + "_id": "65764a4cd8537eb26a0355ee", + "_name": "6b5-16_level3_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b5-16_level3_soft_armor_front", + "ShortName": "6b5-16_level3_soft_armor_front", + "Description": "6b5-16_level3_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 79, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -294842,16 +296253,7 @@ "MergesWithChildren": false, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [ - "59e770f986f7742cbe3164ef", - "572b7d8524597762b472f9d1", - "5aa2b87de5b5b00016327c25", - "5aa2a7e8e5b5b00016327c16", - "5aa2b89be5b5b0001569311f", - "5aa2b8d7e5b5b00014028f4a", - "65749cb8e0423b9ebe0c79c9", - "65749ccf33fdc9c0cf06d3ca" - ], + "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -294873,49 +296275,58 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", + "Durability": 70, + "MaxDurability": 70, + "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", "HasHinge": false, "MaterialType": "BodyArmor", "RicochetParams": { - "x": 0, - "y": 0, + "x": 0.8, + "y": 0.3, "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", + "BluntThroughput": 0.16, + "ArmorMaterial": "Titan", "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], + "ArmorType": "Heavy", + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], "armorPlateColliders": [], "speedPenaltyPercent": 0, "mousePenalty": 0, - "weaponErgonomicPenalty": 0 + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] }, - "_proto": "572b7fa124597762b472f9d2" + "_proto": "57347d3d245977448f7b7f61" }, - "62a5c41e8ec41a51b34739c3": { - "_id": "62a5c41e8ec41a51b34739c3", - "_name": "item_equipment_facecover_hockey_03", + "6176a48d732a664031271438": { + "_id": "6176a48d732a664031271438", + "_name": "item_equipment_facecover_halloween_kaonasi", "_parent": "5a341c4686f77469e155819e", "_type": "Item", "_props": { "Name": "item_equipment_facecover_HALLOWEEN_Jason", "ShortName": "item_equipment_facecover_HALLOWEEN_Jason", "Description": "item_equipment_facecover_HALLOWEEN_Jason\n", - "Weight": 0.1, + "Weight": 0.2, "BackgroundColor": "default", "Width": 2, "Height": 2, "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/facecover_hockey/item_equipment_facecover_hockey_03.bundle", + "path": "assets/content/items/equipment/facecover_halloween_kaonasi/item_equipment_facecover_halloween_kaonasi.bundle", "rcid": "" }, "UsePrefab": { @@ -294952,6 +296363,71 @@ "5aa2a7e8e5b5b00016327c16", "5aa2b89be5b5b0001569311f", "5aa2b8d7e5b5b00014028f4a", + "5a43957686f7742a2c2f11b0", + "5aa2ba46e5b5b000137b758d", + "5aa2b9ede5b5b000137b758b", + "5aa2ba19e5b5b00014028f4e", + "5ab8f20c86f7745cdb629fb2", + "5645bc214bdc2d363b8b4571", + "5aa7cfc0e5b5b00015693143", + "5aa7e276e5b5b000171d0647", + "5c066ef40db834001966a595", + "5df8a58286f77412631087ed", + "59e7711e86f7746cae05fbe1", + "5d5e7d28a4b936645d161203", + "5d5e9c74a4b9364855191c40", + "5a154d5cfcdbcb001a3b00da", + "5ac8d6885acfc400180ae7b0", + "5a7c4850e899ef00150be885", + "5aa7d193e5b5b000171d063f", + "5aa7d03ae5b5b00016327db5", + "5a16bb52fcdbcb001a3b00dc", + "5aa7e454e5b5b0214e506fa2", + "5aa7e4a4e5b5b000137b76f2", + "5f99418230835532b445e954", + "5b4329f05acfc47a86086aa1", + "5b43271c5acfc432ff4dce65", + "5b40e5e25acfc4001a599bea", + "5f60e6403b85f6263c14558c", + "5f60e7788adaa7100c3adb49", + "5f60e784f2bcbb675b00dac7", + "60bf74184a63fc79b60c57f6", + "5d96141523f0ea1b7f2aacab", + "5bd073c986f7747f627e796c", + "603618feffd42c541047f771", + "603619720ca681766b6a0fc4", + "6040de02647ad86262233012", + "60361a7497633951dc245eb4", + "60361b0b5a45383c122086a1", + "60361b5a9a15b10d96792291", + "5b4327aa5acfc400175496e0", + "60b52e5bc7d8103275739d67", + "5b4329075acfc400153b78ff", + "5f994730c91ed922dd355de3", + "60a7acf20c5cb24b01346648", + "5b40e61f5acfc4001a599bec", + "5b40e3f35acfc40016388218", + "5b40e4035acfc47a87740943", + "5b432d215acfc4771e1c6624", + "5b40e1525acfc4771e1c6611", + "5b40e2bc5acfc40016388216", + "5c17a7ed2e2216152142459c", + "5ea17ca01412a1425304d1c0", + "5f60b34a41e30a4ab12a6947", + "5ea05cf85ad9772e6624305d", + "5d6d3716a4b9361bc8618872", + "5c091a4e0db834001d5addc8", + "5c0e874186f7745dc7616606", + "5c0d2727d174af02a012cf58", + "5f60c74e3b85f6263c145588", + "5c08f87c0db8340019124324", + "5c06c6a80db834001b735491", + "5e4bfc1586f774264f7582d3", + "5e00c1ad86f774747333222c", + "5e01ef6886f77445f643baa4", + "5ca20ee186f774799474abc2", + "59ef13ca86f77445fd0e2483", + "572b7fa124597762b472f9d2", "65749cb8e0423b9ebe0c79c9", "65749ccf33fdc9c0cf06d3ca" ], @@ -294973,8 +296449,8 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": true, + "BlocksEyewear": true, + "BlocksHeadwear": false, "BlocksFaceCover": false, "Durability": 100, "MaxDurability": 100, @@ -295002,30 +296478,126 @@ }, "_proto": "572b7d8524597762b472f9d1" }, - "5a341c4086f77401f2541505": { - "_id": "5a341c4086f77401f2541505", - "_name": "Headwear", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Node", - "_props": {} + "6575d9b8945bf78edd04c427": { + "_id": "6575d9b8945bf78edd04c427", + "_name": "redut_t_level3_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "redut_t_level3_soft_armor_back", + "ShortName": "redut_t_level3_soft_armor_back", + "Description": "redut_t_level3_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 75, + "MaxDurability": 75, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" }, - "5ac4c50d5acfc40019262e87": { - "_id": "5ac4c50d5acfc40019262e87", - "_name": "item_equipment_helmet_k1c_shield", + "5b46238386f7741a693bcf9c": { + "_id": "5b46238386f7741a693bcf9c", + "_name": "item_equipment_helmet_kiverm_shield", "_parent": "57bef4c42459772e8d35a53b", "_type": "Item", "_props": { - "Name": "helmet_k1c_shield", - "ShortName": "helmet_k1c_shield", - "Description": "helmet_k1c_shield", - "Weight": 1, + "Name": "kiver_faceshield", + "ShortName": "kiver_faceshield", + "Description": "kiver_faceshield", + "Weight": 1.2, "BackgroundColor": "default", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "gear_goggles", "Prefab": { - "path": "assets/content/items/equipment/helmet_k1c_shield/item_equipment_helmet_k1c_shield.bundle", + "path": "assets/content/items/equipment/helmet_kiverm_shield/item_equipment_helmet_kiverm_shield.bundle", "rcid": "" }, "UsePrefab": { @@ -295045,7 +296617,7 @@ "LootExperience": 20, "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 74, + "RepairCost": 128, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -295077,13 +296649,215 @@ "BlocksEyewear": true, "BlocksHeadwear": false, "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": true, + "FaceShieldMask": "NoMask", + "HasHinge": true, + "MaterialType": "GlassVisor", + "RicochetParams": { + "x": 0.7, + "y": 0.4, + "z": 55 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1485, + "ArmorMaterial": "Glass", + "BlindnessProtection": 0.1, + "ArmorType": "None", + "armorColliders": [ + "HeadCommon", + "Eyes", + "Jaw" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": -3 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, + "5f60c076f2bcbb675b00dac2": { + "_id": "5f60c076f2bcbb675b00dac2", + "_name": "item_equipment_helmet_galvion_mandible", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_galvion_mandible", + "ShortName": "item_equipment_helmet_galvion_mandible", + "Description": "item_equipment_helmet_galvion_mandible", + "Weight": 1.1, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_galvion_mandible/item_equipment_helmet_galvion_mandible.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 106, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "59e7715586f7742ee5789605" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 20, + "MaxDurability": 20, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.198, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [ + "Jaw" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": -2 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "5f60bf4558eff926626a60f2": { + "_id": "5f60bf4558eff926626a60f2", + "_name": "item_equipment_helmet_galvion_fixed_arm_visor", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_galvion_fixed_arm_visor", + "ShortName": "item_equipment_helmet_galvion_fixed_arm_visor", + "Description": "item_equipment_helmet_galvion_fixed_arm_visor", + "Weight": 0.27, + "BackgroundColor": "default", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/helmet_galvion_fixed_arm_visor/item_equipment_helmet_galvion_fixed_arm_visor.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 95, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c0696830db834001d23f5da", + "5c066e3a0db834001b7353f0", + "5c0558060db834001b735271", + "57235b6f24597759bf5a30f1", + "5c110624d174af029e69734c" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": false, "Durability": 30, "MaxDurability": 30, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": true, "FaceShieldMask": "NoMask", - "HasHinge": true, + "HasHinge": false, "MaterialType": "GlassVisor", "RicochetParams": { "x": 0, @@ -295091,14 +296865,13 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.099, + "BluntThroughput": 0.1485, "ArmorMaterial": "Glass", "BlindnessProtection": 0.15, "ArmorType": "None", "armorColliders": [ "HeadCommon", - "Eyes", - "Jaw" + "Eyes" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -295312,15 +297085,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "64afef49977493a0ee026217": { - "_id": "64afef49977493a0ee026217", - "_name": "level3_soft_armor_stomach", + "64ad2dac6f9247c2f4012439": { + "_id": "64ad2dac6f9247c2f4012439", + "_name": "level3_soft_armor_front", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "level3_soft_armor_stomach", - "ShortName": "level3_soft_armor_stomach", - "Description": "level3_soft_armor_stomach", + "Name": "level3_soft_armor_front", + "ShortName": "level3_soft_armor_front", + "Description": "level3_soft_armor_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -295328,7 +297101,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", "rcid": "" }, "UsePrefab": { @@ -295380,8 +297153,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, + "Durability": 30, + "MaxDurability": 30, "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -295398,112 +297171,10 @@ "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", - "armorColliders": [ - "Pelvis", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575d9a79e27f4a85e08112d": { - "_id": "6575d9a79e27f4a85e08112d", - "_name": "redut_t_level3_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "redut_t_level3_soft_armor_front", - "ShortName": "redut_t_level3_soft_armor_front", - "Description": "redut_t_level3_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 75, - "MaxDurability": 75, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", "armorColliders": [ "RibcageUp", - "RibcageLow" + "RibcageLow", + "Pelvis" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -295518,114 +297189,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "5a16ba61fcdbcb098008728a": { - "_id": "5a16ba61fcdbcb098008728a", - "_name": "helmet_ops_core_fast_gunsight_mandible", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "helmet_ops_core_fast_gunsight_mandible", - "ShortName": "helmet_ops_core_fast_gunsight_mandible", - "Description": "helmet_ops_core_fast_gunsight_mandible", - "Weight": 1.2, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_opscore_fast_side_armor/item_equipment_helmet_opscore_fast_gunsight_mandible.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 106, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "59e7715586f7742ee5789605" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 20, - "MaxDurability": 20, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.198, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [ - "Jaw", - "NeckFront" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": -3 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "6571baa74cb80d995d0a1490": { - "_id": "6571baa74cb80d995d0a1490", - "_name": "6b23-1_level2_soft_armor_back", + "65731b4fcea9255e2102360e": { + "_id": "65731b4fcea9255e2102360e", + "_name": "korundvm_level2_soft_armor_back", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "6b23-1_level2_soft_armor_back", - "ShortName": "6b23-1_level2_soft_armor_back", - "Description": "6b23-1_level2_soft_armor_back", + "Name": "korundvm_level2_soft_armor_back", + "ShortName": "korundvm_level2_soft_armor_back", + "Description": "korundvm_level2_soft_armor_back", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -295653,7 +297225,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 45, + "RepairCost": 58, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -295685,8 +297257,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 52, - "MaxDurability": 52, + "Durability": 40, + "MaxDurability": 40, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -295699,7 +297271,7 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.33, + "BluntThroughput": 0.31, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", @@ -295720,15 +297292,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6572fc809a866b80ab07eb59": { - "_id": "6572fc809a866b80ab07eb59", - "_name": "mmac_level2_soft_armor_front", + "64ad2dd30b9840e4c80c2489": { + "_id": "64ad2dd30b9840e4c80c2489", + "_name": "level3_soft_armor_collar", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "mmac_level2_soft_armor_front", - "ShortName": "mmac_level2_soft_armor_front", - "Description": "mmac_level2_soft_armor_front", + "Name": "level3_soft_armor_collar", + "ShortName": "level3_soft_armor_collar", + "Description": "level3_soft_armor_collar", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -295736,7 +297308,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "path": "assets/content/items/equipment/armor_plates/collar.bundle", "rcid": "" }, "UsePrefab": { @@ -295756,7 +297328,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 61, + "RepairCost": 10, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -295788,9 +297360,9 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 22, - "MaxDurability": 22, - "armorClass": "2", + "Durability": 10, + "MaxDurability": 10, + "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", @@ -295802,14 +297374,15 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.33, + "BluntThroughput": 0, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" + "armorColliders": [ + "NeckFront", + "NeckBack" ], + "armorPlateColliders": [], "speedPenaltyPercent": 0, "mousePenalty": 0, "weaponErgonomicPenalty": 0, @@ -295822,15 +297395,113 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "654a8ba90337d53f9102c2b2": { - "_id": "654a8ba90337d53f9102c2b2", - "_name": "level2_soft_armor_right_arm", + "5ca2113f86f7740b2547e1d2": { + "_id": "5ca2113f86f7740b2547e1d2", + "_name": "item_equipment_helmet_vulkan_shield", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "helmet_altyn_face_shield", + "ShortName": "helmet_altyn_face_shield", + "Description": "helmet_altyn_face_shield", + "Weight": 1.8, + "BackgroundColor": "default", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/helmet_vulkan_5_shield/item_equipment_helmet_vulkan_5_shield.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 106, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 85, + "MaxDurability": 85, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": true, + "FaceShieldMask": "NoMask", + "HasHinge": true, + "MaterialType": "GlassVisor", + "RicochetParams": { + "x": 0.7, + "y": 0.4, + "z": 55 + }, + "DeafStrength": "None", + "BluntThroughput": 0.0792, + "ArmorMaterial": "Glass", + "BlindnessProtection": 0.1, + "ArmorType": "None", + "armorColliders": [ + "HeadCommon", + "Eyes", + "Jaw" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -9, + "weaponErgonomicPenalty": -5 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, + "64afeecb977493a0ee026213": { + "_id": "64afeecb977493a0ee026213", + "_name": "level3_soft_armor_right_arm", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "level2_soft_armor_right_arm", - "ShortName": "level2_soft_armor_right_arm", - "Description": "level2_soft_armor_right_arm", + "Name": "level3_soft_armor_right_arm", + "ShortName": "level3_soft_armor_right_arm", + "Description": "level3_soft_armor_right_arm", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -295890,9 +297561,9 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "2", + "Durability": 15, + "MaxDurability": 15, + "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", @@ -295924,773 +297595,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "5e01f31d86f77465cf261343": { - "_id": "5e01f31d86f77465cf261343", - "_name": "helmet_team_wendy_exfil_ear_covers_coyote", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "helmet_team_wendy_exfil_ear_covers", - "ShortName": "helmet_team_wendy_exfil_ear_covers", - "Description": "helmet_team_wendy_exfil_ear_covers", - "Weight": 0.172, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_team_wendy_exfil_ear_covers/helmet_team_wendy_exfil_ear_covers_coyote.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 128, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c165d832e2216398b5a7e36" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 30, - "MaxDurability": 30, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 70 - }, - "DeafStrength": "Low", - "BluntThroughput": 0.1287, - "ArmorMaterial": "Aluminium", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5fd8d28367cb5e077335170f": { - "_id": "5fd8d28367cb5e077335170f", - "_name": "item_equipment_facecover_smoke", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "Balaclavanomex", - "ShortName": "Balaclavanomex", - "Description": "Balaclavanomex", - "Weight": 0.1, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_smoke/item_equipment_head_smoke.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": true, - "DiscardLimit": 1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "60a7ad3a0c5cb24b0134664a": { - "_id": "60a7ad3a0c5cb24b0134664a", - "_name": "item_equipment_facecover_welding_gorilla", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "shattered", - "ShortName": "shattered", - "Description": "shattered", - "Weight": 1.5, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/facecover_welding/item_equipment_facecover_welding_gorilla.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 31, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "59e770f986f7742cbe3164ef", - "572b7d8524597762b472f9d1", - "5aa2b87de5b5b00016327c25", - "5aa2a7e8e5b5b00016327c16", - "5a43943586f77416ad2f06e2", - "5aa2b89be5b5b0001569311f", - "5aa2b8d7e5b5b00014028f4a", - "5a43957686f7742a2c2f11b0", - "5aa2b9ede5b5b000137b758b", - "5ab8f20c86f7745cdb629fb2", - "5645bc214bdc2d363b8b4571", - "5aa7cfc0e5b5b00015693143", - "5aa7e276e5b5b000171d0647", - "5c066ef40db834001966a595", - "5df8a58286f77412631087ed", - "59e7711e86f7746cae05fbe1", - "5d5e7d28a4b936645d161203", - "5d5e9c74a4b9364855191c40", - "5a154d5cfcdbcb001a3b00da", - "5ac8d6885acfc400180ae7b0", - "5a7c4850e899ef00150be885", - "5aa7d193e5b5b000171d063f", - "5aa7d03ae5b5b00016327db5", - "5a16bb52fcdbcb001a3b00dc", - "5aa7e454e5b5b0214e506fa2", - "5aa7e4a4e5b5b000137b76f2", - "5f99418230835532b445e954", - "5b4329f05acfc47a86086aa1", - "5b40e5e25acfc4001a599bea", - "5f60e6403b85f6263c14558c", - "5f60e7788adaa7100c3adb49", - "5f60e784f2bcbb675b00dac7", - "60bf74184a63fc79b60c57f6", - "5d96141523f0ea1b7f2aacab", - "603618feffd42c541047f771", - "603619720ca681766b6a0fc4", - "6040de02647ad86262233012", - "60361a7497633951dc245eb4", - "60361b0b5a45383c122086a1", - "60361b5a9a15b10d96792291", - "5b4327aa5acfc400175496e0", - "618aef6d0a5a59657e5f55ee", - "60b52e5bc7d8103275739d67", - "5b4329075acfc400153b78ff", - "5f994730c91ed922dd355de3", - "5b40e61f5acfc4001a599bec", - "5b40e3f35acfc40016388218", - "5b40e4035acfc47a87740943", - "5b432d215acfc4771e1c6624", - "5b40e1525acfc4771e1c6611", - "5b40e2bc5acfc40016388216", - "5c17a7ed2e2216152142459c", - "5ea17ca01412a1425304d1c0", - "5f60b34a41e30a4ab12a6947", - "5ea05cf85ad9772e6624305d", - "5d6d3716a4b9361bc8618872", - "5c091a4e0db834001d5addc8", - "5c0e874186f7745dc7616606", - "61bca7cda0eae612383adf57", - "5c0d2727d174af02a012cf58", - "5f60c74e3b85f6263c145586", - "5c08f87c0db8340019124324", - "5c06c6a80db834001b735491", - "5e4bfc1586f774264f7582d3", - "5e00c1ad86f774747333222c", - "5e01ef6886f77445f643baa4", - "5ca20ee186f774799474abc2", - "59ef13ca86f77445fd0e2483", - "59e7708286f7742cbd762753", - "65719f0775149d62ce0a670b", - "65709d2d21b9f815e208ff95", - "65749cb8e0423b9ebe0c79c9", - "65749ccf33fdc9c0cf06d3ca" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "5", - "Indestructibility": 0.9, - "FaceShieldComponent": true, - "FaceShieldMask": "Wide", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 70 - }, - "DeafStrength": "Low", - "BluntThroughput": 0.198, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0.7, - "ArmorType": "Heavy", - "armorColliders": [ - "HeadCommon", - "ParietalHead", - "Ears", - "Eyes", - "Jaw" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": -2, - "mousePenalty": -10, - "weaponErgonomicPenalty": -5 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "5bd073a586f7747e6f135799": { - "_id": "5bd073a586f7747e6f135799", - "_name": "item_equipment_mustache", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "item_equipment_mustache", - "ShortName": "item_equipment_mustache", - "Description": "item_equipment_mustache", - "Weight": 0.07, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/mustache/item_equipment_mustache.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": true, - "DiscardLimit": 1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "65764a4cd8537eb26a0355ee": { - "_id": "65764a4cd8537eb26a0355ee", - "_name": "6b5-16_level3_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b5-16_level3_soft_armor_front", - "ShortName": "6b5-16_level3_soft_armor_front", - "Description": "6b5-16_level3_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 79, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 70, - "MaxDurability": 70, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.16, - "ArmorMaterial": "Titan", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575ef599c7cad336508e453": { - "_id": "6575ef599c7cad336508e453", - "_name": "ars_cpc_level3_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ars_cpc_level3_soft_armor_front", - "ShortName": "ars_cpc_level3_soft_armor_front", - "Description": "ars_cpc_level3_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "654a90aff4f81a421b0a7c86": { - "_id": "654a90aff4f81a421b0a7c86", - "_name": "Untar_level3_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "Untar_level3_helmet_armor_top", - "ShortName": "Untar_level3_helmet_armor_top", - "Description": "Untar_level3_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 116, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2376, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "654a8ae00337d53f9102c2aa": { "_id": "654a8ae00337d53f9102c2aa", "_name": "6b13_level2_soft_armor_collar", @@ -296794,108 +297698,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "64afeecb977493a0ee026213": { - "_id": "64afeecb977493a0ee026213", - "_name": "level3_soft_armor_right_arm", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "level3_soft_armor_right_arm", - "ShortName": "level3_soft_armor_right_arm", - "Description": "level3_soft_armor_right_arm", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/shoulder_r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 10, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightUpperArm" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "654a91068e1ce698150fd1e2": { "_id": "654a91068e1ce698150fd1e2", "_name": "Untar_level3_helmet_armor_nape", @@ -296998,6 +297800,108 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "6575ef6bf6a13a7b7100b093": { + "_id": "6575ef6bf6a13a7b7100b093", + "_name": "ars_cpc_level3_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ars_cpc_level3_soft_armor_back", + "ShortName": "ars_cpc_level3_soft_armor_back", + "Description": "ars_cpc_level3_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "6551fec55d0cf82e51014288": { "_id": "6551fec55d0cf82e51014288", "_name": "exfil_level4_helmet_armor_top", @@ -297216,9 +298120,9 @@ }, "_proto": "572b7d8524597762b472f9d1" }, - "5bd071d786f7747e707b93a3": { - "_id": "5bd071d786f7747e707b93a3", - "_name": "item_equipment_facecover_HALLOWEEN_Jason", + "62a5c41e8ec41a51b34739c3": { + "_id": "62a5c41e8ec41a51b34739c3", + "_name": "item_equipment_facecover_hockey_03", "_parent": "5a341c4686f77469e155819e", "_type": "Item", "_props": { @@ -297232,7 +298136,7 @@ "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/facecover_halloween_jason/item_equipment_facecover_halloween_jason.bundle", + "path": "assets/content/items/equipment/facecover_hockey/item_equipment_facecover_hockey_03.bundle", "rcid": "" }, "UsePrefab": { @@ -297269,8 +298173,8 @@ "5aa2a7e8e5b5b00016327c16", "5aa2b89be5b5b0001569311f", "5aa2b8d7e5b5b00014028f4a", - "65749ccf33fdc9c0cf06d3ca", - "65749cb8e0423b9ebe0c79c9" + "65749cb8e0423b9ebe0c79c9", + "65749ccf33fdc9c0cf06d3ca" ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", @@ -297319,654 +298223,6 @@ }, "_proto": "572b7d8524597762b472f9d1" }, - "635267ab3c89e2112001f826": { - "_id": "635267ab3c89e2112001f826", - "_name": "item_equipment_facecover_halloween_skull", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "item_equipment_facecover_HALLOWEEN_Jason", - "ShortName": "item_equipment_facecover_HALLOWEEN_Jason", - "Description": "item_equipment_facecover_HALLOWEEN_Jason\n", - "Weight": 0.2, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_halloween_skull/item_equipment_facecover_halloween_skull.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": true, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "6571bde39837cc51b800c212": { - "_id": "6571bde39837cc51b800c212", - "_name": "item_equipment_facecover_skull_half_mask", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "Mask", - "ShortName": "Mask", - "Description": "Mask", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_skull_half_mask/item_equipment_facecover_skull_half_mask.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7fa124597762b472f9d2" - }, - "62a09dd4621468534a797ac7": { - "_id": "62a09dd4621468534a797ac7", - "_name": "item_equipment_facecover_beard_red", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "item_beard", - "ShortName": "item_beard", - "Description": "item_beard", - "Weight": 0.1, - "BackgroundColor": "violet", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/item_beard/item_equipment_facecover_beard_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "5ab8f85d86f7745cd93a1cf5": { - "_id": "5ab8f85d86f7745cd93a1cf5", - "_name": "shemagh", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "shemagh", - "ShortName": "shemagh", - "Description": "shemagh", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_shemagh/item_equipment_facecover_shemagh.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "59e770f986f7742cbe3164ef", - "572b7d8524597762b472f9d1", - "5aa2b87de5b5b00016327c25", - "5aa2a7e8e5b5b00016327c16", - "5aa2b89be5b5b0001569311f", - "5aa2b8d7e5b5b00014028f4a", - "65749cb8e0423b9ebe0c79c9", - "65749ccf33fdc9c0cf06d3ca" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "6176a40f0b8c0312ac75a3d3": { - "_id": "6176a40f0b8c0312ac75a3d3", - "_name": "item_equipment_facecover_halloween_vampire", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "item_equipment_facecover_HALLOWEEN_Slander", - "ShortName": "item_equipment_facecover_HALLOWEEN_Slander", - "Description": "item_equipment_facecover_HALLOWEEN_Slander", - "Weight": 0.15, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_halloween_vampire/item_equipment_facecover_halloween_vampire.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "59e770f986f7742cbe3164ef", - "572b7d8524597762b472f9d1", - "5aa2b87de5b5b00016327c25", - "5aa2a7e8e5b5b00016327c16", - "5a43943586f77416ad2f06e2", - "5aa2b89be5b5b0001569311f", - "5aa2b8d7e5b5b00014028f4a", - "5a43957686f7742a2c2f11b0", - "5aa2ba46e5b5b000137b758d", - "5aa2b9ede5b5b000137b758b", - "5aa2ba19e5b5b00014028f4e", - "5ab8f20c86f7745cdb629fb2", - "5c066ef40db834001966a595", - "5df8a58286f77412631087ed", - "5a16bb52fcdbcb001a3b00dc", - "5f99418230835532b445e954", - "5b4329f05acfc47a86086aa1", - "5b43271c5acfc432ff4dce65", - "5b40e5e25acfc4001a599bea", - "5f60e6403b85f6263c14558c", - "5f60e7788adaa7100c3adb49", - "5f60e784f2bcbb675b00dac7", - "60bf74184a63fc79b60c57f6", - "5d96141523f0ea1b7f2aacab", - "5bd073c986f7747f627e796c", - "603618feffd42c541047f771", - "603619720ca681766b6a0fc4", - "6040de02647ad86262233012", - "60361a7497633951dc245eb4", - "60361b0b5a45383c122086a1", - "60361b5a9a15b10d96792291", - "5b4327aa5acfc400175496e0", - "60b52e5bc7d8103275739d67", - "5b4329075acfc400153b78ff", - "5f994730c91ed922dd355de3", - "60a7acf20c5cb24b01346648", - "5b40e61f5acfc4001a599bec", - "5c091a4e0db834001d5addc8", - "5c0e874186f7745dc7616606", - "5f60c74e3b85f6263c145586", - "59ef13ca86f77445fd0e2483", - "572b7fa124597762b472f9d2", - "59e7708286f7742cbd762753", - "65749cb8e0423b9ebe0c79c9", - "65749ccf33fdc9c0cf06d3ca" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "644120aa86ffbe10ee032b6f": { - "_id": "644120aa86ffbe10ee032b6f", - "_name": "ArmorPlate", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Node", - "_props": { - "Lower75Prefab": { - "path": "", - "rcid": "" - } - } - }, - "5e01f37686f774773c6f6c15": { - "_id": "5e01f37686f774773c6f6c15", - "_name": "item_equipment_helmet_team_wendy_exfil_face_shield_coyote", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_team_wendy_exfil_face_shield", - "ShortName": "item_equipment_helmet_team_wendy_exfil_face_shield", - "Description": "item_equipment_helmet_team_wendy_exfil_face_shield", - "Weight": 0.8, - "BackgroundColor": "default", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/helmet_team_wendy_exfil_face_shield/item_equipment_helmet_team_wendy_exfil_face_shield_coyote.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 133, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c0696830db834001d23f5da", - "5c066e3a0db834001b7353f0", - "5c0558060db834001b735271", - "57235b6f24597759bf5a30f1", - "5c110624d174af029e69734c" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 45, - "MaxDurability": 45, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": true, - "FaceShieldMask": "NoMask", - "HasHinge": true, - "MaterialType": "GlassVisor", - "RicochetParams": { - "x": 0.7, - "y": 0.4, - "z": 55 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1188, - "ArmorMaterial": "Glass", - "BlindnessProtection": 0.1, - "ArmorType": "None", - "armorColliders": [ - "HeadCommon", - "Eyes", - "Jaw" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -10, - "weaponErgonomicPenalty": -4 - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "5a341c4686f77469e155819e": { - "_id": "5a341c4686f77469e155819e", - "_name": "FaceCover", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Node", - "_props": {} - }, "5c178a942e22164bef5ceca3": { "_id": "5c178a942e22164bef5ceca3", "_name": "item_equipment_helmet_crye_airframe_chops", @@ -298066,6 +298322,117 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, + "5a341c4686f77469e155819e": { + "_id": "5a341c4686f77469e155819e", + "_name": "FaceCover", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Node", + "_props": {} + }, + "5d6d3829a4b9361bc8618943": { + "_id": "5d6d3829a4b9361bc8618943", + "_name": "item_equipment_helmet_lshz2dtm_shield", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_lshz2dtm_shield", + "ShortName": "item_equipment_helmet_lshz2dtm_shield", + "Description": "item_equipment_helmet_lshz2dtm_shield", + "Weight": 1, + "BackgroundColor": "default", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/helmet_lshz2dtm_shield/item_equipment_helmet_lshz2dtm_shield.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 138, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c0696830db834001d23f5da", + "5c066e3a0db834001b7353f0", + "5c0558060db834001b735271", + "57235b6f24597759bf5a30f1", + "5c110624d174af029e69734c" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 50, + "MaxDurability": 50, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": true, + "FaceShieldMask": "NoMask", + "HasHinge": true, + "MaterialType": "GlassVisor", + "RicochetParams": { + "x": 0.7, + "y": 0.4, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.0693, + "ArmorMaterial": "Glass", + "BlindnessProtection": 0.1, + "ArmorType": "None", + "armorColliders": [ + "HeadCommon", + "Eyes", + "Jaw" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -5, + "weaponErgonomicPenalty": -2 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, "6575ea4cf6a13a7b7100adc4": { "_id": "6575ea4cf6a13a7b7100adc4", "_name": "6b13_killa_level3_soft_armor_back", @@ -298272,324 +298639,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "654a8976f414fcea4004d78b": { - "_id": "654a8976f414fcea4004d78b", - "_name": "6b13_level2_soft_armor_back", + "6575ce45dc9932aed601c616": { + "_id": "6575ce45dc9932aed601c616", + "_name": "6b43_6a_level3_soft_armor_back", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "6b13_level2_soft_armor_back", - "ShortName": "6b13_level2_soft_armor_back", - "Description": "6b13_level2_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 56, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 34, - "MaxDurability": 34, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65707fc348c7a887f2010432": { - "_id": "65707fc348c7a887f2010432", - "_name": "6b23-2_level2_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b23-2_level2_soft_armor_front", - "ShortName": "6b23-2_level2_soft_armor_front", - "Description": "6b23-2_level2_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 52, - "MaxDurability": 52, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65764e1e2bc38ef78e076489": { - "_id": "65764e1e2bc38ef78e076489", - "_name": "6b3TM_level4_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b3TM_level4_soft_armor_front", - "ShortName": "6b3TM_level4_soft_armor_front", - "Description": "6b3TM_level4_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 198, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.16, - "ArmorMaterial": "Titan", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575dd519e27f4a85e081146": { - "_id": "6575dd519e27f4a85e081146", - "_name": "redut_m_level3_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "redut_m_level3_soft_armor_back", - "ShortName": "redut_m_level3_soft_armor_back", - "Description": "redut_m_level3_soft_armor_back", + "Name": "6b43_6a_level3_soft_armor_back", + "ShortName": "6b43_6a_level3_soft_armor_back", + "Description": "6b43_6a_level3_soft_armor_back", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -298649,8 +298707,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 64, - "MaxDurability": 64, + "Durability": 85, + "MaxDurability": 85, "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -298890,118 +298948,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6575ce45dc9932aed601c616": { - "_id": "6575ce45dc9932aed601c616", - "_name": "6b43_6a_level3_soft_armor_back", + "64afee8e9f589807e30dc68a": { + "_id": "64afee8e9f589807e30dc68a", + "_name": "level3_soft_armor_left_arm", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "6b43_6a_level3_soft_armor_back", - "ShortName": "6b43_6a_level3_soft_armor_back", - "Description": "6b43_6a_level3_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 85, - "MaxDurability": 85, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "654a8b60f414fcea4004d793": { - "_id": "654a8b60f414fcea4004d793", - "_name": "level2_soft_armor_left_arm", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "level2_soft_armor_left_arm", - "ShortName": "level2_soft_armor_left_arm", - "Description": "level2_soft_armor_left_arm", + "Name": "level3_soft_armor_left_arm", + "ShortName": "level3_soft_armor_left_arm", + "Description": "level3_soft_armor_left_arm", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -299061,9 +299016,9 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "2", + "Durability": 15, + "MaxDurability": 15, + "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", @@ -299095,6 +299050,108 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "657119fea330b8c9060f7afc": { + "_id": "657119fea330b8c9060f7afc", + "_name": "ssh68_level3_helmet_armor_ears", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ssh68_level3_helmet_armor_ears", + "ShortName": "ssh68_level3_helmet_armor_ears", + "Description": "ssh68_level3_helmet_armor_ears", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 27, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 18, + "MaxDurability": 18, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 50 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1726, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "657326978c1cc6dcd9098b56": { "_id": "657326978c1cc6dcd9098b56", "_name": "gjel_level3_soft_armor_back", @@ -299198,15 +299255,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657119fea330b8c9060f7afc": { - "_id": "657119fea330b8c9060f7afc", - "_name": "ssh68_level3_helmet_armor_ears", + "65705c3c14f2ed6d7d0b7738": { + "_id": "65705c3c14f2ed6d7d0b7738", + "_name": "kirasaN_level2_soft_armor_back", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "ssh68_level3_helmet_armor_ears", - "ShortName": "ssh68_level3_helmet_armor_ears", - "Description": "ssh68_level3_helmet_armor_ears", + "Name": "kirasaN_level2_soft_armor_back", + "ShortName": "kirasaN_level2_soft_armor_back", + "Description": "kirasaN_level2_soft_armor_back", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -299214,7 +299271,731 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 52, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 56, + "MaxDurability": 56, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6571bde39837cc51b800c212": { + "_id": "6571bde39837cc51b800c212", + "_name": "item_equipment_facecover_skull_half_mask", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "Mask", + "ShortName": "Mask", + "Description": "Mask", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/facecover_skull_half_mask/item_equipment_facecover_skull_half_mask.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7fa124597762b472f9d2" + }, + "5ab8f85d86f7745cd93a1cf5": { + "_id": "5ab8f85d86f7745cd93a1cf5", + "_name": "shemagh", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "shemagh", + "ShortName": "shemagh", + "Description": "shemagh", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/facecover_shemagh/item_equipment_facecover_shemagh.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "59e770f986f7742cbe3164ef", + "572b7d8524597762b472f9d1", + "5aa2b87de5b5b00016327c25", + "5aa2a7e8e5b5b00016327c16", + "5aa2b89be5b5b0001569311f", + "5aa2b8d7e5b5b00014028f4a", + "65749cb8e0423b9ebe0c79c9", + "65749ccf33fdc9c0cf06d3ca" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7d8524597762b472f9d1" + }, + "644120aa86ffbe10ee032b6f": { + "_id": "644120aa86ffbe10ee032b6f", + "_name": "ArmorPlate", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Node", + "_props": { + "Lower75Prefab": { + "path": "", + "rcid": "" + } + } + }, + "65707fc348c7a887f2010432": { + "_id": "65707fc348c7a887f2010432", + "_name": "6b23-2_level2_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b23-2_level2_soft_armor_front", + "ShortName": "6b23-2_level2_soft_armor_front", + "Description": "6b23-2_level2_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 52, + "MaxDurability": 52, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65764e1e2bc38ef78e076489": { + "_id": "65764e1e2bc38ef78e076489", + "_name": "6b3TM_level4_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b3TM_level4_soft_armor_front", + "ShortName": "6b3TM_level4_soft_armor_front", + "Description": "6b3TM_level4_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 198, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.16, + "ArmorMaterial": "Titan", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "654a8976f414fcea4004d78b": { + "_id": "654a8976f414fcea4004d78b", + "_name": "6b13_level2_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b13_level2_soft_armor_back", + "ShortName": "6b13_level2_soft_armor_back", + "Description": "6b13_level2_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 56, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 34, + "MaxDurability": 34, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "SpineDown", + "SpineTop" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575dd519e27f4a85e081146": { + "_id": "6575dd519e27f4a85e081146", + "_name": "redut_m_level3_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "redut_m_level3_soft_armor_back", + "ShortName": "redut_m_level3_soft_armor_back", + "Description": "redut_m_level3_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 64, + "MaxDurability": 64, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6571199565daf6aa960c9b10": { + "_id": "6571199565daf6aa960c9b10", + "_name": "ssh68_level3_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ssh68_level3_helmet_armor_top", + "ShortName": "ssh68_level3_helmet_armor_top", + "Description": "ssh68_level3_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", "rcid": "" }, "UsePrefab": { @@ -299285,7 +300066,7 @@ "BlindnessProtection": 0, "ArmorType": "Heavy", "armorColliders": [ - "Ears" + "ParietalHead" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -299300,6 +300081,104 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "5aa7e3abe5b5b000171d064d": { + "_id": "5aa7e3abe5b5b000171d064d", + "_name": "helmet_zsh_1-2m_v1_face_shield", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "helmet_zsh_1-2m_v1_face_shield", + "ShortName": "helmet_zsh_1-2m_v1_face_shield", + "Description": "helmet_zsh_1-2m_v1_face_shield", + "Weight": 1, + "BackgroundColor": "default", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/helmet_zsh_shield/item_equipment_helmet_zsh_shield.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 128, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 50, + "MaxDurability": 50, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": true, + "FaceShieldMask": "NoMask", + "HasHinge": true, + "MaterialType": "GlassVisor", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 55 + }, + "DeafStrength": "None", + "BluntThroughput": 0.099, + "ArmorMaterial": "Glass", + "BlindnessProtection": 0.1, + "ArmorType": "None", + "armorColliders": [ + "HeadCommon", + "Eyes", + "Jaw" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": -2 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, "5c1793902e221602b21d3de2": { "_id": "5c1793902e221602b21d3de2", "_name": "item_equipment_helmet_crye_airframe_ears", @@ -299402,23 +300281,23 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, - "5aa7e3abe5b5b000171d064d": { - "_id": "5aa7e3abe5b5b000171d064d", - "_name": "helmet_zsh_1-2m_v1_face_shield", + "5e01f31d86f77465cf261343": { + "_id": "5e01f31d86f77465cf261343", + "_name": "helmet_team_wendy_exfil_ear_covers_coyote", "_parent": "57bef4c42459772e8d35a53b", "_type": "Item", "_props": { - "Name": "helmet_zsh_1-2m_v1_face_shield", - "ShortName": "helmet_zsh_1-2m_v1_face_shield", - "Description": "helmet_zsh_1-2m_v1_face_shield", - "Weight": 1, + "Name": "helmet_team_wendy_exfil_ear_covers", + "ShortName": "helmet_team_wendy_exfil_ear_covers", + "Description": "helmet_team_wendy_exfil_ear_covers", + "Weight": 0.172, "BackgroundColor": "default", "Width": 2, - "Height": 1, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "gear_goggles", + "ItemSound": "gear_helmet", "Prefab": { - "path": "assets/content/items/equipment/helmet_zsh_shield/item_equipment_helmet_zsh_shield.bundle", + "path": "assets/content/items/equipment/helmet_team_wendy_exfil_ear_covers/helmet_team_wendy_exfil_ear_covers_coyote.bundle", "rcid": "" }, "UsePrefab": { @@ -299436,9 +300315,107 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 20, - "ExamineExperience": 10, + "ExamineExperience": 4, "HideEntrails": false, "RepairCost": 128, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c165d832e2216398b5a7e36" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 30, + "MaxDurability": 30, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 70 + }, + "DeafStrength": "Low", + "BluntThroughput": 0.1287, + "ArmorMaterial": "Aluminium", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "65764fae2bc38ef78e07648d": { + "_id": "65764fae2bc38ef78e07648d", + "_name": "6b3TM_level2_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b3TM_level2_soft_armor_back", + "ShortName": "6b3TM_level2_soft_armor_back", + "Description": "6b3TM_level2_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 198, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -299467,154 +300444,43 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 50, - "MaxDurability": 50, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": true, - "FaceShieldMask": "NoMask", - "HasHinge": true, - "MaterialType": "GlassVisor", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 55 - }, - "DeafStrength": "None", - "BluntThroughput": 0.099, - "ArmorMaterial": "Glass", - "BlindnessProtection": 0.1, - "ArmorType": "None", - "armorColliders": [ - "HeadCommon", - "Eyes", - "Jaw" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": -2 - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "6570a88c8f221f3b210353b7": { - "_id": "6570a88c8f221f3b210353b7", - "_name": "item_equipment_helmet_neosteel_mandible", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_galvion_mandible", - "ShortName": "item_equipment_helmet_galvion_mandible", - "Description": "item_equipment_helmet_galvion_mandible", - "Weight": 1.2, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_neosteel_mandible/item_equipment_helmet_neosteel_mandible.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 106, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "59e7715586f7742ee5789605", - "6176a48d732a664031271438", - "5c1a1e3f2e221602b66cc4c2", - "62a09dd4621468534a797ac7", - "5b4325355acfc40019478126", - "5bd06f5d86f77427101ad47c", - "5ab8f85d86f7745cd93a1cf5", - "6570aead4d84f81fd002a033", - "5645bcc04bdc2d363b8b4572", - "5aa2ba71e5b5b000137b758f", - "628e4e576d783146b124c64d", - "5b432b965acfc47a8774094e", - "6033fa48ffd42c541047f728", - "5c165d832e2216398b5a7e36", - "5e4d34ca86f774264f758330", - "5f60cd6cf2bcbb675b00dac6" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": true, "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 25, - "MaxDurability": 25, - "armorClass": "3", + "Durability": 30, + "MaxDurability": 30, + "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", "HasHinge": false, - "MaterialType": "Helmet", + "MaterialType": "BodyArmor", "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 60 + "x": 0.8, + "y": 0.3, + "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.1726, - "ArmorMaterial": "ArmoredSteel", + "BluntThroughput": 0.18, + "ArmorMaterial": "Titan", "BlindnessProtection": 0, "ArmorType": "None", "armorColliders": [ - "NeckFront", - "Jaw", - "Ears", - "HeadCommon" + "SpineDown", + "SpineTop" ], "armorPlateColliders": [], - "speedPenaltyPercent": -1, + "speedPenaltyPercent": 0, "mousePenalty": 0, - "weaponErgonomicPenalty": -2 + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] }, - "_proto": "5645bc214bdc2d363b8b4571" + "_proto": "57347d3d245977448f7b7f61" }, "6570880f4a747dbb63005ee5": { "_id": "6570880f4a747dbb63005ee5", @@ -299821,224 +300687,23 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "65764fae2bc38ef78e07648d": { - "_id": "65764fae2bc38ef78e07648d", - "_name": "6b3TM_level2_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b3TM_level2_soft_armor_back", - "ShortName": "6b3TM_level2_soft_armor_back", - "Description": "6b3TM_level2_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 198, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 30, - "MaxDurability": 30, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.18, - "ArmorMaterial": "Titan", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "5c0e842486f77443a74d2976": { - "_id": "5c0e842486f77443a74d2976", - "_name": "item_equipment_helmet_maska_1sh_shield_killa", + "5c0e66e2d174af02a96252f4": { + "_id": "5c0e66e2d174af02a96252f4", + "_name": "item_equipment_helmet_gentex_slaap_tan", "_parent": "57bef4c42459772e8d35a53b", "_type": "Item", "_props": { - "Name": "item_equipment_helmet_maska_1sh_shield", - "ShortName": "item_equipment_helmet_maska_1sh_shield", - "Description": "item_equipment_helmet_maska_1sh_shield", - "Weight": 1.1, - "BackgroundColor": "default", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/helmet_maska_1sh_shield/item_equipment_helmet_maska_1sh_shield_killa.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 128, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 50, - "MaxDurability": 50, - "armorClass": "6", - "Indestructibility": 0.9, - "FaceShieldComponent": true, - "FaceShieldMask": "Narrow", - "HasHinge": true, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.0792, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0.35, - "ArmorType": "None", - "armorColliders": [ - "HeadCommon", - "Eyes", - "Jaw" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": -9 - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "5f60b85bbdb8e27dee3dc985": { - "_id": "5f60b85bbdb8e27dee3dc985", - "_name": "item_equipment_helmet_galvion_applique", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_galvion_applique", - "ShortName": "item_equipment_helmet_galvion_applique", - "Description": "item_equipment_helmet_galvion_applique", - "Weight": 0.68, + "Name": "item_equipment_helmet_gentex_slaap", + "ShortName": "item_equipment_helmet_gentex_slaap", + "Description": "item_equipment_helmet_gentex_slaap", + "Weight": 1.3, "BackgroundColor": "default", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "gear_helmet", "Prefab": { - "path": "assets/content/items/equipment/helmet_galvion_applique/item_equipment_helmet_galvion_applique.bundle", + "path": "assets/content/items/equipment/helmet_gentex_slaap/item_equipment_helmet_gentex_slaap_tan.bundle", "rcid": "" }, "UsePrefab": { @@ -300058,7 +300723,7 @@ "LootExperience": 20, "ExamineExperience": 4, "HideEntrails": false, - "RepairCost": 128, + "RepairCost": 149, "RepairSpeed": 10, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -300090,9 +300755,9 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "4", + "Durability": 30, + "MaxDurability": 30, + "armorClass": "5", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", @@ -300101,7 +300766,7 @@ "RicochetParams": { "x": 0.9, "y": 0.4, - "z": 45 + "z": 50 }, "DeafStrength": "None", "BluntThroughput": 0.0792, @@ -300109,13 +300774,12 @@ "BlindnessProtection": 0, "ArmorType": "None", "armorColliders": [ - "ParietalHead", - "BackHead" + "ParietalHead" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, - "mousePenalty": -6, - "weaponErgonomicPenalty": -6 + "mousePenalty": -8, + "weaponErgonomicPenalty": -7 }, "_proto": "5645bc214bdc2d363b8b4571" }, @@ -300324,6 +300988,108 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "65708b4c4a747dbb63005ef3": { + "_id": "65708b4c4a747dbb63005ef3", + "_name": "6b5-15_level4_soft_armor_groin", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b5-15_level4_soft_armor_groin", + "ShortName": "6b5-15_level4_soft_armor_groin", + "Description": "6b5-15_level4_soft_armor_groin", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/groin.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 148, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 16, + "MaxDurability": 16, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.28, + "ArmorMaterial": "Ceramic", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "6575ce3716c2762fba0057fd": { "_id": "6575ce3716c2762fba0057fd", "_name": "6b43_6a_level3_soft_armor_front", @@ -300427,511 +301193,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "65708b4c4a747dbb63005ef3": { - "_id": "65708b4c4a747dbb63005ef3", - "_name": "6b5-15_level4_soft_armor_groin", + "65704de13e7bba58ea0285c8": { + "_id": "65704de13e7bba58ea0285c8", + "_name": "kirasaN_level2_soft_armor_front", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "6b5-15_level4_soft_armor_groin", - "ShortName": "6b5-15_level4_soft_armor_groin", - "Description": "6b5-15_level4_soft_armor_groin", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 148, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 16, - "MaxDurability": 16, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.28, - "ArmorMaterial": "Ceramic", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "607f201b3c672b3b3a24a800": { - "_id": "607f201b3c672b3b3a24a800", - "_name": "item_equipment_facecover_coldgear_twitch", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "Balaclava cg", - "ShortName": "Balaclava cg", - "Description": "Balaclava cg", - "Weight": 0.1, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_coldgear/item_equipment_facecover_coldgear_twitch.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "62a5c333ec21e50cad3b5dc6": { - "_id": "62a5c333ec21e50cad3b5dc6", - "_name": "item_equipment_facecover_hockey_02", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "item_equipment_facecover_HALLOWEEN_Jason", - "ShortName": "item_equipment_facecover_HALLOWEEN_Jason", - "Description": "item_equipment_facecover_HALLOWEEN_Jason\n", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_hockey/item_equipment_facecover_hockey_02.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "59e770f986f7742cbe3164ef", - "572b7d8524597762b472f9d1", - "5aa2b87de5b5b00016327c25", - "5aa2a7e8e5b5b00016327c16", - "5aa2b89be5b5b0001569311f", - "5aa2b8d7e5b5b00014028f4a", - "65749ccf33fdc9c0cf06d3ca", - "65749cb8e0423b9ebe0c79c9" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": true, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "5b432b2f5acfc4771e1c6622": { - "_id": "5b432b2f5acfc4771e1c6622", - "_name": "item_equipment_facecover_shatteredmask", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "shattered", - "ShortName": "shattered", - "Description": "shattered", - "Weight": 0.3, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_shatteredmask/item_equipment_facecover_shatteredmask.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 31, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": true, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "1", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.198, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "HeadCommon", - "ParietalHead", - "Eyes", - "Jaw" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "5aa7e373e5b5b000137b76f0": { - "_id": "5aa7e373e5b5b000137b76f0", - "_name": "helmet_altyn_face_shield", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "helmet_altyn_face_shield", - "ShortName": "helmet_altyn_face_shield", - "Description": "helmet_altyn_face_shield", - "Weight": 1.4, - "BackgroundColor": "default", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/helmet_altyn_shield/item_equipment_helmet_altyn_shield.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 138, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 50, - "MaxDurability": 50, - "armorClass": "5", - "Indestructibility": 0.9, - "FaceShieldComponent": true, - "FaceShieldMask": "Wide", - "HasHinge": true, - "MaterialType": "GlassVisor", - "RicochetParams": { - "x": 0.7, - "y": 0.4, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.0792, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0.25, - "ArmorType": "None", - "armorColliders": [ - "HeadCommon", - "Eyes", - "Jaw" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -8, - "weaponErgonomicPenalty": -3 - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "654a8b0b0337d53f9102c2ae": { - "_id": "654a8b0b0337d53f9102c2ae", - "_name": "6b13_level2_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b13_level2_soft_armor_front", - "ShortName": "6b13_level2_soft_armor_front", - "Description": "6b13_level2_soft_armor_front", + "Name": "kirasaN_level2_soft_armor_front", + "ShortName": "kirasaN_level2_soft_armor_front", + "Description": "kirasaN_level2_soft_armor_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -300959,212 +301229,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 56, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 34, - "MaxDurability": 34, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657bc2e7b30eca976305118d": { - "_id": "657bc2e7b30eca976305118d", - "_name": "Rys_T_level5_helmet_armor_ears", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "Rys_T_level5_helmet_armor_ears", - "ShortName": "Rys_T_level5_helmet_armor_ears", - "Description": "Rys_T_level5_helmet_armor_ears", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 484, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 30, - "MaxDurability": 30, - "armorClass": "5", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 65 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1431, - "ArmorMaterial": "Titan", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65732688d9d89ff7ac0d9c4c": { - "_id": "65732688d9d89ff7ac0d9c4c", - "_name": "gjel_level3_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "gjel_level3_soft_armor_front", - "ShortName": "gjel_level3_soft_armor_front", - "Description": "gjel_level3_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 88, + "RepairCost": 52, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -301198,7 +301263,7 @@ "BlocksFaceCover": false, "Durability": 56, "MaxDurability": 56, - "armorClass": "3", + "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", @@ -301231,23 +301296,23 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6570df9c615f54368b04fca9": { - "_id": "6570df9c615f54368b04fca9", - "_name": "tv110_level2_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", + "635267ab3c89e2112001f826": { + "_id": "635267ab3c89e2112001f826", + "_name": "item_equipment_facecover_halloween_skull", + "_parent": "5a341c4686f77469e155819e", "_type": "Item", "_props": { - "Name": "tv110_level2_soft_armor_back", - "ShortName": "tv110_level2_soft_armor_back", - "Description": "tv110_level2_soft_armor_back", - "Weight": 0, + "Name": "item_equipment_facecover_HALLOWEEN_Jason", + "ShortName": "item_equipment_facecover_HALLOWEEN_Jason", + "Description": "item_equipment_facecover_HALLOWEEN_Jason\n", + "Weight": 0.2, "BackgroundColor": "default", - "Width": 1, - "Height": 1, + "Width": 2, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "gear_armor", + "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "path": "assets/content/items/equipment/facecover_halloween_skull/item_equipment_facecover_halloween_skull.bundle", "rcid": "" }, "UsePrefab": { @@ -301264,10 +301329,10 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, + "LootExperience": 20, + "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 54, + "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -301296,208 +301361,9 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 35, - "MaxDurability": 35, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.35, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "62963c18dbc8ab5f0d382d0b": { - "_id": "62963c18dbc8ab5f0d382d0b", - "_name": "item_equipment_facecover_mask_boss_blackknight", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "shattered", - "ShortName": "shattered", - "Description": "shattered", - "Weight": 0.78, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_boss_blackknight/item_equipment_facecover_boss_blackknight.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 43, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, "BlocksEyewear": true, "BlocksHeadwear": true, "BlocksFaceCover": false, - "Durability": 55, - "MaxDurability": 55, - "armorClass": "1", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.198, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "ParietalHead", - "Eyes" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "5e71fad086f77422443d4604": { - "_id": "5e71fad086f77422443d4604", - "_name": "item_equipment_facecover_twitch", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "Balaclavanomex", - "ShortName": "Balaclavanomex", - "Description": "Balaclavanomex", - "Weight": 0.1, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_shroud/item_equipment_facecover_shroud_twitch.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, "Durability": 100, "MaxDurability": 100, "armorClass": "0", @@ -301524,370 +301390,6 @@ }, "_proto": "572b7d8524597762b472f9d1" }, - "6176a48d732a664031271438": { - "_id": "6176a48d732a664031271438", - "_name": "item_equipment_facecover_halloween_kaonasi", - "_parent": "5a341c4686f77469e155819e", - "_type": "Item", - "_props": { - "Name": "item_equipment_facecover_HALLOWEEN_Jason", - "ShortName": "item_equipment_facecover_HALLOWEEN_Jason", - "Description": "item_equipment_facecover_HALLOWEEN_Jason\n", - "Weight": 0.2, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/facecover_halloween_kaonasi/item_equipment_facecover_halloween_kaonasi.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "59e770f986f7742cbe3164ef", - "572b7d8524597762b472f9d1", - "5aa2b87de5b5b00016327c25", - "5aa2a7e8e5b5b00016327c16", - "5aa2b89be5b5b0001569311f", - "5aa2b8d7e5b5b00014028f4a", - "5a43957686f7742a2c2f11b0", - "5aa2ba46e5b5b000137b758d", - "5aa2b9ede5b5b000137b758b", - "5aa2ba19e5b5b00014028f4e", - "5ab8f20c86f7745cdb629fb2", - "5645bc214bdc2d363b8b4571", - "5aa7cfc0e5b5b00015693143", - "5aa7e276e5b5b000171d0647", - "5c066ef40db834001966a595", - "5df8a58286f77412631087ed", - "59e7711e86f7746cae05fbe1", - "5d5e7d28a4b936645d161203", - "5d5e9c74a4b9364855191c40", - "5a154d5cfcdbcb001a3b00da", - "5ac8d6885acfc400180ae7b0", - "5a7c4850e899ef00150be885", - "5aa7d193e5b5b000171d063f", - "5aa7d03ae5b5b00016327db5", - "5a16bb52fcdbcb001a3b00dc", - "5aa7e454e5b5b0214e506fa2", - "5aa7e4a4e5b5b000137b76f2", - "5f99418230835532b445e954", - "5b4329f05acfc47a86086aa1", - "5b43271c5acfc432ff4dce65", - "5b40e5e25acfc4001a599bea", - "5f60e6403b85f6263c14558c", - "5f60e7788adaa7100c3adb49", - "5f60e784f2bcbb675b00dac7", - "60bf74184a63fc79b60c57f6", - "5d96141523f0ea1b7f2aacab", - "5bd073c986f7747f627e796c", - "603618feffd42c541047f771", - "603619720ca681766b6a0fc4", - "6040de02647ad86262233012", - "60361a7497633951dc245eb4", - "60361b0b5a45383c122086a1", - "60361b5a9a15b10d96792291", - "5b4327aa5acfc400175496e0", - "60b52e5bc7d8103275739d67", - "5b4329075acfc400153b78ff", - "5f994730c91ed922dd355de3", - "60a7acf20c5cb24b01346648", - "5b40e61f5acfc4001a599bec", - "5b40e3f35acfc40016388218", - "5b40e4035acfc47a87740943", - "5b432d215acfc4771e1c6624", - "5b40e1525acfc4771e1c6611", - "5b40e2bc5acfc40016388216", - "5c17a7ed2e2216152142459c", - "5ea17ca01412a1425304d1c0", - "5f60b34a41e30a4ab12a6947", - "5ea05cf85ad9772e6624305d", - "5d6d3716a4b9361bc8618872", - "5c091a4e0db834001d5addc8", - "5c0e874186f7745dc7616606", - "5c0d2727d174af02a012cf58", - "5f60c74e3b85f6263c145588", - "5c08f87c0db8340019124324", - "5c06c6a80db834001b735491", - "5e4bfc1586f774264f7582d3", - "5e00c1ad86f774747333222c", - "5e01ef6886f77445f643baa4", - "5ca20ee186f774799474abc2", - "59ef13ca86f77445fd0e2483", - "572b7fa124597762b472f9d2", - "65749cb8e0423b9ebe0c79c9", - "65749ccf33fdc9c0cf06d3ca" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 100, - "MaxDurability": 100, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "572b7d8524597762b472f9d1" - }, - "5d6d3943a4b9360dbc46d0cc": { - "_id": "5d6d3943a4b9360dbc46d0cc", - "_name": "item_equipment_helmet_lshz2dtm_damper", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_lshz2dtm_damper", - "ShortName": "item_equipment_helmet_lshz2dtm_damper", - "Description": "item_equipment_helmet_lshz2dtm_damper", - "Weight": 0.1, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/helmet_lshz2dtm_damper/item_equipment_helmet_lshz2dtm_damper.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 149, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 1, - "MaxDurability": 1, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 0 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "65764c6b526e320fbe03577b": { - "_id": "65764c6b526e320fbe03577b", - "_name": "6b5-16_level3_soft_armor_groin", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b5-16_level3_soft_armor_groin", - "ShortName": "6b5-16_level3_soft_armor_groin", - "Description": "6b5-16_level3_soft_armor_groin", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 79, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 16, - "MaxDurability": 16, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.16, - "ArmorMaterial": "Titan", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "62a5c2c98ec41a51b34739c0": { "_id": "62a5c2c98ec41a51b34739c0", "_name": "item_equipment_facecover_hockey_01", @@ -301991,6 +301493,103 @@ }, "_proto": "572b7d8524597762b472f9d1" }, + "62963c18dbc8ab5f0d382d0b": { + "_id": "62963c18dbc8ab5f0d382d0b", + "_name": "item_equipment_facecover_mask_boss_blackknight", + "_parent": "5a341c4686f77469e155819e", + "_type": "Item", + "_props": { + "Name": "shattered", + "ShortName": "shattered", + "Description": "shattered", + "Weight": 0.78, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/facecover_boss_blackknight/item_equipment_facecover_boss_blackknight.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 43, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": true, + "BlocksHeadwear": true, + "BlocksFaceCover": false, + "Durability": 55, + "MaxDurability": 55, + "armorClass": "1", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.198, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "ParietalHead", + "Eyes" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "572b7d8524597762b472f9d1" + }, "6572e048371fccfbf909d5d8": { "_id": "6572e048371fccfbf909d5d8", "_name": "drd_level3_soft_armor_front", @@ -302094,15 +301693,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6570800612755ae0d907acf8": { - "_id": "6570800612755ae0d907acf8", - "_name": "6b23-2_level2_soft_armor_back", + "6572e06219b4b511af012f89": { + "_id": "6572e06219b4b511af012f89", + "_name": "drd_level3_soft_armor_left_side", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "6b23-2_level2_soft_armor_back", - "ShortName": "6b23-2_level2_soft_armor_back", - "Description": "6b23-2_level2_soft_armor_back", + "Name": "drd_level3_soft_armor_left_side", + "ShortName": "drd_level3_soft_armor_left_side", + "Description": "drd_level3_soft_armor_left_side", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -302110,7 +301709,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", "rcid": "" }, "UsePrefab": { @@ -302130,7 +301729,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 58, + "RepairCost": 88, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -302162,8 +301761,212 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 52, - "MaxDurability": 52, + "Durability": 12, + "MaxDurability": 12, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657bc285aab96fccee08bea3": { + "_id": "657bc285aab96fccee08bea3", + "_name": "Rys_T_level5_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "Rys_T_level5_helmet_armor_top", + "ShortName": "Rys_T_level5_helmet_armor_top", + "Description": "Rys_T_level5_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 484, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 30, + "MaxDurability": 30, + "armorClass": "5", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 65 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1431, + "ArmorMaterial": "Titan", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "655751db58aa1b6dbd0cc295": { + "_id": "655751db58aa1b6dbd0cc295", + "_name": "level2_soft_armor_plate_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "level2_soft_armor_plate_back", + "ShortName": "level2_soft_armor_plate_back", + "Description": "level2_soft_armor_plate_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 10, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 20, + "MaxDurability": 20, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -302176,13 +301979,115 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.31, + "BluntThroughput": 0, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570f6e774d84423df065f21": { + "_id": "6570f6e774d84423df065f21", + "_name": "ana_tact_m2_level3_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ana_tact_m2_level3_soft_armor_front", + "ShortName": "ana_tact_m2_level3_soft_armor_front", + "Description": "ana_tact_m2_level3_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 49, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.35, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "SpineDown", - "SpineTop" + "RibcageUp", + "RibcageLow" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -302402,15 +302307,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "64ad2dba0b9840e4c80c2485": { - "_id": "64ad2dba0b9840e4c80c2485", - "_name": "level3_soft_armor_left_side", + "65764c6b526e320fbe03577b": { + "_id": "65764c6b526e320fbe03577b", + "_name": "6b5-16_level3_soft_armor_groin", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "level3_soft_armor_left_side", - "ShortName": "level3_soft_armor_left_side", - "Description": "level3_soft_armor_left_side", + "Name": "6b5-16_level3_soft_armor_groin", + "ShortName": "6b5-16_level3_soft_armor_groin", + "Description": "6b5-16_level3_soft_armor_groin", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -302418,7 +302323,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "path": "assets/content/items/equipment/armor_plates/groin.bundle", "rcid": "" }, "UsePrefab": { @@ -302438,7 +302343,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 10, + "RepairCost": 79, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -302470,8 +302375,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, + "Durability": 16, + "MaxDurability": 16, "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -302479,17 +302384,17 @@ "HasHinge": false, "MaterialType": "BodyArmor", "RicochetParams": { - "x": 0, - "y": 0, + "x": 0.8, + "y": 0.3, "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.2, - "ArmorMaterial": "Aramid", + "BluntThroughput": 0.16, + "ArmorMaterial": "Titan", "BlindnessProtection": 0, - "ArmorType": "Light", + "ArmorType": "Heavy", "armorColliders": [ - "LeftSideChestDown" + "Pelvis" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -302504,15 +302409,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "65705c3c14f2ed6d7d0b7738": { - "_id": "65705c3c14f2ed6d7d0b7738", - "_name": "kirasaN_level2_soft_armor_back", + "6570800612755ae0d907acf8": { + "_id": "6570800612755ae0d907acf8", + "_name": "6b23-2_level2_soft_armor_back", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "kirasaN_level2_soft_armor_back", - "ShortName": "kirasaN_level2_soft_armor_back", - "Description": "kirasaN_level2_soft_armor_back", + "Name": "6b23-2_level2_soft_armor_back", + "ShortName": "6b23-2_level2_soft_armor_back", + "Description": "6b23-2_level2_soft_armor_back", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -302540,7 +302445,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 52, + "RepairCost": 58, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -302572,8 +302477,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 56, - "MaxDurability": 56, + "Durability": 52, + "MaxDurability": 52, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -302586,13 +302491,13 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.33, + "BluntThroughput": 0.31, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "SpineTop", - "SpineDown" + "SpineDown", + "SpineTop" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -302607,15 +302512,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6571199565daf6aa960c9b10": { - "_id": "6571199565daf6aa960c9b10", - "_name": "ssh68_level3_helmet_armor_top", + "657bb99db30eca976305117f": { + "_id": "657bb99db30eca976305117f", + "_name": "lshz_level3_helmet_armor_nape", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "ssh68_level3_helmet_armor_top", - "ShortName": "ssh68_level3_helmet_armor_top", - "Description": "ssh68_level3_helmet_armor_top", + "Name": "lshz_level3_helmet_armor_nape", + "ShortName": "lshz_level3_helmet_armor_nape", + "Description": "lshz_level3_helmet_armor_nape", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -302623,7 +302528,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", "rcid": "" }, "UsePrefab": { @@ -302643,7 +302548,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 27, + "RepairCost": 89, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -302684,17 +302589,119 @@ "HasHinge": false, "MaterialType": "Helmet", "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 50 + "x": 0.8, + "y": 0.3, + "z": 75 }, "DeafStrength": "None", - "BluntThroughput": 0.1726, - "ArmorMaterial": "ArmoredSteel", + "BluntThroughput": 0.2376, + "ArmorMaterial": "Aramid", "BlindnessProtection": 0, - "ArmorType": "Heavy", + "ArmorType": "Light", "armorColliders": [ - "ParietalHead" + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570f74774d84423df065f25": { + "_id": "6570f74774d84423df065f25", + "_name": "ana_tact_m2_level3_soft_armor_left", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ana_tact_m2_level3_soft_armor_left", + "ShortName": "ana_tact_m2_level3_soft_armor_left", + "Description": "ana_tact_m2_level3_soft_armor_left", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 49, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 8, + "MaxDurability": 8, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.35, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -302811,23 +302818,23 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6572e06219b4b511af012f89": { - "_id": "6572e06219b4b511af012f89", - "_name": "drd_level3_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", + "62a5c333ec21e50cad3b5dc6": { + "_id": "62a5c333ec21e50cad3b5dc6", + "_name": "item_equipment_facecover_hockey_02", + "_parent": "5a341c4686f77469e155819e", "_type": "Item", "_props": { - "Name": "drd_level3_soft_armor_left_side", - "ShortName": "drd_level3_soft_armor_left_side", - "Description": "drd_level3_soft_armor_left_side", - "Weight": 0, + "Name": "item_equipment_facecover_HALLOWEEN_Jason", + "ShortName": "item_equipment_facecover_HALLOWEEN_Jason", + "Description": "item_equipment_facecover_HALLOWEEN_Jason\n", + "Weight": 0.1, "BackgroundColor": "default", - "Width": 1, - "Height": 1, + "Width": 2, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "gear_armor", + "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "path": "assets/content/items/equipment/facecover_hockey/item_equipment_facecover_hockey_02.bundle", "rcid": "" }, "UsePrefab": { @@ -302844,10 +302851,10 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, + "LootExperience": 20, + "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 88, + "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -302857,7 +302864,16 @@ "MergesWithChildren": false, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, - "ConflictingItems": [], + "ConflictingItems": [ + "59e770f986f7742cbe3164ef", + "572b7d8524597762b472f9d1", + "5aa2b87de5b5b00016327c25", + "5aa2a7e8e5b5b00016327c16", + "5aa2b89be5b5b0001569311f", + "5aa2b8d7e5b5b00014028f4a", + "65749ccf33fdc9c0cf06d3ca", + "65749cb8e0423b9ebe0c79c9" + ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -302877,11 +302893,11 @@ "CantRemoveFromSlotsDuringRaid": [], "BlocksEarpiece": false, "BlocksEyewear": false, - "BlocksHeadwear": false, + "BlocksHeadwear": true, "BlocksFaceCover": false, - "Durability": 12, - "MaxDurability": 12, - "armorClass": "3", + "Durability": 100, + "MaxDurability": 100, + "armorClass": "0", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", @@ -302893,43 +302909,35 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], + "ArmorType": "None", + "armorColliders": [], "armorPlateColliders": [], "speedPenaltyPercent": 0, "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] + "weaponErgonomicPenalty": 0 }, - "_proto": "57347d3d245977448f7b7f61" + "_proto": "572b7d8524597762b472f9d1" }, - "655200ba0ef76cf7be09d528": { - "_id": "655200ba0ef76cf7be09d528", - "_name": "exfil_level4_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", + "5b432b2f5acfc4771e1c6622": { + "_id": "5b432b2f5acfc4771e1c6622", + "_name": "item_equipment_facecover_shatteredmask", + "_parent": "5a341c4686f77469e155819e", "_type": "Item", "_props": { - "Name": "exfil_level4_helmet_armor_nape", - "ShortName": "exfil_level4_helmet_armor_nape", - "Description": "exfil_level4_helmet_armor_nape", - "Weight": 0, + "Name": "shattered", + "ShortName": "shattered", + "Description": "shattered", + "Weight": 0.3, "BackgroundColor": "default", - "Width": 1, - "Height": 1, + "Width": 2, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "gear_armor", + "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "path": "assets/content/items/equipment/facecover_shatteredmask/item_equipment_facecover_shatteredmask.bundle", "rcid": "" }, "UsePrefab": { @@ -302946,11 +302954,11 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, + "LootExperience": 20, + "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 276, - "RepairSpeed": 0, + "RepairCost": 31, + "RepairSpeed": 10, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, "ExtraSizeUp": 0, @@ -302978,12 +302986,12 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, + "BlocksEyewear": true, + "BlocksHeadwear": true, "BlocksFaceCover": false, - "Durability": 27, - "MaxDurability": 27, - "armorClass": "4", + "Durability": 40, + "MaxDurability": 40, + "armorClass": "1", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", @@ -302991,150 +302999,44 @@ "MaterialType": "Helmet", "RicochetParams": { "x": 0.9, - "y": 0.5, - "z": 65 + "y": 0.4, + "z": 70 }, "DeafStrength": "None", - "BluntThroughput": 0.1548, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657326bc5d3a3129fb05f36b": { - "_id": "657326bc5d3a3129fb05f36b", - "_name": "gjel_level3_soft_armor_collar", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "gjel_level3_soft_armor_collar", - "ShortName": "gjel_level3_soft_armor_collar", - "Description": "gjel_level3_soft_armor_collar", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/collar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 88, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 14, - "MaxDurability": 14, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, + "BluntThroughput": 0.198, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "NeckBack", - "NeckFront" + "HeadCommon", + "ParietalHead", + "Eyes", + "Jaw" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] + "weaponErgonomicPenalty": 0 }, - "_proto": "57347d3d245977448f7b7f61" + "_proto": "572b7d8524597762b472f9d1" }, - "6575ef6bf6a13a7b7100b093": { - "_id": "6575ef6bf6a13a7b7100b093", - "_name": "ars_cpc_level3_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", + "65719f9ef392ad76c50a2ec8": { + "_id": "65719f9ef392ad76c50a2ec8", + "_name": "item_equipment_helmet_tor_2_faceshield", + "_parent": "57bef4c42459772e8d35a53b", "_type": "Item", "_props": { - "Name": "ars_cpc_level3_soft_armor_back", - "ShortName": "ars_cpc_level3_soft_armor_back", - "Description": "ars_cpc_level3_soft_armor_back", - "Weight": 0, + "Name": "item_equipment_helmet_team_wendy_exfil_face_shield", + "ShortName": "item_equipment_helmet_team_wendy_exfil_face_shield", + "Description": "item_equipment_helmet_team_wendy_exfil_face_shield", + "Weight": 1.15, "BackgroundColor": "default", - "Width": 1, + "Width": 2, "Height": 1, "StackMaxSize": 1, - "ItemSound": "gear_armor", + "ItemSound": "gear_goggles", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "path": "assets/content/items/equipment/helmet_tor_2_faceshield/item_equipment_helmet_tor_2_faceshield.bundle", "rcid": "" }, "UsePrefab": { @@ -303151,10 +303053,10 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, + "LootExperience": 20, + "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 58, + "RepairCost": 133, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -303162,9 +303064,22 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": true, + "CanSellOnRagfair": false, "CanRequireOnRagfair": false, - "ConflictingItems": [], + "ConflictingItems": [ + "5c0696830db834001d23f5da", + "5c066e3a0db834001b7353f0", + "5c0558060db834001b735271", + "57235b6f24597759bf5a30f1", + "5c110624d174af029e69734c", + "5a398b75c4a282000a51a266", + "5a398ab9c4a282000c5a9842", + "5b432c305acfc40019478128", + "60363c0c92ec1c31037959f5", + "5e54f79686f7744022011103", + "59e7715586f7742ee5789605", + "6176a48d732a664031271438" + ], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], @@ -303183,52 +303098,156 @@ "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "BlocksEarpiece": false, - "BlocksEyewear": false, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 30, + "MaxDurability": 30, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": true, + "FaceShieldMask": "NoMask", + "HasHinge": true, + "MaterialType": "GlassVisor", + "RicochetParams": { + "x": 0.7, + "y": 0.4, + "z": 55 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1188, + "ArmorMaterial": "Glass", + "BlindnessProtection": 0.1, + "ArmorType": "None", + "armorColliders": [ + "Eyes", + "HeadCommon", + "Jaw" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -3, + "weaponErgonomicPenalty": -2 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, + "5a16b7e1fcdbcb00165aa6c9": { + "_id": "5a16b7e1fcdbcb00165aa6c9", + "_name": "helmet_ops_core_handgun_face_shield", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "helmet_ops_core_handgun_face_shield", + "ShortName": "helmet_ops_core_handgun_face_shield", + "Description": "helmet_ops_core_handgun_face_shield", + "Weight": 1.2, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/helmet_opscore_handgun_face_shield/item_equipment_helmet_opscore_handgun_face_shield.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 128, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c0e66e2d174af02a96252f4", + "5c0696830db834001d23f5da", + "5c066e3a0db834001b7353f0", + "5c0558060db834001b735271", + "57235b6f24597759bf5a30f1", + "5c110624d174af029e69734c", + "5a16b8a9fcdbcb00165aa6ca", + "5a398b75c4a282000a51a266", + "5a398ab9c4a282000c5a9842" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": true, "BlocksHeadwear": false, "BlocksFaceCover": false, "Durability": 40, "MaxDurability": 40, "armorClass": "3", "Indestructibility": 0.9, - "FaceShieldComponent": false, + "FaceShieldComponent": true, "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", + "HasHinge": true, + "MaterialType": "GlassVisor", "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 + "x": 0.7, + "y": 0.3, + "z": 55 }, "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" + "BluntThroughput": 0.1485, + "ArmorMaterial": "Glass", + "BlindnessProtection": 0.1, + "ArmorType": "None", + "armorColliders": [ + "HeadCommon", + "Eyes", + "Jaw" ], + "armorPlateColliders": [], "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] + "mousePenalty": -8, + "weaponErgonomicPenalty": -4 }, - "_proto": "57347d3d245977448f7b7f61" + "_proto": "557ff21e4bdc2d89578b4586" }, - "65731b4fcea9255e2102360e": { - "_id": "65731b4fcea9255e2102360e", - "_name": "korundvm_level2_soft_armor_back", + "654a8b0b0337d53f9102c2ae": { + "_id": "654a8b0b0337d53f9102c2ae", + "_name": "6b13_level2_soft_armor_front", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "korundvm_level2_soft_armor_back", - "ShortName": "korundvm_level2_soft_armor_back", - "Description": "korundvm_level2_soft_armor_back", + "Name": "6b13_level2_soft_armor_front", + "ShortName": "6b13_level2_soft_armor_front", + "Description": "6b13_level2_soft_armor_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -303236,7 +303255,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", "rcid": "" }, "UsePrefab": { @@ -303256,7 +303275,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 58, + "RepairCost": 56, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -303288,8 +303307,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, + "Durability": 34, + "MaxDurability": 34, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -303302,13 +303321,115 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.31, + "BluntThroughput": 0.33, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "SpineDown", - "SpineTop" + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657bc2e7b30eca976305118d": { + "_id": "657bc2e7b30eca976305118d", + "_name": "Rys_T_level5_helmet_armor_ears", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "Rys_T_level5_helmet_armor_ears", + "ShortName": "Rys_T_level5_helmet_armor_ears", + "Description": "Rys_T_level5_helmet_armor_ears", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 484, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 30, + "MaxDurability": 30, + "armorClass": "5", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 65 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1431, + "ArmorMaterial": "Titan", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "Ears" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -303425,15 +303546,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657322988c1cc6dcd9098b2d": { - "_id": "657322988c1cc6dcd9098b2d", - "_name": "bagarii_level3_soft_armor_front", + "64ad2dc66f9247c2f401243d": { + "_id": "64ad2dc66f9247c2f401243d", + "_name": "level3_soft_armor_right_side", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "bagarii_level3_soft_armor_front", - "ShortName": "bagarii_level3_soft_armor_front", - "Description": "bagarii_level3_soft_armor_front", + "Name": "level3_soft_armor_right_side", + "ShortName": "level3_soft_armor_right_side", + "Description": "level3_soft_armor_right_side", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -303441,213 +303562,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 48, - "MaxDurability": 48, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65764275d8537eb26a0355e9": { - "_id": "65764275d8537eb26a0355e9", - "_name": "zhuk6_level3_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "zhuk6_level3_soft_armor_front", - "ShortName": "zhuk6_level3_soft_armor_front", - "Description": "zhuk6_level3_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 107, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 60, - "MaxDurability": 60, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "64ad2d8d7e2fcecf0305533f": { - "_id": "64ad2d8d7e2fcecf0305533f", - "_name": "level3_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "level3_soft_armor_back", - "ShortName": "level3_soft_armor_back", - "Description": "level3_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", "rcid": "" }, "UsePrefab": { @@ -303699,8 +303614,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 30, - "MaxDurability": 30, + "Durability": 15, + "MaxDurability": 15, "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -303718,8 +303633,7 @@ "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "SpineDown", - "SpineTop" + "RightSideChestDown" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -303734,15 +303648,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657112ce22996eaf110881fb": { - "_id": "657112ce22996eaf110881fb", - "_name": "ulach_level4_helmet_armor_ears", + "6570f79c4c65ab77a6015121": { + "_id": "6570f79c4c65ab77a6015121", + "_name": "ana_tact_m2_level3_soft_armor_right", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "ulach_level4_helmet_armor_ears", - "ShortName": "ulach_level4_helmet_armor_ears", - "Description": "ulach_level4_helmet_armor_ears", + "Name": "ana_tact_m2_level3_soft_armor_right", + "ShortName": "ana_tact_m2_level3_soft_armor_right", + "Description": "ana_tact_m2_level3_soft_armor_right", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -303750,7 +303664,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", "rcid": "" }, "UsePrefab": { @@ -303770,7 +303684,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 241, + "RepairCost": 49, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -303802,111 +303716,9 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 22, - "MaxDurability": 22, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.208, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6571dbd388ead79fcf091d71": { - "_id": "6571dbd388ead79fcf091d71", - "_name": "zhuk3_level2_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "zhuk3_level2_soft_armor_front", - "ShortName": "zhuk3_level2_soft_armor_front", - "Description": "zhuk3_level2_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 61, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "2", + "Durability": 8, + "MaxDurability": 8, + "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", @@ -303918,12 +303730,114 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.33, + "BluntThroughput": 0.35, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "RibcageUp", + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "64afef49977493a0ee026217": { + "_id": "64afef49977493a0ee026217", + "_name": "level3_soft_armor_stomach", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "level3_soft_armor_stomach", + "ShortName": "level3_soft_armor_stomach", + "Description": "level3_soft_armor_stomach", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/groin.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 10, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 15, + "MaxDurability": 15, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Pelvis", "RibcageLow" ], "armorPlateColliders": [], @@ -303939,15 +303853,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "65704de13e7bba58ea0285c8": { - "_id": "65704de13e7bba58ea0285c8", - "_name": "kirasaN_level2_soft_armor_front", + "654a8b60f414fcea4004d793": { + "_id": "654a8b60f414fcea4004d793", + "_name": "level2_soft_armor_left_arm", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "kirasaN_level2_soft_armor_front", - "ShortName": "kirasaN_level2_soft_armor_front", - "Description": "kirasaN_level2_soft_armor_front", + "Name": "level2_soft_armor_left_arm", + "ShortName": "level2_soft_armor_left_arm", + "Description": "level2_soft_armor_left_arm", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -303955,7 +303869,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "path": "assets/content/items/equipment/armor_plates/shoulder_l.bundle", "rcid": "" }, "UsePrefab": { @@ -303975,7 +303889,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 52, + "RepairCost": 10, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -304007,8 +303921,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 56, - "MaxDurability": 56, + "Durability": 10, + "MaxDurability": 10, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -304021,13 +303935,12 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.33, + "BluntThroughput": 0, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "RibcageUp", - "RibcageLow" + "LeftUpperArm" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -304145,2867 +304058,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657bc285aab96fccee08bea3": { - "_id": "657bc285aab96fccee08bea3", - "_name": "Rys_T_level5_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "Rys_T_level5_helmet_armor_top", - "ShortName": "Rys_T_level5_helmet_armor_top", - "Description": "Rys_T_level5_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 484, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 30, - "MaxDurability": 30, - "armorClass": "5", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 65 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1431, - "ArmorMaterial": "Titan", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65703fa06584602f7d057a8e": { - "_id": "65703fa06584602f7d057a8e", - "_name": "paca_level2_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "paca_level2_soft_armor_back", - "ShortName": "paca_level2_soft_armor_back", - "Description": "paca_level2_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 48, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.35, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657bc107aab96fccee08be9f": { - "_id": "657bc107aab96fccee08be9f", - "_name": "altin_level5_helmet_armor_ears", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "altin_level5_helmet_armor_ears", - "ShortName": "altin_level5_helmet_armor_ears", - "Description": "altin_level5_helmet_armor_ears", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 434, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 27, - "MaxDurability": 27, - "armorClass": "5", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1665, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657322a4cea9255e21023651": { - "_id": "657322a4cea9255e21023651", - "_name": "bagarii_level3_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "bagarii_level3_soft_armor_back", - "ShortName": "bagarii_level3_soft_armor_back", - "Description": "bagarii_level3_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 48, - "MaxDurability": 48, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570e8a623c1f638ef0b0ee6": { - "_id": "6570e8a623c1f638ef0b0ee6", - "_name": "crye_avs_level3_soft_armor_left", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "crye_avs_level3_soft_armor_left", - "ShortName": "crye_avs_level3_soft_armor_left", - "Description": "crye_avs_level3_soft_armor_left", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 12, - "MaxDurability": 12, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.34, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570f79c4c65ab77a6015121": { - "_id": "6570f79c4c65ab77a6015121", - "_name": "ana_tact_m2_level3_soft_armor_right", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ana_tact_m2_level3_soft_armor_right", - "ShortName": "ana_tact_m2_level3_soft_armor_right", - "Description": "ana_tact_m2_level3_soft_armor_right", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 49, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 8, - "MaxDurability": 8, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.35, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657f9eb7e9433140ad0baf86": { - "_id": "657f9eb7e9433140ad0baf86", - "_name": "adept_neosteel_level3_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "adept_neosteel_level3_helmet_armor_top", - "ShortName": "adept_neosteel_level3_helmet_armor_top", - "Description": "adept_neosteel_level3_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 86, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 36, - "MaxDurability": 36, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 60 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1448, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570e83223c1f638ef0b0ede": { - "_id": "6570e83223c1f638ef0b0ede", - "_name": "crye_avs_level3_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "crye_avs_level3_soft_armor_front", - "ShortName": "crye_avs_level3_soft_armor_front", - "Description": "crye_avs_level3_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 42, - "MaxDurability": 42, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.34, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageLow", - "RibcageUp" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570e90b3a5689d85f08db97": { - "_id": "6570e90b3a5689d85f08db97", - "_name": "crye_avs_level3_soft_armor_groin", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "crye_avs_level3_soft_armor_groin", - "ShortName": "crye_avs_level3_soft_armor_groin", - "Description": "crye_avs_level3_soft_armor_groin", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 28, - "MaxDurability": 28, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.34, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "654a8b3df414fcea4004d78f": { - "_id": "654a8b3df414fcea4004d78f", - "_name": "6b13_level2_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b13_level2_soft_armor_left_side", - "ShortName": "6b13_level2_soft_armor_left_side", - "Description": "6b13_level2_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 56, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 6, - "MaxDurability": 6, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65711b07a330b8c9060f7b01": { - "_id": "65711b07a330b8c9060f7b01", - "_name": "ronin_level3_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ronin_level3_helmet_armor_top", - "ShortName": "ronin_level3_helmet_armor_top", - "Description": "ronin_level3_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 138, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 36, - "MaxDurability": 36, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.22, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65711b706d197c216005b31c": { - "_id": "65711b706d197c216005b31c", - "_name": "ronin_level3_helmet_armor_ears", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ronin_level3_helmet_armor_ears", - "ShortName": "ronin_level3_helmet_armor_ears", - "Description": "ronin_level3_helmet_armor_ears", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 138, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 36, - "MaxDurability": 36, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.22, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570fb8f4c65ab77a601514d": { - "_id": "6570fb8f4c65ab77a601514d", - "_name": "cqc_mk4a_level2_soft_armor_collar", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "cqc_mk4a_level2_soft_armor_collar", - "ShortName": "cqc_mk4a_level2_soft_armor_collar", - "Description": "cqc_mk4a_level2_soft_armor_collar", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/collar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 59, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 8, - "MaxDurability": 8, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657322b7d9d89ff7ac0d961f": { - "_id": "657322b7d9d89ff7ac0d961f", - "_name": "bagarii_level3_soft_armor_right_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "bagarii_level3_soft_armor_right_side", - "ShortName": "bagarii_level3_soft_armor_right_side", - "Description": "bagarii_level3_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 18, - "MaxDurability": 18, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6571bac34076795e5e073843": { - "_id": "6571bac34076795e5e073843", - "_name": "6b23-1_level2_soft_armor_groin_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b23-1_level2_soft_armor_groin_front", - "ShortName": "6b23-1_level2_soft_armor_groin_front", - "Description": "6b23-1_level2_soft_armor_groin_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 45, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575f26d9c7cad336508e480": { - "_id": "6575f26d9c7cad336508e480", - "_name": "crye_cpc_level3_soft_armor_right_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "crye_cpc_level3_soft_armor_right_side", - "ShortName": "crye_cpc_level3_soft_armor_right_side", - "Description": "crye_cpc_level3_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 12, - "MaxDurability": 12, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657bb92fa1c61ee0c303631f": { - "_id": "657bb92fa1c61ee0c303631f", - "_name": "lshz_level3_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "lshz_level3_helmet_armor_top", - "ShortName": "lshz_level3_helmet_armor_top", - "Description": "lshz_level3_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 89, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 18, - "MaxDurability": 18, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2376, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "64afee8e9f589807e30dc68a": { - "_id": "64afee8e9f589807e30dc68a", - "_name": "level3_soft_armor_left_arm", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "level3_soft_armor_left_arm", - "ShortName": "level3_soft_armor_left_arm", - "Description": "level3_soft_armor_left_arm", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/shoulder_l.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 10, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftUpperArm" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657119d49eb8c145180dbb95": { - "_id": "657119d49eb8c145180dbb95", - "_name": "ssh68_level3_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ssh68_level3_helmet_armor_nape", - "ShortName": "ssh68_level3_helmet_armor_nape", - "Description": "ssh68_level3_helmet_armor_nape", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 27, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 18, - "MaxDurability": 18, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 50 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1726, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575ef78da698a4e980677eb": { - "_id": "6575ef78da698a4e980677eb", - "_name": "ars_cpc_level3_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ars_cpc_level3_soft_armor_left_side", - "ShortName": "ars_cpc_level3_soft_armor_left_side", - "Description": "ars_cpc_level3_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 20, - "MaxDurability": 20, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65732e30dd8739f6440ef383": { - "_id": "65732e30dd8739f6440ef383", - "_name": "defender2_level3_soft_armor_groin_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "defender2_level3_soft_armor_groin_front", - "ShortName": "defender2_level3_soft_armor_groin_front", - "Description": "defender2_level3_soft_armor_groin_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 88, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 24, - "MaxDurability": 24, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6576504b526e320fbe035783": { - "_id": "6576504b526e320fbe035783", - "_name": "6b3TM_level4_soft_armor_groin_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b3TM_level4_soft_armor_groin_front", - "ShortName": "6b3TM_level4_soft_armor_groin_front", - "Description": "6b3TM_level4_soft_armor_groin_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 198, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 8, - "MaxDurability": 8, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.16, - "ArmorMaterial": "Titan", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "654a8b80f414fcea4004d797": { - "_id": "654a8b80f414fcea4004d797", - "_name": "6b13_level2_soft_armor_right_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b13_level2_soft_armor_right_side", - "ShortName": "6b13_level2_soft_armor_right_side", - "Description": "6b13_level2_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 56, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 6, - "MaxDurability": 6, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6572f1ca4c8d903cc60c874e": { - "_id": "6572f1ca4c8d903cc60c874e", - "_name": "rbav_af_level2_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "rbav_af_level2_soft_armor_front", - "ShortName": "rbav_af_level2_soft_armor_front", - "Description": "rbav_af_level2_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 61, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 36, - "MaxDurability": 36, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageLow", - "RibcageUp" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570e479a6560e4ee50c2b02": { - "_id": "6570e479a6560e4ee50c2b02", - "_name": "arsarma_a18_level2_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "arsarma_a18_level2_soft_armor_back", - "ShortName": "arsarma_a18_level2_soft_armor_back", - "Description": "arsarma_a18_level2_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 33, - "MaxDurability": 33, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.35, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657322acd9d89ff7ac0d961b": { - "_id": "657322acd9d89ff7ac0d961b", - "_name": "bagarii_level3_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "bagarii_level3_soft_armor_left_side", - "ShortName": "bagarii_level3_soft_armor_left_side", - "Description": "bagarii_level3_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 18, - "MaxDurability": 18, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65731045f31d5be00e08a75a": { - "_id": "65731045f31d5be00e08a75a", - "_name": "banshee_level2_soft_armor_right_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "banshee_level2_soft_armor_right_side", - "ShortName": "banshee_level2_soft_armor_right_side", - "Description": "banshee_level2_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 61, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 8, - "MaxDurability": 8, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657f9ef6c6679fefb3051e1f": { - "_id": "657f9ef6c6679fefb3051e1f", - "_name": "adept_neosteel_level3_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "adept_neosteel_level3_helmet_armor_nape", - "ShortName": "adept_neosteel_level3_helmet_armor_nape", - "Description": "adept_neosteel_level3_helmet_armor_nape", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 86, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 36, - "MaxDurability": 36, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 60 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1448, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "6575f5e1da698a4e98067869": { "_id": "6575f5e1da698a4e98067869", "_name": "avs_mbav_level3_soft_armor_back", @@ -307108,15 +304160,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6570e025615f54368b04fcb0": { - "_id": "6570e025615f54368b04fcb0", - "_name": "trooper_level3_soft_armor_front", + "6570653e89fd4926380b733e": { + "_id": "6570653e89fd4926380b733e", + "_name": "tv115_level2_soft_armor_front", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "trooper_level3_soft_armor_front", - "ShortName": "trooper_level3_soft_armor_front", - "Description": "trooper_level3_soft_armor_front", + "Name": "tv115_level2_soft_armor_front", + "ShortName": "tv115_level2_soft_armor_front", + "Description": "tv115_level2_soft_armor_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -307144,7 +304196,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 61, + "RepairCost": 50, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -307176,828 +304228,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 50, - "MaxDurability": 50, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575f2649cfdfe416f0399b8": { - "_id": "6575f2649cfdfe416f0399b8", - "_name": "crye_cpc_level3_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "crye_cpc_level3_soft_armor_left_side", - "ShortName": "crye_cpc_level3_soft_armor_left_side", - "Description": "crye_cpc_level3_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 12, - "MaxDurability": 12, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575cea8b15fef3dd405162c": { - "_id": "6575cea8b15fef3dd405162c", - "_name": "6b43_6a_level3_soft_armor_right_arm", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b43_6a_level3_soft_armor_right_arm", - "ShortName": "6b43_6a_level3_soft_armor_right_arm", - "Description": "6b43_6a_level3_soft_armor_right_arm", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/shoulder_r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 28, - "MaxDurability": 28, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightUpperArm" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65732e215d3a3129fb05f3e1": { - "_id": "65732e215d3a3129fb05f3e1", - "_name": "defender2_level3_soft_armor_collar", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "defender2_level3_soft_armor_collar", - "ShortName": "defender2_level3_soft_armor_collar", - "Description": "defender2_level3_soft_armor_collar", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/collar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 88, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 14, - "MaxDurability": 14, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "NeckFront" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6572e52f73c0eabb700109a0": { - "_id": "6572e52f73c0eabb700109a0", - "_name": "thorcrv_level3_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "thorcrv_level3_soft_armor_back", - "ShortName": "thorcrv_level3_soft_armor_back", - "Description": "thorcrv_level3_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 88, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 25, - "MaxDurability": 25, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65711bc79eb8c145180dbba1": { - "_id": "65711bc79eb8c145180dbba1", - "_name": "ronin_level3_helmet_armor_jaw", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ronin_level3_helmet_armor_jaw", - "ShortName": "ronin_level3_helmet_armor_jaw", - "Description": "ronin_level3_helmet_armor_jaw", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_jaw.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 138, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 36, - "MaxDurability": 36, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.22, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Jaw", - "HeadCommon" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "64ad2dc66f9247c2f401243d": { - "_id": "64ad2dc66f9247c2f401243d", - "_name": "level3_soft_armor_right_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "level3_soft_armor_right_side", - "ShortName": "level3_soft_armor_right_side", - "Description": "level3_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 10, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6572e5221b5bc1185508c24f": { - "_id": "6572e5221b5bc1185508c24f", - "_name": "thorcrv_level3_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "thorcrv_level3_soft_armor_front", - "ShortName": "thorcrv_level3_soft_armor_front", - "Description": "thorcrv_level3_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 88, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 25, - "MaxDurability": 25, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6571dbef88ead79fcf091d79": { - "_id": "6571dbef88ead79fcf091d79", - "_name": "zhuk3_level2_soft_armor_collar", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "zhuk3_level2_soft_armor_collar", - "ShortName": "zhuk3_level2_soft_armor_collar", - "Description": "zhuk3_level2_soft_armor_collar", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/collar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 61, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, + "Durability": 26, + "MaxDurability": 26, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -308010,15 +304242,14 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.33, + "BluntThroughput": 0.37, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", - "armorColliders": [ - "NeckFront", - "NeckBack" + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" ], - "armorPlateColliders": [], "speedPenaltyPercent": 0, "mousePenalty": 0, "weaponErgonomicPenalty": 0, @@ -308235,15 +304466,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6576500f526e320fbe03577f": { - "_id": "6576500f526e320fbe03577f", - "_name": "6b3TM_level2_soft_armor_groin_back", + "6571dbef88ead79fcf091d79": { + "_id": "6571dbef88ead79fcf091d79", + "_name": "zhuk3_level2_soft_armor_collar", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "6b3TM_level2_soft_armor_groin_back", - "ShortName": "6b3TM_level2_soft_armor_groin_back", - "Description": "6b3TM_level2_soft_armor_groin_back", + "Name": "zhuk3_level2_soft_armor_collar", + "ShortName": "zhuk3_level2_soft_armor_collar", + "Description": "zhuk3_level2_soft_armor_collar", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -308251,109 +304482,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 198, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 8, - "MaxDurability": 8, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.18, - "ArmorMaterial": "Titan", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [ - "PelvisBack" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65731038292ecadbfa09b391": { - "_id": "65731038292ecadbfa09b391", - "_name": "banshee_level2_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "banshee_level2_soft_armor_left_side", - "ShortName": "banshee_level2_soft_armor_left_side", - "Description": "banshee_level2_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "path": "assets/content/items/equipment/armor_plates/collar.bundle", "rcid": "" }, "UsePrefab": { @@ -308405,8 +304534,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 8, - "MaxDurability": 8, + "Durability": 10, + "MaxDurability": 10, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -308424,7 +304553,8 @@ "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "LeftSideChestDown" + "NeckFront", + "NeckBack" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -308439,15 +304569,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657fa04ac6679fefb3051e24": { - "_id": "657fa04ac6679fefb3051e24", - "_name": "bnti_lshz_2dtm_level4_helmet_armor_nape", + "65730c35292ecadbfa09ad54": { + "_id": "65730c35292ecadbfa09ad54", + "_name": "ana_m1_level2_soft_armor_right_side", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "bnti_lshz_2dtm_level4_helmet_armor_nape", - "ShortName": "bnti_lshz_2dtm_level4_helmet_armor_nape", - "Description": "bnti_lshz_2dtm_level4_helmet_armor_nape", + "Name": "ana_m1_level2_soft_armor_right_side", + "ShortName": "ana_m1_level2_soft_armor_right_side", + "Description": "ana_m1_level2_soft_armor_right_side", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -308455,7 +304585,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", "rcid": "" }, "UsePrefab": { @@ -308475,7 +304605,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 195, + "RepairCost": 61, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -308507,26 +304637,26 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 33, - "MaxDurability": 33, - "armorClass": "4", + "Durability": 12, + "MaxDurability": 12, + "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", "HasHinge": false, - "MaterialType": "Helmet", + "MaterialType": "BodyArmor", "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 70 + "x": 0, + "y": 0, + "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.1431, - "ArmorMaterial": "Combined", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", "BlindnessProtection": 0, - "ArmorType": "Heavy", + "ArmorType": "Light", "armorColliders": [ - "BackHead" + "RightSideChestDown" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -308643,15 +304773,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "65730c35292ecadbfa09ad54": { - "_id": "65730c35292ecadbfa09ad54", - "_name": "ana_m1_level2_soft_armor_right_side", + "65731038292ecadbfa09b391": { + "_id": "65731038292ecadbfa09b391", + "_name": "banshee_level2_soft_armor_left_side", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "ana_m1_level2_soft_armor_right_side", - "ShortName": "ana_m1_level2_soft_armor_right_side", - "Description": "ana_m1_level2_soft_armor_right_side", + "Name": "banshee_level2_soft_armor_left_side", + "ShortName": "banshee_level2_soft_armor_left_side", + "Description": "banshee_level2_soft_armor_left_side", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -308659,7 +304789,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", "rcid": "" }, "UsePrefab": { @@ -308711,8 +304841,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 12, - "MaxDurability": 12, + "Durability": 8, + "MaxDurability": 8, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -308730,7 +304860,7 @@ "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "RightSideChestDown" + "LeftSideChestDown" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -309051,15 +305181,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657bb99db30eca976305117f": { - "_id": "657bb99db30eca976305117f", - "_name": "lshz_level3_helmet_armor_nape", + "657112ce22996eaf110881fb": { + "_id": "657112ce22996eaf110881fb", + "_name": "ulach_level4_helmet_armor_ears", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "lshz_level3_helmet_armor_nape", - "ShortName": "lshz_level3_helmet_armor_nape", - "Description": "lshz_level3_helmet_armor_nape", + "Name": "ulach_level4_helmet_armor_ears", + "ShortName": "ulach_level4_helmet_armor_ears", + "Description": "ulach_level4_helmet_armor_ears", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -309067,7 +305197,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", "rcid": "" }, "UsePrefab": { @@ -309087,7 +305217,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 89, + "RepairCost": 241, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -309119,26 +305249,26 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 18, - "MaxDurability": 18, - "armorClass": "3", + "Durability": 22, + "MaxDurability": 22, + "armorClass": "4", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", "HasHinge": false, "MaterialType": "Helmet", "RicochetParams": { - "x": 0.8, - "y": 0.3, + "x": 0.9, + "y": 0.4, "z": 75 }, "DeafStrength": "None", - "BluntThroughput": 0.2376, - "ArmorMaterial": "Aramid", + "BluntThroughput": 0.208, + "ArmorMaterial": "UHMWPE", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "BackHead" + "Ears" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -309153,15 +305283,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657642b0e6d5dd75f40688a5": { - "_id": "657642b0e6d5dd75f40688a5", - "_name": "zhuk6_level3_soft_armor_back", + "6570f71dd67d0309980a7af8": { + "_id": "6570f71dd67d0309980a7af8", + "_name": "ana_tact_m2_level3_soft_armor_back", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "zhuk6_level3_soft_armor_back", - "ShortName": "zhuk6_level3_soft_armor_back", - "Description": "zhuk6_level3_soft_armor_back", + "Name": "ana_tact_m2_level3_soft_armor_back", + "ShortName": "ana_tact_m2_level3_soft_armor_back", + "Description": "ana_tact_m2_level3_soft_armor_back", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -309189,109 +305319,6 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 107, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 60, - "MaxDurability": 60, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570f74774d84423df065f25": { - "_id": "6570f74774d84423df065f25", - "_name": "ana_tact_m2_level3_soft_armor_left", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ana_tact_m2_level3_soft_armor_left", - "ShortName": "ana_tact_m2_level3_soft_armor_left", - "Description": "ana_tact_m2_level3_soft_armor_left", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, "RepairCost": 49, "RepairSpeed": 0, "ExtraSizeLeft": 0, @@ -309324,8 +305351,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 8, - "MaxDurability": 8, + "Durability": 40, + "MaxDurability": 40, "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -309343,7 +305370,8 @@ "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "LeftSideChestDown" + "SpineTop", + "SpineDown" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -309358,15 +305386,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "65708122f65e2491bf009755": { - "_id": "65708122f65e2491bf009755", - "_name": "6b23-2_level2_soft_armor_groin_front", + "6575d9a79e27f4a85e08112d": { + "_id": "6575d9a79e27f4a85e08112d", + "_name": "redut_t_level3_soft_armor_front", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "6b23-2_level2_soft_armor_groin_front", - "ShortName": "6b23-2_level2_soft_armor_groin_front", - "Description": "6b23-2_level2_soft_armor_groin_front", + "Name": "redut_t_level3_soft_armor_front", + "ShortName": "redut_t_level3_soft_armor_front", + "Description": "redut_t_level3_soft_armor_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -309374,109 +305402,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575d9b8945bf78edd04c427": { - "_id": "6575d9b8945bf78edd04c427", - "_name": "redut_t_level3_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "redut_t_level3_soft_armor_back", - "ShortName": "redut_t_level3_soft_armor_back", - "Description": "redut_t_level3_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", "rcid": "" }, "UsePrefab": { @@ -309546,518 +305472,6 @@ "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65711b9b65daf6aa960c9b1b": { - "_id": "65711b9b65daf6aa960c9b1b", - "_name": "ronin_level3_helmet_armor_eyes", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ronin_level3_helmet_armor_eyes", - "ShortName": "ronin_level3_helmet_armor_eyes", - "Description": "ronin_level3_helmet_armor_eyes", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_eyes.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 138, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 36, - "MaxDurability": 36, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.22, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Eyes" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65702fe593b7ea9c330f4ce8": { - "_id": "65702fe593b7ea9c330f4ce8", - "_name": "module3m_level2_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "module3m_level2_soft_armor_back", - "ShortName": "module3m_level2_soft_armor_back", - "Description": "module3m_level2_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 43, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 32, - "MaxDurability": 32, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.37, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575f5cbf6a13a7b7100b0bf": { - "_id": "6575f5cbf6a13a7b7100b0bf", - "_name": "avs_mbav_level3_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "avs_mbav_level3_soft_armor_front", - "ShortName": "avs_mbav_level3_soft_armor_front", - "Description": "avs_mbav_level3_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 61, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 30, - "MaxDurability": 30, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657333302cc8dfad2c0a3d9b": { - "_id": "657333302cc8dfad2c0a3d9b", - "_name": "cqc_mk4a_p_level3_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "cqc_mk4a_p_level3_soft_armor_left_side", - "ShortName": "cqc_mk4a_p_level3_soft_armor_left_side", - "Description": "cqc_mk4a_p_level3_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 14, - "MaxDurability": 14, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570fae34c65ab77a6015146": { - "_id": "6570fae34c65ab77a6015146", - "_name": "cqc_mk4a_level2_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "cqc_mk4a_level2_soft_armor_front", - "ShortName": "cqc_mk4a_level2_soft_armor_front", - "Description": "cqc_mk4a_level2_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 59, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 36, - "MaxDurability": 36, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", "armorColliders": [ "RibcageUp", "RibcageLow" @@ -310075,520 +305489,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6575f25ada698a4e98067836": { - "_id": "6575f25ada698a4e98067836", - "_name": "crye_cpc_level3_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "crye_cpc_level3_soft_armor_back", - "ShortName": "crye_cpc_level3_soft_armor_back", - "Description": "crye_cpc_level3_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 33, - "MaxDurability": 33, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657044e971369562b300ce9b": { - "_id": "657044e971369562b300ce9b", - "_name": "untar_level3_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "untar_level3_soft_armor_front", - "ShortName": "untar_level3_soft_armor_front", - "Description": "untar_level3_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 76, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.24, - "ArmorMaterial": "Aluminium", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": -3, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570e5100b57c03ec90b970a": { - "_id": "6570e5100b57c03ec90b970a", - "_name": "arsarma_a18_level2_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "arsarma_a18_level2_soft_armor_front", - "ShortName": "arsarma_a18_level2_soft_armor_front", - "Description": "arsarma_a18_level2_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 33, - "MaxDurability": 33, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.35, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "64ad2dd30b9840e4c80c2489": { - "_id": "64ad2dd30b9840e4c80c2489", - "_name": "level3_soft_armor_collar", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "level3_soft_armor_collar", - "ShortName": "level3_soft_armor_collar", - "Description": "level3_soft_armor_collar", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/collar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 10, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "64ad2dac6f9247c2f4012439": { - "_id": "64ad2dac6f9247c2f4012439", - "_name": "level3_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "level3_soft_armor_front", - "ShortName": "level3_soft_armor_front", - "Description": "level3_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 10, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 30, - "MaxDurability": 30, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageUp", - "RibcageLow", - "Pelvis" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "6570df294cc0d2ab1e05ed74": { "_id": "6570df294cc0d2ab1e05ed74", "_name": "tv110_level2_soft_armor_front", @@ -310998,109 +305898,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6570f71dd67d0309980a7af8": { - "_id": "6570f71dd67d0309980a7af8", - "_name": "ana_tact_m2_level3_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ana_tact_m2_level3_soft_armor_back", - "ShortName": "ana_tact_m2_level3_soft_armor_back", - "Description": "ana_tact_m2_level3_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 49, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.35, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "6571babf4cb80d995d0a1494": { "_id": "6571babf4cb80d995d0a1494", "_name": "6b23-1_level2_soft_armor_groin_back", @@ -311305,6 +306102,2870 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "657322988c1cc6dcd9098b2d": { + "_id": "657322988c1cc6dcd9098b2d", + "_name": "bagarii_level3_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "bagarii_level3_soft_armor_front", + "ShortName": "bagarii_level3_soft_armor_front", + "Description": "bagarii_level3_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 48, + "MaxDurability": 48, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6571dbd388ead79fcf091d71": { + "_id": "6571dbd388ead79fcf091d71", + "_name": "zhuk3_level2_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "zhuk3_level2_soft_armor_front", + "ShortName": "zhuk3_level2_soft_armor_front", + "Description": "zhuk3_level2_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 61, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570e87c23c1f638ef0b0ee2": { + "_id": "6570e87c23c1f638ef0b0ee2", + "_name": "crye_avs_level3_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "crye_avs_level3_soft_armor_back", + "ShortName": "crye_avs_level3_soft_armor_back", + "Description": "crye_avs_level3_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 42, + "MaxDurability": 42, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.34, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "SpineDown", + "SpineTop" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575ce9db15fef3dd4051628": { + "_id": "6575ce9db15fef3dd4051628", + "_name": "6b43_6a_level3_soft_armor_left_arm", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b43_6a_level3_soft_armor_left_arm", + "ShortName": "6b43_6a_level3_soft_armor_left_arm", + "Description": "6b43_6a_level3_soft_armor_left_arm", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/shoulder_l.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 28, + "MaxDurability": 28, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftUpperArm" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575bca0dc9932aed601c5d7": { + "_id": "6575bca0dc9932aed601c5d7", + "_name": "tactec_level3_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "tactec_level3_soft_armor_back", + "ShortName": "tactec_level3_soft_armor_back", + "Description": "tactec_level3_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 61, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6571bab0f41985531a038091": { + "_id": "6571bab0f41985531a038091", + "_name": "6b23-1_level2_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b23-1_level2_soft_armor_right_side", + "ShortName": "6b23-1_level2_soft_armor_right_side", + "Description": "6b23-1_level2_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 45, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 8, + "MaxDurability": 8, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "658188edf026a90c1708c827": { + "_id": "658188edf026a90c1708c827", + "_name": "djeta_psh97_level2_helmet_armor_shield", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "djeta_psh97_level2_helmet_armor_shield", + "ShortName": "djeta_psh97_level2_helmet_armor_shield", + "Description": "djeta_psh97_level2_helmet_armor_shield", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_eyes.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 17, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 39, + "MaxDurability": 39, + "armorClass": "1", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "GlassVisor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.099, + "ArmorMaterial": "Glass", + "BlindnessProtection": 0.15, + "ArmorType": "None", + "armorColliders": [ + "HeadCommon", + "Eyes" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570df9c615f54368b04fca9": { + "_id": "6570df9c615f54368b04fca9", + "_name": "tv110_level2_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "tv110_level2_soft_armor_back", + "ShortName": "tv110_level2_soft_armor_back", + "Description": "tv110_level2_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 54, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 35, + "MaxDurability": 35, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.35, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "654a8ba90337d53f9102c2b2": { + "_id": "654a8ba90337d53f9102c2b2", + "_name": "level2_soft_armor_right_arm", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "level2_soft_armor_right_arm", + "ShortName": "level2_soft_armor_right_arm", + "Description": "level2_soft_armor_right_arm", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/shoulder_r.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 10, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightUpperArm" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "654a90aff4f81a421b0a7c86": { + "_id": "654a90aff4f81a421b0a7c86", + "_name": "Untar_level3_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "Untar_level3_helmet_armor_top", + "ShortName": "Untar_level3_helmet_armor_top", + "Description": "Untar_level3_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 116, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 15, + "MaxDurability": 15, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2376, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575ef599c7cad336508e453": { + "_id": "6575ef599c7cad336508e453", + "_name": "ars_cpc_level3_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ars_cpc_level3_soft_armor_front", + "ShortName": "ars_cpc_level3_soft_armor_front", + "Description": "ars_cpc_level3_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65702fe593b7ea9c330f4ce8": { + "_id": "65702fe593b7ea9c330f4ce8", + "_name": "module3m_level2_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "module3m_level2_soft_armor_back", + "ShortName": "module3m_level2_soft_armor_back", + "Description": "module3m_level2_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 43, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 32, + "MaxDurability": 32, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.37, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "SpineDown", + "SpineTop" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657322b7d9d89ff7ac0d961f": { + "_id": "657322b7d9d89ff7ac0d961f", + "_name": "bagarii_level3_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "bagarii_level3_soft_armor_right_side", + "ShortName": "bagarii_level3_soft_armor_right_side", + "Description": "bagarii_level3_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 18, + "MaxDurability": 18, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65711b07a330b8c9060f7b01": { + "_id": "65711b07a330b8c9060f7b01", + "_name": "ronin_level3_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ronin_level3_helmet_armor_top", + "ShortName": "ronin_level3_helmet_armor_top", + "Description": "ronin_level3_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 138, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 36, + "MaxDurability": 36, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.22, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65711b706d197c216005b31c": { + "_id": "65711b706d197c216005b31c", + "_name": "ronin_level3_helmet_armor_ears", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ronin_level3_helmet_armor_ears", + "ShortName": "ronin_level3_helmet_armor_ears", + "Description": "ronin_level3_helmet_armor_ears", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 138, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 36, + "MaxDurability": 36, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.22, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65711b9b65daf6aa960c9b1b": { + "_id": "65711b9b65daf6aa960c9b1b", + "_name": "ronin_level3_helmet_armor_eyes", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ronin_level3_helmet_armor_eyes", + "ShortName": "ronin_level3_helmet_armor_eyes", + "Description": "ronin_level3_helmet_armor_eyes", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_eyes.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 138, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 36, + "MaxDurability": 36, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.22, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Eyes" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570fb8f4c65ab77a601514d": { + "_id": "6570fb8f4c65ab77a601514d", + "_name": "cqc_mk4a_level2_soft_armor_collar", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "cqc_mk4a_level2_soft_armor_collar", + "ShortName": "cqc_mk4a_level2_soft_armor_collar", + "Description": "cqc_mk4a_level2_soft_armor_collar", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/collar.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 59, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 8, + "MaxDurability": 8, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "NeckFront", + "NeckBack" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6571bac34076795e5e073843": { + "_id": "6571bac34076795e5e073843", + "_name": "6b23-1_level2_soft_armor_groin_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b23-1_level2_soft_armor_groin_front", + "ShortName": "6b23-1_level2_soft_armor_groin_front", + "Description": "6b23-1_level2_soft_armor_groin_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/groin.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 45, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575f5cbf6a13a7b7100b0bf": { + "_id": "6575f5cbf6a13a7b7100b0bf", + "_name": "avs_mbav_level3_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "avs_mbav_level3_soft_armor_front", + "ShortName": "avs_mbav_level3_soft_armor_front", + "Description": "avs_mbav_level3_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 61, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 30, + "MaxDurability": 30, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575f26d9c7cad336508e480": { + "_id": "6575f26d9c7cad336508e480", + "_name": "crye_cpc_level3_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "crye_cpc_level3_soft_armor_right_side", + "ShortName": "crye_cpc_level3_soft_armor_right_side", + "Description": "crye_cpc_level3_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 12, + "MaxDurability": 12, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657333302cc8dfad2c0a3d9b": { + "_id": "657333302cc8dfad2c0a3d9b", + "_name": "cqc_mk4a_p_level3_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "cqc_mk4a_p_level3_soft_armor_left_side", + "ShortName": "cqc_mk4a_p_level3_soft_armor_left_side", + "Description": "cqc_mk4a_p_level3_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 14, + "MaxDurability": 14, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570fae34c65ab77a6015146": { + "_id": "6570fae34c65ab77a6015146", + "_name": "cqc_mk4a_level2_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "cqc_mk4a_level2_soft_armor_front", + "ShortName": "cqc_mk4a_level2_soft_armor_front", + "Description": "cqc_mk4a_level2_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 59, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 36, + "MaxDurability": 36, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6572fc8c9a866b80ab07eb5d": { + "_id": "6572fc8c9a866b80ab07eb5d", + "_name": "mmac_level2_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "mmac_level2_soft_armor_back", + "ShortName": "mmac_level2_soft_armor_back", + "Description": "mmac_level2_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 61, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 22, + "MaxDurability": 22, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65711b489eb8c145180dbb9d": { + "_id": "65711b489eb8c145180dbb9d", + "_name": "ronin_level3_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ronin_level3_helmet_armor_nape", + "ShortName": "ronin_level3_helmet_armor_nape", + "Description": "ronin_level3_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 138, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 36, + "MaxDurability": 36, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.22, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657322a4cea9255e21023651": { + "_id": "657322a4cea9255e21023651", + "_name": "bagarii_level3_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "bagarii_level3_soft_armor_back", + "ShortName": "bagarii_level3_soft_armor_back", + "Description": "bagarii_level3_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 48, + "MaxDurability": 48, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "SpineDown", + "SpineTop" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657bb92fa1c61ee0c303631f": { + "_id": "657bb92fa1c61ee0c303631f", + "_name": "lshz_level3_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "lshz_level3_helmet_armor_top", + "ShortName": "lshz_level3_helmet_armor_top", + "Description": "lshz_level3_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 89, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 18, + "MaxDurability": 18, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2376, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570e8a623c1f638ef0b0ee6": { + "_id": "6570e8a623c1f638ef0b0ee6", + "_name": "crye_avs_level3_soft_armor_left", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "crye_avs_level3_soft_armor_left", + "ShortName": "crye_avs_level3_soft_armor_left", + "Description": "crye_avs_level3_soft_armor_left", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 12, + "MaxDurability": 12, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.34, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657f9eb7e9433140ad0baf86": { + "_id": "657f9eb7e9433140ad0baf86", + "_name": "adept_neosteel_level3_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "adept_neosteel_level3_helmet_armor_top", + "ShortName": "adept_neosteel_level3_helmet_armor_top", + "Description": "adept_neosteel_level3_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 86, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 36, + "MaxDurability": 36, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 60 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1448, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "6572f1d60103b4a3270332db": { "_id": "6572f1d60103b4a3270332db", "_name": "rbav_af_level2_soft_armor_back", @@ -311613,6 +309274,109 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "6570e83223c1f638ef0b0ede": { + "_id": "6570e83223c1f638ef0b0ede", + "_name": "crye_avs_level3_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "crye_avs_level3_soft_armor_front", + "ShortName": "crye_avs_level3_soft_armor_front", + "Description": "crye_avs_level3_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 42, + "MaxDurability": 42, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.34, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RibcageLow", + "RibcageUp" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "6575ce5016c2762fba005802": { "_id": "6575ce5016c2762fba005802", "_name": "6b43_6a_level3_soft_armor_left_side", @@ -311715,6 +309479,414 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "6570e90b3a5689d85f08db97": { + "_id": "6570e90b3a5689d85f08db97", + "_name": "crye_avs_level3_soft_armor_groin", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "crye_avs_level3_soft_armor_groin", + "ShortName": "crye_avs_level3_soft_armor_groin", + "Description": "crye_avs_level3_soft_armor_groin", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/groin.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 28, + "MaxDurability": 28, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.34, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657ba75e23918923cb0df573": { + "_id": "657ba75e23918923cb0df573", + "_name": "djeta_psh97_level2_helmet_armor_ears", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "djeta_psh97_level2_helmet_armor_ears", + "ShortName": "djeta_psh97_level2_helmet_armor_ears", + "Description": "djeta_psh97_level2_helmet_armor_ears", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 17, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 39, + "MaxDurability": 39, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.2, + "y": 0.01, + "z": 60 + }, + "DeafStrength": "None", + "BluntThroughput": 0.217, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "654a8b3df414fcea4004d78f": { + "_id": "654a8b3df414fcea4004d78f", + "_name": "6b13_level2_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b13_level2_soft_armor_left_side", + "ShortName": "6b13_level2_soft_armor_left_side", + "Description": "6b13_level2_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 56, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 6, + "MaxDurability": 6, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6573333eca0ca984940a2d57": { + "_id": "6573333eca0ca984940a2d57", + "_name": "cqc_mk4a_p_level3_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "cqc_mk4a_p_level3_soft_armor_right_side", + "ShortName": "cqc_mk4a_p_level3_soft_armor_right_side", + "Description": "cqc_mk4a_p_level3_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 14, + "MaxDurability": 14, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "657fa186d4caf976440afe42": { "_id": "657fa186d4caf976440afe42", "_name": "class_tor2_level3_helmet_armor_ears", @@ -311919,15 +310091,117 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "655751db58aa1b6dbd0cc295": { - "_id": "655751db58aa1b6dbd0cc295", - "_name": "level2_soft_armor_plate_back", + "657322acd9d89ff7ac0d961b": { + "_id": "657322acd9d89ff7ac0d961b", + "_name": "bagarii_level3_soft_armor_left_side", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "level2_soft_armor_plate_back", - "ShortName": "level2_soft_armor_plate_back", - "Description": "level2_soft_armor_plate_back", + "Name": "bagarii_level3_soft_armor_left_side", + "ShortName": "bagarii_level3_soft_armor_left_side", + "Description": "bagarii_level3_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 18, + "MaxDurability": 18, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6572f1ca4c8d903cc60c874e": { + "_id": "6572f1ca4c8d903cc60c874e", + "_name": "rbav_af_level2_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "rbav_af_level2_soft_armor_front", + "ShortName": "rbav_af_level2_soft_armor_front", + "Description": "rbav_af_level2_soft_armor_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -311955,7 +310229,1030 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 10, + "RepairCost": 61, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 36, + "MaxDurability": 36, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RibcageLow", + "RibcageUp" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570e479a6560e4ee50c2b02": { + "_id": "6570e479a6560e4ee50c2b02", + "_name": "arsarma_a18_level2_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "arsarma_a18_level2_soft_armor_back", + "ShortName": "arsarma_a18_level2_soft_armor_back", + "Description": "arsarma_a18_level2_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 33, + "MaxDurability": 33, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.35, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65731045f31d5be00e08a75a": { + "_id": "65731045f31d5be00e08a75a", + "_name": "banshee_level2_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "banshee_level2_soft_armor_right_side", + "ShortName": "banshee_level2_soft_armor_right_side", + "Description": "banshee_level2_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 61, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 8, + "MaxDurability": 8, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657f9ef6c6679fefb3051e1f": { + "_id": "657f9ef6c6679fefb3051e1f", + "_name": "adept_neosteel_level3_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "adept_neosteel_level3_helmet_armor_nape", + "ShortName": "adept_neosteel_level3_helmet_armor_nape", + "Description": "adept_neosteel_level3_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 86, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 36, + "MaxDurability": 36, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 60 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1448, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575cea8b15fef3dd405162c": { + "_id": "6575cea8b15fef3dd405162c", + "_name": "6b43_6a_level3_soft_armor_right_arm", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b43_6a_level3_soft_armor_right_arm", + "ShortName": "6b43_6a_level3_soft_armor_right_arm", + "Description": "6b43_6a_level3_soft_armor_right_arm", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/shoulder_r.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 28, + "MaxDurability": 28, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightUpperArm" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575f2649cfdfe416f0399b8": { + "_id": "6575f2649cfdfe416f0399b8", + "_name": "crye_cpc_level3_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "crye_cpc_level3_soft_armor_left_side", + "ShortName": "crye_cpc_level3_soft_armor_left_side", + "Description": "crye_cpc_level3_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 12, + "MaxDurability": 12, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570e025615f54368b04fcb0": { + "_id": "6570e025615f54368b04fcb0", + "_name": "trooper_level3_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "trooper_level3_soft_armor_front", + "ShortName": "trooper_level3_soft_armor_front", + "Description": "trooper_level3_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 61, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 50, + "MaxDurability": 50, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65732e215d3a3129fb05f3e1": { + "_id": "65732e215d3a3129fb05f3e1", + "_name": "defender2_level3_soft_armor_collar", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "defender2_level3_soft_armor_collar", + "ShortName": "defender2_level3_soft_armor_collar", + "Description": "defender2_level3_soft_armor_collar", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/collar.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 88, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 14, + "MaxDurability": 14, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "NeckFront" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575c3b3dc9932aed601c5f4": { + "_id": "6575c3b3dc9932aed601c5f4", + "_name": "iotv_gen4_a_level3_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "iotv_gen4_a_level3_soft_armor_front", + "ShortName": "iotv_gen4_a_level3_soft_armor_front", + "Description": "iotv_gen4_a_level3_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 52, + "MaxDurability": 52, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657119d49eb8c145180dbb95": { + "_id": "657119d49eb8c145180dbb95", + "_name": "ssh68_level3_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ssh68_level3_helmet_armor_nape", + "ShortName": "ssh68_level3_helmet_armor_nape", + "Description": "ssh68_level3_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 27, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 18, + "MaxDurability": 18, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 50 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1726, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575ef78da698a4e980677eb": { + "_id": "6575ef78da698a4e980677eb", + "_name": "ars_cpc_level3_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ars_cpc_level3_soft_armor_left_side", + "ShortName": "ars_cpc_level3_soft_armor_left_side", + "Description": "ars_cpc_level3_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -311989,6 +311286,108 @@ "BlocksFaceCover": false, "Durability": 20, "MaxDurability": 20, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "654a8b80f414fcea4004d797": { + "_id": "654a8b80f414fcea4004d797", + "_name": "6b13_level2_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b13_level2_soft_armor_right_side", + "ShortName": "6b13_level2_soft_armor_right_side", + "Description": "6b13_level2_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 56, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 6, + "MaxDurability": 6, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -312001,7 +311400,723 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0, + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65732e30dd8739f6440ef383": { + "_id": "65732e30dd8739f6440ef383", + "_name": "defender2_level3_soft_armor_groin_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "defender2_level3_soft_armor_groin_front", + "ShortName": "defender2_level3_soft_armor_groin_front", + "Description": "defender2_level3_soft_armor_groin_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/groin.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 88, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 24, + "MaxDurability": 24, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6576504b526e320fbe035783": { + "_id": "6576504b526e320fbe035783", + "_name": "6b3TM_level4_soft_armor_groin_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b3TM_level4_soft_armor_groin_front", + "ShortName": "6b3TM_level4_soft_armor_groin_front", + "Description": "6b3TM_level4_soft_armor_groin_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/groin.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 198, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 8, + "MaxDurability": 8, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.16, + "ArmorMaterial": "Titan", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657642b0e6d5dd75f40688a5": { + "_id": "657642b0e6d5dd75f40688a5", + "_name": "zhuk6_level3_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "zhuk6_level3_soft_armor_back", + "ShortName": "zhuk6_level3_soft_armor_back", + "Description": "zhuk6_level3_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 107, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 60, + "MaxDurability": 60, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "SpineDown", + "SpineTop" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65708122f65e2491bf009755": { + "_id": "65708122f65e2491bf009755", + "_name": "6b23-2_level2_soft_armor_groin_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b23-2_level2_soft_armor_groin_front", + "ShortName": "6b23-2_level2_soft_armor_groin_front", + "Description": "6b23-2_level2_soft_armor_groin_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/groin.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657044e971369562b300ce9b": { + "_id": "657044e971369562b300ce9b", + "_name": "untar_level3_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "untar_level3_soft_armor_front", + "ShortName": "untar_level3_soft_armor_front", + "Description": "untar_level3_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 76, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.24, + "ArmorMaterial": "Aluminium", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": -3, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575f25ada698a4e98067836": { + "_id": "6575f25ada698a4e98067836", + "_name": "crye_cpc_level3_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "crye_cpc_level3_soft_armor_back", + "ShortName": "crye_cpc_level3_soft_armor_back", + "Description": "crye_cpc_level3_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 33, + "MaxDurability": 33, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570e5100b57c03ec90b970a": { + "_id": "6570e5100b57c03ec90b970a", + "_name": "arsarma_a18_level2_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "arsarma_a18_level2_soft_armor_front", + "ShortName": "arsarma_a18_level2_soft_armor_front", + "Description": "arsarma_a18_level2_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 33, + "MaxDurability": 33, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.35, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", @@ -312021,6 +312136,108 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "6570e59b0b57c03ec90b970e": { + "_id": "6570e59b0b57c03ec90b970e", + "_name": "arsarma_a18_level2_soft_armor_right", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "arsarma_a18_level2_soft_armor_right", + "ShortName": "arsarma_a18_level2_soft_armor_right", + "Description": "arsarma_a18_level2_soft_armor_right", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.35, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "6575dd3e9e27f4a85e081142": { "_id": "6575dd3e9e27f4a85e081142", "_name": "redut_m_level3_soft_armor_front", @@ -312124,6 +312341,108 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "6575ef7f9c7cad336508e457": { + "_id": "6575ef7f9c7cad336508e457", + "_name": "ars_cpc_level3_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ars_cpc_level3_soft_armor_right_side", + "ShortName": "ars_cpc_level3_soft_armor_right_side", + "Description": "ars_cpc_level3_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 20, + "MaxDurability": 20, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "6571dbda88ead79fcf091d75": { "_id": "6571dbda88ead79fcf091d75", "_name": "zhuk3_level2_soft_armor_back", @@ -312227,416 +312546,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6570e87c23c1f638ef0b0ee2": { - "_id": "6570e87c23c1f638ef0b0ee2", - "_name": "crye_avs_level3_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "crye_avs_level3_soft_armor_back", - "ShortName": "crye_avs_level3_soft_armor_back", - "Description": "crye_avs_level3_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 42, - "MaxDurability": 42, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.34, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575bca0dc9932aed601c5d7": { - "_id": "6575bca0dc9932aed601c5d7", - "_name": "tactec_level3_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "tactec_level3_soft_armor_back", - "ShortName": "tactec_level3_soft_armor_back", - "Description": "tactec_level3_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 61, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575ce9db15fef3dd4051628": { - "_id": "6575ce9db15fef3dd4051628", - "_name": "6b43_6a_level3_soft_armor_left_arm", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "6b43_6a_level3_soft_armor_left_arm", - "ShortName": "6b43_6a_level3_soft_armor_left_arm", - "Description": "6b43_6a_level3_soft_armor_left_arm", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/shoulder_l.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 28, - "MaxDurability": 28, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftUpperArm" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570f6e774d84423df065f21": { - "_id": "6570f6e774d84423df065f21", - "_name": "ana_tact_m2_level3_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ana_tact_m2_level3_soft_armor_front", - "ShortName": "ana_tact_m2_level3_soft_armor_front", - "Description": "ana_tact_m2_level3_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 49, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.35, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "6575bc88c6700bd6b40e8a57": { "_id": "6575bc88c6700bd6b40e8a57", "_name": "tactec_level3_soft_armor_front", @@ -312739,6 +312648,108 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "6575ce5befc786cd9101a671": { + "_id": "6575ce5befc786cd9101a671", + "_name": "6b43_6a_level3_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b43_6a_level3_soft_armor_right_side", + "ShortName": "6b43_6a_level3_soft_armor_right_side", + "Description": "6b43_6a_level3_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 26, + "MaxDurability": 26, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "6570e0610b57c03ec90b96ef": { "_id": "6570e0610b57c03ec90b96ef", "_name": "trooper_level3_soft_armor_back", @@ -312842,15 +312853,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6575ef7f9c7cad336508e457": { - "_id": "6575ef7f9c7cad336508e457", - "_name": "ars_cpc_level3_soft_armor_right_side", + "65732688d9d89ff7ac0d9c4c": { + "_id": "65732688d9d89ff7ac0d9c4c", + "_name": "gjel_level3_soft_armor_front", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "ars_cpc_level3_soft_armor_right_side", - "ShortName": "ars_cpc_level3_soft_armor_right_side", - "Description": "ars_cpc_level3_soft_armor_right_side", + "Name": "gjel_level3_soft_armor_front", + "ShortName": "gjel_level3_soft_armor_front", + "Description": "gjel_level3_soft_armor_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -312858,7 +312869,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", "rcid": "" }, "UsePrefab": { @@ -312878,7 +312889,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 58, + "RepairCost": 88, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -312910,8 +312921,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 20, - "MaxDurability": 20, + "Durability": 56, + "MaxDurability": 56, "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -312924,12 +312935,13 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.31, + "BluntThroughput": 0.33, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "RightSideChestDown" + "RibcageUp", + "RibcageLow" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -312944,15 +312956,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6575ce5befc786cd9101a671": { - "_id": "6575ce5befc786cd9101a671", - "_name": "6b43_6a_level3_soft_armor_right_side", + "6572e52f73c0eabb700109a0": { + "_id": "6572e52f73c0eabb700109a0", + "_name": "thorcrv_level3_soft_armor_back", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "6b43_6a_level3_soft_armor_right_side", - "ShortName": "6b43_6a_level3_soft_armor_right_side", - "Description": "6b43_6a_level3_soft_armor_right_side", + "Name": "thorcrv_level3_soft_armor_back", + "ShortName": "thorcrv_level3_soft_armor_back", + "Description": "thorcrv_level3_soft_armor_back", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -312960,7 +312972,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", "rcid": "" }, "UsePrefab": { @@ -312980,7 +312992,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 85, + "RepairCost": 88, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -313012,8 +313024,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 26, - "MaxDurability": 26, + "Durability": 25, + "MaxDurability": 25, "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -313026,12 +313038,13 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.36, + "BluntThroughput": 0.33, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "RightSideChestDown" + "SpineDown", + "SpineTop" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -313046,15 +313059,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6571bab0f41985531a038091": { - "_id": "6571bab0f41985531a038091", - "_name": "6b23-1_level2_soft_armor_right_side", + "6572e5221b5bc1185508c24f": { + "_id": "6572e5221b5bc1185508c24f", + "_name": "thorcrv_level3_soft_armor_front", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "6b23-1_level2_soft_armor_right_side", - "ShortName": "6b23-1_level2_soft_armor_right_side", - "Description": "6b23-1_level2_soft_armor_right_side", + "Name": "thorcrv_level3_soft_armor_front", + "ShortName": "thorcrv_level3_soft_armor_front", + "Description": "thorcrv_level3_soft_armor_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -313062,7 +313075,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", "rcid": "" }, "UsePrefab": { @@ -313082,7 +313095,213 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 45, + "RepairCost": 88, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 25, + "MaxDurability": 25, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65711bc79eb8c145180dbba1": { + "_id": "65711bc79eb8c145180dbba1", + "_name": "ronin_level3_helmet_armor_jaw", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ronin_level3_helmet_armor_jaw", + "ShortName": "ronin_level3_helmet_armor_jaw", + "Description": "ronin_level3_helmet_armor_jaw", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_jaw.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 138, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 36, + "MaxDurability": 36, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.22, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Jaw", + "HeadCommon" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6576500f526e320fbe03577f": { + "_id": "6576500f526e320fbe03577f", + "_name": "6b3TM_level2_soft_armor_groin_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "6b3TM_level2_soft_armor_groin_back", + "ShortName": "6b3TM_level2_soft_armor_groin_back", + "Description": "6b3TM_level2_soft_armor_groin_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/groin.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 198, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -313123,120 +313342,17 @@ "HasHinge": false, "MaterialType": "BodyArmor", "RicochetParams": { - "x": 0, - "y": 0, + "x": 0.8, + "y": 0.3, "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", + "BluntThroughput": 0.18, + "ArmorMaterial": "Titan", "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "658188edf026a90c1708c827": { - "_id": "658188edf026a90c1708c827", - "_name": "djeta_psh97_level2_helmet_armor_shield", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "djeta_psh97_level2_helmet_armor_shield", - "ShortName": "djeta_psh97_level2_helmet_armor_shield", - "Description": "djeta_psh97_level2_helmet_armor_shield", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_eyes.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 17, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 39, - "MaxDurability": 39, - "armorClass": "1", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "GlassVisor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.099, - "ArmorMaterial": "Glass", - "BlindnessProtection": 0.15, "ArmorType": "None", "armorColliders": [ - "HeadCommon", - "Eyes" + "PelvisBack" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -313251,15 +313367,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657ba75e23918923cb0df573": { - "_id": "657ba75e23918923cb0df573", - "_name": "djeta_psh97_level2_helmet_armor_ears", + "657fa04ac6679fefb3051e24": { + "_id": "657fa04ac6679fefb3051e24", + "_name": "bnti_lshz_2dtm_level4_helmet_armor_nape", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "djeta_psh97_level2_helmet_armor_ears", - "ShortName": "djeta_psh97_level2_helmet_armor_ears", - "Description": "djeta_psh97_level2_helmet_armor_ears", + "Name": "bnti_lshz_2dtm_level4_helmet_armor_nape", + "ShortName": "bnti_lshz_2dtm_level4_helmet_armor_nape", + "Description": "bnti_lshz_2dtm_level4_helmet_armor_nape", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -313267,7 +313383,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", "rcid": "" }, "UsePrefab": { @@ -313287,7 +313403,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 17, + "RepairCost": 195, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -313319,314 +313435,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 39, - "MaxDurability": 39, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.2, - "y": 0.01, - "z": 60 - }, - "DeafStrength": "None", - "BluntThroughput": 0.217, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65733375b7a8d286530e3dd7": { - "_id": "65733375b7a8d286530e3dd7", - "_name": "cqc_mk4a_p_level3_soft_armor_left_arm", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "cqc_mk4a_level2_soft_armor_left_arm", - "ShortName": "cqc_mk4a_level2_soft_armor_left_arm", - "Description": "cqc_mk4a_level2_soft_armor_left_arm", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/shoulder_l.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 12, - "MaxDurability": 12, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftUpperArm" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570fbdd74d84423df065f60": { - "_id": "6570fbdd74d84423df065f60", - "_name": "cqc_mk4a_level2_soft_armor_left_arm", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "cqc_mk4a_level2_soft_armor_left_arm", - "ShortName": "cqc_mk4a_level2_soft_armor_left_arm", - "Description": "cqc_mk4a_level2_soft_armor_left_arm", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/shoulder_l.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 59, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 12, - "MaxDurability": 12, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftUpperArm" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657f8b94f92cd718b70154ff": { - "_id": "657f8b94f92cd718b70154ff", - "_name": "msa_tc2002_level4_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "msa_tc2002_level4_helmet_armor_top", - "ShortName": "msa_tc2002_level4_helmet_armor_top", - "Description": "msa_tc2002_level4_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 253, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 16, - "MaxDurability": 16, + "Durability": 33, + "MaxDurability": 33, "armorClass": "4", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -313639,523 +313449,12 @@ "z": 70 }, "DeafStrength": "None", - "BluntThroughput": 0.1548, + "BluntThroughput": 0.1431, "ArmorMaterial": "Combined", "BlindnessProtection": 0, "ArmorType": "Heavy", "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6573333eca0ca984940a2d57": { - "_id": "6573333eca0ca984940a2d57", - "_name": "cqc_mk4a_p_level3_soft_armor_right_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "cqc_mk4a_p_level3_soft_armor_right_side", - "ShortName": "cqc_mk4a_p_level3_soft_armor_right_side", - "Description": "cqc_mk4a_p_level3_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 14, - "MaxDurability": 14, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570f35cd67d0309980a7acb": { - "_id": "6570f35cd67d0309980a7acb", - "_name": "interceptor_level2_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "interceptor_level2_soft_armor_back", - "ShortName": "interceptor_level2_soft_armor_back", - "Description": "interceptor_level2_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 50, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 48, - "MaxDurability": 48, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575c40c52b7f8c76a05ee41": { - "_id": "6575c40c52b7f8c76a05ee41", - "_name": "iotv_gen4_a_level3_soft_armor_right_arm", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "iotv_gen4_a_level3_soft_armor_right_arm", - "ShortName": "iotv_gen4_a_level3_soft_armor_right_arm", - "Description": "iotv_gen4_a_level3_soft_armor_right_arm", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/shoulder_r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 24, - "MaxDurability": 24, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightUpperArm" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657ba57af58ba5a62501079e": { - "_id": "657ba57af58ba5a62501079e", - "_name": "kolpak_1s_4ml_level2_helmet_armor_ears", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "kolpak_1s_4ml_level2_helmet_armor_ears", - "ShortName": "kolpak_1s_4ml_level2_helmet_armor_ears", - "Description": "kolpak_1s_4ml_level2_helmet_armor_ears", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 24, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.2, - "y": 0.01, - "z": 90 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2376, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570e59b0b57c03ec90b970e": { - "_id": "6570e59b0b57c03ec90b970e", - "_name": "arsarma_a18_level2_soft_armor_right", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "arsarma_a18_level2_soft_armor_right", - "ShortName": "arsarma_a18_level2_soft_armor_right", - "Description": "arsarma_a18_level2_soft_armor_right", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.35, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" + "BackHead" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -314476,6 +313775,210 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "657f8ec5f4c82973640b234c": { + "_id": "657f8ec5f4c82973640b234c", + "_name": "ops_core_fastMT_level4_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ops_core_fastMT_level4_helmet_armor_top", + "ShortName": "ops_core_fastMT_level4_helmet_armor_top", + "Description": "ops_core_fastMT_level4_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 276, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 24, + "MaxDurability": 24, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1431, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657040374e67e8ec7a0d261c": { + "_id": "657040374e67e8ec7a0d261c", + "_name": "paca_level2_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "paca_level2_soft_armor_right_side", + "ShortName": "paca_level2_soft_armor_right_side", + "Description": "paca_level2_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 48, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.35, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "657fa0fcd4caf976440afe3e": { "_id": "657fa0fcd4caf976440afe3e", "_name": "class_tor2_level3_helmet_armor_top", @@ -314681,15 +314184,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6572f1edea457732140ce875": { - "_id": "6572f1edea457732140ce875", - "_name": "rbav_af_level2_soft_armor_right_side", + "6575c30352b7f8c76a05ee31": { + "_id": "6575c30352b7f8c76a05ee31", + "_name": "iotv_gen4_f_level3_soft_armor_right_arm", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "rbav_af_level2_soft_armor_right_side", - "ShortName": "rbav_af_level2_soft_armor_right_side", - "Description": "rbav_af_level2_soft_armor_right_side", + "Name": "iotv_gen4_f_level3_soft_armor_right_arm", + "ShortName": "iotv_gen4_f_level3_soft_armor_right_arm", + "Description": "iotv_gen4_f_level3_soft_armor_right_arm", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -314697,7 +314200,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "path": "assets/content/items/equipment/armor_plates/shoulder_r.bundle", "rcid": "" }, "UsePrefab": { @@ -314717,7 +314220,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 61, + "RepairCost": 85, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -314749,8 +314252,416 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 9, - "MaxDurability": 9, + "Durability": 24, + "MaxDurability": 24, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightUpperArm" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65733375b7a8d286530e3dd7": { + "_id": "65733375b7a8d286530e3dd7", + "_name": "cqc_mk4a_p_level3_soft_armor_left_arm", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "cqc_mk4a_level2_soft_armor_left_arm", + "ShortName": "cqc_mk4a_level2_soft_armor_left_arm", + "Description": "cqc_mk4a_level2_soft_armor_left_arm", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/shoulder_l.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 12, + "MaxDurability": 12, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftUpperArm" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657fa168e9433140ad0baf8e": { + "_id": "657fa168e9433140ad0baf8e", + "_name": "class_tor2_level3_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "class_tor2_level3_helmet_armor_nape", + "ShortName": "class_tor2_level3_helmet_armor_nape", + "Description": "class_tor2_level3_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 126, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 27, + "MaxDurability": 27, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1548, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575c40c52b7f8c76a05ee41": { + "_id": "6575c40c52b7f8c76a05ee41", + "_name": "iotv_gen4_a_level3_soft_armor_right_arm", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "iotv_gen4_a_level3_soft_armor_right_arm", + "ShortName": "iotv_gen4_a_level3_soft_armor_right_arm", + "Description": "iotv_gen4_a_level3_soft_armor_right_arm", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/shoulder_r.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 24, + "MaxDurability": 24, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightUpperArm" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570f35cd67d0309980a7acb": { + "_id": "6570f35cd67d0309980a7acb", + "_name": "interceptor_level2_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "interceptor_level2_soft_armor_back", + "ShortName": "interceptor_level2_soft_armor_back", + "Description": "interceptor_level2_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 50, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 48, + "MaxDurability": 48, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -314768,7 +314679,314 @@ "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "RightSideChestDown" + "SpineDown", + "SpineTop" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657ba57af58ba5a62501079e": { + "_id": "657ba57af58ba5a62501079e", + "_name": "kolpak_1s_4ml_level2_helmet_armor_ears", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "kolpak_1s_4ml_level2_helmet_armor_ears", + "ShortName": "kolpak_1s_4ml_level2_helmet_armor_ears", + "Description": "kolpak_1s_4ml_level2_helmet_armor_ears", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 24, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 15, + "MaxDurability": 15, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.2, + "y": 0.01, + "z": 90 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2376, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657babc6f58ba5a6250107a2": { + "_id": "657babc6f58ba5a6250107a2", + "_name": "ratnik_6b47_level3_helmet_armor_ears", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ratnik_6b47_level3_helmet_armor_ears", + "ShortName": "ratnik_6b47_level3_helmet_armor_ears", + "Description": "ratnik_6b47_level3_helmet_armor_ears", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 120, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 15, + "MaxDurability": 15, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2376, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65732e05d0acf75aea06c87f": { + "_id": "65732e05d0acf75aea06c87f", + "_name": "defender2_level3_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "defender2_level3_soft_armor_left_side", + "ShortName": "defender2_level3_soft_armor_left_side", + "Description": "defender2_level3_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 88, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 22, + "MaxDurability": 22, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -314885,424 +315103,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6575ce6f16c2762fba005806": { - "_id": "6575ce6f16c2762fba005806", - "_name": "6b43_6a_level3_soft_armor_collar", + "6575c2cd52b7f8c76a05ee29": { + "_id": "6575c2cd52b7f8c76a05ee29", + "_name": "iotv_gen4_f_level3_soft_armor_left_side", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "6b43_6a_level3_soft_armor_collar", - "ShortName": "6b43_6a_level3_soft_armor_collar", - "Description": "6b43_6a_level3_soft_armor_collar", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/collar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 32, - "MaxDurability": 32, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6573337f2cc8dfad2c0a3da7": { - "_id": "6573337f2cc8dfad2c0a3da7", - "_name": "cqc_mk4a_p_level3_soft_armor_right_arm", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "cqc_mk4a_level2_soft_armor_right_arm", - "ShortName": "cqc_mk4a_level2_soft_armor_right_arm", - "Description": "cqc_mk4a_level2_soft_armor_right_arm", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/shoulder_r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 12, - "MaxDurability": 12, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightUpperArm" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570fc41d3eefd23430f8c83": { - "_id": "6570fc41d3eefd23430f8c83", - "_name": "cqc_mk4a_level2_soft_armor_right_arm", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "cqc_mk4a_level2_soft_armor_right_arm", - "ShortName": "cqc_mk4a_level2_soft_armor_right_arm", - "Description": "cqc_mk4a_level2_soft_armor_right_arm", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/shoulder_r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 59, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 12, - "MaxDurability": 12, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightUpperArm" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570f3bb0b4ae5847f060db2": { - "_id": "6570f3bb0b4ae5847f060db2", - "_name": "interceptor_level2_soft_armor_right", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "interceptor_level2_soft_armor_right", - "ShortName": "interceptor_level2_soft_armor_right", - "Description": "interceptor_level2_soft_armor_right", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 50, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 18, - "MaxDurability": 18, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575c3cdc6700bd6b40e8a90": { - "_id": "6575c3cdc6700bd6b40e8a90", - "_name": "iotv_gen4_a_level3_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "iotv_gen4_a_level3_soft_armor_left_side", - "ShortName": "iotv_gen4_a_level3_soft_armor_left_side", - "Description": "iotv_gen4_a_level3_soft_armor_left_side", + "Name": "iotv_gen4_f_level3_soft_armor_left_side", + "ShortName": "iotv_gen4_f_level3_soft_armor_left_side", + "Description": "iotv_gen4_f_level3_soft_armor_left_side", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -315396,15 +315205,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657fa168e9433140ad0baf8e": { - "_id": "657fa168e9433140ad0baf8e", - "_name": "class_tor2_level3_helmet_armor_nape", + "6570fbdd74d84423df065f60": { + "_id": "6570fbdd74d84423df065f60", + "_name": "cqc_mk4a_level2_soft_armor_left_arm", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "class_tor2_level3_helmet_armor_nape", - "ShortName": "class_tor2_level3_helmet_armor_nape", - "Description": "class_tor2_level3_helmet_armor_nape", + "Name": "cqc_mk4a_level2_soft_armor_left_arm", + "ShortName": "cqc_mk4a_level2_soft_armor_left_arm", + "Description": "cqc_mk4a_level2_soft_armor_left_arm", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -315412,7 +315221,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "path": "assets/content/items/equipment/armor_plates/shoulder_l.bundle", "rcid": "" }, "UsePrefab": { @@ -315432,7 +315241,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 126, + "RepairCost": 59, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -315464,8 +315273,213 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 27, - "MaxDurability": 27, + "Durability": 12, + "MaxDurability": 12, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftUpperArm" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657333232cc8dfad2c0a3d97": { + "_id": "657333232cc8dfad2c0a3d97", + "_name": "cqc_mk4a_p_level3_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "cqc_mk4a_p_level3_soft_armor_back", + "ShortName": "cqc_mk4a_p_level3_soft_armor_back", + "Description": "cqc_mk4a_p_level3_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 36, + "MaxDurability": 36, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657bbad7a1c61ee0c3036323": { + "_id": "657bbad7a1c61ee0c3036323", + "_name": "galvion_caiman_level3_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "galvion_caiman_level3_helmet_armor_top", + "ShortName": "galvion_caiman_level3_helmet_armor_top", + "Description": "galvion_caiman_level3_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 133, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 30, + "MaxDurability": 30, "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -315475,13 +315489,217 @@ "RicochetParams": { "x": 0.9, "y": 0.5, - "z": 70 + "z": 75 }, "DeafStrength": "None", "BluntThroughput": 0.1548, "ArmorMaterial": "Combined", "BlindnessProtection": 0, "ArmorType": "Heavy", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657326b08c1cc6dcd9098b5e": { + "_id": "657326b08c1cc6dcd9098b5e", + "_name": "gjel_level3_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "gjel_level3_soft_armor_right_side", + "ShortName": "gjel_level3_soft_armor_right_side", + "Description": "gjel_level3_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 88, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 14, + "MaxDurability": 14, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657baeaacfcf63c951052db3": { + "_id": "657baeaacfcf63c951052db3", + "_name": "fort_kiver_m_level3_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "fort_kiver_m_level3_helmet_armor_nape", + "ShortName": "fort_kiver_m_level3_helmet_armor_nape", + "Description": "fort_kiver_m_level3_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 120, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 21, + "MaxDurability": 21, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.218, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", "armorColliders": [ "BackHead" ], @@ -315498,6 +315716,108 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "65703fe46a912c8b5c03468b": { + "_id": "65703fe46a912c8b5c03468b", + "_name": "paca_level2_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "paca_level2_soft_armor_left_side", + "ShortName": "paca_level2_soft_armor_left_side", + "Description": "paca_level2_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 48, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.35, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "65732df4d0acf75aea06c87b": { "_id": "65732df4d0acf75aea06c87b", "_name": "defender2_level3_soft_armor_back", @@ -315601,108 +315921,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657bbb31b30eca9763051183": { - "_id": "657bbb31b30eca9763051183", - "_name": "galvion_caiman_level3_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "galvion_caiman_level3_helmet_armor_nape", - "ShortName": "galvion_caiman_level3_helmet_armor_nape", - "Description": "galvion_caiman_level3_helmet_armor_nape", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 133, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 30, - "MaxDurability": 30, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1548, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "6570f30b0921c914bf07964c": { "_id": "6570f30b0921c914bf07964c", "_name": "interceptor_level2_soft_armor_front", @@ -315806,6 +316024,108 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "657bbb31b30eca9763051183": { + "_id": "657bbb31b30eca9763051183", + "_name": "galvion_caiman_level3_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "galvion_caiman_level3_helmet_armor_nape", + "ShortName": "galvion_caiman_level3_helmet_armor_nape", + "Description": "galvion_caiman_level3_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 133, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 30, + "MaxDurability": 30, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1548, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "6575c342efc786cd9101a5e5": { "_id": "6575c342efc786cd9101a5e5", "_name": "iotv_gen4_m_level3_soft_armor_front", @@ -316113,15 +316433,322 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6575c3b3dc9932aed601c5f4": { - "_id": "6575c3b3dc9932aed601c5f4", - "_name": "iotv_gen4_a_level3_soft_armor_front", + "6575ce6f16c2762fba005806": { + "_id": "6575ce6f16c2762fba005806", + "_name": "6b43_6a_level3_soft_armor_collar", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "iotv_gen4_a_level3_soft_armor_front", - "ShortName": "iotv_gen4_a_level3_soft_armor_front", - "Description": "iotv_gen4_a_level3_soft_armor_front", + "Name": "6b43_6a_level3_soft_armor_collar", + "ShortName": "6b43_6a_level3_soft_armor_collar", + "Description": "6b43_6a_level3_soft_armor_collar", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/collar.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 32, + "MaxDurability": 32, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "NeckFront", + "NeckBack" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6573337f2cc8dfad2c0a3da7": { + "_id": "6573337f2cc8dfad2c0a3da7", + "_name": "cqc_mk4a_p_level3_soft_armor_right_arm", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "cqc_mk4a_level2_soft_armor_right_arm", + "ShortName": "cqc_mk4a_level2_soft_armor_right_arm", + "Description": "cqc_mk4a_level2_soft_armor_right_arm", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/shoulder_r.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 12, + "MaxDurability": 12, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightUpperArm" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657bae18b7e9ca9a02045c0a": { + "_id": "657bae18b7e9ca9a02045c0a", + "_name": "fort_kiver_m_level3_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "fort_kiver_m_level3_helmet_armor_top", + "ShortName": "fort_kiver_m_level3_helmet_armor_top", + "Description": "fort_kiver_m_level3_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 120, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 21, + "MaxDurability": 21, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.218, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575c2adefc786cd9101a5d9": { + "_id": "6575c2adefc786cd9101a5d9", + "_name": "iotv_gen4_f_level3_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "iotv_gen4_f_level3_soft_armor_front", + "ShortName": "iotv_gen4_f_level3_soft_armor_front", + "Description": "iotv_gen4_f_level3_soft_armor_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -316216,6 +316843,825 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "657bbcffbbd440df880b2dd5": { + "_id": "657bbcffbbd440df880b2dd5", + "_name": "nfm_hjelm_level3_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "nfm_hjelm_level3_helmet_armor_nape", + "ShortName": "nfm_hjelm_level3_helmet_armor_nape", + "Description": "nfm_hjelm_level3_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 111, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 39, + "MaxDurability": 39, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1448, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570fc41d3eefd23430f8c83": { + "_id": "6570fc41d3eefd23430f8c83", + "_name": "cqc_mk4a_level2_soft_armor_right_arm", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "cqc_mk4a_level2_soft_armor_right_arm", + "ShortName": "cqc_mk4a_level2_soft_armor_right_arm", + "Description": "cqc_mk4a_level2_soft_armor_right_arm", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/shoulder_r.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 59, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 12, + "MaxDurability": 12, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightUpperArm" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570f3bb0b4ae5847f060db2": { + "_id": "6570f3bb0b4ae5847f060db2", + "_name": "interceptor_level2_soft_armor_right", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "interceptor_level2_soft_armor_right", + "ShortName": "interceptor_level2_soft_armor_right", + "Description": "interceptor_level2_soft_armor_right", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 50, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 18, + "MaxDurability": 18, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575c3cdc6700bd6b40e8a90": { + "_id": "6575c3cdc6700bd6b40e8a90", + "_name": "iotv_gen4_a_level3_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "iotv_gen4_a_level3_soft_armor_left_side", + "ShortName": "iotv_gen4_a_level3_soft_armor_left_side", + "Description": "iotv_gen4_a_level3_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 20, + "MaxDurability": 20, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657ba50c23918923cb0df56c": { + "_id": "657ba50c23918923cb0df56c", + "_name": "kolpak_1s_4ml_level2_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "kolpak_1s_4ml_level2_helmet_armor_top", + "ShortName": "kolpak_1s_4ml_level2_helmet_armor_top", + "Description": "kolpak_1s_4ml_level2_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 24, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 15, + "MaxDurability": 15, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.2, + "y": 0.01, + "z": 90 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2376, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575c3ec52b7f8c76a05ee39": { + "_id": "6575c3ec52b7f8c76a05ee39", + "_name": "iotv_gen4_a_level3_soft_armor_collar", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "iotv_gen4_a_level3_soft_armor_collar", + "ShortName": "iotv_gen4_a_level3_soft_armor_collar", + "Description": "iotv_gen4_a_level3_soft_armor_collar", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/collar.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 20, + "MaxDurability": 20, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "NeckFront", + "NeckBack" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575c373dc9932aed601c5ec": { + "_id": "6575c373dc9932aed601c5ec", + "_name": "iotv_gen4_m_level3_soft_armor_collar", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "iotv_gen4_m_level3_soft_armor_collar", + "ShortName": "iotv_gen4_m_level3_soft_armor_collar", + "Description": "iotv_gen4_m_level3_soft_armor_collar", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/collar.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 20, + "MaxDurability": 20, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "NeckFront", + "NeckBack" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65733312ca0ca984940a2d53": { + "_id": "65733312ca0ca984940a2d53", + "_name": "cqc_mk4a_p_level3_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "cqc_mk4a_p_level3_soft_armor_front", + "ShortName": "cqc_mk4a_p_level3_soft_armor_front", + "Description": "cqc_mk4a_p_level3_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 36, + "MaxDurability": 36, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "6570e5674cc0d2ab1e05edbb": { "_id": "6570e5674cc0d2ab1e05edbb", "_name": "arsarma_a18_level2_soft_armor_left", @@ -316420,117 +317866,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657326b08c1cc6dcd9098b5e": { - "_id": "657326b08c1cc6dcd9098b5e", - "_name": "gjel_level3_soft_armor_right_side", + "657ba5439ba22f103e08139f": { + "_id": "657ba5439ba22f103e08139f", + "_name": "kolpak_1s_4ml_level2_helmet_armor_nape", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "gjel_level3_soft_armor_right_side", - "ShortName": "gjel_level3_soft_armor_right_side", - "Description": "gjel_level3_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 88, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 14, - "MaxDurability": 14, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657baeaacfcf63c951052db3": { - "_id": "657baeaacfcf63c951052db3", - "_name": "fort_kiver_m_level3_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "fort_kiver_m_level3_helmet_armor_nape", - "ShortName": "fort_kiver_m_level3_helmet_armor_nape", - "Description": "fort_kiver_m_level3_helmet_armor_nape", + "Name": "kolpak_1s_4ml_level2_helmet_armor_nape", + "ShortName": "kolpak_1s_4ml_level2_helmet_armor_nape", + "Description": "kolpak_1s_4ml_level2_helmet_armor_nape", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -316558,1644 +317902,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 120, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 21, - "MaxDurability": 21, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.218, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65703fe46a912c8b5c03468b": { - "_id": "65703fe46a912c8b5c03468b", - "_name": "paca_level2_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "paca_level2_soft_armor_left_side", - "ShortName": "paca_level2_soft_armor_left_side", - "Description": "paca_level2_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 48, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.35, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657333232cc8dfad2c0a3d97": { - "_id": "657333232cc8dfad2c0a3d97", - "_name": "cqc_mk4a_p_level3_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "cqc_mk4a_p_level3_soft_armor_back", - "ShortName": "cqc_mk4a_p_level3_soft_armor_back", - "Description": "cqc_mk4a_p_level3_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 36, - "MaxDurability": 36, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657bbad7a1c61ee0c3036323": { - "_id": "657bbad7a1c61ee0c3036323", - "_name": "galvion_caiman_level3_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "galvion_caiman_level3_helmet_armor_top", - "ShortName": "galvion_caiman_level3_helmet_armor_top", - "Description": "galvion_caiman_level3_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 133, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 30, - "MaxDurability": 30, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1548, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575c3ec52b7f8c76a05ee39": { - "_id": "6575c3ec52b7f8c76a05ee39", - "_name": "iotv_gen4_a_level3_soft_armor_collar", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "iotv_gen4_a_level3_soft_armor_collar", - "ShortName": "iotv_gen4_a_level3_soft_armor_collar", - "Description": "iotv_gen4_a_level3_soft_armor_collar", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/collar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 20, - "MaxDurability": 20, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575c373dc9932aed601c5ec": { - "_id": "6575c373dc9932aed601c5ec", - "_name": "iotv_gen4_m_level3_soft_armor_collar", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "iotv_gen4_m_level3_soft_armor_collar", - "ShortName": "iotv_gen4_m_level3_soft_armor_collar", - "Description": "iotv_gen4_m_level3_soft_armor_collar", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/collar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 20, - "MaxDurability": 20, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657f8b43f92cd718b70154fb": { - "_id": "657f8b43f92cd718b70154fb", - "_name": "msa_tc2002_level4_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "msa_tc2002_level4_helmet_armor_nape", - "ShortName": "msa_tc2002_level4_helmet_armor_nape", - "Description": "msa_tc2002_level4_helmet_armor_nape", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 253, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 16, - "MaxDurability": 16, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1548, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65732e05d0acf75aea06c87f": { - "_id": "65732e05d0acf75aea06c87f", - "_name": "defender2_level3_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "defender2_level3_soft_armor_left_side", - "ShortName": "defender2_level3_soft_armor_left_side", - "Description": "defender2_level3_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 88, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 22, - "MaxDurability": 22, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575c2adefc786cd9101a5d9": { - "_id": "6575c2adefc786cd9101a5d9", - "_name": "iotv_gen4_f_level3_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "iotv_gen4_f_level3_soft_armor_front", - "ShortName": "iotv_gen4_f_level3_soft_armor_front", - "Description": "iotv_gen4_f_level3_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 52, - "MaxDurability": 52, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657bae18b7e9ca9a02045c0a": { - "_id": "657bae18b7e9ca9a02045c0a", - "_name": "fort_kiver_m_level3_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "fort_kiver_m_level3_helmet_armor_top", - "ShortName": "fort_kiver_m_level3_helmet_armor_top", - "Description": "fort_kiver_m_level3_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 120, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 21, - "MaxDurability": 21, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.218, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657bbcffbbd440df880b2dd5": { - "_id": "657bbcffbbd440df880b2dd5", - "_name": "nfm_hjelm_level3_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "nfm_hjelm_level3_helmet_armor_nape", - "ShortName": "nfm_hjelm_level3_helmet_armor_nape", - "Description": "nfm_hjelm_level3_helmet_armor_nape", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 111, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 39, - "MaxDurability": 39, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1448, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65733312ca0ca984940a2d53": { - "_id": "65733312ca0ca984940a2d53", - "_name": "cqc_mk4a_p_level3_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "cqc_mk4a_p_level3_soft_armor_front", - "ShortName": "cqc_mk4a_p_level3_soft_armor_front", - "Description": "cqc_mk4a_p_level3_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 36, - "MaxDurability": 36, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657040374e67e8ec7a0d261c": { - "_id": "657040374e67e8ec7a0d261c", - "_name": "paca_level2_soft_armor_right_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "paca_level2_soft_armor_right_side", - "ShortName": "paca_level2_soft_armor_right_side", - "Description": "paca_level2_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 48, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.35, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575c30352b7f8c76a05ee31": { - "_id": "6575c30352b7f8c76a05ee31", - "_name": "iotv_gen4_f_level3_soft_armor_right_arm", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "iotv_gen4_f_level3_soft_armor_right_arm", - "ShortName": "iotv_gen4_f_level3_soft_armor_right_arm", - "Description": "iotv_gen4_f_level3_soft_armor_right_arm", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/shoulder_r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 24, - "MaxDurability": 24, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightUpperArm" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575c2cd52b7f8c76a05ee29": { - "_id": "6575c2cd52b7f8c76a05ee29", - "_name": "iotv_gen4_f_level3_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "iotv_gen4_f_level3_soft_armor_left_side", - "ShortName": "iotv_gen4_f_level3_soft_armor_left_side", - "Description": "iotv_gen4_f_level3_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 20, - "MaxDurability": 20, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65731b716e709cddd001ec47": { - "_id": "65731b716e709cddd001ec47", - "_name": "korundvm_level2_soft_armor_groin_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "korundvm_level2_soft_armor_groin_front", - "ShortName": "korundvm_level2_soft_armor_groin_front", - "Description": "korundvm_level2_soft_armor_groin_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 20, - "MaxDurability": 20, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657babc6f58ba5a6250107a2": { - "_id": "657babc6f58ba5a6250107a2", - "_name": "ratnik_6b47_level3_helmet_armor_ears", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ratnik_6b47_level3_helmet_armor_ears", - "ShortName": "ratnik_6b47_level3_helmet_armor_ears", - "Description": "ratnik_6b47_level3_helmet_armor_ears", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 120, + "RepairCost": 24, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -318229,16 +317936,16 @@ "BlocksFaceCover": false, "Durability": 15, "MaxDurability": 15, - "armorClass": "3", + "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", "HasHinge": false, "MaterialType": "Helmet", "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 75 + "x": 0.2, + "y": 0.01, + "z": 90 }, "DeafStrength": "None", "BluntThroughput": 0.2376, @@ -318246,7 +317953,7 @@ "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "Ears" + "BackHead" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -318364,6 +318071,2048 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "657baecbc6f689d3a205b863": { + "_id": "657baecbc6f689d3a205b863", + "_name": "fort_kiver_m_level3_helmet_armor_ears", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "fort_kiver_m_level3_helmet_armor_ears", + "ShortName": "fort_kiver_m_level3_helmet_armor_ears", + "Description": "fort_kiver_m_level3_helmet_armor_ears", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 120, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 21, + "MaxDurability": 21, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.218, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65731b716e709cddd001ec47": { + "_id": "65731b716e709cddd001ec47", + "_name": "korundvm_level2_soft_armor_groin_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "korundvm_level2_soft_armor_groin_front", + "ShortName": "korundvm_level2_soft_armor_groin_front", + "Description": "korundvm_level2_soft_armor_groin_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/groin.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 20, + "MaxDurability": 20, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65731b6b6042b0f210020ef6": { + "_id": "65731b6b6042b0f210020ef6", + "_name": "korundvm_level2_soft_armor_groin_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "korundvm_level2_soft_armor_groin_back", + "ShortName": "korundvm_level2_soft_armor_groin_back", + "Description": "korundvm_level2_soft_armor_groin_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/groin.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 20, + "MaxDurability": 20, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "PelvisBack" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657049d23425b19bbc0502f0": { + "_id": "657049d23425b19bbc0502f0", + "_name": "kora_kulon_level3_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "kora_kulon_level3_soft_armor_back", + "ShortName": "kora_kulon_level3_soft_armor_back", + "Description": "kora_kulon_level3_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 64, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 64, + "MaxDurability": 64, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": -1, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570305d93b7ea9c330f4ced": { + "_id": "6570305d93b7ea9c330f4ced", + "_name": "module3m_level2_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "module3m_level2_soft_armor_left_side", + "ShortName": "module3m_level2_soft_armor_left_side", + "Description": "module3m_level2_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 43, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 8, + "MaxDurability": 8, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.37, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657bab6ec6f689d3a205b85f": { + "_id": "657bab6ec6f689d3a205b85f", + "_name": "ratnik_6b47_level3_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ratnik_6b47_level3_helmet_armor_nape", + "ShortName": "ratnik_6b47_level3_helmet_armor_nape", + "Description": "ratnik_6b47_level3_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 120, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 15, + "MaxDurability": 15, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2376, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6576434820cc24d17102b148": { + "_id": "6576434820cc24d17102b148", + "_name": "zhuk6_level3_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "zhuk6_level3_soft_armor_left_side", + "ShortName": "zhuk6_level3_soft_armor_left_side", + "Description": "zhuk6_level3_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 107, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 15, + "MaxDurability": 15, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6572eb3b04ee6483ef03988a": { + "_id": "6572eb3b04ee6483ef03988a", + "_name": "strandhogg_level2_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "strandhogg_level2_soft_armor_right_side", + "ShortName": "strandhogg_level2_soft_armor_right_side", + "Description": "strandhogg_level2_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 61, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 9, + "MaxDurability": 9, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575c390efc786cd9101a5e9": { + "_id": "6575c390efc786cd9101a5e9", + "_name": "iotv_gen4_m_level3_soft_armor_groin_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "iotv_gen4_m_level3_soft_armor_groin_back", + "ShortName": "iotv_gen4_m_level3_soft_armor_groin_back", + "Description": "iotv_gen4_m_level3_soft_armor_groin_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/groin.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 14, + "MaxDurability": 14, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "PelvisBack" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657f8f10f4c82973640b2350": { + "_id": "657f8f10f4c82973640b2350", + "_name": "ops_core_fastMT_level4_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "ops_core_fastMT_level4_helmet_armor_nape", + "ShortName": "ops_core_fastMT_level4_helmet_armor_nape", + "Description": "ops_core_fastMT_level4_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 276, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 24, + "MaxDurability": 24, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1431, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657326a28c1cc6dcd9098b5a": { + "_id": "657326a28c1cc6dcd9098b5a", + "_name": "gjel_level3_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "gjel_level3_soft_armor_left_side", + "ShortName": "gjel_level3_soft_armor_left_side", + "Description": "gjel_level3_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 88, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 14, + "MaxDurability": 14, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6572f1edea457732140ce875": { + "_id": "6572f1edea457732140ce875", + "_name": "rbav_af_level2_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "rbav_af_level2_soft_armor_right_side", + "ShortName": "rbav_af_level2_soft_armor_right_side", + "Description": "rbav_af_level2_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 61, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 9, + "MaxDurability": 9, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65731b46cea9255e2102360a": { + "_id": "65731b46cea9255e2102360a", + "_name": "korundvm_level2_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "korundvm_level2_soft_armor_front", + "ShortName": "korundvm_level2_soft_armor_front", + "Description": "korundvm_level2_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65705c777260e1139e091408": { + "_id": "65705c777260e1139e091408", + "_name": "kirasaN_level2_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "kirasaN_level2_soft_armor_left_side", + "ShortName": "kirasaN_level2_soft_armor_left_side", + "Description": "kirasaN_level2_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 52, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 12, + "MaxDurability": 12, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575dd64945bf78edd04c438": { + "_id": "6575dd64945bf78edd04c438", + "_name": "redut_m_level3_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "redut_m_level3_soft_armor_left_side", + "ShortName": "redut_m_level3_soft_armor_left_side", + "Description": "redut_m_level3_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 24, + "MaxDurability": 24, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575dd769d3a0ddf660b904b": { + "_id": "6575dd769d3a0ddf660b904b", + "_name": "redut_m_level3_soft_armor_collar", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "redut_m_level3_soft_armor_collar", + "ShortName": "redut_m_level3_soft_armor_collar", + "Description": "redut_m_level3_soft_armor_collar", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/collar.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 16, + "MaxDurability": 16, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "NeckFront" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657f92acada5fadd1f07a57e": { + "_id": "657f92acada5fadd1f07a57e", + "_name": "zsh_1_2m_level4_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "zsh_1_2m_level4_helmet_armor_nape", + "ShortName": "zsh_1_2m_level4_helmet_armor_nape", + "Description": "zsh_1_2m_level4_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 134, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 21, + "MaxDurability": 21, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1548, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657ba85ecfcf63c951052da7": { + "_id": "657ba85ecfcf63c951052da7", + "_name": "firefighter_shpm_level2_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "firefighter_shpm_level2_helmet_armor_top", + "ShortName": "firefighter_shpm_level2_helmet_armor_top", + "Description": "firefighter_shpm_level2_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 21, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 24, + "MaxDurability": 24, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.2, + "y": 0.01, + "z": 65 + }, + "DeafStrength": "None", + "BluntThroughput": 0.225, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657f9605f4c82973640b2358": { + "_id": "657f9605f4c82973640b2358", + "_name": "highcom_striker_achhc_level4_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "highcom_striker_achhc_level4_helmet_armor_nape", + "ShortName": "highcom_striker_achhc_level4_helmet_armor_nape", + "Description": "highcom_striker_achhc_level4_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 135, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 18, + "MaxDurability": 18, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1548, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6572eb0e55beba16bc04079f": { + "_id": "6572eb0e55beba16bc04079f", + "_name": "strandhogg_level2_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "strandhogg_level2_soft_armor_front", + "ShortName": "strandhogg_level2_soft_armor_front", + "Description": "strandhogg_level2_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 61, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 36, + "MaxDurability": 36, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "6573334aca0ca984940a2d5b": { "_id": "6573334aca0ca984940a2d5b", "_name": "cqc_mk4a_p_level3_soft_armor_collar", @@ -318467,108 +320216,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657bbefeb30eca9763051189": { - "_id": "657bbefeb30eca9763051189", - "_name": "lshz5_vulkan5_level6_helmet_armor_ears", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "lshz5_vulkan5_level6_helmet_armor_ears", - "ShortName": "lshz5_vulkan5_level6_helmet_armor_ears", - "Description": "lshz5_vulkan5_level6_helmet_armor_ears", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 494, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 33, - "MaxDurability": 33, - "armorClass": "6", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 50 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1314, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "657bbe73a1c61ee0c303632b": { "_id": "657bbe73a1c61ee0c303632b", "_name": "lshz5_vulkan5_level6_helmet_armor_top", @@ -318671,6 +320318,108 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "657bbefeb30eca9763051189": { + "_id": "657bbefeb30eca9763051189", + "_name": "lshz5_vulkan5_level6_helmet_armor_ears", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "lshz5_vulkan5_level6_helmet_armor_ears", + "ShortName": "lshz5_vulkan5_level6_helmet_armor_ears", + "Description": "lshz5_vulkan5_level6_helmet_armor_ears", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 494, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 33, + "MaxDurability": 33, + "armorClass": "6", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 50 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1314, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "6572e54873c0eabb700109a8": { "_id": "6572e54873c0eabb700109a8", "_name": "thorcrv_level3_soft_armor_right_side", @@ -319385,15 +321134,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657ba5439ba22f103e08139f": { - "_id": "657ba5439ba22f103e08139f", - "_name": "kolpak_1s_4ml_level2_helmet_armor_nape", + "6572eb865b5eac12f10a03ee": { + "_id": "6572eb865b5eac12f10a03ee", + "_name": "strandhogg_level2_soft_armor_groin_front", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "kolpak_1s_4ml_level2_helmet_armor_nape", - "ShortName": "kolpak_1s_4ml_level2_helmet_armor_nape", - "Description": "kolpak_1s_4ml_level2_helmet_armor_nape", + "Name": "strandhogg_level2_soft_armor_groin_front", + "ShortName": "strandhogg_level2_soft_armor_groin_front", + "Description": "strandhogg_level2_soft_armor_groin_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -319401,619 +321150,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 24, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.2, - "y": 0.01, - "z": 90 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2376, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570305d93b7ea9c330f4ced": { - "_id": "6570305d93b7ea9c330f4ced", - "_name": "module3m_level2_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "module3m_level2_soft_armor_left_side", - "ShortName": "module3m_level2_soft_armor_left_side", - "Description": "module3m_level2_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 43, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 8, - "MaxDurability": 8, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.37, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657f8ec5f4c82973640b234c": { - "_id": "657f8ec5f4c82973640b234c", - "_name": "ops_core_fastMT_level4_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ops_core_fastMT_level4_helmet_armor_top", - "ShortName": "ops_core_fastMT_level4_helmet_armor_top", - "Description": "ops_core_fastMT_level4_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 276, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 24, - "MaxDurability": 24, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1431, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657326a28c1cc6dcd9098b5a": { - "_id": "657326a28c1cc6dcd9098b5a", - "_name": "gjel_level3_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "gjel_level3_soft_armor_left_side", - "ShortName": "gjel_level3_soft_armor_left_side", - "Description": "gjel_level3_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 88, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 14, - "MaxDurability": 14, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657bab6ec6f689d3a205b85f": { - "_id": "657bab6ec6f689d3a205b85f", - "_name": "ratnik_6b47_level3_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ratnik_6b47_level3_helmet_armor_nape", - "ShortName": "ratnik_6b47_level3_helmet_armor_nape", - "Description": "ratnik_6b47_level3_helmet_armor_nape", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 120, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2376, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6576434820cc24d17102b148": { - "_id": "6576434820cc24d17102b148", - "_name": "zhuk6_level3_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "zhuk6_level3_soft_armor_left_side", - "ShortName": "zhuk6_level3_soft_armor_left_side", - "Description": "zhuk6_level3_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 107, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6572eb3b04ee6483ef03988a": { - "_id": "6572eb3b04ee6483ef03988a", - "_name": "strandhogg_level2_soft_armor_right_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "strandhogg_level2_soft_armor_right_side", - "ShortName": "strandhogg_level2_soft_armor_right_side", - "Description": "strandhogg_level2_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "path": "assets/content/items/equipment/armor_plates/groin.bundle", "rcid": "" }, "UsePrefab": { @@ -320065,8 +321202,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 9, - "MaxDurability": 9, + "Durability": 18, + "MaxDurability": 18, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -320084,7 +321221,7 @@ "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "RightSideChestDown" + "RibcageLow" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -320099,15 +321236,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6575dd64945bf78edd04c438": { - "_id": "6575dd64945bf78edd04c438", - "_name": "redut_m_level3_soft_armor_left_side", + "65702f87722744627e05cdb8": { + "_id": "65702f87722744627e05cdb8", + "_name": "module3m_level2_soft_armor_front", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "redut_m_level3_soft_armor_left_side", - "ShortName": "redut_m_level3_soft_armor_left_side", - "Description": "redut_m_level3_soft_armor_left_side", + "Name": "module3m_level2_soft_armor_front", + "ShortName": "module3m_level2_soft_armor_front", + "Description": "module3m_level2_soft_armor_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -320115,7 +321252,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", "rcid": "" }, "UsePrefab": { @@ -320135,7 +321272,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 85, + "RepairCost": 43, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -320167,9 +321304,9 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 24, - "MaxDurability": 24, - "armorClass": "3", + "Durability": 32, + "MaxDurability": 32, + "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", @@ -320181,12 +321318,13 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.36, + "BluntThroughput": 0.37, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "LeftSideChestDown" + "RibcageUp", + "RibcageLow" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -320201,15 +321339,322 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6575c390efc786cd9101a5e9": { - "_id": "6575c390efc786cd9101a5e9", - "_name": "iotv_gen4_m_level3_soft_armor_groin_back", + "657f8b94f92cd718b70154ff": { + "_id": "657f8b94f92cd718b70154ff", + "_name": "msa_tc2002_level4_helmet_armor_top", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "iotv_gen4_m_level3_soft_armor_groin_back", - "ShortName": "iotv_gen4_m_level3_soft_armor_groin_back", - "Description": "iotv_gen4_m_level3_soft_armor_groin_back", + "Name": "msa_tc2002_level4_helmet_armor_top", + "ShortName": "msa_tc2002_level4_helmet_armor_top", + "Description": "msa_tc2002_level4_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 253, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 16, + "MaxDurability": 16, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1548, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65731b666e709cddd001ec43": { + "_id": "65731b666e709cddd001ec43", + "_name": "korundvm_level2_soft_armor_collar", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "korundvm_level2_soft_armor_collar", + "ShortName": "korundvm_level2_soft_armor_collar", + "Description": "korundvm_level2_soft_armor_collar", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/collar.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "NeckFront", + "NeckBack" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657ba096e57570b7f80a17fb": { + "_id": "657ba096e57570b7f80a17fb", + "_name": "shlemofon_tsh_4ml_level1_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "shlemofon_tsh_4ml_level1_helmet_armor_top", + "ShortName": "shlemofon_tsh_4ml_level1_helmet_armor_top", + "Description": "shlemofon_tsh_4ml_level1_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 9, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 35, + "MaxDurability": 35, + "armorClass": "1", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2576, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575d5a616c2762fba005820": { + "_id": "6575d5a616c2762fba005820", + "_name": "thorintcar_level3_soft_armor_groin_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "thorintcar_level3_soft_armor_groin_front", + "ShortName": "thorintcar_level3_soft_armor_groin_front", + "Description": "thorintcar_level3_soft_armor_groin_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -320269,8 +321714,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 14, - "MaxDurability": 14, + "Durability": 34, + "MaxDurability": 34, "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -320288,1233 +321733,7 @@ "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "PelvisBack" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657f8f10f4c82973640b2350": { - "_id": "657f8f10f4c82973640b2350", - "_name": "ops_core_fastMT_level4_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "ops_core_fastMT_level4_helmet_armor_nape", - "ShortName": "ops_core_fastMT_level4_helmet_armor_nape", - "Description": "ops_core_fastMT_level4_helmet_armor_nape", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 276, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 24, - "MaxDurability": 24, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1431, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575dd769d3a0ddf660b904b": { - "_id": "6575dd769d3a0ddf660b904b", - "_name": "redut_m_level3_soft_armor_collar", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "redut_m_level3_soft_armor_collar", - "ShortName": "redut_m_level3_soft_armor_collar", - "Description": "redut_m_level3_soft_armor_collar", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/collar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 16, - "MaxDurability": 16, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "NeckFront" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65731b46cea9255e2102360a": { - "_id": "65731b46cea9255e2102360a", - "_name": "korundvm_level2_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "korundvm_level2_soft_armor_front", - "ShortName": "korundvm_level2_soft_armor_front", - "Description": "korundvm_level2_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65705c777260e1139e091408": { - "_id": "65705c777260e1139e091408", - "_name": "kirasaN_level2_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "kirasaN_level2_soft_armor_left_side", - "ShortName": "kirasaN_level2_soft_armor_left_side", - "Description": "kirasaN_level2_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 52, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 12, - "MaxDurability": 12, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657f92acada5fadd1f07a57e": { - "_id": "657f92acada5fadd1f07a57e", - "_name": "zsh_1_2m_level4_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "zsh_1_2m_level4_helmet_armor_nape", - "ShortName": "zsh_1_2m_level4_helmet_armor_nape", - "Description": "zsh_1_2m_level4_helmet_armor_nape", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 134, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 21, - "MaxDurability": 21, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1548, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657ba85ecfcf63c951052da7": { - "_id": "657ba85ecfcf63c951052da7", - "_name": "firefighter_shpm_level2_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "firefighter_shpm_level2_helmet_armor_top", - "ShortName": "firefighter_shpm_level2_helmet_armor_top", - "Description": "firefighter_shpm_level2_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 21, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 24, - "MaxDurability": 24, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.2, - "y": 0.01, - "z": 65 - }, - "DeafStrength": "None", - "BluntThroughput": 0.225, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657f9605f4c82973640b2358": { - "_id": "657f9605f4c82973640b2358", - "_name": "highcom_striker_achhc_level4_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "highcom_striker_achhc_level4_helmet_armor_nape", - "ShortName": "highcom_striker_achhc_level4_helmet_armor_nape", - "Description": "highcom_striker_achhc_level4_helmet_armor_nape", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 135, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 18, - "MaxDurability": 18, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1548, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6572eb0e55beba16bc04079f": { - "_id": "6572eb0e55beba16bc04079f", - "_name": "strandhogg_level2_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "strandhogg_level2_soft_armor_front", - "ShortName": "strandhogg_level2_soft_armor_front", - "Description": "strandhogg_level2_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 61, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 36, - "MaxDurability": 36, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6572fca39a866b80ab07eb65": { - "_id": "6572fca39a866b80ab07eb65", - "_name": "mmac_level2_soft_armor_right_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "mmac_level2_soft_armor_right_side", - "ShortName": "mmac_level2_soft_armor_right_side", - "Description": "mmac_level2_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 61, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575c2e4efc786cd9101a5dd": { - "_id": "6575c2e4efc786cd9101a5dd", - "_name": "iotv_gen4_f_level3_soft_armor_collar", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "iotv_gen4_f_level3_soft_armor_collar", - "ShortName": "iotv_gen4_f_level3_soft_armor_collar", - "Description": "iotv_gen4_f_level3_soft_armor_collar", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/collar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 20, - "MaxDurability": 20, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575da07945bf78edd04c433": { - "_id": "6575da07945bf78edd04c433", - "_name": "redut_t_level3_soft_armor_left_arm", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "redut_t_level3_soft_armor_left_arm", - "ShortName": "redut_t_level3_soft_armor_left_arm", - "Description": "redut_t_level3_soft_armor_left_arm", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/shoulder_l.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 30, - "MaxDurability": 30, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftUpperArm" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575d5b316c2762fba005824": { - "_id": "6575d5b316c2762fba005824", - "_name": "thorintcar_level3_soft_armor_left_arm", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "thorintcar_level3_soft_armor_left_arm", - "ShortName": "thorintcar_level3_soft_armor_left_arm", - "Description": "thorintcar_level3_soft_armor_left_arm", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/shoulder_l.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 24, - "MaxDurability": 24, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftUpperArm" + "Pelvis" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -321835,15 +322054,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6572fc989a866b80ab07eb61": { - "_id": "6572fc989a866b80ab07eb61", - "_name": "mmac_level2_soft_armor_left_side", + "6575dd800546f8b1de093df6": { + "_id": "6575dd800546f8b1de093df6", + "_name": "redut_m_level3_soft_armor_groin_front", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "mmac_level2_soft_armor_left_side", - "ShortName": "mmac_level2_soft_armor_left_side", - "Description": "mmac_level2_soft_armor_left_side", + "Name": "redut_m_level3_soft_armor_groin_front", + "ShortName": "redut_m_level3_soft_armor_groin_front", + "Description": "redut_m_level3_soft_armor_groin_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -321851,7 +322070,517 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "path": "assets/content/items/equipment/armor_plates/groin.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 30, + "MaxDurability": 30, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657bb79ba1c61ee0c303631a": { + "_id": "657bb79ba1c61ee0c303631a", + "_name": "sferaS_SSSh94_level3_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "sferaS_SSSh94_level3_helmet_armor_nape", + "ShortName": "sferaS_SSSh94_level3_helmet_armor_nape", + "Description": "sferaS_SSSh94_level3_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 62, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 45, + "MaxDurability": 45, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.7, + "y": 0.2, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1726, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657f92e7f4c82973640b2354": { + "_id": "657f92e7f4c82973640b2354", + "_name": "zsh_1_2m_level4_helmet_armor_ears", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "zsh_1_2m_level4_helmet_armor_ears", + "ShortName": "zsh_1_2m_level4_helmet_armor_ears", + "Description": "zsh_1_2m_level4_helmet_armor_ears", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 134, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 21, + "MaxDurability": 21, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1548, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575c385dc9932aed601c5f0": { + "_id": "6575c385dc9932aed601c5f0", + "_name": "iotv_gen4_m_level3_soft_armor_groin_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "iotv_gen4_m_level3_soft_armor_groin_front", + "ShortName": "iotv_gen4_m_level3_soft_armor_groin_front", + "Description": "iotv_gen4_m_level3_soft_armor_groin_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/groin.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 22, + "MaxDurability": 22, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657f9c78ada5fadd1f07a58d": { + "_id": "657f9c78ada5fadd1f07a58d", + "_name": "msa_gallet_tc800_level4_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "msa_gallet_tc800_level4_helmet_armor_top", + "ShortName": "msa_gallet_tc800_level4_helmet_armor_top", + "Description": "msa_gallet_tc800_level4_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 121, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 18, + "MaxDurability": 18, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1548, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6572fca39a866b80ab07eb65": { + "_id": "6572fca39a866b80ab07eb65", + "_name": "mmac_level2_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "mmac_level2_soft_armor_right_side", + "ShortName": "mmac_level2_soft_armor_right_side", + "Description": "mmac_level2_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", "rcid": "" }, "UsePrefab": { @@ -321922,7 +322651,7 @@ "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "LeftSideChestDown" + "RightSideChestDown" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -321937,15 +322666,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657ba50c23918923cb0df56c": { - "_id": "657ba50c23918923cb0df56c", - "_name": "kolpak_1s_4ml_level2_helmet_armor_top", + "6575c2e4efc786cd9101a5dd": { + "_id": "6575c2e4efc786cd9101a5dd", + "_name": "iotv_gen4_f_level3_soft_armor_collar", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "kolpak_1s_4ml_level2_helmet_armor_top", - "ShortName": "kolpak_1s_4ml_level2_helmet_armor_top", - "Description": "kolpak_1s_4ml_level2_helmet_armor_top", + "Name": "iotv_gen4_f_level3_soft_armor_collar", + "ShortName": "iotv_gen4_f_level3_soft_armor_collar", + "Description": "iotv_gen4_f_level3_soft_armor_collar", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -321953,109 +322682,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 24, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.2, - "y": 0.01, - "z": 90 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2376, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575dd6e9d3a0ddf660b9047": { - "_id": "6575dd6e9d3a0ddf660b9047", - "_name": "redut_m_level3_soft_armor_right_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "redut_m_level3_soft_armor_right_side", - "ShortName": "redut_m_level3_soft_armor_right_side", - "Description": "redut_m_level3_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "path": "assets/content/items/equipment/armor_plates/collar.bundle", "rcid": "" }, "UsePrefab": { @@ -322107,8 +322734,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 24, - "MaxDurability": 24, + "Durability": 20, + "MaxDurability": 20, "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -322126,7 +322753,8 @@ "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "RightSideChestDown" + "NeckFront", + "NeckBack" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -322141,525 +322769,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657bbed0aab96fccee08be96": { - "_id": "657bbed0aab96fccee08be96", - "_name": "lshz5_vulkan5_level6_helmet_armor_nape", + "6575dd94945bf78edd04c43c": { + "_id": "6575dd94945bf78edd04c43c", + "_name": "redut_m_level3_soft_armor_groin_back", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "lshz5_vulkan5_level6_helmet_armor_nape", - "ShortName": "lshz5_vulkan5_level6_helmet_armor_nape", - "Description": "lshz5_vulkan5_level6_helmet_armor_nape", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 494, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 33, - "MaxDurability": 33, - "armorClass": "6", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 50 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1314, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575d9e7945bf78edd04c42f": { - "_id": "6575d9e7945bf78edd04c42f", - "_name": "redut_t_level3_soft_armor_groin_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "redut_t_level3_soft_armor_groin_front", - "ShortName": "redut_t_level3_soft_armor_groin_front", - "Description": "redut_t_level3_soft_armor_groin_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 42, - "MaxDurability": 42, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570460471369562b300ce9f": { - "_id": "6570460471369562b300ce9f", - "_name": "untar_level3_soft_armor_right_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "untar_level3_soft_armor_right_side", - "ShortName": "untar_level3_soft_armor_right_side", - "Description": "untar_level3_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 76, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.24, - "ArmorMaterial": "Aluminium", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657f9a94ada5fadd1f07a589": { - "_id": "657f9a94ada5fadd1f07a589", - "_name": "diamond_age_bastion_level4_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "diamond_age_bastion_level4_helmet_armor_nape", - "ShortName": "diamond_age_bastion_level4_helmet_armor_nape", - "Description": "diamond_age_bastion_level4_helmet_armor_nape", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 256, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 24, - "MaxDurability": 24, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1314, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657f8a8d7db258e5600fe33d": { - "_id": "657f8a8d7db258e5600fe33d", - "_name": "msa_tc2001_level4_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "msa_tc2001_level4_helmet_armor_top", - "ShortName": "msa_tc2001_level4_helmet_armor_top", - "Description": "msa_tc2001_level4_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 268, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1548, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575d9f816c2762fba00588d": { - "_id": "6575d9f816c2762fba00588d", - "_name": "redut_t_level3_soft_armor_groin_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "redut_t_level3_soft_armor_groin_back", - "ShortName": "redut_t_level3_soft_armor_groin_back", - "Description": "redut_t_level3_soft_armor_groin_back", + "Name": "redut_m_level3_soft_armor_groin_back", + "ShortName": "redut_m_level3_soft_armor_groin_back", + "Description": "redut_m_level3_soft_armor_groin_back", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -322753,15 +322871,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6575c34bc6700bd6b40e8a84": { - "_id": "6575c34bc6700bd6b40e8a84", - "_name": "iotv_gen4_m_level3_soft_armor_back", + "6575da07945bf78edd04c433": { + "_id": "6575da07945bf78edd04c433", + "_name": "redut_t_level3_soft_armor_left_arm", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "iotv_gen4_m_level3_soft_armor_back", - "ShortName": "iotv_gen4_m_level3_soft_armor_back", - "Description": "iotv_gen4_m_level3_soft_armor_back", + "Name": "redut_t_level3_soft_armor_left_arm", + "ShortName": "redut_t_level3_soft_armor_left_arm", + "Description": "redut_t_level3_soft_armor_left_arm", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -322769,7 +322887,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "path": "assets/content/items/equipment/armor_plates/shoulder_l.bundle", "rcid": "" }, "UsePrefab": { @@ -322821,8 +322939,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 52, - "MaxDurability": 52, + "Durability": 30, + "MaxDurability": 30, "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -322840,8 +322958,7 @@ "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "SpineTop", - "SpineDown" + "LeftUpperArm" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -322856,15 +322973,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6575c2f7efc786cd9101a5e1": { - "_id": "6575c2f7efc786cd9101a5e1", - "_name": "iotv_gen4_f_level3_soft_armor_left_arm", + "6575d5b316c2762fba005824": { + "_id": "6575d5b316c2762fba005824", + "_name": "thorintcar_level3_soft_armor_left_arm", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "iotv_gen4_f_level3_soft_armor_left_arm", - "ShortName": "iotv_gen4_f_level3_soft_armor_left_arm", - "Description": "iotv_gen4_f_level3_soft_armor_left_arm", + "Name": "thorintcar_level3_soft_armor_left_arm", + "ShortName": "thorintcar_level3_soft_armor_left_arm", + "Description": "thorintcar_level3_soft_armor_left_arm", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -322958,15 +323075,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6575d9c40546f8b1de093dee": { - "_id": "6575d9c40546f8b1de093dee", - "_name": "redut_t_level3_soft_armor_left_side", + "6575d9cf0546f8b1de093df2": { + "_id": "6575d9cf0546f8b1de093df2", + "_name": "redut_t_level3_soft_armor_right_side", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "redut_t_level3_soft_armor_left_side", - "ShortName": "redut_t_level3_soft_armor_left_side", - "Description": "redut_t_level3_soft_armor_left_side", + "Name": "redut_t_level3_soft_armor_right_side", + "ShortName": "redut_t_level3_soft_armor_right_side", + "Description": "redut_t_level3_soft_armor_right_side", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -322974,7 +323091,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", "rcid": "" }, "UsePrefab": { @@ -323045,7 +323162,7 @@ "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "LeftSideChestDown" + "RightSideChestDown" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -323060,15 +323177,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657f9a55c6679fefb3051e19": { - "_id": "657f9a55c6679fefb3051e19", - "_name": "diamond_age_bastion_level4_helmet_armor_top", + "6575e72660703324250610c7": { + "_id": "6575e72660703324250610c7", + "_name": "slick_black_level3_soft_armor_back", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "diamond_age_bastion_level4_helmet_armor_top", - "ShortName": "diamond_age_bastion_level4_helmet_armor_top", - "Description": "diamond_age_bastion_level4_helmet_armor_top", + "Name": "slick_black_level3_soft_armor_back", + "ShortName": "slick_black_level3_soft_armor_back", + "Description": "slick_black_level3_soft_armor_back", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -323076,7 +323193,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", "rcid": "" }, "UsePrefab": { @@ -323096,7 +323213,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 256, + "RepairCost": 88, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -323128,128 +323245,230 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 24, - "MaxDurability": 24, - "armorClass": "4", + "Durability": 50, + "MaxDurability": 50, + "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", "HasHinge": false, - "MaterialType": "Helmet", + "MaterialType": "BodyArmor", "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1314, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657ba2eef58ba5a625010798": { - "_id": "657ba2eef58ba5a625010798", - "_name": "tac_kek_fast_mt_level1_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "tac_kek_fast_mt_level1_helmet_armor_top", - "ShortName": "tac_kek_fast_mt_level1_helmet_armor_top", - "Description": "tac_kek_fast_mt_level1_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 19, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 24, - "MaxDurability": 24, - "armorClass": "1", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 40 + "x": 0, + "y": 0, + "z": 80 }, "DeafStrength": "None", "BluntThroughput": 0.33, - "ArmorMaterial": "UHMWPE", + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6572eb1b04ee6483ef039882": { + "_id": "6572eb1b04ee6483ef039882", + "_name": "strandhogg_level2_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "strandhogg_level2_soft_armor_back", + "ShortName": "strandhogg_level2_soft_armor_back", + "Description": "strandhogg_level2_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 61, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 36, + "MaxDurability": 36, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657643732bc38ef78e076477": { + "_id": "657643732bc38ef78e076477", + "_name": "zhuk6_level3_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "zhuk6_level3_soft_armor_right_side", + "ShortName": "zhuk6_level3_soft_armor_right_side", + "Description": "zhuk6_level3_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 107, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 15, + "MaxDurability": 15, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "ParietalHead" + "RightSideChestDown" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -323264,15 +323483,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657ba18923918923cb0df568": { - "_id": "657ba18923918923cb0df568", - "_name": "shlemofon_tsh_4ml_level1_helmet_armor_ears", + "657ba8eab7e9ca9a02045bfd": { + "_id": "657ba8eab7e9ca9a02045bfd", + "_name": "firefighter_shpm_level2_helmet_armor_ears", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "shlemofon_tsh_4ml_level1_helmet_armor_ears", - "ShortName": "shlemofon_tsh_4ml_level1_helmet_armor_ears", - "Description": "shlemofon_tsh_4ml_level1_helmet_armor_ears", + "Name": "firefighter_shpm_level2_helmet_armor_ears", + "ShortName": "firefighter_shpm_level2_helmet_armor_ears", + "Description": "firefighter_shpm_level2_helmet_armor_ears", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -323300,7 +323519,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 9, + "RepairCost": 21, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -323332,21 +323551,21 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 35, - "MaxDurability": 35, - "armorClass": "1", + "Durability": 24, + "MaxDurability": 24, + "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", "HasHinge": false, "MaterialType": "Helmet", "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 75 + "x": 0.2, + "y": 0.01, + "z": 65 }, "DeafStrength": "None", - "BluntThroughput": 0.2576, + "BluntThroughput": 0.225, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", @@ -323366,6 +323585,108 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "6575c2d852b7f8c76a05ee2d": { + "_id": "6575c2d852b7f8c76a05ee2d", + "_name": "iotv_gen4_f_level3_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "iotv_gen4_f_level3_soft_armor_right_side", + "ShortName": "iotv_gen4_f_level3_soft_armor_right_side", + "Description": "iotv_gen4_f_level3_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 20, + "MaxDurability": 20, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "65703472c9030b928a0a8a78": { "_id": "65703472c9030b928a0a8a78", "_name": "module3m_level2_soft_armor_right_side", @@ -323570,6 +323891,108 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "657f8b43f92cd718b70154fb": { + "_id": "657f8b43f92cd718b70154fb", + "_name": "msa_tc2002_level4_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "msa_tc2002_level4_helmet_armor_nape", + "ShortName": "msa_tc2002_level4_helmet_armor_nape", + "Description": "msa_tc2002_level4_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 253, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 16, + "MaxDurability": 16, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1548, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "657baaf0b7e9ca9a02045c02": { "_id": "657baaf0b7e9ca9a02045c02", "_name": "ratnik_6b47_level3_helmet_armor_top", @@ -324285,15 +324708,117 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "65731b6b6042b0f210020ef6": { - "_id": "65731b6b6042b0f210020ef6", - "_name": "korundvm_level2_soft_armor_groin_back", + "6572e06819b4b511af012f8d": { + "_id": "6572e06819b4b511af012f8d", + "_name": "drd_level3_soft_armor_right_side", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "korundvm_level2_soft_armor_groin_back", - "ShortName": "korundvm_level2_soft_armor_groin_back", - "Description": "korundvm_level2_soft_armor_groin_back", + "Name": "drd_level3_soft_armor_right_side", + "ShortName": "drd_level3_soft_armor_right_side", + "Description": "drd_level3_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 88, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 12, + "MaxDurability": 12, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6572f1f7ea457732140ce879": { + "_id": "6572f1f7ea457732140ce879", + "_name": "rbav_af_level2_soft_armor_groin_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "rbav_af_level2_soft_armor_groin_front", + "ShortName": "rbav_af_level2_soft_armor_groin_front", + "Description": "rbav_af_level2_soft_armor_groin_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -324321,7 +324846,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 58, + "RepairCost": 61, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -324353,8 +324878,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 20, - "MaxDurability": 20, + "Durability": 18, + "MaxDurability": 18, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -324367,12 +324892,12 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.31, + "BluntThroughput": 0.33, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "PelvisBack" + "Pelvis" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -324387,15 +324912,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657643732bc38ef78e076477": { - "_id": "657643732bc38ef78e076477", - "_name": "zhuk6_level3_soft_armor_right_side", + "65705cea4916448ae1050897": { + "_id": "65705cea4916448ae1050897", + "_name": "kirasaN_level2_soft_armor_collar", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "zhuk6_level3_soft_armor_right_side", - "ShortName": "zhuk6_level3_soft_armor_right_side", - "Description": "zhuk6_level3_soft_armor_right_side", + "Name": "kirasaN_level2_soft_armor_collar", + "ShortName": "kirasaN_level2_soft_armor_collar", + "Description": "kirasaN_level2_soft_armor_collar", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -324403,7 +324928,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "path": "assets/content/items/equipment/armor_plates/collar.bundle", "rcid": "" }, "UsePrefab": { @@ -324423,7 +324948,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 107, + "RepairCost": 52, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -324455,9 +324980,9 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, - "armorClass": "3", + "Durability": 14, + "MaxDurability": 14, + "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", @@ -324469,12 +324994,13 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.31, + "BluntThroughput": 0.33, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "RightSideChestDown" + "NeckFront", + "NeckBack" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -324489,15 +325015,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657ba8eab7e9ca9a02045bfd": { - "_id": "657ba8eab7e9ca9a02045bfd", - "_name": "firefighter_shpm_level2_helmet_armor_ears", + "6575d9d8945bf78edd04c42b": { + "_id": "6575d9d8945bf78edd04c42b", + "_name": "redut_t_level3_soft_armor_collar", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "firefighter_shpm_level2_helmet_armor_ears", - "ShortName": "firefighter_shpm_level2_helmet_armor_ears", - "Description": "firefighter_shpm_level2_helmet_armor_ears", + "Name": "redut_t_level3_soft_armor_collar", + "ShortName": "redut_t_level3_soft_armor_collar", + "Description": "redut_t_level3_soft_armor_collar", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -324505,109 +325031,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 21, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 24, - "MaxDurability": 24, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.2, - "y": 0.01, - "z": 65 - }, - "DeafStrength": "None", - "BluntThroughput": 0.225, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575c2d852b7f8c76a05ee2d": { - "_id": "6575c2d852b7f8c76a05ee2d", - "_name": "iotv_gen4_f_level3_soft_armor_right_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "iotv_gen4_f_level3_soft_armor_right_side", - "ShortName": "iotv_gen4_f_level3_soft_armor_right_side", - "Description": "iotv_gen4_f_level3_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "path": "assets/content/items/equipment/armor_plates/collar.bundle", "rcid": "" }, "UsePrefab": { @@ -324678,7 +325102,7 @@ "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ - "RightSideChestDown" + "NeckFront" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -324693,15 +325117,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "65705cb314f2ed6d7d0b773c": { - "_id": "65705cb314f2ed6d7d0b773c", - "_name": "kirasaN_level2_soft_armor_right_side", + "6572f1e10103b4a3270332df": { + "_id": "6572f1e10103b4a3270332df", + "_name": "rbav_af_level2_soft_armor_left_side", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "kirasaN_level2_soft_armor_right_side", - "ShortName": "kirasaN_level2_soft_armor_right_side", - "Description": "kirasaN_level2_soft_armor_right_side", + "Name": "rbav_af_level2_soft_armor_left_side", + "ShortName": "rbav_af_level2_soft_armor_left_side", + "Description": "rbav_af_level2_soft_armor_left_side", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -324709,7 +325133,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", "rcid": "" }, "UsePrefab": { @@ -324729,7 +325153,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 52, + "RepairCost": 61, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -324761,8 +325185,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 12, - "MaxDurability": 12, + "Durability": 9, + "MaxDurability": 9, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -324779,6 +325203,108 @@ "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65731b60ff6dc44a7d068c4a": { + "_id": "65731b60ff6dc44a7d068c4a", + "_name": "korundvm_level2_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "korundvm_level2_soft_armor_right_side", + "ShortName": "korundvm_level2_soft_armor_right_side", + "Description": "korundvm_level2_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 15, + "MaxDurability": 15, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", "armorColliders": [ "RightSideChestDown" ], @@ -324795,6 +325321,2151 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "6575d56b16c2762fba005818": { + "_id": "6575d56b16c2762fba005818", + "_name": "thorintcar_level3_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "thorintcar_level3_soft_armor_back", + "ShortName": "thorintcar_level3_soft_armor_back", + "Description": "thorintcar_level3_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 70, + "MaxDurability": 70, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575d57a16c2762fba00581c": { + "_id": "6575d57a16c2762fba00581c", + "_name": "thorintcar_level3_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "thorintcar_level3_soft_armor_left_side", + "ShortName": "thorintcar_level3_soft_armor_left_side", + "Description": "thorintcar_level3_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 30, + "MaxDurability": 30, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657f9897f4c82973640b235e": { + "_id": "657f9897f4c82973640b235e", + "_name": "crye_precision_airframe_level4_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "crye_precision_airframe_level4_helmet_armor_top", + "ShortName": "crye_precision_airframe_level4_helmet_armor_top", + "Description": "crye_precision_airframe_level4_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 244, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 24, + "MaxDurability": 24, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1314, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657f8a8d7db258e5600fe33d": { + "_id": "657f8a8d7db258e5600fe33d", + "_name": "msa_tc2001_level4_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "msa_tc2001_level4_helmet_armor_top", + "ShortName": "msa_tc2001_level4_helmet_armor_top", + "Description": "msa_tc2001_level4_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 268, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 15, + "MaxDurability": 15, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1548, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575d9f816c2762fba00588d": { + "_id": "6575d9f816c2762fba00588d", + "_name": "redut_t_level3_soft_armor_groin_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "redut_t_level3_soft_armor_groin_back", + "ShortName": "redut_t_level3_soft_armor_groin_back", + "Description": "redut_t_level3_soft_armor_groin_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/groin.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 18, + "MaxDurability": 18, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "PelvisBack" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575c34bc6700bd6b40e8a84": { + "_id": "6575c34bc6700bd6b40e8a84", + "_name": "iotv_gen4_m_level3_soft_armor_back", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "iotv_gen4_m_level3_soft_armor_back", + "ShortName": "iotv_gen4_m_level3_soft_armor_back", + "Description": "iotv_gen4_m_level3_soft_armor_back", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 52, + "MaxDurability": 52, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575c2f7efc786cd9101a5e1": { + "_id": "6575c2f7efc786cd9101a5e1", + "_name": "iotv_gen4_f_level3_soft_armor_left_arm", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "iotv_gen4_f_level3_soft_armor_left_arm", + "ShortName": "iotv_gen4_f_level3_soft_armor_left_arm", + "Description": "iotv_gen4_f_level3_soft_armor_left_arm", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/shoulder_l.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 24, + "MaxDurability": 24, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftUpperArm" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575d9c40546f8b1de093dee": { + "_id": "6575d9c40546f8b1de093dee", + "_name": "redut_t_level3_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "redut_t_level3_soft_armor_left_side", + "ShortName": "redut_t_level3_soft_armor_left_side", + "Description": "redut_t_level3_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 28, + "MaxDurability": 28, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657f9a55c6679fefb3051e19": { + "_id": "657f9a55c6679fefb3051e19", + "_name": "diamond_age_bastion_level4_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "diamond_age_bastion_level4_helmet_armor_top", + "ShortName": "diamond_age_bastion_level4_helmet_armor_top", + "Description": "diamond_age_bastion_level4_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 256, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 24, + "MaxDurability": 24, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1314, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657ba2eef58ba5a625010798": { + "_id": "657ba2eef58ba5a625010798", + "_name": "tac_kek_fast_mt_level1_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "tac_kek_fast_mt_level1_helmet_armor_top", + "ShortName": "tac_kek_fast_mt_level1_helmet_armor_top", + "Description": "tac_kek_fast_mt_level1_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 19, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 24, + "MaxDurability": 24, + "armorClass": "1", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 40 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570f3890b4ae5847f060dad": { + "_id": "6570f3890b4ae5847f060dad", + "_name": "interceptor_level2_soft_armor_left", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "interceptor_level2_soft_armor_left", + "ShortName": "interceptor_level2_soft_armor_left", + "Description": "interceptor_level2_soft_armor_left", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 50, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 18, + "MaxDurability": 18, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657ba18923918923cb0df568": { + "_id": "657ba18923918923cb0df568", + "_name": "shlemofon_tsh_4ml_level1_helmet_armor_ears", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "shlemofon_tsh_4ml_level1_helmet_armor_ears", + "ShortName": "shlemofon_tsh_4ml_level1_helmet_armor_ears", + "Description": "shlemofon_tsh_4ml_level1_helmet_armor_ears", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 9, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 35, + "MaxDurability": 35, + "armorClass": "1", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 75 + }, + "DeafStrength": "None", + "BluntThroughput": 0.2576, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "Ears" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657ba34b9ba22f103e08139b": { + "_id": "657ba34b9ba22f103e08139b", + "_name": "tac_kek_fast_mt_level1_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "tac_kek_fast_mt_level1_helmet_armor_nape", + "ShortName": "tac_kek_fast_mt_level1_helmet_armor_nape", + "Description": "tac_kek_fast_mt_level1_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 19, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 24, + "MaxDurability": 24, + "armorClass": "1", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.5, + "z": 40 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6571133d22996eaf11088200": { + "_id": "6571133d22996eaf11088200", + "_name": "maska1sha_level4_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "maska1sha_level4_helmet_armor_top", + "ShortName": "maska1sha_level4_helmet_armor_top", + "Description": "maska1sha_level4_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 168, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 36, + "MaxDurability": 36, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1726, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575d598b15fef3dd4051678": { + "_id": "6575d598b15fef3dd4051678", + "_name": "thorintcar_level3_soft_armor_collar", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "thorintcar_level3_soft_armor_collar", + "ShortName": "thorintcar_level3_soft_armor_collar", + "Description": "thorintcar_level3_soft_armor_collar", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/collar.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 28, + "MaxDurability": 28, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "NeckFront", + "NeckBack" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657bb70486c7f9ef7a009936": { + "_id": "657bb70486c7f9ef7a009936", + "_name": "sferaS_SSSh94_level3_helmet_armor_top", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "sferaS_SSSh94_level3_helmet_armor_top", + "ShortName": "sferaS_SSSh94_level3_helmet_armor_top", + "Description": "sferaS_SSSh94_level3_helmet_armor_top", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 62, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 45, + "MaxDurability": 45, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.7, + "y": 0.2, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1726, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "ParietalHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575e71760703324250610c3": { + "_id": "6575e71760703324250610c3", + "_name": "slick_black_level3_soft_armor_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "slick_black_level3_soft_armor_front", + "ShortName": "slick_black_level3_soft_armor_front", + "Description": "slick_black_level3_soft_armor_front", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 88, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 50, + "MaxDurability": 50, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6571138e818110db4600aa71": { + "_id": "6571138e818110db4600aa71", + "_name": "maska1sha_level4_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "maska1sha_level4_helmet_armor_nape", + "ShortName": "maska1sha_level4_helmet_armor_nape", + "Description": "maska1sha_level4_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 168, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 36, + "MaxDurability": 36, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1726, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6572e53c73c0eabb700109a4": { + "_id": "6572e53c73c0eabb700109a4", + "_name": "thorcrv_level3_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "thorcrv_level3_soft_armor_left_side", + "ShortName": "thorcrv_level3_soft_armor_left_side", + "Description": "thorcrv_level3_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 88, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 10, + "MaxDurability": 10, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575d589b15fef3dd4051674": { + "_id": "6575d589b15fef3dd4051674", + "_name": "thorintcar_level3_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "thorintcar_level3_soft_armor_right_side", + "ShortName": "thorintcar_level3_soft_armor_right_side", + "Description": "thorintcar_level3_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 30, + "MaxDurability": 30, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "65731b576e709cddd001ec3f": { + "_id": "65731b576e709cddd001ec3f", + "_name": "korundvm_level2_soft_armor_left_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "korundvm_level2_soft_armor_left_side", + "ShortName": "korundvm_level2_soft_armor_left_side", + "Description": "korundvm_level2_soft_armor_left_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 58, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 15, + "MaxDurability": 15, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.31, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "657112fa818110db4600aa6b": { "_id": "657112fa818110db4600aa6b", "_name": "maska1sha_level4_helmet_armor_ears", @@ -324897,6 +327568,108 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "65705cb314f2ed6d7d0b773c": { + "_id": "65705cb314f2ed6d7d0b773c", + "_name": "kirasaN_level2_soft_armor_right_side", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "kirasaN_level2_soft_armor_right_side", + "ShortName": "kirasaN_level2_soft_armor_right_side", + "Description": "kirasaN_level2_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 52, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 12, + "MaxDurability": 12, + "armorClass": "2", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.33, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "6570495b45d573133d0d6adb": { "_id": "6570495b45d573133d0d6adb", "_name": "kora_kulon_level3_soft_armor_front", @@ -325000,108 +327773,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "65731b576e709cddd001ec3f": { - "_id": "65731b576e709cddd001ec3f", - "_name": "korundvm_level2_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "korundvm_level2_soft_armor_left_side", - "ShortName": "korundvm_level2_soft_armor_left_side", - "Description": "korundvm_level2_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "6575ea7c60703324250610e2": { "_id": "6575ea7c60703324250610e2", "_name": "6b13_killa_level3_soft_armor_groin_front", @@ -325615,425 +328286,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "657049d23425b19bbc0502f0": { - "_id": "657049d23425b19bbc0502f0", - "_name": "kora_kulon_level3_soft_armor_back", + "6572fc989a866b80ab07eb61": { + "_id": "6572fc989a866b80ab07eb61", + "_name": "mmac_level2_soft_armor_left_side", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "kora_kulon_level3_soft_armor_back", - "ShortName": "kora_kulon_level3_soft_armor_back", - "Description": "kora_kulon_level3_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 64, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 64, - "MaxDurability": 64, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": -1, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6572e06819b4b511af012f8d": { - "_id": "6572e06819b4b511af012f8d", - "_name": "drd_level3_soft_armor_right_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "drd_level3_soft_armor_right_side", - "ShortName": "drd_level3_soft_armor_right_side", - "Description": "drd_level3_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 88, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 12, - "MaxDurability": 12, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575d9d8945bf78edd04c42b": { - "_id": "6575d9d8945bf78edd04c42b", - "_name": "redut_t_level3_soft_armor_collar", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "redut_t_level3_soft_armor_collar", - "ShortName": "redut_t_level3_soft_armor_collar", - "Description": "redut_t_level3_soft_armor_collar", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/collar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 20, - "MaxDurability": 20, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "NeckFront" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65705cea4916448ae1050897": { - "_id": "65705cea4916448ae1050897", - "_name": "kirasaN_level2_soft_armor_collar", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "kirasaN_level2_soft_armor_collar", - "ShortName": "kirasaN_level2_soft_armor_collar", - "Description": "kirasaN_level2_soft_armor_collar", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/collar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 52, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 14, - "MaxDurability": 14, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6572f1e10103b4a3270332df": { - "_id": "6572f1e10103b4a3270332df", - "_name": "rbav_af_level2_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "rbav_af_level2_soft_armor_left_side", - "ShortName": "rbav_af_level2_soft_armor_left_side", - "Description": "rbav_af_level2_soft_armor_left_side", + "Name": "mmac_level2_soft_armor_left_side", + "ShortName": "mmac_level2_soft_armor_left_side", + "Description": "mmac_level2_soft_armor_left_side", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -326093,8 +328354,8 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 9, - "MaxDurability": 9, + "Durability": 10, + "MaxDurability": 10, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": false, @@ -326127,15 +328388,219 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6572f1f7ea457732140ce879": { - "_id": "6572f1f7ea457732140ce879", - "_name": "rbav_af_level2_soft_armor_groin_front", + "6575dd6e9d3a0ddf660b9047": { + "_id": "6575dd6e9d3a0ddf660b9047", + "_name": "redut_m_level3_soft_armor_right_side", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "rbav_af_level2_soft_armor_groin_front", - "ShortName": "rbav_af_level2_soft_armor_groin_front", - "Description": "rbav_af_level2_soft_armor_groin_front", + "Name": "redut_m_level3_soft_armor_right_side", + "ShortName": "redut_m_level3_soft_armor_right_side", + "Description": "redut_m_level3_soft_armor_right_side", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 85, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 24, + "MaxDurability": 24, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.36, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "657bbed0aab96fccee08be96": { + "_id": "657bbed0aab96fccee08be96", + "_name": "lshz5_vulkan5_level6_helmet_armor_nape", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "lshz5_vulkan5_level6_helmet_armor_nape", + "ShortName": "lshz5_vulkan5_level6_helmet_armor_nape", + "Description": "lshz5_vulkan5_level6_helmet_armor_nape", + "Weight": 0, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 0, + "HideEntrails": false, + "RepairCost": 494, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 33, + "MaxDurability": 33, + "armorClass": "6", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 50 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1314, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [ + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6575d9e7945bf78edd04c42f": { + "_id": "6575d9e7945bf78edd04c42f", + "_name": "redut_t_level3_soft_armor_groin_front", + "_parent": "65649eb40bf0ed77b8044453", + "_type": "Item", + "_props": { + "Name": "redut_t_level3_soft_armor_groin_front", + "ShortName": "redut_t_level3_soft_armor_groin_front", + "Description": "redut_t_level3_soft_armor_groin_front", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -326163,7 +328628,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 61, + "RepairCost": 85, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -326195,9 +328660,9 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 18, - "MaxDurability": 18, - "armorClass": "2", + "Durability": 42, + "MaxDurability": 42, + "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", @@ -326209,7 +328674,7 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.33, + "BluntThroughput": 0.36, "ArmorMaterial": "Aramid", "BlindnessProtection": 0, "ArmorType": "Light", @@ -326229,15 +328694,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "65731b60ff6dc44a7d068c4a": { - "_id": "65731b60ff6dc44a7d068c4a", - "_name": "korundvm_level2_soft_armor_right_side", + "6570460471369562b300ce9f": { + "_id": "6570460471369562b300ce9f", + "_name": "untar_level3_soft_armor_right_side", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "korundvm_level2_soft_armor_right_side", - "ShortName": "korundvm_level2_soft_armor_right_side", - "Description": "korundvm_level2_soft_armor_right_side", + "Name": "untar_level3_soft_armor_right_side", + "ShortName": "untar_level3_soft_armor_right_side", + "Description": "untar_level3_soft_armor_right_side", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -326265,7 +328730,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 58, + "RepairCost": 76, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -326297,9 +328762,9 @@ "BlocksEyewear": false, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, - "armorClass": "2", + "Durability": 10, + "MaxDurability": 10, + "armorClass": "3", "Indestructibility": 0.9, "FaceShieldComponent": false, "FaceShieldMask": "NoMask", @@ -326311,8 +328776,8 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", + "BluntThroughput": 0.24, + "ArmorMaterial": "Aluminium", "BlindnessProtection": 0, "ArmorType": "Light", "armorColliders": [ @@ -326331,15 +328796,15 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6575d56b16c2762fba005818": { - "_id": "6575d56b16c2762fba005818", - "_name": "thorintcar_level3_soft_armor_back", + "657f9a94ada5fadd1f07a589": { + "_id": "657f9a94ada5fadd1f07a589", + "_name": "diamond_age_bastion_level4_helmet_armor_nape", "_parent": "65649eb40bf0ed77b8044453", "_type": "Item", "_props": { - "Name": "thorintcar_level3_soft_armor_back", - "ShortName": "thorintcar_level3_soft_armor_back", - "Description": "thorintcar_level3_soft_armor_back", + "Name": "diamond_age_bastion_level4_helmet_armor_nape", + "ShortName": "diamond_age_bastion_level4_helmet_armor_nape", + "Description": "diamond_age_bastion_level4_helmet_armor_nape", "Weight": 0, "BackgroundColor": "default", "Width": 1, @@ -326347,7 +328812,7 @@ "StackMaxSize": 1, "ItemSound": "gear_armor", "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", + "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", "rcid": "" }, "UsePrefab": { @@ -326367,212 +328832,7 @@ "LootExperience": 0, "ExamineExperience": 0, "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 70, - "MaxDurability": 70, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575d57a16c2762fba00581c": { - "_id": "6575d57a16c2762fba00581c", - "_name": "thorintcar_level3_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "thorintcar_level3_soft_armor_left_side", - "ShortName": "thorintcar_level3_soft_armor_left_side", - "Description": "thorintcar_level3_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 30, - "MaxDurability": 30, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657f9897f4c82973640b235e": { - "_id": "657f9897f4c82973640b235e", - "_name": "crye_precision_airframe_level4_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "crye_precision_airframe_level4_helmet_armor_top", - "ShortName": "crye_precision_airframe_level4_helmet_armor_top", - "Description": "crye_precision_airframe_level4_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 244, + "RepairCost": 256, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -326615,1135 +328875,12 @@ "RicochetParams": { "x": 0.9, "y": 0.5, - "z": 75 + "z": 70 }, "DeafStrength": "None", "BluntThroughput": 0.1314, "ArmorMaterial": "Combined", "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575dd94945bf78edd04c43c": { - "_id": "6575dd94945bf78edd04c43c", - "_name": "redut_m_level3_soft_armor_groin_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "redut_m_level3_soft_armor_groin_back", - "ShortName": "redut_m_level3_soft_armor_groin_back", - "Description": "redut_m_level3_soft_armor_groin_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 18, - "MaxDurability": 18, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "PelvisBack" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575d9cf0546f8b1de093df2": { - "_id": "6575d9cf0546f8b1de093df2", - "_name": "redut_t_level3_soft_armor_right_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "redut_t_level3_soft_armor_right_side", - "ShortName": "redut_t_level3_soft_armor_right_side", - "Description": "redut_t_level3_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 28, - "MaxDurability": 28, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575e72660703324250610c7": { - "_id": "6575e72660703324250610c7", - "_name": "slick_black_level3_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "slick_black_level3_soft_armor_back", - "ShortName": "slick_black_level3_soft_armor_back", - "Description": "slick_black_level3_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 88, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 50, - "MaxDurability": 50, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6572eb1b04ee6483ef039882": { - "_id": "6572eb1b04ee6483ef039882", - "_name": "strandhogg_level2_soft_armor_back", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "strandhogg_level2_soft_armor_back", - "ShortName": "strandhogg_level2_soft_armor_back", - "Description": "strandhogg_level2_soft_armor_back", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 61, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 36, - "MaxDurability": 36, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6570f3890b4ae5847f060dad": { - "_id": "6570f3890b4ae5847f060dad", - "_name": "interceptor_level2_soft_armor_left", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "interceptor_level2_soft_armor_left", - "ShortName": "interceptor_level2_soft_armor_left", - "Description": "interceptor_level2_soft_armor_left", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 50, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 18, - "MaxDurability": 18, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6571133d22996eaf11088200": { - "_id": "6571133d22996eaf11088200", - "_name": "maska1sha_level4_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "maska1sha_level4_helmet_armor_top", - "ShortName": "maska1sha_level4_helmet_armor_top", - "Description": "maska1sha_level4_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 168, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 36, - "MaxDurability": 36, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1726, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575d598b15fef3dd4051678": { - "_id": "6575d598b15fef3dd4051678", - "_name": "thorintcar_level3_soft_armor_collar", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "thorintcar_level3_soft_armor_collar", - "ShortName": "thorintcar_level3_soft_armor_collar", - "Description": "thorintcar_level3_soft_armor_collar", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/collar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 28, - "MaxDurability": 28, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657bb70486c7f9ef7a009936": { - "_id": "657bb70486c7f9ef7a009936", - "_name": "sferaS_SSSh94_level3_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "sferaS_SSSh94_level3_helmet_armor_top", - "ShortName": "sferaS_SSSh94_level3_helmet_armor_top", - "Description": "sferaS_SSSh94_level3_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 62, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 45, - "MaxDurability": 45, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.7, - "y": 0.2, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1726, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575e71760703324250610c3": { - "_id": "6575e71760703324250610c3", - "_name": "slick_black_level3_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "slick_black_level3_soft_armor_front", - "ShortName": "slick_black_level3_soft_armor_front", - "Description": "slick_black_level3_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 88, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 50, - "MaxDurability": 50, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657baecbc6f689d3a205b863": { - "_id": "657baecbc6f689d3a205b863", - "_name": "fort_kiver_m_level3_helmet_armor_ears", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "fort_kiver_m_level3_helmet_armor_ears", - "ShortName": "fort_kiver_m_level3_helmet_armor_ears", - "Description": "fort_kiver_m_level3_helmet_armor_ears", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 120, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 21, - "MaxDurability": 21, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.218, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6571138e818110db4600aa71": { - "_id": "6571138e818110db4600aa71", - "_name": "maska1sha_level4_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "maska1sha_level4_helmet_armor_nape", - "ShortName": "maska1sha_level4_helmet_armor_nape", - "Description": "maska1sha_level4_helmet_armor_nape", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 168, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 36, - "MaxDurability": 36, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1726, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, "ArmorType": "Heavy", "armorColliders": [ "BackHead" @@ -327761,1028 +328898,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6572e53c73c0eabb700109a4": { - "_id": "6572e53c73c0eabb700109a4", - "_name": "thorcrv_level3_soft_armor_left_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "thorcrv_level3_soft_armor_left_side", - "ShortName": "thorcrv_level3_soft_armor_left_side", - "Description": "thorcrv_level3_soft_armor_left_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_left.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 88, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575d589b15fef3dd4051674": { - "_id": "6575d589b15fef3dd4051674", - "_name": "thorintcar_level3_soft_armor_right_side", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "thorintcar_level3_soft_armor_right_side", - "ShortName": "thorintcar_level3_soft_armor_right_side", - "Description": "thorintcar_level3_soft_armor_right_side", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_right.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 30, - "MaxDurability": 30, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65702f87722744627e05cdb8": { - "_id": "65702f87722744627e05cdb8", - "_name": "module3m_level2_soft_armor_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "module3m_level2_soft_armor_front", - "ShortName": "module3m_level2_soft_armor_front", - "Description": "module3m_level2_soft_armor_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/soft_armor_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 43, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 32, - "MaxDurability": 32, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.37, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65731b666e709cddd001ec43": { - "_id": "65731b666e709cddd001ec43", - "_name": "korundvm_level2_soft_armor_collar", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "korundvm_level2_soft_armor_collar", - "ShortName": "korundvm_level2_soft_armor_collar", - "Description": "korundvm_level2_soft_armor_collar", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/collar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 58, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 10, - "MaxDurability": 10, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.31, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575dd800546f8b1de093df6": { - "_id": "6575dd800546f8b1de093df6", - "_name": "redut_m_level3_soft_armor_groin_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "redut_m_level3_soft_armor_groin_front", - "ShortName": "redut_m_level3_soft_armor_groin_front", - "Description": "redut_m_level3_soft_armor_groin_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 30, - "MaxDurability": 30, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657bb79ba1c61ee0c303631a": { - "_id": "657bb79ba1c61ee0c303631a", - "_name": "sferaS_SSSh94_level3_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "sferaS_SSSh94_level3_helmet_armor_nape", - "ShortName": "sferaS_SSSh94_level3_helmet_armor_nape", - "Description": "sferaS_SSSh94_level3_helmet_armor_nape", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 62, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 45, - "MaxDurability": 45, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.7, - "y": 0.2, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1726, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657f92e7f4c82973640b2354": { - "_id": "657f92e7f4c82973640b2354", - "_name": "zsh_1_2m_level4_helmet_armor_ears", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "zsh_1_2m_level4_helmet_armor_ears", - "ShortName": "zsh_1_2m_level4_helmet_armor_ears", - "Description": "zsh_1_2m_level4_helmet_armor_ears", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_ears.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 134, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 21, - "MaxDurability": 21, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1548, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [ - "Ears" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575c385dc9932aed601c5f0": { - "_id": "6575c385dc9932aed601c5f0", - "_name": "iotv_gen4_m_level3_soft_armor_groin_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "iotv_gen4_m_level3_soft_armor_groin_front", - "ShortName": "iotv_gen4_m_level3_soft_armor_groin_front", - "Description": "iotv_gen4_m_level3_soft_armor_groin_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 22, - "MaxDurability": 22, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657f9c78ada5fadd1f07a58d": { - "_id": "657f9c78ada5fadd1f07a58d", - "_name": "msa_gallet_tc800_level4_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "msa_gallet_tc800_level4_helmet_armor_top", - "ShortName": "msa_gallet_tc800_level4_helmet_armor_top", - "Description": "msa_gallet_tc800_level4_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 121, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 18, - "MaxDurability": 18, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1548, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657ba096e57570b7f80a17fb": { - "_id": "657ba096e57570b7f80a17fb", - "_name": "shlemofon_tsh_4ml_level1_helmet_armor_top", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "shlemofon_tsh_4ml_level1_helmet_armor_top", - "ShortName": "shlemofon_tsh_4ml_level1_helmet_armor_top", - "Description": "shlemofon_tsh_4ml_level1_helmet_armor_top", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_top.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 9, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 35, - "MaxDurability": 35, - "armorClass": "1", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 75 - }, - "DeafStrength": "None", - "BluntThroughput": 0.2576, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "ParietalHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "64afdcb83efdfea28601d041": { "_id": "64afdcb83efdfea28601d041", "_name": "item_equipment_plate_sapi_6_frontback", @@ -328886,322 +329001,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "6572eb865b5eac12f10a03ee": { - "_id": "6572eb865b5eac12f10a03ee", - "_name": "strandhogg_level2_soft_armor_groin_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "strandhogg_level2_soft_armor_groin_front", - "ShortName": "strandhogg_level2_soft_armor_groin_front", - "Description": "strandhogg_level2_soft_armor_groin_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 61, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 18, - "MaxDurability": 18, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "RibcageLow" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6575d5a616c2762fba005820": { - "_id": "6575d5a616c2762fba005820", - "_name": "thorintcar_level3_soft_armor_groin_front", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "thorintcar_level3_soft_armor_groin_front", - "ShortName": "thorintcar_level3_soft_armor_groin_front", - "Description": "thorintcar_level3_soft_armor_groin_front", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/groin.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 85, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 34, - "MaxDurability": 34, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.36, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "6557458f83942d705f0c4962": { - "_id": "6557458f83942d705f0c4962", - "_name": "item_equipment_plate_SSAPI_5_side", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_SSAPI_5_side", - "ShortName": "item_equipment_plate_SSAPI_5_side", - "Description": "item_equipment_plate_SSAPI_5_side", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_esbi/item_equipment_plate_esbi_new.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 191, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 15, - "MaxDurability": 15, - "armorClass": "5", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.3, - "ArmorMaterial": "Ceramic", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_right_low", - "Plate_Granit_SSAPI_side_right_high", - "Plate_Granit_SSAPI_side_left_high", - "Plate_Granit_SSAPI_side_left_low" - ], - "speedPenaltyPercent": -0.5, - "mousePenalty": -0.5, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_esbi/item_equipment_plate_esbi_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "5448e5724bdc2ddf718b4568": { - "_id": "5448e5724bdc2ddf718b4568", - "_name": "Visors", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Node", - "_props": {} - }, "6033fa48ffd42c541047f728": { "_id": "6033fa48ffd42c541047f728", "_name": "item_equipment_headset_m32", @@ -329769,6 +329568,108 @@ }, "_proto": "544a5caa4bdc2d1a388b4568" }, + "657b2797c3dbcb01d60c35ea": { + "_id": "657b2797c3dbcb01d60c35ea", + "_name": "item_equipment_plate_korund_vm_5class_back", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_korund_vm_5class_back", + "ShortName": "item_equipment_plate_korund_vm_5class_back", + "Description": "item_equipment_plate_korund_vm_5class_back", + "Weight": 2.3, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_korund_vmk_back/item_equipment_plate_korund_vmk_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 141, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "5", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.18, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": -1, + "mousePenalty": -0.5, + "weaponErgonomicPenalty": -1, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_korund_vmk_back/item_equipment_plate_korund_vmk_back_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "64afdb577bb3bfe8fe03fd1d": { "_id": "64afdb577bb3bfe8fe03fd1d", "_name": "item_equipment_plate_SSAPI_ESBI_6_side", @@ -329977,6 +329878,110 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "5e00cdd986f7747473332240": { + "_id": "5e00cdd986f7747473332240", + "_name": "item_equipment_helmet_team_wendy_exfil_face_shield", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_team_wendy_exfil_face_shield", + "ShortName": "item_equipment_helmet_team_wendy_exfil_face_shield", + "Description": "item_equipment_helmet_team_wendy_exfil_face_shield", + "Weight": 0.8, + "BackgroundColor": "default", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/helmet_team_wendy_exfil_face_shield/item_equipment_helmet_team_wendy_exfil_face_shield_black.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 133, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c0696830db834001d23f5da", + "5c066e3a0db834001b7353f0", + "5c0558060db834001b735271", + "57235b6f24597759bf5a30f1", + "5c110624d174af029e69734c" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 45, + "MaxDurability": 45, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": true, + "FaceShieldMask": "NoMask", + "HasHinge": true, + "MaterialType": "GlassVisor", + "RicochetParams": { + "x": 0.7, + "y": 0.4, + "z": 55 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1188, + "ArmorMaterial": "Glass", + "BlindnessProtection": 0.1, + "ArmorType": "None", + "armorColliders": [ + "HeadCommon", + "Eyes", + "Jaw" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -10, + "weaponErgonomicPenalty": -4 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, "5f9949d869e2777a0e779ba5": { "_id": "5f9949d869e2777a0e779ba5", "_name": "item_equipment_armband_r2", @@ -330052,929 +330057,6 @@ }, "_proto": "5b3f3b0186f774021a2afef7" }, - "656fa99800d62bcd2e024088": { - "_id": "656fa99800d62bcd2e024088", - "_name": "item_equipment_plate_SAPI_Cult_Termite_6class_frontback", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_SAPI_Cult_Termite_6class_frontback", - "ShortName": "item_equipment_plate_SAPI_Cult_Termite_6class_frontback", - "Description": "item_equipment_plate_SAPI_Cult_Termite_6class_frontback", - "Weight": 3.85, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_new.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 615, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 65, - "MaxDurability": 65, - "armorClass": "6", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.14, - "ArmorMaterial": "Titan", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest", - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": -2, - "mousePenalty": -1.5, - "weaponErgonomicPenalty": -1, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "656efd66034e8e01c407f35c": { - "_id": "656efd66034e8e01c407f35c", - "_name": "item_equipment_plate_granit4_4class_diy_back", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_granit4_4class_diy_back", - "ShortName": "item_equipment_plate_granit4_4class_diy_back", - "Description": "item_equipment_plate_granit4_4class_diy_back", - "Weight": 4.1, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_granit_4_back/item_equipment_plate_granit_4_back_new.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 45, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 45, - "MaxDurability": 45, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.18, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_6B13_back" - ], - "speedPenaltyPercent": -2.5, - "mousePenalty": 0, - "weaponErgonomicPenalty": -0.5, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_granit_4_back/item_equipment_plate_granit_4_back_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "656fa53d94b480b8a500c0e4": { - "_id": "656fa53d94b480b8a500c0e4", - "_name": "item_equipment_plate_SAPI_TallCom_Guardian_5class_frontback", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_SAPI_TallCom_Guardian_5class_frontback", - "ShortName": "item_equipment_plate_SAPI_TallCom_Guardian_5class_frontback", - "Description": "item_equipment_plate_SAPI_TallCom_Guardian_5class_frontback", - "Weight": 3.5, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_new.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 153, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 55, - "MaxDurability": 55, - "armorClass": "5", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.18, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest", - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": -2, - "mousePenalty": -0.5, - "weaponErgonomicPenalty": -1.5, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "5ea058e01dbce517f324b3e2": { - "_id": "5ea058e01dbce517f324b3e2", - "_name": "item_equipment_helmet_tk_heavy_trooper", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_tk_heavy_trooper", - "ShortName": "item_equipment_helmet_tk_heavy_trooper", - "Description": "item_equipment_helmet_tk_heavy_trooper", - "Weight": 0.4, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_tk_heavy_trooper/item_equipment_helmet_tk_heavy_trooper.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 111, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c1a1e3f2e221602b66cc4c2", - "5bd071d786f7747e707b93a3", - "5bd0716d86f774171822ef4b", - "5bd06f5d86f77427101ad47c", - "5b432c305acfc40019478128", - "5e54f79686f7744022011103", - "5b4326435acfc433000ed01d", - "5e71f6be86f77429f2683c44", - "5b432b2f5acfc4771e1c6622", - "5b4325355acfc40019478126", - "5e54f76986f7740366043752", - "5b432b6c5acfc4001a599bf0", - "5e71fad086f77422443d4604", - "572b7fa524597762b747ce82", - "59e7715586f7742ee5789605", - "5ab8f85d86f7745cd93a1cf5", - "5a16ba61fcdbcb098008728a", - "5a16b672fcdbcb001912fa83", - "5a16b7e1fcdbcb00165aa6c9", - "5aa7e3abe5b5b000171d064d", - "5c0e66e2d174af02a96252f4", - "5e00cdd986f7747473332240" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_nvg", - "_id": "5ea061dd3df0eb08296a0b4a", - "_parent": "5ea058e01dbce517f324b3e2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0558060db834001b735271", - "5a16b8a9fcdbcb00165aa6ca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": true, - "Durability": 45, - "MaxDurability": 45, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 50 - }, - "DeafStrength": "None", - "BluntThroughput": 0.099, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0.2, - "ArmorType": "None", - "armorColliders": [ - "HeadCommon", - "ParietalHead", - "Eyes", - "Jaw", - "NeckFront" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -2, - "weaponErgonomicPenalty": -1 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5b3f3af486f774679e752c1f": { - "_id": "5b3f3af486f774679e752c1f", - "_name": "armband_blue", - "_parent": "5b3f15d486f77432d0509248", - "_type": "Item", - "_props": { - "Name": "armband_blue", - "ShortName": "armband_blue", - "Description": "armband_blue", - "Weight": 0.05, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_cloth_generic", - "Prefab": { - "path": "assets/content/items/equipment/armband/item_equipment_armband_blue.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "ArmBand", - "UnlootableFromSide": [ - "Bear", - "Usec", - "Savage" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false - } - }, - "5b3f15d486f77432d0509248": { - "_id": "5b3f15d486f77432d0509248", - "_name": "ArmBand", - "_parent": "543be5f84bdc2dd4348b456a", - "_type": "Node", - "_props": { - "Name": "Item", - "ShortName": "Item", - "Description": "Item", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false - } - }, - "657b2797c3dbcb01d60c35ea": { - "_id": "657b2797c3dbcb01d60c35ea", - "_name": "item_equipment_plate_korund_vm_5class_back", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_korund_vm_5class_back", - "ShortName": "item_equipment_plate_korund_vm_5class_back", - "Description": "item_equipment_plate_korund_vm_5class_back", - "Weight": 2.3, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_korund_vmk_back/item_equipment_plate_korund_vmk_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 141, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "5", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.18, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": -1, - "mousePenalty": -0.5, - "weaponErgonomicPenalty": -1, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_korund_vmk_back/item_equipment_plate_korund_vmk_back_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "5ea18c84ecf1982c7712d9a2": { - "_id": "5ea18c84ecf1982c7712d9a2", - "_name": "item_equipment_helmet_diamond_age_bastion_shield", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_diamond_age_bastion_shield", - "ShortName": "item_equipment_helmet_diamond_age_bastion_shield", - "Description": "item_equipment_helmet_diamond_age_bastion_shield", - "Weight": 0.99, - "BackgroundColor": "default", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_diamond_age_bastion_shield/item_equipment_helmet_diamond_age_bastion_shield.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 149, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": true, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5a16ba61fcdbcb098008728a", - "5a16b672fcdbcb001912fa83", - "5a16b7e1fcdbcb00165aa6c9", - "5aa7e3abe5b5b000171d064d", - "5c0e66e2d174af02a96252f4", - "5e00cdd986f7747473332240" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "mod_nvg", - "_id": "5ea18c84ecf1982c7712d9a4", - "_parent": "5ea18c84ecf1982c7712d9a2", - "_props": { - "filters": [ - { - "Shift": 0, - "Filter": [ - "5c0558060db834001b735271", - "5a16b8a9fcdbcb00165aa6ca" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d30c4c4bdc2db4468b457e" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "6", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.4, - "z": 50 - }, - "DeafStrength": "None", - "BluntThroughput": 0.0495, - "ArmorMaterial": "Ceramic", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [ - "ParietalHead", - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -6, - "weaponErgonomicPenalty": -5 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "657ba34b9ba22f103e08139b": { - "_id": "657ba34b9ba22f103e08139b", - "_name": "tac_kek_fast_mt_level1_helmet_armor_nape", - "_parent": "65649eb40bf0ed77b8044453", - "_type": "Item", - "_props": { - "Name": "tac_kek_fast_mt_level1_helmet_armor_nape", - "ShortName": "tac_kek_fast_mt_level1_helmet_armor_nape", - "Description": "tac_kek_fast_mt_level1_helmet_armor_nape", - "Weight": 0, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/armor_plates/helmet_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 0, - "HideEntrails": false, - "RepairCost": 19, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 24, - "MaxDurability": 24, - "armorClass": "1", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0.9, - "y": 0.5, - "z": 40 - }, - "DeafStrength": "None", - "BluntThroughput": 0.33, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [ - "BackHead" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0, - "Lower75Prefab": { - "path": "", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "656f664200d62bcd2e024077": { "_id": "656f664200d62bcd2e024077", "_name": "item_equipment_plate_korund_5class_front", @@ -331077,109 +330159,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "656fb21fa0dce000a2020f7c": { - "_id": "656fb21fa0dce000a2020f7c", - "_name": "item_equipment_plate_SAPI_NewSphereTech_4class_frontback", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_SAPI_NewSphereTech_4class_frontback", - "ShortName": "item_equipment_plate_SAPI_NewSphereTech_4class_frontback", - "Description": "item_equipment_plate_SAPI_NewSphereTech_4class_frontback", - "Weight": 2.15, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_pgd_esapi_iv_sa_medium/item_equipment_plate_pgd_esapi_iv_sa_medium.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 107, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 45, - "MaxDurability": 45, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.27, - "ArmorMaterial": "Aluminium", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest", - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": -1, - "mousePenalty": -0.5, - "weaponErgonomicPenalty": -1, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_pgd_esapi_iv_sa_medium/item_equipment_plate_pgd_esapi_iv_sa_medium_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "656fafe3498d1b7e3e071da4": { "_id": "656fafe3498d1b7e3e071da4", "_name": "item_equipment_plate_SAPI_KITECO_SCIVSA_6class_frontback", @@ -331283,6 +330262,109 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "656fb21fa0dce000a2020f7c": { + "_id": "656fb21fa0dce000a2020f7c", + "_name": "item_equipment_plate_SAPI_NewSphereTech_4class_frontback", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_SAPI_NewSphereTech_4class_frontback", + "ShortName": "item_equipment_plate_SAPI_NewSphereTech_4class_frontback", + "Description": "item_equipment_plate_SAPI_NewSphereTech_4class_frontback", + "Weight": 2.15, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_pgd_esapi_iv_sa_medium/item_equipment_plate_pgd_esapi_iv_sa_medium.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 107, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 45, + "MaxDurability": 45, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.27, + "ArmorMaterial": "Aluminium", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest", + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": -1, + "mousePenalty": -0.5, + "weaponErgonomicPenalty": -1, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_pgd_esapi_iv_sa_medium/item_equipment_plate_pgd_esapi_iv_sa_medium_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "5b432b965acfc47a8774094e": { "_id": "5b432b965acfc47a8774094e", "_name": "item_equipment_headset_gsh01", @@ -331516,6 +330598,362 @@ "BlocksFaceCover": false } }, + "656efd66034e8e01c407f35c": { + "_id": "656efd66034e8e01c407f35c", + "_name": "item_equipment_plate_granit4_4class_diy_back", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_granit4_4class_diy_back", + "ShortName": "item_equipment_plate_granit4_4class_diy_back", + "Description": "item_equipment_plate_granit4_4class_diy_back", + "Weight": 4.1, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_granit_4_back/item_equipment_plate_granit_4_back_new.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 45, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 45, + "MaxDurability": 45, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.18, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_6B13_back" + ], + "speedPenaltyPercent": -2.5, + "mousePenalty": 0, + "weaponErgonomicPenalty": -0.5, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_granit_4_back/item_equipment_plate_granit_4_back_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "656fa53d94b480b8a500c0e4": { + "_id": "656fa53d94b480b8a500c0e4", + "_name": "item_equipment_plate_SAPI_TallCom_Guardian_5class_frontback", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_SAPI_TallCom_Guardian_5class_frontback", + "ShortName": "item_equipment_plate_SAPI_TallCom_Guardian_5class_frontback", + "Description": "item_equipment_plate_SAPI_TallCom_Guardian_5class_frontback", + "Weight": 3.5, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_new.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 153, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 55, + "MaxDurability": 55, + "armorClass": "5", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.18, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest", + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": -2, + "mousePenalty": -0.5, + "weaponErgonomicPenalty": -1.5, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "5b3f3af486f774679e752c1f": { + "_id": "5b3f3af486f774679e752c1f", + "_name": "armband_blue", + "_parent": "5b3f15d486f77432d0509248", + "_type": "Item", + "_props": { + "Name": "armband_blue", + "ShortName": "armband_blue", + "Description": "armband_blue", + "Weight": 0.05, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_cloth_generic", + "Prefab": { + "path": "assets/content/items/equipment/armband/item_equipment_armband_blue.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "ArmBand", + "UnlootableFromSide": [ + "Bear", + "Usec", + "Savage" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false + } + }, + "5b3f15d486f77432d0509248": { + "_id": "5b3f15d486f77432d0509248", + "_name": "ArmBand", + "_parent": "543be5f84bdc2dd4348b456a", + "_type": "Node", + "_props": { + "Name": "Item", + "ShortName": "Item", + "Description": "Item", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false + } + }, + "65649eb40bf0ed77b8044453": { + "_id": "65649eb40bf0ed77b8044453", + "_name": "BuiltInInserts", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Node", + "_props": {} + }, "656f603f94b480b8a500c0d6": { "_id": "656f603f94b480b8a500c0d6", "_name": "item_equipment_plate_granit4_6b33_4class_front", @@ -331826,121 +331264,23 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "5f60c076f2bcbb675b00dac2": { - "_id": "5f60c076f2bcbb675b00dac2", - "_name": "item_equipment_helmet_galvion_mandible", + "5ac4c50d5acfc40019262e87": { + "_id": "5ac4c50d5acfc40019262e87", + "_name": "item_equipment_helmet_k1c_shield", "_parent": "57bef4c42459772e8d35a53b", "_type": "Item", "_props": { - "Name": "item_equipment_helmet_galvion_mandible", - "ShortName": "item_equipment_helmet_galvion_mandible", - "Description": "item_equipment_helmet_galvion_mandible", - "Weight": 1.1, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_helmet", - "Prefab": { - "path": "assets/content/items/equipment/helmet_galvion_mandible/item_equipment_helmet_galvion_mandible.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 106, - "RepairSpeed": 10, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "59e7715586f7742ee5789605" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 20, - "MaxDurability": 20, - "armorClass": "2", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "Helmet", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.198, - "ArmorMaterial": "Aramid", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [ - "Jaw" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": -2 - }, - "_proto": "5645bc214bdc2d363b8b4571" - }, - "5b46238386f7741a693bcf9c": { - "_id": "5b46238386f7741a693bcf9c", - "_name": "item_equipment_helmet_kiverm_shield", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "kiver_faceshield", - "ShortName": "kiver_faceshield", - "Description": "kiver_faceshield", - "Weight": 1.2, + "Name": "helmet_k1c_shield", + "ShortName": "helmet_k1c_shield", + "Description": "helmet_k1c_shield", + "Weight": 1, "BackgroundColor": "default", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "gear_goggles", "Prefab": { - "path": "assets/content/items/equipment/helmet_kiverm_shield/item_equipment_helmet_kiverm_shield.bundle", + "path": "assets/content/items/equipment/helmet_k1c_shield/item_equipment_helmet_k1c_shield.bundle", "rcid": "" }, "UsePrefab": { @@ -331960,7 +331300,7 @@ "LootExperience": 20, "ExamineExperience": 10, "HideEntrails": false, - "RepairCost": 128, + "RepairCost": 74, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -331992,117 +331332,13 @@ "BlocksEyewear": true, "BlocksHeadwear": false, "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": true, - "FaceShieldMask": "NoMask", - "HasHinge": true, - "MaterialType": "GlassVisor", - "RicochetParams": { - "x": 0.7, - "y": 0.4, - "z": 55 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1485, - "ArmorMaterial": "Glass", - "BlindnessProtection": 0.1, - "ArmorType": "None", - "armorColliders": [ - "HeadCommon", - "Eyes", - "Jaw" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": -3 - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "5f60bf4558eff926626a60f2": { - "_id": "5f60bf4558eff926626a60f2", - "_name": "item_equipment_helmet_galvion_fixed_arm_visor", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_galvion_fixed_arm_visor", - "ShortName": "item_equipment_helmet_galvion_fixed_arm_visor", - "Description": "item_equipment_helmet_galvion_fixed_arm_visor", - "Weight": 0.27, - "BackgroundColor": "default", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/helmet_galvion_fixed_arm_visor/item_equipment_helmet_galvion_fixed_arm_visor.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 95, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c0696830db834001d23f5da", - "5c066e3a0db834001b7353f0", - "5c0558060db834001b735271", - "57235b6f24597759bf5a30f1", - "5c110624d174af029e69734c" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": false, "Durability": 30, "MaxDurability": 30, "armorClass": "2", "Indestructibility": 0.9, "FaceShieldComponent": true, "FaceShieldMask": "NoMask", - "HasHinge": false, + "HasHinge": true, "MaterialType": "GlassVisor", "RicochetParams": { "x": 0, @@ -332110,13 +331346,14 @@ "z": 80 }, "DeafStrength": "None", - "BluntThroughput": 0.1485, + "BluntThroughput": 0.099, "ArmorMaterial": "Glass", "BlindnessProtection": 0.15, "ArmorType": "None", "armorColliders": [ "HeadCommon", - "Eyes" + "Eyes", + "Jaw" ], "armorPlateColliders": [], "speedPenaltyPercent": 0, @@ -332246,6 +331483,13 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, + "5a341c4086f77401f2541505": { + "_id": "5a341c4086f77401f2541505", + "_name": "Headwear", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Node", + "_props": {} + }, "5aa2ba71e5b5b000137b758f": { "_id": "5aa2ba71e5b5b000137b758f", "_name": "headphones_MSA", @@ -332404,12 +331648,110 @@ "BlocksFaceCover": false } }, - "65649eb40bf0ed77b8044453": { - "_id": "65649eb40bf0ed77b8044453", - "_name": "BuiltInInserts", + "6557458f83942d705f0c4962": { + "_id": "6557458f83942d705f0c4962", + "_name": "item_equipment_plate_SSAPI_5_side", "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Node", - "_props": {} + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_SSAPI_5_side", + "ShortName": "item_equipment_plate_SSAPI_5_side", + "Description": "item_equipment_plate_SSAPI_5_side", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_esbi/item_equipment_plate_esbi_new.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 191, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 15, + "MaxDurability": 15, + "armorClass": "5", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.3, + "ArmorMaterial": "Ceramic", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_right_low", + "Plate_Granit_SSAPI_side_right_high", + "Plate_Granit_SSAPI_side_left_high", + "Plate_Granit_SSAPI_side_left_low" + ], + "speedPenaltyPercent": -0.5, + "mousePenalty": -0.5, + "weaponErgonomicPenalty": 0, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_esbi/item_equipment_plate_esbi_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" }, "656fad8c498d1b7e3e071da0": { "_id": "656fad8c498d1b7e3e071da0", @@ -332514,6 +331856,800 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "656f9fa0498d1b7e3e071d98": { + "_id": "656f9fa0498d1b7e3e071d98", + "_name": "item_equipment_plate_SAPI_SPRTN_Omega_4class_frontback", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_SAPI_SPRTN_Omega_4class_frontback", + "ShortName": "item_equipment_plate_SAPI_SPRTN_Omega_4class_frontback", + "Description": "item_equipment_plate_SAPI_SPRTN_Omega_4class_frontback", + "Weight": 4.39, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_new.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 70, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 50, + "MaxDurability": 50, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.18, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest", + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": -1.5, + "mousePenalty": -0.5, + "weaponErgonomicPenalty": -0.5, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "656faf0ca0dce000a2020f77": { + "_id": "656faf0ca0dce000a2020f77", + "_name": "item_equipment_plate_SAPI_GAC_4sss2_6class_frontback", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_SAPI_GAC_4sss2_6class_frontback", + "ShortName": "item_equipment_plate_SAPI_GAC_4sss2_6class_frontback", + "Description": "item_equipment_plate_SAPI_GAC_4sss2_6class_frontback", + "Weight": 2.7, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_pgd_esapi_iv_sa_medium/item_equipment_plate_pgd_esapi_iv_sa_medium.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 569, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 50, + "MaxDurability": 50, + "armorClass": "6", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.26, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "Light", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest", + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": -1.5, + "mousePenalty": -0.5, + "weaponErgonomicPenalty": -1.5, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_pgd_esapi_iv_sa_medium/item_equipment_plate_pgd_esapi_iv_sa_medium_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "656f9d5900d62bcd2e02407c": { + "_id": "656f9d5900d62bcd2e02407c", + "_name": "item_equipment_plate_SAPI_AR500_legacy_3class_frontback", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_SAPI_AR500_legacy_3class_frontback", + "ShortName": "item_equipment_plate_SAPI_AR500_legacy_3class_frontback", + "Description": "item_equipment_plate_SAPI_AR500_legacy_3class_frontback", + "Weight": 3.85, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_new.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 37, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 45, + "MaxDurability": 45, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.18, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest", + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": -2, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "656efaf54772930db4031ff5": { + "_id": "656efaf54772930db4031ff5", + "_name": "item_equipment_plate_granit4_5class_back", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_granit4_5class_back", + "ShortName": "item_equipment_plate_granit4_5class_back", + "Description": "item_equipment_plate_granit4_5class_back", + "Weight": 3.3, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_granit_4_back/item_equipment_plate_granit_4_back_new.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 191, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 45, + "MaxDurability": 45, + "armorClass": "5", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.29, + "ArmorMaterial": "Ceramic", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_6B13_back" + ], + "speedPenaltyPercent": -1, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_granit_4_back/item_equipment_plate_granit_4_back_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "656f611f94b480b8a500c0db": { + "_id": "656f611f94b480b8a500c0db", + "_name": "item_equipment_plate_granit4_5class_front", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_granit4_5class_front", + "ShortName": "item_equipment_plate_granit4_5class_front", + "Description": "item_equipment_plate_granit4_5class_front", + "Weight": 3.05, + "BackgroundColor": "blue", + "Width": 2, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_granit_4rs/item_equipment_plate_granit_4rs_front.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 191, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 50, + "MaxDurability": 50, + "armorClass": "5", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.28, + "ArmorMaterial": "Ceramic", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Korund_chest" + ], + "speedPenaltyPercent": -2, + "mousePenalty": -1.5, + "weaponErgonomicPenalty": -1, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_granit_4rs/item_equipment_plate_granit_4rs_front_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "656fa76500d62bcd2e024080": { + "_id": "656fa76500d62bcd2e024080", + "_name": "item_equipment_plate_SAPI_KibaArms_Steel_6class_frontback", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_SAPI_KibaArms_Steel_6class_frontback", + "ShortName": "item_equipment_plate_SAPI_KibaArms_Steel_6class_frontback", + "Description": "item_equipment_plate_SAPI_KibaArms_Steel_6class_frontback", + "Weight": 5.1, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_new.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 532, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 50, + "MaxDurability": 50, + "armorClass": "6", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.18, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest", + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": -3, + "mousePenalty": -1.5, + "weaponErgonomicPenalty": -1.5, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "655746010177119f4a097ff7": { + "_id": "655746010177119f4a097ff7", + "_name": "item_equipment_plate_sapi_5class_frontback", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_sapi_5class_frontback", + "ShortName": "item_equipment_plate_sapi_5class_frontback", + "Description": "item_equipment_plate_sapi_5class_frontback", + "Weight": 1.82, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_pgd_esapi_iv_sa_medium/item_equipment_plate_pgd_esapi_iv_sa_medium.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 222, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 50, + "MaxDurability": 50, + "armorClass": "5", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.3, + "ArmorMaterial": "Ceramic", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest", + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": -1, + "mousePenalty": -0.5, + "weaponErgonomicPenalty": -1.5, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_pgd_esapi_iv_sa_medium/item_equipment_plate_pgd_esapi_iv_sa_medium_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "619bde3dc9546643a67df6f2": { + "_id": "619bde3dc9546643a67df6f2", + "_name": "item_equipment_armband_kibaarms", + "_parent": "5b3f15d486f77432d0509248", + "_type": "Item", + "_props": { + "Name": "armband_red", + "ShortName": "armband_red", + "Description": "armband_red", + "Weight": 0.05, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_cloth_generic", + "Prefab": { + "path": "assets/content/items/equipment/armband/item_equipment_armband_kibaarms.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": true, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "ArmBand", + "UnlootableFromSide": [ + "Bear", + "Usec", + "Savage" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false + }, + "_proto": "5b3f3ade86f7746b6b790d8e" + }, "64b11c08506a73f6a10f9364": { "_id": "64b11c08506a73f6a10f9364", "_name": "helmet_all_exeptNeck", @@ -332620,109 +332756,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "656fa61e94b480b8a500c0e8": { - "_id": "656fa61e94b480b8a500c0e8", - "_name": "item_equipment_plate_SAPI_NESCO_4400_6class_frontback", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_SAPI_NESCO_4400_6class_frontback", - "ShortName": "item_equipment_plate_SAPI_NESCO_4400_6class_frontback", - "Description": "item_equipment_plate_SAPI_NESCO_4400_6class_frontback", - "Weight": 3.6, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_new.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 486, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 60, - "MaxDurability": 60, - "armorClass": "6", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.22, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest", - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": -2.5, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "656fae5f7c2d57afe200c0d7": { "_id": "656fae5f7c2d57afe200c0d7", "_name": "item_equipment_plate_SAPI_GAC_3s15m_5class_frontback", @@ -332826,6 +332859,109 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "656fa61e94b480b8a500c0e8": { + "_id": "656fa61e94b480b8a500c0e8", + "_name": "item_equipment_plate_SAPI_NESCO_4400_6class_frontback", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_SAPI_NESCO_4400_6class_frontback", + "ShortName": "item_equipment_plate_SAPI_NESCO_4400_6class_frontback", + "Description": "item_equipment_plate_SAPI_NESCO_4400_6class_frontback", + "Weight": 3.6, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_new.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 486, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 60, + "MaxDurability": 60, + "armorClass": "6", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.22, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest", + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": -2.5, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "64b111fe1be308f1800688c1": { "_id": "64b111fe1be308f1800688c1", "_name": "slick_soft_armor_back", @@ -333233,104 +333369,6 @@ }, "_proto": "57347d3d245977448f7b7f61" }, - "5f60c85b58eff926626a60f7": { - "_id": "5f60c85b58eff926626a60f7", - "_name": "item_equipment_helmet_rys_t_shield", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_rys_t_shield", - "ShortName": "item_equipment_helmet_rys_t_shield", - "Description": "item_equipment_helmet_rys_t_shield", - "Weight": 1.2, - "BackgroundColor": "default", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/helmet_rys_t_shield/item_equipment_helmet_rys_t_shield.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 191, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 55, - "MaxDurability": 55, - "armorClass": "5", - "Indestructibility": 0.9, - "FaceShieldComponent": true, - "FaceShieldMask": "Wide", - "HasHinge": true, - "MaterialType": "GlassVisor", - "RicochetParams": { - "x": 0.7, - "y": 0.4, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.0792, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0.3, - "ArmorType": "None", - "armorColliders": [ - "HeadCommon", - "Eyes", - "Jaw" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -6, - "weaponErgonomicPenalty": -3 - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, "619bc61e86e01e16f839a999": { "_id": "619bc61e86e01e16f839a999", "_name": "item_equipment_armband_alpha", @@ -333427,1009 +333465,6 @@ "ReverbVolume": -40 } }, - "656faf0ca0dce000a2020f77": { - "_id": "656faf0ca0dce000a2020f77", - "_name": "item_equipment_plate_SAPI_GAC_4sss2_6class_frontback", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_SAPI_GAC_4sss2_6class_frontback", - "ShortName": "item_equipment_plate_SAPI_GAC_4sss2_6class_frontback", - "Description": "item_equipment_plate_SAPI_GAC_4sss2_6class_frontback", - "Weight": 2.7, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_pgd_esapi_iv_sa_medium/item_equipment_plate_pgd_esapi_iv_sa_medium.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 569, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 50, - "MaxDurability": 50, - "armorClass": "6", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.26, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "Light", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest", - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": -1.5, - "mousePenalty": -0.5, - "weaponErgonomicPenalty": -1.5, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_pgd_esapi_iv_sa_medium/item_equipment_plate_pgd_esapi_iv_sa_medium_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "656f611f94b480b8a500c0db": { - "_id": "656f611f94b480b8a500c0db", - "_name": "item_equipment_plate_granit4_5class_front", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_granit4_5class_front", - "ShortName": "item_equipment_plate_granit4_5class_front", - "Description": "item_equipment_plate_granit4_5class_front", - "Weight": 3.05, - "BackgroundColor": "blue", - "Width": 2, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_granit_4rs/item_equipment_plate_granit_4rs_front.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 191, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 50, - "MaxDurability": 50, - "armorClass": "5", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.28, - "ArmorMaterial": "Ceramic", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Korund_chest" - ], - "speedPenaltyPercent": -2, - "mousePenalty": -1.5, - "weaponErgonomicPenalty": -1, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_granit_4rs/item_equipment_plate_granit_4rs_front_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "656efaf54772930db4031ff5": { - "_id": "656efaf54772930db4031ff5", - "_name": "item_equipment_plate_granit4_5class_back", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_granit4_5class_back", - "ShortName": "item_equipment_plate_granit4_5class_back", - "Description": "item_equipment_plate_granit4_5class_back", - "Weight": 3.3, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_granit_4_back/item_equipment_plate_granit_4_back_new.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 191, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 45, - "MaxDurability": 45, - "armorClass": "5", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.29, - "ArmorMaterial": "Ceramic", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_6B13_back" - ], - "speedPenaltyPercent": -1, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_granit_4_back/item_equipment_plate_granit_4_back_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "656fa76500d62bcd2e024080": { - "_id": "656fa76500d62bcd2e024080", - "_name": "item_equipment_plate_SAPI_KibaArms_Steel_6class_frontback", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_SAPI_KibaArms_Steel_6class_frontback", - "ShortName": "item_equipment_plate_SAPI_KibaArms_Steel_6class_frontback", - "Description": "item_equipment_plate_SAPI_KibaArms_Steel_6class_frontback", - "Weight": 5.1, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_new.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 532, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 50, - "MaxDurability": 50, - "armorClass": "6", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.18, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest", - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": -3, - "mousePenalty": -1.5, - "weaponErgonomicPenalty": -1.5, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "655746010177119f4a097ff7": { - "_id": "655746010177119f4a097ff7", - "_name": "item_equipment_plate_sapi_5class_frontback", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_sapi_5class_frontback", - "ShortName": "item_equipment_plate_sapi_5class_frontback", - "Description": "item_equipment_plate_sapi_5class_frontback", - "Weight": 1.82, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_pgd_esapi_iv_sa_medium/item_equipment_plate_pgd_esapi_iv_sa_medium.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 222, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 50, - "MaxDurability": 50, - "armorClass": "5", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.3, - "ArmorMaterial": "Ceramic", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest", - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": -1, - "mousePenalty": -0.5, - "weaponErgonomicPenalty": -1.5, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_pgd_esapi_iv_sa_medium/item_equipment_plate_pgd_esapi_iv_sa_medium_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "619bde3dc9546643a67df6f2": { - "_id": "619bde3dc9546643a67df6f2", - "_name": "item_equipment_armband_kibaarms", - "_parent": "5b3f15d486f77432d0509248", - "_type": "Item", - "_props": { - "Name": "armband_red", - "ShortName": "armband_red", - "Description": "armband_red", - "Weight": 0.05, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_cloth_generic", - "Prefab": { - "path": "assets/content/items/equipment/armband/item_equipment_armband_kibaarms.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": true, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "ArmBand", - "UnlootableFromSide": [ - "Bear", - "Usec", - "Savage" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false - }, - "_proto": "5b3f3ade86f7746b6b790d8e" - }, - "656f9fa0498d1b7e3e071d98": { - "_id": "656f9fa0498d1b7e3e071d98", - "_name": "item_equipment_plate_SAPI_SPRTN_Omega_4class_frontback", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_SAPI_SPRTN_Omega_4class_frontback", - "ShortName": "item_equipment_plate_SAPI_SPRTN_Omega_4class_frontback", - "Description": "item_equipment_plate_SAPI_SPRTN_Omega_4class_frontback", - "Weight": 4.39, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_new.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 70, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 50, - "MaxDurability": 50, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.18, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest", - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": -1.5, - "mousePenalty": -0.5, - "weaponErgonomicPenalty": -0.5, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "657b22485f444d6dff0c6c2f": { - "_id": "657b22485f444d6dff0c6c2f", - "_name": "item_equipment_plate_korund_back_6b23_2_4class_back", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_korund_back_6b23_2_4class_back", - "ShortName": "item_equipment_plate_korund_back_6b23_2_4class_back", - "Description": "item_equipment_plate_korund_back_6b23_2_4class_back", - "Weight": 3.5, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_korund_vmk_back/item_equipment_plate_korund_vmk_back.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 41, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0.8, - "y": 0.3, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.18, - "ArmorMaterial": "ArmoredSteel", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": -1.5, - "mousePenalty": 0, - "weaponErgonomicPenalty": -0.5, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_korund_vmk_back/item_equipment_plate_korund_vmk_back_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "5d6d3829a4b9361bc8618943": { - "_id": "5d6d3829a4b9361bc8618943", - "_name": "item_equipment_helmet_lshz2dtm_shield", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_lshz2dtm_shield", - "ShortName": "item_equipment_helmet_lshz2dtm_shield", - "Description": "item_equipment_helmet_lshz2dtm_shield", - "Weight": 1, - "BackgroundColor": "default", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/helmet_lshz2dtm_shield/item_equipment_helmet_lshz2dtm_shield.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 138, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c0696830db834001d23f5da", - "5c066e3a0db834001b7353f0", - "5c0558060db834001b735271", - "57235b6f24597759bf5a30f1", - "5c110624d174af029e69734c" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 50, - "MaxDurability": 50, - "armorClass": "4", - "Indestructibility": 0.9, - "FaceShieldComponent": true, - "FaceShieldMask": "NoMask", - "HasHinge": true, - "MaterialType": "GlassVisor", - "RicochetParams": { - "x": 0.7, - "y": 0.4, - "z": 70 - }, - "DeafStrength": "None", - "BluntThroughput": 0.0693, - "ArmorMaterial": "Glass", - "BlindnessProtection": 0.1, - "ArmorType": "None", - "armorColliders": [ - "HeadCommon", - "Eyes", - "Jaw" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -5, - "weaponErgonomicPenalty": -2 - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "619bdfd4c9546643a67df6fa": { - "_id": "619bdfd4c9546643a67df6fa", - "_name": "item_equipment_armband_usec", - "_parent": "5b3f15d486f77432d0509248", - "_type": "Item", - "_props": { - "Name": "armband_red", - "ShortName": "armband_red", - "Description": "armband_red", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_cloth_generic", - "Prefab": { - "path": "assets/content/items/equipment/armband/item_equipment_armband_usec.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "ArmBand", - "UnlootableFromSide": [ - "Bear", - "Usec", - "Savage" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false - }, - "_proto": "5b3f3ade86f7746b6b790d8e" - }, - "57bef4c42459772e8d35a53b": { - "_id": "57bef4c42459772e8d35a53b", - "_name": "ArmoredEquipment", - "_parent": "543be5f84bdc2dd4348b456a", - "_type": "Node", - "_props": { - "Durability": 0, - "MaxDurability": 0, - "armorClass": "0", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "BlindnessProtection": 0, - "ArmorType": "None", - "armorColliders": [], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - } - }, "656fb0bd7c2d57afe200c0dc": { "_id": "656fb0bd7c2d57afe200c0dc", "_name": "item_equipment_plate_SAPI_SPRTN_Elaphros_4class_frontback", @@ -334636,6 +333671,110 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "5e01f37686f774773c6f6c15": { + "_id": "5e01f37686f774773c6f6c15", + "_name": "item_equipment_helmet_team_wendy_exfil_face_shield_coyote", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_team_wendy_exfil_face_shield", + "ShortName": "item_equipment_helmet_team_wendy_exfil_face_shield", + "Description": "item_equipment_helmet_team_wendy_exfil_face_shield", + "Weight": 0.8, + "BackgroundColor": "default", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/helmet_team_wendy_exfil_face_shield/item_equipment_helmet_team_wendy_exfil_face_shield_coyote.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 133, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "5c0696830db834001d23f5da", + "5c066e3a0db834001b7353f0", + "5c0558060db834001b735271", + "57235b6f24597759bf5a30f1", + "5c110624d174af029e69734c" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 45, + "MaxDurability": 45, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": true, + "FaceShieldMask": "NoMask", + "HasHinge": true, + "MaterialType": "GlassVisor", + "RicochetParams": { + "x": 0.7, + "y": 0.4, + "z": 55 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1188, + "ArmorMaterial": "Glass", + "BlindnessProtection": 0.1, + "ArmorType": "None", + "armorColliders": [ + "HeadCommon", + "Eyes", + "Jaw" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -10, + "weaponErgonomicPenalty": -4 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, "628e4e576d783146b124c64d": { "_id": "628e4e576d783146b124c64d", "_name": "item_equipment_headset_comtacIV", @@ -334720,6 +333859,702 @@ }, "_proto": "5645bcc04bdc2d363b8b4572" }, + "5c0e446786f7742013381639": { + "_id": "5c0e446786f7742013381639", + "_name": "item_equipment_rig_6b5_flora", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "ANA Tactical m2", + "ShortName": "ANA m2", + "Description": "ANA Tactical m2", + "Weight": 12.2, + "BackgroundColor": "default", + "Width": 3, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/armor_6b5/item_equipment_rig_6b5_flora.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 468, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "5c0e446786f774201338163b", + "_parent": "5c0e446786f7742013381639", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "5c0e446786f774201338163c", + "_parent": "5c0e446786f7742013381639", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "5c0e446786f774201338163d", + "_parent": "5c0e446786f7742013381639", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "5c0e446786f774201338163e", + "_parent": "5c0e446786f7742013381639", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "5c0e446786f774201338163f", + "_parent": "5c0e446786f7742013381639", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "5c0e446786f7742013381640", + "_parent": "5c0e446786f7742013381639", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [ + { + "_name": "Soft_armor_front", + "_id": "65708e5b39c0274d6c0a66df", + "_parent": "5c0e446786f7742013381639", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "657087577f6d4590ac0d2109", + "Filter": [ + "657087577f6d4590ac0d2109" + ], + "armorColliders": [ + "RibcageLow", + "RibcageUp" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "65708e9a1f010cf0fe04affd", + "_parent": "5c0e446786f7742013381639", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6570880f4a747dbb63005ee5", + "Filter": [ + "6570880f4a747dbb63005ee5" + ], + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Collar", + "_id": "6570949705ae01b7f10e3fa2", + "_parent": "5c0e446786f7742013381639", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65708afe4a747dbb63005eee", + "Filter": [ + "65708afe4a747dbb63005eee" + ], + "armorColliders": [ + "NeckBack", + "NeckFront" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Groin", + "_id": "6570949705ae01b7f10e3fa3", + "_parent": "5c0e446786f7742013381639", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65708b4c4a747dbb63005ef3", + "Filter": [ + "65708b4c4a747dbb63005ef3" + ], + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": true, + "RigLayoutName": "6b5", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0.2529, + "ArmorMaterial": "Aramid", + "ArmorType": "Light", + "speedPenaltyPercent": -2, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "5c0919b50db834001b7ce3b9": { + "_id": "5c0919b50db834001b7ce3b9", + "_name": "item_equipment_helmet_maska_1sh_shield", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_maska_1sh_shield", + "ShortName": "item_equipment_helmet_maska_1sh_shield", + "Description": "item_equipment_helmet_maska_1sh_shield", + "Weight": 1.1, + "BackgroundColor": "default", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/helmet_maska_1sh_shield/item_equipment_helmet_maska_1sh_shield.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 128, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 50, + "MaxDurability": 50, + "armorClass": "6", + "Indestructibility": 0.9, + "FaceShieldComponent": true, + "FaceShieldMask": "Narrow", + "HasHinge": true, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.0792, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0.35, + "ArmorType": "None", + "armorColliders": [ + "HeadCommon", + "Eyes", + "Jaw" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": -9 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, + "5f60b85bbdb8e27dee3dc985": { + "_id": "5f60b85bbdb8e27dee3dc985", + "_name": "item_equipment_helmet_galvion_applique", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_galvion_applique", + "ShortName": "item_equipment_helmet_galvion_applique", + "Description": "item_equipment_helmet_galvion_applique", + "Weight": 0.68, + "BackgroundColor": "default", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_galvion_applique/item_equipment_helmet_galvion_applique.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 128, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 45 + }, + "DeafStrength": "None", + "BluntThroughput": 0.0792, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [ + "ParietalHead", + "BackHead" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -6, + "weaponErgonomicPenalty": -6 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "619bde7fc9546643a67df6f4": { + "_id": "619bde7fc9546643a67df6f4", + "_name": "item_equipment_armband_labs", + "_parent": "5b3f15d486f77432d0509248", + "_type": "Item", + "_props": { + "Name": "armband_red", + "ShortName": "armband_red", + "Description": "armband_red", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_cloth_generic", + "Prefab": { + "path": "assets/content/items/equipment/armband/item_equipment_armband_labs.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "ArmBand", + "UnlootableFromSide": [ + "Bear", + "Usec", + "Savage" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false + }, + "_proto": "5b3f3ade86f7746b6b790d8e" + }, + "656fa99800d62bcd2e024088": { + "_id": "656fa99800d62bcd2e024088", + "_name": "item_equipment_plate_SAPI_Cult_Termite_6class_frontback", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_SAPI_Cult_Termite_6class_frontback", + "ShortName": "item_equipment_plate_SAPI_Cult_Termite_6class_frontback", + "Description": "item_equipment_plate_SAPI_Cult_Termite_6class_frontback", + "Weight": 3.85, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_new.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 615, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 65, + "MaxDurability": 65, + "armorClass": "6", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.14, + "ArmorMaterial": "Titan", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest", + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": -2, + "mousePenalty": -1.5, + "weaponErgonomicPenalty": -1, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, "656fa8d700d62bcd2e024084": { "_id": "656fa8d700d62bcd2e024084", "_name": "item_equipment_plate_SAPI_Cult_Locust_5class_frontback", @@ -334823,6 +334658,299 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "657b22485f444d6dff0c6c2f": { + "_id": "657b22485f444d6dff0c6c2f", + "_name": "item_equipment_plate_korund_back_6b23_2_4class_back", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_korund_back_6b23_2_4class_back", + "ShortName": "item_equipment_plate_korund_back_6b23_2_4class_back", + "Description": "item_equipment_plate_korund_back_6b23_2_4class_back", + "Weight": 3.5, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_korund_vmk_back/item_equipment_plate_korund_vmk_back.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 41, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 40, + "MaxDurability": 40, + "armorClass": "4", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0.8, + "y": 0.3, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.18, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": -1.5, + "mousePenalty": 0, + "weaponErgonomicPenalty": -0.5, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_korund_vmk_back/item_equipment_plate_korund_vmk_back_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "6570a88c8f221f3b210353b7": { + "_id": "6570a88c8f221f3b210353b7", + "_name": "item_equipment_helmet_neosteel_mandible", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_galvion_mandible", + "ShortName": "item_equipment_helmet_galvion_mandible", + "Description": "item_equipment_helmet_galvion_mandible", + "Weight": 1.2, + "BackgroundColor": "default", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_helmet", + "Prefab": { + "path": "assets/content/items/equipment/helmet_neosteel_mandible/item_equipment_helmet_neosteel_mandible.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 106, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [ + "59e7715586f7742ee5789605", + "6176a48d732a664031271438", + "5c1a1e3f2e221602b66cc4c2", + "62a09dd4621468534a797ac7", + "5b4325355acfc40019478126", + "5bd06f5d86f77427101ad47c", + "5ab8f85d86f7745cd93a1cf5", + "6570aead4d84f81fd002a033", + "5645bcc04bdc2d363b8b4572", + "5aa2ba71e5b5b000137b758f", + "628e4e576d783146b124c64d", + "5b432b965acfc47a8774094e", + "6033fa48ffd42c541047f728", + "5c165d832e2216398b5a7e36", + "5e4d34ca86f774264f758330", + "5f60cd6cf2bcbb675b00dac6" + ], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": true, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 25, + "MaxDurability": 25, + "armorClass": "3", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0.9, + "y": 0.4, + "z": 60 + }, + "DeafStrength": "None", + "BluntThroughput": 0.1726, + "ArmorMaterial": "ArmoredSteel", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [ + "NeckFront", + "Jaw", + "Ears", + "HeadCommon" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": -1, + "mousePenalty": 0, + "weaponErgonomicPenalty": -2 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, + "619bdfd4c9546643a67df6fa": { + "_id": "619bdfd4c9546643a67df6fa", + "_name": "item_equipment_armband_usec", + "_parent": "5b3f15d486f77432d0509248", + "_type": "Item", + "_props": { + "Name": "armband_red", + "ShortName": "armband_red", + "Description": "armband_red", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_cloth_generic", + "Prefab": { + "path": "assets/content/items/equipment/armband/item_equipment_armband_usec.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "ArmBand", + "UnlootableFromSide": [ + "Bear", + "Usec", + "Savage" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false + }, + "_proto": "5b3f3ade86f7746b6b790d8e" + }, "5448e54d4bdc2dcc718b4568": { "_id": "5448e54d4bdc2dcc718b4568", "_name": "Armor", @@ -334830,6 +334958,37 @@ "_type": "Node", "_props": {} }, + "57bef4c42459772e8d35a53b": { + "_id": "57bef4c42459772e8d35a53b", + "_name": "ArmoredEquipment", + "_parent": "543be5f84bdc2dd4348b456a", + "_type": "Node", + "_props": { + "Durability": 0, + "MaxDurability": 0, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + } + }, "5e4d34ca86f774264f758330": { "_id": "5e4d34ca86f774264f758330", "_name": "item_equipment_headset_walkers_razor", @@ -335066,81 +335225,6 @@ }, "_proto": "5b3f3ade86f7746b6b790d8e" }, - "619bde7fc9546643a67df6f4": { - "_id": "619bde7fc9546643a67df6f4", - "_name": "item_equipment_armband_labs", - "_parent": "5b3f15d486f77432d0509248", - "_type": "Item", - "_props": { - "Name": "armband_red", - "ShortName": "armband_red", - "Description": "armband_red", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_cloth_generic", - "Prefab": { - "path": "assets/content/items/equipment/armband/item_equipment_armband_labs.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "ArmBand", - "UnlootableFromSide": [ - "Bear", - "Usec", - "Savage" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false - }, - "_proto": "5b3f3ade86f7746b6b790d8e" - }, "654a4dea7c17dec2f50cc86a": { "_id": "654a4dea7c17dec2f50cc86a", "_name": "item_equipment_plate_korund_6b12_3class_front", @@ -335348,6 +335432,751 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "64afc71497cf3a403c01ff38": { + "_id": "64afc71497cf3a403c01ff38", + "_name": "item_equipment_plate_granitBr5_6 class_frontback", + "_parent": "644120aa86ffbe10ee032b6f", + "_type": "Item", + "_props": { + "Name": "item_equipment_plate_granitBr5_6 class_frontback", + "ShortName": "item_equipment_plate_granitBr5_6 class_frontback", + "Description": "item_equipment_plate_granitBr5_6 class_frontback", + "Weight": 3.3, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_armor", + "Prefab": { + "path": "assets/content/items/equipment/plate_granit_5a_front/item_equipment_plate_granit_5a_front_new.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 498, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 60, + "MaxDurability": 60, + "armorClass": "6", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "BodyArmor", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 80 + }, + "DeafStrength": "None", + "BluntThroughput": 0.28, + "ArmorMaterial": "Ceramic", + "BlindnessProtection": 0, + "ArmorType": "Heavy", + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest", + "Plate_Granit_SAPI_back" + ], + "speedPenaltyPercent": -2, + "mousePenalty": -1.5, + "weaponErgonomicPenalty": -1.5, + "Lower75Prefab": { + "path": "assets/content/items/equipment/plate_granit_5a_front/item_equipment_plate_granit_5a_front_damaged.bundle", + "rcid": "" + }, + "effects_health": [], + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "5aa7e373e5b5b000137b76f0": { + "_id": "5aa7e373e5b5b000137b76f0", + "_name": "helmet_altyn_face_shield", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "helmet_altyn_face_shield", + "ShortName": "helmet_altyn_face_shield", + "Description": "helmet_altyn_face_shield", + "Weight": 1.4, + "BackgroundColor": "default", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/equipment/helmet_altyn_shield/item_equipment_helmet_altyn_shield.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 138, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": true, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 50, + "MaxDurability": 50, + "armorClass": "5", + "Indestructibility": 0.9, + "FaceShieldComponent": true, + "FaceShieldMask": "Wide", + "HasHinge": true, + "MaterialType": "GlassVisor", + "RicochetParams": { + "x": 0.7, + "y": 0.4, + "z": 70 + }, + "DeafStrength": "None", + "BluntThroughput": 0.0792, + "ArmorMaterial": "Combined", + "BlindnessProtection": 0.25, + "ArmorType": "None", + "armorColliders": [ + "HeadCommon", + "Eyes", + "Jaw" + ], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": -8, + "weaponErgonomicPenalty": -3 + }, + "_proto": "557ff21e4bdc2d89578b4586" + }, + "5b3f3ade86f7746b6b790d8e": { + "_id": "5b3f3ade86f7746b6b790d8e", + "_name": "armband_red", + "_parent": "5b3f15d486f77432d0509248", + "_type": "Item", + "_props": { + "Name": "armband_red", + "ShortName": "armband_red", + "Description": "armband_red", + "Weight": 0.05, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_cloth_generic", + "Prefab": { + "path": "assets/content/items/equipment/armband/item_equipment_armband_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "ArmBand", + "UnlootableFromSide": [ + "Bear", + "Usec", + "Savage" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false + } + }, + "55d7217a4bdc2d86028b456d": { + "_id": "55d7217a4bdc2d86028b456d", + "_name": "Default Inventory", + "_parent": "55d720f24bdc2d88028b456d", + "_type": "Item", + "_props": { + "Name": "Стандартный инвентарь", + "ShortName": "", + "Description": "", + "Weight": 0, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [ + { + "_name": "FirstPrimaryWeapon", + "_id": "55d729c64bdc2d89028b4570", + "_parent": "55d7217a4bdc2d86028b456d", + "_props": { + "filters": [ + { + "Filter": [ + "5447b5fc4bdc2d87278b4567", + "5447b5f14bdc2d61278b4567", + "5e81ebcd8e146c7080625e15", + "5447bed64bdc2d97278b4568", + "5447b6194bdc2d67278b4567", + "60db29ce99594040e04c4a27", + "6259b864ebedf17603599e88", + "61f7c9e189e6fb1a5e3ea78d", + "576165642459773c7a400233", + "54491c4f4bdc2db1078b4568", + "56dee2bdd2720bc8328b4567", + "5580223e4bdc2d1c128b457f", + "606dae0ab0e443224b421bb7", + "5e870397991fd70db46995c8", + "5a7828548dc32e5a9c28b516", + "5e848cc2988a8701445df1e8", + "5a38e6bac4a2826c6e06d79b", + "5447b5e04bdc2d62278b4567", + "5447b6254bdc2dc3278b4568", + "5447bee84bdc2dc3278b4569", + "6275303a9f372d6ea97f9ec7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d721144bdc2d89028b456f" + }, + { + "_name": "SecondPrimaryWeapon", + "_id": "55d729d14bdc2d86028b456e", + "_parent": "55d7217a4bdc2d86028b456d", + "_props": { + "filters": [ + { + "Filter": [ + "5447b5fc4bdc2d87278b4567", + "5447b5f14bdc2d61278b4567", + "5e81ebcd8e146c7080625e15", + "5447bed64bdc2d97278b4568", + "5447b6194bdc2d67278b4567", + "6259b864ebedf17603599e88", + "61f7c9e189e6fb1a5e3ea78d", + "576165642459773c7a400233", + "54491c4f4bdc2db1078b4568", + "56dee2bdd2720bc8328b4567", + "5580223e4bdc2d1c128b457f", + "606dae0ab0e443224b421bb7", + "5e870397991fd70db46995c8", + "5a7828548dc32e5a9c28b516", + "5e848cc2988a8701445df1e8", + "5a38e6bac4a2826c6e06d79b", + "5447b5e04bdc2d62278b4567", + "5447b6254bdc2dc3278b4568", + "5447bee84bdc2dc3278b4569", + "60db29ce99594040e04c4a27", + "6275303a9f372d6ea97f9ec7" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d721144bdc2d89028b456f" + }, + { + "_name": "Holster", + "_id": "55d729d84bdc2de3098b456b", + "_parent": "55d7217a4bdc2d86028b456d", + "_props": { + "filters": [ + { + "Filter": [ + "620109578d82e67e7911abf2", + "5447b5cf4bdc2d65278b4567", + "624c2e8614da335f1e034d8c", + "61a4c8884f95bc3b2c5dc96f", + "633ec7c2a6918cb895019c6c", + "64748cb8de82c85eaf0a273a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d721144bdc2d89028b456f" + }, + { + "_name": "Scabbard", + "_id": "55d729e34bdc2d1b198b456d", + "_parent": "55d7217a4bdc2d86028b456d", + "_props": { + "filters": [ + { + "Filter": [ + "5447e1d04bdc2dff2f8b4567" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d721144bdc2d89028b456f" + }, + { + "_name": "FaceCover", + "_id": "55d729e84bdc2d8a028b4569", + "_parent": "55d7217a4bdc2d86028b456d", + "_props": { + "filters": [ + { + "Filter": [ + "5a341c4686f77469e155819e" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "55d721144bdc2d89028b456f" + }, + { + "_name": "Headwear", + "_id": "55d729ef4bdc2d3a168b456c", + "_parent": "55d7217a4bdc2d86028b456d", + "_props": { + "filters": [ + { + "Filter": [ + "5a341c4086f77401f2541505" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "55d721144bdc2d89028b456f" + }, + { + "_name": "TacticalVest", + "_id": "55d729f74bdc2d87028b456e", + "_parent": "55d7217a4bdc2d86028b456d", + "_props": { + "filters": [ + { + "Filter": [ + "5448e5284bdc2dcb718b4567" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d721144bdc2d89028b456f" + }, + { + "_name": "SecuredContainer", + "_id": "55d72a054bdc2d88028b456e", + "_parent": "55d7217a4bdc2d86028b456d", + "_props": { + "filters": [ + { + "Filter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d721144bdc2d89028b456f" + }, + { + "_name": "Backpack", + "_id": "55d72a104bdc2d89028b4571", + "_parent": "55d7217a4bdc2d86028b456d", + "_props": { + "filters": [ + { + "Filter": [ + "5448e53e4bdc2d60728b4567" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d721144bdc2d89028b456f" + }, + { + "_name": "ArmorVest", + "_id": "55d72a194bdc2d86028b456f", + "_parent": "55d7217a4bdc2d86028b456d", + "_props": { + "filters": [ + { + "Filter": [ + "5448e54d4bdc2dcc718b4568" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d721144bdc2d89028b456f" + }, + { + "_name": "Pockets", + "_id": "55d72a274bdc2de3098b456c", + "_parent": "55d7217a4bdc2d86028b456d", + "_props": { + "filters": [ + { + "Filter": [ + "557596e64bdc2dc2118b4571" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d721144bdc2d89028b456f" + }, + { + "_name": "Earpiece", + "_id": "5665b7164bdc2d144c8b4570", + "_parent": "55d7217a4bdc2d86028b456d", + "_props": { + "filters": [ + { + "Filter": [ + "5645bcc04bdc2d363b8b4572", + "5aa2ba71e5b5b000137b758f", + "5b432b965acfc47a8774094e", + "6033fa48ffd42c541047f728", + "5c165d832e2216398b5a7e36", + "5e4d34ca86f774264f758330", + "5f60cd6cf2bcbb675b00dac6", + "628e4e576d783146b124c64d" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "55d721144bdc2d89028b456f" + }, + { + "_name": "Dogtag", + "_id": "59f0be1e86f77453be490939", + "_parent": "55d7217a4bdc2d86028b456d", + "_props": { + "filters": [ + { + "Filter": [ + "59f32bb586f774757e1e8442", + "59f32c3b86f77472a31742f0" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": false, + "_proto": "55d721144bdc2d89028b456f" + }, + { + "_name": "Eyewear", + "_id": "5a0ad9313f1241000e072755", + "_parent": "55d7217a4bdc2d86028b456d", + "_props": { + "filters": [ + { + "Filter": [ + "5448e5724bdc2ddf718b4568" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "55d721144bdc2d89028b456f" + }, + { + "_name": "ArmBand", + "_id": "5b3f583786f77411d552fb2b", + "_parent": "55d7217a4bdc2d86028b456d", + "_props": { + "filters": [ + { + "Filter": [ + "5b3f15d486f77432d0509248" + ] + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "55d721144bdc2d89028b456f" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [] + } + }, + "5910922b86f7747d96753483": { + "_id": "5910922b86f7747d96753483", + "_name": "item_quest_container_carbon_case", + "_parent": "5671435f4bdc2d96058b4569", + "_type": "Item", + "_props": { + "Name": "Carbon case", + "ShortName": "Carbon case", + "Description": "Carbon case", + "Weight": 6, + "BackgroundColor": "yellow", + "Width": 4, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "container_case", + "Prefab": { + "path": "assets/content/items/quest/item_quest_container_carbon_case/item_quest_container_carbon_case.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 100, + "ExamineExperience": 50, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5910922b86f7747d96753484", + "_parent": "5910922b86f7747d96753483", + "_props": { + "filters": [ + { + "Filter": [ + "543be5dd4bdc2deb348b4569" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 4, + "cellsV": 4, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "KeyIds": [ + "5751961824597720a31c09ac" + ], + "TagColor": 0, + "TagName": "" + }, + "_proto": "567143bf4bdc2d1a0f8b4567" + }, "656f66b5c6baea13cd07e108": { "_id": "656f66b5c6baea13cd07e108", "_name": "item_equipment_plate_korund_vmk_6class_front", @@ -335450,6 +336279,202 @@ }, "_proto": "57347d3d245977448f7b7f61" }, + "590dde5786f77405e71908b2": { + "_id": "590dde5786f77405e71908b2", + "_name": "item_quest_container_case_bank", + "_parent": "5671435f4bdc2d96058b4569", + "_type": "Item", + "_props": { + "Name": "Bank case", + "ShortName": "Bank case", + "Description": "Bank case", + "Weight": 7, + "BackgroundColor": "yellow", + "Width": 4, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "container_case", + "Prefab": { + "path": "assets/content/items/quest/item_quest_container_case_bank/item_quest_container_case_bank.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 100, + "ExamineExperience": 50, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "590dde5786f77405e71908b3", + "_parent": "590dde5786f77405e71908b2", + "_props": { + "filters": [ + { + "Filter": [ + "543be5dd4bdc2deb348b4569" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 4, + "cellsV": 4, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "KeyIds": [ + "5751961824597720a31c09ac" + ], + "TagColor": 0, + "TagName": "" + }, + "_proto": "567143bf4bdc2d1a0f8b4567" + }, + "567143bf4bdc2d1a0f8b4567": { + "_id": "567143bf4bdc2d1a0f8b4567", + "_name": "Чемодан", + "_parent": "5671435f4bdc2d96058b4569", + "_type": "Item", + "_props": { + "Name": "Pistol case", + "ShortName": "Pistol case", + "Description": "Pistol case", + "Weight": 0.5, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/pistol_case/item_container_pistol_case.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "56f95c8ad2720bfa308b4581", + "_parent": "567143bf4bdc2d1a0f8b4567", + "_props": { + "filters": [ + { + "Filter": [ + "5448bc234bdc2d3c308b4569", + "620109578d82e67e7911abf2", + "5447b5cf4bdc2d65278b4567", + "624c2e8614da335f1e034d8c", + "61a4c8884f95bc3b2c5dc96f", + "5485a8684bdc2da71d8b4567", + "543be5cb4bdc2deb348b4568", + "633ec7c2a6918cb895019c6c" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 4, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "KeyIds": [ + "5671446a4bdc2d97058b4569" + ], + "TagColor": 0, + "TagName": "" + } + }, "5e00cfa786f77469dc6e5685": { "_id": "5e00cfa786f77469dc6e5685", "_name": "helmet_team_wendy_exfil_ear_covers", @@ -335548,6 +336573,100 @@ }, "_proto": "5645bc214bdc2d363b8b4571" }, + "5d6d3943a4b9360dbc46d0cc": { + "_id": "5d6d3943a4b9360dbc46d0cc", + "_name": "item_equipment_helmet_lshz2dtm_damper", + "_parent": "57bef4c42459772e8d35a53b", + "_type": "Item", + "_props": { + "Name": "item_equipment_helmet_lshz2dtm_damper", + "ShortName": "item_equipment_helmet_lshz2dtm_damper", + "Description": "item_equipment_helmet_lshz2dtm_damper", + "Weight": 0.1, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/helmet_lshz2dtm_damper/item_equipment_helmet_lshz2dtm_damper.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 149, + "RepairSpeed": 10, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": true, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false, + "Durability": 1, + "MaxDurability": 1, + "armorClass": "0", + "Indestructibility": 0.9, + "FaceShieldComponent": false, + "FaceShieldMask": "NoMask", + "HasHinge": false, + "MaterialType": "Helmet", + "RicochetParams": { + "x": 0, + "y": 0, + "z": 0 + }, + "DeafStrength": "None", + "BluntThroughput": 0, + "ArmorMaterial": "Aramid", + "BlindnessProtection": 0, + "ArmorType": "None", + "armorColliders": [], + "armorPlateColliders": [], + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5645bc214bdc2d363b8b4571" + }, "60b0f988c4449e4cb624c1da": { "_id": "60b0f988c4449e4cb624c1da", "_name": "armband_sigma", @@ -335698,109 +336817,6 @@ }, "_proto": "5b3f3ade86f7746b6b790d8e" }, - "656f9d5900d62bcd2e02407c": { - "_id": "656f9d5900d62bcd2e02407c", - "_name": "item_equipment_plate_SAPI_AR500_legacy_3class_frontback", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_SAPI_AR500_legacy_3class_frontback", - "ShortName": "item_equipment_plate_SAPI_AR500_legacy_3class_frontback", - "Description": "item_equipment_plate_SAPI_AR500_legacy_3class_frontback", - "Weight": 3.85, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_new.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 37, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 45, - "MaxDurability": 45, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.18, - "ArmorMaterial": "Combined", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest", - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": -2, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_ar500/item_equipment_plate_ar500_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, "654a4a964b446df1ad03f192": { "_id": "654a4a964b446df1ad03f192", "_name": "item_equipment_plate_granit4rs_6class_back", @@ -336414,1733 +337430,6 @@ "BlocksFaceCover": false } }, - "64afc71497cf3a403c01ff38": { - "_id": "64afc71497cf3a403c01ff38", - "_name": "item_equipment_plate_granitBr5_6 class_frontback", - "_parent": "644120aa86ffbe10ee032b6f", - "_type": "Item", - "_props": { - "Name": "item_equipment_plate_granitBr5_6 class_frontback", - "ShortName": "item_equipment_plate_granitBr5_6 class_frontback", - "Description": "item_equipment_plate_granitBr5_6 class_frontback", - "Weight": 3.3, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_armor", - "Prefab": { - "path": "assets/content/items/equipment/plate_granit_5a_front/item_equipment_plate_granit_5a_front_new.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 498, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 60, - "MaxDurability": 60, - "armorClass": "6", - "Indestructibility": 0.9, - "FaceShieldComponent": false, - "FaceShieldMask": "NoMask", - "HasHinge": false, - "MaterialType": "BodyArmor", - "RicochetParams": { - "x": 0, - "y": 0, - "z": 80 - }, - "DeafStrength": "None", - "BluntThroughput": 0.28, - "ArmorMaterial": "Ceramic", - "BlindnessProtection": 0, - "ArmorType": "Heavy", - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest", - "Plate_Granit_SAPI_back" - ], - "speedPenaltyPercent": -2, - "mousePenalty": -1.5, - "weaponErgonomicPenalty": -1.5, - "Lower75Prefab": { - "path": "assets/content/items/equipment/plate_granit_5a_front/item_equipment_plate_granit_5a_front_damaged.bundle", - "rcid": "" - }, - "effects_health": [], - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "65719f9ef392ad76c50a2ec8": { - "_id": "65719f9ef392ad76c50a2ec8", - "_name": "item_equipment_helmet_tor_2_faceshield", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "item_equipment_helmet_team_wendy_exfil_face_shield", - "ShortName": "item_equipment_helmet_team_wendy_exfil_face_shield", - "Description": "item_equipment_helmet_team_wendy_exfil_face_shield", - "Weight": 1.15, - "BackgroundColor": "default", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/helmet_tor_2_faceshield/item_equipment_helmet_tor_2_faceshield.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 133, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c0696830db834001d23f5da", - "5c066e3a0db834001b7353f0", - "5c0558060db834001b735271", - "57235b6f24597759bf5a30f1", - "5c110624d174af029e69734c", - "5a398b75c4a282000a51a266", - "5a398ab9c4a282000c5a9842", - "5b432c305acfc40019478128", - "60363c0c92ec1c31037959f5", - "5e54f79686f7744022011103", - "59e7715586f7742ee5789605", - "6176a48d732a664031271438" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 30, - "MaxDurability": 30, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": true, - "FaceShieldMask": "NoMask", - "HasHinge": true, - "MaterialType": "GlassVisor", - "RicochetParams": { - "x": 0.7, - "y": 0.4, - "z": 55 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1188, - "ArmorMaterial": "Glass", - "BlindnessProtection": 0.1, - "ArmorType": "None", - "armorColliders": [ - "Eyes", - "HeadCommon", - "Jaw" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -3, - "weaponErgonomicPenalty": -2 - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "5a16b7e1fcdbcb00165aa6c9": { - "_id": "5a16b7e1fcdbcb00165aa6c9", - "_name": "helmet_ops_core_handgun_face_shield", - "_parent": "57bef4c42459772e8d35a53b", - "_type": "Item", - "_props": { - "Name": "helmet_ops_core_handgun_face_shield", - "ShortName": "helmet_ops_core_handgun_face_shield", - "Description": "helmet_ops_core_handgun_face_shield", - "Weight": 1.2, - "BackgroundColor": "default", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/equipment/helmet_opscore_handgun_face_shield/item_equipment_helmet_opscore_handgun_face_shield.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 128, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [ - "5c0e66e2d174af02a96252f4", - "5c0696830db834001d23f5da", - "5c066e3a0db834001b7353f0", - "5c0558060db834001b735271", - "57235b6f24597759bf5a30f1", - "5c110624d174af029e69734c", - "5a16b8a9fcdbcb00165aa6ca", - "5a398b75c4a282000a51a266", - "5a398ab9c4a282000c5a9842" - ], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": true, - "BlocksHeadwear": false, - "BlocksFaceCover": false, - "Durability": 40, - "MaxDurability": 40, - "armorClass": "3", - "Indestructibility": 0.9, - "FaceShieldComponent": true, - "FaceShieldMask": "NoMask", - "HasHinge": true, - "MaterialType": "GlassVisor", - "RicochetParams": { - "x": 0.7, - "y": 0.3, - "z": 55 - }, - "DeafStrength": "None", - "BluntThroughput": 0.1485, - "ArmorMaterial": "Glass", - "BlindnessProtection": 0.1, - "ArmorType": "None", - "armorColliders": [ - "HeadCommon", - "Eyes", - "Jaw" - ], - "armorPlateColliders": [], - "speedPenaltyPercent": 0, - "mousePenalty": -8, - "weaponErgonomicPenalty": -4 - }, - "_proto": "557ff21e4bdc2d89578b4586" - }, - "5b3f3ade86f7746b6b790d8e": { - "_id": "5b3f3ade86f7746b6b790d8e", - "_name": "armband_red", - "_parent": "5b3f15d486f77432d0509248", - "_type": "Item", - "_props": { - "Name": "armband_red", - "ShortName": "armband_red", - "Description": "armband_red", - "Weight": 0.05, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_cloth_generic", - "Prefab": { - "path": "assets/content/items/equipment/armband/item_equipment_armband_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "ArmBand", - "UnlootableFromSide": [ - "Bear", - "Usec", - "Savage" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false - } - }, - "55d7217a4bdc2d86028b456d": { - "_id": "55d7217a4bdc2d86028b456d", - "_name": "Default Inventory", - "_parent": "55d720f24bdc2d88028b456d", - "_type": "Item", - "_props": { - "Name": "Стандартный инвентарь", - "ShortName": "", - "Description": "", - "Weight": 0, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [ - { - "_name": "FirstPrimaryWeapon", - "_id": "55d729c64bdc2d89028b4570", - "_parent": "55d7217a4bdc2d86028b456d", - "_props": { - "filters": [ - { - "Filter": [ - "5447b5fc4bdc2d87278b4567", - "5447b5f14bdc2d61278b4567", - "5e81ebcd8e146c7080625e15", - "5447bed64bdc2d97278b4568", - "5447b6194bdc2d67278b4567", - "60db29ce99594040e04c4a27", - "6259b864ebedf17603599e88", - "61f7c9e189e6fb1a5e3ea78d", - "576165642459773c7a400233", - "54491c4f4bdc2db1078b4568", - "56dee2bdd2720bc8328b4567", - "5580223e4bdc2d1c128b457f", - "606dae0ab0e443224b421bb7", - "5e870397991fd70db46995c8", - "5a7828548dc32e5a9c28b516", - "5e848cc2988a8701445df1e8", - "5a38e6bac4a2826c6e06d79b", - "5447b5e04bdc2d62278b4567", - "5447b6254bdc2dc3278b4568", - "5447bee84bdc2dc3278b4569", - "6275303a9f372d6ea97f9ec7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d721144bdc2d89028b456f" - }, - { - "_name": "SecondPrimaryWeapon", - "_id": "55d729d14bdc2d86028b456e", - "_parent": "55d7217a4bdc2d86028b456d", - "_props": { - "filters": [ - { - "Filter": [ - "5447b5fc4bdc2d87278b4567", - "5447b5f14bdc2d61278b4567", - "5e81ebcd8e146c7080625e15", - "5447bed64bdc2d97278b4568", - "5447b6194bdc2d67278b4567", - "6259b864ebedf17603599e88", - "61f7c9e189e6fb1a5e3ea78d", - "576165642459773c7a400233", - "54491c4f4bdc2db1078b4568", - "56dee2bdd2720bc8328b4567", - "5580223e4bdc2d1c128b457f", - "606dae0ab0e443224b421bb7", - "5e870397991fd70db46995c8", - "5a7828548dc32e5a9c28b516", - "5e848cc2988a8701445df1e8", - "5a38e6bac4a2826c6e06d79b", - "5447b5e04bdc2d62278b4567", - "5447b6254bdc2dc3278b4568", - "5447bee84bdc2dc3278b4569", - "60db29ce99594040e04c4a27", - "6275303a9f372d6ea97f9ec7" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d721144bdc2d89028b456f" - }, - { - "_name": "Holster", - "_id": "55d729d84bdc2de3098b456b", - "_parent": "55d7217a4bdc2d86028b456d", - "_props": { - "filters": [ - { - "Filter": [ - "620109578d82e67e7911abf2", - "5447b5cf4bdc2d65278b4567", - "624c2e8614da335f1e034d8c", - "61a4c8884f95bc3b2c5dc96f", - "633ec7c2a6918cb895019c6c", - "64748cb8de82c85eaf0a273a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d721144bdc2d89028b456f" - }, - { - "_name": "Scabbard", - "_id": "55d729e34bdc2d1b198b456d", - "_parent": "55d7217a4bdc2d86028b456d", - "_props": { - "filters": [ - { - "Filter": [ - "5447e1d04bdc2dff2f8b4567" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d721144bdc2d89028b456f" - }, - { - "_name": "FaceCover", - "_id": "55d729e84bdc2d8a028b4569", - "_parent": "55d7217a4bdc2d86028b456d", - "_props": { - "filters": [ - { - "Filter": [ - "5a341c4686f77469e155819e" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "55d721144bdc2d89028b456f" - }, - { - "_name": "Headwear", - "_id": "55d729ef4bdc2d3a168b456c", - "_parent": "55d7217a4bdc2d86028b456d", - "_props": { - "filters": [ - { - "Filter": [ - "5a341c4086f77401f2541505" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "55d721144bdc2d89028b456f" - }, - { - "_name": "TacticalVest", - "_id": "55d729f74bdc2d87028b456e", - "_parent": "55d7217a4bdc2d86028b456d", - "_props": { - "filters": [ - { - "Filter": [ - "5448e5284bdc2dcb718b4567" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d721144bdc2d89028b456f" - }, - { - "_name": "SecuredContainer", - "_id": "55d72a054bdc2d88028b456e", - "_parent": "55d7217a4bdc2d86028b456d", - "_props": { - "filters": [ - { - "Filter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d721144bdc2d89028b456f" - }, - { - "_name": "Backpack", - "_id": "55d72a104bdc2d89028b4571", - "_parent": "55d7217a4bdc2d86028b456d", - "_props": { - "filters": [ - { - "Filter": [ - "5448e53e4bdc2d60728b4567" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d721144bdc2d89028b456f" - }, - { - "_name": "ArmorVest", - "_id": "55d72a194bdc2d86028b456f", - "_parent": "55d7217a4bdc2d86028b456d", - "_props": { - "filters": [ - { - "Filter": [ - "5448e54d4bdc2dcc718b4568" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d721144bdc2d89028b456f" - }, - { - "_name": "Pockets", - "_id": "55d72a274bdc2de3098b456c", - "_parent": "55d7217a4bdc2d86028b456d", - "_props": { - "filters": [ - { - "Filter": [ - "557596e64bdc2dc2118b4571" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d721144bdc2d89028b456f" - }, - { - "_name": "Earpiece", - "_id": "5665b7164bdc2d144c8b4570", - "_parent": "55d7217a4bdc2d86028b456d", - "_props": { - "filters": [ - { - "Filter": [ - "5645bcc04bdc2d363b8b4572", - "5aa2ba71e5b5b000137b758f", - "5b432b965acfc47a8774094e", - "6033fa48ffd42c541047f728", - "5c165d832e2216398b5a7e36", - "5e4d34ca86f774264f758330", - "5f60cd6cf2bcbb675b00dac6", - "628e4e576d783146b124c64d" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "55d721144bdc2d89028b456f" - }, - { - "_name": "Dogtag", - "_id": "59f0be1e86f77453be490939", - "_parent": "55d7217a4bdc2d86028b456d", - "_props": { - "filters": [ - { - "Filter": [ - "59f32bb586f774757e1e8442", - "59f32c3b86f77472a31742f0" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": false, - "_proto": "55d721144bdc2d89028b456f" - }, - { - "_name": "Eyewear", - "_id": "5a0ad9313f1241000e072755", - "_parent": "55d7217a4bdc2d86028b456d", - "_props": { - "filters": [ - { - "Filter": [ - "5448e5724bdc2ddf718b4568" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "55d721144bdc2d89028b456f" - }, - { - "_name": "ArmBand", - "_id": "5b3f583786f77411d552fb2b", - "_parent": "55d7217a4bdc2d86028b456d", - "_props": { - "filters": [ - { - "Filter": [ - "5b3f15d486f77432d0509248" - ] - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "55d721144bdc2d89028b456f" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [] - } - }, - "5910922b86f7747d96753483": { - "_id": "5910922b86f7747d96753483", - "_name": "item_quest_container_carbon_case", - "_parent": "5671435f4bdc2d96058b4569", - "_type": "Item", - "_props": { - "Name": "Carbon case", - "ShortName": "Carbon case", - "Description": "Carbon case", - "Weight": 6, - "BackgroundColor": "yellow", - "Width": 4, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "container_case", - "Prefab": { - "path": "assets/content/items/quest/item_quest_container_carbon_case/item_quest_container_carbon_case.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 100, - "ExamineExperience": 50, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5910922b86f7747d96753484", - "_parent": "5910922b86f7747d96753483", - "_props": { - "filters": [ - { - "Filter": [ - "543be5dd4bdc2deb348b4569" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 4, - "cellsV": 4, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "KeyIds": [ - "5751961824597720a31c09ac" - ], - "TagColor": 0, - "TagName": "" - }, - "_proto": "567143bf4bdc2d1a0f8b4567" - }, - "590dde5786f77405e71908b2": { - "_id": "590dde5786f77405e71908b2", - "_name": "item_quest_container_case_bank", - "_parent": "5671435f4bdc2d96058b4569", - "_type": "Item", - "_props": { - "Name": "Bank case", - "ShortName": "Bank case", - "Description": "Bank case", - "Weight": 7, - "BackgroundColor": "yellow", - "Width": 4, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "container_case", - "Prefab": { - "path": "assets/content/items/quest/item_quest_container_case_bank/item_quest_container_case_bank.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 100, - "ExamineExperience": 50, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "590dde5786f77405e71908b3", - "_parent": "590dde5786f77405e71908b2", - "_props": { - "filters": [ - { - "Filter": [ - "543be5dd4bdc2deb348b4569" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 4, - "cellsV": 4, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "KeyIds": [ - "5751961824597720a31c09ac" - ], - "TagColor": 0, - "TagName": "" - }, - "_proto": "567143bf4bdc2d1a0f8b4567" - }, - "567143bf4bdc2d1a0f8b4567": { - "_id": "567143bf4bdc2d1a0f8b4567", - "_name": "Чемодан", - "_parent": "5671435f4bdc2d96058b4569", - "_type": "Item", - "_props": { - "Name": "Pistol case", - "ShortName": "Pistol case", - "Description": "Pistol case", - "Weight": 0.5, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/pistol_case/item_container_pistol_case.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "56f95c8ad2720bfa308b4581", - "_parent": "567143bf4bdc2d1a0f8b4567", - "_props": { - "filters": [ - { - "Filter": [ - "5448bc234bdc2d3c308b4569", - "620109578d82e67e7911abf2", - "5447b5cf4bdc2d65278b4567", - "624c2e8614da335f1e034d8c", - "61a4c8884f95bc3b2c5dc96f", - "5485a8684bdc2da71d8b4567", - "543be5cb4bdc2deb348b4568", - "633ec7c2a6918cb895019c6c" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 4, - "cellsV": 3, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "KeyIds": [ - "5671446a4bdc2d97058b4569" - ], - "TagColor": 0, - "TagName": "" - } - }, - "5d5d646386f7742797261fd9": { - "_id": "5d5d646386f7742797261fd9", - "_name": "item_equipment_armor_6b3", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "ANA Tactical m2", - "ShortName": "ANA m2", - "Description": "ANA Tactical m2", - "Weight": 8.2, - "BackgroundColor": "default", - "Width": 3, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/armor_6b3/item_equipment_armor_6b3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 753, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "5d5d646386f7742797261fdb", - "_parent": "5d5d646386f7742797261fd9", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "5d5d646386f7742797261fdc", - "_parent": "5d5d646386f7742797261fd9", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "5d5d646386f7742797261fdd", - "_parent": "5d5d646386f7742797261fd9", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "5d5d646386f7742797261fde", - "_parent": "5d5d646386f7742797261fd9", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "5d5d646386f7742797261fdf", - "_parent": "5d5d646386f7742797261fd9", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "5d5d646386f7742797261fe0", - "_parent": "5d5d646386f7742797261fd9", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "7", - "_id": "5d5d65b486f77427997cfaec", - "_parent": "5d5d646386f7742797261fd9", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "8", - "_id": "5d5d65c186f77439eb4c2c57", - "_parent": "5d5d646386f7742797261fd9", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [ - { - "_name": "Soft_armor_front", - "_id": "657652612bc38ef78e076491", - "_parent": "5d5d646386f7742797261fd9", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65764e1e2bc38ef78e076489", - "Filter": [ - "65764e1e2bc38ef78e076489" - ], - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "657652612bc38ef78e076492", - "_parent": "5d5d646386f7742797261fd9", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65764fae2bc38ef78e07648d", - "Filter": [ - "65764fae2bc38ef78e07648d" - ], - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Groin", - "_id": "657652612bc38ef78e076493", - "_parent": "5d5d646386f7742797261fd9", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6576504b526e320fbe035783", - "Filter": [ - "6576504b526e320fbe035783" - ], - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Groin_back", - "_id": "657652612bc38ef78e076494", - "_parent": "5d5d646386f7742797261fd9", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6576500f526e320fbe03577f", - "Filter": [ - "6576500f526e320fbe03577f" - ], - "armorColliders": [ - "PelvisBack" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": true, - "RigLayoutName": "6h112", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0.16, - "ArmorMaterial": "Titan", - "ArmorType": "Heavy", - "speedPenaltyPercent": -5, - "mousePenalty": -1, - "weaponErgonomicPenalty": -7 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, - "5f5f41f56760b4138443b352": { - "_id": "5f5f41f56760b4138443b352", - "_name": "item_equipment_rig_thunderbolt", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "BEAR Rig 6h112", - "ShortName": "Rig 6h112", - "Description": "Rig 6h112", - "Weight": 0.62, - "BackgroundColor": "default", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_thunderbolt/item_equipment_rig_thunderbolt.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "5f5f41f56760b4138443b354", - "_parent": "5f5f41f56760b4138443b352", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "5f5f41f56760b4138443b355", - "_parent": "5f5f41f56760b4138443b352", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "5f5f41f56760b4138443b356", - "_parent": "5f5f41f56760b4138443b352", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "5f5f41f56760b4138443b357", - "_parent": "5f5f41f56760b4138443b352", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "64ad20112b49b454630e0149", - "_parent": "5f5f41f56760b4138443b352", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "64ad20112b49b454630e014a", - "_parent": "5f5f41f56760b4138443b352", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "7", - "_id": "64ad20112b49b454630e014b", - "_parent": "5f5f41f56760b4138443b352", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "8", - "_id": "64ad20112b49b454630e014c", - "_parent": "5f5f41f56760b4138443b352", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "9", - "_id": "64ad20112b49b454630e014d", - "_parent": "5f5f41f56760b4138443b352", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "RigLayoutName": "Thunder_compl", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "None", - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, "592c2d1a86f7746dbe2af32a": { "_id": "592c2d1a86f7746dbe2af32a", "_name": "ana_tactical", @@ -338659,6 +337948,349 @@ }, "_proto": "544a5caa4bdc2d1a388b4568" }, + "5ab8dab586f77441cd04f2a2": { + "_id": "5ab8dab586f77441cd04f2a2", + "_name": "wartech_mk3", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "Wartech mk3", + "ShortName": "Wartech mk3", + "Description": "Wartech mk3", + "Weight": 1.65, + "BackgroundColor": "default", + "Width": 3, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_mk3/item_equipment_rig_mk3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "5ab8dab586f77441cd04f2a4", + "_parent": "5ab8dab586f77441cd04f2a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "5ab8dab586f77441cd04f2a5", + "_parent": "5ab8dab586f77441cd04f2a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "5ab8dab586f77441cd04f2a6", + "_parent": "5ab8dab586f77441cd04f2a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "5ab8dab586f77441cd04f2a7", + "_parent": "5ab8dab586f77441cd04f2a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "5ab8dab586f77441cd04f2a8", + "_parent": "5ab8dab586f77441cd04f2a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "5abe4e0486f7741d8466c586", + "_parent": "5ab8dab586f77441cd04f2a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "7", + "_id": "5abe4e0886f7741d5c5c62c2", + "_parent": "5ab8dab586f77441cd04f2a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "8", + "_id": "5abe4e0c86f774336e424910", + "_parent": "5ab8dab586f77441cd04f2a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "9", + "_id": "5abe4e1086f77422d95bba75", + "_parent": "5ab8dab586f77441cd04f2a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "10", + "_id": "5abe4e1486f77426b30f26cc", + "_parent": "5ab8dab586f77441cd04f2a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "11", + "_id": "5abe4e1886f7741d5c5c62c3", + "_parent": "5ab8dab586f77441cd04f2a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "RigLayoutName": "Wartech MK3", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "None", + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, "61bcc89aef0f505f0c6cd0fc": { "_id": "61bcc89aef0f505f0c6cd0fc", "_name": "item_equipment_rig_strandhogg", @@ -339336,349 +338968,6 @@ }, "_proto": "5648a69d4bdc2ded0b8b457b" }, - "5ab8dab586f77441cd04f2a2": { - "_id": "5ab8dab586f77441cd04f2a2", - "_name": "wartech_mk3", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "Wartech mk3", - "ShortName": "Wartech mk3", - "Description": "Wartech mk3", - "Weight": 1.65, - "BackgroundColor": "default", - "Width": 3, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_mk3/item_equipment_rig_mk3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "5ab8dab586f77441cd04f2a4", - "_parent": "5ab8dab586f77441cd04f2a2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "5ab8dab586f77441cd04f2a5", - "_parent": "5ab8dab586f77441cd04f2a2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "5ab8dab586f77441cd04f2a6", - "_parent": "5ab8dab586f77441cd04f2a2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "5ab8dab586f77441cd04f2a7", - "_parent": "5ab8dab586f77441cd04f2a2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "5ab8dab586f77441cd04f2a8", - "_parent": "5ab8dab586f77441cd04f2a2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "5abe4e0486f7741d8466c586", - "_parent": "5ab8dab586f77441cd04f2a2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "7", - "_id": "5abe4e0886f7741d5c5c62c2", - "_parent": "5ab8dab586f77441cd04f2a2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "8", - "_id": "5abe4e0c86f774336e424910", - "_parent": "5ab8dab586f77441cd04f2a2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "9", - "_id": "5abe4e1086f77422d95bba75", - "_parent": "5ab8dab586f77441cd04f2a2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "10", - "_id": "5abe4e1486f77426b30f26cc", - "_parent": "5ab8dab586f77441cd04f2a2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "11", - "_id": "5abe4e1886f7741d5c5c62c3", - "_parent": "5ab8dab586f77441cd04f2a2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 2, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "RigLayoutName": "Wartech MK3", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "None", - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, "5fd4c5477a8d854fa0105061": { "_id": "5fd4c5477a8d854fa0105061", "_name": "item_equipment_rig_ctactical", @@ -339854,23 +339143,453 @@ }, "_proto": "5648a69d4bdc2ded0b8b457b" }, - "5648a69d4bdc2ded0b8b457b": { - "_id": "5648a69d4bdc2ded0b8b457b", - "_name": "bearRig", + "5c0e746986f7741453628fe5": { + "_id": "5c0e746986f7741453628fe5", + "_name": "item_equipment_rig_tv110", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "tactec", + "ShortName": "tactec", + "Description": "tactec", + "Weight": 3.5, + "BackgroundColor": "default", + "Width": 4, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_tv110/item_equipment_rig_tv110.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 121, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "5c0e746986f7741453628fe7", + "_parent": "5c0e746986f7741453628fe5", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "5c0e746986f7741453628fe8", + "_parent": "5c0e746986f7741453628fe5", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "5c0e746986f7741453628fe9", + "_parent": "5c0e746986f7741453628fe5", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "5c0e746986f7741453628fea", + "_parent": "5c0e746986f7741453628fe5", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "5c0e746986f7741453628feb", + "_parent": "5c0e746986f7741453628fe5", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "5c0e746986f7741453628fec", + "_parent": "5c0e746986f7741453628fe5", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "7", + "_id": "5c0e746986f7741453628fed", + "_parent": "5c0e746986f7741453628fe5", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "8", + "_id": "5c0e746986f7741453628fee", + "_parent": "5c0e746986f7741453628fe5", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "9", + "_id": "5c0e746986f7741453628fef", + "_parent": "5c0e746986f7741453628fe5", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [ + { + "_name": "Front_plate", + "_id": "6570e17a4cc0d2ab1e05ed88", + "_parent": "5c0e746986f7741453628fe5", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fa0fb498d1b7e3e071d9c", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "64afdcb83efdfea28601d041", + "655746010177119f4a097ff7", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "6570e1a20b57c03ec90b96f6", + "_parent": "5c0e746986f7741453628fe5", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fa0fb498d1b7e3e071d9c", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa53d94b480b8a500c0e4", + "656f9fa0498d1b7e3e071d98", + "656fb0bd7c2d57afe200c0dc", + "656fac30c6baea13cd07e10c", + "656fb21fa0dce000a2020f7c", + "656fa61e94b480b8a500c0e8", + "656fad8c498d1b7e3e071da0", + "656fa25e94b480b8a500c0e0", + "64afdcb83efdfea28601d041", + "655746010177119f4a097ff7", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_front", + "_id": "6570e1da0b57c03ec90b96f8", + "_parent": "5c0e746986f7741453628fe5", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6570df294cc0d2ab1e05ed74", + "Filter": [ + "6570df294cc0d2ab1e05ed74" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "6570e1fd0b57c03ec90b96fa", + "_parent": "5c0e746986f7741453628fe5", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6570df9c615f54368b04fca9", + "Filter": [ + "6570df9c615f54368b04fca9" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": true, + "RigLayoutName": "TV-110", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0.35, + "ArmorMaterial": "Aramid", + "ArmorType": "Light", + "speedPenaltyPercent": -1, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "6034cf5fffd42c541047f72e": { + "_id": "6034cf5fffd42c541047f72e", + "_name": "item_equipment_rig_umka_m33", "_parent": "5448e5284bdc2dcb718b4567", "_type": "Item", "_props": { "Name": "BEAR Rig", "ShortName": "BlackRock", "Description": "BlackRock chest rig", - "Weight": 1.8, + "Weight": 1.2, "BackgroundColor": "default", "Width": 3, "Height": 4, "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/rig_blackrock/item_equipment_rig_blackrock.bundle", + "path": "assets/content/items/equipment/rig_umka_m33/item_equipment_rig_umka_m33.bundle", "rcid": "" }, "UsePrefab": { @@ -339917,8 +339636,8 @@ "Grids": [ { "_name": "1", - "_id": "5648a6f44bdc2d3b4c8b4576", - "_parent": "5648a69d4bdc2ded0b8b457b", + "_id": "6034cf5fffd42c541047f730", + "_parent": "6034cf5fffd42c541047f72e", "_props": { "filters": [ { @@ -339941,8 +339660,8 @@ }, { "_name": "2", - "_id": "5648a6f74bdc2d363b8b4576", - "_parent": "5648a69d4bdc2ded0b8b457b", + "_id": "6034cf5fffd42c541047f731", + "_parent": "6034cf5fffd42c541047f72e", "_props": { "filters": [ { @@ -339965,8 +339684,8 @@ }, { "_name": "3", - "_id": "5648a6f94bdc2d16268b4577", - "_parent": "5648a69d4bdc2ded0b8b457b", + "_id": "6034cf5fffd42c541047f732", + "_parent": "6034cf5fffd42c541047f72e", "_props": { "filters": [ { @@ -339989,8 +339708,8 @@ }, { "_name": "4", - "_id": "5648a6fc4bdc2df8348b457f", - "_parent": "5648a69d4bdc2ded0b8b457b", + "_id": "6034cf5fffd42c541047f733", + "_parent": "6034cf5fffd42c541047f72e", "_props": { "filters": [ { @@ -340013,8 +339732,8 @@ }, { "_name": "5", - "_id": "5648a6ff4bdc2d91118b45a3", - "_parent": "5648a69d4bdc2ded0b8b457b", + "_id": "6034cf5fffd42c541047f734", + "_parent": "6034cf5fffd42c541047f72e", "_props": { "filters": [ { @@ -340037,8 +339756,8 @@ }, { "_name": "6", - "_id": "5648a7034bdc2d3d1c8b457c", - "_parent": "5648a69d4bdc2ded0b8b457b", + "_id": "6034cf5fffd42c541047f735", + "_parent": "6034cf5fffd42c541047f72e", "_props": { "filters": [ { @@ -340061,8 +339780,8 @@ }, { "_name": "7", - "_id": "5d67d4f786f774557749dd49", - "_parent": "5648a69d4bdc2ded0b8b457b", + "_id": "6034cf5fffd42c541047f736", + "_parent": "6034cf5fffd42c541047f72e", "_props": { "filters": [ { @@ -340085,8 +339804,8 @@ }, { "_name": "8", - "_id": "5d67d4fe86f774557326afae", - "_parent": "5648a69d4bdc2ded0b8b457b", + "_id": "6034cf5fffd42c541047f737", + "_parent": "6034cf5fffd42c541047f72e", "_props": { "filters": [ { @@ -340109,8 +339828,8 @@ }, { "_name": "9", - "_id": "5d67d50686f774557749dd4a", - "_parent": "5648a69d4bdc2ded0b8b457b", + "_id": "6034cf5fffd42c541047f738", + "_parent": "6034cf5fffd42c541047f72e", "_props": { "filters": [ { @@ -340130,54 +339849,6 @@ "isSortingTable": false }, "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "10", - "_id": "5d67d50e86f774557326afaf", - "_parent": "5648a69d4bdc2ded0b8b457b", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "11", - "_id": "5d67d51e86f774599657f14a", - "_parent": "5648a69d4bdc2ded0b8b457b", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" } ], "Slots": [], @@ -340185,7 +339856,7 @@ "CantRemoveFromSlotsDuringRaid": [], "SearchSound": "looting_body_extended", "BlocksArmorVest": false, - "RigLayoutName": "blackrock", + "RigLayoutName": "umka_m33", "armorZone": [], "armorClass": 0, "BluntThroughput": 0, @@ -340193,7 +339864,7 @@ "ArmorType": "None", "speedPenaltyPercent": -1, "mousePenalty": 0, - "weaponErgonomicPenalty": -1 + "weaponErgonomicPenalty": -2 }, "_proto": "544a5caa4bdc2d1a388b4568" }, @@ -340775,23 +340446,23 @@ }, "_proto": "544a5caa4bdc2d1a388b4568" }, - "5e9db13186f7742f845ee9d3": { - "_id": "5e9db13186f7742f845ee9d3", - "_name": "item_equipment_rig_bearing", + "5c0e6a1586f77404597b4965": { + "_id": "5c0e6a1586f77404597b4965", + "_name": "item_equipment_rig_beltab", "_parent": "5448e5284bdc2dcb718b4567", "_type": "Item", "_props": { - "Name": "commando", - "ShortName": "commando", - "Description": "commando", - "Weight": 1.36, + "Name": "Wartech vest", + "ShortName": "Wartech vest", + "Description": "Wartech vest", + "Weight": 1.7, "BackgroundColor": "default", - "Width": 3, - "Height": 3, + "Width": 4, + "Height": 4, "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/rig_bearing/item_equipment_rig_bearing.bundle", + "path": "assets/content/items/equipment/rig_beltab/item_equipment_rig_beltab.bundle", "rcid": "" }, "UsePrefab": { @@ -340808,7 +340479,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 45, + "LootExperience": 80, "ExamineExperience": 10, "HideEntrails": true, "RepairCost": 0, @@ -340838,8 +340509,8 @@ "Grids": [ { "_name": "1", - "_id": "5e9db13186f7742f845ee9d5", - "_parent": "5e9db13186f7742f845ee9d3", + "_id": "5c0e6a1586f77404597b4967", + "_parent": "5c0e6a1586f77404597b4965", "_props": { "filters": [ { @@ -340851,7 +340522,7 @@ ] } ], - "cellsH": 2, + "cellsH": 1, "cellsV": 2, "minCount": 0, "maxCount": 0, @@ -340862,8 +340533,8 @@ }, { "_name": "2", - "_id": "5e9db13186f7742f845ee9d6", - "_parent": "5e9db13186f7742f845ee9d3", + "_id": "5c0e6a1586f77404597b4968", + "_parent": "5c0e6a1586f77404597b4965", "_props": { "filters": [ { @@ -340875,7 +340546,7 @@ ] } ], - "cellsH": 2, + "cellsH": 1, "cellsV": 2, "minCount": 0, "maxCount": 0, @@ -340886,8 +340557,8 @@ }, { "_name": "3", - "_id": "5e9db13186f7742f845ee9d7", - "_parent": "5e9db13186f7742f845ee9d3", + "_id": "5c0e6a1586f77404597b4969", + "_parent": "5c0e6a1586f77404597b4965", "_props": { "filters": [ { @@ -340910,8 +340581,8 @@ }, { "_name": "4", - "_id": "5e9db13186f7742f845ee9d8", - "_parent": "5e9db13186f7742f845ee9d3", + "_id": "5c0e6a1586f77404597b496a", + "_parent": "5c0e6a1586f77404597b4965", "_props": { "filters": [ { @@ -340934,8 +340605,8 @@ }, { "_name": "5", - "_id": "5e9db13186f7742f845ee9d9", - "_parent": "5e9db13186f7742f845ee9d3", + "_id": "5c0e6a1586f77404597b496b", + "_parent": "5c0e6a1586f77404597b4965", "_props": { "filters": [ { @@ -340958,8 +340629,8 @@ }, { "_name": "6", - "_id": "5e9db13186f7742f845ee9da", - "_parent": "5e9db13186f7742f845ee9d3", + "_id": "5c0e7ea986f774684264bd80", + "_parent": "5c0e6a1586f77404597b4965", "_props": { "filters": [ { @@ -340982,8 +340653,8 @@ }, { "_name": "7", - "_id": "5e9db13186f7742f845ee9db", - "_parent": "5e9db13186f7742f845ee9d3", + "_id": "5c0e7eba86f77443a74d2973", + "_parent": "5c0e6a1586f77404597b4965", "_props": { "filters": [ { @@ -341006,8 +340677,272 @@ }, { "_name": "8", - "_id": "5e9db13186f7742f845ee9dc", - "_parent": "5e9db13186f7742f845ee9d3", + "_id": "5c0e7ebe86f77452b35dc6e2", + "_parent": "5c0e6a1586f77404597b4965", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "9", + "_id": "5c0e7ec186f77468413cc5c8", + "_parent": "5c0e6a1586f77404597b4965", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "10", + "_id": "5c0e7ec886f774684046efa3", + "_parent": "5c0e6a1586f77404597b4965", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "11", + "_id": "5c0e7ed686f77468433e062f", + "_parent": "5c0e6a1586f77404597b4965", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "12", + "_id": "5c0e7eda86f7745dc7616602", + "_parent": "5c0e6a1586f77404597b4965", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "13", + "_id": "5c0e7edf86f774683f3dd636", + "_parent": "5c0e6a1586f77404597b4965", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "14", + "_id": "5c0e7ee386f77443a74d2974", + "_parent": "5c0e6a1586f77404597b4965", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "15", + "_id": "5c0e7ee786f77443a74d2975", + "_parent": "5c0e6a1586f77404597b4965", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "16", + "_id": "5c0e7eeb86f7745dc7616603", + "_parent": "5c0e6a1586f77404597b4965", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "17", + "_id": "5c0e7eef86f77452b35dc6e3", + "_parent": "5c0e6a1586f77404597b4965", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "18", + "_id": "5c0e7ef486f774684264bd81", + "_parent": "5c0e6a1586f77404597b4965", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "19", + "_id": "5c0e7ef886f7745dc7616604", + "_parent": "5c0e6a1586f77404597b4965", "_props": { "filters": [ { @@ -341034,35 +340969,35 @@ "CantRemoveFromSlotsDuringRaid": [], "SearchSound": "looting_body_extended", "BlocksArmorVest": false, - "RigLayoutName": "Bearing", + "RigLayoutName": "Beltab", "armorZone": [], "armorClass": 0, "BluntThroughput": 0, "ArmorMaterial": "UHMWPE", "ArmorType": "None", - "speedPenaltyPercent": 0, + "speedPenaltyPercent": -1, "mousePenalty": 0, - "weaponErgonomicPenalty": 0 + "weaponErgonomicPenalty": -2 }, "_proto": "544a5caa4bdc2d1a388b4568" }, - "63611865ba5b90db0c0399d1": { - "_id": "63611865ba5b90db0c0399d1", - "_name": "item_equipment_rig_boss_zryachi", + "5d5d646386f7742797261fd9": { + "_id": "5d5d646386f7742797261fd9", + "_name": "item_equipment_armor_6b3", "_parent": "5448e5284bdc2dcb718b4567", "_type": "Item", "_props": { - "Name": "BEAR Rig 6h112", - "ShortName": "Rig 6h112", - "Description": "Rig 6h112", - "Weight": 1.7, + "Name": "ANA Tactical m2", + "ShortName": "ANA m2", + "Description": "ANA Tactical m2", + "Weight": 8.2, "BackgroundColor": "default", - "Width": 4, - "Height": 3, + "Width": 3, + "Height": 4, "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/rig_boss_zryachi/item_equipment_rig_boss_zryachi.bundle", + "path": "assets/content/items/equipment/armor_6b3/item_equipment_armor_6b3.bundle", "rcid": "" }, "UsePrefab": { @@ -341071,7 +341006,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": false, + "ExaminedByDefault": true, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -341080,9 +341015,9 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 60, - "ExamineExperience": 100, + "ExamineExperience": 10, "HideEntrails": true, - "RepairCost": 0, + "RepairCost": 753, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -341109,8 +341044,8 @@ "Grids": [ { "_name": "1", - "_id": "63611865ba5b90db0c0399d2", - "_parent": "63611865ba5b90db0c0399d1", + "_id": "5d5d646386f7742797261fdb", + "_parent": "5d5d646386f7742797261fd9", "_props": { "filters": [ { @@ -341133,8 +341068,8 @@ }, { "_name": "2", - "_id": "63611865ba5b90db0c0399d3", - "_parent": "63611865ba5b90db0c0399d1", + "_id": "5d5d646386f7742797261fdc", + "_parent": "5d5d646386f7742797261fd9", "_props": { "filters": [ { @@ -341157,8 +341092,8 @@ }, { "_name": "3", - "_id": "63611865ba5b90db0c0399d4", - "_parent": "63611865ba5b90db0c0399d1", + "_id": "5d5d646386f7742797261fdd", + "_parent": "5d5d646386f7742797261fd9", "_props": { "filters": [ { @@ -341181,8 +341116,8 @@ }, { "_name": "4", - "_id": "63611865ba5b90db0c0399d5", - "_parent": "63611865ba5b90db0c0399d1", + "_id": "5d5d646386f7742797261fde", + "_parent": "5d5d646386f7742797261fd9", "_props": { "filters": [ { @@ -341205,8 +341140,8 @@ }, { "_name": "5", - "_id": "63611865ba5b90db0c0399d6", - "_parent": "63611865ba5b90db0c0399d1", + "_id": "5d5d646386f7742797261fdf", + "_parent": "5d5d646386f7742797261fd9", "_props": { "filters": [ { @@ -341229,8 +341164,8 @@ }, { "_name": "6", - "_id": "63611865ba5b90db0c0399d7", - "_parent": "63611865ba5b90db0c0399d1", + "_id": "5d5d646386f7742797261fe0", + "_parent": "5d5d646386f7742797261fd9", "_props": { "filters": [ { @@ -341253,8 +341188,8 @@ }, { "_name": "7", - "_id": "63611865ba5b90db0c0399d8", - "_parent": "63611865ba5b90db0c0399d1", + "_id": "5d5d65b486f77427997cfaec", + "_parent": "5d5d646386f7742797261fd9", "_props": { "filters": [ { @@ -341277,8 +341212,8 @@ }, { "_name": "8", - "_id": "63611865ba5b90db0c0399d9", - "_parent": "63611865ba5b90db0c0399d1", + "_id": "5d5d65c186f77439eb4c2c57", + "_parent": "5d5d646386f7742797261fd9", "_props": { "filters": [ { @@ -341300,195 +341235,119 @@ "_proto": "55d329c24bdc2d892f8b4567" } ], - "Slots": [], + "Slots": [ + { + "_name": "Soft_armor_front", + "_id": "657652612bc38ef78e076491", + "_parent": "5d5d646386f7742797261fd9", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65764e1e2bc38ef78e076489", + "Filter": [ + "65764e1e2bc38ef78e076489" + ], + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "657652612bc38ef78e076492", + "_parent": "5d5d646386f7742797261fd9", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65764fae2bc38ef78e07648d", + "Filter": [ + "65764fae2bc38ef78e07648d" + ], + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Groin", + "_id": "657652612bc38ef78e076493", + "_parent": "5d5d646386f7742797261fd9", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6576504b526e320fbe035783", + "Filter": [ + "6576504b526e320fbe035783" + ], + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Groin_back", + "_id": "657652612bc38ef78e076494", + "_parent": "5d5d646386f7742797261fd9", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6576500f526e320fbe03577f", + "Filter": [ + "6576500f526e320fbe03577f" + ], + "armorColliders": [ + "PelvisBack" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, + "BlocksArmorVest": true, "RigLayoutName": "6h112", "armorZone": [], "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "Light", - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, - "5fd4c4fa16cac650092f6771": { - "_id": "5fd4c4fa16cac650092f6771", - "_name": "item_equipment_rig_idea", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "BEAR Rig 6h112", - "ShortName": "Rig 6h112", - "Description": "Rig 6h112", - "Weight": 0.22, - "BackgroundColor": "default", - "Width": 3, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_idea/item_equipment_rig_idea.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "5fd4c4fa16cac650092f6773", - "_parent": "5fd4c4fa16cac650092f6771", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "5fd4c4fa16cac650092f6774", - "_parent": "5fd4c4fa16cac650092f6771", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "5fd4c4fa16cac650092f6775", - "_parent": "5fd4c4fa16cac650092f6771", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "5fd4c4fa16cac650092f6776", - "_parent": "5fd4c4fa16cac650092f6771", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "RigLayoutName": "bank_robber", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "None", - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 + "BluntThroughput": 0.16, + "ArmorMaterial": "Titan", + "ArmorType": "Heavy", + "speedPenaltyPercent": -5, + "mousePenalty": -1, + "weaponErgonomicPenalty": -7 }, "_proto": "544a5caa4bdc2d1a388b4568" }, @@ -341763,23 +341622,397 @@ }, "_proto": "544a5caa4bdc2d1a388b4568" }, - "603648ff5a45383c122086ac": { - "_id": "603648ff5a45383c122086ac", - "_name": "item_equipment_rig_azimut_black", + "59e7643b86f7742cbf2c109a": { + "_id": "59e7643b86f7742cbf2c109a", + "_name": "wartech_vest", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "Wartech vest", + "ShortName": "Wartech vest", + "Description": "Wartech vest", + "Weight": 1.8, + "BackgroundColor": "default", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_tv109/item_equipment_rig_tv109.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "59e7643b86f7742cbf2c109b", + "_parent": "59e7643b86f7742cbf2c109a", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "59e7643b86f7742cbf2c109c", + "_parent": "59e7643b86f7742cbf2c109a", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "59e7643b86f7742cbf2c109d", + "_parent": "59e7643b86f7742cbf2c109a", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "59e7643b86f7742cbf2c109e", + "_parent": "59e7643b86f7742cbf2c109a", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "59e7643b86f7742cbf2c109f", + "_parent": "59e7643b86f7742cbf2c109a", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "RigLayoutName": "Wartech Rig", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "None", + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "572b7adb24597762ae139821": { + "_id": "572b7adb24597762ae139821", + "_name": "wild_vest", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "Wild Vest", + "ShortName": "Wild Vest", + "Description": "Wild Vest", + "Weight": 0.4, + "BackgroundColor": "default", + "Width": 2, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_vestwild/item_equipment_rig_vestwild.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 2, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "583813ed2459777779793e81", + "_parent": "572b7adb24597762ae139821", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "5838153b2459777781082b73", + "_parent": "572b7adb24597762ae139821", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "5838154324597776891e38f1", + "_parent": "572b7adb24597762ae139821", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "5838155324597776891e38f2", + "_parent": "572b7adb24597762ae139821", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "RigLayoutName": "Wild Wild Vest", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "None", + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5648a69d4bdc2ded0b8b457b" + }, + "5b44c8ea86f7742d1627baf1": { + "_id": "5b44c8ea86f7742d1627baf1", + "_name": "item_equipment_rig_commando", "_parent": "5448e5284bdc2dcb718b4567", "_type": "Item", "_props": { "Name": "commando", "ShortName": "commando", "Description": "commando", - "Weight": 1.6, + "Weight": 1.35, "BackgroundColor": "default", "Width": 4, "Height": 3, "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/rig_azimut/item_equipment_rig_azimut_black.bundle", + "path": "assets/content/items/equipment/rig_commando/item_equipment_rig_commando.bundle", "rcid": "" }, "UsePrefab": { @@ -341826,8 +342059,8 @@ "Grids": [ { "_name": "1", - "_id": "603648ff5a45383c122086ae", - "_parent": "603648ff5a45383c122086ac", + "_id": "5b44c8ea86f7742d1627baf3", + "_parent": "5b44c8ea86f7742d1627baf1", "_props": { "filters": [ { @@ -341850,8 +342083,8 @@ }, { "_name": "2", - "_id": "603648ff5a45383c122086af", - "_parent": "603648ff5a45383c122086ac", + "_id": "5b44c8ea86f7742d1627baf4", + "_parent": "5b44c8ea86f7742d1627baf1", "_props": { "filters": [ { @@ -341874,8 +342107,8 @@ }, { "_name": "3", - "_id": "603648ff5a45383c122086b0", - "_parent": "603648ff5a45383c122086ac", + "_id": "5b44c8ea86f7742d1627baf5", + "_parent": "5b44c8ea86f7742d1627baf1", "_props": { "filters": [ { @@ -341898,8 +342131,8 @@ }, { "_name": "4", - "_id": "603648ff5a45383c122086b1", - "_parent": "603648ff5a45383c122086ac", + "_id": "5b44c8ea86f7742d1627baf6", + "_parent": "5b44c8ea86f7742d1627baf1", "_props": { "filters": [ { @@ -341922,8 +342155,8 @@ }, { "_name": "5", - "_id": "603648ff5a45383c122086b2", - "_parent": "603648ff5a45383c122086ac", + "_id": "5b44c8ea86f7742d1627baf7", + "_parent": "5b44c8ea86f7742d1627baf1", "_props": { "filters": [ { @@ -341946,8 +342179,8 @@ }, { "_name": "6", - "_id": "603648ff5a45383c122086b3", - "_parent": "603648ff5a45383c122086ac", + "_id": "5b44c8ea86f7742d1627baf8", + "_parent": "5b44c8ea86f7742d1627baf1", "_props": { "filters": [ { @@ -341970,8 +342203,8 @@ }, { "_name": "7", - "_id": "603648ff5a45383c122086b4", - "_parent": "603648ff5a45383c122086ac", + "_id": "5b44c8ea86f7742d1627baf9", + "_parent": "5b44c8ea86f7742d1627baf1", "_props": { "filters": [ { @@ -341994,56 +342227,8 @@ }, { "_name": "8", - "_id": "603649005a45383c122086b5", - "_parent": "603648ff5a45383c122086ac", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "9", - "_id": "6038bf3ab847c71012789413", - "_parent": "603648ff5a45383c122086ac", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "10", - "_id": "6038bf52d10cbf667352dd43", - "_parent": "603648ff5a45383c122086ac", + "_id": "5b44c8ea86f7742d1627bafa", + "_parent": "5b44c8ea86f7742d1627baf1", "_props": { "filters": [ { @@ -342070,35 +342255,35 @@ "CantRemoveFromSlotsDuringRaid": [], "SearchSound": "looting_body_extended", "BlocksArmorVest": false, - "RigLayoutName": "azimut1", + "RigLayoutName": "Commando", "armorZone": [], "armorClass": 0, "BluntThroughput": 0, "ArmorMaterial": "UHMWPE", "ArmorType": "None", - "speedPenaltyPercent": -2, + "speedPenaltyPercent": 0, "mousePenalty": 0, - "weaponErgonomicPenalty": -2 + "weaponErgonomicPenalty": 0 }, "_proto": "544a5caa4bdc2d1a388b4568" }, - "628dc750b910320f4c27a732": { - "_id": "628dc750b910320f4c27a732", - "_name": "item_equipment_rig_bae_rbav_af", + "5e4abfed86f77406a2713cf7": { + "_id": "5e4abfed86f77406a2713cf7", + "_name": "item_equipment_rig_tarzan", "_parent": "5448e5284bdc2dcb718b4567", "_type": "Item", "_props": { - "Name": "tactec", - "ShortName": "tactec", - "Description": "tactec", - "Weight": 2.65, + "Name": "BEAR Rig 6h112", + "ShortName": "Rig 6h112", + "Description": "Rig 6h112", + "Weight": 1.45, "BackgroundColor": "default", - "Width": 3, - "Height": 4, + "Width": 4, + "Height": 3, "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/rig_bae_rbav_af/item_equipment_rig_bae_rbav_af.bundle", + "path": "assets/content/items/equipment/rig_tarzan/cr_tarzan.bundle", "rcid": "" }, "UsePrefab": { @@ -342118,7 +342303,7 @@ "LootExperience": 60, "ExamineExperience": 10, "HideEntrails": true, - "RepairCost": 500, + "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -342145,8 +342330,8 @@ "Grids": [ { "_name": "1", - "_id": "628dc750b910320f4c27a733", - "_parent": "628dc750b910320f4c27a732", + "_id": "5e4abfed86f77406a2713cf9", + "_parent": "5e4abfed86f77406a2713cf7", "_props": { "filters": [ { @@ -342159,7 +342344,7 @@ } ], "cellsH": 1, - "cellsV": 3, + "cellsV": 2, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -342169,8 +342354,8 @@ }, { "_name": "2", - "_id": "628dc750b910320f4c27a734", - "_parent": "628dc750b910320f4c27a732", + "_id": "5e4abfed86f77406a2713cfa", + "_parent": "5e4abfed86f77406a2713cf7", "_props": { "filters": [ { @@ -342183,7 +342368,7 @@ } ], "cellsH": 1, - "cellsV": 3, + "cellsV": 2, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -342193,8 +342378,8 @@ }, { "_name": "3", - "_id": "628dc750b910320f4c27a735", - "_parent": "628dc750b910320f4c27a732", + "_id": "5e4abfed86f77406a2713cfb", + "_parent": "5e4abfed86f77406a2713cf7", "_props": { "filters": [ { @@ -342207,7 +342392,7 @@ } ], "cellsH": 1, - "cellsV": 3, + "cellsV": 2, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -342217,8 +342402,8 @@ }, { "_name": "4", - "_id": "628dc750b910320f4c27a736", - "_parent": "628dc750b910320f4c27a732", + "_id": "5e4abfed86f77406a2713cfc", + "_parent": "5e4abfed86f77406a2713cf7", "_props": { "filters": [ { @@ -342231,7 +342416,7 @@ } ], "cellsH": 1, - "cellsV": 1, + "cellsV": 2, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -342241,8 +342426,8 @@ }, { "_name": "5", - "_id": "628dc750b910320f4c27a737", - "_parent": "628dc750b910320f4c27a732", + "_id": "5e4abfed86f77406a2713cfd", + "_parent": "5e4abfed86f77406a2713cf7", "_props": { "filters": [ { @@ -342265,8 +342450,8 @@ }, { "_name": "6", - "_id": "628dc750b910320f4c27a738", - "_parent": "628dc750b910320f4c27a732", + "_id": "5e4abfed86f77406a2713cfe", + "_parent": "5e4abfed86f77406a2713cf7", "_props": { "filters": [ { @@ -342289,8 +342474,8 @@ }, { "_name": "7", - "_id": "628dc750b910320f4c27a739", - "_parent": "628dc750b910320f4c27a732", + "_id": "5e4abfed86f77406a2713cff", + "_parent": "5e4abfed86f77406a2713cf7", "_props": { "filters": [ { @@ -342313,8 +342498,8 @@ }, { "_name": "8", - "_id": "628dc750b910320f4c27a73a", - "_parent": "628dc750b910320f4c27a732", + "_id": "5e4abfed86f77406a2713d00", + "_parent": "5e4abfed86f77406a2713cf7", "_props": { "filters": [ { @@ -342326,8 +342511,8 @@ ] } ], - "cellsH": 2, - "cellsV": 2, + "cellsH": 1, + "cellsV": 1, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -342337,8 +342522,8 @@ }, { "_name": "9", - "_id": "628e251b83ec92260c0f43b9", - "_parent": "628dc750b910320f4c27a732", + "_id": "64ad1fc6ca4a7252a60efbab", + "_parent": "5e4abfed86f77406a2713cf7", "_props": { "filters": [ { @@ -342361,8 +342546,8 @@ }, { "_name": "10", - "_id": "628e254dee8bd3551830ab89", - "_parent": "628dc750b910320f4c27a732", + "_id": "64ad1fc6ca4a7252a60efbac", + "_parent": "5e4abfed86f77406a2713cf7", "_props": { "filters": [ { @@ -342384,11 +342569,577 @@ "_proto": "55d329c24bdc2d892f8b4567" } ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "RigLayoutName": "Tarzan", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "None", + "speedPenaltyPercent": -1, + "mousePenalty": 0, + "weaponErgonomicPenalty": -2 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "5ca20abf86f77418567a43f2": { + "_id": "5ca20abf86f77418567a43f2", + "_name": "item_equipment_rig_triton", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "commando", + "ShortName": "commando", + "Description": "commando", + "Weight": 1.3, + "BackgroundColor": "default", + "Width": 4, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_triton/item_equipment_rig_triton.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "5ca20abf86f77418567a43f4", + "_parent": "5ca20abf86f77418567a43f2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "5ca20abf86f77418567a43f5", + "_parent": "5ca20abf86f77418567a43f2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "5ca20abf86f77418567a43f6", + "_parent": "5ca20abf86f77418567a43f2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "5ca20abf86f77418567a43f7", + "_parent": "5ca20abf86f77418567a43f2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "5ca20abf86f77418567a43f8", + "_parent": "5ca20abf86f77418567a43f2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "5ca20abf86f77418567a43f9", + "_parent": "5ca20abf86f77418567a43f2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "7", + "_id": "5ca20abf86f77418567a43fa", + "_parent": "5ca20abf86f77418567a43f2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "8", + "_id": "5ca20abf86f77418567a43fb", + "_parent": "5ca20abf86f77418567a43f2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "RigLayoutName": "Commando", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "None", + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": -1 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "5ab8dced86f774646209ec87": { + "_id": "5ab8dced86f774646209ec87", + "_name": "ana_tactical_m2", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "ANA Tactical m2", + "ShortName": "ANA m2", + "Description": "ANA Tactical m2", + "Weight": 2.25, + "BackgroundColor": "default", + "Width": 4, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_m2/item_equipment_rig_m2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 80, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 108, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "5ab8dced86f774646209ec89", + "_parent": "5ab8dced86f774646209ec87", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "5ab8dced86f774646209ec8a", + "_parent": "5ab8dced86f774646209ec87", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "5ab8dced86f774646209ec8b", + "_parent": "5ab8dced86f774646209ec87", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "5ab8dced86f774646209ec8c", + "_parent": "5ab8dced86f774646209ec87", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "5ab8dced86f774646209ec8d", + "_parent": "5ab8dced86f774646209ec87", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "5ab8dced86f774646209ec8e", + "_parent": "5ab8dced86f774646209ec87", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "7", + "_id": "5ab8dced86f774646209ec8f", + "_parent": "5ab8dced86f774646209ec87", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "8", + "_id": "5ab8dced86f774646209ec90", + "_parent": "5ab8dced86f774646209ec87", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "9", + "_id": "5abe4df086f77436271eace7", + "_parent": "5ab8dced86f774646209ec87", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], "Slots": [ { "_name": "Front_plate", - "_id": "6572f3360103b4a3270332e4", - "_parent": "628dc750b910320f4c27a732", + "_id": "6570f846d3eefd23430f8c6b", + "_parent": "5ab8dced86f774646209ec87", "_props": { "filters": [ { @@ -342412,7 +343163,9 @@ "656f9fa0498d1b7e3e071d98", "656fa53d94b480b8a500c0e4", "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" + "64afdcb83efdfea28601d041", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38" ], "armorColliders": [], "armorPlateColliders": [ @@ -342428,8 +343181,8 @@ }, { "_name": "Back_plate", - "_id": "6572f3360103b4a3270332e5", - "_parent": "628dc750b910320f4c27a732", + "_id": "6570f86f4c65ab77a6015127", + "_parent": "5ab8dced86f774646209ec87", "_props": { "filters": [ { @@ -342442,18 +343195,20 @@ "656fae5f7c2d57afe200c0d7", "656faf0ca0dce000a2020f77", "656fa0fb498d1b7e3e071d9c", - "656fa76500d62bcd2e024080", "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", "656fa61e94b480b8a500c0e8", + "656fad8c498d1b7e3e071da0", "656fb21fa0dce000a2020f7c", "656fac30c6baea13cd07e10c", "656fb0bd7c2d57afe200c0dc", - "656fa53d94b480b8a500c0e4", "656f9fa0498d1b7e3e071d98", - "64afdcb83efdfea28601d041", - "655746010177119f4a097ff7" + "656fa53d94b480b8a500c0e4", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" ], "armorColliders": [], "armorPlateColliders": [ @@ -342469,8 +343224,8 @@ }, { "_name": "Left_side_plate", - "_id": "6572f3360103b4a3270332e6", - "_parent": "628dc750b910320f4c27a732", + "_id": "6570f89d584a51c23e0324f8", + "_parent": "5ab8dced86f774646209ec87", "_props": { "filters": [ { @@ -342495,8 +343250,8 @@ }, { "_name": "Right_side_plate", - "_id": "6572f3360103b4a3270332e7", - "_parent": "628dc750b910320f4c27a732", + "_id": "6570f8c54c65ab77a601512a", + "_parent": "5ab8dced86f774646209ec87", "_props": { "filters": [ { @@ -342521,19 +343276,19 @@ }, { "_name": "Soft_armor_front", - "_id": "6572f3360103b4a3270332e8", - "_parent": "628dc750b910320f4c27a732", + "_id": "6570f96f584a51c23e0324fb", + "_parent": "5ab8dced86f774646209ec87", "_props": { "filters": [ { "locked": true, - "Plate": "6572f1ca4c8d903cc60c874e", + "Plate": "6570f6e774d84423df065f21", "Filter": [ - "6572f1ca4c8d903cc60c874e" + "6570f6e774d84423df065f21" ], "armorColliders": [ - "RibcageLow", - "RibcageUp" + "RibcageUp", + "RibcageLow" ], "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false @@ -342546,19 +343301,19 @@ }, { "_name": "Soft_armor_back", - "_id": "6572f3360103b4a3270332e9", - "_parent": "628dc750b910320f4c27a732", + "_id": "6570f96f584a51c23e0324fc", + "_parent": "5ab8dced86f774646209ec87", "_props": { "filters": [ { "locked": true, - "Plate": "6572f1d60103b4a3270332db", + "Plate": "6570f71dd67d0309980a7af8", "Filter": [ - "6572f1d60103b4a3270332db" + "6570f71dd67d0309980a7af8" ], "armorColliders": [ - "SpineTop", - "SpineDown" + "SpineDown", + "SpineTop" ], "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false @@ -342571,15 +343326,15 @@ }, { "_name": "Soft_armor_left", - "_id": "6572f3360103b4a3270332ea", - "_parent": "628dc750b910320f4c27a732", + "_id": "6570f96f584a51c23e0324fd", + "_parent": "5ab8dced86f774646209ec87", "_props": { "filters": [ { "locked": true, - "Plate": "6572f1e10103b4a3270332df", + "Plate": "6570f74774d84423df065f25", "Filter": [ - "6572f1e10103b4a3270332df" + "6570f74774d84423df065f25" ], "armorColliders": [ "LeftSideChestDown" @@ -342595,15 +343350,15 @@ }, { "_name": "soft_armor_right", - "_id": "6572f3360103b4a3270332eb", - "_parent": "628dc750b910320f4c27a732", + "_id": "6570f96f584a51c23e0324fe", + "_parent": "5ab8dced86f774646209ec87", "_props": { "filters": [ { "locked": true, - "Plate": "6572f1edea457732140ce875", + "Plate": "6570f79c4c65ab77a6015121", "Filter": [ - "6572f1edea457732140ce875" + "6570f79c4c65ab77a6015121" ], "armorColliders": [ "RightSideChestDown" @@ -342616,65 +343371,41 @@ "_required": true, "_mergeSlotWithChildren": true, "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Groin", - "_id": "6572f3360103b4a3270332ec", - "_parent": "628dc750b910320f4c27a732", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6572f1f7ea457732140ce879", - "Filter": [ - "6572f1f7ea457732140ce879" - ], - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" } ], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "SearchSound": "looting_body_extended", "BlocksArmorVest": true, - "RigLayoutName": "rbaf_af", + "RigLayoutName": "ANA Tactical M2", "armorZone": [], "armorClass": 0, - "BluntThroughput": 0.2, + "BluntThroughput": 0.35, "ArmorMaterial": "Aramid", "ArmorType": "Light", "speedPenaltyPercent": -2, "mousePenalty": 0, - "weaponErgonomicPenalty": -1 + "weaponErgonomicPenalty": 0 }, "_proto": "544a5caa4bdc2d1a388b4568" }, - "5c0e3eb886f7742015526062": { - "_id": "5c0e3eb886f7742015526062", - "_name": "item_equipment_rig_6b5_khaki", + "5e4abc1f86f774069619fbaa": { + "_id": "5e4abc1f86f774069619fbaa", + "_name": "item_equipment_rig_bankrobber", "_parent": "5448e5284bdc2dcb718b4567", "_type": "Item", "_props": { - "Name": "ANA Tactical m2", - "ShortName": "ANA m2", - "Description": "ANA Tactical m2", - "Weight": 7.1, + "Name": "BEAR Rig 6h112", + "ShortName": "Rig 6h112", + "Description": "Rig 6h112", + "Weight": 0.7, "BackgroundColor": "default", "Width": 3, - "Height": 4, + "Height": 2, "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/armor_6b5/item_equipment_rig_6b5_khaki.bundle", + "path": "assets/content/items/equipment/rig_bankrobber/cr_bankrobber.bundle", "rcid": "" }, "UsePrefab": { @@ -342691,10 +343422,10 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 60, + "LootExperience": 30, "ExamineExperience": 10, "HideEntrails": true, - "RepairCost": 528, + "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -342721,8 +343452,8 @@ "Grids": [ { "_name": "1", - "_id": "5c0e3eb886f7742015526064", - "_parent": "5c0e3eb886f7742015526062", + "_id": "5e4abc1f86f774069619fbac", + "_parent": "5e4abc1f86f774069619fbaa", "_props": { "filters": [ { @@ -342745,8 +343476,8 @@ }, { "_name": "2", - "_id": "5c0e3eb886f7742015526065", - "_parent": "5c0e3eb886f7742015526062", + "_id": "5e4abc1f86f774069619fbad", + "_parent": "5e4abc1f86f774069619fbaa", "_props": { "filters": [ { @@ -342769,8 +343500,8 @@ }, { "_name": "3", - "_id": "5c0e3eb886f7742015526066", - "_parent": "5c0e3eb886f7742015526062", + "_id": "5e4abc1f86f774069619fbae", + "_parent": "5e4abc1f86f774069619fbaa", "_props": { "filters": [ { @@ -342793,8 +343524,8 @@ }, { "_name": "4", - "_id": "5c0e3eb886f7742015526067", - "_parent": "5c0e3eb886f7742015526062", + "_id": "5e4abc1f86f774069619fbaf", + "_parent": "5e4abc1f86f774069619fbaa", "_props": { "filters": [ { @@ -342814,190 +343545,42 @@ "isSortingTable": false }, "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "5c0e3eb886f7742015526068", - "_parent": "5c0e3eb886f7742015526062", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "5c0e3eb886f7742015526069", - "_parent": "5c0e3eb886f7742015526062", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [ - { - "_name": "Soft_armor_front", - "_id": "6576534de6d5dd75f40688ac", - "_parent": "5c0e3eb886f7742015526062", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65764a4cd8537eb26a0355ee", - "Filter": [ - "65764a4cd8537eb26a0355ee" - ], - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "6576534de6d5dd75f40688ad", - "_parent": "5c0e3eb886f7742015526062", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65764bc22bc38ef78e076485", - "Filter": [ - "65764bc22bc38ef78e076485" - ], - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Collar", - "_id": "6576534de6d5dd75f40688ae", - "_parent": "5c0e3eb886f7742015526062", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65764c39526e320fbe035777", - "Filter": [ - "65764c39526e320fbe035777" - ], - "armorColliders": [ - "NeckFront", - "NeckBack" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Groin", - "_id": "6576534de6d5dd75f40688af", - "_parent": "5c0e3eb886f7742015526062", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65764c6b526e320fbe03577b", - "Filter": [ - "65764c6b526e320fbe03577b" - ], - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" } ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "SearchSound": "looting_body_extended", - "BlocksArmorVest": true, - "RigLayoutName": "6b5", + "BlocksArmorVest": false, + "RigLayoutName": "bank_robber", "armorZone": [], "armorClass": 0, - "BluntThroughput": 0.16, - "ArmorMaterial": "Titan", - "ArmorType": "Heavy", - "speedPenaltyPercent": -4, - "mousePenalty": -1, - "weaponErgonomicPenalty": -6 + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "None", + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 }, "_proto": "544a5caa4bdc2d1a388b4568" }, - "61bc85697113f767765c7fe7": { - "_id": "61bc85697113f767765c7fe7", - "_name": "item_equipment_rig_mmac", + "5f5f41f56760b4138443b352": { + "_id": "5f5f41f56760b4138443b352", + "_name": "item_equipment_rig_thunderbolt", "_parent": "5448e5284bdc2dcb718b4567", "_type": "Item", "_props": { - "Name": "tactec", - "ShortName": "tactec", - "Description": "tactec", - "Weight": 2.83, + "Name": "BEAR Rig 6h112", + "ShortName": "Rig 6h112", + "Description": "Rig 6h112", + "Weight": 0.62, "BackgroundColor": "default", "Width": 3, "Height": 3, "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/rig_mmac/item_equipment_rig_mmac.bundle", + "path": "assets/content/items/equipment/rig_thunderbolt/item_equipment_rig_thunderbolt.bundle", "rcid": "" }, "UsePrefab": { @@ -343017,7 +343600,7 @@ "LootExperience": 45, "ExamineExperience": 10, "HideEntrails": true, - "RepairCost": 561, + "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -343044,8 +343627,8 @@ "Grids": [ { "_name": "1", - "_id": "61bc85697113f767765c7fe9", - "_parent": "61bc85697113f767765c7fe7", + "_id": "5f5f41f56760b4138443b354", + "_parent": "5f5f41f56760b4138443b352", "_props": { "filters": [ { @@ -343068,8 +343651,8 @@ }, { "_name": "2", - "_id": "61bc85697113f767765c7fea", - "_parent": "61bc85697113f767765c7fe7", + "_id": "5f5f41f56760b4138443b355", + "_parent": "5f5f41f56760b4138443b352", "_props": { "filters": [ { @@ -343092,8 +343675,8 @@ }, { "_name": "3", - "_id": "61bc85697113f767765c7feb", - "_parent": "61bc85697113f767765c7fe7", + "_id": "5f5f41f56760b4138443b356", + "_parent": "5f5f41f56760b4138443b352", "_props": { "filters": [ { @@ -343116,8 +343699,8 @@ }, { "_name": "4", - "_id": "61bc85697113f767765c7fec", - "_parent": "61bc85697113f767765c7fe7", + "_id": "5f5f41f56760b4138443b357", + "_parent": "5f5f41f56760b4138443b352", "_props": { "filters": [ { @@ -343140,8 +343723,8 @@ }, { "_name": "5", - "_id": "61bc85697113f767765c7fed", - "_parent": "61bc85697113f767765c7fe7", + "_id": "64ad20112b49b454630e0149", + "_parent": "5f5f41f56760b4138443b352", "_props": { "filters": [ { @@ -343164,8 +343747,8 @@ }, { "_name": "6", - "_id": "61bc85697113f767765c7fee", - "_parent": "61bc85697113f767765c7fe7", + "_id": "64ad20112b49b454630e014a", + "_parent": "5f5f41f56760b4138443b352", "_props": { "filters": [ { @@ -343188,8 +343771,8 @@ }, { "_name": "7", - "_id": "61bc85697113f767765c7fef", - "_parent": "61bc85697113f767765c7fe7", + "_id": "64ad20112b49b454630e014b", + "_parent": "5f5f41f56760b4138443b352", "_props": { "filters": [ { @@ -343202,7 +343785,7 @@ } ], "cellsH": 1, - "cellsV": 1, + "cellsV": 2, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -343212,510 +343795,8 @@ }, { "_name": "8", - "_id": "61bc85697113f767765c7ff0", - "_parent": "61bc85697113f767765c7fe7", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [ - { - "_name": "Front_plate", - "_id": "6572fd6f0c23ca98a3097b94", - "_parent": "61bc85697113f767765c7fe7", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fad8c498d1b7e3e071da0", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa99800d62bcd2e024088", - "656fa8d700d62bcd2e024084", - "656faf0ca0dce000a2020f77", - "656fae5f7c2d57afe200c0d7", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "6572fd6f0c23ca98a3097b95", - "_parent": "61bc85697113f767765c7fe7", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fad8c498d1b7e3e071da0", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656faf0ca0dce000a2020f77", - "656fae5f7c2d57afe200c0d7", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Left_side_plate", - "_id": "6572fd6f0c23ca98a3097b96", - "_parent": "61bc85697113f767765c7fe7", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "", - "Filter": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d", - "64afd81707e2cf40e903a316" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_left_high" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Right_side_plate", - "_id": "6572fd6f0c23ca98a3097b97", - "_parent": "61bc85697113f767765c7fe7", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "", - "Filter": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d", - "64afd81707e2cf40e903a316" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_right_high" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "6572fd6f0c23ca98a3097b98", - "_parent": "61bc85697113f767765c7fe7", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6572fc809a866b80ab07eb59", - "Filter": [ - "6572fc809a866b80ab07eb59" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "6572fd6f0c23ca98a3097b99", - "_parent": "61bc85697113f767765c7fe7", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6572fc8c9a866b80ab07eb5d", - "Filter": [ - "6572fc8c9a866b80ab07eb5d" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_left", - "_id": "6572fd6f0c23ca98a3097b9a", - "_parent": "61bc85697113f767765c7fe7", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6572fc989a866b80ab07eb61", - "Filter": [ - "6572fc989a866b80ab07eb61" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "6572fd6f0c23ca98a3097b9b", - "_parent": "61bc85697113f767765c7fe7", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6572fca39a866b80ab07eb65", - "Filter": [ - "6572fca39a866b80ab07eb65" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": true, - "RigLayoutName": "mmac", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0.2178, - "ArmorMaterial": "Aramid", - "ArmorType": "Light", - "speedPenaltyPercent": -1, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, - "544a5caa4bdc2d1a388b4568": { - "_id": "544a5caa4bdc2d1a388b4568", - "_name": "standartRig", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "USEC Rig", - "ShortName": "AWS", - "Description": "Crye Precision AWS", - "Weight": 2.88, - "BackgroundColor": "default", - "Width": 3, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_cryeavs/item_equipment_rig_cryeavs.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 129, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "55d7174d4bdc2d1b198b456c", - "_parent": "544a5caa4bdc2d1a388b4568", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "55d7174f4bdc2d8a028b4568", - "_parent": "544a5caa4bdc2d1a388b4568", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "55d717514bdc2d88028b456c", - "_parent": "544a5caa4bdc2d1a388b4568", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "55d717534bdc2d87028b456c", - "_parent": "544a5caa4bdc2d1a388b4568", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "55d717574bdc2d86028b456c", - "_parent": "544a5caa4bdc2d1a388b4568", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 2, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "55d7175a4bdc2d89028b456e", - "_parent": "544a5caa4bdc2d1a388b4568", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 2, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "7", - "_id": "5d67d80886f774599657f154", - "_parent": "544a5caa4bdc2d1a388b4568", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "8", - "_id": "5d67d81186f77455757e7525", - "_parent": "544a5caa4bdc2d1a388b4568", + "_id": "64ad20112b49b454630e014c", + "_parent": "5f5f41f56760b4138443b352", "_props": { "filters": [ { @@ -343738,8 +343819,8 @@ }, { "_name": "9", - "_id": "5d67d81c86f7740b98205a82", - "_parent": "544a5caa4bdc2d1a388b4568", + "_id": "64ad20112b49b454630e014d", + "_parent": "5f5f41f56760b4138443b352", "_props": { "filters": [ { @@ -343759,22 +343840,227 @@ "isSortingTable": false }, "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "RigLayoutName": "Thunder_compl", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "None", + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "5df8a42886f77412640e2e75": { + "_id": "5df8a42886f77412640e2e75", + "_name": "item_equipment_rig_multipurpose", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "BEAR Rig 6h112", + "ShortName": "Rig 6h112", + "Description": "Rig 6h112", + "Weight": 1.6, + "BackgroundColor": "default", + "Width": 4, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_patrol/item_equipment_rig_patrol.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "5df8a42886f77412640e2e77", + "_parent": "5df8a42886f77412640e2e75", + "_props": { + "filters": [], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "5df8a42886f77412640e2e78", + "_parent": "5df8a42886f77412640e2e75", + "_props": { + "filters": [], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "5df8a42886f77412640e2e79", + "_parent": "5df8a42886f77412640e2e75", + "_props": { + "filters": [], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "5df8a42886f77412640e2e7a", + "_parent": "5df8a42886f77412640e2e75", + "_props": { + "filters": [], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "5df8a42886f77412640e2e7b", + "_parent": "5df8a42886f77412640e2e75", + "_props": { + "filters": [], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "5df8a42886f77412640e2e7c", + "_parent": "5df8a42886f77412640e2e75", + "_props": { + "filters": [], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "7", + "_id": "5df8a42886f77412640e2e7d", + "_parent": "5df8a42886f77412640e2e75", + "_props": { + "filters": [], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "8", + "_id": "5df8a42886f77412640e2e7e", + "_parent": "5df8a42886f77412640e2e75", + "_props": { + "filters": [], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "9", + "_id": "5df8d4bd86f7744a122d6832", + "_parent": "5df8a42886f77412640e2e75", + "_props": { + "filters": [], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" }, { "_name": "10", - "_id": "5d67d82386f7740bd93652d2", - "_parent": "544a5caa4bdc2d1a388b4568", + "_id": "5df8d4c986f774530571b122", + "_parent": "5df8a42886f77412640e2e75", "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], + "filters": [], "cellsH": 1, "cellsV": 1, "minCount": 0, @@ -343786,19 +344072,10 @@ }, { "_name": "11", - "_id": "5d67d82a86f77455757e7526", - "_parent": "544a5caa4bdc2d1a388b4568", + "_id": "5df8d4de86f7744a122d6833", + "_parent": "5df8a42886f77412640e2e75", "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], + "filters": [], "cellsH": 1, "cellsV": 2, "minCount": 0, @@ -343810,19 +344087,40 @@ }, { "_name": "12", - "_id": "5d67d83286f7740b98205a83", - "_parent": "544a5caa4bdc2d1a388b4568", + "_id": "5df8d4e486f774570a4e6712", + "_parent": "5df8a42886f77412640e2e75", "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], + "filters": [], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "13", + "_id": "5df8d4eb86f7745c67099df1", + "_parent": "5df8a42886f77412640e2e75", + "_props": { + "filters": [], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "14", + "_id": "5df8d4f286f774530571b123", + "_parent": "5df8a42886f77412640e2e75", + "_props": { + "filters": [], "cellsH": 1, "cellsV": 1, "minCount": 0, @@ -343833,178 +344131,22 @@ "_proto": "55d329c24bdc2d892f8b4567" } ], - "Slots": [ - { - "_name": "Front_plate", - "_id": "6570e9caa6560e4ee50c2b16", - "_parent": "544a5caa4bdc2d1a388b4568", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656f9fa0498d1b7e3e071d98", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fa76500d62bcd2e024080", - "656fafe3498d1b7e3e071da4", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fb0bd7c2d57afe200c0dc", - "656fac30c6baea13cd07e10c", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "6570e9f33a5689d85f08db9f", - "_parent": "544a5caa4bdc2d1a388b4568", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656f9fa0498d1b7e3e071d98", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fad8c498d1b7e3e071da0", - "656fa25e94b480b8a500c0e0", - "656fa61e94b480b8a500c0e8", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656fb21fa0dce000a2020f7c", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "6570ecd90921c914bf078f0c", - "_parent": "544a5caa4bdc2d1a388b4568", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6570e83223c1f638ef0b0ede", - "Filter": [ - "6570e83223c1f638ef0b0ede" - ], - "armorColliders": [ - "RibcageUp", - "RibcageLow" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "6570ecd90921c914bf078f0d", - "_parent": "544a5caa4bdc2d1a388b4568", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6570e87c23c1f638ef0b0ee2", - "Filter": [ - "6570e87c23c1f638ef0b0ee2" - ], - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Groin", - "_id": "6570ed5c0921c914bf078f11", - "_parent": "544a5caa4bdc2d1a388b4568", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6570e90b3a5689d85f08db97", - "Filter": [ - "6570e90b3a5689d85f08db97" - ], - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], + "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "SearchSound": "looting_body_extended", - "BlocksArmorVest": true, - "RigLayoutName": "Avs", + "BlocksArmorVest": false, + "RigLayoutName": "mppv", "armorZone": [], "armorClass": 0, - "BluntThroughput": 0.34, - "ArmorMaterial": "Aramid", - "ArmorType": "Light", - "speedPenaltyPercent": -2, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "None", + "speedPenaltyPercent": 0, "mousePenalty": 0, "weaponErgonomicPenalty": 0 - } + }, + "_proto": "544a5caa4bdc2d1a388b4568" }, "5c0e722886f7740458316a57": { "_id": "5c0e722886f7740458316a57", @@ -344562,23 +344704,23 @@ }, "_proto": "544a5caa4bdc2d1a388b4568" }, - "5ab8dced86f774646209ec87": { - "_id": "5ab8dced86f774646209ec87", - "_name": "ana_tactical_m2", + "61bc85697113f767765c7fe7": { + "_id": "61bc85697113f767765c7fe7", + "_name": "item_equipment_rig_mmac", "_parent": "5448e5284bdc2dcb718b4567", "_type": "Item", "_props": { - "Name": "ANA Tactical m2", - "ShortName": "ANA m2", - "Description": "ANA Tactical m2", - "Weight": 2.25, + "Name": "tactec", + "ShortName": "tactec", + "Description": "tactec", + "Weight": 2.83, "BackgroundColor": "default", - "Width": 4, - "Height": 4, + "Width": 3, + "Height": 3, "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/rig_m2/item_equipment_rig_m2.bundle", + "path": "assets/content/items/equipment/rig_mmac/item_equipment_rig_mmac.bundle", "rcid": "" }, "UsePrefab": { @@ -344595,10 +344737,10 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 80, + "LootExperience": 45, "ExamineExperience": 10, "HideEntrails": true, - "RepairCost": 108, + "RepairCost": 561, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -344625,8 +344767,8 @@ "Grids": [ { "_name": "1", - "_id": "5ab8dced86f774646209ec89", - "_parent": "5ab8dced86f774646209ec87", + "_id": "61bc85697113f767765c7fe9", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { @@ -344649,8 +344791,8 @@ }, { "_name": "2", - "_id": "5ab8dced86f774646209ec8a", - "_parent": "5ab8dced86f774646209ec87", + "_id": "61bc85697113f767765c7fea", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { @@ -344673,8 +344815,8 @@ }, { "_name": "3", - "_id": "5ab8dced86f774646209ec8b", - "_parent": "5ab8dced86f774646209ec87", + "_id": "61bc85697113f767765c7feb", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { @@ -344697,8 +344839,8 @@ }, { "_name": "4", - "_id": "5ab8dced86f774646209ec8c", - "_parent": "5ab8dced86f774646209ec87", + "_id": "61bc85697113f767765c7fec", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { @@ -344721,8 +344863,8 @@ }, { "_name": "5", - "_id": "5ab8dced86f774646209ec8d", - "_parent": "5ab8dced86f774646209ec87", + "_id": "61bc85697113f767765c7fed", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { @@ -344745,8 +344887,8 @@ }, { "_name": "6", - "_id": "5ab8dced86f774646209ec8e", - "_parent": "5ab8dced86f774646209ec87", + "_id": "61bc85697113f767765c7fee", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { @@ -344769,8 +344911,8 @@ }, { "_name": "7", - "_id": "5ab8dced86f774646209ec8f", - "_parent": "5ab8dced86f774646209ec87", + "_id": "61bc85697113f767765c7fef", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { @@ -344783,7 +344925,7 @@ } ], "cellsH": 1, - "cellsV": 2, + "cellsV": 1, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -344793,8 +344935,8 @@ }, { "_name": "8", - "_id": "5ab8dced86f774646209ec90", - "_parent": "5ab8dced86f774646209ec87", + "_id": "61bc85697113f767765c7ff0", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { @@ -344807,30 +344949,6 @@ } ], "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "9", - "_id": "5abe4df086f77436271eace7", - "_parent": "5ab8dced86f774646209ec87", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 2, "cellsV": 1, "minCount": 0, "maxCount": 0, @@ -344843,19 +344961,19 @@ "Slots": [ { "_name": "Front_plate", - "_id": "6570f846d3eefd23430f8c6b", - "_parent": "5ab8dced86f774646209ec87", + "_id": "6572fd6f0c23ca98a3097b94", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { "locked": false, - "Plate": "656fa25e94b480b8a500c0e0", + "Plate": "656fad8c498d1b7e3e071da0", "Filter": [ "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", + "656fa8d700d62bcd2e024084", "656faf0ca0dce000a2020f77", + "656fae5f7c2d57afe200c0d7", "656fa0fb498d1b7e3e071d9c", "656fafe3498d1b7e3e071da4", "656fa76500d62bcd2e024080", @@ -344868,9 +344986,7 @@ "656f9fa0498d1b7e3e071d98", "656fa53d94b480b8a500c0e4", "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38" + "64afdcb83efdfea28601d041" ], "armorColliders": [], "armorPlateColliders": [ @@ -344886,32 +345002,30 @@ }, { "_name": "Back_plate", - "_id": "6570f86f4c65ab77a6015127", - "_parent": "5ab8dced86f774646209ec87", + "_id": "6572fd6f0c23ca98a3097b95", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { "locked": false, - "Plate": "656fa25e94b480b8a500c0e0", + "Plate": "656fad8c498d1b7e3e071da0", "Filter": [ "656f9d5900d62bcd2e02407c", "656fa8d700d62bcd2e024084", "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", "656faf0ca0dce000a2020f77", + "656fae5f7c2d57afe200c0d7", "656fa0fb498d1b7e3e071d9c", "656fafe3498d1b7e3e071da4", "656fa76500d62bcd2e024080", "656fa25e94b480b8a500c0e0", - "656fa61e94b480b8a500c0e8", "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", "656fb21fa0dce000a2020f7c", "656fac30c6baea13cd07e10c", "656fb0bd7c2d57afe200c0dc", "656f9fa0498d1b7e3e071d98", "656fa53d94b480b8a500c0e4", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38", "655746010177119f4a097ff7", "64afdcb83efdfea28601d041" ], @@ -344929,8 +345043,8 @@ }, { "_name": "Left_side_plate", - "_id": "6570f89d584a51c23e0324f8", - "_parent": "5ab8dced86f774646209ec87", + "_id": "6572fd6f0c23ca98a3097b96", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { @@ -344955,8 +345069,8 @@ }, { "_name": "Right_side_plate", - "_id": "6570f8c54c65ab77a601512a", - "_parent": "5ab8dced86f774646209ec87", + "_id": "6572fd6f0c23ca98a3097b97", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { @@ -344981,21 +345095,20 @@ }, { "_name": "Soft_armor_front", - "_id": "6570f96f584a51c23e0324fb", - "_parent": "5ab8dced86f774646209ec87", + "_id": "6572fd6f0c23ca98a3097b98", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { "locked": true, - "Plate": "6570f6e774d84423df065f21", + "Plate": "6572fc809a866b80ab07eb59", "Filter": [ - "6570f6e774d84423df065f21" + "6572fc809a866b80ab07eb59" ], - "armorColliders": [ - "RibcageUp", - "RibcageLow" + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" ], - "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false } ] @@ -345006,21 +345119,20 @@ }, { "_name": "Soft_armor_back", - "_id": "6570f96f584a51c23e0324fc", - "_parent": "5ab8dced86f774646209ec87", + "_id": "6572fd6f0c23ca98a3097b99", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { "locked": true, - "Plate": "6570f71dd67d0309980a7af8", + "Plate": "6572fc8c9a866b80ab07eb5d", "Filter": [ - "6570f71dd67d0309980a7af8" + "6572fc8c9a866b80ab07eb5d" ], - "armorColliders": [ - "SpineDown", - "SpineTop" + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" ], - "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false } ] @@ -345031,15 +345143,15 @@ }, { "_name": "Soft_armor_left", - "_id": "6570f96f584a51c23e0324fd", - "_parent": "5ab8dced86f774646209ec87", + "_id": "6572fd6f0c23ca98a3097b9a", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { "locked": true, - "Plate": "6570f74774d84423df065f25", + "Plate": "6572fc989a866b80ab07eb61", "Filter": [ - "6570f74774d84423df065f25" + "6572fc989a866b80ab07eb61" ], "armorColliders": [ "LeftSideChestDown" @@ -345055,15 +345167,15 @@ }, { "_name": "soft_armor_right", - "_id": "6570f96f584a51c23e0324fe", - "_parent": "5ab8dced86f774646209ec87", + "_id": "6572fd6f0c23ca98a3097b9b", + "_parent": "61bc85697113f767765c7fe7", "_props": { "filters": [ { "locked": true, - "Plate": "6570f79c4c65ab77a6015121", + "Plate": "6572fca39a866b80ab07eb65", "Filter": [ - "6570f79c4c65ab77a6015121" + "6572fca39a866b80ab07eb65" ], "armorColliders": [ "RightSideChestDown" @@ -345082,35 +345194,697 @@ "CantRemoveFromSlotsDuringRaid": [], "SearchSound": "looting_body_extended", "BlocksArmorVest": true, - "RigLayoutName": "ANA Tactical M2", + "RigLayoutName": "mmac", "armorZone": [], "armorClass": 0, - "BluntThroughput": 0.35, + "BluntThroughput": 0.2178, "ArmorMaterial": "Aramid", "ArmorType": "Light", - "speedPenaltyPercent": -2, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 + "speedPenaltyPercent": -1, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1 }, "_proto": "544a5caa4bdc2d1a388b4568" }, - "572b7adb24597762ae139821": { - "_id": "572b7adb24597762ae139821", - "_name": "wild_vest", + "603648ff5a45383c122086ac": { + "_id": "603648ff5a45383c122086ac", + "_name": "item_equipment_rig_azimut_black", "_parent": "5448e5284bdc2dcb718b4567", "_type": "Item", "_props": { - "Name": "Wild Vest", - "ShortName": "Wild Vest", - "Description": "Wild Vest", - "Weight": 0.4, + "Name": "commando", + "ShortName": "commando", + "Description": "commando", + "Weight": 1.6, "BackgroundColor": "default", - "Width": 2, + "Width": 4, "Height": 3, "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/rig_vestwild/item_equipment_rig_vestwild.bundle", + "path": "assets/content/items/equipment/rig_azimut/item_equipment_rig_azimut_black.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "603648ff5a45383c122086ae", + "_parent": "603648ff5a45383c122086ac", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "603648ff5a45383c122086af", + "_parent": "603648ff5a45383c122086ac", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "603648ff5a45383c122086b0", + "_parent": "603648ff5a45383c122086ac", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "603648ff5a45383c122086b1", + "_parent": "603648ff5a45383c122086ac", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "603648ff5a45383c122086b2", + "_parent": "603648ff5a45383c122086ac", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "603648ff5a45383c122086b3", + "_parent": "603648ff5a45383c122086ac", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "7", + "_id": "603648ff5a45383c122086b4", + "_parent": "603648ff5a45383c122086ac", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "8", + "_id": "603649005a45383c122086b5", + "_parent": "603648ff5a45383c122086ac", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "9", + "_id": "6038bf3ab847c71012789413", + "_parent": "603648ff5a45383c122086ac", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "10", + "_id": "6038bf52d10cbf667352dd43", + "_parent": "603648ff5a45383c122086ac", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "RigLayoutName": "azimut1", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "None", + "speedPenaltyPercent": -2, + "mousePenalty": 0, + "weaponErgonomicPenalty": -2 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "5648a69d4bdc2ded0b8b457b": { + "_id": "5648a69d4bdc2ded0b8b457b", + "_name": "bearRig", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "BEAR Rig", + "ShortName": "BlackRock", + "Description": "BlackRock chest rig", + "Weight": 1.8, + "BackgroundColor": "default", + "Width": 3, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_blackrock/item_equipment_rig_blackrock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "5648a6f44bdc2d3b4c8b4576", + "_parent": "5648a69d4bdc2ded0b8b457b", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "5648a6f74bdc2d363b8b4576", + "_parent": "5648a69d4bdc2ded0b8b457b", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "5648a6f94bdc2d16268b4577", + "_parent": "5648a69d4bdc2ded0b8b457b", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "5648a6fc4bdc2df8348b457f", + "_parent": "5648a69d4bdc2ded0b8b457b", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "5648a6ff4bdc2d91118b45a3", + "_parent": "5648a69d4bdc2ded0b8b457b", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "5648a7034bdc2d3d1c8b457c", + "_parent": "5648a69d4bdc2ded0b8b457b", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "7", + "_id": "5d67d4f786f774557749dd49", + "_parent": "5648a69d4bdc2ded0b8b457b", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "8", + "_id": "5d67d4fe86f774557326afae", + "_parent": "5648a69d4bdc2ded0b8b457b", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "9", + "_id": "5d67d50686f774557749dd4a", + "_parent": "5648a69d4bdc2ded0b8b457b", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "10", + "_id": "5d67d50e86f774557326afaf", + "_parent": "5648a69d4bdc2ded0b8b457b", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "11", + "_id": "5d67d51e86f774599657f14a", + "_parent": "5648a69d4bdc2ded0b8b457b", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "RigLayoutName": "blackrock", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "None", + "speedPenaltyPercent": -1, + "mousePenalty": 0, + "weaponErgonomicPenalty": -1 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "5fd4c4fa16cac650092f6771": { + "_id": "5fd4c4fa16cac650092f6771", + "_name": "item_equipment_rig_idea", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "BEAR Rig 6h112", + "ShortName": "Rig 6h112", + "Description": "Rig 6h112", + "Weight": 0.22, + "BackgroundColor": "default", + "Width": 3, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_idea/item_equipment_rig_idea.bundle", "rcid": "" }, "UsePrefab": { @@ -345128,181 +345902,6 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 30, - "ExamineExperience": 2, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "583813ed2459777779793e81", - "_parent": "572b7adb24597762ae139821", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "5838153b2459777781082b73", - "_parent": "572b7adb24597762ae139821", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "5838154324597776891e38f1", - "_parent": "572b7adb24597762ae139821", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "5838155324597776891e38f2", - "_parent": "572b7adb24597762ae139821", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "RigLayoutName": "Wild Wild Vest", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "None", - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5648a69d4bdc2ded0b8b457b" - }, - "59e7643b86f7742cbf2c109a": { - "_id": "59e7643b86f7742cbf2c109a", - "_name": "wartech_vest", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "Wartech vest", - "ShortName": "Wartech vest", - "Description": "Wartech vest", - "Weight": 1.8, - "BackgroundColor": "default", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_tv109/item_equipment_rig_tv109.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, "ExamineExperience": 10, "HideEntrails": true, "RepairCost": 0, @@ -345332,207 +345931,8 @@ "Grids": [ { "_name": "1", - "_id": "59e7643b86f7742cbf2c109b", - "_parent": "59e7643b86f7742cbf2c109a", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 2, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "59e7643b86f7742cbf2c109c", - "_parent": "59e7643b86f7742cbf2c109a", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "59e7643b86f7742cbf2c109d", - "_parent": "59e7643b86f7742cbf2c109a", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "59e7643b86f7742cbf2c109e", - "_parent": "59e7643b86f7742cbf2c109a", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "59e7643b86f7742cbf2c109f", - "_parent": "59e7643b86f7742cbf2c109a", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "RigLayoutName": "Wartech Rig", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "None", - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, - "5ca20abf86f77418567a43f2": { - "_id": "5ca20abf86f77418567a43f2", - "_name": "item_equipment_rig_triton", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "commando", - "ShortName": "commando", - "Description": "commando", - "Weight": 1.3, - "BackgroundColor": "default", - "Width": 4, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_triton/item_equipment_rig_triton.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "5ca20abf86f77418567a43f4", - "_parent": "5ca20abf86f77418567a43f2", + "_id": "5fd4c4fa16cac650092f6773", + "_parent": "5fd4c4fa16cac650092f6771", "_props": { "filters": [ { @@ -345555,8 +345955,8 @@ }, { "_name": "2", - "_id": "5ca20abf86f77418567a43f5", - "_parent": "5ca20abf86f77418567a43f2", + "_id": "5fd4c4fa16cac650092f6774", + "_parent": "5fd4c4fa16cac650092f6771", "_props": { "filters": [ { @@ -345579,8 +345979,8 @@ }, { "_name": "3", - "_id": "5ca20abf86f77418567a43f6", - "_parent": "5ca20abf86f77418567a43f2", + "_id": "5fd4c4fa16cac650092f6775", + "_parent": "5fd4c4fa16cac650092f6771", "_props": { "filters": [ { @@ -345603,104 +346003,8 @@ }, { "_name": "4", - "_id": "5ca20abf86f77418567a43f7", - "_parent": "5ca20abf86f77418567a43f2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "5ca20abf86f77418567a43f8", - "_parent": "5ca20abf86f77418567a43f2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "5ca20abf86f77418567a43f9", - "_parent": "5ca20abf86f77418567a43f2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "7", - "_id": "5ca20abf86f77418567a43fa", - "_parent": "5ca20abf86f77418567a43f2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "8", - "_id": "5ca20abf86f77418567a43fb", - "_parent": "5ca20abf86f77418567a43f2", + "_id": "5fd4c4fa16cac650092f6776", + "_parent": "5fd4c4fa16cac650092f6771", "_props": { "filters": [ { @@ -345727,608 +346031,7 @@ "CantRemoveFromSlotsDuringRaid": [], "SearchSound": "looting_body_extended", "BlocksArmorVest": false, - "RigLayoutName": "Commando", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "None", - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": -1 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, - "64a5366719bab53bd203bf33": { - "_id": "64a5366719bab53bd203bf33", - "_name": "item_equipment_rig_MBSS", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "ANA Tactical m2", - "ShortName": "ANA m2", - "Description": "ANA Tactical m2", - "Weight": 1.33, - "BackgroundColor": "default", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_mbss/item_equipment_rig_mbss.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 463, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "64a5366719bab53bd203bf34", - "_parent": "64a5366719bab53bd203bf33", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "64a5366719bab53bd203bf35", - "_parent": "64a5366719bab53bd203bf33", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "64a5366719bab53bd203bf36", - "_parent": "64a5366719bab53bd203bf33", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "64c0ea953d4086a58204f83e", - "_parent": "64a5366719bab53bd203bf33", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "64c0ea953d4086a58204f83f", - "_parent": "64a5366719bab53bd203bf33", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "64d229dbc0138721582b701c", - "_parent": "64a5366719bab53bd203bf33", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 2, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "7", - "_id": "64d229dbc0138721582b701d", - "_parent": "64a5366719bab53bd203bf33", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 3, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [ - { - "_name": "Front_plate", - "_id": "657066787a2348732500842e", - "_parent": "64a5366719bab53bd203bf33", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fac30c6baea13cd07e10c", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "657066a5f7d1c1a2ca0328b8", - "_parent": "64a5366719bab53bd203bf33", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fac30c6baea13cd07e10c", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656f9fa0498d1b7e3e071d98", - "656fb0bd7c2d57afe200c0dc", - "656fa53d94b480b8a500c0e4", - "64afdcb83efdfea28601d041", - "655746010177119f4a097ff7" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": true, - "RigLayoutName": "mbss_rig", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0.241, - "ArmorMaterial": "Aramid", - "ArmorType": "Light", - "speedPenaltyPercent": 0, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, - "5b44c8ea86f7742d1627baf1": { - "_id": "5b44c8ea86f7742d1627baf1", - "_name": "item_equipment_rig_commando", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "commando", - "ShortName": "commando", - "Description": "commando", - "Weight": 1.35, - "BackgroundColor": "default", - "Width": 4, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_commando/item_equipment_rig_commando.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "5b44c8ea86f7742d1627baf3", - "_parent": "5b44c8ea86f7742d1627baf1", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "5b44c8ea86f7742d1627baf4", - "_parent": "5b44c8ea86f7742d1627baf1", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "5b44c8ea86f7742d1627baf5", - "_parent": "5b44c8ea86f7742d1627baf1", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "5b44c8ea86f7742d1627baf6", - "_parent": "5b44c8ea86f7742d1627baf1", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "5b44c8ea86f7742d1627baf7", - "_parent": "5b44c8ea86f7742d1627baf1", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "5b44c8ea86f7742d1627baf8", - "_parent": "5b44c8ea86f7742d1627baf1", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "7", - "_id": "5b44c8ea86f7742d1627baf9", - "_parent": "5b44c8ea86f7742d1627baf1", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "8", - "_id": "5b44c8ea86f7742d1627bafa", - "_parent": "5b44c8ea86f7742d1627baf1", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "RigLayoutName": "Commando", + "RigLayoutName": "bank_robber", "armorZone": [], "armorClass": 0, "BluntThroughput": 0, @@ -346340,23 +346043,23 @@ }, "_proto": "544a5caa4bdc2d1a388b4568" }, - "5c0e746986f7741453628fe5": { - "_id": "5c0e746986f7741453628fe5", - "_name": "item_equipment_rig_tv110", + "628d0618d1ba6e4fa07ce5a4": { + "_id": "628d0618d1ba6e4fa07ce5a4", + "_name": "item_equipment_rig_bagarii", "_parent": "5448e5284bdc2dcb718b4567", "_type": "Item", "_props": { - "Name": "tactec", - "ShortName": "tactec", - "Description": "tactec", - "Weight": 3.5, + "Name": "item_equipment_rig_bagarii", + "ShortName": "item_equipment_rig_bagarii", + "Description": "item_equipment_rig_bagarii", + "Weight": 5.1, "BackgroundColor": "default", "Width": 4, - "Height": 3, + "Height": 4, "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/rig_tv110/item_equipment_rig_tv110.bundle", + "path": "assets/content/items/equipment/rig_bagarii/rig_bagarii.bundle", "rcid": "" }, "UsePrefab": { @@ -346373,10 +346076,10 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 60, + "LootExperience": 80, "ExamineExperience": 10, "HideEntrails": true, - "RepairCost": 121, + "RepairCost": 595, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -346403,128 +346106,8 @@ "Grids": [ { "_name": "1", - "_id": "5c0e746986f7741453628fe7", - "_parent": "5c0e746986f7741453628fe5", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 3, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "5c0e746986f7741453628fe8", - "_parent": "5c0e746986f7741453628fe5", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 3, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "5c0e746986f7741453628fe9", - "_parent": "5c0e746986f7741453628fe5", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 3, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "5c0e746986f7741453628fea", - "_parent": "5c0e746986f7741453628fe5", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "5c0e746986f7741453628feb", - "_parent": "5c0e746986f7741453628fe5", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "5c0e746986f7741453628fec", - "_parent": "5c0e746986f7741453628fe5", + "_id": "628d0618d1ba6e4fa07ce5a5", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { "filters": [ { @@ -346546,9 +346129,9 @@ "_proto": "55d329c24bdc2d892f8b4567" }, { - "_name": "7", - "_id": "5c0e746986f7741453628fed", - "_parent": "5c0e746986f7741453628fe5", + "_name": "2", + "_id": "628d0618d1ba6e4fa07ce5a6", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { "filters": [ { @@ -346569,306 +346152,23 @@ }, "_proto": "55d329c24bdc2d892f8b4567" }, - { - "_name": "8", - "_id": "5c0e746986f7741453628fee", - "_parent": "5c0e746986f7741453628fe5", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 2, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "9", - "_id": "5c0e746986f7741453628fef", - "_parent": "5c0e746986f7741453628fe5", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 2, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [ - { - "_name": "Front_plate", - "_id": "6570e17a4cc0d2ab1e05ed88", - "_parent": "5c0e746986f7741453628fe5", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fa0fb498d1b7e3e071d9c", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "64afdcb83efdfea28601d041", - "655746010177119f4a097ff7", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "6570e1a20b57c03ec90b96f6", - "_parent": "5c0e746986f7741453628fe5", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656fa0fb498d1b7e3e071d9c", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa53d94b480b8a500c0e4", - "656f9fa0498d1b7e3e071d98", - "656fb0bd7c2d57afe200c0dc", - "656fac30c6baea13cd07e10c", - "656fb21fa0dce000a2020f7c", - "656fa61e94b480b8a500c0e8", - "656fad8c498d1b7e3e071da0", - "656fa25e94b480b8a500c0e0", - "64afdcb83efdfea28601d041", - "655746010177119f4a097ff7", - "65573fa5655447403702a816", - "64afc71497cf3a403c01ff38" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "6570e1da0b57c03ec90b96f8", - "_parent": "5c0e746986f7741453628fe5", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6570df294cc0d2ab1e05ed74", - "Filter": [ - "6570df294cc0d2ab1e05ed74" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "6570e1fd0b57c03ec90b96fa", - "_parent": "5c0e746986f7741453628fe5", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6570df9c615f54368b04fca9", - "Filter": [ - "6570df9c615f54368b04fca9" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": true, - "RigLayoutName": "TV-110", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0.35, - "ArmorMaterial": "Aramid", - "ArmorType": "Light", - "speedPenaltyPercent": -1, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, - "5df8a42886f77412640e2e75": { - "_id": "5df8a42886f77412640e2e75", - "_name": "item_equipment_rig_multipurpose", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "BEAR Rig 6h112", - "ShortName": "Rig 6h112", - "Description": "Rig 6h112", - "Weight": 1.6, - "BackgroundColor": "default", - "Width": 4, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_patrol/item_equipment_rig_patrol.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "5df8a42886f77412640e2e77", - "_parent": "5df8a42886f77412640e2e75", - "_props": { - "filters": [], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "5df8a42886f77412640e2e78", - "_parent": "5df8a42886f77412640e2e75", - "_props": { - "filters": [], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, { "_name": "3", - "_id": "5df8a42886f77412640e2e79", - "_parent": "5df8a42886f77412640e2e75", + "_id": "628d0618d1ba6e4fa07ce5a7", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { - "filters": [], + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], "cellsH": 1, - "cellsV": 2, + "cellsV": 1, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -346878,12 +346178,21 @@ }, { "_name": "4", - "_id": "5df8a42886f77412640e2e7a", - "_parent": "5df8a42886f77412640e2e75", + "_id": "628d0618d1ba6e4fa07ce5a8", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { - "filters": [], + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], "cellsH": 1, - "cellsV": 2, + "cellsV": 1, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -346893,12 +346202,21 @@ }, { "_name": "5", - "_id": "5df8a42886f77412640e2e7b", - "_parent": "5df8a42886f77412640e2e75", + "_id": "628d0618d1ba6e4fa07ce5a9", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { - "filters": [], + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], "cellsH": 1, - "cellsV": 2, + "cellsV": 1, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -346908,10 +346226,19 @@ }, { "_name": "6", - "_id": "5df8a42886f77412640e2e7c", - "_parent": "5df8a42886f77412640e2e75", + "_id": "628d0618d1ba6e4fa07ce5aa", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { - "filters": [], + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], "cellsH": 1, "cellsV": 2, "minCount": 0, @@ -346923,10 +346250,19 @@ }, { "_name": "7", - "_id": "5df8a42886f77412640e2e7d", - "_parent": "5df8a42886f77412640e2e75", + "_id": "628d0618d1ba6e4fa07ce5ab", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { - "filters": [], + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], "cellsH": 1, "cellsV": 2, "minCount": 0, @@ -346938,10 +346274,19 @@ }, { "_name": "8", - "_id": "5df8a42886f77412640e2e7e", - "_parent": "5df8a42886f77412640e2e75", + "_id": "628d0618d1ba6e4fa07ce5ac", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { - "filters": [], + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], "cellsH": 1, "cellsV": 2, "minCount": 0, @@ -346953,12 +346298,21 @@ }, { "_name": "9", - "_id": "5df8d4bd86f7744a122d6832", - "_parent": "5df8a42886f77412640e2e75", + "_id": "628d0618d1ba6e4fa07ce5ad", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { - "filters": [], + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], "cellsH": 1, - "cellsV": 1, + "cellsV": 2, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -346968,12 +346322,21 @@ }, { "_name": "10", - "_id": "5df8d4c986f774530571b122", - "_parent": "5df8a42886f77412640e2e75", + "_id": "628d0618d1ba6e4fa07ce5ae", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { - "filters": [], + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], "cellsH": 1, - "cellsV": 1, + "cellsV": 2, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -346983,11 +346346,20 @@ }, { "_name": "11", - "_id": "5df8d4de86f7744a122d6833", - "_parent": "5df8a42886f77412640e2e75", + "_id": "628d0618d1ba6e4fa07ce5af", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { - "filters": [], - "cellsH": 1, + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, "cellsV": 2, "minCount": 0, "maxCount": 0, @@ -346998,10 +346370,19 @@ }, { "_name": "12", - "_id": "5df8d4e486f774570a4e6712", - "_parent": "5df8a42886f77412640e2e75", + "_id": "628d0618d1ba6e4fa07ce5b0", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { - "filters": [], + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], "cellsH": 1, "cellsV": 2, "minCount": 0, @@ -347013,27 +346394,21 @@ }, { "_name": "13", - "_id": "5df8d4eb86f7745c67099df1", - "_parent": "5df8a42886f77412640e2e75", + "_id": "628d0618d1ba6e4fa07ce5b1", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { - "filters": [], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "14", - "_id": "5df8d4f286f774530571b123", - "_parent": "5df8a42886f77412640e2e75", - "_props": { - "filters": [], - "cellsH": 1, - "cellsV": 1, + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, + "cellsV": 2, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -347042,339 +346417,219 @@ "_proto": "55d329c24bdc2d892f8b4567" } ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "RigLayoutName": "mppv", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "None", - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, - "5fd4c60f875c30179f5d04c2": { - "_id": "5fd4c60f875c30179f5d04c2", - "_name": "item_equipment_rig_bssmk1", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "commando", - "ShortName": "commando", - "Description": "commando", - "Weight": 1, - "BackgroundColor": "default", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_bssmk1/item_equipment_rig_bssmk1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ + "Slots": [ { - "_name": "1", - "_id": "5fd4c60f875c30179f5d04c4", - "_parent": "5fd4c60f875c30179f5d04c2", + "_name": "Front_plate", + "_id": "657324768c1cc6dcd9098b37", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { "filters": [ { + "locked": false, + "Plate": "656f664200d62bcd2e024077", "Filter": [ - "54009119af1c881c07000029" + "656f664200d62bcd2e024077", + "654a4dea7c17dec2f50cc86a", + "656f66b5c6baea13cd07e108" ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Korund_chest" + ], + "bluntDamageReduceFromSoftArmor": true } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false + ] }, - "_proto": "55d329c24bdc2d892f8b4567" + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" }, { - "_name": "2", - "_id": "5fd4c60f875c30179f5d04c5", - "_parent": "5fd4c60f875c30179f5d04c2", + "_name": "Back_plate", + "_id": "657324768c1cc6dcd9098b38", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { "filters": [ { + "locked": false, + "Plate": "657b2797c3dbcb01d60c35ea", "Filter": [ - "54009119af1c881c07000029" + "657b22485f444d6dff0c6c2f", + "657b2797c3dbcb01d60c35ea", + "657b28d25f444d6dff0c6c77" ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": true } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false + ] }, - "_proto": "55d329c24bdc2d892f8b4567" + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" }, { - "_name": "3", - "_id": "5fd4c60f875c30179f5d04c6", - "_parent": "5fd4c60f875c30179f5d04c2", + "_name": "Left_side_plate", + "_id": "657324768c1cc6dcd9098b39", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { "filters": [ { + "locked": false, + "Plate": "", "Filter": [ - "54009119af1c881c07000029" + "654a4f8bc721968a4404ef18" ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Korund_side_left_low" + ], + "bluntDamageReduceFromSoftArmor": true } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false + ] }, - "_proto": "55d329c24bdc2d892f8b4567" + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" }, { - "_name": "4", - "_id": "5fd4c60f875c30179f5d04c7", - "_parent": "5fd4c60f875c30179f5d04c2", + "_name": "Right_side_plate", + "_id": "657324768c1cc6dcd9098b3a", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { "filters": [ { + "locked": false, + "Plate": "", "Filter": [ - "54009119af1c881c07000029" + "654a4f8bc721968a4404ef18" ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Korund_side_right_low" + ], + "bluntDamageReduceFromSoftArmor": true } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false + ] }, - "_proto": "55d329c24bdc2d892f8b4567" + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" }, { - "_name": "5", - "_id": "5fd4c60f875c30179f5d04c8", - "_parent": "5fd4c60f875c30179f5d04c2", + "_name": "Soft_armor_front", + "_id": "657324768c1cc6dcd9098b3b", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { "filters": [ { + "locked": true, + "Plate": "657322988c1cc6dcd9098b2d", "Filter": [ - "54009119af1c881c07000029" + "657322988c1cc6dcd9098b2d" ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] + "armorColliders": [ + "RibcageLow", + "RibcageUp" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false + ] }, - "_proto": "55d329c24bdc2d892f8b4567" + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" }, { - "_name": "6", - "_id": "5fd4c60f875c30179f5d04c9", - "_parent": "5fd4c60f875c30179f5d04c2", + "_name": "Soft_armor_back", + "_id": "657324768c1cc6dcd9098b3c", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { "filters": [ { + "locked": true, + "Plate": "657322a4cea9255e21023651", "Filter": [ - "54009119af1c881c07000029" + "657322a4cea9255e21023651" ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] + "armorColliders": [ + "SpineDown", + "SpineTop" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false + ] }, - "_proto": "55d329c24bdc2d892f8b4567" + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" }, { - "_name": "7", - "_id": "5fd4c60f875c30179f5d04ca", - "_parent": "5fd4c60f875c30179f5d04c2", + "_name": "Soft_armor_left", + "_id": "657324768c1cc6dcd9098b3d", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { "filters": [ { + "locked": true, + "Plate": "657322acd9d89ff7ac0d961b", "Filter": [ - "54009119af1c881c07000029" + "657322acd9d89ff7ac0d961b" ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false + ] }, - "_proto": "55d329c24bdc2d892f8b4567" + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" }, { - "_name": "8", - "_id": "5fd4c60f875c30179f5d04cb", - "_parent": "5fd4c60f875c30179f5d04c2", + "_name": "soft_armor_right", + "_id": "657324768c1cc6dcd9098b3e", + "_parent": "628d0618d1ba6e4fa07ce5a4", "_props": { "filters": [ { + "locked": true, + "Plate": "657322b7d9d89ff7ac0d961f", "Filter": [ - "54009119af1c881c07000029" + "657322b7d9d89ff7ac0d961f" ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "9", - "_id": "5fd4c60f875c30179f5d04cc", - "_parent": "5fd4c60f875c30179f5d04c2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" + "armorColliders": [ + "RightSideChestDown" ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false + ] }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "10", - "_id": "5fd4c60f875c30179f5d04cd", - "_parent": "5fd4c60f875c30179f5d04c2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" } ], - "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "RigLayoutName": "D3crx", + "BlocksArmorVest": true, + "RigLayoutName": "bagarii", "armorZone": [], "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "None", - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 + "BluntThroughput": 0.1683, + "ArmorMaterial": "Aramid", + "ArmorType": "Heavy", + "speedPenaltyPercent": -6, + "mousePenalty": -1.5, + "weaponErgonomicPenalty": -2 }, "_proto": "544a5caa4bdc2d1a388b4568" }, @@ -348060,541 +347315,6 @@ }, "_proto": "578f87a3245977356274f2cb" }, - "5c0e6a1586f77404597b4965": { - "_id": "5c0e6a1586f77404597b4965", - "_name": "item_equipment_rig_beltab", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "Wartech vest", - "ShortName": "Wartech vest", - "Description": "Wartech vest", - "Weight": 1.7, - "BackgroundColor": "default", - "Width": 4, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_beltab/item_equipment_rig_beltab.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 80, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "5c0e6a1586f77404597b4967", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "5c0e6a1586f77404597b4968", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "5c0e6a1586f77404597b4969", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "5c0e6a1586f77404597b496a", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "5c0e6a1586f77404597b496b", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "5c0e7ea986f774684264bd80", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "7", - "_id": "5c0e7eba86f77443a74d2973", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "8", - "_id": "5c0e7ebe86f77452b35dc6e2", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "9", - "_id": "5c0e7ec186f77468413cc5c8", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "10", - "_id": "5c0e7ec886f774684046efa3", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "11", - "_id": "5c0e7ed686f77468433e062f", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "12", - "_id": "5c0e7eda86f7745dc7616602", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "13", - "_id": "5c0e7edf86f774683f3dd636", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "14", - "_id": "5c0e7ee386f77443a74d2974", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "15", - "_id": "5c0e7ee786f77443a74d2975", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "16", - "_id": "5c0e7eeb86f7745dc7616603", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "17", - "_id": "5c0e7eef86f77452b35dc6e3", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "18", - "_id": "5c0e7ef486f774684264bd81", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "19", - "_id": "5c0e7ef886f7745dc7616604", - "_parent": "5c0e6a1586f77404597b4965", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "RigLayoutName": "Beltab", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "None", - "speedPenaltyPercent": -1, - "mousePenalty": 0, - "weaponErgonomicPenalty": -2 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, "64be7095047e826eae02b0c1": { "_id": "64be7095047e826eae02b0c1", "_name": "item_equipment_rig_rscr_zulu", @@ -349338,6 +348058,724 @@ }, "_proto": "578f87a3245977356274f2cb" }, + "628cd624459354321c4b7fa2": { + "_id": "628cd624459354321c4b7fa2", + "_name": "item_equipment_rig_tt_plate_carrier", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "ANA Tactical m2", + "ShortName": "ANA m2", + "Description": "ANA Tactical m2", + "Weight": 1.5, + "BackgroundColor": "default", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_tt_plate_carrier/item_equipment_rig_tt_plate_carrier.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 520, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "628cd624459354321c4b7fa3", + "_parent": "628cd624459354321c4b7fa2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "628cd624459354321c4b7fa4", + "_parent": "628cd624459354321c4b7fa2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "628cd624459354321c4b7fa5", + "_parent": "628cd624459354321c4b7fa2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "628cd624459354321c4b7fa6", + "_parent": "628cd624459354321c4b7fa2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [ + { + "_name": "Front_plate", + "_id": "6575e3f3f6a13a7b7100ad16", + "_parent": "628cd624459354321c4b7fa2", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "64afdcb83efdfea28601d041", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "6575e3f3f6a13a7b7100ad17", + "_parent": "628cd624459354321c4b7fa2", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "64afdcb83efdfea28601d041", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": true, + "RigLayoutName": "tt_plate_carrier", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 1, + "ArmorMaterial": "UHMWPE", + "ArmorType": "Light", + "speedPenaltyPercent": -1, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "63a897c6b1ff6e29734fcc95": { + "_id": "63a897c6b1ff6e29734fcc95", + "_name": "new_year_gift_big", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "new_year_gift_big", + "ShortName": "new_year_gift_big", + "Description": "new_year_gift_big", + "Weight": 3, + "BackgroundColor": "red", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_case_pumpkin/item_container_case_pumpkin1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": true, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "63a897c6b1ff6e29734fcc96", + "_parent": "63a897c6b1ff6e29734fcc95", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 4, + "cellsV": 4, + "minCount": 5, + "maxCount": 8, + "maxWeight": 5, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "64899f4189de40533661a0c0": { + "_id": "64899f4189de40533661a0c0", + "_name": "event_container_airdrop_08", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "64899f4189de40533661a0c1", + "_parent": "64899f4189de40533661a0c0", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "6489b99eebac5a4a1b73cabc": { + "_id": "6489b99eebac5a4a1b73cabc", + "_name": "event_container_airdrop_20", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489b99eebac5a4a1b73cabd", + "_parent": "6489b99eebac5a4a1b73cabc", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "648990314b4d2b31b63a46fc": { + "_id": "648990314b4d2b31b63a46fc", + "_name": "event_container_airdrop_03", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "648990314b4d2b31b63a46fd", + "_parent": "648990314b4d2b31b63a46fc", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "64899a35fc093676bb0f57e3": { + "_id": "64899a35fc093676bb0f57e3", + "_name": "event_container_airdrop_06", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "64899a35fc093676bb0f57e4", + "_parent": "64899a35fc093676bb0f57e3", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, "62f10b79e7ee985f386b2f47": { "_id": "62f10b79e7ee985f386b2f47", "_name": "random_loot_container", @@ -349948,6 +349386,1554 @@ }, "_proto": "578f87a3245977356274f2cb" }, + "64a5366719bab53bd203bf33": { + "_id": "64a5366719bab53bd203bf33", + "_name": "item_equipment_rig_MBSS", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "ANA Tactical m2", + "ShortName": "ANA m2", + "Description": "ANA Tactical m2", + "Weight": 1.33, + "BackgroundColor": "default", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_mbss/item_equipment_rig_mbss.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 463, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "64a5366719bab53bd203bf34", + "_parent": "64a5366719bab53bd203bf33", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "64a5366719bab53bd203bf35", + "_parent": "64a5366719bab53bd203bf33", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "64a5366719bab53bd203bf36", + "_parent": "64a5366719bab53bd203bf33", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "64c0ea953d4086a58204f83e", + "_parent": "64a5366719bab53bd203bf33", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "64c0ea953d4086a58204f83f", + "_parent": "64a5366719bab53bd203bf33", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "64d229dbc0138721582b701c", + "_parent": "64a5366719bab53bd203bf33", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "7", + "_id": "64d229dbc0138721582b701d", + "_parent": "64a5366719bab53bd203bf33", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [ + { + "_name": "Front_plate", + "_id": "657066787a2348732500842e", + "_parent": "64a5366719bab53bd203bf33", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fac30c6baea13cd07e10c", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "657066a5f7d1c1a2ca0328b8", + "_parent": "64a5366719bab53bd203bf33", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fac30c6baea13cd07e10c", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656f9fa0498d1b7e3e071d98", + "656fb0bd7c2d57afe200c0dc", + "656fa53d94b480b8a500c0e4", + "64afdcb83efdfea28601d041", + "655746010177119f4a097ff7" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": true, + "RigLayoutName": "mbss_rig", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0.241, + "ArmorMaterial": "Aramid", + "ArmorType": "Light", + "speedPenaltyPercent": 0, + "mousePenalty": -1, + "weaponErgonomicPenalty": -1 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "5c0e3eb886f7742015526062": { + "_id": "5c0e3eb886f7742015526062", + "_name": "item_equipment_rig_6b5_khaki", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "ANA Tactical m2", + "ShortName": "ANA m2", + "Description": "ANA Tactical m2", + "Weight": 7.1, + "BackgroundColor": "default", + "Width": 3, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/armor_6b5/item_equipment_rig_6b5_khaki.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 528, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "5c0e3eb886f7742015526064", + "_parent": "5c0e3eb886f7742015526062", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "5c0e3eb886f7742015526065", + "_parent": "5c0e3eb886f7742015526062", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "5c0e3eb886f7742015526066", + "_parent": "5c0e3eb886f7742015526062", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "5c0e3eb886f7742015526067", + "_parent": "5c0e3eb886f7742015526062", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "5c0e3eb886f7742015526068", + "_parent": "5c0e3eb886f7742015526062", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "5c0e3eb886f7742015526069", + "_parent": "5c0e3eb886f7742015526062", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [ + { + "_name": "Soft_armor_front", + "_id": "6576534de6d5dd75f40688ac", + "_parent": "5c0e3eb886f7742015526062", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65764a4cd8537eb26a0355ee", + "Filter": [ + "65764a4cd8537eb26a0355ee" + ], + "armorColliders": [ + "RibcageUp", + "RibcageLow" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "6576534de6d5dd75f40688ad", + "_parent": "5c0e3eb886f7742015526062", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65764bc22bc38ef78e076485", + "Filter": [ + "65764bc22bc38ef78e076485" + ], + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Collar", + "_id": "6576534de6d5dd75f40688ae", + "_parent": "5c0e3eb886f7742015526062", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65764c39526e320fbe035777", + "Filter": [ + "65764c39526e320fbe035777" + ], + "armorColliders": [ + "NeckFront", + "NeckBack" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Groin", + "_id": "6576534de6d5dd75f40688af", + "_parent": "5c0e3eb886f7742015526062", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "65764c6b526e320fbe03577b", + "Filter": [ + "65764c6b526e320fbe03577b" + ], + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": true, + "RigLayoutName": "6b5", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0.16, + "ArmorMaterial": "Titan", + "ArmorType": "Heavy", + "speedPenaltyPercent": -4, + "mousePenalty": -1, + "weaponErgonomicPenalty": -6 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "628dc750b910320f4c27a732": { + "_id": "628dc750b910320f4c27a732", + "_name": "item_equipment_rig_bae_rbav_af", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "tactec", + "ShortName": "tactec", + "Description": "tactec", + "Weight": 2.65, + "BackgroundColor": "default", + "Width": 3, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_bae_rbav_af/item_equipment_rig_bae_rbav_af.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 500, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "628dc750b910320f4c27a733", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "628dc750b910320f4c27a734", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "628dc750b910320f4c27a735", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "628dc750b910320f4c27a736", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "628dc750b910320f4c27a737", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "628dc750b910320f4c27a738", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "7", + "_id": "628dc750b910320f4c27a739", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "8", + "_id": "628dc750b910320f4c27a73a", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "9", + "_id": "628e251b83ec92260c0f43b9", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "10", + "_id": "628e254dee8bd3551830ab89", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [ + { + "_name": "Front_plate", + "_id": "6572f3360103b4a3270332e4", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fa25e94b480b8a500c0e0", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "6572f3360103b4a3270332e5", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fa25e94b480b8a500c0e0", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fa76500d62bcd2e024080", + "656fafe3498d1b7e3e071da4", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656fa53d94b480b8a500c0e4", + "656f9fa0498d1b7e3e071d98", + "64afdcb83efdfea28601d041", + "655746010177119f4a097ff7" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Left_side_plate", + "_id": "6572f3360103b4a3270332e6", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "", + "Filter": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_left_high" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Right_side_plate", + "_id": "6572f3360103b4a3270332e7", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "", + "Filter": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_right_high" + ], + "bluntDamageReduceFromSoftArmor": true + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_front", + "_id": "6572f3360103b4a3270332e8", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6572f1ca4c8d903cc60c874e", + "Filter": [ + "6572f1ca4c8d903cc60c874e" + ], + "armorColliders": [ + "RibcageLow", + "RibcageUp" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_back", + "_id": "6572f3360103b4a3270332e9", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6572f1d60103b4a3270332db", + "Filter": [ + "6572f1d60103b4a3270332db" + ], + "armorColliders": [ + "SpineTop", + "SpineDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Soft_armor_left", + "_id": "6572f3360103b4a3270332ea", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6572f1e10103b4a3270332df", + "Filter": [ + "6572f1e10103b4a3270332df" + ], + "armorColliders": [ + "LeftSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "soft_armor_right", + "_id": "6572f3360103b4a3270332eb", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6572f1edea457732140ce875", + "Filter": [ + "6572f1edea457732140ce875" + ], + "armorColliders": [ + "RightSideChestDown" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Groin", + "_id": "6572f3360103b4a3270332ec", + "_parent": "628dc750b910320f4c27a732", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6572f1f7ea457732140ce879", + "Filter": [ + "6572f1f7ea457732140ce879" + ], + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": true, + "RigLayoutName": "rbaf_af", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0.2, + "ArmorMaterial": "Aramid", + "ArmorType": "Light", + "speedPenaltyPercent": -2, + "mousePenalty": 0, + "weaponErgonomicPenalty": -1 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "5fd4c60f875c30179f5d04c2": { + "_id": "5fd4c60f875c30179f5d04c2", + "_name": "item_equipment_rig_bssmk1", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "commando", + "ShortName": "commando", + "Description": "commando", + "Weight": 1, + "BackgroundColor": "default", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_bssmk1/item_equipment_rig_bssmk1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "5fd4c60f875c30179f5d04c4", + "_parent": "5fd4c60f875c30179f5d04c2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "5fd4c60f875c30179f5d04c5", + "_parent": "5fd4c60f875c30179f5d04c2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "5fd4c60f875c30179f5d04c6", + "_parent": "5fd4c60f875c30179f5d04c2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "5fd4c60f875c30179f5d04c7", + "_parent": "5fd4c60f875c30179f5d04c2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "5fd4c60f875c30179f5d04c8", + "_parent": "5fd4c60f875c30179f5d04c2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "5fd4c60f875c30179f5d04c9", + "_parent": "5fd4c60f875c30179f5d04c2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "7", + "_id": "5fd4c60f875c30179f5d04ca", + "_parent": "5fd4c60f875c30179f5d04c2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "8", + "_id": "5fd4c60f875c30179f5d04cb", + "_parent": "5fd4c60f875c30179f5d04c2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "9", + "_id": "5fd4c60f875c30179f5d04cc", + "_parent": "5fd4c60f875c30179f5d04c2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "10", + "_id": "5fd4c60f875c30179f5d04cd", + "_parent": "5fd4c60f875c30179f5d04c2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "RigLayoutName": "D3crx", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "None", + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, "5c0e9f2c86f77432297fe0a3": { "_id": "5c0e9f2c86f77432297fe0a3", "_name": "item_equipment_rig_commando_black", @@ -351032,3278 +352018,6 @@ }, "_proto": "578f87a3245977356274f2cb" }, - "628cd624459354321c4b7fa2": { - "_id": "628cd624459354321c4b7fa2", - "_name": "item_equipment_rig_tt_plate_carrier", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "ANA Tactical m2", - "ShortName": "ANA m2", - "Description": "ANA Tactical m2", - "Weight": 1.5, - "BackgroundColor": "default", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_tt_plate_carrier/item_equipment_rig_tt_plate_carrier.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 520, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "628cd624459354321c4b7fa3", - "_parent": "628cd624459354321c4b7fa2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "628cd624459354321c4b7fa4", - "_parent": "628cd624459354321c4b7fa2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "628cd624459354321c4b7fa5", - "_parent": "628cd624459354321c4b7fa2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "628cd624459354321c4b7fa6", - "_parent": "628cd624459354321c4b7fa2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [ - { - "_name": "Front_plate", - "_id": "6575e3f3f6a13a7b7100ad16", - "_parent": "628cd624459354321c4b7fa2", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "64afdcb83efdfea28601d041", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_chest" - ], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "6575e3f3f6a13a7b7100ad17", - "_parent": "628cd624459354321c4b7fa2", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "64afdcb83efdfea28601d041", - "Filter": [ - "656f9d5900d62bcd2e02407c", - "656fa8d700d62bcd2e024084", - "656fa99800d62bcd2e024088", - "656fae5f7c2d57afe200c0d7", - "656faf0ca0dce000a2020f77", - "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", - "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", - "656fad8c498d1b7e3e071da0", - "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", - "656fb0bd7c2d57afe200c0dc", - "656f9fa0498d1b7e3e071d98", - "656fa53d94b480b8a500c0e4", - "655746010177119f4a097ff7", - "64afdcb83efdfea28601d041" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": true, - "RigLayoutName": "tt_plate_carrier", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 1, - "ArmorMaterial": "UHMWPE", - "ArmorType": "Light", - "speedPenaltyPercent": -1, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, - "63a897c6b1ff6e29734fcc95": { - "_id": "63a897c6b1ff6e29734fcc95", - "_name": "new_year_gift_big", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "new_year_gift_big", - "ShortName": "new_year_gift_big", - "Description": "new_year_gift_big", - "Weight": 3, - "BackgroundColor": "red", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_case_pumpkin/item_container_case_pumpkin1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": true, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "63a897c6b1ff6e29734fcc96", - "_parent": "63a897c6b1ff6e29734fcc95", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 4, - "cellsV": 4, - "minCount": 5, - "maxCount": 8, - "maxWeight": 5, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "64899f4189de40533661a0c0": { - "_id": "64899f4189de40533661a0c0", - "_name": "event_container_airdrop_08", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "64899f4189de40533661a0c1", - "_parent": "64899f4189de40533661a0c0", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6489b99eebac5a4a1b73cabc": { - "_id": "6489b99eebac5a4a1b73cabc", - "_name": "event_container_airdrop_20", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489b99eebac5a4a1b73cabd", - "_parent": "6489b99eebac5a4a1b73cabc", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "648990314b4d2b31b63a46fc": { - "_id": "648990314b4d2b31b63a46fc", - "_name": "event_container_airdrop_03", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "648990314b4d2b31b63a46fd", - "_parent": "648990314b4d2b31b63a46fc", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "64899a35fc093676bb0f57e3": { - "_id": "64899a35fc093676bb0f57e3", - "_name": "event_container_airdrop_06", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "64899a35fc093676bb0f57e4", - "_parent": "64899a35fc093676bb0f57e3", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6034cf5fffd42c541047f72e": { - "_id": "6034cf5fffd42c541047f72e", - "_name": "item_equipment_rig_umka_m33", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "BEAR Rig", - "ShortName": "BlackRock", - "Description": "BlackRock chest rig", - "Weight": 1.2, - "BackgroundColor": "default", - "Width": 3, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_umka_m33/item_equipment_rig_umka_m33.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "6034cf5fffd42c541047f730", - "_parent": "6034cf5fffd42c541047f72e", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "6034cf5fffd42c541047f731", - "_parent": "6034cf5fffd42c541047f72e", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "6034cf5fffd42c541047f732", - "_parent": "6034cf5fffd42c541047f72e", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "6034cf5fffd42c541047f733", - "_parent": "6034cf5fffd42c541047f72e", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "6034cf5fffd42c541047f734", - "_parent": "6034cf5fffd42c541047f72e", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 2, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "6034cf5fffd42c541047f735", - "_parent": "6034cf5fffd42c541047f72e", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "7", - "_id": "6034cf5fffd42c541047f736", - "_parent": "6034cf5fffd42c541047f72e", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "8", - "_id": "6034cf5fffd42c541047f737", - "_parent": "6034cf5fffd42c541047f72e", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "9", - "_id": "6034cf5fffd42c541047f738", - "_parent": "6034cf5fffd42c541047f72e", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "RigLayoutName": "umka_m33", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "None", - "speedPenaltyPercent": -1, - "mousePenalty": 0, - "weaponErgonomicPenalty": -2 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, - "634959225289190e5e773b3b": { - "_id": "634959225289190e5e773b3b", - "_name": "pumpkin_rand_loot_container", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "Тыква с рандомным лутом", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 3, - "BackgroundColor": "orange", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_case_pumpkin/item_container_case_pumpkin1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": true, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "634959225289190e5e773b3d", - "_parent": "634959225289190e5e773b3b", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 3, - "cellsV": 3, - "minCount": 5, - "maxCount": 7, - "maxWeight": 3, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6489a97645f9ca4ba51c4dd0": { - "_id": "6489a97645f9ca4ba51c4dd0", - "_name": "event_container_airdrop_13", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489a97645f9ca4ba51c4dd1", - "_parent": "6489a97645f9ca4ba51c4dd0", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6489ab9645f9ca4ba51c4dd7": { - "_id": "6489ab9645f9ca4ba51c4dd7", - "_name": "event_container_airdrop_15", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489ab9645f9ca4ba51c4dd8", - "_parent": "6489ab9645f9ca4ba51c4dd7", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6489ba92a74e43447b64d5e2": { - "_id": "6489ba92a74e43447b64d5e2", - "_name": "event_container_airdrop_22", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489ba92a74e43447b64d5e3", - "_parent": "6489ba92a74e43447b64d5e2", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "5e4abfed86f77406a2713cf7": { - "_id": "5e4abfed86f77406a2713cf7", - "_name": "item_equipment_rig_tarzan", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "BEAR Rig 6h112", - "ShortName": "Rig 6h112", - "Description": "Rig 6h112", - "Weight": 1.45, - "BackgroundColor": "default", - "Width": 4, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_tarzan/cr_tarzan.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "5e4abfed86f77406a2713cf9", - "_parent": "5e4abfed86f77406a2713cf7", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "5e4abfed86f77406a2713cfa", - "_parent": "5e4abfed86f77406a2713cf7", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "5e4abfed86f77406a2713cfb", - "_parent": "5e4abfed86f77406a2713cf7", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "5e4abfed86f77406a2713cfc", - "_parent": "5e4abfed86f77406a2713cf7", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "5e4abfed86f77406a2713cfd", - "_parent": "5e4abfed86f77406a2713cf7", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "5e4abfed86f77406a2713cfe", - "_parent": "5e4abfed86f77406a2713cf7", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "7", - "_id": "5e4abfed86f77406a2713cff", - "_parent": "5e4abfed86f77406a2713cf7", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "8", - "_id": "5e4abfed86f77406a2713d00", - "_parent": "5e4abfed86f77406a2713cf7", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "9", - "_id": "64ad1fc6ca4a7252a60efbab", - "_parent": "5e4abfed86f77406a2713cf7", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "10", - "_id": "64ad1fc6ca4a7252a60efbac", - "_parent": "5e4abfed86f77406a2713cf7", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "RigLayoutName": "Tarzan", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "None", - "speedPenaltyPercent": -1, - "mousePenalty": 0, - "weaponErgonomicPenalty": -2 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, - "64be7110bf597ba84a0a41ea": { - "_id": "64be7110bf597ba84a0a41ea", - "_name": "item_equipment_rig_chicom", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "BEAR Rig 6h112", - "ShortName": "Rig 6h112", - "Description": "Rig 6h112", - "Weight": 0.65, - "BackgroundColor": "default", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_chicom/item_equipment_rig_chicom.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "64be7110bf597ba84a0a41eb", - "_parent": "64be7110bf597ba84a0a41ea", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "64be7110bf597ba84a0a41ec", - "_parent": "64be7110bf597ba84a0a41ea", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "64be7110bf597ba84a0a41ed", - "_parent": "64be7110bf597ba84a0a41ea", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "64be7110bf597ba84a0a41ee", - "_parent": "64be7110bf597ba84a0a41ea", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "64be71fcbf597ba84a0a41f0", - "_parent": "64be7110bf597ba84a0a41ea", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "64be7214bf597ba84a0a41f1", - "_parent": "64be7110bf597ba84a0a41ea", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "7", - "_id": "64c0905d5889a0d92900fd3a", - "_parent": "64be7110bf597ba84a0a41ea", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "RigLayoutName": "chicom", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "None", - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": -1 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, - "6034d0230ca681766b6a0fb5": { - "_id": "6034d0230ca681766b6a0fb5", - "_name": "item_equipment_rig_cs_assault", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "Wild Vest", - "ShortName": "Wild Vest", - "Description": "Wild Vest", - "Weight": 0.75, - "BackgroundColor": "default", - "Width": 2, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_cs_assault/item_equipment_rig_cs_assault.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 2, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "6034d0230ca681766b6a0fb7", - "_parent": "6034d0230ca681766b6a0fb5", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 3, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "6034d0230ca681766b6a0fb8", - "_parent": "6034d0230ca681766b6a0fb5", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "6034d0230ca681766b6a0fb9", - "_parent": "6034d0230ca681766b6a0fb5", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "6034d0230ca681766b6a0fba", - "_parent": "6034d0230ca681766b6a0fb5", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 3, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "RigLayoutName": "mil_tac", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "None", - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "5648a69d4bdc2ded0b8b457b" - }, - "64897ffc3656831810043165": { - "_id": "64897ffc3656831810043165", - "_name": "event_container_airdrop_01", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "64897ffc3656831810043166", - "_parent": "64897ffc3656831810043165", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "60a621c49c197e4e8c4455e6": { - "_id": "60a621c49c197e4e8c4455e6", - "_name": "item_equipment_rig_sprofi_mk2_ak", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "BEAR Rig", - "ShortName": "BlackRock", - "Description": "BlackRock chest rig", - "Weight": 1.75, - "BackgroundColor": "default", - "Width": 3, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_sprofi_mk2_ak/item_equipment_rig_sprofi_mk2_ak.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "60a621c59c197e4e8c4455e8", - "_parent": "60a621c49c197e4e8c4455e6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "60a621c59c197e4e8c4455e9", - "_parent": "60a621c49c197e4e8c4455e6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "60a621c59c197e4e8c4455ea", - "_parent": "60a621c49c197e4e8c4455e6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "60a621c59c197e4e8c4455eb", - "_parent": "60a621c49c197e4e8c4455e6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "60a621c59c197e4e8c4455ec", - "_parent": "60a621c49c197e4e8c4455e6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "60a621c59c197e4e8c4455ed", - "_parent": "60a621c49c197e4e8c4455e6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "7", - "_id": "60a621c59c197e4e8c4455ee", - "_parent": "60a621c49c197e4e8c4455e6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "8", - "_id": "60a621c59c197e4e8c4455ef", - "_parent": "60a621c49c197e4e8c4455e6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "9", - "_id": "60a621c59c197e4e8c4455f0", - "_parent": "60a621c49c197e4e8c4455e6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "10", - "_id": "60a621c59c197e4e8c4455f1", - "_parent": "60a621c49c197e4e8c4455e6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "11", - "_id": "60a621c59c197e4e8c4455f2", - "_parent": "60a621c49c197e4e8c4455e6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "12", - "_id": "60a65b5ff3cdbd565f577a54", - "_parent": "60a621c49c197e4e8c4455e6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "RigLayoutName": "sprofi_mk2", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "None", - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": -1 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, - "64898e9db18e646e992aba47": { - "_id": "64898e9db18e646e992aba47", - "_name": "event_container_airdrop_02", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "64898e9db18e646e992aba48", - "_parent": "64898e9db18e646e992aba47", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "648996987063b903ff4b8561": { - "_id": "648996987063b903ff4b8561", - "_name": "event_container_airdrop_04", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "648996987063b903ff4b8562", - "_parent": "648996987063b903ff4b8561", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6489a344fc493c59d15fec0f": { - "_id": "6489a344fc493c59d15fec0f", - "_name": "event_container_airdrop_11", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489a344fc493c59d15fec10", - "_parent": "6489a344fc493c59d15fec0f", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6489bbd6d0c36c0a4925c4b8": { - "_id": "6489bbd6d0c36c0a4925c4b8", - "_name": "event_container_airdrop_23", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489bbd6d0c36c0a4925c4b9", - "_parent": "6489bbd6d0c36c0a4925c4b8", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "5c0e446786f7742013381639": { - "_id": "5c0e446786f7742013381639", - "_name": "item_equipment_rig_6b5_flora", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "ANA Tactical m2", - "ShortName": "ANA m2", - "Description": "ANA Tactical m2", - "Weight": 12.2, - "BackgroundColor": "default", - "Width": 3, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/armor_6b5/item_equipment_rig_6b5_flora.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 468, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "5c0e446786f774201338163b", - "_parent": "5c0e446786f7742013381639", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "5c0e446786f774201338163c", - "_parent": "5c0e446786f7742013381639", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "5c0e446786f774201338163d", - "_parent": "5c0e446786f7742013381639", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "5c0e446786f774201338163e", - "_parent": "5c0e446786f7742013381639", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "5c0e446786f774201338163f", - "_parent": "5c0e446786f7742013381639", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "5c0e446786f7742013381640", - "_parent": "5c0e446786f7742013381639", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [ - { - "_name": "Soft_armor_front", - "_id": "65708e5b39c0274d6c0a66df", - "_parent": "5c0e446786f7742013381639", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657087577f6d4590ac0d2109", - "Filter": [ - "657087577f6d4590ac0d2109" - ], - "armorColliders": [ - "RibcageLow", - "RibcageUp" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "65708e9a1f010cf0fe04affd", - "_parent": "5c0e446786f7742013381639", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "6570880f4a747dbb63005ee5", - "Filter": [ - "6570880f4a747dbb63005ee5" - ], - "armorColliders": [ - "SpineTop", - "SpineDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Collar", - "_id": "6570949705ae01b7f10e3fa2", - "_parent": "5c0e446786f7742013381639", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65708afe4a747dbb63005eee", - "Filter": [ - "65708afe4a747dbb63005eee" - ], - "armorColliders": [ - "NeckBack", - "NeckFront" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Groin", - "_id": "6570949705ae01b7f10e3fa3", - "_parent": "5c0e446786f7742013381639", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "65708b4c4a747dbb63005ef3", - "Filter": [ - "65708b4c4a747dbb63005ef3" - ], - "armorColliders": [ - "Pelvis" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": true, - "RigLayoutName": "6b5", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0.2529, - "ArmorMaterial": "Aramid", - "ArmorType": "Light", - "speedPenaltyPercent": -2, - "mousePenalty": -1, - "weaponErgonomicPenalty": -1 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, "6040dd4ddcf9592f401632d2": { "_id": "6040dd4ddcf9592f401632d2", "_name": "item_equipment_rig_azimut_surpat", @@ -355368,6 +353082,2443 @@ }, "_proto": "578f87a3245977356274f2cb" }, + "64898e9db18e646e992aba47": { + "_id": "64898e9db18e646e992aba47", + "_name": "event_container_airdrop_02", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "64898e9db18e646e992aba48", + "_parent": "64898e9db18e646e992aba47", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "648996987063b903ff4b8561": { + "_id": "648996987063b903ff4b8561", + "_name": "event_container_airdrop_04", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "648996987063b903ff4b8562", + "_parent": "648996987063b903ff4b8561", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "6489a344fc493c59d15fec0f": { + "_id": "6489a344fc493c59d15fec0f", + "_name": "event_container_airdrop_11", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489a344fc493c59d15fec10", + "_parent": "6489a344fc493c59d15fec0f", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "63611865ba5b90db0c0399d1": { + "_id": "63611865ba5b90db0c0399d1", + "_name": "item_equipment_rig_boss_zryachi", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "BEAR Rig 6h112", + "ShortName": "Rig 6h112", + "Description": "Rig 6h112", + "Weight": 1.7, + "BackgroundColor": "default", + "Width": 4, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_boss_zryachi/item_equipment_rig_boss_zryachi.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "63611865ba5b90db0c0399d2", + "_parent": "63611865ba5b90db0c0399d1", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "63611865ba5b90db0c0399d3", + "_parent": "63611865ba5b90db0c0399d1", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "63611865ba5b90db0c0399d4", + "_parent": "63611865ba5b90db0c0399d1", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "63611865ba5b90db0c0399d5", + "_parent": "63611865ba5b90db0c0399d1", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "63611865ba5b90db0c0399d6", + "_parent": "63611865ba5b90db0c0399d1", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "63611865ba5b90db0c0399d7", + "_parent": "63611865ba5b90db0c0399d1", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "7", + "_id": "63611865ba5b90db0c0399d8", + "_parent": "63611865ba5b90db0c0399d1", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "8", + "_id": "63611865ba5b90db0c0399d9", + "_parent": "63611865ba5b90db0c0399d1", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "RigLayoutName": "6h112", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "Light", + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "60a621c49c197e4e8c4455e6": { + "_id": "60a621c49c197e4e8c4455e6", + "_name": "item_equipment_rig_sprofi_mk2_ak", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "BEAR Rig", + "ShortName": "BlackRock", + "Description": "BlackRock chest rig", + "Weight": 1.75, + "BackgroundColor": "default", + "Width": 3, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_sprofi_mk2_ak/item_equipment_rig_sprofi_mk2_ak.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "60a621c59c197e4e8c4455e8", + "_parent": "60a621c49c197e4e8c4455e6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "60a621c59c197e4e8c4455e9", + "_parent": "60a621c49c197e4e8c4455e6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "60a621c59c197e4e8c4455ea", + "_parent": "60a621c49c197e4e8c4455e6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "60a621c59c197e4e8c4455eb", + "_parent": "60a621c49c197e4e8c4455e6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "60a621c59c197e4e8c4455ec", + "_parent": "60a621c49c197e4e8c4455e6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "60a621c59c197e4e8c4455ed", + "_parent": "60a621c49c197e4e8c4455e6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "7", + "_id": "60a621c59c197e4e8c4455ee", + "_parent": "60a621c49c197e4e8c4455e6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "8", + "_id": "60a621c59c197e4e8c4455ef", + "_parent": "60a621c49c197e4e8c4455e6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "9", + "_id": "60a621c59c197e4e8c4455f0", + "_parent": "60a621c49c197e4e8c4455e6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "10", + "_id": "60a621c59c197e4e8c4455f1", + "_parent": "60a621c49c197e4e8c4455e6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "11", + "_id": "60a621c59c197e4e8c4455f2", + "_parent": "60a621c49c197e4e8c4455e6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "12", + "_id": "60a65b5ff3cdbd565f577a54", + "_parent": "60a621c49c197e4e8c4455e6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "RigLayoutName": "sprofi_mk2", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "None", + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": -1 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "6489bbd6d0c36c0a4925c4b8": { + "_id": "6489bbd6d0c36c0a4925c4b8", + "_name": "event_container_airdrop_23", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489bbd6d0c36c0a4925c4b9", + "_parent": "6489bbd6d0c36c0a4925c4b8", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "64be7110bf597ba84a0a41ea": { + "_id": "64be7110bf597ba84a0a41ea", + "_name": "item_equipment_rig_chicom", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "BEAR Rig 6h112", + "ShortName": "Rig 6h112", + "Description": "Rig 6h112", + "Weight": 0.65, + "BackgroundColor": "default", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_chicom/item_equipment_rig_chicom.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "64be7110bf597ba84a0a41eb", + "_parent": "64be7110bf597ba84a0a41ea", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "64be7110bf597ba84a0a41ec", + "_parent": "64be7110bf597ba84a0a41ea", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "64be7110bf597ba84a0a41ed", + "_parent": "64be7110bf597ba84a0a41ea", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "64be7110bf597ba84a0a41ee", + "_parent": "64be7110bf597ba84a0a41ea", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "64be71fcbf597ba84a0a41f0", + "_parent": "64be7110bf597ba84a0a41ea", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "64be7214bf597ba84a0a41f1", + "_parent": "64be7110bf597ba84a0a41ea", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "7", + "_id": "64c0905d5889a0d92900fd3a", + "_parent": "64be7110bf597ba84a0a41ea", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "RigLayoutName": "chicom", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "None", + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": -1 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "6034d0230ca681766b6a0fb5": { + "_id": "6034d0230ca681766b6a0fb5", + "_name": "item_equipment_rig_cs_assault", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "Wild Vest", + "ShortName": "Wild Vest", + "Description": "Wild Vest", + "Weight": 0.75, + "BackgroundColor": "default", + "Width": 2, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_cs_assault/item_equipment_rig_cs_assault.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 2, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "6034d0230ca681766b6a0fb7", + "_parent": "6034d0230ca681766b6a0fb5", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "6034d0230ca681766b6a0fb8", + "_parent": "6034d0230ca681766b6a0fb5", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "6034d0230ca681766b6a0fb9", + "_parent": "6034d0230ca681766b6a0fb5", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "6034d0230ca681766b6a0fba", + "_parent": "6034d0230ca681766b6a0fb5", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "RigLayoutName": "mil_tac", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "None", + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "5648a69d4bdc2ded0b8b457b" + }, + "64897ffc3656831810043165": { + "_id": "64897ffc3656831810043165", + "_name": "event_container_airdrop_01", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "64897ffc3656831810043166", + "_parent": "64897ffc3656831810043165", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "5e9db13186f7742f845ee9d3": { + "_id": "5e9db13186f7742f845ee9d3", + "_name": "item_equipment_rig_bearing", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "commando", + "ShortName": "commando", + "Description": "commando", + "Weight": 1.36, + "BackgroundColor": "default", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/rig_bearing/item_equipment_rig_bearing.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "5e9db13186f7742f845ee9d5", + "_parent": "5e9db13186f7742f845ee9d3", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "5e9db13186f7742f845ee9d6", + "_parent": "5e9db13186f7742f845ee9d3", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "5e9db13186f7742f845ee9d7", + "_parent": "5e9db13186f7742f845ee9d3", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "5e9db13186f7742f845ee9d8", + "_parent": "5e9db13186f7742f845ee9d3", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "5e9db13186f7742f845ee9d9", + "_parent": "5e9db13186f7742f845ee9d3", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "5e9db13186f7742f845ee9da", + "_parent": "5e9db13186f7742f845ee9d3", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "7", + "_id": "5e9db13186f7742f845ee9db", + "_parent": "5e9db13186f7742f845ee9d3", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "8", + "_id": "5e9db13186f7742f845ee9dc", + "_parent": "5e9db13186f7742f845ee9d3", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "RigLayoutName": "Bearing", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 0, + "ArmorMaterial": "UHMWPE", + "ArmorType": "None", + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": 0 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "634959225289190e5e773b3b": { + "_id": "634959225289190e5e773b3b", + "_name": "pumpkin_rand_loot_container", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "Тыква с рандомным лутом", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 3, + "BackgroundColor": "orange", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_case_pumpkin/item_container_case_pumpkin1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": true, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "634959225289190e5e773b3d", + "_parent": "634959225289190e5e773b3b", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 3, + "cellsV": 3, + "minCount": 5, + "maxCount": 7, + "maxWeight": 3, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "6489a97645f9ca4ba51c4dd0": { + "_id": "6489a97645f9ca4ba51c4dd0", + "_name": "event_container_airdrop_13", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489a97645f9ca4ba51c4dd1", + "_parent": "6489a97645f9ca4ba51c4dd0", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "6489ab9645f9ca4ba51c4dd7": { + "_id": "6489ab9645f9ca4ba51c4dd7", + "_name": "event_container_airdrop_15", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489ab9645f9ca4ba51c4dd8", + "_parent": "6489ab9645f9ca4ba51c4dd7", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "6489ba92a74e43447b64d5e2": { + "_id": "6489ba92a74e43447b64d5e2", + "_name": "event_container_airdrop_22", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489ba92a74e43447b64d5e3", + "_parent": "6489ba92a74e43447b64d5e2", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "633ffb5d419dbf4bea7004c6": { + "_id": "633ffb5d419dbf4bea7004c6", + "_name": "random_loot_quest_container", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "Ящик с квестовым лутом", + "ShortName": "Ящик с квестовым лутом", + "Description": "Ящик с квестовым лутом", + "Weight": 250, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "633ffb5d419dbf4bea7004c7", + "_parent": "633ffb5d419dbf4bea7004c6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 26, + "maxCount": 50, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "6489a0a4fc493c59d15fec05": { + "_id": "6489a0a4fc493c59d15fec05", + "_name": "event_container_airdrop_09", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489a0a4fc493c59d15fec06", + "_parent": "6489a0a4fc493c59d15fec05", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "6489ba157c07471efa3e03b4": { + "_id": "6489ba157c07471efa3e03b4", + "_name": "event_container_airdrop_21", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489ba157c07471efa3e03b5", + "_parent": "6489ba157c07471efa3e03b4", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, "5d5d87f786f77427997cfaef": { "_id": "5d5d87f786f77427997cfaef", "_name": "item_equipment_armor_a18", @@ -356042,23 +356193,23 @@ }, "_proto": "544a5caa4bdc2d1a388b4568" }, - "628b9784bcf6e2659e09b8a2": { - "_id": "628b9784bcf6e2659e09b8a2", - "_name": "item_equipment_rig_boss_big_pipe", + "544a5caa4bdc2d1a388b4568": { + "_id": "544a5caa4bdc2d1a388b4568", + "_name": "standartRig", "_parent": "5448e5284bdc2dcb718b4567", "_type": "Item", "_props": { - "Name": "ANA Tactical m2", - "ShortName": "ANA m2", - "Description": "ANA Tactical m2", - "Weight": 1.32, + "Name": "USEC Rig", + "ShortName": "AWS", + "Description": "Crye Precision AWS", + "Weight": 2.88, "BackgroundColor": "default", "Width": 3, - "Height": 3, + "Height": 4, "StackMaxSize": 1, "ItemSound": "gear_generic", "Prefab": { - "path": "assets/content/items/equipment/armor_ss_precision_boss_big_pipe/item_equipment_rig_boss_big_pipe.bundle", + "path": "assets/content/items/equipment/rig_cryeavs/item_equipment_rig_cryeavs.bundle", "rcid": "" }, "UsePrefab": { @@ -356067,7 +356218,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": false, + "ExaminedByDefault": true, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -356075,10 +356226,10 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 100, + "LootExperience": 60, + "ExamineExperience": 10, "HideEntrails": true, - "RepairCost": 757, + "RepairCost": 129, "RepairSpeed": 0, "ExtraSizeLeft": 0, "ExtraSizeRight": 0, @@ -356105,8 +356256,8 @@ "Grids": [ { "_name": "1", - "_id": "628b9784bcf6e2659e09b8a4", - "_parent": "628b9784bcf6e2659e09b8a2", + "_id": "55d7174d4bdc2d1b198b456c", + "_parent": "544a5caa4bdc2d1a388b4568", "_props": { "filters": [ { @@ -356129,8 +356280,8 @@ }, { "_name": "2", - "_id": "628b9784bcf6e2659e09b8a5", - "_parent": "628b9784bcf6e2659e09b8a2", + "_id": "55d7174f4bdc2d8a028b4568", + "_parent": "544a5caa4bdc2d1a388b4568", "_props": { "filters": [ { @@ -356153,8 +356304,8 @@ }, { "_name": "3", - "_id": "628b9784bcf6e2659e09b8a6", - "_parent": "628b9784bcf6e2659e09b8a2", + "_id": "55d717514bdc2d88028b456c", + "_parent": "544a5caa4bdc2d1a388b4568", "_props": { "filters": [ { @@ -356177,8 +356328,8 @@ }, { "_name": "4", - "_id": "628b9784bcf6e2659e09b8a7", - "_parent": "628b9784bcf6e2659e09b8a2", + "_id": "55d717534bdc2d87028b456c", + "_parent": "544a5caa4bdc2d1a388b4568", "_props": { "filters": [ { @@ -356201,8 +356352,152 @@ }, { "_name": "5", - "_id": "628b9784bcf6e2659e09b8a8", - "_parent": "628b9784bcf6e2659e09b8a2", + "_id": "55d717574bdc2d86028b456c", + "_parent": "544a5caa4bdc2d1a388b4568", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "55d7175a4bdc2d89028b456e", + "_parent": "544a5caa4bdc2d1a388b4568", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "7", + "_id": "5d67d80886f774599657f154", + "_parent": "544a5caa4bdc2d1a388b4568", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "8", + "_id": "5d67d81186f77455757e7525", + "_parent": "544a5caa4bdc2d1a388b4568", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "9", + "_id": "5d67d81c86f7740b98205a82", + "_parent": "544a5caa4bdc2d1a388b4568", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "10", + "_id": "5d67d82386f7740bd93652d2", + "_parent": "544a5caa4bdc2d1a388b4568", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "11", + "_id": "5d67d82a86f77455757e7526", + "_parent": "544a5caa4bdc2d1a388b4568", "_props": { "filters": [ { @@ -356222,18 +356517,42 @@ "isSortingTable": false }, "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "12", + "_id": "5d67d83286f7740b98205a83", + "_parent": "544a5caa4bdc2d1a388b4568", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" } ], "Slots": [ { "_name": "Front_plate", - "_id": "6575e21e945bf78edd04c44d", - "_parent": "628b9784bcf6e2659e09b8a2", + "_id": "6570e9caa6560e4ee50c2b16", + "_parent": "544a5caa4bdc2d1a388b4568", "_props": { "filters": [ { "locked": false, - "Plate": "656fae5f7c2d57afe200c0d7", + "Plate": "656f9fa0498d1b7e3e071d98", "Filter": [ "656f9d5900d62bcd2e02407c", "656fa8d700d62bcd2e024084", @@ -356241,14 +356560,14 @@ "656fae5f7c2d57afe200c0d7", "656faf0ca0dce000a2020f77", "656fa0fb498d1b7e3e071d9c", - "656fafe3498d1b7e3e071da4", "656fa76500d62bcd2e024080", + "656fafe3498d1b7e3e071da4", "656fa25e94b480b8a500c0e0", "656fad8c498d1b7e3e071da0", "656fa61e94b480b8a500c0e8", "656fb21fa0dce000a2020f7c", - "656fac30c6baea13cd07e10c", "656fb0bd7c2d57afe200c0dc", + "656fac30c6baea13cd07e10c", "656f9fa0498d1b7e3e071d98", "656fa53d94b480b8a500c0e4", "655746010177119f4a097ff7", @@ -356258,7 +356577,7 @@ "armorPlateColliders": [ "Plate_Granit_SAPI_chest" ], - "bluntDamageReduceFromSoftArmor": false + "bluntDamageReduceFromSoftArmor": true } ] }, @@ -356268,13 +356587,13 @@ }, { "_name": "Back_plate", - "_id": "6575e21e945bf78edd04c44e", - "_parent": "628b9784bcf6e2659e09b8a2", + "_id": "6570e9f33a5689d85f08db9f", + "_parent": "544a5caa4bdc2d1a388b4568", "_props": { "filters": [ { "locked": false, - "Plate": "656fae5f7c2d57afe200c0d7", + "Plate": "656f9fa0498d1b7e3e071d98", "Filter": [ "656f9d5900d62bcd2e02407c", "656fa8d700d62bcd2e024084", @@ -356284,12 +356603,12 @@ "656fa0fb498d1b7e3e071d9c", "656fafe3498d1b7e3e071da4", "656fa76500d62bcd2e024080", - "656fa25e94b480b8a500c0e0", "656fad8c498d1b7e3e071da0", + "656fa25e94b480b8a500c0e0", "656fa61e94b480b8a500c0e8", - "656fb21fa0dce000a2020f7c", "656fac30c6baea13cd07e10c", "656fb0bd7c2d57afe200c0dc", + "656fb21fa0dce000a2020f7c", "656f9fa0498d1b7e3e071d98", "656fa53d94b480b8a500c0e4", "655746010177119f4a097ff7", @@ -356299,7 +356618,7 @@ "armorPlateColliders": [ "Plate_Granit_SAPI_back" ], - "bluntDamageReduceFromSoftArmor": false + "bluntDamageReduceFromSoftArmor": true } ] }, @@ -356308,52 +356627,76 @@ "_proto": "64479fdf9731c8fadc0642c1" }, { - "_name": "Left_side_plate", - "_id": "65cf4dffa644dd466f01fde3", - "_parent": "628b9784bcf6e2659e09b8a2", + "_name": "Soft_armor_front", + "_id": "6570ecd90921c914bf078f0c", + "_parent": "544a5caa4bdc2d1a388b4568", "_props": { "filters": [ { - "locked": false, - "Plate": "6557458f83942d705f0c4962", + "locked": true, + "Plate": "6570e83223c1f638ef0b0ede", "Filter": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d" + "6570e83223c1f638ef0b0ede" ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_left_high" + "armorColliders": [ + "RibcageUp", + "RibcageLow" ], + "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false } ] }, - "_required": false, + "_required": true, "_mergeSlotWithChildren": true, "_proto": "64479fdf9731c8fadc0642c1" }, { - "_name": "Right_side_plate", - "_id": "65cf4dffa644dd466f01fde4", - "_parent": "628b9784bcf6e2659e09b8a2", + "_name": "Soft_armor_back", + "_id": "6570ecd90921c914bf078f0d", + "_parent": "544a5caa4bdc2d1a388b4568", "_props": { "filters": [ { - "locked": false, - "Plate": "6557458f83942d705f0c4962", + "locked": true, + "Plate": "6570e87c23c1f638ef0b0ee2", "Filter": [ - "6557458f83942d705f0c4962", - "64afdb577bb3bfe8fe03fd1d" + "6570e87c23c1f638ef0b0ee2" ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SSAPI_side_right_high" + "armorColliders": [ + "SpineTop", + "SpineDown" ], + "armorPlateColliders": [], "bluntDamageReduceFromSoftArmor": false } ] }, - "_required": false, + "_required": true, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Groin", + "_id": "6570ed5c0921c914bf078f11", + "_parent": "544a5caa4bdc2d1a388b4568", + "_props": { + "filters": [ + { + "locked": true, + "Plate": "6570e90b3a5689d85f08db97", + "Filter": [ + "6570e90b3a5689d85f08db97" + ], + "armorColliders": [ + "Pelvis" + ], + "armorPlateColliders": [], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": true, "_mergeSlotWithChildren": true, "_proto": "64479fdf9731c8fadc0642c1" } @@ -356362,17 +356705,108 @@ "CantRemoveFromSlotsDuringRaid": [], "SearchSound": "looting_body_extended", "BlocksArmorVest": true, - "RigLayoutName": "boss_big_pipe", + "RigLayoutName": "Avs", "armorZone": [], "armorClass": 0, - "BluntThroughput": 1, - "ArmorMaterial": "UHMWPE", + "BluntThroughput": 0.34, + "ArmorMaterial": "Aramid", "ArmorType": "Light", - "speedPenaltyPercent": 0, + "speedPenaltyPercent": -2, "mousePenalty": 0, - "weaponErgonomicPenalty": -1 + "weaponErgonomicPenalty": 0 + } + }, + "6489aa584b6fc03d00374e59": { + "_id": "6489aa584b6fc03d00374e59", + "_name": "event_container_airdrop_14", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489aa584b6fc03d00374e5a", + "_parent": "6489aa584b6fc03d00374e59", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false }, - "_proto": "544a5caa4bdc2d1a388b4568" + "_proto": "578f87a3245977356274f2cb" }, "60a3c70cde5f453f634816a3": { "_id": "60a3c70cde5f453f634816a3", @@ -357599,6 +358033,522 @@ }, "_proto": "544a5caa4bdc2d1a388b4568" }, + "6489b88bcf0cd80b7e749069": { + "_id": "6489b88bcf0cd80b7e749069", + "_name": "event_container_airdrop_18", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489b88bcf0cd80b7e74906a", + "_parent": "6489b88bcf0cd80b7e749069", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "628b9784bcf6e2659e09b8a2": { + "_id": "628b9784bcf6e2659e09b8a2", + "_name": "item_equipment_rig_boss_big_pipe", + "_parent": "5448e5284bdc2dcb718b4567", + "_type": "Item", + "_props": { + "Name": "ANA Tactical m2", + "ShortName": "ANA m2", + "Description": "ANA Tactical m2", + "Weight": 1.32, + "BackgroundColor": "default", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/equipment/armor_ss_precision_boss_big_pipe/item_equipment_rig_boss_big_pipe.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 757, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "628b9784bcf6e2659e09b8a4", + "_parent": "628b9784bcf6e2659e09b8a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "628b9784bcf6e2659e09b8a5", + "_parent": "628b9784bcf6e2659e09b8a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "628b9784bcf6e2659e09b8a6", + "_parent": "628b9784bcf6e2659e09b8a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "628b9784bcf6e2659e09b8a7", + "_parent": "628b9784bcf6e2659e09b8a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "628b9784bcf6e2659e09b8a8", + "_parent": "628b9784bcf6e2659e09b8a2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [ + { + "_name": "Front_plate", + "_id": "6575e21e945bf78edd04c44d", + "_parent": "628b9784bcf6e2659e09b8a2", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fae5f7c2d57afe200c0d7", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_chest" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Back_plate", + "_id": "6575e21e945bf78edd04c44e", + "_parent": "628b9784bcf6e2659e09b8a2", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "656fae5f7c2d57afe200c0d7", + "Filter": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SAPI_back" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Left_side_plate", + "_id": "65cf4dffa644dd466f01fde3", + "_parent": "628b9784bcf6e2659e09b8a2", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "6557458f83942d705f0c4962", + "Filter": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_left_high" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + }, + { + "_name": "Right_side_plate", + "_id": "65cf4dffa644dd466f01fde4", + "_parent": "628b9784bcf6e2659e09b8a2", + "_props": { + "filters": [ + { + "locked": false, + "Plate": "6557458f83942d705f0c4962", + "Filter": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d" + ], + "armorColliders": [], + "armorPlateColliders": [ + "Plate_Granit_SSAPI_side_right_high" + ], + "bluntDamageReduceFromSoftArmor": false + } + ] + }, + "_required": false, + "_mergeSlotWithChildren": true, + "_proto": "64479fdf9731c8fadc0642c1" + } + ], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": true, + "RigLayoutName": "boss_big_pipe", + "armorZone": [], + "armorClass": 0, + "BluntThroughput": 1, + "ArmorMaterial": "UHMWPE", + "ArmorType": "Light", + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "weaponErgonomicPenalty": -1 + }, + "_proto": "544a5caa4bdc2d1a388b4568" + }, + "6489b91dd0c36c0a4925c4b4": { + "_id": "6489b91dd0c36c0a4925c4b4", + "_name": "event_container_airdrop_19", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489b91dd0c36c0a4925c4b5", + "_parent": "6489b91dd0c36c0a4925c4b4", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, "64899ec0a236de328b12db52": { "_id": "64899ec0a236de328b12db52", "_name": "event_container_airdrop_07", @@ -357783,1325 +358733,6 @@ }, "_proto": "578f87a3245977356274f2cb" }, - "6489bfa844d98e01bc4c420e": { - "_id": "6489bfa844d98e01bc4c420e", - "_name": "event_container_airdrop_26", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489bfa844d98e01bc4c420f", - "_parent": "6489bfa844d98e01bc4c420e", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "5e4abc1f86f774069619fbaa": { - "_id": "5e4abc1f86f774069619fbaa", - "_name": "item_equipment_rig_bankrobber", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "BEAR Rig 6h112", - "ShortName": "Rig 6h112", - "Description": "Rig 6h112", - "Weight": 0.7, - "BackgroundColor": "default", - "Width": 3, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_bankrobber/cr_bankrobber.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "5e4abc1f86f774069619fbac", - "_parent": "5e4abc1f86f774069619fbaa", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "5e4abc1f86f774069619fbad", - "_parent": "5e4abc1f86f774069619fbaa", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "5e4abc1f86f774069619fbae", - "_parent": "5e4abc1f86f774069619fbaa", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "5e4abc1f86f774069619fbaf", - "_parent": "5e4abc1f86f774069619fbaa", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "RigLayoutName": "bank_robber", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0, - "ArmorMaterial": "UHMWPE", - "ArmorType": "None", - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "weaponErgonomicPenalty": 0 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, - "633ffb5d419dbf4bea7004c6": { - "_id": "633ffb5d419dbf4bea7004c6", - "_name": "random_loot_quest_container", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "Ящик с квестовым лутом", - "ShortName": "Ящик с квестовым лутом", - "Description": "Ящик с квестовым лутом", - "Weight": 250, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "633ffb5d419dbf4bea7004c7", - "_parent": "633ffb5d419dbf4bea7004c6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 26, - "maxCount": 50, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "628d0618d1ba6e4fa07ce5a4": { - "_id": "628d0618d1ba6e4fa07ce5a4", - "_name": "item_equipment_rig_bagarii", - "_parent": "5448e5284bdc2dcb718b4567", - "_type": "Item", - "_props": { - "Name": "item_equipment_rig_bagarii", - "ShortName": "item_equipment_rig_bagarii", - "Description": "item_equipment_rig_bagarii", - "Weight": 5.1, - "BackgroundColor": "default", - "Width": 4, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/equipment/rig_bagarii/rig_bagarii.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 80, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 595, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "628d0618d1ba6e4fa07ce5a5", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "628d0618d1ba6e4fa07ce5a6", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "628d0618d1ba6e4fa07ce5a7", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "628d0618d1ba6e4fa07ce5a8", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "628d0618d1ba6e4fa07ce5a9", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "628d0618d1ba6e4fa07ce5aa", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "7", - "_id": "628d0618d1ba6e4fa07ce5ab", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "8", - "_id": "628d0618d1ba6e4fa07ce5ac", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "9", - "_id": "628d0618d1ba6e4fa07ce5ad", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "10", - "_id": "628d0618d1ba6e4fa07ce5ae", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "11", - "_id": "628d0618d1ba6e4fa07ce5af", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 2, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "12", - "_id": "628d0618d1ba6e4fa07ce5b0", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "13", - "_id": "628d0618d1ba6e4fa07ce5b1", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 2, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [ - { - "_name": "Front_plate", - "_id": "657324768c1cc6dcd9098b37", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "656f664200d62bcd2e024077", - "Filter": [ - "656f664200d62bcd2e024077", - "654a4dea7c17dec2f50cc86a", - "656f66b5c6baea13cd07e108" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Korund_chest" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Back_plate", - "_id": "657324768c1cc6dcd9098b38", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "657b2797c3dbcb01d60c35ea", - "Filter": [ - "657b22485f444d6dff0c6c2f", - "657b2797c3dbcb01d60c35ea", - "657b28d25f444d6dff0c6c77" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Granit_SAPI_back" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Left_side_plate", - "_id": "657324768c1cc6dcd9098b39", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "", - "Filter": [ - "654a4f8bc721968a4404ef18" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Korund_side_left_low" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Right_side_plate", - "_id": "657324768c1cc6dcd9098b3a", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "locked": false, - "Plate": "", - "Filter": [ - "654a4f8bc721968a4404ef18" - ], - "armorColliders": [], - "armorPlateColliders": [ - "Plate_Korund_side_right_low" - ], - "bluntDamageReduceFromSoftArmor": true - } - ] - }, - "_required": false, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_front", - "_id": "657324768c1cc6dcd9098b3b", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657322988c1cc6dcd9098b2d", - "Filter": [ - "657322988c1cc6dcd9098b2d" - ], - "armorColliders": [ - "RibcageLow", - "RibcageUp" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_back", - "_id": "657324768c1cc6dcd9098b3c", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657322a4cea9255e21023651", - "Filter": [ - "657322a4cea9255e21023651" - ], - "armorColliders": [ - "SpineDown", - "SpineTop" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "Soft_armor_left", - "_id": "657324768c1cc6dcd9098b3d", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657322acd9d89ff7ac0d961b", - "Filter": [ - "657322acd9d89ff7ac0d961b" - ], - "armorColliders": [ - "LeftSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - }, - { - "_name": "soft_armor_right", - "_id": "657324768c1cc6dcd9098b3e", - "_parent": "628d0618d1ba6e4fa07ce5a4", - "_props": { - "filters": [ - { - "locked": true, - "Plate": "657322b7d9d89ff7ac0d961f", - "Filter": [ - "657322b7d9d89ff7ac0d961f" - ], - "armorColliders": [ - "RightSideChestDown" - ], - "armorPlateColliders": [], - "bluntDamageReduceFromSoftArmor": false - } - ] - }, - "_required": true, - "_mergeSlotWithChildren": true, - "_proto": "64479fdf9731c8fadc0642c1" - } - ], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": true, - "RigLayoutName": "bagarii", - "armorZone": [], - "armorClass": 0, - "BluntThroughput": 0.1683, - "ArmorMaterial": "Aramid", - "ArmorType": "Heavy", - "speedPenaltyPercent": -6, - "mousePenalty": -1.5, - "weaponErgonomicPenalty": -2 - }, - "_proto": "544a5caa4bdc2d1a388b4568" - }, - "6489aa584b6fc03d00374e59": { - "_id": "6489aa584b6fc03d00374e59", - "_name": "event_container_airdrop_14", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489aa584b6fc03d00374e5a", - "_parent": "6489aa584b6fc03d00374e59", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6489b88bcf0cd80b7e749069": { - "_id": "6489b88bcf0cd80b7e749069", - "_name": "event_container_airdrop_18", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489b88bcf0cd80b7e74906a", - "_parent": "6489b88bcf0cd80b7e749069", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6489b91dd0c36c0a4925c4b4": { - "_id": "6489b91dd0c36c0a4925c4b4", - "_name": "event_container_airdrop_19", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489b91dd0c36c0a4925c4b5", - "_parent": "6489b91dd0c36c0a4925c4b4", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6489a0a4fc493c59d15fec05": { - "_id": "6489a0a4fc493c59d15fec05", - "_name": "event_container_airdrop_09", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489a0a4fc493c59d15fec06", - "_parent": "6489a0a4fc493c59d15fec05", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, "6489bd7b79295b4f753d486a": { "_id": "6489bd7b79295b4f753d486a", "_name": "event_container_airdrop_24", @@ -359194,9 +358825,9 @@ }, "_proto": "578f87a3245977356274f2cb" }, - "6489ba157c07471efa3e03b4": { - "_id": "6489ba157c07471efa3e03b4", - "_name": "event_container_airdrop_21", + "6489bfa844d98e01bc4c420e": { + "_id": "6489bfa844d98e01bc4c420e", + "_name": "event_container_airdrop_26", "_parent": "62f109593b54472778797866", "_type": "Item", "_props": { @@ -359257,100 +358888,8 @@ "Grids": [ { "_name": "main", - "_id": "6489ba157c07471efa3e03b5", - "_parent": "6489ba157c07471efa3e03b4", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6489c0f731a2135f0d7d0fd5": { - "_id": "6489c0f731a2135f0d7d0fd5", - "_name": "event_container_airdrop_30", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489c0f731a2135f0d7d0fd6", - "_parent": "6489c0f731a2135f0d7d0fd5", + "_id": "6489bfa844d98e01bc4c420f", + "_parent": "6489bfa844d98e01bc4c420e", "_props": { "filters": [ { @@ -359470,6 +359009,98 @@ }, "_proto": "578f87a3245977356274f2cb" }, + "6489c0f731a2135f0d7d0fd5": { + "_id": "6489c0f731a2135f0d7d0fd5", + "_name": "event_container_airdrop_30", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489c0f731a2135f0d7d0fd6", + "_parent": "6489c0f731a2135f0d7d0fd5", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, "6489c46eebac5a4a1b73cac0": { "_id": "6489c46eebac5a4a1b73cac0", "_name": "event_container_airdrop_36", @@ -359562,6 +359193,98 @@ }, "_proto": "578f87a3245977356274f2cb" }, + "6489c0508bc5233fdc78e78c": { + "_id": "6489c0508bc5233fdc78e78c", + "_name": "event_container_airdrop_28", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489c0508bc5233fdc78e78d", + "_parent": "6489c0508bc5233fdc78e78c", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, "6489c5cb44d98e01bc4c4212": { "_id": "6489c5cb44d98e01bc4c4212", "_name": "event_container_airdrop_37", @@ -359654,23 +359377,23 @@ }, "_proto": "578f87a3245977356274f2cb" }, - "545cdae64bdc2d39198b4568": { - "_id": "545cdae64bdc2d39198b4568", - "_name": "bigBackpack", - "_parent": "5448e53e4bdc2d60728b4567", + "6489c12f8bc5233fdc78e790": { + "_id": "6489c12f8bc5233fdc78e790", + "_name": "event_container_airdrop_31", + "_parent": "62f109593b54472778797866", "_type": "Item", "_props": { - "Name": "Camelback Tri Zipps Backpack", - "ShortName": "TriZipps", - "Description": "", - "Weight": 2.2, - "BackgroundColor": "violet", + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", "Width": 5, - "Height": 6, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "gear_backpack", + "ItemSound": "container_plastic", "Prefab": { - "path": "assets/content/items/equipment/backpack_trizip/item_equipment_backpack_trizip.bundle", + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", "rcid": "" }, "UsePrefab": { @@ -359688,7 +359411,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 20, - "ExamineExperience": 2, + "ExamineExperience": 100, "HideEntrails": true, "RepairCost": 0, "RepairSpeed": 0, @@ -359698,7 +359421,7 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": true, + "CanSellOnRagfair": false, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -359717,33 +359440,21 @@ "Grids": [ { "_name": "main", - "_id": "55d4a17a4bdc2d8b2f8b456d", - "_parent": "545cdae64bdc2d39198b4568", + "_id": "6489c12f8bc5233fdc78e791", + "_parent": "6489c12f8bc5233fdc78e790", "_props": { "filters": [ { - "Filter": [ - "54009119af1c881c07000029" - ], + "Filter": [], "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" + "54009119af1c881c07000029" ] } ], - "cellsH": 5, - "cellsV": 6, - "minCount": 0, - "maxCount": 0, + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, "maxWeight": 0, "isSortingTable": false }, @@ -359753,14 +359464,102 @@ "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -3, - "mousePenalty": -1, - "GridLayoutName": "", - "weaponErgonomicPenalty": -4, - "LeanWeaponAgainstBody": false - } + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "6489c200cf0cd80b7e74906d": { + "_id": "6489c200cf0cd80b7e74906d", + "_name": "event_container_airdrop_33", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489c200cf0cd80b7e74906e", + "_parent": "6489c200cf0cd80b7e74906d", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" }, "6489c753a74e43447b64d5e6": { "_id": "6489c753a74e43447b64d5e6", @@ -360239,23 +360038,23 @@ }, "_proto": "545cdae64bdc2d39198b4568" }, - "61b9e1aaef9a1b5d6a79899a": { - "_id": "61b9e1aaef9a1b5d6a79899a", - "_name": "backpack_pilgrim_red", - "_parent": "5448e53e4bdc2d60728b4567", + "6489c80e7c07471efa3e03bc": { + "_id": "6489c80e7c07471efa3e03bc", + "_name": "event_container_airdrop_40", + "_parent": "62f109593b54472778797866", "_type": "Item", "_props": { - "Name": "Pilgrim", - "ShortName": "Pilgrim", - "Description": "Pilgrim", - "Weight": 2.64, - "BackgroundColor": "violet", + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", "Width": 5, - "Height": 7, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "gear_backpack", + "ItemSound": "container_plastic", "Prefab": { - "path": "assets/content/items/equipment/backpack_pilgrim/item_equipment_backpack_pilgrim_christmas.bundle", + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", "rcid": "" }, "UsePrefab": { @@ -360264,7 +360063,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": false, + "ExaminedByDefault": true, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -360302,8 +360101,414 @@ "Grids": [ { "_name": "main", - "_id": "61b9e1aaef9a1b5d6a79899c", - "_parent": "61b9e1aaef9a1b5d6a79899a", + "_id": "6489c80e7c07471efa3e03bd", + "_parent": "6489c80e7c07471efa3e03bc", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "6489cca131a2135f0d7d0fdd": { + "_id": "6489cca131a2135f0d7d0fdd", + "_name": "event_container_airdrop_48", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489cca131a2135f0d7d0fde", + "_parent": "6489cca131a2135f0d7d0fdd", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "60a272cc93ef783291411d8e": { + "_id": "60a272cc93ef783291411d8e", + "_name": "item_equipment_backpack_drawbridge", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "MBSS Backpack", + "ShortName": "MBSS", + "Description": "", + "Weight": 1.67, + "BackgroundColor": "violet", + "Width": 5, + "Height": 5, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_drawbridge/item_equipment_backpack_drawbridge.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "60a272cd93ef783291411d90", + "_parent": "60a272cc93ef783291411d8e", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "60a272cc93ef783291411d8e", + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25", + "5b44c6ae86f7742d1627baea", + "5d5d940f86f7742797262046", + "618cfae774bb2d036a049e7c" + ] + } + ], + "cellsH": 5, + "cellsV": 5, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -2, + "mousePenalty": 0, + "GridLayoutName": "", + "weaponErgonomicPenalty": -2, + "LeanWeaponAgainstBody": false + }, + "_proto": "544a5cde4bdc2d39388b456b" + }, + "5ab8f04f86f774585f4237d8": { + "_id": "5ab8f04f86f774585f4237d8", + "_name": "backpack_molle", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "backpack molle", + "ShortName": "backpack molle", + "Description": "backpack molle", + "Weight": 0.48, + "BackgroundColor": "violet", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_molle/item_equipment_backpack_molle.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5ab8f04f86f774585f4237da", + "_parent": "5ab8f04f86f774585f4237d8", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" + ] + } + ], + "cellsH": 3, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "GridLayoutName": "", + "weaponErgonomicPenalty": -2, + "LeanWeaponAgainstBody": true + }, + "_proto": "56e33634d2720bd8058b456b" + }, + "545cdae64bdc2d39198b4568": { + "_id": "545cdae64bdc2d39198b4568", + "_name": "bigBackpack", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "Camelback Tri Zipps Backpack", + "ShortName": "TriZipps", + "Description": "", + "Weight": 2.2, + "BackgroundColor": "violet", + "Width": 5, + "Height": 6, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_trizip/item_equipment_backpack_trizip.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "55d4a17a4bdc2d8b2f8b456d", + "_parent": "545cdae64bdc2d39198b4568", "_props": { "filters": [ { @@ -360326,6 +360531,1053 @@ } ], "cellsH": 5, + "cellsV": 6, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -3, + "mousePenalty": -1, + "GridLayoutName": "", + "weaponErgonomicPenalty": -4, + "LeanWeaponAgainstBody": false + } + }, + "6489c30331a2135f0d7d0fd9": { + "_id": "6489c30331a2135f0d7d0fd9", + "_name": "event_container_airdrop_35", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489c30331a2135f0d7d0fda", + "_parent": "6489c30331a2135f0d7d0fd9", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "6489cb4fa74e43447b64d5ea": { + "_id": "6489cb4fa74e43447b64d5ea", + "_name": "event_container_airdrop_46", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489cb4fa74e43447b64d5eb", + "_parent": "6489cb4fa74e43447b64d5ea", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "628e1ffc83ec92260c0f437f": { + "_id": "628e1ffc83ec92260c0f437f", + "_name": "item_equipment_backpack_gr99_t30", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "Pilgrim", + "ShortName": "Pilgrim", + "Description": "Pilgrim", + "Weight": 1.4, + "BackgroundColor": "violet", + "Width": 5, + "Height": 6, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_gr99t30/item_equipment_backpack_gr99t30_black.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "628e1ffc83ec92260c0f4381", + "_parent": "628e1ffc83ec92260c0f437f", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" + ] + } + ], + "cellsH": 5, + "cellsV": 6, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -2, + "mousePenalty": -1, + "GridLayoutName": "", + "weaponErgonomicPenalty": -2, + "LeanWeaponAgainstBody": false + }, + "_proto": "544a5cde4bdc2d39388b456b" + }, + "6038d614d10cbf667352dd44": { + "_id": "6038d614d10cbf667352dd44", + "_name": "item_equipment_backpack_Takedown_sling_multicam", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "Pilgrim", + "ShortName": "Pilgrim", + "Description": "Pilgrim", + "Weight": 1.58, + "BackgroundColor": "violet", + "Width": 3, + "Height": 7, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_takedown_sling/item_equipment_backpack_takedown_sling_multicam.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6038d614d10cbf667352dd46", + "_parent": "6038d614d10cbf667352dd44", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "6038d614d10cbf667352dd44", + "6034d103ca006d2dca39b3f0", + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" + ] + } + ], + "cellsH": 3, + "cellsV": 8, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -3, + "mousePenalty": -1, + "GridLayoutName": "", + "weaponErgonomicPenalty": -3, + "LeanWeaponAgainstBody": false + }, + "_proto": "544a5cde4bdc2d39388b456b" + }, + "656ddcf0f02d7bcea90bf395": { + "_id": "656ddcf0f02d7bcea90bf395", + "_name": "item_equipment_backpack_tehinkom_patrol", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "MBSS Backpack", + "ShortName": "MBSS", + "Description": "", + "Weight": 1.1, + "BackgroundColor": "violet", + "Width": 5, + "Height": 5, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_tehinkom_patrol/item_equipment_backpack_tehinkom_patrol.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "656ddcf0f02d7bcea90bf396", + "_parent": "656ddcf0f02d7bcea90bf395", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "60a272cc93ef783291411d8e", + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25", + "5b44c6ae86f7742d1627baea", + "5d5d940f86f7742797262046", + "618cfae774bb2d036a049e7c" + ] + } + ], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "6580093bcbb8470421442533", + "_parent": "656ddcf0f02d7bcea90bf395", + "_props": { + "filters": [], + "cellsH": 1, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "6580094024d2053bb360b52f", + "_parent": "656ddcf0f02d7bcea90bf395", + "_props": { + "filters": [], + "cellsH": 1, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "4", + "_id": "658009467d858b6a1a399eeb", + "_parent": "656ddcf0f02d7bcea90bf395", + "_props": { + "filters": [], + "cellsH": 1, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "5", + "_id": "6580094ef093f41e35629745", + "_parent": "656ddcf0f02d7bcea90bf395", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "60a272cc93ef783291411d8e", + "5b44c6ae86f7742d1627baea", + "5d5d940f86f7742797262046", + "618cfae774bb2d036a049e7c", + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25", + "5c0a840b86f7742ffa4f2482" + ] + } + ], + "cellsH": 3, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "6", + "_id": "65800a6c46a703073a5b9228", + "_parent": "656ddcf0f02d7bcea90bf395", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "60a272cc93ef783291411d8e", + "5b44c6ae86f7742d1627baea", + "5d5d940f86f7742797262046", + "618cfae774bb2d036a049e7c", + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "5b6d9ce188a4501afc1b2b25", + "59fb023c86f7746d0d4b423c", + "5c0a840b86f7742ffa4f2482" + ] + } + ], + "cellsH": 3, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -1, + "mousePenalty": -1, + "GridLayoutName": "Tehinkom", + "weaponErgonomicPenalty": -2, + "LeanWeaponAgainstBody": false + }, + "_proto": "544a5cde4bdc2d39388b456b" + }, + "619cf0335771dd3c390269ae": { + "_id": "619cf0335771dd3c390269ae", + "_name": "item_equipment_backpack_gr99t20_multicam", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "Very Wild Backpack", + "ShortName": "VWB", + "Description": "Very Wild Backpack", + "Weight": 1.25, + "BackgroundColor": "violet", + "Width": 5, + "Height": 5, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_gr99t20/item_equipment_backpack_gr99t20_multicam.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "619cf0335771dd3c390269b0", + "_parent": "619cf0335771dd3c390269ae", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" + ] + } + ], + "cellsH": 5, + "cellsV": 5, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -1, + "mousePenalty": 0, + "GridLayoutName": "", + "weaponErgonomicPenalty": -1, + "LeanWeaponAgainstBody": false + }, + "_proto": "545cdae64bdc2d39198b4568" + }, + "6489c2aad0c36c0a4925c4bc": { + "_id": "6489c2aad0c36c0a4925c4bc", + "_name": "event_container_airdrop_34", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489c2aad0c36c0a4925c4bd", + "_parent": "6489c2aad0c36c0a4925c4bc", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "5df8a4d786f77412672a1e3b": { + "_id": "5df8a4d786f77412672a1e3b", + "_name": "backpack_Raid_6SH118", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "sso_attack", + "ShortName": "sso_attack", + "Description": "sso_attack", + "Weight": 3.5, + "BackgroundColor": "violet", + "Width": 6, + "Height": 7, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_6sh118/item_equipment_backpack_6sh118.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5df8a4d786f77412672a1e3d", + "_parent": "5df8a4d786f77412672a1e3b", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" + ] + } + ], + "cellsH": 6, + "cellsV": 8, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -5, + "mousePenalty": -3, + "GridLayoutName": "", + "weaponErgonomicPenalty": -7, + "LeanWeaponAgainstBody": false + }, + "_proto": "545cdae64bdc2d39198b4568" + }, + "628bc7fb408e2b2e9c0801b1": { + "_id": "628bc7fb408e2b2e9c0801b1", + "_name": "item_equipment_backpack_boss_birdeye", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "sso_attack", + "ShortName": "sso_attack", + "Description": "sso_attack", + "Weight": 15, + "BackgroundColor": "violet", + "Width": 4, + "Height": 5, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_boss_birdeye/backpack_boss_birdeye.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "628bc7fb408e2b2e9c0801b2", + "_parent": "628bc7fb408e2b2e9c0801b1", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "566168634bdc2d144c8b456c", + "5795f317245977243854e041" + ] + } + ], + "cellsH": 2, "cellsV": 7, "minCount": 0, "maxCount": 0, @@ -360340,13 +361592,13 @@ "CantRemoveFromSlotsDuringRaid": [], "SearchSound": "looting_body_extended", "BlocksArmorVest": false, - "speedPenaltyPercent": -4, - "mousePenalty": -3, + "speedPenaltyPercent": -6, + "mousePenalty": -1, "GridLayoutName": "", - "weaponErgonomicPenalty": -7, + "weaponErgonomicPenalty": -5, "LeanWeaponAgainstBody": false }, - "_proto": "544a5cde4bdc2d39388b456b" + "_proto": "545cdae64bdc2d39198b4568" }, "544a5cde4bdc2d39388b456b": { "_id": "544a5cde4bdc2d39388b456b", @@ -360456,23 +361708,23 @@ "LeanWeaponAgainstBody": false } }, - "6489c0508bc5233fdc78e78c": { - "_id": "6489c0508bc5233fdc78e78c", - "_name": "event_container_airdrop_28", - "_parent": "62f109593b54472778797866", + "62a1b7fbc30cfa1d366af586": { + "_id": "62a1b7fbc30cfa1d366af586", + "_name": "item_equipment_backpack_gr99_t30_multicam", + "_parent": "5448e53e4bdc2d60728b4567", "_type": "Item", "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", + "Name": "Pilgrim", + "ShortName": "Pilgrim", + "Description": "Pilgrim", + "Weight": 1.4, + "BackgroundColor": "violet", "Width": 5, - "Height": 2, + "Height": 6, "StackMaxSize": 1, - "ItemSound": "container_plastic", + "ItemSound": "gear_backpack", "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "path": "assets/content/items/equipment/backpack_gr99t30/item_equipment_backpack_gr99t30_multicam.bundle", "rcid": "" }, "UsePrefab": { @@ -360490,7 +361742,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 20, - "ExamineExperience": 100, + "ExamineExperience": 10, "HideEntrails": true, "RepairCost": 0, "RepairSpeed": 0, @@ -360500,7 +361752,7 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": false, + "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -360519,21 +361771,33 @@ "Grids": [ { "_name": "main", - "_id": "6489c0508bc5233fdc78e78d", - "_parent": "6489c0508bc5233fdc78e78c", + "_id": "62a1b7fbc30cfa1d366af588", + "_parent": "62a1b7fbc30cfa1d366af586", "_props": { "filters": [ { - "Filter": [], - "ExcludedFilter": [ + "Filter": [ "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" ] } ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, + "cellsH": 5, + "cellsV": 6, + "minCount": 0, + "maxCount": 0, "maxWeight": 0, "isSortingTable": false }, @@ -360543,28 +361807,33 @@ "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -2, + "mousePenalty": -1, + "GridLayoutName": "", + "weaponErgonomicPenalty": -2, + "LeanWeaponAgainstBody": false }, - "_proto": "578f87a3245977356274f2cb" + "_proto": "544a5cde4bdc2d39388b456b" }, - "6489c12f8bc5233fdc78e790": { - "_id": "6489c12f8bc5233fdc78e790", - "_name": "event_container_airdrop_31", - "_parent": "62f109593b54472778797866", + "61b9e1aaef9a1b5d6a79899a": { + "_id": "61b9e1aaef9a1b5d6a79899a", + "_name": "backpack_pilgrim_red", + "_parent": "5448e53e4bdc2d60728b4567", "_type": "Item", "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", + "Name": "Pilgrim", + "ShortName": "Pilgrim", + "Description": "Pilgrim", + "Weight": 2.64, + "BackgroundColor": "violet", "Width": 5, - "Height": 2, + "Height": 7, "StackMaxSize": 1, - "ItemSound": "container_plastic", + "ItemSound": "gear_backpack", "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "path": "assets/content/items/equipment/backpack_pilgrim/item_equipment_backpack_pilgrim_christmas.bundle", "rcid": "" }, "UsePrefab": { @@ -360573,7 +361842,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": true, + "ExaminedByDefault": false, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -360611,21 +361880,33 @@ "Grids": [ { "_name": "main", - "_id": "6489c12f8bc5233fdc78e791", - "_parent": "6489c12f8bc5233fdc78e790", + "_id": "61b9e1aaef9a1b5d6a79899c", + "_parent": "61b9e1aaef9a1b5d6a79899a", "_props": { "filters": [ { - "Filter": [], - "ExcludedFilter": [ + "Filter": [ "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" ] } ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, + "cellsH": 5, + "cellsV": 7, + "minCount": 0, + "maxCount": 0, "maxWeight": 0, "isSortingTable": false }, @@ -360635,102 +361916,15 @@ "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -4, + "mousePenalty": -3, + "GridLayoutName": "", + "weaponErgonomicPenalty": -7, + "LeanWeaponAgainstBody": false }, - "_proto": "578f87a3245977356274f2cb" - }, - "6489c30331a2135f0d7d0fd9": { - "_id": "6489c30331a2135f0d7d0fd9", - "_name": "event_container_airdrop_35", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489c30331a2135f0d7d0fda", - "_parent": "6489c30331a2135f0d7d0fd9", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" + "_proto": "544a5cde4bdc2d39388b456b" }, "6489ca66d0c36c0a4925c4c4": { "_id": "6489ca66d0c36c0a4925c4c4", @@ -361042,1159 +362236,6 @@ }, "_proto": "545cdae64bdc2d39198b4568" }, - "6489cb4fa74e43447b64d5ea": { - "_id": "6489cb4fa74e43447b64d5ea", - "_name": "event_container_airdrop_46", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489cb4fa74e43447b64d5eb", - "_parent": "6489cb4fa74e43447b64d5ea", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "619cf0335771dd3c390269ae": { - "_id": "619cf0335771dd3c390269ae", - "_name": "item_equipment_backpack_gr99t20_multicam", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "Very Wild Backpack", - "ShortName": "VWB", - "Description": "Very Wild Backpack", - "Weight": 1.25, - "BackgroundColor": "violet", - "Width": 5, - "Height": 5, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_gr99t20/item_equipment_backpack_gr99t20_multicam.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 2, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "619cf0335771dd3c390269b0", - "_parent": "619cf0335771dd3c390269ae", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 5, - "cellsV": 5, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -1, - "mousePenalty": 0, - "GridLayoutName": "", - "weaponErgonomicPenalty": -1, - "LeanWeaponAgainstBody": false - }, - "_proto": "545cdae64bdc2d39198b4568" - }, - "628e1ffc83ec92260c0f437f": { - "_id": "628e1ffc83ec92260c0f437f", - "_name": "item_equipment_backpack_gr99_t30", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "Pilgrim", - "ShortName": "Pilgrim", - "Description": "Pilgrim", - "Weight": 1.4, - "BackgroundColor": "violet", - "Width": 5, - "Height": 6, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_gr99t30/item_equipment_backpack_gr99t30_black.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "628e1ffc83ec92260c0f4381", - "_parent": "628e1ffc83ec92260c0f437f", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 5, - "cellsV": 6, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -2, - "mousePenalty": -1, - "GridLayoutName": "", - "weaponErgonomicPenalty": -2, - "LeanWeaponAgainstBody": false - }, - "_proto": "544a5cde4bdc2d39388b456b" - }, - "656ddcf0f02d7bcea90bf395": { - "_id": "656ddcf0f02d7bcea90bf395", - "_name": "item_equipment_backpack_tehinkom_patrol", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "MBSS Backpack", - "ShortName": "MBSS", - "Description": "", - "Weight": 1.1, - "BackgroundColor": "violet", - "Width": 5, - "Height": 5, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_tehinkom_patrol/item_equipment_backpack_tehinkom_patrol.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "656ddcf0f02d7bcea90bf396", - "_parent": "656ddcf0f02d7bcea90bf395", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "60a272cc93ef783291411d8e", - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25", - "5b44c6ae86f7742d1627baea", - "5d5d940f86f7742797262046", - "618cfae774bb2d036a049e7c" - ] - } - ], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "6580093bcbb8470421442533", - "_parent": "656ddcf0f02d7bcea90bf395", - "_props": { - "filters": [], - "cellsH": 1, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "6580094024d2053bb360b52f", - "_parent": "656ddcf0f02d7bcea90bf395", - "_props": { - "filters": [], - "cellsH": 1, - "cellsV": 3, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "4", - "_id": "658009467d858b6a1a399eeb", - "_parent": "656ddcf0f02d7bcea90bf395", - "_props": { - "filters": [], - "cellsH": 1, - "cellsV": 3, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "5", - "_id": "6580094ef093f41e35629745", - "_parent": "656ddcf0f02d7bcea90bf395", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "60a272cc93ef783291411d8e", - "5b44c6ae86f7742d1627baea", - "5d5d940f86f7742797262046", - "618cfae774bb2d036a049e7c", - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25", - "5c0a840b86f7742ffa4f2482" - ] - } - ], - "cellsH": 3, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "6", - "_id": "65800a6c46a703073a5b9228", - "_parent": "656ddcf0f02d7bcea90bf395", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "60a272cc93ef783291411d8e", - "5b44c6ae86f7742d1627baea", - "5d5d940f86f7742797262046", - "618cfae774bb2d036a049e7c", - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "5b6d9ce188a4501afc1b2b25", - "59fb023c86f7746d0d4b423c", - "5c0a840b86f7742ffa4f2482" - ] - } - ], - "cellsH": 3, - "cellsV": 3, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -1, - "mousePenalty": -1, - "GridLayoutName": "Tehinkom", - "weaponErgonomicPenalty": -2, - "LeanWeaponAgainstBody": false - }, - "_proto": "544a5cde4bdc2d39388b456b" - }, - "6038d614d10cbf667352dd44": { - "_id": "6038d614d10cbf667352dd44", - "_name": "item_equipment_backpack_Takedown_sling_multicam", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "Pilgrim", - "ShortName": "Pilgrim", - "Description": "Pilgrim", - "Weight": 1.58, - "BackgroundColor": "violet", - "Width": 3, - "Height": 7, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_takedown_sling/item_equipment_backpack_takedown_sling_multicam.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6038d614d10cbf667352dd46", - "_parent": "6038d614d10cbf667352dd44", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "6038d614d10cbf667352dd44", - "6034d103ca006d2dca39b3f0", - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 3, - "cellsV": 8, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -3, - "mousePenalty": -1, - "GridLayoutName": "", - "weaponErgonomicPenalty": -3, - "LeanWeaponAgainstBody": false - }, - "_proto": "544a5cde4bdc2d39388b456b" - }, - "6489c80e7c07471efa3e03bc": { - "_id": "6489c80e7c07471efa3e03bc", - "_name": "event_container_airdrop_40", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489c80e7c07471efa3e03bd", - "_parent": "6489c80e7c07471efa3e03bc", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6489cca131a2135f0d7d0fdd": { - "_id": "6489cca131a2135f0d7d0fdd", - "_name": "event_container_airdrop_48", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489cca131a2135f0d7d0fde", - "_parent": "6489cca131a2135f0d7d0fdd", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6489c200cf0cd80b7e74906d": { - "_id": "6489c200cf0cd80b7e74906d", - "_name": "event_container_airdrop_33", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489c200cf0cd80b7e74906e", - "_parent": "6489c200cf0cd80b7e74906d", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "60a272cc93ef783291411d8e": { - "_id": "60a272cc93ef783291411d8e", - "_name": "item_equipment_backpack_drawbridge", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "MBSS Backpack", - "ShortName": "MBSS", - "Description": "", - "Weight": 1.67, - "BackgroundColor": "violet", - "Width": 5, - "Height": 5, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_drawbridge/item_equipment_backpack_drawbridge.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "60a272cd93ef783291411d90", - "_parent": "60a272cc93ef783291411d8e", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "60a272cc93ef783291411d8e", - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25", - "5b44c6ae86f7742d1627baea", - "5d5d940f86f7742797262046", - "618cfae774bb2d036a049e7c" - ] - } - ], - "cellsH": 5, - "cellsV": 5, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -2, - "mousePenalty": 0, - "GridLayoutName": "", - "weaponErgonomicPenalty": -2, - "LeanWeaponAgainstBody": false - }, - "_proto": "544a5cde4bdc2d39388b456b" - }, - "5ab8f04f86f774585f4237d8": { - "_id": "5ab8f04f86f774585f4237d8", - "_name": "backpack_molle", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "backpack molle", - "ShortName": "backpack molle", - "Description": "backpack molle", - "Weight": 0.48, - "BackgroundColor": "violet", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_molle/item_equipment_backpack_molle.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 2, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5ab8f04f86f774585f4237da", - "_parent": "5ab8f04f86f774585f4237d8", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 3, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "GridLayoutName": "", - "weaponErgonomicPenalty": -2, - "LeanWeaponAgainstBody": true - }, - "_proto": "56e33634d2720bd8058b456b" - }, "6489cc4379295b4f753d486e": { "_id": "6489cc4379295b4f753d486e", "_name": "event_container_airdrop_47", @@ -362287,115 +362328,6 @@ }, "_proto": "578f87a3245977356274f2cb" }, - "639346cc1c8f182ad90c8972": { - "_id": "639346cc1c8f182ad90c8972", - "_name": "item_equipment_backpack_trooper_35", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "Pilgrim", - "ShortName": "Pilgrim", - "Description": "Pilgrim", - "Weight": 1.004, - "BackgroundColor": "violet", - "Width": 5, - "Height": 7, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_trooper_35/item_equipment_backpack_trooper_35.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "639346cc1c8f182ad90c8973", - "_parent": "639346cc1c8f182ad90c8972", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 5, - "cellsV": 7, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -4, - "mousePenalty": -1, - "GridLayoutName": "", - "weaponErgonomicPenalty": -5, - "LeanWeaponAgainstBody": false - }, - "_proto": "544a5cde4bdc2d39388b456b" - }, "5d5d940f86f7742797262046": { "_id": "5d5d940f86f7742797262046", "_name": "item_equipment_backpack_mech", @@ -362613,6 +362545,115 @@ }, "_proto": "544a5cde4bdc2d39388b456b" }, + "639346cc1c8f182ad90c8972": { + "_id": "639346cc1c8f182ad90c8972", + "_name": "item_equipment_backpack_trooper_35", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "Pilgrim", + "ShortName": "Pilgrim", + "Description": "Pilgrim", + "Weight": 1.004, + "BackgroundColor": "violet", + "Width": 5, + "Height": 7, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_trooper_35/item_equipment_backpack_trooper_35.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "639346cc1c8f182ad90c8973", + "_parent": "639346cc1c8f182ad90c8972", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" + ] + } + ], + "cellsH": 5, + "cellsV": 7, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -4, + "mousePenalty": -1, + "GridLayoutName": "", + "weaponErgonomicPenalty": -5, + "LeanWeaponAgainstBody": false + }, + "_proto": "544a5cde4bdc2d39388b456b" + }, "6489c65cd0c36c0a4925c4c0": { "_id": "6489c65cd0c36c0a4925c4c0", "_name": "event_container_airdrop_38", @@ -362797,23 +362838,23 @@ }, "_proto": "578f87a3245977356274f2cb" }, - "618cfae774bb2d036a049e7c": { - "_id": "618cfae774bb2d036a049e7c", - "_name": "item_equipment_backpack_lbt1476a", + "5e9dcf5986f7746c417435b3": { + "_id": "5e9dcf5986f7746c417435b3", + "_name": "item_equipment_backpack_daypack14", "_parent": "5448e53e4bdc2d60728b4567", "_type": "Item", "_props": { "Name": "Very Wild Backpack", "ShortName": "VWB", "Description": "Very Wild Backpack", - "Weight": 1.133, + "Weight": 0.57, "BackgroundColor": "violet", "Width": 4, "Height": 5, "StackMaxSize": 1, "ItemSound": "gear_backpack", "Prefab": { - "path": "assets/content/items/equipment/backpack_lbt1476a/item_equipment_backpack_lbt1476a.bundle", + "path": "assets/content/items/equipment/backpack_daypack/item_equipment_backpack_daypack.bundle", "rcid": "" }, "UsePrefab": { @@ -362860,8 +362901,8 @@ "Grids": [ { "_name": "main", - "_id": "618cfae774bb2d036a049e7e", - "_parent": "618cfae774bb2d036a049e7c", + "_id": "5e9dcf5986f7746c417435b5", + "_parent": "5e9dcf5986f7746c417435b3", "_props": { "filters": [ { @@ -362869,8 +362910,6 @@ "54009119af1c881c07000029" ], "ExcludedFilter": [ - "618bb76513f5097c8d5aa2d5", - "618cfae774bb2d036a049e7c", "5448bf274bdc2dfc2f8b456a", "5c093db286f7740a1b2617e3", "5e2af55f86f7746d4159f07c", @@ -362881,14 +362920,11 @@ "59fb016586f7746d0d4b423a", "59fb042886f7746c5005a7b2", "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25", - "5b44c6ae86f7742d1627baea", - "5d5d940f86f7742797262046", - "60a272cc93ef783291411d8e" + "5b6d9ce188a4501afc1b2b25" ] } ], - "cellsH": 5, + "cellsH": 4, "cellsV": 5, "minCount": 0, "maxCount": 0, @@ -362904,7 +362940,7 @@ "SearchSound": "looting_body_extended", "BlocksArmorVest": false, "speedPenaltyPercent": -1, - "mousePenalty": 0, + "mousePenalty": -1, "GridLayoutName": "", "weaponErgonomicPenalty": -2, "LeanWeaponAgainstBody": false @@ -363020,23 +363056,23 @@ }, "_proto": "56e335e4d2720b6c058b456d" }, - "5e9dcf5986f7746c417435b3": { - "_id": "5e9dcf5986f7746c417435b3", - "_name": "item_equipment_backpack_daypack14", + "618cfae774bb2d036a049e7c": { + "_id": "618cfae774bb2d036a049e7c", + "_name": "item_equipment_backpack_lbt1476a", "_parent": "5448e53e4bdc2d60728b4567", "_type": "Item", "_props": { "Name": "Very Wild Backpack", "ShortName": "VWB", "Description": "Very Wild Backpack", - "Weight": 0.57, + "Weight": 1.133, "BackgroundColor": "violet", "Width": 4, "Height": 5, "StackMaxSize": 1, "ItemSound": "gear_backpack", "Prefab": { - "path": "assets/content/items/equipment/backpack_daypack/item_equipment_backpack_daypack.bundle", + "path": "assets/content/items/equipment/backpack_lbt1476a/item_equipment_backpack_lbt1476a.bundle", "rcid": "" }, "UsePrefab": { @@ -363083,8 +363119,8 @@ "Grids": [ { "_name": "main", - "_id": "5e9dcf5986f7746c417435b5", - "_parent": "5e9dcf5986f7746c417435b3", + "_id": "618cfae774bb2d036a049e7e", + "_parent": "618cfae774bb2d036a049e7c", "_props": { "filters": [ { @@ -363092,6 +363128,8 @@ "54009119af1c881c07000029" ], "ExcludedFilter": [ + "618bb76513f5097c8d5aa2d5", + "618cfae774bb2d036a049e7c", "5448bf274bdc2dfc2f8b456a", "5c093db286f7740a1b2617e3", "5e2af55f86f7746d4159f07c", @@ -363102,11 +363140,14 @@ "59fb016586f7746d0d4b423a", "59fb042886f7746c5005a7b2", "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" + "5b6d9ce188a4501afc1b2b25", + "5b44c6ae86f7742d1627baea", + "5d5d940f86f7742797262046", + "60a272cc93ef783291411d8e" ] } ], - "cellsH": 4, + "cellsH": 5, "cellsV": 5, "minCount": 0, "maxCount": 0, @@ -363122,16 +363163,16 @@ "SearchSound": "looting_body_extended", "BlocksArmorVest": false, "speedPenaltyPercent": -1, - "mousePenalty": -1, + "mousePenalty": 0, "GridLayoutName": "", "weaponErgonomicPenalty": -2, "LeanWeaponAgainstBody": false }, "_proto": "545cdae64bdc2d39198b4568" }, - "6489c164a53c8c047c3dc365": { - "_id": "6489c164a53c8c047c3dc365", - "_name": "event_container_airdrop_32", + "6489c03c8bc5233fdc78e788": { + "_id": "6489c03c8bc5233fdc78e788", + "_name": "event_container_airdrop_27", "_parent": "62f109593b54472778797866", "_type": "Item", "_props": { @@ -363192,8 +363233,8 @@ "Grids": [ { "_name": "main", - "_id": "6489c164a53c8c047c3dc366", - "_parent": "6489c164a53c8c047c3dc365", + "_id": "6489c03c8bc5233fdc78e789", + "_parent": "6489c03c8bc5233fdc78e788", "_props": { "filters": [ { @@ -363221,323 +363262,23 @@ }, "_proto": "578f87a3245977356274f2cb" }, - "5b44c6ae86f7742d1627baea": { - "_id": "5b44c6ae86f7742d1627baea", - "_name": "item_equipment_backpack_betav2", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "beta2", - "ShortName": "beta2", - "Description": "beta2", - "Weight": 2, - "BackgroundColor": "violet", - "Width": 5, - "Height": 5, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_betav2/item_equipment_backpack_betav2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5b44c6ae86f7742d1627baec", - "_parent": "5b44c6ae86f7742d1627baea", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25", - "5d5d940f86f7742797262046", - "60a272cc93ef783291411d8e" - ] - } - ], - "cellsH": 5, - "cellsV": 6, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -2, - "mousePenalty": -3, - "GridLayoutName": "", - "weaponErgonomicPenalty": -6, - "LeanWeaponAgainstBody": false - }, - "_proto": "544a5cde4bdc2d39388b456b" - }, - "656f198fb27298d6fd005466": { - "_id": "656f198fb27298d6fd005466", - "_name": "item_equipment_backpack_dragon_egg_mk_ii", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "MBSS Backpack", - "ShortName": "MBSS", - "Description": "", - "Weight": 2.95, - "BackgroundColor": "violet", - "Width": 5, - "Height": 5, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_dragon_egg_mk_ii/item_equipment_backpack_dragon_egg_mk_ii.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "656f198fb27298d6fd005467", - "_parent": "656f198fb27298d6fd005466", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "60a272cc93ef783291411d8e", - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25", - "5b44c6ae86f7742d1627baea", - "5d5d940f86f7742797262046", - "618cfae774bb2d036a049e7c" - ] - } - ], - "cellsH": 2, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "658006d6077bbc49fc10c019", - "_parent": "656f198fb27298d6fd005466", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "60a272cc93ef783291411d8e", - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25", - "5b44c6ae86f7742d1627baea", - "5d5d940f86f7742797262046", - "618cfae774bb2d036a049e7c" - ] - } - ], - "cellsH": 3, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "658008e9a9176671262fe360", - "_parent": "656f198fb27298d6fd005466", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "60a272cc93ef783291411d8e", - "5b44c6ae86f7742d1627baea", - "5d5d940f86f7742797262046", - "618cfae774bb2d036a049e7c", - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 5, - "cellsV": 3, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -1, - "mousePenalty": -1, - "GridLayoutName": "Dragon_Egg_MK2", - "weaponErgonomicPenalty": -1, - "LeanWeaponAgainstBody": false - }, - "_proto": "544a5cde4bdc2d39388b456b" - }, - "5ab8ebf186f7742d8b372e80": { - "_id": "5ab8ebf186f7742d8b372e80", - "_name": "backpack_sso_attack2", + "5f5e46b96bdad616ad46d613": { + "_id": "5f5e46b96bdad616ad46d613", + "_name": "item_equipment_backpack_f4terminator", "_parent": "5448e53e4bdc2d60728b4567", "_type": "Item", "_props": { "Name": "sso_attack", "ShortName": "sso_attack", "Description": "sso_attack", - "Weight": 2.8, + "Weight": 4.194, "BackgroundColor": "violet", "Width": 5, "Height": 7, "StackMaxSize": 1, "ItemSound": "gear_backpack", "Prefab": { - "path": "assets/content/items/equipment/backpack_sso/item_equipment_backpack_sso.bundle", + "path": "assets/content/items/equipment/backpack_f4terminator/item_equipment_backpack_f4terminator.bundle", "rcid": "" }, "UsePrefab": { @@ -363584,8 +363325,8 @@ "Grids": [ { "_name": "main", - "_id": "5ab8ebf186f7742d8b372e82", - "_parent": "5ab8ebf186f7742d8b372e80", + "_id": "5f5e46b96bdad616ad46d615", + "_parent": "5f5e46b96bdad616ad46d613", "_props": { "filters": [ { @@ -363608,7 +363349,75 @@ } ], "cellsH": 5, - "cellsV": 7, + "cellsV": 4, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "1", + "_id": "64ad22222b49b454630e0151", + "_parent": "5f5e46b96bdad616ad46d613", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" + ] + } + ], + "cellsH": 5, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "64ad22222b49b454630e0152", + "_parent": "5f5e46b96bdad616ad46d613", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" + ] + } + ], + "cellsH": 5, + "cellsV": 2, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -363623,30 +363432,139 @@ "SearchSound": "looting_body_extended", "BlocksArmorVest": false, "speedPenaltyPercent": -5, - "mousePenalty": -3, - "GridLayoutName": "", - "weaponErgonomicPenalty": -7, + "mousePenalty": -1, + "GridLayoutName": "f4_term", + "weaponErgonomicPenalty": -4, "LeanWeaponAgainstBody": false }, "_proto": "545cdae64bdc2d39198b4568" }, - "59e763f286f7742ee57895da": { - "_id": "59e763f286f7742ee57895da", - "_name": "backpack_pilgrim", + "5f5e467b0bc58666c37e7821": { + "_id": "5f5e467b0bc58666c37e7821", + "_name": "item_equipment_backpack_f5switchblade", "_parent": "5448e53e4bdc2d60728b4567", "_type": "Item", "_props": { "Name": "Pilgrim", "ShortName": "Pilgrim", "Description": "Pilgrim", - "Weight": 3.48, + "Weight": 1.632, + "BackgroundColor": "violet", + "Width": 5, + "Height": 6, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_f5switchblade/item_equipment_backpack_f5switchblade.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5f5e467b0bc58666c37e7823", + "_parent": "5f5e467b0bc58666c37e7821", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" + ] + } + ], + "cellsH": 5, + "cellsV": 6, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -3, + "mousePenalty": -1, + "GridLayoutName": "", + "weaponErgonomicPenalty": -3, + "LeanWeaponAgainstBody": false + }, + "_proto": "544a5cde4bdc2d39388b456b" + }, + "6034d2d697633951dc245ea6": { + "_id": "6034d2d697633951dc245ea6", + "_name": "item_equipment_backpack_g2_gunslinger", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "Pilgrim", + "ShortName": "Pilgrim", + "Description": "Pilgrim", + "Weight": 2.948, "BackgroundColor": "violet", "Width": 5, "Height": 7, "StackMaxSize": 1, "ItemSound": "gear_backpack", "Prefab": { - "path": "assets/content/items/equipment/backpack_pilgrim/item_equipment_backpack_pilgrim.bundle", + "path": "assets/content/items/equipment/backpack_g2_gunslinger/item_equipment_backpack_g2_gunslinger.bundle", "rcid": "" }, "UsePrefab": { @@ -363693,8 +363611,8 @@ "Grids": [ { "_name": "main", - "_id": "59e763f286f7742ee57895db", - "_parent": "59e763f286f7742ee57895da", + "_id": "6034d2d697633951dc245ea8", + "_parent": "6034d2d697633951dc245ea6", "_props": { "filters": [ { @@ -363716,7 +363634,41 @@ ] } ], - "cellsH": 5, + "cellsH": 3, + "cellsV": 5, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "1", + "_id": "64ad22022b49b454630e014f", + "_parent": "6034d2d697633951dc245ea6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" + ] + } + ], + "cellsH": 2, "cellsV": 7, "minCount": 0, "maxCount": 0, @@ -363724,6 +363676,40 @@ "isSortingTable": false }, "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "64ad22022b49b454630e0150", + "_parent": "6034d2d697633951dc245ea6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" + ] + } + ], + "cellsH": 3, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" } ], "Slots": [], @@ -363731,10 +363717,10 @@ "CantRemoveFromSlotsDuringRaid": [], "SearchSound": "looting_body_extended", "BlocksArmorVest": false, - "speedPenaltyPercent": -7, - "mousePenalty": -4, - "GridLayoutName": "", - "weaponErgonomicPenalty": -8, + "speedPenaltyPercent": -4, + "mousePenalty": -1, + "GridLayoutName": "gunslinger1", + "weaponErgonomicPenalty": -3, "LeanWeaponAgainstBody": false }, "_proto": "544a5cde4bdc2d39388b456b" @@ -363831,115 +363817,6 @@ }, "_proto": "578f87a3245977356274f2cb" }, - "5ab8ee7786f7742d8f33f0b9": { - "_id": "5ab8ee7786f7742d8f33f0b9", - "_name": "backpack_vkboarmy", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "army bag", - "ShortName": "army bag", - "Description": "army bag", - "Weight": 0.96, - "BackgroundColor": "violet", - "Width": 3, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_vkbo/item_equipment_backpack_vkbo.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 2, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5ab8ee7786f7742d8f33f0bb", - "_parent": "5ab8ee7786f7742d8f33f0b9", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 4, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -1, - "mousePenalty": 0, - "GridLayoutName": "", - "weaponErgonomicPenalty": -1, - "LeanWeaponAgainstBody": false - }, - "_proto": "56e335e4d2720b6c058b456d" - }, "56e335e4d2720b6c058b456d": { "_id": "56e335e4d2720b6c058b456d", "_name": "backpack_wild", @@ -364049,6 +363926,505 @@ }, "_proto": "545cdae64bdc2d39198b4568" }, + "6489c99f7c07471efa3e03c0": { + "_id": "6489c99f7c07471efa3e03c0", + "_name": "event_container_airdrop_43", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489c99f7c07471efa3e03c1", + "_parent": "6489c99f7c07471efa3e03c0", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" + }, + "56e33634d2720bd8058b456b": { + "_id": "56e33634d2720bd8058b456b", + "_name": "forward_backpack", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "Forward into Backpack", + "ShortName": "FiB", + "Description": "Forward into Backpack", + "Weight": 1.08, + "BackgroundColor": "violet", + "Width": 4, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_sportbag/item_equipment_backpack_sportbag.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "56e33661d2720b4c098b456a", + "_parent": "56e33634d2720bd8058b456b", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" + ] + } + ], + "cellsH": 4, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -4, + "mousePenalty": -1, + "GridLayoutName": "", + "weaponErgonomicPenalty": -3, + "LeanWeaponAgainstBody": true + }, + "_proto": "56e335e4d2720b6c058b456d" + }, + "656e0436d44a1bb4220303a0": { + "_id": "656e0436d44a1bb4220303a0", + "_name": "item_equipment_backpack_mystery_ranch_satl", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "MBSS Backpack", + "ShortName": "MBSS", + "Description": "", + "Weight": 2.95, + "BackgroundColor": "violet", + "Width": 5, + "Height": 7, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_mystery_ranch_satl/item_equipment_backpack_mystery_ranch_satl.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "656e0436d44a1bb4220303a1", + "_parent": "656e0436d44a1bb4220303a0", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "60a272cc93ef783291411d8e", + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25", + "5b44c6ae86f7742d1627baea", + "5d5d940f86f7742797262046", + "618cfae774bb2d036a049e7c" + ] + } + ], + "cellsH": 6, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "65800aed077bbc49fc10c01d", + "_parent": "656e0436d44a1bb4220303a0", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "60a272cc93ef783291411d8e", + "5b44c6ae86f7742d1627baea", + "5d5d940f86f7742797262046", + "618cfae774bb2d036a049e7c", + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "5b6d9ce188a4501afc1b2b25", + "59fb023c86f7746d0d4b423c", + "5c0a840b86f7742ffa4f2482" + ] + } + ], + "cellsH": 3, + "cellsV": 4, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "65800ba124d2053bb360b530", + "_parent": "656e0436d44a1bb4220303a0", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5b44c6ae86f7742d1627baea", + "5d5d940f86f7742797262046", + "618cfae774bb2d036a049e7c", + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "60a272cc93ef783291411d8e", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25", + "5c0a840b86f7742ffa4f2482" + ] + } + ], + "cellsH": 3, + "cellsV": 4, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -5, + "mousePenalty": -3, + "GridLayoutName": "SATL_Bridger", + "weaponErgonomicPenalty": -6, + "LeanWeaponAgainstBody": false + }, + "_proto": "544a5cde4bdc2d39388b456b" + }, + "5ab8ee7786f7742d8f33f0b9": { + "_id": "5ab8ee7786f7742d8f33f0b9", + "_name": "backpack_vkboarmy", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "army bag", + "ShortName": "army bag", + "Description": "army bag", + "Weight": 0.96, + "BackgroundColor": "violet", + "Width": 3, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_vkbo/item_equipment_backpack_vkbo.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5ab8ee7786f7742d8f33f0bb", + "_parent": "5ab8ee7786f7742d8f33f0b9", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" + ] + } + ], + "cellsH": 4, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -1, + "mousePenalty": 0, + "GridLayoutName": "", + "weaponErgonomicPenalty": -1, + "LeanWeaponAgainstBody": false + }, + "_proto": "56e335e4d2720b6c058b456d" + }, "6034d103ca006d2dca39b3f0": { "_id": "6034d103ca006d2dca39b3f0", "_name": "item_equipment_backpack_takedown_sling", @@ -364160,23 +364536,248 @@ }, "_proto": "544a5cde4bdc2d39388b456b" }, - "56e33634d2720bd8058b456b": { - "_id": "56e33634d2720bd8058b456b", - "_name": "forward_backpack", + "60a2828e8689911a226117f9": { + "_id": "60a2828e8689911a226117f9", + "_name": "item_equipment_backpack_pillbox", "_parent": "5448e53e4bdc2d60728b4567", "_type": "Item", "_props": { - "Name": "Forward into Backpack", - "ShortName": "FiB", - "Description": "Forward into Backpack", - "Weight": 1.08, + "Name": "beta2", + "ShortName": "beta2", + "Description": "beta2", + "Weight": 2.338, "BackgroundColor": "violet", "Width": 4, - "Height": 3, + "Height": 4, "StackMaxSize": 1, "ItemSound": "gear_backpack", "Prefab": { - "path": "assets/content/items/equipment/backpack_sportbag/item_equipment_backpack_sportbag.bundle", + "path": "assets/content/items/equipment/backpack_pillbox/item_equipment_backpack_pillbox.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "60a2828e8689911a226117fb", + "_parent": "60a2828e8689911a226117f9", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "56e335e4d2720b6c058b456d", + "5e9dcf5986f7746c417435b3", + "60a2828e8689911a226117f9", + "5f5e45cc5021ce62144be7aa", + "5ca20d5986f774331e7c9602", + "544a5cde4bdc2d39388b456b", + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25", + "618cfae774bb2d036a049e7c" + ] + } + ], + "cellsH": 4, + "cellsV": 5, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -3, + "mousePenalty": -1, + "GridLayoutName": "", + "weaponErgonomicPenalty": -4, + "LeanWeaponAgainstBody": false + }, + "_proto": "544a5cde4bdc2d39388b456b" + }, + "5f5e45cc5021ce62144be7aa": { + "_id": "5f5e45cc5021ce62144be7aa", + "_name": "item_equipment_backpack_redfox", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "Pilgrim", + "ShortName": "Pilgrim", + "Description": "Pilgrim", + "Weight": 0.984, + "BackgroundColor": "violet", + "Width": 3, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_redfox/item_equipment_backpack_redfox.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5f5e45cc5021ce62144be7ac", + "_parent": "5f5e45cc5021ce62144be7aa", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" + ] + } + ], + "cellsH": 3, + "cellsV": 4, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "GridLayoutName": "", + "weaponErgonomicPenalty": -2, + "LeanWeaponAgainstBody": false + }, + "_proto": "544a5cde4bdc2d39388b456b" + }, + "618bb76513f5097c8d5aa2d5": { + "_id": "618bb76513f5097c8d5aa2d5", + "_name": "item_equipment_backpack_gr99t20", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "Very Wild Backpack", + "ShortName": "VWB", + "Description": "Very Wild Backpack", + "Weight": 1.25, + "BackgroundColor": "violet", + "Width": 5, + "Height": 5, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_gr99t20/item_equipment_backpack_gr99t20_olive.bundle", "rcid": "" }, "UsePrefab": { @@ -364223,8 +364824,8 @@ "Grids": [ { "_name": "main", - "_id": "56e33661d2720b4c098b456a", - "_parent": "56e33634d2720bd8058b456b", + "_id": "618bb76513f5097c8d5aa2d7", + "_parent": "618bb76513f5097c8d5aa2d5", "_props": { "filters": [ { @@ -364246,8 +364847,8 @@ ] } ], - "cellsH": 4, - "cellsV": 3, + "cellsH": 5, + "cellsV": 5, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -364261,13 +364862,105 @@ "CantRemoveFromSlotsDuringRaid": [], "SearchSound": "looting_body_extended", "BlocksArmorVest": false, - "speedPenaltyPercent": -4, - "mousePenalty": -1, + "speedPenaltyPercent": -1, + "mousePenalty": 0, "GridLayoutName": "", - "weaponErgonomicPenalty": -3, - "LeanWeaponAgainstBody": true + "weaponErgonomicPenalty": -1, + "LeanWeaponAgainstBody": false }, - "_proto": "56e335e4d2720b6c058b456d" + "_proto": "545cdae64bdc2d39198b4568" + }, + "6489c164a53c8c047c3dc365": { + "_id": "6489c164a53c8c047c3dc365", + "_name": "event_container_airdrop_32", + "_parent": "62f109593b54472778797866", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 15, + "BackgroundColor": "orange", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6489c164a53c8c047c3dc366", + "_parent": "6489c164a53c8c047c3dc365", + "_props": { + "filters": [ + { + "Filter": [], + "ExcludedFilter": [ + "54009119af1c881c07000029" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 1, + "maxCount": 99, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false + }, + "_proto": "578f87a3245977356274f2cb" }, "5c0e805e86f774683f3dd637": { "_id": "5c0e805e86f774683f3dd637", @@ -364568,115 +365261,23 @@ }, "_proto": "545cdae64bdc2d39198b4568" }, - "6489c03c8bc5233fdc78e788": { - "_id": "6489c03c8bc5233fdc78e788", - "_name": "event_container_airdrop_27", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489c03c8bc5233fdc78e789", - "_parent": "6489c03c8bc5233fdc78e788", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6034d2d697633951dc245ea6": { - "_id": "6034d2d697633951dc245ea6", - "_name": "item_equipment_backpack_g2_gunslinger", + "59e763f286f7742ee57895da": { + "_id": "59e763f286f7742ee57895da", + "_name": "backpack_pilgrim", "_parent": "5448e53e4bdc2d60728b4567", "_type": "Item", "_props": { "Name": "Pilgrim", "ShortName": "Pilgrim", "Description": "Pilgrim", - "Weight": 2.948, + "Weight": 3.48, "BackgroundColor": "violet", "Width": 5, "Height": 7, "StackMaxSize": 1, "ItemSound": "gear_backpack", "Prefab": { - "path": "assets/content/items/equipment/backpack_g2_gunslinger/item_equipment_backpack_g2_gunslinger.bundle", + "path": "assets/content/items/equipment/backpack_pilgrim/item_equipment_backpack_pilgrim.bundle", "rcid": "" }, "UsePrefab": { @@ -364723,185 +365324,8 @@ "Grids": [ { "_name": "main", - "_id": "6034d2d697633951dc245ea8", - "_parent": "6034d2d697633951dc245ea6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 3, - "cellsV": 5, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "1", - "_id": "64ad22022b49b454630e014f", - "_parent": "6034d2d697633951dc245ea6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 2, - "cellsV": 7, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "64ad22022b49b454630e0150", - "_parent": "6034d2d697633951dc245ea6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 3, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -4, - "mousePenalty": -1, - "GridLayoutName": "gunslinger1", - "weaponErgonomicPenalty": -3, - "LeanWeaponAgainstBody": false - }, - "_proto": "544a5cde4bdc2d39388b456b" - }, - "5f5e46b96bdad616ad46d613": { - "_id": "5f5e46b96bdad616ad46d613", - "_name": "item_equipment_backpack_f4terminator", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "sso_attack", - "ShortName": "sso_attack", - "Description": "sso_attack", - "Weight": 4.194, - "BackgroundColor": "violet", - "Width": 5, - "Height": 7, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_f4terminator/item_equipment_backpack_f4terminator.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 2, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5f5e46b96bdad616ad46d615", - "_parent": "5f5e46b96bdad616ad46d613", + "_id": "59e763f286f7742ee57895db", + "_parent": "59e763f286f7742ee57895da", "_props": { "filters": [ { @@ -364924,1099 +365348,6 @@ } ], "cellsH": 5, - "cellsV": 4, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "1", - "_id": "64ad22222b49b454630e0151", - "_parent": "5f5e46b96bdad616ad46d613", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 5, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "64ad22222b49b454630e0152", - "_parent": "5f5e46b96bdad616ad46d613", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 5, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -5, - "mousePenalty": -1, - "GridLayoutName": "f4_term", - "weaponErgonomicPenalty": -4, - "LeanWeaponAgainstBody": false - }, - "_proto": "545cdae64bdc2d39198b4568" - }, - "5f5e467b0bc58666c37e7821": { - "_id": "5f5e467b0bc58666c37e7821", - "_name": "item_equipment_backpack_f5switchblade", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "Pilgrim", - "ShortName": "Pilgrim", - "Description": "Pilgrim", - "Weight": 1.632, - "BackgroundColor": "violet", - "Width": 5, - "Height": 6, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_f5switchblade/item_equipment_backpack_f5switchblade.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5f5e467b0bc58666c37e7823", - "_parent": "5f5e467b0bc58666c37e7821", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 5, - "cellsV": 6, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -3, - "mousePenalty": -1, - "GridLayoutName": "", - "weaponErgonomicPenalty": -3, - "LeanWeaponAgainstBody": false - }, - "_proto": "544a5cde4bdc2d39388b456b" - }, - "618bb76513f5097c8d5aa2d5": { - "_id": "618bb76513f5097c8d5aa2d5", - "_name": "item_equipment_backpack_gr99t20", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "Very Wild Backpack", - "ShortName": "VWB", - "Description": "Very Wild Backpack", - "Weight": 1.25, - "BackgroundColor": "violet", - "Width": 5, - "Height": 5, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_gr99t20/item_equipment_backpack_gr99t20_olive.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 2, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "618bb76513f5097c8d5aa2d7", - "_parent": "618bb76513f5097c8d5aa2d5", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 5, - "cellsV": 5, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -1, - "mousePenalty": 0, - "GridLayoutName": "", - "weaponErgonomicPenalty": -1, - "LeanWeaponAgainstBody": false - }, - "_proto": "545cdae64bdc2d39198b4568" - }, - "5f5e45cc5021ce62144be7aa": { - "_id": "5f5e45cc5021ce62144be7aa", - "_name": "item_equipment_backpack_redfox", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "Pilgrim", - "ShortName": "Pilgrim", - "Description": "Pilgrim", - "Weight": 0.984, - "BackgroundColor": "violet", - "Width": 3, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_redfox/item_equipment_backpack_redfox.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5f5e45cc5021ce62144be7ac", - "_parent": "5f5e45cc5021ce62144be7aa", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 3, - "cellsV": 4, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "GridLayoutName": "", - "weaponErgonomicPenalty": -2, - "LeanWeaponAgainstBody": false - }, - "_proto": "544a5cde4bdc2d39388b456b" - }, - "6489c2aad0c36c0a4925c4bc": { - "_id": "6489c2aad0c36c0a4925c4bc", - "_name": "event_container_airdrop_34", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489c2aad0c36c0a4925c4bd", - "_parent": "6489c2aad0c36c0a4925c4bc", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6489c99f7c07471efa3e03c0": { - "_id": "6489c99f7c07471efa3e03c0", - "_name": "event_container_airdrop_43", - "_parent": "62f109593b54472778797866", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 15, - "BackgroundColor": "orange", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6489c99f7c07471efa3e03c1", - "_parent": "6489c99f7c07471efa3e03c0", - "_props": { - "filters": [ - { - "Filter": [], - "ExcludedFilter": [ - "54009119af1c881c07000029" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 1, - "maxCount": 99, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false - }, - "_proto": "578f87a3245977356274f2cb" - }, - "60a2828e8689911a226117f9": { - "_id": "60a2828e8689911a226117f9", - "_name": "item_equipment_backpack_pillbox", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "beta2", - "ShortName": "beta2", - "Description": "beta2", - "Weight": 2.338, - "BackgroundColor": "violet", - "Width": 4, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_pillbox/item_equipment_backpack_pillbox.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "60a2828e8689911a226117fb", - "_parent": "60a2828e8689911a226117f9", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "56e335e4d2720b6c058b456d", - "5e9dcf5986f7746c417435b3", - "60a2828e8689911a226117f9", - "5f5e45cc5021ce62144be7aa", - "5ca20d5986f774331e7c9602", - "544a5cde4bdc2d39388b456b", - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25", - "618cfae774bb2d036a049e7c" - ] - } - ], - "cellsH": 4, - "cellsV": 5, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -3, - "mousePenalty": -1, - "GridLayoutName": "", - "weaponErgonomicPenalty": -4, - "LeanWeaponAgainstBody": false - }, - "_proto": "544a5cde4bdc2d39388b456b" - }, - "656e0436d44a1bb4220303a0": { - "_id": "656e0436d44a1bb4220303a0", - "_name": "item_equipment_backpack_mystery_ranch_satl", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "MBSS Backpack", - "ShortName": "MBSS", - "Description": "", - "Weight": 2.95, - "BackgroundColor": "violet", - "Width": 5, - "Height": 7, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_mystery_ranch_satl/item_equipment_backpack_mystery_ranch_satl.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "656e0436d44a1bb4220303a1", - "_parent": "656e0436d44a1bb4220303a0", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "60a272cc93ef783291411d8e", - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25", - "5b44c6ae86f7742d1627baea", - "5d5d940f86f7742797262046", - "618cfae774bb2d036a049e7c" - ] - } - ], - "cellsH": 6, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "2", - "_id": "65800aed077bbc49fc10c01d", - "_parent": "656e0436d44a1bb4220303a0", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "60a272cc93ef783291411d8e", - "5b44c6ae86f7742d1627baea", - "5d5d940f86f7742797262046", - "618cfae774bb2d036a049e7c", - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "5b6d9ce188a4501afc1b2b25", - "59fb023c86f7746d0d4b423c", - "5c0a840b86f7742ffa4f2482" - ] - } - ], - "cellsH": 3, - "cellsV": 4, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "3", - "_id": "65800ba124d2053bb360b530", - "_parent": "656e0436d44a1bb4220303a0", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5b44c6ae86f7742d1627baea", - "5d5d940f86f7742797262046", - "618cfae774bb2d036a049e7c", - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "60a272cc93ef783291411d8e", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25", - "5c0a840b86f7742ffa4f2482" - ] - } - ], - "cellsH": 3, - "cellsV": 4, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -5, - "mousePenalty": -3, - "GridLayoutName": "SATL_Bridger", - "weaponErgonomicPenalty": -6, - "LeanWeaponAgainstBody": false - }, - "_proto": "544a5cde4bdc2d39388b456b" - }, - "62a1b7fbc30cfa1d366af586": { - "_id": "62a1b7fbc30cfa1d366af586", - "_name": "item_equipment_backpack_gr99_t30_multicam", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "Pilgrim", - "ShortName": "Pilgrim", - "Description": "Pilgrim", - "Weight": 1.4, - "BackgroundColor": "violet", - "Width": 5, - "Height": 6, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_gr99t30/item_equipment_backpack_gr99t30_multicam.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "62a1b7fbc30cfa1d366af588", - "_parent": "62a1b7fbc30cfa1d366af586", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "5c0a840b86f7742ffa4f2482", - "5b7c710788a4506dec015957", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "59fb042886f7746c5005a7b2", - "59fb023c86f7746d0d4b423c", - "5b6d9ce188a4501afc1b2b25" - ] - } - ], - "cellsH": 5, - "cellsV": 6, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "speedPenaltyPercent": -2, - "mousePenalty": -1, - "GridLayoutName": "", - "weaponErgonomicPenalty": -2, - "LeanWeaponAgainstBody": false - }, - "_proto": "544a5cde4bdc2d39388b456b" - }, - "628bc7fb408e2b2e9c0801b1": { - "_id": "628bc7fb408e2b2e9c0801b1", - "_name": "item_equipment_backpack_boss_birdeye", - "_parent": "5448e53e4bdc2d60728b4567", - "_type": "Item", - "_props": { - "Name": "sso_attack", - "ShortName": "sso_attack", - "Description": "sso_attack", - "Weight": 15, - "BackgroundColor": "violet", - "Width": 4, - "Height": 5, - "StackMaxSize": 1, - "ItemSound": "gear_backpack", - "Prefab": { - "path": "assets/content/items/equipment/backpack_boss_birdeye/backpack_boss_birdeye.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "628bc7fb408e2b2e9c0801b2", - "_parent": "628bc7fb408e2b2e9c0801b1", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "566168634bdc2d144c8b456c", - "5795f317245977243854e041" - ] - } - ], - "cellsH": 2, "cellsV": 7, "minCount": 0, "maxCount": 0, @@ -366031,31 +365362,31 @@ "CantRemoveFromSlotsDuringRaid": [], "SearchSound": "looting_body_extended", "BlocksArmorVest": false, - "speedPenaltyPercent": -6, - "mousePenalty": -1, + "speedPenaltyPercent": -7, + "mousePenalty": -4, "GridLayoutName": "", - "weaponErgonomicPenalty": -5, + "weaponErgonomicPenalty": -8, "LeanWeaponAgainstBody": false }, - "_proto": "545cdae64bdc2d39198b4568" + "_proto": "544a5cde4bdc2d39388b456b" }, - "5df8a4d786f77412672a1e3b": { - "_id": "5df8a4d786f77412672a1e3b", - "_name": "backpack_Raid_6SH118", + "5ab8ebf186f7742d8b372e80": { + "_id": "5ab8ebf186f7742d8b372e80", + "_name": "backpack_sso_attack2", "_parent": "5448e53e4bdc2d60728b4567", "_type": "Item", "_props": { "Name": "sso_attack", "ShortName": "sso_attack", "Description": "sso_attack", - "Weight": 3.5, + "Weight": 2.8, "BackgroundColor": "violet", - "Width": 6, + "Width": 5, "Height": 7, "StackMaxSize": 1, "ItemSound": "gear_backpack", "Prefab": { - "path": "assets/content/items/equipment/backpack_6sh118/item_equipment_backpack_6sh118.bundle", + "path": "assets/content/items/equipment/backpack_sso/item_equipment_backpack_sso.bundle", "rcid": "" }, "UsePrefab": { @@ -366102,8 +365433,8 @@ "Grids": [ { "_name": "main", - "_id": "5df8a4d786f77412672a1e3d", - "_parent": "5df8a4d786f77412672a1e3b", + "_id": "5ab8ebf186f7742d8b372e82", + "_parent": "5ab8ebf186f7742d8b372e80", "_props": { "filters": [ { @@ -366125,8 +365456,8 @@ ] } ], - "cellsH": 6, - "cellsV": 8, + "cellsH": 5, + "cellsV": 7, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -366148,6 +365479,781 @@ }, "_proto": "545cdae64bdc2d39198b4568" }, + "656f198fb27298d6fd005466": { + "_id": "656f198fb27298d6fd005466", + "_name": "item_equipment_backpack_dragon_egg_mk_ii", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "MBSS Backpack", + "ShortName": "MBSS", + "Description": "", + "Weight": 2.95, + "BackgroundColor": "violet", + "Width": 5, + "Height": 5, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_dragon_egg_mk_ii/item_equipment_backpack_dragon_egg_mk_ii.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "656f198fb27298d6fd005467", + "_parent": "656f198fb27298d6fd005466", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "60a272cc93ef783291411d8e", + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25", + "5b44c6ae86f7742d1627baea", + "5d5d940f86f7742797262046", + "618cfae774bb2d036a049e7c" + ] + } + ], + "cellsH": 2, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "2", + "_id": "658006d6077bbc49fc10c019", + "_parent": "656f198fb27298d6fd005466", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "60a272cc93ef783291411d8e", + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25", + "5b44c6ae86f7742d1627baea", + "5d5d940f86f7742797262046", + "618cfae774bb2d036a049e7c" + ] + } + ], + "cellsH": 3, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "3", + "_id": "658008e9a9176671262fe360", + "_parent": "656f198fb27298d6fd005466", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "60a272cc93ef783291411d8e", + "5b44c6ae86f7742d1627baea", + "5d5d940f86f7742797262046", + "618cfae774bb2d036a049e7c", + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25" + ] + } + ], + "cellsH": 5, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -1, + "mousePenalty": -1, + "GridLayoutName": "Dragon_Egg_MK2", + "weaponErgonomicPenalty": -1, + "LeanWeaponAgainstBody": false + }, + "_proto": "544a5cde4bdc2d39388b456b" + }, + "5b44c6ae86f7742d1627baea": { + "_id": "5b44c6ae86f7742d1627baea", + "_name": "item_equipment_backpack_betav2", + "_parent": "5448e53e4bdc2d60728b4567", + "_type": "Item", + "_props": { + "Name": "beta2", + "ShortName": "beta2", + "Description": "beta2", + "Weight": 2, + "BackgroundColor": "violet", + "Width": 5, + "Height": 5, + "StackMaxSize": 1, + "ItemSound": "gear_backpack", + "Prefab": { + "path": "assets/content/items/equipment/backpack_betav2/item_equipment_backpack_betav2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5b44c6ae86f7742d1627baec", + "_parent": "5b44c6ae86f7742d1627baea", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "5c0a840b86f7742ffa4f2482", + "5b7c710788a4506dec015957", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "59fb042886f7746c5005a7b2", + "59fb023c86f7746d0d4b423c", + "5b6d9ce188a4501afc1b2b25", + "5d5d940f86f7742797262046", + "60a272cc93ef783291411d8e" + ] + } + ], + "cellsH": 5, + "cellsV": 6, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "speedPenaltyPercent": -2, + "mousePenalty": -3, + "GridLayoutName": "", + "weaponErgonomicPenalty": -6, + "LeanWeaponAgainstBody": false + }, + "_proto": "544a5cde4bdc2d39388b456b" + }, + "5d07b91b86f7745a077a9432": { + "_id": "5d07b91b86f7745a077a9432", + "_name": "boss_container", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Сейф", + "ShortName": "Сейф", + "Description": "Сейф", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5d07b91b86f7745a077a9434", + "_parent": "5d07b91b86f7745a077a9432", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 5, + "cellsV": 5, + "minCount": 6, + "maxCount": 18, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f8778245977358849a9b5" + }, + "5909e4b686f7747f5b744fa4": { + "_id": "5909e4b686f7747f5b744fa4", + "_name": "scavDead", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Труп Дикого", + "ShortName": "Труп Дикого", + "Description": "Труп Дикого", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5909e4b686f7747f5b744fa5", + "_parent": "5909e4b686f7747f5b744fa4", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 4, + "cellsV": 4, + "minCount": 1, + "maxCount": 5, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f879c24597735401e6bc6" + }, + "578f87a3245977356274f2cb": { + "_id": "578f87a3245977356274f2cb", + "_name": "SportBag", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Спортивная сумка", + "ShortName": "Спортивная сумка", + "Description": "Спортивная сумка", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "578f88a4245977354729d381", + "_parent": "578f87a3245977356274f2cb", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 4, + "cellsV": 3, + "minCount": 1, + "maxCount": 3, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "sportbag_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f879c24597735401e6bc6" + }, + "5d6fd13186f77424ad2a8c69": { + "_id": "5d6fd13186f77424ad2a8c69", + "_name": "Food&Stuff", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Ящик с инструментами", + "ShortName": "Ящик с инструментами", + "Description": "Ящик с инструментами", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5d6fd13186f77424ad2a8c6b", + "_parent": "5d6fd13186f77424ad2a8c69", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 5, + "cellsV": 5, + "minCount": 2, + "maxCount": 8, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "woodbox_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f879c24597735401e6bc6" + }, + "59139c2186f77411564f8e42": { + "_id": "59139c2186f77411564f8e42", + "_name": "PCblock", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "ПК", + "ShortName": "ПК", + "Description": "ПК", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "59139c2186f77411564f8e43", + "_parent": "59139c2186f77411564f8e42", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 4, + "cellsV": 4, + "minCount": 1, + "maxCount": 2, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "techno_box_looting_01", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f879c24597735401e6bc6" + }, "5914944186f774189e5e76c2": { "_id": "5914944186f774189e5e76c2", "_name": "jacket_key204", @@ -366528,6 +366634,291 @@ }, "_proto": "578f879c24597735401e6bc6" }, + "5909d45286f77465a8136dc6": { + "_id": "5909d45286f77465a8136dc6", + "_name": "AmmoBox", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Патронный ящик", + "ShortName": "Патронный ящик", + "Description": "Патронный ящик", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5909d45286f77465a8136dc7", + "_parent": "5909d45286f77465a8136dc6", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 3, + "cellsV": 3, + "minCount": 1, + "maxCount": 4, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "woodbox_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f87a3245977356274f2cb" + }, + "5909d24f86f77466f56e6855": { + "_id": "5909d24f86f77466f56e6855", + "_name": "MedBag", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Медсумка СМУ06", + "ShortName": "Медсумка СМУ06", + "Description": "Медсумка СМУ06", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5909d24f86f77466f56e6856", + "_parent": "5909d24f86f77466f56e6855", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 4, + "cellsV": 3, + "minCount": 1, + "maxCount": 3, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "sportbag_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f879c24597735401e6bc6" + }, + "6582e6c6edf14c4c6023adf2": { + "_id": "6582e6c6edf14c4c6023adf2", + "_name": "scavDead_laborant", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Труп Дикого", + "ShortName": "Труп Дикого", + "Description": "Труп Дикого", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6582e6c6edf14c4c6023adf3", + "_parent": "6582e6c6edf14c4c6023adf2", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 4, + "cellsV": 4, + "minCount": 1, + "maxCount": 1, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f879c24597735401e6bc6" + }, "5909d36d86f774660f0bb900": { "_id": "5909d36d86f774660f0bb900", "_name": "GrenadeBox", @@ -366623,101 +367014,6 @@ }, "_proto": "578f87a3245977356274f2cb" }, - "5d6d2bb386f774785b07a77a": { - "_id": "5d6d2bb386f774785b07a77a", - "_name": "barrel_cache", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Спортивная сумка", - "ShortName": "Спортивная сумка", - "Description": "Спортивная сумка", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5d6d2bb386f774785b07a77c", - "_parent": "5d6d2bb386f774785b07a77a", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 3, - "cellsV": 4, - "minCount": 1, - "maxCount": 5, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "woodbox_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f879c24597735401e6bc6" - }, "5909d50c86f774659e6aaebe": { "_id": "5909d50c86f774659e6aaebe", "_name": "ToolBox", @@ -366908,6 +367204,101 @@ }, "_proto": "578f8782245977354405a1e3" }, + "5d6d2bb386f774785b07a77a": { + "_id": "5d6d2bb386f774785b07a77a", + "_name": "barrel_cache", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Спортивная сумка", + "ShortName": "Спортивная сумка", + "Description": "Спортивная сумка", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5d6d2bb386f774785b07a77c", + "_parent": "5d6d2bb386f774785b07a77a", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 3, + "cellsV": 4, + "minCount": 1, + "maxCount": 5, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "woodbox_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f879c24597735401e6bc6" + }, "5909d7cf86f77470ee57d75a": { "_id": "5909d7cf86f77470ee57d75a", "_name": "terraWBoxSquare", @@ -367003,1051 +367394,6 @@ }, "_proto": "578f87a3245977356274f2cb" }, - "5d07b91b86f7745a077a9432": { - "_id": "5d07b91b86f7745a077a9432", - "_name": "boss_container", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Сейф", - "ShortName": "Сейф", - "Description": "Сейф", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5d07b91b86f7745a077a9434", - "_parent": "5d07b91b86f7745a077a9432", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 5, - "cellsV": 5, - "minCount": 6, - "maxCount": 18, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f8778245977358849a9b5" - }, - "5909e4b686f7747f5b744fa4": { - "_id": "5909e4b686f7747f5b744fa4", - "_name": "scavDead", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Труп Дикого", - "ShortName": "Труп Дикого", - "Description": "Труп Дикого", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5909e4b686f7747f5b744fa5", - "_parent": "5909e4b686f7747f5b744fa4", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 4, - "cellsV": 4, - "minCount": 1, - "maxCount": 5, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f879c24597735401e6bc6" - }, - "578f87a3245977356274f2cb": { - "_id": "578f87a3245977356274f2cb", - "_name": "SportBag", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Спортивная сумка", - "ShortName": "Спортивная сумка", - "Description": "Спортивная сумка", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "578f88a4245977354729d381", - "_parent": "578f87a3245977356274f2cb", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 4, - "cellsV": 3, - "minCount": 1, - "maxCount": 3, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "sportbag_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f879c24597735401e6bc6" - }, - "59139c2186f77411564f8e42": { - "_id": "59139c2186f77411564f8e42", - "_name": "PCblock", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "ПК", - "ShortName": "ПК", - "Description": "ПК", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "59139c2186f77411564f8e43", - "_parent": "59139c2186f77411564f8e42", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 4, - "cellsV": 4, - "minCount": 1, - "maxCount": 2, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "techno_box_looting_01", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f879c24597735401e6bc6" - }, - "5d6fd13186f77424ad2a8c69": { - "_id": "5d6fd13186f77424ad2a8c69", - "_name": "Food&Stuff", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Ящик с инструментами", - "ShortName": "Ящик с инструментами", - "Description": "Ящик с инструментами", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5d6fd13186f77424ad2a8c6b", - "_parent": "5d6fd13186f77424ad2a8c69", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 5, - "cellsV": 5, - "minCount": 2, - "maxCount": 8, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "woodbox_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f879c24597735401e6bc6" - }, - "5909d45286f77465a8136dc6": { - "_id": "5909d45286f77465a8136dc6", - "_name": "AmmoBox", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Патронный ящик", - "ShortName": "Патронный ящик", - "Description": "Патронный ящик", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5909d45286f77465a8136dc7", - "_parent": "5909d45286f77465a8136dc6", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 3, - "cellsV": 3, - "minCount": 1, - "maxCount": 4, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "woodbox_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f87a3245977356274f2cb" - }, - "6582e6c6edf14c4c6023adf2": { - "_id": "6582e6c6edf14c4c6023adf2", - "_name": "scavDead_laborant", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Труп Дикого", - "ShortName": "Труп Дикого", - "Description": "Труп Дикого", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6582e6c6edf14c4c6023adf3", - "_parent": "6582e6c6edf14c4c6023adf2", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 4, - "cellsV": 4, - "minCount": 1, - "maxCount": 1, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f879c24597735401e6bc6" - }, - "5909d24f86f77466f56e6855": { - "_id": "5909d24f86f77466f56e6855", - "_name": "MedBag", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Медсумка СМУ06", - "ShortName": "Медсумка СМУ06", - "Description": "Медсумка СМУ06", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5909d24f86f77466f56e6856", - "_parent": "5909d24f86f77466f56e6855", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 4, - "cellsV": 3, - "minCount": 1, - "maxCount": 3, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "sportbag_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f879c24597735401e6bc6" - }, - "5d6d2b5486f774785c2ba8ea": { - "_id": "5d6d2b5486f774785c2ba8ea", - "_name": "wood_cache", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Спортивная сумка", - "ShortName": "Спортивная сумка", - "Description": "Спортивная сумка", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5d6d2b5486f774785c2ba8ec", - "_parent": "5d6d2b5486f774785c2ba8ea", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 4, - "cellsV": 4, - "minCount": 1, - "maxCount": 6, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f879c24597735401e6bc6" - }, - "578f8782245977354405a1e3": { - "_id": "578f8782245977354405a1e3", - "_name": "Safe", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Сейф", - "ShortName": "Сейф", - "Description": "Сейф", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "578f889524597735675ff17e", - "_parent": "578f8782245977354405a1e3", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 3, - "cellsV": 3, - "minCount": 1, - "maxCount": 5, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "safe_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f8778245977358849a9b5" - }, - "64d116f41a9c6143a956127d": { - "_id": "64d116f41a9c6143a956127d", - "_name": "CashRegisterBank", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Кассовый аппарат TAR2-2", - "ShortName": "Касса TAR2-2", - "Description": "Кассовый аппарат TAR2-2", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "64d116f41a9c6143a956127e", - "_parent": "64d116f41a9c6143a956127d", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 3, - "cellsV": 3, - "minCount": 4, - "maxCount": 9, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "cashregister_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f8782245977354405a1e3" - }, "622334c873090231d904a9fc": { "_id": "622334c873090231d904a9fc", "_name": "air_drop_medical", @@ -368238,6 +367584,1078 @@ }, "_proto": "578f879c24597735401e6bc6" }, + "64d116f41a9c6143a956127d": { + "_id": "64d116f41a9c6143a956127d", + "_name": "CashRegisterBank", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Кассовый аппарат TAR2-2", + "ShortName": "Касса TAR2-2", + "Description": "Кассовый аппарат TAR2-2", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "64d116f41a9c6143a956127e", + "_parent": "64d116f41a9c6143a956127d", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 3, + "cellsV": 3, + "minCount": 4, + "maxCount": 9, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "cashregister_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f8782245977354405a1e3" + }, + "5857a8b324597729ab0a0e7d": { + "_id": "5857a8b324597729ab0a0e7d", + "_name": "Beta container", + "_parent": "5448bf274bdc2dfc2f8b456a", + "_type": "Item", + "_props": { + "Name": "Защищенный контейнер Бета", + "ShortName": "β-secured", + "Description": "", + "Weight": 0.8, + "BackgroundColor": "violet", + "Width": 3, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_case", + "Prefab": { + "path": "assets/content/items/containers/double_gun_case/item_double_gun_case.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": true, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5857a8b324597729ab0a0e7e", + "_parent": "5857a8b324597729ab0a0e7d", + "_props": { + "filters": [ + { + "Filter": [ + "5448eb774bdc2d0a728b4567", + "543be5f84bdc2dd4348b456a", + "5448fe124bdc2da5018b4567", + "60b0f6c058e0b0481a09ad11", + "619cbf9e0a7c3a1a2731940a", + "619cbf7d23893217ec30b689", + "59fafd4b86f7745ca07e1232", + "62a09d3bcf4a99369e262447", + "5d235bb686f77443f4331278", + "5c093e3486f77430cb02e593", + "590c60fc86f77412b13fddcf", + "5783c43d2459774bbe137486", + "543be6674bdc2df1348b4569", + "5448ecbe4bdc2d60728b4568", + "543be5e94bdc2df1348b4568", + "5447e1d04bdc2dff2f8b4567", + "567849dd4bdc2d150f8b456e", + "543be5664bdc2dd4348b4569", + "5447e0e74bdc2d3c308b4567", + "5661632d4bdc2d903d8b456b" + ], + "ExcludedFilter": [ + "5645bc214bdc2d363b8b4571", + "5aa7cfc0e5b5b00015693143", + "5aa7e276e5b5b000171d0647", + "5c066ef40db834001966a595", + "59e7711e86f7746cae05fbe1", + "5d5e7d28a4b936645d161203", + "5d5e9c74a4b9364855191c40", + "5a154d5cfcdbcb001a3b00da", + "5ac8d6885acfc400180ae7b0", + "5a7c4850e899ef00150be885", + "5aa7d193e5b5b000171d063f", + "5aa7d03ae5b5b00016327db5", + "5a16bb52fcdbcb001a3b00dc", + "5aa7e454e5b5b0214e506fa2", + "5aa7e4a4e5b5b000137b76f2", + "5b4329f05acfc47a86086aa1", + "5b40e3f35acfc40016388218", + "5b40e4035acfc47a87740943", + "5b432d215acfc4771e1c6624", + "5b40e1525acfc4771e1c6611", + "5b40e2bc5acfc40016388216", + "5c17a7ed2e2216152142459c", + "5ea17ca01412a1425304d1c0", + "5f60b34a41e30a4ab12a6947", + "5ea05cf85ad9772e6624305d", + "5d6d3716a4b9361bc8618872", + "5c091a4e0db834001d5addc8", + "5c0e874186f7745dc7616606", + "61bca7cda0eae612383adf57", + "5c0d2727d174af02a012cf58", + "5f60c74e3b85f6263c145586", + "5c08f87c0db8340019124324", + "5c06c6a80db834001b735491", + "5e4bfc1586f774264f7582d3", + "5e00c1ad86f774747333222c", + "5e01ef6886f77445f643baa4", + "5ca20ee186f774799474abc2", + "55818aeb4bdc2ddc698b456a", + "5448bc234bdc2d3c308b4569", + "5b3b6dc75acfc47a8773fb1e", + "5a1ead28fcdbcb001912fa9f", + "587e08ee245977446b4410cf", + "5c0695860db834001b735461", + "5a16b93dfcdbcbcae6687261", + "5a16b8a9fcdbcb00165aa6ca", + "5c11046cd174af02a012e42b", + "5448bf274bdc2dfc2f8b456a", + "543be6564bdc2df4348b4568", + "6389c7750ef44505c87f5996", + "6389c85357baa773a825b356", + "6389c7f115805221fb410466", + "5656eb674bdc2d35148b457c", + "5ede474b0c226a66f5402622", + "5ede475b549eed7c6d5c18fb", + "5ede4739e0350d05467f73e8", + "5f0c892565703e5c461894e9", + "5ede47405b097655935d7d16", + "5ede475339ee016e8c534742", + "55818b014bdc2ddc698b456b", + "5ca2113f86f7740b2547e1d2", + "5ea058e01dbce517f324b3e2", + "5e01f37686f774773c6f6c15", + "5e00cdd986f7747473332240", + "5f60c85b58eff926626a60f7", + "5c0e842486f77443a74d2976", + "5c0919b50db834001b7ce3b9", + "5d6d3829a4b9361bc8618943", + "5b46238386f7741a693bcf9c", + "5ac4c50d5acfc40019262e87", + "5d6d3be5a4b9361bc73bc763", + "5c0e66e2d174af02a96252f4", + "5f60bf4558eff926626a60f2", + "5f60c076f2bcbb675b00dac2", + "5f60b85bbdb8e27dee3dc985", + "5ea18c84ecf1982c7712d9a2", + "5c1793902e221602b21d3de2", + "5c178a942e22164bef5ceca3", + "5aa7e3abe5b5b000171d064d", + "5e01f31d86f77465cf261343", + "5e00cfa786f77469dc6e5685", + "5a16b7e1fcdbcb00165aa6c9", + "5a16badafcdbcb001865f72d", + "5a16b672fcdbcb001912fa83", + "5a16ba61fcdbcb098008728a", + "5aa7e373e5b5b000137b76f0", + "59ef13ca86f77445fd0e2483", + "5448e54d4bdc2dcc718b4568", + "5df8a58286f77412631087ed", + "5b432b2f5acfc4771e1c6622", + "62a09e08de7ac81993580532", + "62a61c988ec41a51b34758d5", + "603409c80ca681766b6a0fb2", + "64d4b23dc1b37504b41ac2b6" + ] + } + ], + "cellsH": 3, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [ + "SecuredContainer" + ], + "SearchSound": "techno_box_looting_01", + "BlocksArmorVest": false, + "containType": [], + "sizeWidth": 3, + "sizeHeight": 2, + "isSecured": true, + "spawnTypes": "None", + "lootFilter": [], + "spawnRarity": "Common", + "minCountSpawn": 0, + "maxCountSpawn": 0, + "openedByKeyID": [] + }, + "_proto": "544a11ac4bdc2d470e8b456a" + }, + "578f8782245977354405a1e3": { + "_id": "578f8782245977354405a1e3", + "_name": "Safe", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Сейф", + "ShortName": "Сейф", + "Description": "Сейф", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "578f889524597735675ff17e", + "_parent": "578f8782245977354405a1e3", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 3, + "cellsV": 3, + "minCount": 1, + "maxCount": 5, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "safe_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f8778245977358849a9b5" + }, + "5d6d2b5486f774785c2ba8ea": { + "_id": "5d6d2b5486f774785c2ba8ea", + "_name": "wood_cache", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Спортивная сумка", + "ShortName": "Спортивная сумка", + "Description": "Спортивная сумка", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5d6d2b5486f774785c2ba8ec", + "_parent": "5d6d2b5486f774785c2ba8ea", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 4, + "cellsV": 4, + "minCount": 1, + "maxCount": 6, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f879c24597735401e6bc6" + }, + "6223349b3136504a544d1608": { + "_id": "6223349b3136504a544d1608", + "_name": "air_drop_common", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 500, + "BackgroundColor": "blue", + "Width": 6, + "Height": 8, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6223349b3136504a544d160a", + "_parent": "6223349b3136504a544d1608", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 18, + "maxCount": 43, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f87a3245977356274f2cb" + }, + "5909d5ef86f77467974efbd8": { + "_id": "5909d5ef86f77467974efbd8", + "_name": "terraWBoxLong", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Оружейный ящик", + "ShortName": "Оружейный ящик", + "Description": "Оружейный ящик", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5909d5ef86f77467974efbd9", + "_parent": "5909d5ef86f77467974efbd8", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 5, + "cellsV": 2, + "minCount": 1, + "maxCount": 5, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f87a3245977356274f2cb" + }, + "5c052cea86f7746b2101e8d8": { + "_id": "5c052cea86f7746b2101e8d8", + "_name": "suitcase_plastic_lootable", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Пластиковый чемодан", + "ShortName": "Пластиковый чемодан", + "Description": "Пластиковый чемодан", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/prefabs/levelobjects/indoor/suitcase_plastic_lootable.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5c052cea86f7746b2101e8da", + "_parent": "5c052cea86f7746b2101e8d8", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 3, + "cellsV": 3, + "minCount": 1, + "maxCount": 4, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "sportbag_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f879c24597735401e6bc6" + }, + "6223351bb5d97a7b2c635ca7": { + "_id": "6223351bb5d97a7b2c635ca7", + "_name": "air_drop_weapon", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "boxpreset1", + "ShortName": "boxpreset1", + "Description": "boxpreset1", + "Weight": 500, + "BackgroundColor": "blue", + "Width": 6, + "Height": 8, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "6223351bb5d97a7b2c635ca9", + "_parent": "6223351bb5d97a7b2c635ca7", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 10, + "cellsV": 12, + "minCount": 26, + "maxCount": 50, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "drawer_metal_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f87a3245977356274f2cb" + }, + "5ad74cf586f774391278f6f0": { + "_id": "5ad74cf586f774391278f6f0", + "_name": "CashRegisterBig", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Кассовый аппарат TAR2-2", + "ShortName": "Касса TAR2-2", + "Description": "Кассовый аппарат TAR2-2", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5ad74cf586f774391278f6f2", + "_parent": "5ad74cf586f774391278f6f0", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, + "cellsV": 2, + "minCount": 1, + "maxCount": 4, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "cashregister_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f8782245977354405a1e3" + }, + "61aa1e9a32a4743c3453d2cf": { + "_id": "61aa1e9a32a4743c3453d2cf", + "_name": "SportBag_adv", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Спортивная сумка", + "ShortName": "Спортивная сумка", + "Description": "Спортивная сумка", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "61aa1e9a32a4743c3453d2d1", + "_parent": "61aa1e9a32a4743c3453d2cf", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 4, + "cellsV": 3, + "minCount": 1, + "maxCount": 4, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "sportbag_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f879c24597735401e6bc6" + }, "658420d8085fea07e674cdb6": { "_id": "658420d8085fea07e674cdb6", "_name": "dead_civilian", @@ -368713,15 +369131,15 @@ }, "_proto": "578f879c24597735401e6bc6" }, - "59387ac686f77401442ddd61": { - "_id": "59387ac686f77401442ddd61", - "_name": "jacket_key114_feld", + "578f87ad245977356274f2cc": { + "_id": "578f87ad245977356274f2cc", + "_name": "WeaponCrate", "_parent": "566965d44bdc2d814c8b4571", "_type": "Item", "_props": { - "Name": "Куртка", - "ShortName": "Куртка", - "Description": "Куртка", + "Name": "Деревянный ящик", + "ShortName": "Деревянный ящик", + "Description": "Деревянный ящик", "Weight": 1, "BackgroundColor": "blue", "Width": 1, @@ -368776,8 +369194,8 @@ "Grids": [ { "_name": "main", - "_id": "59387ac686f77401442ddd62", - "_parent": "59387ac686f77401442ddd61", + "_id": "578f8949245977358849a9b6", + "_parent": "578f87ad245977356274f2cc", "_props": { "filters": [ { @@ -368789,10 +369207,10 @@ ] } ], - "cellsH": 2, + "cellsH": 5, "cellsV": 2, "minCount": 1, - "maxCount": 1, + "maxCount": 3, "maxWeight": 0, "isSortingTable": false }, @@ -368802,292 +369220,7 @@ "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "jacket_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "566966cd4bdc2d0c4c8b4578" - }, - "5909d76c86f77471e53d2adf": { - "_id": "5909d76c86f77471e53d2adf", - "_name": "terraWBoxLongBig", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Оружейный ящик", - "ShortName": "Оружейный ящик", - "Description": "Оружейный ящик", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5909d76c86f77471e53d2ae0", - "_parent": "5909d76c86f77471e53d2adf", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 6, - "cellsV": 3, - "minCount": 1, - "maxCount": 6, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f87a3245977356274f2cb" - }, - "64d11702dd0cd96ab82c3280": { - "_id": "64d11702dd0cd96ab82c3280", - "_name": "SafeBank", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Сейф", - "ShortName": "Сейф", - "Description": "Сейф", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "64d11702dd0cd96ab82c3281", - "_parent": "64d11702dd0cd96ab82c3280", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 4, - "cellsV": 4, - "minCount": 8, - "maxCount": 16, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "safe_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f8778245977358849a9b5" - }, - "6223349b3136504a544d1608": { - "_id": "6223349b3136504a544d1608", - "_name": "air_drop_common", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 500, - "BackgroundColor": "blue", - "Width": 6, - "Height": 8, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6223349b3136504a544d160a", - "_parent": "6223349b3136504a544d1608", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 18, - "maxCount": 43, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", + "SearchSound": "woodbox_looting", "BlocksArmorVest": false, "SpawnFilter": [] }, @@ -369378,9 +369511,199 @@ }, "_proto": "578f879c24597735401e6bc6" }, - "5909d5ef86f77467974efbd8": { - "_id": "5909d5ef86f77467974efbd8", - "_name": "terraWBoxLong", + "64d11702dd0cd96ab82c3280": { + "_id": "64d11702dd0cd96ab82c3280", + "_name": "SafeBank", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Сейф", + "ShortName": "Сейф", + "Description": "Сейф", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "64d11702dd0cd96ab82c3281", + "_parent": "64d11702dd0cd96ab82c3280", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 4, + "cellsV": 4, + "minCount": 8, + "maxCount": 16, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "safe_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "578f8778245977358849a9b5" + }, + "59387ac686f77401442ddd61": { + "_id": "59387ac686f77401442ddd61", + "_name": "jacket_key114_feld", + "_parent": "566965d44bdc2d814c8b4571", + "_type": "Item", + "_props": { + "Name": "Куртка", + "ShortName": "Куртка", + "Description": "Куртка", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "59387ac686f77401442ddd62", + "_parent": "59387ac686f77401442ddd61", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 2, + "cellsV": 2, + "minCount": 1, + "maxCount": 1, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "jacket_looting", + "BlocksArmorVest": false, + "SpawnFilter": [] + }, + "_proto": "566966cd4bdc2d0c4c8b4578" + }, + "5909d76c86f77471e53d2adf": { + "_id": "5909d76c86f77471e53d2adf", + "_name": "terraWBoxLongBig", "_parent": "566965d44bdc2d814c8b4571", "_type": "Item", "_props": { @@ -369441,8 +369764,8 @@ "Grids": [ { "_name": "main", - "_id": "5909d5ef86f77467974efbd9", - "_parent": "5909d5ef86f77467974efbd8", + "_id": "5909d76c86f77471e53d2ae0", + "_parent": "5909d76c86f77471e53d2adf", "_props": { "filters": [ { @@ -369454,10 +369777,10 @@ ] } ], - "cellsH": 5, - "cellsV": 2, + "cellsH": 6, + "cellsV": 3, "minCount": 1, - "maxCount": 5, + "maxCount": 6, "maxWeight": 0, "isSortingTable": false }, @@ -369473,481 +369796,6 @@ }, "_proto": "578f87a3245977356274f2cb" }, - "6223351bb5d97a7b2c635ca7": { - "_id": "6223351bb5d97a7b2c635ca7", - "_name": "air_drop_weapon", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "boxpreset1", - "ShortName": "boxpreset1", - "Description": "boxpreset1", - "Weight": 500, - "BackgroundColor": "blue", - "Width": 6, - "Height": 8, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "6223351bb5d97a7b2c635ca9", - "_parent": "6223351bb5d97a7b2c635ca7", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 10, - "cellsV": 12, - "minCount": 26, - "maxCount": 50, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "drawer_metal_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f87a3245977356274f2cb" - }, - "5ad74cf586f774391278f6f0": { - "_id": "5ad74cf586f774391278f6f0", - "_name": "CashRegisterBig", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Кассовый аппарат TAR2-2", - "ShortName": "Касса TAR2-2", - "Description": "Кассовый аппарат TAR2-2", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5ad74cf586f774391278f6f2", - "_parent": "5ad74cf586f774391278f6f0", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 2, - "cellsV": 2, - "minCount": 1, - "maxCount": 4, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "cashregister_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f8782245977354405a1e3" - }, - "5c052cea86f7746b2101e8d8": { - "_id": "5c052cea86f7746b2101e8d8", - "_name": "suitcase_plastic_lootable", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Пластиковый чемодан", - "ShortName": "Пластиковый чемодан", - "Description": "Пластиковый чемодан", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/prefabs/levelobjects/indoor/suitcase_plastic_lootable.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5c052cea86f7746b2101e8da", - "_parent": "5c052cea86f7746b2101e8d8", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 3, - "cellsV": 3, - "minCount": 1, - "maxCount": 4, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "sportbag_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f879c24597735401e6bc6" - }, - "61aa1e9a32a4743c3453d2cf": { - "_id": "61aa1e9a32a4743c3453d2cf", - "_name": "SportBag_adv", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Спортивная сумка", - "ShortName": "Спортивная сумка", - "Description": "Спортивная сумка", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "61aa1e9a32a4743c3453d2d1", - "_parent": "61aa1e9a32a4743c3453d2cf", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 4, - "cellsV": 3, - "minCount": 1, - "maxCount": 4, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "sportbag_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f879c24597735401e6bc6" - }, - "578f87ad245977356274f2cc": { - "_id": "578f87ad245977356274f2cc", - "_name": "WeaponCrate", - "_parent": "566965d44bdc2d814c8b4571", - "_type": "Item", - "_props": { - "Name": "Деревянный ящик", - "ShortName": "Деревянный ящик", - "Description": "Деревянный ящик", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "578f8949245977358849a9b6", - "_parent": "578f87ad245977356274f2cc", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 5, - "cellsV": 2, - "minCount": 1, - "maxCount": 3, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "woodbox_looting", - "BlocksArmorVest": false, - "SpawnFilter": [] - }, - "_proto": "578f87a3245977356274f2cb" - }, "5c0a840b86f7742ffa4f2482": { "_id": "5c0a840b86f7742ffa4f2482", "_name": "item_container_items_thicc", @@ -370077,6 +369925,224 @@ }, "_proto": "577e1c9d2459773cd707c525" }, + "59db794186f77448bc595262": { + "_id": "59db794186f77448bc595262", + "_name": "Epsilon container", + "_parent": "5448bf274bdc2dfc2f8b456a", + "_type": "Item", + "_props": { + "Name": "Защищенный контейнер Эпсилон", + "ShortName": "E-secured", + "Description": "", + "Weight": 1.1, + "BackgroundColor": "violet", + "Width": 4, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_case", + "Prefab": { + "path": "assets/content/prefabs/levelobjects/outdoor/plastic_suitcase_set/plastic_suitcase_54_p.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": true, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "59db794186f77448bc595263", + "_parent": "59db794186f77448bc595262", + "_props": { + "filters": [ + { + "Filter": [ + "5448eb774bdc2d0a728b4567", + "543be5f84bdc2dd4348b456a", + "5448fe124bdc2da5018b4567", + "60b0f6c058e0b0481a09ad11", + "619cbf9e0a7c3a1a2731940a", + "619cbf7d23893217ec30b689", + "59fafd4b86f7745ca07e1232", + "62a09d3bcf4a99369e262447", + "5d235bb686f77443f4331278", + "5c093e3486f77430cb02e593", + "590c60fc86f77412b13fddcf", + "5783c43d2459774bbe137486", + "543be6674bdc2df1348b4569", + "5448ecbe4bdc2d60728b4568", + "543be5e94bdc2df1348b4568", + "5447e1d04bdc2dff2f8b4567", + "567849dd4bdc2d150f8b456e", + "543be5664bdc2dd4348b4569", + "5447e0e74bdc2d3c308b4567", + "5661632d4bdc2d903d8b456b", + "543be5cb4bdc2deb348b4568" + ], + "ExcludedFilter": [ + "5645bc214bdc2d363b8b4571", + "5aa7cfc0e5b5b00015693143", + "5aa7e276e5b5b000171d0647", + "5c066ef40db834001966a595", + "5df8a58286f77412631087ed", + "59e7711e86f7746cae05fbe1", + "5d5e7d28a4b936645d161203", + "5d5e9c74a4b9364855191c40", + "5a154d5cfcdbcb001a3b00da", + "5ac8d6885acfc400180ae7b0", + "5a7c4850e899ef00150be885", + "5aa7d193e5b5b000171d063f", + "5aa7d03ae5b5b00016327db5", + "5a16bb52fcdbcb001a3b00dc", + "5aa7e454e5b5b0214e506fa2", + "5aa7e4a4e5b5b000137b76f2", + "5b40e3f35acfc40016388218", + "5b40e4035acfc47a87740943", + "5b432d215acfc4771e1c6624", + "5b40e1525acfc4771e1c6611", + "5b40e2bc5acfc40016388216", + "5c17a7ed2e2216152142459c", + "5ea17ca01412a1425304d1c0", + "5f60b34a41e30a4ab12a6947", + "5ea05cf85ad9772e6624305d", + "5d6d3716a4b9361bc8618872", + "5c091a4e0db834001d5addc8", + "5c0e874186f7745dc7616606", + "61bca7cda0eae612383adf57", + "5c0d2727d174af02a012cf58", + "5f60c74e3b85f6263c145586", + "5c08f87c0db8340019124324", + "5c06c6a80db834001b735491", + "5e4bfc1586f774264f7582d3", + "5e00c1ad86f774747333222c", + "5e01ef6886f77445f643baa4", + "5ca20ee186f774799474abc2", + "59ef13ca86f77445fd0e2483", + "55818aeb4bdc2ddc698b456a", + "5448bc234bdc2d3c308b4569", + "5b3b6dc75acfc47a8773fb1e", + "5a1ead28fcdbcb001912fa9f", + "587e08ee245977446b4410cf", + "5c0695860db834001b735461", + "5a16b93dfcdbcbcae6687261", + "5a16b8a9fcdbcb00165aa6ca", + "5c11046cd174af02a012e42b", + "5448bf274bdc2dfc2f8b456a", + "543be6564bdc2df4348b4568", + "6389c85357baa773a825b356", + "6389c7750ef44505c87f5996", + "6389c7f115805221fb410466", + "5656eb674bdc2d35148b457c", + "5ede474b0c226a66f5402622", + "5ede475b549eed7c6d5c18fb", + "5ede4739e0350d05467f73e8", + "5f0c892565703e5c461894e9", + "5ede47405b097655935d7d16", + "5ede475339ee016e8c534742", + "55818b014bdc2ddc698b456b", + "5ca2113f86f7740b2547e1d2", + "5ea058e01dbce517f324b3e2", + "5e01f37686f774773c6f6c15", + "5e00cdd986f7747473332240", + "5c0e842486f77443a74d2976", + "5f60c85b58eff926626a60f7", + "5c0919b50db834001b7ce3b9", + "5d6d3829a4b9361bc8618943", + "5d6d3be5a4b9361bc73bc763", + "5b46238386f7741a693bcf9c", + "5ac4c50d5acfc40019262e87", + "5c0e66e2d174af02a96252f4", + "5f60c076f2bcbb675b00dac2", + "5f60bf4558eff926626a60f2", + "5f60b85bbdb8e27dee3dc985", + "5ea18c84ecf1982c7712d9a2", + "5c1793902e221602b21d3de2", + "5c178a942e22164bef5ceca3", + "5aa7e3abe5b5b000171d064d", + "5e01f31d86f77465cf261343", + "5e00cfa786f77469dc6e5685", + "5a16b7e1fcdbcb00165aa6c9", + "5a16b672fcdbcb001912fa83", + "5a16badafcdbcb001865f72d", + "5a16ba61fcdbcb098008728a", + "5aa7e373e5b5b000137b76f0", + "5b4329f05acfc47a86086aa1", + "5448e54d4bdc2dcc718b4568", + "5b432b2f5acfc4771e1c6622", + "62a09e08de7ac81993580532", + "62a61c988ec41a51b34758d5", + "603409c80ca681766b6a0fb2", + "64d4b23dc1b37504b41ac2b6" + ] + } + ], + "cellsH": 4, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [ + "SecuredContainer" + ], + "SearchSound": "techno_box_looting_01", + "BlocksArmorVest": false, + "containType": [], + "sizeWidth": 4, + "sizeHeight": 2, + "isSecured": true, + "spawnTypes": "None", + "lootFilter": [], + "spawnRarity": "Common", + "minCountSpawn": 0, + "maxCountSpawn": 0, + "openedByKeyID": [] + }, + "_proto": "544a11ac4bdc2d470e8b456a" + }, "5c093ca986f7740a1867ab12": { "_id": "5c093ca986f7740a1867ab12", "_name": "item_container_secured_kappa", @@ -370293,23 +370359,23 @@ }, "_proto": "577e1c9d2459773cd707c525" }, - "5857a8b324597729ab0a0e7d": { - "_id": "5857a8b324597729ab0a0e7d", - "_name": "Beta container", + "5c0a794586f77461c458f892": { + "_id": "5c0a794586f77461c458f892", + "_name": "Boss container", "_parent": "5448bf274bdc2dfc2f8b456a", "_type": "Item", "_props": { - "Name": "Защищенный контейнер Бета", - "ShortName": "β-secured", + "Name": "Защищенный контейнер Босса", + "ShortName": "Boss-secured", "Description": "", - "Weight": 0.8, + "Weight": 1, "BackgroundColor": "violet", "Width": 3, - "Height": 2, + "Height": 3, "StackMaxSize": 1, "ItemSound": "container_case", "Prefab": { - "path": "assets/content/items/containers/double_gun_case/item_double_gun_case.bundle", + "path": "assets/content/items/containers/plano_pistol_case/item_plano_pistol_case.bundle", "rcid": "" }, "UsePrefab": { @@ -370318,7 +370384,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": true, + "ExaminedByDefault": false, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -370356,8 +370422,112 @@ "Grids": [ { "_name": "main", - "_id": "5857a8b324597729ab0a0e7e", - "_parent": "5857a8b324597729ab0a0e7d", + "_id": "5c0a794586f77461c458f894", + "_parent": "5c0a794586f77461c458f892", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 4, + "cellsV": 90, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [ + "SecuredContainer" + ], + "SearchSound": "techno_box_looting_01", + "BlocksArmorVest": false, + "containType": [], + "sizeWidth": 3, + "sizeHeight": 3, + "isSecured": true, + "spawnTypes": "None", + "lootFilter": [], + "spawnRarity": "Common", + "minCountSpawn": 0, + "maxCountSpawn": 0, + "openedByKeyID": [] + }, + "_proto": "544a11ac4bdc2d470e8b456a" + }, + "5732ee6a24597719ae0c0281": { + "_id": "5732ee6a24597719ae0c0281", + "_name": "Сумочка", + "_parent": "5448bf274bdc2dfc2f8b456a", + "_type": "Item", + "_props": { + "Name": "Дамская сумочка", + "ShortName": "Сумка", + "Description": "", + "Weight": 0.4, + "BackgroundColor": "violet", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_pouch", + "Prefab": { + "path": "assets/content/items/equipment/backpack_beltbag/item_equipment_backpack_beltbag.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 100, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": true, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5732efe224597719bd402b1f", + "_parent": "5732ee6a24597719ae0c0281", "_props": { "filters": [ { @@ -370365,7 +370535,6 @@ "5448eb774bdc2d0a728b4567", "543be5f84bdc2dd4348b456a", "5448fe124bdc2da5018b4567", - "60b0f6c058e0b0481a09ad11", "619cbf9e0a7c3a1a2731940a", "619cbf7d23893217ec30b689", "59fafd4b86f7745ca07e1232", @@ -370388,6 +370557,7 @@ "5aa7cfc0e5b5b00015693143", "5aa7e276e5b5b000171d0647", "5c066ef40db834001966a595", + "5df8a58286f77412631087ed", "59e7711e86f7746cae05fbe1", "5d5e7d28a4b936645d161203", "5d5e9c74a4b9364855191c40", @@ -370421,8 +370591,8 @@ "5e00c1ad86f774747333222c", "5e01ef6886f77445f643baa4", "5ca20ee186f774799474abc2", + "59ef13ca86f77445fd0e2483", "55818aeb4bdc2ddc698b456a", - "5448bc234bdc2d3c308b4569", "5b3b6dc75acfc47a8773fb1e", "5a1ead28fcdbcb001912fa9f", "587e08ee245977446b4410cf", @@ -370431,56 +370601,55 @@ "5a16b8a9fcdbcb00165aa6ca", "5c11046cd174af02a012e42b", "5448bf274bdc2dfc2f8b456a", - "543be6564bdc2df4348b4568", "6389c7750ef44505c87f5996", "6389c85357baa773a825b356", "6389c7f115805221fb410466", + "543be6564bdc2df4348b4568", + "5448bc234bdc2d3c308b4569", "5656eb674bdc2d35148b457c", "5ede474b0c226a66f5402622", "5ede475b549eed7c6d5c18fb", "5ede4739e0350d05467f73e8", - "5f0c892565703e5c461894e9", "5ede47405b097655935d7d16", + "5f0c892565703e5c461894e9", "5ede475339ee016e8c534742", "55818b014bdc2ddc698b456b", - "5ca2113f86f7740b2547e1d2", - "5ea058e01dbce517f324b3e2", - "5e01f37686f774773c6f6c15", - "5e00cdd986f7747473332240", - "5f60c85b58eff926626a60f7", - "5c0e842486f77443a74d2976", - "5c0919b50db834001b7ce3b9", - "5d6d3829a4b9361bc8618943", - "5b46238386f7741a693bcf9c", - "5ac4c50d5acfc40019262e87", - "5d6d3be5a4b9361bc73bc763", - "5c0e66e2d174af02a96252f4", - "5f60bf4558eff926626a60f2", - "5f60c076f2bcbb675b00dac2", - "5f60b85bbdb8e27dee3dc985", - "5ea18c84ecf1982c7712d9a2", - "5c1793902e221602b21d3de2", - "5c178a942e22164bef5ceca3", - "5aa7e3abe5b5b000171d064d", - "5e01f31d86f77465cf261343", - "5e00cfa786f77469dc6e5685", - "5a16b7e1fcdbcb00165aa6c9", + "5448e54d4bdc2dcc718b4568", + "5aa7e373e5b5b000137b76f0", + "5a16ba61fcdbcb098008728a", "5a16badafcdbcb001865f72d", "5a16b672fcdbcb001912fa83", - "5a16ba61fcdbcb098008728a", - "5aa7e373e5b5b000137b76f0", - "59ef13ca86f77445fd0e2483", - "5448e54d4bdc2dcc718b4568", - "5df8a58286f77412631087ed", - "5b432b2f5acfc4771e1c6622", + "5a16b7e1fcdbcb00165aa6c9", + "5e01f31d86f77465cf261343", + "5e00cfa786f77469dc6e5685", + "5aa7e3abe5b5b000171d064d", + "5c178a942e22164bef5ceca3", + "5c1793902e221602b21d3de2", + "5f60b85bbdb8e27dee3dc985", + "5ea18c84ecf1982c7712d9a2", + "5f60bf4558eff926626a60f2", + "5c0e66e2d174af02a96252f4", + "5f60c076f2bcbb675b00dac2", + "5ac4c50d5acfc40019262e87", + "5b46238386f7741a693bcf9c", + "5d6d3be5a4b9361bc73bc763", + "5d6d3829a4b9361bc8618943", + "5c0919b50db834001b7ce3b9", + "5c0e842486f77443a74d2976", + "5f60c85b58eff926626a60f7", + "5e00cdd986f7747473332240", + "5e01f37686f774773c6f6c15", + "5ca2113f86f7740b2547e1d2", + "5ea058e01dbce517f324b3e2", "62a09e08de7ac81993580532", + "5b432b2f5acfc4771e1c6622", "62a61c988ec41a51b34758d5", "603409c80ca681766b6a0fb2", "64d4b23dc1b37504b41ac2b6" ] } ], - "cellsH": 3, + "cellsH": 2, "cellsV": 2, "minCount": 0, "maxCount": 0, @@ -370492,13 +370661,11 @@ ], "Slots": [], "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [ - "SecuredContainer" - ], - "SearchSound": "techno_box_looting_01", + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "looting_body_extended", "BlocksArmorVest": false, "containType": [], - "sizeWidth": 3, + "sizeWidth": 2, "sizeHeight": 2, "isSecured": true, "spawnTypes": "None", @@ -370510,188 +370677,6 @@ }, "_proto": "544a11ac4bdc2d470e8b456a" }, - "619cbf9e0a7c3a1a2731940a": { - "_id": "619cbf9e0a7c3a1a2731940a", - "_name": "item_container_cardholder", - "_parent": "5795f317245977243854e041", - "_type": "Item", - "_props": { - "Name": "Key-tool", - "ShortName": "Key-tool", - "Description": "Key-tool", - "Weight": 0.095, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "smallmetal", - "Prefab": { - "path": "assets/content/items/barter/item_container_cardholder/item_container_cardholder.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 2, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "619cd188a09b63518b0c0cdc", - "_parent": "619cbf9e0a7c3a1a2731940a", - "_props": { - "filters": [ - { - "Filter": [ - "5c164d2286f774194c5e69fa" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 3, - "cellsV": 3, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "TagColor": 0, - "TagName": "" - }, - "_proto": "577e1c9d2459773cd707c525" - }, - "5963866b86f7747bfa1c4462": { - "_id": "5963866b86f7747bfa1c4462", - "_name": "stash 8x40", - "_parent": "566abbb64bdc2d144c8b457d", - "_type": "Item", - "_props": { - "Name": "QuestOfflineStash", - "ShortName": "QuestOfflineStash", - "Description": "QuestOfflineStash", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "hideout", - "_id": "5963866b86f7747bfa1c4463", - "_parent": "5963866b86f7747bfa1c4462", - "_props": { - "filters": [], - "cellsH": 8, - "cellsV": 40, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [] - }, - "_proto": "5811ce662459770f6f490f32" - }, - "566abbb64bdc2d144c8b457d": { - "_id": "566abbb64bdc2d144c8b457d", - "_name": "Stash", - "_parent": "566162e44bdc2d3f298b4573", - "_type": "Node", - "_props": {} - }, "60c7272c204bc17802313365": { "_id": "60c7272c204bc17802313365", "_name": "карманы 1 на 3", @@ -370888,23 +370873,23 @@ }, "_proto": "557ffd194bdc2d28148b457f" }, - "64381b582bb1c5dedd0fc925": { - "_id": "64381b582bb1c5dedd0fc925", - "_name": "WeaponStand_Stash_2", - "_parent": "63da6da4784a55176c018dba", + "544a11ac4bdc2d470e8b456a": { + "_id": "544a11ac4bdc2d470e8b456a", + "_name": "Контейнер Альфа", + "_parent": "5448bf274bdc2dfc2f8b456a", "_type": "Item", "_props": { - "Name": "WeaponStand_Stash_lvl2", - "ShortName": "Item", - "Description": "Item", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, + "Name": "Защищенный контейнер Альфа", + "ShortName": "A-secured", + "Description": "", + "Weight": 0.6, + "BackgroundColor": "violet", + "Width": 2, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "generic", + "ItemSound": "container_case", "Prefab": { - "path": "assets/content/items/hideout_area_containers/weaponstand_stash_1.bundle", + "path": "assets/content/items/meds/first_aid_box/item_meds_first_aid_box.bundle", "rcid": "" }, "UsePrefab": { @@ -370913,7 +370898,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": false, + "ExaminedByDefault": true, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -370921,9 +370906,9 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 20, + "LootExperience": 0, "ExamineExperience": 10, - "HideEntrails": false, + "HideEntrails": true, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, @@ -370932,14 +370917,14 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": true, + "CanSellOnRagfair": false, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], "AnimationVariantsNumber": 0, - "DiscardingBlock": false, + "DiscardingBlock": true, "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": false, "DiscardLimit": -1, @@ -370950,125 +370935,133 @@ "IsUnremovable": false, "Grids": [ { - "_name": "1", - "_id": "64381bd02bb1c5dedd0fc929", - "_parent": "64381b582bb1c5dedd0fc925", + "_name": "main", + "_id": "55d718044bdc2d87028b456d", + "_parent": "544a11ac4bdc2d470e8b456a", "_props": { "filters": [ { "Filter": [ - "639af924d0446708ee62294e", - "639c3fbbd0446708ee622ee9", - "5e81ebcd8e146c7080625e15", - "620109578d82e67e7911abf2", - "5cdeb229d7f00c000e7ce174", - "5beed0f50db834001c062b12", - "5d52cc5ba4b9367408500062", - "6176aca650224f204c1da3fb", - "5c46fbd72e2216398b5a8c9c", - "5df8ce05b11454561e39243b", - "5f2a9575926fd9352339381f", - "5a367e5dc4a282000e49738f", - "5aafa857e5b5b00018480968", - "5fc22d7c187fea44d52eda44", - "57838ad32459774a17445cd2", - "624c2e8614da335f1e034d8c", - "61a4c8884f95bc3b2c5dc96f", - "60db29ce99594040e04c4a27", - "633ec7c2a6918cb895019c6c", - "6275303a9f372d6ea97f9ec7", - "5e00903ae9dc277128008b87", - "5de7bd7bfd6b4e6e2276dc25", - "5cc82d76e24e8d00134b4b83", - "5d2f0d8048f0356c925bc3b0", - "5926bb2186f7744b1c6c6e60", - "5ba26383d4351e00334c93d9", - "5bd70322209c4d00d7167b8f", - "5fc3e272f8b6a877a729eac5", - "59984ab886f7743e98271174", - "59f9cabd86f7743a10721f46", - "58948c8e86f77409493f7266", - "60339954d62c9b14ed777c06", - "5fb64bc92b1b027b1f50bcf2", - "5fc3f2d5900b1d5091531e57", - "62e14904c2699c0ec93adc47", - "5ea03f7400685063ec28bfa8", - "57f3c6bd24597738e730fa2f", - "57d14d2524597714373db789", - "57f4c844245977379d5c14d1", - "5c07c60e0db834002330051f", - "5cadfbf7ae92152ac412eeef", - "606587252535c57a13424cfd", - "5447a9cd4bdc2dbd208b4567", - "5b0bbe4e5acfc40dc528a72d", - "5c488a752e221602b412af63", - "5dcbd56fdbd3d91b3e5468d5", - "6184055050224f204c1da540", - "618428466ef05c2ce828f218", - "6183afd850224f204c1da514", - "6165ac306ef05c2ce828ef74", - "5bb2475ed4351e00853264e3", - "623063e994fc3f7b302a9696", - "5ac66cb05acfc40198510a10", - "5ac66d015acfc400180ae6e4", - "5ac66d2e5acfc43b321d4b53", - "5ac66d725acfc43b321d4b60", - "5ac66d9b5acfc4001633997a", - "6499849fc93611967b034949", - "5bf3e03b0db834001d2c4a9c", - "5ac4cd105acfc40016339859", - "5644bd2b4bdc2d3b4c8b4572", - "59d6088586f774275f37482f", - "5a0ec13bfcdbcb00165aa685", - "59ff346386f77477562ff5e2", - "5abcbc27d8ce8700182eceeb", - "5bf3e0490db83400196199af", - "5ab8e9fcd8ce870019439434", - "57dc2fa62459775949412633", - "5839a40f24597726f856b511", - "583990e32459771419544dd2", - "5d43021ca4b9362eab4b5e25", - "59e6687d86f77411d949b251", - "59e6152586f77473dc057aa1", - "628a60ae6b1d481ff772e9c8", - "628b5638ad252a16da6dd245", - "628b9c37a733087d0d7fe84b", - "5fbcc1d9016cce60e8341ab3", - "62e7c4fba689e8c9c50dfc38", - "63171672192e68c5460cebc5", - "627e14b21713922ded6f2c15", - "5bfd297f0db834001a669119", - "5ae08f0a5acfc408fb1398a1", - "55801eed4bdc2d89578b4588", - "588892092459774ac91d4b11", - "5de652c31b7e3716273428be", - "5df24cf80dee1b22f862e9bc", - "5bfea6e90db834001b7347f3", - "6259b864ebedf17603599e88", - "61f7c9e189e6fb1a5e3ea78d", - "576165642459773c7a400233", - "54491c4f4bdc2db1078b4568", - "56dee2bdd2720bc8328b4567", - "64748cb8de82c85eaf0a273a", - "5580223e4bdc2d1c128b457f", - "606dae0ab0e443224b421bb7", - "5e870397991fd70db46995c8", - "5a7828548dc32e5a9c28b516", - "5e848cc2988a8701445df1e8", - "5a38e6bac4a2826c6e06d79b", - "64637076203536ad5600c990", - "64ca3d3954fc657e230529cc", - "65268d8ecb944ff1e90ea385", - "65290f395ae2ae97b80fdf2d", - "5447b5fc4bdc2d87278b4567", - "6513ef33e06849f06c0957ca", - "5447b5cf4bdc2d65278b4567" + "5448eb774bdc2d0a728b4567", + "543be5f84bdc2dd4348b456a", + "5448fe124bdc2da5018b4567", + "60b0f6c058e0b0481a09ad11", + "619cbf9e0a7c3a1a2731940a", + "619cbf7d23893217ec30b689", + "59fafd4b86f7745ca07e1232", + "62a09d3bcf4a99369e262447", + "5d235bb686f77443f4331278", + "5c093e3486f77430cb02e593", + "590c60fc86f77412b13fddcf", + "5783c43d2459774bbe137486", + "543be6674bdc2df1348b4569", + "5448ecbe4bdc2d60728b4568", + "543be5e94bdc2df1348b4568", + "5447e1d04bdc2dff2f8b4567", + "567849dd4bdc2d150f8b456e", + "543be5664bdc2dd4348b4569", + "5447e0e74bdc2d3c308b4567", + "5661632d4bdc2d903d8b456b" ], - "ExcludedFilter": [] + "ExcludedFilter": [ + "5645bc214bdc2d363b8b4571", + "5aa7cfc0e5b5b00015693143", + "5aa7e276e5b5b000171d0647", + "5c066ef40db834001966a595", + "5df8a58286f77412631087ed", + "59e7711e86f7746cae05fbe1", + "5d5e7d28a4b936645d161203", + "5d5e9c74a4b9364855191c40", + "5a154d5cfcdbcb001a3b00da", + "5ac8d6885acfc400180ae7b0", + "5a7c4850e899ef00150be885", + "5aa7d193e5b5b000171d063f", + "5aa7d03ae5b5b00016327db5", + "5a16bb52fcdbcb001a3b00dc", + "5aa7e454e5b5b0214e506fa2", + "5aa7e4a4e5b5b000137b76f2", + "5b40e3f35acfc40016388218", + "5b40e4035acfc47a87740943", + "5b432d215acfc4771e1c6624", + "5b40e1525acfc4771e1c6611", + "5b40e2bc5acfc40016388216", + "5c17a7ed2e2216152142459c", + "5ea17ca01412a1425304d1c0", + "5f60b34a41e30a4ab12a6947", + "5ea05cf85ad9772e6624305d", + "5d6d3716a4b9361bc8618872", + "5c091a4e0db834001d5addc8", + "5c0e874186f7745dc7616606", + "61bca7cda0eae612383adf57", + "5c0d2727d174af02a012cf58", + "5f60c74e3b85f6263c145586", + "5c08f87c0db8340019124324", + "5c06c6a80db834001b735491", + "5e4bfc1586f774264f7582d3", + "5e00c1ad86f774747333222c", + "5e01ef6886f77445f643baa4", + "5ca20ee186f774799474abc2", + "59ef13ca86f77445fd0e2483", + "55818aeb4bdc2ddc698b456a", + "5448bc234bdc2d3c308b4569", + "5b3b6dc75acfc47a8773fb1e", + "5a1ead28fcdbcb001912fa9f", + "587e08ee245977446b4410cf", + "5c0695860db834001b735461", + "5a16b93dfcdbcbcae6687261", + "5a16b8a9fcdbcb00165aa6ca", + "5c11046cd174af02a012e42b", + "5448bf274bdc2dfc2f8b456a", + "543be6564bdc2df4348b4568", + "6389c7750ef44505c87f5996", + "6389c85357baa773a825b356", + "6389c7f115805221fb410466", + "5ede474b0c226a66f5402622", + "5ede475b549eed7c6d5c18fb", + "5ede4739e0350d05467f73e8", + "5f0c892565703e5c461894e9", + "5ede47405b097655935d7d16", + "5ede475339ee016e8c534742", + "5656eb674bdc2d35148b457c", + "55818b014bdc2ddc698b456b", + "5448e54d4bdc2dcc718b4568", + "5ca2113f86f7740b2547e1d2", + "5ea058e01dbce517f324b3e2", + "5e01f37686f774773c6f6c15", + "5e00cdd986f7747473332240", + "5f60c85b58eff926626a60f7", + "5d6d3829a4b9361bc8618943", + "5c0919b50db834001b7ce3b9", + "5c0e842486f77443a74d2976", + "5d6d3be5a4b9361bc73bc763", + "5b46238386f7741a693bcf9c", + "5ac4c50d5acfc40019262e87", + "5c0e66e2d174af02a96252f4", + "5f60c076f2bcbb675b00dac2", + "5f60bf4558eff926626a60f2", + "5f60b85bbdb8e27dee3dc985", + "5ea18c84ecf1982c7712d9a2", + "5c1793902e221602b21d3de2", + "5c178a942e22164bef5ceca3", + "5aa7e3abe5b5b000171d064d", + "5e01f31d86f77465cf261343", + "5e00cfa786f77469dc6e5685", + "5a16b7e1fcdbcb00165aa6c9", + "5a16b672fcdbcb001912fa83", + "5a16badafcdbcb001865f72d", + "5a16ba61fcdbcb098008728a", + "5aa7e373e5b5b000137b76f0", + "5b4329f05acfc47a86086aa1", + "5b432b2f5acfc4771e1c6622", + "62a09e08de7ac81993580532", + "62a61c988ec41a51b34758d5", + "603409c80ca681766b6a0fb2", + "64d4b23dc1b37504b41ac2b6" + ] } ], - "cellsH": 11, - "cellsV": 6, + "cellsH": 2, + "cellsV": 2, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -371079,27 +371072,40 @@ ], "Slots": [], "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "LayoutName": "WeaponStand_Stash" + "CantRemoveFromSlotsDuringRaid": [ + "SecuredContainer" + ], + "SearchSound": "cashregister_looting", + "BlocksArmorVest": false, + "containType": [], + "sizeWidth": 2, + "sizeHeight": 2, + "isSecured": true, + "spawnTypes": "None", + "lootFilter": [], + "spawnRarity": "Common", + "minCountSpawn": 0, + "maxCountSpawn": 0, + "openedByKeyID": [] } }, - "566168634bdc2d144c8b456c": { - "_id": "566168634bdc2d144c8b456c", - "_name": "SearchableItem", - "_parent": "566162e44bdc2d3f298b4573", - "_type": "Node", + "5857a8bc2459772bad15db29": { + "_id": "5857a8bc2459772bad15db29", + "_name": "Gamma container", + "_parent": "5448bf274bdc2dfc2f8b456a", + "_type": "Item", "_props": { - "Name": "Item", - "ShortName": "Item", - "Description": "Item", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, + "Name": "Защищенный DEVELOPER контейнер", + "ShortName": "dev-secured", + "Description": "", + "Weight": 1.2, + "BackgroundColor": "violet", + "Width": 3, + "Height": 3, "StackMaxSize": 1, - "ItemSound": "generic", + "ItemSound": "container_case", "Prefab": { - "path": "", + "path": "assets/content/items/containers/plano_pistol_case/item_plano_pistol_case.bundle", "rcid": "" }, "UsePrefab": { @@ -371108,7 +371114,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": false, + "ExaminedByDefault": true, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -371116,9 +371122,9 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 20, + "LootExperience": 0, "ExamineExperience": 10, - "HideEntrails": false, + "HideEntrails": true, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, @@ -371127,14 +371133,14 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": true, + "CanSellOnRagfair": false, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], "AnimationVariantsNumber": 0, - "DiscardingBlock": false, + "DiscardingBlock": true, "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": false, "DiscardLimit": -1, @@ -371143,13 +371149,162 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "Grids": [], + "Grids": [ + { + "_name": "main", + "_id": "5857a8bc2459772bad15db2a", + "_parent": "5857a8bc2459772bad15db29", + "_props": { + "filters": [ + { + "Filter": [ + "5448eb774bdc2d0a728b4567", + "543be5f84bdc2dd4348b456a", + "5448fe124bdc2da5018b4567", + "60b0f6c058e0b0481a09ad11", + "619cbf9e0a7c3a1a2731940a", + "619cbf7d23893217ec30b689", + "59fafd4b86f7745ca07e1232", + "62a09d3bcf4a99369e262447", + "5d235bb686f77443f4331278", + "5c093e3486f77430cb02e593", + "590c60fc86f77412b13fddcf", + "5783c43d2459774bbe137486", + "543be6674bdc2df1348b4569", + "5448ecbe4bdc2d60728b4568", + "543be5e94bdc2df1348b4568", + "5447e1d04bdc2dff2f8b4567", + "567849dd4bdc2d150f8b456e", + "543be5664bdc2dd4348b4569", + "5447e0e74bdc2d3c308b4567", + "5661632d4bdc2d903d8b456b" + ], + "ExcludedFilter": [ + "5448e54d4bdc2dcc718b4568", + "5645bc214bdc2d363b8b4571", + "5aa7cfc0e5b5b00015693143", + "5aa7e276e5b5b000171d0647", + "5c066ef40db834001966a595", + "5df8a58286f77412631087ed", + "59e7711e86f7746cae05fbe1", + "5d5e7d28a4b936645d161203", + "5d5e9c74a4b9364855191c40", + "5a154d5cfcdbcb001a3b00da", + "5ac8d6885acfc400180ae7b0", + "5a7c4850e899ef00150be885", + "5aa7d193e5b5b000171d063f", + "5aa7d03ae5b5b00016327db5", + "5a16bb52fcdbcb001a3b00dc", + "5aa7e454e5b5b0214e506fa2", + "5aa7e4a4e5b5b000137b76f2", + "5b40e3f35acfc40016388218", + "5b40e4035acfc47a87740943", + "5b432d215acfc4771e1c6624", + "5b40e1525acfc4771e1c6611", + "5b40e2bc5acfc40016388216", + "5c17a7ed2e2216152142459c", + "5ea17ca01412a1425304d1c0", + "5f60b34a41e30a4ab12a6947", + "5ea05cf85ad9772e6624305d", + "5d6d3716a4b9361bc8618872", + "5c091a4e0db834001d5addc8", + "5c0e874186f7745dc7616606", + "61bca7cda0eae612383adf57", + "5c0d2727d174af02a012cf58", + "5f60c74e3b85f6263c145586", + "5c08f87c0db8340019124324", + "5c06c6a80db834001b735491", + "5e4bfc1586f774264f7582d3", + "5e00c1ad86f774747333222c", + "5e01ef6886f77445f643baa4", + "5ca20ee186f774799474abc2", + "55818aeb4bdc2ddc698b456a", + "5448bc234bdc2d3c308b4569", + "5b3b6dc75acfc47a8773fb1e", + "5a1ead28fcdbcb001912fa9f", + "587e08ee245977446b4410cf", + "5c0695860db834001b735461", + "5a16b93dfcdbcbcae6687261", + "5a16b8a9fcdbcb00165aa6ca", + "5c11046cd174af02a012e42b", + "5448bf274bdc2dfc2f8b456a", + "543be6564bdc2df4348b4568", + "6389c85357baa773a825b356", + "6389c7750ef44505c87f5996", + "6389c7f115805221fb410466", + "5ede474b0c226a66f5402622", + "5ede475b549eed7c6d5c18fb", + "5ede4739e0350d05467f73e8", + "5f0c892565703e5c461894e9", + "5ede47405b097655935d7d16", + "5ede475339ee016e8c534742", + "5656eb674bdc2d35148b457c", + "55818b014bdc2ddc698b456b", + "5ca2113f86f7740b2547e1d2", + "5ea058e01dbce517f324b3e2", + "5e01f37686f774773c6f6c15", + "5e00cdd986f7747473332240", + "5f60c85b58eff926626a60f7", + "5c0e842486f77443a74d2976", + "5c0919b50db834001b7ce3b9", + "5d6d3829a4b9361bc8618943", + "5d6d3be5a4b9361bc73bc763", + "5b46238386f7741a693bcf9c", + "5ac4c50d5acfc40019262e87", + "5c0e66e2d174af02a96252f4", + "5f60c076f2bcbb675b00dac2", + "5f60bf4558eff926626a60f2", + "5f60b85bbdb8e27dee3dc985", + "5ea18c84ecf1982c7712d9a2", + "5c1793902e221602b21d3de2", + "5c178a942e22164bef5ceca3", + "5aa7e3abe5b5b000171d064d", + "5e01f31d86f77465cf261343", + "5a16b7e1fcdbcb00165aa6c9", + "5e00cfa786f77469dc6e5685", + "5a16b672fcdbcb001912fa83", + "5a16badafcdbcb001865f72d", + "5a16ba61fcdbcb098008728a", + "5aa7e373e5b5b000137b76f0", + "5b4329f05acfc47a86086aa1", + "59ef13ca86f77445fd0e2483", + "5b432b2f5acfc4771e1c6622", + "62a09e08de7ac81993580532", + "62a61c988ec41a51b34758d5", + "603409c80ca681766b6a0fb2", + "64d4b23dc1b37504b41ac2b6" + ] + } + ], + "cellsH": 3, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], "Slots": [], "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "cashregister_looting", - "BlocksArmorVest": false - } + "CantRemoveFromSlotsDuringRaid": [ + "SecuredContainer" + ], + "SearchSound": "techno_box_looting_01", + "BlocksArmorVest": false, + "containType": [], + "sizeWidth": 3, + "sizeHeight": 3, + "isSecured": true, + "spawnTypes": "None", + "lootFilter": [], + "spawnRarity": "Common", + "minCountSpawn": 0, + "maxCountSpawn": 0, + "openedByKeyID": [] + }, + "_proto": "544a11ac4bdc2d470e8b456a" }, "5c093db286f7740a1b2617e3": { "_id": "5c093db286f7740a1b2617e3", @@ -371424,6 +371579,470 @@ }, "_proto": "5448fee04bdc2dbc018b4567" }, + "619cbf9e0a7c3a1a2731940a": { + "_id": "619cbf9e0a7c3a1a2731940a", + "_name": "item_container_cardholder", + "_parent": "5795f317245977243854e041", + "_type": "Item", + "_props": { + "Name": "Key-tool", + "ShortName": "Key-tool", + "Description": "Key-tool", + "Weight": 0.095, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "smallmetal", + "Prefab": { + "path": "assets/content/items/barter/item_container_cardholder/item_container_cardholder.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "619cd188a09b63518b0c0cdc", + "_parent": "619cbf9e0a7c3a1a2731940a", + "_props": { + "filters": [ + { + "Filter": [ + "5c164d2286f774194c5e69fa" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 3, + "cellsV": 3, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "TagColor": 0, + "TagName": "" + }, + "_proto": "577e1c9d2459773cd707c525" + }, + "5963866b86f7747bfa1c4462": { + "_id": "5963866b86f7747bfa1c4462", + "_name": "stash 8x40", + "_parent": "566abbb64bdc2d144c8b457d", + "_type": "Item", + "_props": { + "Name": "QuestOfflineStash", + "ShortName": "QuestOfflineStash", + "Description": "QuestOfflineStash", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "hideout", + "_id": "5963866b86f7747bfa1c4463", + "_parent": "5963866b86f7747bfa1c4462", + "_props": { + "filters": [], + "cellsH": 8, + "cellsV": 40, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [] + }, + "_proto": "5811ce662459770f6f490f32" + }, + "566abbb64bdc2d144c8b457d": { + "_id": "566abbb64bdc2d144c8b457d", + "_name": "Stash", + "_parent": "566162e44bdc2d3f298b4573", + "_type": "Node", + "_props": {} + }, + "64381b582bb1c5dedd0fc925": { + "_id": "64381b582bb1c5dedd0fc925", + "_name": "WeaponStand_Stash_2", + "_parent": "63da6da4784a55176c018dba", + "_type": "Item", + "_props": { + "Name": "WeaponStand_Stash_lvl2", + "ShortName": "Item", + "Description": "Item", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/hideout_area_containers/weaponstand_stash_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "64381bd02bb1c5dedd0fc929", + "_parent": "64381b582bb1c5dedd0fc925", + "_props": { + "filters": [ + { + "Filter": [ + "639af924d0446708ee62294e", + "639c3fbbd0446708ee622ee9", + "5e81ebcd8e146c7080625e15", + "620109578d82e67e7911abf2", + "5cdeb229d7f00c000e7ce174", + "5beed0f50db834001c062b12", + "5d52cc5ba4b9367408500062", + "6176aca650224f204c1da3fb", + "5c46fbd72e2216398b5a8c9c", + "5df8ce05b11454561e39243b", + "5f2a9575926fd9352339381f", + "5a367e5dc4a282000e49738f", + "5aafa857e5b5b00018480968", + "5fc22d7c187fea44d52eda44", + "57838ad32459774a17445cd2", + "5cadc190ae921500103bb3b6", + "5e81c3cbac2bb513793cdc75", + "5f36a0e5fbf956000b716b65", + "5d3eb3b0a4b93615055e84d2", + "5d67abc1a4b93614ec50137f", + "5a7ae0c351dfba0017554310", + "5b1fa9b25acfc40018633c01", + "63088377b5cd696784087147", + "6193a720f8ee7e52e42109ed", + "602a9740da11d6478d5a06dc", + "576a581d2459771e7b1bc4f1", + "5448bd6b4bdc2dfc2f8b4569", + "579204f224597773d619e051", + "5a17f98cfcdbcb0980087290", + "56d59856d2720bd8418b456a", + "56e0598dd2720bb5668b45a6", + "59f98b4986f7746f546d2cef", + "5abccb7dd8ce87001773e277", + "571a12c42459771f627b58a0", + "5b3b713c5acfc4330140bd8d", + "624c2e8614da335f1e034d8c", + "61a4c8884f95bc3b2c5dc96f", + "60db29ce99594040e04c4a27", + "633ec7c2a6918cb895019c6c", + "6275303a9f372d6ea97f9ec7", + "5e00903ae9dc277128008b87", + "5de7bd7bfd6b4e6e2276dc25", + "5cc82d76e24e8d00134b4b83", + "5d2f0d8048f0356c925bc3b0", + "5926bb2186f7744b1c6c6e60", + "5ba26383d4351e00334c93d9", + "5bd70322209c4d00d7167b8f", + "5fc3e272f8b6a877a729eac5", + "59984ab886f7743e98271174", + "59f9cabd86f7743a10721f46", + "58948c8e86f77409493f7266", + "60339954d62c9b14ed777c06", + "5fb64bc92b1b027b1f50bcf2", + "5fc3f2d5900b1d5091531e57", + "62e14904c2699c0ec93adc47", + "5ea03f7400685063ec28bfa8", + "57f3c6bd24597738e730fa2f", + "57d14d2524597714373db789", + "57f4c844245977379d5c14d1", + "5c07c60e0db834002330051f", + "5cadfbf7ae92152ac412eeef", + "606587252535c57a13424cfd", + "5447a9cd4bdc2dbd208b4567", + "5b0bbe4e5acfc40dc528a72d", + "5c488a752e221602b412af63", + "5dcbd56fdbd3d91b3e5468d5", + "6184055050224f204c1da540", + "618428466ef05c2ce828f218", + "6183afd850224f204c1da514", + "6165ac306ef05c2ce828ef74", + "5bb2475ed4351e00853264e3", + "623063e994fc3f7b302a9696", + "5ac66cb05acfc40198510a10", + "5ac66d015acfc400180ae6e4", + "5ac66d2e5acfc43b321d4b53", + "5ac66d725acfc43b321d4b60", + "5ac66d9b5acfc4001633997a", + "6499849fc93611967b034949", + "5bf3e03b0db834001d2c4a9c", + "5ac4cd105acfc40016339859", + "5644bd2b4bdc2d3b4c8b4572", + "59d6088586f774275f37482f", + "5a0ec13bfcdbcb00165aa685", + "59ff346386f77477562ff5e2", + "5abcbc27d8ce8700182eceeb", + "5bf3e0490db83400196199af", + "5ab8e9fcd8ce870019439434", + "57dc2fa62459775949412633", + "5839a40f24597726f856b511", + "583990e32459771419544dd2", + "5d43021ca4b9362eab4b5e25", + "59e6687d86f77411d949b251", + "59e6152586f77473dc057aa1", + "628a60ae6b1d481ff772e9c8", + "628b5638ad252a16da6dd245", + "628b9c37a733087d0d7fe84b", + "5fbcc1d9016cce60e8341ab3", + "62e7c4fba689e8c9c50dfc38", + "63171672192e68c5460cebc5", + "627e14b21713922ded6f2c15", + "5bfd297f0db834001a669119", + "5ae08f0a5acfc408fb1398a1", + "55801eed4bdc2d89578b4588", + "588892092459774ac91d4b11", + "5de652c31b7e3716273428be", + "5df24cf80dee1b22f862e9bc", + "5bfea6e90db834001b7347f3", + "6259b864ebedf17603599e88", + "61f7c9e189e6fb1a5e3ea78d", + "576165642459773c7a400233", + "54491c4f4bdc2db1078b4568", + "56dee2bdd2720bc8328b4567", + "64748cb8de82c85eaf0a273a", + "5580223e4bdc2d1c128b457f", + "606dae0ab0e443224b421bb7", + "5e870397991fd70db46995c8", + "5a7828548dc32e5a9c28b516", + "5e848cc2988a8701445df1e8", + "5a38e6bac4a2826c6e06d79b", + "64637076203536ad5600c990", + "64ca3d3954fc657e230529cc", + "65268d8ecb944ff1e90ea385", + "65290f395ae2ae97b80fdf2d", + "5447b5fc4bdc2d87278b4567", + "6513ef33e06849f06c0957ca" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 11, + "cellsV": 6, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "LayoutName": "WeaponStand_Stash" + } + }, + "566168634bdc2d144c8b456c": { + "_id": "566168634bdc2d144c8b456c", + "_name": "SearchableItem", + "_parent": "566162e44bdc2d3f298b4573", + "_type": "Node", + "_props": { + "Name": "Item", + "ShortName": "Item", + "Description": "Item", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "SearchSound": "cashregister_looting", + "BlocksArmorVest": false + } + }, "5963866286f7747bf429b572": { "_id": "5963866286f7747bf429b572", "_name": "stash 8x6", @@ -373661,23 +374280,108 @@ "LayoutName": "" } }, - "59db794186f77448bc595262": { - "_id": "59db794186f77448bc595262", - "_name": "Epsilon container", - "_parent": "5448bf274bdc2dfc2f8b456a", + "5d1b376e86f774252519444e": { + "_id": "5d1b376e86f774252519444e", + "_name": "item_food_moonshine", + "_parent": "5448e8d64bdc2dce718b4568", "_type": "Item", "_props": { - "Name": "Защищенный контейнер Эпсилон", - "ShortName": "E-secured", - "Description": "", - "Weight": 1.1, + "Name": "item_food_moonshine", + "ShortName": "item_food_moonshine", + "Description": "item_food_moonshine", + "Weight": 1.2, "BackgroundColor": "violet", - "Width": 4, + "Width": 1, "Height": 2, "StackMaxSize": 1, - "ItemSound": "container_case", + "ItemSound": "food_bottle", "Prefab": { - "path": "assets/content/prefabs/levelobjects/outdoor/plastic_suitcase_set/plastic_suitcase_54_p.bundle", + "path": "assets/content/weapons/usable_items/item_alcohol_moonshine/item_alcohol_moonshine_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_alcohol_moonshine/item_alcohol_moonshine_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 6, + "foodEffectType": "afterUse", + "MaxResource": 1, + "StimulatorBuffs": "Buffs_drink_moonshine", + "effects_health": { + "Energy": { + "value": 20 + }, + "Hydration": { + "value": -10 + } + }, + "effects_damage": { + "Pain": { + "delay": 0, + "duration": 500 + }, + "RadExposure": { + "delay": 0, + "duration": 0 + } + } + }, + "_proto": "5673de654bdc2d180f8b456d" + }, + "5b6d9ce188a4501afc1b2b25": { + "_id": "5b6d9ce188a4501afc1b2b25", + "_name": "item_container_weaponcase_THICC", + "_parent": "5795f317245977243854e041", + "_type": "Item", + "_props": { + "Name": "Weaponcase thicc", + "ShortName": "Weaponcase thicc", + "Description": "Weaponcase thicc", + "Weight": 18, + "BackgroundColor": "yellow", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weapon_thicc/item_container_weapon_thicc.bundle", "rcid": "" }, "UsePrefab": { @@ -373694,7 +374398,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 0, + "LootExperience": 30, "ExamineExperience": 10, "HideEntrails": true, "RepairCost": 0, @@ -373712,10 +374416,10 @@ "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], "AnimationVariantsNumber": 0, - "DiscardingBlock": true, + "DiscardingBlock": false, "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, + "DiscardLimit": 0, "DropSoundType": "None", "InsuranceDisabled": false, "QuestStashMaxCount": 0, @@ -373724,133 +374428,22 @@ "Grids": [ { "_name": "main", - "_id": "59db794186f77448bc595263", - "_parent": "59db794186f77448bc595262", + "_id": "5b6d9ce188a4501afc1b2b27", + "_parent": "5b6d9ce188a4501afc1b2b25", "_props": { "filters": [ { "Filter": [ - "5448eb774bdc2d0a728b4567", - "543be5f84bdc2dd4348b456a", "5448fe124bdc2da5018b4567", - "60b0f6c058e0b0481a09ad11", - "619cbf9e0a7c3a1a2731940a", - "619cbf7d23893217ec30b689", - "59fafd4b86f7745ca07e1232", - "62a09d3bcf4a99369e262447", - "5d235bb686f77443f4331278", - "5c093e3486f77430cb02e593", - "590c60fc86f77412b13fddcf", - "5783c43d2459774bbe137486", - "543be6674bdc2df1348b4569", - "5448ecbe4bdc2d60728b4568", - "543be5e94bdc2df1348b4568", - "5447e1d04bdc2dff2f8b4567", - "567849dd4bdc2d150f8b456e", - "543be5664bdc2dd4348b4569", - "5447e0e74bdc2d3c308b4567", - "5661632d4bdc2d903d8b456b", + "5422acb9af1c889c16000029", + "5485a8684bdc2da71d8b4567", "543be5cb4bdc2deb348b4568" ], - "ExcludedFilter": [ - "5645bc214bdc2d363b8b4571", - "5aa7cfc0e5b5b00015693143", - "5aa7e276e5b5b000171d0647", - "5c066ef40db834001966a595", - "5df8a58286f77412631087ed", - "59e7711e86f7746cae05fbe1", - "5d5e7d28a4b936645d161203", - "5d5e9c74a4b9364855191c40", - "5a154d5cfcdbcb001a3b00da", - "5ac8d6885acfc400180ae7b0", - "5a7c4850e899ef00150be885", - "5aa7d193e5b5b000171d063f", - "5aa7d03ae5b5b00016327db5", - "5a16bb52fcdbcb001a3b00dc", - "5aa7e454e5b5b0214e506fa2", - "5aa7e4a4e5b5b000137b76f2", - "5b40e3f35acfc40016388218", - "5b40e4035acfc47a87740943", - "5b432d215acfc4771e1c6624", - "5b40e1525acfc4771e1c6611", - "5b40e2bc5acfc40016388216", - "5c17a7ed2e2216152142459c", - "5ea17ca01412a1425304d1c0", - "5f60b34a41e30a4ab12a6947", - "5ea05cf85ad9772e6624305d", - "5d6d3716a4b9361bc8618872", - "5c091a4e0db834001d5addc8", - "5c0e874186f7745dc7616606", - "61bca7cda0eae612383adf57", - "5c0d2727d174af02a012cf58", - "5f60c74e3b85f6263c145586", - "5c08f87c0db8340019124324", - "5c06c6a80db834001b735491", - "5e4bfc1586f774264f7582d3", - "5e00c1ad86f774747333222c", - "5e01ef6886f77445f643baa4", - "5ca20ee186f774799474abc2", - "59ef13ca86f77445fd0e2483", - "55818aeb4bdc2ddc698b456a", - "5448bc234bdc2d3c308b4569", - "5b3b6dc75acfc47a8773fb1e", - "5a1ead28fcdbcb001912fa9f", - "587e08ee245977446b4410cf", - "5c0695860db834001b735461", - "5a16b93dfcdbcbcae6687261", - "5a16b8a9fcdbcb00165aa6ca", - "5c11046cd174af02a012e42b", - "5448bf274bdc2dfc2f8b456a", - "543be6564bdc2df4348b4568", - "6389c85357baa773a825b356", - "6389c7750ef44505c87f5996", - "6389c7f115805221fb410466", - "5656eb674bdc2d35148b457c", - "5ede474b0c226a66f5402622", - "5ede475b549eed7c6d5c18fb", - "5ede4739e0350d05467f73e8", - "5f0c892565703e5c461894e9", - "5ede47405b097655935d7d16", - "5ede475339ee016e8c534742", - "55818b014bdc2ddc698b456b", - "5ca2113f86f7740b2547e1d2", - "5ea058e01dbce517f324b3e2", - "5e01f37686f774773c6f6c15", - "5e00cdd986f7747473332240", - "5c0e842486f77443a74d2976", - "5f60c85b58eff926626a60f7", - "5c0919b50db834001b7ce3b9", - "5d6d3829a4b9361bc8618943", - "5d6d3be5a4b9361bc73bc763", - "5b46238386f7741a693bcf9c", - "5ac4c50d5acfc40019262e87", - "5c0e66e2d174af02a96252f4", - "5f60c076f2bcbb675b00dac2", - "5f60bf4558eff926626a60f2", - "5f60b85bbdb8e27dee3dc985", - "5ea18c84ecf1982c7712d9a2", - "5c1793902e221602b21d3de2", - "5c178a942e22164bef5ceca3", - "5aa7e3abe5b5b000171d064d", - "5e01f31d86f77465cf261343", - "5e00cfa786f77469dc6e5685", - "5a16b7e1fcdbcb00165aa6c9", - "5a16b672fcdbcb001912fa83", - "5a16badafcdbcb001865f72d", - "5a16ba61fcdbcb098008728a", - "5aa7e373e5b5b000137b76f0", - "5b4329f05acfc47a86086aa1", - "5448e54d4bdc2dcc718b4568", - "5b432b2f5acfc4771e1c6622", - "62a09e08de7ac81993580532", - "62a61c988ec41a51b34758d5", - "603409c80ca681766b6a0fb2", - "64d4b23dc1b37504b41ac2b6" - ] + "ExcludedFilter": [] } ], - "cellsH": 4, - "cellsV": 2, + "cellsH": 6, + "cellsV": 15, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -373861,23 +374454,225 @@ ], "Slots": [], "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [ - "SecuredContainer" - ], - "SearchSound": "techno_box_looting_01", - "BlocksArmorVest": false, - "containType": [], - "sizeWidth": 4, - "sizeHeight": 2, - "isSecured": true, - "spawnTypes": "None", - "lootFilter": [], - "spawnRarity": "Common", - "minCountSpawn": 0, - "maxCountSpawn": 0, - "openedByKeyID": [] + "CantRemoveFromSlotsDuringRaid": [], + "TagColor": 0, + "TagName": "" }, - "_proto": "544a11ac4bdc2d470e8b456a" + "_proto": "577e1c9d2459773cd707c525" + }, + "64381b6e44b37a080d0245b9": { + "_id": "64381b6e44b37a080d0245b9", + "_name": "WeaponStand_Stash_3", + "_parent": "63da6da4784a55176c018dba", + "_type": "Item", + "_props": { + "Name": "WeaponStand_Stash_lvl3", + "ShortName": "Item", + "Description": "Item", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/hideout_area_containers/weaponstand_stash_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "64381bf680a61f284606abb6", + "_parent": "64381b6e44b37a080d0245b9", + "_props": { + "filters": [ + { + "Filter": [ + "639af924d0446708ee62294e", + "639c3fbbd0446708ee622ee9", + "620109578d82e67e7911abf2", + "5cdeb229d7f00c000e7ce174", + "5beed0f50db834001c062b12", + "5d52cc5ba4b9367408500062", + "6176aca650224f204c1da3fb", + "5c46fbd72e2216398b5a8c9c", + "5df8ce05b11454561e39243b", + "5f2a9575926fd9352339381f", + "5a367e5dc4a282000e49738f", + "5aafa857e5b5b00018480968", + "5fc22d7c187fea44d52eda44", + "57838ad32459774a17445cd2", + "5cadc190ae921500103bb3b6", + "5e81c3cbac2bb513793cdc75", + "5f36a0e5fbf956000b716b65", + "5d3eb3b0a4b93615055e84d2", + "5d67abc1a4b93614ec50137f", + "5a7ae0c351dfba0017554310", + "5b1fa9b25acfc40018633c01", + "63088377b5cd696784087147", + "6193a720f8ee7e52e42109ed", + "602a9740da11d6478d5a06dc", + "576a581d2459771e7b1bc4f1", + "5448bd6b4bdc2dfc2f8b4569", + "579204f224597773d619e051", + "5a17f98cfcdbcb0980087290", + "56d59856d2720bd8418b456a", + "56e0598dd2720bb5668b45a6", + "59f98b4986f7746f546d2cef", + "5abccb7dd8ce87001773e277", + "571a12c42459771f627b58a0", + "5b3b713c5acfc4330140bd8d", + "624c2e8614da335f1e034d8c", + "61a4c8884f95bc3b2c5dc96f", + "60db29ce99594040e04c4a27", + "633ec7c2a6918cb895019c6c", + "6275303a9f372d6ea97f9ec7", + "627e14b21713922ded6f2c15", + "5bfd297f0db834001a669119", + "5ae08f0a5acfc408fb1398a1", + "55801eed4bdc2d89578b4588", + "588892092459774ac91d4b11", + "5de652c31b7e3716273428be", + "5df24cf80dee1b22f862e9bc", + "5bfea6e90db834001b7347f3", + "5e00903ae9dc277128008b87", + "5de7bd7bfd6b4e6e2276dc25", + "5cc82d76e24e8d00134b4b83", + "5d2f0d8048f0356c925bc3b0", + "5926bb2186f7744b1c6c6e60", + "5ba26383d4351e00334c93d9", + "5bd70322209c4d00d7167b8f", + "5fc3e272f8b6a877a729eac5", + "59984ab886f7743e98271174", + "59f9cabd86f7743a10721f46", + "58948c8e86f77409493f7266", + "60339954d62c9b14ed777c06", + "5fb64bc92b1b027b1f50bcf2", + "5fc3f2d5900b1d5091531e57", + "62e14904c2699c0ec93adc47", + "5ea03f7400685063ec28bfa8", + "57f3c6bd24597738e730fa2f", + "57d14d2524597714373db789", + "57f4c844245977379d5c14d1", + "5e81ebcd8e146c7080625e15", + "6259b864ebedf17603599e88", + "61f7c9e189e6fb1a5e3ea78d", + "576165642459773c7a400233", + "54491c4f4bdc2db1078b4568", + "56dee2bdd2720bc8328b4567", + "64748cb8de82c85eaf0a273a", + "5580223e4bdc2d1c128b457f", + "606dae0ab0e443224b421bb7", + "5e870397991fd70db46995c8", + "5a7828548dc32e5a9c28b516", + "5e848cc2988a8701445df1e8", + "5a38e6bac4a2826c6e06d79b", + "5c07c60e0db834002330051f", + "5cadfbf7ae92152ac412eeef", + "606587252535c57a13424cfd", + "5447a9cd4bdc2dbd208b4567", + "5b0bbe4e5acfc40dc528a72d", + "5c488a752e221602b412af63", + "5dcbd56fdbd3d91b3e5468d5", + "6184055050224f204c1da540", + "618428466ef05c2ce828f218", + "6183afd850224f204c1da514", + "6165ac306ef05c2ce828ef74", + "5bb2475ed4351e00853264e3", + "623063e994fc3f7b302a9696", + "5ac66cb05acfc40198510a10", + "5ac66d015acfc400180ae6e4", + "5ac66d2e5acfc43b321d4b53", + "5ac66d725acfc43b321d4b60", + "5ac66d9b5acfc4001633997a", + "6499849fc93611967b034949", + "5bf3e03b0db834001d2c4a9c", + "5ac4cd105acfc40016339859", + "5644bd2b4bdc2d3b4c8b4572", + "59d6088586f774275f37482f", + "5a0ec13bfcdbcb00165aa685", + "59ff346386f77477562ff5e2", + "5abcbc27d8ce8700182eceeb", + "5bf3e0490db83400196199af", + "5ab8e9fcd8ce870019439434", + "57dc2fa62459775949412633", + "5839a40f24597726f856b511", + "583990e32459771419544dd2", + "5d43021ca4b9362eab4b5e25", + "59e6687d86f77411d949b251", + "59e6152586f77473dc057aa1", + "628a60ae6b1d481ff772e9c8", + "628b5638ad252a16da6dd245", + "628b9c37a733087d0d7fe84b", + "5fbcc1d9016cce60e8341ab3", + "62e7c4fba689e8c9c50dfc38", + "63171672192e68c5460cebc5", + "64637076203536ad5600c990", + "64ca3d3954fc657e230529cc", + "5447b5fc4bdc2d87278b4567", + "65290f395ae2ae97b80fdf2d", + "65268d8ecb944ff1e90ea385", + "6513ef33e06849f06c0957ca" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 13, + "cellsV": 7, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "LayoutName": "WeaponStand_Stash" + } }, "64f6f4c5911bcdfe8b03b0dc": { "_id": "64f6f4c5911bcdfe8b03b0dc", @@ -374422,222 +375217,6 @@ }, "_proto": "5811ce572459770cba1a34ea" }, - "544a11ac4bdc2d470e8b456a": { - "_id": "544a11ac4bdc2d470e8b456a", - "_name": "Контейнер Альфа", - "_parent": "5448bf274bdc2dfc2f8b456a", - "_type": "Item", - "_props": { - "Name": "Защищенный контейнер Альфа", - "ShortName": "A-secured", - "Description": "", - "Weight": 0.6, - "BackgroundColor": "violet", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_case", - "Prefab": { - "path": "assets/content/items/meds/first_aid_box/item_meds_first_aid_box.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": true, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "55d718044bdc2d87028b456d", - "_parent": "544a11ac4bdc2d470e8b456a", - "_props": { - "filters": [ - { - "Filter": [ - "5448eb774bdc2d0a728b4567", - "543be5f84bdc2dd4348b456a", - "5448fe124bdc2da5018b4567", - "60b0f6c058e0b0481a09ad11", - "619cbf9e0a7c3a1a2731940a", - "619cbf7d23893217ec30b689", - "59fafd4b86f7745ca07e1232", - "62a09d3bcf4a99369e262447", - "5d235bb686f77443f4331278", - "5c093e3486f77430cb02e593", - "590c60fc86f77412b13fddcf", - "5783c43d2459774bbe137486", - "543be6674bdc2df1348b4569", - "5448ecbe4bdc2d60728b4568", - "543be5e94bdc2df1348b4568", - "5447e1d04bdc2dff2f8b4567", - "567849dd4bdc2d150f8b456e", - "543be5664bdc2dd4348b4569", - "5447e0e74bdc2d3c308b4567", - "5661632d4bdc2d903d8b456b" - ], - "ExcludedFilter": [ - "5645bc214bdc2d363b8b4571", - "5aa7cfc0e5b5b00015693143", - "5aa7e276e5b5b000171d0647", - "5c066ef40db834001966a595", - "5df8a58286f77412631087ed", - "59e7711e86f7746cae05fbe1", - "5d5e7d28a4b936645d161203", - "5d5e9c74a4b9364855191c40", - "5a154d5cfcdbcb001a3b00da", - "5ac8d6885acfc400180ae7b0", - "5a7c4850e899ef00150be885", - "5aa7d193e5b5b000171d063f", - "5aa7d03ae5b5b00016327db5", - "5a16bb52fcdbcb001a3b00dc", - "5aa7e454e5b5b0214e506fa2", - "5aa7e4a4e5b5b000137b76f2", - "5b40e3f35acfc40016388218", - "5b40e4035acfc47a87740943", - "5b432d215acfc4771e1c6624", - "5b40e1525acfc4771e1c6611", - "5b40e2bc5acfc40016388216", - "5c17a7ed2e2216152142459c", - "5ea17ca01412a1425304d1c0", - "5f60b34a41e30a4ab12a6947", - "5ea05cf85ad9772e6624305d", - "5d6d3716a4b9361bc8618872", - "5c091a4e0db834001d5addc8", - "5c0e874186f7745dc7616606", - "61bca7cda0eae612383adf57", - "5c0d2727d174af02a012cf58", - "5f60c74e3b85f6263c145586", - "5c08f87c0db8340019124324", - "5c06c6a80db834001b735491", - "5e4bfc1586f774264f7582d3", - "5e00c1ad86f774747333222c", - "5e01ef6886f77445f643baa4", - "5ca20ee186f774799474abc2", - "59ef13ca86f77445fd0e2483", - "55818aeb4bdc2ddc698b456a", - "5448bc234bdc2d3c308b4569", - "5b3b6dc75acfc47a8773fb1e", - "5a1ead28fcdbcb001912fa9f", - "587e08ee245977446b4410cf", - "5c0695860db834001b735461", - "5a16b93dfcdbcbcae6687261", - "5a16b8a9fcdbcb00165aa6ca", - "5c11046cd174af02a012e42b", - "5448bf274bdc2dfc2f8b456a", - "543be6564bdc2df4348b4568", - "6389c7750ef44505c87f5996", - "6389c85357baa773a825b356", - "6389c7f115805221fb410466", - "5ede474b0c226a66f5402622", - "5ede475b549eed7c6d5c18fb", - "5ede4739e0350d05467f73e8", - "5f0c892565703e5c461894e9", - "5ede47405b097655935d7d16", - "5ede475339ee016e8c534742", - "5656eb674bdc2d35148b457c", - "55818b014bdc2ddc698b456b", - "5448e54d4bdc2dcc718b4568", - "5ca2113f86f7740b2547e1d2", - "5ea058e01dbce517f324b3e2", - "5e01f37686f774773c6f6c15", - "5e00cdd986f7747473332240", - "5f60c85b58eff926626a60f7", - "5d6d3829a4b9361bc8618943", - "5c0919b50db834001b7ce3b9", - "5c0e842486f77443a74d2976", - "5d6d3be5a4b9361bc73bc763", - "5b46238386f7741a693bcf9c", - "5ac4c50d5acfc40019262e87", - "5c0e66e2d174af02a96252f4", - "5f60c076f2bcbb675b00dac2", - "5f60bf4558eff926626a60f2", - "5f60b85bbdb8e27dee3dc985", - "5ea18c84ecf1982c7712d9a2", - "5c1793902e221602b21d3de2", - "5c178a942e22164bef5ceca3", - "5aa7e3abe5b5b000171d064d", - "5e01f31d86f77465cf261343", - "5e00cfa786f77469dc6e5685", - "5a16b7e1fcdbcb00165aa6c9", - "5a16b672fcdbcb001912fa83", - "5a16badafcdbcb001865f72d", - "5a16ba61fcdbcb098008728a", - "5aa7e373e5b5b000137b76f0", - "5b4329f05acfc47a86086aa1", - "5b432b2f5acfc4771e1c6622", - "62a09e08de7ac81993580532", - "62a61c988ec41a51b34758d5", - "603409c80ca681766b6a0fb2", - "64d4b23dc1b37504b41ac2b6" - ] - } - ], - "cellsH": 2, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [ - "SecuredContainer" - ], - "SearchSound": "cashregister_looting", - "BlocksArmorVest": false, - "containType": [], - "sizeWidth": 2, - "sizeHeight": 2, - "isSecured": true, - "spawnTypes": "None", - "lootFilter": [], - "spawnRarity": "Common", - "minCountSpawn": 0, - "maxCountSpawn": 0, - "openedByKeyID": [] - } - }, "567583764bdc2d98058b456e": { "_id": "567583764bdc2d98058b456e", "_name": "StationaryContainer", @@ -374645,27 +375224,27 @@ "_type": "Node", "_props": {} }, - "5b6d9ce188a4501afc1b2b25": { - "_id": "5b6d9ce188a4501afc1b2b25", - "_name": "item_container_weaponcase_THICC", - "_parent": "5795f317245977243854e041", + "5c0fa877d174af02a012e1cf": { + "_id": "5c0fa877d174af02a012e1cf", + "_name": "drink_aquamari", + "_parent": "5448e8d64bdc2dce718b4568", "_type": "Item", "_props": { - "Name": "Weaponcase thicc", - "ShortName": "Weaponcase thicc", - "Description": "Weaponcase thicc", - "Weight": 18, - "BackgroundColor": "yellow", - "Width": 5, + "Name": "Water", + "ShortName": "Water", + "Description": "грязноватая бутылка воды 0.6", + "Weight": 0.6, + "BackgroundColor": "default", + "Width": 1, "Height": 2, "StackMaxSize": 1, - "ItemSound": "container_plastic", + "ItemSound": "food_bottle", "Prefab": { - "path": "assets/content/items/containers/item_container_weapon_thicc/item_container_weapon_thicc.bundle", + "path": "assets/content/weapons/usable_items/item_filterbottle/item_filterbottle_loot.bundle", "rcid": "" }, "UsePrefab": { - "path": "", + "path": "assets/content/weapons/usable_items/item_filterbottle/item_filterbottle_container.bundle", "rcid": "" }, "StackObjectsCount": 1, @@ -374678,102 +375257,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5b6d9ce188a4501afc1b2b27", - "_parent": "5b6d9ce188a4501afc1b2b25", - "_props": { - "filters": [ - { - "Filter": [ - "5448fe124bdc2da5018b4567", - "5422acb9af1c889c16000029", - "5485a8684bdc2da71d8b4567", - "543be5cb4bdc2deb348b4568" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 6, - "cellsV": 15, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "TagColor": 0, - "TagName": "" - }, - "_proto": "577e1c9d2459773cd707c525" - }, - "64381b6e44b37a080d0245b9": { - "_id": "64381b6e44b37a080d0245b9", - "_name": "WeaponStand_Stash_3", - "_parent": "63da6da4784a55176c018dba", - "_type": "Item", - "_props": { - "Name": "WeaponStand_Stash_lvl3", - "ShortName": "Item", - "Description": "Item", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/hideout_area_containers/weaponstand_stash_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, + "LootExperience": 10, "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, @@ -374800,127 +375284,175 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, + "foodUseTime": 3, + "foodEffectType": "afterUse", + "MaxResource": 50, + "StimulatorBuffs": "", + "effects_health": { + "Energy": { + "value": 20 + }, + "Hydration": { + "value": 100 + } + }, + "effects_damage": [] + }, + "_proto": "5448fee04bdc2dbc018b4567" + }, + "5751496424597720a27126da": { + "_id": "5751496424597720a27126da", + "_name": "hotrod", + "_parent": "5448e8d64bdc2dce718b4568", + "_type": "Item", + "_props": { + "Name": "Hot rod", + "ShortName": "Hot rod", + "Description": "Hot rod", + "Weight": 0.54, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "food_soda_can", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_hotrod/item_hotrod_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_hotrod/item_hotrod_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 2, + "foodEffectType": "afterUse", + "MaxResource": 1, + "StimulatorBuffs": "Buffs_drink_hotrod", + "effects_health": { + "Energy": { + "value": 10 + }, + "Hydration": { + "value": 20 + } + }, + "effects_damage": [] + }, + "_proto": "575146b724597720a27126d5" + }, + "619cbf7d23893217ec30b689": { + "_id": "619cbf7d23893217ec30b689", + "_name": "item_container_injectorcase", + "_parent": "5795f317245977243854e041", + "_type": "Item", + "_props": { + "Name": "Key-tool", + "ShortName": "Key-tool", + "Description": "Key-tool", + "Weight": 0.35, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_medkit", + "Prefab": { + "path": "assets/content/items/barter/item_container_injectorcase/item_container_injectorcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, "Grids": [ { - "_name": "1", - "_id": "64381bf680a61f284606abb6", - "_parent": "64381b6e44b37a080d0245b9", + "_name": "main", + "_id": "619cbf7d23893217ec30b68b", + "_parent": "619cbf7d23893217ec30b689", "_props": { "filters": [ { "Filter": [ - "639af924d0446708ee62294e", - "639c3fbbd0446708ee622ee9", - "620109578d82e67e7911abf2", - "5cdeb229d7f00c000e7ce174", - "5beed0f50db834001c062b12", - "5d52cc5ba4b9367408500062", - "6176aca650224f204c1da3fb", - "5c46fbd72e2216398b5a8c9c", - "5df8ce05b11454561e39243b", - "5f2a9575926fd9352339381f", - "5a367e5dc4a282000e49738f", - "5aafa857e5b5b00018480968", - "5fc22d7c187fea44d52eda44", - "57838ad32459774a17445cd2", - "624c2e8614da335f1e034d8c", - "61a4c8884f95bc3b2c5dc96f", - "60db29ce99594040e04c4a27", - "633ec7c2a6918cb895019c6c", - "6275303a9f372d6ea97f9ec7", - "627e14b21713922ded6f2c15", - "5bfd297f0db834001a669119", - "5ae08f0a5acfc408fb1398a1", - "55801eed4bdc2d89578b4588", - "588892092459774ac91d4b11", - "5de652c31b7e3716273428be", - "5df24cf80dee1b22f862e9bc", - "5bfea6e90db834001b7347f3", - "5e00903ae9dc277128008b87", - "5de7bd7bfd6b4e6e2276dc25", - "5cc82d76e24e8d00134b4b83", - "5d2f0d8048f0356c925bc3b0", - "5926bb2186f7744b1c6c6e60", - "5ba26383d4351e00334c93d9", - "5bd70322209c4d00d7167b8f", - "5fc3e272f8b6a877a729eac5", - "59984ab886f7743e98271174", - "59f9cabd86f7743a10721f46", - "58948c8e86f77409493f7266", - "60339954d62c9b14ed777c06", - "5fb64bc92b1b027b1f50bcf2", - "5fc3f2d5900b1d5091531e57", - "62e14904c2699c0ec93adc47", - "5ea03f7400685063ec28bfa8", - "57f3c6bd24597738e730fa2f", - "57d14d2524597714373db789", - "57f4c844245977379d5c14d1", - "5e81ebcd8e146c7080625e15", - "6259b864ebedf17603599e88", - "61f7c9e189e6fb1a5e3ea78d", - "576165642459773c7a400233", - "54491c4f4bdc2db1078b4568", - "56dee2bdd2720bc8328b4567", - "64748cb8de82c85eaf0a273a", - "5580223e4bdc2d1c128b457f", - "606dae0ab0e443224b421bb7", - "5e870397991fd70db46995c8", - "5a7828548dc32e5a9c28b516", - "5e848cc2988a8701445df1e8", - "5a38e6bac4a2826c6e06d79b", - "5c07c60e0db834002330051f", - "5cadfbf7ae92152ac412eeef", - "606587252535c57a13424cfd", - "5447a9cd4bdc2dbd208b4567", - "5b0bbe4e5acfc40dc528a72d", - "5c488a752e221602b412af63", - "5dcbd56fdbd3d91b3e5468d5", - "6184055050224f204c1da540", - "618428466ef05c2ce828f218", - "6183afd850224f204c1da514", - "6165ac306ef05c2ce828ef74", - "5bb2475ed4351e00853264e3", - "623063e994fc3f7b302a9696", - "5ac66cb05acfc40198510a10", - "5ac66d015acfc400180ae6e4", - "5ac66d2e5acfc43b321d4b53", - "5ac66d725acfc43b321d4b60", - "5ac66d9b5acfc4001633997a", - "6499849fc93611967b034949", - "5bf3e03b0db834001d2c4a9c", - "5ac4cd105acfc40016339859", - "5644bd2b4bdc2d3b4c8b4572", - "59d6088586f774275f37482f", - "5a0ec13bfcdbcb00165aa685", - "59ff346386f77477562ff5e2", - "5abcbc27d8ce8700182eceeb", - "5bf3e0490db83400196199af", - "5ab8e9fcd8ce870019439434", - "57dc2fa62459775949412633", - "5839a40f24597726f856b511", - "583990e32459771419544dd2", - "5d43021ca4b9362eab4b5e25", - "59e6687d86f77411d949b251", - "59e6152586f77473dc057aa1", - "628a60ae6b1d481ff772e9c8", - "628b5638ad252a16da6dd245", - "628b9c37a733087d0d7fe84b", - "5fbcc1d9016cce60e8341ab3", - "62e7c4fba689e8c9c50dfc38", - "63171672192e68c5460cebc5", - "64637076203536ad5600c990", - "64ca3d3954fc657e230529cc", - "5447b5fc4bdc2d87278b4567", - "65290f395ae2ae97b80fdf2d", - "65268d8ecb944ff1e90ea385", - "6513ef33e06849f06c0957ca", - "5447b5cf4bdc2d65278b4567" + "544fb3f34bdc2d03748b456a", + "5448f3a64bdc2d60728b456a" ], "ExcludedFilter": [] } ], - "cellsH": 13, - "cellsV": 7, + "cellsH": 3, + "cellsV": 3, "minCount": 0, "maxCount": 0, "maxWeight": 0, @@ -374932,8 +375464,10 @@ "Slots": [], "CanPutIntoDuringTheRaid": true, "CantRemoveFromSlotsDuringRaid": [], - "LayoutName": "WeaponStand_Stash" - } + "TagColor": 0, + "TagName": "" + }, + "_proto": "577e1c9d2459773cd707c525" }, "5d235bb686f77443f4331278": { "_id": "5d235bb686f77443f4331278", @@ -375129,99 +375663,6 @@ }, "_proto": "577e1c9d2459773cd707c525" }, - "619cbf7d23893217ec30b689": { - "_id": "619cbf7d23893217ec30b689", - "_name": "item_container_injectorcase", - "_parent": "5795f317245977243854e041", - "_type": "Item", - "_props": { - "Name": "Key-tool", - "ShortName": "Key-tool", - "Description": "Key-tool", - "Weight": 0.35, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_medkit", - "Prefab": { - "path": "assets/content/items/barter/item_container_injectorcase/item_container_injectorcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 2, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "619cbf7d23893217ec30b68b", - "_parent": "619cbf7d23893217ec30b689", - "_props": { - "filters": [ - { - "Filter": [ - "544fb3f34bdc2d03748b456a", - "5448f3a64bdc2d60728b456a" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 3, - "cellsV": 3, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "TagColor": 0, - "TagName": "" - }, - "_proto": "577e1c9d2459773cd707c525" - }, "602543c13fee350cd564d032": { "_id": "602543c13fee350cd564d032", "_name": "Sorting table", @@ -375920,6 +376361,2665 @@ }, "_proto": "55d7217a4bdc2d86028b456d" }, + "5448fee04bdc2dbc018b4567": { + "_id": "5448fee04bdc2dbc018b4567", + "_name": "Бутылка воды 0.6", + "_parent": "5448e8d64bdc2dce718b4568", + "_type": "Item", + "_props": { + "Name": "Water", + "ShortName": "Water", + "Description": "грязноватая бутылка воды 0.6", + "Weight": 0.65, + "BackgroundColor": "default", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "food_bottle", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_bottle/item_water_bottle_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_bottle/item_water_bottle_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 3, + "foodEffectType": "afterUse", + "MaxResource": 60, + "StimulatorBuffs": "", + "effects_health": { + "Hydration": { + "value": 60 + } + }, + "effects_damage": [] + } + }, + "590c60fc86f77412b13fddcf": { + "_id": "590c60fc86f77412b13fddcf", + "_name": "item_info_docbag", + "_parent": "5795f317245977243854e041", + "_type": "Item", + "_props": { + "Name": "Docbag", + "ShortName": "Docbag", + "Description": "Docbag", + "Weight": 0.82, + "BackgroundColor": "blue", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/infosubject/item_info_docbag/item_info_docbag.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "590c60fc86f77412b13fddd0", + "_parent": "590c60fc86f77412b13fddcf", + "_props": { + "filters": [ + { + "Filter": [ + "59faff1d86f7746c51718c9c", + "5d235b4d86f7742e017bc88a", + "5f745ee30acaeb0d490d8c5b", + "619cbf9e0a7c3a1a2731940a", + "5448ecbe4bdc2d60728b4568", + "543be5e94bdc2df1348b4568", + "567849dd4bdc2d150f8b456e", + "543be5dd4bdc2deb348b4569" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 4, + "cellsV": 4, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "TagColor": 0, + "TagName": "" + }, + "_proto": "577e1c9d2459773cd707c525" + }, + "6401c7b213d9b818bf0e7dd7": { + "_id": "6401c7b213d9b818bf0e7dd7", + "_name": "WeaponStand_Stash_1", + "_parent": "63da6da4784a55176c018dba", + "_type": "Item", + "_props": { + "Name": "WeaponStand_Stash_lvl1", + "ShortName": "Item", + "Description": "Item", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/hideout_area_containers/weaponstand_stash_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "1", + "_id": "6401c7ff49ffb41e4e0c4477", + "_parent": "6401c7b213d9b818bf0e7dd7", + "_props": { + "filters": [ + { + "Filter": [ + "620109578d82e67e7911abf2", + "5cdeb229d7f00c000e7ce174", + "5beed0f50db834001c062b12", + "5d52cc5ba4b9367408500062", + "6176aca650224f204c1da3fb", + "5c46fbd72e2216398b5a8c9c", + "5df8ce05b11454561e39243b", + "5f2a9575926fd9352339381f", + "5a367e5dc4a282000e49738f", + "5aafa857e5b5b00018480968", + "5fc22d7c187fea44d52eda44", + "57838ad32459774a17445cd2", + "5cadc190ae921500103bb3b6", + "5e81c3cbac2bb513793cdc75", + "5f36a0e5fbf956000b716b65", + "5d3eb3b0a4b93615055e84d2", + "5d67abc1a4b93614ec50137f", + "5a7ae0c351dfba0017554310", + "5b1fa9b25acfc40018633c01", + "63088377b5cd696784087147", + "6193a720f8ee7e52e42109ed", + "602a9740da11d6478d5a06dc", + "576a581d2459771e7b1bc4f1", + "5448bd6b4bdc2dfc2f8b4569", + "579204f224597773d619e051", + "5a17f98cfcdbcb0980087290", + "56d59856d2720bd8418b456a", + "56e0598dd2720bb5668b45a6", + "59f98b4986f7746f546d2cef", + "5abccb7dd8ce87001773e277", + "571a12c42459771f627b58a0", + "5b3b713c5acfc4330140bd8d", + "624c2e8614da335f1e034d8c", + "61a4c8884f95bc3b2c5dc96f", + "60db29ce99594040e04c4a27", + "633ec7c2a6918cb895019c6c", + "6275303a9f372d6ea97f9ec7", + "5e00903ae9dc277128008b87", + "5de7bd7bfd6b4e6e2276dc25", + "5cc82d76e24e8d00134b4b83", + "5d2f0d8048f0356c925bc3b0", + "5926bb2186f7744b1c6c6e60", + "5ba26383d4351e00334c93d9", + "5bd70322209c4d00d7167b8f", + "5fc3e272f8b6a877a729eac5", + "59984ab886f7743e98271174", + "59f9cabd86f7743a10721f46", + "58948c8e86f77409493f7266", + "60339954d62c9b14ed777c06", + "5fb64bc92b1b027b1f50bcf2", + "5fc3f2d5900b1d5091531e57", + "62e14904c2699c0ec93adc47", + "5ea03f7400685063ec28bfa8", + "57f3c6bd24597738e730fa2f", + "57d14d2524597714373db789", + "57f4c844245977379d5c14d1", + "627e14b21713922ded6f2c15", + "5bfd297f0db834001a669119", + "5ae08f0a5acfc408fb1398a1", + "55801eed4bdc2d89578b4588", + "588892092459774ac91d4b11", + "5de652c31b7e3716273428be", + "5df24cf80dee1b22f862e9bc", + "5bfea6e90db834001b7347f3", + "639af924d0446708ee62294e", + "639c3fbbd0446708ee622ee9", + "5e81ebcd8e146c7080625e15", + "5c07c60e0db834002330051f", + "5cadfbf7ae92152ac412eeef", + "606587252535c57a13424cfd", + "5447a9cd4bdc2dbd208b4567", + "5b0bbe4e5acfc40dc528a72d", + "5c488a752e221602b412af63", + "5dcbd56fdbd3d91b3e5468d5", + "6184055050224f204c1da540", + "618428466ef05c2ce828f218", + "6183afd850224f204c1da514", + "6165ac306ef05c2ce828ef74", + "5bb2475ed4351e00853264e3", + "623063e994fc3f7b302a9696", + "5ac66cb05acfc40198510a10", + "5ac66d015acfc400180ae6e4", + "5ac66d2e5acfc43b321d4b53", + "5ac66d725acfc43b321d4b60", + "5ac66d9b5acfc4001633997a", + "6499849fc93611967b034949", + "5bf3e03b0db834001d2c4a9c", + "5ac4cd105acfc40016339859", + "5644bd2b4bdc2d3b4c8b4572", + "59d6088586f774275f37482f", + "5a0ec13bfcdbcb00165aa685", + "59ff346386f77477562ff5e2", + "5abcbc27d8ce8700182eceeb", + "5bf3e0490db83400196199af", + "5ab8e9fcd8ce870019439434", + "57dc2fa62459775949412633", + "5839a40f24597726f856b511", + "583990e32459771419544dd2", + "5d43021ca4b9362eab4b5e25", + "59e6687d86f77411d949b251", + "59e6152586f77473dc057aa1", + "628a60ae6b1d481ff772e9c8", + "628b5638ad252a16da6dd245", + "628b9c37a733087d0d7fe84b", + "5fbcc1d9016cce60e8341ab3", + "62e7c4fba689e8c9c50dfc38", + "63171672192e68c5460cebc5", + "6259b864ebedf17603599e88", + "61f7c9e189e6fb1a5e3ea78d", + "576165642459773c7a400233", + "54491c4f4bdc2db1078b4568", + "56dee2bdd2720bc8328b4567", + "64748cb8de82c85eaf0a273a", + "5580223e4bdc2d1c128b457f", + "606dae0ab0e443224b421bb7", + "5e870397991fd70db46995c8", + "5a7828548dc32e5a9c28b516", + "5e848cc2988a8701445df1e8", + "5a38e6bac4a2826c6e06d79b", + "64637076203536ad5600c990", + "64ca3d3954fc657e230529cc", + "5447b5fc4bdc2d87278b4567", + "65290f395ae2ae97b80fdf2d", + "65268d8ecb944ff1e90ea385", + "6513ef33e06849f06c0957ca" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 9, + "cellsV": 6, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "LayoutName": "WeaponStand_Stash" + } + }, + "543be5f84bdc2dd4348b456a": { + "_id": "543be5f84bdc2dd4348b456a", + "_name": "Equipment", + "_parent": "566162e44bdc2d3f298b4573", + "_type": "Node", + "_props": { + "BlocksEarpiece": false, + "BlocksEyewear": false, + "BlocksHeadwear": false, + "BlocksFaceCover": false + } + }, + "575146b724597720a27126d5": { + "_id": "575146b724597720a27126d5", + "_name": "drink_milk", + "_parent": "5448e8d64bdc2dce718b4568", + "_type": "Item", + "_props": { + "Name": "Carton of milk", + "ShortName": "Carton of milk", + "Description": "Carton of milk", + "Weight": 1, + "BackgroundColor": "default", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "food_juice_carton", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_tetrapak/item_tetrapak_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_tetrapak/item_tetrapak_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 3, + "foodEffectType": "afterUse", + "MaxResource": 1, + "StimulatorBuffs": "Buffs_drink_milk", + "effects_health": { + "Energy": { + "value": 20 + }, + "Hydration": { + "value": 30 + } + }, + "effects_damage": [] + }, + "_proto": "57514643245977207f2c2d09" + }, + "5e8f3423fd7471236e6e3b64": { + "_id": "5e8f3423fd7471236e6e3b64", + "_name": "item_drink_kvas", + "_parent": "5448e8d64bdc2dce718b4568", + "_type": "Item", + "_props": { + "Name": "item_drink_kvas", + "ShortName": "item_drink_kvas", + "Description": "item_drink_kvas", + "Weight": 0.621, + "BackgroundColor": "default", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "food_bottle", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_drink_kvas/item_drink_kvas_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_drink_kvas/item_drink_kvas_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 3, + "foodEffectType": "afterUse", + "MaxResource": 60, + "StimulatorBuffs": "", + "effects_health": { + "Energy": { + "value": 15 + }, + "Hydration": { + "value": 65 + } + }, + "effects_damage": [] + }, + "_proto": "5448fee04bdc2dbc018b4567" + }, + "566965d44bdc2d814c8b4571": { + "_id": "566965d44bdc2d814c8b4571", + "_name": "LootContainer", + "_parent": "566168634bdc2d144c8b456c", + "_type": "Node", + "_props": { + "SpawnFilter": [] + } + }, + "5448e53e4bdc2d60728b4567": { + "_id": "5448e53e4bdc2d60728b4567", + "_name": "Backpack", + "_parent": "566168634bdc2d144c8b456c", + "_type": "Node", + "_props": { + "speedPenaltyPercent": 0, + "mousePenalty": 0, + "GridLayoutName": "", + "weaponErgonomicPenalty": 0, + "LeanWeaponAgainstBody": false + } + }, + "5aafbde786f774389d0cbc0f": { + "_id": "5aafbde786f774389d0cbc0f", + "_name": "item_container_ammo", + "_parent": "5795f317245977243854e041", + "_type": "Item", + "_props": { + "Name": "ammocase", + "ShortName": "ammocase", + "Description": "ammocase", + "Weight": 3, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_metal", + "Prefab": { + "path": "assets/content/items/containers/item_container_ammo/item_container_ammo.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5aafbde786f774389d0cbc11", + "_parent": "5aafbde786f774389d0cbc0f", + "_props": { + "filters": [ + { + "Filter": [ + "5485a8684bdc2da71d8b4567", + "543be5cb4bdc2deb348b4568" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 7, + "cellsV": 7, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "TagColor": 0, + "TagName": "" + }, + "_proto": "577e1c9d2459773cd707c525" + }, + "62a09d3bcf4a99369e262447": { + "_id": "62a09d3bcf4a99369e262447", + "_name": "item_container_keychain", + "_parent": "5795f317245977243854e041", + "_type": "Item", + "_props": { + "Name": "Key-tool", + "ShortName": "Key-tool", + "Description": "Key-tool", + "Weight": 0.015, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/barter/item_container_keychain/item_container_keychain.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 50, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "62a09d3bcf4a99369e262449", + "_parent": "62a09d3bcf4a99369e262447", + "_props": { + "filters": [ + { + "Filter": [ + "5c99f98d86f7745c314214b3" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 2, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "TagColor": 0, + "TagName": "" + }, + "_proto": "577e1c9d2459773cd707c525" + }, + "59fb042886f7746c5005a7b2": { + "_id": "59fb042886f7746c5005a7b2", + "_name": "item_container_trackcase", + "_parent": "5795f317245977243854e041", + "_type": "Item", + "_props": { + "Name": "Itemcase", + "ShortName": "Itemcase", + "Description": "Itemcase", + "Weight": 7, + "BackgroundColor": "blue", + "Width": 4, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_trackcase/item_container_trackcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "59fb042886f7746c5005a7b3", + "_parent": "59fb042886f7746c5005a7b2", + "_props": { + "filters": [ + { + "Filter": [ + "5448eb774bdc2d0a728b4567", + "543be5f84bdc2dd4348b456a", + "5448fe124bdc2da5018b4567", + "5448e53e4bdc2d60728b4567", + "5448e5284bdc2dcb718b4567", + "60b0f6c058e0b0481a09ad11", + "5aafbde786f774389d0cbc0f", + "619cbf9e0a7c3a1a2731940a", + "5c093db286f7740a1b2617e3", + "5e2af55f86f7746d4159f07c", + "619cbf7d23893217ec30b689", + "59fafd4b86f7745ca07e1232", + "62a09d3bcf4a99369e262447", + "5d235bb686f77443f4331278", + "5c127c4486f7745625356c13", + "5aafbcd986f7745e590fff23", + "59fb016586f7746d0d4b423a", + "5c093e3486f77430cb02e593", + "590c60fc86f77412b13fddcf", + "5783c43d2459774bbe137486", + "5422acb9af1c889c16000029", + "543be6674bdc2df1348b4569", + "5448ecbe4bdc2d60728b4568", + "543be5e94bdc2df1348b4568", + "5447e1d04bdc2dff2f8b4567", + "567849dd4bdc2d150f8b456e", + "543be5664bdc2dd4348b4569", + "5f4fbaaca5573a5ac31db429", + "61605ddea09d851a0a0c1bbc", + "616eb7aea207f41933308f46", + "5991b51486f77447b112d44f", + "5ac78a9b86f7741cca0bbd8d", + "5b4391a586f7745321235ab2", + "5af056f186f7746da511291f", + "544fb5454bdc2df8738b456a", + "5661632d4bdc2d903d8b456b", + "543be6564bdc2df4348b4568" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 8, + "cellsV": 8, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "TagColor": 0, + "TagName": "" + }, + "_proto": "577e1c9d2459773cd707c525" + }, + "5811ce772459770e9e5f9532": { + "_id": "5811ce772459770e9e5f9532", + "_name": "Edge of darkness stash 10x68", + "_parent": "566abbb64bdc2d144c8b457d", + "_type": "Item", + "_props": { + "Name": "Edge of darkness stash 10x68", + "ShortName": "Edge of darkness stash 10x68", + "Description": "Edge of darkness stash 10x68\n", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "hideout", + "_id": "5811cf932459770e83232ec3", + "_parent": "5811ce772459770e9e5f9532", + "_props": { + "filters": [], + "cellsH": 10, + "cellsV": 68, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [] + }, + "_proto": "5811ce662459770f6f490f32" + }, + "55d720f24bdc2d88028b456d": { + "_id": "55d720f24bdc2d88028b456d", + "_name": "Inventory", + "_parent": "566162e44bdc2d3f298b4573", + "_type": "Node", + "_props": {} + }, + "614451b71e5874611e2c7ae5": { + "_id": "614451b71e5874611e2c7ae5", + "_name": "item_food_vodka_BAD", + "_parent": "5448e8d64bdc2dce718b4568", + "_type": "Item", + "_props": { + "Name": "item_food_vodka", + "ShortName": "item_food_vodka", + "Description": "item_food_vodka", + "Weight": 1.6, + "BackgroundColor": "default", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "food_bottle", + "Prefab": { + "path": "assets/content/items/food/bottles_with_alcohol/item_food_vodka.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_alcohol_vodka/item_alcohol_vodka_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 5, + "foodEffectType": "afterUse", + "MaxResource": 1, + "StimulatorBuffs": "Buffs_drink_vodka", + "effects_health": { + "Hydration": { + "value": -50 + } + }, + "effects_damage": { + "Pain": { + "delay": 0, + "duration": 250 + }, + "RadExposure": { + "delay": 0, + "duration": 0 + } + } + }, + "_proto": "5673de654bdc2d180f8b456d" + }, + "557ffd194bdc2d28148b457f": { + "_id": "557ffd194bdc2d28148b457f", + "_name": "Карманы 1 на 4", + "_parent": "557596e64bdc2dc2118b4571", + "_type": "Item", + "_props": { + "Name": "Pockets", + "ShortName": "Pockets", + "Description": "Pockets", + "Weight": 0, + "BackgroundColor": "default", + "Width": 20, + "Height": 20, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": true, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": true, + "IsUnsaleable": true, + "IsUnbuyable": true, + "IsUngivable": true, + "IsLockedafterEquip": true, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "Pockets", + "UnlootableFromSide": [ + "Bear", + "Usec", + "Savage" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "pocket1", + "_id": "55d717004bdc2d89028b456c", + "_parent": "557ffd194bdc2d28148b457f", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "pocket2", + "_id": "55d717094bdc2d87028b456a", + "_parent": "557ffd194bdc2d28148b457f", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "pocket3", + "_id": "55d717104bdc2d89028b456d", + "_parent": "557ffd194bdc2d28148b457f", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + }, + { + "_name": "pocket4", + "_id": "55d717174bdc2d87028b456b", + "_parent": "557ffd194bdc2d28148b457f", + "_props": { + "filters": [ + { + "Filter": [ + "54009119af1c881c07000029" + ], + "ExcludedFilter": [ + "5448bf274bdc2dfc2f8b456a" + ] + } + ], + "cellsH": 1, + "cellsV": 1, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [ + "Pockets" + ], + "SearchSound": "looting_body_extended", + "BlocksArmorVest": false + } + }, + "5b7c710788a4506dec015957": { + "_id": "5b7c710788a4506dec015957", + "_name": "item_container_junkbox", + "_parent": "5795f317245977243854e041", + "_type": "Item", + "_props": { + "Name": "junkbox", + "ShortName": "junkbox", + "Description": "junkbox", + "Weight": 15, + "BackgroundColor": "yellow", + "Width": 4, + "Height": 4, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_junkbox/item_container_junkbox.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5b7c710788a4506dec015959", + "_parent": "5b7c710788a4506dec015957", + "_props": { + "filters": [ + { + "Filter": [ + "5448eb774bdc2d0a728b4567", + "5448ecbe4bdc2d60728b4568", + "5447e0e74bdc2d3c308b4567" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 14, + "cellsV": 14, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "TagColor": 0, + "TagName": "" + }, + "_proto": "577e1c9d2459773cd707c525" + }, + "59fb016586f7746d0d4b423a": { + "_id": "59fb016586f7746d0d4b423a", + "_name": "item_container_money", + "_parent": "5795f317245977243854e041", + "_type": "Item", + "_props": { + "Name": "Moneycase", + "ShortName": "Moneycase", + "Description": "Moneycase", + "Weight": 5, + "BackgroundColor": "blue", + "Width": 3, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_metal", + "Prefab": { + "path": "assets/content/items/containers/item_container_money/item_container_money.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "59fb016586f7746d0d4b423b", + "_parent": "59fb016586f7746d0d4b423a", + "_props": { + "filters": [ + { + "Filter": [ + "59faff1d86f7746c51718c9c", + "5d235b4d86f7742e017bc88a", + "543be5dd4bdc2deb348b4569" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 7, + "cellsV": 7, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "TagColor": 0, + "TagName": "" + }, + "_proto": "577e1c9d2459773cd707c525" + }, + "59fb023c86f7746d0d4b423c": { + "_id": "59fb023c86f7746d0d4b423c", + "_name": "item_container_weaponcase", + "_parent": "5795f317245977243854e041", + "_type": "Item", + "_props": { + "Name": "Weaponcase", + "ShortName": "Weaponcase", + "Description": "Weaponcase", + "Weight": 9, + "BackgroundColor": "blue", + "Width": 5, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "59fb023c86f7746d0d4b423d", + "_parent": "59fb023c86f7746d0d4b423c", + "_props": { + "filters": [ + { + "Filter": [ + "5448fe124bdc2da5018b4567", + "5422acb9af1c889c16000029", + "5485a8684bdc2da71d8b4567", + "543be5cb4bdc2deb348b4568" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 5, + "cellsV": 10, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "TagColor": 0, + "TagName": "" + }, + "_proto": "577e1c9d2459773cd707c525" + }, + "5795f317245977243854e041": { + "_id": "5795f317245977243854e041", + "_name": "SimpleContainer", + "_parent": "566162e44bdc2d3f298b4573", + "_type": "Node", + "_props": { + "Name": "Item", + "ShortName": "Item", + "Description": "Item", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "TagColor": 0, + "TagName": "" + } + }, + "5422acb9af1c889c16000029": { + "_id": "5422acb9af1c889c16000029", + "_name": "Weapon", + "_parent": "566162e44bdc2d3f298b4573", + "_type": "Node", + "_props": { + "weapClass": "smg", + "weapUseType": "primary", + "ammoCaliber": "Caliber9x18PM", + "Durability": 100, + "MaxDurability": 100, + "OperatingResource": 0, + "RepairComplexity": 0, + "durabSpawnMin": 0, + "durabSpawnMax": 0, + "isFastReload": false, + "weapFireType": [], + "SingleFireRate": 720, + "CanQueueSecondShot": true, + "bFirerate": 900, + "Ergonomics": 10, + "Velocity": 0, + "bEffDist": 1, + "bHearDist": 1, + "isChamberLoad": true, + "chamberAmmoCount": 1, + "isBoltCatch": false, + "defMagType": "5448bc234bdc2d3c308b4569", + "defAmmo": "5485a8684bdc2da71d8b4567", + "AdjustCollimatorsToTrajectory": false, + "shotgunDispersion": 10, + "Chambers": [], + "ReloadMode": "ExternalMagazine", + "CenterOfImpact": 0.01, + "AimPlane": 0, + "DeviationCurve": 1, + "DeviationMax": 100, + "Foldable": false, + "Retractable": false, + "TacticalReloadStiffnes": { + "x": 0.95, + "y": 0.33, + "z": 0.95 + }, + "TacticalReloadFixation": 0.95, + "RecoilCategoryMultiplierHandRotation": 1, + "RecoilReturnSpeedHandRotation": 1, + "RecoilDampingHandRotation": 0.81, + "RecoilCamera": -0.3, + "RecoilStableIndexShot": 4, + "RecoilForceBack": 100, + "RecoilForceUp": 50, + "RecolDispersion": 0, + "RecoilPosZMult": 1, + "RecoilReturnPathDampingHandRotation": 0.2, + "RecoilReturnPathOffsetHandRotation": 0.01, + "RecoilAngle": 90, + "RecoilStableAngleIncreaseStep": 2.5, + "ProgressRecoilAngleOnStable": { + "x": 0, + "y": 30, + "z": 0 + }, + "RecoilCenter": { + "x": 0, + "y": 0, + "z": 1 + }, + "PostRecoilVerticalRangeHandRotation": { + "x": -3, + "y": 0, + "z": 0 + }, + "PostRecoilHorizontalRangeHandRotation": { + "x": -3, + "y": 3, + "z": 0 + }, + "ShotsGroupSettings": [ + { + "StartShotIndex": 4, + "EndShotIndex": 99, + "ShotRecoilRotationStrength": { + "x": 0, + "y": 2, + "z": 0 + }, + "ShotRecoilPositionStrength": { + "x": 0, + "y": 0, + "z": 0 + }, + "ShotRecoilRadianRange": { + "x": -20, + "y": 20, + "z": 0 + } + } + ], + "CameraToWeaponAngleSpeedRange": { + "x": 0.01, + "y": 0.11, + "z": 0 + }, + "CameraToWeaponAngleStep": 0.01, + "CameraSnap": 3, + "RotationCenter": { + "x": 0, + "y": 0, + "z": 0 + }, + "RotationCenterNoStock": { + "x": 0, + "y": 0, + "z": 0 + }, + "MergesWithChildren": true, + "SizeReduceRight": 0, + "FoldedSlot": "", + "CompactHandling": false, + "SightingRange": 100, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "IronSightRange": 25, + "MustBoltBeOpennedForExternalReload": false, + "MustBoltBeOpennedForInternalReload": false, + "BoltAction": false, + "HipAccuracyRestorationDelay": 0.2, + "HipAccuracyRestorationSpeed": 7, + "HipInnaccuracyGain": 0.16, + "ManualBoltCatch": false, + "AimSensitivity": 0.65, + "BurstShotsCount": 3, + "BaseMalfunctionChance": 0, + "AllowJam": false, + "AllowFeed": false, + "AllowMisfire": false, + "AllowSlide": false, + "DurabilityBurnRatio": 1, + "HeatFactorGun": 1, + "CoolFactorGun": 1, + "CoolFactorGunMods": 1, + "HeatFactorByShot": 1, + "AllowOverheat": false, + "DoubleActionAccuracyPenalty": 1.5, + "MinRepairKitDegradation": 0, + "MaxRepairKitDegradation": 0, + "IsFlareGun": false, + "IsOneoff": false, + "IsGrenadeLauncher": false, + "NoFiremodeOnBoltcatch": false, + "IsStationaryWeapon": false, + "IsBeltMachineGun": false, + "WithAnimatorAiming": false, + "blockLeftStance": false + } + }, + "57514643245977207f2c2d09": { + "_id": "57514643245977207f2c2d09", + "_name": "drink_tarcola", + "_parent": "5448e8d64bdc2dce718b4568", + "_type": "Item", + "_props": { + "Name": "TarCola", + "ShortName": "TarCola", + "Description": "TarCola", + "Weight": 0.36, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "food_soda_can", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_drink_cans/item_tarcola_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_drink_cans/item_tarcola_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 4, + "foodEffectType": "afterUse", + "MaxResource": 1, + "StimulatorBuffs": "Buffs_drink_tarcola", + "effects_health": { + "Energy": { + "value": 5 + }, + "Hydration": { + "value": 15 + } + }, + "effects_damage": [] + }, + "_proto": "5751435d24597720a27126d1" + }, + "60b0f6c058e0b0481a09ad11": { + "_id": "60b0f6c058e0b0481a09ad11", + "_name": "item_barter_walletwz", + "_parent": "5795f317245977243854e041", + "_type": "Item", + "_props": { + "Name": "Empty Wallet", + "ShortName": "Wallet", + "Description": "Empty Wallet", + "Weight": 0.169, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_walletwz/item_barter_walletwz.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 50, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "60b0f6c058e0b0481a09ad13", + "_parent": "60b0f6c058e0b0481a09ad11", + "_props": { + "filters": [ + { + "Filter": [ + "5c164d2286f774194c5e69fa", + "543be5dd4bdc2deb348b4569" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 2, + "cellsV": 2, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "TagColor": 0, + "TagName": "" + }, + "_proto": "577e1c9d2459773cd707c525" + }, + "5aafbcd986f7745e590fff23": { + "_id": "5aafbcd986f7745e590fff23", + "_name": "item_container_meds", + "_parent": "5795f317245977243854e041", + "_type": "Item", + "_props": { + "Name": "medscase", + "ShortName": "medscase", + "Description": "medscase", + "Weight": 16, + "BackgroundColor": "blue", + "Width": 3, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_meds/item_container_meds.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5aafbcd986f7745e590fff25", + "_parent": "5aafbcd986f7745e590fff23", + "_props": { + "filters": [ + { + "Filter": [ + "57864c8c245977548867e7f1", + "543be5664bdc2dd4348b4569" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 7, + "cellsV": 7, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "TagColor": 0, + "TagName": "" + }, + "_proto": "577e1c9d2459773cd707c525" + }, + "5c093e3486f77430cb02e593": { + "_id": "5c093e3486f77430cb02e593", + "_name": "item_container_smallitems", + "_parent": "5795f317245977243854e041", + "_type": "Item", + "_props": { + "Name": "item_container_smallitems", + "ShortName": "item_container_smallitems", + "Description": "item_container_smallitems", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/containers/item_container_smallitems/item_container_smallitems.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "5c093e3486f77430cb02e595", + "_parent": "5c093e3486f77430cb02e593", + "_props": { + "filters": [ + { + "Filter": [ + "59f32bb586f774757e1e8442", + "59f32c3b86f77472a31742f0" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 10, + "cellsV": 10, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "TagColor": 0, + "TagName": "" + }, + "_proto": "577e1c9d2459773cd707c525" + }, + "544fb62a4bdc2dfb738b4568": { + "_id": "544fb62a4bdc2dfb738b4568", + "_name": "juice_army", + "_parent": "5448e8d64bdc2dce718b4568", + "_type": "Item", + "_props": { + "Name": "Пачка армейского сока (яблочный)", + "ShortName": "Apple juice", + "Description": "сок сочок", + "Weight": 1, + "BackgroundColor": "default", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "food_juice_carton", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_tetrapak/item_juice_army_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_tetrapak/item_juice_army_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 3, + "foodEffectType": "afterUse", + "MaxResource": 1, + "StimulatorBuffs": "Buffs_drink_juice_army", + "effects_health": { + "Energy": { + "value": 8 + }, + "Hydration": { + "value": 30 + } + }, + "effects_damage": [] + } + }, + "59fafd4b86f7745ca07e1232": { + "_id": "59fafd4b86f7745ca07e1232", + "_name": "item_container_keybar", + "_parent": "5795f317245977243854e041", + "_type": "Item", + "_props": { + "Name": "Key-tool", + "ShortName": "Key-tool", + "Description": "Key-tool", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/barter/item_container_keybar/item_container_keybar.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 2, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "main", + "_id": "59fafd4b86f7745ca07e1233", + "_parent": "59fafd4b86f7745ca07e1232", + "_props": { + "filters": [ + { + "Filter": [ + "5c99f98d86f7745c314214b3" + ], + "ExcludedFilter": [] + } + ], + "cellsH": 4, + "cellsV": 4, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [], + "TagColor": 0, + "TagName": "" + }, + "_proto": "577e1c9d2459773cd707c525" + }, + "566abbc34bdc2d92178b4576": { + "_id": "566abbc34bdc2d92178b4576", + "_name": "Standard stash 10x28", + "_parent": "566abbb64bdc2d144c8b457d", + "_type": "Item", + "_props": { + "Name": "Standard stash 10x28", + "ShortName": "Standard stash 10x28", + "Description": "Standard stash 10x28\n", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "Grids": [ + { + "_name": "hideout", + "_id": "566abbf74bdc2dd44d8b4579", + "_parent": "566abbc34bdc2d92178b4576", + "_props": { + "filters": [], + "cellsH": 10, + "cellsV": 28, + "minCount": 0, + "maxCount": 0, + "maxWeight": 0, + "isSortingTable": false + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Slots": [], + "CanPutIntoDuringTheRaid": true, + "CantRemoveFromSlotsDuringRaid": [] + } + }, + "5671435f4bdc2d96058b4569": { + "_id": "5671435f4bdc2d96058b4569", + "_name": "LockableContainer", + "_parent": "566162e44bdc2d3f298b4573", + "_type": "Node", + "_props": { + "KeyIds": [ + "543be5e94bdc2df1348b4568" + ], + "TagColor": 0, + "TagName": "" + } + }, + "57513f9324597720a7128161": { + "_id": "57513f9324597720a7128161", + "_name": "drink_juice_grand", + "_parent": "5448e8d64bdc2dce718b4568", + "_type": "Item", + "_props": { + "Name": "Grand juice", + "ShortName": "Grand juice", + "Description": "Grand juice", + "Weight": 1, + "BackgroundColor": "default", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "food_juice_carton", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_juice/item_juice_grand_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_juice/item_juice_grand_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 4, + "foodEffectType": "afterUse", + "MaxResource": 40, + "StimulatorBuffs": "", + "effects_health": { + "Energy": { + "value": 6 + }, + "Hydration": { + "value": 30 + } + }, + "effects_damage": [] + }, + "_proto": "57513f07245977207e26a311" + }, + "5d40407c86f774318526545a": { + "_id": "5d40407c86f774318526545a", + "_name": "item_food_vodka", + "_parent": "5448e8d64bdc2dce718b4568", + "_type": "Item", + "_props": { + "Name": "item_food_vodka", + "ShortName": "item_food_vodka", + "Description": "item_food_vodka", + "Weight": 1.6, + "BackgroundColor": "default", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "food_bottle", + "Prefab": { + "path": "assets/content/items/food/bottles_with_alcohol/item_food_vodka.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_alcohol_vodka/item_alcohol_vodka_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 5, + "foodEffectType": "afterUse", + "MaxResource": 1, + "StimulatorBuffs": "Buffs_drink_vodka", + "effects_health": { + "Hydration": { + "value": -50 + } + }, + "effects_damage": { + "Pain": { + "delay": 0, + "duration": 250 + }, + "RadExposure": { + "delay": 0, + "duration": 0 + } + } + }, + "_proto": "5673de654bdc2d180f8b456d" + }, + "575062b524597720a31c09a1": { + "_id": "575062b524597720a31c09a1", + "_name": "drink_icegreen", + "_parent": "5448e8d64bdc2dce718b4568", + "_type": "Item", + "_props": { + "Name": "Green Ice", + "ShortName": "Green Ice", + "Description": "Green Ice", + "Weight": 0.3, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "food_soda_can", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_drink_cans/item_icegreen_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_drink_cans/item_icegeen_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 2, + "foodEffectType": "afterUse", + "MaxResource": 1, + "StimulatorBuffs": "", + "effects_health": { + "Hydration": { + "value": 15 + } + }, + "effects_damage": [] + }, + "_proto": "544fb62a4bdc2dfb738b4568" + }, + "57513fcc24597720a31c09a6": { + "_id": "57513fcc24597720a31c09a6", + "_name": "drink_juice_vita", + "_parent": "5448e8d64bdc2dce718b4568", + "_type": "Item", + "_props": { + "Name": "Vita juice", + "ShortName": "Vita juice", + "Description": "Vita juice", + "Weight": 1, + "BackgroundColor": "default", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "food_juice_carton", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_juice/item_juice_vita_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_juice/item_juice_vita_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 4, + "foodEffectType": "afterUse", + "MaxResource": 40, + "StimulatorBuffs": "", + "effects_health": { + "Energy": { + "value": 8 + }, + "Hydration": { + "value": 28 + } + }, + "effects_damage": [] + }, + "_proto": "57513f9324597720a7128161" + }, "64cbd95a29b9b4283e216ff5": { "_id": "64cbd95a29b9b4283e216ff5", "_name": "Карманы 2 на 3", @@ -376275,1559 +379375,6 @@ }, "_proto": "575062b524597720a31c09a1" }, - "5732ee6a24597719ae0c0281": { - "_id": "5732ee6a24597719ae0c0281", - "_name": "Сумочка", - "_parent": "5448bf274bdc2dfc2f8b456a", - "_type": "Item", - "_props": { - "Name": "Дамская сумочка", - "ShortName": "Сумка", - "Description": "", - "Weight": 0.4, - "BackgroundColor": "violet", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_pouch", - "Prefab": { - "path": "assets/content/items/equipment/backpack_beltbag/item_equipment_backpack_beltbag.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 100, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": true, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5732efe224597719bd402b1f", - "_parent": "5732ee6a24597719ae0c0281", - "_props": { - "filters": [ - { - "Filter": [ - "5448eb774bdc2d0a728b4567", - "543be5f84bdc2dd4348b456a", - "5448fe124bdc2da5018b4567", - "619cbf9e0a7c3a1a2731940a", - "619cbf7d23893217ec30b689", - "59fafd4b86f7745ca07e1232", - "62a09d3bcf4a99369e262447", - "5d235bb686f77443f4331278", - "5c093e3486f77430cb02e593", - "590c60fc86f77412b13fddcf", - "5783c43d2459774bbe137486", - "543be6674bdc2df1348b4569", - "5448ecbe4bdc2d60728b4568", - "543be5e94bdc2df1348b4568", - "5447e1d04bdc2dff2f8b4567", - "567849dd4bdc2d150f8b456e", - "543be5664bdc2dd4348b4569", - "5447e0e74bdc2d3c308b4567", - "5661632d4bdc2d903d8b456b" - ], - "ExcludedFilter": [ - "5645bc214bdc2d363b8b4571", - "5aa7cfc0e5b5b00015693143", - "5aa7e276e5b5b000171d0647", - "5c066ef40db834001966a595", - "5df8a58286f77412631087ed", - "59e7711e86f7746cae05fbe1", - "5d5e7d28a4b936645d161203", - "5d5e9c74a4b9364855191c40", - "5a154d5cfcdbcb001a3b00da", - "5ac8d6885acfc400180ae7b0", - "5a7c4850e899ef00150be885", - "5aa7d193e5b5b000171d063f", - "5aa7d03ae5b5b00016327db5", - "5a16bb52fcdbcb001a3b00dc", - "5aa7e454e5b5b0214e506fa2", - "5aa7e4a4e5b5b000137b76f2", - "5b4329f05acfc47a86086aa1", - "5b40e3f35acfc40016388218", - "5b40e4035acfc47a87740943", - "5b432d215acfc4771e1c6624", - "5b40e1525acfc4771e1c6611", - "5b40e2bc5acfc40016388216", - "5c17a7ed2e2216152142459c", - "5ea17ca01412a1425304d1c0", - "5f60b34a41e30a4ab12a6947", - "5ea05cf85ad9772e6624305d", - "5d6d3716a4b9361bc8618872", - "5c091a4e0db834001d5addc8", - "5c0e874186f7745dc7616606", - "61bca7cda0eae612383adf57", - "5c0d2727d174af02a012cf58", - "5f60c74e3b85f6263c145586", - "5c08f87c0db8340019124324", - "5c06c6a80db834001b735491", - "5e4bfc1586f774264f7582d3", - "5e00c1ad86f774747333222c", - "5e01ef6886f77445f643baa4", - "5ca20ee186f774799474abc2", - "59ef13ca86f77445fd0e2483", - "55818aeb4bdc2ddc698b456a", - "5b3b6dc75acfc47a8773fb1e", - "5a1ead28fcdbcb001912fa9f", - "587e08ee245977446b4410cf", - "5c0695860db834001b735461", - "5a16b93dfcdbcbcae6687261", - "5a16b8a9fcdbcb00165aa6ca", - "5c11046cd174af02a012e42b", - "5448bf274bdc2dfc2f8b456a", - "6389c7750ef44505c87f5996", - "6389c85357baa773a825b356", - "6389c7f115805221fb410466", - "543be6564bdc2df4348b4568", - "5448bc234bdc2d3c308b4569", - "5656eb674bdc2d35148b457c", - "5ede474b0c226a66f5402622", - "5ede475b549eed7c6d5c18fb", - "5ede4739e0350d05467f73e8", - "5ede47405b097655935d7d16", - "5f0c892565703e5c461894e9", - "5ede475339ee016e8c534742", - "55818b014bdc2ddc698b456b", - "5448e54d4bdc2dcc718b4568", - "5aa7e373e5b5b000137b76f0", - "5a16ba61fcdbcb098008728a", - "5a16badafcdbcb001865f72d", - "5a16b672fcdbcb001912fa83", - "5a16b7e1fcdbcb00165aa6c9", - "5e01f31d86f77465cf261343", - "5e00cfa786f77469dc6e5685", - "5aa7e3abe5b5b000171d064d", - "5c178a942e22164bef5ceca3", - "5c1793902e221602b21d3de2", - "5f60b85bbdb8e27dee3dc985", - "5ea18c84ecf1982c7712d9a2", - "5f60bf4558eff926626a60f2", - "5c0e66e2d174af02a96252f4", - "5f60c076f2bcbb675b00dac2", - "5ac4c50d5acfc40019262e87", - "5b46238386f7741a693bcf9c", - "5d6d3be5a4b9361bc73bc763", - "5d6d3829a4b9361bc8618943", - "5c0919b50db834001b7ce3b9", - "5c0e842486f77443a74d2976", - "5f60c85b58eff926626a60f7", - "5e00cdd986f7747473332240", - "5e01f37686f774773c6f6c15", - "5ca2113f86f7740b2547e1d2", - "5ea058e01dbce517f324b3e2", - "62a09e08de7ac81993580532", - "5b432b2f5acfc4771e1c6622", - "62a61c988ec41a51b34758d5", - "603409c80ca681766b6a0fb2", - "64d4b23dc1b37504b41ac2b6" - ] - } - ], - "cellsH": 2, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false, - "containType": [], - "sizeWidth": 2, - "sizeHeight": 2, - "isSecured": true, - "spawnTypes": "None", - "lootFilter": [], - "spawnRarity": "Common", - "minCountSpawn": 0, - "maxCountSpawn": 0, - "openedByKeyID": [] - }, - "_proto": "544a11ac4bdc2d470e8b456a" - }, - "575062b524597720a31c09a1": { - "_id": "575062b524597720a31c09a1", - "_name": "drink_icegreen", - "_parent": "5448e8d64bdc2dce718b4568", - "_type": "Item", - "_props": { - "Name": "Green Ice", - "ShortName": "Green Ice", - "Description": "Green Ice", - "Weight": 0.3, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "food_soda_can", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_drink_cans/item_icegreen_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_drink_cans/item_icegeen_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 2, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "", - "effects_health": { - "Hydration": { - "value": 15 - } - }, - "effects_damage": [] - }, - "_proto": "544fb62a4bdc2dfb738b4568" - }, - "5857a8bc2459772bad15db29": { - "_id": "5857a8bc2459772bad15db29", - "_name": "Gamma container", - "_parent": "5448bf274bdc2dfc2f8b456a", - "_type": "Item", - "_props": { - "Name": "Защищенный DEVELOPER контейнер", - "ShortName": "dev-secured", - "Description": "", - "Weight": 1.2, - "BackgroundColor": "violet", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "container_case", - "Prefab": { - "path": "assets/content/items/containers/plano_pistol_case/item_plano_pistol_case.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": true, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5857a8bc2459772bad15db2a", - "_parent": "5857a8bc2459772bad15db29", - "_props": { - "filters": [ - { - "Filter": [ - "5448eb774bdc2d0a728b4567", - "543be5f84bdc2dd4348b456a", - "5448fe124bdc2da5018b4567", - "60b0f6c058e0b0481a09ad11", - "619cbf9e0a7c3a1a2731940a", - "619cbf7d23893217ec30b689", - "59fafd4b86f7745ca07e1232", - "62a09d3bcf4a99369e262447", - "5d235bb686f77443f4331278", - "5c093e3486f77430cb02e593", - "590c60fc86f77412b13fddcf", - "5783c43d2459774bbe137486", - "543be6674bdc2df1348b4569", - "5448ecbe4bdc2d60728b4568", - "543be5e94bdc2df1348b4568", - "5447e1d04bdc2dff2f8b4567", - "567849dd4bdc2d150f8b456e", - "543be5664bdc2dd4348b4569", - "5447e0e74bdc2d3c308b4567", - "5661632d4bdc2d903d8b456b" - ], - "ExcludedFilter": [ - "5448e54d4bdc2dcc718b4568", - "5645bc214bdc2d363b8b4571", - "5aa7cfc0e5b5b00015693143", - "5aa7e276e5b5b000171d0647", - "5c066ef40db834001966a595", - "5df8a58286f77412631087ed", - "59e7711e86f7746cae05fbe1", - "5d5e7d28a4b936645d161203", - "5d5e9c74a4b9364855191c40", - "5a154d5cfcdbcb001a3b00da", - "5ac8d6885acfc400180ae7b0", - "5a7c4850e899ef00150be885", - "5aa7d193e5b5b000171d063f", - "5aa7d03ae5b5b00016327db5", - "5a16bb52fcdbcb001a3b00dc", - "5aa7e454e5b5b0214e506fa2", - "5aa7e4a4e5b5b000137b76f2", - "5b40e3f35acfc40016388218", - "5b40e4035acfc47a87740943", - "5b432d215acfc4771e1c6624", - "5b40e1525acfc4771e1c6611", - "5b40e2bc5acfc40016388216", - "5c17a7ed2e2216152142459c", - "5ea17ca01412a1425304d1c0", - "5f60b34a41e30a4ab12a6947", - "5ea05cf85ad9772e6624305d", - "5d6d3716a4b9361bc8618872", - "5c091a4e0db834001d5addc8", - "5c0e874186f7745dc7616606", - "61bca7cda0eae612383adf57", - "5c0d2727d174af02a012cf58", - "5f60c74e3b85f6263c145586", - "5c08f87c0db8340019124324", - "5c06c6a80db834001b735491", - "5e4bfc1586f774264f7582d3", - "5e00c1ad86f774747333222c", - "5e01ef6886f77445f643baa4", - "5ca20ee186f774799474abc2", - "55818aeb4bdc2ddc698b456a", - "5448bc234bdc2d3c308b4569", - "5b3b6dc75acfc47a8773fb1e", - "5a1ead28fcdbcb001912fa9f", - "587e08ee245977446b4410cf", - "5c0695860db834001b735461", - "5a16b93dfcdbcbcae6687261", - "5a16b8a9fcdbcb00165aa6ca", - "5c11046cd174af02a012e42b", - "5448bf274bdc2dfc2f8b456a", - "543be6564bdc2df4348b4568", - "6389c85357baa773a825b356", - "6389c7750ef44505c87f5996", - "6389c7f115805221fb410466", - "5ede474b0c226a66f5402622", - "5ede475b549eed7c6d5c18fb", - "5ede4739e0350d05467f73e8", - "5f0c892565703e5c461894e9", - "5ede47405b097655935d7d16", - "5ede475339ee016e8c534742", - "5656eb674bdc2d35148b457c", - "55818b014bdc2ddc698b456b", - "5ca2113f86f7740b2547e1d2", - "5ea058e01dbce517f324b3e2", - "5e01f37686f774773c6f6c15", - "5e00cdd986f7747473332240", - "5f60c85b58eff926626a60f7", - "5c0e842486f77443a74d2976", - "5c0919b50db834001b7ce3b9", - "5d6d3829a4b9361bc8618943", - "5d6d3be5a4b9361bc73bc763", - "5b46238386f7741a693bcf9c", - "5ac4c50d5acfc40019262e87", - "5c0e66e2d174af02a96252f4", - "5f60c076f2bcbb675b00dac2", - "5f60bf4558eff926626a60f2", - "5f60b85bbdb8e27dee3dc985", - "5ea18c84ecf1982c7712d9a2", - "5c1793902e221602b21d3de2", - "5c178a942e22164bef5ceca3", - "5aa7e3abe5b5b000171d064d", - "5e01f31d86f77465cf261343", - "5a16b7e1fcdbcb00165aa6c9", - "5e00cfa786f77469dc6e5685", - "5a16b672fcdbcb001912fa83", - "5a16badafcdbcb001865f72d", - "5a16ba61fcdbcb098008728a", - "5aa7e373e5b5b000137b76f0", - "5b4329f05acfc47a86086aa1", - "59ef13ca86f77445fd0e2483", - "5b432b2f5acfc4771e1c6622", - "62a09e08de7ac81993580532", - "62a61c988ec41a51b34758d5", - "603409c80ca681766b6a0fb2", - "64d4b23dc1b37504b41ac2b6" - ] - } - ], - "cellsH": 3, - "cellsV": 3, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [ - "SecuredContainer" - ], - "SearchSound": "techno_box_looting_01", - "BlocksArmorVest": false, - "containType": [], - "sizeWidth": 3, - "sizeHeight": 3, - "isSecured": true, - "spawnTypes": "None", - "lootFilter": [], - "spawnRarity": "Common", - "minCountSpawn": 0, - "maxCountSpawn": 0, - "openedByKeyID": [] - }, - "_proto": "544a11ac4bdc2d470e8b456a" - }, - "59fafd4b86f7745ca07e1232": { - "_id": "59fafd4b86f7745ca07e1232", - "_name": "item_container_keybar", - "_parent": "5795f317245977243854e041", - "_type": "Item", - "_props": { - "Name": "Key-tool", - "ShortName": "Key-tool", - "Description": "Key-tool", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/barter/item_container_keybar/item_container_keybar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 2, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "59fafd4b86f7745ca07e1233", - "_parent": "59fafd4b86f7745ca07e1232", - "_props": { - "filters": [ - { - "Filter": [ - "5c99f98d86f7745c314214b3" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 4, - "cellsV": 4, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "TagColor": 0, - "TagName": "" - }, - "_proto": "577e1c9d2459773cd707c525" - }, - "566abbc34bdc2d92178b4576": { - "_id": "566abbc34bdc2d92178b4576", - "_name": "Standard stash 10x28", - "_parent": "566abbb64bdc2d144c8b457d", - "_type": "Item", - "_props": { - "Name": "Standard stash 10x28", - "ShortName": "Standard stash 10x28", - "Description": "Standard stash 10x28\n", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "hideout", - "_id": "566abbf74bdc2dd44d8b4579", - "_parent": "566abbc34bdc2d92178b4576", - "_props": { - "filters": [], - "cellsH": 10, - "cellsV": 28, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [] - } - }, - "5671435f4bdc2d96058b4569": { - "_id": "5671435f4bdc2d96058b4569", - "_name": "LockableContainer", - "_parent": "566162e44bdc2d3f298b4573", - "_type": "Node", - "_props": { - "KeyIds": [ - "543be5e94bdc2df1348b4568" - ], - "TagColor": 0, - "TagName": "" - } - }, - "57513f9324597720a7128161": { - "_id": "57513f9324597720a7128161", - "_name": "drink_juice_grand", - "_parent": "5448e8d64bdc2dce718b4568", - "_type": "Item", - "_props": { - "Name": "Grand juice", - "ShortName": "Grand juice", - "Description": "Grand juice", - "Weight": 1, - "BackgroundColor": "default", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "food_juice_carton", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_juice/item_juice_grand_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_juice/item_juice_grand_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 4, - "foodEffectType": "afterUse", - "MaxResource": 40, - "StimulatorBuffs": "", - "effects_health": { - "Energy": { - "value": 6 - }, - "Hydration": { - "value": 30 - } - }, - "effects_damage": [] - }, - "_proto": "57513f07245977207e26a311" - }, - "566965d44bdc2d814c8b4571": { - "_id": "566965d44bdc2d814c8b4571", - "_name": "LootContainer", - "_parent": "566168634bdc2d144c8b456c", - "_type": "Node", - "_props": { - "SpawnFilter": [] - } - }, - "5448e53e4bdc2d60728b4567": { - "_id": "5448e53e4bdc2d60728b4567", - "_name": "Backpack", - "_parent": "566168634bdc2d144c8b456c", - "_type": "Node", - "_props": { - "speedPenaltyPercent": 0, - "mousePenalty": 0, - "GridLayoutName": "", - "weaponErgonomicPenalty": 0, - "LeanWeaponAgainstBody": false - } - }, - "59fb042886f7746c5005a7b2": { - "_id": "59fb042886f7746c5005a7b2", - "_name": "item_container_trackcase", - "_parent": "5795f317245977243854e041", - "_type": "Item", - "_props": { - "Name": "Itemcase", - "ShortName": "Itemcase", - "Description": "Itemcase", - "Weight": 7, - "BackgroundColor": "blue", - "Width": 4, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_trackcase/item_container_trackcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "59fb042886f7746c5005a7b3", - "_parent": "59fb042886f7746c5005a7b2", - "_props": { - "filters": [ - { - "Filter": [ - "5448eb774bdc2d0a728b4567", - "543be5f84bdc2dd4348b456a", - "5448fe124bdc2da5018b4567", - "5448e53e4bdc2d60728b4567", - "5448e5284bdc2dcb718b4567", - "60b0f6c058e0b0481a09ad11", - "5aafbde786f774389d0cbc0f", - "619cbf9e0a7c3a1a2731940a", - "5c093db286f7740a1b2617e3", - "5e2af55f86f7746d4159f07c", - "619cbf7d23893217ec30b689", - "59fafd4b86f7745ca07e1232", - "62a09d3bcf4a99369e262447", - "5d235bb686f77443f4331278", - "5c127c4486f7745625356c13", - "5aafbcd986f7745e590fff23", - "59fb016586f7746d0d4b423a", - "5c093e3486f77430cb02e593", - "590c60fc86f77412b13fddcf", - "5783c43d2459774bbe137486", - "5422acb9af1c889c16000029", - "543be6674bdc2df1348b4569", - "5448ecbe4bdc2d60728b4568", - "543be5e94bdc2df1348b4568", - "5447e1d04bdc2dff2f8b4567", - "567849dd4bdc2d150f8b456e", - "543be5664bdc2dd4348b4569", - "5f4fbaaca5573a5ac31db429", - "61605ddea09d851a0a0c1bbc", - "616eb7aea207f41933308f46", - "5991b51486f77447b112d44f", - "5ac78a9b86f7741cca0bbd8d", - "5b4391a586f7745321235ab2", - "5af056f186f7746da511291f", - "544fb5454bdc2df8738b456a", - "5661632d4bdc2d903d8b456b", - "543be6564bdc2df4348b4568" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 8, - "cellsV": 8, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "TagColor": 0, - "TagName": "" - }, - "_proto": "577e1c9d2459773cd707c525" - }, - "5aafbde786f774389d0cbc0f": { - "_id": "5aafbde786f774389d0cbc0f", - "_name": "item_container_ammo", - "_parent": "5795f317245977243854e041", - "_type": "Item", - "_props": { - "Name": "ammocase", - "ShortName": "ammocase", - "Description": "ammocase", - "Weight": 3, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_metal", - "Prefab": { - "path": "assets/content/items/containers/item_container_ammo/item_container_ammo.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5aafbde786f774389d0cbc11", - "_parent": "5aafbde786f774389d0cbc0f", - "_props": { - "filters": [ - { - "Filter": [ - "5485a8684bdc2da71d8b4567", - "543be5cb4bdc2deb348b4568" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 7, - "cellsV": 7, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "TagColor": 0, - "TagName": "" - }, - "_proto": "577e1c9d2459773cd707c525" - }, - "62a09d3bcf4a99369e262447": { - "_id": "62a09d3bcf4a99369e262447", - "_name": "item_container_keychain", - "_parent": "5795f317245977243854e041", - "_type": "Item", - "_props": { - "Name": "Key-tool", - "ShortName": "Key-tool", - "Description": "Key-tool", - "Weight": 0.015, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/barter/item_container_keychain/item_container_keychain.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 50, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "62a09d3bcf4a99369e262449", - "_parent": "62a09d3bcf4a99369e262447", - "_props": { - "filters": [ - { - "Filter": [ - "5c99f98d86f7745c314214b3" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 2, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "TagColor": 0, - "TagName": "" - }, - "_proto": "577e1c9d2459773cd707c525" - }, - "5811ce772459770e9e5f9532": { - "_id": "5811ce772459770e9e5f9532", - "_name": "Edge of darkness stash 10x68", - "_parent": "566abbb64bdc2d144c8b457d", - "_type": "Item", - "_props": { - "Name": "Edge of darkness stash 10x68", - "ShortName": "Edge of darkness stash 10x68", - "Description": "Edge of darkness stash 10x68\n", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "hideout", - "_id": "5811cf932459770e83232ec3", - "_parent": "5811ce772459770e9e5f9532", - "_props": { - "filters": [], - "cellsH": 10, - "cellsV": 68, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [] - }, - "_proto": "5811ce662459770f6f490f32" - }, - "55d720f24bdc2d88028b456d": { - "_id": "55d720f24bdc2d88028b456d", - "_name": "Inventory", - "_parent": "566162e44bdc2d3f298b4573", - "_type": "Node", - "_props": {} - }, - "614451b71e5874611e2c7ae5": { - "_id": "614451b71e5874611e2c7ae5", - "_name": "item_food_vodka_BAD", - "_parent": "5448e8d64bdc2dce718b4568", - "_type": "Item", - "_props": { - "Name": "item_food_vodka", - "ShortName": "item_food_vodka", - "Description": "item_food_vodka", - "Weight": 1.6, - "BackgroundColor": "default", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "food_bottle", - "Prefab": { - "path": "assets/content/items/food/bottles_with_alcohol/item_food_vodka.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_alcohol_vodka/item_alcohol_vodka_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 5, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "Buffs_drink_vodka", - "effects_health": { - "Hydration": { - "value": -50 - } - }, - "effects_damage": { - "Pain": { - "delay": 0, - "duration": 250 - }, - "RadExposure": { - "delay": 0, - "duration": 0 - } - } - }, - "_proto": "5673de654bdc2d180f8b456d" - }, - "5aafbcd986f7745e590fff23": { - "_id": "5aafbcd986f7745e590fff23", - "_name": "item_container_meds", - "_parent": "5795f317245977243854e041", - "_type": "Item", - "_props": { - "Name": "medscase", - "ShortName": "medscase", - "Description": "medscase", - "Weight": 16, - "BackgroundColor": "blue", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_meds/item_container_meds.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5aafbcd986f7745e590fff25", - "_parent": "5aafbcd986f7745e590fff23", - "_props": { - "filters": [ - { - "Filter": [ - "57864c8c245977548867e7f1", - "543be5664bdc2dd4348b4569" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 7, - "cellsV": 7, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "TagColor": 0, - "TagName": "" - }, - "_proto": "577e1c9d2459773cd707c525" - }, - "60b0f6c058e0b0481a09ad11": { - "_id": "60b0f6c058e0b0481a09ad11", - "_name": "item_barter_walletwz", - "_parent": "5795f317245977243854e041", - "_type": "Item", - "_props": { - "Name": "Empty Wallet", - "ShortName": "Wallet", - "Description": "Empty Wallet", - "Weight": 0.169, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_walletwz/item_barter_walletwz.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 50, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "60b0f6c058e0b0481a09ad13", - "_parent": "60b0f6c058e0b0481a09ad11", - "_props": { - "filters": [ - { - "Filter": [ - "5c164d2286f774194c5e69fa", - "543be5dd4bdc2deb348b4569" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 2, - "cellsV": 2, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "TagColor": 0, - "TagName": "" - }, - "_proto": "577e1c9d2459773cd707c525" - }, - "5c093e3486f77430cb02e593": { - "_id": "5c093e3486f77430cb02e593", - "_name": "item_container_smallitems", - "_parent": "5795f317245977243854e041", - "_type": "Item", - "_props": { - "Name": "item_container_smallitems", - "ShortName": "item_container_smallitems", - "Description": "item_container_smallitems", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_smallitems/item_container_smallitems.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5c093e3486f77430cb02e595", - "_parent": "5c093e3486f77430cb02e593", - "_props": { - "filters": [ - { - "Filter": [ - "59f32bb586f774757e1e8442", - "59f32c3b86f77472a31742f0" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 10, - "cellsV": 10, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "TagColor": 0, - "TagName": "" - }, - "_proto": "577e1c9d2459773cd707c525" - }, "627a4e6b255f7527fb05a0f6": { "_id": "627a4e6b255f7527fb05a0f6", "_name": "Карманы 1 на 4 со спец слотами", @@ -378006,8 +379553,7 @@ "5ac78a9b86f7741cca0bbd8d", "5b4391a586f7745321235ab2", "544fb5454bdc2df8738b456a", - "64b69b0c8f3be32ed22682f8", - "65ddcc7aef36f6413d0829b9" + "64b69b0c8f3be32ed22682f8" ] } ] @@ -378031,8 +379577,7 @@ "5ac78a9b86f7741cca0bbd8d", "5b4391a586f7745321235ab2", "544fb5454bdc2df8738b456a", - "64b69b0c8f3be32ed22682f8", - "65ddcc7aef36f6413d0829b9" + "64b69b0c8f3be32ed22682f8" ] } ] @@ -378056,8 +379601,7 @@ "5ac78a9b86f7741cca0bbd8d", "5b4391a586f7745321235ab2", "544fb5454bdc2df8738b456a", - "64b69b0c8f3be32ed22682f8", - "65ddcc7aef36f6413d0829b9" + "64b69b0c8f3be32ed22682f8" ] } ] @@ -378150,437 +379694,27 @@ "BlocksArmorVest": false } }, - "5c0a794586f77461c458f892": { - "_id": "5c0a794586f77461c458f892", - "_name": "Boss container", - "_parent": "5448bf274bdc2dfc2f8b456a", - "_type": "Item", - "_props": { - "Name": "Защищенный контейнер Босса", - "ShortName": "Boss-secured", - "Description": "", - "Weight": 1, - "BackgroundColor": "violet", - "Width": 3, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "container_case", - "Prefab": { - "path": "assets/content/items/containers/plano_pistol_case/item_plano_pistol_case.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": true, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5c0a794586f77461c458f894", - "_parent": "5c0a794586f77461c458f892", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 4, - "cellsV": 90, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [ - "SecuredContainer" - ], - "SearchSound": "techno_box_looting_01", - "BlocksArmorVest": false, - "containType": [], - "sizeWidth": 3, - "sizeHeight": 3, - "isSecured": true, - "spawnTypes": "None", - "lootFilter": [], - "spawnRarity": "Common", - "minCountSpawn": 0, - "maxCountSpawn": 0, - "openedByKeyID": [] - }, - "_proto": "544a11ac4bdc2d470e8b456a" - }, - "590c60fc86f77412b13fddcf": { - "_id": "590c60fc86f77412b13fddcf", - "_name": "item_info_docbag", - "_parent": "5795f317245977243854e041", - "_type": "Item", - "_props": { - "Name": "Docbag", - "ShortName": "Docbag", - "Description": "Docbag", - "Weight": 0.82, - "BackgroundColor": "blue", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/infosubject/item_info_docbag/item_info_docbag.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "590c60fc86f77412b13fddd0", - "_parent": "590c60fc86f77412b13fddcf", - "_props": { - "filters": [ - { - "Filter": [ - "59faff1d86f7746c51718c9c", - "5d235b4d86f7742e017bc88a", - "5f745ee30acaeb0d490d8c5b", - "619cbf9e0a7c3a1a2731940a", - "5448ecbe4bdc2d60728b4568", - "543be5e94bdc2df1348b4568", - "567849dd4bdc2d150f8b456e", - "543be5dd4bdc2deb348b4569" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 4, - "cellsV": 4, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "TagColor": 0, - "TagName": "" - }, - "_proto": "577e1c9d2459773cd707c525" - }, - "6401c7b213d9b818bf0e7dd7": { - "_id": "6401c7b213d9b818bf0e7dd7", - "_name": "WeaponStand_Stash_1", - "_parent": "63da6da4784a55176c018dba", - "_type": "Item", - "_props": { - "Name": "WeaponStand_Stash_lvl1", - "ShortName": "Item", - "Description": "Item", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/hideout_area_containers/weaponstand_stash_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "1", - "_id": "6401c7ff49ffb41e4e0c4477", - "_parent": "6401c7b213d9b818bf0e7dd7", - "_props": { - "filters": [ - { - "Filter": [ - "620109578d82e67e7911abf2", - "5cdeb229d7f00c000e7ce174", - "5beed0f50db834001c062b12", - "5d52cc5ba4b9367408500062", - "6176aca650224f204c1da3fb", - "5c46fbd72e2216398b5a8c9c", - "5df8ce05b11454561e39243b", - "5f2a9575926fd9352339381f", - "5a367e5dc4a282000e49738f", - "5aafa857e5b5b00018480968", - "5fc22d7c187fea44d52eda44", - "57838ad32459774a17445cd2", - "624c2e8614da335f1e034d8c", - "61a4c8884f95bc3b2c5dc96f", - "60db29ce99594040e04c4a27", - "633ec7c2a6918cb895019c6c", - "6275303a9f372d6ea97f9ec7", - "5e00903ae9dc277128008b87", - "5de7bd7bfd6b4e6e2276dc25", - "5cc82d76e24e8d00134b4b83", - "5d2f0d8048f0356c925bc3b0", - "5926bb2186f7744b1c6c6e60", - "5ba26383d4351e00334c93d9", - "5bd70322209c4d00d7167b8f", - "5fc3e272f8b6a877a729eac5", - "59984ab886f7743e98271174", - "59f9cabd86f7743a10721f46", - "58948c8e86f77409493f7266", - "60339954d62c9b14ed777c06", - "5fb64bc92b1b027b1f50bcf2", - "5fc3f2d5900b1d5091531e57", - "62e14904c2699c0ec93adc47", - "5ea03f7400685063ec28bfa8", - "57f3c6bd24597738e730fa2f", - "57d14d2524597714373db789", - "57f4c844245977379d5c14d1", - "627e14b21713922ded6f2c15", - "5bfd297f0db834001a669119", - "5ae08f0a5acfc408fb1398a1", - "55801eed4bdc2d89578b4588", - "588892092459774ac91d4b11", - "5de652c31b7e3716273428be", - "5df24cf80dee1b22f862e9bc", - "5bfea6e90db834001b7347f3", - "639af924d0446708ee62294e", - "639c3fbbd0446708ee622ee9", - "5e81ebcd8e146c7080625e15", - "5c07c60e0db834002330051f", - "5cadfbf7ae92152ac412eeef", - "606587252535c57a13424cfd", - "5447a9cd4bdc2dbd208b4567", - "5b0bbe4e5acfc40dc528a72d", - "5c488a752e221602b412af63", - "5dcbd56fdbd3d91b3e5468d5", - "6184055050224f204c1da540", - "618428466ef05c2ce828f218", - "6183afd850224f204c1da514", - "6165ac306ef05c2ce828ef74", - "5bb2475ed4351e00853264e3", - "623063e994fc3f7b302a9696", - "5ac66cb05acfc40198510a10", - "5ac66d015acfc400180ae6e4", - "5ac66d2e5acfc43b321d4b53", - "5ac66d725acfc43b321d4b60", - "5ac66d9b5acfc4001633997a", - "6499849fc93611967b034949", - "5bf3e03b0db834001d2c4a9c", - "5ac4cd105acfc40016339859", - "5644bd2b4bdc2d3b4c8b4572", - "59d6088586f774275f37482f", - "5a0ec13bfcdbcb00165aa685", - "59ff346386f77477562ff5e2", - "5abcbc27d8ce8700182eceeb", - "5bf3e0490db83400196199af", - "5ab8e9fcd8ce870019439434", - "57dc2fa62459775949412633", - "5839a40f24597726f856b511", - "583990e32459771419544dd2", - "5d43021ca4b9362eab4b5e25", - "59e6687d86f77411d949b251", - "59e6152586f77473dc057aa1", - "628a60ae6b1d481ff772e9c8", - "628b5638ad252a16da6dd245", - "628b9c37a733087d0d7fe84b", - "5fbcc1d9016cce60e8341ab3", - "62e7c4fba689e8c9c50dfc38", - "63171672192e68c5460cebc5", - "6259b864ebedf17603599e88", - "61f7c9e189e6fb1a5e3ea78d", - "576165642459773c7a400233", - "54491c4f4bdc2db1078b4568", - "56dee2bdd2720bc8328b4567", - "64748cb8de82c85eaf0a273a", - "5580223e4bdc2d1c128b457f", - "606dae0ab0e443224b421bb7", - "5e870397991fd70db46995c8", - "5a7828548dc32e5a9c28b516", - "5e848cc2988a8701445df1e8", - "5a38e6bac4a2826c6e06d79b", - "64637076203536ad5600c990", - "64ca3d3954fc657e230529cc", - "5447b5fc4bdc2d87278b4567", - "65290f395ae2ae97b80fdf2d", - "65268d8ecb944ff1e90ea385", - "6513ef33e06849f06c0957ca", - "5447b5cf4bdc2d65278b4567" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 9, - "cellsV": 6, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "LayoutName": "WeaponStand_Stash" - } - }, - "543be5f84bdc2dd4348b456a": { - "_id": "543be5f84bdc2dd4348b456a", - "_name": "Equipment", - "_parent": "566162e44bdc2d3f298b4573", - "_type": "Node", - "_props": { - "BlocksEarpiece": false, - "BlocksEyewear": false, - "BlocksHeadwear": false, - "BlocksFaceCover": false - } - }, - "575146b724597720a27126d5": { - "_id": "575146b724597720a27126d5", - "_name": "drink_milk", + "5751435d24597720a27126d1": { + "_id": "5751435d24597720a27126d1", + "_name": "drink_maxenergy", "_parent": "5448e8d64bdc2dce718b4568", "_type": "Item", "_props": { - "Name": "Carton of milk", - "ShortName": "Carton of milk", - "Description": "Carton of milk", - "Weight": 1, + "Name": "Max energy", + "ShortName": "Max energy", + "Description": "Max energy", + "Weight": 0.36, "BackgroundColor": "default", "Width": 1, - "Height": 2, + "Height": 1, "StackMaxSize": 1, - "ItemSound": "food_juice_carton", + "ItemSound": "food_soda_can", "Prefab": { - "path": "assets/content/weapons/usable_items/item_tetrapak/item_tetrapak_loot.bundle", + "path": "assets/content/weapons/usable_items/item_drink_cans/item_maxenergy_loot.bundle", "rcid": "" }, "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_tetrapak/item_tetrapak_container.bundle", + "path": "assets/content/weapons/usable_items/item_drink_cans/item_maxenergy_container.bundle", "rcid": "" }, "StackObjectsCount": 1, @@ -378593,7 +379727,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, + "LootExperience": 5, "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, @@ -378620,97 +379754,97 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "foodUseTime": 3, + "foodUseTime": 2, "foodEffectType": "afterUse", "MaxResource": 1, - "StimulatorBuffs": "Buffs_drink_milk", + "StimulatorBuffs": "Buffs_drink_maxenergy", + "effects_health": { + "Energy": { + "value": 12 + }, + "Hydration": { + "value": 20 + } + }, + "effects_damage": [] + }, + "_proto": "57513fcc24597720a31c09a6" + }, + "60b0f93284c20f0feb453da7": { + "_id": "60b0f93284c20f0feb453da7", + "_name": "item_drink_ratcola", + "_parent": "5448e8d64bdc2dce718b4568", + "_type": "Item", + "_props": { + "Name": "TarCola", + "ShortName": "TarCola", + "Description": "TarCola", + "Weight": 0.36, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "food_soda_can", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_drink_cans/item_ratcola_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_drink_cans/item_ratcola_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 4, + "foodEffectType": "afterUse", + "MaxResource": 1, + "StimulatorBuffs": "Buffs_drink_tarcola", "effects_health": { "Energy": { "value": 20 }, "Hydration": { - "value": 30 + "value": 20 } }, "effects_damage": [] }, - "_proto": "57514643245977207f2c2d09" - }, - "5e8f3423fd7471236e6e3b64": { - "_id": "5e8f3423fd7471236e6e3b64", - "_name": "item_drink_kvas", - "_parent": "5448e8d64bdc2dce718b4568", - "_type": "Item", - "_props": { - "Name": "item_drink_kvas", - "ShortName": "item_drink_kvas", - "Description": "item_drink_kvas", - "Weight": 0.621, - "BackgroundColor": "default", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "food_bottle", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_drink_kvas/item_drink_kvas_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_drink_kvas/item_drink_kvas_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 3, - "foodEffectType": "afterUse", - "MaxResource": 60, - "StimulatorBuffs": "", - "effects_health": { - "Energy": { - "value": 15 - }, - "Hydration": { - "value": 65 - } - }, - "effects_damage": [] - }, - "_proto": "5448fee04bdc2dbc018b4567" + "_proto": "5751435d24597720a27126d1" }, "62f109593b54472778797866": { "_id": "62f109593b54472778797866", @@ -379985,685 +381119,6 @@ "UniqueAnimationModID": 0 } }, - "557ffd194bdc2d28148b457f": { - "_id": "557ffd194bdc2d28148b457f", - "_name": "Карманы 1 на 4", - "_parent": "557596e64bdc2dc2118b4571", - "_type": "Item", - "_props": { - "Name": "Pockets", - "ShortName": "Pockets", - "Description": "Pockets", - "Weight": 0, - "BackgroundColor": "default", - "Width": 20, - "Height": 20, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": true, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": true, - "IsUnsaleable": true, - "IsUnbuyable": true, - "IsUngivable": true, - "IsLockedafterEquip": true, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "Pockets", - "UnlootableFromSide": [ - "Bear", - "Usec", - "Savage" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "pocket1", - "_id": "55d717004bdc2d89028b456c", - "_parent": "557ffd194bdc2d28148b457f", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "pocket2", - "_id": "55d717094bdc2d87028b456a", - "_parent": "557ffd194bdc2d28148b457f", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "pocket3", - "_id": "55d717104bdc2d89028b456d", - "_parent": "557ffd194bdc2d28148b457f", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - }, - { - "_name": "pocket4", - "_id": "55d717174bdc2d87028b456b", - "_parent": "557ffd194bdc2d28148b457f", - "_props": { - "filters": [ - { - "Filter": [ - "54009119af1c881c07000029" - ], - "ExcludedFilter": [ - "5448bf274bdc2dfc2f8b456a" - ] - } - ], - "cellsH": 1, - "cellsV": 1, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [ - "Pockets" - ], - "SearchSound": "looting_body_extended", - "BlocksArmorVest": false - } - }, - "5b7c710788a4506dec015957": { - "_id": "5b7c710788a4506dec015957", - "_name": "item_container_junkbox", - "_parent": "5795f317245977243854e041", - "_type": "Item", - "_props": { - "Name": "junkbox", - "ShortName": "junkbox", - "Description": "junkbox", - "Weight": 15, - "BackgroundColor": "yellow", - "Width": 4, - "Height": 4, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_junkbox/item_container_junkbox.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "5b7c710788a4506dec015959", - "_parent": "5b7c710788a4506dec015957", - "_props": { - "filters": [ - { - "Filter": [ - "5448eb774bdc2d0a728b4567", - "5448ecbe4bdc2d60728b4568", - "5447e0e74bdc2d3c308b4567" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 14, - "cellsV": 14, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "TagColor": 0, - "TagName": "" - }, - "_proto": "577e1c9d2459773cd707c525" - }, - "59fb016586f7746d0d4b423a": { - "_id": "59fb016586f7746d0d4b423a", - "_name": "item_container_money", - "_parent": "5795f317245977243854e041", - "_type": "Item", - "_props": { - "Name": "Moneycase", - "ShortName": "Moneycase", - "Description": "Moneycase", - "Weight": 5, - "BackgroundColor": "blue", - "Width": 3, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_metal", - "Prefab": { - "path": "assets/content/items/containers/item_container_money/item_container_money.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "59fb016586f7746d0d4b423b", - "_parent": "59fb016586f7746d0d4b423a", - "_props": { - "filters": [ - { - "Filter": [ - "59faff1d86f7746c51718c9c", - "5d235b4d86f7742e017bc88a", - "543be5dd4bdc2deb348b4569" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 7, - "cellsV": 7, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "TagColor": 0, - "TagName": "" - }, - "_proto": "577e1c9d2459773cd707c525" - }, - "59fb023c86f7746d0d4b423c": { - "_id": "59fb023c86f7746d0d4b423c", - "_name": "item_container_weaponcase", - "_parent": "5795f317245977243854e041", - "_type": "Item", - "_props": { - "Name": "Weaponcase", - "ShortName": "Weaponcase", - "Description": "Weaponcase", - "Weight": 9, - "BackgroundColor": "blue", - "Width": 5, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [ - { - "_name": "main", - "_id": "59fb023c86f7746d0d4b423d", - "_parent": "59fb023c86f7746d0d4b423c", - "_props": { - "filters": [ - { - "Filter": [ - "5448fe124bdc2da5018b4567", - "5422acb9af1c889c16000029", - "5485a8684bdc2da71d8b4567", - "543be5cb4bdc2deb348b4568" - ], - "ExcludedFilter": [] - } - ], - "cellsH": 5, - "cellsV": 10, - "minCount": 0, - "maxCount": 0, - "maxWeight": 0, - "isSortingTable": false - }, - "_proto": "55d329c24bdc2d892f8b4567" - } - ], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "TagColor": 0, - "TagName": "" - }, - "_proto": "577e1c9d2459773cd707c525" - }, - "5795f317245977243854e041": { - "_id": "5795f317245977243854e041", - "_name": "SimpleContainer", - "_parent": "566162e44bdc2d3f298b4573", - "_type": "Node", - "_props": { - "Name": "Item", - "ShortName": "Item", - "Description": "Item", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "Grids": [], - "Slots": [], - "CanPutIntoDuringTheRaid": true, - "CantRemoveFromSlotsDuringRaid": [], - "TagColor": 0, - "TagName": "" - } - }, - "5422acb9af1c889c16000029": { - "_id": "5422acb9af1c889c16000029", - "_name": "Weapon", - "_parent": "566162e44bdc2d3f298b4573", - "_type": "Node", - "_props": { - "weapClass": "smg", - "weapUseType": "primary", - "ammoCaliber": "Caliber9x18PM", - "Durability": 100, - "MaxDurability": 100, - "OperatingResource": 0, - "RepairComplexity": 0, - "durabSpawnMin": 0, - "durabSpawnMax": 0, - "isFastReload": false, - "weapFireType": [], - "SingleFireRate": 720, - "CanQueueSecondShot": true, - "bFirerate": 900, - "Ergonomics": 10, - "Velocity": 0, - "bEffDist": 1, - "bHearDist": 1, - "isChamberLoad": true, - "chamberAmmoCount": 1, - "isBoltCatch": false, - "defMagType": "5448bc234bdc2d3c308b4569", - "defAmmo": "5485a8684bdc2da71d8b4567", - "AdjustCollimatorsToTrajectory": false, - "shotgunDispersion": 10, - "Chambers": [], - "ReloadMode": "ExternalMagazine", - "CenterOfImpact": 0.01, - "AimPlane": 0, - "DeviationCurve": 1, - "DeviationMax": 100, - "Foldable": false, - "Retractable": false, - "TacticalReloadStiffnes": { - "x": 0.95, - "y": 0.33, - "z": 0.95 - }, - "TacticalReloadFixation": 0.95, - "RecoilCategoryMultiplierHandRotation": 1, - "RecoilReturnSpeedHandRotation": 1, - "RecoilDampingHandRotation": 0.81, - "RecoilCamera": -0.3, - "RecoilStableIndexShot": 4, - "RecoilForceBack": 100, - "RecoilForceUp": 50, - "RecolDispersion": 0, - "RecoilPosZMult": 1, - "RecoilReturnPathDampingHandRotation": 0.2, - "RecoilReturnPathOffsetHandRotation": 0.01, - "RecoilAngle": 90, - "RecoilStableAngleIncreaseStep": 2.5, - "ProgressRecoilAngleOnStable": { - "x": 0, - "y": 30, - "z": 0 - }, - "RecoilCenter": { - "x": 0, - "y": 0, - "z": 1 - }, - "PostRecoilVerticalRangeHandRotation": { - "x": -3, - "y": 0, - "z": 0 - }, - "PostRecoilHorizontalRangeHandRotation": { - "x": -3, - "y": 3, - "z": 0 - }, - "ShotsGroupSettings": [ - { - "StartShotIndex": 4, - "EndShotIndex": 99, - "ShotRecoilRotationStrength": { - "x": 0, - "y": 2, - "z": 0 - }, - "ShotRecoilPositionStrength": { - "x": 0, - "y": 0, - "z": 0 - }, - "ShotRecoilRadianRange": { - "x": -20, - "y": 20, - "z": 0 - } - } - ], - "CameraToWeaponAngleSpeedRange": { - "x": 0.01, - "y": 0.11, - "z": 0 - }, - "CameraToWeaponAngleStep": 0.01, - "CameraSnap": 3, - "RotationCenter": { - "x": 0, - "y": 0, - "z": 0 - }, - "RotationCenterNoStock": { - "x": 0, - "y": 0, - "z": 0 - }, - "MergesWithChildren": true, - "SizeReduceRight": 0, - "FoldedSlot": "", - "CompactHandling": false, - "SightingRange": 100, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "IronSightRange": 25, - "MustBoltBeOpennedForExternalReload": false, - "MustBoltBeOpennedForInternalReload": false, - "BoltAction": false, - "HipAccuracyRestorationDelay": 0.2, - "HipAccuracyRestorationSpeed": 7, - "HipInnaccuracyGain": 0.16, - "ManualBoltCatch": false, - "AimSensitivity": 0.65, - "BurstShotsCount": 3, - "BaseMalfunctionChance": 0, - "AllowJam": false, - "AllowFeed": false, - "AllowMisfire": false, - "AllowSlide": false, - "DurabilityBurnRatio": 1, - "HeatFactorGun": 1, - "CoolFactorGun": 1, - "CoolFactorGunMods": 1, - "HeatFactorByShot": 1, - "AllowOverheat": false, - "DoubleActionAccuracyPenalty": 1.5, - "MinRepairKitDegradation": 0, - "MaxRepairKitDegradation": 0, - "IsFlareGun": false, - "IsOneoff": false, - "IsGrenadeLauncher": false, - "NoFiremodeOnBoltcatch": false, - "IsStationaryWeapon": false, - "IsBeltMachineGun": false, - "WithAnimatorAiming": false, - "blockLeftStance": false - } - }, "5d1b33a686f7742523398398": { "_id": "5d1b33a686f7742523398398", "_name": "item_food_purewater", @@ -380745,40 +381200,40 @@ }, "_proto": "5448fee04bdc2dbc018b4567" }, - "5d1b376e86f774252519444e": { - "_id": "5d1b376e86f774252519444e", - "_name": "item_food_moonshine", - "_parent": "5448e8d64bdc2dce718b4568", + "5ae9a4fc86f7746e381e1753": { + "_id": "5ae9a4fc86f7746e381e1753", + "_name": "book_part_2", + "_parent": "5448ecbe4bdc2d60728b4568", "_type": "Item", "_props": { - "Name": "item_food_moonshine", - "ShortName": "item_food_moonshine", - "Description": "item_food_moonshine", - "Weight": 1.2, - "BackgroundColor": "violet", + "Name": "book_part_2", + "ShortName": "book_part_2", + "Description": "book_part_2", + "Weight": 0.3, + "BackgroundColor": "yellow", "Width": 1, "Height": 2, "StackMaxSize": 1, - "ItemSound": "food_bottle", + "ItemSound": "item_paper", "Prefab": { - "path": "assets/content/weapons/usable_items/item_alcohol_moonshine/item_alcohol_moonshine_loot.bundle", + "path": "assets/content/items/quest/item_quest_clothbook1/item_quest_clothbook2.bundle", "rcid": "" }, "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_alcohol_moonshine/item_alcohol_moonshine_container.bundle", + "path": "", "rcid": "" }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": true, + "ExaminedByDefault": false, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, "IsUnbuyable": false, "IsUngivable": false, "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, + "QuestItem": true, + "LootExperience": 40, "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, @@ -380799,58 +381254,36 @@ "DiscardingBlock": false, "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, + "DiscardLimit": -1, "DropSoundType": "None", "InsuranceDisabled": false, "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 6, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "Buffs_drink_moonshine", - "effects_health": { - "Energy": { - "value": 20 - }, - "Hydration": { - "value": -10 - } - }, - "effects_damage": { - "Pain": { - "delay": 0, - "duration": 500 - }, - "RadExposure": { - "delay": 0, - "duration": 0 - } - } + "IsUnremovable": false }, - "_proto": "5673de654bdc2d180f8b456d" + "_proto": "56742c324bdc2d150f8b456d" }, - "5448fee04bdc2dbc018b4567": { - "_id": "5448fee04bdc2dbc018b4567", - "_name": "Бутылка воды 0.6", - "_parent": "5448e8d64bdc2dce718b4568", + "57347d7224597744596b4e72": { + "_id": "57347d7224597744596b4e72", + "_name": "canned_beef", + "_parent": "5448e8d04bdc2ddf718b4569", "_type": "Item", "_props": { - "Name": "Water", - "ShortName": "Water", - "Description": "грязноватая бутылка воды 0.6", - "Weight": 0.65, + "Name": "Can of beef", + "ShortName": "Beef Can", + "Description": "Can of beef", + "Weight": 0.34, "BackgroundColor": "default", "Width": 1, - "Height": 2, + "Height": 1, "StackMaxSize": 1, - "ItemSound": "food_bottle", + "ItemSound": "food_tin_can", "Prefab": { - "path": "assets/content/weapons/usable_items/item_bottle/item_water_bottle_loot.bundle", + "path": "assets/content/weapons/usable_items/item_food_beefstew_2/item_food_beefstew_2_loot.bundle", "rcid": "" }, "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_bottle/item_water_bottle_container.bundle", + "path": "assets/content/weapons/usable_items/item_food_beefstew_2/item_food_beefstew_2_container.bundle", "rcid": "" }, "StackObjectsCount": 1, @@ -380863,7 +381296,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, + "LootExperience": 5, "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, @@ -380890,17 +381323,182 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "foodUseTime": 3, + "foodUseTime": 5, "foodEffectType": "afterUse", - "MaxResource": 60, + "MaxResource": 1, "StimulatorBuffs": "", "effects_health": { + "Energy": { + "value": 45 + }, "Hydration": { - "value": 60 + "value": -5 } }, "effects_damage": [] - } + }, + "_proto": "57347d692459774491567cf1" + }, + "5bc9b156d4351e00367fbce9": { + "_id": "5bc9b156d4351e00367fbce9", + "_name": "item_food_mayo", + "_parent": "5448e8d04bdc2ddf718b4569", + "_type": "Item", + "_props": { + "Name": "Can of pink salmon", + "ShortName": "Pink salmon", + "Description": "Can of pink salmon", + "Weight": 0.85, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "food_juice_carton", + "Prefab": { + "path": "assets/content/items/food/item_food_mayo/item_food_mayo.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_food_mayo/item_food_mayo_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 4, + "foodEffectType": "afterUse", + "MaxResource": 100, + "StimulatorBuffs": "Buffs_food_mayonez", + "effects_health": { + "Energy": { + "value": 100 + }, + "Hydration": { + "value": -99 + } + }, + "effects_damage": [] + }, + "_proto": "57347d3d245977448f7b7f61" + }, + "5d403f9186f7743cac3f229b": { + "_id": "5d403f9186f7743cac3f229b", + "_name": "item_food_jack", + "_parent": "5448e8d64bdc2dce718b4568", + "_type": "Item", + "_props": { + "Name": "item_food_jack", + "ShortName": "item_food_jack", + "Description": "item_food_jack", + "Weight": 1.4, + "BackgroundColor": "default", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "food_bottle", + "Prefab": { + "path": "assets/content/items/food/bottles_with_alcohol/item_food_jack.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_alcohol_whiskey/item_alcohol_whiskey_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 4, + "foodEffectType": "afterUse", + "MaxResource": 1, + "StimulatorBuffs": "Buffs_drink_jack", + "effects_health": { + "Energy": { + "value": 10 + }, + "Hydration": { + "value": -35 + } + }, + "effects_damage": { + "Pain": { + "delay": 0, + "duration": 210 + }, + "RadExposure": { + "delay": 0, + "duration": 0 + } + } + }, + "_proto": "57347d3d245977448f7b7f61" }, "5448e8d04bdc2ddf718b4569": { "_id": "5448e8d04bdc2ddf718b4569", @@ -380972,69 +381570,6 @@ }, "_proto": "56742c324bdc2d150f8b456d" }, - "64f5b4f71a5f313cb144c06c": { - "_id": "64f5b4f71a5f313cb144c06c", - "_name": "item_quest_cook1", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "item_info_intelligence", - "ShortName": "item_info_intelligence", - "Description": "item_info_intelligence", - "Weight": 0.23, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_book", - "Prefab": { - "path": "assets/content/items/quest/item_quest_bloodsample/item_quest_bloodsample.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, "590c621186f774138d11ea29": { "_id": "590c621186f774138d11ea29", "_name": "item_flash_card_ironkey", @@ -381098,6 +381633,69 @@ }, "_proto": "56742c324bdc2d150f8b456d" }, + "64f5b4f71a5f313cb144c06c": { + "_id": "64f5b4f71a5f313cb144c06c", + "_name": "item_quest_cook1", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "item_info_intelligence", + "ShortName": "item_info_intelligence", + "Description": "item_info_intelligence", + "Weight": 0.23, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_book", + "Prefab": { + "path": "assets/content/items/quest/item_quest_bloodsample/item_quest_bloodsample.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, "5c1f79a086f7746ed066fb8f": { "_id": "5c1f79a086f7746ed066fb8f", "_name": "item_lab_weap_store_room", @@ -381162,27 +381760,27 @@ }, "_proto": "5448ba0b4bdc2d02308b456c" }, - "5751496424597720a27126da": { - "_id": "5751496424597720a27126da", - "_name": "hotrod", + "60098b1705871270cd5352a1": { + "_id": "60098b1705871270cd5352a1", + "_name": "item_drink_waterration", "_parent": "5448e8d64bdc2dce718b4568", "_type": "Item", "_props": { - "Name": "Hot rod", - "ShortName": "Hot rod", - "Description": "Hot rod", - "Weight": 0.54, + "Name": "Water", + "ShortName": "Water", + "Description": "грязноватая бутылка воды 0.6", + "Weight": 0.128, "BackgroundColor": "default", "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "food_soda_can", + "ItemSound": "food_bottle", "Prefab": { - "path": "assets/content/weapons/usable_items/item_hotrod/item_hotrod_loot.bundle", + "path": "assets/content/weapons/usable_items/item_drink_waterration/item_drink_waterration_loot.bundle", "rcid": "" }, "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_hotrod/item_hotrod_container.bundle", + "path": "assets/content/weapons/usable_items/item_drink_waterration/item_drink_waterration_container.bundle", "rcid": "" }, "StackObjectsCount": 1, @@ -381225,40 +381823,40 @@ "foodUseTime": 2, "foodEffectType": "afterUse", "MaxResource": 1, - "StimulatorBuffs": "Buffs_drink_hotrod", + "StimulatorBuffs": "", "effects_health": { "Energy": { - "value": 10 + "value": 5 }, "Hydration": { - "value": 20 + "value": 50 } }, "effects_damage": [] }, - "_proto": "575146b724597720a27126d5" + "_proto": "5448fee04bdc2dbc018b4567" }, - "5bc9b156d4351e00367fbce9": { - "_id": "5bc9b156d4351e00367fbce9", - "_name": "item_food_mayo", + "65815f0e647e3d7246384e14": { + "_id": "65815f0e647e3d7246384e14", + "_name": "item_food_snacker_beef", "_parent": "5448e8d04bdc2ddf718b4569", "_type": "Item", "_props": { - "Name": "Can of pink salmon", - "ShortName": "Pink salmon", - "Description": "Can of pink salmon", - "Weight": 0.85, + "Name": "item_food_sprats", + "ShortName": "item_food_sprats", + "Description": "item_food_sprats", + "Weight": 0.28, "BackgroundColor": "violet", "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "food_juice_carton", + "ItemSound": "food_tin_can", "Prefab": { - "path": "assets/content/items/food/item_food_mayo/item_food_mayo.bundle", + "path": "assets/content/weapons/usable_items/item_food_snacker_beef/item_food_snacker_beef_loot.bundle", "rcid": "" }, "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_food_mayo/item_food_mayo_container.bundle", + "path": "assets/content/weapons/usable_items/item_food_snacker_beef/item_food_snacker_beef_container.bundle", "rcid": "" }, "StackObjectsCount": 1, @@ -381300,54 +381898,54 @@ "IsUnremovable": false, "foodUseTime": 4, "foodEffectType": "afterUse", - "MaxResource": 100, - "StimulatorBuffs": "Buffs_food_mayonez", + "MaxResource": 1, + "StimulatorBuffs": "", "effects_health": { "Energy": { - "value": 100 + "value": 55 }, "Hydration": { - "value": -99 + "value": -5 } }, "effects_damage": [] }, - "_proto": "57347d3d245977448f7b7f61" + "_proto": "57347d692459774491567cf1" }, - "57513fcc24597720a31c09a6": { - "_id": "57513fcc24597720a31c09a6", - "_name": "drink_juice_vita", - "_parent": "5448e8d64bdc2dce718b4568", + "593965cf86f774087a77e1b6": { + "_id": "593965cf86f774087a77e1b6", + "_name": "case_0048", + "_parent": "5448ecbe4bdc2d60728b4568", "_type": "Item", "_props": { - "Name": "Vita juice", - "ShortName": "Vita juice", - "Description": "Vita juice", - "Weight": 1, - "BackgroundColor": "default", + "Name": "Case folder 0048", + "ShortName": "Case folder 0048", + "Description": "Case folder 0048", + "Weight": 0.8, + "BackgroundColor": "yellow", "Width": 1, "Height": 2, "StackMaxSize": 1, - "ItemSound": "food_juice_carton", + "ItemSound": "item_plastic_generic", "Prefab": { - "path": "assets/content/weapons/usable_items/item_juice/item_juice_vita_loot.bundle", + "path": "assets/content/items/quest/item_quest_container_case_folder/item_quest_container_case_0048.bundle", "rcid": "" }, "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_juice/item_juice_vita_container.bundle", + "path": "", "rcid": "" }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": true, + "ExaminedByDefault": false, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, "IsUnbuyable": false, "IsUngivable": false, "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, + "QuestItem": true, + "LootExperience": 40, "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, @@ -381373,224 +381971,44 @@ "InsuranceDisabled": false, "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 4, - "foodEffectType": "afterUse", - "MaxResource": 40, - "StimulatorBuffs": "", - "effects_health": { - "Energy": { - "value": 8 - }, - "Hydration": { - "value": 28 - } - }, - "effects_damage": [] + "IsUnremovable": false }, - "_proto": "57513f9324597720a7128161" + "_proto": "56742c324bdc2d150f8b456d" }, - "5d40407c86f774318526545a": { - "_id": "5d40407c86f774318526545a", - "_name": "item_food_vodka", - "_parent": "5448e8d64bdc2dce718b4568", + "591093bb86f7747caa7bb2ee": { + "_id": "591093bb86f7747caa7bb2ee", + "_name": "item_quest_letter", + "_parent": "5448ecbe4bdc2d60728b4568", "_type": "Item", "_props": { - "Name": "item_food_vodka", - "ShortName": "item_food_vodka", - "Description": "item_food_vodka", - "Weight": 1.6, - "BackgroundColor": "default", + "Name": "Letter", + "ShortName": "Letter", + "Description": "Letter", + "Weight": 0.2, + "BackgroundColor": "yellow", "Width": 1, "Height": 2, "StackMaxSize": 1, - "ItemSound": "food_bottle", + "ItemSound": "item_paper", "Prefab": { - "path": "assets/content/items/food/bottles_with_alcohol/item_food_vodka.bundle", + "path": "assets/content/items/quest/item_quest_letter/item_quest_letter.bundle", "rcid": "" }, "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_alcohol_vodka/item_alcohol_vodka_container.bundle", + "path": "", "rcid": "" }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": true, + "ExaminedByDefault": false, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, "IsUnbuyable": false, "IsUngivable": false, "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 5, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "Buffs_drink_vodka", - "effects_health": { - "Hydration": { - "value": -50 - } - }, - "effects_damage": { - "Pain": { - "delay": 0, - "duration": 250 - }, - "RadExposure": { - "delay": 0, - "duration": 0 - } - } - }, - "_proto": "5673de654bdc2d180f8b456d" - }, - "5d403f9186f7743cac3f229b": { - "_id": "5d403f9186f7743cac3f229b", - "_name": "item_food_jack", - "_parent": "5448e8d64bdc2dce718b4568", - "_type": "Item", - "_props": { - "Name": "item_food_jack", - "ShortName": "item_food_jack", - "Description": "item_food_jack", - "Weight": 1.4, - "BackgroundColor": "default", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "food_bottle", - "Prefab": { - "path": "assets/content/items/food/bottles_with_alcohol/item_food_jack.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_alcohol_whiskey/item_alcohol_whiskey_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 4, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "Buffs_drink_jack", - "effects_health": { - "Energy": { - "value": 10 - }, - "Hydration": { - "value": -35 - } - }, - "effects_damage": { - "Pain": { - "delay": 0, - "duration": 210 - }, - "RadExposure": { - "delay": 0, - "duration": 0 - } - } - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "590c5d4b86f774784e1b9c45": { - "_id": "590c5d4b86f774784e1b9c45", - "_name": "item_food_ration", - "_parent": "5448e8d04bdc2ddf718b4569", - "_type": "Item", - "_props": { - "Name": "ration", - "ShortName": "ration", - "Description": "ration", - "Weight": 1.75, - "BackgroundColor": "default", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "food_snack", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_ifr/item_ifr_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_ifr/item_irf_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, + "QuestItem": true, + "LootExperience": 20, "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, @@ -381616,19 +382034,644 @@ "InsuranceDisabled": false, "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 5, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "", - "effects_health": { - "Energy": { - "value": 80 - } - }, - "effects_damage": [] + "IsUnremovable": false }, - "_proto": "5448ff904bdc2d6f028b456e" + "_proto": "56742c324bdc2d150f8b456d" + }, + "5939e9b286f77462a709572c": { + "_id": "5939e9b286f77462a709572c", + "_name": "letter_terragroup", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "Letter TG", + "ShortName": "Letter TG", + "Description": "Letter TG", + "Weight": 0.2, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_paper", + "Prefab": { + "path": "assets/content/items/quest/item_quest_letter/item_quest_letter_terragroup.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "62a09e73af34e73a266d932a": { + "_id": "62a09e73af34e73a266d932a", + "_name": "item_info_book_bakeezy", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "diary", + "ShortName": "diary", + "Description": "diary", + "Weight": 0.25, + "BackgroundColor": "violet", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_book", + "Prefab": { + "path": "assets/content/items/barter/item_info_book_bakeezy/item_info_book_bakeezy.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "6331bb0d1aa9f42b804997a6": { + "_id": "6331bb0d1aa9f42b804997a6", + "_name": "item_flash_card_soft_v3", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "flashdrive", + "ShortName": "flashdrive", + "Description": "flashdrive", + "Weight": 0.08, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/infosubject/item_flash_card_ironkey.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "64e74a44c2b4f829615ec334": { + "_id": "64e74a44c2b4f829615ec334", + "_name": "item_quest_clock_08", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "book_part_1", + "ShortName": "book_part_1", + "Description": "book_part_1", + "Weight": 0.3, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_paper", + "Prefab": { + "path": "assets/content/items/quest/item_quest_clock/item_quest_clock_08.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 40, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "6582bd252b50c61c565828e2": { + "_id": "6582bd252b50c61c565828e2", + "_name": "item_info_vine_quest", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "Бутылка вина Le Jean", + "ShortName": "Вино", + "Description": "Бутылка редкого коллекционного французского вина Le Jean.", + "Weight": 0.9, + "BackgroundColor": "blue", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_book", + "Prefab": { + "path": "assets/content/items/quest/item_quest_jean_wine/item_quest_jean_wine.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "57a349b2245977762b199ec7": { + "_id": "57a349b2245977762b199ec7", + "_name": "Factory office", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "5da743f586f7744014504f72": { + "_id": "5da743f586f7744014504f72", + "_name": "bigmap_key_usec1", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "591afe0186f77431bd616a11": { + "_id": "591afe0186f77431bd616a11", + "_name": "bunker2 wood exit", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "bunker2 woods exit", + "ShortName": "bunker2 woods exit", + "Description": "bunker2 woods exit", + "Weight": 0.01, + "BackgroundColor": "green", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5d80c78786f774403a401e3e": { + "_id": "5d80c78786f774403a401e3e", + "_name": "rezbase_key_barrleft_computer", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5d8e3ecc86f774414c78d05e": { + "_id": "5d8e3ecc86f774414c78d05e", + "_name": "rezbase_key_gen_room", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_7.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" }, "57347d3d245977448f7b7f61": { "_id": "57347d3d245977448f7b7f61", @@ -381706,6 +382749,79 @@ }, "_proto": "5673de654bdc2d180f8b456d" }, + "590c5d4b86f774784e1b9c45": { + "_id": "590c5d4b86f774784e1b9c45", + "_name": "item_food_ration", + "_parent": "5448e8d04bdc2ddf718b4569", + "_type": "Item", + "_props": { + "Name": "ration", + "ShortName": "ration", + "Description": "ration", + "Weight": 1.75, + "BackgroundColor": "default", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "food_snack", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_ifr/item_ifr_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_ifr/item_irf_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 5, + "foodEffectType": "afterUse", + "MaxResource": 1, + "StimulatorBuffs": "", + "effects_health": { + "Energy": { + "value": 80 + } + }, + "effects_damage": [] + }, + "_proto": "5448ff904bdc2d6f028b456e" + }, "5448e8d64bdc2dce718b4568": { "_id": "5448e8d64bdc2dce718b4568", "_name": "Drink", @@ -382219,779 +383335,6 @@ }, "_proto": "5780d07a2459777de4559324" }, - "65815f0e647e3d7246384e14": { - "_id": "65815f0e647e3d7246384e14", - "_name": "item_food_snacker_beef", - "_parent": "5448e8d04bdc2ddf718b4569", - "_type": "Item", - "_props": { - "Name": "item_food_sprats", - "ShortName": "item_food_sprats", - "Description": "item_food_sprats", - "Weight": 0.28, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "food_tin_can", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_food_snacker_beef/item_food_snacker_beef_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_food_snacker_beef/item_food_snacker_beef_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 4, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "", - "effects_health": { - "Energy": { - "value": 55 - }, - "Hydration": { - "value": -5 - } - }, - "effects_damage": [] - }, - "_proto": "57347d692459774491567cf1" - }, - "593965cf86f774087a77e1b6": { - "_id": "593965cf86f774087a77e1b6", - "_name": "case_0048", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "Case folder 0048", - "ShortName": "Case folder 0048", - "Description": "Case folder 0048", - "Weight": 0.8, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/quest/item_quest_container_case_folder/item_quest_container_case_0048.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "591093bb86f7747caa7bb2ee": { - "_id": "591093bb86f7747caa7bb2ee", - "_name": "item_quest_letter", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "Letter", - "ShortName": "Letter", - "Description": "Letter", - "Weight": 0.2, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_paper", - "Prefab": { - "path": "assets/content/items/quest/item_quest_letter/item_quest_letter.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "5939e9b286f77462a709572c": { - "_id": "5939e9b286f77462a709572c", - "_name": "letter_terragroup", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "Letter TG", - "ShortName": "Letter TG", - "Description": "Letter TG", - "Weight": 0.2, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_paper", - "Prefab": { - "path": "assets/content/items/quest/item_quest_letter/item_quest_letter_terragroup.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "6331bb0d1aa9f42b804997a6": { - "_id": "6331bb0d1aa9f42b804997a6", - "_name": "item_flash_card_soft_v3", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "flashdrive", - "ShortName": "flashdrive", - "Description": "flashdrive", - "Weight": 0.08, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/infosubject/item_flash_card_ironkey.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "64e74a44c2b4f829615ec334": { - "_id": "64e74a44c2b4f829615ec334", - "_name": "item_quest_clock_08", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "book_part_1", - "ShortName": "book_part_1", - "Description": "book_part_1", - "Weight": 0.3, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_paper", - "Prefab": { - "path": "assets/content/items/quest/item_quest_clock/item_quest_clock_08.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "6582bd252b50c61c565828e2": { - "_id": "6582bd252b50c61c565828e2", - "_name": "item_info_vine_quest", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "Бутылка вина Le Jean", - "ShortName": "Вино", - "Description": "Бутылка редкого коллекционного французского вина Le Jean.", - "Weight": 0.9, - "BackgroundColor": "blue", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_book", - "Prefab": { - "path": "assets/content/items/quest/item_quest_jean_wine/item_quest_jean_wine.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "62a09e73af34e73a266d932a": { - "_id": "62a09e73af34e73a266d932a", - "_name": "item_info_book_bakeezy", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "diary", - "ShortName": "diary", - "Description": "diary", - "Weight": 0.25, - "BackgroundColor": "violet", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_book", - "Prefab": { - "path": "assets/content/items/barter/item_info_book_bakeezy/item_info_book_bakeezy.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "57a349b2245977762b199ec7": { - "_id": "57a349b2245977762b199ec7", - "_name": "Factory office", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "5da743f586f7744014504f72": { - "_id": "5da743f586f7744014504f72", - "_name": "bigmap_key_usec1", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "591afe0186f77431bd616a11": { - "_id": "591afe0186f77431bd616a11", - "_name": "bunker2 wood exit", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "bunker2 woods exit", - "ShortName": "bunker2 woods exit", - "Description": "bunker2 woods exit", - "Weight": 0.01, - "BackgroundColor": "green", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5d80c78786f774403a401e3e": { - "_id": "5d80c78786f774403a401e3e", - "_name": "rezbase_key_barrleft_computer", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, "5751487e245977207e26a315": { "_id": "5751487e245977207e26a315", "_name": "emelya", @@ -383384,1061 +383727,6 @@ }, "_proto": "5671446a4bdc2d97058b4569" }, - "544fb62a4bdc2dfb738b4568": { - "_id": "544fb62a4bdc2dfb738b4568", - "_name": "juice_army", - "_parent": "5448e8d64bdc2dce718b4568", - "_type": "Item", - "_props": { - "Name": "Пачка армейского сока (яблочный)", - "ShortName": "Apple juice", - "Description": "сок сочок", - "Weight": 1, - "BackgroundColor": "default", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "food_juice_carton", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_tetrapak/item_juice_army_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_tetrapak/item_juice_army_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 3, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "Buffs_drink_juice_army", - "effects_health": { - "Energy": { - "value": 8 - }, - "Hydration": { - "value": 30 - } - }, - "effects_damage": [] - } - }, - "60098b1705871270cd5352a1": { - "_id": "60098b1705871270cd5352a1", - "_name": "item_drink_waterration", - "_parent": "5448e8d64bdc2dce718b4568", - "_type": "Item", - "_props": { - "Name": "Water", - "ShortName": "Water", - "Description": "грязноватая бутылка воды 0.6", - "Weight": 0.128, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "food_bottle", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_drink_waterration/item_drink_waterration_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_drink_waterration/item_drink_waterration_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 2, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "", - "effects_health": { - "Energy": { - "value": 5 - }, - "Hydration": { - "value": 50 - } - }, - "effects_damage": [] - }, - "_proto": "5448fee04bdc2dbc018b4567" - }, - "5751435d24597720a27126d1": { - "_id": "5751435d24597720a27126d1", - "_name": "drink_maxenergy", - "_parent": "5448e8d64bdc2dce718b4568", - "_type": "Item", - "_props": { - "Name": "Max energy", - "ShortName": "Max energy", - "Description": "Max energy", - "Weight": 0.36, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "food_soda_can", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_drink_cans/item_maxenergy_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_drink_cans/item_maxenergy_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 2, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "Buffs_drink_maxenergy", - "effects_health": { - "Energy": { - "value": 12 - }, - "Hydration": { - "value": 20 - } - }, - "effects_damage": [] - }, - "_proto": "57513fcc24597720a31c09a6" - }, - "6389c92d52123d5dd17f8876": { - "_id": "6389c92d52123d5dd17f8876", - "_name": "Item_barter_info_book_ematerials", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "manual", - "ShortName": "manual", - "Description": "manual", - "Weight": 0.5, - "BackgroundColor": "violet", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_book", - "Prefab": { - "path": "assets/content/items/barter/item_barter_info_book_ematerials/item_barter_info_book_ematerials.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "64e74a274d49d23b2c39d317": { - "_id": "64e74a274d49d23b2c39d317", - "_name": "item_quest_clock_04", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "book_part_1", - "ShortName": "book_part_1", - "Description": "book_part_1", - "Weight": 0.3, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_paper", - "Prefab": { - "path": "assets/content/items/quest/item_quest_clock/item_quest_clock_04.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "64e74a534d49d23b2c39d31b": { - "_id": "64e74a534d49d23b2c39d31b", - "_name": "item_quest_clock_10", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "book_part_1", - "ShortName": "book_part_1", - "Description": "book_part_1", - "Weight": 0.3, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_paper", - "Prefab": { - "path": "assets/content/items/quest/item_quest_clock/item_quest_clock_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "5addaffe86f77470b455f900": { - "_id": "5addaffe86f77470b455f900", - "_name": "Key_Shopping_Mall_KIBA_2", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA_2", - "ShortName": "Key_Shopping_Mall_KIBA_2", - "Description": "Key_Shopping_Mall_KIBA_2", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5ad5d20586f77449be26d877": { - "_id": "5ad5d20586f77449be26d877", - "_name": "Key_Shopping_Mall_storeroom_OLI", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_storeroom_OLI", - "ShortName": "Key_Shopping_Mall_storeroom_OLI", - "Description": "Key_Shopping_Mall_storeroom_OLI", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_8.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5d08d21286f774736e7c94c3": { - "_id": "5d08d21286f774736e7c94c3", - "_name": "Key_boss_koj", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_boss_koj", - "ShortName": "Key_boss_koj", - "Description": "Key_boss_koj", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 1 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5ad7217186f7746744498875": { - "_id": "5ad7217186f7746744498875", - "_name": "Key_cash_machine_OLI", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_cash_machine_OLI", - "ShortName": "Key_cash_machine_OLI", - "Description": "Key_cash_machine_OLI", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "59148f8286f7741b951ea113": { - "_id": "59148f8286f7741b951ea113", - "_name": "gunsafe", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "gunsafe key", - "ShortName": "gunsafe key", - "Description": "gunsafe key", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5c1e2d1f86f77431e9280bee": { - "_id": "5c1e2d1f86f77431e9280bee", - "_name": "item_lab_test_weapon", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "item_lab_test_weapon", - "ShortName": "item_lab_test_weapon", - "Description": "item_lab_test_weapon", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_9.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5448ba0b4bdc2d02308b456c" - }, - "61a64428a8c6aa1b795f0ba1": { - "_id": "61a64428a8c6aa1b795f0ba1", - "_name": "lighthouse_key1", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "61aa5b7db225ac1ead7957c1": { - "_id": "61aa5b7db225ac1ead7957c1", - "_name": "lighthouse_key7", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "5938603e86f77435642354f4": { - "_id": "5938603e86f77435642354f4", - "_name": "mo 206 voda", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "mal obsh 206", - "ShortName": "mal obsh 206", - "Description": "mal obsh 206", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "57518f7724597720a31c09ab" - }, - "5ae9a4fc86f7746e381e1753": { - "_id": "5ae9a4fc86f7746e381e1753", - "_name": "book_part_2", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "book_part_2", - "ShortName": "book_part_2", - "Description": "book_part_2", - "Weight": 0.3, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_paper", - "Prefab": { - "path": "assets/content/items/quest/item_quest_clothbook1/item_quest_clothbook2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, "619268ad78f4fa33f173dbe5": { "_id": "619268ad78f4fa33f173dbe5", "_name": "quest_find_data", @@ -384884,32 +384172,32 @@ }, "_proto": "57518f7724597720a31c09ab" }, - "5c0fa877d174af02a012e1cf": { - "_id": "5c0fa877d174af02a012e1cf", - "_name": "drink_aquamari", - "_parent": "5448e8d64bdc2dce718b4568", + "5d80c60f86f77440373c4ece": { + "_id": "5d80c60f86f77440373c4ece", + "_name": "rezbase_key_kult1", + "_parent": "5c99f98d86f7745c314214b3", "_type": "Item", "_props": { - "Name": "Water", - "ShortName": "Water", - "Description": "грязноватая бутылка воды 0.6", - "Weight": 0.6, - "BackgroundColor": "default", + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "yellow", "Width": 1, - "Height": 2, + "Height": 1, "StackMaxSize": 1, - "ItemSound": "food_bottle", + "ItemSound": "keys", "Prefab": { - "path": "assets/content/weapons/usable_items/item_filterbottle/item_filterbottle_loot.bundle", + "path": "assets/content/items/spec/keys/item_key_12.bundle", "rcid": "" }, "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_filterbottle/item_filterbottle_container.bundle", + "path": "", "rcid": "" }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": true, + "ExaminedByDefault": false, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -384917,8 +384205,8 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, + "LootExperience": 150, + "ExamineExperience": 100, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -384938,49 +384226,37 @@ "DiscardingBlock": false, "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, + "DiscardLimit": 0, "DropSoundType": "None", "InsuranceDisabled": false, "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "foodUseTime": 3, - "foodEffectType": "afterUse", - "MaxResource": 50, - "StimulatorBuffs": "", - "effects_health": { - "Energy": { - "value": 20 - }, - "Hydration": { - "value": 100 - } - }, - "effects_damage": [] + "MaximumNumberOfUsage": 10 }, - "_proto": "5448fee04bdc2dbc018b4567" + "_proto": "5671446a4bdc2d97058b4569" }, - "57347d7224597744596b4e72": { - "_id": "57347d7224597744596b4e72", - "_name": "canned_beef", + "57347d5f245977448b40fa81": { + "_id": "57347d5f245977448b40fa81", + "_name": "humpback", "_parent": "5448e8d04bdc2ddf718b4569", "_type": "Item", "_props": { - "Name": "Can of beef", - "ShortName": "Beef Can", - "Description": "Can of beef", - "Weight": 0.34, + "Name": "Can of pink salmon", + "ShortName": "Pink salmon", + "Description": "Can of pink salmon", + "Weight": 0.28, "BackgroundColor": "default", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "food_tin_can", "Prefab": { - "path": "assets/content/weapons/usable_items/item_food_beefstew_2/item_food_beefstew_2_loot.bundle", + "path": "assets/content/weapons/usable_items/item_food_humpback/item_food_humpback_loot.bundle", "rcid": "" }, "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_food_beefstew_2/item_food_beefstew_2_container.bundle", + "path": "assets/content/weapons/usable_items/item_food_humpback/item_food_humpback_container.bundle", "rcid": "" }, "StackObjectsCount": 1, @@ -385026,7 +384302,7 @@ "StimulatorBuffs": "", "effects_health": { "Energy": { - "value": 45 + "value": 50 }, "Hydration": { "value": -5 @@ -385034,25 +384310,164 @@ }, "effects_damage": [] }, - "_proto": "57347d692459774491567cf1" + "_proto": "57347d3d245977448f7b7f61" }, - "590c62a386f77412b0130255": { - "_id": "590c62a386f77412b0130255", - "_name": "item_flash_card_slider", - "_parent": "5448ecbe4bdc2d60728b4568", + "59e3577886f774176a362503": { + "_id": "59e3577886f774176a362503", + "_name": "item_food_sugar", + "_parent": "5448e8d04bdc2ddf718b4569", "_type": "Item", "_props": { - "Name": "flashdrive", - "ShortName": "flashdrive", - "Description": "flashdrive", - "Weight": 0.1, - "BackgroundColor": "yellow", + "Name": "Сахар", + "ShortName": "Сахар", + "Description": "Сахар", + "Weight": 0.5, + "BackgroundColor": "default", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/infosubject/item_flash_card_slider.bundle", + "path": "assets/content/weapons/usable_items/item_sugar/item_sugar_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_sugar/item_food_sugar_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 9, + "foodEffectType": "afterUse", + "MaxResource": 70, + "StimulatorBuffs": "Buffs_food_sugar", + "effects_health": { + "Energy": { + "value": 70 + }, + "Hydration": { + "value": -45 + } + }, + "effects_damage": [] + }, + "_proto": "544fb6cc4bdc2d34748b456e" + }, + "5a294d8486f774068638cd93": { + "_id": "5a294d8486f774068638cd93", + "_name": "quest_sas_san2", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "SAS_san2", + "ShortName": "SAS_san2", + "Description": "SAS_san2", + "Weight": 0.8, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/barter/sas/item_barter_electr_sas.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 150, + "ExamineExperience": 45, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "573477e124597737dd42e191" + }, + "5d3ec50586f774183a607442": { + "_id": "5d3ec50586f774183a607442", + "_name": "quest_hunt_message", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "item_info_intelligence", + "ShortName": "item_info_intelligence", + "Description": "item_info_intelligence", + "Weight": 0.23, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/quest/item_quest_envelope/item_quest_envelope.bundle", "rcid": "" }, "UsePrefab": { @@ -385099,149 +384514,23 @@ }, "_proto": "56742c324bdc2d150f8b456d" }, - "638e0057ab150a5f56238960": { - "_id": "638e0057ab150a5f56238960", - "_name": "item_quest_c10_jek", + "590c392f86f77444754deb29": { + "_id": "590c392f86f77444754deb29", + "_name": "item_barter_electr_ssd", "_parent": "5448ecbe4bdc2d60728b4568", "_type": "Item", "_props": { - "Name": "diary", - "ShortName": "diary", - "Description": "diary", - "Weight": 0.2, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_book", - "Prefab": { - "path": "assets/content/items/infosubject/item_thick_diary.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "62a0a124de7ac81993580542": { - "_id": "62a0a124de7ac81993580542", - "_name": "item_barter_info_maps", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "item_info_intelligence", - "ShortName": "item_info_intelligence", - "Description": "item_info_intelligence", - "Weight": 0.27, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_book", - "Prefab": { - "path": "assets/content/items/barter/item_barter_info_maps/item_barter_info_maps.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "62a0a16d0b9d3c46de5b6e97": { - "_id": "62a0a16d0b9d3c46de5b6e97", - "_name": "item_barter_info_militaryflash", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "flashdrive", - "ShortName": "flashdrive", - "Description": "flashdrive", - "Weight": 0.14, + "Name": "SSD", + "ShortName": "SSD", + "Description": "SSD", + "Weight": 0.04, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/barter/item_barter_info_militaryflash/item_barter_info_militaryflash.bundle", + "path": "assets/content/items/barter/ssd/item_barter_electr_ssd.bundle", "rcid": "" }, "UsePrefab": { @@ -385288,333 +384577,15 @@ }, "_proto": "56742c324bdc2d150f8b456d" }, - "64e74a1faac4cd0a7264ecd9": { - "_id": "64e74a1faac4cd0a7264ecd9", - "_name": "item_quest_clock_03", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "book_part_1", - "ShortName": "book_part_1", - "Description": "book_part_1", - "Weight": 0.3, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_paper", - "Prefab": { - "path": "assets/content/items/quest/item_quest_clock/item_quest_clock_03.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "64f69b4267e11a7c6206e010": { - "_id": "64f69b4267e11a7c6206e010", - "_name": "item_quest_cook_diary", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "diary", - "ShortName": "diary", - "Description": "diary", - "Weight": 0.2, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_book", - "Prefab": { - "path": "assets/content/items/infosubject/item_thick_diary.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "5ad5db3786f7743568421cce": { - "_id": "5ad5db3786f7743568421cce", - "_name": "Key_Shopping_Mall_mchs", + "5c1e2a1e86f77431ea0ea84c": { + "_id": "5c1e2a1e86f77431ea0ea84c", + "_name": "item_lab_glass_office", "_parent": "5c99f98d86f7745c314214b3", "_type": "Item", "_props": { - "Name": "Key_Shopping_Mall_mchs", - "ShortName": "Key_Shopping_Mall_mchs", - "Description": "Key_Shopping_Mall_mchs", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5ad5ccd186f774446d5706e9": { - "_id": "5ad5ccd186f774446d5706e9", - "_name": "Key_Shopping_Mall_office_1", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_office_1", - "ShortName": "Key_Shopping_Mall_office_1", - "Description": "Key_Shopping_Mall_office_1", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_8.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5a0448bc86f774736f14efa8": { - "_id": "5a0448bc86f774736f14efa8", - "_name": "Quest Drugs Key", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Quest Drugs Key", - "ShortName": "Quest Drugs Key", - "Description": "Quest Drugs Key", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780cf9e2459777df90dcb73" - }, - "5e42c71586f7747f245e1343": { - "_id": "5e42c71586f7747f245e1343", - "_name": "key_inter_aid", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", + "Name": "item_lab_glass_office", + "ShortName": "item_lab_glass_office", + "Description": "item_lab_glass_office", "Weight": 0.01, "BackgroundColor": "violet", "Width": 1, @@ -385639,6 +384610,70 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5448ba0b4bdc2d02308b456c" + }, + "591ae8f986f77406f854be45": { + "_id": "591ae8f986f77406f854be45", + "_name": "lulkin toyota", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "lulkin car", + "ShortName": "lulkin car", + "Description": "lulkin car", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/quest/auto_key/auto_key.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, "LootExperience": 20, "ExamineExperience": 10, "HideEntrails": false, @@ -385670,27 +384705,27 @@ }, "_proto": "5671446a4bdc2d97058b4569" }, - "57514643245977207f2c2d09": { - "_id": "57514643245977207f2c2d09", - "_name": "drink_tarcola", - "_parent": "5448e8d64bdc2dce718b4568", + "5448ff904bdc2d6f028b456e": { + "_id": "5448ff904bdc2d6f028b456e", + "_name": "хлебцы армейские", + "_parent": "5448e8d04bdc2ddf718b4569", "_type": "Item", "_props": { - "Name": "TarCola", - "ShortName": "TarCola", - "Description": "TarCola", - "Weight": 0.36, + "Name": "Crackers", + "ShortName": "Crackers", + "Description": "Crackers", + "Weight": 0.2, "BackgroundColor": "default", "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "food_soda_can", + "ItemSound": "food_snack", "Prefab": { - "path": "assets/content/weapons/usable_items/item_drink_cans/item_tarcola_loot.bundle", + "path": "assets/content/weapons/usable_items/item_galette/item_galette_loot.bundle", "rcid": "" }, "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_drink_cans/item_tarcola_container.bundle", + "path": "assets/content/weapons/usable_items/item_galette/item_galette_container.bundle", "rcid": "" }, "StackObjectsCount": 1, @@ -385733,18 +384768,17 @@ "foodUseTime": 4, "foodEffectType": "afterUse", "MaxResource": 1, - "StimulatorBuffs": "Buffs_drink_tarcola", + "StimulatorBuffs": "", "effects_health": { "Energy": { - "value": 5 + "value": 10 }, "Hydration": { - "value": 15 + "value": -5 } }, "effects_damage": [] - }, - "_proto": "5751435d24597720a27126d1" + } }, "590c5f0d86f77413997acfab": { "_id": "590c5f0d86f77413997acfab", @@ -385895,81 +384929,6 @@ }, "_proto": "57347d5f245977448b40fa81" }, - "5448ff904bdc2d6f028b456e": { - "_id": "5448ff904bdc2d6f028b456e", - "_name": "хлебцы армейские", - "_parent": "5448e8d04bdc2ddf718b4569", - "_type": "Item", - "_props": { - "Name": "Crackers", - "ShortName": "Crackers", - "Description": "Crackers", - "Weight": 0.2, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "food_snack", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_galette/item_galette_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_galette/item_galette_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 4, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "", - "effects_health": { - "Energy": { - "value": 10 - }, - "Hydration": { - "value": -5 - } - }, - "effects_damage": [] - } - }, "5ae9a3f586f7740aab00e4e6": { "_id": "5ae9a3f586f7740aab00e4e6", "_name": "book_part_1", @@ -386540,175 +385499,23 @@ }, "_proto": "5671446a4bdc2d97058b4569" }, - "57347d5f245977448b40fa81": { - "_id": "57347d5f245977448b40fa81", - "_name": "humpback", - "_parent": "5448e8d04bdc2ddf718b4569", + "5d80c6fc86f774403a401e3c": { + "_id": "5d80c6fc86f774403a401e3c", + "_name": "rezbase_key_barrmid_shotrange", + "_parent": "5c99f98d86f7745c314214b3", "_type": "Item", "_props": { - "Name": "Can of pink salmon", - "ShortName": "Pink salmon", - "Description": "Can of pink salmon", - "Weight": 0.28, - "BackgroundColor": "default", + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "food_tin_can", + "ItemSound": "keys", "Prefab": { - "path": "assets/content/weapons/usable_items/item_food_humpback/item_food_humpback_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_food_humpback/item_food_humpback_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 5, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "", - "effects_health": { - "Energy": { - "value": 50 - }, - "Hydration": { - "value": -5 - } - }, - "effects_damage": [] - }, - "_proto": "57347d3d245977448f7b7f61" - }, - "59e3577886f774176a362503": { - "_id": "59e3577886f774176a362503", - "_name": "item_food_sugar", - "_parent": "5448e8d04bdc2ddf718b4569", - "_type": "Item", - "_props": { - "Name": "Сахар", - "ShortName": "Сахар", - "Description": "Сахар", - "Weight": 0.5, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_sugar/item_sugar_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_sugar/item_food_sugar_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 9, - "foodEffectType": "afterUse", - "MaxResource": 70, - "StimulatorBuffs": "Buffs_food_sugar", - "effects_health": { - "Energy": { - "value": 70 - }, - "Hydration": { - "value": -45 - } - }, - "effects_damage": [] - }, - "_proto": "544fb6cc4bdc2d34748b456e" - }, - "5a294d8486f774068638cd93": { - "_id": "5a294d8486f774068638cd93", - "_name": "quest_sas_san2", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "SAS_san2", - "ShortName": "SAS_san2", - "Description": "SAS_san2", - "Weight": 0.8, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/barter/sas/item_barter_electr_sas.bundle", + "path": "assets/content/items/spec/keys/item_key_10.bundle", "rcid": "" }, "UsePrefab": { @@ -386724,9 +385531,9 @@ "IsUnbuyable": false, "IsUngivable": false, "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 150, - "ExamineExperience": 45, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -386746,32 +385553,96 @@ "DiscardingBlock": false, "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "6389c92d52123d5dd17f8876": { + "_id": "6389c92d52123d5dd17f8876", + "_name": "Item_barter_info_book_ematerials", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "manual", + "ShortName": "manual", + "Description": "manual", + "Weight": 0.5, + "BackgroundColor": "violet", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_book", + "Prefab": { + "path": "assets/content/items/barter/item_barter_info_book_ematerials/item_barter_info_book_ematerials.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, "DropSoundType": "None", "InsuranceDisabled": false, "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false }, - "_proto": "573477e124597737dd42e191" + "_proto": "56742c324bdc2d150f8b456d" }, - "5d3ec50586f774183a607442": { - "_id": "5d3ec50586f774183a607442", - "_name": "quest_hunt_message", + "590c62a386f77412b0130255": { + "_id": "590c62a386f77412b0130255", + "_name": "item_flash_card_slider", "_parent": "5448ecbe4bdc2d60728b4568", "_type": "Item", "_props": { - "Name": "item_info_intelligence", - "ShortName": "item_info_intelligence", - "Description": "item_info_intelligence", - "Weight": 0.23, + "Name": "flashdrive", + "ShortName": "flashdrive", + "Description": "flashdrive", + "Weight": 0.1, "BackgroundColor": "yellow", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/quest/item_quest_envelope/item_quest_envelope.bundle", + "path": "assets/content/items/infosubject/item_flash_card_slider.bundle", "rcid": "" }, "UsePrefab": { @@ -386818,23 +385689,212 @@ }, "_proto": "56742c324bdc2d150f8b456d" }, - "590c392f86f77444754deb29": { - "_id": "590c392f86f77444754deb29", - "_name": "item_barter_electr_ssd", + "64e74a274d49d23b2c39d317": { + "_id": "64e74a274d49d23b2c39d317", + "_name": "item_quest_clock_04", "_parent": "5448ecbe4bdc2d60728b4568", "_type": "Item", "_props": { - "Name": "SSD", - "ShortName": "SSD", - "Description": "SSD", - "Weight": 0.04, + "Name": "book_part_1", + "ShortName": "book_part_1", + "Description": "book_part_1", + "Weight": 0.3, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_paper", + "Prefab": { + "path": "assets/content/items/quest/item_quest_clock/item_quest_clock_04.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 40, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "638e0057ab150a5f56238960": { + "_id": "638e0057ab150a5f56238960", + "_name": "item_quest_c10_jek", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "diary", + "ShortName": "diary", + "Description": "diary", + "Weight": 0.2, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_book", + "Prefab": { + "path": "assets/content/items/infosubject/item_thick_diary.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "62a0a124de7ac81993580542": { + "_id": "62a0a124de7ac81993580542", + "_name": "item_barter_info_maps", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "item_info_intelligence", + "ShortName": "item_info_intelligence", + "Description": "item_info_intelligence", + "Weight": 0.27, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_book", + "Prefab": { + "path": "assets/content/items/barter/item_barter_info_maps/item_barter_info_maps.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "62a0a16d0b9d3c46de5b6e97": { + "_id": "62a0a16d0b9d3c46de5b6e97", + "_name": "item_barter_info_militaryflash", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "flashdrive", + "ShortName": "flashdrive", + "Description": "flashdrive", + "Weight": 0.14, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/barter/ssd/item_barter_electr_ssd.bundle", + "path": "assets/content/items/barter/item_barter_info_militaryflash/item_barter_info_militaryflash.bundle", "rcid": "" }, "UsePrefab": { @@ -386881,15 +385941,780 @@ }, "_proto": "56742c324bdc2d150f8b456d" }, - "5c1e2a1e86f77431ea0ea84c": { - "_id": "5c1e2a1e86f77431ea0ea84c", - "_name": "item_lab_glass_office", + "64e74a1faac4cd0a7264ecd9": { + "_id": "64e74a1faac4cd0a7264ecd9", + "_name": "item_quest_clock_03", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "book_part_1", + "ShortName": "book_part_1", + "Description": "book_part_1", + "Weight": 0.3, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_paper", + "Prefab": { + "path": "assets/content/items/quest/item_quest_clock/item_quest_clock_03.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 40, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "64e74a534d49d23b2c39d31b": { + "_id": "64e74a534d49d23b2c39d31b", + "_name": "item_quest_clock_10", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "book_part_1", + "ShortName": "book_part_1", + "Description": "book_part_1", + "Weight": 0.3, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_paper", + "Prefab": { + "path": "assets/content/items/quest/item_quest_clock/item_quest_clock_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 40, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "64f69b4267e11a7c6206e010": { + "_id": "64f69b4267e11a7c6206e010", + "_name": "item_quest_cook_diary", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "diary", + "ShortName": "diary", + "Description": "diary", + "Weight": 0.2, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_book", + "Prefab": { + "path": "assets/content/items/infosubject/item_thick_diary.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "5addaffe86f77470b455f900": { + "_id": "5addaffe86f77470b455f900", + "_name": "Key_Shopping_Mall_KIBA_2", "_parent": "5c99f98d86f7745c314214b3", "_type": "Item", "_props": { - "Name": "item_lab_glass_office", - "ShortName": "item_lab_glass_office", - "Description": "item_lab_glass_office", + "Name": "Key_Shopping_Mall_KIBA_2", + "ShortName": "Key_Shopping_Mall_KIBA_2", + "Description": "Key_Shopping_Mall_KIBA_2", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5ad5d20586f77449be26d877": { + "_id": "5ad5d20586f77449be26d877", + "_name": "Key_Shopping_Mall_storeroom_OLI", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_storeroom_OLI", + "ShortName": "Key_Shopping_Mall_storeroom_OLI", + "Description": "Key_Shopping_Mall_storeroom_OLI", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_8.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5ad5db3786f7743568421cce": { + "_id": "5ad5db3786f7743568421cce", + "_name": "Key_Shopping_Mall_mchs", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_mchs", + "ShortName": "Key_Shopping_Mall_mchs", + "Description": "Key_Shopping_Mall_mchs", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5d08d21286f774736e7c94c3": { + "_id": "5d08d21286f774736e7c94c3", + "_name": "Key_boss_koj", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_boss_koj", + "ShortName": "Key_boss_koj", + "Description": "Key_boss_koj", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 1 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5ad5ccd186f774446d5706e9": { + "_id": "5ad5ccd186f774446d5706e9", + "_name": "Key_Shopping_Mall_office_1", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_office_1", + "ShortName": "Key_Shopping_Mall_office_1", + "Description": "Key_Shopping_Mall_office_1", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_8.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5a0448bc86f774736f14efa8": { + "_id": "5a0448bc86f774736f14efa8", + "_name": "Quest Drugs Key", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Quest Drugs Key", + "ShortName": "Quest Drugs Key", + "Description": "Quest Drugs Key", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780cf9e2459777df90dcb73" + }, + "5ad7217186f7746744498875": { + "_id": "5ad7217186f7746744498875", + "_name": "Key_cash_machine_OLI", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_cash_machine_OLI", + "ShortName": "Key_cash_machine_OLI", + "Description": "Key_cash_machine_OLI", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "59148f8286f7741b951ea113": { + "_id": "59148f8286f7741b951ea113", + "_name": "gunsafe", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "gunsafe key", + "ShortName": "gunsafe key", + "Description": "gunsafe key", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5e42c71586f7747f245e1343": { + "_id": "5e42c71586f7747f245e1343", + "_name": "key_inter_aid", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_9.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5c1e2d1f86f77431e9280bee": { + "_id": "5c1e2d1f86f77431e9280bee", + "_name": "item_lab_test_weapon", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "item_lab_test_weapon", + "ShortName": "item_lab_test_weapon", + "Description": "item_lab_test_weapon", "Weight": 0.01, "BackgroundColor": "violet", "Width": 1, @@ -386945,15 +386770,15 @@ }, "_proto": "5448ba0b4bdc2d02308b456c" }, - "591ae8f986f77406f854be45": { - "_id": "591ae8f986f77406f854be45", - "_name": "lulkin toyota", + "61a64428a8c6aa1b795f0ba1": { + "_id": "61a64428a8c6aa1b795f0ba1", + "_name": "lighthouse_key1", "_parent": "5c99f98d86f7745c314214b3", "_type": "Item", "_props": { - "Name": "lulkin car", - "ShortName": "lulkin car", - "Description": "lulkin car", + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", "Weight": 0.01, "BackgroundColor": "blue", "Width": 1, @@ -386961,7 +386786,730 @@ "StackMaxSize": 1, "ItemSound": "keys", "Prefab": { - "path": "assets/content/items/quest/auto_key/auto_key.bundle", + "path": "assets/content/items/spec/keys/item_key_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "61aa5b7db225ac1ead7957c1": { + "_id": "61aa5b7db225ac1ead7957c1", + "_name": "lighthouse_key7", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "5938603e86f77435642354f4": { + "_id": "5938603e86f77435642354f4", + "_name": "mo 206 voda", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "mal obsh 206", + "ShortName": "mal obsh 206", + "Description": "mal obsh 206", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "57518f7724597720a31c09ab" + }, + "544fb6cc4bdc2d34748b456e": { + "_id": "544fb6cc4bdc2d34748b456e", + "_name": "slippers", + "_parent": "5448e8d04bdc2ddf718b4569", + "_type": "Item", + "_props": { + "Name": "Батончик slippers", + "ShortName": "Slippers", + "Description": "типа сникерса. но нифига", + "Weight": 0.048, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_energy_bar/item_slickers_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_energy_bar/item_slickers_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 2, + "foodEffectType": "afterUse", + "MaxResource": 1, + "StimulatorBuffs": "Buffs_food_slippers", + "effects_health": { + "Energy": { + "value": 30 + }, + "Hydration": { + "value": -15 + } + }, + "effects_damage": [] + } + }, + "656df4fec921ad01000481a2": { + "_id": "656df4fec921ad01000481a2", + "_name": "item_food_ranton", + "_parent": "5448e8d04bdc2ddf718b4569", + "_type": "Item", + "_props": { + "Name": "ration", + "ShortName": "ration", + "Description": "ration", + "Weight": 0.09, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "food_snack", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_food_ranton/item_food_ranton_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_food_ranton/item_food_ranton_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 3, + "foodEffectType": "afterUse", + "MaxResource": 1, + "StimulatorBuffs": "", + "effects_health": { + "Energy": { + "value": 25 + }, + "Hydration": { + "value": -10 + } + }, + "effects_damage": [] + }, + "_proto": "5448ff904bdc2d6f028b456e" + }, + "5938878586f7741b797c562f": { + "_id": "5938878586f7741b797c562f", + "_name": "case_0052", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "Case folder 0052", + "ShortName": "Case folder 0052", + "Description": "Case folder 0052", + "Weight": 0.8, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_plastic_generic", + "Prefab": { + "path": "assets/content/items/quest/item_quest_container_case_folder/item_quest_container_case_0052.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 40, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "5ac620eb86f7743a8e6e0da0": { + "_id": "5ac620eb86f7743a8e6e0da0", + "_name": "quest_package", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "quest_package", + "ShortName": "quest_package", + "Description": "quest_package", + "Weight": 1.2, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/quest/item_quest_parcel/item_quest_parcel.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 150, + "ExamineExperience": 45, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "573477e124597737dd42e191" + }, + "5ae9a18586f7746e381e16a3": { + "_id": "5ae9a18586f7746e381e16a3", + "_name": "statements_OLI", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "statements_OLI", + "ShortName": "statements_OLI", + "Description": "statements_OLI", + "Weight": 0.3, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_paper", + "Prefab": { + "path": "assets/content/items/quest/item_quest_packinglist/item_quest_packinglist_oli.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 40, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "5eff135be0d3331e9d282b7b": { + "_id": "5eff135be0d3331e9d282b7b", + "_name": "item_flash_quest_sanitar", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "flashdrive_san", + "ShortName": "flashdrive_san", + "Description": "flashdrive_san", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/infosubject/item_flash_card_slider_sanitar.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "5ad5d64486f774079b080af8": { + "_id": "5ad5d64486f774079b080af8", + "_name": "Key_Shopping_Mall_pharmacy", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_pharmacy", + "ShortName": "Key_Shopping_Mall_pharmacy", + "Description": "Key_Shopping_Mall_pharmacy", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_8.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5ad5d49886f77455f9731921": { + "_id": "5ad5d49886f77455f9731921", + "_name": "Key_Shopping_Mall_storeroom", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_storeroom", + "ShortName": "Key_Shopping_Mall_storeroom", + "Description": "Key_Shopping_Mall_storeroom", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_8.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5ad7242b86f7740a6a3abd43": { + "_id": "5ad7242b86f7740a6a3abd43", + "_name": "Key_cash_machine_IDEA", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_cash_machine_IDEA", + "ShortName": "Key_cash_machine_IDEA", + "Description": "Key_cash_machine_IDEA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_1.bundle", "rcid": "" }, "UsePrefab": { @@ -387578,601 +388126,6 @@ }, "_proto": "5780d07a2459777de4559324" }, - "656df4fec921ad01000481a2": { - "_id": "656df4fec921ad01000481a2", - "_name": "item_food_ranton", - "_parent": "5448e8d04bdc2ddf718b4569", - "_type": "Item", - "_props": { - "Name": "ration", - "ShortName": "ration", - "Description": "ration", - "Weight": 0.09, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "food_snack", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_food_ranton/item_food_ranton_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_food_ranton/item_food_ranton_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 3, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "", - "effects_health": { - "Energy": { - "value": 25 - }, - "Hydration": { - "value": -10 - } - }, - "effects_damage": [] - }, - "_proto": "5448ff904bdc2d6f028b456e" - }, - "544fb6cc4bdc2d34748b456e": { - "_id": "544fb6cc4bdc2d34748b456e", - "_name": "slippers", - "_parent": "5448e8d04bdc2ddf718b4569", - "_type": "Item", - "_props": { - "Name": "Батончик slippers", - "ShortName": "Slippers", - "Description": "типа сникерса. но нифига", - "Weight": 0.048, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_energy_bar/item_slickers_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_energy_bar/item_slickers_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 2, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "Buffs_food_slippers", - "effects_health": { - "Energy": { - "value": 30 - }, - "Hydration": { - "value": -15 - } - }, - "effects_damage": [] - } - }, - "5938878586f7741b797c562f": { - "_id": "5938878586f7741b797c562f", - "_name": "case_0052", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "Case folder 0052", - "ShortName": "Case folder 0052", - "Description": "Case folder 0052", - "Weight": 0.8, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/quest/item_quest_container_case_folder/item_quest_container_case_0052.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "5ac620eb86f7743a8e6e0da0": { - "_id": "5ac620eb86f7743a8e6e0da0", - "_name": "quest_package", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "quest_package", - "ShortName": "quest_package", - "Description": "quest_package", - "Weight": 1.2, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/quest/item_quest_parcel/item_quest_parcel.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 150, - "ExamineExperience": 45, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "573477e124597737dd42e191" - }, - "5ae9a18586f7746e381e16a3": { - "_id": "5ae9a18586f7746e381e16a3", - "_name": "statements_OLI", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "statements_OLI", - "ShortName": "statements_OLI", - "Description": "statements_OLI", - "Weight": 0.3, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_paper", - "Prefab": { - "path": "assets/content/items/quest/item_quest_packinglist/item_quest_packinglist_oli.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "5eff135be0d3331e9d282b7b": { - "_id": "5eff135be0d3331e9d282b7b", - "_name": "item_flash_quest_sanitar", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "flashdrive_san", - "ShortName": "flashdrive_san", - "Description": "flashdrive_san", - "Weight": 0.1, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/infosubject/item_flash_card_slider_sanitar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "5ad5d64486f774079b080af8": { - "_id": "5ad5d64486f774079b080af8", - "_name": "Key_Shopping_Mall_pharmacy", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_pharmacy", - "ShortName": "Key_Shopping_Mall_pharmacy", - "Description": "Key_Shopping_Mall_pharmacy", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_8.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5ad5d49886f77455f9731921": { - "_id": "5ad5d49886f77455f9731921", - "_name": "Key_Shopping_Mall_storeroom", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_storeroom", - "ShortName": "Key_Shopping_Mall_storeroom", - "Description": "Key_Shopping_Mall_storeroom", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_8.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5ad7242b86f7740a6a3abd43": { - "_id": "5ad7242b86f7740a6a3abd43", - "_name": "Key_cash_machine_IDEA", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_cash_machine_IDEA", - "ShortName": "Key_cash_machine_IDEA", - "Description": "Key_cash_machine_IDEA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, "57347d90245977448f7b7f65": { "_id": "57347d90245977448f7b7f65", "_name": "oatmeal", @@ -388882,652 +388835,6 @@ }, "_proto": "57518f7724597720a31c09ab" }, - "60b0f93284c20f0feb453da7": { - "_id": "60b0f93284c20f0feb453da7", - "_name": "item_drink_ratcola", - "_parent": "5448e8d64bdc2dce718b4568", - "_type": "Item", - "_props": { - "Name": "TarCola", - "ShortName": "TarCola", - "Description": "TarCola", - "Weight": 0.36, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "food_soda_can", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_drink_cans/item_ratcola_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_drink_cans/item_ratcola_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 4, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "Buffs_drink_tarcola", - "effects_health": { - "Energy": { - "value": 20 - }, - "Hydration": { - "value": 20 - } - }, - "effects_damage": [] - }, - "_proto": "5751435d24597720a27126d1" - }, - "5938188786f77474f723e87f": { - "_id": "5938188786f77474f723e87f", - "_name": "case_0031", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "Case folder 0031", - "ShortName": "Case folder 0031", - "Description": "Case folder 0031", - "Weight": 0.8, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/quest/item_quest_container_case_folder/item_quest_container_case_0031.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "5d357d6b86f7745b606e3508": { - "_id": "5d357d6b86f7745b606e3508", - "_name": "quest_photoalbum", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "book_part_2", - "ShortName": "book_part_2", - "Description": "book_part_2", - "Weight": 0.3, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_paper", - "Prefab": { - "path": "assets/content/items/quest/item_quest_photograph_album/item_quest_photograph_album.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "591092ef86f7747bb8703422": { - "_id": "591092ef86f7747bb8703422", - "_name": "item_quest_container_case_folder", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "Case folder 0022", - "ShortName": "Case folder 0022", - "Description": "Case folder 0022", - "Weight": 0.8, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/quest/item_quest_container_case_folder/item_quest_container_case_folder.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "6389c8c5dbfd5e4b95197e6b": { - "_id": "6389c8c5dbfd5e4b95197e6b", - "_name": "Item_barter_info_tgdocs", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "item_info_intelligence", - "ShortName": "item_info_intelligence", - "Description": "item_info_intelligence", - "Weight": 0.33, - "BackgroundColor": "blue", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_book", - "Prefab": { - "path": "assets/content/items/barter/item_barter_info_tgdocs/item_barter_info_tgdocs.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "64e74a64aac4cd0a7264ecdf": { - "_id": "64e74a64aac4cd0a7264ecdf", - "_name": "item_quest_clock_12", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "book_part_1", - "ShortName": "book_part_1", - "Description": "book_part_1", - "Weight": 0.3, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_paper", - "Prefab": { - "path": "assets/content/items/quest/item_quest_clock/item_quest_clock_12.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "62a09e974f842e1bd12da3f0": { - "_id": "62a09e974f842e1bd12da3f0", - "_name": "item_info_videocassette_cyborg", - "_parent": "5448ecbe4bdc2d60728b4568", - "_type": "Item", - "_props": { - "Name": "item_info_intelligence", - "ShortName": "item_info_intelligence", - "Description": "item_info_intelligence", - "Weight": 0.15, - "BackgroundColor": "violet", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/barter/item_info_videocassette_cyborg/item_info_videocassette_cyborg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "5a0eb38b86f774153b320eb0": { - "_id": "5a0eb38b86f774153b320eb0", - "_name": "BMW Shoreline", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "BMW Car", - "ShortName": "BMW Car", - "Description": "BMW Car", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/quest/auto_key/auto_key.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5eff09cd30a7dc22fd1ddfed": { - "_id": "5eff09cd30a7dc22fd1ddfed", - "_name": "key_shoreline_sanitar_room", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Safe Shoreline 321 Key", - "ShortName": "Safe Shoreline 321 Key", - "Description": "Safe Shoreline 321 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_7_sanitar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5913915886f774123603c392": { - "_id": "5913915886f774123603c392", - "_name": "milbase kpp", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "milbase kpp", - "ShortName": "milbase kpp", - "Description": "milbase kpp", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, "57347d9c245977448b40fa85": { "_id": "57347d9c245977448b40fa85", "_name": "herring", @@ -389921,40 +389228,40 @@ }, "_proto": "5780d07a2459777de4559324" }, - "57347da92459774491567cf5": { - "_id": "57347da92459774491567cf5", - "_name": "beefstew", - "_parent": "5448e8d04bdc2ddf718b4569", + "5938188786f77474f723e87f": { + "_id": "5938188786f77474f723e87f", + "_name": "case_0031", + "_parent": "5448ecbe4bdc2d60728b4568", "_type": "Item", "_props": { - "Name": "Can of beef stew", - "ShortName": "Beef stew Can", - "Description": "Can of beef stew", - "Weight": 0.378, - "BackgroundColor": "default", + "Name": "Case folder 0031", + "ShortName": "Case folder 0031", + "Description": "Case folder 0031", + "Weight": 0.8, + "BackgroundColor": "yellow", "Width": 1, - "Height": 1, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "food_tin_can", + "ItemSound": "item_plastic_generic", "Prefab": { - "path": "assets/content/weapons/usable_items/item_food_beefstew/item_food_beefstew_loot.bundle", + "path": "assets/content/items/quest/item_quest_container_case_folder/item_quest_container_case_0031.bundle", "rcid": "" }, "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_food_beefstew/item_food_beefstew_container.bundle", + "path": "", "rcid": "" }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": true, + "ExaminedByDefault": false, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, "IsUnbuyable": false, "IsUngivable": false, "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, + "QuestItem": true, + "LootExperience": 40, "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, @@ -389980,22 +389287,580 @@ "InsuranceDisabled": false, "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 5, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "", - "effects_health": { - "Energy": { - "value": 50 - }, - "Hydration": { - "value": -5 - } - }, - "effects_damage": [] + "IsUnremovable": false }, - "_proto": "57347d9c245977448b40fa85" + "_proto": "56742c324bdc2d150f8b456d" + }, + "5d357d6b86f7745b606e3508": { + "_id": "5d357d6b86f7745b606e3508", + "_name": "quest_photoalbum", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "book_part_2", + "ShortName": "book_part_2", + "Description": "book_part_2", + "Weight": 0.3, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_paper", + "Prefab": { + "path": "assets/content/items/quest/item_quest_photograph_album/item_quest_photograph_album.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 40, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "62a09e974f842e1bd12da3f0": { + "_id": "62a09e974f842e1bd12da3f0", + "_name": "item_info_videocassette_cyborg", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "item_info_intelligence", + "ShortName": "item_info_intelligence", + "Description": "item_info_intelligence", + "Weight": 0.15, + "BackgroundColor": "violet", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_plastic_generic", + "Prefab": { + "path": "assets/content/items/barter/item_info_videocassette_cyborg/item_info_videocassette_cyborg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "591092ef86f7747bb8703422": { + "_id": "591092ef86f7747bb8703422", + "_name": "item_quest_container_case_folder", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "Case folder 0022", + "ShortName": "Case folder 0022", + "Description": "Case folder 0022", + "Weight": 0.8, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_plastic_generic", + "Prefab": { + "path": "assets/content/items/quest/item_quest_container_case_folder/item_quest_container_case_folder.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 40, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "6389c8c5dbfd5e4b95197e6b": { + "_id": "6389c8c5dbfd5e4b95197e6b", + "_name": "Item_barter_info_tgdocs", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "item_info_intelligence", + "ShortName": "item_info_intelligence", + "Description": "item_info_intelligence", + "Weight": 0.33, + "BackgroundColor": "blue", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_book", + "Prefab": { + "path": "assets/content/items/barter/item_barter_info_tgdocs/item_barter_info_tgdocs.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "64e74a64aac4cd0a7264ecdf": { + "_id": "64e74a64aac4cd0a7264ecdf", + "_name": "item_quest_clock_12", + "_parent": "5448ecbe4bdc2d60728b4568", + "_type": "Item", + "_props": { + "Name": "book_part_1", + "ShortName": "book_part_1", + "Description": "book_part_1", + "Weight": 0.3, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_paper", + "Prefab": { + "path": "assets/content/items/quest/item_quest_clock/item_quest_clock_12.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 40, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "5a0eb38b86f774153b320eb0": { + "_id": "5a0eb38b86f774153b320eb0", + "_name": "BMW Shoreline", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "BMW Car", + "ShortName": "BMW Car", + "Description": "BMW Car", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/quest/auto_key/auto_key.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5eff09cd30a7dc22fd1ddfed": { + "_id": "5eff09cd30a7dc22fd1ddfed", + "_name": "key_shoreline_sanitar_room", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Safe Shoreline 321 Key", + "ShortName": "Safe Shoreline 321 Key", + "Description": "Safe Shoreline 321 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_7_sanitar.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5913915886f774123603c392": { + "_id": "5913915886f774123603c392", + "_name": "milbase kpp", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "milbase kpp", + "ShortName": "milbase kpp", + "Description": "milbase kpp", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5d80c88d86f77440556dbf07": { + "_id": "5d80c88d86f77440556dbf07", + "_name": "rezbase_key_barrleft_craftrooom", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" }, "5bc9c29cd4351e003562b8a3": { "_id": "5bc9c29cd4351e003562b8a3", @@ -390073,6 +389938,82 @@ }, "_proto": "57347d692459774491567cf1" }, + "57347da92459774491567cf5": { + "_id": "57347da92459774491567cf5", + "_name": "beefstew", + "_parent": "5448e8d04bdc2ddf718b4569", + "_type": "Item", + "_props": { + "Name": "Can of beef stew", + "ShortName": "Beef stew Can", + "Description": "Can of beef stew", + "Weight": 0.378, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "food_tin_can", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_food_beefstew/item_food_beefstew_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_food_beefstew/item_food_beefstew_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 5, + "foodEffectType": "afterUse", + "MaxResource": 1, + "StimulatorBuffs": "", + "effects_health": { + "Energy": { + "value": 50 + }, + "Hydration": { + "value": -5 + } + }, + "effects_damage": [] + }, + "_proto": "57347d9c245977448b40fa85" + }, "5673de654bdc2d180f8b456d": { "_id": "5673de654bdc2d180f8b456d", "_name": "item_food_konserva_fish", @@ -390656,6 +390597,143 @@ }, "_proto": "5780d07a2459777de4559324" }, + "5d80c6c586f77440351beef1": { + "_id": "5d80c6c586f77440351beef1", + "_name": "rezbase_key_barrmid_officers", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "57347d8724597744596b4e76": { + "_id": "57347d8724597744596b4e76", + "_name": "squashspread", + "_parent": "5448e8d04bdc2ddf718b4569", + "_type": "Item", + "_props": { + "Name": "Can of squash caviar", + "ShortName": "Squash caviar can", + "Description": "Can of squash caviar", + "Weight": 0.43, + "BackgroundColor": "default", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "food_tin_can", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_food_marrow_puree/item_food_marrow_puree_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_food_marrow_puree/item_food_marrow_puree_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "foodUseTime": 5, + "foodEffectType": "afterUse", + "MaxResource": 1, + "StimulatorBuffs": "", + "effects_health": { + "Energy": { + "value": 40 + } + }, + "effects_damage": [] + }, + "_proto": "57347d7224597744596b4e72" + }, "5734773724597737fd047c14": { "_id": "5734773724597737fd047c14", "_name": "condensed_milk", @@ -390732,79 +390810,6 @@ }, "_proto": "5734770f24597738025ee254" }, - "57347d8724597744596b4e76": { - "_id": "57347d8724597744596b4e76", - "_name": "squashspread", - "_parent": "5448e8d04bdc2ddf718b4569", - "_type": "Item", - "_props": { - "Name": "Can of squash caviar", - "ShortName": "Squash caviar can", - "Description": "Can of squash caviar", - "Weight": 0.43, - "BackgroundColor": "default", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "food_tin_can", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_food_marrow_puree/item_food_marrow_puree_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_food_marrow_puree/item_food_marrow_puree_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "foodUseTime": 5, - "foodEffectType": "afterUse", - "MaxResource": 1, - "StimulatorBuffs": "", - "effects_health": { - "Energy": { - "value": 40 - } - }, - "effects_damage": [] - }, - "_proto": "57347d7224597744596b4e72" - }, "57505f6224597709a92585a9": { "_id": "57505f6224597709a92585a9", "_name": "alyonka", @@ -391593,6 +391598,710 @@ }, "_proto": "5671446a4bdc2d97058b4569" }, + "5d80cab086f77440535be201": { + "_id": "5d80cab086f77440535be201", + "_name": "rezbase_key_ptor2_craft2", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5d947d3886f774447b415893": { + "_id": "5d947d3886f774447b415893", + "_name": "rezbase_key_med_strorage", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_7.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5d80c95986f77440351beef3": { + "_id": "5d80c95986f77440351beef3", + "_name": "rezbase_key_ptor1_craft2", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5d80cb3886f77440556dbf09": { + "_id": "5d80cb3886f77440556dbf09", + "_name": "rezbase_key_substorge_food", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_6.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5da5cdcd86f774529238fb9b": { + "_id": "5da5cdcd86f774529238fb9b", + "_name": "rezbase_key_rls_ohr", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5da46e3886f774653b7a83fe": { + "_id": "5da46e3886f774653b7a83fe", + "_name": "rezbase_key_rls_serv1", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_10.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5d947d4e86f774447b415895": { + "_id": "5d947d4e86f774447b415895", + "_name": "rezbase_key_med_officer", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_7.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5d80ccac86f77470841ff452": { + "_id": "5d80ccac86f77470841ff452", + "_name": "rezbase_key_right_weap4fl", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5a0dc45586f7742f6b0b73e3": { + "_id": "5a0dc45586f7742f6b0b73e3", + "_name": "Санаторий 104", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 104 Key", + "ShortName": "San 104 Key", + "Description": "San 104 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5d80ca9086f774403a401e40": { + "_id": "5d80ca9086f774403a401e40", + "_name": "rezbase_key_ptor2_craft1", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5d80cb5686f77440545d1286": { + "_id": "5d80cb5686f77440545d1286", + "_name": "rezbase_key_substorge_water", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_6.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, "5a0eb6ac86f7743124037a28": { "_id": "5a0eb6ac86f7743124037a28", "_name": "Коттедж Побережье", @@ -392188,15 +392897,15 @@ }, "_proto": "544fb37f4bdc2dee738b4567" }, - "5d8e3ecc86f774414c78d05e": { - "_id": "5d8e3ecc86f774414c78d05e", - "_name": "rezbase_key_gen_room", + "5672c92d4bdc2d180f8b4567": { + "_id": "5672c92d4bdc2d180f8b4567", + "_name": "Ключ от комнаты в общаге", "_parent": "5c99f98d86f7745c314214b3", "_type": "Item", "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", + "Name": "Room 118 Key", + "ShortName": "Room 118 Key", + "Description": "Room 118 Key", "Weight": 0.01, "BackgroundColor": "blue", "Width": 1, @@ -392204,7 +392913,7 @@ "StackMaxSize": 1, "ItemSound": "keys", "Prefab": { - "path": "assets/content/items/spec/keys/item_key_7.bundle", + "path": "assets/content/items/spec/keys/item_key_4.bundle", "rcid": "" }, "UsePrefab": { @@ -392249,76 +392958,11 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" + } }, - "5d947d3886f774447b415893": { - "_id": "5d947d3886f774447b415893", - "_name": "rezbase_key_med_strorage", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_7.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5d80c95986f77440351beef3": { - "_id": "5d80c95986f77440351beef3", - "_name": "rezbase_key_ptor1_craft2", + "5d80c93086f7744036212b41": { + "_id": "5d80c93086f7744036212b41", + "_name": "rezbase_key_ptor1_craft1", "_parent": "5c99f98d86f7745c314214b3", "_type": "Item", "_props": { @@ -392380,9 +393024,9 @@ }, "_proto": "5671446a4bdc2d97058b4569" }, - "5da5cdcd86f774529238fb9b": { - "_id": "5da5cdcd86f774529238fb9b", - "_name": "rezbase_key_rls_ohr", + "5d80c62a86f7744036212b3f": { + "_id": "5d80c62a86f7744036212b3f", + "_name": "rezbase_key_kult2", "_parent": "5c99f98d86f7745c314214b3", "_type": "Item", "_props": { @@ -392390,13 +393034,13 @@ "ShortName": "Key_Shopping_Mall_KIBA", "Description": "Key_Shopping_Mall_KIBA", "Weight": 0.01, - "BackgroundColor": "blue", + "BackgroundColor": "yellow", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "keys", "Prefab": { - "path": "assets/content/items/spec/keys/item_key_10.bundle", + "path": "assets/content/items/spec/keys/item_key_13.bundle", "rcid": "" }, "UsePrefab": { @@ -392413,8 +393057,8 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, + "LootExperience": 150, + "ExamineExperience": 100, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -392440,13 +393084,13 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "MaximumNumberOfUsage": 40 + "MaximumNumberOfUsage": 10 }, "_proto": "5671446a4bdc2d97058b4569" }, - "5d80c60f86f77440373c4ece": { - "_id": "5d80c60f86f77440373c4ece", - "_name": "rezbase_key_kult1", + "5ede7a8229445733cb4c18e2": { + "_id": "5ede7a8229445733cb4c18e2", + "_name": "rezbase_key_mech_bunk1", "_parent": "5c99f98d86f7745c314214b3", "_type": "Item", "_props": { @@ -392508,454 +393152,6 @@ }, "_proto": "5671446a4bdc2d97058b4569" }, - "5d947d4e86f774447b415895": { - "_id": "5d947d4e86f774447b415895", - "_name": "rezbase_key_med_officer", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_7.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5d80c6fc86f774403a401e3c": { - "_id": "5d80c6fc86f774403a401e3c", - "_name": "rezbase_key_barrmid_shotrange", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5a0dc45586f7742f6b0b73e3": { - "_id": "5a0dc45586f7742f6b0b73e3", - "_name": "Санаторий 104", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 104 Key", - "ShortName": "San 104 Key", - "Description": "San 104 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5d80ccac86f77470841ff452": { - "_id": "5d80ccac86f77470841ff452", - "_name": "rezbase_key_right_weap4fl", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5d80cb5686f77440545d1286": { - "_id": "5d80cb5686f77440545d1286", - "_name": "rezbase_key_substorge_water", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_6.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5d80ca9086f774403a401e40": { - "_id": "5d80ca9086f774403a401e40", - "_name": "rezbase_key_ptor2_craft1", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5d80cab086f77440535be201": { - "_id": "5d80cab086f77440535be201", - "_name": "rezbase_key_ptor2_craft2", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, "5d80cbd886f77470855c26c2": { "_id": "5d80cbd886f77470855c26c2", "_name": "rezbase_key_ptor2_craft3", @@ -393833,198 +394029,6 @@ } } }, - "5d80c88d86f77440556dbf07": { - "_id": "5d80c88d86f77440556dbf07", - "_name": "rezbase_key_barrleft_craftrooom", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5d80c93086f7744036212b41": { - "_id": "5d80c93086f7744036212b41", - "_name": "rezbase_key_ptor1_craft1", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5ede7a8229445733cb4c18e2": { - "_id": "5ede7a8229445733cb4c18e2", - "_name": "rezbase_key_mech_bunk1", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_12.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 150, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 10 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, "5d80c8f586f77440373c4ed0": { "_id": "5d80c8f586f77440373c4ed0", "_name": "rezbase_key_sub_officer", @@ -394217,70 +394221,6 @@ }, "_proto": "5672c92d4bdc2d180f8b4567" }, - "5e42c83786f7742a021fdf3c": { - "_id": "5e42c83786f7742a021fdf3c", - "_name": "keycard_inter_store2", - "_parent": "5c164d2286f774194c5e69fa", - "_type": "Item", - "_props": { - "Name": "item_keycard_lab_blue", - "ShortName": "item_keycard_lab_blue", - "Description": "item_keycard_lab_blue", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/spec/item_keycard_lab/item_keycard_interchange_store_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 150, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 15 - }, - "_proto": "5448ba0b4bdc2d02308b456c" - }, "5c1d0f4986f7744bb01837fa": { "_id": "5c1d0f4986f7744bb01837fa", "_name": "item_keycard_lab_black", @@ -394409,6 +394349,70 @@ }, "_proto": "5448ba0b4bdc2d02308b456c" }, + "5e42c83786f7742a021fdf3c": { + "_id": "5e42c83786f7742a021fdf3c", + "_name": "keycard_inter_store2", + "_parent": "5c164d2286f774194c5e69fa", + "_type": "Item", + "_props": { + "Name": "item_keycard_lab_blue", + "ShortName": "item_keycard_lab_blue", + "Description": "item_keycard_lab_blue", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_plastic_generic", + "Prefab": { + "path": "assets/content/items/spec/item_keycard_lab/item_keycard_interchange_store_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 150, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 15 + }, + "_proto": "5448ba0b4bdc2d02308b456c" + }, "5bffdc370db834001d23eca8": { "_id": "5bffdc370db834001d23eca8", "_name": "weapon_izhmash_6x5", @@ -394897,70 +394901,6 @@ }, "_proto": "5448ba0b4bdc2d02308b456c" }, - "5d80cb3886f77440556dbf09": { - "_id": "5d80cb3886f77440556dbf09", - "_name": "rezbase_key_substorge_food", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_6.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, "5780cf942459777df90dcb72": { "_id": "5780cf942459777df90dcb72", "_name": "Общага1 214", @@ -395368,70 +395308,6 @@ }, "_proto": "54491bb74bdc2d09088b4567" }, - "5d80c6c586f77440351beef1": { - "_id": "5d80c6c586f77440351beef1", - "_name": "rezbase_key_barrmid_officers", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, "5780d07a2459777de4559324": { "_id": "5780d07a2459777de4559324", "_name": "Будка автоб пар", @@ -396048,2284 +395924,6 @@ }, "_proto": "54491bb74bdc2d09088b4567" }, - "5d80cd1a86f77402aa362f42": { - "_id": "5d80cd1a86f77402aa362f42", - "_name": "rezbase_key_mid_weap2fl", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5a0ee62286f774369454a7ac": { - "_id": "5a0ee62286f774369454a7ac", - "_name": "Санаторий 209", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 209 Key", - "ShortName": "San 209 Key", - "Description": "San 209 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a0ee34586f774023b6ee092": { - "_id": "5a0ee34586f774023b6ee092", - "_name": "Санаторий 220", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 220 Key", - "ShortName": "San 220 Key", - "Description": "San 220 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a0ee37f86f774023657a86f": { - "_id": "5a0ee37f86f774023657a86f", - "_name": "Санаторий 221", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 221 Key", - "ShortName": "San 221 Key", - "Description": "San 221 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a13f35286f77413ef1436b0": { - "_id": "5a13f35286f77413ef1436b0", - "_name": "Санаторий 226 восточное крыло", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 226 ost Key", - "ShortName": "San 226 ost Key", - "Description": "San 226 ost Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a0eee1486f77402aa773226": { - "_id": "5a0eee1486f77402aa773226", - "_name": "Санаторий 328", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 328 Key", - "ShortName": "San 328 Key", - "Description": "San 328 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5780d0532459777a5108b9a2": { - "_id": "5780d0532459777a5108b9a2", - "_name": "Офисы тамож", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Office key", - "ShortName": "Office key", - "Description": "Office key", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "57518f7724597720a31c09ab" - }, - "63a71e781031ac76fe773c7d": { - "_id": "63a71e781031ac76fe773c7d", - "_name": "city_key21", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_8.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "5a0eedb386f77403506300be": { - "_id": "5a0eedb386f77403506300be", - "_name": "Санаторий 322", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 322 Key", - "ShortName": "San 322 Key", - "Description": "San 322 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "64ccc1fe088064307e14a6f7": { - "_id": "64ccc1fe088064307e14a6f7", - "_name": "city_key34", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "64ccc246ff54fb38131acf29": { - "_id": "64ccc246ff54fb38131acf29", - "_name": "city_key37", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_7.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "5e42c81886f7742a01529f57": { - "_id": "5e42c81886f7742a01529f57", - "_name": "keycard_inter_store1", - "_parent": "5c164d2286f774194c5e69fa", - "_type": "Item", - "_props": { - "Name": "item_keycard_lab_blue", - "ShortName": "item_keycard_lab_blue", - "Description": "item_keycard_lab_blue", - "Weight": 0.01, - "BackgroundColor": "green", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/spec/item_keycard_lab/item_keycard_interchange_store_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 150, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 15 - }, - "_proto": "5448ba0b4bdc2d02308b456c" - }, - "6087e570b998180e9f76dc24": { - "_id": "6087e570b998180e9f76dc24", - "_name": "weapon_hultafors_db5000", - "_parent": "5447e1d04bdc2dff2f8b4567", - "_type": "Item", - "_props": { - "Name": "weapon_hultafors_db5000", - "ShortName": "weapon_hultafors_db5000", - "Description": "weapon_hultafors_db5000\n", - "Weight": 1.4, - "BackgroundColor": "grey", - "Width": 1, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "knife_generic", - "Prefab": { - "path": "assets/content/weapons/hultafors/weapon_hultafors_db5000_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "Scabbard", - "UnlootableFromSide": [ - "Bear", - "Usec", - "Savage" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "knifeHitDelay": 0, - "knifeHitSlashRate": 0, - "knifeHitStabRate": 1, - "knifeHitRadius": 0.8, - "knifeHitSlashDam": 103, - "knifeHitStabDam": 125, - "knifeDurab": 90, - "Durability": 90, - "MaxDurability": 90, - "PrimaryDistance": 0.8, - "SecondryDistance": 0.8, - "SlashPenetration": 1, - "StabPenetration": 1, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "PrimaryConsumption": 10, - "SecondryConsumption": 13, - "DeflectionConsumption": 3, - "StimulatorBuffs": "Buffs_hultafors", - "MaxResource": 0, - "AppliedTrunkRotation": { - "x": 15, - "y": 30, - "z": 0 - }, - "AppliedHeadRotation": { - "x": 4, - "y": 8, - "z": 0 - }, - "DisplayOnModel": true, - "AdditionalAnimationLayer": 12, - "StaminaBurnRate": 1, - "ColliderScaleMultiplier": { - "x": 1.15, - "y": 1.35, - "z": 1.15 - } - }, - "_proto": "54491bb74bdc2d09088b4567" - }, - "5af0548586f7743a532b7e99": { - "_id": "5af0548586f7743a532b7e99", - "_name": "item_barter_medical_ibuprofen", - "_parent": "5448f3a14bdc2d27728b4569", - "_type": "Item", - "_props": { - "Name": "ibuprofen", - "ShortName": "ibuprofen", - "Description": "ibuprofen", - "Weight": 0.07, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_pills", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_ibuprofen/item_ibuprofen_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_ibuprofen/item_ibuprofen_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 5, - "medEffectType": "duringUse", - "MaxHpResource": 15, - "hpResourceRate": 0, - "StimulatorBuffs": "", - "effects_health": { - "Hydration": { - "value": -17 - } - }, - "effects_damage": { - "Pain": { - "delay": 0, - "duration": 280, - "fadeOut": 10 - }, - "Contusion": { - "delay": 0, - "duration": 0, - "fadeOut": 0 - } - } - }, - "_proto": "544fb37f4bdc2dee738b4567" - }, - "5da46e3886f774653b7a83fe": { - "_id": "5da46e3886f774653b7a83fe", - "_name": "rezbase_key_rls_serv1", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_10.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5ede7b0c6d23e5473e6e8c66": { - "_id": "5ede7b0c6d23e5473e6e8c66", - "_name": "rezbase_key_rls_stor1", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5d95d6fa86f77424484aa5e9": { - "_id": "5d95d6fa86f77424484aa5e9", - "_name": "rezbase_key_substorge_food2", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_6.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5d95d6be86f77424444eb3a7": { - "_id": "5d95d6be86f77424444eb3a7", - "_name": "rezbase_key_substorge_water2", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_6.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5d80c66d86f774405611c7d6": { - "_id": "5d80c66d86f774405611c7d6", - "_name": "rezbase_key_vohr_arsenal", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_7.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5a0ec6d286f7742c0b518fb5": { - "_id": "5a0ec6d286f7742c0b518fb5", - "_name": "Санаторий 205", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 205 Key", - "ShortName": "San 205 Key", - "Description": "San 205 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a0eff2986f7741fd654e684": { - "_id": "5a0eff2986f7741fd654e684", - "_name": "Сейф Побережье 321", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Safe Shoreline 321 Key", - "ShortName": "Safe Shoreline 321 Key", - "Description": "Safe Shoreline 321 Key", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a0ee72c86f77436955d3435": { - "_id": "5a0ee72c86f77436955d3435", - "_name": "Санаторий 213", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 213 Key", - "ShortName": "San 213 Key", - "Description": "San 213 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "63a39c69af870e651d58e6aa": { - "_id": "63a39c69af870e651d58e6aa", - "_name": "city_key4", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "64ccc268c41e91416064ebc7": { - "_id": "64ccc268c41e91416064ebc7", - "_name": "city_key40", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "5efde6b4f5448336730dbd61": { - "_id": "5efde6b4f5448336730dbd61", - "_name": "item_keycard_sanitar_room", - "_parent": "5c164d2286f774194c5e69fa", - "_type": "Item", - "_props": { - "Name": "item_keycard_lab_single_use", - "ShortName": "item_keycard_lab_single_use", - "Description": "item_keycard_lab_single_use", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/spec/item_keycard_lab/item_keycard_lab_white_sanitar.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 150, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 1 - }, - "_proto": "5751916f24597720a27126df" - }, - "5a13f46386f7741dd7384b04": { - "_id": "5a13f46386f7741dd7384b04", - "_name": "Санаторий 306", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 306 Key", - "ShortName": "San 306 Key", - "Description": "San 306 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a0f045e86f7745b0f0d0e42": { - "_id": "5a0f045e86f7745b0f0d0e42", - "_name": "Сейф Побережье Заправка", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Safe Shoreline Fuel Key", - "ShortName": "Safe Shoreline Fuel Key", - "Description": "Safe Shoreline Fuel Key", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a0f006986f7741ffd2fe484": { - "_id": "5a0f006986f7741ffd2fe484", - "_name": "Сейф Побережье Метеостанция", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Safe Shoreline Meteo Key", - "ShortName": "Safe Shoreline Meteo Key", - "Description": "Safe Shoreline Meteo Key", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "63a39f6e64283b5e9c56b289": { - "_id": "63a39f6e64283b5e9c56b289", - "_name": "city_key17", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_6.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "63a39fdf1e21260da44a0256": { - "_id": "63a39fdf1e21260da44a0256", - "_name": "city_key20", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 20 - }, - "_proto": "5780d07a2459777de4559324" - }, - "63a39c7964283b5e9c56b280": { - "_id": "63a39c7964283b5e9c56b280", - "_name": "city_key5", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_9.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "64ccc1f4ff54fb38131acf27": { - "_id": "64ccc1f4ff54fb38131acf27", - "_name": "city_key33", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_8.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "6582dc4b6ba9e979af6b79f4": { - "_id": "6582dc4b6ba9e979af6b79f4", - "_name": "city14_key3", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "601948682627df266209af05": { - "_id": "601948682627df266209af05", - "_name": "weapon_usvr_taiga", - "_parent": "5447e1d04bdc2dff2f8b4567", - "_type": "Item", - "_props": { - "Name": "weapon_usvr_taiga", - "ShortName": "weapon_usvr_taiga", - "Description": "weapon_usvr_taiga", - "Weight": 0.64, - "BackgroundColor": "grey", - "Width": 1, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "knife_generic", - "Prefab": { - "path": "assets/content/weapons/taiga/weapon_usvr_taiga_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "Scabbard", - "UnlootableFromSide": [ - "Bear", - "Usec" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "knifeHitDelay": 0, - "knifeHitSlashRate": 0, - "knifeHitStabRate": 1, - "knifeHitRadius": 0.5, - "knifeHitSlashDam": 33, - "knifeHitStabDam": 55, - "knifeDurab": 90, - "Durability": 90, - "MaxDurability": 90, - "PrimaryDistance": 0.55, - "SecondryDistance": 0.65, - "SlashPenetration": 1, - "StabPenetration": 1, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "PrimaryConsumption": 9, - "SecondryConsumption": 12, - "DeflectionConsumption": 3, - "StimulatorBuffs": "", - "MaxResource": 0, - "AppliedTrunkRotation": { - "x": 0, - "y": 0, - "z": 0 - }, - "AppliedHeadRotation": { - "x": 2, - "y": 4, - "z": 0 - }, - "DisplayOnModel": false, - "AdditionalAnimationLayer": 0, - "StaminaBurnRate": 0, - "ColliderScaleMultiplier": { - "x": 1, - "y": 1, - "z": 1 - } - }, - "_proto": "54491bb74bdc2d09088b4567" - }, "5780d0652459777df90dcb74": { "_id": "5780d0652459777df90dcb74", "_name": "Дирик бенз", @@ -399305,6 +396903,5613 @@ }, "_proto": "56784a144bdc2d99058b4569" }, + "5a13f46386f7741dd7384b04": { + "_id": "5a13f46386f7741dd7384b04", + "_name": "Санаторий 306", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 306 Key", + "ShortName": "San 306 Key", + "Description": "San 306 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5a0f045e86f7745b0f0d0e42": { + "_id": "5a0f045e86f7745b0f0d0e42", + "_name": "Сейф Побережье Заправка", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Safe Shoreline Fuel Key", + "ShortName": "Safe Shoreline Fuel Key", + "Description": "Safe Shoreline Fuel Key", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5a0f006986f7741ffd2fe484": { + "_id": "5a0f006986f7741ffd2fe484", + "_name": "Сейф Побережье Метеостанция", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Safe Shoreline Meteo Key", + "ShortName": "Safe Shoreline Meteo Key", + "Description": "Safe Shoreline Meteo Key", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "63a39f6e64283b5e9c56b289": { + "_id": "63a39f6e64283b5e9c56b289", + "_name": "city_key17", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_6.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "63a39fdf1e21260da44a0256": { + "_id": "63a39fdf1e21260da44a0256", + "_name": "city_key20", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 20 + }, + "_proto": "5780d07a2459777de4559324" + }, + "63a39c7964283b5e9c56b280": { + "_id": "63a39c7964283b5e9c56b280", + "_name": "city_key5", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_9.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "64ccc1f4ff54fb38131acf27": { + "_id": "64ccc1f4ff54fb38131acf27", + "_name": "city_key33", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_8.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "6582dc4b6ba9e979af6b79f4": { + "_id": "6582dc4b6ba9e979af6b79f4", + "_name": "city14_key3", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "601948682627df266209af05": { + "_id": "601948682627df266209af05", + "_name": "weapon_usvr_taiga", + "_parent": "5447e1d04bdc2dff2f8b4567", + "_type": "Item", + "_props": { + "Name": "weapon_usvr_taiga", + "ShortName": "weapon_usvr_taiga", + "Description": "weapon_usvr_taiga", + "Weight": 0.64, + "BackgroundColor": "grey", + "Width": 1, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "knife_generic", + "Prefab": { + "path": "assets/content/weapons/taiga/weapon_usvr_taiga_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "Scabbard", + "UnlootableFromSide": [ + "Bear", + "Usec" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "knifeHitDelay": 0, + "knifeHitSlashRate": 0, + "knifeHitStabRate": 1, + "knifeHitRadius": 0.5, + "knifeHitSlashDam": 33, + "knifeHitStabDam": 55, + "knifeDurab": 90, + "Durability": 90, + "MaxDurability": 90, + "PrimaryDistance": 0.55, + "SecondryDistance": 0.65, + "SlashPenetration": 1, + "StabPenetration": 1, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "PrimaryConsumption": 9, + "SecondryConsumption": 12, + "DeflectionConsumption": 3, + "StimulatorBuffs": "", + "MaxResource": 0, + "AppliedTrunkRotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "AppliedHeadRotation": { + "x": 2, + "y": 4, + "z": 0 + }, + "DisplayOnModel": false, + "AdditionalAnimationLayer": 0, + "StaminaBurnRate": 0, + "ColliderScaleMultiplier": { + "x": 1, + "y": 1, + "z": 1 + } + }, + "_proto": "54491bb74bdc2d09088b4567" + }, + "5d8e0db586f7744450412a42": { + "_id": "5d8e0db586f7744450412a42", + "_name": "rezbase_key_rls_officer", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5913877a86f774432f15d444": { + "_id": "5913877a86f774432f15d444", + "_name": "zapr sklad", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Gasstation closet", + "ShortName": "Gasstation closet", + "Description": "Gasstation closet", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5751916f24597720a27126df" + }, + "5a0dc95c86f77452440fc675": { + "_id": "5a0dc95c86f77452440fc675", + "_name": "Санаторий 112", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 112 Key", + "ShortName": "San 112 Key", + "Description": "San 112 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5a0ec70e86f7742c0b518fba": { + "_id": "5a0ec70e86f7742c0b518fba", + "_name": "Санаторий 207", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 207 Key", + "ShortName": "San 207 Key", + "Description": "San 207 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5a13ef0686f7746e5a411744": { + "_id": "5a13ef0686f7746e5a411744", + "_name": "Санаторий 219", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 219 Key", + "ShortName": "San 219 Key", + "Description": "San 219 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5a0eed4386f77405112912aa": { + "_id": "5a0eed4386f77405112912aa", + "_name": "Санаторий 314", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 314 Key", + "ShortName": "San 314 Key", + "Description": "San 314 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "6581998038c79576a2569e11": { + "_id": "6581998038c79576a2569e11", + "_name": "sand_key1", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "5c012ffc0db834001d23f03f": { + "_id": "5c012ffc0db834001d23f03f", + "_name": "weapon_utility_axe", + "_parent": "5447e1d04bdc2dff2f8b4567", + "_type": "Item", + "_props": { + "Name": "weapon_utility_axe", + "ShortName": "weapon_utility_axe", + "Description": "weapon_utility_axe", + "Weight": 0.64, + "BackgroundColor": "grey", + "Width": 1, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "knife_generic", + "Prefab": { + "path": "assets/content/weapons/utility_axe/weapon_utility_axe_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "Scabbard", + "UnlootableFromSide": [ + "Bear", + "Usec" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "knifeHitDelay": 0, + "knifeHitSlashRate": 0, + "knifeHitStabRate": 1, + "knifeHitRadius": 0.5, + "knifeHitSlashDam": 32, + "knifeHitStabDam": 35, + "knifeDurab": 90, + "Durability": 90, + "MaxDurability": 90, + "PrimaryDistance": 0.45, + "SecondryDistance": 0.55, + "SlashPenetration": 1, + "StabPenetration": 1, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "PrimaryConsumption": 10, + "SecondryConsumption": 13, + "DeflectionConsumption": 3, + "StimulatorBuffs": "", + "MaxResource": 0, + "AppliedTrunkRotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "AppliedHeadRotation": { + "x": 2, + "y": 4, + "z": 0 + }, + "DisplayOnModel": false, + "AdditionalAnimationLayer": 0, + "StaminaBurnRate": 0, + "ColliderScaleMultiplier": { + "x": 1, + "y": 1, + "z": 1 + } + }, + "_proto": "54491bb74bdc2d09088b4567" + }, + "544fb37f4bdc2dee738b4567": { + "_id": "544fb37f4bdc2dee738b4567", + "_name": "painkiller", + "_parent": "5448f3a14bdc2d27728b4569", + "_type": "Item", + "_props": { + "Name": "Таблетки Анальгин", + "ShortName": "Painkillers", + "Description": "", + "Weight": 0.01, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_pills", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_blister/item_analgin_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_blister/item_analgin_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 3, + "medEffectType": "duringUse", + "MaxHpResource": 4, + "hpResourceRate": 0, + "StimulatorBuffs": "", + "effects_health": { + "Hydration": { + "value": -19 + } + }, + "effects_damage": { + "Pain": { + "delay": 0, + "duration": 80, + "fadeOut": 15 + } + } + } + }, + "5e99711486f7744bfc4af328": { + "_id": "5e99711486f7744bfc4af328", + "_name": "sanitar_meds_medkit_ifak", + "_parent": "5448f39d4bdc2d0a728b4568", + "_type": "Item", + "_props": { + "Name": "Sanitar", + "ShortName": "Sanitar", + "Description": "Sanitar", + "Weight": 0.8, + "BackgroundColor": "orange", + "Width": 1, + "Height": 11, + "StackMaxSize": 1, + "ItemSound": "med_medkit", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_ifak/item_ifak_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_ifak/item_ifak_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 25, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 2, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 2, + "medEffectType": "duringUse", + "MaxHpResource": 3000, + "hpResourceRate": 1, + "StimulatorBuffs": "", + "effects_health": [], + "effects_damage": { + "DestroyedPart": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "cost": 0, + "healthPenaltyMin": 100, + "healthPenaltyMax": 100 + } + } + }, + "_proto": "544fb45d4bdc2dee738b4568" + }, + "59136a4486f774447a1ed172": { + "_id": "59136a4486f774447a1ed172", + "_name": "проходн малая общ", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "mal obsh", + "ShortName": "mal obsh", + "Description": "mal obsh", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "57518f7724597720a31c09ab" + }, + "63a39cb1c9b3aa4b61683ee2": { + "_id": "63a39cb1c9b3aa4b61683ee2", + "_name": "city_key6", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "63a39f18c2d53c2c6839c1d3": { + "_id": "63a39f18c2d53c2c6839c1d3", + "_name": "city_key16", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "658199972dc4e60f6d556a2f": { + "_id": "658199972dc4e60f6d556a2f", + "_name": "sand_key2", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "5c1d0c5f86f7744bb2683cf0": { + "_id": "5c1d0c5f86f7744bb2683cf0", + "_name": "item_keycard_lab_blue", + "_parent": "5c164d2286f774194c5e69fa", + "_type": "Item", + "_props": { + "Name": "item_keycard_lab_blue", + "ShortName": "item_keycard_lab_blue", + "Description": "item_keycard_lab_blue", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_plastic_generic", + "Prefab": { + "path": "assets/content/items/spec/item_keycard_lab/item_keycard_lab_blue.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 150, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 0 + }, + "_proto": "5448ba0b4bdc2d02308b456c" + }, + "5c1d0d6d86f7744bb2683e1f": { + "_id": "5c1d0d6d86f7744bb2683e1f", + "_name": "item_keycard_lab_yellow", + "_parent": "5c164d2286f774194c5e69fa", + "_type": "Item", + "_props": { + "Name": "item_keycard_lab_yellow", + "ShortName": "item_keycard_lab_yellow", + "Description": "item_keycard_lab_yellow", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_plastic_generic", + "Prefab": { + "path": "assets/content/items/spec/item_keycard_lab/item_keycard_lab_yellow.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 150, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 0 + }, + "_proto": "5448ba0b4bdc2d02308b456c" + }, + "57e26fc7245977162a14b800": { + "_id": "57e26fc7245977162a14b800", + "_name": "weapon_bars_a-2607_95x18", + "_parent": "5447e1d04bdc2dff2f8b4567", + "_type": "Item", + "_props": { + "Name": "weapon_bars_a-2607_95x18", + "ShortName": "weapon_bars_a-2607_95x18", + "Description": "weapon_bars_a-2607_95x18\n", + "Weight": 0.28, + "BackgroundColor": "grey", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "knife_generic", + "Prefab": { + "path": "assets/content/weapons/a-2607/weapon_bars_a-2607_95x18_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "Scabbard", + "UnlootableFromSide": [ + "Bear", + "Usec" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "knifeHitDelay": 0, + "knifeHitSlashRate": 0, + "knifeHitStabRate": 1, + "knifeHitRadius": 0.35, + "knifeHitSlashDam": 19, + "knifeHitStabDam": 25, + "knifeDurab": 40, + "Durability": 40, + "MaxDurability": 40, + "PrimaryDistance": 0.35, + "SecondryDistance": 0.45, + "SlashPenetration": 1, + "StabPenetration": 1, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "PrimaryConsumption": 8, + "SecondryConsumption": 10, + "DeflectionConsumption": 3, + "StimulatorBuffs": "", + "MaxResource": 0, + "AppliedTrunkRotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "AppliedHeadRotation": { + "x": 2, + "y": 4, + "z": 0 + }, + "DisplayOnModel": false, + "AdditionalAnimationLayer": 0, + "StaminaBurnRate": 0, + "ColliderScaleMultiplier": { + "x": 1, + "y": 1, + "z": 1 + } + }, + "_proto": "57e26ea924597715ca604a09" + }, + "5c07df7f0db834001b73588a": { + "_id": "5c07df7f0db834001b73588a", + "_name": "weapon_gf_crowbar", + "_parent": "5447e1d04bdc2dff2f8b4567", + "_type": "Item", + "_props": { + "Name": "weapon_gf_crowbar", + "ShortName": "weapon_gf_crowbar", + "Description": "weapon_gf_crowbar", + "Weight": 1.9, + "BackgroundColor": "grey", + "Width": 1, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "knife_generic", + "Prefab": { + "path": "assets/content/weapons/crowbar/weapon_gf_crowbar_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "Scabbard", + "UnlootableFromSide": [ + "Bear", + "Usec" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "knifeHitDelay": 0, + "knifeHitSlashRate": 0, + "knifeHitStabRate": 1, + "knifeHitRadius": 0.5, + "knifeHitSlashDam": 25, + "knifeHitStabDam": 34, + "knifeDurab": 100, + "Durability": 100, + "MaxDurability": 100, + "PrimaryDistance": 0.5, + "SecondryDistance": 0.6, + "SlashPenetration": 1, + "StabPenetration": 1, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "PrimaryConsumption": 10, + "SecondryConsumption": 13, + "DeflectionConsumption": 3, + "StimulatorBuffs": "", + "MaxResource": 0, + "AppliedTrunkRotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "AppliedHeadRotation": { + "x": 2, + "y": 4, + "z": 0 + }, + "DisplayOnModel": false, + "AdditionalAnimationLayer": 0, + "StaminaBurnRate": 0, + "ColliderScaleMultiplier": { + "x": 1, + "y": 1, + "z": 1 + } + }, + "_proto": "54491bb74bdc2d09088b4567" + }, + "5c010e350db83400232feec7": { + "_id": "5c010e350db83400232feec7", + "_name": "weapon_sp-8", + "_parent": "5447e1d04bdc2dff2f8b4567", + "_type": "Item", + "_props": { + "Name": "weapon_ontario_sp-8", + "ShortName": "weapon_ontario_sp-8", + "Description": "weapon_ontario_sp-8", + "Weight": 0.635, + "BackgroundColor": "grey", + "Width": 1, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "knife_generic", + "Prefab": { + "path": "assets/content/weapons/sp-8/weapon_ontario_sp-8_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "Scabbard", + "UnlootableFromSide": [ + "Bear", + "Usec" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "knifeHitDelay": 0, + "knifeHitSlashRate": 0, + "knifeHitStabRate": 1, + "knifeHitRadius": 0.5, + "knifeHitSlashDam": 30, + "knifeHitStabDam": 40, + "knifeDurab": 90, + "Durability": 90, + "MaxDurability": 90, + "PrimaryDistance": 0.5, + "SecondryDistance": 0.6, + "SlashPenetration": 1, + "StabPenetration": 1, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "PrimaryConsumption": 10, + "SecondryConsumption": 13, + "DeflectionConsumption": 3, + "StimulatorBuffs": "", + "MaxResource": 0, + "AppliedTrunkRotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "AppliedHeadRotation": { + "x": 2, + "y": 4, + "z": 0 + }, + "DisplayOnModel": false, + "AdditionalAnimationLayer": 0, + "StaminaBurnRate": 0, + "ColliderScaleMultiplier": { + "x": 1, + "y": 1, + "z": 1 + } + }, + "_proto": "54491bb74bdc2d09088b4567" + }, + "5a13eebd86f7746fd639aa93": { + "_id": "5a13eebd86f7746fd639aa93", + "_name": "Санаторий 218", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 218 Key", + "ShortName": "San 218 Key", + "Description": "San 218 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5a0eec9686f77402ac5c39f2": { + "_id": "5a0eec9686f77402ac5c39f2", + "_name": "Санаторий 310", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 310 Key", + "ShortName": "San 310 Key", + "Description": "San 310 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5a0f068686f7745b0d4ea242": { + "_id": "5a0f068686f7745b0d4ea242", + "_name": "Сейф Побережье Коттедж", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Safe Shoreline House Key", + "ShortName": "Safe Shoreline House Key", + "Description": "Safe Shoreline House Key", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5780cf7f2459777de4559322": { + "_id": "5780cf7f2459777de4559322", + "_name": "Общага1 мат", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Room M", + "ShortName": "Room M", + "Description": "Room M", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_14.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 150, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 10 + }, + "_proto": "5780cf722459777a5108b9a1" + }, + "6391fcf5744e45201147080f": { + "_id": "6391fcf5744e45201147080f", + "_name": "item_quest_c5_mar_key", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Quest test key", + "ShortName": "Quest test key", + "Description": "Quest test key", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_8.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 1 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5c164d2286f774194c5e69fa": { + "_id": "5c164d2286f774194c5e69fa", + "_name": "Keycard", + "_parent": "543be5e94bdc2df1348b4568", + "_type": "Node", + "_props": {} + }, + "5be4038986f774527d3fae60": { + "_id": "5be4038986f774527d3fae60", + "_name": "interchange plan", + "_parent": "567849dd4bdc2d150f8b456e", + "_type": "Item", + "_props": { + "Name": "Interchange Plan", + "ShortName": "Interchange Plan", + "Description": "Interchange Plan", + "Weight": 0.045, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_map", + "Prefab": { + "path": "assets/content/items/map/map.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "ConfigPathStr": "UI/PocketMap/Plans/InterchangePlan/config", + "MaxMarkersCount": 100, + "scaleMin": 0.35, + "scaleMax": 1 + }, + "_proto": "56784a144bdc2d99058b4569" + }, + "5ede7b0c6d23e5473e6e8c66": { + "_id": "5ede7b0c6d23e5473e6e8c66", + "_name": "rezbase_key_rls_stor1", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5d95d6fa86f77424484aa5e9": { + "_id": "5d95d6fa86f77424484aa5e9", + "_name": "rezbase_key_substorge_food2", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_6.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5d95d6be86f77424444eb3a7": { + "_id": "5d95d6be86f77424444eb3a7", + "_name": "rezbase_key_substorge_water2", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_6.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5d80c66d86f774405611c7d6": { + "_id": "5d80c66d86f774405611c7d6", + "_name": "rezbase_key_vohr_arsenal", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_7.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5a0ec6d286f7742c0b518fb5": { + "_id": "5a0ec6d286f7742c0b518fb5", + "_name": "Санаторий 205", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 205 Key", + "ShortName": "San 205 Key", + "Description": "San 205 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5d80cd1a86f77402aa362f42": { + "_id": "5d80cd1a86f77402aa362f42", + "_name": "rezbase_key_mid_weap2fl", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "5a0eff2986f7741fd654e684": { + "_id": "5a0eff2986f7741fd654e684", + "_name": "Сейф Побережье 321", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Safe Shoreline 321 Key", + "ShortName": "Safe Shoreline 321 Key", + "Description": "Safe Shoreline 321 Key", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5a0ee62286f774369454a7ac": { + "_id": "5a0ee62286f774369454a7ac", + "_name": "Санаторий 209", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 209 Key", + "ShortName": "San 209 Key", + "Description": "San 209 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5a0ee72c86f77436955d3435": { + "_id": "5a0ee72c86f77436955d3435", + "_name": "Санаторий 213", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 213 Key", + "ShortName": "San 213 Key", + "Description": "San 213 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "63a39c69af870e651d58e6aa": { + "_id": "63a39c69af870e651d58e6aa", + "_name": "city_key4", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "5a0ee34586f774023b6ee092": { + "_id": "5a0ee34586f774023b6ee092", + "_name": "Санаторий 220", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 220 Key", + "ShortName": "San 220 Key", + "Description": "San 220 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "64ccc268c41e91416064ebc7": { + "_id": "64ccc268c41e91416064ebc7", + "_name": "city_key40", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "5efde6b4f5448336730dbd61": { + "_id": "5efde6b4f5448336730dbd61", + "_name": "item_keycard_sanitar_room", + "_parent": "5c164d2286f774194c5e69fa", + "_type": "Item", + "_props": { + "Name": "item_keycard_lab_single_use", + "ShortName": "item_keycard_lab_single_use", + "Description": "item_keycard_lab_single_use", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_plastic_generic", + "Prefab": { + "path": "assets/content/items/spec/item_keycard_lab/item_keycard_lab_white_sanitar.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 150, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 1 + }, + "_proto": "5751916f24597720a27126df" + }, + "5a0ee37f86f774023657a86f": { + "_id": "5a0ee37f86f774023657a86f", + "_name": "Санаторий 221", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 221 Key", + "ShortName": "San 221 Key", + "Description": "San 221 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5a13f35286f77413ef1436b0": { + "_id": "5a13f35286f77413ef1436b0", + "_name": "Санаторий 226 восточное крыло", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 226 ost Key", + "ShortName": "San 226 ost Key", + "Description": "San 226 ost Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5a0eee1486f77402aa773226": { + "_id": "5a0eee1486f77402aa773226", + "_name": "Санаторий 328", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 328 Key", + "ShortName": "San 328 Key", + "Description": "San 328 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5780d0532459777a5108b9a2": { + "_id": "5780d0532459777a5108b9a2", + "_name": "Офисы тамож", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Office key", + "ShortName": "Office key", + "Description": "Office key", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "57518f7724597720a31c09ab" + }, + "63a71e781031ac76fe773c7d": { + "_id": "63a71e781031ac76fe773c7d", + "_name": "city_key21", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_8.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "5a0eedb386f77403506300be": { + "_id": "5a0eedb386f77403506300be", + "_name": "Санаторий 322", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 322 Key", + "ShortName": "San 322 Key", + "Description": "San 322 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "64ccc1fe088064307e14a6f7": { + "_id": "64ccc1fe088064307e14a6f7", + "_name": "city_key34", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "64ccc246ff54fb38131acf29": { + "_id": "64ccc246ff54fb38131acf29", + "_name": "city_key37", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_7.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "5e42c81886f7742a01529f57": { + "_id": "5e42c81886f7742a01529f57", + "_name": "keycard_inter_store1", + "_parent": "5c164d2286f774194c5e69fa", + "_type": "Item", + "_props": { + "Name": "item_keycard_lab_blue", + "ShortName": "item_keycard_lab_blue", + "Description": "item_keycard_lab_blue", + "Weight": 0.01, + "BackgroundColor": "green", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_plastic_generic", + "Prefab": { + "path": "assets/content/items/spec/item_keycard_lab/item_keycard_interchange_store_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 150, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 15 + }, + "_proto": "5448ba0b4bdc2d02308b456c" + }, + "6087e570b998180e9f76dc24": { + "_id": "6087e570b998180e9f76dc24", + "_name": "weapon_hultafors_db5000", + "_parent": "5447e1d04bdc2dff2f8b4567", + "_type": "Item", + "_props": { + "Name": "weapon_hultafors_db5000", + "ShortName": "weapon_hultafors_db5000", + "Description": "weapon_hultafors_db5000\n", + "Weight": 1.4, + "BackgroundColor": "grey", + "Width": 1, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "knife_generic", + "Prefab": { + "path": "assets/content/weapons/hultafors/weapon_hultafors_db5000_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "Scabbard", + "UnlootableFromSide": [ + "Bear", + "Usec", + "Savage" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "knifeHitDelay": 0, + "knifeHitSlashRate": 0, + "knifeHitStabRate": 1, + "knifeHitRadius": 0.8, + "knifeHitSlashDam": 103, + "knifeHitStabDam": 125, + "knifeDurab": 90, + "Durability": 90, + "MaxDurability": 90, + "PrimaryDistance": 0.8, + "SecondryDistance": 0.8, + "SlashPenetration": 1, + "StabPenetration": 1, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "PrimaryConsumption": 10, + "SecondryConsumption": 13, + "DeflectionConsumption": 3, + "StimulatorBuffs": "Buffs_hultafors", + "MaxResource": 0, + "AppliedTrunkRotation": { + "x": 15, + "y": 30, + "z": 0 + }, + "AppliedHeadRotation": { + "x": 4, + "y": 8, + "z": 0 + }, + "DisplayOnModel": true, + "AdditionalAnimationLayer": 12, + "StaminaBurnRate": 1, + "ColliderScaleMultiplier": { + "x": 1.15, + "y": 1.35, + "z": 1.15 + } + }, + "_proto": "54491bb74bdc2d09088b4567" + }, + "5af0548586f7743a532b7e99": { + "_id": "5af0548586f7743a532b7e99", + "_name": "item_barter_medical_ibuprofen", + "_parent": "5448f3a14bdc2d27728b4569", + "_type": "Item", + "_props": { + "Name": "ibuprofen", + "ShortName": "ibuprofen", + "Description": "ibuprofen", + "Weight": 0.07, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_pills", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_ibuprofen/item_ibuprofen_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_ibuprofen/item_ibuprofen_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 5, + "medEffectType": "duringUse", + "MaxHpResource": 15, + "hpResourceRate": 0, + "StimulatorBuffs": "", + "effects_health": { + "Hydration": { + "value": -17 + } + }, + "effects_damage": { + "Pain": { + "delay": 0, + "duration": 280, + "fadeOut": 10 + }, + "Contusion": { + "delay": 0, + "duration": 0, + "fadeOut": 0 + } + } + }, + "_proto": "544fb37f4bdc2dee738b4567" + }, + "5a0f075686f7745bcc42ee12": { + "_id": "5a0f075686f7745bcc42ee12", + "_name": "Сейф Побережье Магазин", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Safe Shoreline Shoop Key", + "ShortName": "Safe Shoreline Shoop Key", + "Description": "Safe Shoreline Shoop Key", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "63a71e86b7f4570d3a293169": { + "_id": "63a71e86b7f4570d3a293169", + "_name": "city_key22", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_8.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "63a39e49cd6db0635c1975fc": { + "_id": "63a39e49cd6db0635c1975fc", + "_name": "city_key12", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "64ccc1ec1779ad6ba200a137": { + "_id": "64ccc1ec1779ad6ba200a137", + "_name": "city_key32", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_8.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "64ccc206793ca11c8f450a38": { + "_id": "64ccc206793ca11c8f450a38", + "_name": "city_key35", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "63920105a83e15700a00f168": { + "_id": "63920105a83e15700a00f168", + "_name": "weapon_sog_voodoo_hawk", + "_parent": "5447e1d04bdc2dff2f8b4567", + "_type": "Item", + "_props": { + "Name": "weapon_kiba_arms_axe", + "ShortName": "weapon_kiba_arms_axe", + "Description": "weapon_kiba_arms_axe", + "Weight": 0.807, + "BackgroundColor": "grey", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "knife_generic", + "Prefab": { + "path": "assets/content/weapons/voodoo/weapon_sog_voodoo_hawk_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "Scabbard", + "UnlootableFromSide": [ + "Bear", + "Usec" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "knifeHitDelay": 0, + "knifeHitSlashRate": 0, + "knifeHitStabRate": 1, + "knifeHitRadius": 0.45, + "knifeHitSlashDam": 32, + "knifeHitStabDam": 40, + "knifeDurab": 100, + "Durability": 100, + "MaxDurability": 100, + "PrimaryDistance": 0.45, + "SecondryDistance": 0.55, + "SlashPenetration": 1, + "StabPenetration": 1, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "PrimaryConsumption": 10, + "SecondryConsumption": 13, + "DeflectionConsumption": 3, + "StimulatorBuffs": "", + "MaxResource": 0, + "AppliedTrunkRotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "AppliedHeadRotation": { + "x": 2, + "y": 4, + "z": 0 + }, + "DisplayOnModel": false, + "AdditionalAnimationLayer": 0, + "StaminaBurnRate": 0, + "ColliderScaleMultiplier": { + "x": 1, + "y": 1, + "z": 1 + } + }, + "_proto": "54491bb74bdc2d09088b4567" + }, + "5bead2e00db834001c062938": { + "_id": "5bead2e00db834001c062938", + "_name": "weapon_voentorg_mpl-40", + "_parent": "5447e1d04bdc2dff2f8b4567", + "_type": "Item", + "_props": { + "Name": "weapon_voentorg_mpl-50", + "ShortName": "weapon_voentorg_mpl-50", + "Description": "weapon_voentorg_mpl-50", + "Weight": 0.8, + "BackgroundColor": "grey", + "Width": 1, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "knife_generic", + "Prefab": { + "path": "assets/content/weapons/mpl40/weapon_voentorg_mpl-40_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "Scabbard", + "UnlootableFromSide": [ + "Bear", + "Usec" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "knifeHitDelay": 0, + "knifeHitSlashRate": 0, + "knifeHitStabRate": 1, + "knifeHitRadius": 0.55, + "knifeHitSlashDam": 24, + "knifeHitStabDam": 43, + "knifeDurab": 65, + "Durability": 65, + "MaxDurability": 65, + "PrimaryDistance": 0.55, + "SecondryDistance": 0.65, + "SlashPenetration": 1, + "StabPenetration": 1, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "PrimaryConsumption": 10, + "SecondryConsumption": 13, + "DeflectionConsumption": 3, + "StimulatorBuffs": "", + "MaxResource": 0, + "AppliedTrunkRotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "AppliedHeadRotation": { + "x": 2, + "y": 4, + "z": 0 + }, + "DisplayOnModel": false, + "AdditionalAnimationLayer": 0, + "StaminaBurnRate": 0, + "ColliderScaleMultiplier": { + "x": 1, + "y": 1, + "z": 1 + } + }, + "_proto": "54491bb74bdc2d09088b4567" + }, + "5d8e0e0e86f774321140eb56": { + "_id": "5d8e0e0e86f774321140eb56", + "_name": "rezbase_key_rls_kpp", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Key_Shopping_Mall_KIBA", + "ShortName": "Key_Shopping_Mall_KIBA", + "Description": "Key_Shopping_Mall_KIBA", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5671446a4bdc2d97058b4569" + }, + "593aa4be86f77457f56379f8": { + "_id": "593aa4be86f77457f56379f8", + "_name": "Общага1 303", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Room 303 Key", + "ShortName": "Room 303 Key", + "Description": "Room 303 Key", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5a1452ee86f7746f33111763": { + "_id": "5a1452ee86f7746f33111763", + "_name": "Санаторий 222", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San 222 Key", + "ShortName": "San 222 Key", + "Description": "San 222 Key", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5a0ea79b86f7741d4a35298e": { + "_id": "5a0ea79b86f7741d4a35298e", + "_name": "Санаторий подсобка", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "San storeroom Key", + "ShortName": "San storeroom Key", + "Description": "San storeroom Key", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5a0f0f5886f7741c4e32a472": { + "_id": "5a0f0f5886f7741c4e32a472", + "_name": "Сейф Побережье Кухня 1", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Safe Shoreline Kitchen Key", + "ShortName": "Safe Shoreline Kitchen Key", + "Description": "Safe Shoreline Kitchen Key", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "5a0f08bc86f77478f33b84c2": { + "_id": "5a0f08bc86f77478f33b84c2", + "_name": "Сейф Побережье Кухня 2", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Safe Shoreline Kitchen2 Key", + "ShortName": "Safe Shoreline Kitchen2 Key", + "Description": "Safe Shoreline Kitchen2 Key", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_4.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5672c92d4bdc2d180f8b4567" + }, + "63a39ce4cd6db0635c1975fa": { + "_id": "63a39ce4cd6db0635c1975fa", + "_name": "city_key7", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "63a39df18a56922e82001f25": { + "_id": "63a39df18a56922e82001f25", + "_name": "city_key9", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_8.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "63a39f08cd6db0635c197600": { + "_id": "63a39f08cd6db0635c197600", + "_name": "city_key15", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_3.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "64ccc2111779ad6ba200a139": { + "_id": "64ccc2111779ad6ba200a139", + "_name": "city_key36", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_6.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 40 + }, + "_proto": "5780d07a2459777de4559324" + }, + "64d4b23dc1b37504b41ac2b6": { + "_id": "64d4b23dc1b37504b41ac2b6", + "_name": "city_key42", + "_parent": "5c99f98d86f7745c314214b3", + "_type": "Item", + "_props": { + "Name": "Factory office ", + "ShortName": "Factory office ", + "Description": "Factory office ", + "Weight": 0.01, + "BackgroundColor": "red", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "keys", + "Prefab": { + "path": "assets/content/items/spec/keys/item_key_12.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 302, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 1 + }, + "_proto": "5780d07a2459777de4559324" + }, + "54491bb74bdc2d09088b4567": { + "_id": "54491bb74bdc2d09088b4567", + "_name": "ER Bayonet", + "_parent": "5447e1d04bdc2dff2f8b4567", + "_type": "Item", + "_props": { + "Name": "ER Bayonet", + "ShortName": "ER Bayonet", + "Description": "", + "Weight": 0.45, + "BackgroundColor": "grey", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "knife_generic", + "Prefab": { + "path": "assets/content/weapons/fulcrum/weapon_extrema_ratio_fulcrum_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "Scabbard", + "UnlootableFromSide": [ + "Bear", + "Usec" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "knifeHitDelay": 0, + "knifeHitSlashRate": 0, + "knifeHitStabRate": 1, + "knifeHitRadius": 0.4, + "knifeHitSlashDam": 25, + "knifeHitStabDam": 27, + "knifeDurab": 70, + "Durability": 70, + "MaxDurability": 70, + "PrimaryDistance": 0.4, + "SecondryDistance": 0.5, + "SlashPenetration": 1, + "StabPenetration": 1, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "PrimaryConsumption": 8, + "SecondryConsumption": 10, + "DeflectionConsumption": 3, + "StimulatorBuffs": "", + "MaxResource": 0, + "AppliedTrunkRotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "AppliedHeadRotation": { + "x": 2, + "y": 4, + "z": 0 + }, + "DisplayOnModel": false, + "AdditionalAnimationLayer": 0, + "StaminaBurnRate": 0, + "ColliderScaleMultiplier": { + "x": 1, + "y": 1, + "z": 1 + } + } + }, + "5900b89686f7744e704a8747": { + "_id": "5900b89686f7744e704a8747", + "_name": "woods plan", + "_parent": "567849dd4bdc2d150f8b456e", + "_type": "Item", + "_props": { + "Name": "Woods Plan", + "ShortName": "Woods Plan", + "Description": "Woods Plan", + "Weight": 0.045, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_map", + "Prefab": { + "path": "assets/content/items/map/map.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "ConfigPathStr": "UI/PocketMap/Plans/WoodsPlan/config", + "MaxMarkersCount": 100, + "scaleMin": 0.24, + "scaleMax": 1 + }, + "_proto": "56784a144bdc2d99058b4569" + }, + "5751a89d24597722aa0e8db0": { + "_id": "5751a89d24597722aa0e8db0", + "_name": "golden_star_balm", + "_parent": "5448f3a14bdc2d27728b4569", + "_type": "Item", + "_props": { + "Name": "Golden Star Balm", + "ShortName": "Golden Star Balm", + "Description": "Golden Star Balm", + "Weight": 0.016, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_golden_star_balm/item_golden_star_balm_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_golden_star_balm/item_golden_star_balm_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 7, + "medEffectType": "duringUse", + "MaxHpResource": 10, + "hpResourceRate": 0, + "StimulatorBuffs": "BuffsGoldenStarBalm", + "effects_health": { + "Energy": { + "value": -19 + } + }, + "effects_damage": { + "Pain": { + "delay": 0, + "duration": 350, + "fadeOut": 20 + }, + "Contusion": { + "delay": 0, + "duration": 0, + "fadeOut": 0 + }, + "RadExposure": { + "delay": 0, + "duration": 400, + "fadeOut": 20 + } + } + }, + "_proto": "544fb25a4bdc2dfb738b4567" + }, + "590c657e86f77412b013051d": { + "_id": "590c657e86f77412b013051d", + "_name": "AMK_Grizzly", + "_parent": "5448f39d4bdc2d0a728b4568", + "_type": "Item", + "_props": { + "Name": "Grizzly", + "ShortName": "Grizzly", + "Description": "Grizzly", + "Weight": 1.6, + "BackgroundColor": "orange", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "med_medkit", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_meds_grizly/item_grizzly_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_meds_grizly/item_meds_grizly_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 40, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 2, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 5, + "medEffectType": "duringUse", + "MaxHpResource": 1800, + "hpResourceRate": 175, + "StimulatorBuffs": "", + "effects_health": [], + "effects_damage": { + "LightBleeding": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "cost": 40 + }, + "HeavyBleeding": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "cost": 130 + }, + "Fracture": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "cost": 50 + }, + "Contusion": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "cost": 0 + }, + "RadExposure": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "cost": 0 + } + } + }, + "_proto": "544fb45d4bdc2dee738b4568" + }, "5938504186f7740991483f30": { "_id": "5938504186f7740991483f30", "_name": "Общага1 203", @@ -400560,2528 +403765,27 @@ }, "_proto": "544fb37f4bdc2dee738b4567" }, - "5d8e0e0e86f774321140eb56": { - "_id": "5d8e0e0e86f774321140eb56", - "_name": "rezbase_key_rls_kpp", - "_parent": "5c99f98d86f7745c314214b3", + "60098ad7c2240c0fe85c570a": { + "_id": "60098ad7c2240c0fe85c570a", + "_name": "item_meds_afak", + "_parent": "5448f39d4bdc2d0a728b4568", "_type": "Item", "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "593aa4be86f77457f56379f8": { - "_id": "593aa4be86f77457f56379f8", - "_name": "Общага1 303", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Room 303 Key", - "ShortName": "Room 303 Key", - "Description": "Room 303 Key", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a1452ee86f7746f33111763": { - "_id": "5a1452ee86f7746f33111763", - "_name": "Санаторий 222", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 222 Key", - "ShortName": "San 222 Key", - "Description": "San 222 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a0ea79b86f7741d4a35298e": { - "_id": "5a0ea79b86f7741d4a35298e", - "_name": "Санаторий подсобка", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San storeroom Key", - "ShortName": "San storeroom Key", - "Description": "San storeroom Key", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a0f0f5886f7741c4e32a472": { - "_id": "5a0f0f5886f7741c4e32a472", - "_name": "Сейф Побережье Кухня 1", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Safe Shoreline Kitchen Key", - "ShortName": "Safe Shoreline Kitchen Key", - "Description": "Safe Shoreline Kitchen Key", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a0f08bc86f77478f33b84c2": { - "_id": "5a0f08bc86f77478f33b84c2", - "_name": "Сейф Побережье Кухня 2", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Safe Shoreline Kitchen2 Key", - "ShortName": "Safe Shoreline Kitchen2 Key", - "Description": "Safe Shoreline Kitchen2 Key", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "63a39ce4cd6db0635c1975fa": { - "_id": "63a39ce4cd6db0635c1975fa", - "_name": "city_key7", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "63a39df18a56922e82001f25": { - "_id": "63a39df18a56922e82001f25", - "_name": "city_key9", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_8.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "63a39f08cd6db0635c197600": { - "_id": "63a39f08cd6db0635c197600", - "_name": "city_key15", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "64ccc2111779ad6ba200a139": { - "_id": "64ccc2111779ad6ba200a139", - "_name": "city_key36", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_6.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "64d4b23dc1b37504b41ac2b6": { - "_id": "64d4b23dc1b37504b41ac2b6", - "_name": "city_key42", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "red", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_12.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 302, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 1 - }, - "_proto": "5780d07a2459777de4559324" - }, - "54491bb74bdc2d09088b4567": { - "_id": "54491bb74bdc2d09088b4567", - "_name": "ER Bayonet", - "_parent": "5447e1d04bdc2dff2f8b4567", - "_type": "Item", - "_props": { - "Name": "ER Bayonet", - "ShortName": "ER Bayonet", - "Description": "", - "Weight": 0.45, - "BackgroundColor": "grey", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "knife_generic", - "Prefab": { - "path": "assets/content/weapons/fulcrum/weapon_extrema_ratio_fulcrum_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "Scabbard", - "UnlootableFromSide": [ - "Bear", - "Usec" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "knifeHitDelay": 0, - "knifeHitSlashRate": 0, - "knifeHitStabRate": 1, - "knifeHitRadius": 0.4, - "knifeHitSlashDam": 25, - "knifeHitStabDam": 27, - "knifeDurab": 70, - "Durability": 70, - "MaxDurability": 70, - "PrimaryDistance": 0.4, - "SecondryDistance": 0.5, - "SlashPenetration": 1, - "StabPenetration": 1, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "PrimaryConsumption": 8, - "SecondryConsumption": 10, - "DeflectionConsumption": 3, - "StimulatorBuffs": "", - "MaxResource": 0, - "AppliedTrunkRotation": { - "x": 0, - "y": 0, - "z": 0 - }, - "AppliedHeadRotation": { - "x": 2, - "y": 4, - "z": 0 - }, - "DisplayOnModel": false, - "AdditionalAnimationLayer": 0, - "StaminaBurnRate": 0, - "ColliderScaleMultiplier": { - "x": 1, - "y": 1, - "z": 1 - } - } - }, - "5900b89686f7744e704a8747": { - "_id": "5900b89686f7744e704a8747", - "_name": "woods plan", - "_parent": "567849dd4bdc2d150f8b456e", - "_type": "Item", - "_props": { - "Name": "Woods Plan", - "ShortName": "Woods Plan", - "Description": "Woods Plan", - "Weight": 0.045, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_map", - "Prefab": { - "path": "assets/content/items/map/map.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "ConfigPathStr": "UI/PocketMap/Plans/WoodsPlan/config", - "MaxMarkersCount": 100, - "scaleMin": 0.24, - "scaleMax": 1 - }, - "_proto": "56784a144bdc2d99058b4569" - }, - "5751a89d24597722aa0e8db0": { - "_id": "5751a89d24597722aa0e8db0", - "_name": "golden_star_balm", - "_parent": "5448f3a14bdc2d27728b4569", - "_type": "Item", - "_props": { - "Name": "Golden Star Balm", - "ShortName": "Golden Star Balm", - "Description": "Golden Star Balm", - "Weight": 0.016, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_golden_star_balm/item_golden_star_balm_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_golden_star_balm/item_golden_star_balm_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 7, - "medEffectType": "duringUse", - "MaxHpResource": 10, - "hpResourceRate": 0, - "StimulatorBuffs": "BuffsGoldenStarBalm", - "effects_health": { - "Energy": { - "value": -19 - } - }, - "effects_damage": { - "Pain": { - "delay": 0, - "duration": 350, - "fadeOut": 20 - }, - "Contusion": { - "delay": 0, - "duration": 0, - "fadeOut": 0 - }, - "RadExposure": { - "delay": 0, - "duration": 400, - "fadeOut": 20 - } - } - }, - "_proto": "544fb25a4bdc2dfb738b4567" - }, - "5a0f075686f7745bcc42ee12": { - "_id": "5a0f075686f7745bcc42ee12", - "_name": "Сейф Побережье Магазин", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Safe Shoreline Shoop Key", - "ShortName": "Safe Shoreline Shoop Key", - "Description": "Safe Shoreline Shoop Key", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "63a71e86b7f4570d3a293169": { - "_id": "63a71e86b7f4570d3a293169", - "_name": "city_key22", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_8.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "63a39e49cd6db0635c1975fc": { - "_id": "63a39e49cd6db0635c1975fc", - "_name": "city_key12", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "64ccc1ec1779ad6ba200a137": { - "_id": "64ccc1ec1779ad6ba200a137", - "_name": "city_key32", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_8.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "64ccc206793ca11c8f450a38": { - "_id": "64ccc206793ca11c8f450a38", - "_name": "city_key35", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "63920105a83e15700a00f168": { - "_id": "63920105a83e15700a00f168", - "_name": "weapon_sog_voodoo_hawk", - "_parent": "5447e1d04bdc2dff2f8b4567", - "_type": "Item", - "_props": { - "Name": "weapon_kiba_arms_axe", - "ShortName": "weapon_kiba_arms_axe", - "Description": "weapon_kiba_arms_axe", - "Weight": 0.807, - "BackgroundColor": "grey", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "knife_generic", - "Prefab": { - "path": "assets/content/weapons/voodoo/weapon_sog_voodoo_hawk_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "Scabbard", - "UnlootableFromSide": [ - "Bear", - "Usec" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "knifeHitDelay": 0, - "knifeHitSlashRate": 0, - "knifeHitStabRate": 1, - "knifeHitRadius": 0.45, - "knifeHitSlashDam": 32, - "knifeHitStabDam": 40, - "knifeDurab": 100, - "Durability": 100, - "MaxDurability": 100, - "PrimaryDistance": 0.45, - "SecondryDistance": 0.55, - "SlashPenetration": 1, - "StabPenetration": 1, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "PrimaryConsumption": 10, - "SecondryConsumption": 13, - "DeflectionConsumption": 3, - "StimulatorBuffs": "", - "MaxResource": 0, - "AppliedTrunkRotation": { - "x": 0, - "y": 0, - "z": 0 - }, - "AppliedHeadRotation": { - "x": 2, - "y": 4, - "z": 0 - }, - "DisplayOnModel": false, - "AdditionalAnimationLayer": 0, - "StaminaBurnRate": 0, - "ColliderScaleMultiplier": { - "x": 1, - "y": 1, - "z": 1 - } - }, - "_proto": "54491bb74bdc2d09088b4567" - }, - "5bead2e00db834001c062938": { - "_id": "5bead2e00db834001c062938", - "_name": "weapon_voentorg_mpl-40", - "_parent": "5447e1d04bdc2dff2f8b4567", - "_type": "Item", - "_props": { - "Name": "weapon_voentorg_mpl-50", - "ShortName": "weapon_voentorg_mpl-50", - "Description": "weapon_voentorg_mpl-50", + "Name": "ifak", + "ShortName": "ifak", + "Description": "ifak", "Weight": 0.8, - "BackgroundColor": "grey", - "Width": 1, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "knife_generic", - "Prefab": { - "path": "assets/content/weapons/mpl40/weapon_voentorg_mpl-40_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "Scabbard", - "UnlootableFromSide": [ - "Bear", - "Usec" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "knifeHitDelay": 0, - "knifeHitSlashRate": 0, - "knifeHitStabRate": 1, - "knifeHitRadius": 0.55, - "knifeHitSlashDam": 24, - "knifeHitStabDam": 43, - "knifeDurab": 65, - "Durability": 65, - "MaxDurability": 65, - "PrimaryDistance": 0.55, - "SecondryDistance": 0.65, - "SlashPenetration": 1, - "StabPenetration": 1, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "PrimaryConsumption": 10, - "SecondryConsumption": 13, - "DeflectionConsumption": 3, - "StimulatorBuffs": "", - "MaxResource": 0, - "AppliedTrunkRotation": { - "x": 0, - "y": 0, - "z": 0 - }, - "AppliedHeadRotation": { - "x": 2, - "y": 4, - "z": 0 - }, - "DisplayOnModel": false, - "AdditionalAnimationLayer": 0, - "StaminaBurnRate": 0, - "ColliderScaleMultiplier": { - "x": 1, - "y": 1, - "z": 1 - } - }, - "_proto": "54491bb74bdc2d09088b4567" - }, - "5672c92d4bdc2d180f8b4567": { - "_id": "5672c92d4bdc2d180f8b4567", - "_name": "Ключ от комнаты в общаге", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Room 118 Key", - "ShortName": "Room 118 Key", - "Description": "Room 118 Key", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - } - }, - "5a13eebd86f7746fd639aa93": { - "_id": "5a13eebd86f7746fd639aa93", - "_name": "Санаторий 218", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 218 Key", - "ShortName": "San 218 Key", - "Description": "San 218 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a0eec9686f77402ac5c39f2": { - "_id": "5a0eec9686f77402ac5c39f2", - "_name": "Санаторий 310", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 310 Key", - "ShortName": "San 310 Key", - "Description": "San 310 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a0f068686f7745b0d4ea242": { - "_id": "5a0f068686f7745b0d4ea242", - "_name": "Сейф Побережье Коттедж", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Safe Shoreline House Key", - "ShortName": "Safe Shoreline House Key", - "Description": "Safe Shoreline House Key", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_4.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5780cf7f2459777de4559322": { - "_id": "5780cf7f2459777de4559322", - "_name": "Общага1 мат", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Room M", - "ShortName": "Room M", - "Description": "Room M", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_14.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 150, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 10 - }, - "_proto": "5780cf722459777a5108b9a1" - }, - "6391fcf5744e45201147080f": { - "_id": "6391fcf5744e45201147080f", - "_name": "item_quest_c5_mar_key", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Quest test key", - "ShortName": "Quest test key", - "Description": "Quest test key", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_8.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 1 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5c164d2286f774194c5e69fa": { - "_id": "5c164d2286f774194c5e69fa", - "_name": "Keycard", - "_parent": "543be5e94bdc2df1348b4568", - "_type": "Node", - "_props": {} - }, - "5be4038986f774527d3fae60": { - "_id": "5be4038986f774527d3fae60", - "_name": "interchange plan", - "_parent": "567849dd4bdc2d150f8b456e", - "_type": "Item", - "_props": { - "Name": "Interchange Plan", - "ShortName": "Interchange Plan", - "Description": "Interchange Plan", - "Weight": 0.045, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_map", - "Prefab": { - "path": "assets/content/items/map/map.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "ConfigPathStr": "UI/PocketMap/Plans/InterchangePlan/config", - "MaxMarkersCount": 100, - "scaleMin": 0.35, - "scaleMax": 1 - }, - "_proto": "56784a144bdc2d99058b4569" - }, - "5d8e0db586f7744450412a42": { - "_id": "5d8e0db586f7744450412a42", - "_name": "rezbase_key_rls_officer", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "5913877a86f774432f15d444": { - "_id": "5913877a86f774432f15d444", - "_name": "zapr sklad", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Gasstation closet", - "ShortName": "Gasstation closet", - "Description": "Gasstation closet", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5751916f24597720a27126df" - }, - "5a0dc95c86f77452440fc675": { - "_id": "5a0dc95c86f77452440fc675", - "_name": "Санаторий 112", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 112 Key", - "ShortName": "San 112 Key", - "Description": "San 112 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_5.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a0ec70e86f7742c0b518fba": { - "_id": "5a0ec70e86f7742c0b518fba", - "_name": "Санаторий 207", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 207 Key", - "ShortName": "San 207 Key", - "Description": "San 207 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a13ef0686f7746e5a411744": { - "_id": "5a13ef0686f7746e5a411744", - "_name": "Санаторий 219", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 219 Key", - "ShortName": "San 219 Key", - "Description": "San 219 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "5a0eed4386f77405112912aa": { - "_id": "5a0eed4386f77405112912aa", - "_name": "Санаторий 314", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "San 314 Key", - "ShortName": "San 314 Key", - "Description": "San 314 Key", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5672c92d4bdc2d180f8b4567" - }, - "6581998038c79576a2569e11": { - "_id": "6581998038c79576a2569e11", - "_name": "sand_key1", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "5c012ffc0db834001d23f03f": { - "_id": "5c012ffc0db834001d23f03f", - "_name": "weapon_utility_axe", - "_parent": "5447e1d04bdc2dff2f8b4567", - "_type": "Item", - "_props": { - "Name": "weapon_utility_axe", - "ShortName": "weapon_utility_axe", - "Description": "weapon_utility_axe", - "Weight": 0.64, - "BackgroundColor": "grey", - "Width": 1, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "knife_generic", - "Prefab": { - "path": "assets/content/weapons/utility_axe/weapon_utility_axe_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "Scabbard", - "UnlootableFromSide": [ - "Bear", - "Usec" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "knifeHitDelay": 0, - "knifeHitSlashRate": 0, - "knifeHitStabRate": 1, - "knifeHitRadius": 0.5, - "knifeHitSlashDam": 32, - "knifeHitStabDam": 35, - "knifeDurab": 90, - "Durability": 90, - "MaxDurability": 90, - "PrimaryDistance": 0.45, - "SecondryDistance": 0.55, - "SlashPenetration": 1, - "StabPenetration": 1, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "PrimaryConsumption": 10, - "SecondryConsumption": 13, - "DeflectionConsumption": 3, - "StimulatorBuffs": "", - "MaxResource": 0, - "AppliedTrunkRotation": { - "x": 0, - "y": 0, - "z": 0 - }, - "AppliedHeadRotation": { - "x": 2, - "y": 4, - "z": 0 - }, - "DisplayOnModel": false, - "AdditionalAnimationLayer": 0, - "StaminaBurnRate": 0, - "ColliderScaleMultiplier": { - "x": 1, - "y": 1, - "z": 1 - } - }, - "_proto": "54491bb74bdc2d09088b4567" - }, - "544fb37f4bdc2dee738b4567": { - "_id": "544fb37f4bdc2dee738b4567", - "_name": "painkiller", - "_parent": "5448f3a14bdc2d27728b4569", - "_type": "Item", - "_props": { - "Name": "Таблетки Анальгин", - "ShortName": "Painkillers", - "Description": "", - "Weight": 0.01, "BackgroundColor": "orange", "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "med_pills", + "ItemSound": "med_medkit", "Prefab": { - "path": "assets/content/weapons/usable_items/item_blister/item_analgin_loot.bundle", + "path": "assets/content/weapons/usable_items/item_meds_afak/item_meds_afak_loot.bundle", "rcid": "" }, "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_blister/item_analgin_container.bundle", + "path": "assets/content/weapons/usable_items/item_meds_afak/item_meds_afak_container.bundle", "rcid": "" }, "StackObjectsCount": 1, @@ -403095,7 +403799,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 10, - "ExamineExperience": 4, + "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -403111,7 +403815,7 @@ "Unlootable": false, "UnlootableFromSlot": "FirstPrimaryWeapon", "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, + "AnimationVariantsNumber": 2, "DiscardingBlock": false, "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": false, @@ -403123,782 +403827,38 @@ "IsUnremovable": false, "medUseTime": 3, "medEffectType": "duringUse", - "MaxHpResource": 4, - "hpResourceRate": 0, + "MaxHpResource": 400, + "hpResourceRate": 60, "StimulatorBuffs": "", - "effects_health": { - "Hydration": { - "value": -19 - } - }, + "effects_health": [], "effects_damage": { - "Pain": { + "LightBleeding": { "delay": 0, - "duration": 80, - "fadeOut": 15 + "duration": 0, + "fadeOut": 0, + "cost": 30, + "healthPenaltyMin": 0, + "healthPenaltyMax": 0 + }, + "RadExposure": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "cost": 0, + "healthPenaltyMin": 0, + "healthPenaltyMax": 0 + }, + "HeavyBleeding": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "cost": 170, + "healthPenaltyMin": 0, + "healthPenaltyMax": 0 } } - } - }, - "5d80c62a86f7744036212b3f": { - "_id": "5d80c62a86f7744036212b3f", - "_name": "rezbase_key_kult2", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Key_Shopping_Mall_KIBA", - "ShortName": "Key_Shopping_Mall_KIBA", - "Description": "Key_Shopping_Mall_KIBA", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_13.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 150, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 10 }, - "_proto": "5671446a4bdc2d97058b4569" - }, - "59136a4486f774447a1ed172": { - "_id": "59136a4486f774447a1ed172", - "_name": "проходн малая общ", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "mal obsh", - "ShortName": "mal obsh", - "Description": "mal obsh", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "57518f7724597720a31c09ab" - }, - "63a39cb1c9b3aa4b61683ee2": { - "_id": "63a39cb1c9b3aa4b61683ee2", - "_name": "city_key6", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "63a39f18c2d53c2c6839c1d3": { - "_id": "63a39f18c2d53c2c6839c1d3", - "_name": "city_key16", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "658199972dc4e60f6d556a2f": { - "_id": "658199972dc4e60f6d556a2f", - "_name": "sand_key2", - "_parent": "5c99f98d86f7745c314214b3", - "_type": "Item", - "_props": { - "Name": "Factory office ", - "ShortName": "Factory office ", - "Description": "Factory office ", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "keys", - "Prefab": { - "path": "assets/content/items/spec/keys/item_key_2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 40 - }, - "_proto": "5780d07a2459777de4559324" - }, - "5c1d0c5f86f7744bb2683cf0": { - "_id": "5c1d0c5f86f7744bb2683cf0", - "_name": "item_keycard_lab_blue", - "_parent": "5c164d2286f774194c5e69fa", - "_type": "Item", - "_props": { - "Name": "item_keycard_lab_blue", - "ShortName": "item_keycard_lab_blue", - "Description": "item_keycard_lab_blue", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/spec/item_keycard_lab/item_keycard_lab_blue.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 150, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 0 - }, - "_proto": "5448ba0b4bdc2d02308b456c" - }, - "5c1d0d6d86f7744bb2683e1f": { - "_id": "5c1d0d6d86f7744bb2683e1f", - "_name": "item_keycard_lab_yellow", - "_parent": "5c164d2286f774194c5e69fa", - "_type": "Item", - "_props": { - "Name": "item_keycard_lab_yellow", - "ShortName": "item_keycard_lab_yellow", - "Description": "item_keycard_lab_yellow", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/spec/item_keycard_lab/item_keycard_lab_yellow.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 150, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 0 - }, - "_proto": "5448ba0b4bdc2d02308b456c" - }, - "57e26fc7245977162a14b800": { - "_id": "57e26fc7245977162a14b800", - "_name": "weapon_bars_a-2607_95x18", - "_parent": "5447e1d04bdc2dff2f8b4567", - "_type": "Item", - "_props": { - "Name": "weapon_bars_a-2607_95x18", - "ShortName": "weapon_bars_a-2607_95x18", - "Description": "weapon_bars_a-2607_95x18\n", - "Weight": 0.28, - "BackgroundColor": "grey", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "knife_generic", - "Prefab": { - "path": "assets/content/weapons/a-2607/weapon_bars_a-2607_95x18_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "Scabbard", - "UnlootableFromSide": [ - "Bear", - "Usec" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "knifeHitDelay": 0, - "knifeHitSlashRate": 0, - "knifeHitStabRate": 1, - "knifeHitRadius": 0.35, - "knifeHitSlashDam": 19, - "knifeHitStabDam": 25, - "knifeDurab": 40, - "Durability": 40, - "MaxDurability": 40, - "PrimaryDistance": 0.35, - "SecondryDistance": 0.45, - "SlashPenetration": 1, - "StabPenetration": 1, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "PrimaryConsumption": 8, - "SecondryConsumption": 10, - "DeflectionConsumption": 3, - "StimulatorBuffs": "", - "MaxResource": 0, - "AppliedTrunkRotation": { - "x": 0, - "y": 0, - "z": 0 - }, - "AppliedHeadRotation": { - "x": 2, - "y": 4, - "z": 0 - }, - "DisplayOnModel": false, - "AdditionalAnimationLayer": 0, - "StaminaBurnRate": 0, - "ColliderScaleMultiplier": { - "x": 1, - "y": 1, - "z": 1 - } - }, - "_proto": "57e26ea924597715ca604a09" - }, - "5c07df7f0db834001b73588a": { - "_id": "5c07df7f0db834001b73588a", - "_name": "weapon_gf_crowbar", - "_parent": "5447e1d04bdc2dff2f8b4567", - "_type": "Item", - "_props": { - "Name": "weapon_gf_crowbar", - "ShortName": "weapon_gf_crowbar", - "Description": "weapon_gf_crowbar", - "Weight": 1.9, - "BackgroundColor": "grey", - "Width": 1, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "knife_generic", - "Prefab": { - "path": "assets/content/weapons/crowbar/weapon_gf_crowbar_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "Scabbard", - "UnlootableFromSide": [ - "Bear", - "Usec" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "knifeHitDelay": 0, - "knifeHitSlashRate": 0, - "knifeHitStabRate": 1, - "knifeHitRadius": 0.5, - "knifeHitSlashDam": 25, - "knifeHitStabDam": 34, - "knifeDurab": 100, - "Durability": 100, - "MaxDurability": 100, - "PrimaryDistance": 0.5, - "SecondryDistance": 0.6, - "SlashPenetration": 1, - "StabPenetration": 1, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "PrimaryConsumption": 10, - "SecondryConsumption": 13, - "DeflectionConsumption": 3, - "StimulatorBuffs": "", - "MaxResource": 0, - "AppliedTrunkRotation": { - "x": 0, - "y": 0, - "z": 0 - }, - "AppliedHeadRotation": { - "x": 2, - "y": 4, - "z": 0 - }, - "DisplayOnModel": false, - "AdditionalAnimationLayer": 0, - "StaminaBurnRate": 0, - "ColliderScaleMultiplier": { - "x": 1, - "y": 1, - "z": 1 - } - }, - "_proto": "54491bb74bdc2d09088b4567" - }, - "5c010e350db83400232feec7": { - "_id": "5c010e350db83400232feec7", - "_name": "weapon_sp-8", - "_parent": "5447e1d04bdc2dff2f8b4567", - "_type": "Item", - "_props": { - "Name": "weapon_ontario_sp-8", - "ShortName": "weapon_ontario_sp-8", - "Description": "weapon_ontario_sp-8", - "Weight": 0.635, - "BackgroundColor": "grey", - "Width": 1, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "knife_generic", - "Prefab": { - "path": "assets/content/weapons/sp-8/weapon_ontario_sp-8_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "Scabbard", - "UnlootableFromSide": [ - "Bear", - "Usec" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "knifeHitDelay": 0, - "knifeHitSlashRate": 0, - "knifeHitStabRate": 1, - "knifeHitRadius": 0.5, - "knifeHitSlashDam": 30, - "knifeHitStabDam": 40, - "knifeDurab": 90, - "Durability": 90, - "MaxDurability": 90, - "PrimaryDistance": 0.5, - "SecondryDistance": 0.6, - "SlashPenetration": 1, - "StabPenetration": 1, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "PrimaryConsumption": 10, - "SecondryConsumption": 13, - "DeflectionConsumption": 3, - "StimulatorBuffs": "", - "MaxResource": 0, - "AppliedTrunkRotation": { - "x": 0, - "y": 0, - "z": 0 - }, - "AppliedHeadRotation": { - "x": 2, - "y": 4, - "z": 0 - }, - "DisplayOnModel": false, - "AdditionalAnimationLayer": 0, - "StaminaBurnRate": 0, - "ColliderScaleMultiplier": { - "x": 1, - "y": 1, - "z": 1 - } - }, - "_proto": "54491bb74bdc2d09088b4567" + "_proto": "544fb45d4bdc2dee738b4568" }, "590c678286f77426c9660122": { "_id": "590c678286f77426c9660122", @@ -404366,6 +404326,863 @@ }, "_proto": "5656d7c34bdc2d9d198b4587" }, + "5755356824597772cb798962": { + "_id": "5755356824597772cb798962", + "_name": "medkit", + "_parent": "5448f39d4bdc2d0a728b4568", + "_type": "Item", + "_props": { + "Name": "Medkit", + "ShortName": "Medkit", + "Description": "Medkit", + "Weight": 0.135, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_medkit", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_medkit/item_medkit_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_medkit/item_medkit_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 2, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 2, + "medEffectType": "duringUse", + "MaxHpResource": 100, + "hpResourceRate": 50, + "StimulatorBuffs": "", + "effects_health": [], + "effects_damage": { + "RadExposure": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "cost": 0 + } + } + }, + "_proto": "544fb45d4bdc2dee738b4568" + }, + "544fb45d4bdc2dee738b4568": { + "_id": "544fb45d4bdc2dee738b4568", + "_name": "salewa", + "_parent": "5448f39d4bdc2d0a728b4568", + "_type": "Item", + "_props": { + "Name": "Аптечка Salewa FIRST AID KIT", + "ShortName": "Salewa", + "Description": "", + "Weight": 0.6, + "BackgroundColor": "orange", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "med_medkit", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_meds_salewa/item_meds_salewa_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_meds_salewa/item_meds_salewa_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 6, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 2, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 3, + "medEffectType": "duringUse", + "MaxHpResource": 400, + "hpResourceRate": 85, + "StimulatorBuffs": "", + "effects_health": [], + "effects_damage": { + "LightBleeding": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "cost": 45 + }, + "HeavyBleeding": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "cost": 175 + } + } + } + }, + "5e99735686f7744bfc4af32c": { + "_id": "5e99735686f7744bfc4af32c", + "_name": "sanitar_medical_surgical_kit", + "_parent": "5448f3ac4bdc2dce718b4569", + "_type": "Item", + "_props": { + "Name": "sanitar_medical_surgical_kit", + "ShortName": "sanitar_medical_surgical_kit", + "Description": "sanitar_medical_surgical_kit", + "Weight": 0.4, + "BackgroundColor": "orange", + "Width": 1, + "Height": 11, + "StackMaxSize": 1, + "ItemSound": "med_medkit", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_meds_core_medical_surgical_kit/item_meds_core_medical_surgical_kit_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_meds_core_medical_surgical_kit/item_meds_core_medical_surgical_kit_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 40, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 16, + "medEffectType": "duringUse", + "MaxHpResource": 3000, + "hpResourceRate": 1, + "StimulatorBuffs": "", + "effects_health": [], + "effects_damage": { + "DestroyedPart": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "healthPenaltyMin": 100, + "healthPenaltyMax": 100 + } + } + }, + "_proto": "544fb3364bdc2d34748b456a" + }, + "5751a25924597722c463c472": { + "_id": "5751a25924597722c463c472", + "_name": "bandage_army", + "_parent": "5448f3ac4bdc2dce718b4569", + "_type": "Item", + "_props": { + "Name": "Army bandage", + "ShortName": "Army bandage", + "Description": "Army bandage", + "Weight": 0.043, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_bandage", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_bandage/item_bandage_army_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_bandage/item_bandage_army_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 2, + "medEffectType": "duringUse", + "MaxHpResource": 2, + "hpResourceRate": 0, + "StimulatorBuffs": "", + "effects_health": [], + "effects_damage": { + "LightBleeding": { + "delay": 0, + "duration": 0, + "fadeOut": 0 + } + } + }, + "_proto": "544fb25a4bdc2dfb738b4567" + }, + "5d6e6911a4b9361bd5780d52": { + "_id": "5d6e6911a4b9361bd5780d52", + "_name": "patron_12x70_flechette", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "12x70 Картечь", + "ShortName": "12x70", + "Description": "12x70 Картечь", + "Weight": 0.04, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 20, + "ItemSound": "ammo_shotgun", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_12x70_flechette.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 3, + "StackMaxRandom": 10, + "ammoType": "buckshot", + "InitialSpeed": 320, + "BallisticCoeficient": 0.257, + "BulletMassGram": 0.47, + "BulletDiameterMilimeters": 2, + "Damage": 25, + "ammoAccr": -10, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 8, + "PenetrationPower": 31, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 1, + "ammoShiftChance": 0, + "casingName": "12x70 Картечь", + "casingEjectPower": 0, + "casingMass": 0, + "casingSounds": "shotgun_big", + "ProjectileCount": 8, + "PenetrationChance": 0.3, + "RicochetChance": 0, + "FragmentationChance": 0, + "Deterioration": 1, + "SpeedRetardation": 0.00013, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 26, + "Caliber": "Caliber12g", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0.25, + "LightBleedingDelta": 0.25, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.21, + "DurabilityBurnModificator": 1.6, + "HeatFactor": 2.1586, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "560d5e524bdc2d25448b4571" + }, + "5d6e68a8a4b9360b6c0d54e2": { + "_id": "5d6e68a8a4b9360b6c0d54e2", + "_name": "patron_12x70_slug_ap_20", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "12x70 Картечь", + "ShortName": "12x70", + "Description": "12x70 Картечь", + "Weight": 0.05, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 20, + "ItemSound": "ammo_shotgun", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_12x70_slug_ap_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 1, + "StackMaxRandom": 10, + "ammoType": "bullet", + "InitialSpeed": 510, + "BallisticCoeficient": 0.383, + "BulletMassGram": 28.3, + "BulletDiameterMilimeters": 12.7, + "Damage": 164, + "ammoAccr": 80, + "ammoRec": 50, + "ammoDist": 0, + "buckshotBullets": 8, + "PenetrationPower": 37, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 1, + "ammoShiftChance": 0, + "casingName": "12x70 Пуля", + "casingEjectPower": 0, + "casingMass": 0, + "casingSounds": "shotgun_big", + "ProjectileCount": 1, + "PenetrationChance": 0.36, + "RicochetChance": 0.1, + "FragmentationChance": 0.03, + "Deterioration": 1, + "SpeedRetardation": 0.00013, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 65, + "Caliber": "Caliber12g", + "StaminaBurnPerDamage": 0.1728, + "HeavyBleedingDelta": 0.1, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.21, + "DurabilityBurnModificator": 2.2, + "HeatFactor": 2.4849, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "560d5e524bdc2d25448b4571" + }, + "5d6e68e6a4b9361c140bcfe0": { + "_id": "5d6e68e6a4b9361c140bcfe0", + "_name": "patron_12x70_slug_ftx_custom_lite", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "12x70 Картечь", + "ShortName": "12x70", + "Description": "12x70 Картечь", + "Weight": 0.026, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 20, + "ItemSound": "ammo_shotgun", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_12x70_slug_ftx_custom_lite.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 1, + "StackMaxRandom": 10, + "ammoType": "bullet", + "InitialSpeed": 480, + "BallisticCoeficient": 0.188, + "BulletMassGram": 19.4, + "BulletDiameterMilimeters": 13, + "Damage": 183, + "ammoAccr": 135, + "ammoRec": -25, + "ammoDist": 0, + "buckshotBullets": 8, + "PenetrationPower": 20, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 1, + "ammoShiftChance": 0, + "casingName": "12x70 Пуля", + "casingEjectPower": 0, + "casingMass": 0, + "casingSounds": "shotgun_big", + "ProjectileCount": 1, + "PenetrationChance": 0.28, + "RicochetChance": 0.1, + "FragmentationChance": 0.1, + "Deterioration": 1, + "SpeedRetardation": 0.00013, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 50, + "Caliber": "Caliber12g", + "StaminaBurnPerDamage": 0.2016, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.14, + "DurabilityBurnModificator": 1.5, + "HeatFactor": 2.1837, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "560d5e524bdc2d25448b4571" + }, + "62389ba9a63f32501b1b4451": { + "_id": "62389ba9a63f32501b1b4451", + "_name": "patron_26x75_red", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_26x75", + "ShortName": "patron_26x75", + "Description": "patron_26x75", + "Weight": 0.042, + "BackgroundColor": "red", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_26x75_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 1, + "StackMaxRandom": 1, + "ammoType": "bullet", + "InitialSpeed": 80, + "BallisticCoeficient": 0.5, + "BulletMassGram": 20, + "BulletDiameterMilimeters": 12, + "Damage": 37, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 0, + "PenetrationPowerDiviation": 0, + "ammoHear": 0, + "ammoSfx": "tracer", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 1, + "ammoShiftChance": 0, + "casingName": "5.45x39 мм ПС", + "casingEjectPower": 0, + "casingMass": 25, + "casingSounds": "shotgun_big", + "ProjectileCount": 1, + "PenetrationChance": 0, + "RicochetChance": 1, + "FragmentationChance": 0, + "Deterioration": 1, + "SpeedRetardation": 0, + "Tracer": true, + "TracerColor": "yellow", + "TracerDistance": 0.08, + "ArmorDamage": 60, + "Caliber": "Caliber26x75", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "MalfFeedChance": 0, + "RemoveShellAfterFire": false + }, + "_proto": "56dff338d2720bbd668b4569" + }, "5c0e530286f7747fa1419862": { "_id": "5c0e530286f7747fa1419862", "_name": "Propital", @@ -404998,6 +405815,2536 @@ }, "_proto": "56dfef82d2720bbd668b4567" }, + "637b6179104668754b72f8f5": { + "_id": "637b6179104668754b72f8f5", + "_name": "PNB", + "_parent": "5448f3a64bdc2d60728b456a", + "_type": "Item", + "_props": { + "Name": "P22", + "ShortName": "P22", + "Description": "", + "Weight": 0.05, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_stimulator", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_simulator_pnb_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_simulator_pnb_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 2, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 2, + "medEffectType": "duringUse", + "MaxHpResource": 0, + "hpResourceRate": 0, + "StimulatorBuffs": "Buffs_PNB", + "effects_health": [], + "effects_damage": { + "Contusion": { + "delay": 0, + "duration": 40, + "fadeOut": 0 + } + } + }, + "_proto": "544fb3f34bdc2d03748b456a" + }, + "61605e13ffa6e502ac5e7eef": { + "_id": "61605e13ffa6e502ac5e7eef", + "_name": "item_ranger_1500", + "_parent": "61605ddea09d851a0a0c1bbc", + "_type": "Item", + "_props": { + "Name": "Item", + "ShortName": "Item", + "Description": "Item", + "Weight": 0.218, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "spec_multitool", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_ranger_1500/item_ranger_1500_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "SpecialSlot", + "UnlootableFromSide": [ + "Bear", + "Usec", + "Savage" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": true, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "apResource": 0, + "krResource": 0, + "MaxOpticZoom": 0 + } + }, + "5cadf6eeae921500134b2799": { + "_id": "5cadf6eeae921500134b2799", + "_name": "patron_127x55_ps12b", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_12,7x55_ps12b", + "ShortName": "patron_12,7x55_ps12b", + "Description": "patron_12,7x55_ps12b", + "Weight": 0.055, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 30, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_12,7x55_ps12b.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 30, + "ammoType": "bullet", + "InitialSpeed": 300, + "BallisticCoeficient": 0.151, + "BulletMassGram": 18, + "BulletDiameterMilimeters": 13.01, + "Damage": 102, + "ammoAccr": 0, + "ammoRec": 15, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 46, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 4, + "ammoShiftChance": 0, + "casingName": "5.45x39 мм ПС", + "casingEjectPower": 0, + "casingMass": 25, + "casingSounds": "127rifle", + "ProjectileCount": 1, + "PenetrationChance": 0.8, + "RicochetChance": 0.5, + "FragmentationChance": 0.3, + "Deterioration": 1, + "SpeedRetardation": 9.0e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 57, + "Caliber": "Caliber127x55", + "StaminaBurnPerDamage": 0.2304, + "HeavyBleedingDelta": 0.15, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1.8, + "HeatFactor": 2.51, + "MalfFeedChance": 0.0874, + "RemoveShellAfterFire": false + }, + "_proto": "56dff338d2720bbd668b4569" + }, + "5e85aa1a988a8701445df1f5": { + "_id": "5e85aa1a988a8701445df1f5", + "_name": "patron_23x75_barricade", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_23x75_barricade", + "ShortName": "patron_23x75_barricade", + "Description": "patron_23x75_barricade", + "Weight": 0.08, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 15, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_23x75_barricade.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 3, + "StackMaxRandom": 15, + "ammoType": "bullet", + "InitialSpeed": 420, + "BallisticCoeficient": 0.287, + "BulletMassGram": 80, + "BulletDiameterMilimeters": 23, + "Damage": 192, + "ammoAccr": -5, + "ammoRec": 25, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 39, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 4, + "ammoShiftChance": 0, + "casingName": "5.45x39 мм ПС", + "casingEjectPower": 0, + "casingMass": 25, + "casingSounds": "shotgun_big", + "ProjectileCount": 1, + "PenetrationChance": 0.6, + "RicochetChance": 0.4, + "FragmentationChance": 0.2, + "Deterioration": 1, + "SpeedRetardation": 9.0e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 75, + "Caliber": "Caliber23x75", + "StaminaBurnPerDamage": 0.2016, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 2.7, + "HeatFactor": 3.325, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "56dff338d2720bbd668b4569" + }, + "5e85a9f4add9fe03027d9bf1": { + "_id": "5e85a9f4add9fe03027d9bf1", + "_name": "patron_23x75_star", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_12,7x55_ps12", + "ShortName": "patron_12,7x55_ps12", + "Description": "patron_12,7x55_ps12", + "Weight": 0.07, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 15, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_23x75_star.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 1, + "StackMaxRandom": 3, + "ammoType": "bullet", + "InitialSpeed": 80, + "BallisticCoeficient": 0.5, + "BulletMassGram": 20, + "BulletDiameterMilimeters": 12, + "Damage": 0, + "ammoAccr": 0, + "ammoRec": 20, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 0, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 0, + "MaxFragmentsCount": 0, + "ammoShiftChance": 0, + "casingName": "5.45x39 мм ПС", + "casingEjectPower": 0, + "casingMass": 25, + "casingSounds": "shotgun_big", + "ProjectileCount": 1, + "PenetrationChance": 0.6, + "RicochetChance": 0.4, + "FragmentationChance": 0.3, + "Deterioration": 1, + "SpeedRetardation": 9.0e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 0, + "Caliber": "Caliber23x75", + "StaminaBurnPerDamage": 0.2016, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 1.5, + "y": 4, + "z": 15 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 10, + "y": 20, + "z": 20 + }, + "IsLightAndSoundShot": true, + "LightAndSoundShotAngle": 160, + "LightAndSoundShotSelfContusionTime": 7, + "LightAndSoundShotSelfContusionStrength": 0.3, + "MalfMisfireChance": 0.336, + "DurabilityBurnModificator": 4, + "HeatFactor": 3.5, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "56dff338d2720bbd668b4569" + }, + "59e655cb86f77411dc52a77b": { + "_id": "59e655cb86f77411dc52a77b", + "_name": "patron_366_TKM_EKO", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_366_TKM_EKO", + "ShortName": "patron_366_TKM_EKO", + "Description": "patron_366_TKM_EKO", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_366tkm_eko.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 50, + "ammoType": "bullet", + "InitialSpeed": 770, + "BallisticCoeficient": 0.135, + "BulletMassGram": 6.5, + "BulletDiameterMilimeters": 9.55, + "Damage": 73, + "ammoAccr": -10, + "ammoRec": -15, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 30, + "PenetrationPowerDiviation": 0.5, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "7.62x39 мм ПС", + "casingEjectPower": 0, + "casingMass": 16.5, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.15, + "RicochetChance": 0.1, + "FragmentationChance": 0.2, + "Deterioration": 1, + "SpeedRetardation": 7.0e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 40, + "Caliber": "Caliber366TKM", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0.2, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.266, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.816, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "5656d7c34bdc2d9d198b4587" + }, + "5e831507ea0a7c419c2f9bd9": { + "_id": "5e831507ea0a7c419c2f9bd9", + "_name": "item_meds_esmarch", + "_parent": "5448f3ac4bdc2dce718b4569", + "_type": "Item", + "_props": { + "Name": "item_meds_esmarch", + "ShortName": "item_meds_esmarch", + "Description": "item_meds_esmarch", + "Weight": 0.132, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_bandage", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_meds_esmarch_tourniquet/item_meds_esmarch_tourniquet_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_meds_esmarch_tourniquet/item_meds_esmarch_tourniquet_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 5, + "medEffectType": "afterUse", + "MaxHpResource": 0, + "hpResourceRate": 0, + "StimulatorBuffs": "", + "effects_health": [], + "effects_damage": { + "HeavyBleeding": { + "delay": 0, + "duration": 0, + "fadeOut": 0 + } + } + }, + "_proto": "544fb25a4bdc2dfb738b4567" + }, + "5d02797c86f774203f38e30a": { + "_id": "5d02797c86f774203f38e30a", + "_name": "survival_first_aid_rollup_kit", + "_parent": "5448f3ac4bdc2dce718b4569", + "_type": "Item", + "_props": { + "Name": "survival_first_aid_rollup_kit", + "ShortName": "survival_first_aid_rollup_kit", + "Description": "survival_first_aid_rollup_kit", + "Weight": 1.2, + "BackgroundColor": "orange", + "Width": 3, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_medkit", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_meds_survival_first_aid_rollup_kit/item_meds_survival_first_aid_rollup_kit_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_meds_survival_first_aid_rollup_kit/item_meds_survival_first_aid_rollup_kit_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 20, + "medEffectType": "duringUse", + "MaxHpResource": 15, + "hpResourceRate": 0, + "StimulatorBuffs": "", + "effects_health": [], + "effects_damage": { + "Fracture": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "healthPenaltyMin": 0, + "healthPenaltyMax": 0 + }, + "DestroyedPart": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "healthPenaltyMin": 60, + "healthPenaltyMax": 72 + } + } + }, + "_proto": "544fb3364bdc2d34748b456a" + }, + "5ed5166ad380ab312177c100": { + "_id": "5ed5166ad380ab312177c100", + "_name": "Obdolbos", + "_parent": "5448f3a64bdc2d60728b456a", + "_type": "Item", + "_props": { + "Name": "Obdolbos", + "ShortName": "Obdolbos", + "Description": "", + "Weight": 0.05, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_stimulator", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_obdolbos_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_obdolbos_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 2, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 2, + "medEffectType": "duringUse", + "MaxHpResource": 0, + "hpResourceRate": 0, + "StimulatorBuffs": "Buffs_Obdolbos", + "effects_health": [], + "effects_damage": [] + }, + "_proto": "544fb3f34bdc2d03748b456a" + }, + "648c1a965043c4052a4f8505": { + "_id": "648c1a965043c4052a4f8505", + "_name": "Ebudal", + "_parent": "5448f3a64bdc2d60728b456a", + "_type": "Item", + "_props": { + "Name": "Ebudal", + "ShortName": "Ebudal", + "Description": "Препарат протестированный на обезьянах", + "Weight": 0.05, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_stimulator", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_propital_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_propital_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 2, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 2, + "medEffectType": "duringUse", + "MaxHpResource": 0, + "hpResourceRate": 0, + "StimulatorBuffs": "BuffsEbudal", + "effects_health": [], + "effects_damage": { + "Pain": { + "delay": 0, + "duration": 240, + "fadeOut": 5 + }, + "Contusion": { + "delay": 0, + "duration": 240, + "fadeOut": 0 + } + } + }, + "_proto": "544fb3f34bdc2d03748b456a" + }, + "5c10c8fd86f7743d7d706df3": { + "_id": "5c10c8fd86f7743d7d706df3", + "_name": "Adrenaline", + "_parent": "5448f3a64bdc2d60728b456a", + "_type": "Item", + "_props": { + "Name": "Адреналин", + "ShortName": "Адреналин", + "Description": "", + "Weight": 0.05, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_stimulator", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_adrenaline_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_adrenaline_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 2, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 2, + "medEffectType": "duringUse", + "MaxHpResource": 0, + "hpResourceRate": 0, + "StimulatorBuffs": "BuffsAdrenaline", + "effects_health": [], + "effects_damage": { + "Pain": { + "delay": 0, + "duration": 60, + "fadeOut": 5 + }, + "Contusion": { + "delay": 0, + "duration": 60, + "fadeOut": 0 + } + } + }, + "_proto": "544fb3f34bdc2d03748b456a" + }, + "560d5e524bdc2d25448b4571": { + "_id": "560d5e524bdc2d25448b4571", + "_name": "patron_12x70_buckshot", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "12x70 Картечь", + "ShortName": "12x70", + "Description": "12x70 Картечь", + "Weight": 0.05, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 20, + "ItemSound": "ammo_shotgun", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_12x70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 3, + "StackMaxRandom": 10, + "ammoType": "buckshot", + "InitialSpeed": 415, + "BallisticCoeficient": 0.013, + "BulletMassGram": 0.09, + "BulletDiameterMilimeters": 7, + "Damage": 39, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 8, + "PenetrationPower": 3, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 1, + "ammoShiftChance": 0, + "casingName": "12x70 Картечь", + "casingEjectPower": 0, + "casingMass": 0, + "casingSounds": "shotgun_big", + "ProjectileCount": 8, + "PenetrationChance": 0.02, + "RicochetChance": 0, + "FragmentationChance": 0, + "Deterioration": 1, + "SpeedRetardation": 0.00013, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 26, + "Caliber": "Caliber12g", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.266, + "DurabilityBurnModificator": 1, + "HeatFactor": 2.0331, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + } + }, + "5d6e69b9a4b9361bc8618958": { + "_id": "5d6e69b9a4b9361bc8618958", + "_name": "patron_20x70_buckshot_62", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_20x70_buckshot", + "ShortName": "patron_20x70_buckshot", + "Description": "patron_20x70_buckshot", + "Weight": 0.032, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 20, + "ItemSound": "ammo_shotgun", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_20x70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 3, + "StackMaxRandom": 10, + "ammoType": "buckshot", + "InitialSpeed": 410, + "BallisticCoeficient": 0.03, + "BulletMassGram": 1.26, + "BulletDiameterMilimeters": 6.2, + "Damage": 22, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 8, + "PenetrationPower": 2, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 1, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 0, + "casingMass": 0, + "casingSounds": "shotgun_small", + "ProjectileCount": 8, + "PenetrationChance": 0.02, + "RicochetChance": 0, + "FragmentationChance": 0, + "Deterioration": 1, + "SpeedRetardation": 0.00013, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 13, + "Caliber": "Caliber20g", + "StaminaBurnPerDamage": 0.072, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.252, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.8387, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "560d5e524bdc2d25448b4571" + }, + "5d6e6a5fa4b93614ec501745": { + "_id": "5d6e6a5fa4b93614ec501745", + "_name": "patron_20x70_slug_broadhead", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "12x70 Картечь", + "ShortName": "12x70", + "Description": "12x70 Картечь", + "Weight": 0.029, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 20, + "ItemSound": "ammo_shotgun", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_20x70_slug_broadhead.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 1, + "StackMaxRandom": 10, + "ammoType": "bullet", + "InitialSpeed": 405, + "BallisticCoeficient": 0.032, + "BulletMassGram": 19.4, + "BulletDiameterMilimeters": 17, + "Damage": 198, + "ammoAccr": 125, + "ammoRec": 30, + "ammoDist": 0, + "buckshotBullets": 8, + "PenetrationPower": 5, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 4, + "MaxFragmentsCount": 6, + "ammoShiftChance": 0, + "casingName": "12x70 Пуля", + "casingEjectPower": 0, + "casingMass": 0, + "casingSounds": "shotgun_big", + "ProjectileCount": 1, + "PenetrationChance": 0.05, + "RicochetChance": 0.1, + "FragmentationChance": 1, + "Deterioration": 1, + "SpeedRetardation": 0.00013, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 13, + "Caliber": "Caliber20g", + "StaminaBurnPerDamage": 0.25344, + "HeavyBleedingDelta": 0.3, + "LightBleedingDelta": 0.2, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.224, + "DurabilityBurnModificator": 1.5, + "HeatFactor": 2.043, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "560d5e524bdc2d25448b4571" + }, + "5d6e6a05a4b93618084f58d0": { + "_id": "5d6e6a05a4b93618084f58d0", + "_name": "patron_20x70_slug_star", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "12x70 Картечь", + "ShortName": "12x70", + "Description": "12x70 Картечь", + "Weight": 0.034, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 20, + "ItemSound": "ammo_shotgun", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_20x70_slug_star.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 1, + "StackMaxRandom": 10, + "ammoType": "bullet", + "InitialSpeed": 415, + "BallisticCoeficient": 0.121, + "BulletMassGram": 31.2, + "BulletDiameterMilimeters": 16.2, + "Damage": 154, + "ammoAccr": 130, + "ammoRec": 5, + "ammoDist": 0, + "buckshotBullets": 8, + "PenetrationPower": 16, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 1, + "ammoShiftChance": 0, + "casingName": "12x70 Пуля", + "casingEjectPower": 0, + "casingMass": 0, + "casingSounds": "shotgun_big", + "ProjectileCount": 1, + "PenetrationChance": 0.17, + "RicochetChance": 0.1, + "FragmentationChance": 0.1, + "Deterioration": 1, + "SpeedRetardation": 0.00013, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 42, + "Caliber": "Caliber20g", + "StaminaBurnPerDamage": 0.1872, + "HeavyBleedingDelta": 0.3, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.196, + "DurabilityBurnModificator": 1.8, + "HeatFactor": 2.27, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "560d5e524bdc2d25448b4571" + }, + "5f0596629e22f464da6bbdd9": { + "_id": "5f0596629e22f464da6bbdd9", + "_name": "patron_366_custom_ap", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_366_custom_ap", + "ShortName": "patron_366_custom_ap", + "Description": "patron_366_custom_ap", + "Weight": 0.019, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_366_custom_ap.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 50, + "ammoType": "bullet", + "InitialSpeed": 602, + "BallisticCoeficient": 0.373, + "BulletMassGram": 18, + "BulletDiameterMilimeters": 9.55, + "Damage": 90, + "ammoAccr": -28, + "ammoRec": 35, + "ammoDist": 35, + "buckshotBullets": 0, + "PenetrationPower": 42, + "PenetrationPowerDiviation": 0.2, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": "7.62x39 мм ПС", + "casingEjectPower": 0, + "casingMass": 16.5, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.3, + "RicochetChance": 0.065, + "FragmentationChance": 0.01, + "Deterioration": 1, + "SpeedRetardation": 1.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 60, + "Caliber": "Caliber366TKM", + "StaminaBurnPerDamage": 0.2016, + "HeavyBleedingDelta": 0.1, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.224, + "DurabilityBurnModificator": 1.9, + "HeatFactor": 2.27, + "MalfFeedChance": 0.102, + "RemoveShellAfterFire": false + }, + "_proto": "5656d7c34bdc2d9d198b4587" + }, + "5ba26835d4351e0035628ff5": { + "_id": "5ba26835d4351e0035628ff5", + "_name": "patron_46x30_ap_sx", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_46x30_FMJ_SX", + "ShortName": "patron_46x30_FMJ_SX", + "Description": "patron_46x30_fmj_sx", + "Weight": 0.007, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 70, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_46x30_ap_sx.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 70, + "ammoType": "bullet", + "InitialSpeed": 680, + "BallisticCoeficient": 0.14, + "BulletMassGram": 1.6, + "BulletDiameterMilimeters": 4.65, + "Damage": 35, + "ammoAccr": 0, + "ammoRec": 10, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 53, + "PenetrationPowerDiviation": 0.1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 16, + "casingSounds": "rifle556", + "ProjectileCount": 1, + "PenetrationChance": 0.6, + "RicochetChance": 0.6, + "FragmentationChance": 0.1, + "Deterioration": 1, + "SpeedRetardation": 0, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 46, + "Caliber": "Caliber46x30", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.21, + "DurabilityBurnModificator": 1.5, + "HeatFactor": 1.1, + "MalfFeedChance": 0.084, + "RemoveShellAfterFire": false + }, + "_proto": "57372140245977611f70ee91" + }, + "5ba2678ad4351e44f824b344": { + "_id": "5ba2678ad4351e44f824b344", + "_name": "patron_46x30_fmj_sx", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_46x30_FMJ_SX", + "ShortName": "patron_46x30_FMJ_SX", + "Description": "patron_46x30_fmj_sx", + "Weight": 0.007, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 70, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_46x30_fmj_sx.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 70, + "ammoType": "bullet", + "InitialSpeed": 620, + "BallisticCoeficient": 0.228, + "BulletMassGram": 2.6, + "BulletDiameterMilimeters": 4.65, + "Damage": 43, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 40, + "PenetrationPowerDiviation": 0.1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 16, + "casingSounds": "rifle556", + "ProjectileCount": 1, + "PenetrationChance": 0.4, + "RicochetChance": 0.4, + "FragmentationChance": 0.2, + "Deterioration": 1, + "SpeedRetardation": 0, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 41, + "Caliber": "Caliber46x30", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false + }, + "_proto": "57372140245977611f70ee91" + }, + "590c661e86f7741e566b646a": { + "_id": "590c661e86f7741e566b646a", + "_name": "item_meds_automedkit", + "_parent": "5448f39d4bdc2d0a728b4568", + "_type": "Item", + "_props": { + "Name": "Automedkit", + "ShortName": "Automedkit", + "Description": "Automedkit", + "Weight": 1, + "BackgroundColor": "orange", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_medkit", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_automedkit/item_automedkit_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_automedkit/item_automedkit_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 3, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 3, + "medEffectType": "duringUse", + "MaxHpResource": 220, + "hpResourceRate": 70, + "StimulatorBuffs": "", + "effects_health": [], + "effects_damage": { + "LightBleeding": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "cost": 50 + } + } + }, + "_proto": "544fb45d4bdc2dee738b4568" + }, + "5fca138c2a7b221b2852a5c6": { + "_id": "5fca138c2a7b221b2852a5c6", + "_name": "x-TG-12_antidote", + "_parent": "5448f3a64bdc2d60728b456a", + "_type": "Item", + "_props": { + "Name": "x-TG-12 antidote", + "ShortName": "x-TG-12 antidote", + "Description": "", + "Weight": 0.05, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_stimulator", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_x-tg-12_antidote_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_x-tg-12_antidote_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 2, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 2, + "medEffectType": "duringUse", + "MaxHpResource": 0, + "hpResourceRate": 0, + "StimulatorBuffs": "Buffs_Antidote", + "effects_health": [], + "effects_damage": [] + }, + "_proto": "544fb3f34bdc2d03748b456a" + }, + "6399f54b0a36db13c823ad21": { + "_id": "6399f54b0a36db13c823ad21", + "_name": "item_spec_radiotransmitterbody", + "_parent": "62e9103049c018f425059f38", + "_type": "Item", + "_props": { + "Name": "item_spec_radiotransmitterbody", + "ShortName": "item_spec_radiotransmitterbody", + "Description": "item_spec_radiotransmitterbody", + "Weight": 0.106, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "spec_multitool", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_sart/item_ais_sart_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 40, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": true, + "UnlootableFromSlot": "SpecialSlot", + "UnlootableFromSide": [ + "Bear", + "Usec", + "Savage" + ], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": true, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "apResource": 0, + "krResource": 0, + "IsEncoded": false + } + }, + "61605ddea09d851a0a0c1bbc": { + "_id": "61605ddea09d851a0a0c1bbc", + "_name": "PortableRangeFinder", + "_parent": "5447e0e74bdc2d3c308b4567", + "_type": "Node", + "_props": { + "MaxOpticZoom": 0 + } + }, + "5c0d591486f7744c505b416f": { + "_id": "5c0d591486f7744c505b416f", + "_name": "patron_12x70_rip", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "12x70 Картечь", + "ShortName": "12x70", + "Description": "12x70 Картечь", + "Weight": 0.04, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 20, + "ItemSound": "ammo_shotgun", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_12x70_rip.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 1, + "StackMaxRandom": 10, + "ammoType": "bullet", + "InitialSpeed": 410, + "BallisticCoeficient": 0.055, + "BulletMassGram": 19.6, + "BulletDiameterMilimeters": 13, + "Damage": 265, + "ammoAccr": 80, + "ammoRec": 35, + "ammoDist": 0, + "buckshotBullets": 8, + "PenetrationPower": 2, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 6, + "MaxFragmentsCount": 6, + "ammoShiftChance": 0, + "casingName": "12x70 Пуля", + "casingEjectPower": 0, + "casingMass": 0, + "casingSounds": "shotgun_big", + "ProjectileCount": 1, + "PenetrationChance": 0, + "RicochetChance": 0.01, + "FragmentationChance": 1, + "Deterioration": 1, + "SpeedRetardation": 0.00015, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 11, + "Caliber": "Caliber12g", + "StaminaBurnPerDamage": 0.2592, + "HeavyBleedingDelta": 0.25, + "LightBleedingDelta": 0.4, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.21, + "DurabilityBurnModificator": 1.6, + "HeatFactor": 2.3845, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "560d5e524bdc2d25448b4571" + }, + "62389aaba63f32501b1b444f": { + "_id": "62389aaba63f32501b1b444f", + "_name": "patron_26x75_green", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_26x75", + "ShortName": "patron_26x75", + "Description": "patron_26x75", + "Weight": 0.043, + "BackgroundColor": "green", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_26x75_green.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 1, + "StackMaxRandom": 1, + "ammoType": "bullet", + "InitialSpeed": 80, + "BallisticCoeficient": 0.5, + "BulletMassGram": 20, + "BulletDiameterMilimeters": 12, + "Damage": 37, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 0, + "PenetrationPowerDiviation": 0, + "ammoHear": 0, + "ammoSfx": "tracer", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 1, + "ammoShiftChance": 0, + "casingName": "5.45x39 мм ПС", + "casingEjectPower": 0, + "casingMass": 25, + "casingSounds": "shotgun_big", + "ProjectileCount": 1, + "PenetrationChance": 0, + "RicochetChance": 1, + "FragmentationChance": 0, + "Deterioration": 1, + "SpeedRetardation": 0, + "Tracer": true, + "TracerColor": "yellow", + "TracerDistance": 0.08, + "ArmorDamage": 60, + "Caliber": "Caliber26x75", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "MalfFeedChance": 0, + "RemoveShellAfterFire": false + }, + "_proto": "56dff338d2720bbd668b4569" + }, "5ed515e03a40a50460332579": { "_id": "5ed515e03a40a50460332579", "_name": "L1", @@ -406108,2415 +409455,6 @@ }, "_proto": "560d5e524bdc2d25448b4571" }, - "5755356824597772cb798962": { - "_id": "5755356824597772cb798962", - "_name": "medkit", - "_parent": "5448f39d4bdc2d0a728b4568", - "_type": "Item", - "_props": { - "Name": "Medkit", - "ShortName": "Medkit", - "Description": "Medkit", - "Weight": 0.135, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_medkit", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_medkit/item_medkit_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_medkit/item_medkit_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 2, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 2, - "medEffectType": "duringUse", - "MaxHpResource": 100, - "hpResourceRate": 50, - "StimulatorBuffs": "", - "effects_health": [], - "effects_damage": { - "RadExposure": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "cost": 0 - } - } - }, - "_proto": "544fb45d4bdc2dee738b4568" - }, - "5e99735686f7744bfc4af32c": { - "_id": "5e99735686f7744bfc4af32c", - "_name": "sanitar_medical_surgical_kit", - "_parent": "5448f3ac4bdc2dce718b4569", - "_type": "Item", - "_props": { - "Name": "sanitar_medical_surgical_kit", - "ShortName": "sanitar_medical_surgical_kit", - "Description": "sanitar_medical_surgical_kit", - "Weight": 0.4, - "BackgroundColor": "orange", - "Width": 1, - "Height": 11, - "StackMaxSize": 1, - "ItemSound": "med_medkit", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_meds_core_medical_surgical_kit/item_meds_core_medical_surgical_kit_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_meds_core_medical_surgical_kit/item_meds_core_medical_surgical_kit_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 40, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 16, - "medEffectType": "duringUse", - "MaxHpResource": 3000, - "hpResourceRate": 1, - "StimulatorBuffs": "", - "effects_health": [], - "effects_damage": { - "DestroyedPart": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "healthPenaltyMin": 100, - "healthPenaltyMax": 100 - } - } - }, - "_proto": "544fb3364bdc2d34748b456a" - }, - "5751a25924597722c463c472": { - "_id": "5751a25924597722c463c472", - "_name": "bandage_army", - "_parent": "5448f3ac4bdc2dce718b4569", - "_type": "Item", - "_props": { - "Name": "Army bandage", - "ShortName": "Army bandage", - "Description": "Army bandage", - "Weight": 0.043, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_bandage", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_bandage/item_bandage_army_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_bandage/item_bandage_army_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 2, - "medEffectType": "duringUse", - "MaxHpResource": 2, - "hpResourceRate": 0, - "StimulatorBuffs": "", - "effects_health": [], - "effects_damage": { - "LightBleeding": { - "delay": 0, - "duration": 0, - "fadeOut": 0 - } - } - }, - "_proto": "544fb25a4bdc2dfb738b4567" - }, - "5d6e6911a4b9361bd5780d52": { - "_id": "5d6e6911a4b9361bd5780d52", - "_name": "patron_12x70_flechette", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "12x70 Картечь", - "ShortName": "12x70", - "Description": "12x70 Картечь", - "Weight": 0.04, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 20, - "ItemSound": "ammo_shotgun", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_12x70_flechette.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 3, - "StackMaxRandom": 10, - "ammoType": "buckshot", - "InitialSpeed": 320, - "BallisticCoeficient": 0.257, - "BulletMassGram": 0.47, - "BulletDiameterMilimeters": 2, - "Damage": 25, - "ammoAccr": -10, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 8, - "PenetrationPower": 31, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 1, - "ammoShiftChance": 0, - "casingName": "12x70 Картечь", - "casingEjectPower": 0, - "casingMass": 0, - "casingSounds": "shotgun_big", - "ProjectileCount": 8, - "PenetrationChance": 0.3, - "RicochetChance": 0, - "FragmentationChance": 0, - "Deterioration": 1, - "SpeedRetardation": 0.00013, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 26, - "Caliber": "Caliber12g", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0.25, - "LightBleedingDelta": 0.25, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.21, - "DurabilityBurnModificator": 1.6, - "HeatFactor": 2.1586, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "560d5e524bdc2d25448b4571" - }, - "5d6e68a8a4b9360b6c0d54e2": { - "_id": "5d6e68a8a4b9360b6c0d54e2", - "_name": "patron_12x70_slug_ap_20", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "12x70 Картечь", - "ShortName": "12x70", - "Description": "12x70 Картечь", - "Weight": 0.05, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 20, - "ItemSound": "ammo_shotgun", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_12x70_slug_ap_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 10, - "ammoType": "bullet", - "InitialSpeed": 510, - "BallisticCoeficient": 0.383, - "BulletMassGram": 28.3, - "BulletDiameterMilimeters": 12.7, - "Damage": 164, - "ammoAccr": 80, - "ammoRec": 50, - "ammoDist": 0, - "buckshotBullets": 8, - "PenetrationPower": 37, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 1, - "ammoShiftChance": 0, - "casingName": "12x70 Пуля", - "casingEjectPower": 0, - "casingMass": 0, - "casingSounds": "shotgun_big", - "ProjectileCount": 1, - "PenetrationChance": 0.36, - "RicochetChance": 0.1, - "FragmentationChance": 0.03, - "Deterioration": 1, - "SpeedRetardation": 0.00013, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 65, - "Caliber": "Caliber12g", - "StaminaBurnPerDamage": 0.1728, - "HeavyBleedingDelta": 0.1, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.21, - "DurabilityBurnModificator": 2.2, - "HeatFactor": 2.4849, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "560d5e524bdc2d25448b4571" - }, - "5d6e68e6a4b9361c140bcfe0": { - "_id": "5d6e68e6a4b9361c140bcfe0", - "_name": "patron_12x70_slug_ftx_custom_lite", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "12x70 Картечь", - "ShortName": "12x70", - "Description": "12x70 Картечь", - "Weight": 0.026, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 20, - "ItemSound": "ammo_shotgun", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_12x70_slug_ftx_custom_lite.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 10, - "ammoType": "bullet", - "InitialSpeed": 480, - "BallisticCoeficient": 0.188, - "BulletMassGram": 19.4, - "BulletDiameterMilimeters": 13, - "Damage": 183, - "ammoAccr": 135, - "ammoRec": -25, - "ammoDist": 0, - "buckshotBullets": 8, - "PenetrationPower": 20, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 1, - "ammoShiftChance": 0, - "casingName": "12x70 Пуля", - "casingEjectPower": 0, - "casingMass": 0, - "casingSounds": "shotgun_big", - "ProjectileCount": 1, - "PenetrationChance": 0.28, - "RicochetChance": 0.1, - "FragmentationChance": 0.1, - "Deterioration": 1, - "SpeedRetardation": 0.00013, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 50, - "Caliber": "Caliber12g", - "StaminaBurnPerDamage": 0.2016, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.14, - "DurabilityBurnModificator": 1.5, - "HeatFactor": 2.1837, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "560d5e524bdc2d25448b4571" - }, - "62389ba9a63f32501b1b4451": { - "_id": "62389ba9a63f32501b1b4451", - "_name": "patron_26x75_red", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_26x75", - "ShortName": "patron_26x75", - "Description": "patron_26x75", - "Weight": 0.042, - "BackgroundColor": "red", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_26x75_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 1, - "ammoType": "bullet", - "InitialSpeed": 80, - "BallisticCoeficient": 0.5, - "BulletMassGram": 20, - "BulletDiameterMilimeters": 12, - "Damage": 37, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 0, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "tracer", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 1, - "ammoShiftChance": 0, - "casingName": "5.45x39 мм ПС", - "casingEjectPower": 0, - "casingMass": 25, - "casingSounds": "shotgun_big", - "ProjectileCount": 1, - "PenetrationChance": 0, - "RicochetChance": 1, - "FragmentationChance": 0, - "Deterioration": 1, - "SpeedRetardation": 0, - "Tracer": true, - "TracerColor": "yellow", - "TracerDistance": 0.08, - "ArmorDamage": 60, - "Caliber": "Caliber26x75", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "MalfFeedChance": 0, - "RemoveShellAfterFire": false - }, - "_proto": "56dff338d2720bbd668b4569" - }, - "544fb45d4bdc2dee738b4568": { - "_id": "544fb45d4bdc2dee738b4568", - "_name": "salewa", - "_parent": "5448f39d4bdc2d0a728b4568", - "_type": "Item", - "_props": { - "Name": "Аптечка Salewa FIRST AID KIT", - "ShortName": "Salewa", - "Description": "", - "Weight": 0.6, - "BackgroundColor": "orange", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "med_medkit", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_meds_salewa/item_meds_salewa_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_meds_salewa/item_meds_salewa_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 6, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 2, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 3, - "medEffectType": "duringUse", - "MaxHpResource": 400, - "hpResourceRate": 85, - "StimulatorBuffs": "", - "effects_health": [], - "effects_damage": { - "LightBleeding": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "cost": 45 - }, - "HeavyBleeding": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "cost": 175 - } - } - } - }, - "5fca138c2a7b221b2852a5c6": { - "_id": "5fca138c2a7b221b2852a5c6", - "_name": "x-TG-12_antidote", - "_parent": "5448f3a64bdc2d60728b456a", - "_type": "Item", - "_props": { - "Name": "x-TG-12 antidote", - "ShortName": "x-TG-12 antidote", - "Description": "", - "Weight": 0.05, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_stimulator", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_x-tg-12_antidote_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_x-tg-12_antidote_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 2, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 2, - "medEffectType": "duringUse", - "MaxHpResource": 0, - "hpResourceRate": 0, - "StimulatorBuffs": "Buffs_Antidote", - "effects_health": [], - "effects_damage": [] - }, - "_proto": "544fb3f34bdc2d03748b456a" - }, - "6399f54b0a36db13c823ad21": { - "_id": "6399f54b0a36db13c823ad21", - "_name": "item_spec_radiotransmitterbody", - "_parent": "62e9103049c018f425059f38", - "_type": "Item", - "_props": { - "Name": "item_spec_radiotransmitterbody", - "ShortName": "item_spec_radiotransmitterbody", - "Description": "item_spec_radiotransmitterbody", - "Weight": 0.106, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_sart/item_ais_sart_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "SpecialSlot", - "UnlootableFromSide": [ - "Bear", - "Usec", - "Savage" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": true, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "apResource": 0, - "krResource": 0, - "IsEncoded": false - } - }, - "61605ddea09d851a0a0c1bbc": { - "_id": "61605ddea09d851a0a0c1bbc", - "_name": "PortableRangeFinder", - "_parent": "5447e0e74bdc2d3c308b4567", - "_type": "Node", - "_props": { - "MaxOpticZoom": 0 - } - }, - "5c0d591486f7744c505b416f": { - "_id": "5c0d591486f7744c505b416f", - "_name": "patron_12x70_rip", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "12x70 Картечь", - "ShortName": "12x70", - "Description": "12x70 Картечь", - "Weight": 0.04, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 20, - "ItemSound": "ammo_shotgun", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_12x70_rip.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 10, - "ammoType": "bullet", - "InitialSpeed": 410, - "BallisticCoeficient": 0.055, - "BulletMassGram": 19.6, - "BulletDiameterMilimeters": 13, - "Damage": 265, - "ammoAccr": 80, - "ammoRec": 35, - "ammoDist": 0, - "buckshotBullets": 8, - "PenetrationPower": 2, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 6, - "MaxFragmentsCount": 6, - "ammoShiftChance": 0, - "casingName": "12x70 Пуля", - "casingEjectPower": 0, - "casingMass": 0, - "casingSounds": "shotgun_big", - "ProjectileCount": 1, - "PenetrationChance": 0, - "RicochetChance": 0.01, - "FragmentationChance": 1, - "Deterioration": 1, - "SpeedRetardation": 0.00015, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 11, - "Caliber": "Caliber12g", - "StaminaBurnPerDamage": 0.2592, - "HeavyBleedingDelta": 0.25, - "LightBleedingDelta": 0.4, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.21, - "DurabilityBurnModificator": 1.6, - "HeatFactor": 2.3845, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "560d5e524bdc2d25448b4571" - }, - "62389aaba63f32501b1b444f": { - "_id": "62389aaba63f32501b1b444f", - "_name": "patron_26x75_green", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_26x75", - "ShortName": "patron_26x75", - "Description": "patron_26x75", - "Weight": 0.043, - "BackgroundColor": "green", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_26x75_green.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 1, - "ammoType": "bullet", - "InitialSpeed": 80, - "BallisticCoeficient": 0.5, - "BulletMassGram": 20, - "BulletDiameterMilimeters": 12, - "Damage": 37, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 0, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "tracer", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 1, - "ammoShiftChance": 0, - "casingName": "5.45x39 мм ПС", - "casingEjectPower": 0, - "casingMass": 25, - "casingSounds": "shotgun_big", - "ProjectileCount": 1, - "PenetrationChance": 0, - "RicochetChance": 1, - "FragmentationChance": 0, - "Deterioration": 1, - "SpeedRetardation": 0, - "Tracer": true, - "TracerColor": "yellow", - "TracerDistance": 0.08, - "ArmorDamage": 60, - "Caliber": "Caliber26x75", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "MalfFeedChance": 0, - "RemoveShellAfterFire": false - }, - "_proto": "56dff338d2720bbd668b4569" - }, - "5e99711486f7744bfc4af328": { - "_id": "5e99711486f7744bfc4af328", - "_name": "sanitar_meds_medkit_ifak", - "_parent": "5448f39d4bdc2d0a728b4568", - "_type": "Item", - "_props": { - "Name": "Sanitar", - "ShortName": "Sanitar", - "Description": "Sanitar", - "Weight": 0.8, - "BackgroundColor": "orange", - "Width": 1, - "Height": 11, - "StackMaxSize": 1, - "ItemSound": "med_medkit", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_ifak/item_ifak_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_ifak/item_ifak_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 25, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 2, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 2, - "medEffectType": "duringUse", - "MaxHpResource": 3000, - "hpResourceRate": 1, - "StimulatorBuffs": "", - "effects_health": [], - "effects_damage": { - "DestroyedPart": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "cost": 0, - "healthPenaltyMin": 100, - "healthPenaltyMax": 100 - } - } - }, - "_proto": "544fb45d4bdc2dee738b4568" - }, - "637b612fb7afa97bfc3d7005": { - "_id": "637b612fb7afa97bfc3d7005", - "_name": "SJ12_TGLabs", - "_parent": "5448f3a64bdc2d60728b456a", - "_type": "Item", - "_props": { - "Name": "SJ9 TGLabs", - "ShortName": "SJ9 TGLabs", - "Description": "", - "Weight": 0.05, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_stimulator", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_sj12_tglabs_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_sj12_tglabs_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 2, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 2, - "medEffectType": "duringUse", - "MaxHpResource": 0, - "hpResourceRate": 0, - "StimulatorBuffs": "Buffs_SJ12_TGLabs", - "effects_health": [], - "effects_damage": [] - }, - "_proto": "544fb3f34bdc2d03748b456a" - }, - "5fca13ca637ee0341a484f46": { - "_id": "5fca13ca637ee0341a484f46", - "_name": "SJ9_TGLabs", - "_parent": "5448f3a64bdc2d60728b456a", - "_type": "Item", - "_props": { - "Name": "SJ9 TGLabs", - "ShortName": "SJ9 TGLabs", - "Description": "", - "Weight": 0.05, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_stimulator", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_sj9_tglabs_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_sj9_tglabs_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 2, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 2, - "medEffectType": "duringUse", - "MaxHpResource": 0, - "hpResourceRate": 0, - "StimulatorBuffs": "Buffs_BodyTemperature", - "effects_health": [], - "effects_damage": [] - }, - "_proto": "544fb3f34bdc2d03748b456a" - }, - "637b6251104668754b72f8f9": { - "_id": "637b6251104668754b72f8f9", - "_name": "Perfotoran", - "_parent": "5448f3a64bdc2d60728b456a", - "_type": "Item", - "_props": { - "Name": "Пропитал", - "ShortName": "Пропитал", - "Description": "", - "Weight": 0.05, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_stimulator", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_perfotoran_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_perfotoran_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 2, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 2, - "medEffectType": "duringUse", - "MaxHpResource": 0, - "hpResourceRate": 0, - "StimulatorBuffs": "Buffs_Perfotoran", - "effects_health": [], - "effects_damage": { - "Intoxication": { - "delay": 0, - "duration": 60, - "fadeOut": 0 - }, - "RadExposure": { - "delay": 0, - "duration": 60, - "fadeOut": 0 - } - } - }, - "_proto": "544fb3f34bdc2d03748b456a" - }, - "5448f3ac4bdc2dce718b4569": { - "_id": "5448f3ac4bdc2dce718b4569", - "_name": "Medical", - "_parent": "543be5664bdc2dd4348b4569", - "_type": "Node", - "_props": {} - }, - "5d6e68d1a4b93622fe60e845": { - "_id": "5d6e68d1a4b93622fe60e845", - "_name": "patron_12x70_slug_superformance", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "12x70 Картечь", - "ShortName": "12x70", - "Description": "12x70 Картечь", - "Weight": 0.034, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 20, - "ItemSound": "ammo_shotgun", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_12x70_slug_superformance.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 10, - "ammoType": "bullet", - "InitialSpeed": 594, - "BallisticCoeficient": 0.2, - "BulletMassGram": 19.5, - "BulletDiameterMilimeters": 12.7, - "Damage": 220, - "ammoAccr": 170, - "ammoRec": -15, - "ammoDist": 0, - "buckshotBullets": 8, - "PenetrationPower": 5, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "12x70 Пуля", - "casingEjectPower": 0, - "casingMass": 0, - "casingSounds": "shotgun_big", - "ProjectileCount": 1, - "PenetrationChance": 0.05, - "RicochetChance": 0.1, - "FragmentationChance": 0.39, - "Deterioration": 1, - "SpeedRetardation": 0.00013, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 12, - "Caliber": "Caliber12g", - "StaminaBurnPerDamage": 0.24768, - "HeavyBleedingDelta": 0.4, - "LightBleedingDelta": 0.3, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.154, - "DurabilityBurnModificator": 1.2, - "HeatFactor": 2.04565, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "560d5e524bdc2d25448b4571" - }, - "637b6179104668754b72f8f5": { - "_id": "637b6179104668754b72f8f5", - "_name": "PNB", - "_parent": "5448f3a64bdc2d60728b456a", - "_type": "Item", - "_props": { - "Name": "P22", - "ShortName": "P22", - "Description": "", - "Weight": 0.05, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_stimulator", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_simulator_pnb_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_simulator_pnb_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 2, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 2, - "medEffectType": "duringUse", - "MaxHpResource": 0, - "hpResourceRate": 0, - "StimulatorBuffs": "Buffs_PNB", - "effects_health": [], - "effects_damage": { - "Contusion": { - "delay": 0, - "duration": 40, - "fadeOut": 0 - } - } - }, - "_proto": "544fb3f34bdc2d03748b456a" - }, - "61605e13ffa6e502ac5e7eef": { - "_id": "61605e13ffa6e502ac5e7eef", - "_name": "item_ranger_1500", - "_parent": "61605ddea09d851a0a0c1bbc", - "_type": "Item", - "_props": { - "Name": "Item", - "ShortName": "Item", - "Description": "Item", - "Weight": 0.218, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_ranger_1500/item_ranger_1500_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "SpecialSlot", - "UnlootableFromSide": [ - "Bear", - "Usec", - "Savage" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": true, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "apResource": 0, - "krResource": 0, - "MaxOpticZoom": 0 - } - }, - "5cadf6eeae921500134b2799": { - "_id": "5cadf6eeae921500134b2799", - "_name": "patron_127x55_ps12b", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_12,7x55_ps12b", - "ShortName": "patron_12,7x55_ps12b", - "Description": "patron_12,7x55_ps12b", - "Weight": 0.055, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 30, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_12,7x55_ps12b.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 30, - "ammoType": "bullet", - "InitialSpeed": 300, - "BallisticCoeficient": 0.151, - "BulletMassGram": 18, - "BulletDiameterMilimeters": 13.01, - "Damage": 102, - "ammoAccr": 0, - "ammoRec": 15, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 46, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 4, - "ammoShiftChance": 0, - "casingName": "5.45x39 мм ПС", - "casingEjectPower": 0, - "casingMass": 25, - "casingSounds": "127rifle", - "ProjectileCount": 1, - "PenetrationChance": 0.8, - "RicochetChance": 0.5, - "FragmentationChance": 0.3, - "Deterioration": 1, - "SpeedRetardation": 9.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 57, - "Caliber": "Caliber127x55", - "StaminaBurnPerDamage": 0.2304, - "HeavyBleedingDelta": 0.15, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.8, - "HeatFactor": 2.51, - "MalfFeedChance": 0.0874, - "RemoveShellAfterFire": false - }, - "_proto": "56dff338d2720bbd668b4569" - }, - "5e85aa1a988a8701445df1f5": { - "_id": "5e85aa1a988a8701445df1f5", - "_name": "patron_23x75_barricade", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_23x75_barricade", - "ShortName": "patron_23x75_barricade", - "Description": "patron_23x75_barricade", - "Weight": 0.08, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 15, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_23x75_barricade.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 3, - "StackMaxRandom": 15, - "ammoType": "bullet", - "InitialSpeed": 420, - "BallisticCoeficient": 0.287, - "BulletMassGram": 80, - "BulletDiameterMilimeters": 23, - "Damage": 192, - "ammoAccr": -5, - "ammoRec": 25, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 39, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 4, - "ammoShiftChance": 0, - "casingName": "5.45x39 мм ПС", - "casingEjectPower": 0, - "casingMass": 25, - "casingSounds": "shotgun_big", - "ProjectileCount": 1, - "PenetrationChance": 0.6, - "RicochetChance": 0.4, - "FragmentationChance": 0.2, - "Deterioration": 1, - "SpeedRetardation": 9.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 75, - "Caliber": "Caliber23x75", - "StaminaBurnPerDamage": 0.2016, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 2.7, - "HeatFactor": 3.325, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "56dff338d2720bbd668b4569" - }, - "5e85a9f4add9fe03027d9bf1": { - "_id": "5e85a9f4add9fe03027d9bf1", - "_name": "patron_23x75_star", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_12,7x55_ps12", - "ShortName": "patron_12,7x55_ps12", - "Description": "patron_12,7x55_ps12", - "Weight": 0.07, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 15, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_23x75_star.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 3, - "ammoType": "bullet", - "InitialSpeed": 80, - "BallisticCoeficient": 0.5, - "BulletMassGram": 20, - "BulletDiameterMilimeters": 12, - "Damage": 0, - "ammoAccr": 0, - "ammoRec": 20, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 0, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 0, - "MaxFragmentsCount": 0, - "ammoShiftChance": 0, - "casingName": "5.45x39 мм ПС", - "casingEjectPower": 0, - "casingMass": 25, - "casingSounds": "shotgun_big", - "ProjectileCount": 1, - "PenetrationChance": 0.6, - "RicochetChance": 0.4, - "FragmentationChance": 0.3, - "Deterioration": 1, - "SpeedRetardation": 9.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 0, - "Caliber": "Caliber23x75", - "StaminaBurnPerDamage": 0.2016, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 1.5, - "y": 4, - "z": 15 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 10, - "y": 20, - "z": 20 - }, - "IsLightAndSoundShot": true, - "LightAndSoundShotAngle": 160, - "LightAndSoundShotSelfContusionTime": 7, - "LightAndSoundShotSelfContusionStrength": 0.3, - "MalfMisfireChance": 0.336, - "DurabilityBurnModificator": 4, - "HeatFactor": 3.5, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "56dff338d2720bbd668b4569" - }, - "59e655cb86f77411dc52a77b": { - "_id": "59e655cb86f77411dc52a77b", - "_name": "patron_366_TKM_EKO", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_366_TKM_EKO", - "ShortName": "patron_366_TKM_EKO", - "Description": "patron_366_TKM_EKO", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_366tkm_eko.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 50, - "ammoType": "bullet", - "InitialSpeed": 770, - "BallisticCoeficient": 0.135, - "BulletMassGram": 6.5, - "BulletDiameterMilimeters": 9.55, - "Damage": 73, - "ammoAccr": -10, - "ammoRec": -15, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 30, - "PenetrationPowerDiviation": 0.5, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "7.62x39 мм ПС", - "casingEjectPower": 0, - "casingMass": 16.5, - "casingSounds": "rifle762", - "ProjectileCount": 1, - "PenetrationChance": 0.15, - "RicochetChance": 0.1, - "FragmentationChance": 0.2, - "Deterioration": 1, - "SpeedRetardation": 7.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 40, - "Caliber": "Caliber366TKM", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0.2, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.266, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.816, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "5656d7c34bdc2d9d198b4587" - }, "5ed515ece452db0eb56fc028": { "_id": "5ed515ece452db0eb56fc028", "_name": "P22", @@ -408997,175 +409935,14 @@ }, "_proto": "560d5e524bdc2d25448b4571" }, - "5e831507ea0a7c419c2f9bd9": { - "_id": "5e831507ea0a7c419c2f9bd9", - "_name": "item_meds_esmarch", - "_parent": "5448f3ac4bdc2dce718b4569", - "_type": "Item", - "_props": { - "Name": "item_meds_esmarch", - "ShortName": "item_meds_esmarch", - "Description": "item_meds_esmarch", - "Weight": 0.132, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_bandage", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_meds_esmarch_tourniquet/item_meds_esmarch_tourniquet_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_meds_esmarch_tourniquet/item_meds_esmarch_tourniquet_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 5, - "medEffectType": "afterUse", - "MaxHpResource": 0, - "hpResourceRate": 0, - "StimulatorBuffs": "", - "effects_health": [], - "effects_damage": { - "HeavyBleeding": { - "delay": 0, - "duration": 0, - "fadeOut": 0 - } - } - }, - "_proto": "544fb25a4bdc2dfb738b4567" - }, - "5d02797c86f774203f38e30a": { - "_id": "5d02797c86f774203f38e30a", - "_name": "survival_first_aid_rollup_kit", - "_parent": "5448f3ac4bdc2dce718b4569", - "_type": "Item", - "_props": { - "Name": "survival_first_aid_rollup_kit", - "ShortName": "survival_first_aid_rollup_kit", - "Description": "survival_first_aid_rollup_kit", - "Weight": 1.2, - "BackgroundColor": "orange", - "Width": 3, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_medkit", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_meds_survival_first_aid_rollup_kit/item_meds_survival_first_aid_rollup_kit_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_meds_survival_first_aid_rollup_kit/item_meds_survival_first_aid_rollup_kit_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 20, - "medEffectType": "duringUse", - "MaxHpResource": 15, - "hpResourceRate": 0, - "StimulatorBuffs": "", - "effects_health": [], - "effects_damage": { - "Fracture": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "healthPenaltyMin": 0, - "healthPenaltyMax": 0 - }, - "DestroyedPart": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "healthPenaltyMin": 60, - "healthPenaltyMax": 72 - } - } - }, - "_proto": "544fb3364bdc2d34748b456a" - }, - "5ed5166ad380ab312177c100": { - "_id": "5ed5166ad380ab312177c100", - "_name": "Obdolbos", + "637b612fb7afa97bfc3d7005": { + "_id": "637b612fb7afa97bfc3d7005", + "_name": "SJ12_TGLabs", "_parent": "5448f3a64bdc2d60728b456a", "_type": "Item", "_props": { - "Name": "Obdolbos", - "ShortName": "Obdolbos", + "Name": "SJ9 TGLabs", + "ShortName": "SJ9 TGLabs", "Description": "", "Weight": 0.05, "BackgroundColor": "orange", @@ -409174,11 +409951,11 @@ "StackMaxSize": 1, "ItemSound": "med_stimulator", "Prefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_obdolbos_loot.bundle", + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_sj12_tglabs_loot.bundle", "rcid": "" }, "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_obdolbos_container.bundle", + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_sj12_tglabs_container.bundle", "rcid": "" }, "StackObjectsCount": 1, @@ -409222,101 +409999,20 @@ "medEffectType": "duringUse", "MaxHpResource": 0, "hpResourceRate": 0, - "StimulatorBuffs": "Buffs_Obdolbos", + "StimulatorBuffs": "Buffs_SJ12_TGLabs", "effects_health": [], "effects_damage": [] }, "_proto": "544fb3f34bdc2d03748b456a" }, - "648c1a965043c4052a4f8505": { - "_id": "648c1a965043c4052a4f8505", - "_name": "Ebudal", + "5fca13ca637ee0341a484f46": { + "_id": "5fca13ca637ee0341a484f46", + "_name": "SJ9_TGLabs", "_parent": "5448f3a64bdc2d60728b456a", "_type": "Item", "_props": { - "Name": "Ebudal", - "ShortName": "Ebudal", - "Description": "Препарат протестированный на обезьянах", - "Weight": 0.05, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_stimulator", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_propital_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_propital_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 2, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 2, - "medEffectType": "duringUse", - "MaxHpResource": 0, - "hpResourceRate": 0, - "StimulatorBuffs": "BuffsEbudal", - "effects_health": [], - "effects_damage": { - "Pain": { - "delay": 0, - "duration": 240, - "fadeOut": 5 - }, - "Contusion": { - "delay": 0, - "duration": 240, - "fadeOut": 0 - } - } - }, - "_proto": "544fb3f34bdc2d03748b456a" - }, - "5c10c8fd86f7743d7d706df3": { - "_id": "5c10c8fd86f7743d7d706df3", - "_name": "Adrenaline", - "_parent": "5448f3a64bdc2d60728b456a", - "_type": "Item", - "_props": { - "Name": "Адреналин", - "ShortName": "Адреналин", + "Name": "SJ9 TGLabs", + "ShortName": "SJ9 TGLabs", "Description": "", "Weight": 0.05, "BackgroundColor": "orange", @@ -409325,11 +410021,81 @@ "StackMaxSize": 1, "ItemSound": "med_stimulator", "Prefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_adrenaline_loot.bundle", + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_sj9_tglabs_loot.bundle", "rcid": "" }, "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_adrenaline_container.bundle", + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_sj9_tglabs_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 2, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 2, + "medEffectType": "duringUse", + "MaxHpResource": 0, + "hpResourceRate": 0, + "StimulatorBuffs": "Buffs_BodyTemperature", + "effects_health": [], + "effects_damage": [] + }, + "_proto": "544fb3f34bdc2d03748b456a" + }, + "637b6251104668754b72f8f9": { + "_id": "637b6251104668754b72f8f9", + "_name": "Perfotoran", + "_parent": "5448f3a64bdc2d60728b456a", + "_type": "Item", + "_props": { + "Name": "Пропитал", + "ShortName": "Пропитал", + "Description": "", + "Weight": 0.05, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_stimulator", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_perfotoran_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_perfotoran_container.bundle", "rcid": "" }, "StackObjectsCount": 1, @@ -409373,15 +410139,15 @@ "medEffectType": "duringUse", "MaxHpResource": 0, "hpResourceRate": 0, - "StimulatorBuffs": "BuffsAdrenaline", + "StimulatorBuffs": "Buffs_Perfotoran", "effects_health": [], "effects_damage": { - "Pain": { + "Intoxication": { "delay": 0, "duration": 60, - "fadeOut": 5 + "fadeOut": 0 }, - "Contusion": { + "RadExposure": { "delay": 0, "duration": 60, "fadeOut": 0 @@ -409390,416 +410156,16 @@ }, "_proto": "544fb3f34bdc2d03748b456a" }, - "560d5e524bdc2d25448b4571": { - "_id": "560d5e524bdc2d25448b4571", - "_name": "patron_12x70_buckshot", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "12x70 Картечь", - "ShortName": "12x70", - "Description": "12x70 Картечь", - "Weight": 0.05, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 20, - "ItemSound": "ammo_shotgun", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_12x70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 3, - "StackMaxRandom": 10, - "ammoType": "buckshot", - "InitialSpeed": 415, - "BallisticCoeficient": 0.013, - "BulletMassGram": 0.09, - "BulletDiameterMilimeters": 7, - "Damage": 39, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 8, - "PenetrationPower": 3, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 1, - "ammoShiftChance": 0, - "casingName": "12x70 Картечь", - "casingEjectPower": 0, - "casingMass": 0, - "casingSounds": "shotgun_big", - "ProjectileCount": 8, - "PenetrationChance": 0.02, - "RicochetChance": 0, - "FragmentationChance": 0, - "Deterioration": 1, - "SpeedRetardation": 0.00013, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 26, - "Caliber": "Caliber12g", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.266, - "DurabilityBurnModificator": 1, - "HeatFactor": 2.0331, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - } + "5448f3ac4bdc2dce718b4569": { + "_id": "5448f3ac4bdc2dce718b4569", + "_name": "Medical", + "_parent": "543be5664bdc2dd4348b4569", + "_type": "Node", + "_props": {} }, - "5d6e69b9a4b9361bc8618958": { - "_id": "5d6e69b9a4b9361bc8618958", - "_name": "patron_20x70_buckshot_62", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_20x70_buckshot", - "ShortName": "patron_20x70_buckshot", - "Description": "patron_20x70_buckshot", - "Weight": 0.032, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 20, - "ItemSound": "ammo_shotgun", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_20x70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 3, - "StackMaxRandom": 10, - "ammoType": "buckshot", - "InitialSpeed": 410, - "BallisticCoeficient": 0.03, - "BulletMassGram": 1.26, - "BulletDiameterMilimeters": 6.2, - "Damage": 22, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 8, - "PenetrationPower": 2, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 1, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 0, - "casingMass": 0, - "casingSounds": "shotgun_small", - "ProjectileCount": 8, - "PenetrationChance": 0.02, - "RicochetChance": 0, - "FragmentationChance": 0, - "Deterioration": 1, - "SpeedRetardation": 0.00013, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 13, - "Caliber": "Caliber20g", - "StaminaBurnPerDamage": 0.072, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.252, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.8387, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "560d5e524bdc2d25448b4571" - }, - "5d6e6a5fa4b93614ec501745": { - "_id": "5d6e6a5fa4b93614ec501745", - "_name": "patron_20x70_slug_broadhead", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "12x70 Картечь", - "ShortName": "12x70", - "Description": "12x70 Картечь", - "Weight": 0.029, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 20, - "ItemSound": "ammo_shotgun", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_20x70_slug_broadhead.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 10, - "ammoType": "bullet", - "InitialSpeed": 405, - "BallisticCoeficient": 0.032, - "BulletMassGram": 19.4, - "BulletDiameterMilimeters": 17, - "Damage": 198, - "ammoAccr": 125, - "ammoRec": 30, - "ammoDist": 0, - "buckshotBullets": 8, - "PenetrationPower": 5, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 4, - "MaxFragmentsCount": 6, - "ammoShiftChance": 0, - "casingName": "12x70 Пуля", - "casingEjectPower": 0, - "casingMass": 0, - "casingSounds": "shotgun_big", - "ProjectileCount": 1, - "PenetrationChance": 0.05, - "RicochetChance": 0.1, - "FragmentationChance": 1, - "Deterioration": 1, - "SpeedRetardation": 0.00013, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 13, - "Caliber": "Caliber20g", - "StaminaBurnPerDamage": 0.25344, - "HeavyBleedingDelta": 0.3, - "LightBleedingDelta": 0.2, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.224, - "DurabilityBurnModificator": 1.5, - "HeatFactor": 2.043, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "560d5e524bdc2d25448b4571" - }, - "5d6e6a05a4b93618084f58d0": { - "_id": "5d6e6a05a4b93618084f58d0", - "_name": "patron_20x70_slug_star", + "5d6e68d1a4b93622fe60e845": { + "_id": "5d6e68d1a4b93622fe60e845", + "_name": "patron_12x70_slug_superformance", "_parent": "5485a8684bdc2da71d8b4567", "_type": "Item", "_props": { @@ -409813,7 +410179,7 @@ "StackMaxSize": 20, "ItemSound": "ammo_shotgun", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_20x70_slug_star.bundle", + "path": "assets/content/items/ammo/patrons/patron_12x70_slug_superformance.bundle", "rcid": "" }, "UsePrefab": { @@ -409841,142 +410207,6 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 10, - "ammoType": "bullet", - "InitialSpeed": 415, - "BallisticCoeficient": 0.121, - "BulletMassGram": 31.2, - "BulletDiameterMilimeters": 16.2, - "Damage": 154, - "ammoAccr": 130, - "ammoRec": 5, - "ammoDist": 0, - "buckshotBullets": 8, - "PenetrationPower": 16, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 1, - "ammoShiftChance": 0, - "casingName": "12x70 Пуля", - "casingEjectPower": 0, - "casingMass": 0, - "casingSounds": "shotgun_big", - "ProjectileCount": 1, - "PenetrationChance": 0.17, - "RicochetChance": 0.1, - "FragmentationChance": 0.1, - "Deterioration": 1, - "SpeedRetardation": 0.00013, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 42, - "Caliber": "Caliber20g", - "StaminaBurnPerDamage": 0.1872, - "HeavyBleedingDelta": 0.3, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.196, - "DurabilityBurnModificator": 1.8, - "HeatFactor": 2.27, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "560d5e524bdc2d25448b4571" - }, - "5f0596629e22f464da6bbdd9": { - "_id": "5f0596629e22f464da6bbdd9", - "_name": "patron_366_custom_ap", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_366_custom_ap", - "ShortName": "patron_366_custom_ap", - "Description": "patron_366_custom_ap", - "Weight": 0.019, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_366_custom_ap.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, "CanSellOnRagfair": false, "CanRequireOnRagfair": false, "ConflictingItems": [], @@ -409993,44 +410223,44 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 50, + "StackMinRandom": 1, + "StackMaxRandom": 10, "ammoType": "bullet", - "InitialSpeed": 602, - "BallisticCoeficient": 0.373, - "BulletMassGram": 18, - "BulletDiameterMilimeters": 9.55, - "Damage": 90, - "ammoAccr": -28, - "ammoRec": 35, - "ammoDist": 35, - "buckshotBullets": 0, - "PenetrationPower": 42, - "PenetrationPowerDiviation": 0.2, + "InitialSpeed": 594, + "BallisticCoeficient": 0.2, + "BulletMassGram": 19.5, + "BulletDiameterMilimeters": 12.7, + "Damage": 220, + "ammoAccr": 170, + "ammoRec": -15, + "ammoDist": 0, + "buckshotBullets": 8, + "PenetrationPower": 5, + "PenetrationPowerDiviation": 1, "ammoHear": 0, "ammoSfx": "standart", "MisfireChance": 0.01, "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, + "MaxFragmentsCount": 3, "ammoShiftChance": 0, - "casingName": "7.62x39 мм ПС", + "casingName": "12x70 Пуля", "casingEjectPower": 0, - "casingMass": 16.5, - "casingSounds": "rifle762", + "casingMass": 0, + "casingSounds": "shotgun_big", "ProjectileCount": 1, - "PenetrationChance": 0.3, - "RicochetChance": 0.065, - "FragmentationChance": 0.01, + "PenetrationChance": 0.05, + "RicochetChance": 0.1, + "FragmentationChance": 0.39, "Deterioration": 1, - "SpeedRetardation": 1.5e-5, + "SpeedRetardation": 0.00013, "Tracer": false, "TracerColor": "red", "TracerDistance": 0, - "ArmorDamage": 60, - "Caliber": "Caliber366TKM", - "StaminaBurnPerDamage": 0.2016, - "HeavyBleedingDelta": 0.1, - "LightBleedingDelta": 0, + "ArmorDamage": 12, + "Caliber": "Caliber12g", + "StaminaBurnPerDamage": 0.24768, + "HeavyBleedingDelta": 0.4, + "LightBleedingDelta": 0.3, "ShowBullet": false, "HasGrenaderComponent": false, "FuzeArmTimeSec": 0, @@ -410061,13 +410291,13 @@ "LightAndSoundShotAngle": 0, "LightAndSoundShotSelfContusionTime": 0, "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.224, - "DurabilityBurnModificator": 1.9, - "HeatFactor": 2.27, - "MalfFeedChance": 0.102, + "MalfMisfireChance": 0.154, + "DurabilityBurnModificator": 1.2, + "HeatFactor": 2.04565, + "MalfFeedChance": 0.01, "RemoveShellAfterFire": false }, - "_proto": "5656d7c34bdc2d9d198b4587" + "_proto": "560d5e524bdc2d25448b4571" }, "544fb25a4bdc2dfb738b4567": { "_id": "544fb25a4bdc2dfb738b4567", @@ -411036,101 +411266,6 @@ }, "_proto": "56dfef82d2720bbd668b4567" }, - "60098ad7c2240c0fe85c570a": { - "_id": "60098ad7c2240c0fe85c570a", - "_name": "item_meds_afak", - "_parent": "5448f39d4bdc2d0a728b4568", - "_type": "Item", - "_props": { - "Name": "ifak", - "ShortName": "ifak", - "Description": "ifak", - "Weight": 0.8, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_medkit", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_meds_afak/item_meds_afak_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_meds_afak/item_meds_afak_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 2, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 3, - "medEffectType": "duringUse", - "MaxHpResource": 400, - "hpResourceRate": 60, - "StimulatorBuffs": "", - "effects_health": [], - "effects_damage": { - "LightBleeding": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "cost": 30, - "healthPenaltyMin": 0, - "healthPenaltyMax": 0 - }, - "RadExposure": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "cost": 0, - "healthPenaltyMin": 0, - "healthPenaltyMax": 0 - }, - "HeavyBleeding": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "cost": 170, - "healthPenaltyMin": 0, - "healthPenaltyMax": 0 - } - } - }, - "_proto": "544fb45d4bdc2dee738b4568" - }, "5c0e531286f7747fa54205c2": { "_id": "5c0e531286f7747fa54205c2", "_name": "SJ1_TGLabs", @@ -411888,6 +412023,84 @@ }, "_proto": "56dfef82d2720bbd668b4567" }, + "5d02778e86f774203e7dedbe": { + "_id": "5d02778e86f774203e7dedbe", + "_name": "core_medical_surgical_kit", + "_parent": "5448f3ac4bdc2dce718b4569", + "_type": "Item", + "_props": { + "Name": "core_medical_surgical_kit", + "ShortName": "core_medical_surgical_kit", + "Description": "core_medical_surgical_kit", + "Weight": 0.4, + "BackgroundColor": "orange", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_medkit", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_meds_core_medical_surgical_kit/item_meds_core_medical_surgical_kit_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_meds_core_medical_surgical_kit/item_meds_core_medical_surgical_kit_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 16, + "medEffectType": "duringUse", + "MaxHpResource": 5, + "hpResourceRate": 0, + "StimulatorBuffs": "", + "effects_health": [], + "effects_damage": { + "DestroyedPart": { + "delay": 0, + "duration": 0, + "fadeOut": 0, + "healthPenaltyMin": 25, + "healthPenaltyMax": 45 + } + } + }, + "_proto": "544fb3364bdc2d34748b456a" + }, "5c0e533786f7747fa23f4d47": { "_id": "5c0e533786f7747fa23f4d47", "_name": "Zagustin", @@ -412039,89 +412252,6 @@ }, "_proto": "544fb3f34bdc2d03748b456a" }, - "65ddcc7aef36f6413d0829b9": { - "_id": "65ddcc7aef36f6413d0829b9", - "_name": "MarkOfUnknown", - "_parent": "5447e0e74bdc2d3c308b4567", - "_type": "Node", - "_props": { - "TradersDiscount": 0.5, - "ScavKillExpPenalty": 0.5, - "ScavKillStandingPenalty": -0.05 - } - }, - "65ddcc9cfa85b9f17d0dfb07": { - "_id": "65ddcc9cfa85b9f17d0dfb07", - "_name": "mark_of_unknown", - "_parent": "65ddcc7aef36f6413d0829b9", - "_type": "Item", - "_props": { - "Name": "Item", - "ShortName": "Item", - "Description": "Item", - "Weight": 0.35, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/equipment/item_equipment_radio_h4855/item_equipment_radio_h4855.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": true, - "IsUnsaleable": true, - "IsUnbuyable": true, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "SpecialSlot", - "UnlootableFromSide": [ - "Bear", - "Usec", - "Savage" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": true, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": true, - "IsUnremovable": true, - "apResource": 0, - "krResource": 0, - "TradersDiscount": 0.5, - "ScavKillExpPenalty": 0.5, - "ScavKillStandingPenalty": -0.05 - }, - "_proto": "64d0b40fbe2eed70e254e2d4" - }, "5d6e68c4a4b9361b93413f79": { "_id": "5d6e68c4a4b9361b93413f79", "_name": "patron_12x70_slug_50_bmg_m17_traccer", @@ -412258,6 +412388,76 @@ }, "_proto": "560d5e524bdc2d25448b4571" }, + "5ed515f6915ec335206e4152": { + "_id": "5ed515f6915ec335206e4152", + "_name": "AHF1-M", + "_parent": "5448f3a64bdc2d60728b456a", + "_type": "Item", + "_props": { + "Name": "AHF1-M", + "ShortName": "AHF1-M", + "Description": "", + "Weight": 0.05, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_stimulator", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_ahf1-m_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_ahf1-m_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 8, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 2, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 2, + "medEffectType": "duringUse", + "MaxHpResource": 0, + "hpResourceRate": 0, + "StimulatorBuffs": "Buffs_AHF1M", + "effects_health": [], + "effects_damage": [] + }, + "_proto": "544fb3f34bdc2d03748b456a" + }, "5d6e69c7a4b9360b6c0d54e4": { "_id": "5d6e69c7a4b9360b6c0d54e4", "_name": "patron_20x70_buckshot_73", @@ -412394,255 +412594,6 @@ }, "_proto": "560d5e524bdc2d25448b4571" }, - "590c657e86f77412b013051d": { - "_id": "590c657e86f77412b013051d", - "_name": "AMK_Grizzly", - "_parent": "5448f39d4bdc2d0a728b4568", - "_type": "Item", - "_props": { - "Name": "Grizzly", - "ShortName": "Grizzly", - "Description": "Grizzly", - "Weight": 1.6, - "BackgroundColor": "orange", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "med_medkit", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_meds_grizly/item_grizzly_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_meds_grizly/item_meds_grizly_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 2, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 5, - "medEffectType": "duringUse", - "MaxHpResource": 1800, - "hpResourceRate": 175, - "StimulatorBuffs": "", - "effects_health": [], - "effects_damage": { - "LightBleeding": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "cost": 40 - }, - "HeavyBleeding": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "cost": 130 - }, - "Fracture": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "cost": 50 - }, - "Contusion": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "cost": 0 - }, - "RadExposure": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "cost": 0 - } - } - }, - "_proto": "544fb45d4bdc2dee738b4568" - }, - "5d02778e86f774203e7dedbe": { - "_id": "5d02778e86f774203e7dedbe", - "_name": "core_medical_surgical_kit", - "_parent": "5448f3ac4bdc2dce718b4569", - "_type": "Item", - "_props": { - "Name": "core_medical_surgical_kit", - "ShortName": "core_medical_surgical_kit", - "Description": "core_medical_surgical_kit", - "Weight": 0.4, - "BackgroundColor": "orange", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_medkit", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_meds_core_medical_surgical_kit/item_meds_core_medical_surgical_kit_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_meds_core_medical_surgical_kit/item_meds_core_medical_surgical_kit_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 16, - "medEffectType": "duringUse", - "MaxHpResource": 5, - "hpResourceRate": 0, - "StimulatorBuffs": "", - "effects_health": [], - "effects_damage": { - "DestroyedPart": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "healthPenaltyMin": 25, - "healthPenaltyMax": 45 - } - } - }, - "_proto": "544fb3364bdc2d34748b456a" - }, - "5ed515f6915ec335206e4152": { - "_id": "5ed515f6915ec335206e4152", - "_name": "AHF1-M", - "_parent": "5448f3a64bdc2d60728b456a", - "_type": "Item", - "_props": { - "Name": "AHF1-M", - "ShortName": "AHF1-M", - "Description": "", - "Weight": 0.05, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_stimulator", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_ahf1-m_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_ahf1-m_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 8, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 2, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 2, - "medEffectType": "duringUse", - "MaxHpResource": 0, - "hpResourceRate": 0, - "StimulatorBuffs": "Buffs_AHF1M", - "effects_health": [], - "effects_damage": [] - }, - "_proto": "544fb3f34bdc2d03748b456a" - }, "63a0b2eabea67a6d93009e52": { "_id": "63a0b2eabea67a6d93009e52", "_name": "item_quest_radio_repeater", @@ -413129,6 +413080,424 @@ }, "_proto": "560d5e524bdc2d25448b4571" }, + "60098af40accd37ef2175f27": { + "_id": "60098af40accd37ef2175f27", + "_name": "item_meds_cat", + "_parent": "5448f3ac4bdc2dce718b4569", + "_type": "Item", + "_props": { + "Name": "item_meds_esmarch", + "ShortName": "item_meds_esmarch", + "Description": "item_meds_esmarch", + "Weight": 0.08, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_bandage", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_meds_cat/item_meds_cat_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_meds_cat/item_meds_cat_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 3, + "medEffectType": "afterUse", + "MaxHpResource": 0, + "hpResourceRate": 0, + "StimulatorBuffs": "", + "effects_health": [], + "effects_damage": { + "HeavyBleeding": { + "delay": 0, + "duration": 0, + "fadeOut": 0 + } + } + }, + "_proto": "544fb25a4bdc2dfb738b4567" + }, + "5c0e531d86f7747fa23f4d42": { + "_id": "5c0e531d86f7747fa23f4d42", + "_name": "SJ6_TGLabs", + "_parent": "5448f3a64bdc2d60728b456a", + "_type": "Item", + "_props": { + "Name": "SJ6 TGLabs", + "ShortName": "SJ6 TGLabs", + "Description": "", + "Weight": 0.05, + "BackgroundColor": "orange", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_stimulator", + "Prefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_sj6_loot.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_sj6_container.bundle", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 2, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "medUseTime": 2, + "medEffectType": "duringUse", + "MaxHpResource": 0, + "hpResourceRate": 0, + "StimulatorBuffs": "BuffsSJ6TGLabs", + "effects_health": [], + "effects_damage": [] + }, + "_proto": "544fb3f34bdc2d03748b456a" + }, + "5d2f2ab648f03550091993ca": { + "_id": "5d2f2ab648f03550091993ca", + "_name": "patron_127x108_bzt", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_127x108", + "ShortName": "patron_127x108", + "Description": "patron_127x108", + "Weight": 0.128, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 20, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_127x108_bzt.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 10, + "StackMaxRandom": 25, + "ammoType": "bullet", + "InitialSpeed": 818, + "BallisticCoeficient": 0.623, + "BulletMassGram": 48.3, + "BulletDiameterMilimeters": 13.01, + "Damage": 199, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 80, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "12.7x108", + "casingEjectPower": 0, + "casingMass": 16.5, + "casingSounds": "127rifle", + "ProjectileCount": 1, + "PenetrationChance": 0.75, + "RicochetChance": 0.38, + "FragmentationChance": 0.17, + "Deterioration": 1, + "SpeedRetardation": 2.5e-5, + "Tracer": true, + "TracerColor": "green", + "TracerDistance": 0, + "ArmorDamage": 95, + "Caliber": "Caliber127x108", + "StaminaBurnPerDamage": 0.2592, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": true, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": true, + "ExplosionType": "big_round_impact_explosive", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "MalfFeedChance": 0, + "RemoveShellAfterFire": false + }, + "_proto": "56dfef82d2720bbd668b4567" + }, + "5ba26812d4351e003201fef1": { + "_id": "5ba26812d4351e003201fef1", + "_name": "patron_46x30_action_sx", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_46x30_FMJ_SX", + "ShortName": "patron_46x30_FMJ_SX", + "Description": "patron_46x30_fmj_sx", + "Weight": 0.007, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 70, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_46x30_action_sx.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 70, + "ammoType": "bullet", + "InitialSpeed": 690, + "BallisticCoeficient": 0.175, + "BulletMassGram": 2, + "BulletDiameterMilimeters": 4.65, + "Damage": 65, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 18, + "PenetrationPowerDiviation": 0.1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 16, + "casingSounds": "rifle556", + "ProjectileCount": 1, + "PenetrationChance": 0.2, + "RicochetChance": 0.3, + "FragmentationChance": 0.5, + "Deterioration": 1, + "SpeedRetardation": 0, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 28, + "Caliber": "Caliber46x30", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.99, + "MalfFeedChance": 0.089, + "RemoveShellAfterFire": false + }, + "_proto": "57372140245977611f70ee91" + }, "5e8488fa988a8701445df1e4": { "_id": "5e8488fa988a8701445df1e4", "_name": "item_meds_hemostatic", @@ -414166,83 +414535,6 @@ }, "_proto": "56dfef82d2720bbd668b4567" }, - "590c661e86f7741e566b646a": { - "_id": "590c661e86f7741e566b646a", - "_name": "item_meds_automedkit", - "_parent": "5448f39d4bdc2d0a728b4568", - "_type": "Item", - "_props": { - "Name": "Automedkit", - "ShortName": "Automedkit", - "Description": "Automedkit", - "Weight": 1, - "BackgroundColor": "orange", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_medkit", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_automedkit/item_automedkit_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_automedkit/item_automedkit_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 3, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 3, - "medEffectType": "duringUse", - "MaxHpResource": 220, - "hpResourceRate": 70, - "StimulatorBuffs": "", - "effects_health": [], - "effects_damage": { - "LightBleeding": { - "delay": 0, - "duration": 0, - "fadeOut": 0, - "cost": 50 - } - } - }, - "_proto": "544fb45d4bdc2dee738b4568" - }, "544fb3364bdc2d34748b456a": { "_id": "544fb3364bdc2d34748b456a", "_name": "splint", @@ -414318,152 +414610,6 @@ } } }, - "60098af40accd37ef2175f27": { - "_id": "60098af40accd37ef2175f27", - "_name": "item_meds_cat", - "_parent": "5448f3ac4bdc2dce718b4569", - "_type": "Item", - "_props": { - "Name": "item_meds_esmarch", - "ShortName": "item_meds_esmarch", - "Description": "item_meds_esmarch", - "Weight": 0.08, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_bandage", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_meds_cat/item_meds_cat_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_meds_cat/item_meds_cat_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 3, - "medEffectType": "afterUse", - "MaxHpResource": 0, - "hpResourceRate": 0, - "StimulatorBuffs": "", - "effects_health": [], - "effects_damage": { - "HeavyBleeding": { - "delay": 0, - "duration": 0, - "fadeOut": 0 - } - } - }, - "_proto": "544fb25a4bdc2dfb738b4567" - }, - "5c0e531d86f7747fa23f4d42": { - "_id": "5c0e531d86f7747fa23f4d42", - "_name": "SJ6_TGLabs", - "_parent": "5448f3a64bdc2d60728b456a", - "_type": "Item", - "_props": { - "Name": "SJ6 TGLabs", - "ShortName": "SJ6 TGLabs", - "Description": "", - "Weight": 0.05, - "BackgroundColor": "orange", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_stimulator", - "Prefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_sj6_loot.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "assets/content/weapons/usable_items/item_syringe/item_stimulator_sj6_container.bundle", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 2, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "medUseTime": 2, - "medEffectType": "duringUse", - "MaxHpResource": 0, - "hpResourceRate": 0, - "StimulatorBuffs": "BuffsSJ6TGLabs", - "effects_health": [], - "effects_damage": [] - }, - "_proto": "544fb3f34bdc2d03748b456a" - }, "5ed515c8d380ab312177c0fa": { "_id": "5ed515c8d380ab312177c0fa", "_name": "3-(b-TG)", @@ -414534,142 +414680,6 @@ }, "_proto": "544fb3f34bdc2d03748b456a" }, - "5d2f2ab648f03550091993ca": { - "_id": "5d2f2ab648f03550091993ca", - "_name": "patron_127x108_bzt", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_127x108", - "ShortName": "patron_127x108", - "Description": "patron_127x108", - "Weight": 0.128, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 20, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_127x108_bzt.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 10, - "StackMaxRandom": 25, - "ammoType": "bullet", - "InitialSpeed": 818, - "BallisticCoeficient": 0.623, - "BulletMassGram": 48.3, - "BulletDiameterMilimeters": 13.01, - "Damage": 199, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 80, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "12.7x108", - "casingEjectPower": 0, - "casingMass": 16.5, - "casingSounds": "127rifle", - "ProjectileCount": 1, - "PenetrationChance": 0.75, - "RicochetChance": 0.38, - "FragmentationChance": 0.17, - "Deterioration": 1, - "SpeedRetardation": 2.5e-5, - "Tracer": true, - "TracerColor": "green", - "TracerDistance": 0, - "ArmorDamage": 95, - "Caliber": "Caliber127x108", - "StaminaBurnPerDamage": 0.2592, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": true, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": true, - "ExplosionType": "big_round_impact_explosive", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "MalfFeedChance": 0, - "RemoveShellAfterFire": false - }, - "_proto": "56dfef82d2720bbd668b4567" - }, "5ed5160a87bb8443d10680b5": { "_id": "5ed5160a87bb8443d10680b5", "_name": "Meldonin", @@ -416046,6 +416056,414 @@ }, "_proto": "56dfef82d2720bbd668b4567" }, + "56dff4a2d2720bbd668b456a": { + "_id": "56dff4a2d2720bbd668b456a", + "_name": "patron_545x39_T", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_545x39_T", + "ShortName": "patron_545x39_T", + "Description": "patron_545x39_T", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_545x39_t.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 50, + "ammoType": "bullet", + "InitialSpeed": 883, + "BallisticCoeficient": 0.223, + "BulletMassGram": 3.23, + "BulletDiameterMilimeters": 5.62, + "Damage": 57, + "ammoAccr": -3, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 20, + "PenetrationPowerDiviation": 0.24, + "ammoHear": 0, + "ammoSfx": "tracer_red", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 4, + "ammoShiftChance": 0, + "casingName": "5.45x39 мм Т", + "casingEjectPower": 0, + "casingMass": 16.5, + "casingSounds": "rifle556", + "ProjectileCount": 1, + "PenetrationChance": 0.54, + "RicochetChance": 0.4, + "FragmentationChance": 0.16, + "Deterioration": 1, + "SpeedRetardation": 2.5e-5, + "Tracer": true, + "TracerColor": "tracerRed", + "TracerDistance": 0.5, + "ArmorDamage": 36, + "Caliber": "Caliber545x39", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.182, + "DurabilityBurnModificator": 1.15, + "HeatFactor": 1.5222, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false + }, + "_proto": "56dff421d2720b5f5a8b4567" + }, + "59e6920f86f77411d82aa167": { + "_id": "59e6920f86f77411d82aa167", + "_name": "patron_556x45_55_FMJ", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_556x45_55_FMJ", + "ShortName": "patron_556x45_55_FMJ", + "Description": "patron_556x45_55_FMJ", + "Weight": 0.012, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_556x45_55_fmj.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 15, + "StackMaxRandom": 50, + "ammoType": "bullet", + "InitialSpeed": 957, + "BallisticCoeficient": 0.252, + "BulletMassGram": 3.75, + "BulletDiameterMilimeters": 5.7, + "Damage": 59, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 23, + "PenetrationPowerDiviation": 0.21, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "5.56x45 мм M193 FMJ", + "casingEjectPower": 1, + "casingMass": 11.77, + "casingSounds": "rifle556", + "ProjectileCount": 1, + "PenetrationChance": 0.425, + "RicochetChance": 0.26, + "FragmentationChance": 0.5, + "Deterioration": 1, + "SpeedRetardation": 2.3e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 33, + "Caliber": "Caliber556x45NATO", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.154, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.501, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false + }, + "_proto": "54527ac44bdc2d36668b4567" + }, + "56dfef82d2720bbd668b4567": { + "_id": "56dfef82d2720bbd668b4567", + "_name": "patron_545x39_BP", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_545x39_BP", + "ShortName": "patron_545x39_BP", + "Description": "patron_545x39_BP", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_545x39_bp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 10, + "StackMaxRandom": 40, + "ammoType": "bullet", + "InitialSpeed": 890, + "BallisticCoeficient": 0.252, + "BulletMassGram": 3.65, + "BulletDiameterMilimeters": 5.62, + "Damage": 46, + "ammoAccr": -3, + "ammoRec": 7, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 45, + "PenetrationPowerDiviation": 1.35, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "5.45x39 мм БП", + "casingEjectPower": 0, + "casingMass": 16.5, + "casingSounds": "rifle556", + "ProjectileCount": 1, + "PenetrationChance": 0.72, + "RicochetChance": 0.36, + "FragmentationChance": 0.16, + "Deterioration": 1, + "SpeedRetardation": 2.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 46, + "Caliber": "Caliber545x39", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1.35, + "HeatFactor": 1.593, + "MalfFeedChance": 0.082, + "RemoveShellAfterFire": false + }, + "_proto": "5656d7c34bdc2d9d198b4587" + }, "61962b617c6c7b169525f168": { "_id": "61962b617c6c7b169525f168", "_name": "patron_545x39_7n40", @@ -417132,23 +417550,23 @@ "RemoveShellAfterFire": false } }, - "56dff4a2d2720bbd668b456a": { - "_id": "56dff4a2d2720bbd668b456a", - "_name": "patron_545x39_T", + "5737207f24597760ff7b25f2": { + "_id": "5737207f24597760ff7b25f2", + "_name": "patron_9x18pm_PSV", "_parent": "5485a8684bdc2da71d8b4567", "_type": "Item", "_props": { - "Name": "patron_545x39_T", - "ShortName": "patron_545x39_T", - "Description": "patron_545x39_T", - "Weight": 0.01, + "Name": "patron_9x18pm_PSV", + "ShortName": "patron_9x18pm_PSV", + "Description": "patron_9x18pm_PSV", + "Weight": 0.012, "BackgroundColor": "yellow", "Width": 1, "Height": 1, - "StackMaxSize": 60, + "StackMaxSize": 50, "ItemSound": "ammo_singleround", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_545x39_t.bundle", + "path": "assets/content/items/ammo/patrons/patron_9x18pm_psv.bundle", "rcid": "" }, "UsePrefab": { @@ -417193,39 +417611,311 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "StackMinRandom": 20, - "StackMaxRandom": 50, + "StackMaxRandom": 40, "ammoType": "bullet", - "InitialSpeed": 883, - "BallisticCoeficient": 0.223, - "BulletMassGram": 3.23, - "BulletDiameterMilimeters": 5.62, - "Damage": 57, - "ammoAccr": -3, + "InitialSpeed": 280, + "BallisticCoeficient": 0.124, + "BulletMassGram": 7.5, + "BulletDiameterMilimeters": 9.27, + "Damage": 69, + "ammoAccr": 0, "ammoRec": 0, "ammoDist": 0, "buckshotBullets": 0, - "PenetrationPower": 20, - "PenetrationPowerDiviation": 0.24, + "PenetrationPower": 3, + "PenetrationPowerDiviation": 0, "ammoHear": 0, - "ammoSfx": "tracer_red", + "ammoSfx": "standart", "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.05, + "RicochetChance": 0.01, + "FragmentationChance": 0.4, + "Deterioration": 1, + "SpeedRetardation": 7.0e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 5, + "Caliber": "Caliber9x18PM", + "StaminaBurnPerDamage": 0.13824, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0.1, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.912, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "5737201124597760fc4431f1" + }, + "56dff216d2720bbd668b4568": { + "_id": "56dff216d2720bbd668b4568", + "_name": "patron_545x39_HP", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_545x39_HP", + "ShortName": "patron_545x39_HP", + "Description": "patron_545x39_HP", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_545x39_hp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 60, + "ammoType": "bullet", + "InitialSpeed": 884, + "BallisticCoeficient": 0.246, + "BulletMassGram": 3.56, + "BulletDiameterMilimeters": 5.62, + "Damage": 76, + "ammoAccr": 3, + "ammoRec": -3, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 9, + "PenetrationPowerDiviation": 0.64, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.02, "MinFragmentsCount": 2, "MaxFragmentsCount": 4, "ammoShiftChance": 0, - "casingName": "5.45x39 мм Т", + "casingName": "5.45x39 мм HP", "casingEjectPower": 0, "casingMass": 16.5, "casingSounds": "rifle556", "ProjectileCount": 1, - "PenetrationChance": 0.54, - "RicochetChance": 0.4, - "FragmentationChance": 0.16, + "PenetrationChance": 0.48, + "RicochetChance": 0.2, + "FragmentationChance": 0.35, "Deterioration": 1, "SpeedRetardation": 2.5e-5, - "Tracer": true, - "TracerColor": "tracerRed", - "TracerDistance": 0.5, - "ArmorDamage": 36, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 15, + "Caliber": "Caliber545x39", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0.15, + "LightBleedingDelta": 0.15, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.14, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.416, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false + }, + "_proto": "56dff0bed2720bb0668b4567" + }, + "56dff338d2720bbd668b4569": { + "_id": "56dff338d2720bbd668b4569", + "_name": "patron_545x39_PRS", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_545x39_PRS", + "ShortName": "patron_545x39_PRS", + "Description": "patron_545x39_PRS", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_545x39_prs.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 60, + "ammoType": "bullet", + "InitialSpeed": 866, + "BallisticCoeficient": 0.266, + "BulletMassGram": 3.85, + "BulletDiameterMilimeters": 5.62, + "Damage": 70, + "ammoAccr": 0, + "ammoRec": -5, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 13, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "5.45x39 мм ПРС", + "casingEjectPower": 0, + "casingMass": 16.5, + "casingSounds": "rifle556", + "ProjectileCount": 1, + "PenetrationChance": 0.51, + "RicochetChance": 0.04, + "FragmentationChance": 0.3, + "Deterioration": 1, + "SpeedRetardation": 2.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 24, "Caliber": "Caliber545x39", "StaminaBurnPerDamage": 0.144, "HeavyBleedingDelta": 0, @@ -417260,23 +417950,23 @@ "LightAndSoundShotAngle": 0, "LightAndSoundShotSelfContusionTime": 0, "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.182, + "MalfMisfireChance": 0.154, "DurabilityBurnModificator": 1.15, - "HeatFactor": 1.5222, + "HeatFactor": 1.5045, "MalfFeedChance": 0.02, "RemoveShellAfterFire": false }, - "_proto": "56dff421d2720b5f5a8b4567" + "_proto": "56dff2ced2720bb4668b4567" }, - "59e6920f86f77411d82aa167": { - "_id": "59e6920f86f77411d82aa167", - "_name": "patron_556x45_55_FMJ", + "59e68f6f86f7746c9f75e846": { + "_id": "59e68f6f86f7746c9f75e846", + "_name": "patron_556x45_M856", "_parent": "5485a8684bdc2da71d8b4567", "_type": "Item", "_props": { - "Name": "patron_556x45_55_FMJ", - "ShortName": "patron_556x45_55_FMJ", - "Description": "patron_556x45_55_FMJ", + "Name": "patron_556x45_M856", + "ShortName": "patron_556x45_M856", + "Description": "patron_556x45_M856", "Weight": 0.012, "BackgroundColor": "yellow", "Width": 1, @@ -417284,7 +417974,7 @@ "StackMaxSize": 60, "ItemSound": "ammo_singleround", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_556x45_55_fmj.bundle", + "path": "assets/content/items/ammo/patrons/patron_556x45_m856.bundle", "rcid": "" }, "UsePrefab": { @@ -417331,37 +418021,37 @@ "StackMinRandom": 15, "StackMaxRandom": 50, "ammoType": "bullet", - "InitialSpeed": 957, - "BallisticCoeficient": 0.252, - "BulletMassGram": 3.75, + "InitialSpeed": 874, + "BallisticCoeficient": 0.241, + "BulletMassGram": 4.15, "BulletDiameterMilimeters": 5.7, - "Damage": 59, - "ammoAccr": 0, - "ammoRec": 0, + "Damage": 64, + "ammoAccr": -2, + "ammoRec": -2, "ammoDist": 0, "buckshotBullets": 0, - "PenetrationPower": 23, - "PenetrationPowerDiviation": 0.21, + "PenetrationPower": 18, + "PenetrationPowerDiviation": 0.245, "ammoHear": 0, "ammoSfx": "standart", "MisfireChance": 0.01, "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, + "MaxFragmentsCount": 4, "ammoShiftChance": 0, "casingName": "5.56x45 мм M193 FMJ", "casingEjectPower": 1, "casingMass": 11.77, "casingSounds": "rifle556", "ProjectileCount": 1, - "PenetrationChance": 0.425, - "RicochetChance": 0.26, - "FragmentationChance": 0.5, + "PenetrationChance": 0.55, + "RicochetChance": 0.38, + "FragmentationChance": 0.328, "Deterioration": 1, "SpeedRetardation": 2.3e-5, - "Tracer": false, + "Tracer": true, "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 33, + "TracerDistance": 0.5, + "ArmorDamage": 26, "Caliber": "Caliber556x45NATO", "StaminaBurnPerDamage": 0.144, "HeavyBleedingDelta": 0, @@ -417396,14 +418086,150 @@ "LightAndSoundShotAngle": 0, "LightAndSoundShotSelfContusionTime": 0, "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.154, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.501, - "MalfFeedChance": 0.02, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1.15, + "HeatFactor": 1.634, + "MalfFeedChance": 0.01, "RemoveShellAfterFire": false }, "_proto": "54527ac44bdc2d36668b4567" }, + "57371f8d24597761006c6a81": { + "_id": "57371f8d24597761006c6a81", + "_name": "patron_9x18pm_PSO_gzh", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_9x18pm_PSO_gzh", + "ShortName": "patron_9x18pm_PSO_gzh", + "Description": "patron_9x18pm_PSO_gzh", + "Weight": 0.008, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x18pm_pso_gzh.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 2, + "StackMaxRandom": 10, + "ammoType": "bullet", + "InitialSpeed": 315, + "BallisticCoeficient": 0.099, + "BulletMassGram": 6, + "BulletDiameterMilimeters": 9.27, + "Damage": 54, + "ammoAccr": 10, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 5, + "PenetrationPowerDiviation": 0, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.085, + "RicochetChance": 0.065, + "FragmentationChance": 0.35, + "Deterioration": 1, + "SpeedRetardation": 7.0e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 13, + "Caliber": "Caliber9x18PM", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0.15, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.266, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.9063, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false + }, + "_proto": "57371f2b24597761224311f1" + }, "59e6918f86f7746c9f75e849": { "_id": "59e6918f86f7746c9f75e849", "_name": "patron_556x45_MK_255_Mod_0", @@ -418220,23 +419046,431 @@ }, "_proto": "5943d9c186f7745a13413ac9" }, - "57371f8d24597761006c6a81": { - "_id": "57371f8d24597761006c6a81", - "_name": "patron_9x18pm_PSO_gzh", + "5a608bf24f39f98ffc77720e": { + "_id": "5a608bf24f39f98ffc77720e", + "_name": "patron_762x51_M62", "_parent": "5485a8684bdc2da71d8b4567", "_type": "Item", "_props": { - "Name": "patron_9x18pm_PSO_gzh", - "ShortName": "patron_9x18pm_PSO_gzh", - "Description": "patron_9x18pm_PSO_gzh", - "Weight": 0.008, + "Name": "default_308", + "ShortName": "default_308", + "Description": "default_308", + "Weight": 0.024, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 40, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x51_m62.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 10, + "StackMaxRandom": 40, + "ammoType": "bullet", + "InitialSpeed": 816, + "BallisticCoeficient": 0.326, + "BulletMassGram": 9.2, + "BulletDiameterMilimeters": 7.85, + "Damage": 79, + "ammoAccr": -6, + "ammoRec": -1, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 44, + "PenetrationPowerDiviation": 1.2, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 1, + "ammoShiftChance": 0, + "casingName": ".308", + "casingEjectPower": 0, + "casingMass": 77.16, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.67, + "RicochetChance": 0.38, + "FragmentationChance": 0.14, + "Deterioration": 1, + "SpeedRetardation": 1.5e-5, + "Tracer": true, + "TracerColor": "green", + "TracerDistance": 0, + "ArmorDamage": 75, + "Caliber": "Caliber762x51", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1.5, + "HeatFactor": 2.232, + "MalfFeedChance": 0.09, + "RemoveShellAfterFire": false + }, + "_proto": "560d61e84bdc2da74d8b4571" + }, + "5e023e88277cce2b522ff2b1": { + "_id": "5e023e88277cce2b522ff2b1", + "_name": "patron_762x51_ultra_nosler", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "default_308", + "ShortName": "default_308", + "Description": "default_308", + "Weight": 0.021, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 40, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x51_ultra_nosler.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 10, + "StackMaxRandom": 40, + "ammoType": "bullet", + "InitialSpeed": 822, + "BallisticCoeficient": 0.375, + "BulletMassGram": 10.6, + "BulletDiameterMilimeters": 7.85, + "Damage": 107, + "ammoAccr": 10, + "ammoRec": -5, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 15, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": ".308", + "casingEjectPower": 0, + "casingMass": 77.16, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.1, + "RicochetChance": 0.2, + "FragmentationChance": 0.7, + "Deterioration": 1, + "SpeedRetardation": 1.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 20, + "Caliber": "Caliber762x51", + "StaminaBurnPerDamage": 0.2592, + "HeavyBleedingDelta": 0.2, + "LightBleedingDelta": 0.2, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1.15, + "HeatFactor": 2.108, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "560d61e84bdc2da74d8b4571" + }, + "5735ff5c245977640e39ba7e": { + "_id": "5735ff5c245977640e39ba7e", + "_name": "patron_762x25tt_FMJ43", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_762x25tt_FMJ43", + "ShortName": "patron_762x25tt_FMJ43", + "Description": "patron_762x25tt_FMJ43", + "Weight": 0.01, "BackgroundColor": "yellow", "Width": 1, "Height": 1, "StackMaxSize": 50, "ItemSound": "ammo_singleround", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x18pm_pso_gzh.bundle", + "path": "assets/content/items/ammo/patrons/patron_762x25tt_fmj43.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 1, + "StackMaxRandom": 20, + "ammoType": "bullet", + "InitialSpeed": 427, + "BallisticCoeficient": 0.055, + "BulletMassGram": 7.2, + "BulletDiameterMilimeters": 7.85, + "Damage": 60, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 11, + "PenetrationPowerDiviation": 0.06, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.05, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 4, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.17, + "RicochetChance": 0.065, + "FragmentationChance": 0.25, + "Deterioration": 1, + "SpeedRetardation": 5.0e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 29, + "Caliber": "Caliber762x25TT", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.9735, + "MalfFeedChance": 0.128, + "RemoveShellAfterFire": false + }, + "_proto": "5735fdcd2459776445391d61" + }, + "5cc80f8fe4a949033b0224a2": { + "_id": "5cc80f8fe4a949033b0224a2", + "_name": "patron_57x28_ss197sr", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_556x45_M855", + "ShortName": "patron_556x45_M855", + "Description": "patron_556x45_M855", + "Weight": 0.007, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_57x28_ss197sr.bundle", "rcid": "" }, "UsePrefab": { @@ -418281,178 +419515,42 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "StackMinRandom": 2, - "StackMaxRandom": 10, + "StackMaxRandom": 15, "ammoType": "bullet", - "InitialSpeed": 315, - "BallisticCoeficient": 0.099, - "BulletMassGram": 6, - "BulletDiameterMilimeters": 9.27, - "Damage": 54, + "InitialSpeed": 594, + "BallisticCoeficient": 0.233, + "BulletMassGram": 4, + "BulletDiameterMilimeters": 5.7, + "Damage": 62, "ammoAccr": 10, "ammoRec": 0, "ammoDist": 0, "buckshotBullets": 0, - "PenetrationPower": 5, - "PenetrationPowerDiviation": 0, + "PenetrationPower": 25, + "PenetrationPowerDiviation": 1, "ammoHear": 0, "ammoSfx": "standart", "MisfireChance": 0.01, "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "", + "MaxFragmentsCount": 5, + "ammoShiftChance": 15, + "casingName": "patron_57x28_ss197sr", "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "pistol_small", + "casingMass": 3.9, + "casingSounds": "rifle556", "ProjectileCount": 1, - "PenetrationChance": 0.085, - "RicochetChance": 0.065, - "FragmentationChance": 0.35, + "PenetrationChance": 0.2, + "RicochetChance": 0.05, + "FragmentationChance": 0.5, "Deterioration": 1, - "SpeedRetardation": 7.0e-5, + "SpeedRetardation": 2.3e-5, "Tracer": false, "TracerColor": "red", "TracerDistance": 0, - "ArmorDamage": 13, - "Caliber": "Caliber9x18PM", + "ArmorDamage": 22, + "Caliber": "Caliber57x28", "StaminaBurnPerDamage": 0.1152, "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0.15, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.266, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.9063, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "57371f2b24597761224311f1" - }, - "59e68f6f86f7746c9f75e846": { - "_id": "59e68f6f86f7746c9f75e846", - "_name": "patron_556x45_M856", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_556x45_M856", - "ShortName": "patron_556x45_M856", - "Description": "patron_556x45_M856", - "Weight": 0.012, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_556x45_m856.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 15, - "StackMaxRandom": 50, - "ammoType": "bullet", - "InitialSpeed": 874, - "BallisticCoeficient": 0.241, - "BulletMassGram": 4.15, - "BulletDiameterMilimeters": 5.7, - "Damage": 64, - "ammoAccr": -2, - "ammoRec": -2, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 18, - "PenetrationPowerDiviation": 0.245, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 4, - "ammoShiftChance": 0, - "casingName": "5.56x45 мм M193 FMJ", - "casingEjectPower": 1, - "casingMass": 11.77, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.55, - "RicochetChance": 0.38, - "FragmentationChance": 0.328, - "Deterioration": 1, - "SpeedRetardation": 2.3e-5, - "Tracer": true, - "TracerColor": "red", - "TracerDistance": 0.5, - "ArmorDamage": 26, - "Caliber": "Caliber556x45NATO", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, "LightBleedingDelta": 0, "ShowBullet": false, "HasGrenaderComponent": false, @@ -418485,12 +419583,12 @@ "LightAndSoundShotSelfContusionTime": 0, "LightAndSoundShotSelfContusionStrength": 0, "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.15, - "HeatFactor": 1.634, - "MalfFeedChance": 0.01, + "DurabilityBurnModificator": 0.8, + "HeatFactor": 1, + "MalfFeedChance": 0.02, "RemoveShellAfterFire": false }, - "_proto": "54527ac44bdc2d36668b4567" + "_proto": "54527a984bdc2d4e668b4567" }, "59e6927d86f77411da468256": { "_id": "59e6927d86f77411da468256", @@ -419172,6 +420270,2316 @@ }, "_proto": "560d61e84bdc2da74d8b4571" }, + "54527ac44bdc2d36668b4567": { + "_id": "54527ac44bdc2d36668b4567", + "_name": "patron_556x45_M855A1", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_556x45_M855A1", + "ShortName": "patron_556x45_M855A1", + "Description": "patron_556x45_M855A1", + "Weight": 0.012, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_556x45_m855a1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 40, + "ammoType": "bullet", + "InitialSpeed": 945, + "BallisticCoeficient": 0.233, + "BulletMassGram": 4, + "BulletDiameterMilimeters": 5.7, + "Damage": 49, + "ammoAccr": -5, + "ammoRec": 5, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 44, + "PenetrationPowerDiviation": 1.375, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "5.56x45 мм M193 FMJ", + "casingEjectPower": 1, + "casingMass": 11.77, + "casingSounds": "rifle556", + "ProjectileCount": 1, + "PenetrationChance": 0.55, + "RicochetChance": 0.38, + "FragmentationChance": 0.44, + "Deterioration": 1, + "SpeedRetardation": 2.3e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 47, + "Caliber": "Caliber556x45NATO", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1.34, + "HeatFactor": 1.71, + "MalfFeedChance": 0.094, + "RemoveShellAfterFire": false + } + }, + "5cc80f67e4a949035e43bbba": { + "_id": "5cc80f67e4a949035e43bbba", + "_name": "patron_57x28_sb193", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_556x45_M855", + "ShortName": "patron_556x45_M855", + "Description": "patron_556x45_M855", + "Weight": 0.007, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_57x28_sb193.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 2, + "StackMaxRandom": 15, + "ammoType": "bullet", + "InitialSpeed": 299, + "BallisticCoeficient": 0.233, + "BulletMassGram": 4, + "BulletDiameterMilimeters": 5.7, + "Damage": 59, + "ammoAccr": 5, + "ammoRec": -15, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 27, + "PenetrationPowerDiviation": 1, + "ammoHear": -20, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 3, + "ammoShiftChance": 15, + "casingName": "5.56x45 мм M193 Ball", + "casingEjectPower": 1, + "casingMass": 3.9, + "casingSounds": "rifle556", + "ProjectileCount": 1, + "PenetrationChance": 0.5, + "RicochetChance": 0.3, + "FragmentationChance": 0.35, + "Deterioration": 1, + "SpeedRetardation": 2.3e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 37, + "Caliber": "Caliber57x28", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.14, + "DurabilityBurnModificator": 0.75, + "HeatFactor": 0.936, + "MalfFeedChance": 0.0775, + "RemoveShellAfterFire": false + }, + "_proto": "54527a984bdc2d4e668b4567" + }, + "62330b3ed4dc74626d570b95": { + "_id": "62330b3ed4dc74626d570b95", + "_name": "patron_9x33r_fmj", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_366_custom_ap", + "ShortName": "patron_366_custom_ap", + "Description": "patron_366_custom_ap", + "Weight": 0.016, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 30, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x33r_fmj.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 10, + "StackMaxRandom": 30, + "ammoType": "bullet", + "InitialSpeed": 385, + "BallisticCoeficient": 0.163, + "BulletMassGram": 10.15, + "BulletDiameterMilimeters": 9.12, + "Damage": 70, + "ammoAccr": 0, + "ammoRec": 12, + "ammoDist": 10, + "buckshotBullets": 0, + "PenetrationPower": 35, + "PenetrationPowerDiviation": 0.2, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": ".357 JHP", + "casingEjectPower": 0, + "casingMass": 16.5, + "casingSounds": "pistol_big", + "ProjectileCount": 1, + "PenetrationChance": 0.35, + "RicochetChance": 0.065, + "FragmentationChance": 0.01, + "Deterioration": 1, + "SpeedRetardation": 1.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 43, + "Caliber": "Caliber9x33R", + "StaminaBurnPerDamage": 0.42, + "HeavyBleedingDelta": 0.1, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.18, + "DurabilityBurnModificator": 1.5, + "HeatFactor": 2.27, + "MalfFeedChance": 0.102, + "RemoveShellAfterFire": false + }, + "_proto": "5656d7c34bdc2d9d198b4587" + }, + "5996f6fc86f7745e585b4de3": { + "_id": "5996f6fc86f7745e585b4de3", + "_name": "shrapnel_m67", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "Shrapnel", + "ShortName": "Shrapnel", + "Description": "Осколок гранаты", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 0, + "StackMaxRandom": 0, + "ammoType": "bullet", + "InitialSpeed": 100, + "BallisticCoeficient": 0.013, + "BulletMassGram": 0.09, + "BulletDiameterMilimeters": 7, + "Damage": 45, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 12, + "PenetrationPowerDiviation": 0, + "ammoHear": 0, + "ammoSfx": "tracer", + "MisfireChance": 0, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 0, + "casingMass": 0, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.1, + "RicochetChance": 0.2, + "FragmentationChance": 0.5, + "Deterioration": 1, + "SpeedRetardation": 0.0004, + "Tracer": true, + "TracerColor": "tracerYellow", + "TracerDistance": 0.01, + "ArmorDamage": 32, + "Caliber": "Caliber9x18PM", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0.2, + "LightBleedingDelta": 0.2, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5485a8684bdc2da71d8b4567", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "MalfFeedChance": 0, + "RemoveShellAfterFire": false + }, + "_proto": "5943d9c186f7745a13413ac9" + }, + "573719762459775a626ccbc1": { + "_id": "573719762459775a626ccbc1", + "_name": "patron_9x18pm_P_gzh", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_9x18pm_P_gzh", + "ShortName": "patron_9x18pm_P_gzh", + "Description": "patron_9x18pm_P_gzh", + "Weight": 0.011, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x18pm_p_gzh.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 2, + "StackMaxRandom": 10, + "ammoType": "bullet", + "InitialSpeed": 302, + "BallisticCoeficient": 0.101, + "BulletMassGram": 6.1, + "BulletDiameterMilimeters": 9.27, + "Damage": 50, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 5, + "PenetrationPowerDiviation": 0, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.02, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.085, + "RicochetChance": 0.065, + "FragmentationChance": 0.25, + "Deterioration": 1, + "SpeedRetardation": 7.0e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 16, + "Caliber": "Caliber9x18PM", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0.1, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.9291, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false + }, + "_proto": "573718ba2459775a75491131" + }, + "64b7af434b75259c590fa893": { + "_id": "64b7af434b75259c590fa893", + "_name": "patron_762x39_pp", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_762x39_PS", + "ShortName": "patron_762x39_PS", + "Description": "patron_762x39_PS", + "Weight": 0.016, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x39_pp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 10, + "StackMaxRandom": 50, + "ammoType": "bullet", + "InitialSpeed": 732, + "BallisticCoeficient": 0.28, + "BulletMassGram": 7.9, + "BulletDiameterMilimeters": 7.92, + "Damage": 55, + "ammoAccr": -1, + "ammoRec": 5, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 41, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "7.62x39 мм ПС", + "casingEjectPower": 0, + "casingMass": 16.5, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.55, + "RicochetChance": 0.33, + "FragmentationChance": 0.15, + "Deterioration": 1, + "SpeedRetardation": 1.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 57, + "Caliber": "Caliber762x39", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.184, + "DurabilityBurnModificator": 1.35, + "HeatFactor": 1.725, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false + } + }, + "5e023e6e34d52a55c3304f71": { + "_id": "5e023e6e34d52a55c3304f71", + "_name": "patron_762x51_tpz_sp", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "default_308", + "ShortName": "default_308", + "Description": "default_308", + "Weight": 0.023, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 40, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x51_tpz_sp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 10, + "StackMaxRandom": 40, + "ammoType": "bullet", + "InitialSpeed": 808, + "BallisticCoeficient": 0.383, + "BulletMassGram": 10.8, + "BulletDiameterMilimeters": 7.85, + "Damage": 87, + "ammoAccr": -2, + "ammoRec": -3, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 30, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": ".308", + "casingEjectPower": 0, + "casingMass": 77.16, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.2, + "RicochetChance": 0.4, + "FragmentationChance": 0.35, + "Deterioration": 1, + "SpeedRetardation": 1.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 25, + "Caliber": "Caliber762x51", + "StaminaBurnPerDamage": 0.29, + "HeavyBleedingDelta": 0.12, + "LightBleedingDelta": 0.12, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.154, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.984, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false + }, + "_proto": "560d61e84bdc2da74d8b4571" + }, + "5fc382c1016cce60e8341b20": { + "_id": "5fc382c1016cce60e8341b20", + "_name": "patron_86x70_lapua_magnum_upz", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "default_308", + "ShortName": "default_308", + "Description": "default_308", + "Weight": 0.045, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 30, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_86x70_lapua_magnum_upz.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 2, + "StackMaxRandom": 8, + "ammoType": "bullet", + "InitialSpeed": 849, + "BallisticCoeficient": 0.48, + "BulletMassGram": 16.2, + "BulletDiameterMilimeters": 8.58, + "Damage": 142, + "ammoAccr": -5, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 32, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": ".338", + "casingEjectPower": 0, + "casingMass": 77.16, + "casingSounds": "50cal", + "ProjectileCount": 1, + "PenetrationChance": 0.6, + "RicochetChance": 0.4, + "FragmentationChance": 0.6, + "Deterioration": 1, + "SpeedRetardation": 1.1e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 70, + "Caliber": "Caliber86x70", + "StaminaBurnPerDamage": 0.2592, + "HeavyBleedingDelta": 0.4, + "LightBleedingDelta": 0.5, + "ShowBullet": false, + "HasGrenaderComponent": true, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": true, + "ExplosionType": "big_round_impact", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.224, + "DurabilityBurnModificator": 1, + "HeatFactor": 2.608, + "MalfFeedChance": 0.0945, + "RemoveShellAfterFire": false + }, + "_proto": "560d61e84bdc2da74d8b4571" + }, + "5c3df7d588a4501f290594e5": { + "_id": "5c3df7d588a4501f290594e5", + "_name": "patron_9x19_GT", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_9x19_PST_gzh", + "ShortName": "patron_9x19_PST_gzh", + "Description": "patron_9x19_PST_gzh", + "Weight": 0.006, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x19_gt.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 15, + "StackMaxRandom": 40, + "ammoType": "bullet", + "InitialSpeed": 365, + "BallisticCoeficient": 0.105, + "BulletMassGram": 6, + "BulletDiameterMilimeters": 9, + "Damage": 58, + "ammoAccr": -5, + "ammoRec": -6, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 14, + "PenetrationPowerDiviation": 0.8, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.03, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "9x18 мм ПМ ПС гс ППО", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.2, + "RicochetChance": 0.05, + "FragmentationChance": 0.15, + "Deterioration": 1, + "SpeedRetardation": 0.0001, + "Tracer": true, + "TracerColor": "tracerGreen", + "TracerDistance": 0, + "ArmorDamage": 33, + "Caliber": "Caliber9x19PARA", + "StaminaBurnPerDamage": 0.12672, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.14, + "DurabilityBurnModificator": 1.15, + "HeatFactor": 1.1305, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "54527c774bdc2d3f668b4568" + }, + "58dd3ad986f77403051cba8f": { + "_id": "58dd3ad986f77403051cba8f", + "_name": "patron_762x51_M80", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "default_308", + "ShortName": "default_308", + "Description": "default_308", + "Weight": 0.024, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 40, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 10, + "StackMaxRandom": 40, + "ammoType": "bullet", + "InitialSpeed": 833, + "BallisticCoeficient": 0.335, + "BulletMassGram": 9.46, + "BulletDiameterMilimeters": 7.85, + "Damage": 80, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 41, + "PenetrationPowerDiviation": 1.44, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": ".308", + "casingEjectPower": 0, + "casingMass": 77.16, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.75, + "RicochetChance": 0.38, + "FragmentationChance": 0.17, + "Deterioration": 1, + "SpeedRetardation": 1.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 66, + "Caliber": "Caliber762x51", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1.3, + "HeatFactor": 2.2568, + "MalfFeedChance": 0.0935, + "RemoveShellAfterFire": false + }, + "_proto": "560d61e84bdc2da74d8b4571" + }, + "5fc382a9d724d907e2077dab": { + "_id": "5fc382a9d724d907e2077dab", + "_name": "patron_86x70_lapua_ap", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "default_308", + "ShortName": "default_308", + "Description": "default_308", + "Weight": 0.049, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 30, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_86x70_lapua_ap.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 2, + "StackMaxRandom": 5, + "ammoType": "bullet", + "InitialSpeed": 849, + "BallisticCoeficient": 0.477, + "BulletMassGram": 16.1, + "BulletDiameterMilimeters": 8.58, + "Damage": 115, + "ammoAccr": 0, + "ammoRec": 10, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 79, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": ".338", + "casingEjectPower": 0, + "casingMass": 77.16, + "casingSounds": "50cal", + "ProjectileCount": 1, + "PenetrationChance": 0.9, + "RicochetChance": 0.3, + "FragmentationChance": 0.13, + "Deterioration": 1, + "SpeedRetardation": 1.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 89, + "Caliber": "Caliber86x70", + "StaminaBurnPerDamage": 0.2016, + "HeavyBleedingDelta": 0.55, + "LightBleedingDelta": 0.2, + "ShowBullet": false, + "HasGrenaderComponent": true, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": true, + "ExplosionType": "big_round_impact", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 2.4, + "HeatFactor": 3.26, + "MalfFeedChance": 0.087, + "RemoveShellAfterFire": false + }, + "_proto": "560d61e84bdc2da74d8b4571" + }, + "5a26ac0ec4a28200741e1e18": { + "_id": "5a26ac0ec4a28200741e1e18", + "_name": "patron_9x21_sp13", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_9x21_sp10", + "ShortName": "patron_9x21_sp10", + "Description": "patron_9x21_sp10", + "Weight": 0.023, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x21_sp13.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 2, + "StackMaxRandom": 15, + "ammoType": "bullet", + "InitialSpeed": 410, + "BallisticCoeficient": 0.084, + "BulletMassGram": 6.7, + "BulletDiameterMilimeters": 9, + "Damage": 49, + "ammoAccr": -5, + "ammoRec": 5, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 32, + "PenetrationPowerDiviation": 0.1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 16, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.6, + "RicochetChance": 0.4, + "FragmentationChance": 0.2, + "Deterioration": 1, + "SpeedRetardation": 0, + "Tracer": true, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 42, + "Caliber": "Caliber9x21", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.126, + "DurabilityBurnModificator": 1.4, + "HeatFactor": 1.25, + "MalfFeedChance": 0.082, + "RemoveShellAfterFire": false + }, + "_proto": "57372140245977611f70ee91" + }, + "63b35f281745dd52341e5da7": { + "_id": "63b35f281745dd52341e5da7", + "_name": "shrapnel_F1_new", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "Shrapnel", + "ShortName": "Shrapnel", + "Description": "Осколок гранаты", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 0, + "StackMaxRandom": 0, + "ammoType": "bullet", + "InitialSpeed": 90, + "BallisticCoeficient": 0.013, + "BulletMassGram": 0.09, + "BulletDiameterMilimeters": 7, + "Damage": 40, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 15, + "PenetrationPowerDiviation": 0, + "ammoHear": 0, + "ammoSfx": "tracer", + "MisfireChance": 0, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 0, + "casingMass": 0, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.25, + "RicochetChance": 0.3, + "FragmentationChance": 0.1, + "Deterioration": 1, + "SpeedRetardation": 0.0004, + "Tracer": true, + "TracerColor": "tracerYellow", + "TracerDistance": 0.01, + "ArmorDamage": 38, + "Caliber": "Caliber9x18PM", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0.25, + "LightBleedingDelta": 0.1, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5485a8684bdc2da71d8b4567", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "MalfFeedChance": 0, + "RemoveShellAfterFire": false + }, + "_proto": "5943d9c186f7745a13413ac9" + }, + "57371b192459775a9f58a5e0": { + "_id": "57371b192459775a9f58a5e0", + "_name": "patron_9x18pm_PPE_gzh", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_9x18pm_PPE_gzh", + "ShortName": "patron_9x18pm_PPE_gzh", + "Description": "patron_9x18pm_PPE_gzh", + "Weight": 0.009, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x18pm_ppe_gzh.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 2, + "StackMaxRandom": 10, + "ammoType": "bullet", + "InitialSpeed": 297, + "BallisticCoeficient": 0.092, + "BulletMassGram": 7.8, + "BulletDiameterMilimeters": 9.27, + "Damage": 61, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 7, + "PenetrationPowerDiviation": 0, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.08, + "RicochetChance": 0.05, + "FragmentationChance": 0.35, + "Deterioration": 1, + "SpeedRetardation": 7.0e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 15, + "Caliber": "Caliber9x18PM", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0.15, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.92625, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "57371aab2459775a77142f22" + }, + "5a3c16fe86f77452b62de32a": { + "_id": "5a3c16fe86f77452b62de32a", + "_name": "patron_9x19_luger_cci", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_9x19_luger_cci", + "ShortName": "patron_9x19_luger_cci", + "Description": "patron_9x19_luger_cci", + "Weight": 0.015, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x19_cci.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 10, + "StackMaxRandom": 20, + "ammoType": "bullet", + "InitialSpeed": 420, + "BallisticCoeficient": 0.131, + "BulletMassGram": 7.46, + "BulletDiameterMilimeters": 9, + "Damage": 70, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 10, + "PenetrationPowerDiviation": 0.136, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.03, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.12, + "RicochetChance": 0.065, + "FragmentationChance": 0.25, + "Deterioration": 1, + "SpeedRetardation": 0.0001, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 38, + "Caliber": "Caliber9x19PARA", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0.2, + "LightBleedingDelta": 0.2, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.14, + "DurabilityBurnModificator": 1.1, + "HeatFactor": 0.952, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "54527c774bdc2d3f668b4568" + }, + "57a0dfb82459774d3078b56c": { + "_id": "57a0dfb82459774d3078b56c", + "_name": "patron_9x39_sp5", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_9x39_sp5", + "ShortName": "patron_9x39_sp5", + "Description": "patron_9x39_sp5", + "Weight": 0.023, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x39_sp5.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 10, + "StackMaxRandom": 50, + "ammoType": "bullet", + "InitialSpeed": 290, + "BallisticCoeficient": 0.353, + "BulletMassGram": 16, + "BulletDiameterMilimeters": 9.25, + "Damage": 71, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 28, + "PenetrationPowerDiviation": 0.1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 16, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.6, + "RicochetChance": 0.4, + "FragmentationChance": 0.2, + "Deterioration": 1, + "SpeedRetardation": 0, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 39, + "Caliber": "Caliber9x39", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0.1, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.154, + "DurabilityBurnModificator": 1.2, + "HeatFactor": 1.53, + "MalfFeedChance": 0.0923, + "RemoveShellAfterFire": false + }, + "_proto": "57372140245977611f70ee91" + }, + "5efb0c1bd79ff02a1f5e68d9": { + "_id": "5efb0c1bd79ff02a1f5e68d9", + "_name": "patron_762x51_m993", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "default_308", + "ShortName": "default_308", + "Description": "default_308", + "Weight": 0.024, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 40, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x51_m993.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 10, + "StackMaxRandom": 40, + "ammoType": "bullet", + "InitialSpeed": 910, + "BallisticCoeficient": 0.291, + "BulletMassGram": 8.2, + "BulletDiameterMilimeters": 7.85, + "Damage": 67, + "ammoAccr": 5, + "ammoRec": 8, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 70, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": ".308", + "casingEjectPower": 0, + "casingMass": 77.16, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.92, + "RicochetChance": 0.28, + "FragmentationChance": 0.13, + "Deterioration": 1, + "SpeedRetardation": 1.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 85, + "Caliber": "Caliber762x51", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 2, + "HeatFactor": 2.48, + "MalfFeedChance": 0.081, + "RemoveShellAfterFire": false + }, + "_proto": "560d61e84bdc2da74d8b4571" + }, "56dff2ced2720bb4668b4567": { "_id": "56dff2ced2720bb4668b4567", "_name": "patron_545x39_PP", @@ -420532,1791 +423940,23 @@ }, "_proto": "54527c774bdc2d3f668b4568" }, - "5737207f24597760ff7b25f2": { - "_id": "5737207f24597760ff7b25f2", - "_name": "patron_9x18pm_PSV", + "64b7af5a8532cf95ee0a0dbd": { + "_id": "64b7af5a8532cf95ee0a0dbd", + "_name": "patron_762x39_fmj", "_parent": "5485a8684bdc2da71d8b4567", "_type": "Item", "_props": { - "Name": "patron_9x18pm_PSV", - "ShortName": "patron_9x18pm_PSV", - "Description": "patron_9x18pm_PSV", + "Name": "patron_762x39_PS", + "ShortName": "patron_762x39_PS", + "Description": "patron_762x39_PS", "Weight": 0.012, "BackgroundColor": "yellow", "Width": 1, "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x18pm_psv.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 40, - "ammoType": "bullet", - "InitialSpeed": 280, - "BallisticCoeficient": 0.124, - "BulletMassGram": 7.5, - "BulletDiameterMilimeters": 9.27, - "Damage": 69, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 3, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.05, - "RicochetChance": 0.01, - "FragmentationChance": 0.4, - "Deterioration": 1, - "SpeedRetardation": 7.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 5, - "Caliber": "Caliber9x18PM", - "StaminaBurnPerDamage": 0.13824, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0.1, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.912, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "5737201124597760fc4431f1" - }, - "56dff338d2720bbd668b4569": { - "_id": "56dff338d2720bbd668b4569", - "_name": "patron_545x39_PRS", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_545x39_PRS", - "ShortName": "patron_545x39_PRS", - "Description": "patron_545x39_PRS", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, "StackMaxSize": 60, "ItemSound": "ammo_singleround", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_545x39_prs.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 60, - "ammoType": "bullet", - "InitialSpeed": 866, - "BallisticCoeficient": 0.266, - "BulletMassGram": 3.85, - "BulletDiameterMilimeters": 5.62, - "Damage": 70, - "ammoAccr": 0, - "ammoRec": -5, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 13, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "5.45x39 мм ПРС", - "casingEjectPower": 0, - "casingMass": 16.5, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.51, - "RicochetChance": 0.04, - "FragmentationChance": 0.3, - "Deterioration": 1, - "SpeedRetardation": 2.5e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 24, - "Caliber": "Caliber545x39", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.154, - "DurabilityBurnModificator": 1.15, - "HeatFactor": 1.5045, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "56dff2ced2720bb4668b4567" - }, - "5cc80f8fe4a949033b0224a2": { - "_id": "5cc80f8fe4a949033b0224a2", - "_name": "patron_57x28_ss197sr", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_556x45_M855", - "ShortName": "patron_556x45_M855", - "Description": "patron_556x45_M855", - "Weight": 0.007, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_57x28_ss197sr.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 2, - "StackMaxRandom": 15, - "ammoType": "bullet", - "InitialSpeed": 594, - "BallisticCoeficient": 0.233, - "BulletMassGram": 4, - "BulletDiameterMilimeters": 5.7, - "Damage": 62, - "ammoAccr": 10, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 25, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 5, - "ammoShiftChance": 15, - "casingName": "patron_57x28_ss197sr", - "casingEjectPower": 1, - "casingMass": 3.9, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.2, - "RicochetChance": 0.05, - "FragmentationChance": 0.5, - "Deterioration": 1, - "SpeedRetardation": 2.3e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 22, - "Caliber": "Caliber57x28", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 0.8, - "HeatFactor": 1, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "54527a984bdc2d4e668b4567" - }, - "573719762459775a626ccbc1": { - "_id": "573719762459775a626ccbc1", - "_name": "patron_9x18pm_P_gzh", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_9x18pm_P_gzh", - "ShortName": "patron_9x18pm_P_gzh", - "Description": "patron_9x18pm_P_gzh", - "Weight": 0.011, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x18pm_p_gzh.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 2, - "StackMaxRandom": 10, - "ammoType": "bullet", - "InitialSpeed": 302, - "BallisticCoeficient": 0.101, - "BulletMassGram": 6.1, - "BulletDiameterMilimeters": 9.27, - "Damage": 50, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 5, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.02, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.085, - "RicochetChance": 0.065, - "FragmentationChance": 0.25, - "Deterioration": 1, - "SpeedRetardation": 7.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 16, - "Caliber": "Caliber9x18PM", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0.1, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.9291, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "573718ba2459775a75491131" - }, - "5ba26812d4351e003201fef1": { - "_id": "5ba26812d4351e003201fef1", - "_name": "patron_46x30_action_sx", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_46x30_FMJ_SX", - "ShortName": "patron_46x30_FMJ_SX", - "Description": "patron_46x30_fmj_sx", - "Weight": 0.007, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 70, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_46x30_action_sx.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 70, - "ammoType": "bullet", - "InitialSpeed": 690, - "BallisticCoeficient": 0.175, - "BulletMassGram": 2, - "BulletDiameterMilimeters": 4.65, - "Damage": 65, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 18, - "PenetrationPowerDiviation": 0.1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 16, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.2, - "RicochetChance": 0.3, - "FragmentationChance": 0.5, - "Deterioration": 1, - "SpeedRetardation": 0, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 28, - "Caliber": "Caliber46x30", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.99, - "MalfFeedChance": 0.089, - "RemoveShellAfterFire": false - }, - "_proto": "57372140245977611f70ee91" - }, - "5735ff5c245977640e39ba7e": { - "_id": "5735ff5c245977640e39ba7e", - "_name": "patron_762x25tt_FMJ43", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_762x25tt_FMJ43", - "ShortName": "patron_762x25tt_FMJ43", - "Description": "patron_762x25tt_FMJ43", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x25tt_fmj43.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 20, - "ammoType": "bullet", - "InitialSpeed": 427, - "BallisticCoeficient": 0.055, - "BulletMassGram": 7.2, - "BulletDiameterMilimeters": 7.85, - "Damage": 60, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 11, - "PenetrationPowerDiviation": 0.06, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.05, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 4, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "rifle762", - "ProjectileCount": 1, - "PenetrationChance": 0.17, - "RicochetChance": 0.065, - "FragmentationChance": 0.25, - "Deterioration": 1, - "SpeedRetardation": 5.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 29, - "Caliber": "Caliber762x25TT", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.9735, - "MalfFeedChance": 0.128, - "RemoveShellAfterFire": false - }, - "_proto": "5735fdcd2459776445391d61" - }, - "5c3df7d588a4501f290594e5": { - "_id": "5c3df7d588a4501f290594e5", - "_name": "patron_9x19_GT", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_9x19_PST_gzh", - "ShortName": "patron_9x19_PST_gzh", - "Description": "patron_9x19_PST_gzh", - "Weight": 0.006, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x19_gt.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 15, - "StackMaxRandom": 40, - "ammoType": "bullet", - "InitialSpeed": 365, - "BallisticCoeficient": 0.105, - "BulletMassGram": 6, - "BulletDiameterMilimeters": 9, - "Damage": 58, - "ammoAccr": -5, - "ammoRec": -6, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 14, - "PenetrationPowerDiviation": 0.8, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.03, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "9x18 мм ПМ ПС гс ППО", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.2, - "RicochetChance": 0.05, - "FragmentationChance": 0.15, - "Deterioration": 1, - "SpeedRetardation": 0.0001, - "Tracer": true, - "TracerColor": "tracerGreen", - "TracerDistance": 0, - "ArmorDamage": 33, - "Caliber": "Caliber9x19PARA", - "StaminaBurnPerDamage": 0.12672, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.14, - "DurabilityBurnModificator": 1.15, - "HeatFactor": 1.1305, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "54527c774bdc2d3f668b4568" - }, - "58dd3ad986f77403051cba8f": { - "_id": "58dd3ad986f77403051cba8f", - "_name": "patron_762x51_M80", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "default_308", - "ShortName": "default_308", - "Description": "default_308", - "Weight": 0.024, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 40, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x51.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 10, - "StackMaxRandom": 40, - "ammoType": "bullet", - "InitialSpeed": 833, - "BallisticCoeficient": 0.335, - "BulletMassGram": 9.46, - "BulletDiameterMilimeters": 7.85, - "Damage": 80, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 41, - "PenetrationPowerDiviation": 1.44, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": ".308", - "casingEjectPower": 0, - "casingMass": 77.16, - "casingSounds": "rifle762", - "ProjectileCount": 1, - "PenetrationChance": 0.75, - "RicochetChance": 0.38, - "FragmentationChance": 0.17, - "Deterioration": 1, - "SpeedRetardation": 1.5e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 66, - "Caliber": "Caliber762x51", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.3, - "HeatFactor": 2.2568, - "MalfFeedChance": 0.0935, - "RemoveShellAfterFire": false - }, - "_proto": "560d61e84bdc2da74d8b4571" - }, - "5fc382a9d724d907e2077dab": { - "_id": "5fc382a9d724d907e2077dab", - "_name": "patron_86x70_lapua_ap", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "default_308", - "ShortName": "default_308", - "Description": "default_308", - "Weight": 0.049, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 30, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_86x70_lapua_ap.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 2, - "StackMaxRandom": 5, - "ammoType": "bullet", - "InitialSpeed": 849, - "BallisticCoeficient": 0.477, - "BulletMassGram": 16.1, - "BulletDiameterMilimeters": 8.58, - "Damage": 115, - "ammoAccr": 0, - "ammoRec": 10, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 79, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": ".338", - "casingEjectPower": 0, - "casingMass": 77.16, - "casingSounds": "50cal", - "ProjectileCount": 1, - "PenetrationChance": 0.9, - "RicochetChance": 0.3, - "FragmentationChance": 0.13, - "Deterioration": 1, - "SpeedRetardation": 1.5e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 89, - "Caliber": "Caliber86x70", - "StaminaBurnPerDamage": 0.2016, - "HeavyBleedingDelta": 0.55, - "LightBleedingDelta": 0.2, - "ShowBullet": false, - "HasGrenaderComponent": true, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": true, - "ExplosionType": "big_round_impact", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 2.4, - "HeatFactor": 3.26, - "MalfFeedChance": 0.087, - "RemoveShellAfterFire": false - }, - "_proto": "560d61e84bdc2da74d8b4571" - }, - "5a26ac0ec4a28200741e1e18": { - "_id": "5a26ac0ec4a28200741e1e18", - "_name": "patron_9x21_sp13", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_9x21_sp10", - "ShortName": "patron_9x21_sp10", - "Description": "patron_9x21_sp10", - "Weight": 0.023, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x21_sp13.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 2, - "StackMaxRandom": 15, - "ammoType": "bullet", - "InitialSpeed": 410, - "BallisticCoeficient": 0.084, - "BulletMassGram": 6.7, - "BulletDiameterMilimeters": 9, - "Damage": 49, - "ammoAccr": -5, - "ammoRec": 5, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 32, - "PenetrationPowerDiviation": 0.1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 16, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.6, - "RicochetChance": 0.4, - "FragmentationChance": 0.2, - "Deterioration": 1, - "SpeedRetardation": 0, - "Tracer": true, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 42, - "Caliber": "Caliber9x21", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.126, - "DurabilityBurnModificator": 1.4, - "HeatFactor": 1.25, - "MalfFeedChance": 0.082, - "RemoveShellAfterFire": false - }, - "_proto": "57372140245977611f70ee91" - }, - "63b35f281745dd52341e5da7": { - "_id": "63b35f281745dd52341e5da7", - "_name": "shrapnel_F1_new", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "Shrapnel", - "ShortName": "Shrapnel", - "Description": "Осколок гранаты", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 0, - "StackMaxRandom": 0, - "ammoType": "bullet", - "InitialSpeed": 90, - "BallisticCoeficient": 0.013, - "BulletMassGram": 0.09, - "BulletDiameterMilimeters": 7, - "Damage": 40, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 15, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "tracer", - "MisfireChance": 0, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 0, - "casingMass": 0, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.25, - "RicochetChance": 0.3, - "FragmentationChance": 0.1, - "Deterioration": 1, - "SpeedRetardation": 0.0004, - "Tracer": true, - "TracerColor": "tracerYellow", - "TracerDistance": 0.01, - "ArmorDamage": 38, - "Caliber": "Caliber9x18PM", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0.25, - "LightBleedingDelta": 0.1, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5485a8684bdc2da71d8b4567", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "MalfFeedChance": 0, - "RemoveShellAfterFire": false - }, - "_proto": "5943d9c186f7745a13413ac9" - }, - "57371b192459775a9f58a5e0": { - "_id": "57371b192459775a9f58a5e0", - "_name": "patron_9x18pm_PPE_gzh", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_9x18pm_PPE_gzh", - "ShortName": "patron_9x18pm_PPE_gzh", - "Description": "patron_9x18pm_PPE_gzh", - "Weight": 0.009, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x18pm_ppe_gzh.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 2, - "StackMaxRandom": 10, - "ammoType": "bullet", - "InitialSpeed": 297, - "BallisticCoeficient": 0.092, - "BulletMassGram": 7.8, - "BulletDiameterMilimeters": 9.27, - "Damage": 61, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 7, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.08, - "RicochetChance": 0.05, - "FragmentationChance": 0.35, - "Deterioration": 1, - "SpeedRetardation": 7.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 15, - "Caliber": "Caliber9x18PM", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0.15, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.92625, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "57371aab2459775a77142f22" - }, - "5a3c16fe86f77452b62de32a": { - "_id": "5a3c16fe86f77452b62de32a", - "_name": "patron_9x19_luger_cci", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_9x19_luger_cci", - "ShortName": "patron_9x19_luger_cci", - "Description": "patron_9x19_luger_cci", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x19_cci.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 10, - "StackMaxRandom": 20, - "ammoType": "bullet", - "InitialSpeed": 420, - "BallisticCoeficient": 0.131, - "BulletMassGram": 7.46, - "BulletDiameterMilimeters": 9, - "Damage": 70, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 10, - "PenetrationPowerDiviation": 0.136, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.03, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.12, - "RicochetChance": 0.065, - "FragmentationChance": 0.25, - "Deterioration": 1, - "SpeedRetardation": 0.0001, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 38, - "Caliber": "Caliber9x19PARA", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0.2, - "LightBleedingDelta": 0.2, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.14, - "DurabilityBurnModificator": 1.1, - "HeatFactor": 0.952, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "54527c774bdc2d3f668b4568" - }, - "57a0dfb82459774d3078b56c": { - "_id": "57a0dfb82459774d3078b56c", - "_name": "patron_9x39_sp5", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_9x39_sp5", - "ShortName": "patron_9x39_sp5", - "Description": "patron_9x39_sp5", - "Weight": 0.023, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x39_sp5.bundle", + "path": "assets/content/items/ammo/patrons/patron_762x39_fmj.bundle", "rcid": "" }, "UsePrefab": { @@ -422363,40 +424003,40 @@ "StackMinRandom": 10, "StackMaxRandom": 50, "ammoType": "bullet", - "InitialSpeed": 290, - "BallisticCoeficient": 0.353, - "BulletMassGram": 16, - "BulletDiameterMilimeters": 9.25, - "Damage": 71, - "ammoAccr": 0, - "ammoRec": 0, + "InitialSpeed": 775, + "BallisticCoeficient": 0.28, + "BulletMassGram": 7.9, + "BulletDiameterMilimeters": 7.92, + "Damage": 63, + "ammoAccr": 2, + "ammoRec": -2, "ammoDist": 0, "buckshotBullets": 0, - "PenetrationPower": 28, - "PenetrationPowerDiviation": 0.1, + "PenetrationPower": 26, + "PenetrationPowerDiviation": 1, "ammoHear": 0, "ammoSfx": "standart", "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 16, - "casingSounds": "pistol_small", + "casingName": "7.62x39 мм ПС", + "casingEjectPower": 0, + "casingMass": 16.5, + "casingSounds": "rifle762", "ProjectileCount": 1, - "PenetrationChance": 0.6, - "RicochetChance": 0.4, - "FragmentationChance": 0.2, + "PenetrationChance": 0.35, + "RicochetChance": 0.25, + "FragmentationChance": 0.3, "Deterioration": 1, - "SpeedRetardation": 0, + "SpeedRetardation": 1.5e-5, "Tracer": false, "TracerColor": "red", "TracerDistance": 0, - "ArmorDamage": 39, - "Caliber": "Caliber9x39", + "ArmorDamage": 33, + "Caliber": "Caliber762x39", "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0.1, + "HeavyBleedingDelta": 0, "LightBleedingDelta": 0, "ShowBullet": false, "HasGrenaderComponent": false, @@ -422429,555 +424069,11 @@ "LightAndSoundShotSelfContusionTime": 0, "LightAndSoundShotSelfContusionStrength": 0, "MalfMisfireChance": 0.154, - "DurabilityBurnModificator": 1.2, - "HeatFactor": 1.53, - "MalfFeedChance": 0.0923, - "RemoveShellAfterFire": false - }, - "_proto": "57372140245977611f70ee91" - }, - "54527ac44bdc2d36668b4567": { - "_id": "54527ac44bdc2d36668b4567", - "_name": "patron_556x45_M855A1", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_556x45_M855A1", - "ShortName": "patron_556x45_M855A1", - "Description": "patron_556x45_M855A1", - "Weight": 0.012, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_556x45_m855a1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 40, - "ammoType": "bullet", - "InitialSpeed": 945, - "BallisticCoeficient": 0.233, - "BulletMassGram": 4, - "BulletDiameterMilimeters": 5.7, - "Damage": 49, - "ammoAccr": -5, - "ammoRec": 5, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 44, - "PenetrationPowerDiviation": 1.375, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "5.56x45 мм M193 FMJ", - "casingEjectPower": 1, - "casingMass": 11.77, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.55, - "RicochetChance": 0.38, - "FragmentationChance": 0.44, - "Deterioration": 1, - "SpeedRetardation": 2.3e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 47, - "Caliber": "Caliber556x45NATO", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.34, - "HeatFactor": 1.71, - "MalfFeedChance": 0.094, - "RemoveShellAfterFire": false - } - }, - "5cc80f67e4a949035e43bbba": { - "_id": "5cc80f67e4a949035e43bbba", - "_name": "patron_57x28_sb193", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_556x45_M855", - "ShortName": "patron_556x45_M855", - "Description": "patron_556x45_M855", - "Weight": 0.007, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_57x28_sb193.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 2, - "StackMaxRandom": 15, - "ammoType": "bullet", - "InitialSpeed": 299, - "BallisticCoeficient": 0.233, - "BulletMassGram": 4, - "BulletDiameterMilimeters": 5.7, - "Damage": 59, - "ammoAccr": 5, - "ammoRec": -15, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 27, - "PenetrationPowerDiviation": 1, - "ammoHear": -20, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 3, - "ammoShiftChance": 15, - "casingName": "5.56x45 мм M193 Ball", - "casingEjectPower": 1, - "casingMass": 3.9, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.5, - "RicochetChance": 0.3, - "FragmentationChance": 0.35, - "Deterioration": 1, - "SpeedRetardation": 2.3e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 37, - "Caliber": "Caliber57x28", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.14, - "DurabilityBurnModificator": 0.75, - "HeatFactor": 0.936, - "MalfFeedChance": 0.0775, - "RemoveShellAfterFire": false - }, - "_proto": "54527a984bdc2d4e668b4567" - }, - "62330b3ed4dc74626d570b95": { - "_id": "62330b3ed4dc74626d570b95", - "_name": "patron_9x33r_fmj", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_366_custom_ap", - "ShortName": "patron_366_custom_ap", - "Description": "patron_366_custom_ap", - "Weight": 0.016, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 30, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x33r_fmj.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 10, - "StackMaxRandom": 30, - "ammoType": "bullet", - "InitialSpeed": 385, - "BallisticCoeficient": 0.163, - "BulletMassGram": 10.15, - "BulletDiameterMilimeters": 9.12, - "Damage": 70, - "ammoAccr": 0, - "ammoRec": 12, - "ammoDist": 10, - "buckshotBullets": 0, - "PenetrationPower": 35, - "PenetrationPowerDiviation": 0.2, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": ".357 JHP", - "casingEjectPower": 0, - "casingMass": 16.5, - "casingSounds": "pistol_big", - "ProjectileCount": 1, - "PenetrationChance": 0.35, - "RicochetChance": 0.065, - "FragmentationChance": 0.01, - "Deterioration": 1, - "SpeedRetardation": 1.5e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 43, - "Caliber": "Caliber9x33R", - "StaminaBurnPerDamage": 0.42, - "HeavyBleedingDelta": 0.1, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.18, - "DurabilityBurnModificator": 1.5, - "HeatFactor": 2.27, - "MalfFeedChance": 0.102, - "RemoveShellAfterFire": false - }, - "_proto": "5656d7c34bdc2d9d198b4587" - }, - "5996f6fc86f7745e585b4de3": { - "_id": "5996f6fc86f7745e585b4de3", - "_name": "shrapnel_m67", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "Shrapnel", - "ShortName": "Shrapnel", - "Description": "Осколок гранаты", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 0, - "StackMaxRandom": 0, - "ammoType": "bullet", - "InitialSpeed": 100, - "BallisticCoeficient": 0.013, - "BulletMassGram": 0.09, - "BulletDiameterMilimeters": 7, - "Damage": 45, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 12, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "tracer", - "MisfireChance": 0, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 0, - "casingMass": 0, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.1, - "RicochetChance": 0.2, - "FragmentationChance": 0.5, - "Deterioration": 1, - "SpeedRetardation": 0.0004, - "Tracer": true, - "TracerColor": "tracerYellow", - "TracerDistance": 0.01, - "ArmorDamage": 32, - "Caliber": "Caliber9x18PM", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0.2, - "LightBleedingDelta": 0.2, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5485a8684bdc2da71d8b4567", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0, "DurabilityBurnModificator": 1, "HeatFactor": 1, - "MalfFeedChance": 0, + "MalfFeedChance": 0.02, "RemoveShellAfterFire": false - }, - "_proto": "5943d9c186f7745a13413ac9" + } }, "5efb0da7a29a85116f6ea05f": { "_id": "5efb0da7a29a85116f6ea05f", @@ -423794,414 +424890,6 @@ }, "_proto": "54527c774bdc2d3f668b4568" }, - "5ba26835d4351e0035628ff5": { - "_id": "5ba26835d4351e0035628ff5", - "_name": "patron_46x30_ap_sx", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_46x30_FMJ_SX", - "ShortName": "patron_46x30_FMJ_SX", - "Description": "patron_46x30_fmj_sx", - "Weight": 0.007, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 70, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_46x30_ap_sx.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 70, - "ammoType": "bullet", - "InitialSpeed": 680, - "BallisticCoeficient": 0.14, - "BulletMassGram": 1.6, - "BulletDiameterMilimeters": 4.65, - "Damage": 35, - "ammoAccr": 0, - "ammoRec": 10, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 53, - "PenetrationPowerDiviation": 0.1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 16, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.6, - "RicochetChance": 0.6, - "FragmentationChance": 0.1, - "Deterioration": 1, - "SpeedRetardation": 0, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 46, - "Caliber": "Caliber46x30", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.21, - "DurabilityBurnModificator": 1.5, - "HeatFactor": 1.1, - "MalfFeedChance": 0.084, - "RemoveShellAfterFire": false - }, - "_proto": "57372140245977611f70ee91" - }, - "5ba2678ad4351e44f824b344": { - "_id": "5ba2678ad4351e44f824b344", - "_name": "patron_46x30_fmj_sx", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_46x30_FMJ_SX", - "ShortName": "patron_46x30_FMJ_SX", - "Description": "patron_46x30_fmj_sx", - "Weight": 0.007, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 70, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_46x30_fmj_sx.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 70, - "ammoType": "bullet", - "InitialSpeed": 620, - "BallisticCoeficient": 0.228, - "BulletMassGram": 2.6, - "BulletDiameterMilimeters": 4.65, - "Damage": 43, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 40, - "PenetrationPowerDiviation": 0.1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 16, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.4, - "RicochetChance": 0.4, - "FragmentationChance": 0.2, - "Deterioration": 1, - "SpeedRetardation": 0, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 41, - "Caliber": "Caliber46x30", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "57372140245977611f70ee91" - }, - "56dfef82d2720bbd668b4567": { - "_id": "56dfef82d2720bbd668b4567", - "_name": "patron_545x39_BP", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_545x39_BP", - "ShortName": "patron_545x39_BP", - "Description": "patron_545x39_BP", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_545x39_bp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 10, - "StackMaxRandom": 40, - "ammoType": "bullet", - "InitialSpeed": 890, - "BallisticCoeficient": 0.252, - "BulletMassGram": 3.65, - "BulletDiameterMilimeters": 5.62, - "Damage": 46, - "ammoAccr": -3, - "ammoRec": 7, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 45, - "PenetrationPowerDiviation": 1.35, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "5.45x39 мм БП", - "casingEjectPower": 0, - "casingMass": 16.5, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.72, - "RicochetChance": 0.36, - "FragmentationChance": 0.16, - "Deterioration": 1, - "SpeedRetardation": 2.5e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 46, - "Caliber": "Caliber545x39", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.35, - "HeatFactor": 1.593, - "MalfFeedChance": 0.082, - "RemoveShellAfterFire": false - }, - "_proto": "5656d7c34bdc2d9d198b4587" - }, "60194943740c5d77f6705eea": { "_id": "60194943740c5d77f6705eea", "_name": "patron_556x45_mk_318_mod_0", @@ -424746,2862 +425434,6 @@ }, "_proto": "57a0dfb82459774d3078b56c" }, - "57371e4124597760ff7b25f1": { - "_id": "57371e4124597760ff7b25f1", - "_name": "patron_9x18pm_PPT_gzh", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_9x18pm_PPT_gzh", - "ShortName": "patron_9x18pm_PPT_gzh", - "Description": "patron_9x18pm_PPT_gzh", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x18pm_ppt_gzh.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 40, - "ammoType": "bullet", - "InitialSpeed": 301, - "BallisticCoeficient": 0.104, - "BulletMassGram": 6.3, - "BulletDiameterMilimeters": 9.27, - "Damage": 59, - "ammoAccr": -5, - "ammoRec": -7, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 8, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "tracer_red", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 4, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.09, - "RicochetChance": 0.1, - "FragmentationChance": 0.166, - "Deterioration": 1, - "SpeedRetardation": 7.0e-5, - "Tracer": true, - "TracerColor": "red", - "TracerDistance": 0.5, - "ArmorDamage": 22, - "Caliber": "Caliber9x18PM", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0.15, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.15, - "HeatFactor": 1.0317, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "57371b192459775a9f58a5e0" - }, - "62330c40bdd19b369e1e53d1": { - "_id": "62330c40bdd19b369e1e53d1", - "_name": "patron_9x33r_sp", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_366_custom_ap", - "ShortName": "patron_366_custom_ap", - "Description": "patron_366_custom_ap", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 30, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x33r_sp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 10, - "StackMaxRandom": 30, - "ammoType": "bullet", - "InitialSpeed": 455, - "BallisticCoeficient": 0.189, - "BulletMassGram": 10.2, - "BulletDiameterMilimeters": 9.12, - "Damage": 108, - "ammoAccr": 27, - "ammoRec": -29, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 12, - "PenetrationPowerDiviation": 0.2, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 5, - "ammoShiftChance": 0, - "casingName": ".357 SP", - "casingEjectPower": 0, - "casingMass": 16.5, - "casingSounds": "pistol_big", - "ProjectileCount": 1, - "PenetrationChance": 0.2, - "RicochetChance": 0.03, - "FragmentationChance": 0.2, - "Deterioration": 1, - "SpeedRetardation": 1.5e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 15, - "Caliber": "Caliber9x33R", - "StaminaBurnPerDamage": 0.51, - "HeavyBleedingDelta": 0.2, - "LightBleedingDelta": 0.35, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.18, - "DurabilityBurnModificator": 1.3, - "HeatFactor": 1.65, - "MalfFeedChance": 0.102, - "RemoveShellAfterFire": false - }, - "_proto": "5656d7c34bdc2d9d198b4587" - }, - "5996f6d686f77467977ba6cc": { - "_id": "5996f6d686f77467977ba6cc", - "_name": "shrapnel_F1", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "Shrapnel", - "ShortName": "Shrapnel", - "Description": "Осколок гранаты", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 0, - "StackMaxRandom": 0, - "ammoType": "bullet", - "InitialSpeed": 90, - "BallisticCoeficient": 0.013, - "BulletMassGram": 0.09, - "BulletDiameterMilimeters": 7, - "Damage": 440, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 101, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "tracer", - "MisfireChance": 0, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 0, - "casingMass": 0, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 2, - "RicochetChance": 0.01, - "FragmentationChance": 0.5, - "Deterioration": 0.3, - "SpeedRetardation": 0.0004, - "Tracer": true, - "TracerColor": "tracerYellow", - "TracerDistance": 0.01, - "ArmorDamage": 100, - "Caliber": "Caliber9x18PM", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0.25, - "LightBleedingDelta": 0.1, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5485a8684bdc2da71d8b4567", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "MalfFeedChance": 0, - "RemoveShellAfterFire": false - }, - "_proto": "5943d9c186f7745a13413ac9" - }, - "624c0570c9b794431568f5d5": { - "_id": "624c0570c9b794431568f5d5", - "_name": "patron_rsp_green", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_rsp_green_cap_dont_use", - "ShortName": "patron_rsp_green_cap_dont_use", - "Description": "patron_rsp_green_cap_dont_use", - "Weight": 0.063, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_rsp_green.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 3, - "StackMaxRandom": 15, - "ammoType": "bullet", - "InitialSpeed": 80, - "BallisticCoeficient": 0.5, - "BulletMassGram": 20, - "BulletDiameterMilimeters": 12, - "Damage": 40, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 0, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "tracer", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 1, - "ammoShiftChance": 0, - "casingName": "5.45x39 мм ПС", - "casingEjectPower": 0, - "casingMass": 25, - "casingSounds": "shotgun_big", - "ProjectileCount": 1, - "PenetrationChance": 0, - "RicochetChance": 1, - "FragmentationChance": 0, - "Deterioration": 1, - "SpeedRetardation": 0, - "Tracer": true, - "TracerColor": "yellow", - "TracerDistance": 0.08, - "ArmorDamage": 60, - "Caliber": "Caliber26x75", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "MalfFeedChance": 0, - "RemoveShellAfterFire": false - }, - "_proto": "56dff338d2720bbd668b4569" - }, - "5e023e53d4353e3302577c4c": { - "_id": "5e023e53d4353e3302577c4c", - "_name": "patron_762x51_bpz_fmj", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "default_308", - "ShortName": "default_308", - "Description": "default_308", - "Weight": 0.022, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 40, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x51_bpz_fmj.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 10, - "StackMaxRandom": 40, - "ammoType": "bullet", - "InitialSpeed": 840, - "BallisticCoeficient": 0.402, - "BulletMassGram": 11.34, - "BulletDiameterMilimeters": 7.85, - "Damage": 83, - "ammoAccr": -7, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 35, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": ".308", - "casingEjectPower": 0, - "casingMass": 77.16, - "casingSounds": "rifle762", - "ProjectileCount": 1, - "PenetrationChance": 0.5, - "RicochetChance": 0.4, - "FragmentationChance": 0.2, - "Deterioration": 1, - "SpeedRetardation": 1.5e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 42, - "Caliber": "Caliber762x51", - "StaminaBurnPerDamage": 0.22, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.168, - "DurabilityBurnModificator": 1.18, - "HeatFactor": 2.1328, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "560d61e84bdc2da74d8b4571" - }, - "573720e02459776143012541": { - "_id": "573720e02459776143012541", - "_name": "patron_9x18pm_RG028_gzh", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_9x18pm_RG028_gzh", - "ShortName": "patron_9x18pm_RG028_gzh", - "Description": "patron_9x18pm_RG028_gzh", - "Weight": 0.011, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x18pm_rg028_gzh.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 2, - "StackMaxRandom": 10, - "ammoType": "bullet", - "InitialSpeed": 330, - "BallisticCoeficient": 0.106, - "BulletMassGram": 6.4, - "BulletDiameterMilimeters": 9.27, - "Damage": 65, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 13, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.1, - "RicochetChance": 0.05, - "FragmentationChance": 0.02, - "Deterioration": 1, - "SpeedRetardation": 7.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 26, - "Caliber": "Caliber9x18PM", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.9234, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "5737207f24597760ff7b25f2" - }, - "59e4d3d286f774176a36250a": { - "_id": "59e4d3d286f774176a36250a", - "_name": "patron_762x39_HP", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_762x39_HP", - "ShortName": "patron_762x39_HP", - "Description": "patron_762x39_HP", - "Weight": 0.012, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x39_hp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 10, - "StackMaxRandom": 50, - "ammoType": "bullet", - "InitialSpeed": 754, - "BallisticCoeficient": 0.278, - "BulletMassGram": 8, - "BulletDiameterMilimeters": 7.92, - "Damage": 87, - "ammoAccr": -5, - "ammoRec": 5, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 15, - "PenetrationPowerDiviation": 0.72, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "7.62x39 мм ПС", - "casingEjectPower": 0, - "casingMass": 16.5, - "casingSounds": "rifle762", - "ProjectileCount": 1, - "PenetrationChance": 0.26, - "RicochetChance": 0.175, - "FragmentationChance": 0.4, - "Deterioration": 1, - "SpeedRetardation": 1.5e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 20, - "Caliber": "Caliber762x39", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0.15, - "LightBleedingDelta": 0.15, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.14, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.925, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "5656d7c34bdc2d9d198b4587" - }, - "624c09e49b98e019a3315b66": { - "_id": "624c09e49b98e019a3315b66", - "_name": "patron_rsp_yellow", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_rsp_yellow_cap_dont_use", - "ShortName": "patron_rsp_yellow_cap_dont_use", - "Description": "patron_rsp_yellow_cap_dont_use", - "Weight": 0.063, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_rsp_yellow.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 3, - "StackMaxRandom": 15, - "ammoType": "bullet", - "InitialSpeed": 80, - "BallisticCoeficient": 0.5, - "BulletMassGram": 20, - "BulletDiameterMilimeters": 12, - "Damage": 40, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 0, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "tracer", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 1, - "ammoShiftChance": 0, - "casingName": "5.45x39 мм ПС", - "casingEjectPower": 0, - "casingMass": 25, - "casingSounds": "shotgun_big", - "ProjectileCount": 1, - "PenetrationChance": 0, - "RicochetChance": 1, - "FragmentationChance": 0, - "Deterioration": 1, - "SpeedRetardation": 0, - "Tracer": true, - "TracerColor": "yellow", - "TracerDistance": 0.08, - "ArmorDamage": 60, - "Caliber": "Caliber26x75", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "MalfFeedChance": 0, - "RemoveShellAfterFire": false - }, - "_proto": "56dff338d2720bbd668b4569" - }, - "57371aab2459775a77142f22": { - "_id": "57371aab2459775a77142f22", - "_name": "patron_9x18pm_PMM", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_9x18pm_PMM", - "ShortName": "patron_9x18pm_PMM", - "Description": "patron_9x18pm_PMM", - "Weight": 0.009, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x18pm_pmm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 15, - "StackMaxRandom": 40, - "ammoType": "bullet", - "InitialSpeed": 420, - "BallisticCoeficient": 0.096, - "BulletMassGram": 5.8, - "BulletDiameterMilimeters": 9.27, - "Damage": 58, - "ammoAccr": 0, - "ammoRec": 5, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 24, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.11, - "RicochetChance": 0.075, - "FragmentationChance": 0.17, - "Deterioration": 1, - "SpeedRetardation": 7.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 33, - "Caliber": "Caliber9x18PM", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.21, - "DurabilityBurnModificator": 1.6, - "HeatFactor": 1.083, - "MalfFeedChance": 0.088, - "RemoveShellAfterFire": false - }, - "_proto": "573719df2459775a626ccbc2" - }, - "59e77a2386f7742ee578960a": { - "_id": "59e77a2386f7742ee578960a", - "_name": "patron_762х54R_7N1", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_762х54R_7N1", - "ShortName": "patron_762х54R_7N1", - "Description": "patron_762х54R_7N1", - "Weight": 0.024, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 40, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x54r_7n1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 8, - "StackMaxRandom": 30, - "ammoType": "bullet", - "InitialSpeed": 875, - "BallisticCoeficient": 0.342, - "BulletMassGram": 9.8, - "BulletDiameterMilimeters": 7.92, - "Damage": 84, - "ammoAccr": 10, - "ammoRec": 8, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 45, - "PenetrationPowerDiviation": 0.4, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "Обычный 7.62х54R СНБ", - "casingEjectPower": 0, - "casingMass": 77.16, - "casingSounds": "rifle762", - "ProjectileCount": 1, - "PenetrationChance": 0.77, - "RicochetChance": 0.285, - "FragmentationChance": 0.083, - "Deterioration": 1, - "SpeedRetardation": 1.5e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 84, - "Caliber": "Caliber762x54R", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.15, - "HeatFactor": 2.1845, - "MalfFeedChance": 0.082, - "RemoveShellAfterFire": false - }, - "_proto": "560d61e84bdc2da74d8b4571" - }, - "5735fdcd2459776445391d61": { - "_id": "5735fdcd2459776445391d61", - "_name": "patron_762x25tt_akbs", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_762x25tt_akbs", - "ShortName": "patron_762x25tt_akbs", - "Description": "patron_762x25tt_akbs", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x25tt_akbs.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 20, - "ammoType": "bullet", - "InitialSpeed": 425, - "BallisticCoeficient": 0.127, - "BulletMassGram": 5.5, - "BulletDiameterMilimeters": 7.85, - "Damage": 58, - "ammoAccr": 15, - "ammoRec": -15, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 12, - "PenetrationPowerDiviation": 0.06, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.03, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "rifle762", - "ProjectileCount": 1, - "PenetrationChance": 0.17, - "RicochetChance": 0.065, - "FragmentationChance": 0.25, - "Deterioration": 1, - "SpeedRetardation": 5.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 32, - "Caliber": "Caliber762x25TT", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.196, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.944, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "54527c774bdc2d3f668b4568" - }, - "59e6906286f7746c9f75e847": { - "_id": "59e6906286f7746c9f75e847", - "_name": "patron_556x45_M856A1", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_556x45_M856A1", - "ShortName": "patron_556x45_M856A1", - "Description": "patron_556x45_M856A1", - "Weight": 0.012, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_556x45_m856a1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 60, - "ammoType": "bullet", - "InitialSpeed": 940, - "BallisticCoeficient": 0.269, - "BulletMassGram": 4, - "BulletDiameterMilimeters": 5.7, - "Damage": 52, - "ammoAccr": -4, - "ammoRec": 4, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 38, - "PenetrationPowerDiviation": 0.575, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "5.56x45 мм M193 FMJ", - "casingEjectPower": 1, - "casingMass": 11.77, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.55, - "RicochetChance": 0.38, - "FragmentationChance": 0.428, - "Deterioration": 1, - "SpeedRetardation": 2.3e-5, - "Tracer": true, - "TracerColor": "red", - "TracerDistance": 0.5, - "ArmorDamage": 44, - "Caliber": "Caliber556x45NATO", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.1834, - "DurabilityBurnModificator": 1.2, - "HeatFactor": 1.653, - "MalfFeedChance": 0.081, - "RemoveShellAfterFire": false - }, - "_proto": "54527ac44bdc2d36668b4567" - }, - "5cc80f38e4a949001152b560": { - "_id": "5cc80f38e4a949001152b560", - "_name": "patron_57x28_ss190", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_556x45_M855", - "ShortName": "patron_556x45_M855", - "Description": "patron_556x45_M855", - "Weight": 0.006, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_57x28_ss190.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 2, - "StackMaxRandom": 15, - "ammoType": "bullet", - "InitialSpeed": 715, - "BallisticCoeficient": 0.233, - "BulletMassGram": 4, - "BulletDiameterMilimeters": 5.7, - "Damage": 49, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 37, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 3, - "ammoShiftChance": 15, - "casingName": "patron_57x28_ss190", - "casingEjectPower": 1, - "casingMass": 3.9, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.5, - "RicochetChance": 0.6, - "FragmentationChance": 0.2, - "Deterioration": 1, - "SpeedRetardation": 2.3e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 43, - "Caliber": "Caliber57x28", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.2, - "HeatFactor": 1.17, - "MalfFeedChance": 0.0935, - "RemoveShellAfterFire": false - }, - "_proto": "54527a984bdc2d4e668b4567" - }, - "5c925fa22e221601da359b7b": { - "_id": "5c925fa22e221601da359b7b", - "_name": "patron_9x19_ap_63", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_9x19_ap_63", - "ShortName": "patron_9x19_ap_63", - "Description": "patron_9x19_ap_63", - "Weight": 0.009, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x19_ap_63.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 15, - "StackMaxRandom": 40, - "ammoType": "bullet", - "InitialSpeed": 392, - "BallisticCoeficient": 0.121, - "BulletMassGram": 5.18, - "BulletDiameterMilimeters": 9, - "Damage": 52, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 30, - "PenetrationPowerDiviation": 0.8, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.03, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "9x18 мм ПМ ПС гс ППО", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.4, - "RicochetChance": 0.2, - "FragmentationChance": 0.05, - "Deterioration": 1, - "SpeedRetardation": 0.0001, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 48, - "Caliber": "Caliber9x19PARA", - "StaminaBurnPerDamage": 0.13824, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.196, - "DurabilityBurnModificator": 1.35, - "HeatFactor": 1.13645, - "MalfFeedChance": 0.086, - "RemoveShellAfterFire": false - }, - "_proto": "54527c774bdc2d3f668b4568" - }, - "5fc275cf85fd526b824a571a": { - "_id": "5fc275cf85fd526b824a571a", - "_name": "patron_86x70_lapua_magnum", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_86x70_lapua_magnum", - "ShortName": "patron_86x70_lapua_magnum", - "Description": "patron_86x70_lapua_magnum", - "Weight": 0.047, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 30, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_86x70_lapua_magnum.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 2, - "StackMaxRandom": 8, - "ammoType": "bullet", - "InitialSpeed": 900, - "BallisticCoeficient": 0.48, - "BulletMassGram": 16.2, - "BulletDiameterMilimeters": 8.58, - "Damage": 122, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 47, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": ".338", - "casingEjectPower": 0, - "casingMass": 77.16, - "casingSounds": "50cal", - "ProjectileCount": 1, - "PenetrationChance": 0.7, - "RicochetChance": 0.4, - "FragmentationChance": 0.2, - "Deterioration": 1, - "SpeedRetardation": 1.1e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 83, - "Caliber": "Caliber86x70", - "StaminaBurnPerDamage": 0.2304, - "HeavyBleedingDelta": 0.5, - "LightBleedingDelta": 0.35, - "ShowBullet": false, - "HasGrenaderComponent": true, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": true, - "ExplosionType": "big_round_impact", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.8, - "HeatFactor": 3.097, - "MalfFeedChance": 0.091, - "RemoveShellAfterFire": false - }, - "_proto": "560d61e84bdc2da74d8b4571" - }, - "6576f96220d53a5b8f3e395e": { - "_id": "6576f96220d53a5b8f3e395e", - "_name": "patron_9x39_fmj", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_9x39_sp6", - "ShortName": "patron_9x39_sp6", - "Description": "patron_9x39_sp6", - "Weight": 0.023, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x39_fmj.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 10, - "StackMaxRandom": 25, - "ammoType": "bullet", - "InitialSpeed": 330, - "BallisticCoeficient": 0.343, - "BulletMassGram": 15.5, - "BulletDiameterMilimeters": 9.25, - "Damage": 75, - "ammoAccr": 5, - "ammoRec": -5, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 17, - "PenetrationPowerDiviation": 0.1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 16, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.75, - "RicochetChance": 0.4, - "FragmentationChance": 0.3, - "Deterioration": 1, - "SpeedRetardation": 0, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 28, - "Caliber": "Caliber9x39", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.196, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.24, - "MalfFeedChance": 0.0871, - "RemoveShellAfterFire": false - }, - "_proto": "57a0dfb82459774d3078b56c" - }, - "5737201124597760fc4431f1": { - "_id": "5737201124597760fc4431f1", - "_name": "patron_9x18pm_PST_gzh", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_9x18pm_PST_gzh", - "ShortName": "patron_9x18pm_PST_gzh", - "Description": "patron_9x18pm_PST_gzh", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x18pm_pst_gzh.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 2, - "StackMaxRandom": 10, - "ammoType": "bullet", - "InitialSpeed": 298, - "BallisticCoeficient": 0.097, - "BulletMassGram": 5.9, - "BulletDiameterMilimeters": 9.27, - "Damage": 50, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 12, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.02, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.1, - "RicochetChance": 0.1, - "FragmentationChance": 0.2, - "Deterioration": 1, - "SpeedRetardation": 7.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 26, - "Caliber": "Caliber9x18PM", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.15, - "HeatFactor": 1.0374, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "57371f8d24597761006c6a81" - }, - "57372140245977611f70ee91": { - "_id": "57372140245977611f70ee91", - "_name": "patron_9x18pm_SP7_gzh", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_9x18pm_SP7_gzh", - "ShortName": "patron_9x18pm_SP7_gzh", - "Description": "patron_9x18pm_SP7_gzh", - "Weight": 0.011, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x18pm_sp7_gzh.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 15, - "StackMaxRandom": 40, - "ammoType": "bullet", - "InitialSpeed": 420, - "BallisticCoeficient": 0.069, - "BulletMassGram": 4.2, - "BulletDiameterMilimeters": 9.27, - "Damage": 77, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 2, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.1, - "RicochetChance": 0.05, - "FragmentationChance": 0.02, - "Deterioration": 1, - "SpeedRetardation": 7.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 5, - "Caliber": "Caliber9x18PM", - "StaminaBurnPerDamage": 0.19584, - "HeavyBleedingDelta": 0.1, - "LightBleedingDelta": 0.25, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.14, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.9348, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false - }, - "_proto": "573720e02459776143012541" - }, - "624c09cfbc2e27219346d955": { - "_id": "624c09cfbc2e27219346d955", - "_name": "patron_rsp_red", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_rsp_red_cap_dont_use", - "ShortName": "patron_rsp_red_cap_dont_use", - "Description": "patron_rsp_red_cap_dont_use", - "Weight": 0.063, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_rsp_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 3, - "StackMaxRandom": 15, - "ammoType": "bullet", - "InitialSpeed": 80, - "BallisticCoeficient": 0.5, - "BulletMassGram": 20, - "BulletDiameterMilimeters": 12, - "Damage": 40, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 0, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "tracer", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 1, - "ammoShiftChance": 0, - "casingName": "5.45x39 мм ПС", - "casingEjectPower": 0, - "casingMass": 25, - "casingSounds": "shotgun_big", - "ProjectileCount": 1, - "PenetrationChance": 0, - "RicochetChance": 1, - "FragmentationChance": 0, - "Deterioration": 1, - "SpeedRetardation": 0, - "Tracer": true, - "TracerColor": "yellow", - "TracerDistance": 0.08, - "ArmorDamage": 60, - "Caliber": "Caliber26x75", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "MalfFeedChance": 0, - "RemoveShellAfterFire": false - }, - "_proto": "56dff338d2720bbd668b4569" - }, - "57a0e5022459774d1673f889": { - "_id": "57a0e5022459774d1673f889", - "_name": "patron_9x39_sp6", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_9x39_sp6", - "ShortName": "patron_9x39_sp6", - "Description": "patron_9x39_sp6", - "Weight": 0.023, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_9x39_sp6.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 10, - "StackMaxRandom": 50, - "ammoType": "bullet", - "InitialSpeed": 305, - "BallisticCoeficient": 0.414, - "BulletMassGram": 16.2, - "BulletDiameterMilimeters": 9.26, - "Damage": 60, - "ammoAccr": 0, - "ammoRec": 5, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 48, - "PenetrationPowerDiviation": 0.1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 16, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0.7, - "RicochetChance": 0.5, - "FragmentationChance": 0.1, - "Deterioration": 1, - "SpeedRetardation": 0, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 64, - "Caliber": "Caliber9x39", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0.1, - "LightBleedingDelta": 0.1, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.168, - "DurabilityBurnModificator": 1.45, - "HeatFactor": 1.61, - "MalfFeedChance": 0.0903, - "RemoveShellAfterFire": false - }, - "_proto": "57a0dfb82459774d3078b56c" - }, - "56dff216d2720bbd668b4568": { - "_id": "56dff216d2720bbd668b4568", - "_name": "patron_545x39_HP", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_545x39_HP", - "ShortName": "patron_545x39_HP", - "Description": "patron_545x39_HP", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_545x39_hp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 60, - "ammoType": "bullet", - "InitialSpeed": 884, - "BallisticCoeficient": 0.246, - "BulletMassGram": 3.56, - "BulletDiameterMilimeters": 5.62, - "Damage": 76, - "ammoAccr": 3, - "ammoRec": -3, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 9, - "PenetrationPowerDiviation": 0.64, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.02, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 4, - "ammoShiftChance": 0, - "casingName": "5.45x39 мм HP", - "casingEjectPower": 0, - "casingMass": 16.5, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.48, - "RicochetChance": 0.2, - "FragmentationChance": 0.35, - "Deterioration": 1, - "SpeedRetardation": 2.5e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 15, - "Caliber": "Caliber545x39", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0.15, - "LightBleedingDelta": 0.15, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.14, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.416, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "56dff0bed2720bb0668b4567" - }, "5c0d5ae286f7741e46554302": { "_id": "5c0d5ae286f7741e46554302", "_name": "patron_556x45_varmageddon", @@ -428690,23 +426522,839 @@ }, "_proto": "5656d7c34bdc2d9d198b4587" }, - "5a608bf24f39f98ffc77720e": { - "_id": "5a608bf24f39f98ffc77720e", - "_name": "patron_762x51_M62", + "59e6906286f7746c9f75e847": { + "_id": "59e6906286f7746c9f75e847", + "_name": "patron_556x45_M856A1", "_parent": "5485a8684bdc2da71d8b4567", "_type": "Item", "_props": { - "Name": "default_308", - "ShortName": "default_308", - "Description": "default_308", - "Weight": 0.024, + "Name": "patron_556x45_M856A1", + "ShortName": "patron_556x45_M856A1", + "Description": "patron_556x45_M856A1", + "Weight": 0.012, "BackgroundColor": "yellow", "Width": 1, "Height": 1, - "StackMaxSize": 40, + "StackMaxSize": 60, "ItemSound": "ammo_singleround", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x51_m62.bundle", + "path": "assets/content/items/ammo/patrons/patron_556x45_m856a1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 60, + "ammoType": "bullet", + "InitialSpeed": 940, + "BallisticCoeficient": 0.269, + "BulletMassGram": 4, + "BulletDiameterMilimeters": 5.7, + "Damage": 52, + "ammoAccr": -4, + "ammoRec": 4, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 38, + "PenetrationPowerDiviation": 0.575, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "5.56x45 мм M193 FMJ", + "casingEjectPower": 1, + "casingMass": 11.77, + "casingSounds": "rifle556", + "ProjectileCount": 1, + "PenetrationChance": 0.55, + "RicochetChance": 0.38, + "FragmentationChance": 0.428, + "Deterioration": 1, + "SpeedRetardation": 2.3e-5, + "Tracer": true, + "TracerColor": "red", + "TracerDistance": 0.5, + "ArmorDamage": 44, + "Caliber": "Caliber556x45NATO", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.1834, + "DurabilityBurnModificator": 1.2, + "HeatFactor": 1.653, + "MalfFeedChance": 0.081, + "RemoveShellAfterFire": false + }, + "_proto": "54527ac44bdc2d36668b4567" + }, + "5cc80f38e4a949001152b560": { + "_id": "5cc80f38e4a949001152b560", + "_name": "patron_57x28_ss190", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_556x45_M855", + "ShortName": "patron_556x45_M855", + "Description": "patron_556x45_M855", + "Weight": 0.006, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_57x28_ss190.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 2, + "StackMaxRandom": 15, + "ammoType": "bullet", + "InitialSpeed": 715, + "BallisticCoeficient": 0.233, + "BulletMassGram": 4, + "BulletDiameterMilimeters": 5.7, + "Damage": 49, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 37, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 3, + "ammoShiftChance": 15, + "casingName": "patron_57x28_ss190", + "casingEjectPower": 1, + "casingMass": 3.9, + "casingSounds": "rifle556", + "ProjectileCount": 1, + "PenetrationChance": 0.5, + "RicochetChance": 0.6, + "FragmentationChance": 0.2, + "Deterioration": 1, + "SpeedRetardation": 2.3e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 43, + "Caliber": "Caliber57x28", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1.2, + "HeatFactor": 1.17, + "MalfFeedChance": 0.0935, + "RemoveShellAfterFire": false + }, + "_proto": "54527a984bdc2d4e668b4567" + }, + "5c925fa22e221601da359b7b": { + "_id": "5c925fa22e221601da359b7b", + "_name": "patron_9x19_ap_63", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_9x19_ap_63", + "ShortName": "patron_9x19_ap_63", + "Description": "patron_9x19_ap_63", + "Weight": 0.009, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x19_ap_63.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 15, + "StackMaxRandom": 40, + "ammoType": "bullet", + "InitialSpeed": 392, + "BallisticCoeficient": 0.121, + "BulletMassGram": 5.18, + "BulletDiameterMilimeters": 9, + "Damage": 52, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 30, + "PenetrationPowerDiviation": 0.8, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.03, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "9x18 мм ПМ ПС гс ППО", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.4, + "RicochetChance": 0.2, + "FragmentationChance": 0.05, + "Deterioration": 1, + "SpeedRetardation": 0.0001, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 48, + "Caliber": "Caliber9x19PARA", + "StaminaBurnPerDamage": 0.13824, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.196, + "DurabilityBurnModificator": 1.35, + "HeatFactor": 1.13645, + "MalfFeedChance": 0.086, + "RemoveShellAfterFire": false + }, + "_proto": "54527c774bdc2d3f668b4568" + }, + "5fc275cf85fd526b824a571a": { + "_id": "5fc275cf85fd526b824a571a", + "_name": "patron_86x70_lapua_magnum", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_86x70_lapua_magnum", + "ShortName": "patron_86x70_lapua_magnum", + "Description": "patron_86x70_lapua_magnum", + "Weight": 0.047, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 30, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_86x70_lapua_magnum.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 2, + "StackMaxRandom": 8, + "ammoType": "bullet", + "InitialSpeed": 900, + "BallisticCoeficient": 0.48, + "BulletMassGram": 16.2, + "BulletDiameterMilimeters": 8.58, + "Damage": 122, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 47, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": ".338", + "casingEjectPower": 0, + "casingMass": 77.16, + "casingSounds": "50cal", + "ProjectileCount": 1, + "PenetrationChance": 0.7, + "RicochetChance": 0.4, + "FragmentationChance": 0.2, + "Deterioration": 1, + "SpeedRetardation": 1.1e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 83, + "Caliber": "Caliber86x70", + "StaminaBurnPerDamage": 0.2304, + "HeavyBleedingDelta": 0.5, + "LightBleedingDelta": 0.35, + "ShowBullet": false, + "HasGrenaderComponent": true, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": true, + "ExplosionType": "big_round_impact", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1.8, + "HeatFactor": 3.097, + "MalfFeedChance": 0.091, + "RemoveShellAfterFire": false + }, + "_proto": "560d61e84bdc2da74d8b4571" + }, + "6576f96220d53a5b8f3e395e": { + "_id": "6576f96220d53a5b8f3e395e", + "_name": "patron_9x39_fmj", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_9x39_sp6", + "ShortName": "patron_9x39_sp6", + "Description": "patron_9x39_sp6", + "Weight": 0.023, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x39_fmj.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 10, + "StackMaxRandom": 25, + "ammoType": "bullet", + "InitialSpeed": 330, + "BallisticCoeficient": 0.343, + "BulletMassGram": 15.5, + "BulletDiameterMilimeters": 9.25, + "Damage": 75, + "ammoAccr": 5, + "ammoRec": -5, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 17, + "PenetrationPowerDiviation": 0.1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 16, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.75, + "RicochetChance": 0.4, + "FragmentationChance": 0.3, + "Deterioration": 1, + "SpeedRetardation": 0, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 28, + "Caliber": "Caliber9x39", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.196, + "DurabilityBurnModificator": 1, + "HeatFactor": 1.24, + "MalfFeedChance": 0.0871, + "RemoveShellAfterFire": false + }, + "_proto": "57a0dfb82459774d3078b56c" + }, + "624c09cfbc2e27219346d955": { + "_id": "624c09cfbc2e27219346d955", + "_name": "patron_rsp_red", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_rsp_red_cap_dont_use", + "ShortName": "patron_rsp_red_cap_dont_use", + "Description": "patron_rsp_red_cap_dont_use", + "Weight": 0.063, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_rsp_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 3, + "StackMaxRandom": 15, + "ammoType": "bullet", + "InitialSpeed": 80, + "BallisticCoeficient": 0.5, + "BulletMassGram": 20, + "BulletDiameterMilimeters": 12, + "Damage": 40, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 0, + "PenetrationPowerDiviation": 0, + "ammoHear": 0, + "ammoSfx": "tracer", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 1, + "ammoShiftChance": 0, + "casingName": "5.45x39 мм ПС", + "casingEjectPower": 0, + "casingMass": 25, + "casingSounds": "shotgun_big", + "ProjectileCount": 1, + "PenetrationChance": 0, + "RicochetChance": 1, + "FragmentationChance": 0, + "Deterioration": 1, + "SpeedRetardation": 0, + "Tracer": true, + "TracerColor": "yellow", + "TracerDistance": 0.08, + "ArmorDamage": 60, + "Caliber": "Caliber26x75", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "MalfFeedChance": 0, + "RemoveShellAfterFire": false + }, + "_proto": "56dff338d2720bbd668b4569" + }, + "57a0e5022459774d1673f889": { + "_id": "57a0e5022459774d1673f889", + "_name": "patron_9x39_sp6", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_9x39_sp6", + "ShortName": "patron_9x39_sp6", + "Description": "patron_9x39_sp6", + "Weight": 0.023, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x39_sp6.bundle", "rcid": "" }, "UsePrefab": { @@ -428751,40 +427399,176 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "StackMinRandom": 10, - "StackMaxRandom": 40, + "StackMaxRandom": 50, "ammoType": "bullet", - "InitialSpeed": 816, - "BallisticCoeficient": 0.326, - "BulletMassGram": 9.2, - "BulletDiameterMilimeters": 7.85, - "Damage": 79, - "ammoAccr": -6, - "ammoRec": -1, + "InitialSpeed": 305, + "BallisticCoeficient": 0.414, + "BulletMassGram": 16.2, + "BulletDiameterMilimeters": 9.26, + "Damage": 60, + "ammoAccr": 0, + "ammoRec": 5, "ammoDist": 0, "buckshotBullets": 0, - "PenetrationPower": 44, - "PenetrationPowerDiviation": 1.2, + "PenetrationPower": 48, + "PenetrationPowerDiviation": 0.1, "ammoHear": 0, "ammoSfx": "standart", "MisfireChance": 0.01, "MinFragmentsCount": 1, - "MaxFragmentsCount": 1, + "MaxFragmentsCount": 2, "ammoShiftChance": 0, - "casingName": ".308", - "casingEjectPower": 0, - "casingMass": 77.16, - "casingSounds": "rifle762", + "casingName": "", + "casingEjectPower": 1, + "casingMass": 16, + "casingSounds": "pistol_small", "ProjectileCount": 1, - "PenetrationChance": 0.67, - "RicochetChance": 0.38, - "FragmentationChance": 0.14, + "PenetrationChance": 0.7, + "RicochetChance": 0.5, + "FragmentationChance": 0.1, "Deterioration": 1, - "SpeedRetardation": 1.5e-5, - "Tracer": true, - "TracerColor": "green", + "SpeedRetardation": 0, + "Tracer": false, + "TracerColor": "red", "TracerDistance": 0, - "ArmorDamage": 75, - "Caliber": "Caliber762x51", + "ArmorDamage": 64, + "Caliber": "Caliber9x39", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0.1, + "LightBleedingDelta": 0.1, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.168, + "DurabilityBurnModificator": 1.45, + "HeatFactor": 1.61, + "MalfFeedChance": 0.0903, + "RemoveShellAfterFire": false + }, + "_proto": "57a0dfb82459774d3078b56c" + }, + "59e4cf5286f7741778269d8a": { + "_id": "59e4cf5286f7741778269d8a", + "_name": "patron_762x39_T45M", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_762x39_T45M", + "ShortName": "patron_762x39_T45M", + "Description": "patron_762x39_T45M", + "Weight": 0.016, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x39_t45m.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 60, + "ammoType": "bullet", + "InitialSpeed": 720, + "BallisticCoeficient": 0.227, + "BulletMassGram": 7.5, + "BulletDiameterMilimeters": 7.92, + "Damage": 64, + "ammoAccr": -4, + "ammoRec": -6, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 30, + "PenetrationPowerDiviation": 0.27, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 4, + "ammoShiftChance": 0, + "casingName": "7.62x39 мм T45M", + "casingEjectPower": 0, + "casingMass": 16.5, + "casingSounds": "rifle556", + "ProjectileCount": 1, + "PenetrationChance": 0.37, + "RicochetChance": 0.35, + "FragmentationChance": 0.12, + "Deterioration": 1, + "SpeedRetardation": 2.5e-5, + "Tracer": true, + "TracerColor": "red", + "TracerDistance": 0.5, + "ArmorDamage": 46, + "Caliber": "Caliber762x39", "StaminaBurnPerDamage": 0.144, "HeavyBleedingDelta": 0, "LightBleedingDelta": 0, @@ -428819,30 +427603,30 @@ "LightAndSoundShotSelfContusionTime": 0, "LightAndSoundShotSelfContusionStrength": 0, "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.5, - "HeatFactor": 2.232, - "MalfFeedChance": 0.09, + "DurabilityBurnModificator": 1.2, + "HeatFactor": 1.2, + "MalfFeedChance": 0.02, "RemoveShellAfterFire": false }, - "_proto": "560d61e84bdc2da74d8b4571" + "_proto": "56dff338d2720bbd668b4569" }, - "5737292724597765e5728562": { - "_id": "5737292724597765e5728562", - "_name": "item_ammo_box_545x39_120_BP", - "_parent": "543be5cb4bdc2deb348b4568", + "5737201124597760fc4431f1": { + "_id": "5737201124597760fc4431f1", + "_name": "patron_9x18pm_PST_gzh", + "_parent": "5485a8684bdc2da71d8b4567", "_type": "Item", "_props": { - "Name": "ammo_box_545x39_120_BP", - "ShortName": "ammo_box_545x39_120_BP", - "Description": "ammo_box_545x39_120_BP", - "Weight": 0.1, + "Name": "patron_9x18pm_PST_gzh", + "ShortName": "patron_9x18pm_PST_gzh", + "Description": "patron_9x18pm_PST_gzh", + "Weight": 0.01, "BackgroundColor": "yellow", - "Width": 2, + "Width": 1, "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_bp.bundle", + "path": "assets/content/items/ammo/patrons/patron_9x18pm_pst_gzh.bundle", "rcid": "" }, "UsePrefab": { @@ -428861,7 +427645,7 @@ "QuestItem": false, "LootExperience": 0, "ExamineExperience": 10, - "HideEntrails": true, + "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, @@ -428886,29 +427670,1849 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 120, - "StackMaxRandom": 120, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d559a24597745970e7c86", - "_parent": "5737292724597765e5728562", - "_max_count": 120, - "_props": { - "filters": [ - { - "Filter": [ - "56dfef82d2720bbd668b4567" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] + "StackMinRandom": 2, + "StackMaxRandom": 10, + "ammoType": "bullet", + "InitialSpeed": 298, + "BallisticCoeficient": 0.097, + "BulletMassGram": 5.9, + "BulletDiameterMilimeters": 9.27, + "Damage": 50, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 12, + "PenetrationPowerDiviation": 0, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.02, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.1, + "RicochetChance": 0.1, + "FragmentationChance": 0.2, + "Deterioration": 1, + "SpeedRetardation": 7.0e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 26, + "Caliber": "Caliber9x18PM", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1.15, + "HeatFactor": 1.0374, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false }, - "_proto": "573728f324597765e5728561" + "_proto": "57371f8d24597761006c6a81" + }, + "57372140245977611f70ee91": { + "_id": "57372140245977611f70ee91", + "_name": "patron_9x18pm_SP7_gzh", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_9x18pm_SP7_gzh", + "ShortName": "patron_9x18pm_SP7_gzh", + "Description": "patron_9x18pm_SP7_gzh", + "Weight": 0.011, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x18pm_sp7_gzh.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 15, + "StackMaxRandom": 40, + "ammoType": "bullet", + "InitialSpeed": 420, + "BallisticCoeficient": 0.069, + "BulletMassGram": 4.2, + "BulletDiameterMilimeters": 9.27, + "Damage": 77, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 2, + "PenetrationPowerDiviation": 0, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.1, + "RicochetChance": 0.05, + "FragmentationChance": 0.02, + "Deterioration": 1, + "SpeedRetardation": 7.0e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 5, + "Caliber": "Caliber9x18PM", + "StaminaBurnPerDamage": 0.19584, + "HeavyBleedingDelta": 0.1, + "LightBleedingDelta": 0.25, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.14, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.9348, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "573720e02459776143012541" + }, + "57371e4124597760ff7b25f1": { + "_id": "57371e4124597760ff7b25f1", + "_name": "patron_9x18pm_PPT_gzh", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_9x18pm_PPT_gzh", + "ShortName": "patron_9x18pm_PPT_gzh", + "Description": "patron_9x18pm_PPT_gzh", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x18pm_ppt_gzh.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 40, + "ammoType": "bullet", + "InitialSpeed": 301, + "BallisticCoeficient": 0.104, + "BulletMassGram": 6.3, + "BulletDiameterMilimeters": 9.27, + "Damage": 59, + "ammoAccr": -5, + "ammoRec": -7, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 8, + "PenetrationPowerDiviation": 0, + "ammoHear": 0, + "ammoSfx": "tracer_red", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 4, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.09, + "RicochetChance": 0.1, + "FragmentationChance": 0.166, + "Deterioration": 1, + "SpeedRetardation": 7.0e-5, + "Tracer": true, + "TracerColor": "red", + "TracerDistance": 0.5, + "ArmorDamage": 22, + "Caliber": "Caliber9x18PM", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0.15, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1.15, + "HeatFactor": 1.0317, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false + }, + "_proto": "57371b192459775a9f58a5e0" + }, + "62330c40bdd19b369e1e53d1": { + "_id": "62330c40bdd19b369e1e53d1", + "_name": "patron_9x33r_sp", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_366_custom_ap", + "ShortName": "patron_366_custom_ap", + "Description": "patron_366_custom_ap", + "Weight": 0.015, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 30, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x33r_sp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 10, + "StackMaxRandom": 30, + "ammoType": "bullet", + "InitialSpeed": 455, + "BallisticCoeficient": 0.189, + "BulletMassGram": 10.2, + "BulletDiameterMilimeters": 9.12, + "Damage": 108, + "ammoAccr": 27, + "ammoRec": -29, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 12, + "PenetrationPowerDiviation": 0.2, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 5, + "ammoShiftChance": 0, + "casingName": ".357 SP", + "casingEjectPower": 0, + "casingMass": 16.5, + "casingSounds": "pistol_big", + "ProjectileCount": 1, + "PenetrationChance": 0.2, + "RicochetChance": 0.03, + "FragmentationChance": 0.2, + "Deterioration": 1, + "SpeedRetardation": 1.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 15, + "Caliber": "Caliber9x33R", + "StaminaBurnPerDamage": 0.51, + "HeavyBleedingDelta": 0.2, + "LightBleedingDelta": 0.35, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.18, + "DurabilityBurnModificator": 1.3, + "HeatFactor": 1.65, + "MalfFeedChance": 0.102, + "RemoveShellAfterFire": false + }, + "_proto": "5656d7c34bdc2d9d198b4587" + }, + "624c09e49b98e019a3315b66": { + "_id": "624c09e49b98e019a3315b66", + "_name": "patron_rsp_yellow", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_rsp_yellow_cap_dont_use", + "ShortName": "patron_rsp_yellow_cap_dont_use", + "Description": "patron_rsp_yellow_cap_dont_use", + "Weight": 0.063, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_rsp_yellow.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 3, + "StackMaxRandom": 15, + "ammoType": "bullet", + "InitialSpeed": 80, + "BallisticCoeficient": 0.5, + "BulletMassGram": 20, + "BulletDiameterMilimeters": 12, + "Damage": 40, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 0, + "PenetrationPowerDiviation": 0, + "ammoHear": 0, + "ammoSfx": "tracer", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 1, + "ammoShiftChance": 0, + "casingName": "5.45x39 мм ПС", + "casingEjectPower": 0, + "casingMass": 25, + "casingSounds": "shotgun_big", + "ProjectileCount": 1, + "PenetrationChance": 0, + "RicochetChance": 1, + "FragmentationChance": 0, + "Deterioration": 1, + "SpeedRetardation": 0, + "Tracer": true, + "TracerColor": "yellow", + "TracerDistance": 0.08, + "ArmorDamage": 60, + "Caliber": "Caliber26x75", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "MalfFeedChance": 0, + "RemoveShellAfterFire": false + }, + "_proto": "56dff338d2720bbd668b4569" + }, + "5996f6d686f77467977ba6cc": { + "_id": "5996f6d686f77467977ba6cc", + "_name": "shrapnel_F1", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "Shrapnel", + "ShortName": "Shrapnel", + "Description": "Осколок гранаты", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 0, + "StackMaxRandom": 0, + "ammoType": "bullet", + "InitialSpeed": 90, + "BallisticCoeficient": 0.013, + "BulletMassGram": 0.09, + "BulletDiameterMilimeters": 7, + "Damage": 440, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 101, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "tracer", + "MisfireChance": 0, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 0, + "casingMass": 0, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 2, + "RicochetChance": 0.01, + "FragmentationChance": 0.5, + "Deterioration": 0.3, + "SpeedRetardation": 0.0004, + "Tracer": true, + "TracerColor": "tracerYellow", + "TracerDistance": 0.01, + "ArmorDamage": 100, + "Caliber": "Caliber9x18PM", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0.25, + "LightBleedingDelta": 0.1, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5485a8684bdc2da71d8b4567", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "MalfFeedChance": 0, + "RemoveShellAfterFire": false + }, + "_proto": "5943d9c186f7745a13413ac9" + }, + "57371aab2459775a77142f22": { + "_id": "57371aab2459775a77142f22", + "_name": "patron_9x18pm_PMM", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_9x18pm_PMM", + "ShortName": "patron_9x18pm_PMM", + "Description": "patron_9x18pm_PMM", + "Weight": 0.009, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x18pm_pmm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 15, + "StackMaxRandom": 40, + "ammoType": "bullet", + "InitialSpeed": 420, + "BallisticCoeficient": 0.096, + "BulletMassGram": 5.8, + "BulletDiameterMilimeters": 9.27, + "Damage": 58, + "ammoAccr": 0, + "ammoRec": 5, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 24, + "PenetrationPowerDiviation": 0, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.11, + "RicochetChance": 0.075, + "FragmentationChance": 0.17, + "Deterioration": 1, + "SpeedRetardation": 7.0e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 33, + "Caliber": "Caliber9x18PM", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.21, + "DurabilityBurnModificator": 1.6, + "HeatFactor": 1.083, + "MalfFeedChance": 0.088, + "RemoveShellAfterFire": false + }, + "_proto": "573719df2459775a626ccbc2" + }, + "59e77a2386f7742ee578960a": { + "_id": "59e77a2386f7742ee578960a", + "_name": "patron_762х54R_7N1", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_762х54R_7N1", + "ShortName": "patron_762х54R_7N1", + "Description": "patron_762х54R_7N1", + "Weight": 0.024, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 40, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x54r_7n1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 8, + "StackMaxRandom": 30, + "ammoType": "bullet", + "InitialSpeed": 875, + "BallisticCoeficient": 0.342, + "BulletMassGram": 9.8, + "BulletDiameterMilimeters": 7.92, + "Damage": 84, + "ammoAccr": 10, + "ammoRec": 8, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 45, + "PenetrationPowerDiviation": 0.4, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "Обычный 7.62х54R СНБ", + "casingEjectPower": 0, + "casingMass": 77.16, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.77, + "RicochetChance": 0.285, + "FragmentationChance": 0.083, + "Deterioration": 1, + "SpeedRetardation": 1.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 84, + "Caliber": "Caliber762x54R", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1.15, + "HeatFactor": 2.1845, + "MalfFeedChance": 0.082, + "RemoveShellAfterFire": false + }, + "_proto": "560d61e84bdc2da74d8b4571" + }, + "624c0570c9b794431568f5d5": { + "_id": "624c0570c9b794431568f5d5", + "_name": "patron_rsp_green", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_rsp_green_cap_dont_use", + "ShortName": "patron_rsp_green_cap_dont_use", + "Description": "patron_rsp_green_cap_dont_use", + "Weight": 0.063, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_rsp_green.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 3, + "StackMaxRandom": 15, + "ammoType": "bullet", + "InitialSpeed": 80, + "BallisticCoeficient": 0.5, + "BulletMassGram": 20, + "BulletDiameterMilimeters": 12, + "Damage": 40, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 0, + "PenetrationPowerDiviation": 0, + "ammoHear": 0, + "ammoSfx": "tracer", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 1, + "ammoShiftChance": 0, + "casingName": "5.45x39 мм ПС", + "casingEjectPower": 0, + "casingMass": 25, + "casingSounds": "shotgun_big", + "ProjectileCount": 1, + "PenetrationChance": 0, + "RicochetChance": 1, + "FragmentationChance": 0, + "Deterioration": 1, + "SpeedRetardation": 0, + "Tracer": true, + "TracerColor": "yellow", + "TracerDistance": 0.08, + "ArmorDamage": 60, + "Caliber": "Caliber26x75", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0, + "DurabilityBurnModificator": 1, + "HeatFactor": 1, + "MalfFeedChance": 0, + "RemoveShellAfterFire": false + }, + "_proto": "56dff338d2720bbd668b4569" + }, + "5735fdcd2459776445391d61": { + "_id": "5735fdcd2459776445391d61", + "_name": "patron_762x25tt_akbs", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_762x25tt_akbs", + "ShortName": "patron_762x25tt_akbs", + "Description": "patron_762x25tt_akbs", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x25tt_akbs.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 1, + "StackMaxRandom": 20, + "ammoType": "bullet", + "InitialSpeed": 425, + "BallisticCoeficient": 0.127, + "BulletMassGram": 5.5, + "BulletDiameterMilimeters": 7.85, + "Damage": 58, + "ammoAccr": 15, + "ammoRec": -15, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 12, + "PenetrationPowerDiviation": 0.06, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.03, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.17, + "RicochetChance": 0.065, + "FragmentationChance": 0.25, + "Deterioration": 1, + "SpeedRetardation": 5.0e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 32, + "Caliber": "Caliber762x25TT", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.196, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.944, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false + }, + "_proto": "54527c774bdc2d3f668b4568" + }, + "5e023e53d4353e3302577c4c": { + "_id": "5e023e53d4353e3302577c4c", + "_name": "patron_762x51_bpz_fmj", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "default_308", + "ShortName": "default_308", + "Description": "default_308", + "Weight": 0.022, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 40, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x51_bpz_fmj.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 10, + "StackMaxRandom": 40, + "ammoType": "bullet", + "InitialSpeed": 840, + "BallisticCoeficient": 0.402, + "BulletMassGram": 11.34, + "BulletDiameterMilimeters": 7.85, + "Damage": 83, + "ammoAccr": -7, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 35, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": ".308", + "casingEjectPower": 0, + "casingMass": 77.16, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.5, + "RicochetChance": 0.4, + "FragmentationChance": 0.2, + "Deterioration": 1, + "SpeedRetardation": 1.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 42, + "Caliber": "Caliber762x51", + "StaminaBurnPerDamage": 0.22, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.168, + "DurabilityBurnModificator": 1.18, + "HeatFactor": 2.1328, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false + }, + "_proto": "560d61e84bdc2da74d8b4571" + }, + "573720e02459776143012541": { + "_id": "573720e02459776143012541", + "_name": "patron_9x18pm_RG028_gzh", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_9x18pm_RG028_gzh", + "ShortName": "patron_9x18pm_RG028_gzh", + "Description": "patron_9x18pm_RG028_gzh", + "Weight": 0.011, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_9x18pm_rg028_gzh.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 2, + "StackMaxRandom": 10, + "ammoType": "bullet", + "InitialSpeed": 330, + "BallisticCoeficient": 0.106, + "BulletMassGram": 6.4, + "BulletDiameterMilimeters": 9.27, + "Damage": 65, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 13, + "PenetrationPowerDiviation": 0, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "pistol_small", + "ProjectileCount": 1, + "PenetrationChance": 0.1, + "RicochetChance": 0.05, + "FragmentationChance": 0.02, + "Deterioration": 1, + "SpeedRetardation": 7.0e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 26, + "Caliber": "Caliber9x18PM", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.9234, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "5737207f24597760ff7b25f2" + }, + "59e4d3d286f774176a36250a": { + "_id": "59e4d3d286f774176a36250a", + "_name": "patron_762x39_HP", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_762x39_HP", + "ShortName": "patron_762x39_HP", + "Description": "patron_762x39_HP", + "Weight": 0.012, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x39_hp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 10, + "StackMaxRandom": 50, + "ammoType": "bullet", + "InitialSpeed": 754, + "BallisticCoeficient": 0.278, + "BulletMassGram": 8, + "BulletDiameterMilimeters": 7.92, + "Damage": 87, + "ammoAccr": -5, + "ammoRec": 5, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 15, + "PenetrationPowerDiviation": 0.72, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "7.62x39 мм ПС", + "casingEjectPower": 0, + "casingMass": 16.5, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.26, + "RicochetChance": 0.175, + "FragmentationChance": 0.4, + "Deterioration": 1, + "SpeedRetardation": 1.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 20, + "Caliber": "Caliber762x39", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0.15, + "LightBleedingDelta": 0.15, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.14, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.925, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false + }, + "_proto": "5656d7c34bdc2d9d198b4587" + }, + "573603562459776430731618": { + "_id": "573603562459776430731618", + "_name": "patron_762x25tt_Pst_gzh", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_762x25tt_Pst_gzh", + "ShortName": "patron_762x25tt_Pst_gzh", + "Description": "patron_762x25tt_Pst_gzh", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x25tt_pst_gzh.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 1, + "StackMaxRandom": 20, + "ammoType": "bullet", + "InitialSpeed": 430, + "BallisticCoeficient": 0.126, + "BulletMassGram": 5.45, + "BulletDiameterMilimeters": 7.85, + "Damage": 50, + "ammoAccr": 0, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 25, + "PenetrationPowerDiviation": 1.5, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.02, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.2, + "RicochetChance": 0.1, + "FragmentationChance": 0.2, + "Deterioration": 1, + "SpeedRetardation": 5.0e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 36, + "Caliber": "Caliber762x25TT", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.14, + "DurabilityBurnModificator": 1.4, + "HeatFactor": 1.0738, + "MalfFeedChance": 0.081, + "RemoveShellAfterFire": false + }, + "_proto": "5736026a245977644601dc61" }, "5fbe3ffdf8b6a877a729ea82": { "_id": "5fbe3ffdf8b6a877a729ea82", @@ -429046,23 +429650,23 @@ }, "_proto": "54527ac44bdc2d36668b4567" }, - "64b7af434b75259c590fa893": { - "_id": "64b7af434b75259c590fa893", - "_name": "patron_762x39_pp", - "_parent": "5485a8684bdc2da71d8b4567", + "5737250c2459776125652acc": { + "_id": "5737250c2459776125652acc", + "_name": "item_ammo_box_9x18pm_16_PBM", + "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { - "Name": "patron_762x39_PS", - "ShortName": "patron_762x39_PS", - "Description": "patron_762x39_PS", - "Weight": 0.016, + "Name": "ammo_box_9x18pm_16_PBM", + "ShortName": "ammo_box_9x18pm_16_PBM", + "Description": "ammo_box_9x18pm_16_PBM", + "Weight": 0.015, "BackgroundColor": "yellow", "Width": 1, "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x39_pp.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18pm_16.bundle", "rcid": "" }, "UsePrefab": { @@ -429081,7 +429685,7 @@ "QuestItem": false, "LootExperience": 0, "ExamineExperience": 10, - "HideEntrails": false, + "HideEntrails": true, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, @@ -429106,225 +429710,39 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 10, - "StackMaxRandom": 50, - "ammoType": "bullet", - "InitialSpeed": 732, - "BallisticCoeficient": 0.28, - "BulletMassGram": 7.9, - "BulletDiameterMilimeters": 7.92, - "Damage": 55, - "ammoAccr": -1, - "ammoRec": 5, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 41, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "7.62x39 мм ПС", - "casingEjectPower": 0, - "casingMass": 16.5, - "casingSounds": "rifle762", - "ProjectileCount": 1, - "PenetrationChance": 0.55, - "RicochetChance": 0.33, - "FragmentationChance": 0.15, - "Deterioration": 1, - "SpeedRetardation": 1.5e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 57, - "Caliber": "Caliber762x39", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.184, - "DurabilityBurnModificator": 1.35, - "HeatFactor": 1.725, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - } + "StackMinRandom": 16, + "StackMaxRandom": 16, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d56e8245977459939d009", + "_parent": "5737250c2459776125652acc", + "_max_count": 16, + "_props": { + "filters": [ + { + "Filter": [ + "573719df2459775a626ccbc2" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "573724b42459776125652ac2" }, - "64b7af5a8532cf95ee0a0dbd": { - "_id": "64b7af5a8532cf95ee0a0dbd", - "_name": "patron_762x39_fmj", + "560d61e84bdc2da74d8b4571": { + "_id": "560d61e84bdc2da74d8b4571", + "_name": "patron_762х54R_SNB", "_parent": "5485a8684bdc2da71d8b4567", "_type": "Item", "_props": { - "Name": "patron_762x39_PS", - "ShortName": "patron_762x39_PS", - "Description": "patron_762x39_PS", - "Weight": 0.012, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x39_fmj.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 10, - "StackMaxRandom": 50, - "ammoType": "bullet", - "InitialSpeed": 775, - "BallisticCoeficient": 0.28, - "BulletMassGram": 7.9, - "BulletDiameterMilimeters": 7.92, - "Damage": 63, - "ammoAccr": 2, - "ammoRec": -2, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 26, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "7.62x39 мм ПС", - "casingEjectPower": 0, - "casingMass": 16.5, - "casingSounds": "rifle762", - "ProjectileCount": 1, - "PenetrationChance": 0.35, - "RicochetChance": 0.25, - "FragmentationChance": 0.3, - "Deterioration": 1, - "SpeedRetardation": 1.5e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 33, - "Caliber": "Caliber762x39", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.154, - "DurabilityBurnModificator": 1, - "HeatFactor": 1, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - } - }, - "5efb0c1bd79ff02a1f5e68d9": { - "_id": "5efb0c1bd79ff02a1f5e68d9", - "_name": "patron_762x51_m993", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "default_308", - "ShortName": "default_308", - "Description": "default_308", + "Name": "7.62х54R SNB", + "ShortName": "7.62х54R SNB", + "Description": "7.62х54R SNB", "Weight": 0.024, "BackgroundColor": "yellow", "Width": 1, @@ -429332,7 +429750,7 @@ "StackMaxSize": 40, "ItemSound": "ammo_singleround", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x51_m993.bundle", + "path": "assets/content/items/ammo/patrons/patron_762x54r_7n14.bundle", "rcid": "" }, "UsePrefab": { @@ -429377,40 +429795,40 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "StackMinRandom": 10, - "StackMaxRandom": 40, + "StackMaxRandom": 30, "ammoType": "bullet", - "InitialSpeed": 910, - "BallisticCoeficient": 0.291, - "BulletMassGram": 8.2, - "BulletDiameterMilimeters": 7.85, - "Damage": 67, - "ammoAccr": 5, - "ammoRec": 8, + "InitialSpeed": 875, + "BallisticCoeficient": 0.342, + "BulletMassGram": 9.8, + "BulletDiameterMilimeters": 7.92, + "Damage": 75, + "ammoAccr": 0, + "ammoRec": 10, "ammoDist": 0, "buckshotBullets": 0, - "PenetrationPower": 70, - "PenetrationPowerDiviation": 1, + "PenetrationPower": 62, + "PenetrationPowerDiviation": 0.4, "ammoHear": 0, "ammoSfx": "standart", "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, "ammoShiftChance": 0, - "casingName": ".308", + "casingName": "Обычный 7.62х54R СНБ", "casingEjectPower": 0, "casingMass": 77.16, "casingSounds": "rifle762", "ProjectileCount": 1, - "PenetrationChance": 0.92, - "RicochetChance": 0.28, - "FragmentationChance": 0.13, + "PenetrationChance": 0.84, + "RicochetChance": 0.285, + "FragmentationChance": 0.08, "Deterioration": 1, "SpeedRetardation": 1.5e-5, "Tracer": false, "TracerColor": "red", "TracerDistance": 0, - "ArmorDamage": 85, - "Caliber": "Caliber762x51", + "ArmorDamage": 87, + "Caliber": "Caliber762x54R", "StaminaBurnPerDamage": 0.144, "HeavyBleedingDelta": 0, "LightBleedingDelta": 0, @@ -429444,31 +429862,30 @@ "LightAndSoundShotAngle": 0, "LightAndSoundShotSelfContusionTime": 0, "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 2, - "HeatFactor": 2.48, - "MalfFeedChance": 0.081, + "MalfMisfireChance": 0.168, + "DurabilityBurnModificator": 1.2, + "HeatFactor": 2.3387, + "MalfFeedChance": 0.095, "RemoveShellAfterFire": false - }, - "_proto": "560d61e84bdc2da74d8b4571" + } }, - "5737330a2459776af32363a1": { - "_id": "5737330a2459776af32363a1", - "_name": "item_ammo_box_545x39_30_bpz_fmj", + "57372ebf2459776862260582": { + "_id": "57372ebf2459776862260582", + "_name": "item_ammo_box_545x39_30_PS", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { - "Name": "ammo_box_545x39_30_bpz_fmj", - "ShortName": "ammo_box_545x39_30_bpz_fmj", - "Description": "ammo_box_545x39_30_bpz_fmj", - "Weight": 0.01, + "Name": "ammo_box_545x39_30_PS", + "ShortName": "ammo_box_545x39_30_PS", + "Description": "ammo_box_545x39_30_PS", + "Weight": 0.015, "BackgroundColor": "yellow", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30_bpz_fmj.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30.bundle", "rcid": "" }, "UsePrefab": { @@ -429477,7 +429894,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": false, + "ExaminedByDefault": true, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -429518,14 +429935,14 @@ "StackSlots": [ { "_name": "cartridges", - "_id": "574d532624597745a1163d82", - "_parent": "5737330a2459776af32363a1", + "_id": "574d53d0245977459939d002", + "_parent": "57372ebf2459776862260582", "_max_count": 30, "_props": { "filters": [ { "Filter": [ - "56dff0bed2720bb0668b4567" + "56dff3afd2720bba668b4567" ] } ] @@ -429534,7 +429951,227 @@ } ] }, - "_proto": "5737300424597769942d5a01" + "_proto": "57372e4a24597768553071c2" + }, + "64b8ee384b75259c590fa89b": { + "_id": "64b8ee384b75259c590fa89b", + "_name": "patron_12x70_piranha", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "12x70 Картечь", + "ShortName": "12x70", + "Description": "12x70 Картечь", + "Weight": 0.05, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 20, + "ItemSound": "ammo_shotgun", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_12x70_piranha.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 1, + "StackMaxRandom": 10, + "ammoType": "bullet", + "InitialSpeed": 310, + "BallisticCoeficient": 0.257, + "BulletMassGram": 0.47, + "BulletDiameterMilimeters": 2, + "Damage": 25, + "ammoAccr": -5, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 10, + "PenetrationPower": 24, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 1, + "ammoShiftChance": 0, + "casingName": "12x70 Картечь", + "casingEjectPower": 0, + "casingMass": 0, + "casingSounds": "shotgun_big", + "ProjectileCount": 10, + "PenetrationChance": 0.2, + "RicochetChance": 0.1, + "FragmentationChance": 0, + "Deterioration": 1, + "SpeedRetardation": 0.00013, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 22, + "Caliber": "Caliber12g", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0.15, + "LightBleedingDelta": 0.15, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1.5, + "HeatFactor": 2.1084, + "MalfFeedChance": 0.01, + "RemoveShellAfterFire": false + }, + "_proto": "560d5e524bdc2d25448b4571" + }, + "57372c21245977670937c6c2": { + "_id": "57372c21245977670937c6c2", + "_name": "item_ammo_box_545x39_120_BT", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_545x39_120_BT", + "ShortName": "ammo_box_545x39_120_BT", + "Description": "ammo_box_545x39_120_BT", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_bt.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 120, + "StackMaxRandom": 120, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d54df24597745964bdfa1", + "_parent": "57372c21245977670937c6c2", + "_max_count": 120, + "_props": { + "filters": [ + { + "Filter": [ + "56dff061d2720bb5668b4567" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "57372b832459776701014e41" }, "601aa3d2b2bcb34913271e6d": { "_id": "601aa3d2b2bcb34913271e6d", @@ -429808,23 +430445,23 @@ }, "_proto": "573601b42459776410737435" }, - "5e023e88277cce2b522ff2b1": { - "_id": "5e023e88277cce2b522ff2b1", - "_name": "patron_762x51_ultra_nosler", + "64b6979341772715af0f9c39": { + "_id": "64b6979341772715af0f9c39", + "_name": "patron_46x30_jsp", "_parent": "5485a8684bdc2da71d8b4567", "_type": "Item", "_props": { - "Name": "default_308", - "ShortName": "default_308", - "Description": "default_308", - "Weight": 0.021, + "Name": "patron_46x30_FMJ_SX", + "ShortName": "patron_46x30_FMJ_SX", + "Description": "patron_46x30_fmj_sx", + "Weight": 0.007, "BackgroundColor": "yellow", "Width": 1, "Height": 1, - "StackMaxSize": 40, + "StackMaxSize": 70, "ItemSound": "ammo_singleround", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x51_ultra_nosler.bundle", + "path": "assets/content/items/ammo/patrons/patron_46x30_action_sx.bundle", "rcid": "" }, "UsePrefab": { @@ -429868,44 +430505,44 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 10, - "StackMaxRandom": 40, + "StackMinRandom": 20, + "StackMaxRandom": 70, "ammoType": "bullet", - "InitialSpeed": 822, - "BallisticCoeficient": 0.375, - "BulletMassGram": 10.6, - "BulletDiameterMilimeters": 7.85, - "Damage": 107, - "ammoAccr": 10, - "ammoRec": -5, + "InitialSpeed": 579, + "BallisticCoeficient": 0.175, + "BulletMassGram": 2, + "BulletDiameterMilimeters": 4.65, + "Damage": 46, + "ammoAccr": 0, + "ammoRec": 0, "ammoDist": 0, "buckshotBullets": 0, - "PenetrationPower": 15, - "PenetrationPowerDiviation": 1, + "PenetrationPower": 32, + "PenetrationPowerDiviation": 0.1, "ammoHear": 0, "ammoSfx": "standart", "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, "ammoShiftChance": 0, - "casingName": ".308", - "casingEjectPower": 0, - "casingMass": 77.16, - "casingSounds": "rifle762", + "casingName": "", + "casingEjectPower": 1, + "casingMass": 16, + "casingSounds": "rifle556", "ProjectileCount": 1, - "PenetrationChance": 0.1, - "RicochetChance": 0.2, - "FragmentationChance": 0.7, + "PenetrationChance": 0.2, + "RicochetChance": 0.35, + "FragmentationChance": 0.3, "Deterioration": 1, - "SpeedRetardation": 1.5e-5, + "SpeedRetardation": 0, "Tracer": false, "TracerColor": "red", "TracerDistance": 0, - "ArmorDamage": 20, - "Caliber": "Caliber762x51", - "StaminaBurnPerDamage": 0.2592, - "HeavyBleedingDelta": 0.2, - "LightBleedingDelta": 0.2, + "ArmorDamage": 37, + "Caliber": "Caliber46x30", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, "ShowBullet": false, "HasGrenaderComponent": false, "FuzeArmTimeSec": 0, @@ -429937,22 +430574,158 @@ "LightAndSoundShotSelfContusionTime": 0, "LightAndSoundShotSelfContusionStrength": 0, "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.15, - "HeatFactor": 2.108, - "MalfFeedChance": 0.01, + "DurabilityBurnModificator": 0.9, + "HeatFactor": 0.99, + "MalfFeedChance": 0.089, "RemoveShellAfterFire": false }, - "_proto": "560d61e84bdc2da74d8b4571" + "_proto": "57372140245977611f70ee91" }, - "573603562459776430731618": { - "_id": "573603562459776430731618", - "_name": "patron_762x25tt_Pst_gzh", + "5fd20ff893a8961fc660a954": { + "_id": "5fd20ff893a8961fc660a954", + "_name": "patron_762x35_blackout_ap", "_parent": "5485a8684bdc2da71d8b4567", "_type": "Item", "_props": { - "Name": "patron_762x25tt_Pst_gzh", - "ShortName": "patron_762x25tt_Pst_gzh", - "Description": "patron_762x25tt_Pst_gzh", + "Name": "patron_762x35_blackout", + "ShortName": "patron_762x35_blackout", + "Description": "patron_762x35_blackout", + "Weight": 0.014, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x35_ap.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 15, + "StackMaxRandom": 50, + "ammoType": "bullet", + "InitialSpeed": 635, + "BallisticCoeficient": 0.334, + "BulletMassGram": 9.3, + "BulletDiameterMilimeters": 7.8, + "Damage": 51, + "ammoAccr": 0, + "ammoRec": 3, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 48, + "PenetrationPowerDiviation": 0.15, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 3, + "ammoShiftChance": 0, + "casingName": "patron_762x35_blackout", + "casingEjectPower": 1, + "casingMass": 11.77, + "casingSounds": "rifle556", + "ProjectileCount": 1, + "PenetrationChance": 0.46, + "RicochetChance": 0.3, + "FragmentationChance": 0.1, + "Deterioration": 1, + "SpeedRetardation": 2.3e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 65, + "Caliber": "Caliber762x35", + "StaminaBurnPerDamage": 0.1152, + "HeavyBleedingDelta": 0.15, + "LightBleedingDelta": 0.15, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.196, + "DurabilityBurnModificator": 1.5, + "HeatFactor": 1.99, + "MalfFeedChance": 0.086, + "RemoveShellAfterFire": false + }, + "_proto": "54527ac44bdc2d36668b4567" + }, + "5736026a245977644601dc61": { + "_id": "5736026a245977644601dc61", + "_name": "patron_762x25tt_P_Gl", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_762x25tt_P_Gl", + "ShortName": "patron_762x25tt_P_Gl", + "Description": "patron_762x25tt_P_Gl", "Weight": 0.01, "BackgroundColor": "yellow", "Width": 1, @@ -429960,7 +430733,7 @@ "StackMaxSize": 50, "ItemSound": "ammo_singleround", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x25tt_pst_gzh.bundle", + "path": "assets/content/items/ammo/patrons/patron_762x25tt_p_gl.bundle", "rcid": "" }, "UsePrefab": { @@ -430008,16 +430781,16 @@ "StackMaxRandom": 20, "ammoType": "bullet", "InitialSpeed": 430, - "BallisticCoeficient": 0.126, - "BulletMassGram": 5.45, + "BallisticCoeficient": 0.127, + "BulletMassGram": 5.5, "BulletDiameterMilimeters": 7.85, - "Damage": 50, + "Damage": 58, "ammoAccr": 0, "ammoRec": 0, "ammoDist": 0, "buckshotBullets": 0, - "PenetrationPower": 25, - "PenetrationPowerDiviation": 1.5, + "PenetrationPower": 14, + "PenetrationPowerDiviation": 0.07, "ammoHear": 0, "ammoSfx": "standart", "MisfireChance": 0.02, @@ -430029,15 +430802,15 @@ "casingMass": 10, "casingSounds": "rifle762", "ProjectileCount": 1, - "PenetrationChance": 0.2, - "RicochetChance": 0.1, - "FragmentationChance": 0.2, + "PenetrationChance": 0.17, + "RicochetChance": 0.065, + "FragmentationChance": 0.25, "Deterioration": 1, "SpeedRetardation": 5.0e-5, "Tracer": false, "TracerColor": "red", "TracerDistance": 0, - "ArmorDamage": 36, + "ArmorDamage": 32, "Caliber": "Caliber762x25TT", "StaminaBurnPerDamage": 0.144, "HeavyBleedingDelta": 0, @@ -430072,13 +430845,1122 @@ "LightAndSoundShotAngle": 0, "LightAndSoundShotSelfContusionTime": 0, "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.14, - "DurabilityBurnModificator": 1.4, - "HeatFactor": 1.0738, - "MalfFeedChance": 0.081, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1, + "HeatFactor": 0.9558, + "MalfFeedChance": 0.02, "RemoveShellAfterFire": false }, - "_proto": "5736026a245977644601dc61" + "_proto": "573602322459776445391df1" + }, + "5fc382b6d6fa9c00c571bbc3": { + "_id": "5fc382b6d6fa9c00c571bbc3", + "_name": "patron_86x70_lapua_tac_x", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "default_308", + "ShortName": "default_308", + "Description": "default_308", + "Weight": 0.044, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 30, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_86x70_lapua_tac_x.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 2, + "StackMaxRandom": 8, + "ammoType": "bullet", + "InitialSpeed": 880, + "BallisticCoeficient": 0.476, + "BulletMassGram": 18.5, + "BulletDiameterMilimeters": 8.58, + "Damage": 196, + "ammoAccr": 10, + "ammoRec": -5, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 18, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": ".338", + "casingEjectPower": 0, + "casingMass": 77.16, + "casingSounds": "50cal", + "ProjectileCount": 1, + "PenetrationChance": 0.3, + "RicochetChance": 0.4, + "FragmentationChance": 0.5, + "Deterioration": 1, + "SpeedRetardation": 1.1e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 55, + "Caliber": "Caliber86x70", + "StaminaBurnPerDamage": 0.2592, + "HeavyBleedingDelta": 0.5, + "LightBleedingDelta": 0.8, + "ShowBullet": false, + "HasGrenaderComponent": true, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": true, + "ExplosionType": "big_round_impact", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.21, + "DurabilityBurnModificator": 1.4, + "HeatFactor": 2.934, + "MalfFeedChance": 0.0891, + "RemoveShellAfterFire": false + }, + "_proto": "560d61e84bdc2da74d8b4571" + }, + "5737287724597765e1625ae2": { + "_id": "5737287724597765e1625ae2", + "_name": "item_ammo_box_9x18pm_RG028_gzh", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_9x18pm_RG028_gzh", + "ShortName": "ammo_box_9x18pm_RG028_gzh", + "Description": "ammo_box_9x18pm_RG028_gzh", + "Weight": 0.015, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18pm_16.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 16, + "StackMaxRandom": 16, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d55df245977459939d007", + "_parent": "5737287724597765e1625ae2", + "_max_count": 16, + "_props": { + "filters": [ + { + "Filter": [ + "573720e02459776143012541" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5737280e24597765cc785b5c" + }, + "57372d1b2459776862260581": { + "_id": "57372d1b2459776862260581", + "_name": "item_ammo_box_545x39_120_PP", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_545x39_120_PP", + "ShortName": "ammo_box_545x39_120_PP", + "Description": "ammo_box_545x39_120_PP", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_pp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 120, + "StackMaxRandom": 120, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d549a24597745b015be62", + "_parent": "57372d1b2459776862260581", + "_max_count": 120, + "_props": { + "filters": [ + { + "Filter": [ + "56dff2ced2720bb4668b4567" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "57372c21245977670937c6c2" + }, + "5737300424597769942d5a01": { + "_id": "5737300424597769942d5a01", + "_name": "item_ammo_box_545x39_30_US", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_545x39_30_US", + "ShortName": "ammo_box_545x39_30_US", + "Description": "ammo_box_545x39_30_US", + "Weight": 0.015, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 30, + "StackMaxRandom": 30, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d5339245977459d455761", + "_parent": "5737300424597769942d5a01", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "56dff4ecd2720b5f5a8b4568" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "57372f5c24597769917c0131" + }, + "6489854673c462723909a14e": { + "_id": "6489854673c462723909a14e", + "_name": "item_ammo_box_9x39_20_BP", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x39mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber9x39", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6489854673c462723909a14f", + "_parent": "6489854673c462723909a14e", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5c0d688c86f77413ae3407b2" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "648984e3f09d032aa9399d53": { + "_id": "648984e3f09d032aa9399d53", + "_name": "item_ammo_box_762x51_20_m993", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x51mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber762x51", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "648984e3f09d032aa9399d54", + "_parent": "648984e3f09d032aa9399d53", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5efb0c1bd79ff02a1f5e68d9" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "5c12619186f7743f871c8a32": { + "_id": "5c12619186f7743f871c8a32", + "_name": "item_ammo_box_9x39_7n9_8", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.02, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x39spp_8.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 8, + "StackMaxRandom": 8, + "ammoCaliber": "Caliber9x39", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "5c12619186f7743f871c8a34", + "_parent": "5c12619186f7743f871c8a32", + "_max_count": 8, + "_props": { + "filters": [ + { + "Filter": [ + "5c0d668f86f7747ccb7f13b2" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5447ac644bdc2d6c208b4567" + }, + "573726d824597765d96be361": { + "_id": "573726d824597765d96be361", + "_name": "item_ammo_box_9x18pm_16_PS_gs_PPO", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_9x18pm_16_PS_gs_PPO", + "ShortName": "ammo_box_9x18pm_16_PS_gs_PPO", + "Description": "ammo_box_9x18pm_16_PS_gs_PPO", + "Weight": 0.015, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18pm_16.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 16, + "StackMaxRandom": 16, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d562d245977459805ee31", + "_parent": "573726d824597765d96be361", + "_max_count": 16, + "_props": { + "filters": [ + { + "Filter": [ + "57371f2b24597761224311f1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5737266524597761006c6a8c" + }, + "64b8725c4b75259c590fa899": { + "_id": "64b8725c4b75259c590fa899", + "_name": "patron_762x35_cbj", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_762x35_blackout", + "ShortName": "patron_762x35_blackout", + "Description": "patron_762x35_blackout", + "Weight": 0.015, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x35_cbj.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 15, + "StackMaxRandom": 50, + "ammoType": "bullet", + "InitialSpeed": 725, + "BallisticCoeficient": 0.334, + "BulletMassGram": 9.3, + "BulletDiameterMilimeters": 7.8, + "Damage": 58, + "ammoAccr": 0, + "ammoRec": 5, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 43, + "PenetrationPowerDiviation": 0.21, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": "patron_762x35_blackout", + "casingEjectPower": 1, + "casingMass": 11.77, + "casingSounds": "rifle556", + "ProjectileCount": 1, + "PenetrationChance": 0.34, + "RicochetChance": 0.2, + "FragmentationChance": 0.15, + "Deterioration": 1, + "SpeedRetardation": 2.3e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 57, + "Caliber": "Caliber762x35", + "StaminaBurnPerDamage": 0.0864, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.196, + "DurabilityBurnModificator": 1.34, + "HeatFactor": 1.86, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false + }, + "_proto": "54527ac44bdc2d36668b4567" + }, + "5737292724597765e5728562": { + "_id": "5737292724597765e5728562", + "_name": "item_ammo_box_545x39_120_BP", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_545x39_120_BP", + "ShortName": "ammo_box_545x39_120_BP", + "Description": "ammo_box_545x39_120_BP", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_bp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 120, + "StackMaxRandom": 120, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d559a24597745970e7c86", + "_parent": "5737292724597765e5728562", + "_max_count": 120, + "_props": { + "filters": [ + { + "Filter": [ + "56dfef82d2720bbd668b4567" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "573728f324597765e5728561" + }, + "64acea2c03378853630da53e": { + "_id": "64acea2c03378853630da53e", + "_name": "item_ammo_box_762x39_20_HP", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_762x39_20_PS", + "ShortName": "ammo_box_762x39_20_PS", + "Description": "ammo_box_762x39_20_PS", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_762x39_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber762x39", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "64acea2c03378853630da53f", + "_parent": "64acea2c03378853630da53e", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "59e4d3d286f774176a36250a" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5447ac644bdc2d6c208b4567" + }, + "6489851fc827d4637f01791b": { + "_id": "6489851fc827d4637f01791b", + "_name": "item_ammo_box_762x39_30_MAI_AP", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x39mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber762x39", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6489851fc827d4637f01791c", + "_parent": "6489851fc827d4637f01791b", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "601aa3d2b2bcb34913271e6d" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } }, "573719df2459775a626ccbc2": { "_id": "573719df2459775a626ccbc2", @@ -430352,6 +432234,90 @@ }, "_proto": "560d61e84bdc2da74d8b4571" }, + "573727c624597765cc785b5b": { + "_id": "573727c624597765cc785b5b", + "_name": "item_ammo_box_9x18pm_16_PST_gzh", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_9x18pm_16_PST_gzh", + "ShortName": "ammo_box_9x18pm_16_PST_gzh", + "Description": "ammo_box_9x18pm_16_PST_gzh", + "Weight": 0.015, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18pm_16.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 16, + "StackMaxRandom": 16, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d560824597745970e7c87", + "_parent": "573727c624597765cc785b5b", + "_max_count": 16, + "_props": { + "filters": [ + { + "Filter": [ + "5737201124597760fc4431f1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5737273924597765dd374461" + }, "57372ee1245977685d4159b5": { "_id": "57372ee1245977685d4159b5", "_name": "item_ammo_box_545x39_120_T", @@ -430520,90 +432486,6 @@ }, "_proto": "5737273924597765dd374461" }, - "573727c624597765cc785b5b": { - "_id": "573727c624597765cc785b5b", - "_name": "item_ammo_box_9x18pm_16_PST_gzh", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_9x18pm_16_PST_gzh", - "ShortName": "ammo_box_9x18pm_16_PST_gzh", - "Description": "ammo_box_9x18pm_16_PST_gzh", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18pm_16.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 16, - "StackMaxRandom": 16, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d560824597745970e7c87", - "_parent": "573727c624597765cc785b5b", - "_max_count": 16, - "_props": { - "filters": [ - { - "Filter": [ - "5737201124597760fc4431f1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5737273924597765dd374461" - }, "6570241bcfc010a0f50069f5": { "_id": "6570241bcfc010a0f50069f5", "_name": "item_ammo_box_127x55_10_ps12", @@ -430853,274 +432735,23 @@ ] } }, - "5737250c2459776125652acc": { - "_id": "5737250c2459776125652acc", - "_name": "item_ammo_box_9x18pm_16_PBM", - "_parent": "543be5cb4bdc2deb348b4568", + "6196364158ef8c428c287d9f": { + "_id": "6196364158ef8c428c287d9f", + "_name": "patron_762x35_vmax", + "_parent": "5485a8684bdc2da71d8b4567", "_type": "Item", "_props": { - "Name": "ammo_box_9x18pm_16_PBM", - "ShortName": "ammo_box_9x18pm_16_PBM", - "Description": "ammo_box_9x18pm_16_PBM", + "Name": "patron_762x35_blackout", + "ShortName": "patron_762x35_blackout", + "Description": "patron_762x35_blackout", "Weight": 0.015, "BackgroundColor": "yellow", "Width": 1, "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18pm_16.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 16, - "StackMaxRandom": 16, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d56e8245977459939d009", - "_parent": "5737250c2459776125652acc", - "_max_count": 16, - "_props": { - "filters": [ - { - "Filter": [ - "573719df2459775a626ccbc2" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "573724b42459776125652ac2" - }, - "6489851fc827d4637f01791b": { - "_id": "6489851fc827d4637f01791b", - "_name": "item_ammo_box_762x39_30_MAI_AP", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x39mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x39", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6489851fc827d4637f01791c", - "_parent": "6489851fc827d4637f01791b", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "601aa3d2b2bcb34913271e6d" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "64acea2c03378853630da53e": { - "_id": "64acea2c03378853630da53e", - "_name": "item_ammo_box_762x39_20_HP", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_762x39_20_PS", - "ShortName": "ammo_box_762x39_20_PS", - "Description": "ammo_box_762x39_20_PS", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_762x39_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x39", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "64acea2c03378853630da53f", - "_parent": "64acea2c03378853630da53e", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "59e4d3d286f774176a36250a" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5447ac644bdc2d6c208b4567" - }, - "6529243824cbe3c74a05e5c1": { - "_id": "6529243824cbe3c74a05e5c1", - "_name": "patron_68x51", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "default_308", - "ShortName": "default_308", - "Description": "default_308", - "Weight": 0.024, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 40, + "StackMaxSize": 60, "ItemSound": "ammo_singleround", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_68x51.bundle", + "path": "assets/content/items/ammo/patrons/patron_762x35_vmax.bundle", "rcid": "" }, "UsePrefab": { @@ -431148,278 +432779,6 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 15, - "ammoType": "bullet", - "InitialSpeed": 914, - "BallisticCoeficient": 0.388, - "BulletMassGram": 8.7, - "BulletDiameterMilimeters": 7, - "Damage": 72, - "ammoAccr": 3, - "ammoRec": 10, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 47, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": ".308", - "casingEjectPower": 0, - "casingMass": 77.16, - "casingSounds": "rifle762", - "ProjectileCount": 1, - "PenetrationChance": 0.4, - "RicochetChance": 0.3, - "FragmentationChance": 0.12, - "Deterioration": 1, - "SpeedRetardation": 1.5e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 58, - "Caliber": "Caliber68x51", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.168, - "DurabilityBurnModificator": 1.5, - "HeatFactor": 2.53, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "560d61e84bdc2da74d8b4571" - }, - "5a6086ea4f39f99cd479502f": { - "_id": "5a6086ea4f39f99cd479502f", - "_name": "patron_762x51_M61", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "default_308", - "ShortName": "default_308", - "Description": "default_308", - "Weight": 0.024, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 40, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x51_m61.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 15, - "ammoType": "bullet", - "InitialSpeed": 849, - "BallisticCoeficient": 0.346, - "BulletMassGram": 9.75, - "BulletDiameterMilimeters": 7.85, - "Damage": 70, - "ammoAccr": 3, - "ammoRec": 10, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 64, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": ".308", - "casingEjectPower": 0, - "casingMass": 77.16, - "casingSounds": "rifle762", - "ProjectileCount": 1, - "PenetrationChance": 0.9, - "RicochetChance": 0.3, - "FragmentationChance": 0.13, - "Deterioration": 1, - "SpeedRetardation": 1.5e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 83, - "Caliber": "Caliber762x51", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.1834, - "DurabilityBurnModificator": 1.8, - "HeatFactor": 2.356, - "MalfFeedChance": 0.087, - "RemoveShellAfterFire": false - }, - "_proto": "560d61e84bdc2da74d8b4571" - }, - "5737339e2459776af261abeb": { - "_id": "5737339e2459776af261abeb", - "_name": "item_ammo_box_545x39_30_bpz_hp", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_30_bpz_hp", - "ShortName": "ammo_box_545x39_30_bpz_hp", - "Description": "ammo_box_545x39_30_bpz_hp", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30_bpz_hp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [], @@ -431436,544 +432795,44 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 30, - "StackMaxRandom": 30, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d5312245977459a2f1582", - "_parent": "5737339e2459776af261abeb", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "56dff216d2720bbd668b4568" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5737330a2459776af32363a1" - }, - "64aceab0426a303417060654": { - "_id": "64aceab0426a303417060654", - "_name": "item_ammo_box_762x54R_20_SPBT", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_762x54r_xx_SNB", - "ShortName": "ammo_box_762x54r_xx_SNB", - "Description": "ammo_box_762x54r_xx_SNB", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_762x54r_sp_bt.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x54R", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "64aceab0426a303417060655", - "_parent": "64aceab0426a303417060654", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "64b8f7b5389d7ffd620ccba2" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5447ac644bdc2d6c208b4567" - }, - "657023f1bfc87b3a34093210": { - "_id": "657023f1bfc87b3a34093210", - "_name": "item_ammo_box_366_20_fmj", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_366_tkm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber366TKM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657023f1bfc87b3a34093211", - "_parent": "657023f1bfc87b3a34093210", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "59e6542b86f77411dc52a77a" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "6570246fcfc010a0f5006a01": { - "_id": "6570246fcfc010a0f5006a01", - "_name": "item_ammo_box_12g_25_slug", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber12g", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6570246fcfc010a0f5006a02", - "_parent": "6570246fcfc010a0f5006a01", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "58820d1224597753c90aeb13" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "65702406bfc87b3a34093216": { - "_id": "65702406bfc87b3a34093216", - "_name": "item_ammo_box_1143x23_50_hydra_shok", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_45_acp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, + "StackMinRandom": 15, "StackMaxRandom": 50, - "ammoCaliber": "Caliber1143x23ACP", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702406bfc87b3a34093217", - "_parent": "65702406bfc87b3a34093216", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0fc6aeb21837e749c801" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657023d6cfc010a0f50069e9": { - "_id": "657023d6cfc010a0f50069e9", - "_name": "item_ammo_box_338_20_tac_x", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_338_lapua_magnum.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber86x70", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657023d6cfc010a0f50069ea", - "_parent": "657023d6cfc010a0f50069e9", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5fc382b6d6fa9c00c571bbc3" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "560d61e84bdc2da74d8b4571": { - "_id": "560d61e84bdc2da74d8b4571", - "_name": "patron_762х54R_SNB", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "7.62х54R SNB", - "ShortName": "7.62х54R SNB", - "Description": "7.62х54R SNB", - "Weight": 0.024, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 40, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x54r_7n14.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 10, - "StackMaxRandom": 30, "ammoType": "bullet", - "InitialSpeed": 875, - "BallisticCoeficient": 0.342, - "BulletMassGram": 9.8, - "BulletDiameterMilimeters": 7.92, - "Damage": 75, - "ammoAccr": 0, - "ammoRec": 10, + "InitialSpeed": 723, + "BallisticCoeficient": 0.334, + "BulletMassGram": 9.3, + "BulletDiameterMilimeters": 7.8, + "Damage": 72, + "ammoAccr": 30, + "ammoRec": -10, "ammoDist": 0, "buckshotBullets": 0, - "PenetrationPower": 62, - "PenetrationPowerDiviation": 0.4, + "PenetrationPower": 20, + "PenetrationPowerDiviation": 0.21, "ammoHear": 0, "ammoSfx": "standart", "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, "ammoShiftChance": 0, - "casingName": "Обычный 7.62х54R СНБ", - "casingEjectPower": 0, - "casingMass": 77.16, - "casingSounds": "rifle762", + "casingName": "patron_762x35_blackout", + "casingEjectPower": 1, + "casingMass": 11.77, + "casingSounds": "rifle556", "ProjectileCount": 1, - "PenetrationChance": 0.84, - "RicochetChance": 0.285, - "FragmentationChance": 0.08, + "PenetrationChance": 0.2, + "RicochetChance": 0.1, + "FragmentationChance": 0.25, "Deterioration": 1, - "SpeedRetardation": 1.5e-5, + "SpeedRetardation": 2.3e-5, "Tracer": false, "TracerColor": "red", "TracerDistance": 0, - "ArmorDamage": 87, - "Caliber": "Caliber762x54R", - "StaminaBurnPerDamage": 0.144, + "ArmorDamage": 25, + "Caliber": "Caliber762x35", + "StaminaBurnPerDamage": 0.1152, "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, + "LightBleedingDelta": 0.22, "ShowBullet": false, "HasGrenaderComponent": false, "FuzeArmTimeSec": 0, @@ -432004,30 +432863,31 @@ "LightAndSoundShotAngle": 0, "LightAndSoundShotSelfContusionTime": 0, "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.168, - "DurabilityBurnModificator": 1.2, - "HeatFactor": 2.3387, - "MalfFeedChance": 0.095, + "MalfMisfireChance": 0.175, + "DurabilityBurnModificator": 1.1, + "HeatFactor": 1.8, + "MalfFeedChance": 0.075, "RemoveShellAfterFire": false - } + }, + "_proto": "54527ac44bdc2d36668b4567" }, - "5fc382b6d6fa9c00c571bbc3": { - "_id": "5fc382b6d6fa9c00c571bbc3", - "_name": "patron_86x70_lapua_tac_x", + "573601b42459776410737435": { + "_id": "573601b42459776410737435", + "_name": "patron_762x25tt_LRN", "_parent": "5485a8684bdc2da71d8b4567", "_type": "Item", "_props": { - "Name": "default_308", - "ShortName": "default_308", - "Description": "default_308", - "Weight": 0.044, + "Name": "patron_762x25tt_LRN", + "ShortName": "patron_762x25tt_LRN", + "Description": "patron_762x25tt_LRN", + "Weight": 0.01, "BackgroundColor": "yellow", "Width": 1, "Height": 1, - "StackMaxSize": 30, + "StackMaxSize": 50, "ItemSound": "ammo_singleround", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_86x70_lapua_tac_x.bundle", + "path": "assets/content/items/ammo/patrons/patron_762x25tt_lrn.bundle", "rcid": "" }, "UsePrefab": { @@ -432055,7 +432915,7 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": false, + "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -432071,54 +432931,54 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 2, - "StackMaxRandom": 8, + "StackMinRandom": 1, + "StackMaxRandom": 20, "ammoType": "bullet", - "InitialSpeed": 880, - "BallisticCoeficient": 0.476, - "BulletMassGram": 18.5, - "BulletDiameterMilimeters": 8.58, - "Damage": 196, - "ammoAccr": 10, + "InitialSpeed": 375, + "BallisticCoeficient": 0.146, + "BulletMassGram": 6.35, + "BulletDiameterMilimeters": 7.85, + "Damage": 64, + "ammoAccr": 5, "ammoRec": -5, "ammoDist": 0, "buckshotBullets": 0, - "PenetrationPower": 18, - "PenetrationPowerDiviation": 1, + "PenetrationPower": 8, + "PenetrationPowerDiviation": 0.116, "ammoHear": 0, "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, + "MisfireChance": 0.03, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 5, "ammoShiftChance": 0, - "casingName": ".338", - "casingEjectPower": 0, - "casingMass": 77.16, - "casingSounds": "50cal", + "casingName": "", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "rifle762", "ProjectileCount": 1, - "PenetrationChance": 0.3, - "RicochetChance": 0.4, - "FragmentationChance": 0.5, + "PenetrationChance": 0.16, + "RicochetChance": 0.05, + "FragmentationChance": 0.35, "Deterioration": 1, - "SpeedRetardation": 1.1e-5, + "SpeedRetardation": 5.0e-5, "Tracer": false, "TracerColor": "red", "TracerDistance": 0, - "ArmorDamage": 55, - "Caliber": "Caliber86x70", - "StaminaBurnPerDamage": 0.2592, - "HeavyBleedingDelta": 0.5, - "LightBleedingDelta": 0.8, + "ArmorDamage": 28, + "Caliber": "Caliber762x25TT", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0.1, + "LightBleedingDelta": 0.15, "ShowBullet": false, - "HasGrenaderComponent": true, + "HasGrenaderComponent": false, "FuzeArmTimeSec": 0, "ExplosionStrength": 0, "MinExplosionDistance": 0, "MaxExplosionDistance": 0, "FragmentsCount": 0, "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": true, - "ExplosionType": "big_round_impact", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", "AmmoLifeTimeSec": 5, "Contusion": { "x": 0, @@ -432139,1267 +432999,13 @@ "LightAndSoundShotAngle": 0, "LightAndSoundShotSelfContusionTime": 0, "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.21, - "DurabilityBurnModificator": 1.4, - "HeatFactor": 2.934, - "MalfFeedChance": 0.0891, + "MalfMisfireChance": 0.14, + "DurabilityBurnModificator": 1.15, + "HeatFactor": 1.062, + "MalfFeedChance": 0.02, "RemoveShellAfterFire": false }, - "_proto": "560d61e84bdc2da74d8b4571" - }, - "57372d1b2459776862260581": { - "_id": "57372d1b2459776862260581", - "_name": "item_ammo_box_545x39_120_PP", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_120_PP", - "ShortName": "ammo_box_545x39_120_PP", - "Description": "ammo_box_545x39_120_PP", - "Weight": 0.1, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_pp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 120, - "StackMaxRandom": 120, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d549a24597745b015be62", - "_parent": "57372d1b2459776862260581", - "_max_count": 120, - "_props": { - "filters": [ - { - "Filter": [ - "56dff2ced2720bb4668b4567" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "57372c21245977670937c6c2" - }, - "5737287724597765e1625ae2": { - "_id": "5737287724597765e1625ae2", - "_name": "item_ammo_box_9x18pm_RG028_gzh", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_9x18pm_RG028_gzh", - "ShortName": "ammo_box_9x18pm_RG028_gzh", - "Description": "ammo_box_9x18pm_RG028_gzh", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18pm_16.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 16, - "StackMaxRandom": 16, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d55df245977459939d007", - "_parent": "5737287724597765e1625ae2", - "_max_count": 16, - "_props": { - "filters": [ - { - "Filter": [ - "573720e02459776143012541" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5737280e24597765cc785b5c" - }, - "5737300424597769942d5a01": { - "_id": "5737300424597769942d5a01", - "_name": "item_ammo_box_545x39_30_US", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_30_US", - "ShortName": "ammo_box_545x39_30_US", - "Description": "ammo_box_545x39_30_US", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 30, - "StackMaxRandom": 30, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d5339245977459d455761", - "_parent": "5737300424597769942d5a01", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "56dff4ecd2720b5f5a8b4568" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "57372f5c24597769917c0131" - }, - "5c12619186f7743f871c8a32": { - "_id": "5c12619186f7743f871c8a32", - "_name": "item_ammo_box_9x39_7n9_8", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.02, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x39spp_8.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 8, - "StackMaxRandom": 8, - "ammoCaliber": "Caliber9x39", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "5c12619186f7743f871c8a34", - "_parent": "5c12619186f7743f871c8a32", - "_max_count": 8, - "_props": { - "filters": [ - { - "Filter": [ - "5c0d668f86f7747ccb7f13b2" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5447ac644bdc2d6c208b4567" - }, - "6489854673c462723909a14e": { - "_id": "6489854673c462723909a14e", - "_name": "item_ammo_box_9x39_20_BP", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x39mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber9x39", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6489854673c462723909a14f", - "_parent": "6489854673c462723909a14e", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5c0d688c86f77413ae3407b2" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "648984e3f09d032aa9399d53": { - "_id": "648984e3f09d032aa9399d53", - "_name": "item_ammo_box_762x51_20_m993", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x51mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x51", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "648984e3f09d032aa9399d54", - "_parent": "648984e3f09d032aa9399d53", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0c1bd79ff02a1f5e68d9" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "5447ac644bdc2d6c208b4567": { - "_id": "5447ac644bdc2d6c208b4567", - "_name": "ammo_box_556x45_xx_m193ball", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber556x45NATO", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d57d5245977459805ee34", - "_parent": "5447ac644bdc2d6c208b4567", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "54527a984bdc2d4e668b4567" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "57372c21245977670937c6c2": { - "_id": "57372c21245977670937c6c2", - "_name": "item_ammo_box_545x39_120_BT", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_120_BT", - "ShortName": "ammo_box_545x39_120_BT", - "Description": "ammo_box_545x39_120_BT", - "Weight": 0.1, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_bt.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 120, - "StackMaxRandom": 120, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d54df24597745964bdfa1", - "_parent": "57372c21245977670937c6c2", - "_max_count": 120, - "_props": { - "filters": [ - { - "Filter": [ - "56dff061d2720bb5668b4567" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "57372b832459776701014e41" - }, - "5c1127d0d174af29be75cf68": { - "_id": "5c1127d0d174af29be75cf68", - "_name": "item_ammo_box_12g_rip_5", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_9x19_default", - "ShortName": "ammo_box_9x19_default", - "Description": "ammo_box_9x19_default", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_shotgun", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 5, - "StackMaxRandom": 5, - "ammoCaliber": "Caliber12g", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "5c1127d0d174af29be75cf6a", - "_parent": "5c1127d0d174af29be75cf68", - "_max_count": 5, - "_props": { - "filters": [ - { - "Filter": [ - "5c0d591486f7744c505b416f" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5737273924597765dd374461" - }, - "57372e73245977685d4159b4": { - "_id": "57372e73245977685d4159b4", - "_name": "item_ammo_box_545x39_120_PS", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_120_PS", - "ShortName": "ammo_box_545x39_120_PS", - "Description": "ammo_box_545x39_120_PS", - "Weight": 0.1, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_ps.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 120, - "StackMaxRandom": 120, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d5aa024597745970e7c89", - "_parent": "57372e73245977685d4159b4", - "_max_count": 120, - "_props": { - "filters": [ - { - "Filter": [ - "56dff3afd2720bba668b4567" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "57372deb245977685d4159b3" - }, - "64acea09c4eda9354b0226ad": { - "_id": "64acea09c4eda9354b0226ad", - "_name": "item_ammo_box_762x39_20_T", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_762x39_20_PS", - "ShortName": "ammo_box_762x39_20_PS", - "Description": "ammo_box_762x39_20_PS", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_762x39_t.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x39", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "64acea09c4eda9354b0226ae", - "_parent": "64acea09c4eda9354b0226ad", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "59e4cf5286f7741778269d8a" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5447ac644bdc2d6c208b4567" - }, - "64898602f09d032aa9399d56": { - "_id": "64898602f09d032aa9399d56", - "_name": "item_ammo_box_545x39_30_7n40", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 30, - "StackMaxRandom": 30, - "ammoCaliber": "Caliber545x39", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "64898602f09d032aa9399d57", - "_parent": "64898602f09d032aa9399d56", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "61962b617c6c7b169525f168" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "65702414c5d7d4cb4d078555": { - "_id": "65702414c5d7d4cb4d078555", - "_name": "item_ammo_box_1143x23_50_rip", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_45_acp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber1143x23ACP", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702414c5d7d4cb4d078556", - "_parent": "65702414c5d7d4cb4d078555", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "5ea2a8e200685063ec28c05a" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "64ace9d9b5bf5e95f50a4c1d": { - "_id": "64ace9d9b5bf5e95f50a4c1d", - "_name": "item_ammo_box_762x39_20_FMJ", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_762x39_20_PS", - "ShortName": "ammo_box_762x39_20_PS", - "Description": "ammo_box_762x39_20_PS", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_762x39_fmj.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x39", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "64ace9d9b5bf5e95f50a4c1e", - "_parent": "64ace9d9b5bf5e95f50a4c1d", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "64b7af5a8532cf95ee0a0dbd" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5447ac644bdc2d6c208b4567" - }, - "6570249f1419851aef03e709": { - "_id": "6570249f1419851aef03e709", - "_name": "item_ammo_box_20g_25_slug_star", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_20_70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber20g", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6570249f1419851aef03e70a", - "_parent": "6570249f1419851aef03e709", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "5d6e6a05a4b93618084f58d0" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } + "_proto": "5735ff5c245977640e39ba7e" }, "5737266524597761006c6a8c": { "_id": "5737266524597761006c6a8c", @@ -433485,90 +433091,6 @@ }, "_proto": "5737260b24597761224311f2" }, - "57372e4a24597768553071c2": { - "_id": "57372e4a24597768553071c2", - "_name": "item_ammo_box_545x39_30_PRS", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_30_PRS", - "ShortName": "ammo_box_545x39_30_PRS", - "Description": "ammo_box_545x39_30_PRS", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 30, - "StackMaxRandom": 30, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d540a24597745a21eb3d9", - "_parent": "57372e4a24597768553071c2", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "56dff338d2720bbd668b4569" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "57372db0245977685d4159b2" - }, "573728cc24597765cc785b5d": { "_id": "573728cc24597765cc785b5d", "_name": "item_ammo_box_9x18pm_SP7_gzh", @@ -433653,23 +433175,23 @@ }, "_proto": "5737287724597765e1625ae2" }, - "64b8ee384b75259c590fa89b": { - "_id": "64b8ee384b75259c590fa89b", - "_name": "patron_12x70_piranha", - "_parent": "5485a8684bdc2da71d8b4567", + "57372e4a24597768553071c2": { + "_id": "57372e4a24597768553071c2", + "_name": "item_ammo_box_545x39_30_PRS", + "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { - "Name": "12x70 Картечь", - "ShortName": "12x70", - "Description": "12x70 Картечь", - "Weight": 0.05, + "Name": "ammo_box_545x39_30_PRS", + "ShortName": "ammo_box_545x39_30_PRS", + "Description": "ammo_box_545x39_30_PRS", + "Weight": 0.015, "BackgroundColor": "yellow", "Width": 1, "Height": 1, - "StackMaxSize": 20, - "ItemSound": "ammo_shotgun", + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_12x70_piranha.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30.bundle", "rcid": "" }, "UsePrefab": { @@ -433688,7 +433210,7 @@ "QuestItem": false, "LootExperience": 0, "ExamineExperience": 10, - "HideEntrails": false, + "HideEntrails": true, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, @@ -433713,99 +433235,47 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 10, - "ammoType": "bullet", - "InitialSpeed": 310, - "BallisticCoeficient": 0.257, - "BulletMassGram": 0.47, - "BulletDiameterMilimeters": 2, - "Damage": 25, - "ammoAccr": -5, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 10, - "PenetrationPower": 24, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 1, - "ammoShiftChance": 0, - "casingName": "12x70 Картечь", - "casingEjectPower": 0, - "casingMass": 0, - "casingSounds": "shotgun_big", - "ProjectileCount": 10, - "PenetrationChance": 0.2, - "RicochetChance": 0.1, - "FragmentationChance": 0, - "Deterioration": 1, - "SpeedRetardation": 0.00013, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 22, - "Caliber": "Caliber12g", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0.15, - "LightBleedingDelta": 0.15, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.5, - "HeatFactor": 2.1084, - "MalfFeedChance": 0.01, - "RemoveShellAfterFire": false + "StackMinRandom": 30, + "StackMaxRandom": 30, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d540a24597745a21eb3d9", + "_parent": "57372e4a24597768553071c2", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "56dff338d2720bbd668b4569" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] }, - "_proto": "560d5e524bdc2d25448b4571" + "_proto": "57372db0245977685d4159b2" }, - "57372b832459776701014e41": { - "_id": "57372b832459776701014e41", - "_name": "item_ammo_box_545x39_120_BS", + "65702469c5d7d4cb4d07855b": { + "_id": "65702469c5d7d4cb4d07855b", + "_name": "item_ammo_box_12g_25_slug_50_bmg", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { - "Name": "ammo_box_545x39_120_BS", - "ShortName": "ammo_box_545x39_120_BS", - "Description": "ammo_box_545x39_120_BS", - "Weight": 0.1, + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, "BackgroundColor": "yellow", - "Width": 2, + "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_bs.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", "rcid": "" }, "UsePrefab": { @@ -433849,20 +433319,20 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 120, - "StackMaxRandom": 120, - "ammoCaliber": "Caliber9x18PM", + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber12g", "StackSlots": [ { "_name": "cartridges", - "_id": "574d5556245977459805ee2e", - "_parent": "57372b832459776701014e41", - "_max_count": 120, + "_id": "65702469c5d7d4cb4d07855c", + "_parent": "65702469c5d7d4cb4d07855b", + "_max_count": 25, "_props": { "filters": [ { "Filter": [ - "56dff026d2720bb8668b4567" + "5d6e68c4a4b9361b93413f79" ] } ] @@ -433870,8 +433340,7 @@ "_proto": "5748538b2459770af276a261" } ] - }, - "_proto": "5737292724597765e5728562" + } }, "5649ed104bdc2d3d1c8b458b": { "_id": "5649ed104bdc2d3d1c8b458b", @@ -434125,6 +433594,90 @@ }, "_proto": "57372bd3245977670b7cd243" }, + "57372b832459776701014e41": { + "_id": "57372b832459776701014e41", + "_name": "item_ammo_box_545x39_120_BS", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_545x39_120_BS", + "ShortName": "ammo_box_545x39_120_BS", + "Description": "ammo_box_545x39_120_BS", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_bs.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 120, + "StackMaxRandom": 120, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d5556245977459805ee2e", + "_parent": "57372b832459776701014e41", + "_max_count": 120, + "_props": { + "filters": [ + { + "Filter": [ + "56dff026d2720bb8668b4567" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5737292724597765e5728562" + }, "64aceaecc4eda9354b0226b6": { "_id": "64aceaecc4eda9354b0226b6", "_name": "item_ammo_box_46x30_40_JSP", @@ -434208,23 +433761,106 @@ ] } }, - "64b6979341772715af0f9c39": { - "_id": "64b6979341772715af0f9c39", - "_name": "patron_46x30_jsp", - "_parent": "5485a8684bdc2da71d8b4567", + "65702426cfc010a0f50069f8": { + "_id": "65702426cfc010a0f50069f8", + "_name": "item_ammo_box_12g_25_buckshot_525", + "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { - "Name": "patron_46x30_FMJ_SX", - "ShortName": "patron_46x30_FMJ_SX", - "Description": "patron_46x30_fmj_sx", - "Weight": 0.007, + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, "BackgroundColor": "yellow", "Width": 1, "Height": 1, - "StackMaxSize": 70, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber12g", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702426cfc010a0f50069f9", + "_parent": "65702426cfc010a0f50069f8", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "5d6e6772a4b936088465b17c" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "619636be6db0f2477964e710": { + "_id": "619636be6db0f2477964e710", + "_name": "patron_762x35_m62", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_762x35_blackout", + "ShortName": "patron_762x35_blackout", + "Description": "patron_762x35_blackout", + "Weight": 0.016, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 60, "ItemSound": "ammo_singleround", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_46x30_action_sx.bundle", + "path": "assets/content/items/ammo/patrons/patron_762x35_m62.bundle", "rcid": "" }, "UsePrefab": { @@ -434268,42 +433904,42 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 70, + "StackMinRandom": 15, + "StackMaxRandom": 50, "ammoType": "bullet", - "InitialSpeed": 579, - "BallisticCoeficient": 0.175, - "BulletMassGram": 2, - "BulletDiameterMilimeters": 4.65, - "Damage": 46, + "InitialSpeed": 442, + "BallisticCoeficient": 0.334, + "BulletMassGram": 9.3, + "BulletDiameterMilimeters": 7.8, + "Damage": 54, "ammoAccr": 0, - "ammoRec": 0, + "ammoRec": 1, "ammoDist": 0, "buckshotBullets": 0, - "PenetrationPower": 32, - "PenetrationPowerDiviation": 0.1, - "ammoHear": 0, + "PenetrationPower": 36, + "PenetrationPowerDiviation": 0.18, + "ammoHear": -20, "ammoSfx": "standart", "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, "ammoShiftChance": 0, - "casingName": "", + "casingName": "patron_762x35_blackout", "casingEjectPower": 1, - "casingMass": 16, + "casingMass": 11.77, "casingSounds": "rifle556", "ProjectileCount": 1, - "PenetrationChance": 0.2, - "RicochetChance": 0.35, - "FragmentationChance": 0.3, + "PenetrationChance": 0.4, + "RicochetChance": 0.37, + "FragmentationChance": 0.2, "Deterioration": 1, - "SpeedRetardation": 0, - "Tracer": false, + "SpeedRetardation": 2.3e-5, + "Tracer": true, "TracerColor": "red", "TracerDistance": 0, - "ArmorDamage": 37, - "Caliber": "Caliber46x30", - "StaminaBurnPerDamage": 0.1152, + "ArmorDamage": 40, + "Caliber": "Caliber762x35", + "StaminaBurnPerDamage": 0.09216, "HeavyBleedingDelta": 0, "LightBleedingDelta": 0, "ShowBullet": false, @@ -434337,368 +433973,12 @@ "LightAndSoundShotSelfContusionTime": 0, "LightAndSoundShotSelfContusionStrength": 0, "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 0.9, - "HeatFactor": 0.99, - "MalfFeedChance": 0.089, + "DurabilityBurnModificator": 1.25, + "HeatFactor": 1.7, + "MalfFeedChance": 0.055, "RemoveShellAfterFire": false }, - "_proto": "57372140245977611f70ee91" - }, - "5e023e6e34d52a55c3304f71": { - "_id": "5e023e6e34d52a55c3304f71", - "_name": "patron_762x51_tpz_sp", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "default_308", - "ShortName": "default_308", - "Description": "default_308", - "Weight": 0.023, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 40, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x51_tpz_sp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 10, - "StackMaxRandom": 40, - "ammoType": "bullet", - "InitialSpeed": 808, - "BallisticCoeficient": 0.383, - "BulletMassGram": 10.8, - "BulletDiameterMilimeters": 7.85, - "Damage": 87, - "ammoAccr": -2, - "ammoRec": -3, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 30, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": ".308", - "casingEjectPower": 0, - "casingMass": 77.16, - "casingSounds": "rifle762", - "ProjectileCount": 1, - "PenetrationChance": 0.2, - "RicochetChance": 0.4, - "FragmentationChance": 0.35, - "Deterioration": 1, - "SpeedRetardation": 1.5e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 25, - "Caliber": "Caliber762x51", - "StaminaBurnPerDamage": 0.29, - "HeavyBleedingDelta": 0.12, - "LightBleedingDelta": 0.12, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.154, - "DurabilityBurnModificator": 1, - "HeatFactor": 1.984, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "560d61e84bdc2da74d8b4571" - }, - "5fc382c1016cce60e8341b20": { - "_id": "5fc382c1016cce60e8341b20", - "_name": "patron_86x70_lapua_magnum_upz", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "default_308", - "ShortName": "default_308", - "Description": "default_308", - "Weight": 0.045, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 30, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_86x70_lapua_magnum_upz.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 2, - "StackMaxRandom": 8, - "ammoType": "bullet", - "InitialSpeed": 849, - "BallisticCoeficient": 0.48, - "BulletMassGram": 16.2, - "BulletDiameterMilimeters": 8.58, - "Damage": 142, - "ammoAccr": -5, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 32, - "PenetrationPowerDiviation": 1, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": ".338", - "casingEjectPower": 0, - "casingMass": 77.16, - "casingSounds": "50cal", - "ProjectileCount": 1, - "PenetrationChance": 0.6, - "RicochetChance": 0.4, - "FragmentationChance": 0.6, - "Deterioration": 1, - "SpeedRetardation": 1.1e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 70, - "Caliber": "Caliber86x70", - "StaminaBurnPerDamage": 0.2592, - "HeavyBleedingDelta": 0.4, - "LightBleedingDelta": 0.5, - "ShowBullet": false, - "HasGrenaderComponent": true, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": true, - "ExplosionType": "big_round_impact", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.224, - "DurabilityBurnModificator": 1, - "HeatFactor": 2.608, - "MalfFeedChance": 0.0945, - "RemoveShellAfterFire": false - }, - "_proto": "560d61e84bdc2da74d8b4571" - }, - "57372ebf2459776862260582": { - "_id": "57372ebf2459776862260582", - "_name": "item_ammo_box_545x39_30_PS", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_30_PS", - "ShortName": "ammo_box_545x39_30_PS", - "Description": "ammo_box_545x39_30_PS", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 30, - "StackMaxRandom": 30, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d53d0245977459939d002", - "_parent": "57372ebf2459776862260582", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "56dff3afd2720bba668b4567" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "57372e4a24597768553071c2" + "_proto": "54527ac44bdc2d36668b4567" }, "65702420bfc87b3a34093219": { "_id": "65702420bfc87b3a34093219", @@ -435117,6 +434397,90 @@ }, "_proto": "57372f2824597769a270a191" }, + "57372a7f24597766fe0de0c1": { + "_id": "57372a7f24597766fe0de0c1", + "_name": "item_ammo_box_545x39_120_BP_damaged", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_545x39_120_BP_damaged", + "ShortName": "ammo_box_545x39_120_BP_damaged", + "Description": "ammo_box_545x39_120_BP_damaged", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_bp_damaged.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 120, + "StackMaxRandom": 120, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d5583245977459805ee2f", + "_parent": "57372a7f24597766fe0de0c1", + "_max_count": 120, + "_props": { + "filters": [ + { + "Filter": [ + "56dfef82d2720bbd668b4567" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5737292724597765e5728562" + }, "64b8f7c241772715af0f9c3d": { "_id": "64b8f7c241772715af0f9c3d", "_name": "patron_762x54r_bthp", @@ -435337,90 +434701,6 @@ }, "_proto": "573722e82459776104581c21" }, - "57372ac324597767001bc261": { - "_id": "57372ac324597767001bc261", - "_name": "item_ammo_box_545x39_30_BP", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_30_BP", - "ShortName": "ammo_box_545x39_30_BP", - "Description": "ammo_box_545x39_30_BP", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 30, - "StackMaxRandom": 30, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d5568245977459939d006", - "_parent": "57372ac324597767001bc261", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "56dfef82d2720bbd668b4567" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5737292724597765e5728562" - }, "5737260b24597761224311f2": { "_id": "5737260b24597761224311f2", "_name": "item_ammo_box_9x18pm_16_PPT_gzh", @@ -435505,23 +434785,23 @@ }, "_proto": "573725b0245977612125bae2" }, - "657024431419851aef03e6fd": { - "_id": "657024431419851aef03e6fd", - "_name": "item_ammo_box_12g_25_piranha", + "57372ac324597767001bc261": { + "_id": "57372ac324597767001bc261", + "_name": "item_ammo_box_545x39_30_BP", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, + "Name": "ammo_box_545x39_30_BP", + "ShortName": "ammo_box_545x39_30_BP", + "Description": "ammo_box_545x39_30_BP", + "Weight": 0.015, "BackgroundColor": "yellow", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30.bundle", "rcid": "" }, "UsePrefab": { @@ -435549,7 +434829,7 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": false, + "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -435565,20 +434845,20 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber12g", + "StackMinRandom": 30, + "StackMaxRandom": 30, + "ammoCaliber": "Caliber9x18PM", "StackSlots": [ { "_name": "cartridges", - "_id": "657024431419851aef03e6fe", - "_parent": "657024431419851aef03e6fd", - "_max_count": 25, + "_id": "574d5568245977459939d006", + "_parent": "57372ac324597767001bc261", + "_max_count": 30, "_props": { "filters": [ { "Filter": [ - "64b8ee384b75259c590fa89b" + "56dfef82d2720bbd668b4567" ] } ] @@ -435586,7 +434866,8 @@ "_proto": "5748538b2459770af276a261" } ] - } + }, + "_proto": "5737292724597765e5728562" }, "6489870774a806211e4fb685": { "_id": "6489870774a806211e4fb685", @@ -435754,6 +435035,89 @@ ] } }, + "657024431419851aef03e6fd": { + "_id": "657024431419851aef03e6fd", + "_name": "item_ammo_box_12g_25_piranha", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber12g", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657024431419851aef03e6fe", + "_parent": "657024431419851aef03e6fd", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "64b8ee384b75259c590fa89b" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, "6570243bbfc87b3a3409321f": { "_id": "6570243bbfc87b3a3409321f", "_name": "item_ammo_box_12g_25_buckshot_85", @@ -435837,9 +435201,261 @@ ] } }, - "6570266bc5d7d4cb4d078594": { - "_id": "6570266bc5d7d4cb4d078594", - "_name": "item_ammo_box_556x45_100_mk_318", + "57372e94245977685648d3e1": { + "_id": "57372e94245977685648d3e1", + "_name": "item_ammo_box_545x39_120_PS_damaged", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_545x39_120_PS_damaged", + "ShortName": "ammo_box_545x39_120_PS_damaged", + "Description": "ammo_box_545x39_120_PS_damaged", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_ps_damaged.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 120, + "StackMaxRandom": 120, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d53ef245977459939d003", + "_parent": "57372e94245977685648d3e1", + "_max_count": 120, + "_props": { + "filters": [ + { + "Filter": [ + "56dff3afd2720bba668b4567" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "57372e1924597768553071c1" + }, + "57372d4c245977685a3da2a1": { + "_id": "57372d4c245977685a3da2a1", + "_name": "item_ammo_box_545x39_120_PP_damaged", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_545x39_120_PP_damaged", + "ShortName": "ammo_box_545x39_120_PP_damaged", + "Description": "ammo_box_545x39_120_PP_damaged", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_pp_damaged.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 120, + "StackMaxRandom": 120, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d547724597745a1163d83", + "_parent": "57372d4c245977685a3da2a1", + "_max_count": 120, + "_props": { + "filters": [ + { + "Filter": [ + "56dff2ced2720bb4668b4567" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "57372c56245977685e584582" + }, + "5737330a2459776af32363a1": { + "_id": "5737330a2459776af32363a1", + "_name": "item_ammo_box_545x39_30_bpz_fmj", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_545x39_30_bpz_fmj", + "ShortName": "ammo_box_545x39_30_bpz_fmj", + "Description": "ammo_box_545x39_30_bpz_fmj", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30_bpz_fmj.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 30, + "StackMaxRandom": 30, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d532624597745a1163d82", + "_parent": "5737330a2459776af32363a1", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "56dff0bed2720bb0668b4567" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5737300424597769942d5a01" + }, + "5447ac644bdc2d6c208b4567": { + "_id": "5447ac644bdc2d6c208b4567", + "_name": "ammo_box_556x45_xx_m193ball", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -435848,12 +435464,263 @@ "Description": "ammo_box_556x45_xx_m193ball", "Weight": 0.01, "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber556x45NATO", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d57d5245977459805ee34", + "_parent": "5447ac644bdc2d6c208b4567", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "54527a984bdc2d4e668b4567" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "5c1127d0d174af29be75cf68": { + "_id": "5c1127d0d174af29be75cf68", + "_name": "item_ammo_box_12g_rip_5", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_9x19_default", + "ShortName": "ammo_box_9x19_default", + "Description": "ammo_box_9x19_default", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_shotgun", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 5, + "StackMaxRandom": 5, + "ammoCaliber": "Caliber12g", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "5c1127d0d174af29be75cf6a", + "_parent": "5c1127d0d174af29be75cf68", + "_max_count": 5, + "_props": { + "filters": [ + { + "Filter": [ + "5c0d591486f7744c505b416f" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5737273924597765dd374461" + }, + "57372e73245977685d4159b4": { + "_id": "57372e73245977685d4159b4", + "_name": "item_ammo_box_545x39_120_PS", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_545x39_120_PS", + "ShortName": "ammo_box_545x39_120_PS", + "Description": "ammo_box_545x39_120_PS", + "Weight": 0.1, + "BackgroundColor": "yellow", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_100_crtg.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_ps.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 120, + "StackMaxRandom": 120, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d5aa024597745970e7c89", + "_parent": "57372e73245977685d4159b4", + "_max_count": 120, + "_props": { + "filters": [ + { + "Filter": [ + "56dff3afd2720bba668b4567" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "57372deb245977685d4159b3" + }, + "64898602f09d032aa9399d56": { + "_id": "64898602f09d032aa9399d56", + "_name": "item_ammo_box_545x39_30_7n40", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30.bundle", "rcid": "" }, "UsePrefab": { @@ -435897,20 +435764,20 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 100, - "StackMaxRandom": 100, - "ammoCaliber": "Caliber556x45NATO", + "StackMinRandom": 30, + "StackMaxRandom": 30, + "ammoCaliber": "Caliber545x39", "StackSlots": [ { "_name": "cartridges", - "_id": "6570266bc5d7d4cb4d078595", - "_parent": "6570266bc5d7d4cb4d078594", - "_max_count": 100, + "_id": "64898602f09d032aa9399d57", + "_parent": "64898602f09d032aa9399d56", + "_max_count": 30, "_props": { "filters": [ { "Filter": [ - "60194943740c5d77f6705eea" + "61962b617c6c7b169525f168" ] } ] @@ -435920,295 +435787,23 @@ ] } }, - "5736026a245977644601dc61": { - "_id": "5736026a245977644601dc61", - "_name": "patron_762x25tt_P_Gl", - "_parent": "5485a8684bdc2da71d8b4567", + "64acea09c4eda9354b0226ad": { + "_id": "64acea09c4eda9354b0226ad", + "_name": "item_ammo_box_762x39_20_T", + "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { - "Name": "patron_762x25tt_P_Gl", - "ShortName": "patron_762x25tt_P_Gl", - "Description": "patron_762x25tt_P_Gl", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x25tt_p_gl.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 20, - "ammoType": "bullet", - "InitialSpeed": 430, - "BallisticCoeficient": 0.127, - "BulletMassGram": 5.5, - "BulletDiameterMilimeters": 7.85, - "Damage": 58, - "ammoAccr": 0, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 14, - "PenetrationPowerDiviation": 0.07, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.02, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "rifle762", - "ProjectileCount": 1, - "PenetrationChance": 0.17, - "RicochetChance": 0.065, - "FragmentationChance": 0.25, - "Deterioration": 1, - "SpeedRetardation": 5.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 32, - "Caliber": "Caliber762x25TT", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1, - "HeatFactor": 0.9558, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "573602322459776445391df1" - }, - "5fd20ff893a8961fc660a954": { - "_id": "5fd20ff893a8961fc660a954", - "_name": "patron_762x35_blackout_ap", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_762x35_blackout", - "ShortName": "patron_762x35_blackout", - "Description": "patron_762x35_blackout", - "Weight": 0.014, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x35_ap.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 15, - "StackMaxRandom": 50, - "ammoType": "bullet", - "InitialSpeed": 635, - "BallisticCoeficient": 0.334, - "BulletMassGram": 9.3, - "BulletDiameterMilimeters": 7.8, - "Damage": 51, - "ammoAccr": 0, - "ammoRec": 3, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 48, - "PenetrationPowerDiviation": 0.15, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 3, - "ammoShiftChance": 0, - "casingName": "patron_762x35_blackout", - "casingEjectPower": 1, - "casingMass": 11.77, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.46, - "RicochetChance": 0.3, - "FragmentationChance": 0.1, - "Deterioration": 1, - "SpeedRetardation": 2.3e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 65, - "Caliber": "Caliber762x35", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0.15, - "LightBleedingDelta": 0.15, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.196, - "DurabilityBurnModificator": 1.5, - "HeatFactor": 1.99, - "MalfFeedChance": 0.086, - "RemoveShellAfterFire": false - }, - "_proto": "54527ac44bdc2d36668b4567" - }, - "64b8725c4b75259c590fa899": { - "_id": "64b8725c4b75259c590fa899", - "_name": "patron_762x35_cbj", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_762x35_blackout", - "ShortName": "patron_762x35_blackout", - "Description": "patron_762x35_blackout", + "Name": "ammo_box_762x39_20_PS", + "ShortName": "ammo_box_762x39_20_PS", + "Description": "ammo_box_762x39_20_PS", "Weight": 0.015, "BackgroundColor": "yellow", "Width": 1, "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x35_cbj.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_762x39_t.bundle", "rcid": "" }, "UsePrefab": { @@ -436227,415 +435822,7 @@ "QuestItem": false, "LootExperience": 0, "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 15, - "StackMaxRandom": 50, - "ammoType": "bullet", - "InitialSpeed": 725, - "BallisticCoeficient": 0.334, - "BulletMassGram": 9.3, - "BulletDiameterMilimeters": 7.8, - "Damage": 58, - "ammoAccr": 0, - "ammoRec": 5, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 43, - "PenetrationPowerDiviation": 0.21, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": "patron_762x35_blackout", - "casingEjectPower": 1, - "casingMass": 11.77, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.34, - "RicochetChance": 0.2, - "FragmentationChance": 0.15, - "Deterioration": 1, - "SpeedRetardation": 2.3e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 57, - "Caliber": "Caliber762x35", - "StaminaBurnPerDamage": 0.0864, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.196, - "DurabilityBurnModificator": 1.34, - "HeatFactor": 1.86, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "54527ac44bdc2d36668b4567" - }, - "573601b42459776410737435": { - "_id": "573601b42459776410737435", - "_name": "patron_762x25tt_LRN", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_762x25tt_LRN", - "ShortName": "patron_762x25tt_LRN", - "Description": "patron_762x25tt_LRN", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x25tt_lrn.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 20, - "ammoType": "bullet", - "InitialSpeed": 375, - "BallisticCoeficient": 0.146, - "BulletMassGram": 6.35, - "BulletDiameterMilimeters": 7.85, - "Damage": 64, - "ammoAccr": 5, - "ammoRec": -5, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 8, - "PenetrationPowerDiviation": 0.116, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.03, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 5, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "rifle762", - "ProjectileCount": 1, - "PenetrationChance": 0.16, - "RicochetChance": 0.05, - "FragmentationChance": 0.35, - "Deterioration": 1, - "SpeedRetardation": 5.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 28, - "Caliber": "Caliber762x25TT", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0.1, - "LightBleedingDelta": 0.15, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.14, - "DurabilityBurnModificator": 1.15, - "HeatFactor": 1.062, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false - }, - "_proto": "5735ff5c245977640e39ba7e" - }, - "6196364158ef8c428c287d9f": { - "_id": "6196364158ef8c428c287d9f", - "_name": "patron_762x35_vmax", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_762x35_blackout", - "ShortName": "patron_762x35_blackout", - "Description": "patron_762x35_blackout", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x35_vmax.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 15, - "StackMaxRandom": 50, - "ammoType": "bullet", - "InitialSpeed": 723, - "BallisticCoeficient": 0.334, - "BulletMassGram": 9.3, - "BulletDiameterMilimeters": 7.8, - "Damage": 72, - "ammoAccr": 30, - "ammoRec": -10, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 20, - "PenetrationPowerDiviation": 0.21, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": "patron_762x35_blackout", - "casingEjectPower": 1, - "casingMass": 11.77, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.2, - "RicochetChance": 0.1, - "FragmentationChance": 0.25, - "Deterioration": 1, - "SpeedRetardation": 2.3e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 25, - "Caliber": "Caliber762x35", - "StaminaBurnPerDamage": 0.1152, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0.22, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.1, - "HeatFactor": 1.8, - "MalfFeedChance": 0.075, - "RemoveShellAfterFire": false - }, - "_proto": "54527ac44bdc2d36668b4567" - }, - "59e4cf5286f7741778269d8a": { - "_id": "59e4cf5286f7741778269d8a", - "_name": "patron_762x39_T45M", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_762x39_T45M", - "ShortName": "patron_762x39_T45M", - "Description": "patron_762x39_T45M", - "Weight": 0.016, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x39_t45m.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, + "HideEntrails": true, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, @@ -436661,80 +435848,278 @@ "IsSpecialSlotOnly": false, "IsUnremovable": false, "StackMinRandom": 20, - "StackMaxRandom": 60, - "ammoType": "bullet", - "InitialSpeed": 720, - "BallisticCoeficient": 0.227, - "BulletMassGram": 7.5, - "BulletDiameterMilimeters": 7.92, - "Damage": 64, - "ammoAccr": -4, - "ammoRec": -6, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 30, - "PenetrationPowerDiviation": 0.27, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 4, - "ammoShiftChance": 0, - "casingName": "7.62x39 мм T45M", - "casingEjectPower": 0, - "casingMass": 16.5, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.37, - "RicochetChance": 0.35, - "FragmentationChance": 0.12, - "Deterioration": 1, - "SpeedRetardation": 2.5e-5, - "Tracer": true, - "TracerColor": "red", - "TracerDistance": 0.5, - "ArmorDamage": 46, - "Caliber": "Caliber762x39", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.2, - "HeatFactor": 1.2, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false + "StackMaxRandom": 20, + "ammoCaliber": "Caliber762x39", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "64acea09c4eda9354b0226ae", + "_parent": "64acea09c4eda9354b0226ad", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "59e4cf5286f7741778269d8a" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] }, - "_proto": "56dff338d2720bbd668b4569" + "_proto": "5447ac644bdc2d6c208b4567" + }, + "64ace9d9b5bf5e95f50a4c1d": { + "_id": "64ace9d9b5bf5e95f50a4c1d", + "_name": "item_ammo_box_762x39_20_FMJ", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_762x39_20_PS", + "ShortName": "ammo_box_762x39_20_PS", + "Description": "ammo_box_762x39_20_PS", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_762x39_fmj.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber762x39", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "64ace9d9b5bf5e95f50a4c1e", + "_parent": "64ace9d9b5bf5e95f50a4c1d", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "64b7af5a8532cf95ee0a0dbd" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5447ac644bdc2d6c208b4567" + }, + "65702414c5d7d4cb4d078555": { + "_id": "65702414c5d7d4cb4d078555", + "_name": "item_ammo_box_1143x23_50_rip", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_45_acp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber1143x23ACP", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702414c5d7d4cb4d078556", + "_parent": "65702414c5d7d4cb4d078555", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "5ea2a8e200685063ec28c05a" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657024581419851aef03e700": { + "_id": "657024581419851aef03e700", + "_name": "item_ammo_box_12g_25_slug_poleva_6u", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber12g", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657024581419851aef03e701", + "_parent": "657024581419851aef03e700", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "5d6e689ca4b9361bc8618956" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } }, "57372db0245977685d4159b2": { "_id": "57372db0245977685d4159b2", @@ -436820,6 +436205,1614 @@ }, "_proto": "57372c89245977685d4159b1" }, + "65702479c5d7d4cb4d07855e": { + "_id": "65702479c5d7d4cb4d07855e", + "_name": "item_ammo_box_12g_25_slug_hp_copper", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber12g", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702479c5d7d4cb4d07855f", + "_parent": "65702479c5d7d4cb4d07855e", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "5d6e68b3a4b9361bca7e50b5" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "6529243824cbe3c74a05e5c1": { + "_id": "6529243824cbe3c74a05e5c1", + "_name": "patron_68x51", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "default_308", + "ShortName": "default_308", + "Description": "default_308", + "Weight": 0.024, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 40, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_68x51.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 1, + "StackMaxRandom": 15, + "ammoType": "bullet", + "InitialSpeed": 914, + "BallisticCoeficient": 0.388, + "BulletMassGram": 8.7, + "BulletDiameterMilimeters": 7, + "Damage": 72, + "ammoAccr": 3, + "ammoRec": 10, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 47, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": ".308", + "casingEjectPower": 0, + "casingMass": 77.16, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.4, + "RicochetChance": 0.3, + "FragmentationChance": 0.12, + "Deterioration": 1, + "SpeedRetardation": 1.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 58, + "Caliber": "Caliber68x51", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.168, + "DurabilityBurnModificator": 1.5, + "HeatFactor": 2.53, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false + }, + "_proto": "560d61e84bdc2da74d8b4571" + }, + "5a6086ea4f39f99cd479502f": { + "_id": "5a6086ea4f39f99cd479502f", + "_name": "patron_762x51_M61", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "default_308", + "ShortName": "default_308", + "Description": "default_308", + "Weight": 0.024, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 40, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x51_m61.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 1, + "StackMaxRandom": 15, + "ammoType": "bullet", + "InitialSpeed": 849, + "BallisticCoeficient": 0.346, + "BulletMassGram": 9.75, + "BulletDiameterMilimeters": 7.85, + "Damage": 70, + "ammoAccr": 3, + "ammoRec": 10, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 64, + "PenetrationPowerDiviation": 1, + "ammoHear": 0, + "ammoSfx": "standart", + "MisfireChance": 0.01, + "MinFragmentsCount": 1, + "MaxFragmentsCount": 2, + "ammoShiftChance": 0, + "casingName": ".308", + "casingEjectPower": 0, + "casingMass": 77.16, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.9, + "RicochetChance": 0.3, + "FragmentationChance": 0.13, + "Deterioration": 1, + "SpeedRetardation": 1.5e-5, + "Tracer": false, + "TracerColor": "red", + "TracerDistance": 0, + "ArmorDamage": 83, + "Caliber": "Caliber762x51", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.1834, + "DurabilityBurnModificator": 1.8, + "HeatFactor": 2.356, + "MalfFeedChance": 0.087, + "RemoveShellAfterFire": false + }, + "_proto": "560d61e84bdc2da74d8b4571" + }, + "5737339e2459776af261abeb": { + "_id": "5737339e2459776af261abeb", + "_name": "item_ammo_box_545x39_30_bpz_hp", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_545x39_30_bpz_hp", + "ShortName": "ammo_box_545x39_30_bpz_hp", + "Description": "ammo_box_545x39_30_bpz_hp", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30_bpz_hp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 30, + "StackMaxRandom": 30, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d5312245977459a2f1582", + "_parent": "5737339e2459776af261abeb", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "56dff216d2720bbd668b4568" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5737330a2459776af32363a1" + }, + "657023f1bfc87b3a34093210": { + "_id": "657023f1bfc87b3a34093210", + "_name": "item_ammo_box_366_20_fmj", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_366_tkm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber366TKM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657023f1bfc87b3a34093211", + "_parent": "657023f1bfc87b3a34093210", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "59e6542b86f77411dc52a77a" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "6570246fcfc010a0f5006a01": { + "_id": "6570246fcfc010a0f5006a01", + "_name": "item_ammo_box_12g_25_slug", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber12g", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6570246fcfc010a0f5006a02", + "_parent": "6570246fcfc010a0f5006a01", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "58820d1224597753c90aeb13" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "64aceab0426a303417060654": { + "_id": "64aceab0426a303417060654", + "_name": "item_ammo_box_762x54R_20_SPBT", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_762x54r_xx_SNB", + "ShortName": "ammo_box_762x54r_xx_SNB", + "Description": "ammo_box_762x54r_xx_SNB", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_762x54r_sp_bt.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber762x54R", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "64aceab0426a303417060655", + "_parent": "64aceab0426a303417060654", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "64b8f7b5389d7ffd620ccba2" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5447ac644bdc2d6c208b4567" + }, + "65702406bfc87b3a34093216": { + "_id": "65702406bfc87b3a34093216", + "_name": "item_ammo_box_1143x23_50_hydra_shok", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_45_acp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber1143x23ACP", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702406bfc87b3a34093217", + "_parent": "65702406bfc87b3a34093216", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "5efb0fc6aeb21837e749c801" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657023d6cfc010a0f50069e9": { + "_id": "657023d6cfc010a0f50069e9", + "_name": "item_ammo_box_338_20_tac_x", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_338_lapua_magnum.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber86x70", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657023d6cfc010a0f50069ea", + "_parent": "657023d6cfc010a0f50069e9", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5fc382b6d6fa9c00c571bbc3" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "560d75f54bdc2da74d8b4573": { + "_id": "560d75f54bdc2da74d8b4573", + "_name": "ammo_box_762x54r_xx_SNB", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_762x54r_xx_SNB", + "ShortName": "ammo_box_762x54r_xx_SNB", + "Description": "ammo_box_762x54r_xx_SNB", + "Weight": 0.015, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x54mm_r.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber762x54R", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d57b724597745b015be65", + "_parent": "560d75f54bdc2da74d8b4573", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "560d61e84bdc2da74d8b4571" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5447ac644bdc2d6c208b4567" + }, + "5737280e24597765cc785b5c": { + "_id": "5737280e24597765cc785b5c", + "_name": "item_ammo_box_9x18pm_16_PSV", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_9x18pm_16_PSV", + "ShortName": "ammo_box_9x18pm_16_PSV", + "Description": "ammo_box_9x18pm_16_PSV", + "Weight": 0.015, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18pm_16.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 16, + "StackMaxRandom": 16, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d55f624597745a21eb3da", + "_parent": "5737280e24597765cc785b5c", + "_max_count": 16, + "_props": { + "filters": [ + { + "Filter": [ + "5737207f24597760ff7b25f2" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "573727c624597765cc785b5b" + }, + "64ace9ff03378853630da538": { + "_id": "64ace9ff03378853630da538", + "_name": "item_ammo_box_762x39_20_SP", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_762x39_20_PS", + "ShortName": "ammo_box_762x39_20_PS", + "Description": "ammo_box_762x39_20_PS", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_762x39_sp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber762x39", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "64ace9ff03378853630da539", + "_parent": "64ace9ff03378853630da538", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "64b7af734b75259c590fa895" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5447ac644bdc2d6c208b4567" + }, + "64898583d5b4df6140000a1d": { + "_id": "64898583d5b4df6140000a1d", + "_name": "item_ammo_box_556x45_50_SSA_AP", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber556x45NATO", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "64898583d5b4df6140000a1e", + "_parent": "64898583d5b4df6140000a1d", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "601949593ae8f707c4608daa" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "57372f2824597769a270a191": { + "_id": "57372f2824597769a270a191", + "_name": "item_ammo_box_545x39_120_T_damaged", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_545x39_120_T_damaged", + "ShortName": "ammo_box_545x39_120_T_damaged", + "Description": "ammo_box_545x39_120_T_damaged", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_t_damaged.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 120, + "StackMaxRandom": 120, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d539c24597745970e7c82", + "_parent": "57372f2824597769a270a191", + "_max_count": 120, + "_props": { + "filters": [ + { + "Filter": [ + "56dff4a2d2720bbd668b456a" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "57372e94245977685648d3e1" + }, + "57372e1924597768553071c1": { + "_id": "57372e1924597768553071c1", + "_name": "item_ammo_box_545x39_120_PRS_damaged", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_545x39_120_PRS_damaged", + "ShortName": "ammo_box_545x39_120_PRS_damaged", + "Description": "ammo_box_545x39_120_PRS_damaged", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_prs_damaged.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 120, + "StackMaxRandom": 120, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d541f24597745970e7c84", + "_parent": "57372e1924597768553071c1", + "_max_count": 120, + "_props": { + "filters": [ + { + "Filter": [ + "56dff338d2720bbd668b4569" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "57372d4c245977685a3da2a1" + }, + "6570243fcfc010a0f50069fb": { + "_id": "6570243fcfc010a0f50069fb", + "_name": "item_ammo_box_12g_25_dual_sabot_slug", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber12g", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6570243fcfc010a0f50069fc", + "_parent": "6570243fcfc010a0f50069fb", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "5d6e68dea4b9361bcc29e659" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "5c11279ad174af029d64592b": { + "_id": "5c11279ad174af029d64592b", + "_name": "item_ammo_box_556x45_varmageddon_20", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_556x45_varmageddon_20.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber556x45NATO", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "5c11279ad174af029d64592d", + "_parent": "5c11279ad174af029d64592b", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5c0d5ae286f7741e46554302" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5447ac644bdc2d6c208b4567" + }, + "6570247ebfc87b3a34093229": { + "_id": "6570247ebfc87b3a34093229", + "_name": "item_ammo_box_12g_25_slug_superformance", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber12g", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6570247ebfc87b3a3409322a", + "_parent": "6570247ebfc87b3a34093229", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "5d6e68d1a4b93622fe60e845" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, "64b7af734b75259c590fa895": { "_id": "64b7af734b75259c590fa895", "_name": "patron_762x39_sp", @@ -437039,89 +438032,6 @@ }, "_proto": "5737273924597765dd374461" }, - "64aceafcb5bf5e95f50a4c20": { - "_id": "64aceafcb5bf5e95f50a4c20", - "_name": "item_ammo_box_9x19_50_FMJ", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x19_m882_fmj.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber9x19PARA", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "64aceafcb5bf5e95f50a4c21", - "_parent": "64aceafcb5bf5e95f50a4c20", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "64b7bbb74b75259c590fa897" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, "64ace9f9c4eda9354b0226aa": { "_id": "64ace9f9c4eda9354b0226aa", "_name": "item_ammo_box_762x39_20_PP", @@ -437206,177 +438116,9 @@ }, "_proto": "5447ac644bdc2d6c208b4567" }, - "560d75f54bdc2da74d8b4573": { - "_id": "560d75f54bdc2da74d8b4573", - "_name": "ammo_box_762x54r_xx_SNB", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_762x54r_xx_SNB", - "ShortName": "ammo_box_762x54r_xx_SNB", - "Description": "ammo_box_762x54r_xx_SNB", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x54mm_r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x54R", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d57b724597745b015be65", - "_parent": "560d75f54bdc2da74d8b4573", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "560d61e84bdc2da74d8b4571" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5447ac644bdc2d6c208b4567" - }, - "64ace9ff03378853630da538": { - "_id": "64ace9ff03378853630da538", - "_name": "item_ammo_box_762x39_20_SP", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_762x39_20_PS", - "ShortName": "ammo_box_762x39_20_PS", - "Description": "ammo_box_762x39_20_PS", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_762x39_sp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x39", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "64ace9ff03378853630da539", - "_parent": "64ace9ff03378853630da538", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "64b7af734b75259c590fa895" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5447ac644bdc2d6c208b4567" - }, - "64898583d5b4df6140000a1d": { - "_id": "64898583d5b4df6140000a1d", - "_name": "item_ammo_box_556x45_50_SSA_AP", + "64aceafcb5bf5e95f50a4c20": { + "_id": "64aceafcb5bf5e95f50a4c20", + "_name": "item_ammo_box_9x19_50_FMJ", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -437390,7 +438132,7 @@ "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x19_m882_fmj.bundle", "rcid": "" }, "UsePrefab": { @@ -437418,7 +438160,7 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": false, + "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -437436,18 +438178,18 @@ "IsUnremovable": false, "StackMinRandom": 50, "StackMaxRandom": 50, - "ammoCaliber": "Caliber556x45NATO", + "ammoCaliber": "Caliber9x19PARA", "StackSlots": [ { "_name": "cartridges", - "_id": "64898583d5b4df6140000a1e", - "_parent": "64898583d5b4df6140000a1d", + "_id": "64aceafcb5bf5e95f50a4c21", + "_parent": "64aceafcb5bf5e95f50a4c20", "_max_count": 50, "_props": { "filters": [ { "Filter": [ - "601949593ae8f707c4608daa" + "64b7bbb74b75259c590fa897" ] } ] @@ -437457,93 +438199,9 @@ ] } }, - "5737280e24597765cc785b5c": { - "_id": "5737280e24597765cc785b5c", - "_name": "item_ammo_box_9x18pm_16_PSV", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_9x18pm_16_PSV", - "ShortName": "ammo_box_9x18pm_16_PSV", - "Description": "ammo_box_9x18pm_16_PSV", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18pm_16.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 16, - "StackMaxRandom": 16, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d55f624597745a21eb3da", - "_parent": "5737280e24597765cc785b5c", - "_max_count": 16, - "_props": { - "filters": [ - { - "Filter": [ - "5737207f24597760ff7b25f2" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "573727c624597765cc785b5b" - }, - "6570243fcfc010a0f50069fb": { - "_id": "6570243fcfc010a0f50069fb", - "_name": "item_ammo_box_12g_25_dual_sabot_slug", + "657023fcbfc87b3a34093213": { + "_id": "657023fcbfc87b3a34093213", + "_name": "item_ammo_box_366_20_geksa", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -437557,7 +438215,7 @@ "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_366_tkm.bundle", "rcid": "" }, "UsePrefab": { @@ -437601,20 +438259,20 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber12g", + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber366TKM", "StackSlots": [ { "_name": "cartridges", - "_id": "6570243fcfc010a0f50069fc", - "_parent": "6570243fcfc010a0f50069fb", - "_max_count": 25, + "_id": "657023fcbfc87b3a34093214", + "_parent": "657023fcbfc87b3a34093213", + "_max_count": 20, "_props": { "filters": [ { "Filter": [ - "5d6e68dea4b9361bcc29e659" + "59e6658b86f77411d949b250" ] } ] @@ -437624,90 +438282,6 @@ ] } }, - "57372f2824597769a270a191": { - "_id": "57372f2824597769a270a191", - "_name": "item_ammo_box_545x39_120_T_damaged", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_120_T_damaged", - "ShortName": "ammo_box_545x39_120_T_damaged", - "Description": "ammo_box_545x39_120_T_damaged", - "Weight": 0.1, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_t_damaged.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 120, - "StackMaxRandom": 120, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d539c24597745970e7c82", - "_parent": "57372f2824597769a270a191", - "_max_count": 120, - "_props": { - "filters": [ - { - "Filter": [ - "56dff4a2d2720bbd668b456a" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "57372e94245977685648d3e1" - }, "59e4d24686f7741776641ac7": { "_id": "59e4d24686f7741776641ac7", "_name": "patron_762x39_US", @@ -437844,90 +438418,6 @@ }, "_proto": "56dff338d2720bbd668b4569" }, - "5c1262a286f7743f8a69aab2": { - "_id": "5c1262a286f7743f8a69aab2", - "_name": "item_ammo_box_545x39_7N39_30", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_30_BP", - "ShortName": "ammo_box_545x39_30_BP", - "Description": "ammo_box_545x39_30_BP", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 30, - "StackMaxRandom": 30, - "ammoCaliber": "Caliber556x45NATO", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "5c1262a286f7743f8a69aab4", - "_parent": "5c1262a286f7743f8a69aab2", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5e4486f77478390952fe" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5737292724597765e5728562" - }, "573725b0245977612125bae2": { "_id": "573725b0245977612125bae2", "_name": "item_ammo_box_9x18pm_16_PPE_gzh", @@ -438096,23 +438586,23 @@ }, "_proto": "5448bc144bdc2d5a308b4569" }, - "573603c924597764442bd9cb": { - "_id": "573603c924597764442bd9cb", - "_name": "patron_762x25tt_T_Gzh", - "_parent": "5485a8684bdc2da71d8b4567", + "5c1262a286f7743f8a69aab2": { + "_id": "5c1262a286f7743f8a69aab2", + "_name": "item_ammo_box_545x39_7N39_30", + "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { - "Name": "patron_762x25tt_T_Gzh", - "ShortName": "patron_762x25tt_T_Gzh", - "Description": "patron_762x25tt_T_Gzh", - "Weight": 0.01, + "Name": "ammo_box_545x39_30_BP", + "ShortName": "ammo_box_545x39_30_BP", + "Description": "ammo_box_545x39_30_BP", + "Weight": 0.015, "BackgroundColor": "yellow", "Width": 1, "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x25tt_t_gzh.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30.bundle", "rcid": "" }, "UsePrefab": { @@ -438131,7 +438621,7 @@ "QuestItem": false, "LootExperience": 0, "ExamineExperience": 10, - "HideEntrails": false, + "HideEntrails": true, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, @@ -438140,7 +438630,7 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": true, + "CanSellOnRagfair": false, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -438156,81 +438646,29 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 1, - "StackMaxRandom": 20, - "ammoType": "bullet", - "InitialSpeed": 415, - "BallisticCoeficient": 0.124, - "BulletMassGram": 5.39, - "BulletDiameterMilimeters": 7.85, - "Damage": 55, - "ammoAccr": -10, - "ammoRec": 0, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 18, - "PenetrationPowerDiviation": 0.08, - "ammoHear": 0, - "ammoSfx": "tracer_red", - "MisfireChance": 0.01, - "MinFragmentsCount": 2, - "MaxFragmentsCount": 4, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "rifle762", - "ProjectileCount": 1, - "PenetrationChance": 0.18, - "RicochetChance": 0.1, - "FragmentationChance": 0.166, - "Deterioration": 1, - "SpeedRetardation": 5.0e-5, - "Tracer": true, - "TracerColor": "tracerRed", - "TracerDistance": 0.5, - "ArmorDamage": 34, - "Caliber": "Caliber762x25TT", - "StaminaBurnPerDamage": 0.144, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.154, - "DurabilityBurnModificator": 1.5, - "HeatFactor": 1.18, - "MalfFeedChance": 0.02, - "RemoveShellAfterFire": false + "StackMinRandom": 30, + "StackMaxRandom": 30, + "ammoCaliber": "Caliber556x45NATO", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "5c1262a286f7743f8a69aab4", + "_parent": "5c1262a286f7743f8a69aab2", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "5c0d5e4486f77478390952fe" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] }, - "_proto": "573603562459776430731618" + "_proto": "5737292724597765e5728562" }, "64acea16c4eda9354b0226b0": { "_id": "64acea16c4eda9354b0226b0", @@ -438316,173 +438754,6 @@ }, "_proto": "5447ac644bdc2d6c208b4567" }, - "64aceac0c4eda9354b0226b3": { - "_id": "64aceac0c4eda9354b0226b3", - "_name": "item_ammo_box_762x54R_20_FMJ", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_762x54r_xx_SNB", - "ShortName": "ammo_box_762x54r_xx_SNB", - "Description": "ammo_box_762x54r_xx_SNB", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x54mm_r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x54R", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "64aceac0c4eda9354b0226b4", - "_parent": "64aceac0c4eda9354b0226b3", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "64b8f7968532cf95ee0a0dbf" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5447ac644bdc2d6c208b4567" - }, - "657023e31419851aef03e6ee": { - "_id": "657023e31419851aef03e6ee", - "_name": "item_ammo_box_357_25_hp", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_357_magnum.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber9x33R", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657023e31419851aef03e6ef", - "_parent": "657023e31419851aef03e6ee", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "62330bfadc5883093563729b" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, "648984b8d5b4df6140000a1a": { "_id": "648984b8d5b4df6140000a1a", "_name": "item_ammo_box_762x54R_20_BS", @@ -438566,173 +438837,6 @@ ] } }, - "5737256c2459776125652acd": { - "_id": "5737256c2459776125652acd", - "_name": "item_ammo_box_9x18pm_16_PMM", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_9x18pm_16_PMM", - "ShortName": "ammo_box_9x18pm_16_PMM", - "Description": "ammo_box_9x18pm_16_PMM", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18pm_16.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 16, - "StackMaxRandom": 16, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d56ba245977459939d008", - "_parent": "5737256c2459776125652acd", - "_max_count": 16, - "_props": { - "filters": [ - { - "Filter": [ - "57371aab2459775a77142f22" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5737250c2459776125652acc" - }, - "648987d673c462723909a151": { - "_id": "648987d673c462723909a151", - "_name": "item_ammo_box_9x19_50_PBP", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x19_m882_fmj.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber9x19PARA", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "648987d673c462723909a152", - "_parent": "648987d673c462723909a151", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0da7a29a85116f6ea05f" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, "65702474bfc87b3a34093226": { "_id": "65702474bfc87b3a34093226", "_name": "item_ammo_box_12g_25_flechette", @@ -438899,9 +439003,9 @@ ] } }, - "657023f81419851aef03e6f1": { - "_id": "657023f81419851aef03e6f1", - "_name": "item_ammo_box_366_20_custom_ap", + "648987d673c462723909a151": { + "_id": "648987d673c462723909a151", + "_name": "item_ammo_box_9x19_50_PBP", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -438915,7 +439019,7 @@ "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_366_tkm.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x19_m882_fmj.bundle", "rcid": "" }, "UsePrefab": { @@ -438959,20 +439063,20 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber366TKM", + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber9x19PARA", "StackSlots": [ { "_name": "cartridges", - "_id": "657023f81419851aef03e6f2", - "_parent": "657023f81419851aef03e6f1", - "_max_count": 20, + "_id": "648987d673c462723909a152", + "_parent": "648987d673c462723909a151", + "_max_count": 50, "_props": { "filters": [ { "Filter": [ - "5f0596629e22f464da6bbdd9" + "5efb0da7a29a85116f6ea05f" ] } ] @@ -438982,9 +439086,260 @@ ] } }, - "64898838d5b4df6140000a20": { - "_id": "64898838d5b4df6140000a20", - "_name": "item_ammo_box_12g_25_AP", + "657023e31419851aef03e6ee": { + "_id": "657023e31419851aef03e6ee", + "_name": "item_ammo_box_357_25_hp", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_357_magnum.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber9x33R", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657023e31419851aef03e6ef", + "_parent": "657023e31419851aef03e6ee", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "62330bfadc5883093563729b" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "64aceac0c4eda9354b0226b3": { + "_id": "64aceac0c4eda9354b0226b3", + "_name": "item_ammo_box_762x54R_20_FMJ", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_762x54r_xx_SNB", + "ShortName": "ammo_box_762x54r_xx_SNB", + "Description": "ammo_box_762x54r_xx_SNB", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x54mm_r.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber762x54R", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "64aceac0c4eda9354b0226b4", + "_parent": "64aceac0c4eda9354b0226b3", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "64b8f7968532cf95ee0a0dbf" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5447ac644bdc2d6c208b4567" + }, + "57372c56245977685e584582": { + "_id": "57372c56245977685e584582", + "_name": "item_ammo_box_545x39_120_BT_damaged", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_545x39_120_BT_damaged", + "ShortName": "ammo_box_545x39_120_BT_damaged", + "Description": "ammo_box_545x39_120_BT_damaged", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_bt_damaged.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 120, + "StackMaxRandom": 120, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d54c6245977459a2f1583", + "_parent": "57372c56245977685e584582", + "_max_count": 120, + "_props": { + "filters": [ + { + "Filter": [ + "56dff061d2720bb5668b4567" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "57372bad245977670b7cd242" + }, + "65702452cfc010a0f50069fe": { + "_id": "65702452cfc010a0f50069fe", + "_name": "item_ammo_box_12g_25_slug_poleva_3", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -439048,14 +439403,14 @@ "StackSlots": [ { "_name": "cartridges", - "_id": "64898838d5b4df6140000a21", - "_parent": "64898838d5b4df6140000a20", + "_id": "65702452cfc010a0f50069ff", + "_parent": "65702452cfc010a0f50069fe", "_max_count": 25, "_props": { "filters": [ { "Filter": [ - "5d6e68a8a4b9360b6c0d54e2" + "5d6e6891a4b9361bd473feea" ] } ] @@ -439065,23 +439420,23 @@ ] } }, - "5c1260dc86f7746b106e8748": { - "_id": "5c1260dc86f7746b106e8748", - "_name": "item_ammo_box_9x39_7n12_8", + "573733c72459776b0b7b51b0": { + "_id": "573733c72459776b0b7b51b0", + "_name": "item_ammo_box_545x39_30_bpz_sp", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.02, + "Name": "ammo_box_545x39_30_bpz_sp", + "ShortName": "ammo_box_545x39_30_bpz_sp", + "Description": "ammo_box_545x39_30_bpz_sp", + "Weight": 0.01, "BackgroundColor": "yellow", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x39bp_8.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30_bpz_sp.bundle", "rcid": "" }, "UsePrefab": { @@ -439090,7 +439445,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": true, + "ExaminedByDefault": false, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -439109,7 +439464,7 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": false, + "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -439125,20 +439480,20 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 8, - "StackMaxRandom": 8, - "ammoCaliber": "Caliber9x39", + "StackMinRandom": 30, + "StackMaxRandom": 30, + "ammoCaliber": "Caliber9x18PM", "StackSlots": [ { "_name": "cartridges", - "_id": "5c1260dc86f7746b106e874a", - "_parent": "5c1260dc86f7746b106e8748", - "_max_count": 8, + "_id": "574d52e6245977459a2f1581", + "_parent": "573733c72459776b0b7b51b0", + "_max_count": 30, "_props": { "filters": [ { "Filter": [ - "5c0d688c86f77413ae3407b2" + "56dff421d2720b5f5a8b4567" ] } ] @@ -439147,25 +439502,25 @@ } ] }, - "_proto": "5447ac644bdc2d6c208b4567" + "_proto": "5737339e2459776af261abeb" }, - "657024011419851aef03e6f4": { - "_id": "657024011419851aef03e6f4", - "_name": "item_ammo_box_366_20_eko", + "5737273924597765dd374461": { + "_id": "5737273924597765dd374461", + "_name": "item_ammo_box_9x18pm_16_PSO_gzh", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, + "Name": "ammo_box_9x18pm_16_PSO_gzh", + "ShortName": "ammo_box_9x18pm_16_PSO_gzh", + "Description": "ammo_box_9x18pm_16_PSO_gzh", + "Weight": 0.015, "BackgroundColor": "yellow", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_366_tkm.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18pm_16_civil.bundle", "rcid": "" }, "UsePrefab": { @@ -439193,7 +439548,91 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 16, + "StackMaxRandom": 16, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d561b24597745b015be64", + "_parent": "5737273924597765dd374461", + "_max_count": 16, + "_props": { + "filters": [ + { + "Filter": [ + "57371f8d24597761006c6a81" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "573726d824597765d96be361" + }, + "64acea0d03378853630da53b": { + "_id": "64acea0d03378853630da53b", + "_name": "item_ammo_box_762x39_20_US", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_762x39_20_PS", + "ShortName": "ammo_box_762x39_20_PS", + "Description": "ammo_box_762x39_20_PS", + "Weight": 0.015, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_762x39_us.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -439211,18 +439650,269 @@ "IsUnremovable": false, "StackMinRandom": 20, "StackMaxRandom": 20, - "ammoCaliber": "Caliber366TKM", + "ammoCaliber": "Caliber762x39", "StackSlots": [ { "_name": "cartridges", - "_id": "657024011419851aef03e6f5", - "_parent": "657024011419851aef03e6f4", + "_id": "64acea0d03378853630da53c", + "_parent": "64acea0d03378853630da53b", "_max_count": 20, "_props": { "filters": [ { "Filter": [ - "59e655cb86f77411dc52a77b" + "59e4d24686f7741776641ac7" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5447ac644bdc2d6c208b4567" + }, + "648985c074a806211e4fb682": { + "_id": "648985c074a806211e4fb682", + "_name": "item_ammo_box_blackout_50_AP", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_300_blackout.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber762x35", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "648985c074a806211e4fb683", + "_parent": "648985c074a806211e4fb682", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "5fd20ff893a8961fc660a954" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "64acee6903378853630da544": { + "_id": "64acee6903378853630da544", + "_name": "item_ammo_box_762x54R_20_HPBT", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_762x54r_xx_SNB", + "ShortName": "ammo_box_762x54r_xx_SNB", + "Description": "ammo_box_762x54r_xx_SNB", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_762x54r_bthp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber762x54R", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "64acee6903378853630da545", + "_parent": "64acee6903378853630da544", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "64b8f7c241772715af0f9c3d" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5447ac644bdc2d6c208b4567" + }, + "65702432bfc87b3a3409321c": { + "_id": "65702432bfc87b3a3409321c", + "_name": "item_ammo_box_12g_25_buckshot_65", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber12g", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702432bfc87b3a3409321d", + "_parent": "65702432bfc87b3a3409321c", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "5d6e67fba4b9361bc73bc779" ] } ] @@ -439368,6 +440058,142 @@ }, "_proto": "54527ac44bdc2d36668b4567" }, + "573603c924597764442bd9cb": { + "_id": "573603c924597764442bd9cb", + "_name": "patron_762x25tt_T_Gzh", + "_parent": "5485a8684bdc2da71d8b4567", + "_type": "Item", + "_props": { + "Name": "patron_762x25tt_T_Gzh", + "ShortName": "patron_762x25tt_T_Gzh", + "Description": "patron_762x25tt_T_Gzh", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 50, + "ItemSound": "ammo_singleround", + "Prefab": { + "path": "assets/content/items/ammo/patrons/patron_762x25tt_t_gzh.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 1, + "StackMaxRandom": 20, + "ammoType": "bullet", + "InitialSpeed": 415, + "BallisticCoeficient": 0.124, + "BulletMassGram": 5.39, + "BulletDiameterMilimeters": 7.85, + "Damage": 55, + "ammoAccr": -10, + "ammoRec": 0, + "ammoDist": 0, + "buckshotBullets": 0, + "PenetrationPower": 18, + "PenetrationPowerDiviation": 0.08, + "ammoHear": 0, + "ammoSfx": "tracer_red", + "MisfireChance": 0.01, + "MinFragmentsCount": 2, + "MaxFragmentsCount": 4, + "ammoShiftChance": 0, + "casingName": "", + "casingEjectPower": 1, + "casingMass": 10, + "casingSounds": "rifle762", + "ProjectileCount": 1, + "PenetrationChance": 0.18, + "RicochetChance": 0.1, + "FragmentationChance": 0.166, + "Deterioration": 1, + "SpeedRetardation": 5.0e-5, + "Tracer": true, + "TracerColor": "tracerRed", + "TracerDistance": 0.5, + "ArmorDamage": 34, + "Caliber": "Caliber762x25TT", + "StaminaBurnPerDamage": 0.144, + "HeavyBleedingDelta": 0, + "LightBleedingDelta": 0, + "ShowBullet": false, + "HasGrenaderComponent": false, + "FuzeArmTimeSec": 0, + "ExplosionStrength": 0, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "ShowHitEffectOnExplode": false, + "ExplosionType": "", + "AmmoLifeTimeSec": 5, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "IsLightAndSoundShot": false, + "LightAndSoundShotAngle": 0, + "LightAndSoundShotSelfContusionTime": 0, + "LightAndSoundShotSelfContusionStrength": 0, + "MalfMisfireChance": 0.154, + "DurabilityBurnModificator": 1.5, + "HeatFactor": 1.18, + "MalfFeedChance": 0.02, + "RemoveShellAfterFire": false + }, + "_proto": "573603562459776430731618" + }, "59e0d99486f7744a32234762": { "_id": "59e0d99486f7744a32234762", "_name": "patron_762x39_BP", @@ -439504,23 +440330,23 @@ }, "_proto": "56dff338d2720bbd668b4569" }, - "6601546f86889319850bd566": { - "_id": "6601546f86889319850bd566", - "_name": "patron_20x1mm", - "_parent": "5485a8684bdc2da71d8b4567", + "64898838d5b4df6140000a20": { + "_id": "64898838d5b4df6140000a20", + "_name": "item_ammo_box_12g_25_AP", + "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { - "Name": "patron_9x18pm_PMM", - "ShortName": "patron_9x18pm_PMM", - "Description": "patron_9x18pm_PMM", - "Weight": 0.001, + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, "BackgroundColor": "yellow", "Width": 1, "Height": 1, - "StackMaxSize": 50, - "ItemSound": "ammo_singleround", + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_20x1mm.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", "rcid": "" }, "UsePrefab": { @@ -439539,7 +440365,7 @@ "QuestItem": false, "LootExperience": 0, "ExamineExperience": 10, - "HideEntrails": false, + "HideEntrails": true, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, @@ -439548,7 +440374,7 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": true, + "CanSellOnRagfair": false, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -439564,81 +440390,28 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 15, - "StackMaxRandom": 55, - "ammoType": "bullet", - "InitialSpeed": 20, - "BallisticCoeficient": 0.096, - "BulletMassGram": 0.1, - "BulletDiameterMilimeters": 1, - "Damage": 1, - "ammoAccr": 0, - "ammoRec": 1, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 0, - "PenetrationPowerDiviation": 0, - "ammoHear": 0, - "ammoSfx": "standart", - "MisfireChance": 0, - "MinFragmentsCount": 0, - "MaxFragmentsCount": 0, - "ammoShiftChance": 0, - "casingName": "", - "casingEjectPower": 1, - "casingMass": 10, - "casingSounds": "pistol_small", - "ProjectileCount": 1, - "PenetrationChance": 0, - "RicochetChance": 0, - "FragmentationChance": 0, - "Deterioration": 1, - "SpeedRetardation": 7.0e-5, - "Tracer": false, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 0, - "Caliber": "Caliber20x1mm", - "StaminaBurnPerDamage": 1, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": true, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0, - "DurabilityBurnModificator": 0, - "HeatFactor": 0, - "MalfFeedChance": 0, - "RemoveShellAfterFire": false - }, - "_proto": "573719df2459775a626ccbc2" + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber12g", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "64898838d5b4df6140000a21", + "_parent": "64898838d5b4df6140000a20", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "5d6e68a8a4b9360b6c0d54e2" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } }, "6489848173c462723909a14b": { "_id": "6489848173c462723909a14b", @@ -439723,6 +440496,90 @@ ] } }, + "5737256c2459776125652acd": { + "_id": "5737256c2459776125652acd", + "_name": "item_ammo_box_9x18pm_16_PMM", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_9x18pm_16_PMM", + "ShortName": "ammo_box_9x18pm_16_PMM", + "Description": "ammo_box_9x18pm_16_PMM", + "Weight": 0.015, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18pm_16.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 16, + "StackMaxRandom": 16, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "574d56ba245977459939d008", + "_parent": "5737256c2459776125652acd", + "_max_count": 16, + "_props": { + "filters": [ + { + "Filter": [ + "57371aab2459775a77142f22" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5737250c2459776125652acc" + }, "57372deb245977685d4159b3": { "_id": "57372deb245977685d4159b3", "_name": "item_ammo_box_545x39_120_PRS", @@ -439807,6 +440664,90 @@ }, "_proto": "57372d1b2459776862260581" }, + "5c1260dc86f7746b106e8748": { + "_id": "5c1260dc86f7746b106e8748", + "_name": "item_ammo_box_9x39_7n12_8", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.02, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x39bp_8.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 8, + "StackMaxRandom": 8, + "ammoCaliber": "Caliber9x39", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "5c1260dc86f7746b106e874a", + "_parent": "5c1260dc86f7746b106e8748", + "_max_count": 8, + "_props": { + "filters": [ + { + "Filter": [ + "5c0d688c86f77413ae3407b2" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + }, + "_proto": "5447ac644bdc2d6c208b4567" + }, "57372bd3245977670b7cd243": { "_id": "57372bd3245977670b7cd243", "_name": "item_ammo_box_545x39_30_BS", @@ -440058,9 +440999,9 @@ ] } }, - "6489875745f9ca4ba51c4808": { - "_id": "6489875745f9ca4ba51c4808", - "_name": "item_ammo_box_9x21_30_BT", + "657024011419851aef03e6f4": { + "_id": "657024011419851aef03e6f4", + "_name": "item_ammo_box_366_20_eko", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -440074,7 +441015,7 @@ "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x21mm.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_366_tkm.bundle", "rcid": "" }, "UsePrefab": { @@ -440118,20 +441059,20 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 30, - "StackMaxRandom": 30, - "ammoCaliber": "Caliber9x21", + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber366TKM", "StackSlots": [ { "_name": "cartridges", - "_id": "6489875745f9ca4ba51c4809", - "_parent": "6489875745f9ca4ba51c4808", - "_max_count": 30, + "_id": "657024011419851aef03e6f5", + "_parent": "657024011419851aef03e6f4", + "_max_count": 20, "_props": { "filters": [ { "Filter": [ - "5a26ac0ec4a28200741e1e18" + "59e655cb86f77411dc52a77b" ] } ] @@ -440224,6 +441165,255 @@ ] } }, + "6570240a1419851aef03e6f7": { + "_id": "6570240a1419851aef03e6f7", + "_name": "item_ammo_box_1143x23_50_lasermatch_fmj", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_45_acp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber1143x23ACP", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6570240a1419851aef03e6f8", + "_parent": "6570240a1419851aef03e6f7", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "5efb0d4f4bc50b58e81710f3" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657024831419851aef03e703": { + "_id": "657024831419851aef03e703", + "_name": "item_ammo_box_20g_25_buckshot_56", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_20_70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber20g", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657024831419851aef03e704", + "_parent": "657024831419851aef03e703", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "5d6e695fa4b936359b35d852" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "6489875745f9ca4ba51c4808": { + "_id": "6489875745f9ca4ba51c4808", + "_name": "item_ammo_box_9x21_30_BT", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x21mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 30, + "StackMaxRandom": 30, + "ammoCaliber": "Caliber9x21", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6489875745f9ca4ba51c4809", + "_parent": "6489875745f9ca4ba51c4808", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "5a26ac0ec4a28200741e1e18" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, "57372f5c24597769917c0131": { "_id": "57372f5c24597769917c0131", "_name": "item_ammo_box_545x39_30_T", @@ -440308,564 +441498,9 @@ }, "_proto": "57372ebf2459776862260582" }, - "619636be6db0f2477964e710": { - "_id": "619636be6db0f2477964e710", - "_name": "patron_762x35_m62", - "_parent": "5485a8684bdc2da71d8b4567", - "_type": "Item", - "_props": { - "Name": "patron_762x35_blackout", - "ShortName": "patron_762x35_blackout", - "Description": "patron_762x35_blackout", - "Weight": 0.016, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 60, - "ItemSound": "ammo_singleround", - "Prefab": { - "path": "assets/content/items/ammo/patrons/patron_762x35_m62.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 15, - "StackMaxRandom": 50, - "ammoType": "bullet", - "InitialSpeed": 442, - "BallisticCoeficient": 0.334, - "BulletMassGram": 9.3, - "BulletDiameterMilimeters": 7.8, - "Damage": 54, - "ammoAccr": 0, - "ammoRec": 1, - "ammoDist": 0, - "buckshotBullets": 0, - "PenetrationPower": 36, - "PenetrationPowerDiviation": 0.18, - "ammoHear": -20, - "ammoSfx": "standart", - "MisfireChance": 0.01, - "MinFragmentsCount": 1, - "MaxFragmentsCount": 2, - "ammoShiftChance": 0, - "casingName": "patron_762x35_blackout", - "casingEjectPower": 1, - "casingMass": 11.77, - "casingSounds": "rifle556", - "ProjectileCount": 1, - "PenetrationChance": 0.4, - "RicochetChance": 0.37, - "FragmentationChance": 0.2, - "Deterioration": 1, - "SpeedRetardation": 2.3e-5, - "Tracer": true, - "TracerColor": "red", - "TracerDistance": 0, - "ArmorDamage": 40, - "Caliber": "Caliber762x35", - "StaminaBurnPerDamage": 0.09216, - "HeavyBleedingDelta": 0, - "LightBleedingDelta": 0, - "ShowBullet": false, - "HasGrenaderComponent": false, - "FuzeArmTimeSec": 0, - "ExplosionStrength": 0, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "ShowHitEffectOnExplode": false, - "ExplosionType": "", - "AmmoLifeTimeSec": 5, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "IsLightAndSoundShot": false, - "LightAndSoundShotAngle": 0, - "LightAndSoundShotSelfContusionTime": 0, - "LightAndSoundShotSelfContusionStrength": 0, - "MalfMisfireChance": 0.175, - "DurabilityBurnModificator": 1.25, - "HeatFactor": 1.7, - "MalfFeedChance": 0.055, - "RemoveShellAfterFire": false - }, - "_proto": "54527ac44bdc2d36668b4567" - }, - "573733c72459776b0b7b51b0": { - "_id": "573733c72459776b0b7b51b0", - "_name": "item_ammo_box_545x39_30_bpz_sp", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_30_bpz_sp", - "ShortName": "ammo_box_545x39_30_bpz_sp", - "Description": "ammo_box_545x39_30_bpz_sp", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_30_bpz_sp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 30, - "StackMaxRandom": 30, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d52e6245977459a2f1581", - "_parent": "573733c72459776b0b7b51b0", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "56dff421d2720b5f5a8b4567" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5737339e2459776af261abeb" - }, - "5737273924597765dd374461": { - "_id": "5737273924597765dd374461", - "_name": "item_ammo_box_9x18pm_16_PSO_gzh", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_9x18pm_16_PSO_gzh", - "ShortName": "ammo_box_9x18pm_16_PSO_gzh", - "Description": "ammo_box_9x18pm_16_PSO_gzh", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18pm_16_civil.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 16, - "StackMaxRandom": 16, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d561b24597745b015be64", - "_parent": "5737273924597765dd374461", - "_max_count": 16, - "_props": { - "filters": [ - { - "Filter": [ - "57371f8d24597761006c6a81" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "573726d824597765d96be361" - }, - "64acee6903378853630da544": { - "_id": "64acee6903378853630da544", - "_name": "item_ammo_box_762x54R_20_HPBT", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_762x54r_xx_SNB", - "ShortName": "ammo_box_762x54r_xx_SNB", - "Description": "ammo_box_762x54r_xx_SNB", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_762x54r_bthp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x54R", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "64acee6903378853630da545", - "_parent": "64acee6903378853630da544", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "64b8f7c241772715af0f9c3d" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5447ac644bdc2d6c208b4567" - }, - "64acea0d03378853630da53b": { - "_id": "64acea0d03378853630da53b", - "_name": "item_ammo_box_762x39_20_US", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_762x39_20_PS", - "ShortName": "ammo_box_762x39_20_PS", - "Description": "ammo_box_762x39_20_PS", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_762x39_us.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x39", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "64acea0d03378853630da53c", - "_parent": "64acea0d03378853630da53b", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "59e4d24686f7741776641ac7" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5447ac644bdc2d6c208b4567" - }, - "648985c074a806211e4fb682": { - "_id": "648985c074a806211e4fb682", - "_name": "item_ammo_box_blackout_50_AP", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_300_blackout.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber762x35", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "648985c074a806211e4fb683", - "_parent": "648985c074a806211e4fb682", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "5fd20ff893a8961fc660a954" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "65702432bfc87b3a3409321c": { - "_id": "65702432bfc87b3a3409321c", - "_name": "item_ammo_box_12g_25_buckshot_65", + "6570244ec5d7d4cb4d078558": { + "_id": "6570244ec5d7d4cb4d078558", + "_name": "item_ammo_box_12g_25_slug_grizzly_40", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -440929,14 +441564,14 @@ "StackSlots": [ { "_name": "cartridges", - "_id": "65702432bfc87b3a3409321d", - "_parent": "65702432bfc87b3a3409321c", + "_id": "6570244ec5d7d4cb4d078559", + "_parent": "6570244ec5d7d4cb4d078558", "_max_count": 25, "_props": { "filters": [ { "Filter": [ - "5d6e67fba4b9361bc73bc779" + "5d6e6869a4b9361c140bcfde" ] } ] @@ -440946,9 +441581,175 @@ ] } }, - "65702664cfc010a0f5006a59": { - "_id": "65702664cfc010a0f5006a59", - "_name": "item_ammo_box_556x45_100_mk_255", + "6570249f1419851aef03e709": { + "_id": "6570249f1419851aef03e709", + "_name": "item_ammo_box_20g_25_slug_star", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_20_70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber20g", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6570249f1419851aef03e70a", + "_parent": "6570249f1419851aef03e709", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "5d6e6a05a4b93618084f58d0" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657024f9bfc87b3a3409323b": { + "_id": "657024f9bfc87b3a3409323b", + "_name": "item_ammo_box_556x45_50_mk_318", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber556x45NATO", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657024f9bfc87b3a3409323c", + "_parent": "657024f9bfc87b3a3409323b", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "60194943740c5d77f6705eea" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "6570266bc5d7d4cb4d078594": { + "_id": "6570266bc5d7d4cb4d078594", + "_name": "item_ammo_box_556x45_100_mk_318", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -441012,14 +441813,14 @@ "StackSlots": [ { "_name": "cartridges", - "_id": "65702664cfc010a0f5006a5a", - "_parent": "65702664cfc010a0f5006a59", + "_id": "6570266bc5d7d4cb4d078595", + "_parent": "6570266bc5d7d4cb4d078594", "_max_count": 100, "_props": { "filters": [ { "Filter": [ - "59e6918f86f7746c9f75e849" + "60194943740c5d77f6705eea" ] } ] @@ -441029,9 +441830,9 @@ ] } }, - "65702469c5d7d4cb4d07855b": { - "_id": "65702469c5d7d4cb4d07855b", - "_name": "item_ammo_box_12g_25_slug_50_bmg", + "65702652cfc010a0f5006a53": { + "_id": "65702652cfc010a0f5006a53", + "_name": "item_ammo_box_556x45_100_855a1", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -441040,263 +441841,12 @@ "Description": "ammo_box_556x45_xx_m193ball", "Weight": 0.01, "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber12g", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702469c5d7d4cb4d07855c", - "_parent": "65702469c5d7d4cb4d07855b", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "5d6e68c4a4b9361b93413f79" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "57372a7f24597766fe0de0c1": { - "_id": "57372a7f24597766fe0de0c1", - "_name": "item_ammo_box_545x39_120_BP_damaged", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_120_BP_damaged", - "ShortName": "ammo_box_545x39_120_BP_damaged", - "Description": "ammo_box_545x39_120_BP_damaged", - "Weight": 0.1, - "BackgroundColor": "yellow", "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_bp_damaged.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 120, - "StackMaxRandom": 120, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d5583245977459805ee2f", - "_parent": "57372a7f24597766fe0de0c1", - "_max_count": 120, - "_props": { - "filters": [ - { - "Filter": [ - "56dfef82d2720bbd668b4567" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5737292724597765e5728562" - }, - "573726d824597765d96be361": { - "_id": "573726d824597765d96be361", - "_name": "item_ammo_box_9x18pm_16_PS_gs_PPO", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_9x18pm_16_PS_gs_PPO", - "ShortName": "ammo_box_9x18pm_16_PS_gs_PPO", - "Description": "ammo_box_9x18pm_16_PS_gs_PPO", - "Weight": 0.015, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18pm_16.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 16, - "StackMaxRandom": 16, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d562d245977459805ee31", - "_parent": "573726d824597765d96be361", - "_max_count": 16, - "_props": { - "filters": [ - { - "Filter": [ - "57371f2b24597761224311f1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5737266524597761006c6a8c" - }, - "65702426cfc010a0f50069f8": { - "_id": "65702426cfc010a0f50069f8", - "_name": "item_ammo_box_12g_25_buckshot_525", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_100_crtg.bundle", "rcid": "" }, "UsePrefab": { @@ -441340,20 +441890,20 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber12g", + "StackMinRandom": 100, + "StackMaxRandom": 100, + "ammoCaliber": "Caliber556x45NATO", "StackSlots": [ { "_name": "cartridges", - "_id": "65702426cfc010a0f50069f9", - "_parent": "65702426cfc010a0f50069f8", - "_max_count": 25, + "_id": "65702652cfc010a0f5006a54", + "_parent": "65702652cfc010a0f5006a53", + "_max_count": 100, "_props": { "filters": [ { "Filter": [ - "5d6e6772a4b936088465b17c" + "54527ac44bdc2d36668b4567" ] } ] @@ -441363,9 +441913,92 @@ ] } }, - "657023e7c5d7d4cb4d078552": { - "_id": "657023e7c5d7d4cb4d078552", - "_name": "item_ammo_box_357_25_jhp", + "65702524cfc010a0f5006a16": { + "_id": "65702524cfc010a0f5006a16", + "_name": "item_ammo_box_57x28_50_sb193", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_7x28mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber57x28", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702524cfc010a0f5006a17", + "_parent": "65702524cfc010a0f5006a16", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "5cc80f67e4a949035e43bbba" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657023decfc010a0f50069ec": { + "_id": "657023decfc010a0f50069ec", + "_name": "item_ammo_box_357_25_fmj", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -441429,180 +442062,14 @@ "StackSlots": [ { "_name": "cartridges", - "_id": "657023e7c5d7d4cb4d078553", - "_parent": "657023e7c5d7d4cb4d078552", + "_id": "657023decfc010a0f50069ed", + "_parent": "657023decfc010a0f50069ec", "_max_count": 25, "_props": { "filters": [ { "Filter": [ - "62330c18744e5e31df12f516" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "6570240a1419851aef03e6f7": { - "_id": "6570240a1419851aef03e6f7", - "_name": "item_ammo_box_1143x23_50_lasermatch_fmj", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_45_acp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber1143x23ACP", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6570240a1419851aef03e6f8", - "_parent": "6570240a1419851aef03e6f7", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0d4f4bc50b58e81710f3" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "65702479c5d7d4cb4d07855e": { - "_id": "65702479c5d7d4cb4d07855e", - "_name": "item_ammo_box_12g_25_slug_hp_copper", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber12g", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702479c5d7d4cb4d07855f", - "_parent": "65702479c5d7d4cb4d07855e", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "5d6e68b3a4b9361bca7e50b5" + "62330b3ed4dc74626d570b95" ] } ] @@ -441695,6 +442162,172 @@ ] } }, + "657023f81419851aef03e6f1": { + "_id": "657023f81419851aef03e6f1", + "_name": "item_ammo_box_366_20_custom_ap", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_366_tkm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber366TKM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657023f81419851aef03e6f2", + "_parent": "657023f81419851aef03e6f1", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5f0596629e22f464da6bbdd9" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "65702664cfc010a0f5006a59": { + "_id": "65702664cfc010a0f5006a59", + "_name": "item_ammo_box_556x45_100_mk_255", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_100_crtg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 100, + "StackMaxRandom": 100, + "ammoCaliber": "Caliber556x45NATO", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702664cfc010a0f5006a5a", + "_parent": "65702664cfc010a0f5006a59", + "_max_count": 100, + "_props": { + "filters": [ + { + "Filter": [ + "59e6918f86f7746c9f75e849" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, "6570251ccfc010a0f5006a13": { "_id": "6570251ccfc010a0f5006a13", "_name": "item_ammo_box_57x28_50_r37f", @@ -442213,6 +442846,71 @@ }, "_proto": "5734779624597737e04bf329" }, + "619252352be33f26043400a7": { + "_id": "619252352be33f26043400a7", + "_name": "item_qlight4_l1_redcar", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "Toughbook", + "ShortName": "Toughbook", + "Description": "Toughbook", + "Weight": 1, + "BackgroundColor": "yellow", + "Width": 3, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "smallmetal", + "Prefab": { + "path": "assets/content/items/barter/item_barter_electr_toughbook/item_barter_electr_toughbook.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 30, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573477e124597737dd42e191" + }, "657025281419851aef03e71b": { "_id": "657025281419851aef03e71b", "_name": "item_ammo_box_57x28_50_ss197sr", @@ -442610,545 +443308,6 @@ }, "_proto": "590c31c586f774245e3141b2" }, - "65702652cfc010a0f5006a53": { - "_id": "65702652cfc010a0f5006a53", - "_name": "item_ammo_box_556x45_100_855a1", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_100_crtg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 100, - "StackMaxRandom": 100, - "ammoCaliber": "Caliber556x45NATO", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702652cfc010a0f5006a54", - "_parent": "65702652cfc010a0f5006a53", - "_max_count": 100, - "_props": { - "filters": [ - { - "Filter": [ - "54527ac44bdc2d36668b4567" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "65702554bfc87b3a34093247": { - "_id": "65702554bfc87b3a34093247", - "_name": "item_ammo_box_762x51_20_m62", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x51mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x51", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702554bfc87b3a34093248", - "_parent": "65702554bfc87b3a34093247", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5a608bf24f39f98ffc77720e" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "6570255dbfc87b3a3409324a": { - "_id": "6570255dbfc87b3a3409324a", - "_name": "item_ammo_box_762x51_20_ultra_nosler", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x51mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x51", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6570255dbfc87b3a3409324b", - "_parent": "6570255dbfc87b3a3409324a", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5e023e88277cce2b522ff2b1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "569668774bdc2da2298b4568": { - "_id": "569668774bdc2da2298b4568", - "_name": "Евро", - "_parent": "543be5dd4bdc2deb348b4569", - "_type": "Item", - "_props": { - "Name": "Euros", - "ShortName": "Euros", - "Description": "Несколько банкнот пока еще котирующихся российских рублей", - "Weight": 0, - "BackgroundColor": "green", - "Width": 1, - "Height": 1, - "StackMaxSize": 50000, - "ItemSound": "item_money", - "Prefab": { - "path": "assets/content/items/money/item_money_euro_small.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 35, - "StackMaxRandom": 90, - "type": "EUR", - "eqMin": 35, - "eqMax": 90, - "rate": 1 - }, - "_proto": "5696686a4bdc2da3298b456a" - }, - "5448be9a4bdc2dfd2f8b456a": { - "_id": "5448be9a4bdc2dfd2f8b456a", - "_name": "РГД-5", - "_parent": "543be6564bdc2df4348b4568", - "_type": "Item", - "_props": { - "Name": "Граната РГД-5", - "ShortName": "RGD-5", - "Description": "РГД-5 (Ручная Граната Дистанционная, модификация 5) относится к противопехотным осколочным ручным гранатам дистанционного действия наступательного типа. Время замедления запала 3,2—4,2 секунды. Так как граната наступательного типа осколки гранаты имеют небольшую массу и соответственно летят на меньшую дальность.", - "Weight": 0.31, - "BackgroundColor": "grey", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "grenade", - "Prefab": { - "path": "assets/content/weapons/rgd5/weapon_grenade_rgd5_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 20, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "ThrowType": "frag_grenade", - "ExplDelay": 3, - "MinExplosionDistance": 3, - "MaxExplosionDistance": 7, - "FragmentsCount": 70, - "FragmentType": "5996f6cb86f774678763a6ca", - "Strength": 100, - "ContusionDistance": 10, - "throwDamMax": 0, - "explDelay": 3.5, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "Contusion": { - "x": 1.5, - "y": 4, - "z": 14 - }, - "ArmorDistanceDistanceDamage": { - "x": 1, - "y": 4, - "z": 28 - }, - "EmitTime": 0, - "CanBeHiddenDuringThrow": true, - "MinTimeToContactExplode": -1, - "ExplosionEffectType": "Grenade_new" - } - }, - "5733279d245977289b77ec24": { - "_id": "5733279d245977289b77ec24", - "_name": "car_battery", - "_parent": "57864ee62459775490116fc1", - "_type": "Item", - "_props": { - "Name": "Auto battery", - "ShortName": "A Battery", - "Description": "Automobile battery", - "Weight": 12, - "BackgroundColor": "blue", - "Width": 3, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "spec_armorrep", - "Prefab": { - "path": "assets/content/items/barter/car_battery/item_car_battery.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "5d1b32c186f774252167a530": { - "_id": "5d1b32c186f774252167a530", - "_name": "item_barter_building_thermometer", - "_parent": "57864ada245977548638de91", - "_type": "Item", - "_props": { - "Name": "item_barter_building_thermometer", - "ShortName": "item_barter_building_thermometer", - "Description": "item_barter_building_thermometer", - "Weight": 0.3, - "BackgroundColor": "violet", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "smallmetal", - "Prefab": { - "path": "assets/content/items/barter/item_barter_building_thermometer/item_barter_building_thermometer.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "590c31c586f774245e3141b2" - }, "657026251419851aef03e72a": { "_id": "657026251419851aef03e72a", "_name": "item_ammo_box_9x18_50_psv", @@ -443315,89 +443474,6 @@ ] } }, - "6570259fcfc010a0f5006a32": { - "_id": "6570259fcfc010a0f5006a32", - "_name": "item_ammo_box_9x19_50_quakemaker", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x19_m882_fmj.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber9x19PARA", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6570259fcfc010a0f5006a33", - "_parent": "6570259fcfc010a0f5006a32", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "5efb0e16aeb21837e749c7ff" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, "657024aebfc87b3a3409322f": { "_id": "657024aebfc87b3a3409322f", "_name": "item_ammo_box_23x75_5_shrapnel_10", @@ -443481,6 +443557,89 @@ ] } }, + "6570259fcfc010a0f5006a32": { + "_id": "6570259fcfc010a0f5006a32", + "_name": "item_ammo_box_9x19_50_quakemaker", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x19_m882_fmj.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber9x19PARA", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6570259fcfc010a0f5006a33", + "_parent": "6570259fcfc010a0f5006a32", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "5efb0e16aeb21837e749c7ff" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, "5710c24ad2720bc3458b45a3": { "_id": "5710c24ad2720bc3458b45a3", "_name": "weapon_grenade_f1", @@ -443851,6 +444010,89 @@ ] } }, + "657024b8bfc87b3a34093232": { + "_id": "657024b8bfc87b3a34093232", + "_name": "item_ammo_box_23x75_5_barricade", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_23x75.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 5, + "StackMaxRandom": 5, + "ammoCaliber": "Caliber23x75", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657024b8bfc87b3a34093233", + "_parent": "657024b8bfc87b3a34093232", + "_max_count": 5, + "_props": { + "filters": [ + { + "Filter": [ + "5e85aa1a988a8701445df1f5" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, "6570900858b315e8b70a8a98": { "_id": "6570900858b315e8b70a8a98", "_name": "item_ammo_box_545x39_120_7n40", @@ -444183,89 +444425,6 @@ ] } }, - "657024b8bfc87b3a34093232": { - "_id": "657024b8bfc87b3a34093232", - "_name": "item_ammo_box_23x75_5_barricade", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_23x75.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 5, - "StackMaxRandom": 5, - "ammoCaliber": "Caliber23x75", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657024b8bfc87b3a34093233", - "_parent": "657024b8bfc87b3a34093232", - "_max_count": 5, - "_props": { - "filters": [ - { - "Filter": [ - "5e85aa1a988a8701445df1f5" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, "6570264d1419851aef03e736": { "_id": "6570264d1419851aef03e736", "_name": "item_ammo_box_556x45_100_855", @@ -444793,9 +444952,9 @@ }, "_proto": "5734779624597737e04bf329" }, - "65702524cfc010a0f5006a16": { - "_id": "65702524cfc010a0f5006a16", - "_name": "item_ammo_box_57x28_50_sb193", + "65702536c5d7d4cb4d078570": { + "_id": "65702536c5d7d4cb4d078570", + "_name": "item_ammo_box_762x25_25_lrn", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -444809,7 +444968,7 @@ "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_7x28mm.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x25mm.bundle", "rcid": "" }, "UsePrefab": { @@ -444853,20 +445012,20 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber57x28", + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber762x25TT", "StackSlots": [ { "_name": "cartridges", - "_id": "65702524cfc010a0f5006a17", - "_parent": "65702524cfc010a0f5006a16", - "_max_count": 50, + "_id": "65702536c5d7d4cb4d078571", + "_parent": "65702536c5d7d4cb4d078570", + "_max_count": 25, "_props": { "filters": [ { "Filter": [ - "5cc80f67e4a949035e43bbba" + "573601b42459776410737435" ] } ] @@ -444876,9 +445035,9 @@ ] } }, - "6570254fcfc010a0f5006a22": { - "_id": "6570254fcfc010a0f5006a22", - "_name": "item_ammo_box_762x51_20_m61", + "65702558cfc010a0f5006a25": { + "_id": "65702558cfc010a0f5006a25", + "_name": "item_ammo_box_762x51_20_m80", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -444942,14 +445101,14 @@ "StackSlots": [ { "_name": "cartridges", - "_id": "6570254fcfc010a0f5006a23", - "_parent": "6570254fcfc010a0f5006a22", + "_id": "65702558cfc010a0f5006a26", + "_parent": "65702558cfc010a0f5006a25", "_max_count": 20, "_props": { "filters": [ { "Filter": [ - "5a6086ea4f39f99cd479502f" + "58dd3ad986f77403051cba8f" ] } ] @@ -444959,9 +445118,832 @@ ] } }, - "657026451419851aef03e733": { - "_id": "657026451419851aef03e733", - "_name": "item_ammo_box_556x45_100_fmj", + "657025cfbfc87b3a34093253": { + "_id": "657025cfbfc87b3a34093253", + "_name": "item_ammo_box_9x39_20_pab9", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x39mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber9x39", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657025cfbfc87b3a34093254", + "_parent": "657025cfbfc87b3a34093253", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "61962d879bb3d20b0946d385" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "6579847c5a0e5879d12f2873": { + "_id": "6579847c5a0e5879d12f2873", + "_name": "item_ammo_box_9x21_30_7n42", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "item_ammo_box_9x21_30_7n42", + "ShortName": "item_ammo_box_9x21_30_7n42", + "Description": "item_ammo_box_9x21_30_7n42", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x21mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 30, + "StackMaxRandom": 30, + "ammoCaliber": "Caliber9x21", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6579847c5a0e5879d12f2874", + "_parent": "6579847c5a0e5879d12f2873", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "6576f4708ca9c4381d16cd9d" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "6579846c1ec1943afb14c15a": { + "_id": "6579846c1ec1943afb14c15a", + "_name": "item_ammo_box_9x21_30_7u4", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "item_ammo_box_9x21_30_7u4", + "ShortName": "item_ammo_box_9x21_30_7u4", + "Description": "item_ammo_box_9x21_30_7u4", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x21mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 30, + "StackMaxRandom": 30, + "ammoCaliber": "Caliber9x21", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6579846c1ec1943afb14c15b", + "_parent": "6579846c1ec1943afb14c15a", + "_max_count": 30, + "_props": { + "filters": [ + { + "Filter": [ + "6576f93989f0062e741ba952" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657025d4c5d7d4cb4d078585": { + "_id": "657025d4c5d7d4cb4d078585", + "_name": "item_ammo_box_9x39_20_sp5", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x39mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber9x39", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657025d4c5d7d4cb4d078586", + "_parent": "657025d4c5d7d4cb4d078585", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "57a0dfb82459774d3078b56c" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657024d2bfc87b3a34093235": { + "_id": "657024d2bfc87b3a34093235", + "_name": "item_ammo_box_46x30_40_subsonic_sx", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_4_6x30mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 40, + "StackMaxRandom": 40, + "ammoCaliber": "Caliber46x30", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657024d2bfc87b3a34093236", + "_parent": "657024d2bfc87b3a34093235", + "_max_count": 40, + "_props": { + "filters": [ + { + "Filter": [ + "5ba26844d4351e00334c9475" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657025961419851aef03e721": { + "_id": "657025961419851aef03e721", + "_name": "item_ammo_box_9x19_50_green_tracer", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x19_m882_fmj.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber9x19PARA", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657025961419851aef03e722", + "_parent": "657025961419851aef03e721", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "5c3df7d588a4501f290594e5" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "5af0561e86f7745f5f3ad6ac": { + "_id": "5af0561e86f7745f5f3ad6ac", + "_name": "item_barter_energy_powerbank", + "_parent": "57864ee62459775490116fc1", + "_type": "Item", + "_props": { + "Name": "powerbank", + "ShortName": "powerbank", + "Description": "powerbank", + "Weight": 0.3, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_plastic_generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_energy_powerbank/item_barter_energy_powerbank.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "5672cb304bdc2dc2088b456a" + }, + "5734795124597738002c6176": { + "_id": "5734795124597738002c6176", + "_name": "insulation_tape", + "_parent": "57864ada245977548638de91", + "_type": "Item", + "_props": { + "Name": "insulating tape", + "ShortName": "Tape", + "Description": "insulating tape", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/insulation_tape/item_insulation_tape.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573478bc24597738002c6175" + }, + "5d1b2fa286f77425227d1674": { + "_id": "5d1b2fa286f77425227d1674", + "_name": "item_barter_electr_engine", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "item_barter_electr_engine", + "ShortName": "item_barter_electr_engine", + "Description": "item_barter_electr_engine", + "Weight": 1.4, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "smallmetal", + "Prefab": { + "path": "assets/content/items/barter/item_barter_electr_engine/item_barter_electr_engine.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 40, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "5734779624597737e04bf329" + }, + "590a391c86f774385a33c404": { + "_id": "590a391c86f774385a33c404", + "_name": "item_barter_electr_magnet", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "Magnet", + "ShortName": "Magnet", + "Description": "Magnet", + "Weight": 0.4, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_electr_magnet/item_barter_electr_magnet.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "5d0376a486f7747d8050965c": { + "_id": "5d0376a486f7747d8050965c", + "_name": "item_barter_electr_militaryboard", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "item_barter_electr_militaryboard", + "ShortName": "item_barter_electr_militaryboard", + "Description": "item_barter_electr_militaryboard", + "Weight": 0.52, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_electr_militaryboard/item_barter_electr_militaryboard.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 40, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "5734779624597737e04bf329" + }, + "6570265bcfc010a0f5006a56": { + "_id": "6570265bcfc010a0f5006a56", + "_name": "item_ammo_box_556x45_100_856a1", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -445021,18 +446003,18 @@ "IsUnremovable": false, "StackMinRandom": 100, "StackMaxRandom": 100, - "ammoCaliber": "Caliber762x35", + "ammoCaliber": "Caliber556x45NATO", "StackSlots": [ { "_name": "cartridges", - "_id": "657026451419851aef03e734", - "_parent": "657026451419851aef03e733", + "_id": "6570265bcfc010a0f5006a57", + "_parent": "6570265bcfc010a0f5006a56", "_max_count": 100, "_props": { "filters": [ { "Filter": [ - "59e6920f86f77411d82aa167" + "59e6906286f7746c9f75e847" ] } ] @@ -445042,9 +446024,9 @@ ] } }, - "65702610cfc010a0f5006a41": { - "_id": "65702610cfc010a0f5006a41", - "_name": "item_ammo_box_9x18_50_pbm", + "6570252dbfc87b3a34093241": { + "_id": "6570252dbfc87b3a34093241", + "_name": "item_ammo_box_57x28_50_ss198lf", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -445058,7 +446040,7 @@ "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_7x28mm.bundle", "rcid": "" }, "UsePrefab": { @@ -445104,18 +446086,18 @@ "IsUnremovable": false, "StackMinRandom": 50, "StackMaxRandom": 50, - "ammoCaliber": "Caliber9x18PM", + "ammoCaliber": "Caliber57x28", "StackSlots": [ { "_name": "cartridges", - "_id": "65702610cfc010a0f5006a42", - "_parent": "65702610cfc010a0f5006a41", + "_id": "6570252dbfc87b3a34093242", + "_parent": "6570252dbfc87b3a34093241", "_max_count": 50, "_props": { "filters": [ { "Filter": [ - "573719df2459775a626ccbc2" + "5cc80f79e4a949033c7343b2" ] } ] @@ -445125,9 +446107,92 @@ ] } }, - "657024921419851aef03e706": { - "_id": "657024921419851aef03e706", - "_name": "item_ammo_box_20g_25_buckshot_73", + "657025a4bfc87b3a34093250": { + "_id": "657025a4bfc87b3a34093250", + "_name": "item_ammo_box_9x19_50_pso", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x19_m882_fmj.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber9x19PARA", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657025a4bfc87b3a34093251", + "_parent": "657025a4bfc87b3a34093250", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "58864a4f2459770fcc257101" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657024a4bfc87b3a3409322c": { + "_id": "657024a4bfc87b3a3409322c", + "_name": "item_ammo_box_20g_25_slug_poleva_3", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -445191,14 +446256,14 @@ "StackSlots": [ { "_name": "cartridges", - "_id": "657024921419851aef03e707", - "_parent": "657024921419851aef03e706", + "_id": "657024a4bfc87b3a3409322d", + "_parent": "657024a4bfc87b3a3409322c", "_max_count": 25, "_props": { "filters": [ { "Filter": [ - "5d6e69c7a4b9360b6c0d54e4" + "5d6e6a53a4b9361bd473feec" ] } ] @@ -445208,9 +446273,9 @@ ] } }, - "657023a9126cc4a57d0e17a6": { - "_id": "657023a9126cc4a57d0e17a6", - "_name": "item_ammo_box_blackout_50_cbj", + "657024a91419851aef03e70c": { + "_id": "657024a91419851aef03e70c", + "_name": "item_ammo_box_20g_25_slug_poleva_6u", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -445224,7 +446289,7 @@ "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_300_blackout.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_20_70.bundle", "rcid": "" }, "UsePrefab": { @@ -445268,20 +446333,20 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber762x35", + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber20g", "StackSlots": [ { "_name": "cartridges", - "_id": "657023a9126cc4a57d0e17a7", - "_parent": "657023a9126cc4a57d0e17a6", - "_max_count": 50, + "_id": "657024a91419851aef03e70d", + "_parent": "657024a91419851aef03e70c", + "_max_count": 25, "_props": { "filters": [ { "Filter": [ - "64b8725c4b75259c590fa899" + "5d6e6a42a4b9364f07165f52" ] } ] @@ -445291,23 +446356,91 @@ ] } }, - "58d3db5386f77426186285a0": { - "_id": "58d3db5386f77426186285a0", - "_name": "weapon_grenade_m67", - "_parent": "543be6564bdc2df4348b4568", + "5449016a4bdc2d6f028b456f": { + "_id": "5449016a4bdc2d6f028b456f", + "_name": "Рубли", + "_parent": "543be5dd4bdc2deb348b4569", "_type": "Item", "_props": { - "Name": "weapon_grenade_m67", - "ShortName": "weapon_grenade_m67", - "Description": "weapon_grenade_m67", - "Weight": 0.396, - "BackgroundColor": "grey", + "Name": "Рубли", + "ShortName": "Roubles", + "Description": "Несколько банкнот пока еще котирующихся российских рублей", + "Weight": 0, + "BackgroundColor": "green", + "Width": 1, + "Height": 1, + "StackMaxSize": 500000, + "ItemSound": "item_money", + "Prefab": { + "path": "assets/content/items/money/item_money_ruble_small.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 20000, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 560, + "StackMaxRandom": 1150, + "type": "RUB", + "eqMin": 275, + "eqMax": 555, + "rate": 1 + } + }, + "5e2af29386f7746d4159f077": { + "_id": "5e2af29386f7746d4159f077", + "_name": "item_barter_building_kektape", + "_parent": "57864ada245977548638de91", + "_type": "Item", + "_props": { + "Name": "item_barter_building_kektape", + "ShortName": "item_barter_building_kektape", + "Description": "item_barter_building_kektape", + "Weight": 0.15, + "BackgroundColor": "violet", "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "grenade", + "ItemSound": "generic", "Prefab": { - "path": "assets/content/weapons/m67/weapon_grenade_m67_container.bundle", + "path": "assets/content/items/barter/item_barter_building_kektape/item_barter_building_kektape.bundle", "rcid": "" }, "UsePrefab": { @@ -445325,98 +446458,6 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 5, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 20, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "ThrowType": "frag_grenade", - "ExplDelay": 5, - "MinExplosionDistance": 4, - "MaxExplosionDistance": 8, - "FragmentsCount": 75, - "FragmentType": "5996f6fc86f7745e585b4de3", - "Strength": 110, - "ContusionDistance": 11, - "throwDamMax": 0, - "explDelay": 5, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "Contusion": { - "x": 2, - "y": 4, - "z": 14 - }, - "ArmorDistanceDistanceDamage": { - "x": 1, - "y": 4, - "z": 29 - }, - "EmitTime": 0, - "CanBeHiddenDuringThrow": true, - "MinTimeToContactExplode": -1, - "ExplosionEffectType": "Grenade_new" - }, - "_proto": "5448be9a4bdc2dfd2f8b456a" - }, - "59e35ef086f7741777737012": { - "_id": "59e35ef086f7741777737012", - "_name": "item_barter_building_screw", - "_parent": "57864ada245977548638de91", - "_type": "Item", - "_props": { - "Name": "Screw", - "ShortName": "item_barter_building_screw", - "Description": "item_barter_building_screw", - "Weight": 0.3, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_building_screw/item_barter_building_screw.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, @@ -445446,25 +446487,90 @@ "MaxResource": 0, "Resource": 0 }, - "_proto": "590c31c586f774245e3141b2" + "_proto": "573478bc24597738002c6175" }, - "5af04e0a86f7743a532b79e2": { - "_id": "5af04e0a86f7743a532b79e2", - "_name": "item_barter_electr_gyroscope", + "57347c77245977448d35f6e2": { + "_id": "57347c77245977448d35f6e2", + "_name": "screw_nuts", + "_parent": "57864ada245977548638de91", + "_type": "Item", + "_props": { + "Name": "Screw nut", + "ShortName": "Screw nut", + "Description": "Screw nut", + "Weight": 0.4, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/screw_nut_bolt/item_screw_nuts.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c5b245977448d35f6e1" + }, + "5d0378d486f77420421a5ff4": { + "_id": "5d0378d486f77420421a5ff4", + "_name": "item_bater_electr_powerfilter", "_parent": "57864a66245977548f04a81f", "_type": "Item", "_props": { - "Name": "gyroscope", - "ShortName": "gyroscope", - "Description": "gyroscope", - "Weight": 0.3, - "BackgroundColor": "yellow", + "Name": "item_bater_electr_powerfilter", + "ShortName": "item_bater_electr_powerfilter", + "Description": "item_bater_electr_powerfilter", + "Weight": 0.2, + "BackgroundColor": "violet", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_gyroscope/item_barter_electr_gyroscope.bundle", + "path": "assets/content/items/barter/item_barter_electr_powerfilter/item_barter_electr_powerfilter.bundle", "rcid": "" }, "UsePrefab": { @@ -445480,9 +446586,9 @@ "IsUnbuyable": false, "IsUngivable": false, "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 35, - "ExamineExperience": 5, + "QuestItem": false, + "LootExperience": 40, + "ExamineExperience": 100, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -445511,175 +446617,7 @@ "MaxResource": 0, "Resource": 0 }, - "_proto": "57347c93245977448d35f6e3" - }, - "57372e94245977685648d3e1": { - "_id": "57372e94245977685648d3e1", - "_name": "item_ammo_box_545x39_120_PS_damaged", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_120_PS_damaged", - "ShortName": "ammo_box_545x39_120_PS_damaged", - "Description": "ammo_box_545x39_120_PS_damaged", - "Weight": 0.1, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_ps_damaged.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 120, - "StackMaxRandom": 120, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d53ef245977459939d003", - "_parent": "57372e94245977685648d3e1", - "_max_count": 120, - "_props": { - "filters": [ - { - "Filter": [ - "56dff3afd2720bba668b4567" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "57372e1924597768553071c1" - }, - "57372d4c245977685a3da2a1": { - "_id": "57372d4c245977685a3da2a1", - "_name": "item_ammo_box_545x39_120_PP_damaged", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_120_PP_damaged", - "ShortName": "ammo_box_545x39_120_PP_damaged", - "Description": "ammo_box_545x39_120_PP_damaged", - "Weight": 0.1, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_pp_damaged.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 120, - "StackMaxRandom": 120, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d547724597745a1163d83", - "_parent": "57372d4c245977685a3da2a1", - "_max_count": 120, - "_props": { - "filters": [ - { - "Filter": [ - "56dff2ced2720bb4668b4567" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "57372c56245977685e584582" + "_proto": "5734779624597737e04bf329" }, "65702619bfc87b3a34093259": { "_id": "65702619bfc87b3a34093259", @@ -446045,23 +446983,23 @@ }, "_proto": "573478bc24597738002c6175" }, - "657023decfc010a0f50069ec": { - "_id": "657023decfc010a0f50069ec", - "_name": "item_ammo_box_357_25_fmj", - "_parent": "543be5cb4bdc2deb348b4568", + "5a29284f86f77463ef3db363": { + "_id": "5a29284f86f77463ef3db363", + "_name": "item_barter_electr_toughbook_quest", + "_parent": "57864a66245977548f04a81f", "_type": "Item", "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, + "Name": "Toughbook", + "ShortName": "Toughbook", + "Description": "Toughbook", + "Weight": 1, "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, + "Width": 3, + "Height": 2, "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", + "ItemSound": "smallmetal", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_357_magnum.bundle", + "path": "assets/content/items/barter/item_barter_electr_toughbook/item_barter_electr_toughbook.bundle", "rcid": "" }, "UsePrefab": { @@ -446070,17 +447008,17 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": true, + "ExaminedByDefault": false, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, "IsUnbuyable": false, "IsUngivable": false, "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, + "QuestItem": true, + "LootExperience": 30, + "ExamineExperience": 5, + "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, "ExtraSizeLeft": 0, @@ -446089,7 +447027,7 @@ "ExtraSizeDown": 0, "ExtraSizeForceAdd": false, "MergesWithChildren": false, - "CanSellOnRagfair": false, + "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [], "Unlootable": false, @@ -446099,38 +447037,20 @@ "DiscardingBlock": false, "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, + "DiscardLimit": 0, "DropSoundType": "None", "InsuranceDisabled": false, "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber9x33R", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657023decfc010a0f50069ed", - "_parent": "657023decfc010a0f50069ec", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "62330b3ed4dc74626d570b95" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573477e124597737dd42e191" }, - "657023fcbfc87b3a34093213": { - "_id": "657023fcbfc87b3a34093213", - "_name": "item_ammo_box_366_20_geksa", + "65702566bfc87b3a3409324d": { + "_id": "65702566bfc87b3a3409324d", + "_name": "item_ammo_box_762x51_20_sp", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -446144,7 +447064,7 @@ "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_366_tkm.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x51mm.bundle", "rcid": "" }, "UsePrefab": { @@ -446190,18 +447110,1471 @@ "IsUnremovable": false, "StackMinRandom": 20, "StackMaxRandom": 20, - "ammoCaliber": "Caliber366TKM", + "ammoCaliber": "Caliber762x51", "StackSlots": [ { "_name": "cartridges", - "_id": "657023fcbfc87b3a34093214", - "_parent": "657023fcbfc87b3a34093213", + "_id": "65702566bfc87b3a3409324e", + "_parent": "65702566bfc87b3a3409324d", "_max_count": 20, "_props": { "filters": [ { "Filter": [ - "59e6658b86f77411d949b250" + "5e023e6e34d52a55c3304f71" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657024d8c5d7d4cb4d078567": { + "_id": "657024d8c5d7d4cb4d078567", + "_name": "item_ammo_box_556x45_50_fmj", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber556x45NATO", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657024d8c5d7d4cb4d078568", + "_parent": "657024d8c5d7d4cb4d078567", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "59e6920f86f77411d82aa167" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "65702639bfc87b3a3409325c": { + "_id": "65702639bfc87b3a3409325c", + "_name": "item_ammo_box_9x18_50_sp8", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702639bfc87b3a3409325d", + "_parent": "65702639bfc87b3a3409325c", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "5737218f245977612125ba51" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "6570249bcfc010a0f5006a07": { + "_id": "6570249bcfc010a0f5006a07", + "_name": "item_ammo_box_20g_25_slug_broadhead", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_20_70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber20g", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6570249bcfc010a0f5006a08", + "_parent": "6570249bcfc010a0f5006a07", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "5d6e6a5fa4b93614ec501745" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "6570262d1419851aef03e72d": { + "_id": "6570262d1419851aef03e72d", + "_name": "item_ammo_box_9x18_50_pst", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6570262d1419851aef03e72e", + "_parent": "6570262d1419851aef03e72d", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "5737201124597760fc4431f1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657024c81419851aef03e712": { + "_id": "657024c81419851aef03e712", + "_name": "item_ammo_box_46x30_40_action_sx", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_4_6x30mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 40, + "StackMaxRandom": 40, + "ammoCaliber": "Caliber46x30", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657024c81419851aef03e713", + "_parent": "657024c81419851aef03e712", + "_max_count": 40, + "_props": { + "filters": [ + { + "Filter": [ + "5ba26812d4351e003201fef1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "65702449bfc87b3a34093223": { + "_id": "65702449bfc87b3a34093223", + "_name": "item_ammo_box_12g_25_slug_ftx_custom_lite", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber12g", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702449bfc87b3a34093224", + "_parent": "65702449bfc87b3a34093223", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "5d6e68e6a4b9361c140bcfe0" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "617aa4dd8166f034d57de9c5": { + "_id": "617aa4dd8166f034d57de9c5", + "_name": "weapon_grenade_m18", + "_parent": "543be6564bdc2df4348b4568", + "_type": "Item", + "_props": { + "Name": "weapon_grenade_m18", + "ShortName": "weapon_grenade_m18", + "Description": "weapon_grenade_m18", + "Weight": 0.539, + "BackgroundColor": "grey", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/weapons/m18/weapon_grenade_m18_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "ThrowType": "smoke_grenade", + "ExplDelay": 1, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6d686f77467977ba6cc", + "Strength": 0, + "ContusionDistance": 0, + "throwDamMax": 0, + "explDelay": 1, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "Contusion": { + "x": 0, + "y": 0, + "z": 0 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "EmitTime": 90, + "CanBeHiddenDuringThrow": true, + "MinTimeToContactExplode": -1, + "ExplosionEffectType": "grenade_smoke_m18_green" + }, + "_proto": "5448be9a4bdc2dfd2f8b456a" + }, + "5d03794386f77420415576f5": { + "_id": "5d03794386f77420415576f5", + "_name": "item_barter_energy_batterymilitary", + "_parent": "57864ee62459775490116fc1", + "_type": "Item", + "_props": { + "Name": "item_barter_energy_batterymilitary", + "ShortName": "item_barter_energy_batterymilitary", + "Description": "item_barter_energy_batterymilitary", + "Weight": 43.2, + "BackgroundColor": "violet", + "Width": 4, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_energy_batterymilitary/item_barter_energy_batterymilitary.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 40, + "ExamineExperience": 50, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "5734779624597737e04bf329" + }, + "590a358486f77429692b2790": { + "_id": "590a358486f77429692b2790", + "_name": "item_energy_accum", + "_parent": "57864ee62459775490116fc1", + "_type": "Item", + "_props": { + "Name": "Accumulator battery", + "ShortName": "Accum", + "Description": "Accumulator battery", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_plastic_generic", + "Prefab": { + "path": "assets/content/items/barter/item_energy_accum/item_energy_accum.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "5672cb304bdc2dc2088b456a" + }, + "590a3cd386f77436f20848cb": { + "_id": "590a3cd386f77436f20848cb", + "_name": "item_electr_eslamp", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "ESlamp", + "ShortName": "ESlamp", + "Description": "ESlamp", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_electr_eslamp/item_electr_eslamp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "65702554bfc87b3a34093247": { + "_id": "65702554bfc87b3a34093247", + "_name": "item_ammo_box_762x51_20_m62", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x51mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber762x51", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702554bfc87b3a34093248", + "_parent": "65702554bfc87b3a34093247", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5a608bf24f39f98ffc77720e" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "6570255dbfc87b3a3409324a": { + "_id": "6570255dbfc87b3a3409324a", + "_name": "item_ammo_box_762x51_20_ultra_nosler", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x51mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber762x51", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6570255dbfc87b3a3409324b", + "_parent": "6570255dbfc87b3a3409324a", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5e023e88277cce2b522ff2b1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "569668774bdc2da2298b4568": { + "_id": "569668774bdc2da2298b4568", + "_name": "Евро", + "_parent": "543be5dd4bdc2deb348b4569", + "_type": "Item", + "_props": { + "Name": "Euros", + "ShortName": "Euros", + "Description": "Несколько банкнот пока еще котирующихся российских рублей", + "Weight": 0, + "BackgroundColor": "green", + "Width": 1, + "Height": 1, + "StackMaxSize": 50000, + "ItemSound": "item_money", + "Prefab": { + "path": "assets/content/items/money/item_money_euro_small.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": true, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 35, + "StackMaxRandom": 90, + "type": "EUR", + "eqMin": 35, + "eqMax": 90, + "rate": 1 + }, + "_proto": "5696686a4bdc2da3298b456a" + }, + "5448be9a4bdc2dfd2f8b456a": { + "_id": "5448be9a4bdc2dfd2f8b456a", + "_name": "РГД-5", + "_parent": "543be6564bdc2df4348b4568", + "_type": "Item", + "_props": { + "Name": "Граната РГД-5", + "ShortName": "RGD-5", + "Description": "РГД-5 (Ручная Граната Дистанционная, модификация 5) относится к противопехотным осколочным ручным гранатам дистанционного действия наступательного типа. Время замедления запала 3,2—4,2 секунды. Так как граната наступательного типа осколки гранаты имеют небольшую массу и соответственно летят на меньшую дальность.", + "Weight": 0.31, + "BackgroundColor": "grey", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "grenade", + "Prefab": { + "path": "assets/content/weapons/rgd5/weapon_grenade_rgd5_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 20, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "ThrowType": "frag_grenade", + "ExplDelay": 3, + "MinExplosionDistance": 3, + "MaxExplosionDistance": 7, + "FragmentsCount": 70, + "FragmentType": "5996f6cb86f774678763a6ca", + "Strength": 100, + "ContusionDistance": 10, + "throwDamMax": 0, + "explDelay": 3.5, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "Contusion": { + "x": 1.5, + "y": 4, + "z": 14 + }, + "ArmorDistanceDistanceDamage": { + "x": 1, + "y": 4, + "z": 28 + }, + "EmitTime": 0, + "CanBeHiddenDuringThrow": true, + "MinTimeToContactExplode": -1, + "ExplosionEffectType": "Grenade_new" + } + }, + "5733279d245977289b77ec24": { + "_id": "5733279d245977289b77ec24", + "_name": "car_battery", + "_parent": "57864ee62459775490116fc1", + "_type": "Item", + "_props": { + "Name": "Auto battery", + "ShortName": "A Battery", + "Description": "Automobile battery", + "Weight": 12, + "BackgroundColor": "blue", + "Width": 3, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "spec_armorrep", + "Prefab": { + "path": "assets/content/items/barter/car_battery/item_car_battery.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "5d1b32c186f774252167a530": { + "_id": "5d1b32c186f774252167a530", + "_name": "item_barter_building_thermometer", + "_parent": "57864ada245977548638de91", + "_type": "Item", + "_props": { + "Name": "item_barter_building_thermometer", + "ShortName": "item_barter_building_thermometer", + "Description": "item_barter_building_thermometer", + "Weight": 0.3, + "BackgroundColor": "violet", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "smallmetal", + "Prefab": { + "path": "assets/content/items/barter/item_barter_building_thermometer/item_barter_building_thermometer.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "590c31c586f774245e3141b2" + }, + "5bc9b720d4351e450201234b": { + "_id": "5bc9b720d4351e450201234b", + "_name": "item_barter_valuable_1gphone", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "Broken GPhone", + "ShortName": "GPhone", + "Description": "GPhone 9s", + "Weight": 0.3, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_valuable_1gphone/item_barter_valuable_1gphone.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "5672cb724bdc2dc2088b456b": { + "_id": "5672cb724bdc2dc2088b456b", + "_name": "item_geiger_counter", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "Gas analyser", + "ShortName": "GasAn", + "Description": "Gas analyser", + "Weight": 0.4, + "BackgroundColor": "blue", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/geiger_counter/item_geiger_counter.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + } + }, + "65702520bfc87b3a3409323e": { + "_id": "65702520bfc87b3a3409323e", + "_name": "item_ammo_box_57x28_50_r37x", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_7x28mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber57x28", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702520bfc87b3a3409323f", + "_parent": "65702520bfc87b3a3409323e", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "5cc86840d7f00c002412c56c" ] } ] @@ -446294,9 +448667,9 @@ ] } }, - "65702520bfc87b3a3409323e": { - "_id": "65702520bfc87b3a3409323e", - "_name": "item_ammo_box_57x28_50_r37x", + "6570259bc5d7d4cb4d07857f": { + "_id": "6570259bc5d7d4cb4d07857f", + "_name": "item_ammo_box_9x19_50_cci", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -446310,7 +448683,7 @@ "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_7x28mm.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x19_m882_fmj.bundle", "rcid": "" }, "UsePrefab": { @@ -446356,18 +448729,18 @@ "IsUnremovable": false, "StackMinRandom": 50, "StackMaxRandom": 50, - "ammoCaliber": "Caliber57x28", + "ammoCaliber": "Caliber9x19PARA", "StackSlots": [ { "_name": "cartridges", - "_id": "65702520bfc87b3a3409323f", - "_parent": "65702520bfc87b3a3409323e", + "_id": "6570259bc5d7d4cb4d078580", + "_parent": "6570259bc5d7d4cb4d07857f", "_max_count": 50, "_props": { "filters": [ { "Filter": [ - "5cc86840d7f00c002412c56c" + "5a3c16fe86f77452b62de32a" ] } ] @@ -446460,89 +448833,6 @@ ] } }, - "6570259bc5d7d4cb4d07857f": { - "_id": "6570259bc5d7d4cb4d07857f", - "_name": "item_ammo_box_9x19_50_cci", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x19_m882_fmj.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber9x19PARA", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6570259bc5d7d4cb4d078580", - "_parent": "6570259bc5d7d4cb4d07857f", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "5a3c16fe86f77452b62de32a" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, "5485a8684bdc2da71d8b4567": { "_id": "5485a8684bdc2da71d8b4567", "_name": "Ammo", @@ -447158,93 +449448,9 @@ }, "_proto": "573477e124597737dd42e191" }, - "57372c56245977685e584582": { - "_id": "57372c56245977685e584582", - "_name": "item_ammo_box_545x39_120_BT_damaged", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_120_BT_damaged", - "ShortName": "ammo_box_545x39_120_BT_damaged", - "Description": "ammo_box_545x39_120_BT_damaged", - "Weight": 0.1, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_bt_damaged.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 120, - "StackMaxRandom": 120, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d54c6245977459a2f1583", - "_parent": "57372c56245977685e584582", - "_max_count": 120, - "_props": { - "filters": [ - { - "Filter": [ - "56dff061d2720bb5668b4567" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "57372bad245977670b7cd242" - }, - "65702561cfc010a0f5006a28": { - "_id": "65702561cfc010a0f5006a28", - "_name": "item_ammo_box_762x51_20_fmj", + "657024cecfc010a0f5006a0a": { + "_id": "657024cecfc010a0f5006a0a", + "_name": "item_ammo_box_46x30_40_fmj_sx", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -447258,7 +449464,7 @@ "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x51mm.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_4_6x30mm.bundle", "rcid": "" }, "UsePrefab": { @@ -447302,20 +449508,20 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x51", + "StackMinRandom": 40, + "StackMaxRandom": 40, + "ammoCaliber": "Caliber46x30", "StackSlots": [ { "_name": "cartridges", - "_id": "65702561cfc010a0f5006a29", - "_parent": "65702561cfc010a0f5006a28", - "_max_count": 20, + "_id": "657024cecfc010a0f5006a0b", + "_parent": "657024cecfc010a0f5006a0a", + "_max_count": 40, "_props": { "filters": [ { "Filter": [ - "5e023e53d4353e3302577c4c" + "5ba2678ad4351e44f824b344" ] } ] @@ -447325,9 +449531,92 @@ ] } }, - "65702577cfc010a0f5006a2c": { - "_id": "65702577cfc010a0f5006a2c", - "_name": "item_ammo_box_762x54R_20_lps", + "657025421419851aef03e71e": { + "_id": "657025421419851aef03e71e", + "_name": "item_ammo_box_762x25_25_p", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x25mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber762x25TT", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657025421419851aef03e71f", + "_parent": "657025421419851aef03e71e", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "5736026a245977644601dc61" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "6570257cc5d7d4cb4d078579": { + "_id": "6570257cc5d7d4cb4d078579", + "_name": "item_ammo_box_762x54R_20_ps", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -447391,14 +449680,14 @@ "StackSlots": [ { "_name": "cartridges", - "_id": "65702577cfc010a0f5006a2d", - "_parent": "65702577cfc010a0f5006a2c", + "_id": "6570257cc5d7d4cb4d07857a", + "_parent": "6570257cc5d7d4cb4d078579", "_max_count": 20, "_props": { "filters": [ { "Filter": [ - "5887431f2459777e1612938f" + "59e77a2386f7742ee578960a" ] } ] @@ -447408,175 +449697,9 @@ ] } }, - "65702656c5d7d4cb4d078591": { - "_id": "65702656c5d7d4cb4d078591", - "_name": "item_ammo_box_556x45_100_856", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_100_crtg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 100, - "StackMaxRandom": 100, - "ammoCaliber": "Caliber556x45NATO", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702656c5d7d4cb4d078592", - "_parent": "65702656c5d7d4cb4d078591", - "_max_count": 100, - "_props": { - "filters": [ - { - "Filter": [ - "59e68f6f86f7746c9f75e846" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "6570265f1419851aef03e739": { - "_id": "6570265f1419851aef03e739", - "_name": "item_ammo_box_556x45_100_995", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_100_crtg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 100, - "StackMaxRandom": 100, - "ammoCaliber": "Caliber556x45NATO", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6570265f1419851aef03e73a", - "_parent": "6570265f1419851aef03e739", - "_max_count": 100, - "_props": { - "filters": [ - { - "Filter": [ - "59e690b686f7746c9f75e848" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "6570261dc5d7d4cb4d07858e": { - "_id": "6570261dc5d7d4cb4d07858e", - "_name": "item_ammo_box_9x18_50_prs", + "65702591c5d7d4cb4d07857c": { + "_id": "65702591c5d7d4cb4d07857c", + "_name": "item_ammo_box_9x19_50_ap63", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -447590,7 +449713,7 @@ "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x19_m882_fmj.bundle", "rcid": "" }, "UsePrefab": { @@ -447636,18 +449759,18 @@ "IsUnremovable": false, "StackMinRandom": 50, "StackMaxRandom": 50, - "ammoCaliber": "Caliber9x18PM", + "ammoCaliber": "Caliber9x19PARA", "StackSlots": [ { "_name": "cartridges", - "_id": "6570261dc5d7d4cb4d07858f", - "_parent": "6570261dc5d7d4cb4d07858e", + "_id": "65702591c5d7d4cb4d07857d", + "_parent": "65702591c5d7d4cb4d07857c", "_max_count": 50, "_props": { "filters": [ { "Filter": [ - "57371eb62459776125652ac1" + "5c925fa22e221601da359b7b" ] } ] @@ -447657,447 +449780,23 @@ ] } }, - "657024e3c5d7d4cb4d07856a": { - "_id": "657024e3c5d7d4cb4d07856a", - "_name": "item_ammo_box_556x45_50_855a1", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber556x45NATO", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657024e3c5d7d4cb4d07856b", - "_parent": "657024e3c5d7d4cb4d07856a", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "54527ac44bdc2d36668b4567" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "65702452cfc010a0f50069fe": { - "_id": "65702452cfc010a0f50069fe", - "_name": "item_ammo_box_12g_25_slug_poleva_3", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber12g", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702452cfc010a0f50069ff", - "_parent": "65702452cfc010a0f50069fe", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "5d6e6891a4b9361bd473feea" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "65702640cfc010a0f5006a4d": { - "_id": "65702640cfc010a0f5006a4d", - "_name": "item_ammo_box_9x18_50_pstm", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber9x18PMM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702640cfc010a0f5006a4e", - "_parent": "65702640cfc010a0f5006a4d", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "57371aab2459775a77142f22" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "6570248dcfc010a0f5006a04": { - "_id": "6570248dcfc010a0f5006a04", - "_name": "item_ammo_box_20g_25_buckshot_62", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_20_70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber20g", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6570248dcfc010a0f5006a05", - "_parent": "6570248dcfc010a0f5006a04", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "5d6e69b9a4b9361bc8618958" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "619256e5f8af2c1a4e1f5d92": { - "_id": "619256e5f8af2c1a4e1f5d92", - "_name": "weapon_grenade_m7290", + "618a431df1eb8e24b8741deb": { + "_id": "618a431df1eb8e24b8741deb", + "_name": "weapon_grenade_rgo", "_parent": "543be6564bdc2df4348b4568", "_type": "Item", "_props": { - "Name": "weapon_grenade_m7290", - "ShortName": "weapon_grenade_m7290", - "Description": "weapon_grenade_m7290", - "Weight": 0.42, + "Name": "weapon_grenade_rgo", + "ShortName": "weapon_grenade_rgo", + "Description": "weapon_grenade_rgo\n", + "Weight": 0.53, "BackgroundColor": "grey", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "grenade", "Prefab": { - "path": "assets/content/weapons/m7920/weapon_grenade_m7920_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "ThrowType": "flash_grenade", - "ExplDelay": 1.5, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6cb86f774678763a6ca", - "Strength": 0, - "ContusionDistance": 10, - "throwDamMax": 0, - "explDelay": 1.5, - "Blindness": { - "x": 10, - "y": 18, - "z": 35 - }, - "Contusion": { - "x": 2, - "y": 5, - "z": 25 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "EmitTime": 0, - "CanBeHiddenDuringThrow": true, - "MinTimeToContactExplode": -1, - "ExplosionEffectType": "Flashbang" - }, - "_proto": "5448be9a4bdc2dfd2f8b456a" - }, - "617fd91e5539a84ec44ce155": { - "_id": "617fd91e5539a84ec44ce155", - "_name": "weapon_grenade_rgn", - "_parent": "543be6564bdc2df4348b4568", - "_type": "Item", - "_props": { - "Name": "weapon_grenade_rgn", - "ShortName": "weapon_grenade_rgn", - "Description": "weapon_grenade_rgn\n", - "Weight": 0.31, - "BackgroundColor": "grey", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "grenade", - "Prefab": { - "path": "assets/content/weapons/rgn/weapon_grenade_rgn_container.bundle", + "path": "assets/content/weapons/rgn/weapon_grenade_rgo_container.bundle", "rcid": "" }, "UsePrefab": { @@ -448144,11 +449843,11 @@ "ThrowType": "frag_grenade", "ExplDelay": 3, "MinExplosionDistance": 2, - "MaxExplosionDistance": 5, - "FragmentsCount": 75, - "FragmentType": "5996f6cb86f774678763a6ca", - "Strength": 95, - "ContusionDistance": 13, + "MaxExplosionDistance": 7, + "FragmentsCount": 85, + "FragmentType": "63b35f281745dd52341e5da7", + "Strength": 55, + "ContusionDistance": 12, "throwDamMax": 0, "explDelay": 3.5, "Blindness": { @@ -448158,8 +449857,8 @@ }, "Contusion": { "x": 1.5, - "y": 4, - "z": 18 + "y": 5, + "z": 15 }, "ArmorDistanceDistanceDamage": { "x": 1, @@ -448173,1335 +449872,23 @@ }, "_proto": "5448be9a4bdc2dfd2f8b456a" }, - "590c35a486f774273531c822": { - "_id": "590c35a486f774273531c822", - "_name": "polyurethane_foam_open", - "_parent": "57864ada245977548638de91", - "_type": "Item", - "_props": { - "Name": "Foam", - "ShortName": "Foam", - "Description": "Foam", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "food_soda_can", - "Prefab": { - "path": "assets/content/items/barter/polyurethane_foam/polyurethane_foam_open.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "590c31c586f774245e3141b2" - }, - "57372e1924597768553071c1": { - "_id": "57372e1924597768553071c1", - "_name": "item_ammo_box_545x39_120_PRS_damaged", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_545x39_120_PRS_damaged", - "ShortName": "ammo_box_545x39_120_PRS_damaged", - "Description": "ammo_box_545x39_120_PRS_damaged", - "Weight": 0.1, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_545x39_120_prs_damaged.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 120, - "StackMaxRandom": 120, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "574d541f24597745970e7c84", - "_parent": "57372e1924597768553071c1", - "_max_count": 120, - "_props": { - "filters": [ - { - "Filter": [ - "56dff338d2720bbd668b4569" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "57372d4c245977685a3da2a1" - }, - "5c11279ad174af029d64592b": { - "_id": "5c11279ad174af029d64592b", - "_name": "item_ammo_box_556x45_varmageddon_20", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_556x45_varmageddon_20.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber556x45NATO", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "5c11279ad174af029d64592d", - "_parent": "5c11279ad174af029d64592b", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5c0d5ae286f7741e46554302" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - }, - "_proto": "5447ac644bdc2d6c208b4567" - }, - "657024debfc87b3a34093238": { - "_id": "657024debfc87b3a34093238", - "_name": "item_ammo_box_556x45_50_hp", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber556x45NATO", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657024debfc87b3a34093239", - "_parent": "657024debfc87b3a34093238", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "59e6927d86f77411da468256" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "65702681bfc87b3a3409325f": { - "_id": "65702681bfc87b3a3409325f", - "_name": "item_ammo_box_556x45_100_ssa_ap", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 100, - "StackMaxRandom": 100, - "ammoCaliber": "Caliber556x45NATO", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702681bfc87b3a34093260", - "_parent": "65702681bfc87b3a3409325f", - "_max_count": 100, - "_props": { - "filters": [ - { - "Filter": [ - "601949593ae8f707c4608daa" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "65702606cfc010a0f5006a3e": { - "_id": "65702606cfc010a0f5006a3e", - "_name": "item_ammo_box_9x18_50_bzht", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702606cfc010a0f5006a3f", - "_parent": "65702606cfc010a0f5006a3e", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "573718ba2459775a75491131" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "65702614c5d7d4cb4d07858b": { - "_id": "65702614c5d7d4cb4d07858b", - "_name": "item_ammo_box_9x18_50_ppt", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702614c5d7d4cb4d07858c", - "_parent": "65702614c5d7d4cb4d07858b", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "57371e4124597760ff7b25f1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657024ecc5d7d4cb4d07856d": { - "_id": "657024ecc5d7d4cb4d07856d", - "_name": "item_ammo_box_556x45_50_856a1", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber556x45NATO", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657024ecc5d7d4cb4d07856e", - "_parent": "657024ecc5d7d4cb4d07856d", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "59e6906286f7746c9f75e847" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657023b1cfc010a0f50069e5": { - "_id": "657023b1cfc010a0f50069e5", - "_name": "item_ammo_box_blackout_50_m62", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_300_blackout.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber762x35", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657023b1cfc010a0f50069e6", - "_parent": "657023b1cfc010a0f50069e5", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "619636be6db0f2477964e710" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657024f01419851aef03e715": { - "_id": "657024f01419851aef03e715", - "_name": "item_ammo_box_556x45_50_995", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber556x45NATO", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657024f01419851aef03e716", - "_parent": "657024f01419851aef03e715", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "59e690b686f7746c9f75e848" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657025161419851aef03e718": { - "_id": "657025161419851aef03e718", - "_name": "item_ammo_box_57x28_50_l191", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_7x28mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber57x28", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657025161419851aef03e719", - "_parent": "657025161419851aef03e718", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "5cc80f53e4a949000e1ea4f8" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657984a50fbff513dd435765": { - "_id": "657984a50fbff513dd435765", - "_name": "item_ammo_box_9x39_20_fmj", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "item_ammo_box_9x39_20_fmj", - "ShortName": "item_ammo_box_9x39_20_fmj", - "Description": "item_ammo_box_9x39_20_fmj", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x39_pso.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber9x39", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657984a50fbff513dd435766", - "_parent": "657984a50fbff513dd435765", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "6576f96220d53a5b8f3e395e" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657026341419851aef03e730": { - "_id": "657026341419851aef03e730", - "_name": "item_ammo_box_9x18_50_sp7", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657026341419851aef03e731", - "_parent": "657026341419851aef03e730", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "57372140245977611f70ee91" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "65702629cfc010a0f5006a47": { - "_id": "65702629cfc010a0f5006a47", - "_name": "item_ammo_box_9x18_50_pso", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber9x18PM", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702629cfc010a0f5006a48", - "_parent": "65702629cfc010a0f5006a47", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "57371f8d24597761006c6a81" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657023b71419851aef03e6e8": { - "_id": "657023b71419851aef03e6e8", - "_name": "item_ammo_box_blackout_50_vmax", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_300_blackout.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber762x35", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657023b71419851aef03e6e9", - "_parent": "657023b71419851aef03e6e8", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "6196364158ef8c428c287d9f" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "6570247ebfc87b3a34093229": { - "_id": "6570247ebfc87b3a34093229", - "_name": "item_ammo_box_12g_25_slug_superformance", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber12g", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6570247ebfc87b3a3409322a", - "_parent": "6570247ebfc87b3a34093229", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "5d6e68d1a4b93622fe60e845" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "5d0377ce86f774186372f689": { - "_id": "5d0377ce86f774186372f689", - "_name": "item_barter_electr_thermalmodule", + "5d1b309586f77425227d1676": { + "_id": "5d1b309586f77425227d1676", + "_name": "item_barter_electr_lcd_Dirt", "_parent": "57864a66245977548f04a81f", "_type": "Item", "_props": { - "Name": "item_barter_electr_thermalmodule", - "ShortName": "item_barter_electr_thermalmodule", - "Description": "item_barter_electr_thermalmodule", - "Weight": 0.21, - "BackgroundColor": "violet", + "Name": "item_barter_electr_lcd_Dirt", + "ShortName": "item_barter_electr_lcd_Dirt", + "Description": "item_barter_electr_lcd_Dirt", + "Weight": 0.05, + "BackgroundColor": "blue", "Width": 1, - "Height": 1, + "Height": 2, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_thermalmodule/item_barter_electr_thermalmodule.bundle", + "path": "assets/content/items/barter/item_barter_electr_lcd/item_barter_electr_lcd_dirt.bundle", "rcid": "" }, "UsePrefab": { @@ -449510,7 +449897,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": false, + "ExaminedByDefault": true, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -449519,7 +449906,7 @@ "IsLockedafterEquip": false, "QuestItem": false, "LootExperience": 40, - "ExamineExperience": 100, + "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -449799,89 +450186,6 @@ ] } }, - "657024831419851aef03e703": { - "_id": "657024831419851aef03e703", - "_name": "item_ammo_box_20g_25_buckshot_56", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_20_70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber20g", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657024831419851aef03e704", - "_parent": "657024831419851aef03e703", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "5d6e695fa4b936359b35d852" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, "657025c9cfc010a0f5006a38": { "_id": "657025c9cfc010a0f5006a38", "_name": "item_ammo_box_9x21_30_pe", @@ -450488,747 +450792,9 @@ }, "_proto": "5734773724597737fd047c14" }, - "6570244ec5d7d4cb4d078558": { - "_id": "6570244ec5d7d4cb4d078558", - "_name": "item_ammo_box_12g_25_slug_grizzly_40", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber12g", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6570244ec5d7d4cb4d078559", - "_parent": "6570244ec5d7d4cb4d078558", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "5d6e6869a4b9361c140bcfde" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657024cecfc010a0f5006a0a": { - "_id": "657024cecfc010a0f5006a0a", - "_name": "item_ammo_box_46x30_40_fmj_sx", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_4_6x30mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 40, - "StackMaxRandom": 40, - "ammoCaliber": "Caliber46x30", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657024cecfc010a0f5006a0b", - "_parent": "657024cecfc010a0f5006a0a", - "_max_count": 40, - "_props": { - "filters": [ - { - "Filter": [ - "5ba2678ad4351e44f824b344" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657025421419851aef03e71e": { - "_id": "657025421419851aef03e71e", - "_name": "item_ammo_box_762x25_25_p", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x25mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber762x25TT", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657025421419851aef03e71f", - "_parent": "657025421419851aef03e71e", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "5736026a245977644601dc61" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "6570257cc5d7d4cb4d078579": { - "_id": "6570257cc5d7d4cb4d078579", - "_name": "item_ammo_box_762x54R_20_ps", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x54mm_r.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x54R", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6570257cc5d7d4cb4d07857a", - "_parent": "6570257cc5d7d4cb4d078579", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "59e77a2386f7742ee578960a" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "65702591c5d7d4cb4d07857c": { - "_id": "65702591c5d7d4cb4d07857c", - "_name": "item_ammo_box_9x19_50_ap63", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x19_m882_fmj.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber9x19PARA", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702591c5d7d4cb4d07857d", - "_parent": "65702591c5d7d4cb4d07857c", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "5c925fa22e221601da359b7b" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "618a431df1eb8e24b8741deb": { - "_id": "618a431df1eb8e24b8741deb", - "_name": "weapon_grenade_rgo", - "_parent": "543be6564bdc2df4348b4568", - "_type": "Item", - "_props": { - "Name": "weapon_grenade_rgo", - "ShortName": "weapon_grenade_rgo", - "Description": "weapon_grenade_rgo\n", - "Weight": 0.53, - "BackgroundColor": "grey", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "grenade", - "Prefab": { - "path": "assets/content/weapons/rgn/weapon_grenade_rgo_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 20, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "ThrowType": "frag_grenade", - "ExplDelay": 3, - "MinExplosionDistance": 2, - "MaxExplosionDistance": 7, - "FragmentsCount": 85, - "FragmentType": "63b35f281745dd52341e5da7", - "Strength": 55, - "ContusionDistance": 12, - "throwDamMax": 0, - "explDelay": 3.5, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "Contusion": { - "x": 1.5, - "y": 5, - "z": 15 - }, - "ArmorDistanceDistanceDamage": { - "x": 1, - "y": 4, - "z": 28 - }, - "EmitTime": 0, - "CanBeHiddenDuringThrow": true, - "MinTimeToContactExplode": 0.3, - "ExplosionEffectType": "Grenade_new2" - }, - "_proto": "5448be9a4bdc2dfd2f8b456a" - }, - "5d1b309586f77425227d1676": { - "_id": "5d1b309586f77425227d1676", - "_name": "item_barter_electr_lcd_Dirt", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "item_barter_electr_lcd_Dirt", - "ShortName": "item_barter_electr_lcd_Dirt", - "Description": "item_barter_electr_lcd_Dirt", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_lcd/item_barter_electr_lcd_dirt.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 40, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "5734779624597737e04bf329" - }, - "6570265bcfc010a0f5006a56": { - "_id": "6570265bcfc010a0f5006a56", - "_name": "item_ammo_box_556x45_100_856a1", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_100_crtg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 100, - "StackMaxRandom": 100, - "ammoCaliber": "Caliber556x45NATO", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6570265bcfc010a0f5006a57", - "_parent": "6570265bcfc010a0f5006a56", - "_max_count": 100, - "_props": { - "filters": [ - { - "Filter": [ - "59e6906286f7746c9f75e847" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "65702536c5d7d4cb4d078570": { - "_id": "65702536c5d7d4cb4d078570", - "_name": "item_ammo_box_762x25_25_lrn", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x25mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber762x25TT", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702536c5d7d4cb4d078571", - "_parent": "65702536c5d7d4cb4d078570", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "573601b42459776410737435" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "65702558cfc010a0f5006a25": { - "_id": "65702558cfc010a0f5006a25", - "_name": "item_ammo_box_762x51_20_m80", + "6570254fcfc010a0f5006a22": { + "_id": "6570254fcfc010a0f5006a22", + "_name": "item_ammo_box_762x51_20_m61", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -451292,14 +450858,14 @@ "StackSlots": [ { "_name": "cartridges", - "_id": "65702558cfc010a0f5006a26", - "_parent": "65702558cfc010a0f5006a25", + "_id": "6570254fcfc010a0f5006a23", + "_parent": "6570254fcfc010a0f5006a22", "_max_count": 20, "_props": { "filters": [ { "Filter": [ - "58dd3ad986f77403051cba8f" + "5a6086ea4f39f99cd479502f" ] } ] @@ -451309,9 +450875,9 @@ ] } }, - "6570252dbfc87b3a34093241": { - "_id": "6570252dbfc87b3a34093241", - "_name": "item_ammo_box_57x28_50_ss198lf", + "657024f5cfc010a0f5006a10": { + "_id": "657024f5cfc010a0f5006a10", + "_name": "item_ammo_box_556x45_50_mk_255", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -451325,7 +450891,7 @@ "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_7x28mm.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", "rcid": "" }, "UsePrefab": { @@ -451371,18 +450937,18 @@ "IsUnremovable": false, "StackMinRandom": 50, "StackMaxRandom": 50, - "ammoCaliber": "Caliber57x28", + "ammoCaliber": "Caliber556x45NATO", "StackSlots": [ { "_name": "cartridges", - "_id": "6570252dbfc87b3a34093242", - "_parent": "6570252dbfc87b3a34093241", + "_id": "657024f5cfc010a0f5006a11", + "_parent": "657024f5cfc010a0f5006a10", "_max_count": 50, "_props": { "filters": [ { "Filter": [ - "5cc80f79e4a949033c7343b2" + "59e6918f86f7746c9f75e849" ] } ] @@ -451392,1294 +450958,6 @@ ] } }, - "657025a4bfc87b3a34093250": { - "_id": "657025a4bfc87b3a34093250", - "_name": "item_ammo_box_9x19_50_pso", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x19_m882_fmj.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber9x19PARA", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657025a4bfc87b3a34093251", - "_parent": "657025a4bfc87b3a34093250", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "58864a4f2459770fcc257101" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657025cfbfc87b3a34093253": { - "_id": "657025cfbfc87b3a34093253", - "_name": "item_ammo_box_9x39_20_pab9", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x39mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber9x39", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657025cfbfc87b3a34093254", - "_parent": "657025cfbfc87b3a34093253", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "61962d879bb3d20b0946d385" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657024a4bfc87b3a3409322c": { - "_id": "657024a4bfc87b3a3409322c", - "_name": "item_ammo_box_20g_25_slug_poleva_3", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_20_70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber20g", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657024a4bfc87b3a3409322d", - "_parent": "657024a4bfc87b3a3409322c", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "5d6e6a53a4b9361bd473feec" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657024a91419851aef03e70c": { - "_id": "657024a91419851aef03e70c", - "_name": "item_ammo_box_20g_25_slug_poleva_6u", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_20_70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber20g", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657024a91419851aef03e70d", - "_parent": "657024a91419851aef03e70c", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "5d6e6a42a4b9364f07165f52" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "6579846c1ec1943afb14c15a": { - "_id": "6579846c1ec1943afb14c15a", - "_name": "item_ammo_box_9x21_30_7u4", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "item_ammo_box_9x21_30_7u4", - "ShortName": "item_ammo_box_9x21_30_7u4", - "Description": "item_ammo_box_9x21_30_7u4", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x21mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 30, - "StackMaxRandom": 30, - "ammoCaliber": "Caliber9x21", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6579846c1ec1943afb14c15b", - "_parent": "6579846c1ec1943afb14c15a", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "6576f93989f0062e741ba952" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "5449016a4bdc2d6f028b456f": { - "_id": "5449016a4bdc2d6f028b456f", - "_name": "Рубли", - "_parent": "543be5dd4bdc2deb348b4569", - "_type": "Item", - "_props": { - "Name": "Рубли", - "ShortName": "Roubles", - "Description": "Несколько банкнот пока еще котирующихся российских рублей", - "Weight": 0, - "BackgroundColor": "green", - "Width": 1, - "Height": 1, - "StackMaxSize": 500000, - "ItemSound": "item_money", - "Prefab": { - "path": "assets/content/items/money/item_money_ruble_small.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": true, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 20000, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 560, - "StackMaxRandom": 1150, - "type": "RUB", - "eqMin": 275, - "eqMax": 555, - "rate": 1 - } - }, - "5e2af29386f7746d4159f077": { - "_id": "5e2af29386f7746d4159f077", - "_name": "item_barter_building_kektape", - "_parent": "57864ada245977548638de91", - "_type": "Item", - "_props": { - "Name": "item_barter_building_kektape", - "ShortName": "item_barter_building_kektape", - "Description": "item_barter_building_kektape", - "Weight": 0.15, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_building_kektape/item_barter_building_kektape.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573478bc24597738002c6175" - }, - "57347c77245977448d35f6e2": { - "_id": "57347c77245977448d35f6e2", - "_name": "screw_nuts", - "_parent": "57864ada245977548638de91", - "_type": "Item", - "_props": { - "Name": "Screw nut", - "ShortName": "Screw nut", - "Description": "Screw nut", - "Weight": 0.4, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/screw_nut_bolt/item_screw_nuts.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c5b245977448d35f6e1" - }, - "657024581419851aef03e700": { - "_id": "657024581419851aef03e700", - "_name": "item_ammo_box_12g_25_slug_poleva_6u", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber12g", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657024581419851aef03e701", - "_parent": "657024581419851aef03e700", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "5d6e689ca4b9361bc8618956" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "6579847c5a0e5879d12f2873": { - "_id": "6579847c5a0e5879d12f2873", - "_name": "item_ammo_box_9x21_30_7n42", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "item_ammo_box_9x21_30_7n42", - "ShortName": "item_ammo_box_9x21_30_7n42", - "Description": "item_ammo_box_9x21_30_7n42", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x21mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 30, - "StackMaxRandom": 30, - "ammoCaliber": "Caliber9x21", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6579847c5a0e5879d12f2874", - "_parent": "6579847c5a0e5879d12f2873", - "_max_count": 30, - "_props": { - "filters": [ - { - "Filter": [ - "6576f4708ca9c4381d16cd9d" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657025d4c5d7d4cb4d078585": { - "_id": "657025d4c5d7d4cb4d078585", - "_name": "item_ammo_box_9x39_20_sp5", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x39mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber9x39", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657025d4c5d7d4cb4d078586", - "_parent": "657025d4c5d7d4cb4d078585", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "57a0dfb82459774d3078b56c" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657024d2bfc87b3a34093235": { - "_id": "657024d2bfc87b3a34093235", - "_name": "item_ammo_box_46x30_40_subsonic_sx", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_4_6x30mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 40, - "StackMaxRandom": 40, - "ammoCaliber": "Caliber46x30", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657024d2bfc87b3a34093236", - "_parent": "657024d2bfc87b3a34093235", - "_max_count": 40, - "_props": { - "filters": [ - { - "Filter": [ - "5ba26844d4351e00334c9475" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657025961419851aef03e721": { - "_id": "657025961419851aef03e721", - "_name": "item_ammo_box_9x19_50_green_tracer", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x19_m882_fmj.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber9x19PARA", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657025961419851aef03e722", - "_parent": "657025961419851aef03e721", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "5c3df7d588a4501f290594e5" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "5af0561e86f7745f5f3ad6ac": { - "_id": "5af0561e86f7745f5f3ad6ac", - "_name": "item_barter_energy_powerbank", - "_parent": "57864ee62459775490116fc1", - "_type": "Item", - "_props": { - "Name": "powerbank", - "ShortName": "powerbank", - "Description": "powerbank", - "Weight": 0.3, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_energy_powerbank/item_barter_energy_powerbank.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "5672cb304bdc2dc2088b456a" - }, - "5734795124597738002c6176": { - "_id": "5734795124597738002c6176", - "_name": "insulation_tape", - "_parent": "57864ada245977548638de91", - "_type": "Item", - "_props": { - "Name": "insulating tape", - "ShortName": "Tape", - "Description": "insulating tape", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/insulation_tape/item_insulation_tape.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573478bc24597738002c6175" - }, - "5d1b2fa286f77425227d1674": { - "_id": "5d1b2fa286f77425227d1674", - "_name": "item_barter_electr_engine", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "item_barter_electr_engine", - "ShortName": "item_barter_electr_engine", - "Description": "item_barter_electr_engine", - "Weight": 1.4, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "smallmetal", - "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_engine/item_barter_electr_engine.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 40, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "5734779624597737e04bf329" - }, - "5d0376a486f7747d8050965c": { - "_id": "5d0376a486f7747d8050965c", - "_name": "item_barter_electr_militaryboard", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "item_barter_electr_militaryboard", - "ShortName": "item_barter_electr_militaryboard", - "Description": "item_barter_electr_militaryboard", - "Weight": 0.52, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_militaryboard/item_barter_electr_militaryboard.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 40, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "5734779624597737e04bf329" - }, "65702532cfc010a0f5006a19": { "_id": "65702532cfc010a0f5006a19", "_name": "item_ammo_box_762x25_25_fmj43", @@ -452846,9 +451124,9 @@ ] } }, - "65702566bfc87b3a3409324d": { - "_id": "65702566bfc87b3a3409324d", - "_name": "item_ammo_box_762x51_20_sp", + "657026451419851aef03e733": { + "_id": "657026451419851aef03e733", + "_name": "item_ammo_box_556x45_100_fmj", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -452857,12 +451135,12 @@ "Description": "ammo_box_556x45_xx_m193ball", "Weight": 0.01, "BackgroundColor": "yellow", - "Width": 1, + "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x51mm.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_100_crtg.bundle", "rcid": "" }, "UsePrefab": { @@ -452906,98 +451184,15 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 20, - "StackMaxRandom": 20, - "ammoCaliber": "Caliber762x51", + "StackMinRandom": 100, + "StackMaxRandom": 100, + "ammoCaliber": "Caliber762x35", "StackSlots": [ { "_name": "cartridges", - "_id": "65702566bfc87b3a3409324e", - "_parent": "65702566bfc87b3a3409324d", - "_max_count": 20, - "_props": { - "filters": [ - { - "Filter": [ - "5e023e6e34d52a55c3304f71" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657024d8c5d7d4cb4d078567": { - "_id": "657024d8c5d7d4cb4d078567", - "_name": "item_ammo_box_556x45_50_fmj", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber556x45NATO", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657024d8c5d7d4cb4d078568", - "_parent": "657024d8c5d7d4cb4d078567", - "_max_count": 50, + "_id": "657026451419851aef03e734", + "_parent": "657026451419851aef03e733", + "_max_count": 100, "_props": { "filters": [ { @@ -453012,89 +451207,6 @@ ] } }, - "657024f9bfc87b3a3409323b": { - "_id": "657024f9bfc87b3a3409323b", - "_name": "item_ammo_box_556x45_50_mk_318", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber556x45NATO", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657024f9bfc87b3a3409323c", - "_parent": "657024f9bfc87b3a3409323b", - "_max_count": 50, - "_props": { - "filters": [ - { - "Filter": [ - "60194943740c5d77f6705eea" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, "65702546cfc010a0f5006a1f": { "_id": "65702546cfc010a0f5006a1f", "_name": "item_ammo_box_762x25_25_pst", @@ -453178,9 +451290,9 @@ ] } }, - "657024f5cfc010a0f5006a10": { - "_id": "657024f5cfc010a0f5006a10", - "_name": "item_ammo_box_556x45_50_mk_255", + "657024921419851aef03e706": { + "_id": "657024921419851aef03e706", + "_name": "item_ammo_box_20g_25_buckshot_73", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -453194,7 +451306,7 @@ "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_20_70.bundle", "rcid": "" }, "UsePrefab": { @@ -453238,20 +451350,20 @@ "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, - "StackMinRandom": 50, - "StackMaxRandom": 50, - "ammoCaliber": "Caliber556x45NATO", + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber20g", "StackSlots": [ { "_name": "cartridges", - "_id": "657024f5cfc010a0f5006a11", - "_parent": "657024f5cfc010a0f5006a10", - "_max_count": 50, + "_id": "657024921419851aef03e707", + "_parent": "657024921419851aef03e706", + "_max_count": 25, "_props": { "filters": [ { "Filter": [ - "59e6918f86f7746c9f75e849" + "5d6e69c7a4b9360b6c0d54e4" ] } ] @@ -453261,9 +451373,9 @@ ] } }, - "6570262d1419851aef03e72d": { - "_id": "6570262d1419851aef03e72d", - "_name": "item_ammo_box_9x18_50_pst", + "65702610cfc010a0f5006a41": { + "_id": "65702610cfc010a0f5006a41", + "_name": "item_ammo_box_9x18_50_pbm", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -453327,14 +451439,14 @@ "StackSlots": [ { "_name": "cartridges", - "_id": "6570262d1419851aef03e72e", - "_parent": "6570262d1419851aef03e72d", + "_id": "65702610cfc010a0f5006a42", + "_parent": "65702610cfc010a0f5006a41", "_max_count": 50, "_props": { "filters": [ { "Filter": [ - "5737201124597760fc4431f1" + "573719df2459775a626ccbc2" ] } ] @@ -453344,9 +451456,9 @@ ] } }, - "65702639bfc87b3a3409325c": { - "_id": "65702639bfc87b3a3409325c", - "_name": "item_ammo_box_9x18_50_sp8", + "657023a9126cc4a57d0e17a6": { + "_id": "657023a9126cc4a57d0e17a6", + "_name": "item_ammo_box_blackout_50_cbj", "_parent": "543be5cb4bdc2deb348b4568", "_type": "Item", "_props": { @@ -453360,7 +451472,7 @@ "StackMaxSize": 1, "ItemSound": "ammo_pack_generic", "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", + "path": "assets/content/items/ammo/boxes/item_ammo_box_300_blackout.bundle", "rcid": "" }, "UsePrefab": { @@ -453406,18 +451518,18 @@ "IsUnremovable": false, "StackMinRandom": 50, "StackMaxRandom": 50, - "ammoCaliber": "Caliber9x18PM", + "ammoCaliber": "Caliber762x35", "StackSlots": [ { "_name": "cartridges", - "_id": "65702639bfc87b3a3409325d", - "_parent": "65702639bfc87b3a3409325c", + "_id": "657023a9126cc4a57d0e17a7", + "_parent": "657023a9126cc4a57d0e17a6", "_max_count": 50, "_props": { "filters": [ { "Filter": [ - "5737218f245977612125ba51" + "64b8725c4b75259c590fa899" ] } ] @@ -453427,6 +451539,98 @@ ] } }, + "58d3db5386f77426186285a0": { + "_id": "58d3db5386f77426186285a0", + "_name": "weapon_grenade_m67", + "_parent": "543be6564bdc2df4348b4568", + "_type": "Item", + "_props": { + "Name": "weapon_grenade_m67", + "ShortName": "weapon_grenade_m67", + "Description": "weapon_grenade_m67", + "Weight": 0.396, + "BackgroundColor": "grey", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "grenade", + "Prefab": { + "path": "assets/content/weapons/m67/weapon_grenade_m67_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 20, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "ThrowType": "frag_grenade", + "ExplDelay": 5, + "MinExplosionDistance": 4, + "MaxExplosionDistance": 8, + "FragmentsCount": 75, + "FragmentType": "5996f6fc86f7745e585b4de3", + "Strength": 110, + "ContusionDistance": 11, + "throwDamMax": 0, + "explDelay": 5, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "Contusion": { + "x": 2, + "y": 4, + "z": 14 + }, + "ArmorDistanceDistanceDamage": { + "x": 1, + "y": 4, + "z": 29 + }, + "EmitTime": 0, + "CanBeHiddenDuringThrow": true, + "MinTimeToContactExplode": -1, + "ExplosionEffectType": "Grenade_new" + }, + "_proto": "5448be9a4bdc2dfd2f8b456a" + }, "5a2a57cfc4a2826c6e06d44a": { "_id": "5a2a57cfc4a2826c6e06d44a", "_name": "weapon_grenade_rdg2", @@ -453519,412 +451723,6 @@ }, "_proto": "5448be9a4bdc2dfd2f8b456a" }, - "6570249bcfc010a0f5006a07": { - "_id": "6570249bcfc010a0f5006a07", - "_name": "item_ammo_box_20g_25_slug_broadhead", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_20_70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber20g", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "6570249bcfc010a0f5006a08", - "_parent": "6570249bcfc010a0f5006a07", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "5d6e6a5fa4b93614ec501745" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "65702449bfc87b3a34093223": { - "_id": "65702449bfc87b3a34093223", - "_name": "item_ammo_box_12g_25_slug_ftx_custom_lite", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_12_70.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 25, - "StackMaxRandom": 25, - "ammoCaliber": "Caliber12g", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "65702449bfc87b3a34093224", - "_parent": "65702449bfc87b3a34093223", - "_max_count": 25, - "_props": { - "filters": [ - { - "Filter": [ - "5d6e68e6a4b9361c140bcfe0" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "657024c81419851aef03e712": { - "_id": "657024c81419851aef03e712", - "_name": "item_ammo_box_46x30_40_action_sx", - "_parent": "543be5cb4bdc2deb348b4568", - "_type": "Item", - "_props": { - "Name": "ammo_box_556x45_xx_m193ball", - "ShortName": "ammo_box_556x45_xx_m193ball", - "Description": "ammo_box_556x45_xx_m193ball", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "ammo_pack_generic", - "Prefab": { - "path": "assets/content/items/ammo/boxes/item_ammo_box_4_6x30mm.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 0, - "ExamineExperience": 10, - "HideEntrails": true, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "StackMinRandom": 40, - "StackMaxRandom": 40, - "ammoCaliber": "Caliber46x30", - "StackSlots": [ - { - "_name": "cartridges", - "_id": "657024c81419851aef03e713", - "_parent": "657024c81419851aef03e712", - "_max_count": 40, - "_props": { - "filters": [ - { - "Filter": [ - "5ba26812d4351e003201fef1" - ] - } - ] - }, - "_proto": "5748538b2459770af276a261" - } - ] - } - }, - "617aa4dd8166f034d57de9c5": { - "_id": "617aa4dd8166f034d57de9c5", - "_name": "weapon_grenade_m18", - "_parent": "543be6564bdc2df4348b4568", - "_type": "Item", - "_props": { - "Name": "weapon_grenade_m18", - "ShortName": "weapon_grenade_m18", - "Description": "weapon_grenade_m18", - "Weight": 0.539, - "BackgroundColor": "grey", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/weapons/m18/weapon_grenade_m18_container.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 4, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "ThrowType": "smoke_grenade", - "ExplDelay": 1, - "MinExplosionDistance": 0, - "MaxExplosionDistance": 0, - "FragmentsCount": 0, - "FragmentType": "5996f6d686f77467977ba6cc", - "Strength": 0, - "ContusionDistance": 0, - "throwDamMax": 0, - "explDelay": 1, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "Contusion": { - "x": 0, - "y": 0, - "z": 0 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "EmitTime": 90, - "CanBeHiddenDuringThrow": true, - "MinTimeToContactExplode": -1, - "ExplosionEffectType": "grenade_smoke_m18_green" - }, - "_proto": "5448be9a4bdc2dfd2f8b456a" - }, - "5d03794386f77420415576f5": { - "_id": "5d03794386f77420415576f5", - "_name": "item_barter_energy_batterymilitary", - "_parent": "57864ee62459775490116fc1", - "_type": "Item", - "_props": { - "Name": "item_barter_energy_batterymilitary", - "ShortName": "item_barter_energy_batterymilitary", - "Description": "item_barter_energy_batterymilitary", - "Weight": 43.2, - "BackgroundColor": "violet", - "Width": 4, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_energy_batterymilitary/item_barter_energy_batterymilitary.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 40, - "ExamineExperience": 50, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "5734779624597737e04bf329" - }, "590c31c586f774245e3141b2": { "_id": "590c31c586f774245e3141b2", "_name": "item_barter_building_nails", @@ -453989,6 +451787,71 @@ "Resource": 0 } }, + "59e35ef086f7741777737012": { + "_id": "59e35ef086f7741777737012", + "_name": "item_barter_building_screw", + "_parent": "57864ada245977548638de91", + "_type": "Item", + "_props": { + "Name": "Screw", + "ShortName": "item_barter_building_screw", + "Description": "item_barter_building_screw", + "Weight": 0.3, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_building_screw/item_barter_building_screw.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "590c31c586f774245e3141b2" + }, "5e2af22086f7746d3f3c33fa": { "_id": "5e2af22086f7746d3f3c33fa", "_name": "item_barter_building_poxeram", @@ -454054,71 +451917,6 @@ }, "_proto": "573478bc24597738002c6175" }, - "590a358486f77429692b2790": { - "_id": "590a358486f77429692b2790", - "_name": "item_energy_accum", - "_parent": "57864ee62459775490116fc1", - "_type": "Item", - "_props": { - "Name": "Accumulator battery", - "ShortName": "Accum", - "Description": "Accumulator battery", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/barter/item_energy_accum/item_energy_accum.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "5672cb304bdc2dc2088b456a" - }, "5af04c0b86f774138708f78e": { "_id": "5af04c0b86f774138708f78e", "_name": "item_barter_electr_controller", @@ -454184,6 +451982,71 @@ }, "_proto": "573477e124597737dd42e191" }, + "5af04e0a86f7743a532b79e2": { + "_id": "5af04e0a86f7743a532b79e2", + "_name": "item_barter_electr_gyroscope", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "gyroscope", + "ShortName": "gyroscope", + "Description": "gyroscope", + "Weight": 0.3, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_electr_gyroscope/item_barter_electr_gyroscope.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 35, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c93245977448d35f6e3" + }, "5d03784a86f774203e7e0c4d": { "_id": "5d03784a86f774203e7e0c4d", "_name": "item_barter_electr_gyrotachometer", @@ -454314,23 +452177,2080 @@ }, "_proto": "573477e124597737dd42e191" }, - "619252352be33f26043400a7": { - "_id": "619252352be33f26043400a7", - "_name": "item_qlight4_l1_redcar", + "6570248dcfc010a0f5006a04": { + "_id": "6570248dcfc010a0f5006a04", + "_name": "item_ammo_box_20g_25_buckshot_62", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_20_70.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber20g", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6570248dcfc010a0f5006a05", + "_parent": "6570248dcfc010a0f5006a04", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "5d6e69b9a4b9361bc8618958" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "65702681bfc87b3a3409325f": { + "_id": "65702681bfc87b3a3409325f", + "_name": "item_ammo_box_556x45_100_ssa_ap", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 100, + "StackMaxRandom": 100, + "ammoCaliber": "Caliber556x45NATO", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702681bfc87b3a34093260", + "_parent": "65702681bfc87b3a3409325f", + "_max_count": 100, + "_props": { + "filters": [ + { + "Filter": [ + "601949593ae8f707c4608daa" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657023e7c5d7d4cb4d078552": { + "_id": "657023e7c5d7d4cb4d078552", + "_name": "item_ammo_box_357_25_jhp", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_357_magnum.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 25, + "StackMaxRandom": 25, + "ammoCaliber": "Caliber9x33R", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657023e7c5d7d4cb4d078553", + "_parent": "657023e7c5d7d4cb4d078552", + "_max_count": 25, + "_props": { + "filters": [ + { + "Filter": [ + "62330c18744e5e31df12f516" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "65702561cfc010a0f5006a28": { + "_id": "65702561cfc010a0f5006a28", + "_name": "item_ammo_box_762x51_20_fmj", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x51mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber762x51", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702561cfc010a0f5006a29", + "_parent": "65702561cfc010a0f5006a28", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5e023e53d4353e3302577c4c" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "65702577cfc010a0f5006a2c": { + "_id": "65702577cfc010a0f5006a2c", + "_name": "item_ammo_box_762x54R_20_lps", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_7_62x54mm_r.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber762x54R", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702577cfc010a0f5006a2d", + "_parent": "65702577cfc010a0f5006a2c", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "5887431f2459777e1612938f" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "65702656c5d7d4cb4d078591": { + "_id": "65702656c5d7d4cb4d078591", + "_name": "item_ammo_box_556x45_100_856", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_100_crtg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 100, + "StackMaxRandom": 100, + "ammoCaliber": "Caliber556x45NATO", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702656c5d7d4cb4d078592", + "_parent": "65702656c5d7d4cb4d078591", + "_max_count": 100, + "_props": { + "filters": [ + { + "Filter": [ + "59e68f6f86f7746c9f75e846" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657024debfc87b3a34093238": { + "_id": "657024debfc87b3a34093238", + "_name": "item_ammo_box_556x45_50_hp", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber556x45NATO", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657024debfc87b3a34093239", + "_parent": "657024debfc87b3a34093238", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "59e6927d86f77411da468256" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "6570265f1419851aef03e739": { + "_id": "6570265f1419851aef03e739", + "_name": "item_ammo_box_556x45_100_995", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_100_crtg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 100, + "StackMaxRandom": 100, + "ammoCaliber": "Caliber556x45NATO", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6570265f1419851aef03e73a", + "_parent": "6570265f1419851aef03e739", + "_max_count": 100, + "_props": { + "filters": [ + { + "Filter": [ + "59e690b686f7746c9f75e848" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657025161419851aef03e718": { + "_id": "657025161419851aef03e718", + "_name": "item_ammo_box_57x28_50_l191", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_7x28mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber57x28", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657025161419851aef03e719", + "_parent": "657025161419851aef03e718", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "5cc80f53e4a949000e1ea4f8" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "6570261dc5d7d4cb4d07858e": { + "_id": "6570261dc5d7d4cb4d07858e", + "_name": "item_ammo_box_9x18_50_prs", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "6570261dc5d7d4cb4d07858f", + "_parent": "6570261dc5d7d4cb4d07858e", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "57371eb62459776125652ac1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657024e3c5d7d4cb4d07856a": { + "_id": "657024e3c5d7d4cb4d07856a", + "_name": "item_ammo_box_556x45_50_855a1", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber556x45NATO", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657024e3c5d7d4cb4d07856b", + "_parent": "657024e3c5d7d4cb4d07856a", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "54527ac44bdc2d36668b4567" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "65702606cfc010a0f5006a3e": { + "_id": "65702606cfc010a0f5006a3e", + "_name": "item_ammo_box_9x18_50_bzht", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702606cfc010a0f5006a3f", + "_parent": "65702606cfc010a0f5006a3e", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "573718ba2459775a75491131" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "65702614c5d7d4cb4d07858b": { + "_id": "65702614c5d7d4cb4d07858b", + "_name": "item_ammo_box_9x18_50_ppt", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702614c5d7d4cb4d07858c", + "_parent": "65702614c5d7d4cb4d07858b", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "57371e4124597760ff7b25f1" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "65702640cfc010a0f5006a4d": { + "_id": "65702640cfc010a0f5006a4d", + "_name": "item_ammo_box_9x18_50_pstm", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber9x18PMM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702640cfc010a0f5006a4e", + "_parent": "65702640cfc010a0f5006a4d", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "57371aab2459775a77142f22" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "619256e5f8af2c1a4e1f5d92": { + "_id": "619256e5f8af2c1a4e1f5d92", + "_name": "weapon_grenade_m7290", + "_parent": "543be6564bdc2df4348b4568", + "_type": "Item", + "_props": { + "Name": "weapon_grenade_m7290", + "ShortName": "weapon_grenade_m7290", + "Description": "weapon_grenade_m7290", + "Weight": 0.42, + "BackgroundColor": "grey", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "grenade", + "Prefab": { + "path": "assets/content/weapons/m7920/weapon_grenade_m7920_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "ThrowType": "flash_grenade", + "ExplDelay": 1.5, + "MinExplosionDistance": 0, + "MaxExplosionDistance": 0, + "FragmentsCount": 0, + "FragmentType": "5996f6cb86f774678763a6ca", + "Strength": 0, + "ContusionDistance": 10, + "throwDamMax": 0, + "explDelay": 1.5, + "Blindness": { + "x": 10, + "y": 18, + "z": 35 + }, + "Contusion": { + "x": 2, + "y": 5, + "z": 25 + }, + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "EmitTime": 0, + "CanBeHiddenDuringThrow": true, + "MinTimeToContactExplode": -1, + "ExplosionEffectType": "Flashbang" + }, + "_proto": "5448be9a4bdc2dfd2f8b456a" + }, + "657024ecc5d7d4cb4d07856d": { + "_id": "657024ecc5d7d4cb4d07856d", + "_name": "item_ammo_box_556x45_50_856a1", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber556x45NATO", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657024ecc5d7d4cb4d07856e", + "_parent": "657024ecc5d7d4cb4d07856d", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "59e6906286f7746c9f75e847" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "617fd91e5539a84ec44ce155": { + "_id": "617fd91e5539a84ec44ce155", + "_name": "weapon_grenade_rgn", + "_parent": "543be6564bdc2df4348b4568", + "_type": "Item", + "_props": { + "Name": "weapon_grenade_rgn", + "ShortName": "weapon_grenade_rgn", + "Description": "weapon_grenade_rgn\n", + "Weight": 0.31, + "BackgroundColor": "grey", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "grenade", + "Prefab": { + "path": "assets/content/weapons/rgn/weapon_grenade_rgn_container.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 4, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 20, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "ThrowType": "frag_grenade", + "ExplDelay": 3, + "MinExplosionDistance": 2, + "MaxExplosionDistance": 5, + "FragmentsCount": 75, + "FragmentType": "5996f6cb86f774678763a6ca", + "Strength": 95, + "ContusionDistance": 13, + "throwDamMax": 0, + "explDelay": 3.5, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 + }, + "Contusion": { + "x": 1.5, + "y": 4, + "z": 18 + }, + "ArmorDistanceDistanceDamage": { + "x": 1, + "y": 4, + "z": 28 + }, + "EmitTime": 0, + "CanBeHiddenDuringThrow": true, + "MinTimeToContactExplode": 0.3, + "ExplosionEffectType": "Grenade_new2" + }, + "_proto": "5448be9a4bdc2dfd2f8b456a" + }, + "590c35a486f774273531c822": { + "_id": "590c35a486f774273531c822", + "_name": "polyurethane_foam_open", + "_parent": "57864ada245977548638de91", + "_type": "Item", + "_props": { + "Name": "Foam", + "ShortName": "Foam", + "Description": "Foam", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "food_soda_can", + "Prefab": { + "path": "assets/content/items/barter/polyurethane_foam/polyurethane_foam_open.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 40, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "590c31c586f774245e3141b2" + }, + "657023b1cfc010a0f50069e5": { + "_id": "657023b1cfc010a0f50069e5", + "_name": "item_ammo_box_blackout_50_m62", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_300_blackout.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber762x35", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657023b1cfc010a0f50069e6", + "_parent": "657023b1cfc010a0f50069e5", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "619636be6db0f2477964e710" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "590a3d9c86f774385926e510": { + "_id": "590a3d9c86f774385926e510", + "_name": "item_electr_uvlamp", "_parent": "57864a66245977548f04a81f", "_type": "Item", "_props": { - "Name": "Toughbook", - "ShortName": "Toughbook", - "Description": "Toughbook", - "Weight": 1, - "BackgroundColor": "yellow", - "Width": 3, - "Height": 2, + "Name": "ESlamp", + "ShortName": "ESlamp", + "Description": "ESlamp", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, "StackMaxSize": 1, - "ItemSound": "smallmetal", + "ItemSound": "item_plastic_generic", "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_toughbook/item_barter_electr_toughbook.bundle", + "path": "assets/content/items/barter/item_electr_eslamp/item_electr_uvlamp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 50, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "657024f01419851aef03e715": { + "_id": "657024f01419851aef03e715", + "_name": "item_ammo_box_556x45_50_995", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_5_56x45mm_50_crtg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber556x45NATO", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657024f01419851aef03e716", + "_parent": "657024f01419851aef03e715", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "59e690b686f7746c9f75e848" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657984a50fbff513dd435765": { + "_id": "657984a50fbff513dd435765", + "_name": "item_ammo_box_9x39_20_fmj", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "item_ammo_box_9x39_20_fmj", + "ShortName": "item_ammo_box_9x39_20_fmj", + "Description": "item_ammo_box_9x39_20_fmj", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x39_pso.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 20, + "StackMaxRandom": 20, + "ammoCaliber": "Caliber9x39", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657984a50fbff513dd435766", + "_parent": "657984a50fbff513dd435765", + "_max_count": 20, + "_props": { + "filters": [ + { + "Filter": [ + "6576f96220d53a5b8f3e395e" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657026341419851aef03e730": { + "_id": "657026341419851aef03e730", + "_name": "item_ammo_box_9x18_50_sp7", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657026341419851aef03e731", + "_parent": "657026341419851aef03e730", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "57372140245977611f70ee91" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "657023b71419851aef03e6e8": { + "_id": "657023b71419851aef03e6e8", + "_name": "item_ammo_box_blackout_50_vmax", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_300_blackout.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber762x35", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "657023b71419851aef03e6e9", + "_parent": "657023b71419851aef03e6e8", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "6196364158ef8c428c287d9f" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "65702629cfc010a0f5006a47": { + "_id": "65702629cfc010a0f5006a47", + "_name": "item_ammo_box_9x18_50_pso", + "_parent": "543be5cb4bdc2deb348b4568", + "_type": "Item", + "_props": { + "Name": "ammo_box_556x45_xx_m193ball", + "ShortName": "ammo_box_556x45_xx_m193ball", + "Description": "ammo_box_556x45_xx_m193ball", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "ammo_pack_generic", + "Prefab": { + "path": "assets/content/items/ammo/boxes/item_ammo_box_9x18mm.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 0, + "ExamineExperience": 10, + "HideEntrails": true, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": -1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "StackMinRandom": 50, + "StackMaxRandom": 50, + "ammoCaliber": "Caliber9x18PM", + "StackSlots": [ + { + "_name": "cartridges", + "_id": "65702629cfc010a0f5006a48", + "_parent": "65702629cfc010a0f5006a47", + "_max_count": 50, + "_props": { + "filters": [ + { + "Filter": [ + "57371f8d24597761006c6a81" + ] + } + ] + }, + "_proto": "5748538b2459770af276a261" + } + ] + } + }, + "5d0377ce86f774186372f689": { + "_id": "5d0377ce86f774186372f689", + "_name": "item_barter_electr_thermalmodule", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "item_barter_electr_thermalmodule", + "ShortName": "item_barter_electr_thermalmodule", + "Description": "item_barter_electr_thermalmodule", + "Weight": 0.21, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_electr_thermalmodule/item_barter_electr_thermalmodule.bundle", "rcid": "" }, "UsePrefab": { @@ -454346,8 +454266,73 @@ "IsUnbuyable": false, "IsUngivable": false, "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 30, + "QuestItem": false, + "LootExperience": 40, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "5734779624597737e04bf329" + }, + "5c06779c86f77426e00dd782": { + "_id": "5c06779c86f77426e00dd782", + "_name": "item_barter_electr_wires", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "item_barter_electr_wires", + "ShortName": "item_barter_electr_wires", + "Description": "item_barter_electr_wires", + "Weight": 0.25, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_electr_wires/item_barter_electr_wires.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 40, "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, @@ -454377,7 +454362,7 @@ "MaxResource": 0, "Resource": 0 }, - "_proto": "573477e124597737dd42e191" + "_proto": "5734779624597737e04bf329" }, "6389c7f115805221fb410466": { "_id": "6389c7f115805221fb410466", @@ -454444,6 +454429,70 @@ }, "_proto": "5734779624597737e04bf329" }, + "56742c324bdc2d150f8b456d": { + "_id": "56742c324bdc2d150f8b456d", + "_name": "phone", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "Broken GPhone", + "ShortName": "GPhone", + "Description": "GPhone 9s", + "Weight": 0.3, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/phone/item_phone.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + } + }, "5d1b2ffd86f77425243e8d17": { "_id": "5d1b2ffd86f77425243e8d17", "_name": "item_barter_electr_lens", @@ -454574,23 +454623,23 @@ }, "_proto": "573477e124597737dd42e191" }, - "5c05308086f7746b2101e90b": { - "_id": "5c05308086f7746b2101e90b", - "_name": "Item_barter_electr_virtexprocessor", + "590a3c0a86f774385a33c450": { + "_id": "590a3c0a86f774385a33c450", + "_name": "item_barter_electr_sparkplug", "_parent": "57864a66245977548f04a81f", "_type": "Item", "_props": { - "Name": "Item_barter_electr_virtexprocessor", - "ShortName": "Item_barter_electr_virtexprocessor", - "Description": "Item_barter_electr_virtexprocessor", - "Weight": 0.3, + "Name": "Sparkplug", + "ShortName": "Splug", + "Description": "Sparkplug", + "Weight": 0.08, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_virtexprocessor/item_barter_electr_virtexprocessor.bundle", + "path": "assets/content/items/barter/item_barter_electr_sparkplug/item_barter_electr_sparkplug.bundle", "rcid": "" }, "UsePrefab": { @@ -454599,7 +454648,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": false, + "ExaminedByDefault": true, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -454607,8 +454656,8 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 40, - "ExamineExperience": 100, + "LootExperience": 20, + "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -454637,7 +454686,7 @@ "MaxResource": 0, "Resource": 0 }, - "_proto": "5734779624597737e04bf329" + "_proto": "56742c324bdc2d150f8b456d" }, "57347baf24597738002c6178": { "_id": "57347baf24597738002c6178", @@ -454704,23 +454753,23 @@ }, "_proto": "57347b8b24597737dd42e192" }, - "5d0378d486f77420421a5ff4": { - "_id": "5d0378d486f77420421a5ff4", - "_name": "item_bater_electr_powerfilter", - "_parent": "57864a66245977548f04a81f", + "5e2af02c86f7746d420957d4": { + "_id": "5e2af02c86f7746d420957d4", + "_name": "item_barter_household_chlorine", + "_parent": "57864c322459775490116fbf", "_type": "Item", "_props": { - "Name": "item_bater_electr_powerfilter", - "ShortName": "item_bater_electr_powerfilter", - "Description": "item_bater_electr_powerfilter", - "Weight": 0.2, - "BackgroundColor": "violet", - "Width": 1, + "Name": "item_barter_household_chlorine", + "ShortName": "item_barter_household_chlorine", + "Description": "item_barter_household_chlorine", + "Weight": 0.35, + "BackgroundColor": "grey", + "Width": 2, "Height": 1, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_powerfilter/item_barter_electr_powerfilter.bundle", + "path": "assets/content/items/barter/item_barter_household_chlorine/item_barter_household_chlorine.bundle", "rcid": "" }, "UsePrefab": { @@ -454729,7 +454778,7 @@ }, "StackObjectsCount": 1, "NotShownInSlot": false, - "ExaminedByDefault": false, + "ExaminedByDefault": true, "ExamineTime": 1, "IsUndiscardable": false, "IsUnsaleable": false, @@ -454737,8 +454786,8 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 40, - "ExamineExperience": 100, + "LootExperience": 25, + "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -454767,25 +454816,25 @@ "MaxResource": 0, "Resource": 0 }, - "_proto": "5734779624597737e04bf329" + "_proto": "57347cd0245977445a2d6ff1" }, - "5a29284f86f77463ef3db363": { - "_id": "5a29284f86f77463ef3db363", - "_name": "item_barter_electr_toughbook_quest", + "60c080eb991ac167ad1c3ad4": { + "_id": "60c080eb991ac167ad1c3ad4", + "_name": "quest_gals_d3", "_parent": "57864a66245977548f04a81f", "_type": "Item", "_props": { - "Name": "Toughbook", - "ShortName": "Toughbook", - "Description": "Toughbook", - "Weight": 1, + "Name": "quest_gals_d3", + "ShortName": "quest_gals_d3", + "Description": "quest_gals_d3", + "Weight": 2, "BackgroundColor": "yellow", - "Width": 3, - "Height": 2, + "Width": 2, + "Height": 1, "StackMaxSize": 1, "ItemSound": "smallmetal", "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_toughbook/item_barter_electr_toughbook.bundle", + "path": "assets/content/items/barter/item_barter_electr_controller/quest_gals_d3.bundle", "rcid": "" }, "UsePrefab": { @@ -454834,23 +454883,23 @@ }, "_proto": "573477e124597737dd42e191" }, - "590a3cd386f77436f20848cb": { - "_id": "590a3cd386f77436f20848cb", - "_name": "item_electr_eslamp", + "57347c2e24597744902c94a1": { + "_id": "57347c2e24597744902c94a1", + "_name": "power_supply_unit", "_parent": "57864a66245977548f04a81f", "_type": "Item", "_props": { - "Name": "ESlamp", - "ShortName": "ESlamp", - "Description": "ESlamp", - "Weight": 0.2, + "Name": "Power supply", + "ShortName": "Power supply", + "Description": "Power supply", + "Weight": 1.5, "BackgroundColor": "blue", - "Width": 1, - "Height": 1, + "Width": 2, + "Height": 2, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/barter/item_electr_eslamp/item_electr_eslamp.bundle", + "path": "assets/content/items/barter/power_supply_unit/item_power_supply_unit.bundle", "rcid": "" }, "UsePrefab": { @@ -454867,72 +454916,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "5d1b392c86f77425243e98fe": { - "_id": "5d1b392c86f77425243e98fe", - "_name": "item_barter_electr_bulb", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "item_barter_electr_bulb", - "ShortName": "item_barter_electr_bulb", - "Description": "item_barter_electr_bulb", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_lbulb/item_barter_electr_lbulb.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 40, + "LootExperience": 25, "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, @@ -454962,25 +454946,220 @@ "MaxResource": 0, "Resource": 0 }, - "_proto": "5734779624597737e04bf329" + "_proto": "57347c1124597737fb1379e3" }, - "5c06779c86f77426e00dd782": { - "_id": "5c06779c86f77426e00dd782", - "_name": "item_barter_electr_wires", + "638dfc803083a019d447768e": { + "_id": "638dfc803083a019d447768e", + "_name": "item_quest_c13_nabl", "_parent": "57864a66245977548f04a81f", "_type": "Item", "_props": { - "Name": "item_barter_electr_wires", - "ShortName": "item_barter_electr_wires", - "Description": "item_barter_electr_wires", + "Name": "Hard drive quest", + "ShortName": "HDD quest", + "Description": "Hard drive quest", "Weight": 0.25, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "smallmetal", + "Prefab": { + "path": "assets/content/items/barter/item_barter_electr_hdd/item_barter_electr_hdd_quest.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 30, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573477e124597737dd42e191" + }, + "638df4cc7b560b03794a18d2": { + "_id": "638df4cc7b560b03794a18d2", + "_name": "item_quest_c7_mel", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "item_barter_valuable_gp", + "ShortName": "item_barter_valuable_gp", + "Description": "item_barter_valuable_gp", + "Weight": 0.01, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_other_mediator/item_barter_other_mediator_ag.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 100, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573474f924597738002c6174" + }, + "57347ca924597744596b4e71": { + "_id": "57347ca924597744596b4e71", + "_name": "video_card", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "Video card", + "ShortName": "Video card", + "Description": "Video card", + "Weight": 0.6, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/video_card/item_video_card.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c93245977448d35f6e3" + }, + "5d1b392c86f77425243e98fe": { + "_id": "5d1b392c86f77425243e98fe", + "_name": "item_barter_electr_bulb", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "item_barter_electr_bulb", + "ShortName": "item_barter_electr_bulb", + "Description": "item_barter_electr_bulb", + "Weight": 0.09, "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_wires/item_barter_electr_wires.bundle", + "path": "assets/content/items/barter/item_barter_electr_lbulb/item_barter_electr_lbulb.bundle", "rcid": "" }, "UsePrefab": { @@ -455094,6 +455273,71 @@ }, "_proto": "57347c77245977448d35f6e2" }, + "5c05308086f7746b2101e90b": { + "_id": "5c05308086f7746b2101e90b", + "_name": "Item_barter_electr_virtexprocessor", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "Item_barter_electr_virtexprocessor", + "ShortName": "Item_barter_electr_virtexprocessor", + "Description": "Item_barter_electr_virtexprocessor", + "Weight": 0.3, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_electr_virtexprocessor/item_barter_electr_virtexprocessor.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 40, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "5734779624597737e04bf329" + }, "5909e99886f7740c983b9984": { "_id": "5909e99886f7740c983b9984", "_name": "usbadapter", @@ -455159,796 +455403,6 @@ }, "_proto": "5734773724597737fd047c14" }, - "60c080eb991ac167ad1c3ad4": { - "_id": "60c080eb991ac167ad1c3ad4", - "_name": "quest_gals_d3", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "quest_gals_d3", - "ShortName": "quest_gals_d3", - "Description": "quest_gals_d3", - "Weight": 2, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "smallmetal", - "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_controller/quest_gals_d3.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 30, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573477e124597737dd42e191" - }, - "5672cb724bdc2dc2088b456b": { - "_id": "5672cb724bdc2dc2088b456b", - "_name": "item_geiger_counter", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "Gas analyser", - "ShortName": "GasAn", - "Description": "Gas analyser", - "Weight": 0.4, - "BackgroundColor": "blue", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/geiger_counter/item_geiger_counter.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - } - }, - "638dfc803083a019d447768e": { - "_id": "638dfc803083a019d447768e", - "_name": "item_quest_c13_nabl", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "Hard drive quest", - "ShortName": "HDD quest", - "Description": "Hard drive quest", - "Weight": 0.25, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "smallmetal", - "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_hdd/item_barter_electr_hdd_quest.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 30, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573477e124597737dd42e191" - }, - "6389c7750ef44505c87f5996": { - "_id": "6389c7750ef44505c87f5996", - "_name": "Item_barter_electr_adv_controller", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "item_barter_electr_militaryboard", - "ShortName": "item_barter_electr_militaryboard", - "Description": "item_barter_electr_militaryboard", - "Weight": 0.025, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_adv_controller/item_barter_electr_adv_controller.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 40, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "5734779624597737e04bf329" - }, - "64f09c02b63b74469b6c149f": { - "_id": "64f09c02b63b74469b6c149f", - "_name": "item_barter_quest_gphonex", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "item_barter_electr_gphonex", - "ShortName": "item_barter_electr_gphonex", - "Description": "item_barter_electr_gphonex", - "Weight": 0.3, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_gphonex/item_barter_electr_gphonex.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 20, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573477e124597737dd42e191" - }, - "56742c324bdc2d150f8b456d": { - "_id": "56742c324bdc2d150f8b456d", - "_name": "phone", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "Broken GPhone", - "ShortName": "GPhone", - "Description": "GPhone 9s", - "Weight": 0.3, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/phone/item_phone.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - } - }, - "59e3596386f774176c10a2a2": { - "_id": "59e3596386f774176c10a2a2", - "_name": "item_barter_household_antiinsect", - "_parent": "57864c322459775490116fbf", - "_type": "Item", - "_props": { - "Name": "Antiinsect", - "ShortName": "Antiinsect", - "Description": "Antiinsect", - "Weight": 0.5, - "BackgroundColor": "grey", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_household_antiinsect/item_barter_household_antiinsect.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347cd0245977445a2d6ff1" - }, - "655c669103999d3c810c025b": { - "_id": "655c669103999d3c810c025b", - "_name": "Item_barter_tarko_сultist", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "tarko_сultist", - "ShortName": "tarko_сultist", - "Description": "tarko_сultist", - "Weight": 0.2, - "BackgroundColor": "violet", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/item_barter_tarko_sectary/item_barter_tarko_sectary.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573474f924597738002c6174" - }, - "5af0534a86f7743b6f354284": { - "_id": "5af0534a86f7743b6f354284", - "_name": "item_barter_medical_diagset", - "_parent": "57864c8c245977548867e7f1", - "_type": "Item", - "_props": { - "Name": "diagset", - "ShortName": "diagset", - "Description": "diagset", - "Weight": 0.067, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_medical_diagset/item_barter_medical_diagset.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "59e3606886f77417674759a5" - }, - "63927b29c115f907b14700b9": { - "_id": "63927b29c115f907b14700b9", - "_name": "item_quest_c11_gmed", - "_parent": "590c745b86f7743cc433c5f2", - "_type": "Item", - "_props": { - "Name": "quest_chemcontainer", - "ShortName": "quest_chemcontainer", - "Description": "quest_chemcontainer", - "Weight": 0.1, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/quest/item_quest_chemcontainer/item_quest_chemcontainer.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0, - "DogTagQualities": false - }, - "_proto": "59e3606886f77417674759a5" - }, - "5e2af4d286f7746d4159f07a": { - "_id": "5e2af4d286f7746d4159f07a", - "_name": "Item_barter_other_cloth_aramid", - "_parent": "590c745b86f7743cc433c5f2", - "_type": "Item", - "_props": { - "Name": "Item_barter_other_cloth_aramid", - "ShortName": "Item_barter_other_cloth_aramid", - "Description": "Item_barter_other_cloth_aramid", - "Weight": 0.14, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_cloth_generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_other_cloth/item_barter_other_cloth_aramid.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0, - "DogTagQualities": false - }, - "_proto": "573475fb24597737fb1379e1" - }, - "543be6674bdc2df1348b4569": { - "_id": "543be6674bdc2df1348b4569", - "_name": "FoodDrink", - "_parent": "54009119af1c881c07000029", - "_type": "Node", - "_props": { - "foodUseTime": 0, - "foodEffectType": "duringUse", - "MaxResource": 0, - "StimulatorBuffs": "" - } - }, - "543be5e94bdc2df1348b4568": { - "_id": "543be5e94bdc2df1348b4568", - "_name": "Key", - "_parent": "54009119af1c881c07000029", - "_type": "Node", - "_props": { - "Name": "Item", - "ShortName": "Item", - "Description": "Item", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaximumNumberOfUsage": 0 - } - }, "6389c85357baa773a825b356": { "_id": "6389c85357baa773a825b356", "_name": "Item_barter_electr_adv_converter", @@ -456079,71 +455533,6 @@ }, "_proto": "5734781f24597737e04bf32a" }, - "5df8a77486f77412672a1e3f": { - "_id": "5df8a77486f77412672a1e3f", - "_name": "item_barter_valuable_nyball_violet", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "nyball_violet", - "ShortName": "nyball_violet", - "Description": "nyball_violet\n", - "Weight": 0.05, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/item_barter_valuable_nyball/item_barter_valuable_nyball_violet.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "56742c324bdc2d150f8b456d" - }, "5d235a5986f77443f6329bc6": { "_id": "5d235a5986f77443f6329bc6", "_name": "item_barter_valuable_skullring", @@ -456209,6 +455598,71 @@ }, "_proto": "573474f924597738002c6174" }, + "5df8a77486f77412672a1e3f": { + "_id": "5df8a77486f77412672a1e3f", + "_name": "item_barter_valuable_nyball_violet", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "nyball_violet", + "ShortName": "nyball_violet", + "Description": "nyball_violet\n", + "Weight": 0.05, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_valuable_nyball/item_barter_valuable_nyball_violet.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "56742c324bdc2d150f8b456d" + }, "59fafb5d86f774067a6f2084": { "_id": "59fafb5d86f774067a6f2084", "_name": "item_barter_flam_propane", @@ -457204,6 +456658,72 @@ }, "_proto": "59e3606886f77417674759a5" }, + "62a09cb7a04c0c5c6e0a84f8": { + "_id": "62a09cb7a04c0c5c6e0a84f8", + "_name": "Item_barter_other_bage_ng", + "_parent": "590c745b86f7743cc433c5f2", + "_type": "Item", + "_props": { + "Name": "item_barter_other_dobby", + "ShortName": "item_barter_other_dobby", + "Description": "item_barter_other_dobby", + "Weight": 0.12, + "BackgroundColor": "violet", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "item_plastic_generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_other_bage_ng/item_barter_other_bage_ng1.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0, + "DogTagQualities": false + }, + "_proto": "573476f124597737e04bf328" + }, "5734770f24597738025ee254": { "_id": "5734770f24597738025ee254", "_name": "cigarettes_strike", @@ -457402,72 +456922,6 @@ }, "_proto": "573475fb24597737fb1379e1" }, - "62a09cb7a04c0c5c6e0a84f8": { - "_id": "62a09cb7a04c0c5c6e0a84f8", - "_name": "Item_barter_other_bage_ng", - "_parent": "590c745b86f7743cc433c5f2", - "_type": "Item", - "_props": { - "Name": "item_barter_other_dobby", - "ShortName": "item_barter_other_dobby", - "Description": "item_barter_other_dobby", - "Weight": 0.12, - "BackgroundColor": "violet", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_other_bage_ng/item_barter_other_bage_ng1.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0, - "DogTagQualities": false - }, - "_proto": "573476f124597737e04bf328" - }, "5bc9c049d4351e44f824d360": { "_id": "5bc9c049d4351e44f824d360", "_name": "item_barter_other_dobby", @@ -457741,6 +457195,538 @@ "StackMaxRandom": 0 } }, + "6389c7750ef44505c87f5996": { + "_id": "6389c7750ef44505c87f5996", + "_name": "Item_barter_electr_adv_controller", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "item_barter_electr_militaryboard", + "ShortName": "item_barter_electr_militaryboard", + "Description": "item_barter_electr_militaryboard", + "Weight": 0.025, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_plastic_generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_electr_adv_controller/item_barter_electr_adv_controller.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 40, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "5734779624597737e04bf329" + }, + "64f09c02b63b74469b6c149f": { + "_id": "64f09c02b63b74469b6c149f", + "_name": "item_barter_quest_gphonex", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "item_barter_electr_gphonex", + "ShortName": "item_barter_electr_gphonex", + "Description": "item_barter_electr_gphonex", + "Weight": 0.3, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_electr_gphonex/item_barter_electr_gphonex.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 20, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573477e124597737dd42e191" + }, + "59e3596386f774176c10a2a2": { + "_id": "59e3596386f774176c10a2a2", + "_name": "item_barter_household_antiinsect", + "_parent": "57864c322459775490116fbf", + "_type": "Item", + "_props": { + "Name": "Antiinsect", + "ShortName": "Antiinsect", + "Description": "Antiinsect", + "Weight": 0.5, + "BackgroundColor": "grey", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_household_antiinsect/item_barter_household_antiinsect.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347cd0245977445a2d6ff1" + }, + "655c669103999d3c810c025b": { + "_id": "655c669103999d3c810c025b", + "_name": "Item_barter_tarko_сultist", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "tarko_сultist", + "ShortName": "tarko_сultist", + "Description": "tarko_сultist", + "Weight": 0.2, + "BackgroundColor": "violet", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_tarko_sectary/item_barter_tarko_sectary.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573474f924597738002c6174" + }, + "5af0534a86f7743b6f354284": { + "_id": "5af0534a86f7743b6f354284", + "_name": "item_barter_medical_diagset", + "_parent": "57864c8c245977548867e7f1", + "_type": "Item", + "_props": { + "Name": "diagset", + "ShortName": "diagset", + "Description": "diagset", + "Weight": 0.067, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_medical_diagset/item_barter_medical_diagset.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "59e3606886f77417674759a5" + }, + "63927b29c115f907b14700b9": { + "_id": "63927b29c115f907b14700b9", + "_name": "item_quest_c11_gmed", + "_parent": "590c745b86f7743cc433c5f2", + "_type": "Item", + "_props": { + "Name": "quest_chemcontainer", + "ShortName": "quest_chemcontainer", + "Description": "quest_chemcontainer", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/quest/item_quest_chemcontainer/item_quest_chemcontainer.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0, + "DogTagQualities": false + }, + "_proto": "59e3606886f77417674759a5" + }, + "5e2af4d286f7746d4159f07a": { + "_id": "5e2af4d286f7746d4159f07a", + "_name": "Item_barter_other_cloth_aramid", + "_parent": "590c745b86f7743cc433c5f2", + "_type": "Item", + "_props": { + "Name": "Item_barter_other_cloth_aramid", + "ShortName": "Item_barter_other_cloth_aramid", + "Description": "Item_barter_other_cloth_aramid", + "Weight": 0.14, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_cloth_generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_other_cloth/item_barter_other_cloth_aramid.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0, + "DogTagQualities": false + }, + "_proto": "573475fb24597737fb1379e1" + }, + "543be6674bdc2df1348b4569": { + "_id": "543be6674bdc2df1348b4569", + "_name": "FoodDrink", + "_parent": "54009119af1c881c07000029", + "_type": "Node", + "_props": { + "foodUseTime": 0, + "foodEffectType": "duringUse", + "MaxResource": 0, + "StimulatorBuffs": "" + } + }, + "543be5e94bdc2df1348b4568": { + "_id": "543be5e94bdc2df1348b4568", + "_name": "Key", + "_parent": "54009119af1c881c07000029", + "_type": "Node", + "_props": { + "Name": "Item", + "ShortName": "Item", + "Description": "Item", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaximumNumberOfUsage": 0 + } + }, "5c1265fc86f7743f896a21c2": { "_id": "5c1265fc86f7743f896a21c2", "_name": "item_barter_electr_gphonex", @@ -458132,71 +458118,6 @@ "Resource": 0 } }, - "590a391c86f774385a33c404": { - "_id": "590a391c86f774385a33c404", - "_name": "item_barter_electr_magnet", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "Magnet", - "ShortName": "Magnet", - "Description": "Magnet", - "Weight": 0.4, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_magnet/item_barter_electr_magnet.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "56742c324bdc2d150f8b456d" - }, "5c13cd2486f774072c757944": { "_id": "5c13cd2486f774072c757944", "_name": "item_barter_household_soap", @@ -458798,23 +458719,88 @@ "_type": "Node", "_props": {} }, - "5c052f6886f7746b1e3db148": { - "_id": "5c052f6886f7746b1e3db148", - "_name": "Item_barter_electr_wirelesstranmitter", - "_parent": "57864a66245977548f04a81f", + "59e358a886f7741776641ac3": { + "_id": "59e358a886f7741776641ac3", + "_name": "item_barter_household_wiper", + "_parent": "57864c322459775490116fbf", "_type": "Item", "_props": { - "Name": "Item_barter_electr_wirelesstranmitter", - "ShortName": "Item_barter_electr_wirelesstranmitter", - "Description": "Item_barter_electr_wirelesstranmitter", - "Weight": 2, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, + "Name": "Wiper", + "ShortName": "Wiper", + "Description": "Wiper", + "Weight": 0.5, + "BackgroundColor": "grey", + "Width": 1, + "Height": 2, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_wirelesstranmitter/item_barter_electr_wirelesstranmitter.bundle", + "path": "assets/content/items/barter/item_barter_household_wiper/item_barter_household_wiper.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347cd0245977445a2d6ff1" + }, + "60b0f561c4449e4cb624c1d7": { + "_id": "60b0f561c4449e4cb624c1d7", + "_name": "item_barter_ratkiller", + "_parent": "57864c322459775490116fbf", + "_type": "Item", + "_props": { + "Name": "Antiinsect", + "ShortName": "Antiinsect", + "Description": "Antiinsect", + "Weight": 0.4, + "BackgroundColor": "violet", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_ratkiller/item_barter_ratkiller.bundle", "rcid": "" }, "UsePrefab": { @@ -458831,7 +458817,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 45, + "LootExperience": 15, "ExamineExperience": 100, "HideEntrails": false, "RepairCost": 0, @@ -458861,17 +458847,82 @@ "MaxResource": 0, "Resource": 0 }, - "_proto": "57347c93245977448d35f6e3" + "_proto": "57347cd0245977445a2d6ff1" }, - "655c673673a43e23e857aebd": { - "_id": "655c673673a43e23e857aebd", - "_name": "Item_barter_tarko_scav", + "5d235b4d86f7742e017bc88a": { + "_id": "5d235b4d86f7742e017bc88a", + "_name": "item_barter_valuable_gp", "_parent": "57864a3d24597754843f8721", "_type": "Item", "_props": { - "Name": "tarko_scav", - "ShortName": "tarko_scav", - "Description": "tarko_scav", + "Name": "item_barter_valuable_gp", + "ShortName": "item_barter_valuable_gp", + "Description": "item_barter_valuable_gp", + "Weight": 0.01, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_valuable_gp/item_barter_valuable_gp.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573474f924597738002c6174" + }, + "655c652d60d0ac437100fed7": { + "_id": "655c652d60d0ac437100fed7", + "_name": "Item_barter_tarko_bear", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "tarko_bear", + "ShortName": "tarko_bear", + "Description": "tarko_bear", "Weight": 0.2, "BackgroundColor": "violet", "Width": 1, @@ -458879,7 +458930,7 @@ "StackMaxSize": 1, "ItemSound": "jewelry", "Prefab": { - "path": "assets/content/items/barter/item_barter_tarko_scav_02/item_barter_tarko_scav_02.bundle", + "path": "assets/content/items/barter/item_barter_tarko_bear_02/item_barter_tarko_bear_02.bundle", "rcid": "" }, "UsePrefab": { @@ -458928,23 +458979,23 @@ }, "_proto": "573474f924597738002c6174" }, - "59e3658a86f7741776641ac4": { - "_id": "59e3658a86f7741776641ac4", - "_name": "item_barter_valuable_cat", - "_parent": "57864a3d24597754843f8721", + "619cc01e0a7c3a1a2731940c": { + "_id": "619cc01e0a7c3a1a2731940c", + "_name": "item_barter_meds_tools", + "_parent": "57864c8c245977548867e7f1", "_type": "Item", "_props": { - "Name": "cat", - "ShortName": "cat", - "Description": "cat", - "Weight": 3.1, + "Name": "item_barter_medical_pile", + "ShortName": "item_barter_medical_pile", + "Description": "item_barter_medical_pile", + "Weight": 0.25, "BackgroundColor": "blue", "Width": 1, - "Height": 3, + "Height": 1, "StackMaxSize": 1, - "ItemSound": "generic", + "ItemSound": "smallmetal", "Prefab": { - "path": "assets/content/items/barter/item_barter_valuable_cat/item_barter_valuable_cat.bundle", + "path": "assets/content/items/barter/item_barter_meds_tools/item_barter_meds_tools.bundle", "rcid": "" }, "UsePrefab": { @@ -458961,8 +459012,8 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 5, + "LootExperience": 40, + "ExamineExperience": 2, "HideEntrails": false, "RepairCost": 0, "RepairSpeed": 0, @@ -458991,25 +459042,91 @@ "MaxResource": 0, "Resource": 0 }, - "_proto": "5734781f24597737e04bf32a" + "_proto": "544fb3364bdc2d34748b456a" }, - "5bc9bc53d4351e00367fbcee": { - "_id": "5bc9bc53d4351e00367fbcee", - "_name": "item_barter_valuable_chicken", - "_parent": "57864a3d24597754843f8721", + "5d1b385e86f774252167b98a": { + "_id": "5d1b385e86f774252167b98a", + "_name": "item_barter_other_waterfilter", + "_parent": "590c745b86f7743cc433c5f2", "_type": "Item", "_props": { - "Name": "item_barter_valuable_chicken", - "ShortName": "item_barter_valuable_chicken", - "Description": "item_barter_valuable_chicken", - "Weight": 3.8, - "BackgroundColor": "violet", - "Width": 2, + "Name": "item_barter_other_waterfilter", + "ShortName": "item_barter_other_waterfilter", + "Description": "item_barter_other_waterfilter", + "Weight": 0.4, + "BackgroundColor": "blue", + "Width": 1, "Height": 2, "StackMaxSize": 1, - "ItemSound": "generic", + "ItemSound": "item_plastic_generic", "Prefab": { - "path": "assets/content/items/barter/item_barter_valuable_chicken/item_barter_valuable_chicken.bundle", + "path": "assets/content/items/barter/item_barter_other_waterfilter/item_barter_other_waterfilter.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 100, + "Resource": 100, + "DogTagQualities": false + }, + "_proto": "573476d324597737da2adc13" + }, + "5bc9c377d4351e3bac12251b": { + "_id": "5bc9c377d4351e3bac12251b", + "_name": "item_barter_valuable_kresalo", + "_parent": "57864bb7245977548b3b66c2", + "_type": "Item", + "_props": { + "Name": "item_barter_valuable_kresalo", + "ShortName": "item_barter_valuable_kresalo", + "Description": "item_barter_valuable_kresalo", + "Weight": 0.5, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "spec_multitool", + "Prefab": { + "path": "assets/content/items/barter/item_valuable_kresalo/item_barter_valuable_kresalo.bundle", "rcid": "" }, "UsePrefab": { @@ -459026,7 +459143,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 100, + "LootExperience": 10, "ExamineExperience": 100, "HideEntrails": false, "RepairCost": 0, @@ -459056,25 +459173,25 @@ "MaxResource": 0, "Resource": 0 }, - "_proto": "5734781f24597737e04bf32a" + "_proto": "57347c2e24597744902c94a1" }, - "59faf7ca86f7740dbe19f6c2": { - "_id": "59faf7ca86f7740dbe19f6c2", - "_name": "item_barter_valuable_rolex", - "_parent": "57864a3d24597754843f8721", + "590c2b4386f77425357b6123": { + "_id": "590c2b4386f77425357b6123", + "_name": "item_tools_pliers", + "_parent": "57864bb7245977548b3b66c2", "_type": "Item", "_props": { - "Name": "roler", - "ShortName": "roler", - "Description": "roler", - "Weight": 0.18, - "BackgroundColor": "violet", + "Name": "Pliers", + "ShortName": "Pliers", + "Description": "Pliers", + "Weight": 0.5, + "BackgroundColor": "blue", "Width": 1, "Height": 1, "StackMaxSize": 1, - "ItemSound": "jewelry", + "ItemSound": "spec_multitool", "Prefab": { - "path": "assets/content/items/barter/item_barter_valuable_rolex/item_barter_valuable_rolex.bundle", + "path": "assets/content/items/barter/item_tools_pliers/item_tools_pliers.bundle", "rcid": "" }, "UsePrefab": { @@ -459091,7 +459208,231 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 100, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c2e24597744902c94a1" + }, + "590c2d8786f774245b1f03f3": { + "_id": "590c2d8786f774245b1f03f3", + "_name": "item_tools_screwdriver", + "_parent": "57864bb7245977548b3b66c2", + "_type": "Item", + "_props": { + "Name": "Screwdriver", + "ShortName": "Screwdriver", + "Description": "Screwdriver", + "Weight": 0.15, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "spec_multitool", + "Prefab": { + "path": "assets/content/items/barter/item_tools_screwdriver/item_tools_screwdriver.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c2e24597744902c94a1" + }, + "57864ada245977548638de91": { + "_id": "57864ada245977548638de91", + "_name": "BuildingMaterial", + "_parent": "5448eb774bdc2d0a728b4567", + "_type": "Node", + "_props": {} + }, + "567849dd4bdc2d150f8b456e": { + "_id": "567849dd4bdc2d150f8b456e", + "_name": "Map", + "_parent": "54009119af1c881c07000029", + "_type": "Node", + "_props": { + "ConfigPathStr": "", + "MaxMarkersCount": 0, + "scaleMin": 0, + "scaleMax": 0 + } + }, + "5447e0e74bdc2d3c308b4567": { + "_id": "5447e0e74bdc2d3c308b4567", + "_name": "SpecItem", + "_parent": "54009119af1c881c07000029", + "_type": "Node", + "_props": { + "apResource": 0, + "krResource": 0 + } + }, + "5d1b304286f774253763a528": { + "_id": "5d1b304286f774253763a528", + "_name": "item_barter_electr_lcd_Clean", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "item_barter_electr_lcd_Clean", + "ShortName": "item_barter_electr_lcd_Clean", + "Description": "item_barter_electr_lcd_Clean", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_electr_lcd/item_barter_electr_lcd_clean.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 40, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "5734779624597737e04bf329" + }, + "59faf98186f774067b6be103": { + "_id": "59faf98186f774067b6be103", + "_name": "item_barter_household_alkali", + "_parent": "57864c322459775490116fbf", + "_type": "Item", + "_props": { + "Name": "Alkali", + "ShortName": "Alkali", + "Description": "Alkali", + "Weight": 1, + "BackgroundColor": "grey", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "food_bottle", + "Prefab": { + "path": "assets/content/items/barter/item_barter_household_alkali/item_barter_household_alkali.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 25, "ExamineExperience": 10, "HideEntrails": false, "RepairCost": 0, @@ -459112,6 +459453,71 @@ "DiscardingBlock": false, "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347cd0245977445a2d6ff1" + }, + "62a09cfe4f842e1bd12da3e4": { + "_id": "62a09cfe4f842e1bd12da3e4", + "_name": "item_barter_valuable_egg", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "roler", + "ShortName": "roler", + "Description": "roler", + "Weight": 0.2, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_valuable_egg/item_barter_valuable_egg.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, "DiscardLimit": 1, "DropSoundType": "None", "InsuranceDisabled": false, @@ -459123,23 +459529,23 @@ }, "_proto": "573474f924597738002c6174" }, - "59e3647686f774176a362507": { - "_id": "59e3647686f774176a362507", - "_name": "item_barter_valuable_woodclock", - "_parent": "57864a3d24597754843f8721", + "56742c2e4bdc2d95058b456d": { + "_id": "56742c2e4bdc2d95058b456d", + "_name": "zibbo", + "_parent": "57864e4c24597754843f8723", "_type": "Item", "_props": { - "Name": "wood clock", - "ShortName": "wood clock", - "Description": "wood clock", - "Weight": 3, + "Name": "Zibbo lighter", + "ShortName": "Zibbo", + "Description": "Zibbo", + "Weight": 0.1, "BackgroundColor": "blue", - "Width": 2, - "Height": 2, + "Width": 1, + "Height": 1, "StackMaxSize": 1, "ItemSound": "generic", "Prefab": { - "path": "assets/content/items/barter/item_barter_valuable_woodclock/item_barter_valuable_woodclock.bundle", + "path": "assets/content/items/barter/lighters/item_zibbo.bundle", "rcid": "" }, "UsePrefab": { @@ -459156,7 +459562,7 @@ "IsUngivable": false, "IsLockedafterEquip": false, "QuestItem": false, - "LootExperience": 100, + "LootExperience": 10, "ExamineExperience": 5, "HideEntrails": false, "RepairCost": 0, @@ -459185,738 +459591,12 @@ "IsUnremovable": false, "MaxResource": 0, "Resource": 0 - }, - "_proto": "5734781f24597737e04bf32a" + } }, - "573476d324597737da2adc13": { - "_id": "573476d324597737da2adc13", - "_name": "cigarettes_malboro", - "_parent": "590c745b86f7743cc433c5f2", - "_type": "Item", - "_props": { - "Name": "Cigarettes Malboro", - "ShortName": "Cigarettes", - "Description": "Cigarettes Malboro", - "Weight": 0.02, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/cigarettes/item_cigarettes_malboro.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0, - "DogTagQualities": false - }, - "_proto": "573475fb24597737fb1379e1" - }, - "619cbfccbedcde2f5b3f7bdd": { - "_id": "619cbfccbedcde2f5b3f7bdd", - "_name": "item_barter_tools_advwrench", - "_parent": "57864bb7245977548b3b66c2", - "_type": "Item", - "_props": { - "Name": "pliers_elite", - "ShortName": "pliers_elite", - "Description": "pliers_elite", - "Weight": 1.5, - "BackgroundColor": "violet", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/items/barter/item_barter_tools_advwrench/item_barter_tools_advwrench.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c2e24597744902c94a1" - }, - "57864c8c245977548867e7f1": { - "_id": "57864c8c245977548867e7f1", - "_name": "MedicalSupplies", - "_parent": "5448eb774bdc2d0a728b4567", - "_type": "Node", - "_props": {} - }, - "638df4cc7b560b03794a18d2": { - "_id": "638df4cc7b560b03794a18d2", - "_name": "item_quest_c7_mel", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "item_barter_valuable_gp", - "ShortName": "item_barter_valuable_gp", - "Description": "item_barter_valuable_gp", - "Weight": 0.01, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/item_barter_other_mediator/item_barter_other_mediator_ag.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 100, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573474f924597738002c6174" - }, - "5df8a6a186f77412640e2e80": { - "_id": "5df8a6a186f77412640e2e80", - "_name": "item_barter_valuable_nyball_red", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "nyball_red", - "ShortName": "nyball_red", - "Description": "nyball_red", - "Weight": 0.05, - "BackgroundColor": "red", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/item_barter_valuable_nyball/item_barter_valuable_nyball_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "5d1b371186f774253763a656": { - "_id": "5d1b371186f774253763a656", - "_name": "item_barter_flam_kerosine", - "_parent": "5d650c3e815116009f6201d2", - "_type": "Item", - "_props": { - "Name": "item_barter_flam_kerosine", - "ShortName": "item_barter_flam_kerosine", - "Description": "item_barter_flam_kerosine", - "Weight": 5.6, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "container_plastic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_flam_kerosine/item_barter_flam_kerosine.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 50, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 60, - "Resource": 60 - }, - "_proto": "590a373286f774287540368b" - }, - "60391a8b3364dc22b04d0ce5": { - "_id": "60391a8b3364dc22b04d0ce5", - "_name": "item_barter_flammable_thermite", - "_parent": "57864e4c24597754843f8723", - "_type": "Item", - "_props": { - "Name": "Dry fuel", - "ShortName": "Dfuel", - "Description": "Dry fuel", - "Weight": 0.65, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_flammable_thermite/item_barter_flammable_thermite.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "590a373286f774287540368b" - }, - "5bc9b355d4351e6d1509862a": { - "_id": "5bc9b355d4351e6d1509862a", - "_name": "item_barter_flammable_klean", - "_parent": "57864e4c24597754843f8723", - "_type": "Item", - "_props": { - "Name": "item_barter_flammable_klean", - "ShortName": "item_barter_flammable_klean", - "Description": "item_barter_flammable_klean", - "Weight": 0.2, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_flammable_klean/item_barter_flammable_klean.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "590a373286f774287540368b" - }, - "573475fb24597737fb1379e1": { - "_id": "573475fb24597737fb1379e1", - "_name": "cigarettes_soyuz_apollo", - "_parent": "590c745b86f7743cc433c5f2", - "_type": "Item", - "_props": { - "Name": "Cigarettes Apollon Souz", - "ShortName": "Cigarettes", - "Description": "Cigarettes Apollon Souz", - "Weight": 0.02, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/cigarettes/item_cigarettes_soyuz_apollo.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0, - "DogTagQualities": false - }, - "_proto": "5734758f24597738025ee253" - }, - "6389c6463485cf0eeb260715": { - "_id": "6389c6463485cf0eeb260715", - "_name": "item_barter_other_grechka", - "_parent": "590c745b86f7743cc433c5f2", - "_type": "Item", - "_props": { - "Name": "coffee", - "ShortName": "coffee", - "Description": "coffee", - "Weight": 0.8, - "BackgroundColor": "default", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_other_grechka/item_barter_other_grechka.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0, - "DogTagQualities": false - }, - "_proto": "573475fb24597737fb1379e1" - }, - "61bf83814088ec1a363d7097": { - "_id": "61bf83814088ec1a363d7097", - "_name": "item_barter_tools_sewing", - "_parent": "57864bb7245977548b3b66c2", - "_type": "Item", - "_props": { - "Name": "item_barter_tools_nippers", - "ShortName": "item_barter_tools_nippers", - "Description": "item_barter_tools_nippers", - "Weight": 0.36, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/items/barter/item_barter_tools_sewing/item_barter_tools_sewing.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c2e24597744902c94a1" - }, - "590c311186f77424d1667482": { - "_id": "590c311186f77424d1667482", - "_name": "item_tools_wrench", - "_parent": "57864bb7245977548b3b66c2", - "_type": "Item", - "_props": { - "Name": "Wrench", - "ShortName": "Wrench", - "Description": "Wrench", - "Weight": 0.5, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/items/barter/item_tools_wrench/item_tools_wrench.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c2e24597744902c94a1" - }, - "57864a66245977548f04a81f": { - "_id": "57864a66245977548f04a81f", - "_name": "Electronics", - "_parent": "5448eb774bdc2d0a728b4567", + "5447e1d04bdc2dff2f8b4567": { + "_id": "5447e1d04bdc2dff2f8b4567", + "_name": "Knife", + "_parent": "54009119af1c881c07000029", "_type": "Node", "_props": { "Name": "Item", @@ -459960,94 +459640,98 @@ "CanSellOnRagfair": true, "CanRequireOnRagfair": false, "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], + "Unlootable": true, + "UnlootableFromSlot": "Scabbard", + "UnlootableFromSide": [ + "Bear", + "Usec" + ], "AnimationVariantsNumber": 0, "DiscardingBlock": false, "RagFairCommissionModifier": 1, "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, + "DiscardLimit": -1, "DropSoundType": "None", "InsuranceDisabled": false, "QuestStashMaxCount": 0, "IsSpecialSlotOnly": false, "IsUnremovable": false, + "knifeHitDelay": 0, + "knifeHitSlashRate": 0, + "knifeHitStabRate": 0, + "knifeHitRadius": 0, + "knifeHitSlashDam": 0, + "knifeHitStabDam": 0, + "knifeDurab": 0, + "Durability": 0, + "MaxDurability": 0, + "PrimaryDistance": 1, + "SecondryDistance": 1, + "SlashPenetration": 5, + "StabPenetration": 10, + "MinRepairDegradation": 0, + "MaxRepairDegradation": 0.01, + "PrimaryConsumption": 6, + "SecondryConsumption": 8, + "DeflectionConsumption": 3, + "StimulatorBuffs": "", "MaxResource": 0, - "Resource": 0 + "AppliedTrunkRotation": { + "x": 0, + "y": 0, + "z": 0 + }, + "AppliedHeadRotation": { + "x": 2, + "y": 4, + "z": 0 + }, + "DisplayOnModel": false, + "AdditionalAnimationLayer": 0, + "StaminaBurnRate": 0, + "ColliderScaleMultiplier": { + "x": 1, + "y": 1, + "z": 1 + } } }, - "57864bb7245977548b3b66c2": { - "_id": "57864bb7245977548b3b66c2", - "_name": "Tool", - "_parent": "5448eb774bdc2d0a728b4567", + "543be6564bdc2df4348b4568": { + "_id": "543be6564bdc2df4348b4568", + "_name": "ThrowWeap", + "_parent": "54009119af1c881c07000029", "_type": "Node", - "_props": {} - }, - "590a3c0a86f774385a33c450": { - "_id": "590a3c0a86f774385a33c450", - "_name": "item_barter_electr_sparkplug", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", "_props": { - "Name": "Sparkplug", - "ShortName": "Splug", - "Description": "Sparkplug", - "Weight": 0.08, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_sparkplug/item_barter_electr_sparkplug.bundle", - "rcid": "" + "ThrowType": "frag_grenade", + "ExplDelay": 5, + "MinExplosionDistance": 1.5, + "MaxExplosionDistance": 4, + "FragmentsCount": 20, + "FragmentType": "5485a8684bdc2da71d8b4567", + "Strength": 45, + "ContusionDistance": 5, + "throwDamMax": 0, + "explDelay": 0, + "Blindness": { + "x": 0, + "y": 0, + "z": 0 }, - "UsePrefab": { - "path": "", - "rcid": "" + "Contusion": { + "x": 1.5, + "y": 4, + "z": 9 }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "56742c324bdc2d150f8b456d" + "ArmorDistanceDistanceDamage": { + "x": 0, + "y": 0, + "z": 0 + }, + "EmitTime": 30, + "CanBeHiddenDuringThrow": true, + "MinTimeToContactExplode": -1, + "ExplosionEffectType": "Grenade_indoor" + } }, "590a3efd86f77437d351a25b": { "_id": "590a3efd86f77437d351a25b", @@ -460578,72 +460262,6 @@ }, "_proto": "573475fb24597737fb1379e1" }, - "5d1c819a86f774771b0acd6c": { - "_id": "5d1c819a86f774771b0acd6c", - "_name": "item_barter_other_weaponparts", - "_parent": "590c745b86f7743cc433c5f2", - "_type": "Item", - "_props": { - "Name": "item_barter_other_weaponparts", - "ShortName": "item_barter_other_weaponparts", - "Description": "item_barter_other_weaponparts", - "Weight": 0.56, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "smallmetal", - "Prefab": { - "path": "assets/content/items/barter/item_barter_other_weaponparts/item_barter_other_weaponparts.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0, - "DogTagQualities": false - }, - "_proto": "573476d324597737da2adc13" - }, "5c12688486f77426843c7d32": { "_id": "5c12688486f77426843c7d32", "_name": "item_barter_other_paracord", @@ -460710,6 +460328,72 @@ }, "_proto": "57347cd0245977445a2d6ff1" }, + "5d1c819a86f774771b0acd6c": { + "_id": "5d1c819a86f774771b0acd6c", + "_name": "item_barter_other_weaponparts", + "_parent": "590c745b86f7743cc433c5f2", + "_type": "Item", + "_props": { + "Name": "item_barter_other_weaponparts", + "ShortName": "item_barter_other_weaponparts", + "Description": "item_barter_other_weaponparts", + "Weight": 0.56, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "smallmetal", + "Prefab": { + "path": "assets/content/items/barter/item_barter_other_weaponparts/item_barter_other_weaponparts.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0, + "DogTagQualities": false + }, + "_proto": "573476d324597737da2adc13" + }, "60391afc25aff57af81f7085": { "_id": "60391afc25aff57af81f7085", "_name": "item_barter_tools_ratchetwrench", @@ -460775,3839 +460459,6 @@ }, "_proto": "57347c2e24597744902c94a1" }, - "590a3d9c86f774385926e510": { - "_id": "590a3d9c86f774385926e510", - "_name": "item_electr_uvlamp", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "ESlamp", - "ShortName": "ESlamp", - "Description": "ESlamp", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/barter/item_electr_eslamp/item_electr_uvlamp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 50, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "59e3556c86f7741776641ac2": { - "_id": "59e3556c86f7741776641ac2", - "_name": "item_barter_household_bleach", - "_parent": "57864c322459775490116fbf", - "_type": "Item", - "_props": { - "Name": "Bleach", - "ShortName": "Bleach", - "Description": "Bleach", - "Weight": 1.2, - "BackgroundColor": "grey", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_household_bleach/item_barter_household_bleach.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347cd0245977445a2d6ff1" - }, - "59e35abd86f7741778269d82": { - "_id": "59e35abd86f7741778269d82", - "_name": "item_barter_household_soda", - "_parent": "57864c322459775490116fbf", - "_type": "Item", - "_props": { - "Name": "сода", - "ShortName": "сода", - "Description": "сода", - "Weight": 0.5, - "BackgroundColor": "grey", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_household_soda/item_barter_household_soda.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347cd0245977445a2d6ff1" - }, - "57347c93245977448d35f6e3": { - "_id": "57347c93245977448d35f6e3", - "_name": "toothpaste", - "_parent": "57864c322459775490116fbf", - "_type": "Item", - "_props": { - "Name": "toothpaste", - "ShortName": "toothpaste", - "Description": "toothpaste", - "Weight": 0.2, - "BackgroundColor": "grey", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/toothpaste/item_toothpaste.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c77245977448d35f6e2" - }, - "60391b0fb847c71012789415": { - "_id": "60391b0fb847c71012789415", - "_name": "Item_barter_flammable_trotil", - "_parent": "57864e4c24597754843f8723", - "_type": "Item", - "_props": { - "Name": "Dry fuel", - "ShortName": "Dfuel", - "Description": "Dry fuel", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_flammable_trotil/item_barter_flammable_trotil.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "590a373286f774287540368b" - }, - "6389c6c7dbfd5e4b95197e68": { - "_id": "6389c6c7dbfd5e4b95197e68", - "_name": "item_barter_medical_aquatabs", - "_parent": "57864c8c245977548867e7f1", - "_type": "Item", - "_props": { - "Name": "h2o2", - "ShortName": "h2o2", - "Description": "h2o2", - "Weight": 1.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "med_pills", - "Prefab": { - "path": "assets/content/items/barter/item_barter_medical_aquatabs/item_barter_medical_aquatabs.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "59e3606886f77417674759a5" - }, - "59e361e886f774176c10a2a5": { - "_id": "59e361e886f774176c10a2a5", - "_name": "item_barter_medical_h2o2", - "_parent": "57864c8c245977548867e7f1", - "_type": "Item", - "_props": { - "Name": "h2o2", - "ShortName": "h2o2", - "Description": "h2o2", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_medical_h2o2/item_barter_medical_h2o2.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "59e3606886f77417674759a5" - }, - "5af04b6486f774195a3ebb49": { - "_id": "5af04b6486f774195a3ebb49", - "_name": "item_barter_tools_pliers_elite", - "_parent": "57864bb7245977548b3b66c2", - "_type": "Item", - "_props": { - "Name": "pliers_elite", - "ShortName": "pliers_elite", - "Description": "pliers_elite", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/items/barter/item_barter_tools/item_barter_tools_pliers_elite.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c2e24597744902c94a1" - }, - "57864ee62459775490116fc1": { - "_id": "57864ee62459775490116fc1", - "_name": "Battery", - "_parent": "5448eb774bdc2d0a728b4567", - "_type": "Node", - "_props": { - "Name": "Item", - "ShortName": "Item", - "Description": "Item", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - } - }, - "5e2af02c86f7746d420957d4": { - "_id": "5e2af02c86f7746d420957d4", - "_name": "item_barter_household_chlorine", - "_parent": "57864c322459775490116fbf", - "_type": "Item", - "_props": { - "Name": "item_barter_household_chlorine", - "ShortName": "item_barter_household_chlorine", - "Description": "item_barter_household_chlorine", - "Weight": 0.35, - "BackgroundColor": "grey", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_household_chlorine/item_barter_household_chlorine.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 25, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347cd0245977445a2d6ff1" - }, - "59e358a886f7741776641ac3": { - "_id": "59e358a886f7741776641ac3", - "_name": "item_barter_household_wiper", - "_parent": "57864c322459775490116fbf", - "_type": "Item", - "_props": { - "Name": "Wiper", - "ShortName": "Wiper", - "Description": "Wiper", - "Weight": 0.5, - "BackgroundColor": "grey", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_household_wiper/item_barter_household_wiper.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347cd0245977445a2d6ff1" - }, - "60b0f561c4449e4cb624c1d7": { - "_id": "60b0f561c4449e4cb624c1d7", - "_name": "item_barter_ratkiller", - "_parent": "57864c322459775490116fbf", - "_type": "Item", - "_props": { - "Name": "Antiinsect", - "ShortName": "Antiinsect", - "Description": "Antiinsect", - "Weight": 0.4, - "BackgroundColor": "violet", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_ratkiller/item_barter_ratkiller.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347cd0245977445a2d6ff1" - }, - "655c652d60d0ac437100fed7": { - "_id": "655c652d60d0ac437100fed7", - "_name": "Item_barter_tarko_bear", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "tarko_bear", - "ShortName": "tarko_bear", - "Description": "tarko_bear", - "Weight": 0.2, - "BackgroundColor": "violet", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/item_barter_tarko_bear_02/item_barter_tarko_bear_02.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573474f924597738002c6174" - }, - "5d235b4d86f7742e017bc88a": { - "_id": "5d235b4d86f7742e017bc88a", - "_name": "item_barter_valuable_gp", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "item_barter_valuable_gp", - "ShortName": "item_barter_valuable_gp", - "Description": "item_barter_valuable_gp", - "Weight": 0.01, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/item_barter_valuable_gp/item_barter_valuable_gp.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573474f924597738002c6174" - }, - "619cc01e0a7c3a1a2731940c": { - "_id": "619cc01e0a7c3a1a2731940c", - "_name": "item_barter_meds_tools", - "_parent": "57864c8c245977548867e7f1", - "_type": "Item", - "_props": { - "Name": "item_barter_medical_pile", - "ShortName": "item_barter_medical_pile", - "Description": "item_barter_medical_pile", - "Weight": 0.25, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "smallmetal", - "Prefab": { - "path": "assets/content/items/barter/item_barter_meds_tools/item_barter_meds_tools.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 40, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "544fb3364bdc2d34748b456a" - }, - "5d1b385e86f774252167b98a": { - "_id": "5d1b385e86f774252167b98a", - "_name": "item_barter_other_waterfilter", - "_parent": "590c745b86f7743cc433c5f2", - "_type": "Item", - "_props": { - "Name": "item_barter_other_waterfilter", - "ShortName": "item_barter_other_waterfilter", - "Description": "item_barter_other_waterfilter", - "Weight": 0.4, - "BackgroundColor": "blue", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "item_plastic_generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_other_waterfilter/item_barter_other_waterfilter.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 100, - "Resource": 100, - "DogTagQualities": false - }, - "_proto": "573476d324597737da2adc13" - }, - "590c2b4386f77425357b6123": { - "_id": "590c2b4386f77425357b6123", - "_name": "item_tools_pliers", - "_parent": "57864bb7245977548b3b66c2", - "_type": "Item", - "_props": { - "Name": "Pliers", - "ShortName": "Pliers", - "Description": "Pliers", - "Weight": 0.5, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/items/barter/item_tools_pliers/item_tools_pliers.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c2e24597744902c94a1" - }, - "590c2d8786f774245b1f03f3": { - "_id": "590c2d8786f774245b1f03f3", - "_name": "item_tools_screwdriver", - "_parent": "57864bb7245977548b3b66c2", - "_type": "Item", - "_props": { - "Name": "Screwdriver", - "ShortName": "Screwdriver", - "Description": "Screwdriver", - "Weight": 0.15, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/items/barter/item_tools_screwdriver/item_tools_screwdriver.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c2e24597744902c94a1" - }, - "5bc9c377d4351e3bac12251b": { - "_id": "5bc9c377d4351e3bac12251b", - "_name": "item_barter_valuable_kresalo", - "_parent": "57864bb7245977548b3b66c2", - "_type": "Item", - "_props": { - "Name": "item_barter_valuable_kresalo", - "ShortName": "item_barter_valuable_kresalo", - "Description": "item_barter_valuable_kresalo", - "Weight": 0.5, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/items/barter/item_valuable_kresalo/item_barter_valuable_kresalo.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c2e24597744902c94a1" - }, - "57864ada245977548638de91": { - "_id": "57864ada245977548638de91", - "_name": "BuildingMaterial", - "_parent": "5448eb774bdc2d0a728b4567", - "_type": "Node", - "_props": {} - }, - "567849dd4bdc2d150f8b456e": { - "_id": "567849dd4bdc2d150f8b456e", - "_name": "Map", - "_parent": "54009119af1c881c07000029", - "_type": "Node", - "_props": { - "ConfigPathStr": "", - "MaxMarkersCount": 0, - "scaleMin": 0, - "scaleMax": 0 - } - }, - "5447e0e74bdc2d3c308b4567": { - "_id": "5447e0e74bdc2d3c308b4567", - "_name": "SpecItem", - "_parent": "54009119af1c881c07000029", - "_type": "Node", - "_props": { - "apResource": 0, - "krResource": 0 - } - }, - "57347c2e24597744902c94a1": { - "_id": "57347c2e24597744902c94a1", - "_name": "power_supply_unit", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "Power supply", - "ShortName": "Power supply", - "Description": "Power supply", - "Weight": 1.5, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/power_supply_unit/item_power_supply_unit.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 25, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c1124597737fb1379e3" - }, - "5d40412b86f7743cb332ac3a": { - "_id": "5d40412b86f7743cb332ac3a", - "_name": "item_barter_household_shampoo", - "_parent": "57864c322459775490116fbf", - "_type": "Item", - "_props": { - "Name": "item_barter_household_shampoo", - "ShortName": "item_barter_household_shampoo", - "Description": "item_barter_household_shampoo", - "Weight": 0.45, - "BackgroundColor": "grey", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "food_bottle", - "Prefab": { - "path": "assets/content/items/barter/item_barter_household_shampoo/item_barter_household_shampoo.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c77245977448d35f6e2" - }, - "655c67782a1356436041c9c5": { - "_id": "655c67782a1356436041c9c5", - "_name": "Item_barter_tarko_ryzhy", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "tarko_ryzhy", - "ShortName": "tarko_ryzhy", - "Description": "tarko_ryzhy", - "Weight": 0.2, - "BackgroundColor": "violet", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/item_barter_tarko_scav_03/item_barter_tarko_scav_03.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573474f924597738002c6174" - }, - "655c663a6689c676ce57af85": { - "_id": "655c663a6689c676ce57af85", - "_name": "Item_barter_tarko_usec", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "tarko_usec", - "ShortName": "tarko_usec", - "Description": "tarko_usec", - "Weight": 0.2, - "BackgroundColor": "violet", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/item_barter_tarko_usec02/item_barter_tarko_usec02.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573474f924597738002c6174" - }, - "59e3639286f7741777737013": { - "_id": "59e3639286f7741777737013", - "_name": "item_barter_valuable_lion", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "lion", - "ShortName": "lion", - "Description": "lion", - "Weight": 7.2, - "BackgroundColor": "blue", - "Width": 3, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_valuable_lion/item_barter_valuable_lion.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "5734781f24597737e04bf32a" - }, - "5d1b36a186f7742523398433": { - "_id": "5d1b36a186f7742523398433", - "_name": "item_barter_flam_gasoline", - "_parent": "5d650c3e815116009f6201d2", - "_type": "Item", - "_props": { - "Name": "item_barter_flam_gasoline", - "ShortName": "item_barter_flam_gasoline", - "Description": "item_barter_flam_gasoline", - "Weight": 9.25, - "BackgroundColor": "yellow", - "Width": 2, - "Height": 3, - "StackMaxSize": 1, - "ItemSound": "container_metal", - "Prefab": { - "path": "assets/content/items/barter/item_barter_flam_gasoline/item_barter_flam_gasoline.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 50, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 100, - "Resource": 100 - }, - "_proto": "590a373286f774287540368b" - }, - "5c12620d86f7743f8b198b72": { - "_id": "5c12620d86f7743f8b198b72", - "_name": "item_barter_electr_tetriz", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "item_barter_electr_tetriz", - "ShortName": "item_barter_electr_tetriz", - "Description": "item_barter_electr_tetriz", - "Weight": 0.13, - "BackgroundColor": "blue", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_goggles", - "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_tetriz/item_barter_electr_tetriz.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573477e124597737dd42e191" - }, - "5e2af00086f7746d3f3c33f7": { - "_id": "5e2af00086f7746d3f3c33f7", - "_name": "item_barter_household_pipecleaner", - "_parent": "57864c322459775490116fbf", - "_type": "Item", - "_props": { - "Name": "item_barter_household_pipecleaner", - "ShortName": "item_barter_household_pipecleaner", - "Description": "item_barter_household_pipecleaner", - "Weight": 0.75, - "BackgroundColor": "grey", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "food_bottle", - "Prefab": { - "path": "assets/content/items/barter/item_barter_household_pipecleaner/item_barter_household_pipecleaner.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 25, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347cd0245977445a2d6ff1" - }, - "5c13cef886f774072e618e82": { - "_id": "5c13cef886f774072e618e82", - "_name": "item_barter_household_toiletpaper", - "_parent": "57864c322459775490116fbf", - "_type": "Item", - "_props": { - "Name": "item_barter_household_toiletpaper", - "ShortName": "item_barter_household_toiletpaper", - "Description": "item_barter_household_toiletpaper", - "Weight": 0.07, - "BackgroundColor": "grey", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_household_toiletpaper/item_barter_household_toiletpaper.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c77245977448d35f6e2" - }, - "573474f924597738002c6174": { - "_id": "573474f924597738002c6174", - "_name": "chain", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "Neck chain", - "ShortName": "Chain", - "Description": "Neck chain", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/chain/item_chain.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 40, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "573478bc24597738002c6175": { - "_id": "573478bc24597738002c6175", - "_name": "horse_figurine", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "Horse statue", - "ShortName": "Statue", - "Description": "Horse statue", - "Weight": 0.5, - "BackgroundColor": "blue", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/horse_figurine/item_horse_figurine.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "5734781f24597737e04bf32a" - }, - "5f745ee30acaeb0d490d8c5b": { - "_id": "5f745ee30acaeb0d490d8c5b", - "_name": "item_barter_valuable_mediator", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "item_barter_valuable_gp", - "ShortName": "item_barter_valuable_gp", - "Description": "item_barter_valuable_gp", - "Weight": 0.001, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/item_barter_other_mediator/item_barter_other_mediator.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573474f924597738002c6174" - }, - "590a373286f774287540368b": { - "_id": "590a373286f774287540368b", - "_name": "item_barter_flam_dry", - "_parent": "57864e4c24597754843f8723", - "_type": "Item", - "_props": { - "Name": "Dry fuel", - "ShortName": "Dfuel", - "Description": "Dry fuel", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/dry_fuel/item_barter_flam_dry.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - } - }, - "590c5bbd86f774785762df04": { - "_id": "590c5bbd86f774785762df04", - "_name": "item_barter_household_wd40_100ml", - "_parent": "57864e4c24597754843f8723", - "_type": "Item", - "_props": { - "Name": "wd40", - "ShortName": "wd40", - "Description": "wd40", - "Weight": 0.2, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/wd40/item_barter_household_wd40_100ml.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "590a373286f774287540368b" - }, - "5b4c81bd86f77418a75ae159": { - "_id": "5b4c81bd86f77418a75ae159", - "_name": "item_quest_chem_container3", - "_parent": "590c745b86f7743cc433c5f2", - "_type": "Item", - "_props": { - "Name": "quest_chemcontainer", - "ShortName": "quest_chemcontainer", - "Description": "quest_chemcontainer", - "Weight": 0.1, - "BackgroundColor": "yellow", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/quest/item_quest_chemcontainer/item_quest_chemcontainer.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": true, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0, - "DogTagQualities": false - }, - "_proto": "59e3606886f77417674759a5" - }, - "59f32bb586f774757e1e8442": { - "_id": "59f32bb586f774757e1e8442", - "_name": "dogtags_bear", - "_parent": "590c745b86f7743cc433c5f2", - "_type": "Item", - "_props": { - "Name": "Dog tag", - "ShortName": "Dog tag", - "Description": "Army dog tag", - "Weight": 0.01, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/dog_tags/item_dogtags_bear.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0, - "DogTagQualities": true - }, - "_proto": "57347cd0245977445a2d6ff1" - }, - "5e2af4a786f7746d3f3c3400": { - "_id": "5e2af4a786f7746d3f3c3400", - "_name": "Item_barter_other_cloth_ripstop", - "_parent": "590c745b86f7743cc433c5f2", - "_type": "Item", - "_props": { - "Name": "Item_barter_other_cloth_ripstop", - "ShortName": "Item_barter_other_cloth_ripstop", - "Description": "Item_barter_other_cloth_ripstop", - "Weight": 0.09, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_cloth_generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_other_cloth/item_barter_other_cloth_ripstop.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0, - "DogTagQualities": false - }, - "_proto": "573475fb24597737fb1379e1" - }, - "590c2c9c86f774245b1f03f2": { - "_id": "590c2c9c86f774245b1f03f2", - "_name": "item_tools_roulette", - "_parent": "57864bb7245977548b3b66c2", - "_type": "Item", - "_props": { - "Name": "Roulette", - "ShortName": "Roulette", - "Description": "Roulette", - "Weight": 0.15, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/items/barter/item_tools_roulette/item_tools_roulette.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 15, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c2e24597744902c94a1" - }, - "5df8a72c86f77412640e2e83": { - "_id": "5df8a72c86f77412640e2e83", - "_name": "item_barter_valuable_nyball_silver", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "nyball_silver", - "ShortName": "nyball_silver", - "Description": "nyball_silver", - "Weight": 0.05, - "BackgroundColor": "grey", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/item_barter_valuable_nyball/item_barter_valuable_nyball_silver.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": false, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "5c1267ee86f77416ec610f72": { - "_id": "5c1267ee86f77416ec610f72", - "_name": "item_barter_valuable_prokill", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "item_barter_valuable_prokill", - "ShortName": "item_barter_valuable_prokill", - "Description": "item_barter_valuable_prokill", - "Weight": 0.1, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/item_barter_valuable_prokill/item_barter_valuable_prokill.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573474f924597738002c6174" - }, - "5d1b3f2d86f774253763b735": { - "_id": "5d1b3f2d86f774253763b735", - "_name": "item_barter_medical_syringe", - "_parent": "57864c8c245977548867e7f1", - "_type": "Item", - "_props": { - "Name": "item_barter_medical_syringe", - "ShortName": "item_barter_medical_syringe", - "Description": "item_barter_medical_syringe", - "Weight": 0.06, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_medical_syringe/item_barter_medical_syringe.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "59e3606886f77417674759a5" - }, - "59e35de086f7741778269d84": { - "_id": "59e35de086f7741778269d84", - "_name": "item_barter_electr_drill", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "Drill", - "ShortName": "Drill", - "Description": "Drill", - "Weight": 1.2, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_drill/item_barter_electr_drill.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 60, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "5672cb724bdc2dc2088b456b" - }, - "5734781f24597737e04bf32a": { - "_id": "5734781f24597737e04bf32a", - "_name": "dvd_drive", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "DVD rom", - "ShortName": "DVD", - "Description": "PC DVD rom", - "Weight": 0.6, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/dvd_drive/item_dvd_drive.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573477e124597737dd42e191" - }, - "5bc9b9ecd4351e3bac122519": { - "_id": "5bc9b9ecd4351e3bac122519", - "_name": "item_barter_valuable_beardoil", - "_parent": "57864c322459775490116fbf", - "_type": "Item", - "_props": { - "Name": "item_barter_valuable_beardoil", - "ShortName": "item_barter_valuable_beardoil", - "Description": "item_barter_valuable_beardoil", - "Weight": 0.06, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_valuable_beardoil/item_barter_valuable_beardoil.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 5, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c77245977448d35f6e2" - }, - "5734758f24597738025ee253": { - "_id": "5734758f24597738025ee253", - "_name": "chain_gold", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "Golden neck chain", - "ShortName": "Golden chain", - "Description": "Golden neck chain", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/chain/item_chain_gold.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 50, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 3, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573474f924597738002c6174" - }, - "5bc9bdb8d4351e003562b8a1": { - "_id": "5bc9bdb8d4351e003562b8a1", - "_name": "item_barter_valuable_elibadge", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "item_barter_valuable_elibadge", - "ShortName": "item_barter_valuable_elibadge", - "Description": "item_barter_valuable_elibadge", - "Weight": 0.1, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/item_barter_valuable_elibadge/item_barter_valuable_elibadge.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "5e2af47786f7746d404f3aaa": { - "_id": "5e2af47786f7746d404f3aaa", - "_name": "Item_barter_other_cloth_fleece", - "_parent": "590c745b86f7743cc433c5f2", - "_type": "Item", - "_props": { - "Name": "Item_barter_other_cloth_fleece", - "ShortName": "Item_barter_other_cloth_fleece", - "Description": "Item_barter_other_cloth_fleece", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "item_cloth_generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_other_cloth/item_barter_other_cloth_fleece.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0, - "DogTagQualities": false - }, - "_proto": "573475fb24597737fb1379e1" - }, - "590c595c86f7747884343ad7": { - "_id": "590c595c86f7747884343ad7", - "_name": "item_other_filter", - "_parent": "590c745b86f7743cc433c5f2", - "_type": "Item", - "_props": { - "Name": "Gasmask filter", - "ShortName": "filter", - "Description": "Gasmask filter", - "Weight": 0.5, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "smallmetal", - "Prefab": { - "path": "assets/content/items/barter/item_other_filter/item_other_filter.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 35, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0, - "DogTagQualities": false - }, - "_proto": "5734770f24597738025ee254" - }, - "5d6fc87386f77449db3db94e": { - "_id": "5d6fc87386f77449db3db94e", - "_name": "item_other_powder_red", - "_parent": "590c745b86f7743cc433c5f2", - "_type": "Item", - "_props": { - "Name": "Gunpowder", - "ShortName": "Gunpowder", - "Description": "Gunpowder", - "Weight": 0.6, - "BackgroundColor": "red", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "food_juice_carton", - "Prefab": { - "path": "assets/content/items/barter/item_other_powder/item_other_powder_red.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0, - "DogTagQualities": false - }, - "_proto": "5734770f24597738025ee254" - }, - "62a0a0bb621468534a797ad5": { - "_id": "62a0a0bb621468534a797ad5", - "_name": "item_barter_tools_files", - "_parent": "57864bb7245977548b3b66c2", - "_type": "Item", - "_props": { - "Name": "Toolset", - "ShortName": "Toolset", - "Description": "Toolset", - "Weight": 0.45, - "BackgroundColor": "blue", - "Width": 2, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "gear_generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_tools_files/item_barter_tools_files.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 50, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "Rifle", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c2e24597744902c94a1" - }, - "5d40419286f774318526545f": { - "_id": "5d40419286f774318526545f", - "_name": "item_barter_tools_metalscissors", - "_parent": "57864bb7245977548b3b66c2", - "_type": "Item", - "_props": { - "Name": "item_barter_tools_metalscissors", - "ShortName": "item_barter_tools_metalscissors", - "Description": "item_barter_tools_metalscissors", - "Weight": 0.89, - "BackgroundColor": "blue", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/items/barter/item_barter_tools/item_barter_tools_metalscissors.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c2e24597744902c94a1" - }, - "5d63d33b86f7746ea9275524": { - "_id": "5d63d33b86f7746ea9275524", - "_name": "item_barter_tools_screwdriver_flat", - "_parent": "57864bb7245977548b3b66c2", - "_type": "Item", - "_props": { - "Name": "item_barter_tools_screwdriver_flat_long", - "ShortName": "item_barter_tools_screwdriver_flat_long", - "Description": "item_barter_tools_screwdriver_flat_long", - "Weight": 0.3, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/items/barter/item_barter_tools/item_barter_tools_screwdriver_flat.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c2e24597744902c94a1" - }, - "5d4042a986f7743185265463": { - "_id": "5d4042a986f7743185265463", - "_name": "item_barter_tools_screwdriver_flat_long", - "_parent": "57864bb7245977548b3b66c2", - "_type": "Item", - "_props": { - "Name": "item_barter_tools_screwdriver_flat_long", - "ShortName": "item_barter_tools_screwdriver_flat_long", - "Description": "item_barter_tools_screwdriver_flat_long", - "Weight": 0.35, - "BackgroundColor": "blue", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "spec_multitool", - "Prefab": { - "path": "assets/content/items/barter/item_barter_tools/item_barter_tools_screwdriver_flat_long.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 2, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c2e24597744902c94a1" - }, - "5448ecbe4bdc2d60728b4568": { - "_id": "5448ecbe4bdc2d60728b4568", - "_name": "Info", - "_parent": "54009119af1c881c07000029", - "_type": "Node", - "_props": {} - }, - "543be5664bdc2dd4348b4569": { - "_id": "543be5664bdc2dd4348b4569", - "_name": "Meds", - "_parent": "54009119af1c881c07000029", - "_type": "Node", - "_props": { - "medUseTime": 0, - "medEffectType": "duringUse", - "MaxHpResource": 0, - "hpResourceRate": 0, - "StimulatorBuffs": "" - } - }, - "5d1b304286f774253763a528": { - "_id": "5d1b304286f774253763a528", - "_name": "item_barter_electr_lcd_Clean", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "item_barter_electr_lcd_Clean", - "ShortName": "item_barter_electr_lcd_Clean", - "Description": "item_barter_electr_lcd_Clean", - "Weight": 0.05, - "BackgroundColor": "blue", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/item_barter_electr_lcd/item_barter_electr_lcd_clean.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 40, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "5734779624597737e04bf329" - }, - "59faf98186f774067b6be103": { - "_id": "59faf98186f774067b6be103", - "_name": "item_barter_household_alkali", - "_parent": "57864c322459775490116fbf", - "_type": "Item", - "_props": { - "Name": "Alkali", - "ShortName": "Alkali", - "Description": "Alkali", - "Weight": 1, - "BackgroundColor": "grey", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "food_bottle", - "Prefab": { - "path": "assets/content/items/barter/item_barter_household_alkali/item_barter_household_alkali.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 25, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347cd0245977445a2d6ff1" - }, - "62a09cfe4f842e1bd12da3e4": { - "_id": "62a09cfe4f842e1bd12da3e4", - "_name": "item_barter_valuable_egg", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "roler", - "ShortName": "roler", - "Description": "roler", - "Weight": 0.2, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/item_barter_valuable_egg/item_barter_valuable_egg.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573474f924597738002c6174" - }, - "56742c2e4bdc2d95058b456d": { - "_id": "56742c2e4bdc2d95058b456d", - "_name": "zibbo", - "_parent": "57864e4c24597754843f8723", - "_type": "Item", - "_props": { - "Name": "Zibbo lighter", - "ShortName": "Zibbo", - "Description": "Zibbo", - "Weight": 0.1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/lighters/item_zibbo.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 10, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - } - }, - "5447e1d04bdc2dff2f8b4567": { - "_id": "5447e1d04bdc2dff2f8b4567", - "_name": "Knife", - "_parent": "54009119af1c881c07000029", - "_type": "Node", - "_props": { - "Name": "Item", - "ShortName": "Item", - "Description": "Item", - "Weight": 1, - "BackgroundColor": "blue", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 20, - "ExamineExperience": 10, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": true, - "UnlootableFromSlot": "Scabbard", - "UnlootableFromSide": [ - "Bear", - "Usec" - ], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": -1, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "knifeHitDelay": 0, - "knifeHitSlashRate": 0, - "knifeHitStabRate": 0, - "knifeHitRadius": 0, - "knifeHitSlashDam": 0, - "knifeHitStabDam": 0, - "knifeDurab": 0, - "Durability": 0, - "MaxDurability": 0, - "PrimaryDistance": 1, - "SecondryDistance": 1, - "SlashPenetration": 5, - "StabPenetration": 10, - "MinRepairDegradation": 0, - "MaxRepairDegradation": 0.01, - "PrimaryConsumption": 6, - "SecondryConsumption": 8, - "DeflectionConsumption": 3, - "StimulatorBuffs": "", - "MaxResource": 0, - "AppliedTrunkRotation": { - "x": 0, - "y": 0, - "z": 0 - }, - "AppliedHeadRotation": { - "x": 2, - "y": 4, - "z": 0 - }, - "DisplayOnModel": false, - "AdditionalAnimationLayer": 0, - "StaminaBurnRate": 0, - "ColliderScaleMultiplier": { - "x": 1, - "y": 1, - "z": 1 - } - } - }, - "543be6564bdc2df4348b4568": { - "_id": "543be6564bdc2df4348b4568", - "_name": "ThrowWeap", - "_parent": "54009119af1c881c07000029", - "_type": "Node", - "_props": { - "ThrowType": "frag_grenade", - "ExplDelay": 5, - "MinExplosionDistance": 1.5, - "MaxExplosionDistance": 4, - "FragmentsCount": 20, - "FragmentType": "5485a8684bdc2da71d8b4567", - "Strength": 45, - "ContusionDistance": 5, - "throwDamMax": 0, - "explDelay": 0, - "Blindness": { - "x": 0, - "y": 0, - "z": 0 - }, - "Contusion": { - "x": 1.5, - "y": 4, - "z": 9 - }, - "ArmorDistanceDistanceDamage": { - "x": 0, - "y": 0, - "z": 0 - }, - "EmitTime": 30, - "CanBeHiddenDuringThrow": true, - "MinTimeToContactExplode": -1, - "ExplosionEffectType": "Grenade_indoor" - } - }, "57347cd0245977445a2d6ff1": { "_id": "57347cd0245977445a2d6ff1", "_name": "tplug", @@ -464933,136 +460784,6 @@ }, "_proto": "5734773724597737fd047c14" }, - "5bc9b720d4351e450201234b": { - "_id": "5bc9b720d4351e450201234b", - "_name": "item_barter_valuable_1gphone", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "Broken GPhone", - "ShortName": "GPhone", - "Description": "GPhone 9s", - "Weight": 0.3, - "BackgroundColor": "violet", - "Width": 1, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/item_barter_valuable_1gphone/item_barter_valuable_1gphone.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 30, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "56742c324bdc2d150f8b456d" - }, - "57347ca924597744596b4e71": { - "_id": "57347ca924597744596b4e71", - "_name": "video_card", - "_parent": "57864a66245977548f04a81f", - "_type": "Item", - "_props": { - "Name": "Video card", - "ShortName": "Video card", - "Description": "Video card", - "Weight": 0.6, - "BackgroundColor": "blue", - "Width": 2, - "Height": 1, - "StackMaxSize": 1, - "ItemSound": "generic", - "Prefab": { - "path": "assets/content/items/barter/video_card/item_video_card.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": true, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 45, - "ExamineExperience": 5, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "57347c93245977448d35f6e3" - }, "5e2aef7986f7746d3f3c33f5": { "_id": "5e2aef7986f7746d3f3c33f5", "_name": "item_barter_household_repellent", @@ -465193,71 +460914,6 @@ }, "_proto": "57347cd0245977445a2d6ff1" }, - "655c67ab0d37ca5135388f4b": { - "_id": "655c67ab0d37ca5135388f4b", - "_name": "Item_barter_tarko_ded_moroz", - "_parent": "57864a3d24597754843f8721", - "_type": "Item", - "_props": { - "Name": "tarko_ded_moroz", - "ShortName": "tarko_ded_moroz", - "Description": "tarko_ded_moroz", - "Weight": 0.2, - "BackgroundColor": "violet", - "Width": 1, - "Height": 2, - "StackMaxSize": 1, - "ItemSound": "jewelry", - "Prefab": { - "path": "assets/content/items/barter/item_barter_tarko_santa/item_barter_tarko_santa.bundle", - "rcid": "" - }, - "UsePrefab": { - "path": "", - "rcid": "" - }, - "StackObjectsCount": 1, - "NotShownInSlot": false, - "ExaminedByDefault": false, - "ExamineTime": 1, - "IsUndiscardable": false, - "IsUnsaleable": false, - "IsUnbuyable": false, - "IsUngivable": false, - "IsLockedafterEquip": false, - "QuestItem": false, - "LootExperience": 100, - "ExamineExperience": 100, - "HideEntrails": false, - "RepairCost": 0, - "RepairSpeed": 0, - "ExtraSizeLeft": 0, - "ExtraSizeRight": 0, - "ExtraSizeUp": 0, - "ExtraSizeDown": 0, - "ExtraSizeForceAdd": false, - "MergesWithChildren": false, - "CanSellOnRagfair": true, - "CanRequireOnRagfair": false, - "ConflictingItems": [], - "Unlootable": false, - "UnlootableFromSlot": "FirstPrimaryWeapon", - "UnlootableFromSide": [], - "AnimationVariantsNumber": 0, - "DiscardingBlock": false, - "RagFairCommissionModifier": 1, - "IsAlwaysAvailableForInsurance": false, - "DiscardLimit": 0, - "DropSoundType": "None", - "InsuranceDisabled": false, - "QuestStashMaxCount": 0, - "IsSpecialSlotOnly": false, - "IsUnremovable": false, - "MaxResource": 0, - "Resource": 0 - }, - "_proto": "573474f924597738002c6174" - }, "62a091170b9d3c46de5b6cf2": { "_id": "62a091170b9d3c46de5b6cf2", "_name": "item_barter_valuable_parrot", @@ -465388,6 +461044,71 @@ }, "_proto": "5734781f24597737e04bf32a" }, + "655c67ab0d37ca5135388f4b": { + "_id": "655c67ab0d37ca5135388f4b", + "_name": "Item_barter_tarko_ded_moroz", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "tarko_ded_moroz", + "ShortName": "tarko_ded_moroz", + "Description": "tarko_ded_moroz", + "Weight": 0.2, + "BackgroundColor": "violet", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_tarko_santa/item_barter_tarko_santa.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573474f924597738002c6174" + }, "5e2af37686f774755a234b65": { "_id": "5e2af37686f774755a234b65", "_name": "item_barter_flammable_survlighter", @@ -465984,5 +461705,3750 @@ "_props": { "DogTagQualities": false } + }, + "59e3556c86f7741776641ac2": { + "_id": "59e3556c86f7741776641ac2", + "_name": "item_barter_household_bleach", + "_parent": "57864c322459775490116fbf", + "_type": "Item", + "_props": { + "Name": "Bleach", + "ShortName": "Bleach", + "Description": "Bleach", + "Weight": 1.2, + "BackgroundColor": "grey", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_household_bleach/item_barter_household_bleach.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347cd0245977445a2d6ff1" + }, + "59e35abd86f7741778269d82": { + "_id": "59e35abd86f7741778269d82", + "_name": "item_barter_household_soda", + "_parent": "57864c322459775490116fbf", + "_type": "Item", + "_props": { + "Name": "сода", + "ShortName": "сода", + "Description": "сода", + "Weight": 0.5, + "BackgroundColor": "grey", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_household_soda/item_barter_household_soda.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347cd0245977445a2d6ff1" + }, + "57347c93245977448d35f6e3": { + "_id": "57347c93245977448d35f6e3", + "_name": "toothpaste", + "_parent": "57864c322459775490116fbf", + "_type": "Item", + "_props": { + "Name": "toothpaste", + "ShortName": "toothpaste", + "Description": "toothpaste", + "Weight": 0.2, + "BackgroundColor": "grey", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/toothpaste/item_toothpaste.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c77245977448d35f6e2" + }, + "60391b0fb847c71012789415": { + "_id": "60391b0fb847c71012789415", + "_name": "Item_barter_flammable_trotil", + "_parent": "57864e4c24597754843f8723", + "_type": "Item", + "_props": { + "Name": "Dry fuel", + "ShortName": "Dfuel", + "Description": "Dry fuel", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_flammable_trotil/item_barter_flammable_trotil.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "590a373286f774287540368b" + }, + "6389c6c7dbfd5e4b95197e68": { + "_id": "6389c6c7dbfd5e4b95197e68", + "_name": "item_barter_medical_aquatabs", + "_parent": "57864c8c245977548867e7f1", + "_type": "Item", + "_props": { + "Name": "h2o2", + "ShortName": "h2o2", + "Description": "h2o2", + "Weight": 1.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "med_pills", + "Prefab": { + "path": "assets/content/items/barter/item_barter_medical_aquatabs/item_barter_medical_aquatabs.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "59e3606886f77417674759a5" + }, + "59e361e886f774176c10a2a5": { + "_id": "59e361e886f774176c10a2a5", + "_name": "item_barter_medical_h2o2", + "_parent": "57864c8c245977548867e7f1", + "_type": "Item", + "_props": { + "Name": "h2o2", + "ShortName": "h2o2", + "Description": "h2o2", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_medical_h2o2/item_barter_medical_h2o2.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "59e3606886f77417674759a5" + }, + "5af04b6486f774195a3ebb49": { + "_id": "5af04b6486f774195a3ebb49", + "_name": "item_barter_tools_pliers_elite", + "_parent": "57864bb7245977548b3b66c2", + "_type": "Item", + "_props": { + "Name": "pliers_elite", + "ShortName": "pliers_elite", + "Description": "pliers_elite", + "Weight": 0.25, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "spec_multitool", + "Prefab": { + "path": "assets/content/items/barter/item_barter_tools/item_barter_tools_pliers_elite.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c2e24597744902c94a1" + }, + "57864ee62459775490116fc1": { + "_id": "57864ee62459775490116fc1", + "_name": "Battery", + "_parent": "5448eb774bdc2d0a728b4567", + "_type": "Node", + "_props": { + "Name": "Item", + "ShortName": "Item", + "Description": "Item", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + } + }, + "5c1267ee86f77416ec610f72": { + "_id": "5c1267ee86f77416ec610f72", + "_name": "item_barter_valuable_prokill", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "item_barter_valuable_prokill", + "ShortName": "item_barter_valuable_prokill", + "Description": "item_barter_valuable_prokill", + "Weight": 0.1, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_valuable_prokill/item_barter_valuable_prokill.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573474f924597738002c6174" + }, + "5df8a72c86f77412640e2e83": { + "_id": "5df8a72c86f77412640e2e83", + "_name": "item_barter_valuable_nyball_silver", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "nyball_silver", + "ShortName": "nyball_silver", + "Description": "nyball_silver", + "Weight": 0.05, + "BackgroundColor": "grey", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_valuable_nyball/item_barter_valuable_nyball_silver.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "5d1b3f2d86f774253763b735": { + "_id": "5d1b3f2d86f774253763b735", + "_name": "item_barter_medical_syringe", + "_parent": "57864c8c245977548867e7f1", + "_type": "Item", + "_props": { + "Name": "item_barter_medical_syringe", + "ShortName": "item_barter_medical_syringe", + "Description": "item_barter_medical_syringe", + "Weight": 0.06, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_medical_syringe/item_barter_medical_syringe.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "59e3606886f77417674759a5" + }, + "5d40412b86f7743cb332ac3a": { + "_id": "5d40412b86f7743cb332ac3a", + "_name": "item_barter_household_shampoo", + "_parent": "57864c322459775490116fbf", + "_type": "Item", + "_props": { + "Name": "item_barter_household_shampoo", + "ShortName": "item_barter_household_shampoo", + "Description": "item_barter_household_shampoo", + "Weight": 0.45, + "BackgroundColor": "grey", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "food_bottle", + "Prefab": { + "path": "assets/content/items/barter/item_barter_household_shampoo/item_barter_household_shampoo.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c77245977448d35f6e2" + }, + "59e3639286f7741777737013": { + "_id": "59e3639286f7741777737013", + "_name": "item_barter_valuable_lion", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "lion", + "ShortName": "lion", + "Description": "lion", + "Weight": 7.2, + "BackgroundColor": "blue", + "Width": 3, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_valuable_lion/item_barter_valuable_lion.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "5734781f24597737e04bf32a" + }, + "655c67782a1356436041c9c5": { + "_id": "655c67782a1356436041c9c5", + "_name": "Item_barter_tarko_ryzhy", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "tarko_ryzhy", + "ShortName": "tarko_ryzhy", + "Description": "tarko_ryzhy", + "Weight": 0.2, + "BackgroundColor": "violet", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_tarko_scav_03/item_barter_tarko_scav_03.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573474f924597738002c6174" + }, + "655c663a6689c676ce57af85": { + "_id": "655c663a6689c676ce57af85", + "_name": "Item_barter_tarko_usec", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "tarko_usec", + "ShortName": "tarko_usec", + "Description": "tarko_usec", + "Weight": 0.2, + "BackgroundColor": "violet", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_tarko_usec02/item_barter_tarko_usec02.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573474f924597738002c6174" + }, + "5d1b36a186f7742523398433": { + "_id": "5d1b36a186f7742523398433", + "_name": "item_barter_flam_gasoline", + "_parent": "5d650c3e815116009f6201d2", + "_type": "Item", + "_props": { + "Name": "item_barter_flam_gasoline", + "ShortName": "item_barter_flam_gasoline", + "Description": "item_barter_flam_gasoline", + "Weight": 9.25, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "container_metal", + "Prefab": { + "path": "assets/content/items/barter/item_barter_flam_gasoline/item_barter_flam_gasoline.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 50, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 100, + "Resource": 100 + }, + "_proto": "590a373286f774287540368b" + }, + "59e35de086f7741778269d84": { + "_id": "59e35de086f7741778269d84", + "_name": "item_barter_electr_drill", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "Drill", + "ShortName": "Drill", + "Description": "Drill", + "Weight": 1.2, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_electr_drill/item_barter_electr_drill.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "5672cb724bdc2dc2088b456b" + }, + "5c052f6886f7746b1e3db148": { + "_id": "5c052f6886f7746b1e3db148", + "_name": "Item_barter_electr_wirelesstranmitter", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "Item_barter_electr_wirelesstranmitter", + "ShortName": "Item_barter_electr_wirelesstranmitter", + "Description": "Item_barter_electr_wirelesstranmitter", + "Weight": 2, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_electr_wirelesstranmitter/item_barter_electr_wirelesstranmitter.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c93245977448d35f6e3" + }, + "59e3658a86f7741776641ac4": { + "_id": "59e3658a86f7741776641ac4", + "_name": "item_barter_valuable_cat", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "cat", + "ShortName": "cat", + "Description": "cat", + "Weight": 3.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 3, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_valuable_cat/item_barter_valuable_cat.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 60, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "5734781f24597737e04bf32a" + }, + "5bc9bc53d4351e00367fbcee": { + "_id": "5bc9bc53d4351e00367fbcee", + "_name": "item_barter_valuable_chicken", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "item_barter_valuable_chicken", + "ShortName": "item_barter_valuable_chicken", + "Description": "item_barter_valuable_chicken", + "Weight": 3.8, + "BackgroundColor": "violet", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_valuable_chicken/item_barter_valuable_chicken.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "5734781f24597737e04bf32a" + }, + "59faf7ca86f7740dbe19f6c2": { + "_id": "59faf7ca86f7740dbe19f6c2", + "_name": "item_barter_valuable_rolex", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "roler", + "ShortName": "roler", + "Description": "roler", + "Weight": 0.18, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_valuable_rolex/item_barter_valuable_rolex.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 1, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573474f924597738002c6174" + }, + "59e3647686f774176a362507": { + "_id": "59e3647686f774176a362507", + "_name": "item_barter_valuable_woodclock", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "wood clock", + "ShortName": "wood clock", + "Description": "wood clock", + "Weight": 3, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_valuable_woodclock/item_barter_valuable_woodclock.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "5734781f24597737e04bf32a" + }, + "655c673673a43e23e857aebd": { + "_id": "655c673673a43e23e857aebd", + "_name": "Item_barter_tarko_scav", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "tarko_scav", + "ShortName": "tarko_scav", + "Description": "tarko_scav", + "Weight": 0.2, + "BackgroundColor": "violet", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_tarko_scav_02/item_barter_tarko_scav_02.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573474f924597738002c6174" + }, + "573476d324597737da2adc13": { + "_id": "573476d324597737da2adc13", + "_name": "cigarettes_malboro", + "_parent": "590c745b86f7743cc433c5f2", + "_type": "Item", + "_props": { + "Name": "Cigarettes Malboro", + "ShortName": "Cigarettes", + "Description": "Cigarettes Malboro", + "Weight": 0.02, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/cigarettes/item_cigarettes_malboro.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0, + "DogTagQualities": false + }, + "_proto": "573475fb24597737fb1379e1" + }, + "619cbfccbedcde2f5b3f7bdd": { + "_id": "619cbfccbedcde2f5b3f7bdd", + "_name": "item_barter_tools_advwrench", + "_parent": "57864bb7245977548b3b66c2", + "_type": "Item", + "_props": { + "Name": "pliers_elite", + "ShortName": "pliers_elite", + "Description": "pliers_elite", + "Weight": 1.5, + "BackgroundColor": "violet", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "spec_multitool", + "Prefab": { + "path": "assets/content/items/barter/item_barter_tools_advwrench/item_barter_tools_advwrench.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c2e24597744902c94a1" + }, + "5734781f24597737e04bf32a": { + "_id": "5734781f24597737e04bf32a", + "_name": "dvd_drive", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "DVD rom", + "ShortName": "DVD", + "Description": "PC DVD rom", + "Weight": 0.6, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/dvd_drive/item_dvd_drive.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573477e124597737dd42e191" + }, + "5bc9b9ecd4351e3bac122519": { + "_id": "5bc9b9ecd4351e3bac122519", + "_name": "item_barter_valuable_beardoil", + "_parent": "57864c322459775490116fbf", + "_type": "Item", + "_props": { + "Name": "item_barter_valuable_beardoil", + "ShortName": "item_barter_valuable_beardoil", + "Description": "item_barter_valuable_beardoil", + "Weight": 0.06, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_valuable_beardoil/item_barter_valuable_beardoil.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c77245977448d35f6e2" + }, + "5734758f24597738025ee253": { + "_id": "5734758f24597738025ee253", + "_name": "chain_gold", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "Golden neck chain", + "ShortName": "Golden chain", + "Description": "Golden neck chain", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/chain/item_chain_gold.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 50, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 3, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573474f924597738002c6174" + }, + "5bc9bdb8d4351e003562b8a1": { + "_id": "5bc9bdb8d4351e003562b8a1", + "_name": "item_barter_valuable_elibadge", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "item_barter_valuable_elibadge", + "ShortName": "item_barter_valuable_elibadge", + "Description": "item_barter_valuable_elibadge", + "Weight": 0.1, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_valuable_elibadge/item_barter_valuable_elibadge.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "57864c8c245977548867e7f1": { + "_id": "57864c8c245977548867e7f1", + "_name": "MedicalSupplies", + "_parent": "5448eb774bdc2d0a728b4567", + "_type": "Node", + "_props": {} + }, + "5e2af47786f7746d404f3aaa": { + "_id": "5e2af47786f7746d404f3aaa", + "_name": "Item_barter_other_cloth_fleece", + "_parent": "590c745b86f7743cc433c5f2", + "_type": "Item", + "_props": { + "Name": "Item_barter_other_cloth_fleece", + "ShortName": "Item_barter_other_cloth_fleece", + "Description": "Item_barter_other_cloth_fleece", + "Weight": 0.05, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_cloth_generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_other_cloth/item_barter_other_cloth_fleece.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0, + "DogTagQualities": false + }, + "_proto": "573475fb24597737fb1379e1" + }, + "590c595c86f7747884343ad7": { + "_id": "590c595c86f7747884343ad7", + "_name": "item_other_filter", + "_parent": "590c745b86f7743cc433c5f2", + "_type": "Item", + "_props": { + "Name": "Gasmask filter", + "ShortName": "filter", + "Description": "Gasmask filter", + "Weight": 0.5, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "smallmetal", + "Prefab": { + "path": "assets/content/items/barter/item_other_filter/item_other_filter.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 35, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0, + "DogTagQualities": false + }, + "_proto": "5734770f24597738025ee254" + }, + "5d6fc87386f77449db3db94e": { + "_id": "5d6fc87386f77449db3db94e", + "_name": "item_other_powder_red", + "_parent": "590c745b86f7743cc433c5f2", + "_type": "Item", + "_props": { + "Name": "Gunpowder", + "ShortName": "Gunpowder", + "Description": "Gunpowder", + "Weight": 0.6, + "BackgroundColor": "red", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "food_juice_carton", + "Prefab": { + "path": "assets/content/items/barter/item_other_powder/item_other_powder_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 45, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0, + "DogTagQualities": false + }, + "_proto": "5734770f24597738025ee254" + }, + "62a0a0bb621468534a797ad5": { + "_id": "62a0a0bb621468534a797ad5", + "_name": "item_barter_tools_files", + "_parent": "57864bb7245977548b3b66c2", + "_type": "Item", + "_props": { + "Name": "Toolset", + "ShortName": "Toolset", + "Description": "Toolset", + "Weight": 0.45, + "BackgroundColor": "blue", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_tools_files/item_barter_tools_files.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 50, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "Rifle", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c2e24597744902c94a1" + }, + "5d40419286f774318526545f": { + "_id": "5d40419286f774318526545f", + "_name": "item_barter_tools_metalscissors", + "_parent": "57864bb7245977548b3b66c2", + "_type": "Item", + "_props": { + "Name": "item_barter_tools_metalscissors", + "ShortName": "item_barter_tools_metalscissors", + "Description": "item_barter_tools_metalscissors", + "Weight": 0.89, + "BackgroundColor": "blue", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "spec_multitool", + "Prefab": { + "path": "assets/content/items/barter/item_barter_tools/item_barter_tools_metalscissors.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c2e24597744902c94a1" + }, + "5d63d33b86f7746ea9275524": { + "_id": "5d63d33b86f7746ea9275524", + "_name": "item_barter_tools_screwdriver_flat", + "_parent": "57864bb7245977548b3b66c2", + "_type": "Item", + "_props": { + "Name": "item_barter_tools_screwdriver_flat_long", + "ShortName": "item_barter_tools_screwdriver_flat_long", + "Description": "item_barter_tools_screwdriver_flat_long", + "Weight": 0.3, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "spec_multitool", + "Prefab": { + "path": "assets/content/items/barter/item_barter_tools/item_barter_tools_screwdriver_flat.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c2e24597744902c94a1" + }, + "5d4042a986f7743185265463": { + "_id": "5d4042a986f7743185265463", + "_name": "item_barter_tools_screwdriver_flat_long", + "_parent": "57864bb7245977548b3b66c2", + "_type": "Item", + "_props": { + "Name": "item_barter_tools_screwdriver_flat_long", + "ShortName": "item_barter_tools_screwdriver_flat_long", + "Description": "item_barter_tools_screwdriver_flat_long", + "Weight": 0.35, + "BackgroundColor": "blue", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "spec_multitool", + "Prefab": { + "path": "assets/content/items/barter/item_barter_tools/item_barter_tools_screwdriver_flat_long.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c2e24597744902c94a1" + }, + "5448ecbe4bdc2d60728b4568": { + "_id": "5448ecbe4bdc2d60728b4568", + "_name": "Info", + "_parent": "54009119af1c881c07000029", + "_type": "Node", + "_props": {} + }, + "543be5664bdc2dd4348b4569": { + "_id": "543be5664bdc2dd4348b4569", + "_name": "Meds", + "_parent": "54009119af1c881c07000029", + "_type": "Node", + "_props": { + "medUseTime": 0, + "medEffectType": "duringUse", + "MaxHpResource": 0, + "hpResourceRate": 0, + "StimulatorBuffs": "" + } + }, + "5c12620d86f7743f8b198b72": { + "_id": "5c12620d86f7743f8b198b72", + "_name": "item_barter_electr_tetriz", + "_parent": "57864a66245977548f04a81f", + "_type": "Item", + "_props": { + "Name": "item_barter_electr_tetriz", + "ShortName": "item_barter_electr_tetriz", + "Description": "item_barter_electr_tetriz", + "Weight": 0.13, + "BackgroundColor": "blue", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "gear_goggles", + "Prefab": { + "path": "assets/content/items/barter/item_barter_electr_tetriz/item_barter_electr_tetriz.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573477e124597737dd42e191" + }, + "5df8a6a186f77412640e2e80": { + "_id": "5df8a6a186f77412640e2e80", + "_name": "item_barter_valuable_nyball_red", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "nyball_red", + "ShortName": "nyball_red", + "Description": "nyball_red", + "Weight": 0.05, + "BackgroundColor": "red", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_valuable_nyball/item_barter_valuable_nyball_red.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "5d1b371186f774253763a656": { + "_id": "5d1b371186f774253763a656", + "_name": "item_barter_flam_kerosine", + "_parent": "5d650c3e815116009f6201d2", + "_type": "Item", + "_props": { + "Name": "item_barter_flam_kerosine", + "ShortName": "item_barter_flam_kerosine", + "Description": "item_barter_flam_kerosine", + "Weight": 5.6, + "BackgroundColor": "yellow", + "Width": 2, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "container_plastic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_flam_kerosine/item_barter_flam_kerosine.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 50, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 60, + "Resource": 60 + }, + "_proto": "590a373286f774287540368b" + }, + "5bc9b355d4351e6d1509862a": { + "_id": "5bc9b355d4351e6d1509862a", + "_name": "item_barter_flammable_klean", + "_parent": "57864e4c24597754843f8723", + "_type": "Item", + "_props": { + "Name": "item_barter_flammable_klean", + "ShortName": "item_barter_flammable_klean", + "Description": "item_barter_flammable_klean", + "Weight": 0.2, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_flammable_klean/item_barter_flammable_klean.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "590a373286f774287540368b" + }, + "60391a8b3364dc22b04d0ce5": { + "_id": "60391a8b3364dc22b04d0ce5", + "_name": "item_barter_flammable_thermite", + "_parent": "57864e4c24597754843f8723", + "_type": "Item", + "_props": { + "Name": "Dry fuel", + "ShortName": "Dfuel", + "Description": "Dry fuel", + "Weight": 0.65, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_flammable_thermite/item_barter_flammable_thermite.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "590a373286f774287540368b" + }, + "5e2af00086f7746d3f3c33f7": { + "_id": "5e2af00086f7746d3f3c33f7", + "_name": "item_barter_household_pipecleaner", + "_parent": "57864c322459775490116fbf", + "_type": "Item", + "_props": { + "Name": "item_barter_household_pipecleaner", + "ShortName": "item_barter_household_pipecleaner", + "Description": "item_barter_household_pipecleaner", + "Weight": 0.75, + "BackgroundColor": "grey", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "food_bottle", + "Prefab": { + "path": "assets/content/items/barter/item_barter_household_pipecleaner/item_barter_household_pipecleaner.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 25, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347cd0245977445a2d6ff1" + }, + "5c13cef886f774072e618e82": { + "_id": "5c13cef886f774072e618e82", + "_name": "item_barter_household_toiletpaper", + "_parent": "57864c322459775490116fbf", + "_type": "Item", + "_props": { + "Name": "item_barter_household_toiletpaper", + "ShortName": "item_barter_household_toiletpaper", + "Description": "item_barter_household_toiletpaper", + "Weight": 0.07, + "BackgroundColor": "grey", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_household_toiletpaper/item_barter_household_toiletpaper.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 5, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c77245977448d35f6e2" + }, + "573474f924597738002c6174": { + "_id": "573474f924597738002c6174", + "_name": "chain", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "Neck chain", + "ShortName": "Chain", + "Description": "Neck chain", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/chain/item_chain.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 40, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "56742c324bdc2d150f8b456d" + }, + "573478bc24597738002c6175": { + "_id": "573478bc24597738002c6175", + "_name": "horse_figurine", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "Horse statue", + "ShortName": "Statue", + "Description": "Horse statue", + "Weight": 0.5, + "BackgroundColor": "blue", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/horse_figurine/item_horse_figurine.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 30, + "ExamineExperience": 5, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "5734781f24597737e04bf32a" + }, + "573475fb24597737fb1379e1": { + "_id": "573475fb24597737fb1379e1", + "_name": "cigarettes_soyuz_apollo", + "_parent": "590c745b86f7743cc433c5f2", + "_type": "Item", + "_props": { + "Name": "Cigarettes Apollon Souz", + "ShortName": "Cigarettes", + "Description": "Cigarettes Apollon Souz", + "Weight": 0.02, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/cigarettes/item_cigarettes_soyuz_apollo.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0, + "DogTagQualities": false + }, + "_proto": "5734758f24597738025ee253" + }, + "6389c6463485cf0eeb260715": { + "_id": "6389c6463485cf0eeb260715", + "_name": "item_barter_other_grechka", + "_parent": "590c745b86f7743cc433c5f2", + "_type": "Item", + "_props": { + "Name": "coffee", + "ShortName": "coffee", + "Description": "coffee", + "Weight": 0.8, + "BackgroundColor": "default", + "Width": 1, + "Height": 2, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_other_grechka/item_barter_other_grechka.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0, + "DogTagQualities": false + }, + "_proto": "573475fb24597737fb1379e1" + }, + "61bf83814088ec1a363d7097": { + "_id": "61bf83814088ec1a363d7097", + "_name": "item_barter_tools_sewing", + "_parent": "57864bb7245977548b3b66c2", + "_type": "Item", + "_props": { + "Name": "item_barter_tools_nippers", + "ShortName": "item_barter_tools_nippers", + "Description": "item_barter_tools_nippers", + "Weight": 0.36, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "spec_multitool", + "Prefab": { + "path": "assets/content/items/barter/item_barter_tools_sewing/item_barter_tools_sewing.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c2e24597744902c94a1" + }, + "590c311186f77424d1667482": { + "_id": "590c311186f77424d1667482", + "_name": "item_tools_wrench", + "_parent": "57864bb7245977548b3b66c2", + "_type": "Item", + "_props": { + "Name": "Wrench", + "ShortName": "Wrench", + "Description": "Wrench", + "Weight": 0.5, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "spec_multitool", + "Prefab": { + "path": "assets/content/items/barter/item_tools_wrench/item_tools_wrench.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 10, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c2e24597744902c94a1" + }, + "5f745ee30acaeb0d490d8c5b": { + "_id": "5f745ee30acaeb0d490d8c5b", + "_name": "item_barter_valuable_mediator", + "_parent": "57864a3d24597754843f8721", + "_type": "Item", + "_props": { + "Name": "item_barter_valuable_gp", + "ShortName": "item_barter_valuable_gp", + "Description": "item_barter_valuable_gp", + "Weight": 0.001, + "BackgroundColor": "violet", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/item_barter_other_mediator/item_barter_other_mediator.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 100, + "ExamineExperience": 100, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "573474f924597738002c6174" + }, + "590a373286f774287540368b": { + "_id": "590a373286f774287540368b", + "_name": "item_barter_flam_dry", + "_parent": "57864e4c24597754843f8723", + "_type": "Item", + "_props": { + "Name": "Dry fuel", + "ShortName": "Dfuel", + "Description": "Dry fuel", + "Weight": 0.1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/dry_fuel/item_barter_flam_dry.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + } + }, + "57864a66245977548f04a81f": { + "_id": "57864a66245977548f04a81f", + "_name": "Electronics", + "_parent": "5448eb774bdc2d0a728b4567", + "_type": "Node", + "_props": { + "Name": "Item", + "ShortName": "Item", + "Description": "Item", + "Weight": 1, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": false, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + } + }, + "57864bb7245977548b3b66c2": { + "_id": "57864bb7245977548b3b66c2", + "_name": "Tool", + "_parent": "5448eb774bdc2d0a728b4567", + "_type": "Node", + "_props": {} + }, + "590c5bbd86f774785762df04": { + "_id": "590c5bbd86f774785762df04", + "_name": "item_barter_household_wd40_100ml", + "_parent": "57864e4c24597754843f8723", + "_type": "Item", + "_props": { + "Name": "wd40", + "ShortName": "wd40", + "Description": "wd40", + "Weight": 0.2, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/barter/wd40/item_barter_household_wd40_100ml.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "590a373286f774287540368b" + }, + "5b4c81bd86f77418a75ae159": { + "_id": "5b4c81bd86f77418a75ae159", + "_name": "item_quest_chem_container3", + "_parent": "590c745b86f7743cc433c5f2", + "_type": "Item", + "_props": { + "Name": "quest_chemcontainer", + "ShortName": "quest_chemcontainer", + "Description": "quest_chemcontainer", + "Weight": 0.1, + "BackgroundColor": "yellow", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "generic", + "Prefab": { + "path": "assets/content/items/quest/item_quest_chemcontainer/item_quest_chemcontainer.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": true, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0, + "DogTagQualities": false + }, + "_proto": "59e3606886f77417674759a5" + }, + "59f32bb586f774757e1e8442": { + "_id": "59f32bb586f774757e1e8442", + "_name": "dogtags_bear", + "_parent": "590c745b86f7743cc433c5f2", + "_type": "Item", + "_props": { + "Name": "Dog tag", + "ShortName": "Dog tag", + "Description": "Army dog tag", + "Weight": 0.01, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "jewelry", + "Prefab": { + "path": "assets/content/items/barter/dog_tags/item_dogtags_bear.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": false, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0, + "DogTagQualities": true + }, + "_proto": "57347cd0245977445a2d6ff1" + }, + "5e2af4a786f7746d3f3c3400": { + "_id": "5e2af4a786f7746d3f3c3400", + "_name": "Item_barter_other_cloth_ripstop", + "_parent": "590c745b86f7743cc433c5f2", + "_type": "Item", + "_props": { + "Name": "Item_barter_other_cloth_ripstop", + "ShortName": "Item_barter_other_cloth_ripstop", + "Description": "Item_barter_other_cloth_ripstop", + "Weight": 0.09, + "BackgroundColor": "blue", + "Width": 2, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "item_cloth_generic", + "Prefab": { + "path": "assets/content/items/barter/item_barter_other_cloth/item_barter_other_cloth_ripstop.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 20, + "ExamineExperience": 10, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0, + "DogTagQualities": false + }, + "_proto": "573475fb24597737fb1379e1" + }, + "590c2c9c86f774245b1f03f2": { + "_id": "590c2c9c86f774245b1f03f2", + "_name": "item_tools_roulette", + "_parent": "57864bb7245977548b3b66c2", + "_type": "Item", + "_props": { + "Name": "Roulette", + "ShortName": "Roulette", + "Description": "Roulette", + "Weight": 0.15, + "BackgroundColor": "blue", + "Width": 1, + "Height": 1, + "StackMaxSize": 1, + "ItemSound": "spec_multitool", + "Prefab": { + "path": "assets/content/items/barter/item_tools_roulette/item_tools_roulette.bundle", + "rcid": "" + }, + "UsePrefab": { + "path": "", + "rcid": "" + }, + "StackObjectsCount": 1, + "NotShownInSlot": false, + "ExaminedByDefault": true, + "ExamineTime": 1, + "IsUndiscardable": false, + "IsUnsaleable": false, + "IsUnbuyable": false, + "IsUngivable": false, + "IsLockedafterEquip": false, + "QuestItem": false, + "LootExperience": 15, + "ExamineExperience": 2, + "HideEntrails": false, + "RepairCost": 0, + "RepairSpeed": 0, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "MergesWithChildren": false, + "CanSellOnRagfair": true, + "CanRequireOnRagfair": false, + "ConflictingItems": [], + "Unlootable": false, + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UnlootableFromSide": [], + "AnimationVariantsNumber": 0, + "DiscardingBlock": false, + "RagFairCommissionModifier": 1, + "IsAlwaysAvailableForInsurance": false, + "DiscardLimit": 0, + "DropSoundType": "None", + "InsuranceDisabled": false, + "QuestStashMaxCount": 0, + "IsSpecialSlotOnly": false, + "IsUnremovable": false, + "MaxResource": 0, + "Resource": 0 + }, + "_proto": "57347c2e24597744902c94a1" } } \ No newline at end of file diff --git a/project/src/controllers/WeatherController.ts b/project/src/controllers/WeatherController.ts index becef9f5..b64cba02 100644 --- a/project/src/controllers/WeatherController.ts +++ b/project/src/controllers/WeatherController.ts @@ -24,7 +24,13 @@ export class WeatherController /** Handle client/weather */ public generate(): IWeatherData { - let result: IWeatherData = { acceleration: 0, time: "", date: "", weather: null, season: 1 }; // defaults, hydrated below + let result: IWeatherData = { + acceleration: 0, + time: "", + date: "", + weather: null, + winterEventEnabled: this.weatherConfig.forceWinterEvent, + }; result = this.weatherGenerator.calculateGameTime(result); result.weather = this.weatherGenerator.generateWeather(); diff --git a/project/src/generators/WeatherGenerator.ts b/project/src/generators/WeatherGenerator.ts index 178aa86c..f9b7ab16 100644 --- a/project/src/generators/WeatherGenerator.ts +++ b/project/src/generators/WeatherGenerator.ts @@ -5,12 +5,10 @@ import { ContextVariableType } from "@spt-aki/context/ContextVariableType"; import { WeightedRandomHelper } from "@spt-aki/helpers/WeightedRandomHelper"; import { IWeather, IWeatherData } from "@spt-aki/models/eft/weather/IWeatherData"; import { ConfigTypes } from "@spt-aki/models/enums/ConfigTypes"; -import { Season } from "@spt-aki/models/enums/Season"; import { WindDirection } from "@spt-aki/models/enums/WindDirection"; import { IWeatherConfig } from "@spt-aki/models/spt/config/IWeatherConfig"; import { ILogger } from "@spt-aki/models/spt/utils/ILogger"; import { ConfigServer } from "@spt-aki/servers/ConfigServer"; -import { SeasonalEventService } from "@spt-aki/services/SeasonalEventService"; import { RandomUtil } from "@spt-aki/utils/RandomUtil"; import { TimeUtil } from "@spt-aki/utils/TimeUtil"; @@ -28,7 +26,6 @@ export class WeatherGenerator @inject("WinstonLogger") protected logger: ILogger, @inject("RandomUtil") protected randomUtil: RandomUtil, @inject("TimeUtil") protected timeUtil: TimeUtil, - @inject("SeasonalEventService") protected seasonalEventService: SeasonalEventService, @inject("ApplicationContext") protected applicationContext: ApplicationContext, @inject("ConfigServer") protected configServer: ConfigServer, ) @@ -49,10 +46,7 @@ export class WeatherGenerator data.date = formattedDate; data.time = this.getBsgFormattedInRaidTime(); data.acceleration = this.weatherConfig.acceleration; - - data.season = this.weatherConfig.overrideSeason - ? this.weatherConfig.overrideSeason - : this.seasonalEventService.getActiveWeatherSeason(); + data.winterEventEnabled = this.weatherConfig.forceWinterEvent; return data; } diff --git a/project/src/helpers/Dialogue/SptDialogueChatBot.ts b/project/src/helpers/Dialogue/SptDialogueChatBot.ts index 1f707c90..34036ee0 100644 --- a/project/src/helpers/Dialogue/SptDialogueChatBot.ts +++ b/project/src/helpers/Dialogue/SptDialogueChatBot.ts @@ -7,7 +7,6 @@ import { IUserDialogInfo } from "@spt-aki/models/eft/profile/IAkiProfile"; import { ConfigTypes } from "@spt-aki/models/enums/ConfigTypes"; import { GiftSentResult } from "@spt-aki/models/enums/GiftSentResult"; import { MemberCategory } from "@spt-aki/models/enums/MemberCategory"; -import { Season } from "@spt-aki/models/enums/Season"; import { ICoreConfig } from "@spt-aki/models/spt/config/ICoreConfig"; import { IWeatherConfig } from "@spt-aki/models/spt/config/IWeatherConfig"; import { ConfigServer } from "@spt-aki/servers/ConfigServer"; @@ -154,7 +153,7 @@ export class SptDialogueChatBot implements IDialogueChatBot if (request.text.toLowerCase() === "itsonlysnowalan") { - this.weatherConfig.overrideSeason = Season.WINTER; + this.weatherConfig.forceWinterEvent = true; this.mailSendService.sendUserMessageToPlayer( sessionId, diff --git a/project/src/models/eft/common/IGlobals.ts b/project/src/models/eft/common/IGlobals.ts index 3fd37d9b..dc32039d 100644 --- a/project/src/models/eft/common/IGlobals.ts +++ b/project/src/models/eft/common/IGlobals.ts @@ -184,7 +184,6 @@ export interface IExp kill: IKill; level: ILevel; loot_attempts: ILootAttempt[]; - expForLevelOneDogtag: number; expForLockedDoorOpen: number; expForLockedDoorBreach: number; triggerMult: number; @@ -1117,26 +1116,12 @@ export interface IBTRSettings export interface IBtrMapConfig { - BtrSkin: string; - CheckSurfaceForWheelsTimer: number; - DiameterWheel: number; - HeightWheel: number; - HeightWheelMaxPosLimit: number; - HeightWheelMinPosLimit: number; - HeightWheelOffset: number; - SnapToSurfaceWheelsSpeed: number; - SuspensionDamperStiffness: number; - SuspensionRestLength: number; - SuspensionSpringStiffness: number; - SuspensionTravel: number; - SuspensionWheelRadius: number; mapID: string; - pathsConfigurations: IPathConfig[]; + pathsConfigurations: IBtrMapConfig[]; } -export interface IPathConfig +export interface IBtrMapConfig { - active: boolean; id: string; enterPoint: string; exitPoint: string; @@ -1156,7 +1141,6 @@ export interface ISquadSettings export interface IInsurance { MaxStorageTimeInHour: number; - CoefOfHavingMarkOfUnknown: number; } export interface ISkillsSettings @@ -1644,7 +1628,6 @@ export interface IFenceSettings export interface IFenceLevel { - ReachOnMarkOnUnknowns: boolean; SavageCooldownModifier: number; ScavCaseTimeModifier: number; PaidExitCostModifier: number; diff --git a/project/src/models/eft/weather/IWeatherData.ts b/project/src/models/eft/weather/IWeatherData.ts index ea2d3c1f..1ea071af 100644 --- a/project/src/models/eft/weather/IWeatherData.ts +++ b/project/src/models/eft/weather/IWeatherData.ts @@ -1,4 +1,3 @@ -import { Season } from "@spt-aki/models/enums/Season"; import { WindDirection } from "@spt-aki/models/enums/WindDirection"; export interface IWeatherData @@ -6,8 +5,8 @@ export interface IWeatherData acceleration: number; time: string; date: string; - weather: IWeather; - season: Season; + weather?: IWeather; + winterEventEnabled: boolean; } export interface IWeather diff --git a/project/src/models/enums/Season.ts b/project/src/models/enums/Season.ts deleted file mode 100644 index 9bfbecfe..00000000 --- a/project/src/models/enums/Season.ts +++ /dev/null @@ -1,8 +0,0 @@ -export enum Season -{ - SUMMER = 0, - AUTUMN = 1, - WINTER = 2, - SPRING = 3, - STORM = 4, -} diff --git a/project/src/models/enums/WildSpawnTypeNumber.ts b/project/src/models/enums/WildSpawnTypeNumber.ts index 5cb6c9fb..e8b1e3fa 100644 --- a/project/src/models/enums/WildSpawnTypeNumber.ts +++ b/project/src/models/enums/WildSpawnTypeNumber.ts @@ -46,8 +46,6 @@ export enum WildSpawnTypeNumber FOLLOWERKOLONTAYASSAULT = 44, FOLLOWERKOLONTAYSECURITY = 45, SHOOTERBTR = 46, - SPIRITWINTER = 47, - SPIRITSPRING = 48, - SPTUSEC = 49, - SPTBEAR = 50, + SPTUSEC = 47, + SPTBEAR = 48, } diff --git a/project/src/models/spt/config/IWeatherConfig.ts b/project/src/models/spt/config/IWeatherConfig.ts index a818fbb8..0a19d6eb 100644 --- a/project/src/models/spt/config/IWeatherConfig.ts +++ b/project/src/models/spt/config/IWeatherConfig.ts @@ -1,5 +1,4 @@ import { MinMax } from "@spt-aki/models/common/MinMax"; -import { Season } from "@spt-aki/models/enums/Season"; import { WindDirection } from "@spt-aki/models/enums/WindDirection"; import { IBaseConfig } from "@spt-aki/models/spt/config/IBaseConfig"; @@ -8,18 +7,7 @@ export interface IWeatherConfig extends IBaseConfig kind: "aki-weather"; acceleration: number; weather: Weather; - seasonDates: ISeasonDateTimes[]; - overrideSeason?: Season; -} - -export interface ISeasonDateTimes -{ - seasonType: Season; - name: string; - startDay: number; - startMonth: number; - endDay: number; - endMonth: number; + forceWinterEvent: boolean; } export interface Weather diff --git a/project/src/models/spt/server/ISettingsBase.ts b/project/src/models/spt/server/ISettingsBase.ts index 746f1eb7..0fd27a0d 100644 --- a/project/src/models/spt/server/ISettingsBase.ts +++ b/project/src/models/spt/server/ISettingsBase.ts @@ -31,7 +31,6 @@ export interface Config WeaponOverlapDistanceCulling: number; WebDiagnosticsEnabled: boolean; NetworkStateView: INetworkStateView; - WsReconnectionDelays: number[]; } export interface FramerateLimit diff --git a/project/src/services/SeasonalEventService.ts b/project/src/services/SeasonalEventService.ts index 8d73cda4..02a874ef 100644 --- a/project/src/services/SeasonalEventService.ts +++ b/project/src/services/SeasonalEventService.ts @@ -7,7 +7,6 @@ import { ILocation } from "@spt-aki/models/eft/common/ILocation"; import { BossLocationSpawn } from "@spt-aki/models/eft/common/ILocationBase"; import { Inventory } from "@spt-aki/models/eft/common/tables/IBotType"; import { ConfigTypes } from "@spt-aki/models/enums/ConfigTypes"; -import { Season } from "@spt-aki/models/enums/Season"; import { SeasonalEventType } from "@spt-aki/models/enums/SeasonalEventType"; import { IHttpConfig } from "@spt-aki/models/spt/config/IHttpConfig"; import { IQuestConfig } from "@spt-aki/models/spt/config/IQuestConfig"; @@ -259,31 +258,6 @@ export class SeasonalEventService } } - public getActiveWeatherSeason(): Season - { - const currentDate = new Date(); - for (const seasonRange of this.weatherConfig.seasonDates) - { - // Figure out start and end dates to get range of season - const eventStartDate = new Date( - currentDate.getFullYear(), - seasonRange.startMonth - 1, // Month value starts at 0 - seasonRange.startDay, - ); - const eventEndDate = new Date(currentDate.getFullYear(), seasonRange.endMonth - 1, seasonRange.endDay); - - // Does todays date fit inside the above range - if (currentDate >= eventStartDate && currentDate <= eventEndDate) - { - return seasonRange.seasonType; - } - } - - this.logger.warning("Unable to find a season using current date, defaulting to Summer"); - - return Season.SUMMER; - } - /** * Iterate through bots inventory and loot to find and remove christmas items (as defined in SeasonalEventService) * @param botInventory Bots inventory to iterate over @@ -623,6 +597,6 @@ export class SeasonalEventService public enableSnow(): void { - this.weatherConfig.overrideSeason = Season.WINTER; + this.weatherConfig.forceWinterEvent = true; } } From 9c81df91d1a0fea578c7111317b946a577f20c66 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 15 Apr 2024 09:06:11 +0100 Subject: [PATCH 073/104] Fixed `itemDelivery()` failing when trader lacks a `dialogue` object (incorrectly configured custom traders) --- project/src/controllers/InraidController.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/project/src/controllers/InraidController.ts b/project/src/controllers/InraidController.ts index 6f9be86f..71225ed6 100644 --- a/project/src/controllers/InraidController.ts +++ b/project/src/controllers/InraidController.ts @@ -661,6 +661,12 @@ export class InraidController const pmcData = serverProfile.characters.pmc; const dialogueTemplates = this.databaseServer.getTables().traders[traderId].dialogue; + if (!dialogueTemplates) + { + this.logger.error(`Unable to deliver items as trader ${traderId} has no "dialogue" data`); + + return; + } const messageId = this.randomUtil.getArrayValue(dialogueTemplates.itemsDelivered); const messageStoreTime = this.timeUtil.getHoursAsSeconds(this.traderConfig.fence.btrDeliveryExpireHours); From 29ef7769eefb92268c8e433f4a02eb4fc644edf3 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 15 Apr 2024 09:07:44 +0100 Subject: [PATCH 074/104] Update `akiVersion` property inside `core.json` --- project/assets/configs/core.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/assets/configs/core.json b/project/assets/configs/core.json index 8b0291ae..776c0474 100644 --- a/project/assets/configs/core.json +++ b/project/assets/configs/core.json @@ -1,5 +1,5 @@ { - "akiVersion": "3.8.0", + "akiVersion": "3.8.1", "projectName": "SPT-AKI", "compatibleTarkovVersion": "0.14.1.29197", "serverName": "SPT Server", From 37ec7bc9d1a9f7cdff3083875fad9ae1e879d94e Mon Sep 17 00:00:00 2001 From: Cj Date: Mon, 15 Apr 2024 12:47:44 +0000 Subject: [PATCH 075/104] Type fixes (!290) Adds missing weapon and ammo types to enums for generated types. Co-authored-by: Cj <161484149+CJ-SPT@users.noreply.github.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/290 Co-authored-by: Cj Co-committed-by: Cj --- project/src/models/enums/AmmoTypes.ts | 6 ++++++ project/src/models/enums/WeaponTypes.ts | 18 ++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/project/src/models/enums/AmmoTypes.ts b/project/src/models/enums/AmmoTypes.ts index 8d24798c..3de62124 100644 --- a/project/src/models/enums/AmmoTypes.ts +++ b/project/src/models/enums/AmmoTypes.ts @@ -265,3 +265,9 @@ export enum Ammo26x75 WHITE_FLARE = "62389bc9423ed1685422dc57", YELLOW_FLARE = "62389be94d5d474bf712e709", } + +export enum Ammo68x51 +{ + SIG_FMJ = "6529302b8c26af6326029fb7", + SIG_HYBRID = "6529243824cbe3c74a05e5c1", +} diff --git a/project/src/models/enums/WeaponTypes.ts b/project/src/models/enums/WeaponTypes.ts index 873c26e9..8efe76fd 100644 --- a/project/src/models/enums/WeaponTypes.ts +++ b/project/src/models/enums/WeaponTypes.ts @@ -13,6 +13,8 @@ export enum Weapons9x39 { AS_VAL = "57c44b372459772d2b39b8ce", VSS_VINTOREZ = "57838ad32459774a17445cd2", + KBP_9A_91 = "644674a13d52156624001fbc", + VSK_94 = "645e0c6b3b381ede770e1cc9", } export enum Weapons762x54R @@ -22,6 +24,10 @@ export enum Weapons762x54R MOSIN_INFANTRY = "5bfd297f0db834001a669119", MOSIN_SNIPER = "5ae08f0a5acfc408fb1398a1", SV_98 = "55801eed4bdc2d89578b4588", + AVT_40 = "6410733d5dd49d77bd07847e", + SVT_40 = "643ea5b23db6f9f57107d9fd", + PKM = "64637076203536ad5600c990", + PKP = "64ca3d3954fc657e230529cc", } export enum Weapons762x51 @@ -60,6 +66,8 @@ export enum Weapons762x39 MK47_MUTANT = "606587252535c57a13424cfd", RD_704 = "628a60ae6b1d481ff772e9c8", VPO_136 = "59e6152586f77473dc057aa1", + RPD = "6513ef33e06849f06c0957ca", + RPDN = "65268d8ecb944ff1e90ea385", } export enum Weapons762x35 @@ -79,6 +87,8 @@ export enum Weapons556x45 SCARL_BLACK = "6184055050224f204c1da540", SCARL_FDE = "618428466ef05c2ce828f218", TX15_DML = "5d43021ca4b9362eab4b5e25", + AUG_A1 = "62e7c4fba689e8c9c50dfc38", + AUG_A3 = "63171672192e68c5460cebc5", } export enum Weapons545x39 @@ -95,6 +105,7 @@ export enum Weapons545x39 SAG_AK = "628b5638ad252a16da6dd245", SAG_AK_SHORT = "628b9c37a733087d0d7fe84b", RPK_16 = "5beed0f50db834001c062b12", + AK_12 = "6499849fc93611967b034949", } export enum Weapons57x28FN @@ -127,6 +138,7 @@ export enum Weapons9x33R export enum Weapons9x21 { SR_1MP = "59f98b4986f7746f546d2cef", + SR_2M = "62e14904c2699c0ec93adc47", } export enum Weapons9x19 @@ -147,6 +159,7 @@ export enum Weapons9x19 SAIGA_9 = "59f9cabd86f7743a10721f46", STM_9 = "60339954d62c9b14ed777c06", VECTOR_9MM = "5fc3f2d5900b1d5091531e57", + GLOCK_19X = "63088377b5cd696784087147", } export enum Weapons9x18 @@ -190,3 +203,8 @@ export enum Weapons23x75 { KS_23M = "5e848cc2988a8701445df1e8", } + +export enum Weapons68x51 +{ + MCX_SPEAR = "65290f395ae2ae97b80fdf2d", +} From ffbeefba6ffc684f28064e5c601352efc5698be6 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 15 Apr 2024 14:12:16 +0100 Subject: [PATCH 076/104] Allow 3.8.0 mods to load into 3.8.1 with warning --- project/src/loaders/PreAkiModLoader.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project/src/loaders/PreAkiModLoader.ts b/project/src/loaders/PreAkiModLoader.ts index a47a6eab..f566a235 100644 --- a/project/src/loaders/PreAkiModLoader.ts +++ b/project/src/loaders/PreAkiModLoader.ts @@ -348,12 +348,12 @@ export class PreAkiModLoader implements IModLoader return false; } - // Error and prevent loading if semver is not satisfied + // Warning and allow loading if semver is not satisfied if (!semver.satisfies(akiVersion, mod.akiVersion)) { - this.logger.error(this.localisationService.getText("modloader-outdated_akiversion_field", modName)); + this.logger.warning(this.localisationService.getText("modloader-outdated_akiversion_field", modName)); - return false; + return true; } return true; From 5026dc13ab385b27eb3806c65f0e200fc5b5a679 Mon Sep 17 00:00:00 2001 From: Brent Date: Tue, 16 Apr 2024 00:47:42 -0400 Subject: [PATCH 077/104] Fix issue 627, limit Reshala and Sanitar keys --- project/assets/configs/bot.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/project/assets/configs/bot.json b/project/assets/configs/bot.json index b7e78f0c..957c0328 100644 --- a/project/assets/configs/bot.json +++ b/project/assets/configs/bot.json @@ -317,7 +317,9 @@ "exusec": { "60098ad7c2240c0fe85c570a": 2 }, - "bossbully": {}, + "bossbully": { + "5448ba0b4bdc2d02308b456c": 1 + }, "bossgluhar": {}, "bosskilla": {}, "bosskojaniy": { @@ -325,7 +327,8 @@ "5c94bbff86f7747ee735c08f": 1 }, "bosssanitar": { - "5efde6b4f5448336730dbd61": 1 + "5efde6b4f5448336730dbd61": 1, + "5eff09cd30a7dc22fd1ddfed": 1 }, "bosstagilla": {}, "bossknight": {}, From 521cf51f0e3c32e0f7939e7335d0fa7129e9e841 Mon Sep 17 00:00:00 2001 From: DrakiaXYZ Date: Tue, 16 Apr 2024 07:15:49 +0000 Subject: [PATCH 078/104] Fix multiple server instances overwriting profiles with old data (!291) Co-authored-by: DrakiaXYZ <565558+TheDgtl@users.noreply.github.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/291 Co-authored-by: DrakiaXYZ Co-committed-by: DrakiaXYZ --- project/src/servers/HttpServer.ts | 9 +++++++++ project/src/utils/App.ts | 8 ++++++++ 2 files changed, 17 insertions(+) diff --git a/project/src/servers/HttpServer.ts b/project/src/servers/HttpServer.ts index 952ed451..b1c6928d 100644 --- a/project/src/servers/HttpServer.ts +++ b/project/src/servers/HttpServer.ts @@ -17,6 +17,7 @@ import { LocalisationService } from "@spt-aki/services/LocalisationService"; export class HttpServer { protected httpConfig: IHttpConfig; + protected started: boolean; constructor( @inject("WinstonLogger") protected logger: ILogger, @@ -37,6 +38,8 @@ export class HttpServer */ public load(): void { + this.started = false; + /* create server */ const httpServer: Server = http.createServer(); @@ -48,6 +51,7 @@ export class HttpServer /* Config server to listen on a port */ httpServer.listen(this.httpConfig.port, this.httpConfig.ip, () => { + this.started = true; this.logger.success( this.localisationService.getText("started_webserver_success", this.httpServerHelper.getBackendUrl()), ); @@ -123,4 +127,9 @@ export class HttpServer return found; } + + public isStarted(): boolean + { + return this.started; + } } diff --git a/project/src/utils/App.ts b/project/src/utils/App.ts index 9b51b1aa..235926b4 100644 --- a/project/src/utils/App.ts +++ b/project/src/utils/App.ts @@ -7,6 +7,7 @@ import { ConfigTypes } from "@spt-aki/models/enums/ConfigTypes"; import { ICoreConfig } from "@spt-aki/models/spt/config/ICoreConfig"; import { ILogger } from "@spt-aki/models/spt/utils/ILogger"; import { ConfigServer } from "@spt-aki/servers/ConfigServer"; +import { HttpServer } from "@spt-aki/servers/HttpServer"; import { LocalisationService } from "@spt-aki/services/LocalisationService"; import { EncodingUtil } from "@spt-aki/utils/EncodingUtil"; import { TimeUtil } from "@spt-aki/utils/TimeUtil"; @@ -23,6 +24,7 @@ export class App @inject("LocalisationService") protected localisationService: LocalisationService, @inject("ConfigServer") protected configServer: ConfigServer, @inject("EncodingUtil") protected encodingUtil: EncodingUtil, + @inject("HttpServer") protected httpServer: HttpServer, @injectAll("OnLoad") protected onLoadComponents: OnLoad[], @injectAll("OnUpdate") protected onUpdateComponents: OnUpdate[], ) @@ -64,6 +66,12 @@ export class App protected async update(onUpdateComponents: OnUpdate[]): Promise { + // If the server has failed to start, skip any update calls + if (!this.httpServer.isStarted()) + { + return; + } + for (const updateable of onUpdateComponents) { let success = false; From c2b376e697d4d465d571c5d69d15a5802bc38f4b Mon Sep 17 00:00:00 2001 From: Brent Date: Tue, 16 Apr 2024 07:34:08 +0000 Subject: [PATCH 079/104] Add missing weapons to WeaponType enum, fix assort comments (!292) Added RSh-12 and 40mm GLs to WeaponTypes.ts Fixed incorrect comments on assort functions Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/292 Co-authored-by: Brent Co-committed-by: Brent --- project/src/helpers/AssortHelper.ts | 4 ++-- project/src/models/enums/WeaponTypes.ts | 7 +++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/project/src/helpers/AssortHelper.ts b/project/src/helpers/AssortHelper.ts index 10c2ec65..88ae86e3 100644 --- a/project/src/helpers/AssortHelper.ts +++ b/project/src/helpers/AssortHelper.ts @@ -45,7 +45,7 @@ export class AssortHelper return traderAssorts; } - // Iterate over all assorts, removing items that don't fulfil the requirements + // Iterate over all assorts, removing items that haven't yet been unlocked by quests (ASSORTMENT_UNLOCK) for (const assortId in traderAssorts.loyal_level_items) { // Get quest id that unlocks assort + statuses quest can be in to show assort @@ -116,7 +116,7 @@ export class AssortHelper return assort; } - // Remove items not unlocked from quest status change (ASSORTMENT_UNLOCK) + // Remove items restricted by loyalty levels above those reached by the player for (const itemId in assort.loyal_level_items) { if (assort.loyal_level_items[itemId] > pmcProfile.TradersInfo[traderId].loyaltyLevel) diff --git a/project/src/models/enums/WeaponTypes.ts b/project/src/models/enums/WeaponTypes.ts index 8efe76fd..c3f377dd 100644 --- a/project/src/models/enums/WeaponTypes.ts +++ b/project/src/models/enums/WeaponTypes.ts @@ -1,6 +1,7 @@ export enum Weapons127x55 { ASH_12 = "5cadfbf7ae92152ac412eeef", + RSH_12 = "633ec7c2a6918cb895019c6c", } export enum Weapons86x70 @@ -208,3 +209,9 @@ export enum Weapons68x51 { MCX_SPEAR = "65290f395ae2ae97b80fdf2d", } + +export enum Weapons40x46 +{ + M32A1 = "6275303a9f372d6ea97f9ec7", + FN40GL = "5e81ebcd8e146c7080625e15", +} From 82d568a428096480a2d00fb268461c0b619b5c39 Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 16 Apr 2024 09:57:19 +0100 Subject: [PATCH 080/104] Cleaned up `findAndAddRandomPresetToLoot()` Added nullcheck for an empty presetPool parameter Cleaned up comments where possible Cleaned up variable names where possible --- project/src/generators/LootGenerator.ts | 86 +++++++++++++++---------- 1 file changed, 51 insertions(+), 35 deletions(-) diff --git a/project/src/generators/LootGenerator.ts b/project/src/generators/LootGenerator.ts index 5d5df833..4b63f810 100644 --- a/project/src/generators/LootGenerator.ts +++ b/project/src/generators/LootGenerator.ts @@ -106,6 +106,7 @@ export class LootGenerator { if (!this.findAndAddRandomItemToLoot(items, itemTypeCounts, options, result)) { + // Failed to add, reduce index so we get another attempt index--; } } @@ -138,6 +139,7 @@ export class LootGenerator ) ) { + // Failed to add, reduce index so we get another attempt index--; } } @@ -158,6 +160,7 @@ export class LootGenerator this.armorIsDesiredProtectionLevel(armor, options) ); + // Add some armors to rewards if (levelFilteredArmorPresets.length > 0) { for (let index = 0; index < randomisedArmorPresetCount; index++) @@ -171,6 +174,7 @@ export class LootGenerator ) ) { + // Failed to add, reduce index so we get another attempt index--; } } @@ -181,10 +185,10 @@ export class LootGenerator } /** - * Filter armor items by their main plates protection level - * @param armor Armor preset - * @param options Loot request options - * @returns True item passes checks + * Filter armor items by their front plates protection level - top if its a helmet + * @param armor Armor preset to check + * @param options Loot request options - armor level etc + * @returns True if item has desired armor level */ protected armorIsDesiredProtectionLevel(armor: IPreset, options: LootRequest): boolean { @@ -305,68 +309,76 @@ export class LootGenerator /** * Find a random item in items.json and add to result array - * @param globalDefaultPresets presets to choose from - * @param itemTypeCounts item limit counts - * @param itemBlacklist items to skip - * @param result array to add found preset to + * @param presetPool Presets to choose from + * @param itemTypeCounts Item limit counts + * @param itemBlacklist Items to skip + * @param result Array to add chosen preset to * @returns true if preset was valid and added to pool */ protected findAndAddRandomPresetToLoot( - globalDefaultPresets: IPreset[], + presetPool: IPreset[], itemTypeCounts: Record, itemBlacklist: string[], result: LootItem[], ): boolean { - // Choose random preset and get details from item.json using encyclopedia value (encyclopedia === tplId) - const randomPreset = this.randomUtil.getArrayValue(globalDefaultPresets); - if (!randomPreset?._encyclopedia) + // Choose random preset and get details from item db using encyclopedia value (encyclopedia === tplId) + const chosenPreset = this.randomUtil.getArrayValue(presetPool); + if (!chosenPreset) { - this.logger.debug(`Airdrop - preset with id: ${randomPreset?._id} lacks encyclopedia property, skipping`); + this.logger.warning("Unable to find random preset in given presets, skipping"); return false; } - const itemDetails = this.itemHelper.getItem(randomPreset._encyclopedia); - if (!itemDetails[0]) + // No `_encyclopedia` property, not possible to reliably get root item tpl + if (!chosenPreset?._encyclopedia) { - this.logger.debug(`Airdrop - Unable to find preset with tpl: ${randomPreset._encyclopedia}, skipping`); + this.logger.debug(`Preset with id: ${chosenPreset?._id} lacks encyclopedia property, skipping`); return false; } - // Skip blacklisted items - if (itemBlacklist.includes(randomPreset._items[0]._tpl)) + // Get preset root item db details via its `_encyclopedia` property + const itemDbDetails = this.itemHelper.getItem(chosenPreset._encyclopedia); + if (!itemDbDetails[0]) { - return false; - } - - // Some custom mod items are lacking a parent property - if (!itemDetails[1]._parent) - { - this.logger.error(this.localisationService.getText("loot-item_missing_parentid", itemDetails[1]?._name)); + this.logger.debug(`Unable to find preset with tpl: ${chosenPreset._encyclopedia}, skipping`); return false; } - // Check picked preset hasn't exceeded spawn limit - const itemLimitCount = itemTypeCounts[itemDetails[1]._parent]; + // Skip preset if root item is blacklisted + if (itemBlacklist.includes(chosenPreset._items[0]._tpl)) + { + return false; + } + + // Some custom mod items lack a parent property + if (!itemDbDetails[1]._parent) + { + this.logger.error(this.localisationService.getText("loot-item_missing_parentid", itemDbDetails[1]?._name)); + + return false; + } + + // Check chosen preset hasn't exceeded spawn limit + const itemLimitCount = itemTypeCounts[itemDbDetails[1]._parent]; if (itemLimitCount && itemLimitCount.current > itemLimitCount.max) { return false; } - const newLootItem: LootItem = { tpl: randomPreset._items[0]._tpl, isPreset: true, stackCount: 1 }; - - result.push(newLootItem); + // Add chosen preset tpl to result array + result.push({ tpl: chosenPreset._items[0]._tpl, isPreset: true, stackCount: 1 }); if (itemLimitCount) { - // increment item count as its in limit array + // Increment item count as item has been chosen and its inside itemLimitCount dictionary itemLimitCount.current++; } - // item added okay + // Item added okay return true; } @@ -379,10 +391,12 @@ export class LootGenerator { const itemsToReturn: Item[][] = []; - // choose a weapon to give to the player (weighted) + // Choose a weapon to give to the player (weighted) const chosenWeaponTpl = this.weightedRandomHelper.getWeightedValue( containerSettings.weaponRewardWeight, ); + + // Get itemDb details of weapon const weaponDetailsDb = this.itemHelper.getItem(chosenWeaponTpl); if (!weaponDetailsDb[0]) { @@ -393,24 +407,26 @@ export class LootGenerator return itemsToReturn; } - // Get weapon preset - default or choose a random one from all possible + // Get weapon preset - default or choose a random one from globals.json preset pool let chosenWeaponPreset = (containerSettings.defaultPresetsOnly) ? this.presetHelper.getDefaultPreset(chosenWeaponTpl) : this.randomUtil.getArrayValue(this.presetHelper.getPresets(chosenWeaponTpl)); + // No default preset found for weapon, choose a random one if (!chosenWeaponPreset) { this.logger.warning(`Default preset for weapon ${chosenWeaponTpl} not found, choosing random instead`); chosenWeaponPreset = this.randomUtil.getArrayValue(this.presetHelper.getPresets(chosenWeaponTpl)); } + // Clean up Ids to ensure they're all unique and prevent collisions const presetAndMods: Item[] = this.itemHelper.replaceIDs(chosenWeaponPreset._items); this.itemHelper.remapRootItemId(presetAndMods); // Add preset to return object itemsToReturn.push(presetAndMods); - // Get items related to chosen weapon + // Get a random collection of weapon mods related to chosen weawpon and add them to result array const linkedItemsToWeapon = this.ragfairLinkedItemService.getLinkedDbItems(chosenWeaponTpl); itemsToReturn.push( ...this.getSealedContainerWeaponModRewards(containerSettings, linkedItemsToWeapon, chosenWeaponPreset), From 4e936572e5cd9af32bc7d788c4d8f221adfa540e Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 16 Apr 2024 10:57:27 +0100 Subject: [PATCH 081/104] Update `filterInsuredItems()` to log when insurance items are found --- project/src/controllers/InsuranceController.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/project/src/controllers/InsuranceController.ts b/project/src/controllers/InsuranceController.ts index b07b7292..4024cb13 100644 --- a/project/src/controllers/InsuranceController.ts +++ b/project/src/controllers/InsuranceController.ts @@ -102,7 +102,13 @@ export class InsuranceController const insuranceTime = time || this.timeUtil.getTimestamp(); const profileInsuranceDetails = this.saveServer.getProfile(sessionID).insurance; - this.logger.debug(`Found ${profileInsuranceDetails.length} insurance packages in profile ${sessionID}`, true); + if (profileInsuranceDetails.length > 0) + { + this.logger.debug( + `Found ${profileInsuranceDetails.length} insurance packages in profile ${sessionID}`, + true, + ); + } return profileInsuranceDetails.filter((insured) => insuranceTime >= insured.scheduledTime); } From d609d4b41a12b0ce4df56c75ba5092bf9ed5393b Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 16 Apr 2024 15:53:54 +0100 Subject: [PATCH 082/104] Improved local request log handling --- project/src/servers/HttpServer.ts | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/project/src/servers/HttpServer.ts b/project/src/servers/HttpServer.ts index b1c6928d..ac371cd5 100644 --- a/project/src/servers/HttpServer.ts +++ b/project/src/servers/HttpServer.ts @@ -82,8 +82,7 @@ export class HttpServer if (this.httpConfig.logRequests) { - // TODO: Extend to include 192.168 / 10.10 ranges or check subnet - const isLocalRequest = req.socket.remoteAddress?.startsWith("127.0.0"); + const isLocalRequest = this.isLocalRequest(req.socket.remoteAddress); if (typeof isLocalRequest !== "undefined") { if (isLocalRequest) @@ -110,6 +109,23 @@ export class HttpServer } } + /** + * Check against hardcoded values that determine its from a local address + * @param remoteAddress Address to check + * @returns True if its local + */ + protected isLocalRequest(remoteAddress: string): boolean + { + if (!remoteAddress) + { + return undefined; + } + + return remoteAddress.startsWith("127.0.0") + || remoteAddress.startsWith("192.168.") + || remoteAddress.startsWith("localhost"); + } + protected getCookies(req: IncomingMessage): Record { const found: Record = {}; From f50a400cdea70e301a66513791dd67c83db5fe89 Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 16 Apr 2024 16:05:33 +0100 Subject: [PATCH 083/104] Add missing validation checks to ammo cache generation for scav case --- .../src/generators/ScavCaseRewardGenerator.ts | 37 ++++++++++++++++--- 1 file changed, 32 insertions(+), 5 deletions(-) diff --git a/project/src/generators/ScavCaseRewardGenerator.ts b/project/src/generators/ScavCaseRewardGenerator.ts index 8328edd5..6442f20d 100644 --- a/project/src/generators/ScavCaseRewardGenerator.ts +++ b/project/src/generators/ScavCaseRewardGenerator.ts @@ -96,11 +96,12 @@ export class ScavCaseRewardGenerator */ protected cacheDbItems(): void { + // TODO: pre-loop and get array of valid items, e.g. non-node/non-blacklisted, then loop over those results for below code + + // Get an array of seasonal items that should not be shown right now as seasonal event is not active + const inactiveSeasonalItems = this.seasonalEventService.getInactiveSeasonalEventItems(); if (!this.dbItemsCache) { - // Get an array of seasonal items that should not be shown right now as seasonal event is not active - const seasonalItems = this.seasonalEventService.getInactiveSeasonalEventItems(); - this.dbItemsCache = Object.values(this.databaseServer.getTables().templates.items).filter((item) => { // Base "Item" item has no parent, ignore it @@ -129,7 +130,7 @@ export class ScavCaseRewardGenerator return false; } - // Globally blacklisted + // Globally reward-blacklisted if (this.itemFilterService.isItemRewardBlacklisted(item._id)) { return false; @@ -146,7 +147,7 @@ export class ScavCaseRewardGenerator return false; } - if (seasonalItems.includes(item._id)) + if (inactiveSeasonalItems.includes(item._id)) { return false; } @@ -176,6 +177,32 @@ export class ScavCaseRewardGenerator return false; } + // Skip item if item id is on blacklist + if ( + this.scavCaseConfig.rewardItemBlacklist.includes(item._id) + || this.itemFilterService.isItemBlacklisted(item._id) + ) + { + return false; + } + + // Globally reward-blacklisted + if (this.itemFilterService.isItemRewardBlacklisted(item._id)) + { + return false; + } + + if (!this.scavCaseConfig.allowBossItemsAsRewards && this.itemFilterService.isBossItem(item._id)) + { + return false; + } + + // Skip seasonal items + if (inactiveSeasonalItems.includes(item._id)) + { + return false; + } + // Skip ammo that doesn't stack as high as value in config if (item._props.StackMaxSize < this.scavCaseConfig.ammoRewards.minStackSize) { From 0bc807a6b8753d55237e71c6940f2177b7356a09 Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 16 Apr 2024 17:28:00 +0100 Subject: [PATCH 084/104] Added ability to send insurance mail after Labs raid via editing of labs `base.json/insurance property --- project/src/controllers/InsuranceController.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/project/src/controllers/InsuranceController.ts b/project/src/controllers/InsuranceController.ts index 4024cb13..7b282de8 100644 --- a/project/src/controllers/InsuranceController.ts +++ b/project/src/controllers/InsuranceController.ts @@ -549,10 +549,16 @@ export class InsuranceController */ protected sendMail(sessionID: string, insurance: Insurance): void { + const labsId = "laboratory"; // After all of the item filtering that we've done, if there are no items remaining, the insurance has // successfully "failed" to return anything and an appropriate message should be sent to the player. const traderDialogMessages = this.databaseServer.getTables().traders[insurance.traderId].dialogue; - if (insurance.systemData?.location.toLowerCase() === "laboratory") + + // Map is labs + insurance is disabled in base.json + if ( + insurance.systemData?.location.toLowerCase() === labsId + && !this.databaseServer.getTables().locations[labsId].base.Insurance + ) { // Trader has labs-specific messages // Wipe out returnable items From acb02ed53d5bb0f06ad50aa14c8a38ea5b5b0ba5 Mon Sep 17 00:00:00 2001 From: DrakiaXYZ Date: Wed, 17 Apr 2024 07:39:11 +0000 Subject: [PATCH 085/104] Update client/server/list to use the right backend ip (!295) Update missed property to use new IP config value Co-authored-by: DrakiaXYZ <565558+TheDgtl@users.noreply.github.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/295 Co-authored-by: DrakiaXYZ Co-committed-by: DrakiaXYZ --- project/src/controllers/GameController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/controllers/GameController.ts b/project/src/controllers/GameController.ts index f8be4796..ac7e9dbe 100644 --- a/project/src/controllers/GameController.ts +++ b/project/src/controllers/GameController.ts @@ -484,7 +484,7 @@ export class GameController */ public getServer(sessionId: string): IServerDetails[] { - return [{ ip: this.httpConfig.ip, port: this.httpConfig.port }]; + return [{ ip: this.httpConfig.backendIp, port: Number.parseInt(this.httpConfig.backendPort) }]; } /** From d039d75b1d3db01409b94651d6a8f0230b4031da Mon Sep 17 00:00:00 2001 From: Dev Date: Wed, 17 Apr 2024 10:07:46 +0100 Subject: [PATCH 086/104] Increased chance basic ammo stack size will be found on assault scavs --- project/assets/configs/bot.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project/assets/configs/bot.json b/project/assets/configs/bot.json index 957c0328..b00b0146 100644 --- a/project/assets/configs/bot.json +++ b/project/assets/configs/bot.json @@ -2629,15 +2629,15 @@ "20000": 13, "15000": 28, "10000": 51, - "5000": 100 + "5000": 200 }, "5696686a4bdc2da3298b456a": { - "50": 10, + "50": 20, "100": 5, "250": 1 }, "569668774bdc2da2298b4568": { - "50": 10, + "50": 20, "100": 5, "250": 1 } From cd911bdd0d53515a715713e2c9be501fa35333c2 Mon Sep 17 00:00:00 2001 From: Dev Date: Wed, 17 Apr 2024 11:24:19 +0100 Subject: [PATCH 087/104] Enable `forceStock` for bloodhounds --- project/assets/configs/bot.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/project/assets/configs/bot.json b/project/assets/configs/bot.json index b00b0146..706a822f 100644 --- a/project/assets/configs/bot.json +++ b/project/assets/configs/bot.json @@ -784,6 +784,7 @@ "lightIsActiveDayChancePercent": 35, "lightIsActiveNightChancePercent": 95, "laserIsActiveChancePercent": 95, + "forceStock": true, "weaponModLimits": { "scopeLimit": 1, "lightLaserLimit": 1 @@ -796,6 +797,7 @@ "lightIsActiveDayChancePercent": 35, "lightIsActiveNightChancePercent": 95, "laserIsActiveChancePercent": 95, + "forceStock": true, "weaponModLimits": { "scopeLimit": 1, "lightLaserLimit": 1 From c71aaa7fb31cfed60413230881187dc5d60a2823 Mon Sep 17 00:00:00 2001 From: Brent Date: Wed, 17 Apr 2024 13:10:43 +0000 Subject: [PATCH 088/104] Use dynamic ragfair pricing for insurance deletion sorting (!294) Change sort value for insured attachments to use dynamic ragfair prices. Small change to method to return directly instead of setting passed-by-value parameter. https://dev.sp-tarkov.com/SPT-AKI/Issues/issues/618 Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/294 Co-authored-by: Brent Co-committed-by: Brent --- .../src/controllers/InsuranceController.ts | 18 +++++++------- project/src/services/RagfairPriceService.ts | 4 +--- .../controllers/InsuranceController.test.ts | 24 +++++++++---------- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/project/src/controllers/InsuranceController.ts b/project/src/controllers/InsuranceController.ts index 7b282de8..8ed14e89 100644 --- a/project/src/controllers/InsuranceController.ts +++ b/project/src/controllers/InsuranceController.ts @@ -23,6 +23,7 @@ import { SaveServer } from "@spt-aki/servers/SaveServer"; import { InsuranceService } from "@spt-aki/services/InsuranceService"; import { MailSendService } from "@spt-aki/services/MailSendService"; import { PaymentService } from "@spt-aki/services/PaymentService"; +import { RagfairPriceService } from "@spt-aki/services/RagfairPriceService"; import { HashUtil } from "@spt-aki/utils/HashUtil"; import { MathUtil } from "@spt-aki/utils/MathUtil"; import { RandomUtil } from "@spt-aki/utils/RandomUtil"; @@ -50,6 +51,7 @@ export class InsuranceController @inject("PaymentService") protected paymentService: PaymentService, @inject("InsuranceService") protected insuranceService: InsuranceService, @inject("MailSendService") protected mailSendService: MailSendService, + @inject("RagfairPriceService") protected ragfairPriceService: RagfairPriceService, @inject("ConfigServer") protected configServer: ConfigServer, ) { @@ -459,7 +461,7 @@ export class InsuranceController } /** - * Sorts the attachment items by their max price in descending order. + * Sorts the attachment items by their dynamic price in descending order. * * @param attachments The array of attachments items. * @returns An array of items enriched with their max price and common locale-name. @@ -469,8 +471,8 @@ export class InsuranceController return attachments.map((item) => ({ ...item, name: this.itemHelper.getItemName(item._tpl), - maxPrice: this.itemHelper.getItemMaxPrice(item._tpl), - })).sort((a, b) => b.maxPrice - a.maxPrice); + dynamicPrice: this.ragfairPriceService.getDynamicItemPrice(item._tpl, this.roubleTpl, item, null, false), + })).sort((a, b) => b.dynamicPrice - a.dynamicPrice); } /** @@ -483,7 +485,7 @@ export class InsuranceController let index = 1; for (const attachment of attachments) { - this.logger.debug(`Attachment ${index}: "${attachment.name}" - Price: ${attachment.maxPrice}`); + this.logger.debug(`Attachment ${index}: "${attachment.name}" - Price: ${attachment.dynamicPrice}`); index++; } } @@ -521,8 +523,8 @@ export class InsuranceController const valuableChild = attachments.find(({ _id }) => _id === attachmentsId); if (valuableChild) { - const { name, maxPrice } = valuableChild; - this.logger.debug(`Marked attachment "${name}" for removal - Max Price: ${maxPrice}`); + const { name, dynamicPrice } = valuableChild; + this.logger.debug(`Marked attachment "${name}" for removal - Dyanmic Price: ${dynamicPrice}`); toDelete.add(attachmentsId); } } @@ -723,9 +725,9 @@ export class InsuranceController } } -// Represents an insurance item that has had it's common locale-name and max price added to it. +// Represents an insurance item that has had it's common locale-name and value added to it. interface EnrichedItem extends Item { name: string; - maxPrice: number; + dynamicPrice: number; } diff --git a/project/src/services/RagfairPriceService.ts b/project/src/services/RagfairPriceService.ts index 2c7288ea..ad684c47 100644 --- a/project/src/services/RagfairPriceService.ts +++ b/project/src/services/RagfairPriceService.ts @@ -428,9 +428,7 @@ export class RagfairPriceService implements OnLoad { // const itemDetails = this.itemHelper.getItem(itemTpl); // this.logger.debug(`item below handbook price ${itemDetails[1]._name} handbook: ${itemHandbookPrice} flea: ${itemPrice} ${priceDifferencePercent}%`); - itemPrice = Math.round( - itemHandbookPrice * this.ragfairConfig.dynamic.offerAdjustment.handbookPriceMultipier, - ); + return Math.round(itemHandbookPrice * this.ragfairConfig.dynamic.offerAdjustment.handbookPriceMultipier); } return itemPrice; diff --git a/project/tests/controllers/InsuranceController.test.ts b/project/tests/controllers/InsuranceController.test.ts index 205d9160..dc278d74 100644 --- a/project/tests/controllers/InsuranceController.test.ts +++ b/project/tests/controllers/InsuranceController.test.ts @@ -983,7 +983,7 @@ describe("InsuranceController", () => describe("sortAttachmentsByPrice", () => { - it("should sort the attachments array by maxPrice in descending order", () => + it("should sort the attachments array by dynamicPrice in descending order", () => { const insured = insuranceFixture[0]; const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); @@ -1001,14 +1001,14 @@ describe("InsuranceController", () => // Verify the length of the sorted attachments array is unchanged expect(sortedAttachments.length).toBe(attachmentCount); - // Verify that the attachments are sorted by maxPrice in descending order + // Verify that the attachments are sorted by dynamicPrice in descending order for (let i = 1; i < sortedAttachments.length; i++) { - expect(sortedAttachments[i - 1].maxPrice).toBeGreaterThanOrEqual(sortedAttachments[i].maxPrice); + expect(sortedAttachments[i - 1].dynamicPrice).toBeGreaterThanOrEqual(sortedAttachments[i].dynamicPrice); } }); - it("should place attachments with null maxPrice at the bottom of the sorted list", () => + it("should place attachments with null dynamicPrice at the bottom of the sorted list", () => { const insured = insuranceFixture[0]; const itemsMap = insuranceController.itemHelper.generateItemsMap(insured.items); @@ -1019,23 +1019,23 @@ describe("InsuranceController", () => ); const attachments = parentAttachmentsMap.entries().next().value; - // Set the maxPrice of the first attachment to null. - vi.spyOn(insuranceController.itemHelper, "getItemMaxPrice").mockReturnValue(666).mockReturnValueOnce(null); + // Set the dynamicPrice of the first attachment to null. + vi.spyOn(insuranceController.ragfairPriceService, "getDynamicItemPrice").mockReturnValue(666).mockReturnValueOnce(null); // Execute the method. const sortedAttachments = insuranceController.sortAttachmentsByPrice(attachments); - // Verify that the attachments with null maxPrice are at the bottom of the list + // Verify that the attachments with null dynamicPrice are at the bottom of the list const nullPriceAttachments = sortedAttachments.slice(-1); for (const attachment of nullPriceAttachments) { - expect(attachment.maxPrice).toBeNull(); + expect(attachment.dynamicPrice).toBeNull(); } - // Verify that the rest of the attachments are sorted by maxPrice in descending order + // Verify that the rest of the attachments are sorted by dynamicPrice in descending order for (let i = 1; i < sortedAttachments.length - 2; i++) { - expect(sortedAttachments[i - 1].maxPrice).toBeGreaterThanOrEqual(sortedAttachments[i].maxPrice); + expect(sortedAttachments[i - 1].dynamicPrice).toBeGreaterThanOrEqual(sortedAttachments[i].dynamicPrice); } }); }); @@ -1044,10 +1044,10 @@ describe("InsuranceController", () => { it("should log details for each attachment", () => { - const attachments = [{ _id: "item1", name: "Item 1", maxPrice: 100 }, { + const attachments = [{ _id: "item1", name: "Item 1", dynamicPrice: 100 }, { _id: "item2", name: "Item 2", - maxPrice: 200, + dynamicPrice: 200, }]; // Mock the logger.debug function. From 688e2b77cd6f657843ccc8bbaef84fe4b2270884 Mon Sep 17 00:00:00 2001 From: haze Date: Thu, 18 Apr 2024 07:51:40 +0000 Subject: [PATCH 089/104] fix assort.json syntax inconsistencies (!296) Two lines changed - removed two sets of quotation marks for int-typed variables Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/296 Co-authored-by: haze Co-committed-by: haze --- .../database/traders/5a7c2eca46aef81a7ca2145d/assort.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/assets/database/traders/5a7c2eca46aef81a7ca2145d/assort.json b/project/assets/database/traders/5a7c2eca46aef81a7ca2145d/assort.json index bf6e7552..8dab2ce1 100644 --- a/project/assets/database/traders/5a7c2eca46aef81a7ca2145d/assort.json +++ b/project/assets/database/traders/5a7c2eca46aef81a7ca2145d/assort.json @@ -2630,7 +2630,7 @@ "slotId": "hideout", "upd": { "StackObjectsCount": 11956, - "BuyRestrictionMax": "8", + "BuyRestrictionMax": 8, "BuyRestrictionCurrent": 0 } }, @@ -4567,7 +4567,7 @@ "slotId": "hideout", "upd": { "StackObjectsCount": 5962, - "BuyRestrictionMax": "4", + "BuyRestrictionMax": 4, "BuyRestrictionCurrent": 0 } }, From 820a5caccb9be6f1277df76ff3f67937c127ec7b Mon Sep 17 00:00:00 2001 From: DrakiaXYZ Date: Thu, 18 Apr 2024 07:54:16 +0000 Subject: [PATCH 090/104] Bake build data directly into the executable (!297) This is primarily to stop confusion when a user overwrites their `aki_data` folder with an old version, the data shown in logs/server console is now based on compile time data instead of runtime data. - New build.json file added to the `obj/ide/` folder that gets populated with the build data on build - Moved asset copying prior to packaging, so that `obj/ide/build.json` is available at package time - Updated all references of core.commit, and core.buildTime to use globalThis - Updated all references of core.akiVersion to use globalThis with a fallback if not found (When running in VSCode for example) Co-authored-by: DrakiaXYZ <565558+TheDgtl@users.noreply.github.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/297 Co-authored-by: DrakiaXYZ Co-committed-by: DrakiaXYZ --- project/gulpfile.mjs | 33 +++++++++++++---------- project/src/controllers/GameController.ts | 4 ++- project/src/ide/BleedingEdgeEntry.ts | 5 ++++ project/src/ide/BleedingEdgeModsEntry.ts | 5 ++++ project/src/ide/DebugEntry.ts | 5 ++++ project/src/ide/ReleaseEntry.ts | 5 ++++ project/src/ide/TestEntry.ts | 7 ++++- project/src/ide/build.json | 5 ++++ project/src/loaders/PreAkiModLoader.ts | 2 +- project/src/servers/ConfigServer.ts | 4 +-- project/src/utils/App.ts | 10 +++---- project/src/utils/Watermark.ts | 10 ++++--- 12 files changed, 67 insertions(+), 28 deletions(-) create mode 100644 project/src/ide/build.json diff --git a/project/gulpfile.mjs b/project/gulpfile.mjs index 0b09ed47..32a27680 100644 --- a/project/gulpfile.mjs +++ b/project/gulpfile.mjs @@ -155,27 +155,32 @@ const downloadPnpm = async () => const copyLicense = () => gulp.src([licenseFile]).pipe(rename("LICENSE-Server.txt")).pipe(gulp.dest(buildDir)); /** - * Writes the latest Git commit hash to the core.json configuration file. + * Writes the latest build data to the core.json and build.json configuration files. */ -const writeCommitHashToCoreJSON = async () => +const writeBuildDataToJSON = async () => { try { - const coreJSONPath = path.resolve(dataDir, "configs", "core.json"); - const coreJSON = await fs.readFile(coreJSONPath, "utf8"); - const parsed = JSON.parse(coreJSON); - // Fetch the latest Git commit hash const gitResult = await exec("git rev-parse HEAD", { stdout: "pipe" }); - // Update the commit hash in the core.json object - parsed.commit = gitResult.stdout.trim() || ""; + // Update core.json + const coreJSONPath = path.resolve(dataDir, "configs", "core.json"); + const coreJSON = await fs.readFile(coreJSONPath, "utf8"); + const coreParsed = JSON.parse(coreJSON); - // Add build timestamp - parsed.buildTime = new Date().getTime(); + coreParsed.commit = gitResult.stdout.trim() || ""; + coreParsed.buildTime = new Date().getTime(); + await fs.writeFile(coreJSONPath, JSON.stringify(coreParsed, null, 4)); - // Write the updated object back to core.json - await fs.writeFile(coreJSONPath, JSON.stringify(parsed, null, 4)); + // Write build.json + const buildJsonPath = path.join("obj", "ide", "build.json"); + const buildInfo = {}; + + buildInfo.commit = coreParsed.commit; + buildInfo.buildTime = coreParsed.buildTime; + buildInfo.akiVersion = coreParsed.akiVersion; + await fs.writeFile(buildJsonPath, JSON.stringify(buildInfo, null, 4)); } catch (error) { @@ -195,7 +200,7 @@ const createHashFile = async () => }; // Combine all tasks into addAssets -const addAssets = gulp.series(copyAssets, downloadPnpm, copyLicense, writeCommitHashToCoreJSON, createHashFile); +const addAssets = gulp.series(copyAssets, downloadPnpm, copyLicense, writeBuildDataToJSON, createHashFile); /** * Cleans the build directory. @@ -313,9 +318,9 @@ const build = (packagingType) => cleanBuild, validateJSONs, compile, + addAssets, fetchPackageImage, anonPackaging, - addAssets, updateBuildProperties, cleanCompiled, ]; diff --git a/project/src/controllers/GameController.ts b/project/src/controllers/GameController.ts index ac7e9dbe..cafdf078 100644 --- a/project/src/controllers/GameController.ts +++ b/project/src/controllers/GameController.ts @@ -964,7 +964,9 @@ export class GameController protected logProfileDetails(fullProfile: IAkiProfile): void { this.logger.debug(`Profile made with: ${fullProfile.aki.version}`); - this.logger.debug(`Server version: ${this.coreConfig.akiVersion} ${this.coreConfig.commit}`); + this.logger.debug( + `Server version: ${globalThis.G_AKIVERSION || this.coreConfig.akiVersion} ${globalThis.G_COMMIT}`, + ); this.logger.debug(`Debug enabled: ${globalThis.G_DEBUG_CONFIGURATION}`); this.logger.debug(`Mods enabled: ${globalThis.G_MODS_ENABLED}`); } diff --git a/project/src/ide/BleedingEdgeEntry.ts b/project/src/ide/BleedingEdgeEntry.ts index c177c186..94cdafdd 100644 --- a/project/src/ide/BleedingEdgeEntry.ts +++ b/project/src/ide/BleedingEdgeEntry.ts @@ -2,6 +2,7 @@ import "reflect-metadata"; import "source-map-support/register"; import { Program } from "@spt-aki/Program"; +import * as buildInfo from "./build.json"; globalThis.G_DEBUG_CONFIGURATION = true; globalThis.G_RELEASE_CONFIGURATION = true; @@ -10,5 +11,9 @@ globalThis.G_MODS_TRANSPILE_TS = true; globalThis.G_LOG_REQUESTS = true; globalThis.G_WATERMARK_ENABLED = true; +globalThis.G_AKIVERSION = buildInfo.akiVersion; +globalThis.G_COMMIT = buildInfo.commit; +globalThis.G_BUILDTIME = buildInfo.buildTime; + const program = new Program(); program.start(); diff --git a/project/src/ide/BleedingEdgeModsEntry.ts b/project/src/ide/BleedingEdgeModsEntry.ts index b90cf77f..badeb416 100644 --- a/project/src/ide/BleedingEdgeModsEntry.ts +++ b/project/src/ide/BleedingEdgeModsEntry.ts @@ -2,6 +2,7 @@ import "reflect-metadata"; import "source-map-support/register"; import { Program } from "@spt-aki/Program"; +import * as buildInfo from "./build.json"; globalThis.G_DEBUG_CONFIGURATION = true; globalThis.G_RELEASE_CONFIGURATION = true; @@ -10,5 +11,9 @@ globalThis.G_MODS_TRANSPILE_TS = true; globalThis.G_LOG_REQUESTS = true; globalThis.G_WATERMARK_ENABLED = true; +globalThis.G_AKIVERSION = buildInfo.akiVersion; +globalThis.G_COMMIT = buildInfo.commit; +globalThis.G_BUILDTIME = buildInfo.buildTime; + const program = new Program(); program.start(); diff --git a/project/src/ide/DebugEntry.ts b/project/src/ide/DebugEntry.ts index 33a37e75..5c4377ea 100644 --- a/project/src/ide/DebugEntry.ts +++ b/project/src/ide/DebugEntry.ts @@ -2,6 +2,7 @@ import "reflect-metadata"; import "source-map-support/register"; import { Program } from "@spt-aki/Program"; +import * as buildInfo from "./build.json"; globalThis.G_DEBUG_CONFIGURATION = true; globalThis.G_RELEASE_CONFIGURATION = true; @@ -10,5 +11,9 @@ globalThis.G_MODS_TRANSPILE_TS = true; globalThis.G_LOG_REQUESTS = true; globalThis.G_WATERMARK_ENABLED = false; +globalThis.G_AKIVERSION = buildInfo.akiVersion; +globalThis.G_COMMIT = buildInfo.commit; +globalThis.G_BUILDTIME = buildInfo.buildTime; + const program = new Program(); program.start(); diff --git a/project/src/ide/ReleaseEntry.ts b/project/src/ide/ReleaseEntry.ts index e45141dc..230e7d32 100644 --- a/project/src/ide/ReleaseEntry.ts +++ b/project/src/ide/ReleaseEntry.ts @@ -2,6 +2,7 @@ import "reflect-metadata"; import "source-map-support/register"; import { Program } from "@spt-aki/Program"; +import * as buildInfo from "./build.json"; globalThis.G_DEBUG_CONFIGURATION = false; globalThis.G_RELEASE_CONFIGURATION = true; @@ -10,5 +11,9 @@ globalThis.G_MODS_TRANSPILE_TS = true; globalThis.G_LOG_REQUESTS = false; globalThis.G_WATERMARK_ENABLED = false; +globalThis.G_AKIVERSION = buildInfo.akiVersion; +globalThis.G_COMMIT = buildInfo.commit; +globalThis.G_BUILDTIME = buildInfo.buildTime; + const program = new Program(); program.start(); diff --git a/project/src/ide/TestEntry.ts b/project/src/ide/TestEntry.ts index 9a1c53f4..e1ff4e4a 100644 --- a/project/src/ide/TestEntry.ts +++ b/project/src/ide/TestEntry.ts @@ -2,13 +2,18 @@ import "reflect-metadata"; import "source-map-support/register"; import { Program } from "@spt-aki/Program"; +import * as buildInfo from "./build.json"; globalThis.G_DEBUG_CONFIGURATION = true; globalThis.G_RELEASE_CONFIGURATION = false; globalThis.G_MODS_ENABLED = true; globalThis.G_MODS_TRANSPILE_TS = false; globalThis.G_LOG_REQUESTS = true; -globalThis.G_WATERMARK_ENABLED = true; +globalThis.G_WATERMARK_ENABLED = false; + +globalThis.G_AKIVERSION = buildInfo.akiVersion; +globalThis.G_COMMIT = buildInfo.commit; +globalThis.G_BUILDTIME = buildInfo.buildTime; const program = new Program(); program.start(); diff --git a/project/src/ide/build.json b/project/src/ide/build.json new file mode 100644 index 00000000..999634cd --- /dev/null +++ b/project/src/ide/build.json @@ -0,0 +1,5 @@ +{ + "akiVersion": "", + "commit": "", + "buildTime": 0 +} diff --git a/project/src/loaders/PreAkiModLoader.ts b/project/src/loaders/PreAkiModLoader.ts index f566a235..df9ffc74 100644 --- a/project/src/loaders/PreAkiModLoader.ts +++ b/project/src/loaders/PreAkiModLoader.ts @@ -329,7 +329,7 @@ export class PreAkiModLoader implements IModLoader */ protected isModCombatibleWithAki(mod: IPackageJsonData): boolean { - const akiVersion = this.akiConfig.akiVersion; + const akiVersion = globalThis.G_AKIVERSION || this.akiConfig.akiVersion; const modName = `${mod.author}-${mod.name}`; // Error and prevent loading If no akiVersion property exists diff --git a/project/src/servers/ConfigServer.ts b/project/src/servers/ConfigServer.ts index 85c4cb6f..ccd67d62 100644 --- a/project/src/servers/ConfigServer.ts +++ b/project/src/servers/ConfigServer.ts @@ -53,7 +53,7 @@ export class ConfigServer } } - this.logger.info(`Commit hash: ${(this.configs[ConfigTypes.CORE] as ICoreConfig).commit || "DEBUG"}`); - this.logger.info(`Build date: ${(this.configs[ConfigTypes.CORE] as ICoreConfig).buildTime || "DEBUG"}`); + this.logger.info(`Commit hash: ${globalThis.G_COMMIT || "DEBUG"}`); + this.logger.info(`Build date: ${globalThis.G_BUILDTIME || "DEBUG"}`); } } diff --git a/project/src/utils/App.ts b/project/src/utils/App.ts index 235926b4..e3152ebb 100644 --- a/project/src/utils/App.ts +++ b/project/src/utils/App.ts @@ -42,15 +42,15 @@ export class App this.logger.debug(`RAM: ${(os.totalmem() / 1024 / 1024 / 1024).toFixed(2)}GB`); this.logger.debug(`PATH: ${this.encodingUtil.toBase64(process.argv[0])}`); this.logger.debug(`PATH: ${this.encodingUtil.toBase64(process.execPath)}`); - this.logger.debug(`Server: ${this.coreConfig.akiVersion}`); - if (this.coreConfig.buildTime) + this.logger.debug(`Server: ${globalThis.G_AKIVERSION || this.coreConfig.akiVersion}`); + if (globalThis.G_BUILDTIME) { - this.logger.debug(`Date: ${this.coreConfig.buildTime}`); + this.logger.debug(`Date: ${globalThis.G_BUILDTIME}`); } - if (this.coreConfig.commit) + if (globalThis.G_COMMIT) { - this.logger.debug(`Commit: ${this.coreConfig.commit}`); + this.logger.debug(`Commit: ${globalThis.G_COMMIT}`); } for (const onLoad of this.onLoadComponents) diff --git a/project/src/utils/Watermark.ts b/project/src/utils/Watermark.ts index 91edd475..b3a9f77e 100644 --- a/project/src/utils/Watermark.ts +++ b/project/src/utils/Watermark.ts @@ -108,9 +108,10 @@ export class Watermark */ public getVersionTag(withEftVersion = false): string { + const akiVersion = globalThis.G_AKIVERSION || this.akiConfig.akiVersion; const versionTag = (globalThis.G_DEBUG_CONFIGURATION) - ? `${this.akiConfig.akiVersion} - ${this.localisationService.getText("bleeding_edge_build")}` - : this.akiConfig.akiVersion; + ? `${akiVersion} - ${this.localisationService.getText("bleeding_edge_build")}` + : akiVersion; if (withEftVersion) { @@ -128,9 +129,10 @@ export class Watermark */ public getInGameVersionLabel(): string { + const akiVersion = globalThis.G_AKIVERSION || this.akiConfig.akiVersion; const versionTag = (globalThis.G_DEBUG_CONFIGURATION) - ? `${this.akiConfig.akiVersion} - BLEEDINGEDGE ${this.akiConfig.commit?.slice(0, 6) ?? ""}` - : `${this.akiConfig.akiVersion} - ${this.akiConfig.commit?.slice(0, 6) ?? ""}`; + ? `${akiVersion} - BLEEDINGEDGE ${globalThis.G_COMMIT?.slice(0, 6) ?? ""}` + : `${akiVersion} - ${globalThis.G_COMMIT?.slice(0, 6) ?? ""}`; return `${this.akiConfig.projectName} ${versionTag}`; } From 0d553e8ea6e1243d9f88a185221c6c043532af37 Mon Sep 17 00:00:00 2001 From: DrakiaXYZ Date: Thu, 18 Apr 2024 07:55:39 +0000 Subject: [PATCH 091/104] Move setting of the `generated` bools to inside the cache methods (!298) Also make `generateDynamicPrices` public to match the static method, and allow mods to refresh the cache Co-authored-by: DrakiaXYZ <565558+TheDgtl@users.noreply.github.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/298 Co-authored-by: DrakiaXYZ Co-committed-by: DrakiaXYZ --- project/src/services/RagfairPriceService.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/project/src/services/RagfairPriceService.ts b/project/src/services/RagfairPriceService.ts index ad684c47..6c3e578b 100644 --- a/project/src/services/RagfairPriceService.ts +++ b/project/src/services/RagfairPriceService.ts @@ -56,13 +56,11 @@ export class RagfairPriceService implements OnLoad if (!this.generatedStaticPrices) { this.generateStaticPrices(); - this.generatedStaticPrices = true; } if (!this.generatedDynamicPrices) { this.generateDynamicPrices(); - this.generatedDynamicPrices = true; } } @@ -84,14 +82,18 @@ export class RagfairPriceService implements OnLoad { this.prices.static[item._id] = Math.round(this.handbookHelper.getTemplatePrice(item._id)); } + + this.generatedStaticPrices = true; } /** * Create a dictionary and store prices from prices.json in it */ - protected generateDynamicPrices(): void + public generateDynamicPrices(): void { Object.assign(this.prices.dynamic, this.databaseServer.getTables().templates.prices); + + this.generatedDynamicPrices = true; } /** From b305ffdc24a1aae09052abeec549fd814f1039ff Mon Sep 17 00:00:00 2001 From: Dev Date: Thu, 18 Apr 2024 11:56:45 +0100 Subject: [PATCH 092/104] Add `currency` to generation configuration for each bot Fix various missing properties in some bot jsons --- .../database/bots/types/arenafighter.json | 1389 +++++- .../bots/types/arenafighterevent.json | 14 +- .../assets/database/bots/types/assault.json | 8 + project/assets/database/bots/types/bear.json | 11 +- .../assets/database/bots/types/bossboar.json | 8 + .../database/bots/types/bossboarsniper.json | 8 + .../assets/database/bots/types/bossbully.json | 8 + .../database/bots/types/bossgluhar.json | 8 + .../assets/database/bots/types/bosskilla.json | 8 + .../database/bots/types/bossknight.json | 8 + .../database/bots/types/bosskojaniy.json | 8 + .../database/bots/types/bosskolontay.json | 8 + .../database/bots/types/bosssanitar.json | 8 + .../database/bots/types/bosstagilla.json | 8 + .../database/bots/types/bosszryachiy.json | 8 + .../bots/types/crazyassaultevent.json | 50 +- .../database/bots/types/cursedassault.json | 291 +- .../assets/database/bots/types/exusec.json | 8 + .../database/bots/types/followerbigpipe.json | 8 + .../database/bots/types/followerbirdeye.json | 8 + .../database/bots/types/followerboar.json | 8 + .../bots/types/followerboarclose1.json | 8 + .../bots/types/followerboarclose2.json | 8 + .../database/bots/types/followerbully.json | 8 + .../bots/types/followergluharassault.json | 8 + .../bots/types/followergluharscout.json | 8 + .../bots/types/followergluharsecurity.json | 8 + .../bots/types/followergluharsnipe.json | 4380 +++++++++-------- .../database/bots/types/followerkojaniy.json | 8 + .../bots/types/followerkolontayassault.json | 8 + .../bots/types/followerkolontaysecurity.json | 8 + .../database/bots/types/followersanitar.json | 8 + .../database/bots/types/followerzryachiy.json | 8 + .../assets/database/bots/types/gifter.json | 8 + .../assets/database/bots/types/marksman.json | 8 + .../bots/types/peacefullzryachiyevent.json | 10 +- .../assets/database/bots/types/pmcbot.json | 8 + .../bots/types/ravangezryachiyevent.json | 8 + .../database/bots/types/sectantpriest.json | 8 + .../database/bots/types/sectantwarrior.json | 8 + .../database/bots/types/shooterbtr.json | 8 + project/assets/database/bots/types/usec.json | 11 +- project/src/generators/BotLootGenerator.ts | 16 + .../src/models/eft/common/tables/IBotType.ts | 1 + project/src/models/spt/bots/IBotLootCache.ts | 2 + project/src/services/BotLootCacheService.ts | 32 + 46 files changed, 4026 insertions(+), 2453 deletions(-) diff --git a/project/assets/database/bots/types/arenafighter.json b/project/assets/database/bots/types/arenafighter.json index 85929b09..b192c202 100644 --- a/project/assets/database/bots/types/arenafighter.json +++ b/project/assets/database/bots/types/arenafighter.json @@ -1,20 +1,20 @@ { "appearance": { "body": { - "5d5e7e7586f77427997cfb7f": 1, - "5d5e7e8386f774393602d6fa": 1, - "5df8a10486f77412672a1e3a": 1, - "5e4bb3ee86f77406975c934e": 1, - "5e9da1d086f774054a667134": 1, - "5fd1eb3fbe3b7107d66cb645": 1 + "5d5e7e7586f77427997cfb7f": 9, + "5d5e7e8386f774393602d6fa": 4, + "5df8a10486f77412672a1e3a": 10, + "5e4bb3ee86f77406975c934e": 4, + "5e9da1d086f774054a667134": 8, + "5fd1eb3fbe3b7107d66cb645": 9 }, "feet": { - "5cc2e5d014c02e15d53d9c03": 1, - "5d28af7886f77429275dba25": 1, - "5d5e7f4986f7746956659f8a": 1, - "5f5e410c6bdad616ad46d60b": 1, - "5f5e41366760b4138443b343": 1, - "5f5e41576760b4138443b344": 1 + "5cc2e5d014c02e15d53d9c03": 8, + "5d28af7886f77429275dba25": 9, + "5d5e7f4986f7746956659f8a": 8, + "5f5e410c6bdad616ad46d60b": 4, + "5f5e41366760b4138443b343": 10, + "5f5e41576760b4138443b344": 5 }, "hands": { "5cc2e68f14c02e28b47de290": 1, @@ -38,13 +38,13 @@ "chances": { "equipment": { "ArmBand": 0, - "ArmorVest": 67, + "ArmorVest": 65, "Backpack": 72, - "Earpiece": 56, + "Earpiece": 61, "Eyewear": 97, - "FaceCover": 70, + "FaceCover": 75, "FirstPrimaryWeapon": 100, - "Headwear": 94, + "Headwear": 95, "Holster": 100, "Pockets": 100, "Scabbard": 0, @@ -52,25 +52,30 @@ "SecuredContainer": 100, "TacticalVest": 100 }, - "mods": { + "equipmentMods": { "back_plate": 100, "front_plate": 100, - "left_side_plate": 25, - "mod_charge": 100, - "mod_equipment": 0, - "mod_equipment_000": 11, + "left_side_plate": 0, + "mod_equipment": 11, + "mod_equipment_000": 0, "mod_equipment_001": 0, "mod_equipment_002": 0, + "mod_mount": 0, + "mod_nvg": 0, + "right_side_plate": 0 + }, + "weaponMods": { + "mod_charge": 100, "mod_flashlight": 100, "mod_foregrip": 84, "mod_handguard": 100, "mod_launcher": 0, "mod_magazine": 100, "mod_mount": 45, - "mod_mount_000": 35, - "mod_mount_001": 25, + "mod_mount_000": 34, + "mod_mount_001": 21, "mod_mount_002": 53, - "mod_mount_003": 62, + "mod_mount_003": 55, "mod_mount_004": 40, "mod_muzzle": 61, "mod_muzzle_000": 100, @@ -79,18 +84,17 @@ "mod_pistol_grip": 0, "mod_reciever": 100, "mod_scope": 77, - "mod_sight_front": 82, - "mod_sight_rear": 83, - "mod_stock": 72, + "mod_sight_front": 85, + "mod_sight_rear": 84, + "mod_stock": 75, "mod_stock_000": 100, "mod_stock_002": 0, - "mod_tactical": 14, - "mod_tactical_000": 9, - "mod_tactical_001": 20, + "mod_tactical": 13, + "mod_tactical_000": 7, + "mod_tactical_001": 14, "mod_tactical_002": 0, "mod_tactical_003": 100, - "mod_tactical_2": 0, - "right_side_plate": 25 + "mod_tactical_2": 0 } }, "difficulty": { @@ -2069,33 +2073,116 @@ ], "generation": { "items": { + "backpackLoot": { + "weights": { + "0": 1, + "1": 1, + "2": 2, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 0 + }, + "whitelist": [] + }, + "currency": { + "weights": { + "0": 10, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, "drugs": { - "max": 1, - "min": 0 + "weights": { + "0": 1, + "1": 2, + "2": 0 + }, + "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] }, "grenades": { - "max": 5, - "min": 0 + "weights": { + "0": 1, + "1": 2, + "2": 3, + "3": 1, + "4": 0, + "5": 0 + }, + "whitelist": [] }, "healing": { - "max": 2, - "min": 1 - }, - "looseLoot": { - "max": 4, - "min": 1 + "weights": { + "0": 1, + "1": 2, + "2": 1 + }, + "whitelist": [] }, "magazines": { - "max": 4, - "min": 2 + "weights": { + "0": 0, + "1": 0, + "2": 1, + "3": 3, + "4": 1 + }, + "whitelist": [] + }, + "pocketLoot": { + "weights": { + "0": 1, + "1": 4, + "2": 4, + "3": 1, + "4": 1 + }, + "whitelist": [] }, "specialItems": { - "max": 0, - "min": 0 + "weights": { + "0": 1, + "1": 0 + }, + "whitelist": [] }, "stims": { - "max": 1, - "min": 0 + "weights": { + "0": 2, + "1": 1, + "2": 0 + }, + "whitelist": [] + }, + "vestLoot": { + "weights": { + "0": 1, + "1": 1, + "2": 2, + "3": 1, + "4": 0, + "5": 0, + "6": 0 + }, + "whitelist": [] } } }, @@ -2161,9 +2248,9 @@ "56dff2ced2720bb4668b4567": 1 }, "Caliber556x45NATO": { - "54527a984bdc2d4e668b4567": 1, - "54527ac44bdc2d36668b4567": 1, - "59e6920f86f77411d82aa167": 1 + "54527a984bdc2d4e668b4567": 6, + "54527ac44bdc2d36668b4567": 5, + "59e6920f86f77411d82aa167": 2 }, "Caliber57x28": { "5cc80f38e4a949001152b560": 1 @@ -2175,22 +2262,22 @@ "59e0d99486f7744a32234762": 1 }, "Caliber762x51": { - "58dd3ad986f77403051cba8f": 1, - "5a6086ea4f39f99cd479502f": 1, - "5a608bf24f39f98ffc77720e": 1, + "58dd3ad986f77403051cba8f": 2, + "5a6086ea4f39f99cd479502f": 3, + "5a608bf24f39f98ffc77720e": 2, "5e023e53d4353e3302577c4c": 1 }, "Caliber9x18PM": { "573719762459775a626ccbc1": 1 }, "Caliber9x19PARA": { - "56d59d3ad2720bdb418b4577": 1, - "5c925fa22e221601da359b7b": 1, - "5efb0da7a29a85116f6ea05f": 1 + "56d59d3ad2720bdb418b4577": 53, + "5c925fa22e221601da359b7b": 16, + "5efb0da7a29a85116f6ea05f": 4 }, "Caliber9x21": { - "5a26abfac4a28232980eabff": 1, - "5a26ac0ec4a28200741e1e18": 1 + "5a26abfac4a28232980eabff": 3, + "5a26ac0ec4a28200741e1e18": 8 }, "Caliber9x39": { "5c0d668f86f7747ccb7f13b2": 1 @@ -2199,108 +2286,108 @@ "equipment": { "ArmBand": {}, "ArmorVest": { - "5648a7494bdc2d9d488b4583": 1, - "5ab8e79e86f7742d8b372e78": 1, - "5b44d22286f774172b0c9de8": 1, - "5c0e51be86f774598e797894": 1, + "5648a7494bdc2d9d488b4583": 4, + "5ab8e79e86f7742d8b372e78": 2, + "5b44d22286f774172b0c9de8": 3, + "5c0e51be86f774598e797894": 4, "5c0e53c886f7747fa54205c7": 1, - "5c0e57ba86f7747fa141986d": 1, - "5c0e5bab86f77461f55ed1f3": 1, + "5c0e57ba86f7747fa141986d": 4, + "5c0e5bab86f77461f55ed1f3": 3, "5c0e625a86f7742d77340f62": 1, "5c0e655586f774045612eeb2": 1, - "5ca2151486f774244a3b8d30": 1, + "5ca2151486f774244a3b8d30": 2, "5fd4c474dd870108a754b241": 1, - "609e8540d5c319764c2bc2e9": 1, + "609e8540d5c319764c2bc2e9": 2, "63737f448b28897f2802b874": 1 }, "Backpack": { - "545cdae64bdc2d39198b4568": 1, - "5ca20d5986f774331e7c9602": 1, - "5f5e467b0bc58666c37e7821": 1, + "545cdae64bdc2d39198b4568": 2, + "5ca20d5986f774331e7c9602": 2, + "5f5e467b0bc58666c37e7821": 3, "6034d103ca006d2dca39b3f0": 1, - "6038d614d10cbf667352dd44": 1, - "60a272cc93ef783291411d8e": 1, - "60a2828e8689911a226117f9": 1, - "618cfae774bb2d036a049e7c": 1, - "619cf0335771dd3c390269ae": 1, - "62a1b7fbc30cfa1d366af586": 1 + "6038d614d10cbf667352dd44": 4, + "60a272cc93ef783291411d8e": 2, + "60a2828e8689911a226117f9": 7, + "618cfae774bb2d036a049e7c": 5, + "619cf0335771dd3c390269ae": 3, + "62a1b7fbc30cfa1d366af586": 3 }, "Earpiece": { - "5645bcc04bdc2d363b8b4572": 1, - "5aa2ba71e5b5b000137b758f": 1, - "5b432b965acfc47a8774094e": 1, - "5e4d34ca86f774264f758330": 1, - "6033fa48ffd42c541047f728": 1 + "5645bcc04bdc2d363b8b4572": 5, + "5aa2ba71e5b5b000137b758f": 5, + "5b432b965acfc47a8774094e": 5, + "5e4d34ca86f774264f758330": 5, + "6033fa48ffd42c541047f728": 7 }, "Eyewear": { - "557ff21e4bdc2d89578b4586": 1, - "59e770b986f7742cbd762754": 1, - "5b432be65acfc433000ed01f": 1, - "603409c80ca681766b6a0fb2": 1, - "61c18d83b00456371a66814b": 1 + "557ff21e4bdc2d89578b4586": 12, + "59e770b986f7742cbd762754": 13, + "5b432be65acfc433000ed01f": 10, + "603409c80ca681766b6a0fb2": 4, + "61c18d83b00456371a66814b": 4 }, "FaceCover": { - "572b7fa524597762b747ce82": 1, - "5ab8f39486f7745cd93a1cca": 1, - "5ab8f4ff86f77431c60d91ba": 1, - "5b432f3d5acfc4704b4a1dfb": 1, - "5fd8d28367cb5e077335170f": 1, + "572b7fa524597762b747ce82": 2, + "5ab8f39486f7745cd93a1cca": 3, + "5ab8f4ff86f77431c60d91ba": 6, + "5b432f3d5acfc4704b4a1dfb": 19, + "5fd8d28367cb5e077335170f": 2, "60363c0c92ec1c31037959f5": 1 }, "FirstPrimaryWeapon": { - "5447a9cd4bdc2dbd208b4567": 1, - "576165642459773c7a400233": 1, - "57c44b372459772d2b39b8ce": 1, + "5447a9cd4bdc2dbd208b4567": 2, + "576165642459773c7a400233": 3, + "57c44b372459772d2b39b8ce": 2, "587e02ff24597743df3deaeb": 1, "59984ab886f7743e98271174": 1, - "5a367e5dc4a282000e49738f": 1, + "5a367e5dc4a282000e49738f": 3, "5a7828548dc32e5a9c28b516": 1, - "5aafa857e5b5b00018480968": 1, - "5ac4cd105acfc40016339859": 1, - "5ac66cb05acfc40198510a10": 1, + "5aafa857e5b5b00018480968": 2, + "5ac4cd105acfc40016339859": 2, + "5ac66cb05acfc40198510a10": 2, "5ba26383d4351e00334c93d9": 1, - "5cc82d76e24e8d00134b4b83": 1, - "5dcbd56fdbd3d91b3e5468d5": 1, - "5e00903ae9dc277128008b87": 1, + "5cc82d76e24e8d00134b4b83": 2, + "5dcbd56fdbd3d91b3e5468d5": 2, + "5e00903ae9dc277128008b87": 3, "5f2a9575926fd9352339381f": 1, - "5fbcc1d9016cce60e8341ab3": 1, - "5fc3f2d5900b1d5091531e57": 1, + "5fbcc1d9016cce60e8341ab3": 3, + "5fc3f2d5900b1d5091531e57": 3, "60339954d62c9b14ed777c06": 1, "618428466ef05c2ce828f218": 1, "623063e994fc3f7b302a9696": 1, - "628b9c37a733087d0d7fe84b": 1, - "62e14904c2699c0ec93adc47": 1, + "628b9c37a733087d0d7fe84b": 2, + "62e14904c2699c0ec93adc47": 4, "62e7c4fba689e8c9c50dfc38": 1 }, "Headwear": { - "5645bc214bdc2d363b8b4571": 1, + "5645bc214bdc2d363b8b4571": 2, "5a154d5cfcdbcb001a3b00da": 1, - "5aa2b8d7e5b5b00014028f4a": 1, - "5aa2ba19e5b5b00014028f4e": 1, - "5aa7d193e5b5b000171d063f": 1, - "5aa7e4a4e5b5b000137b76f2": 1, - "5ac8d6885acfc400180ae7b0": 1, - "5b40e1525acfc4771e1c6611": 1, - "5b40e2bc5acfc40016388216": 1, - "5b40e3f35acfc40016388218": 1, - "5b40e4035acfc47a87740943": 1, - "5b432d215acfc4771e1c6624": 1, + "5aa2b8d7e5b5b00014028f4a": 5, + "5aa2ba19e5b5b00014028f4e": 6, + "5aa7d193e5b5b000171d063f": 3, + "5aa7e4a4e5b5b000137b76f2": 2, + "5ac8d6885acfc400180ae7b0": 2, + "5b40e1525acfc4771e1c6611": 3, + "5b40e2bc5acfc40016388216": 2, + "5b40e3f35acfc40016388218": 3, + "5b40e4035acfc47a87740943": 2, + "5b432d215acfc4771e1c6624": 2, "5ea17ca01412a1425304d1c0": 1, - "5f60b34a41e30a4ab12a6947": 1, + "5f60b34a41e30a4ab12a6947": 2, "60361b5a9a15b10d96792291": 1, "6040de02647ad86262233012": 1, - "61bca7cda0eae612383adf57": 1 + "61bca7cda0eae612383adf57": 4 }, "Holster": { - "56d59856d2720bd8418b456a": 1, - "59f98b4986f7746f546d2cef": 1, - "5a17f98cfcdbcb0980087290": 1, + "56d59856d2720bd8418b456a": 3, + "59f98b4986f7746f546d2cef": 2, + "5a17f98cfcdbcb0980087290": 2, "5b1fa9b25acfc40018633c01": 1, - "5cadc190ae921500103bb3b6": 1, - "5e81c3cbac2bb513793cdc75": 1, - "602a9740da11d6478d5a06dc": 1, + "5cadc190ae921500103bb3b6": 3, + "5e81c3cbac2bb513793cdc75": 25, + "602a9740da11d6478d5a06dc": 2, "6193a720f8ee7e52e42109ed": 1, - "63088377b5cd696784087147": 1 + "63088377b5cd696784087147": 5 }, "Pockets": { "5af99e9186f7747c447120b8": 1 @@ -2311,19 +2398,19 @@ "5c0a794586f77461c458f892": 1 }, "TacticalVest": { - "544a5caa4bdc2d1a388b4568": 1, + "544a5caa4bdc2d1a388b4568": 2, "5648a69d4bdc2ded0b8b457b": 1, - "5929a2a086f7744f4b234d43": 1, - "5d5d85c586f774279a21cbdb": 1, - "5e9db13186f7742f845ee9d3": 1, - "5f5f41f56760b4138443b352": 1, - "5fd4c60f875c30179f5d04c2": 1, + "5929a2a086f7744f4b234d43": 5, + "5d5d85c586f774279a21cbdb": 5, + "5e9db13186f7742f845ee9d3": 4, + "5f5f41f56760b4138443b352": 5, + "5fd4c60f875c30179f5d04c2": 2, "603648ff5a45383c122086ac": 1, - "6040dd4ddcf9592f401632d2": 1, - "60a621c49c197e4e8c4455e6": 1, + "6040dd4ddcf9592f401632d2": 2, + "60a621c49c197e4e8c4455e6": 10, "60a6220e953894617404b00a": 1, - "61bc85697113f767765c7fe7": 1, - "61bcc89aef0f505f0c6cd0fc": 1, + "61bc85697113f767765c7fe7": 2, + "61bcc89aef0f505f0c6cd0fc": 3, "639343fce101f4caa40a4ef3": 1 } }, @@ -2629,6 +2716,57 @@ "54527ac44bdc2d36668b4567" ] }, + "544a5caa4bdc2d1a388b4568": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fad8c498d1b7e3e071da0", + "656fa25e94b480b8a500c0e0", + "656fa61e94b480b8a500c0e8", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656fb21fa0dce000a2020f7c", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Front_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fa76500d62bcd2e024080", + "656fafe3498d1b7e3e071da4", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fb0bd7c2d57afe200c0dc", + "656fac30c6baea13cd07e10c", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Groin": [ + "6570e90b3a5689d85f08db97" + ], + "Soft_armor_back": [ + "6570e87c23c1f638ef0b0ee2" + ], + "Soft_armor_front": [ + "6570e83223c1f638ef0b0ede" + ] + }, "55d355e64bdc2d962f8b4569": { "mod_barrel": [ "55d35ee94bdc2d61338b4568" @@ -2659,6 +2797,34 @@ "56def37dd2720bec348b456a" ] }, + "5645bc214bdc2d363b8b4571": { + "Helmet_back": [ + "657baeaacfcf63c951052db3" + ], + "Helmet_ears": [ + "657baecbc6f689d3a205b863" + ], + "Helmet_top": [ + "657bae18b7e9ca9a02045c0a" + ], + "mod_equipment": [ + "5b46238386f7741a693bcf9c" + ] + }, + "5648a7494bdc2d9d488b4583": { + "Soft_armor_back": [ + "65703fa06584602f7d057a8e" + ], + "Soft_armor_front": [ + "65703d866584602f7d057a8a" + ], + "Soft_armor_left": [ + "65703fe46a912c8b5c03468b" + ], + "soft_armor_right": [ + "657040374e67e8ec7a0d261c" + ] + }, "5649a2464bdc2d91118b45a8": { "mod_scope": [ "5a33b2c9c4a282000c5a9511" @@ -2778,17 +2944,18 @@ ] }, "587e02ff24597743df3deaeb": { + "mod_barrel": [ + "634eff66517ccc8a960fc735" + ], "mod_magazine": [ "587df3a12459772c28142567" ], "mod_mount": [ "587e08ee245977446b4410cf" ], - "mod_muzzle": [ - "5cf67cadd7f00c065a5abab7" - ], - "mod_sight_rear": [ - "574db213245977459a2f3f5d" + "mod_reciever": [ + "634f06262e5def262d0b30ca", + "634f05ca517ccc8a960fc748" ], "mod_stock": [ "5d0236dad7ad1a0940739d29" @@ -2862,6 +3029,14 @@ "59f99a7d86f7745b134aa97b" ] }, + "5a154d5cfcdbcb001a3b00da": { + "Helmet_back": [ + "657f8f10f4c82973640b2350" + ], + "Helmet_top": [ + "657f8ec5f4c82973640b234c" + ] + }, "5a17f98cfcdbcb0980087290": { "mod_magazine": [ "5a17fb03fcdbcbcae668728f" @@ -2970,6 +3145,31 @@ "5b30b0dc5acfc400153b7124" ] }, + "5aa7d193e5b5b000171d063f": { + "Helmet_back": [ + "657bb79ba1c61ee0c303631a" + ], + "Helmet_ears": [ + "657bb7d7b30eca9763051176" + ], + "Helmet_top": [ + "657bb70486c7f9ef7a009936" + ] + }, + "5aa7e4a4e5b5b000137b76f2": { + "Helmet_back": [ + "657f92acada5fadd1f07a57e" + ], + "Helmet_ears": [ + "657f92e7f4c82973640b2354" + ], + "Helmet_top": [ + "657f925dada5fadd1f07a57a" + ], + "mod_equipment": [ + "5aa7e3abe5b5b000171d064d" + ] + }, "5aaf8e43e5b5b00015693246": { "mod_mount": [ "5ab24ef9e5b5b00fe93c9209" @@ -3005,6 +3205,61 @@ "58dd3ad986f77403051cba8f" ] }, + "5ab8e79e86f7742d8b372e78": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Collar": [ + "657326bc5d3a3129fb05f36b" + ], + "Front_plate": [ + "656f611f94b480b8a500c0db", + "656f603f94b480b8a500c0d6", + "656f57dc27aed95beb08f628", + "656f63c027aed95beb08f62c" + ], + "Left_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "Right_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "Soft_armor_back": [ + "657326978c1cc6dcd9098b56" + ], + "Soft_armor_front": [ + "65732688d9d89ff7ac0d9c4c" + ], + "Soft_armor_left": [ + "657326a28c1cc6dcd9098b5a" + ], + "soft_armor_right": [ + "657326b08c1cc6dcd9098b5e" + ] + }, "5ac4cd105acfc40016339859": { "mod_charge": [ "5648ac824bdc2ded0b8b457d" @@ -3104,6 +3359,130 @@ "5b363dd25acfc4001a598fd2" ] }, + "5b40e1525acfc4771e1c6611": { + "Helmet_back": [ + "657112a4818110db4600aa66" + ], + "Helmet_ears": [ + "657112ce22996eaf110881fb" + ], + "Helmet_top": [ + "657112234269e9a568089eac" + ] + }, + "5b40e2bc5acfc40016388216": { + "Helmet_back": [ + "657112a4818110db4600aa66" + ], + "Helmet_ears": [ + "657112ce22996eaf110881fb" + ], + "Helmet_top": [ + "657112234269e9a568089eac" + ] + }, + "5b40e3f35acfc40016388218": { + "Helmet_back": [ + "657f9605f4c82973640b2358" + ], + "Helmet_top": [ + "657f95bff92cd718b701550c" + ] + }, + "5b40e4035acfc47a87740943": { + "Helmet_back": [ + "657f9605f4c82973640b2358" + ], + "Helmet_top": [ + "657f95bff92cd718b701550c" + ] + }, + "5b432d215acfc4771e1c6624": { + "Helmet_back": [ + "657bb99db30eca976305117f" + ], + "Helmet_top": [ + "657bb92fa1c61ee0c303631f" + ], + "mod_equipment_000": [ + "5a16badafcdbcb001865f72d", + "5a16b672fcdbcb001912fa83", + "5a16b7e1fcdbcb00165aa6c9" + ], + "mod_equipment_001": [ + "5a16b9fffcdbcb0176308b34" + ], + "mod_mount": [ + "5a398b75c4a282000a51a266", + "5a398ab9c4a282000c5a9842" + ], + "mod_nvg": [ + "5ea058e01dbce517f324b3e2", + "5c0558060db834001b735271", + "5a16b8a9fcdbcb00165aa6ca" + ] + }, + "5b44d22286f774172b0c9de8": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fafe3498d1b7e3e071da4", + "656fa0fb498d1b7e3e071d9c", + "656fa25e94b480b8a500c0e0", + "656fa76500d62bcd2e024080", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Collar": [ + "65705cea4916448ae1050897" + ], + "Front_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "64afdcb83efdfea28601d041", + "655746010177119f4a097ff7", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38" + ], + "Soft_armor_back": [ + "65705c3c14f2ed6d7d0b7738" + ], + "Soft_armor_front": [ + "65704de13e7bba58ea0285c8" + ], + "Soft_armor_left": [ + "65705c777260e1139e091408" + ], + "soft_armor_right": [ + "65705cb314f2ed6d7d0b773c" + ] + }, "5b7be4895acfc400170e2dd5": { "mod_foregrip": [ "58c157c886f774032749fb06", @@ -3143,6 +3522,241 @@ "588226dd24597767ad33f789" ] }, + "5c0e51be86f774598e797894": { + "Back_plate": [ + "656efaf54772930db4031ff5", + "656efd66034e8e01c407f35c", + "654a4a964b446df1ad03f192" + ], + "Collar": [ + "654a8ae00337d53f9102c2aa" + ], + "Front_plate": [ + "656f63c027aed95beb08f62c", + "656f57dc27aed95beb08f628", + "656f603f94b480b8a500c0d6", + "656f611f94b480b8a500c0db" + ], + "Groin": [ + "654a8bc5f414fcea4004d79b" + ], + "Soft_armor_back": [ + "654a8976f414fcea4004d78b" + ], + "Soft_armor_front": [ + "654a8b0b0337d53f9102c2ae" + ], + "Soft_armor_left": [ + "654a8b3df414fcea4004d78f" + ], + "soft_armor_right": [ + "654a8b80f414fcea4004d797" + ] + }, + "5c0e53c886f7747fa54205c7": { + "Collar": [ + "654a8ae00337d53f9102c2aa" + ], + "Groin": [ + "654a8bc5f414fcea4004d79b" + ], + "back_plate": [ + "654a4a964b446df1ad03f192", + "656efaf54772930db4031ff5", + "656efd66034e8e01c407f35c" + ], + "front_plate": [ + "656f603f94b480b8a500c0d6", + "656f611f94b480b8a500c0db", + "656f57dc27aed95beb08f628", + "656f63c027aed95beb08f62c" + ], + "soft_armor_back": [ + "654a8976f414fcea4004d78b" + ], + "soft_armor_front": [ + "654a8b0b0337d53f9102c2ae" + ], + "soft_armor_left": [ + "654a8b3df414fcea4004d78f" + ], + "soft_armor_right": [ + "654a8b80f414fcea4004d797" + ] + }, + "5c0e57ba86f7747fa141986d": { + "Back_plate": [ + "657b22485f444d6dff0c6c2f", + "657b2797c3dbcb01d60c35ea", + "657b28d25f444d6dff0c6c77" + ], + "Collar": [ + "657080ca12755ae0d907ad5e" + ], + "Front_plate": [ + "656f664200d62bcd2e024077", + "654a4dea7c17dec2f50cc86a", + "656f66b5c6baea13cd07e108", + "656f611f94b480b8a500c0db", + "656f603f94b480b8a500c0d6", + "656f57dc27aed95beb08f628", + "656f63c027aed95beb08f62c" + ], + "Groin": [ + "65708122f65e2491bf009755" + ], + "Groin_back": [ + "65708165696fe382cf073255" + ], + "Soft_armor_back": [ + "6570800612755ae0d907acf8" + ], + "Soft_armor_front": [ + "65707fc348c7a887f2010432" + ], + "Soft_armor_left": [ + "65708070f65e2491bf00972c" + ], + "soft_armor_right": [ + "657080a212755ae0d907ad04" + ] + }, + "5c0e5bab86f77461f55ed1f3": { + "Back_plate": [ + "657b22485f444d6dff0c6c2f", + "657b2797c3dbcb01d60c35ea", + "657b28d25f444d6dff0c6c77" + ], + "Collar": [ + "6571babb4076795e5e07383f" + ], + "Front_plate": [ + "656f664200d62bcd2e024077", + "654a4dea7c17dec2f50cc86a", + "656f66b5c6baea13cd07e108" + ], + "Groin": [ + "6571bac34076795e5e073843" + ], + "Groin_back": [ + "6571babf4cb80d995d0a1494" + ], + "Soft_armor_back": [ + "6571baa74cb80d995d0a1490" + ], + "Soft_armor_front": [ + "6571b27a6d84a2b8b6007f92" + ], + "Soft_armor_left": [ + "6571baac6d84a2b8b6007fa3" + ], + "soft_armor_right": [ + "6571bab0f41985531a038091" + ] + }, + "5c0e625a86f7742d77340f62": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa99800d62bcd2e024088", + "656fa8d700d62bcd2e024084", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fa76500d62bcd2e024080", + "656fafe3498d1b7e3e071da4", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fac30c6baea13cd07e10c", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656f9fa0498d1b7e3e071d98", + "656fb0bd7c2d57afe200c0dc", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38" + ], + "Collar": [ + "657643a220cc24d17102b14c" + ], + "Front_plate": [ + "656f611f94b480b8a500c0db", + "656f603f94b480b8a500c0d6", + "656f57dc27aed95beb08f628", + "656f63c027aed95beb08f62c" + ], + "Left_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "Right_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "Soft_armor_back": [ + "657642b0e6d5dd75f40688a5" + ], + "Soft_armor_front": [ + "65764275d8537eb26a0355e9" + ], + "Soft_armor_left": [ + "6576434820cc24d17102b148" + ], + "soft_armor_right": [ + "657643732bc38ef78e076477" + ] + }, + "5c0e655586f774045612eeb2": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656faf0ca0dce000a2020f77", + "656fae5f7c2d57afe200c0d7", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fa61e94b480b8a500c0e8", + "656fad8c498d1b7e3e071da0", + "656fac30c6baea13cd07e10c", + "656fb21fa0dce000a2020f7c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Front_plate": [ + "656fa8d700d62bcd2e024084", + "656f9d5900d62bcd2e02407c", + "656fa99800d62bcd2e024088", + "656fa0fb498d1b7e3e071d9c", + "656faf0ca0dce000a2020f77", + "656fae5f7c2d57afe200c0d7", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Soft_armor_back": [ + "6570e0610b57c03ec90b96ef" + ], + "Soft_armor_front": [ + "6570e025615f54368b04fcb0" + ] + }, "5c7954d52e221600106f4cc7": { "mod_muzzle": [ "5c7955c22e221644f31bfd5e" @@ -3153,6 +3767,83 @@ "61659f79d92c473c770213ee" ] }, + "5ca2151486f774244a3b8d30": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Collar": [ + "6575dd769d3a0ddf660b904b" + ], + "Front_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Groin": [ + "6575dd800546f8b1de093df6" + ], + "Groin_back": [ + "6575dd94945bf78edd04c43c" + ], + "Left_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "Right_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "Soft_armor_back": [ + "6575dd519e27f4a85e081146" + ], + "Soft_armor_front": [ + "6575dd3e9e27f4a85e081142" + ], + "Soft_armor_left": [ + "6575dd64945bf78edd04c438" + ], + "soft_armor_right": [ + "6575dd6e9d3a0ddf660b9047" + ] + }, "5cadc190ae921500103bb3b6": { "mod_barrel": [ "5cadc1c6ae9215000f2775a4" @@ -3351,6 +4042,19 @@ "5e81ee4dcb2b95385c177582" ] }, + "5ea17ca01412a1425304d1c0": { + "Helmet_back": [ + "657f9a94ada5fadd1f07a589" + ], + "Helmet_top": [ + "657f9a55c6679fefb3051e19" + ], + "mod_nvg": [ + "5ea18c84ecf1982c7712d9a2", + "5c0558060db834001b735271", + "5a16b8a9fcdbcb00165aa6ca" + ] + }, "5efaf417aeb21837e749c7f2": { "mod_foregrip": [ "5c1bc7432e221602b412949d" @@ -3407,6 +4111,29 @@ "5fb6564947ce63734e3fa1da" ] }, + "5f60b34a41e30a4ab12a6947": { + "Helmet_back": [ + "657bbb31b30eca9763051183" + ], + "Helmet_top": [ + "657bbad7a1c61ee0c3036323" + ], + "mod_equipment_000": [ + "5f60c076f2bcbb675b00dac2" + ], + "mod_equipment_002": [ + "5f60b85bbdb8e27dee3dc985" + ], + "mod_mount": [ + "5a398b75c4a282000a51a266", + "5a398ab9c4a282000c5a9842" + ], + "mod_nvg": [ + "5f60bf4558eff926626a60f2", + "5c0558060db834001b735271", + "5a16b8a9fcdbcb00165aa6ca" + ] + }, "5fb655b748c711690e3a8d5a": { "mod_stock_000": [ "5bb20e58d4351e00320205d7" @@ -3495,6 +4222,48 @@ "5d2369418abbc306c62e0c80" ] }, + "5fd4c474dd870108a754b241": { + "back_plate": [ + "64afdcb83efdfea28601d041", + "655746010177119f4a097ff7", + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4" + ], + "front_plate": [ + "64afdcb83efdfea28601d041", + "655746010177119f4a097ff7", + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4" + ] + }, "60228924961b8d75ee233c32": { "mod_sight_front": [ "60228a76d62c9b14ed777a66" @@ -3569,6 +4338,74 @@ "6086b5392535c57a13424d70" ] }, + "609e8540d5c319764c2bc2e9": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38" + ], + "Front_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa25e94b480b8a500c0e0", + "656fa76500d62bcd2e024080", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041", + "65573fa5655447403702a816", + "64afc71497cf3a403c01ff38" + ], + "Left_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "Right_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "Soft_armor_back": [ + "6572e52f73c0eabb700109a0" + ], + "Soft_armor_front": [ + "6572e5221b5bc1185508c24f" + ], + "Soft_armor_left": [ + "6572e53c73c0eabb700109a4" + ], + "soft_armor_right": [ + "6572e54873c0eabb700109a8" + ] + }, "616554fe50224f204c1da2aa": { "mod_scope": [ "61657230d92c473c770213d7" @@ -3576,8 +4413,8 @@ }, "616584766ef05c2ce828ef57": { "mod_scope": [ - "5c7d55de2e221644f31bff68", - "5c7d560b2e22160bc12c6139" + "5c7d560b2e22160bc12c6139", + "5c7d55de2e221644f31bff68" ] }, "61816df1d3a39d50044c139e": { @@ -3673,6 +4510,157 @@ "6194f2df645b5d229654ad77" ] }, + "61bc85697113f767765c7fe7": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656faf0ca0dce000a2020f77", + "656fae5f7c2d57afe200c0d7", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Front_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa99800d62bcd2e024088", + "656fa8d700d62bcd2e024084", + "656faf0ca0dce000a2020f77", + "656fae5f7c2d57afe200c0d7", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Left_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "Right_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "Soft_armor_back": [ + "6572fc8c9a866b80ab07eb5d" + ], + "Soft_armor_front": [ + "6572fc809a866b80ab07eb59" + ], + "Soft_armor_left": [ + "6572fc989a866b80ab07eb61" + ], + "soft_armor_right": [ + "6572fca39a866b80ab07eb65" + ] + }, + "61bca7cda0eae612383adf57": { + "Helmet_back": [ + "657bbcffbbd440df880b2dd5" + ], + "Helmet_top": [ + "657bbcc9a1c61ee0c3036327" + ], + "mod_equipment_000": [ + "5a16b672fcdbcb001912fa83", + "5a16b7e1fcdbcb00165aa6c9" + ], + "mod_mount": [ + "5a398b75c4a282000a51a266", + "5a398ab9c4a282000c5a9842" + ], + "mod_nvg": [ + "5c0558060db834001b735271", + "5a16b8a9fcdbcb00165aa6ca" + ] + }, + "61bcc89aef0f505f0c6cd0fc": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fafe3498d1b7e3e071da4", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Front_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa76500d62bcd2e024080", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Groin": [ + "6572eb865b5eac12f10a03ee" + ], + "Left_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "Right_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d", + "64afd81707e2cf40e903a316" + ], + "Soft_armor_back": [ + "6572eb1b04ee6483ef039882" + ], + "Soft_armor_front": [ + "6572eb0e55beba16bc04079f" + ], + "Soft_armor_left": [ + "6572eb3004ee6483ef039886" + ], + "soft_armor_right": [ + "6572eb3b04ee6483ef03988a" + ] + }, "622b379bf9cfc87d675d2de5": { "mod_gas_block": [ "622b327b267a1b13a44abea3" @@ -3885,6 +4873,61 @@ "5c7954d52e221600106f4cc7" ] }, + "634eff66517ccc8a960fc735": { + "mod_mount_000": [ + "634f05a21f9f536910079b56" + ], + "mod_muzzle": [ + "5cf67cadd7f00c065a5abab7" + ] + }, + "634f05a21f9f536910079b56": { + "mod_gas_block": [ + "634f036a517ccc8a960fc746" + ] + }, + "63737f448b28897f2802b874": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa25e94b480b8a500c0e0", + "656fa76500d62bcd2e024080", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Front_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fafe3498d1b7e3e071da4", + "656fa0fb498d1b7e3e071d9c", + "656fa76500d62bcd2e024080", + "656fad8c498d1b7e3e071da0", + "656fa25e94b480b8a500c0e0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ] + }, "637f57b78d137b27f70c496a": { "mod_foregrip": [ "5c87ca002e221600114cb150" @@ -3894,6 +4937,68 @@ "mod_scope": [ "616554fe50224f204c1da2aa" ] + }, + "639343fce101f4caa40a4ef3": { + "Back_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fae5f7c2d57afe200c0d7", + "656fa99800d62bcd2e024088", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Front_plate": [ + "656f9d5900d62bcd2e02407c", + "656fa8d700d62bcd2e024084", + "656fa99800d62bcd2e024088", + "656fae5f7c2d57afe200c0d7", + "656faf0ca0dce000a2020f77", + "656fa0fb498d1b7e3e071d9c", + "656fafe3498d1b7e3e071da4", + "656fa76500d62bcd2e024080", + "656fa25e94b480b8a500c0e0", + "656fad8c498d1b7e3e071da0", + "656fa61e94b480b8a500c0e8", + "656fb21fa0dce000a2020f7c", + "656fac30c6baea13cd07e10c", + "656fb0bd7c2d57afe200c0dc", + "656f9fa0498d1b7e3e071d98", + "656fa53d94b480b8a500c0e4", + "655746010177119f4a097ff7", + "64afdcb83efdfea28601d041" + ], + "Left_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d" + ], + "Right_side_plate": [ + "6557458f83942d705f0c4962", + "64afdb577bb3bfe8fe03fd1d" + ], + "Soft_armor_back": [ + "6573102b292ecadbfa09b38d" + ], + "Soft_armor_front": [ + "6573101e292ecadbfa09b389" + ], + "Soft_armor_left": [ + "65731038292ecadbfa09b391" + ], + "soft_armor_right": [ + "65731045f31d5be00e08a75a" + ] } } }, diff --git a/project/assets/database/bots/types/arenafighterevent.json b/project/assets/database/bots/types/arenafighterevent.json index 2feae98d..41ea7788 100644 --- a/project/assets/database/bots/types/arenafighterevent.json +++ b/project/assets/database/bots/types/arenafighterevent.json @@ -2126,12 +2126,20 @@ "2": 2 }, "whitelist": [] + }, + "currency": { + "weights": { + "0": 10, + "1": 5, + "2": 1 + }, + "whitelist": [] }, "grenades": { "weights": { "0": 1, "1": 2, - "2": 1, + "2": 3, "3": 1, "4": 0, "5": 0 @@ -2159,8 +2167,8 @@ "pocketLoot": { "weights": { "0": 1, - "1": 6, - "2": 3, + "1": 4, + "2": 4, "3": 1, "4": 1 }, diff --git a/project/assets/database/bots/types/assault.json b/project/assets/database/bots/types/assault.json index 7d42a23f..c1d269d8 100644 --- a/project/assets/database/bots/types/assault.json +++ b/project/assets/database/bots/types/assault.json @@ -2343,6 +2343,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/bear.json b/project/assets/database/bots/types/bear.json index e30473de..ba953fb8 100644 --- a/project/assets/database/bots/types/bear.json +++ b/project/assets/database/bots/types/bear.json @@ -2513,7 +2513,7 @@ }, "food": { "weights": { - "0": 6, + "0": 5, "1": 5, "2": 2 }, @@ -2521,11 +2521,18 @@ }, "drink": { "weights": { - "0": 6, + "0": 5, "1": 5, "2": 1 }, "whitelist": [] + }, + "currency": { + "weights": { + "0": 5, + "1": 1 + }, + "whitelist": [] }, "grenades": { "weights": { diff --git a/project/assets/database/bots/types/bossboar.json b/project/assets/database/bots/types/bossboar.json index 9e9275a2..0de9d9ad 100644 --- a/project/assets/database/bots/types/bossboar.json +++ b/project/assets/database/bots/types/bossboar.json @@ -2302,6 +2302,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/bossboarsniper.json b/project/assets/database/bots/types/bossboarsniper.json index f68d230d..fa4f7e08 100644 --- a/project/assets/database/bots/types/bossboarsniper.json +++ b/project/assets/database/bots/types/bossboarsniper.json @@ -2038,6 +2038,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/bossbully.json b/project/assets/database/bots/types/bossbully.json index ef295a8b..3805da27 100644 --- a/project/assets/database/bots/types/bossbully.json +++ b/project/assets/database/bots/types/bossbully.json @@ -2029,6 +2029,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/bossgluhar.json b/project/assets/database/bots/types/bossgluhar.json index d272f56b..ded75bd2 100644 --- a/project/assets/database/bots/types/bossgluhar.json +++ b/project/assets/database/bots/types/bossgluhar.json @@ -2317,6 +2317,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/bosskilla.json b/project/assets/database/bots/types/bosskilla.json index bc2eed39..fad9ce2d 100644 --- a/project/assets/database/bots/types/bosskilla.json +++ b/project/assets/database/bots/types/bosskilla.json @@ -2019,6 +2019,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/bossknight.json b/project/assets/database/bots/types/bossknight.json index 94da417b..8fd71e31 100644 --- a/project/assets/database/bots/types/bossknight.json +++ b/project/assets/database/bots/types/bossknight.json @@ -2167,6 +2167,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/bosskojaniy.json b/project/assets/database/bots/types/bosskojaniy.json index 507f96e9..98b46538 100644 --- a/project/assets/database/bots/types/bosskojaniy.json +++ b/project/assets/database/bots/types/bosskojaniy.json @@ -2070,6 +2070,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/bosskolontay.json b/project/assets/database/bots/types/bosskolontay.json index bc63f661..9eeab183 100644 --- a/project/assets/database/bots/types/bosskolontay.json +++ b/project/assets/database/bots/types/bosskolontay.json @@ -2322,6 +2322,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/bosssanitar.json b/project/assets/database/bots/types/bosssanitar.json index aef86e92..a7ebb55d 100644 --- a/project/assets/database/bots/types/bosssanitar.json +++ b/project/assets/database/bots/types/bosssanitar.json @@ -2114,6 +2114,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/bosstagilla.json b/project/assets/database/bots/types/bosstagilla.json index 29aff717..c3498d03 100644 --- a/project/assets/database/bots/types/bosstagilla.json +++ b/project/assets/database/bots/types/bosstagilla.json @@ -2113,6 +2113,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/bosszryachiy.json b/project/assets/database/bots/types/bosszryachiy.json index 9726cbd5..3a3d034c 100644 --- a/project/assets/database/bots/types/bosszryachiy.json +++ b/project/assets/database/bots/types/bosszryachiy.json @@ -2024,6 +2024,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/crazyassaultevent.json b/project/assets/database/bots/types/crazyassaultevent.json index 760544df..1ef4fad5 100644 --- a/project/assets/database/bots/types/crazyassaultevent.json +++ b/project/assets/database/bots/types/crazyassaultevent.json @@ -2348,25 +2348,24 @@ "backpackLoot": { "weights": { "0": 1, - "1": 1, - "2": 2, + "1": 6, + "2": 6, "3": 1, "4": 1, "5": 1, - "6": 1, - "7": 0 + "6": 1 }, "whitelist": [] }, - "drugs": { + "currency": { "weights": { - "0": 1, - "1": 2, - "2": 0 + "0": 20, + "1": 5, + "2": 1 }, "whitelist": [] }, - "food": { + "drink": { "weights": { "0": 10, "1": 5, @@ -2374,7 +2373,15 @@ }, "whitelist": [] }, - "drink": { + "drugs": { + "weights": { + "0": 30, + "1": 9, + "2": 1 + }, + "whitelist": [] + }, + "food": { "weights": { "0": 10, "1": 5, @@ -2413,8 +2420,8 @@ }, "pocketLoot": { "weights": { - "0": 1, - "1": 6, + "0": 2, + "1": 9, "2": 3, "3": 1, "4": 1 @@ -2439,8 +2446,8 @@ "vestLoot": { "weights": { "0": 1, - "1": 1, - "2": 2, + "1": 3, + "2": 4, "3": 1, "4": 0, "5": 0, @@ -3073,6 +3080,7 @@ "5a144bdb86f7741d374bbde0": 1, "5a1452ee86f7746f33111763": 3, "5a26abfac4a28232980eabff": 1, + "5a26ac06c4a282000c5a90a8": 1, "5a26ac0ec4a28200741e1e18": 3, "5a27b281c4a28200741e1e52": 1, "5a27bad7c4a282000b15184b": 1, @@ -3109,6 +3117,7 @@ "5ab3afb2d8ce87001660304d": 1, "5ac66bea5acfc43b321d4aec": 1, "5ad5ccd186f774446d5706e9": 4, + "5ad5cfbd86f7742c825d6104": 1, "5ad5d20586f77449be26d877": 2, "5ad5d49886f77455f9731921": 5, "5ad5d64486f774079b080af8": 1, @@ -3126,6 +3135,7 @@ "5b1fb3e15acfc4001637f068": 1, "5b31163c5acfc400153b71cb": 1, "5b363dd25acfc4001a598fd2": 1, + "5b363dea5acfc4771e1c5e7e": 1, "5b39ffbd5acfc47a8773fb06": 1, "5b3a337e5acfc4704b4a19a0": 1, "5b3f7bf05acfc433000ecf6b": 1, @@ -3149,8 +3159,8 @@ "5bbdb870d4351e00367fb67d": 2, "5bc09a18d4351e003562b68e": 2, "5bc5a351d4351e003477a414": 1, - "5bc9b156d4351e00367fbce9": 10, - "5bc9c29cd4351e003562b8a3": 31, + "5bc9b156d4351e00367fbce9": 12, + "5bc9c29cd4351e003562b8a3": 32, "5be4038986f774527d3fae60": 3, "5beec8b20db834001961942a": 1, "5bfea7ad0db834001c38f1ee": 1, @@ -3169,7 +3179,7 @@ "5c0e531286f7747fa54205c2": 13, "5c0e531d86f7747fa23f4d42": 40, "5c0e533786f7747fa23f4d47": 21, - "5c0e534186f7747fa1419867": 11, + "5c0e534186f7747fa1419867": 13, "5c0fa877d174af02a012e1cf": 35, "5c0fafb6d174af02a96260ba": 1, "5c10c8fd86f7743d7d706df3": 11, @@ -3305,6 +3315,7 @@ "5efb0e16aeb21837e749c7ff": 2, "5f2aa43ba9b91d26f20ae6d2": 1, "5f6331e097199b7db2128dc2": 1, + "5f647f31b6238e5dd066e196": 1, "5fb653962b1b027b1f50bd03": 1, "5fb6567747ce63734e3fa1dc": 1, "5fbcc429900b1d5091531dd7": 1, @@ -3416,17 +3427,19 @@ "64c196ad26a15b84aa07132f": 2, "64ccc1d4a0f13c24561edf27": 1, "64ccc1ec1779ad6ba200a137": 1, + "64ccc206793ca11c8f450a38": 1, "64ccc2111779ad6ba200a139": 1, "64ccc246ff54fb38131acf29": 2, "64ccc24de61ea448b507d34d": 2, "64ccc268c41e91416064ebc7": 1, "6516b129609aaf354b34b3a8": 1, "6516e91f609aaf354b34b3e2": 2, + "651a8e529829226ceb67c319": 1, "6529370c405a5f51dd023db8": 1, "65293c38fc460e50a509cb25": 1, "65293c7a17e14363030ad308": 1, "653ecef836fae5a82f02b869": 1, - "656df4fec921ad01000481a2": 72, + "656df4fec921ad01000481a2": 73, "6576f96220d53a5b8f3e395e": 1, "65815f0e647e3d7246384e14": 31, "6581998038c79576a2569e11": 4, @@ -3557,6 +3570,7 @@ "65815f0e647e3d7246384e14": 37 }, "SecuredContainer": { + "5448be9a4bdc2dfd2f8b456a": 22, "54527a984bdc2d4e668b4567": 1, "54527ac44bdc2d36668b4567": 11, "560d5e524bdc2d25448b4571": 12211, diff --git a/project/assets/database/bots/types/cursedassault.json b/project/assets/database/bots/types/cursedassault.json index c747193a..9509510e 100644 --- a/project/assets/database/bots/types/cursedassault.json +++ b/project/assets/database/bots/types/cursedassault.json @@ -1,59 +1,59 @@ { "appearance": { "body": { - "5cc2e59214c02e000f16684e": 443, - "5cde9f337d6c8b0474535da8": 485, - "5d28ad6986f77429275dba22": 479, - "5d28ad7286f7742926686182": 475, - "5df8a10486f77412672a1e3a": 424, - "5e4bb3ee86f77406975c934e": 486, - "5e9da1d086f774054a667134": 455, - "5fd1eb3fbe3b7107d66cb645": 482, - "5fd22d311add82653b5a704c": 488, - "618d1af10a5a59657e5f56f3": 470, - "619238266c614e6d15792bca": 455, - "637df28ac22da5bb8d046935": 494, - "64a2edba08d26f8d62049c06": 476 + "5cc2e59214c02e000f16684e": 54, + "5cde9f337d6c8b0474535da8": 56, + "5d28ad6986f77429275dba22": 55, + "5d28ad7286f7742926686182": 41, + "5df8a10486f77412672a1e3a": 34, + "5e4bb3ee86f77406975c934e": 52, + "5e9da1d086f774054a667134": 52, + "5fd1eb3fbe3b7107d66cb645": 52, + "5fd22d311add82653b5a704c": 50, + "618d1af10a5a59657e5f56f3": 55, + "619238266c614e6d15792bca": 59, + "637df28ac22da5bb8d046935": 50, + "64a2edba08d26f8d62049c06": 49 }, "feet": { - "5cc2e5d014c02e15d53d9c03": 234, - "5cde9fb87d6c8b0474535da9": 219, - "5d28af3486f774292364a6e7": 200, - "5df8a15186f77412640e2e6a": 224, - "5f5e410c6bdad616ad46d60b": 222, - "5f5e41366760b4138443b343": 243, - "5f5e41576760b4138443b344": 230, - "61922589bb2cea6f7a22d964": 246, - "6193be546e5968395b260157": 221, - "637df25a1e688345e1097bd4": 223, - "64a2e970a74bb33d140e6dc5": 218 + "5cc2e5d014c02e15d53d9c03": 65, + "5cde9fb87d6c8b0474535da9": 72, + "5d28af3486f774292364a6e7": 57, + "5df8a15186f77412640e2e6a": 50, + "5f5e410c6bdad616ad46d60b": 56, + "5f5e41366760b4138443b343": 61, + "5f5e41576760b4138443b344": 64, + "61922589bb2cea6f7a22d964": 62, + "6193be546e5968395b260157": 53, + "637df25a1e688345e1097bd4": 66, + "64a2e970a74bb33d140e6dc5": 53 }, "hands": { - "5cc2e68f14c02e28b47de290": 467, - "5df8eac086f77412640e2ea7": 106, - "5e4bb49586f77406a313ec5a": 120, - "5e9da2dd86f774054e7d0f63": 113, - "5fd78fe9e3bfcf6cab4c9f54": 117, - "5fd7901bdd870108a754c0e6": 121, - "618cf9540a5a59657e5f5677": 114, - "6197aca964ae5436d76c1f98": 107, - "6391c6205dbbdb3b1b049840": 119, - "64ac23c449d74fd5ec0a124e": 120 + "5cc2e68f14c02e28b47de290": 187, + "5df8eac086f77412640e2ea7": 32, + "5e4bb49586f77406a313ec5a": 48, + "5e9da2dd86f774054e7d0f63": 49, + "5fd78fe9e3bfcf6cab4c9f54": 48, + "5fd7901bdd870108a754c0e6": 46, + "618cf9540a5a59657e5f5677": 49, + "6197aca964ae5436d76c1f98": 52, + "6391c6205dbbdb3b1b049840": 46, + "64ac23c449d74fd5ec0a124e": 45 }, "head": { - "5cc2e4d014c02e000d0115f8": 9, - "5cde9ff17d6c8b0474535daa": 8, - "5d28afe786f774292668618d": 7, - "5f68c4a7c174a17c0f4c8945": 7, - "5f68c4c217d579077152a252": 8 + "5cc2e4d014c02e000d0115f8": 20, + "5cde9ff17d6c8b0474535daa": 21, + "5d28afe786f774292668618d": 21, + "5f68c4a7c174a17c0f4c8945": 27, + "5f68c4c217d579077152a252": 19 }, "voice": { - "Scav_1": 24, - "Scav_2": 17, - "Scav_3": 19, - "Scav_4": 26, - "Scav_5": 22, - "Scav_6": 18 + "Scav_1": 8, + "Scav_2": 7, + "Scav_3": 8, + "Scav_4": 11, + "Scav_5": 5, + "Scav_6": 5 } }, "chances": { @@ -2375,8 +2375,8 @@ "backpackLoot": { "weights": { "0": 1, - "1": 2, - "2": 2, + "1": 6, + "2": 6, "3": 1, "4": 1, "5": 1, @@ -2384,15 +2384,15 @@ }, "whitelist": [] }, - "drugs": { + "currency": { "weights": { - "0": 1, - "1": 2, - "2": 0 + "0": 20, + "1": 5, + "2": 1 }, "whitelist": [] }, - "food": { + "drink": { "weights": { "0": 10, "1": 5, @@ -2400,7 +2400,15 @@ }, "whitelist": [] }, - "drink": { + "drugs": { + "weights": { + "0": 30, + "1": 9, + "2": 1 + }, + "whitelist": [] + }, + "food": { "weights": { "0": 10, "1": 5, @@ -2410,8 +2418,8 @@ }, "grenades": { "weights": { - "0": 3, - "1": 4, + "0": 8, + "1": 6, "2": 2, "3": 1, "4": 0, @@ -2421,8 +2429,8 @@ }, "healing": { "weights": { - "0": 1, - "1": 2, + "0": 5, + "1": 6, "2": 1 }, "whitelist": [] @@ -2430,17 +2438,17 @@ "magazines": { "weights": { "0": 0, - "1": 0, - "2": 1, - "3": 3, + "1": 5, + "2": 4, + "3": 2, "4": 1 }, "whitelist": [] }, "pocketLoot": { "weights": { - "0": 1, - "1": 6, + "0": 2, + "1": 9, "2": 3, "3": 1, "4": 1 @@ -2456,7 +2464,7 @@ }, "stims": { "weights": { - "0": 15, + "0": 45, "1": 3, "2": 1 }, @@ -2465,8 +2473,8 @@ "vestLoot": { "weights": { "0": 1, - "1": 1, - "2": 2, + "1": 3, + "2": 4, "3": 1, "4": 0, "5": 0, @@ -2854,15 +2862,15 @@ "items": { "Backpack": { "5448ba0b4bdc2d02308b456c": 2, - "5448fee04bdc2dbc018b4567": 312, + "5448fee04bdc2dbc018b4567": 315, "5448ff904bdc2d6f028b456e": 44, "544a3a774bdc2d3a388b4567": 1, "544fb25a4bdc2dfb738b4567": 121, "544fb3364bdc2d34748b456a": 103, "544fb37f4bdc2dee738b4567": 45, - "544fb3f34bdc2d03748b456a": 10, - "544fb45d4bdc2dee738b4568": 44, - "544fb62a4bdc2dfb738b4568": 58, + "544fb3f34bdc2d03748b456a": 11, + "544fb45d4bdc2dee738b4568": 46, + "544fb62a4bdc2dfb738b4568": 59, "544fb6cc4bdc2d34748b456e": 44, "54527a984bdc2d4e668b4567": 1, "54527ac44bdc2d36668b4567": 4, @@ -2878,7 +2886,7 @@ "5649ab884bdc2ded0b8b457f": 1, "5649ae4a4bdc2d1b2b8b4588": 1, "5649b2314bdc2d79388b4576": 1, - "5649d9a14bdc2d79388b4580": 2, + "5649d9a14bdc2d79388b4580": 1, "564ca99c4bdc2d16268b4589": 1, "5656d7c34bdc2d9d198b4587": 5, "5656eb674bdc2d35148b457c": 2, @@ -2898,22 +2906,23 @@ "56dff4a2d2720bbd668b456a": 3, "56e05a6ed2720bd0748b4567": 1, "56ea70acd2720b844b8b4594": 1, + "56ea7165d2720b6e518b4583": 1, "570fd6c2d2720bc6458b457f": 1, "570fd79bd2720bc7458b4583": 1, "573475fb24597737fb1379e1": 1, "573476d324597737da2adc13": 1, "5734770f24597738025ee254": 1, - "5734773724597737fd047c14": 35, + "5734773724597737fd047c14": 36, "57347c77245977448d35f6e2": 1, "57347cd0245977445a2d6ff1": 1, "57347d3d245977448f7b7f61": 61, "57347d5f245977448b40fa81": 52, "57347d692459774491567cf1": 57, "57347d7224597744596b4e72": 56, - "57347d8724597744596b4e76": 56, + "57347d8724597744596b4e76": 59, "57347d90245977448f7b7f65": 56, - "57347d9c245977448b40fa85": 47, - "57347da92459774491567cf5": 47, + "57347d9c245977448b40fa85": 48, + "57347da92459774491567cf5": 49, "5735ff5c245977640e39ba7e": 5, "573601b42459776410737435": 5, "573719df2459775a626ccbc2": 5, @@ -2925,17 +2934,17 @@ "574eb85c245977648157eec3": 2, "57505f6224597709a92585a9": 42, "575062b524597720a31c09a1": 43, - "57513f07245977207e26a311": 402, + "57513f07245977207e26a311": 407, "57513f9324597720a7128161": 38, - "57513fcc24597720a31c09a6": 64, + "57513fcc24597720a31c09a6": 66, "5751435d24597720a27126d1": 33, - "57514643245977207f2c2d09": 34, - "575146b724597720a27126d5": 58, - "5751487e245977207e26a315": 61, - "5751496424597720a27126da": 85, - "5751a25924597722c463c472": 123, + "57514643245977207f2c2d09": 35, + "575146b724597720a27126d5": 59, + "5751487e245977207e26a315": 62, + "5751496424597720a27126da": 86, + "5751a25924597722c463c472": 122, "5751a89d24597722aa0e8db0": 5, - "5755356824597772cb798962": 59, + "5755356824597772cb798962": 61, "5755383e24597772cb798966": 17, "57616a9e2459773c7a400234": 1, "576a5ed62459771e9c2096cb": 1, @@ -2943,16 +2952,16 @@ "576fd4ec2459777f0b518431": 1, "577d141e24597739c5255e01": 1, "5780cf692459777de4559321": 1, - "5780cf722459777a5108b9a1": 2, + "5780cf722459777a5108b9a1": 3, "5780cf7f2459777de4559322": 1, "5780cf942459777df90dcb72": 12, "5780cf9e2459777df90dcb73": 2, - "5780cfa52459777dfb276eb1": 22, + "5780cfa52459777dfb276eb1": 24, "5780d0532459777a5108b9a2": 2, "5780d0652459777df90dcb74": 2, "5780d07a2459777de4559324": 2, "57838f0b2459774a256959b2": 1, - "5783c43d2459774bbe137486": 32, + "5783c43d2459774bbe137486": 33, "5798a2832459774b53341029": 3, "57a0dfb82459774d3078b56c": 1, "57a0e5022459774d1673f889": 4, @@ -2975,7 +2984,7 @@ "588226d124597767ad33f787": 1, "588226dd24597767ad33f789": 1, "588226e62459776e3e094af7": 1, - "58864a4f2459770fcc257101": 3, + "58864a4f2459770fcc257101": 2, "5887431f2459777e1612938f": 2, "5888945a2459774bf43ba385": 1, "5888988e24597752fe43a6fa": 2, @@ -2984,7 +2993,7 @@ "5894a2c386f77427140b8342": 1, "58c157c886f774032749fb06": 1, "58d2912286f7744e27117493": 1, - "58dd3ad986f77403051cba8f": 1, + "58dd3ad986f77403051cba8f": 2, "5909e99886f7740c983b9984": 1, "590a386e86f77429692b27ab": 1, "590a391c86f774385a33c404": 1, @@ -2994,14 +3003,14 @@ "590c5c9f86f77477c91c36e7": 1, "590c5d4b86f774784e1b9c45": 52, "590c5f0d86f77413997acfab": 60, - "590c621186f774138d11ea29": 34, - "590c657e86f77412b013051d": 18, + "590c621186f774138d11ea29": 35, + "590c657e86f77412b013051d": 19, "590c661e86f7741e566b646a": 37, "590c678286f77426c9660122": 16, - "590c695186f7741e566b64a2": 13, + "590c695186f7741e566b64a2": 14, "5913611c86f77479e0084092": 8, "5913651986f774432f15d132": 1, - "59136a4486f774447a1ed172": 4, + "59136a4486f774447a1ed172": 5, "59136e1e86f774432f15d133": 1, "59136f6f86f774447a1ed173": 4, "591382d986f774465a6413a7": 1, @@ -3016,9 +3025,9 @@ "5938144586f77473c2087145": 3, "5938504186f7740991483f30": 6, "593858c486f774253a24cb52": 7, - "5938603e86f77435642354f4": 50, + "5938603e86f77435642354f4": 52, "5938994586f774523a425196": 7, - "593aa4be86f77457f56379f8": 34, + "593aa4be86f77457f56379f8": 36, "593d1fa786f7746da62d61ac": 1, "593d489686f7745c6255d58a": 2, "5943ee5a86f77413872d25ec": 1, @@ -3083,6 +3092,7 @@ "5a144bdb86f7741d374bbde0": 1, "5a1452ee86f7746f33111763": 3, "5a26abfac4a28232980eabff": 1, + "5a26ac06c4a282000c5a90a8": 1, "5a26ac0ec4a28200741e1e18": 3, "5a27b281c4a28200741e1e52": 1, "5a27bad7c4a282000b15184b": 1, @@ -3119,6 +3129,7 @@ "5ab3afb2d8ce87001660304d": 1, "5ac66bea5acfc43b321d4aec": 1, "5ad5ccd186f774446d5706e9": 4, + "5ad5cfbd86f7742c825d6104": 1, "5ad5d20586f77449be26d877": 2, "5ad5d49886f77455f9731921": 5, "5ad5d64486f774079b080af8": 1, @@ -3136,6 +3147,7 @@ "5b1fb3e15acfc4001637f068": 1, "5b31163c5acfc400153b71cb": 1, "5b363dd25acfc4001a598fd2": 1, + "5b363dea5acfc4771e1c5e7e": 1, "5b39ffbd5acfc47a8773fb06": 1, "5b3a337e5acfc4704b4a19a0": 1, "5b3f7bf05acfc433000ecf6b": 1, @@ -3159,8 +3171,8 @@ "5bbdb870d4351e00367fb67d": 2, "5bc09a18d4351e003562b68e": 2, "5bc5a351d4351e003477a414": 1, - "5bc9b156d4351e00367fbce9": 10, - "5bc9c29cd4351e003562b8a3": 31, + "5bc9b156d4351e00367fbce9": 12, + "5bc9c29cd4351e003562b8a3": 32, "5be4038986f774527d3fae60": 3, "5beec8b20db834001961942a": 1, "5bfea7ad0db834001c38f1ee": 1, @@ -3179,7 +3191,7 @@ "5c0e531286f7747fa54205c2": 13, "5c0e531d86f7747fa23f4d42": 40, "5c0e533786f7747fa23f4d47": 21, - "5c0e534186f7747fa1419867": 11, + "5c0e534186f7747fa1419867": 13, "5c0fa877d174af02a012e1cf": 35, "5c0fafb6d174af02a96260ba": 1, "5c10c8fd86f7743d7d706df3": 11, @@ -3216,7 +3228,7 @@ "5cc80f38e4a949001152b560": 1, "5cc80f53e4a949000e1ea4f8": 1, "5cc80f67e4a949035e43bbba": 2, - "5cc80f8fe4a949033b0224a2": 6, + "5cc80f8fe4a949033b0224a2": 7, "5cc86840d7f00c002412c56c": 4, "5cc9ad73d7f00c000e2579d4": 1, "5cdeaca5d7f00c00b61c4b70": 1, @@ -3246,7 +3258,7 @@ "5d40407c86f774318526545a": 17, "5d4406a8a4b9361e4f6eb8b7": 2, "5d44334ba4b9362b346d1948": 1, - "5d6e6806a4b936088465b17e": 3, + "5d6e6806a4b936088465b17e": 4, "5d6e6869a4b9361c140bcfde": 2, "5d6e689ca4b9361bc8618956": 1, "5d6e68b3a4b9361bca7e50b5": 2, @@ -3276,8 +3288,8 @@ "5da743f586f7744014504f72": 2, "5dcbe965e4ed22586443a79d": 1, "5de8ea8ffd6b4e6e2276dc35": 1, - "5df8a6a186f77412640e2e80": 48, - "5df8a72c86f77412640e2e83": 36, + "5df8a6a186f77412640e2e80": 46, + "5df8a72c86f77412640e2e83": 35, "5df8a77486f77412672a1e3f": 7, "5dfa3cd1b33c0951220c079b": 2, "5e023cf8186a883be655e54f": 2, @@ -3285,11 +3297,12 @@ "5e023e88277cce2b522ff2b1": 1, "5e208b9842457a4a7a33d074": 1, "5e2aee0a86f774755a234b62": 1, + "5e2aef7986f7746d3f3c33f5": 1, "5e42c71586f7747f245e1343": 2, "5e569a2e56edd02abe09f280": 1, "5e81f423763d9f754677bf2e": 1, - "5e831507ea0a7c419c2f9bd9": 449, - "5e8488fa988a8701445df1e4": 36, + "5e831507ea0a7c419c2f9bd9": 458, + "5e8488fa988a8701445df1e4": 37, "5e85a9a6eacf8c039e4e2ac1": 2, "5e85aa1a988a8701445df1f5": 2, "5e8f3423fd7471236e6e3b64": 24, @@ -3297,7 +3310,7 @@ "5ed515c8d380ab312177c0fa": 6, "5ed515e03a40a50460332579": 5, "5ed515ece452db0eb56fc028": 5, - "5ed515f6915ec335206e4152": 5, + "5ed515f6915ec335206e4152": 6, "5ed5160a87bb8443d10680b5": 8, "5ed51652f6c34d2cc26336a1": 6, "5ed5166ad380ab312177c100": 4, @@ -3315,6 +3328,7 @@ "5efb0e16aeb21837e749c7ff": 2, "5f2aa43ba9b91d26f20ae6d2": 1, "5f6331e097199b7db2128dc2": 1, + "5f647f31b6238e5dd066e196": 1, "5fb653962b1b027b1f50bd03": 1, "5fb6567747ce63734e3fa1dc": 1, "5fbcc429900b1d5091531dd7": 1, @@ -3426,17 +3440,19 @@ "64c196ad26a15b84aa07132f": 2, "64ccc1d4a0f13c24561edf27": 1, "64ccc1ec1779ad6ba200a137": 1, + "64ccc206793ca11c8f450a38": 1, "64ccc2111779ad6ba200a139": 1, "64ccc246ff54fb38131acf29": 2, "64ccc24de61ea448b507d34d": 2, "64ccc268c41e91416064ebc7": 1, "6516b129609aaf354b34b3a8": 1, "6516e91f609aaf354b34b3e2": 2, + "651a8e529829226ceb67c319": 1, "6529370c405a5f51dd023db8": 1, "65293c38fc460e50a509cb25": 1, "65293c7a17e14363030ad308": 1, "653ecef836fae5a82f02b869": 1, - "656df4fec921ad01000481a2": 72, + "656df4fec921ad01000481a2": 73, "6576f96220d53a5b8f3e395e": 1, "65815f0e647e3d7246384e14": 31, "6581998038c79576a2569e11": 4, @@ -3446,14 +3462,14 @@ "6582dc5740562727a654ebb1": 1 }, "Pockets": { - "5448be9a4bdc2dfd2f8b456a": 366, - "5448ff904bdc2d6f028b456e": 68, - "5449016a4bdc2d6f028b456f": 378, - "544fb25a4bdc2dfb738b4567": 157, - "544fb3364bdc2d34748b456a": 137, - "544fb37f4bdc2dee738b4567": 105, - "544fb3f34bdc2d03748b456a": 24, - "544fb6cc4bdc2d34748b456e": 64, + "5448be9a4bdc2dfd2f8b456a": 372, + "5448ff904bdc2d6f028b456e": 70, + "5449016a4bdc2d6f028b456f": 381, + "544fb25a4bdc2dfb738b4567": 159, + "544fb3364bdc2d34748b456a": 139, + "544fb37f4bdc2dee738b4567": 108, + "544fb3f34bdc2d03748b456a": 25, + "544fb6cc4bdc2d34748b456e": 68, "5673de654bdc2d180f8b456d": 48, "56742c284bdc2d98058b456d": 1, "56742c2e4bdc2d95058b456d": 1, @@ -3469,27 +3485,27 @@ "57347baf24597738002c6178": 1, "57347c1124597737fb1379e3": 4, "57347c5b245977448d35f6e1": 4, - "57347c77245977448d35f6e2": 2, + "57347c77245977448d35f6e2": 3, "57347c93245977448d35f6e3": 3, "57347cd0245977445a2d6ff1": 1, "57347d3d245977448f7b7f61": 78, - "57347d5f245977448b40fa81": 67, + "57347d5f245977448b40fa81": 70, "57347d692459774491567cf1": 83, "57347d7224597744596b4e72": 69, "57347d8724597744596b4e76": 70, - "57347d9c245977448b40fa85": 68, + "57347d9c245977448b40fa85": 69, "57347da92459774491567cf5": 72, - "57505f6224597709a92585a9": 61, + "57505f6224597709a92585a9": 62, "575062b524597720a31c09a1": 63, "5751435d24597720a27126d1": 40, - "57514643245977207f2c2d09": 52, + "57514643245977207f2c2d09": 53, "5751487e245977207e26a315": 89, - "5751496424597720a27126da": 124, - "5751a25924597722c463c472": 159, + "5751496424597720a27126da": 125, + "5751a25924597722c463c472": 160, "5751a89d24597722aa0e8db0": 11, "5755356824597772cb798962": 79, "5755383e24597772cb798966": 15, - "5783c43d2459774bbe137486": 189, + "5783c43d2459774bbe137486": 190, "5909e99886f7740c983b9984": 2, "590a358486f77429692b2790": 4, "590a373286f774287540368b": 1, @@ -3499,14 +3515,14 @@ "590c2d8786f774245b1f03f3": 1, "590c31c586f774245e3141b2": 1, "590c5bbd86f774785762df04": 1, - "590c678286f77426c9660122": 21, - "590c695186f7741e566b64a2": 21, - "59e3577886f774176a362503": 73, + "590c678286f77426c9660122": 22, + "590c695186f7741e566b64a2": 22, + "59e3577886f774176a362503": 76, "59e35abd86f7741778269d82": 2, "59e35ef086f7741777737012": 1, "59e3606886f77417674759a5": 2, "59e361e886f774176c10a2a5": 1, - "5a0c27731526d80618476ac4": 284, + "5a0c27731526d80618476ac4": 289, "5af0454c86f7746bf20992e8": 73, "5af0484c86f7740f02001f7f": 2, "5af0548586f7743a532b7e99": 21, @@ -3517,7 +3533,7 @@ "5bc9c377d4351e3bac12251b": 1, "5c06779c86f77426e00dd782": 4, "5c06782b86f77426df5407d2": 2, - "5c0e530286f7747fa1419862": 22, + "5c0e530286f7747fa1419862": 23, "5c0e531286f7747fa54205c2": 21, "5c0e531d86f7747fa23f4d42": 49, "5c0e533786f7747fa23f4d47": 24, @@ -3531,42 +3547,43 @@ "5d235b4d86f7742e017bc88a": 1, "5d40425986f7743185265461": 1, "5df8a6a186f77412640e2e80": 1, - "5e2af22086f7746d3f3c33fa": 2, + "5e2af22086f7746d3f3c33fa": 3, "5e2af29386f7746d4159f077": 1, "5e2af2bc86f7746d3f3c33fc": 1, "5e2af51086f7746d3f3c3402": 1, - "5e831507ea0a7c419c2f9bd9": 68, - "5e8488fa988a8701445df1e4": 58, - "5ed515c8d380ab312177c0fa": 20, + "5e831507ea0a7c419c2f9bd9": 69, + "5e8488fa988a8701445df1e4": 59, + "5ed515c8d380ab312177c0fa": 21, "5ed515e03a40a50460332579": 11, "5ed515ece452db0eb56fc028": 14, "5ed515f6915ec335206e4152": 11, "5ed5160a87bb8443d10680b5": 7, - "5ed51652f6c34d2cc26336a1": 11, + "5ed51652f6c34d2cc26336a1": 12, "5ed5166ad380ab312177c100": 3, "5f745ee30acaeb0d490d8c5b": 1, "5fca138c2a7b221b2852a5c6": 2, "5fca13ca637ee0341a484f46": 9, - "60098ad7c2240c0fe85c570a": 52, - "60098af40accd37ef2175f27": 57, - "60098b1705871270cd5352a1": 25, + "60098ad7c2240c0fe85c570a": 53, + "60098af40accd37ef2175f27": 59, + "60098b1705871270cd5352a1": 26, "60391b0fb847c71012789415": 3, - "60b0f6c058e0b0481a09ad11": 44, + "60b0f6c058e0b0481a09ad11": 43, "60b0f93284c20f0feb453da7": 30, "619cc01e0a7c3a1a2731940c": 1, "61bf7b6302b3924be92fa8c3": 1, "61bf83814088ec1a363d7097": 2, "62a09cfe4f842e1bd12da3e4": 1, - "62a09d3bcf4a99369e262447": 51, + "62a09d3bcf4a99369e262447": 52, "637b60c3b7afa97bfc3d7001": 4, "637b612fb7afa97bfc3d7005": 8, "637b6179104668754b72f8f5": 6, "637b620db7afa97bfc3d7009": 9, "637b6251104668754b72f8f9": 3, - "656df4fec921ad01000481a2": 124, - "65815f0e647e3d7246384e14": 37 + "656df4fec921ad01000481a2": 125, + "65815f0e647e3d7246384e14": 38 }, "SecuredContainer": { + "5448be9a4bdc2dfd2f8b456a": 22, "54527a984bdc2d4e668b4567": 1, "54527ac44bdc2d36668b4567": 11, "560d5e524bdc2d25448b4571": 12211, diff --git a/project/assets/database/bots/types/exusec.json b/project/assets/database/bots/types/exusec.json index 74d5ac3a..12c61872 100644 --- a/project/assets/database/bots/types/exusec.json +++ b/project/assets/database/bots/types/exusec.json @@ -2254,6 +2254,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/followerbigpipe.json b/project/assets/database/bots/types/followerbigpipe.json index 8f3a4ad0..3e95e641 100644 --- a/project/assets/database/bots/types/followerbigpipe.json +++ b/project/assets/database/bots/types/followerbigpipe.json @@ -2053,6 +2053,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/followerbirdeye.json b/project/assets/database/bots/types/followerbirdeye.json index 193ed57b..1665610f 100644 --- a/project/assets/database/bots/types/followerbirdeye.json +++ b/project/assets/database/bots/types/followerbirdeye.json @@ -2085,6 +2085,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/followerboar.json b/project/assets/database/bots/types/followerboar.json index 0052c387..f88c81c1 100644 --- a/project/assets/database/bots/types/followerboar.json +++ b/project/assets/database/bots/types/followerboar.json @@ -2253,6 +2253,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/followerboarclose1.json b/project/assets/database/bots/types/followerboarclose1.json index 823228c1..c98cebc5 100644 --- a/project/assets/database/bots/types/followerboarclose1.json +++ b/project/assets/database/bots/types/followerboarclose1.json @@ -2173,6 +2173,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/followerboarclose2.json b/project/assets/database/bots/types/followerboarclose2.json index 197acfb2..81cbd3b7 100644 --- a/project/assets/database/bots/types/followerboarclose2.json +++ b/project/assets/database/bots/types/followerboarclose2.json @@ -2173,6 +2173,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/followerbully.json b/project/assets/database/bots/types/followerbully.json index 1f0549c9..e56016c1 100644 --- a/project/assets/database/bots/types/followerbully.json +++ b/project/assets/database/bots/types/followerbully.json @@ -2044,6 +2044,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/followergluharassault.json b/project/assets/database/bots/types/followergluharassault.json index 7db40c2d..4d196985 100644 --- a/project/assets/database/bots/types/followergluharassault.json +++ b/project/assets/database/bots/types/followergluharassault.json @@ -2212,6 +2212,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/followergluharscout.json b/project/assets/database/bots/types/followergluharscout.json index 4b0eba82..71fa780a 100644 --- a/project/assets/database/bots/types/followergluharscout.json +++ b/project/assets/database/bots/types/followergluharscout.json @@ -2214,6 +2214,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/followergluharsecurity.json b/project/assets/database/bots/types/followergluharsecurity.json index 9d5d212e..58c44b55 100644 --- a/project/assets/database/bots/types/followergluharsecurity.json +++ b/project/assets/database/bots/types/followergluharsecurity.json @@ -2217,6 +2217,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/followergluharsnipe.json b/project/assets/database/bots/types/followergluharsnipe.json index 18d7f45a..ce647b42 100644 --- a/project/assets/database/bots/types/followergluharsnipe.json +++ b/project/assets/database/bots/types/followergluharsnipe.json @@ -1,2155 +1,2239 @@ { - "appearance": { - "body": {}, - "feet": {}, - "hands": [], - "head": [], - "voice": [] + "appearance": { + "body": {}, + "feet": {}, + "hands": [], + "head": [], + "voice": [] + }, + "chances": { + "equipment": { + "ArmBand": 0, + "ArmorVest": 0, + "Backpack": 0, + "Earpiece": 0, + "Eyewear": 0, + "FaceCover": 0, + "FirstPrimaryWeapon": 0, + "Headwear": 0, + "Holster": 0, + "Scabbard": 0, + "SecondPrimaryWeapon": 0, + "TacticalVest": 0 }, - "experience": { - "level": { - "min": 0, - "max": 0 - }, - "reward": { - "min": 0, - "max": 0 - }, - "standingForKill": 0 + "mods": {} + }, + "difficulty": { + "easy": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.1, + "XZ_COEF_STATIONARY_GRENADE": 0.2, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 30, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Snipe", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 1.8, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 0.1, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 20, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 30, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 100, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15 + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHOOSE_RESERV": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": true, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 100, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 80, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 0, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } }, - "health": { - "Hydration": { - "min": 0, - "max": 0 - }, - "Energy": { - "min": 0, - "max": 0 - }, - "Temperature": { - "min": 0, - "max": 0 - }, - "BodyParts": [{ - "Head": { - "min": 0, - "max": 0 - }, - "Chest": { - "min": 0, - "max": 0 - }, - "Stomach": { - "min": 0, - "max": 0 - }, - "LeftArm": { - "min": 0, - "max": 0 - }, - "RightArm": { - "min": 0, - "max": 0 - }, - "LeftLeg": { - "min": 0, - "max": 0 - }, - "RightLeg": { - "min": 0, - "max": 0 - } - } - ] + "hard": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.1, + "XZ_COEF_STATIONARY_GRENADE": 0.2, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 30, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Snipe", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 1.8, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 0.1, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 20, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 30, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 100, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15 + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHOOSE_RESERV": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": true, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 100, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 80, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 0, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } }, - "skills": { - "Common": {} + "impossible": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.1, + "XZ_COEF_STATIONARY_GRENADE": 0.2, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 30, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Snipe", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 1.8, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 0.1, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 20, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 30, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 100, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15 + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHOOSE_RESERV": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": true, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 100, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 80, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 0, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } }, - "inventory": { - "equipment": { - "Headwear": [], - "Earpiece": [], - "FaceCover": [], - "ArmorVest": [], - "Eyewear": [], - "ArmBand": [], - "TacticalVest": [], - "Backpack": [], - "FirstPrimaryWeapon": [], - "SecondPrimaryWeapon": [], - "Holster": [], - "Scabbard": [], - "Pockets": [], - "SecuredContainer": [] - }, - "mods": {}, - "items": { - "TacticalVest": [], - "Pockets": [], - "Backpack": [], - "SecuredContainer": [], - "SpecialLoot": [] - } - }, - "firstName": [], - "lastName": [], - "difficulty": { - "easy": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2.0, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10.0, - "CLEAR_POINTS_OF_SCARE_SEC": 20.0, - "MAX_LAY_TIME": 35.0, - "DELTA_WANT_LAY_CHECL_SEC": 5.0, - "ATTACK_LAY_CHANCE": 25.0, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15.0, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225.0, - "DIST_ENEMY_GETUP_LAY": 10.0, - "DIST_ENEMY_GETUP_LAY_SQRT": 100.0, - "DIST_ENEMY_CAN_LAY": 15.0, - "DIST_ENEMY_CAN_LAY_SQRT": 225.0, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121.0, - "MIN_CAN_LAY_DIST": 11.0, - "MAX_CAN_LAY_DIST_SQRT": 40000.0, - "MAX_CAN_LAY_DIST": 200.0, - "LAY_CHANCE_DANGER": 40.0, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2.0, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2.0, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15.0, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86.0, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.10, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80.0, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4.0, - "BASE_HIT_AFFECTION_MAX_ANG": 10.0, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2.0, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3.0, - "DIST_TO_SHOOT_NO_OFFSET": 3.0, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1.0, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100.0, - "NEXT_SHOT_MISS_Y_OFFSET": 1.0, - "ANYTIME_LIGHT_WHEN_AIM_100": -1.0, - "ANY_PART_SHOOT_TIME": 15.0, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1.0, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1.0, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.2, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015 - }, - "Look": { - "OLD_TIME_POINT": 11.0, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8.0, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45.0, - "FAR_DISTANCE": 160.0, - "FarDeltaTimeSec": 3.0, - "MIDDLE_DIST": 90.0, - "MiddleDeltaTimeSec": 1.0, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100.0, - "ENEMY_LIGHT_ADD": 48.0, - "ENEMY_LIGHT_START_DIST": 90.0, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15.0, - "DIST_CHECK_WALL": 20.0, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25.0, - "MIN_LOOK_AROUD_TIME": 20.0, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1.0, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44.0, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94.0, - "FAR_DIST_ENEMY": 20.0, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400.0, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25.0, - "RUN_DIST_NO_AMMO_SQRT": 625.0, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2.0, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 100.0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 80.0, - "LOW_DIST_TO_CHANGE_WEAPON": 5.0, - "FAR_DIST_TO_CHANGE_WEAPON": 30.0, - "SUPPRESS_BY_SHOOT_TIME": 6.0, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15.0, - "WAIT_NEXT_STATIONARY_GRENADE": 1.0, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 0, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270.0, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7.0, - "DIST_TO_CAN_CHANGE_WAY": 8.0, - "DIST_TO_START_RAYCAST": 15.0, - "BASE_START_SERACH": 35.0, - "UPDATE_TIME_RECAL_WAY": 7.0, - "FAR_DIST": 4.0, - "FAR_DIST_SQR": 16.0, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64.0, - "DIST_TO_START_RAYCAST_SQR": 225.0, - "BASE_SQRT_START_SERACH": 1225.0, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20.0, - "REACH_DIST_COVER": 2.0, - "RUN_TO_COVER_MIN": 2.0, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100.0, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10.0, - "SEC_TO_CHANGE_TO_RUN": 3.0, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5.0, - "DELTA_NEXT_ATTEMPT": 10.0, - "MIN_DIST_NOT_TO_THROW": 8.0, - "NEAR_DELTA_THROW_TIME_SEC": 2.0, - "MIN_THROW_GRENADE_DIST": 12.0, - "MIN_THROW_GRENADE_DIST_SQRT": 144.0, - "MIN_DIST_NOT_TO_THROW_SQR": 64.0, - "RUN_AWAY": 22.0, - "RUN_AWAY_SQR": 484.0, - "ADD_GRENADE_AS_DANGER": 65.0, - "ADD_GRENADE_AS_DANGER_SQR": 4225.0, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100.0, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9.0, - "REQUEST_DIST_MUST_THROW": 3.0, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50.0, - "CHANCE_RUN_FLASHED_100": 100.0, - "MAX_FLASHED_DIST_TO_SHOOT": 10.0, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100.0, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2.0, - "BE_ATTENTION_COEF": 4.0, - "TIME_SHOOT_TO_FLASH": 4.0, - "CLOSE_TO_SMOKE_TO_SHOOT": 10.0, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100.0, - "CLOSE_TO_SMOKE_TIME_DELTA": 5.0, - "SMOKE_CHECK_DELTA": 1.0, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40.0, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30.0, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25.0, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20.0, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8.0, - "STUN_SUPPRESS_DELTA": 9.0, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1.0, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1.0, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1.0, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1.0, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20.0, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50.0, - "SOUND_TO_GET_SPOTTED": 2.0, - "TIME_TO_MOVE_TO_COVER": 15.0, - "MAX_DIST_OF_COVER": 4.0, - "CHANGE_RUN_TO_COVER_SEC": 5.0, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9.0, - "DIST_CANT_CHANGE_WAY": 5.0, - "DIST_CHECK_SFETY": 9.0, - "TIME_CHECK_SAFE": 2.0, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16.0, - "DIST_CANT_CHANGE_WAY_SQR": 25.0, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3.0, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45.0, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16.0, - "MAX_SPOTTED_TIME_SEC": 55.0, - "WAIT_INT_COVER_FINDING_ENEMY": 2.0, - "CLOSE_DIST_POINT_SQRT": 4.0, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15.0, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7.0, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15.0, - "RUN_IF_FAR_SQRT": 225.0, - "STAY_IF_FAR": 25.0, - "STAY_IF_FAR_SQRT": 625.0, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4.0, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22.0, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1.0, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15.0 - }, - "Patrol": { - "LOOK_TIME_BASE": 12.0, - "RESERVE_TIME_STAY": 72.0, - "FRIEND_SEARCH_SEC": 12.0, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35.0, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5.0, - "VISION_DIST_COEF_PEACE": 1.0, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25.0, - "CHANCE_TO_CUT_WAY_0_100": 75.0, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30.0, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7.0, - "RESERVE_OUT_TIME": 60.0, - "CLOSE_TO_SELECT_RESERV_WAY": 25.0, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5.0, - "CAN_CHOOSE_RESERV": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1.0, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10.0, - "CLOSE_DIST": 26.0, - "FAR_DIST": 56.0, - "SOUND_DIR_DEEFREE": 30.0, - "DIST_PLACE_TO_FIND_POINT": 70.0, - "DEAD_BODY_SOUND_RAD": 30.0, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17.0, - "HEAR_DELAY_WHEN_PEACE": 0.0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0.0, - "LOOK_ONLY_DANGER_DELTA": 9.0 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15.0, - "DAMAGE_REDUCTION_TIME_SEC": 20.0, - "MIN_DAMAGE_SCARE": 20.0, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35.0, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52.0, - "TIME_TO_FIND_ENEMY": 22.0, - "MAX_AGGRO_BOT_DIST": 100.0, - "HIT_POINT_DETECTION": 4.0, - "DANGER_POINT_CHOOSE_COEF": 1.0, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400.0, - "MAX_AGGRO_BOT_DIST_SQR": 10000.0, - "DIST_TO_STOP_RUN_ENEMY": 15.0, - "ENEMY_LOOK_AT_ME_ANG": 15.0, - "MIN_START_AGGRESION_COEF": 1.0, - "MAX_START_AGGRESION_COEF": 3.0, - "BULLET_FEEL_DIST": 360.0, - "BULLET_FEEL_CLOSE_SDIST": 1.0, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40.0, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40.0, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0.0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60.0, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2.0, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25.0, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10.0, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 20.0, - "GROUP_EXACTLY_PHRASE_DELAY": 20.0, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30.0, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80.0, - "DOG_FIGHT_OUT": 6.0, - "DOG_FIGHT_IN": 3.0, - "SHOOT_INSTEAD_DOG_FIGHT": 9.0, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30.0, - "STANDART_AMBUSH_DIST": 100.0, - "AI_POWER_COEF": 120.0, - "COVER_SECONDS_AFTER_LOSE_VISION": 10.0, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10.0, - "HEAL_DELAY_SEC": 5.0, - "HIT_DELAY_WHEN_HAVE_SMT": -1.0, - "HIT_DELAY_WHEN_PEACE": -1.0, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1.0, - "PANIC_SIT_WEIGHT": 80.0, - "PANIC_LAY_WEIGHT": 20.0, - "PANIC_NONE_WEIGHT": 40.0, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60.0 - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34.0, - "BOSS_DIST_TO_WARNING_SQRT": 1156.0, - "BOSS_DIST_TO_WARNING_OUT": 43.0, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849.0, - "BOSS_DIST_TO_SHOOT": 16.0, - "BOSS_DIST_TO_SHOOT_SQRT": 256.0, - "CHANCE_TO_SEND_GRENADE_100": 100.0, - "MAX_DIST_COVER_BOSS": 25.0, - "MAX_DIST_COVER_BOSS_SQRT": 625.0, - "MAX_DIST_DECIDER_TO_SEND": 35.0, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225.0, - "TIME_AFTER_LOSE": 15.0, - "TIME_AFTER_LOSE_DELTA": 60.0, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18.0, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10.0, - "CHANCE_USE_RESERVE_PATROL_100": 30.0, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5.0, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65.0, - "KILLA_START_SEARCH_SEC": 40.0, - "KILLA_CONTUTION_TIME": 5.0, - "KILLA_CLOSE_ATTACK_DIST": 8.0, - "KILLA_MIDDLE_ATTACK_DIST": 32.0, - "KILLA_LARGE_ATTACK_DIST": 61.0, - "KILLA_SEARCH_METERS": 30.0, - "KILLA_DEF_DIST_SQRT": 225.0, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25.0, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6.0, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2.0, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10.0, - "KILLA_HOLD_DELAY": 5.0, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40.0, - "KOJANIY_DIST_TO_BE_ENEMY": 200.0, - "KOJANIY_MIN_DIST_TO_LOOT": 20.0, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400.0, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17.0, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20.0, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_COVER_POWER": 500.0, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25.0, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625.0, - "GLUHAR_FOLLOWER_PATH_NAME": "Snipe", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 30, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15 - }, - "Core": { - "VisibleAngle": 160.0, - "VisibleDistance": 142.0, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1.0, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35.0, - "ShotgunFireDistancePref": 50.0, - "RifleFireDistancePref": 100.0, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80.0, - "ToStopBotAngularSpeed": 40.0, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15.0, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225.0, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1.0 - } - }, - "normal": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2.0, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10.0, - "CLEAR_POINTS_OF_SCARE_SEC": 20.0, - "MAX_LAY_TIME": 35.0, - "DELTA_WANT_LAY_CHECL_SEC": 5.0, - "ATTACK_LAY_CHANCE": 25.0, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15.0, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225.0, - "DIST_ENEMY_GETUP_LAY": 10.0, - "DIST_ENEMY_GETUP_LAY_SQRT": 100.0, - "DIST_ENEMY_CAN_LAY": 15.0, - "DIST_ENEMY_CAN_LAY_SQRT": 225.0, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121.0, - "MIN_CAN_LAY_DIST": 11.0, - "MAX_CAN_LAY_DIST_SQRT": 40000.0, - "MAX_CAN_LAY_DIST": 200.0, - "LAY_CHANCE_DANGER": 40.0, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2.0, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2.0, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15.0, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86.0, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.10, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80.0, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4.0, - "BASE_HIT_AFFECTION_MAX_ANG": 10.0, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2.0, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3.0, - "DIST_TO_SHOOT_NO_OFFSET": 3.0, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1.0, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100.0, - "NEXT_SHOT_MISS_Y_OFFSET": 1.0, - "ANYTIME_LIGHT_WHEN_AIM_100": -1.0, - "ANY_PART_SHOOT_TIME": 15.0, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1.0, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1.0, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.2, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015 - }, - "Look": { - "OLD_TIME_POINT": 11.0, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8.0, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45.0, - "FAR_DISTANCE": 160.0, - "FarDeltaTimeSec": 3.0, - "MIDDLE_DIST": 90.0, - "MiddleDeltaTimeSec": 1.0, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100.0, - "ENEMY_LIGHT_ADD": 48.0, - "ENEMY_LIGHT_START_DIST": 90.0, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15.0, - "DIST_CHECK_WALL": 20.0, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25.0, - "MIN_LOOK_AROUD_TIME": 20.0, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1.0, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44.0, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94.0, - "FAR_DIST_ENEMY": 20.0, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400.0, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25.0, - "RUN_DIST_NO_AMMO_SQRT": 625.0, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2.0, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 100.0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 80.0, - "LOW_DIST_TO_CHANGE_WEAPON": 5.0, - "FAR_DIST_TO_CHANGE_WEAPON": 30.0, - "SUPPRESS_BY_SHOOT_TIME": 6.0, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15.0, - "WAIT_NEXT_STATIONARY_GRENADE": 1.0, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 0, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270.0, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7.0, - "DIST_TO_CAN_CHANGE_WAY": 8.0, - "DIST_TO_START_RAYCAST": 15.0, - "BASE_START_SERACH": 35.0, - "UPDATE_TIME_RECAL_WAY": 7.0, - "FAR_DIST": 4.0, - "FAR_DIST_SQR": 16.0, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64.0, - "DIST_TO_START_RAYCAST_SQR": 225.0, - "BASE_SQRT_START_SERACH": 1225.0, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20.0, - "REACH_DIST_COVER": 2.0, - "RUN_TO_COVER_MIN": 2.0, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100.0, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10.0, - "SEC_TO_CHANGE_TO_RUN": 3.0, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5.0, - "DELTA_NEXT_ATTEMPT": 10.0, - "MIN_DIST_NOT_TO_THROW": 8.0, - "NEAR_DELTA_THROW_TIME_SEC": 2.0, - "MIN_THROW_GRENADE_DIST": 12.0, - "MIN_THROW_GRENADE_DIST_SQRT": 144.0, - "MIN_DIST_NOT_TO_THROW_SQR": 64.0, - "RUN_AWAY": 22.0, - "RUN_AWAY_SQR": 484.0, - "ADD_GRENADE_AS_DANGER": 65.0, - "ADD_GRENADE_AS_DANGER_SQR": 4225.0, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100.0, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9.0, - "REQUEST_DIST_MUST_THROW": 3.0, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50.0, - "CHANCE_RUN_FLASHED_100": 100.0, - "MAX_FLASHED_DIST_TO_SHOOT": 10.0, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100.0, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2.0, - "BE_ATTENTION_COEF": 4.0, - "TIME_SHOOT_TO_FLASH": 4.0, - "CLOSE_TO_SMOKE_TO_SHOOT": 10.0, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100.0, - "CLOSE_TO_SMOKE_TIME_DELTA": 5.0, - "SMOKE_CHECK_DELTA": 1.0, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40.0, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30.0, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25.0, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20.0, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8.0, - "STUN_SUPPRESS_DELTA": 9.0, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1.0, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1.0, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1.0, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1.0, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20.0, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50.0, - "SOUND_TO_GET_SPOTTED": 2.0, - "TIME_TO_MOVE_TO_COVER": 15.0, - "MAX_DIST_OF_COVER": 4.0, - "CHANGE_RUN_TO_COVER_SEC": 5.0, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9.0, - "DIST_CANT_CHANGE_WAY": 5.0, - "DIST_CHECK_SFETY": 9.0, - "TIME_CHECK_SAFE": 2.0, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16.0, - "DIST_CANT_CHANGE_WAY_SQR": 25.0, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3.0, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45.0, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16.0, - "MAX_SPOTTED_TIME_SEC": 55.0, - "WAIT_INT_COVER_FINDING_ENEMY": 2.0, - "CLOSE_DIST_POINT_SQRT": 4.0, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15.0, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7.0, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15.0, - "RUN_IF_FAR_SQRT": 225.0, - "STAY_IF_FAR": 25.0, - "STAY_IF_FAR_SQRT": 625.0, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4.0, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22.0, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1.0, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15.0 - }, - "Patrol": { - "LOOK_TIME_BASE": 12.0, - "RESERVE_TIME_STAY": 72.0, - "FRIEND_SEARCH_SEC": 12.0, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35.0, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5.0, - "VISION_DIST_COEF_PEACE": 1.0, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25.0, - "CHANCE_TO_CUT_WAY_0_100": 75.0, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30.0, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7.0, - "RESERVE_OUT_TIME": 60.0, - "CLOSE_TO_SELECT_RESERV_WAY": 25.0, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5.0, - "CAN_CHOOSE_RESERV": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1.0, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10.0, - "CLOSE_DIST": 26.0, - "FAR_DIST": 56.0, - "SOUND_DIR_DEEFREE": 30.0, - "DIST_PLACE_TO_FIND_POINT": 70.0, - "DEAD_BODY_SOUND_RAD": 30.0, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17.0, - "HEAR_DELAY_WHEN_PEACE": 0.0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0.0, - "LOOK_ONLY_DANGER_DELTA": 9.0 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15.0, - "DAMAGE_REDUCTION_TIME_SEC": 20.0, - "MIN_DAMAGE_SCARE": 20.0, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35.0, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52.0, - "TIME_TO_FIND_ENEMY": 22.0, - "MAX_AGGRO_BOT_DIST": 100.0, - "HIT_POINT_DETECTION": 4.0, - "DANGER_POINT_CHOOSE_COEF": 1.0, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400.0, - "MAX_AGGRO_BOT_DIST_SQR": 10000.0, - "DIST_TO_STOP_RUN_ENEMY": 15.0, - "ENEMY_LOOK_AT_ME_ANG": 15.0, - "MIN_START_AGGRESION_COEF": 1.0, - "MAX_START_AGGRESION_COEF": 3.0, - "BULLET_FEEL_DIST": 360.0, - "BULLET_FEEL_CLOSE_SDIST": 1.0, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40.0, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40.0, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0.0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60.0, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2.0, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25.0, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10.0, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 20.0, - "GROUP_EXACTLY_PHRASE_DELAY": 20.0, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30.0, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80.0, - "DOG_FIGHT_OUT": 6.0, - "DOG_FIGHT_IN": 3.0, - "SHOOT_INSTEAD_DOG_FIGHT": 9.0, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30.0, - "STANDART_AMBUSH_DIST": 100.0, - "AI_POWER_COEF": 120.0, - "COVER_SECONDS_AFTER_LOSE_VISION": 10.0, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10.0, - "HEAL_DELAY_SEC": 5.0, - "HIT_DELAY_WHEN_HAVE_SMT": -1.0, - "HIT_DELAY_WHEN_PEACE": -1.0, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1.0, - "PANIC_SIT_WEIGHT": 80.0, - "PANIC_LAY_WEIGHT": 20.0, - "PANIC_NONE_WEIGHT": 40.0, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60.0 - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34.0, - "BOSS_DIST_TO_WARNING_SQRT": 1156.0, - "BOSS_DIST_TO_WARNING_OUT": 43.0, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849.0, - "BOSS_DIST_TO_SHOOT": 16.0, - "BOSS_DIST_TO_SHOOT_SQRT": 256.0, - "CHANCE_TO_SEND_GRENADE_100": 100.0, - "MAX_DIST_COVER_BOSS": 25.0, - "MAX_DIST_COVER_BOSS_SQRT": 625.0, - "MAX_DIST_DECIDER_TO_SEND": 35.0, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225.0, - "TIME_AFTER_LOSE": 15.0, - "TIME_AFTER_LOSE_DELTA": 60.0, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18.0, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10.0, - "CHANCE_USE_RESERVE_PATROL_100": 30.0, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5.0, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65.0, - "KILLA_START_SEARCH_SEC": 40.0, - "KILLA_CONTUTION_TIME": 5.0, - "KILLA_CLOSE_ATTACK_DIST": 8.0, - "KILLA_MIDDLE_ATTACK_DIST": 32.0, - "KILLA_LARGE_ATTACK_DIST": 61.0, - "KILLA_SEARCH_METERS": 30.0, - "KILLA_DEF_DIST_SQRT": 225.0, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25.0, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6.0, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2.0, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10.0, - "KILLA_HOLD_DELAY": 5.0, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40.0, - "KOJANIY_DIST_TO_BE_ENEMY": 200.0, - "KOJANIY_MIN_DIST_TO_LOOT": 20.0, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400.0, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17.0, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20.0, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_COVER_POWER": 500.0, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25.0, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625.0, - "GLUHAR_FOLLOWER_PATH_NAME": "Snipe", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 30, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15 - }, - "Core": { - "VisibleAngle": 160.0, - "VisibleDistance": 142.0, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1.0, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35.0, - "ShotgunFireDistancePref": 50.0, - "RifleFireDistancePref": 100.0, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80.0, - "ToStopBotAngularSpeed": 40.0, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15.0, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225.0, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1.0 - } - }, - "hard": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2.0, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10.0, - "CLEAR_POINTS_OF_SCARE_SEC": 20.0, - "MAX_LAY_TIME": 35.0, - "DELTA_WANT_LAY_CHECL_SEC": 5.0, - "ATTACK_LAY_CHANCE": 25.0, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15.0, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225.0, - "DIST_ENEMY_GETUP_LAY": 10.0, - "DIST_ENEMY_GETUP_LAY_SQRT": 100.0, - "DIST_ENEMY_CAN_LAY": 15.0, - "DIST_ENEMY_CAN_LAY_SQRT": 225.0, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121.0, - "MIN_CAN_LAY_DIST": 11.0, - "MAX_CAN_LAY_DIST_SQRT": 40000.0, - "MAX_CAN_LAY_DIST": 200.0, - "LAY_CHANCE_DANGER": 40.0, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2.0, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2.0, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15.0, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86.0, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.10, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80.0, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4.0, - "BASE_HIT_AFFECTION_MAX_ANG": 10.0, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2.0, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3.0, - "DIST_TO_SHOOT_NO_OFFSET": 3.0, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1.0, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100.0, - "NEXT_SHOT_MISS_Y_OFFSET": 1.0, - "ANYTIME_LIGHT_WHEN_AIM_100": -1.0, - "ANY_PART_SHOOT_TIME": 15.0, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1.0, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1.0, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.2, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015 - }, - "Look": { - "OLD_TIME_POINT": 11.0, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8.0, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45.0, - "FAR_DISTANCE": 160.0, - "FarDeltaTimeSec": 3.0, - "MIDDLE_DIST": 90.0, - "MiddleDeltaTimeSec": 1.0, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100.0, - "ENEMY_LIGHT_ADD": 48.0, - "ENEMY_LIGHT_START_DIST": 90.0, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15.0, - "DIST_CHECK_WALL": 20.0, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25.0, - "MIN_LOOK_AROUD_TIME": 20.0, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1.0, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44.0, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94.0, - "FAR_DIST_ENEMY": 20.0, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400.0, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25.0, - "RUN_DIST_NO_AMMO_SQRT": 625.0, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2.0, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 100.0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 80.0, - "LOW_DIST_TO_CHANGE_WEAPON": 5.0, - "FAR_DIST_TO_CHANGE_WEAPON": 30.0, - "SUPPRESS_BY_SHOOT_TIME": 6.0, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15.0, - "WAIT_NEXT_STATIONARY_GRENADE": 1.0, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 0, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270.0, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7.0, - "DIST_TO_CAN_CHANGE_WAY": 8.0, - "DIST_TO_START_RAYCAST": 15.0, - "BASE_START_SERACH": 35.0, - "UPDATE_TIME_RECAL_WAY": 7.0, - "FAR_DIST": 4.0, - "FAR_DIST_SQR": 16.0, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64.0, - "DIST_TO_START_RAYCAST_SQR": 225.0, - "BASE_SQRT_START_SERACH": 1225.0, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20.0, - "REACH_DIST_COVER": 2.0, - "RUN_TO_COVER_MIN": 2.0, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100.0, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10.0, - "SEC_TO_CHANGE_TO_RUN": 3.0, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5.0, - "DELTA_NEXT_ATTEMPT": 10.0, - "MIN_DIST_NOT_TO_THROW": 8.0, - "NEAR_DELTA_THROW_TIME_SEC": 2.0, - "MIN_THROW_GRENADE_DIST": 12.0, - "MIN_THROW_GRENADE_DIST_SQRT": 144.0, - "MIN_DIST_NOT_TO_THROW_SQR": 64.0, - "RUN_AWAY": 22.0, - "RUN_AWAY_SQR": 484.0, - "ADD_GRENADE_AS_DANGER": 65.0, - "ADD_GRENADE_AS_DANGER_SQR": 4225.0, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100.0, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9.0, - "REQUEST_DIST_MUST_THROW": 3.0, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50.0, - "CHANCE_RUN_FLASHED_100": 100.0, - "MAX_FLASHED_DIST_TO_SHOOT": 10.0, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100.0, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2.0, - "BE_ATTENTION_COEF": 4.0, - "TIME_SHOOT_TO_FLASH": 4.0, - "CLOSE_TO_SMOKE_TO_SHOOT": 10.0, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100.0, - "CLOSE_TO_SMOKE_TIME_DELTA": 5.0, - "SMOKE_CHECK_DELTA": 1.0, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40.0, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30.0, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25.0, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20.0, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8.0, - "STUN_SUPPRESS_DELTA": 9.0, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1.0, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1.0, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1.0, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1.0, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20.0, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50.0, - "SOUND_TO_GET_SPOTTED": 2.0, - "TIME_TO_MOVE_TO_COVER": 15.0, - "MAX_DIST_OF_COVER": 4.0, - "CHANGE_RUN_TO_COVER_SEC": 5.0, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9.0, - "DIST_CANT_CHANGE_WAY": 5.0, - "DIST_CHECK_SFETY": 9.0, - "TIME_CHECK_SAFE": 2.0, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16.0, - "DIST_CANT_CHANGE_WAY_SQR": 25.0, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3.0, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45.0, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16.0, - "MAX_SPOTTED_TIME_SEC": 55.0, - "WAIT_INT_COVER_FINDING_ENEMY": 2.0, - "CLOSE_DIST_POINT_SQRT": 4.0, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15.0, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7.0, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15.0, - "RUN_IF_FAR_SQRT": 225.0, - "STAY_IF_FAR": 25.0, - "STAY_IF_FAR_SQRT": 625.0, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4.0, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22.0, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1.0, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15.0 - }, - "Patrol": { - "LOOK_TIME_BASE": 12.0, - "RESERVE_TIME_STAY": 72.0, - "FRIEND_SEARCH_SEC": 12.0, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35.0, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5.0, - "VISION_DIST_COEF_PEACE": 1.0, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25.0, - "CHANCE_TO_CUT_WAY_0_100": 75.0, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30.0, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7.0, - "RESERVE_OUT_TIME": 60.0, - "CLOSE_TO_SELECT_RESERV_WAY": 25.0, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5.0, - "CAN_CHOOSE_RESERV": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1.0, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10.0, - "CLOSE_DIST": 26.0, - "FAR_DIST": 56.0, - "SOUND_DIR_DEEFREE": 30.0, - "DIST_PLACE_TO_FIND_POINT": 70.0, - "DEAD_BODY_SOUND_RAD": 30.0, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17.0, - "HEAR_DELAY_WHEN_PEACE": 0.0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0.0, - "LOOK_ONLY_DANGER_DELTA": 9.0 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15.0, - "DAMAGE_REDUCTION_TIME_SEC": 20.0, - "MIN_DAMAGE_SCARE": 20.0, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35.0, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52.0, - "TIME_TO_FIND_ENEMY": 22.0, - "MAX_AGGRO_BOT_DIST": 100.0, - "HIT_POINT_DETECTION": 4.0, - "DANGER_POINT_CHOOSE_COEF": 1.0, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400.0, - "MAX_AGGRO_BOT_DIST_SQR": 10000.0, - "DIST_TO_STOP_RUN_ENEMY": 15.0, - "ENEMY_LOOK_AT_ME_ANG": 15.0, - "MIN_START_AGGRESION_COEF": 1.0, - "MAX_START_AGGRESION_COEF": 3.0, - "BULLET_FEEL_DIST": 360.0, - "BULLET_FEEL_CLOSE_SDIST": 1.0, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40.0, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40.0, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0.0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60.0, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2.0, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25.0, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10.0, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 20.0, - "GROUP_EXACTLY_PHRASE_DELAY": 20.0, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30.0, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80.0, - "DOG_FIGHT_OUT": 6.0, - "DOG_FIGHT_IN": 3.0, - "SHOOT_INSTEAD_DOG_FIGHT": 9.0, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30.0, - "STANDART_AMBUSH_DIST": 100.0, - "AI_POWER_COEF": 120.0, - "COVER_SECONDS_AFTER_LOSE_VISION": 10.0, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10.0, - "HEAL_DELAY_SEC": 5.0, - "HIT_DELAY_WHEN_HAVE_SMT": -1.0, - "HIT_DELAY_WHEN_PEACE": -1.0, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1.0, - "PANIC_SIT_WEIGHT": 80.0, - "PANIC_LAY_WEIGHT": 20.0, - "PANIC_NONE_WEIGHT": 40.0, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60.0 - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34.0, - "BOSS_DIST_TO_WARNING_SQRT": 1156.0, - "BOSS_DIST_TO_WARNING_OUT": 43.0, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849.0, - "BOSS_DIST_TO_SHOOT": 16.0, - "BOSS_DIST_TO_SHOOT_SQRT": 256.0, - "CHANCE_TO_SEND_GRENADE_100": 100.0, - "MAX_DIST_COVER_BOSS": 25.0, - "MAX_DIST_COVER_BOSS_SQRT": 625.0, - "MAX_DIST_DECIDER_TO_SEND": 35.0, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225.0, - "TIME_AFTER_LOSE": 15.0, - "TIME_AFTER_LOSE_DELTA": 60.0, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18.0, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10.0, - "CHANCE_USE_RESERVE_PATROL_100": 30.0, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5.0, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65.0, - "KILLA_START_SEARCH_SEC": 40.0, - "KILLA_CONTUTION_TIME": 5.0, - "KILLA_CLOSE_ATTACK_DIST": 8.0, - "KILLA_MIDDLE_ATTACK_DIST": 32.0, - "KILLA_LARGE_ATTACK_DIST": 61.0, - "KILLA_SEARCH_METERS": 30.0, - "KILLA_DEF_DIST_SQRT": 225.0, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25.0, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6.0, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2.0, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10.0, - "KILLA_HOLD_DELAY": 5.0, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40.0, - "KOJANIY_DIST_TO_BE_ENEMY": 200.0, - "KOJANIY_MIN_DIST_TO_LOOT": 20.0, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400.0, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17.0, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20.0, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_COVER_POWER": 500.0, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25.0, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625.0, - "GLUHAR_FOLLOWER_PATH_NAME": "Snipe", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 30, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15 - }, - "Core": { - "VisibleAngle": 160.0, - "VisibleDistance": 142.0, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1.0, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35.0, - "ShotgunFireDistancePref": 50.0, - "RifleFireDistancePref": 100.0, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80.0, - "ToStopBotAngularSpeed": 40.0, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15.0, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225.0, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1.0 - } - }, - "impossible": { - "Lay": { - "CHECK_SHOOT_WHEN_LAYING": false, - "DELTA_LAY_CHECK": 2.0, - "DELTA_GETUP": 2.7, - "DELTA_AFTER_GETUP": 10.0, - "CLEAR_POINTS_OF_SCARE_SEC": 20.0, - "MAX_LAY_TIME": 35.0, - "DELTA_WANT_LAY_CHECL_SEC": 5.0, - "ATTACK_LAY_CHANCE": 25.0, - "DIST_TO_COVER_TO_LAY": 3.5, - "DIST_TO_COVER_TO_LAY_SQRT": 12.25, - "DIST_GRASS_TERRAIN_SQRT": 0.160000011, - "DIST_ENEMY_NULL_DANGER_LAY": 15.0, - "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225.0, - "DIST_ENEMY_GETUP_LAY": 10.0, - "DIST_ENEMY_GETUP_LAY_SQRT": 100.0, - "DIST_ENEMY_CAN_LAY": 15.0, - "DIST_ENEMY_CAN_LAY_SQRT": 225.0, - "LAY_AIM": 0.6, - "MIN_CAN_LAY_DIST_SQRT": 121.0, - "MIN_CAN_LAY_DIST": 11.0, - "MAX_CAN_LAY_DIST_SQRT": 40000.0, - "MAX_CAN_LAY_DIST": 200.0, - "LAY_CHANCE_DANGER": 40.0, - "DAMAGE_TIME_TO_GETUP": 3 - }, - "Aiming": { - "MAX_AIM_PRECICING": 2.0, - "BETTER_PRECICING_COEF": 0.9, - "RECALC_DIST": 0.7, - "RECALC_SQR_DIST": 0.48999998, - "COEF_FROM_COVER": 0.45, - "PANIC_COEF": 1.2, - "PANIC_ACCURATY_COEF": 1.2, - "HARD_AIM": 0.75, - "PANIC_TIME": 2.0, - "RECALC_MUST_TIME": 3, - "DAMAGE_PANIC_TIME": 15.0, - "DANGER_UP_POINT": 1.3, - "MAX_AIMING_UPGRADE_BY_TIME": 0.25, - "DAMAGE_TO_DISCARD_AIM_0_100": 86.0, - "MIN_TIME_DISCARD_AIM_SEC": 0.3, - "MAX_TIME_DISCARD_AIM_SEC": 0.6, - "XZ_COEF": 0.10, - "SHOOT_TO_CHANGE_PRIORITY": 5525, - "BOTTOM_COEF": 0.1, - "FIRST_CONTACT_ADD_SEC": 0.1, - "FIRST_CONTACT_ADD_CHANCE_100": 80.0, - "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, - "BASE_HIT_AFFECTION_MIN_ANG": 4.0, - "BASE_HIT_AFFECTION_MAX_ANG": 10.0, - "BASE_SHIEF": 0.05, - "SCATTERING_HAVE_DAMAGE_COEF": 2.0, - "SCATTERING_DIST_MODIF": 0.67, - "SCATTERING_DIST_MODIF_CLOSE": 0.6, - "AIMING_TYPE": 5, - "DIST_TO_SHOOT_TO_CENTER": 3.0, - "DIST_TO_SHOOT_NO_OFFSET": 3.0, - "SHPERE_FRIENDY_FIRE_SIZE": -0.1, - "COEF_IF_MOVE": 1.0, - "TIME_COEF_IF_MOVE": 1.1, - "BOT_MOVE_IF_DELTA": 3.01, - "NEXT_SHOT_MISS_CHANCE_100": 100.0, - "NEXT_SHOT_MISS_Y_OFFSET": 1.0, - "ANYTIME_LIGHT_WHEN_AIM_100": -1.0, - "ANY_PART_SHOOT_TIME": 15.0, - "WEAPON_ROOT_OFFSET": 0.35, - "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1.0, - "MAX_AIM_TIME": 1.5, - "OFFSET_RECAL_ANYWAY_TIME": 1.0, - "BASE_SHIEF_STATIONARY_GRENADE": 1.1, - "XZ_COEF_STATIONARY_GRENADE": 0.2, - "Y_TOP_OFFSET_COEF": 0.001, - "Y_BOTTOM_OFFSET_COEF": 0.015 - }, - "Look": { - "OLD_TIME_POINT": 11.0, - "WAIT_NEW_SENSOR": 2.1, - "WAIT_NEW__LOOK_SENSOR": 7.8, - "LOOK_AROUND_DELTA": 1.1, - "MAX_VISION_GRASS_METERS": 0.8, - "MAX_VISION_GRASS_METERS_FLARE": 8.0, - "MAX_VISION_GRASS_METERS_OPT": 0.9090909, - "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, - "LightOnVisionDistance": 45.0, - "FAR_DISTANCE": 160.0, - "FarDeltaTimeSec": 3.0, - "MIDDLE_DIST": 90.0, - "MiddleDeltaTimeSec": 1.0, - "CloseDeltaTimeSec": 0.1, - "POSIBLE_VISION_SPACE": 1.2, - "GOAL_TO_FULL_DISSAPEAR": 1.1, - "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, - "BODY_DELTA_TIME_SEARCH_SEC": 1.7, - "COME_TO_BODY_DIST": 1.2, - "MARKSMAN_VISIBLE_DIST_COEF": 1.15, - "VISIBLE_DISNACE_WITH_LIGHT": 100.0, - "ENEMY_LIGHT_ADD": 48.0, - "ENEMY_LIGHT_START_DIST": 90.0, - "CAN_LOOK_TO_WALL": true, - "DIST_NOT_TO_IGNORE_WALL": 15.0, - "DIST_CHECK_WALL": 20.0, - "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25.0, - "MIN_LOOK_AROUD_TIME": 20.0, - "OPTIMIZE_TO_ONLY_BODY": true - }, - "Shoot": { - "RECOIL_TIME_NORMALIZE": 1.0, - "RECOIL_PER_METER": 0.02, - "MAX_RECOIL_PER_METER": 0.1, - "HORIZONT_RECOIL_COEF": 0.1, - "WAIT_NEXT_SINGLE_SHOT": 0.2, - "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, - "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, - "MARKSMAN_DIST_SEK_COEF": 44.0, - "FINGER_HOLD_SINGLE_SHOT": 0.14, - "BASE_AUTOMATIC_TIME": 0.2, - "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, - "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94.0, - "FAR_DIST_ENEMY": 20.0, - "SHOOT_FROM_COVER": 4, - "FAR_DIST_ENEMY_SQR": 400.0, - "MAX_DIST_COEF": 1.35, - "RECOIL_DELTA_PRESS": 0.15, - "RUN_DIST_NO_AMMO": 25.0, - "RUN_DIST_NO_AMMO_SQRT": 625.0, - "CAN_SHOOTS_TIME_TO_AMBUSH": 993, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, - "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2.0, - "RELOAD_PECNET_NO_ENEMY": 0.6, - "CHANCE_TO_CHANGE_WEAPON": 100.0, - "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 80.0, - "LOW_DIST_TO_CHANGE_WEAPON": 5.0, - "FAR_DIST_TO_CHANGE_WEAPON": 30.0, - "SUPPRESS_BY_SHOOT_TIME": 6.0, - "SUPPRESS_TRIGGERS_DOWN": 3, - "DIST_TO_CHANGE_TO_MAIN": 15.0, - "WAIT_NEXT_STATIONARY_GRENADE": 1.0, - "FINGER_HOLD_STATIONARY_GRENADE": 0.3, - "VALIDATE_MALFUNCTION_CHANCE": 0, - "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, - "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, - "DELAY_BEFORE_FIX_MALFUNCTION": 0.5 - }, - "Move": { - "BASE_ROTATE_SPEED": 270.0, - "REACH_DIST": 0.5, - "REACH_DIST_RUN": 0.8, - "START_SLOW_DIST": 1.5, - "BASESTART_SLOW_DIST": 1.1, - "SLOW_COEF": 7.0, - "DIST_TO_CAN_CHANGE_WAY": 8.0, - "DIST_TO_START_RAYCAST": 15.0, - "BASE_START_SERACH": 35.0, - "UPDATE_TIME_RECAL_WAY": 7.0, - "FAR_DIST": 4.0, - "FAR_DIST_SQR": 16.0, - "DIST_TO_CAN_CHANGE_WAY_SQR": 64.0, - "DIST_TO_START_RAYCAST_SQR": 225.0, - "BASE_SQRT_START_SERACH": 1225.0, - "Y_APPROXIMATION": 0.7, - "DELTA_LAST_SEEN_ENEMY": 20.0, - "REACH_DIST_COVER": 2.0, - "RUN_TO_COVER_MIN": 2.0, - "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100.0, - "RUN_IF_CANT_SHOOT": false, - "RUN_IF_GAOL_FAR_THEN": 10.0, - "SEC_TO_CHANGE_TO_RUN": 3.0, - "ETERNITY_STAMINA": true - }, - "Grenade": { - "DELTA_NEXT_ATTEMPT_FROM_COVER": 5.0, - "DELTA_NEXT_ATTEMPT": 10.0, - "MIN_DIST_NOT_TO_THROW": 8.0, - "NEAR_DELTA_THROW_TIME_SEC": 2.0, - "MIN_THROW_GRENADE_DIST": 12.0, - "MIN_THROW_GRENADE_DIST_SQRT": 144.0, - "MIN_DIST_NOT_TO_THROW_SQR": 64.0, - "RUN_AWAY": 22.0, - "RUN_AWAY_SQR": 484.0, - "ADD_GRENADE_AS_DANGER": 65.0, - "ADD_GRENADE_AS_DANGER_SQR": 4225.0, - "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100.0, - "GrenadePerMeter": 0.1, - "REQUEST_DIST_MUST_THROW_SQRT": 9.0, - "REQUEST_DIST_MUST_THROW": 3.0, - "BEWARE_TYPE": 2, - "SHOOT_TO_SMOKE_CHANCE_100": 50.0, - "CHANCE_RUN_FLASHED_100": 100.0, - "MAX_FLASHED_DIST_TO_SHOOT": 10.0, - "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100.0, - "FLASH_GRENADE_TIME_COEF": 0.25, - "SIZE_SPOTTED_COEF": 2.0, - "BE_ATTENTION_COEF": 4.0, - "TIME_SHOOT_TO_FLASH": 4.0, - "CLOSE_TO_SMOKE_TO_SHOOT": 10.0, - "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100.0, - "CLOSE_TO_SMOKE_TIME_DELTA": 5.0, - "SMOKE_CHECK_DELTA": 1.0, - "DELTA_GRENADE_START_TIME": 0.01, - "AMBUSH_IF_SMOKE_IN_ZONE_100": 40.0, - "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30.0, - "NO_RUN_FROM_AI_GRENADES": true, - "MAX_THROW_POWER": 25.0, - "MIN_THROW_DIST_PERCENT_0_1": 0.7, - "GrenadePrecision": 0.1, - "STOP_WHEN_THROW_GRENADE": true, - "WAIT_TIME_TURN_AWAY": 0.2, - "SMOKE_SUPPRESS_DELTA": 20.0, - "DAMAGE_GRENADE_SUPPRESS_DELTA": 8.0, - "STUN_SUPPRESS_DELTA": 9.0, - "CHEAT_START_GRENADE_PLACE": false, - "CAN_THROW_STRAIGHT_CONTACT": true, - "STRAIGHT_CONTACT_DELTA_SEC": -1.0, - "ANG_TYPE": 1 - }, - "Change": { - "SMOKE_VISION_DIST": 0.6, - "SMOKE_GAIN_SIGHT": 1.6, - "SMOKE_SCATTERING": 1.6, - "SMOKE_PRECICING": 1.6, - "SMOKE_HEARING": 1.0, - "SMOKE_ACCURATY": 1.6, - "SMOKE_LAY_CHANCE": 1.6, - "FLASH_VISION_DIST": 0.05, - "FLASH_GAIN_SIGHT": 1.8, - "FLASH_SCATTERING": 1.6, - "FLASH_PRECICING": 1.6, - "FLASH_HEARING": 1.0, - "FLASH_ACCURATY": 1.6, - "FLASH_LAY_CHANCE": 1.0, - "STUN_HEARING": 0.01 - }, - "Cover": { - "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20.0, - "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50.0, - "SOUND_TO_GET_SPOTTED": 2.0, - "TIME_TO_MOVE_TO_COVER": 15.0, - "MAX_DIST_OF_COVER": 4.0, - "CHANGE_RUN_TO_COVER_SEC": 5.0, - "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, - "MIN_DIST_TO_ENEMY": 9.0, - "DIST_CANT_CHANGE_WAY": 5.0, - "DIST_CHECK_SFETY": 9.0, - "TIME_CHECK_SAFE": 2.0, - "HIDE_TO_COVER_TIME": 1.5, - "MAX_DIST_OF_COVER_SQR": 16.0, - "DIST_CANT_CHANGE_WAY_SQR": 25.0, - "SPOTTED_COVERS_RADIUS": 2.5, - "LOOK_LAST_ENEMY_POS_MOVING": 1.5, - "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3.0, - "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45.0, - "OFFSET_LOOK_ALONG_WALL_ANG": 20, - "SPOTTED_GRENADE_RADIUS": 16.0, - "MAX_SPOTTED_TIME_SEC": 55.0, - "WAIT_INT_COVER_FINDING_ENEMY": 2.0, - "CLOSE_DIST_POINT_SQRT": 4.0, - "DELTA_SEEN_FROM_COVE_LAST_POS": 15.0, - "MOVE_TO_COVER_WHEN_TARGET": false, - "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, - "SPOTTED_GRENADE_TIME": 7.0, - "DEPENDS_Y_DIST_TO_BOT": false, - "RUN_IF_FAR": 15.0, - "RUN_IF_FAR_SQRT": 225.0, - "STAY_IF_FAR": 25.0, - "STAY_IF_FAR_SQRT": 625.0, - "CHECK_COVER_ENEMY_LOOK": false, - "SHOOT_NEAR_TO_LEAVE": 2, - "SHOOT_NEAR_SEC_PERIOD": 0.5, - "HITS_TO_LEAVE_COVER": 1, - "HITS_TO_LEAVE_COVER_UNKNOWN": 1, - "DOG_FIGHT_AFTER_LEAVE": 4.0, - "NOT_LOOK_AT_WALL_IS_DANGER": true, - "MIN_DEFENCE_LEVEL": 22.0, - "REWORK_NOT_TO_SHOOT": true, - "DELETE_POINTS_BEHIND_ENEMIES": true, - "GOOD_DIST_TO_POINT_COEF": 1.8, - "ENEMY_DIST_TO_GO_OUT": 1.0, - "CHECK_CLOSEST_FRIEND": false, - "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15.0 - }, - "Patrol": { - "LOOK_TIME_BASE": 12.0, - "RESERVE_TIME_STAY": 72.0, - "FRIEND_SEARCH_SEC": 12.0, - "TALK_DELAY": 31.1, - "MIN_TALK_DELAY": 35.0, - "TALK_DELAY_BIG": 45.1, - "CHANGE_WAY_TIME": 3325.1, - "MIN_DIST_TO_CLOSE_TALK": 5.0, - "VISION_DIST_COEF_PEACE": 1.0, - "MIN_DIST_TO_CLOSE_TALK_SQR": 25.0, - "CHANCE_TO_CUT_WAY_0_100": 75.0, - "CUT_WAY_MIN_0_1": 0.4, - "CUT_WAY_MAX_0_1": 0.65, - "CHANCE_TO_CHANGE_WAY_0_100": 30.0, - "CHANCE_TO_SHOOT_DEADBODY": 52, - "SUSPETION_PLACE_LIFETIME": 7.0, - "RESERVE_OUT_TIME": 60.0, - "CLOSE_TO_SELECT_RESERV_WAY": 25.0, - "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5.0, - "CAN_CHOOSE_RESERV": true, - "TRY_CHOOSE_RESERV_WAY_ON_START": true - }, - "Hearing": { - "BOT_CLOSE_PANIC_DIST": 1.0, - "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, - "DISPERSION_COEF": 10.0, - "CLOSE_DIST": 26.0, - "FAR_DIST": 56.0, - "SOUND_DIR_DEEFREE": 30.0, - "DIST_PLACE_TO_FIND_POINT": 70.0, - "DEAD_BODY_SOUND_RAD": 30.0, - "LOOK_ONLY_DANGER": false, - "RESET_TIMER_DIST": 17.0, - "HEAR_DELAY_WHEN_PEACE": 0.0, - "HEAR_DELAY_WHEN_HAVE_SMT": 0.0, - "LOOK_ONLY_DANGER_DELTA": 9.0 - }, - "Mind": { - "MIN_SHOOTS_TIME": 2, - "MAX_SHOOTS_TIME": 4, - "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15.0, - "DAMAGE_REDUCTION_TIME_SEC": 20.0, - "MIN_DAMAGE_SCARE": 20.0, - "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35.0, - "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52.0, - "TIME_TO_FIND_ENEMY": 22.0, - "MAX_AGGRO_BOT_DIST": 100.0, - "HIT_POINT_DETECTION": 4.0, - "DANGER_POINT_CHOOSE_COEF": 1.0, - "SIMPLE_POINT_CHOOSE_COEF": 0.4, - "LASTSEEN_POINT_CHOOSE_COEF": 0.2, - "COVER_DIST_COEF": 1.5, - "DIST_TO_FOUND_SQRT": 400.0, - "MAX_AGGRO_BOT_DIST_SQR": 10000.0, - "DIST_TO_STOP_RUN_ENEMY": 15.0, - "ENEMY_LOOK_AT_ME_ANG": 15.0, - "MIN_START_AGGRESION_COEF": 1.0, - "MAX_START_AGGRESION_COEF": 3.0, - "BULLET_FEEL_DIST": 360.0, - "BULLET_FEEL_CLOSE_SDIST": 1.0, - "ATTACK_IMMEDIATLY_CHANCE_0_100": 40.0, - "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, - "FRIEND_DEAD_AGR_LOW": -0.2, - "FRIEND_AGR_KILL": 0.2, - "LAST_ENEMY_LOOK_TO": 40.0, - "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, - "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, - "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, - "CAN_USE_MEDS": true, - "SUSPETION_POINT_CHANCE_ADD100": 0.0, - "AMBUSH_WHEN_UNDER_FIRE": true, - "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60.0, - "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, - "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, - "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2.0, - "PROTECT_TIME_REAL": true, - "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25.0, - "CAN_PANIC_IS_PROTECT": false, - "NO_RUN_AWAY_FOR_SAFE": true, - "PART_PERCENT_TO_HEAL": 0.65, - "PROTECT_DELTA_HEAL_SEC": 10.0, - "CAN_STAND_BY": false, - "CAN_THROW_REQUESTS": true, - "GROUP_ANY_PHRASE_DELAY": 20.0, - "GROUP_EXACTLY_PHRASE_DELAY": 20.0, - "DIST_TO_ENEMY_YO_CAN_HEAL": 30.0, - "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80.0, - "DOG_FIGHT_OUT": 6.0, - "DOG_FIGHT_IN": 3.0, - "SHOOT_INSTEAD_DOG_FIGHT": 9.0, - "PISTOL_SHOTGUN_AMBUSH_DIST": 30.0, - "STANDART_AMBUSH_DIST": 100.0, - "AI_POWER_COEF": 120.0, - "COVER_SECONDS_AFTER_LOSE_VISION": 10.0, - "COVER_SELF_ALWAYS_IF_DAMAGED": false, - "SEC_TO_MORE_DIST_TO_RUN": 10.0, - "HEAL_DELAY_SEC": 5.0, - "HIT_DELAY_WHEN_HAVE_SMT": -1.0, - "HIT_DELAY_WHEN_PEACE": -1.0, - "TALK_WITH_QUERY": true, - "DANGER_EXPIRE_TIME_MIN": 0.4, - "DANGER_EXPIRE_TIME_MAX": 1.2, - "PANIC_RUN_WEIGHT": 1.0, - "PANIC_SIT_WEIGHT": 80.0, - "PANIC_LAY_WEIGHT": 20.0, - "PANIC_NONE_WEIGHT": 40.0, - "CAN_TAKE_ITEMS": false, - "PANIC_SIT_WEIGHT_PEACE": 60.0 - }, - "Boss": { - "BOSS_DIST_TO_WARNING": 34.0, - "BOSS_DIST_TO_WARNING_SQRT": 1156.0, - "BOSS_DIST_TO_WARNING_OUT": 43.0, - "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849.0, - "BOSS_DIST_TO_SHOOT": 16.0, - "BOSS_DIST_TO_SHOOT_SQRT": 256.0, - "CHANCE_TO_SEND_GRENADE_100": 100.0, - "MAX_DIST_COVER_BOSS": 25.0, - "MAX_DIST_COVER_BOSS_SQRT": 625.0, - "MAX_DIST_DECIDER_TO_SEND": 35.0, - "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225.0, - "TIME_AFTER_LOSE": 15.0, - "TIME_AFTER_LOSE_DELTA": 60.0, - "PERSONS_SEND": 2, - "DELTA_SEARCH_TIME": 18.0, - "COVER_TO_SEND": true, - "WAIT_NO_ATTACK_SAVAGE": 10.0, - "CHANCE_USE_RESERVE_PATROL_100": 30.0, - "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5.0, - "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65.0, - "KILLA_START_SEARCH_SEC": 40.0, - "KILLA_CONTUTION_TIME": 5.0, - "KILLA_CLOSE_ATTACK_DIST": 8.0, - "KILLA_MIDDLE_ATTACK_DIST": 32.0, - "KILLA_LARGE_ATTACK_DIST": 61.0, - "KILLA_SEARCH_METERS": 30.0, - "KILLA_DEF_DIST_SQRT": 225.0, - "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25.0, - "KILLA_DIST_TO_GO_TO_SUPPRESS": 6.0, - "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2.0, - "KILLA_CLOSEATTACK_TIMES": 3, - "KILLA_CLOSEATTACK_DELAY": 10.0, - "KILLA_HOLD_DELAY": 5.0, - "KILLA_BULLET_TO_RELOAD": 15, - "SHALL_WARN": true, - "KOJANIY_DIST_WHEN_READY": 40.0, - "KOJANIY_DIST_TO_BE_ENEMY": 200.0, - "KOJANIY_MIN_DIST_TO_LOOT": 20.0, - "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400.0, - "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17.0, - "KOJANIY_MANY_ENEMIES_COEF": 1.5, - "KILLA_ENEMIES_TO_ATTACK": 3, - "KILLA_ONE_IS_CLOSE": 20.0, - "KILLA_TRIGGER_DOWN_DELAY": 0.1, - "KILLA_WAIT_IN_COVER_COEF": 0.1, - "KOJANIY_COVER_POWER": 500.0, - "KOJANIY_FIGHT_CENTER_POS_ME": false, - "KOJANIY_DIST_CORE_SPOS_RECALC": 25.0, - "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625.0, - "GLUHAR_FOLLOWER_PATH_NAME": "Snipe", - "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, - "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, - "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, - "GLUHAR_ASSAULT_ATTACK_DIST": 30, - "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, - "GLUHAR_TIME_TO_ASSAULT": 10, - "DIST_TO_PROTECT_BOSS": 15 - }, - "Core": { - "VisibleAngle": 160.0, - "VisibleDistance": 142.0, - "GainSightCoef": 0.1, - "ScatteringPerMeter": 0.045, - "ScatteringClosePerMeter": 0.12, - "DamageCoeff": 1.0, - "HearingSense": 3.9, - "CanRun": true, - "CanGrenade": true, - "AimingType": "normal", - "PistolFireDistancePref": 35.0, - "ShotgunFireDistancePref": 50.0, - "RifleFireDistancePref": 100.0, - "AccuratySpeed": 0.2, - "WaitInCoverBetweenShotsSec": 0.3 - }, - "Scattering": { - "MinScatter": 0.03, - "WorkingScatter": 0.15, - "MaxScatter": 0.4, - "SpeedUp": 0.3, - "SpeedUpAim": 1.4, - "SpeedDown": -0.3, - "ToSlowBotSpeed": 1.5, - "ToLowBotSpeed": 2.4, - "ToUpBotSpeed": 3.6, - "MovingSlowCoef": 1.5, - "ToLowBotAngularSpeed": 80.0, - "ToStopBotAngularSpeed": 40.0, - "FromShot": 0.001, - "TracerCoef": 1.3, - "HandDamageScatteringMinMax": 0.7, - "HandDamageAccuracySpeed": 1.3, - "BloodFall": 1.45, - "Caution": 0.3, - "ToCaution": 0.6, - "RecoilControlCoefShootDone": 0.0003, - "RecoilControlCoefShootDoneAuto": 0.00015, - "AMPLITUDE_FACTOR": 0.25, - "AMPLITUDE_SPEED": 0.1, - "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15.0, - "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225.0, - "DIST_NOT_TO_SHOOT": 0.3, - "PoseChnageCoef": 0.1, - "LayFactor": 0.1, - "RecoilYCoef": 0.0005, - "RecoilYCoefSppedDown": -0.52, - "RecoilYMax": 1.0 - } - } - }, - "chances": { - "equipment": { - "Headwear": 0, - "Earpiece": 0, - "FaceCover": 0, - "ArmorVest": 0, - "Eyewear": 0, - "ArmBand": 0, - "TacticalVest": 0, - "Backpack": 0, - "FirstPrimaryWeapon": 0, - "SecondPrimaryWeapon": 0, - "Holster": 0, - "Scabbard": 0 - }, - "mods": {} - }, - "generation": { - "items": { - "specialItems": { - "min": 0, - "max": 0 - }, - "healing": { - "min": 0, - "max": 0 - }, - "drugs": { - "max": 1, - "min": 0 - }, - "stims": { - "min": 0, - "max": 1 - }, - "looseLoot": { - "min": 0, - "max": 0 - }, - "magazines": { - "min": 0, - "max": 0 - }, - "grenades": { - "min": 0, - "max": 0 - } - } + "normal": { + "Aiming": { + "AIMING_TYPE": 5, + "ANYTIME_LIGHT_WHEN_AIM_100": -1, + "ANY_PART_SHOOT_TIME": 15, + "BASE_HIT_AFFECTION_DELAY_SEC": 0.57, + "BASE_HIT_AFFECTION_MAX_ANG": 10, + "BASE_HIT_AFFECTION_MIN_ANG": 4, + "BASE_SHIEF": 0.05, + "BASE_SHIEF_STATIONARY_GRENADE": 1.1, + "BETTER_PRECICING_COEF": 0.9, + "BOTTOM_COEF": 0.1, + "BOT_MOVE_IF_DELTA": 3.01, + "COEF_FROM_COVER": 0.45, + "COEF_IF_MOVE": 1, + "DAMAGE_PANIC_TIME": 15, + "DAMAGE_TO_DISCARD_AIM_0_100": 86, + "DANGER_UP_POINT": 1.3, + "DIST_TO_SHOOT_NO_OFFSET": 3, + "DIST_TO_SHOOT_TO_CENTER": 3, + "FIRST_CONTACT_ADD_CHANCE_100": 80, + "FIRST_CONTACT_ADD_SEC": 0.1, + "HARD_AIM": 0.75, + "MAX_AIMING_UPGRADE_BY_TIME": 0.25, + "MAX_AIM_PRECICING": 2, + "MAX_AIM_TIME": 1.5, + "MAX_TIME_DISCARD_AIM_SEC": 0.6, + "MIN_DAMAGE_TO_GET_HIT_AFFETS": 1, + "MIN_TIME_DISCARD_AIM_SEC": 0.3, + "NEXT_SHOT_MISS_CHANCE_100": 100, + "NEXT_SHOT_MISS_Y_OFFSET": 1, + "OFFSET_RECAL_ANYWAY_TIME": 1, + "PANIC_ACCURATY_COEF": 1.2, + "PANIC_COEF": 1.2, + "PANIC_TIME": 2, + "RECALC_DIST": 0.7, + "RECALC_MUST_TIME": 3, + "RECALC_SQR_DIST": 0.48999998, + "SCATTERING_DIST_MODIF": 0.67, + "SCATTERING_DIST_MODIF_CLOSE": 0.6, + "SCATTERING_HAVE_DAMAGE_COEF": 2, + "SHOOT_TO_CHANGE_PRIORITY": 5525, + "SHPERE_FRIENDY_FIRE_SIZE": -0.1, + "TIME_COEF_IF_MOVE": 1.1, + "WEAPON_ROOT_OFFSET": 0.35, + "XZ_COEF": 0.1, + "XZ_COEF_STATIONARY_GRENADE": 0.2, + "Y_BOTTOM_OFFSET_COEF": 0.015, + "Y_TOP_OFFSET_COEF": 0.001 + }, + "Boss": { + "BOSS_DIST_TO_SHOOT": 16, + "BOSS_DIST_TO_SHOOT_SQRT": 256, + "BOSS_DIST_TO_WARNING": 34, + "BOSS_DIST_TO_WARNING_OUT": 43, + "BOSS_DIST_TO_WARNING_OUT_SQRT": 1849, + "BOSS_DIST_TO_WARNING_SQRT": 1156, + "CHANCE_TO_SEND_GRENADE_100": 100, + "CHANCE_USE_RESERVE_PATROL_100": 30, + "COVER_TO_SEND": true, + "DELTA_SEARCH_TIME": 18, + "DIST_TO_PROTECT_BOSS": 15, + "GLUHAR_ASSAULT_ATTACK_DIST": 30, + "GLUHAR_BOSS_WANNA_ATTACK_CHANCE_0_100": 150, + "GLUHAR_FOLLOWER_PATH_NAME": "Snipe", + "GLUHAR_FOLLOWER_SCOUT_DIST_END_ATTACK": 120, + "GLUHAR_FOLLOWER_SCOUT_DIST_START_ATTACK": 80, + "GLUHAR_STOP_ASSAULT_ATTACK_DIST": 180, + "GLUHAR_TIME_TO_ASSAULT": 10, + "KILLA_AFTER_GRENADE_SUPPRESS_DELAY": 2, + "KILLA_BULLET_TO_RELOAD": 15, + "KILLA_CLOSEATTACK_DELAY": 10, + "KILLA_CLOSEATTACK_TIMES": 3, + "KILLA_CLOSE_ATTACK_DIST": 8, + "KILLA_CONTUTION_TIME": 5, + "KILLA_DEF_DIST_SQRT": 225, + "KILLA_DIST_TO_GO_TO_SUPPRESS": 6, + "KILLA_DITANCE_TO_BE_ENEMY_BOSS": 65, + "KILLA_ENEMIES_TO_ATTACK": 3, + "KILLA_HOLD_DELAY": 5, + "KILLA_LARGE_ATTACK_DIST": 61, + "KILLA_MIDDLE_ATTACK_DIST": 32, + "KILLA_ONE_IS_CLOSE": 20, + "KILLA_SEARCH_METERS": 30, + "KILLA_SEARCH_SEC_STOP_AFTER_COMING": 25, + "KILLA_START_SEARCH_SEC": 40, + "KILLA_TRIGGER_DOWN_DELAY": 0.1, + "KILLA_WAIT_IN_COVER_COEF": 0.1, + "KILLA_Y_DELTA_TO_BE_ENEMY_BOSS": 5, + "KOJANIY_COVER_POWER": 500, + "KOJANIY_DIST_CORE_SPOS_RECALC": 25, + "KOJANIY_DIST_CORE_SPOS_RECALC_SQRT": 625, + "KOJANIY_DIST_ENEMY_TOO_CLOSE": 17, + "KOJANIY_DIST_TO_BE_ENEMY": 200, + "KOJANIY_DIST_WHEN_READY": 40, + "KOJANIY_FIGHT_CENTER_POS_ME": false, + "KOJANIY_MANY_ENEMIES_COEF": 1.5, + "KOJANIY_MIN_DIST_TO_LOOT": 20, + "KOJANIY_MIN_DIST_TO_LOOT_SQRT": 400, + "MAX_DIST_COVER_BOSS": 25, + "MAX_DIST_COVER_BOSS_SQRT": 625, + "MAX_DIST_DECIDER_TO_SEND": 35, + "MAX_DIST_DECIDER_TO_SEND_SQRT": 1225, + "PERSONS_SEND": 2, + "SHALL_WARN": true, + "TIME_AFTER_LOSE": 15, + "TIME_AFTER_LOSE_DELTA": 60, + "WAIT_NO_ATTACK_SAVAGE": 10 + }, + "Change": { + "FLASH_ACCURATY": 1.6, + "FLASH_GAIN_SIGHT": 1.8, + "FLASH_HEARING": 1, + "FLASH_LAY_CHANCE": 1, + "FLASH_PRECICING": 1.6, + "FLASH_SCATTERING": 1.6, + "FLASH_VISION_DIST": 0.05, + "SMOKE_ACCURATY": 1.6, + "SMOKE_GAIN_SIGHT": 1.6, + "SMOKE_HEARING": 1, + "SMOKE_LAY_CHANCE": 1.6, + "SMOKE_PRECICING": 1.6, + "SMOKE_SCATTERING": 1.6, + "SMOKE_VISION_DIST": 0.6, + "STUN_HEARING": 0.01 + }, + "Core": { + "AccuratySpeed": 0.2, + "AimingType": "normal", + "CanGrenade": true, + "CanRun": true, + "DamageCoeff": 1, + "GainSightCoef": 0.1, + "HearingSense": 3.9, + "PistolFireDistancePref": 35, + "RifleFireDistancePref": 100, + "ScatteringClosePerMeter": 0.12, + "ScatteringPerMeter": 0.045, + "ShotgunFireDistancePref": 50, + "VisibleAngle": 160, + "VisibleDistance": 142, + "WaitInCoverBetweenShotsSec": 0.3 + }, + "Cover": { + "CHANGE_RUN_TO_COVER_SEC": 5, + "CHANGE_RUN_TO_COVER_SEC_GREANDE": 0.6, + "CHECK_CLOSEST_FRIEND": false, + "CHECK_COVER_ENEMY_LOOK": false, + "CLOSE_DIST_POINT_SQRT": 4, + "DELETE_POINTS_BEHIND_ENEMIES": true, + "DELTA_SEEN_FROM_COVE_LAST_POS": 15, + "DEPENDS_Y_DIST_TO_BOT": false, + "DIST_CANT_CHANGE_WAY": 5, + "DIST_CANT_CHANGE_WAY_SQR": 25, + "DIST_CHECK_SFETY": 9, + "DOG_FIGHT_AFTER_LEAVE": 4, + "ENEMY_DIST_TO_GO_OUT": 1, + "GOOD_DIST_TO_POINT_COEF": 1.8, + "HIDE_TO_COVER_TIME": 1.5, + "HITS_TO_LEAVE_COVER": 1, + "HITS_TO_LEAVE_COVER_UNKNOWN": 1, + "LOOK_LAST_ENEMY_POS_LOOKAROUND": 45, + "LOOK_LAST_ENEMY_POS_MOVING": 1.5, + "LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3, + "MAX_DIST_OF_COVER": 4, + "MAX_DIST_OF_COVER_SQR": 16, + "MAX_SPOTTED_TIME_SEC": 55, + "MIN_DEFENCE_LEVEL": 22, + "MIN_DIST_TO_ENEMY": 9, + "MOVE_TO_COVER_WHEN_TARGET": false, + "NOT_LOOK_AT_WALL_IS_DANGER": true, + "OFFSET_LOOK_ALONG_WALL_ANG": 20, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MAX": 50, + "RETURN_TO_ATTACK_AFTER_AMBUSH_MIN": 20, + "REWORK_NOT_TO_SHOOT": true, + "RUN_COVER_IF_CAN_AND_NO_ENEMIES": false, + "RUN_IF_FAR": 15, + "RUN_IF_FAR_SQRT": 225, + "SHOOT_NEAR_SEC_PERIOD": 0.5, + "SHOOT_NEAR_TO_LEAVE": 2, + "SOUND_TO_GET_SPOTTED": 2, + "SPOTTED_COVERS_RADIUS": 2.5, + "SPOTTED_GRENADE_RADIUS": 16, + "SPOTTED_GRENADE_TIME": 7, + "STATIONARY_WEAPON_NO_ENEMY_GETUP": 15, + "STAY_IF_FAR": 25, + "STAY_IF_FAR_SQRT": 625, + "TIME_CHECK_SAFE": 2, + "TIME_TO_MOVE_TO_COVER": 15, + "WAIT_INT_COVER_FINDING_ENEMY": 2 + }, + "Grenade": { + "ADD_GRENADE_AS_DANGER": 65, + "ADD_GRENADE_AS_DANGER_SQR": 4225, + "AMBUSH_IF_SMOKE_IN_ZONE_100": 40, + "AMBUSH_IF_SMOKE_RETURN_TO_ATTACK_SEC": 30, + "ANG_TYPE": 1, + "BEWARE_TYPE": 2, + "BE_ATTENTION_COEF": 4, + "CAN_THROW_STRAIGHT_CONTACT": true, + "CHANCE_RUN_FLASHED_100": 100, + "CHANCE_TO_NOTIFY_ENEMY_GR_100": 100, + "CHEAT_START_GRENADE_PLACE": false, + "CLOSE_TO_SMOKE_TIME_DELTA": 5, + "CLOSE_TO_SMOKE_TO_SHOOT": 10, + "CLOSE_TO_SMOKE_TO_SHOOT_SQRT": 100, + "DAMAGE_GRENADE_SUPPRESS_DELTA": 8, + "DELTA_GRENADE_START_TIME": 0.01, + "DELTA_NEXT_ATTEMPT": 10, + "DELTA_NEXT_ATTEMPT_FROM_COVER": 5, + "FLASH_GRENADE_TIME_COEF": 0.25, + "GrenadePerMeter": 0.1, + "GrenadePrecision": 0.1, + "MAX_FLASHED_DIST_TO_SHOOT": 10, + "MAX_FLASHED_DIST_TO_SHOOT_SQRT": 100, + "MAX_THROW_POWER": 25, + "MIN_DIST_NOT_TO_THROW": 8, + "MIN_DIST_NOT_TO_THROW_SQR": 64, + "MIN_THROW_DIST_PERCENT_0_1": 0.7, + "MIN_THROW_GRENADE_DIST": 12, + "MIN_THROW_GRENADE_DIST_SQRT": 144, + "NEAR_DELTA_THROW_TIME_SEC": 2, + "NO_RUN_FROM_AI_GRENADES": true, + "REQUEST_DIST_MUST_THROW": 3, + "REQUEST_DIST_MUST_THROW_SQRT": 9, + "RUN_AWAY": 22, + "RUN_AWAY_SQR": 484, + "SHOOT_TO_SMOKE_CHANCE_100": 50, + "SIZE_SPOTTED_COEF": 2, + "SMOKE_CHECK_DELTA": 1, + "SMOKE_SUPPRESS_DELTA": 20, + "STOP_WHEN_THROW_GRENADE": true, + "STRAIGHT_CONTACT_DELTA_SEC": -1, + "STUN_SUPPRESS_DELTA": 9, + "TIME_SHOOT_TO_FLASH": 4, + "WAIT_TIME_TURN_AWAY": 0.2 + }, + "Hearing": { + "BOT_CLOSE_PANIC_DIST": 1, + "CHANCE_TO_HEAR_SIMPLE_SOUND_0_1": 0.88, + "CLOSE_DIST": 26, + "DEAD_BODY_SOUND_RAD": 30, + "DISPERSION_COEF": 10, + "DIST_PLACE_TO_FIND_POINT": 70, + "FAR_DIST": 56, + "HEAR_DELAY_WHEN_HAVE_SMT": 0, + "HEAR_DELAY_WHEN_PEACE": 0, + "LOOK_ONLY_DANGER": false, + "LOOK_ONLY_DANGER_DELTA": 9, + "RESET_TIMER_DIST": 17, + "SOUND_DIR_DEEFREE": 30 + }, + "Lay": { + "ATTACK_LAY_CHANCE": 25, + "CHECK_SHOOT_WHEN_LAYING": false, + "CLEAR_POINTS_OF_SCARE_SEC": 20, + "DAMAGE_TIME_TO_GETUP": 3, + "DELTA_AFTER_GETUP": 10, + "DELTA_GETUP": 2.7, + "DELTA_LAY_CHECK": 2, + "DELTA_WANT_LAY_CHECL_SEC": 5, + "DIST_ENEMY_CAN_LAY": 15, + "DIST_ENEMY_CAN_LAY_SQRT": 225, + "DIST_ENEMY_GETUP_LAY": 10, + "DIST_ENEMY_GETUP_LAY_SQRT": 100, + "DIST_ENEMY_NULL_DANGER_LAY": 15, + "DIST_ENEMY_NULL_DANGER_LAY_SQRT": 225, + "DIST_GRASS_TERRAIN_SQRT": 0.160000011, + "DIST_TO_COVER_TO_LAY": 3.5, + "DIST_TO_COVER_TO_LAY_SQRT": 12.25, + "LAY_AIM": 0.6, + "LAY_CHANCE_DANGER": 40, + "MAX_CAN_LAY_DIST": 200, + "MAX_CAN_LAY_DIST_SQRT": 40000, + "MAX_LAY_TIME": 35, + "MIN_CAN_LAY_DIST": 11, + "MIN_CAN_LAY_DIST_SQRT": 121 + }, + "Look": { + "BODY_DELTA_TIME_SEARCH_SEC": 1.7, + "CAN_LOOK_TO_WALL": true, + "COME_TO_BODY_DIST": 1.2, + "CloseDeltaTimeSec": 0.1, + "DIST_CHECK_WALL": 20, + "DIST_NOT_TO_IGNORE_WALL": 15, + "ENEMY_LIGHT_ADD": 48, + "ENEMY_LIGHT_START_DIST": 90, + "FAR_DISTANCE": 160, + "FarDeltaTimeSec": 3, + "GOAL_TO_FULL_DISSAPEAR": 1.1, + "GOAL_TO_FULL_DISSAPEAR_SHOOT": 0.03, + "LOOK_AROUND_DELTA": 1.1, + "LOOK_LAST_POSENEMY_IF_NO_DANGER_SEC": 25, + "LightOnVisionDistance": 45, + "MARKSMAN_VISIBLE_DIST_COEF": 1.15, + "MAX_VISION_GRASS_METERS": 0.8, + "MAX_VISION_GRASS_METERS_FLARE": 8, + "MAX_VISION_GRASS_METERS_FLARE_OPT": 0.125, + "MAX_VISION_GRASS_METERS_OPT": 0.9090909, + "MIDDLE_DIST": 90, + "MIN_LOOK_AROUD_TIME": 20, + "MiddleDeltaTimeSec": 1, + "OLD_TIME_POINT": 11, + "OPTIMIZE_TO_ONLY_BODY": true, + "POSIBLE_VISION_SPACE": 1.2, + "VISIBLE_DISNACE_WITH_LIGHT": 100, + "WAIT_NEW_SENSOR": 2.1, + "WAIT_NEW__LOOK_SENSOR": 7.8 + }, + "Mind": { + "AI_POWER_COEF": 120, + "AMBUSH_WHEN_UNDER_FIRE": true, + "AMBUSH_WHEN_UNDER_FIRE_TIME_RESIST": 60, + "ATTACK_ENEMY_IF_PROTECT_DELTA_LAST_TIME_SEEN": 1.5, + "ATTACK_IMMEDIATLY_CHANCE_0_100": 40, + "BULLET_FEEL_CLOSE_SDIST": 1, + "BULLET_FEEL_DIST": 360, + "CAN_PANIC_IS_PROTECT": false, + "CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false, + "CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false, + "CAN_RECEIVE_PLAYER_REQUESTS_USEC": false, + "CAN_STAND_BY": false, + "CAN_TAKE_ITEMS": false, + "CAN_THROW_REQUESTS": true, + "CAN_USE_MEDS": true, + "CHANCE_FUCK_YOU_ON_CONTACT_100": 0.01, + "CHANCE_SHOOT_WHEN_WARN_PLAYER_100": 25, + "CHANCE_TO_RUN_CAUSE_DAMAGE_0_100": 35, + "CHANCE_TO_STAY_WHEN_WARN_PLAYER_100": 80, + "COVER_DIST_COEF": 1.5, + "COVER_SECONDS_AFTER_LOSE_VISION": 10, + "COVER_SELF_ALWAYS_IF_DAMAGED": false, + "DAMAGE_REDUCTION_TIME_SEC": 20, + "DANGER_EXPIRE_TIME_MAX": 1.2, + "DANGER_EXPIRE_TIME_MIN": 0.4, + "DANGER_POINT_CHOOSE_COEF": 1, + "DIST_TO_ENEMY_YO_CAN_HEAL": 30, + "DIST_TO_FOUND_SQRT": 400, + "DIST_TO_STOP_RUN_ENEMY": 15, + "DOG_FIGHT_IN": 3, + "DOG_FIGHT_OUT": 6, + "ENEMY_LOOK_AT_ME_ANG": 15, + "FIND_COVER_TO_GET_POSITION_WITH_SHOOT": 2, + "FRIEND_AGR_KILL": 0.2, + "FRIEND_DEAD_AGR_LOW": -0.2, + "GROUP_ANY_PHRASE_DELAY": 20, + "GROUP_EXACTLY_PHRASE_DELAY": 20, + "HEAL_DELAY_SEC": 5, + "HIT_DELAY_WHEN_HAVE_SMT": -1, + "HIT_DELAY_WHEN_PEACE": -1, + "HIT_POINT_DETECTION": 4, + "HOLD_IF_PROTECT_DELTA_LAST_TIME_SEEN": 8.5, + "LASTSEEN_POINT_CHOOSE_COEF": 0.2, + "LAST_ENEMY_LOOK_TO": 40, + "MAX_AGGRO_BOT_DIST": 100, + "MAX_AGGRO_BOT_DIST_SQR": 10000, + "MAX_SHOOTS_TIME": 4, + "MAX_START_AGGRESION_COEF": 3, + "MIN_DAMAGE_SCARE": 20, + "MIN_SHOOTS_TIME": 2, + "MIN_START_AGGRESION_COEF": 1, + "NO_RUN_AWAY_FOR_SAFE": true, + "PANIC_LAY_WEIGHT": 20, + "PANIC_NONE_WEIGHT": 40, + "PANIC_RUN_WEIGHT": 1, + "PANIC_SIT_WEIGHT": 80, + "PANIC_SIT_WEIGHT_PEACE": 60, + "PART_PERCENT_TO_HEAL": 0.65, + "PISTOL_SHOTGUN_AMBUSH_DIST": 30, + "PROTECT_DELTA_HEAL_SEC": 10, + "PROTECT_TIME_REAL": true, + "SEC_TO_MORE_DIST_TO_RUN": 10, + "SHOOT_INSTEAD_DOG_FIGHT": 9, + "SIMPLE_POINT_CHOOSE_COEF": 0.4, + "STANDART_AMBUSH_DIST": 100, + "SUSPETION_POINT_CHANCE_ADD100": 0, + "TALK_WITH_QUERY": true, + "TIME_TO_FIND_ENEMY": 22, + "TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52, + "TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15 + }, + "Move": { + "BASESTART_SLOW_DIST": 1.1, + "BASE_ROTATE_SPEED": 270, + "BASE_SQRT_START_SERACH": 1225, + "BASE_START_SERACH": 35, + "CHANCE_TO_RUN_IF_NO_AMMO_0_100": 100, + "DELTA_LAST_SEEN_ENEMY": 20, + "DIST_TO_CAN_CHANGE_WAY": 8, + "DIST_TO_CAN_CHANGE_WAY_SQR": 64, + "DIST_TO_START_RAYCAST": 15, + "DIST_TO_START_RAYCAST_SQR": 225, + "ETERNITY_STAMINA": true, + "FAR_DIST": 4, + "FAR_DIST_SQR": 16, + "REACH_DIST": 0.5, + "REACH_DIST_COVER": 2, + "REACH_DIST_RUN": 0.8, + "RUN_IF_CANT_SHOOT": false, + "RUN_IF_GAOL_FAR_THEN": 10, + "RUN_TO_COVER_MIN": 2, + "SEC_TO_CHANGE_TO_RUN": 3, + "SLOW_COEF": 7, + "START_SLOW_DIST": 1.5, + "UPDATE_TIME_RECAL_WAY": 7, + "Y_APPROXIMATION": 0.7 + }, + "Patrol": { + "CAN_CHOOSE_RESERV": true, + "CHANCE_TO_CHANGE_WAY_0_100": 30, + "CHANCE_TO_CUT_WAY_0_100": 75, + "CHANCE_TO_SHOOT_DEADBODY": 52, + "CHANGE_WAY_TIME": 3325.1, + "CLOSE_TO_SELECT_RESERV_WAY": 25, + "CUT_WAY_MAX_0_1": 0.65, + "CUT_WAY_MIN_0_1": 0.4, + "FRIEND_SEARCH_SEC": 12, + "LOOK_TIME_BASE": 12, + "MAX_YDIST_TO_START_WARN_REQUEST_TO_REQUESTER": 5, + "MIN_DIST_TO_CLOSE_TALK": 5, + "MIN_DIST_TO_CLOSE_TALK_SQR": 25, + "MIN_TALK_DELAY": 35, + "RESERVE_OUT_TIME": 60, + "RESERVE_TIME_STAY": 72, + "SUSPETION_PLACE_LIFETIME": 7, + "TALK_DELAY": 31.1, + "TALK_DELAY_BIG": 45.1, + "TRY_CHOOSE_RESERV_WAY_ON_START": true, + "VISION_DIST_COEF_PEACE": 1 + }, + "Scattering": { + "AMPLITUDE_FACTOR": 0.25, + "AMPLITUDE_SPEED": 0.1, + "BloodFall": 1.45, + "Caution": 0.3, + "DIST_FROM_OLD_POINT_TO_NOT_AIM": 15, + "DIST_FROM_OLD_POINT_TO_NOT_AIM_SQRT": 225, + "DIST_NOT_TO_SHOOT": 0.3, + "FromShot": 0.001, + "HandDamageAccuracySpeed": 1.3, + "HandDamageScatteringMinMax": 0.7, + "LayFactor": 0.1, + "MaxScatter": 0.4, + "MinScatter": 0.03, + "MovingSlowCoef": 1.5, + "PoseChnageCoef": 0.1, + "RecoilControlCoefShootDone": 0.0003, + "RecoilControlCoefShootDoneAuto": 0.00015, + "RecoilYCoef": 0.0005, + "RecoilYCoefSppedDown": -0.52, + "RecoilYMax": 1, + "SpeedDown": -0.3, + "SpeedUp": 0.3, + "SpeedUpAim": 1.4, + "ToCaution": 0.6, + "ToLowBotAngularSpeed": 80, + "ToLowBotSpeed": 2.4, + "ToSlowBotSpeed": 1.5, + "ToStopBotAngularSpeed": 40, + "ToUpBotSpeed": 3.6, + "TracerCoef": 1.3, + "WorkingScatter": 0.15 + }, + "Shoot": { + "AUTOMATIC_FIRE_SCATTERING_COEF": 1.5, + "BASE_AUTOMATIC_TIME": 0.2, + "CAN_SHOOTS_TIME_TO_AMBUSH": 993, + "CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 94, + "CHANCE_TO_CHANGE_WEAPON": 100, + "CHANCE_TO_CHANGE_WEAPON_WITH_HELMET": 80, + "DELAY_BEFORE_EXAMINE_MALFUNCTION": 0.5, + "DELAY_BEFORE_FIX_MALFUNCTION": 0.5, + "DIST_TO_CHANGE_TO_MAIN": 15, + "FAR_DIST_ENEMY": 20, + "FAR_DIST_ENEMY_SQR": 400, + "FAR_DIST_TO_CHANGE_WEAPON": 30, + "FINGER_HOLD_SINGLE_SHOT": 0.14, + "FINGER_HOLD_STATIONARY_GRENADE": 0.3, + "HORIZONT_RECOIL_COEF": 0.1, + "LOW_DIST_TO_CHANGE_WEAPON": 5, + "MARKSMAN_DIST_SEK_COEF": 44, + "MAX_DIST_COEF": 1.35, + "MAX_RECOIL_PER_METER": 0.1, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_PERCENT": 0.5, + "NOT_TO_SEE_ENEMY_TO_WANT_RELOAD_SEC": 2, + "RECOIL_DELTA_PRESS": 0.15, + "RECOIL_PER_METER": 0.02, + "RECOIL_TIME_NORMALIZE": 1, + "RELOAD_PECNET_NO_ENEMY": 0.6, + "REPAIR_MALFUNCTION_IMMEDIATE_CHANCE": 25, + "RUN_DIST_NO_AMMO": 25, + "RUN_DIST_NO_AMMO_SQRT": 625, + "SHOOT_FROM_COVER": 4, + "SUPPRESS_BY_SHOOT_TIME": 6, + "SUPPRESS_TRIGGERS_DOWN": 3, + "VALIDATE_MALFUNCTION_CHANCE": 0, + "WAIT_NEXT_SINGLE_SHOT": 0.2, + "WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3, + "WAIT_NEXT_SINGLE_SHOT_LONG_MIN": 0.4, + "WAIT_NEXT_STATIONARY_GRENADE": 1 + } } + }, + "experience": { + "level": { + "max": 0, + "min": 0 + }, + "reward": { + "max": 0, + "min": 0 + }, + "standingForKill": 0 + }, + "firstName": [], + "generation": { + "items": { + "backpackLoot": { + "weights": { + "0": 1, + "1": 1, + "2": 2, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 0 + }, + "whitelist": [] + }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, + "drink": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "drugs": { + "weights": { + "0": 1, + "1": 2, + "2": 0 + }, + "whitelist": [] + }, + "food": { + "weights": { + "0": 10, + "1": 5, + "2": 2 + }, + "whitelist": [] + }, + "grenades": { + "weights": { + "0": 1, + "1": 2, + "2": 1, + "3": 1, + "4": 0, + "5": 0 + }, + "whitelist": [] + }, + "healing": { + "weights": { + "0": 1, + "1": 2, + "2": 1 + }, + "whitelist": [] + }, + "magazines": { + "weights": { + "0": 0, + "1": 0, + "2": 1, + "3": 3, + "4": 1 + }, + "whitelist": [] + }, + "pocketLoot": { + "weights": { + "0": 1, + "1": 6, + "2": 3, + "3": 1, + "4": 1 + }, + "whitelist": [] + }, + "specialItems": { + "weights": { + "0": 1, + "1": 0 + }, + "whitelist": [] + }, + "stims": { + "weights": { + "0": 2, + "1": 1, + "2": 0 + }, + "whitelist": [] + }, + "vestLoot": { + "weights": { + "0": 1, + "1": 1, + "2": 2, + "3": 1, + "4": 0, + "5": 0, + "6": 0 + }, + "whitelist": [] + } + } + }, + "health": { + "BodyParts": [ + { + "Chest": { + "max": 180, + "min": 180 + }, + "Head": { + "max": 41, + "min": 41 + }, + "LeftArm": { + "max": 115, + "min": 115 + }, + "LeftLeg": { + "max": 115, + "min": 115 + }, + "RightArm": { + "max": 115, + "min": 115 + }, + "RightLeg": { + "max": 115, + "min": 115 + }, + "Stomach": { + "max": 125, + "min": 125 + } + } + ], + "Energy": { + "max": 100, + "min": 100 + }, + "Hydration": { + "max": 100, + "min": 100 + }, + "Temperature": { + "max": 40, + "min": 36 + } + }, + "inventory": { + "equipment": { + "ArmBand": [], + "ArmorVest": [], + "Backpack": [], + "Earpiece": [], + "Eyewear": [], + "FaceCover": [], + "FirstPrimaryWeapon": [], + "Headwear": [], + "Holster": [], + "Pockets": [], + "Scabbard": [], + "SecondPrimaryWeapon": [], + "SecuredContainer": [], + "TacticalVest": [] + }, + "items": { + "Backpack": [], + "Pockets": [], + "SecuredContainer": [], + "SpecialLoot": [], + "TacticalVest": [] + }, + "mods": {} + }, + "lastName": [], + "skills": { + "Common": {} + } } diff --git a/project/assets/database/bots/types/followerkojaniy.json b/project/assets/database/bots/types/followerkojaniy.json index cced9139..546233e4 100644 --- a/project/assets/database/bots/types/followerkojaniy.json +++ b/project/assets/database/bots/types/followerkojaniy.json @@ -2099,6 +2099,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/followerkolontayassault.json b/project/assets/database/bots/types/followerkolontayassault.json index 199ae92e..b3d701a8 100644 --- a/project/assets/database/bots/types/followerkolontayassault.json +++ b/project/assets/database/bots/types/followerkolontayassault.json @@ -2232,6 +2232,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/followerkolontaysecurity.json b/project/assets/database/bots/types/followerkolontaysecurity.json index 7233ecaa..857c01b6 100644 --- a/project/assets/database/bots/types/followerkolontaysecurity.json +++ b/project/assets/database/bots/types/followerkolontaysecurity.json @@ -2245,6 +2245,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/followersanitar.json b/project/assets/database/bots/types/followersanitar.json index ee087bb3..70cb85ee 100644 --- a/project/assets/database/bots/types/followersanitar.json +++ b/project/assets/database/bots/types/followersanitar.json @@ -2136,6 +2136,14 @@ "7": 0 }, "whitelist": [] + }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] }, "drugs": { "weights": { diff --git a/project/assets/database/bots/types/followerzryachiy.json b/project/assets/database/bots/types/followerzryachiy.json index 3782be29..5e2ac036 100644 --- a/project/assets/database/bots/types/followerzryachiy.json +++ b/project/assets/database/bots/types/followerzryachiy.json @@ -2003,6 +2003,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/gifter.json b/project/assets/database/bots/types/gifter.json index 471652f3..c78a7308 100644 --- a/project/assets/database/bots/types/gifter.json +++ b/project/assets/database/bots/types/gifter.json @@ -2064,6 +2064,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/marksman.json b/project/assets/database/bots/types/marksman.json index 0fc1004f..4caadcdd 100644 --- a/project/assets/database/bots/types/marksman.json +++ b/project/assets/database/bots/types/marksman.json @@ -2298,6 +2298,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/peacefullzryachiyevent.json b/project/assets/database/bots/types/peacefullzryachiyevent.json index e931986c..91ec8f7d 100644 --- a/project/assets/database/bots/types/peacefullzryachiyevent.json +++ b/project/assets/database/bots/types/peacefullzryachiyevent.json @@ -2017,6 +2017,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, @@ -2057,7 +2065,7 @@ "0": 1, "1": 2, "2": 1 - }, + }, "whitelist": [] }, "magazines": { diff --git a/project/assets/database/bots/types/pmcbot.json b/project/assets/database/bots/types/pmcbot.json index 6306a51c..6585f2a2 100644 --- a/project/assets/database/bots/types/pmcbot.json +++ b/project/assets/database/bots/types/pmcbot.json @@ -2119,6 +2119,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/ravangezryachiyevent.json b/project/assets/database/bots/types/ravangezryachiyevent.json index 8e92b5b8..caefb594 100644 --- a/project/assets/database/bots/types/ravangezryachiyevent.json +++ b/project/assets/database/bots/types/ravangezryachiyevent.json @@ -2085,6 +2085,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/sectantpriest.json b/project/assets/database/bots/types/sectantpriest.json index 8bf5f722..6f22145a 100644 --- a/project/assets/database/bots/types/sectantpriest.json +++ b/project/assets/database/bots/types/sectantpriest.json @@ -2101,6 +2101,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/sectantwarrior.json b/project/assets/database/bots/types/sectantwarrior.json index 9b520b83..255980e5 100644 --- a/project/assets/database/bots/types/sectantwarrior.json +++ b/project/assets/database/bots/types/sectantwarrior.json @@ -2112,6 +2112,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/shooterbtr.json b/project/assets/database/bots/types/shooterbtr.json index ee6adc72..57d18eeb 100644 --- a/project/assets/database/bots/types/shooterbtr.json +++ b/project/assets/database/bots/types/shooterbtr.json @@ -2146,6 +2146,14 @@ }, "whitelist": [] }, + "currency": { + "weights": { + "0": 20, + "1": 5, + "2": 1 + }, + "whitelist": [] + }, "drink": { "weights": { "0": 10, diff --git a/project/assets/database/bots/types/usec.json b/project/assets/database/bots/types/usec.json index e7e353fc..9b930075 100644 --- a/project/assets/database/bots/types/usec.json +++ b/project/assets/database/bots/types/usec.json @@ -2510,7 +2510,7 @@ }, "food": { "weights": { - "0": 6, + "0": 5, "1": 5, "2": 2 }, @@ -2518,11 +2518,18 @@ }, "drink": { "weights": { - "0": 6, + "0": 5, "1": 5, "2": 1 }, "whitelist": [] + }, + "currency": { + "weights": { + "0": 5, + "1": 1 + }, + "whitelist": [] }, "grenades": { "weights": { diff --git a/project/src/generators/BotLootGenerator.ts b/project/src/generators/BotLootGenerator.ts index 08ae3c6d..0f01bf6c 100644 --- a/project/src/generators/BotLootGenerator.ts +++ b/project/src/generators/BotLootGenerator.ts @@ -102,6 +102,10 @@ export class BotLootGenerator const foodItemCount = Number(this.weightedRandomHelper.getWeightedValue(itemCounts.food.weights)); const drinkItemCount = Number(this.weightedRandomHelper.getWeightedValue(itemCounts.drink.weights)); + const currencyItemCount = Number( + this.weightedRandomHelper.getWeightedValue(itemCounts.currency.weights), + ); + const stimItemCount = Number(this.weightedRandomHelper.getWeightedValue(itemCounts.stims.weights)); const grenadeCount = Number(this.weightedRandomHelper.getWeightedValue(itemCounts.grenades.weights)); @@ -173,6 +177,18 @@ export class BotLootGenerator isPmc, ); + // Currency + this.addLootFromPool( + this.botLootCacheService.getLootFromCache(botRole, isPmc, LootCacheType.CURRENCY_ITEMS, botJsonTemplate), + containersBotHasAvailable, + currencyItemCount, + botInventory, + botRole, + null, + 0, + isPmc, + ); + // Stims this.addLootFromPool( this.botLootCacheService.getLootFromCache(botRole, isPmc, LootCacheType.STIM_ITEMS, botJsonTemplate), diff --git a/project/src/models/eft/common/tables/IBotType.ts b/project/src/models/eft/common/tables/IBotType.ts index 1f168525..d2f1bdec 100644 --- a/project/src/models/eft/common/tables/IBotType.ts +++ b/project/src/models/eft/common/tables/IBotType.ts @@ -132,6 +132,7 @@ export interface GenerationWeightingItems drugs: GenerationData; food: GenerationData; drink: GenerationData; + currency: GenerationData; stims: GenerationData; backpackLoot: GenerationData; pocketLoot: GenerationData; diff --git a/project/src/models/spt/bots/IBotLootCache.ts b/project/src/models/spt/bots/IBotLootCache.ts index 3dc5e192..8441b181 100644 --- a/project/src/models/spt/bots/IBotLootCache.ts +++ b/project/src/models/spt/bots/IBotLootCache.ts @@ -11,6 +11,7 @@ export interface IBotLootCache drugItems: Record; foodItems: Record; drinkItems: Record; + currencyItems: Record; stimItems: Record; grenadeItems: Record; } @@ -29,4 +30,5 @@ export enum LootCacheType GRENADE_ITEMS = "GrenadeItems", FOOD_ITEMS = "FoodItems", DRINK_ITEMS = "DrinkItems", + CURRENCY_ITEMS = "CurrencyItems", } diff --git a/project/src/services/BotLootCacheService.ts b/project/src/services/BotLootCacheService.ts index 252846e8..f64ca5d4 100644 --- a/project/src/services/BotLootCacheService.ts +++ b/project/src/services/BotLootCacheService.ts @@ -95,6 +95,9 @@ export class BotLootCacheService case LootCacheType.DRINK_ITEMS: result = this.lootCache[botRole].drinkItems; break; + case LootCacheType.CURRENCY_ITEMS: + result = this.lootCache[botRole].currencyItems; + break; case LootCacheType.STIM_ITEMS: result = this.lootCache[botRole].stimItems; break; @@ -276,6 +279,25 @@ export class BotLootCacheService } } + // Assign whitelisted currency to bot if any exist + const currencyItems: Record = + (Object.keys(botJsonTemplate.generation.items.currency.whitelist)?.length > 0) + ? botJsonTemplate.generation.items.currency.whitelist + : {}; + + // No currency whitelist, find and assign from combined item pool + if (Object.keys(currencyItems).length === 0) + { + for (const [tpl, weight] of Object.entries(combinedLootPool)) + { + const itemTemplate = this.itemHelper.getItem(tpl)[1]; + if (this.itemHelper.isOfBaseclass(itemTemplate._id, BaseClasses.MONEY)) + { + currencyItems[tpl] = weight; + } + } + } + // Assign whitelisted stims to bot if any exist const stimItems: Record = (Object.keys(botJsonTemplate.generation.items.stims.whitelist)?.length > 0) @@ -331,6 +353,7 @@ export class BotLootCacheService || this.isGrenade(itemTemplate._props) || this.isFood(itemTemplate._id) || this.isDrink(itemTemplate._id) + || this.isCurrency(itemTemplate._id) ) { // Is type we dont want as backpack loot, skip @@ -357,6 +380,7 @@ export class BotLootCacheService || this.isGrenade(itemTemplate._props) || this.isFood(itemTemplate._id) || this.isDrink(itemTemplate._id) + || this.isCurrency(itemTemplate._id) || !("Height" in itemTemplate._props) // lacks height || !("Width" in itemTemplate._props) // lacks width ) @@ -384,6 +408,7 @@ export class BotLootCacheService || this.isGrenade(itemTemplate._props) || this.isFood(itemTemplate._id) || this.isDrink(itemTemplate._id) + || this.isCurrency(itemTemplate._id) ) { continue; @@ -396,6 +421,7 @@ export class BotLootCacheService this.lootCache[botRole].drugItems = drugItems; this.lootCache[botRole].foodItems = foodItems; this.lootCache[botRole].drinkItems = drinkItems; + this.lootCache[botRole].currencyItems = currencyItems; this.lootCache[botRole].stimItems = stimItems; this.lootCache[botRole].grenadeItems = grenadeItems; @@ -491,6 +517,11 @@ export class BotLootCacheService return this.itemHelper.isOfBaseclass(tpl, BaseClasses.DRINK); } + protected isCurrency(tpl: string): boolean + { + return this.itemHelper.isOfBaseclass(tpl, BaseClasses.MONEY); + } + /** * Check if a bot type exists inside the loot cache * @param botRole role to check for @@ -519,6 +550,7 @@ export class BotLootCacheService drugItems: {}, foodItems: {}, drinkItems: {}, + currencyItems: {}, healingItems: {}, stimItems: {}, }; From df93245e9d8d81b9d1ae34acc2e60002c0fda4d9 Mon Sep 17 00:00:00 2001 From: Brent Date: Thu, 18 Apr 2024 14:29:16 +0000 Subject: [PATCH 093/104] Fix incompatible default mods being used in required slots (!299) This prevents weapons from getting the default mods for their base preset when they won't fit other required mods. This was observed on the AK-74M, where the weapon generator would choose the VDM CS gas tube, which is incompatible with the default AK-74 polymer handguard (6P20 Sb.9). When this occurs, the generator will bypass the default mod selection and instead choose from the loot pool assigned to the handguard in the bot configs. https://dev.sp-tarkov.com/SPT-AKI/Issues/issues/596 Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/299 Co-authored-by: Brent Co-committed-by: Brent --- .../src/generators/BotEquipmentModGenerator.ts | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/project/src/generators/BotEquipmentModGenerator.ts b/project/src/generators/BotEquipmentModGenerator.ts index b439054f..56bbcd2f 100644 --- a/project/src/generators/BotEquipmentModGenerator.ts +++ b/project/src/generators/BotEquipmentModGenerator.ts @@ -957,17 +957,25 @@ export class BotEquipmentModGenerator // You'd have a mod being picked without any sub-mods in its chain, possibly resulting in missing required mods not being added if (matchingMod) { - // Mod isnt in existing mod pool + // Mod is in existing mod pool if (itemModPool[modSlot].includes(matchingMod._tpl)) { // Found mod on preset + it already exists in mod pool return [matchingMod._tpl]; } - // Mod isnt in existing pool, only add if its got no children - if (this.itemHelper.getItem(matchingMod._tpl)[1]._props.Slots.length === 0) + // Check the filter of the slot to ensure a chosen mod fits + const parentSlotCompatibleItems = parentTemplate._props.Slots?.find((slot) => + slot._name.toLowerCase() === modSlot.toLowerCase() + )._props.filters[0].Filter; + + // Mod isnt in existing pool, only add if it has no children and matches parent filter + if ( + this.itemHelper.getItem(matchingMod._tpl)[1]._props.Slots.length === 0 + && parentSlotCompatibleItems.includes(matchingMod._tpl) + ) { - // Mod has no children + // Mod has no children and matches parent filters, can be used return [matchingMod._tpl]; } } From e2f3191212c45ce23472aefe2678c9858c9ea32d Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 20 Apr 2024 09:58:06 +0100 Subject: [PATCH 094/104] Split out debug heading into 2 headers, one each for request/response 0 = no zlib compression 1 = use zlib compression --- project/src/servers/http/AkiHttpListener.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/project/src/servers/http/AkiHttpListener.ts b/project/src/servers/http/AkiHttpListener.ts index 34913e49..315f5a22 100644 --- a/project/src/servers/http/AkiHttpListener.ts +++ b/project/src/servers/http/AkiHttpListener.ts @@ -64,10 +64,11 @@ export class AkiHttpListener implements IHttpListener // determine if the payload is compressed. All PUT requests are, and POST requests without // debug = 1 are as well. This should be fixed. // let compressed = req.headers["content-encoding"] === "deflate"; - const compressed = req.method === "PUT" || req.headers.debug !== "1"; + const requestIsCompressed = req.headers.requestcompressed === "1"; + const requestCompressed = req.method === "PUT" || requestIsCompressed; - const value = compressed ? zlib.inflateSync(buffer) : buffer; - if (req.headers.debug === "1") + const value = requestCompressed ? zlib.inflateSync(buffer) : buffer; + if (!requestIsCompressed) { this.logger.debug(value.toString(), true); } @@ -107,7 +108,7 @@ export class AkiHttpListener implements IHttpListener let handled = false; // Check if this is a debug request, if so just send the raw response without transformation - if (req.headers.debug === "1") + if (req.headers.responsecompressed === "0") { this.sendJson(resp, output, sessionID); } From 34466735ef0eca56049154a6cb329790a0095075 Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 20 Apr 2024 09:58:47 +0100 Subject: [PATCH 095/104] Added nullguards insode `addPlayer()` to prevent server errors when profile not found or `inraid` object not found --- project/src/controllers/InraidController.ts | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/project/src/controllers/InraidController.ts b/project/src/controllers/InraidController.ts index 71225ed6..b38cf227 100644 --- a/project/src/controllers/InraidController.ts +++ b/project/src/controllers/InraidController.ts @@ -96,7 +96,21 @@ export class InraidController public addPlayer(sessionID: string, info: IRegisterPlayerRequestData): void { this.applicationContext.addValue(ContextVariableType.REGISTER_PLAYER_REQUEST, info); - this.saveServer.getProfile(sessionID).inraid.location = info.locationId; + const profile = this.saveServer.getProfile(sessionID); + if (!profile) + { + this.logger.error(`No profile found with Id of: ${sessionID}`); + + return; + } + if (!profile.inraid) + { + profile.inraid = { character: sessionID, location: info.locationId }; + } + else + { + profile.inraid.location; + } } /** From b8b72e593dd7d0b7a27a5ec418670b59a6666404 Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 20 Apr 2024 09:58:47 +0100 Subject: [PATCH 096/104] Added nullguards insode `addPlayer()` to prevent server errors when profile not found or `inraid` object not found --- project/src/controllers/InraidController.ts | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/project/src/controllers/InraidController.ts b/project/src/controllers/InraidController.ts index 71225ed6..502786f0 100644 --- a/project/src/controllers/InraidController.ts +++ b/project/src/controllers/InraidController.ts @@ -96,7 +96,21 @@ export class InraidController public addPlayer(sessionID: string, info: IRegisterPlayerRequestData): void { this.applicationContext.addValue(ContextVariableType.REGISTER_PLAYER_REQUEST, info); - this.saveServer.getProfile(sessionID).inraid.location = info.locationId; + const profile = this.saveServer.getProfile(sessionID); + if (!profile) + { + this.logger.error(`No profile found with Id of: ${sessionID}`); + + return; + } + if (!profile.inraid) + { + profile.inraid = { character: sessionID, location: info.locationId }; + + return; + } + + profile.inraid.location; } /** From ef65074dc3b095bc4e5b918feb5d4985fa0040c7 Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 20 Apr 2024 13:05:44 +0100 Subject: [PATCH 097/104] Resolve server error inside `removeRandomItemFromAssorts()` when the item being processed has no `upd` object --- project/src/services/FenceService.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/project/src/services/FenceService.ts b/project/src/services/FenceService.ts index 6d538d0d..9cef446a 100644 --- a/project/src/services/FenceService.ts +++ b/project/src/services/FenceService.ts @@ -393,7 +393,12 @@ export class FenceService protected removeRandomItemFromAssorts(assort: ITraderAssort, rootItems: Item[]): void { const rootItemToAdjust = this.randomUtil.getArrayValue(rootItems); - const itemCountToRemove = this.randomUtil.getInt(1, rootItemToAdjust.upd.StackObjectsCount); + + // Items added by mods may not have a upd object, assume item stack size is 1 + const stackSize = rootItemToAdjust.upd?.StackObjectsCount ?? 1; + + // Get a random count of the chosen item to remove + const itemCountToRemove = this.randomUtil.getInt(1, stackSize); if (itemCountToRemove > 1 && itemCountToRemove < rootItemToAdjust.upd.StackObjectsCount) { // More than 1 + less then full stack // Reduce stack size but keep stack From 8bcb47b391f6ccb49ccf856feedd04fa6b2f61b6 Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 20 Apr 2024 13:12:32 +0100 Subject: [PATCH 098/104] Inverted check to allow correct server comms --- project/src/servers/http/AkiHttpListener.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/servers/http/AkiHttpListener.ts b/project/src/servers/http/AkiHttpListener.ts index 315f5a22..8ff17214 100644 --- a/project/src/servers/http/AkiHttpListener.ts +++ b/project/src/servers/http/AkiHttpListener.ts @@ -64,7 +64,7 @@ export class AkiHttpListener implements IHttpListener // determine if the payload is compressed. All PUT requests are, and POST requests without // debug = 1 are as well. This should be fixed. // let compressed = req.headers["content-encoding"] === "deflate"; - const requestIsCompressed = req.headers.requestcompressed === "1"; + const requestIsCompressed = req.headers.requestcompressed !== "0"; const requestCompressed = req.method === "PUT" || requestIsCompressed; const value = requestCompressed ? zlib.inflateSync(buffer) : buffer; From f873edb456eb9e16e943e91b186a7a6d7a03a35d Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 20 Apr 2024 14:19:10 +0100 Subject: [PATCH 099/104] Revert "Inverted check to allow correct server comms" This reverts commit 8bcb47b391f6ccb49ccf856feedd04fa6b2f61b6. --- project/src/servers/http/AkiHttpListener.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/servers/http/AkiHttpListener.ts b/project/src/servers/http/AkiHttpListener.ts index 8ff17214..315f5a22 100644 --- a/project/src/servers/http/AkiHttpListener.ts +++ b/project/src/servers/http/AkiHttpListener.ts @@ -64,7 +64,7 @@ export class AkiHttpListener implements IHttpListener // determine if the payload is compressed. All PUT requests are, and POST requests without // debug = 1 are as well. This should be fixed. // let compressed = req.headers["content-encoding"] === "deflate"; - const requestIsCompressed = req.headers.requestcompressed !== "0"; + const requestIsCompressed = req.headers.requestcompressed === "1"; const requestCompressed = req.method === "PUT" || requestIsCompressed; const value = requestCompressed ? zlib.inflateSync(buffer) : buffer; From 7fd9dadb13e14f6b10279745eda56e90eaebf06c Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 20 Apr 2024 14:19:35 +0100 Subject: [PATCH 100/104] Revert "Split out debug heading into 2 headers, one each for request/response" This reverts commit e2f3191212c45ce23472aefe2678c9858c9ea32d. --- project/src/servers/http/AkiHttpListener.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/project/src/servers/http/AkiHttpListener.ts b/project/src/servers/http/AkiHttpListener.ts index 315f5a22..34913e49 100644 --- a/project/src/servers/http/AkiHttpListener.ts +++ b/project/src/servers/http/AkiHttpListener.ts @@ -64,11 +64,10 @@ export class AkiHttpListener implements IHttpListener // determine if the payload is compressed. All PUT requests are, and POST requests without // debug = 1 are as well. This should be fixed. // let compressed = req.headers["content-encoding"] === "deflate"; - const requestIsCompressed = req.headers.requestcompressed === "1"; - const requestCompressed = req.method === "PUT" || requestIsCompressed; + const compressed = req.method === "PUT" || req.headers.debug !== "1"; - const value = requestCompressed ? zlib.inflateSync(buffer) : buffer; - if (!requestIsCompressed) + const value = compressed ? zlib.inflateSync(buffer) : buffer; + if (req.headers.debug === "1") { this.logger.debug(value.toString(), true); } @@ -108,7 +107,7 @@ export class AkiHttpListener implements IHttpListener let handled = false; // Check if this is a debug request, if so just send the raw response without transformation - if (req.headers.responsecompressed === "0") + if (req.headers.debug === "1") { this.sendJson(resp, output, sessionID); } From f63da802b27f0777b48bf675b34824cb39710357 Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 20 Apr 2024 15:23:24 +0100 Subject: [PATCH 101/104] Fix `addPlayer` not correctly assigning location value --- project/src/controllers/InraidController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/controllers/InraidController.ts b/project/src/controllers/InraidController.ts index 502786f0..ba2d94ad 100644 --- a/project/src/controllers/InraidController.ts +++ b/project/src/controllers/InraidController.ts @@ -110,7 +110,7 @@ export class InraidController return; } - profile.inraid.location; + profile.inraid.location = info.locationId; } /** From 5f9c51f1e3222a95ffe76deffadab4b3554a1b10 Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 20 Apr 2024 15:24:07 +0100 Subject: [PATCH 102/104] Revert "Revert "Split out debug heading into 2 headers, one each for request/response"" This reverts commit 7fd9dadb13e14f6b10279745eda56e90eaebf06c. --- project/src/servers/http/AkiHttpListener.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/project/src/servers/http/AkiHttpListener.ts b/project/src/servers/http/AkiHttpListener.ts index 34913e49..315f5a22 100644 --- a/project/src/servers/http/AkiHttpListener.ts +++ b/project/src/servers/http/AkiHttpListener.ts @@ -64,10 +64,11 @@ export class AkiHttpListener implements IHttpListener // determine if the payload is compressed. All PUT requests are, and POST requests without // debug = 1 are as well. This should be fixed. // let compressed = req.headers["content-encoding"] === "deflate"; - const compressed = req.method === "PUT" || req.headers.debug !== "1"; + const requestIsCompressed = req.headers.requestcompressed === "1"; + const requestCompressed = req.method === "PUT" || requestIsCompressed; - const value = compressed ? zlib.inflateSync(buffer) : buffer; - if (req.headers.debug === "1") + const value = requestCompressed ? zlib.inflateSync(buffer) : buffer; + if (!requestIsCompressed) { this.logger.debug(value.toString(), true); } @@ -107,7 +108,7 @@ export class AkiHttpListener implements IHttpListener let handled = false; // Check if this is a debug request, if so just send the raw response without transformation - if (req.headers.debug === "1") + if (req.headers.responsecompressed === "0") { this.sendJson(resp, output, sessionID); } From 716df0898372c8ee7be19162b541e45fd4a16845 Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 20 Apr 2024 15:24:21 +0100 Subject: [PATCH 103/104] Revert "Revert "Inverted check to allow correct server comms"" This reverts commit f873edb456eb9e16e943e91b186a7a6d7a03a35d. --- project/src/servers/http/AkiHttpListener.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/servers/http/AkiHttpListener.ts b/project/src/servers/http/AkiHttpListener.ts index 315f5a22..8ff17214 100644 --- a/project/src/servers/http/AkiHttpListener.ts +++ b/project/src/servers/http/AkiHttpListener.ts @@ -64,7 +64,7 @@ export class AkiHttpListener implements IHttpListener // determine if the payload is compressed. All PUT requests are, and POST requests without // debug = 1 are as well. This should be fixed. // let compressed = req.headers["content-encoding"] === "deflate"; - const requestIsCompressed = req.headers.requestcompressed === "1"; + const requestIsCompressed = req.headers.requestcompressed !== "0"; const requestCompressed = req.method === "PUT" || requestIsCompressed; const value = requestCompressed ? zlib.inflateSync(buffer) : buffer; From 00691becd191ffaa48d5167ddf7e6f3ca836d16d Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 20 Apr 2024 20:33:36 +0100 Subject: [PATCH 104/104] Add extra protection against null objects inside `itemAllowedInContainer()` --- project/src/helpers/BotGeneratorHelper.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/src/helpers/BotGeneratorHelper.ts b/project/src/helpers/BotGeneratorHelper.ts index 99d729e4..8a565d3e 100644 --- a/project/src/helpers/BotGeneratorHelper.ts +++ b/project/src/helpers/BotGeneratorHelper.ts @@ -673,8 +673,8 @@ export class BotGeneratorHelper protected itemAllowedInContainer(slotGrid: Grid, itemTpl: string): boolean { const propFilters = slotGrid._props.filters; - const excludedFilter = propFilters[0]?.ExcludedFilter; - const filter = propFilters[0]?.Filter; + const excludedFilter = propFilters[0]?.ExcludedFilter ?? []; + const filter = propFilters[0]?.Filter ?? []; if (propFilters.length === 0) {